-- MySQL dump 10.13 Distrib 8.0.31, for Linux (aarch64) -- -- Host: localhost Database: zabbix -- ------------------------------------------------------ -- Server version 8.0.31-0ubuntu0.22.04.1 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!50503 SET NAMES utf8mb4 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `acknowledges` -- DROP TABLE IF EXISTS `acknowledges`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `acknowledges` ( `acknowledgeid` bigint unsigned NOT NULL, `userid` bigint unsigned NOT NULL, `eventid` bigint unsigned NOT NULL, `clock` int NOT NULL DEFAULT '0', `message` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `action` int NOT NULL DEFAULT '0', `old_severity` int NOT NULL DEFAULT '0', `new_severity` int NOT NULL DEFAULT '0', `suppress_until` int NOT NULL DEFAULT '0', `taskid` bigint unsigned DEFAULT NULL, PRIMARY KEY (`acknowledgeid`), KEY `acknowledges_1` (`userid`), KEY `acknowledges_2` (`eventid`), KEY `acknowledges_3` (`clock`), CONSTRAINT `c_acknowledges_1` FOREIGN KEY (`userid`) REFERENCES `users` (`userid`) ON DELETE CASCADE, CONSTRAINT `c_acknowledges_2` FOREIGN KEY (`eventid`) REFERENCES `events` (`eventid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `acknowledges` -- LOCK TABLES `acknowledges` WRITE; /*!40000 ALTER TABLE `acknowledges` DISABLE KEYS */; /*!40000 ALTER TABLE `acknowledges` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `actions` -- DROP TABLE IF EXISTS `actions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `actions` ( `actionid` bigint unsigned NOT NULL, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `eventsource` int NOT NULL DEFAULT '0', `evaltype` int NOT NULL DEFAULT '0', `status` int NOT NULL DEFAULT '0', `esc_period` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '1h', `formula` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `pause_suppressed` int NOT NULL DEFAULT '1', `notify_if_canceled` int NOT NULL DEFAULT '1', `pause_symptoms` int NOT NULL DEFAULT '1', PRIMARY KEY (`actionid`), UNIQUE KEY `actions_2` (`name`), KEY `actions_1` (`eventsource`,`status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `actions` -- LOCK TABLES `actions` WRITE; /*!40000 ALTER TABLE `actions` DISABLE KEYS */; INSERT INTO `actions` VALUES (2,'Auto discovery. Linux servers.',1,0,1,'0','',1,1,1),(3,'Report problems to Zabbix administrators',0,0,1,'1h','',1,1,1),(4,'Report not supported items',3,0,1,'1h','',1,1,1),(5,'Report not supported low level discovery rules',3,0,1,'1h','',1,1,1),(6,'Report unknown triggers',3,0,1,'1h','',1,1,1); /*!40000 ALTER TABLE `actions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `alerts` -- DROP TABLE IF EXISTS `alerts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `alerts` ( `alertid` bigint unsigned NOT NULL, `actionid` bigint unsigned NOT NULL, `eventid` bigint unsigned NOT NULL, `userid` bigint unsigned DEFAULT NULL, `clock` int NOT NULL DEFAULT '0', `mediatypeid` bigint unsigned DEFAULT NULL, `sendto` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `subject` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `status` int NOT NULL DEFAULT '0', `retries` int NOT NULL DEFAULT '0', `error` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `esc_step` int NOT NULL DEFAULT '0', `alerttype` int NOT NULL DEFAULT '0', `p_eventid` bigint unsigned DEFAULT NULL, `acknowledgeid` bigint unsigned DEFAULT NULL, `parameters` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, PRIMARY KEY (`alertid`), KEY `alerts_1` (`actionid`), KEY `alerts_2` (`clock`), KEY `alerts_3` (`eventid`), KEY `alerts_4` (`status`), KEY `alerts_5` (`mediatypeid`), KEY `alerts_6` (`userid`), KEY `alerts_7` (`p_eventid`), KEY `alerts_8` (`acknowledgeid`), CONSTRAINT `c_alerts_1` FOREIGN KEY (`actionid`) REFERENCES `actions` (`actionid`) ON DELETE CASCADE, CONSTRAINT `c_alerts_2` FOREIGN KEY (`eventid`) REFERENCES `events` (`eventid`) ON DELETE CASCADE, CONSTRAINT `c_alerts_3` FOREIGN KEY (`userid`) REFERENCES `users` (`userid`) ON DELETE CASCADE, CONSTRAINT `c_alerts_4` FOREIGN KEY (`mediatypeid`) REFERENCES `media_type` (`mediatypeid`) ON DELETE CASCADE, CONSTRAINT `c_alerts_5` FOREIGN KEY (`p_eventid`) REFERENCES `events` (`eventid`) ON DELETE CASCADE, CONSTRAINT `c_alerts_6` FOREIGN KEY (`acknowledgeid`) REFERENCES `acknowledges` (`acknowledgeid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `alerts` -- LOCK TABLES `alerts` WRITE; /*!40000 ALTER TABLE `alerts` DISABLE KEYS */; /*!40000 ALTER TABLE `alerts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `auditlog` -- DROP TABLE IF EXISTS `auditlog`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `auditlog` ( `auditid` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `userid` bigint unsigned DEFAULT NULL, `username` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `clock` int NOT NULL DEFAULT '0', `ip` varchar(39) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `action` int NOT NULL DEFAULT '0', `resourcetype` int NOT NULL DEFAULT '0', `resourceid` bigint unsigned DEFAULT NULL, `resource_cuid` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL, `resourcename` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `recordsetid` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `details` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, PRIMARY KEY (`auditid`), KEY `auditlog_1` (`userid`,`clock`), KEY `auditlog_2` (`clock`), KEY `auditlog_3` (`resourcetype`,`resourceid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `auditlog` -- LOCK TABLES `auditlog` WRITE; /*!40000 ALTER TABLE `auditlog` DISABLE KEYS */; INSERT INTO `auditlog` VALUES ('clc93hwep00014ciyszbn58a7',2,'guest',1672318903,'192.168.64.1',9,0,2,NULL,'','clc93hwep00004ciy5wprwe34',''),('clc93iek800017kiy0vm2k0b2',2,'guest',1672318927,'192.168.64.1',9,0,2,NULL,'','clc93iek800007kiyi7sj340l',''),('clc93ifo600014xiyemdwakwr',2,'guest',1672318928,'192.168.64.1',9,0,2,NULL,'','clc93ifo600004xiymbmk1gzb',''),('clc93igmx00014ciyakw081at',2,'guest',1672318929,'192.168.64.1',9,0,2,NULL,'','clc93igmx00004ciyckaw58c5',''),('clc93igp900024ciyzl243hq3',1,'Admin',1672318929,'192.168.64.1',8,0,1,NULL,'','clc93igmx00004ciyckaw58c5',''),('clc93inj500014ciy3zrpcgng',1,'Admin',1672318938,'192.168.64.1',2,36,39812,NULL,'Cluster node [{#NODE.NAME}]: Address','clc93inj500004ciy9r276evm',''),('clc93inj500024ciykhixxu1j',1,'Admin',1672318938,'192.168.64.1',2,36,39813,NULL,'Cluster node [{#NODE.NAME}]: Last access age','clc93inj500004ciy9r276evm',''),('clc93inj500034ciyvqydgnzf',1,'Admin',1672318938,'192.168.64.1',2,36,39814,NULL,'Cluster node [{#NODE.NAME}]: Last access time','clc93inj500004ciy9r276evm',''),('clc93inj500044ciyb8dg4kdo',1,'Admin',1672318938,'192.168.64.1',2,36,39815,NULL,'Cluster node [{#NODE.NAME}]: Status','clc93inj500004ciy9r276evm',''),('clc93inj500054ciycaw7qnze',1,'Admin',1672318938,'192.168.64.1',2,36,42292,NULL,'Interface {#IFNAME}: Inbound packets discarded','clc93inj500004ciy9r276evm',''),('clc93inj500064ciykmecf1rx',1,'Admin',1672318938,'192.168.64.1',2,36,42293,NULL,'Interface {#IFNAME}: Inbound packets with errors','clc93inj500004ciy9r276evm',''),('clc93inj500074ciyw7d2bjfx',1,'Admin',1672318938,'192.168.64.1',2,36,42294,NULL,'Interface {#IFNAME}: Bits received','clc93inj500004ciy9r276evm',''),('clc93inj500084ciy77766s75',1,'Admin',1672318938,'192.168.64.1',2,36,42295,NULL,'Interface {#IFNAME}: Outbound packets discarded','clc93inj500004ciy9r276evm',''),('clc93inj500094ciyjglaf90h',1,'Admin',1672318938,'192.168.64.1',2,36,42296,NULL,'Interface {#IFNAME}: Outbound packets with errors','clc93inj500004ciy9r276evm',''),('clc93inj5000a4ciy6hkx9juu',1,'Admin',1672318938,'192.168.64.1',2,36,42297,NULL,'Interface {#IFNAME}: Bits sent','clc93inj500004ciy9r276evm',''),('clc93inj5000b4ciyn53ajv65',1,'Admin',1672318938,'192.168.64.1',2,36,42298,NULL,'Interface {#IFNAME}: Operational status','clc93inj500004ciy9r276evm',''),('clc93inj5000c4ciytzclajet',1,'Admin',1672318938,'192.168.64.1',2,36,42299,NULL,'Interface {#IFNAME}: Interface type','clc93inj500004ciy9r276evm',''),('clc93inj5000d4ciy0xxv1ven',1,'Admin',1672318938,'192.168.64.1',2,36,42681,NULL,'Interface {#IFNAME}: Speed','clc93inj500004ciy9r276evm',''),('clc93inj5000e4ciy59lwc52v',1,'Admin',1672318938,'192.168.64.1',2,36,42300,NULL,'{#DEVNAME}: Disk read request avg waiting time (r_await)','clc93inj500004ciy9r276evm',''),('clc93inj5000f4ciyjdt7dcim',1,'Admin',1672318938,'192.168.64.1',2,36,42301,NULL,'{#DEVNAME}: Disk write request avg waiting time (w_await)','clc93inj500004ciy9r276evm',''),('clc93inj5000g4ciy702e5oos',1,'Admin',1672318938,'192.168.64.1',2,36,42302,NULL,'{#DEVNAME}: Get stats','clc93inj500004ciy9r276evm',''),('clc93inj5000h4ciy5oygvgng',1,'Admin',1672318938,'192.168.64.1',2,36,42313,NULL,'{#DEVNAME}: Disk average queue size (avgqu-sz)','clc93inj500004ciy9r276evm',''),('clc93inj5000i4ciy5raerhnm',1,'Admin',1672318938,'192.168.64.1',2,36,42314,NULL,'{#DEVNAME}: Disk read rate','clc93inj500004ciy9r276evm',''),('clc93inj5000j4ciyjjvuyjlf',1,'Admin',1672318938,'192.168.64.1',2,36,42315,NULL,'{#DEVNAME}: Disk read time (rate)','clc93inj500004ciy9r276evm',''),('clc93inj5000k4ciyzb5w3iv9',1,'Admin',1672318938,'192.168.64.1',2,36,42316,NULL,'{#DEVNAME}: Disk utilization','clc93inj500004ciy9r276evm',''),('clc93inj5000l4ciyylergdy7',1,'Admin',1672318938,'192.168.64.1',2,36,42317,NULL,'{#DEVNAME}: Disk write rate','clc93inj500004ciy9r276evm',''),('clc93inj5000m4ciyooo0b64f',1,'Admin',1672318938,'192.168.64.1',2,36,42318,NULL,'{#DEVNAME}: Disk write time (rate)','clc93inj500004ciy9r276evm',''),('clc93inj5000n4ciyyw21rye5',1,'Admin',1672318938,'192.168.64.1',2,36,42303,NULL,'{#FSNAME}: Free inodes in %','clc93inj500004ciy9r276evm',''),('clc93inj5000o4ciy1tjfjgkp',1,'Admin',1672318938,'192.168.64.1',2,36,42304,NULL,'{#FSNAME}: Space utilization','clc93inj500004ciy9r276evm',''),('clc93inj5000p4ciyzkkkr07n',1,'Admin',1672318938,'192.168.64.1',2,36,42305,NULL,'{#FSNAME}: Total space','clc93inj500004ciy9r276evm',''),('clc93inj5000q4ciy533bbsj2',1,'Admin',1672318938,'192.168.64.1',2,36,42306,NULL,'{#FSNAME}: Used space','clc93inj500004ciy9r276evm',''),('clc93inj5000r4ciyhtyc8pwd',1,'Admin',1672318938,'192.168.64.1',2,36,44439,NULL,'{#FSNAME}: Get filesystem data','clc93inj500004ciy9r276evm',''),('clc93inj5000s4ciyjpjke4ut',1,'Admin',1672318938,'192.168.64.1',2,36,44441,NULL,'{#FSNAME}: Filesystem is read-only','clc93inj500004ciy9r276evm',''),('clc93inj5000t4ciymt5b9dce',1,'Admin',1672318938,'192.168.64.1',2,36,44070,NULL,'Proxy [{#PROXY.NAME}]: Certificate','clc93inj500004ciy9r276evm',''),('clc93inj5000u4ciyvs305v9j',1,'Admin',1672318938,'192.168.64.1',2,36,44071,NULL,'Proxy [{#PROXY.NAME}]: Compatibility','clc93inj500004ciy9r276evm',''),('clc93inj5000v4ciypuwlur7p',1,'Admin',1672318938,'192.168.64.1',2,36,44072,NULL,'Proxy [{#PROXY.NAME}]: Compression','clc93inj500004ciy9r276evm',''),('clc93inj5000w4ciyhfayy3d9',1,'Admin',1672318938,'192.168.64.1',2,36,44073,NULL,'Proxy [{#PROXY.NAME}]: Host count','clc93inj500004ciy9r276evm',''),('clc93inj5000x4ciyux976wna',1,'Admin',1672318938,'192.168.64.1',2,36,44074,NULL,'Proxy [{#PROXY.NAME}]: Item count','clc93inj500004ciy9r276evm',''),('clc93inj5000y4ciy3mtiigf0',1,'Admin',1672318938,'192.168.64.1',2,36,44075,NULL,'Proxy [{#PROXY.NAME}]: Last seen, in seconds','clc93inj500004ciy9r276evm',''),('clc93inj5000z4ciymu9e59xz',1,'Admin',1672318938,'192.168.64.1',2,36,44076,NULL,'Proxy [{#PROXY.NAME}]: Mode','clc93inj500004ciy9r276evm',''),('clc93inj500104ciy2kje93un',1,'Admin',1672318938,'192.168.64.1',2,36,44077,NULL,'Proxy [{#PROXY.NAME}]: PSK','clc93inj500004ciy9r276evm',''),('clc93inj500114ciyb9glstml',1,'Admin',1672318938,'192.168.64.1',2,36,44078,NULL,'Proxy [{#PROXY.NAME}]: Required VPS','clc93inj500004ciy9r276evm',''),('clc93inj500124ciyi91pg9i6',1,'Admin',1672318938,'192.168.64.1',2,36,44079,NULL,'Proxy [{#PROXY.NAME}]: Unencrypted','clc93inj500004ciy9r276evm',''),('clc93inj500134ciy9l98f1lr',1,'Admin',1672318938,'192.168.64.1',2,36,44080,NULL,'Proxy [{#PROXY.NAME}]: Version','clc93inj500004ciy9r276evm',''),('clc93inku00144ciysdxz09co',1,'Admin',1672318938,'192.168.64.1',2,15,42227,NULL,'Host name of Zabbix agent running','clc93inj500004ciy9r276evm',''),('clc93inku00154ciy6zaqkt1q',1,'Admin',1672318938,'192.168.64.1',2,15,42237,NULL,'Zabbix agent ping','clc93inj500004ciy9r276evm',''),('clc93inku00164ciy2e2yeha5',1,'Admin',1672318938,'192.168.64.1',2,15,42250,NULL,'Version of Zabbix agent running','clc93inj500004ciy9r276evm',''),('clc93inku00174ciys6kpoj0g',1,'Admin',1672318938,'192.168.64.1',2,15,42251,NULL,'Maximum number of open file descriptors','clc93inj500004ciy9r276evm',''),('clc93inku00184ciy4q8kp9sc',1,'Admin',1672318938,'192.168.64.1',2,15,42252,NULL,'Maximum number of processes','clc93inj500004ciy9r276evm',''),('clc93inku00194ciyrjyej75l',1,'Admin',1672318938,'192.168.64.1',2,15,42253,NULL,'Number of processes','clc93inj500004ciy9r276evm',''),('clc93inku001a4ciyut40y6a6',1,'Admin',1672318938,'192.168.64.1',2,15,42254,NULL,'Number of running processes','clc93inj500004ciy9r276evm',''),('clc93inku001b4ciy9gujdnb2',1,'Admin',1672318938,'192.168.64.1',2,15,42255,NULL,'System boot time','clc93inj500004ciy9r276evm',''),('clc93inku001c4ciyhb25vpe3',1,'Admin',1672318938,'192.168.64.1',2,15,42256,NULL,'Interrupts per second','clc93inj500004ciy9r276evm',''),('clc93inku001d4ciy322dwc43',1,'Admin',1672318938,'192.168.64.1',2,15,42259,NULL,'Load average (15m avg)','clc93inj500004ciy9r276evm',''),('clc93inku001e4ciya46ehya0',1,'Admin',1672318938,'192.168.64.1',2,15,42249,NULL,'Load average (1m avg)','clc93inj500004ciy9r276evm',''),('clc93inku001f4ciyx6x7mt2r',1,'Admin',1672318938,'192.168.64.1',2,15,42257,NULL,'Load average (5m avg)','clc93inj500004ciy9r276evm',''),('clc93inku001g4ciy6ltr33c8',1,'Admin',1672318938,'192.168.64.1',2,15,42260,NULL,'Number of CPUs','clc93inj500004ciy9r276evm',''),('clc93inku001h4ciy87l7phw3',1,'Admin',1672318938,'192.168.64.1',2,15,42261,NULL,'Context switches per second','clc93inj500004ciy9r276evm',''),('clc93inku001i4ciycrhiohnp',1,'Admin',1672318938,'192.168.64.1',2,15,42269,NULL,'CPU utilization','clc93inj500004ciy9r276evm',''),('clc93inku001j4ciyc5qgh7wr',1,'Admin',1672318938,'192.168.64.1',2,15,42262,NULL,'CPU guest time','clc93inj500004ciy9r276evm',''),('clc93inku001k4ciyxskhp9rq',1,'Admin',1672318938,'192.168.64.1',2,15,42263,NULL,'CPU guest nice time','clc93inj500004ciy9r276evm',''),('clc93inku001l4ciyiu8v1787',1,'Admin',1672318938,'192.168.64.1',2,15,42264,NULL,'CPU idle time','clc93inj500004ciy9r276evm',''),('clc93inku001m4ciy4wvbhg43',1,'Admin',1672318938,'192.168.64.1',2,15,42265,NULL,'CPU interrupt time','clc93inj500004ciy9r276evm',''),('clc93inku001n4ciyyur2fyvg',1,'Admin',1672318938,'192.168.64.1',2,15,42258,NULL,'CPU iowait time','clc93inj500004ciy9r276evm',''),('clc93inku001o4ciy363j4546',1,'Admin',1672318938,'192.168.64.1',2,15,42248,NULL,'CPU nice time','clc93inj500004ciy9r276evm',''),('clc93inku001p4ciy0xkqqz0w',1,'Admin',1672318938,'192.168.64.1',2,15,42247,NULL,'CPU softirq time','clc93inj500004ciy9r276evm',''),('clc93inku001q4ciyz805xu3p',1,'Admin',1672318938,'192.168.64.1',2,15,42246,NULL,'CPU steal time','clc93inj500004ciy9r276evm',''),('clc93inku001r4ciyekn88t9x',1,'Admin',1672318938,'192.168.64.1',2,15,42229,NULL,'CPU system time','clc93inj500004ciy9r276evm',''),('clc93inku001s4ciyolfyjzxp',1,'Admin',1672318938,'192.168.64.1',2,15,42230,NULL,'CPU user time','clc93inj500004ciy9r276evm',''),('clc93inku001t4ciyrbcnpjlg',1,'Admin',1672318938,'192.168.64.1',2,15,42231,NULL,'System name','clc93inj500004ciy9r276evm',''),('clc93inku001u4ciy1wqdj5wl',1,'Admin',1672318938,'192.168.64.1',2,15,42232,NULL,'System local time','clc93inj500004ciy9r276evm',''),('clc93inku001v4ciy4fvra31d',1,'Admin',1672318938,'192.168.64.1',2,15,42233,NULL,'Operating system architecture','clc93inj500004ciy9r276evm',''),('clc93inku001w4ciyrdszskx6',1,'Admin',1672318938,'192.168.64.1',2,15,42234,NULL,'Operating system','clc93inj500004ciy9r276evm',''),('clc93inku001x4ciypv2euxux',1,'Admin',1672318938,'192.168.64.1',2,15,42235,NULL,'Software installed','clc93inj500004ciy9r276evm',''),('clc93inku001y4ciyqa7iq1mv',1,'Admin',1672318938,'192.168.64.1',2,15,42228,NULL,'Free swap space','clc93inj500004ciy9r276evm',''),('clc93inku001z4ciyxnsjb63a',1,'Admin',1672318938,'192.168.64.1',2,15,42236,NULL,'Free swap space in %','clc93inj500004ciy9r276evm',''),('clc93inku00204ciytfwqy4d9',1,'Admin',1672318938,'192.168.64.1',2,15,42238,NULL,'Total swap space','clc93inj500004ciy9r276evm',''),('clc93inku00214ciyro3mws2j',1,'Admin',1672318938,'192.168.64.1',2,15,42239,NULL,'System description','clc93inj500004ciy9r276evm',''),('clc93inku00224ciy2u5u75sd',1,'Admin',1672318938,'192.168.64.1',2,15,42240,NULL,'System uptime','clc93inj500004ciy9r276evm',''),('clc93inku00234ciyxv1tq9cr',1,'Admin',1672318938,'192.168.64.1',2,15,42241,NULL,'Number of logged in users','clc93inj500004ciy9r276evm',''),('clc93inku00244ciyabu5ljz4',1,'Admin',1672318938,'192.168.64.1',2,15,42242,NULL,'Checksum of /etc/passwd','clc93inj500004ciy9r276evm',''),('clc93inku00254ciy4ojrv3xm',1,'Admin',1672318938,'192.168.64.1',2,15,44437,NULL,'Get filesystems','clc93inj500004ciy9r276evm',''),('clc93inku00264ciyvdao66da',1,'Admin',1672318938,'192.168.64.1',2,15,42243,NULL,'Available memory','clc93inj500004ciy9r276evm',''),('clc93inku00274ciyh351d317',1,'Admin',1672318938,'192.168.64.1',2,15,42244,NULL,'Available memory in %','clc93inj500004ciy9r276evm',''),('clc93inku00284ciyli1xd2pk',1,'Admin',1672318938,'192.168.64.1',2,15,42245,NULL,'Total memory','clc93inj500004ciy9r276evm',''),('clc93inku00294ciyx4ue5df7',1,'Admin',1672318938,'192.168.64.1',2,15,42270,NULL,'Memory utilization','clc93inj500004ciy9r276evm',''),('clc93inku002a4ciyoztly7ah',1,'Admin',1672318938,'192.168.64.1',2,15,39805,NULL,'Zabbix stats cluster','clc93inj500004ciy9r276evm',''),('clc93inku002b4ciyysdnuvsm',1,'Admin',1672318938,'192.168.64.1',2,15,42266,NULL,'Zabbix agent availability','clc93inj500004ciy9r276evm',''),('clc93inku002c4ciy7kcgne9c',1,'Admin',1672318938,'192.168.64.1',2,15,28534,NULL,'Zabbix server: LLD queue','clc93inj500004ciy9r276evm',''),('clc93inku002d4ciyekvylwpa',1,'Admin',1672318938,'192.168.64.1',2,15,28249,NULL,'Zabbix server: Preprocessing queue','clc93inj500004ciy9r276evm',''),('clc93inku002e4ciyh3v7oaci',1,'Admin',1672318938,'192.168.64.1',2,15,25371,NULL,'Zabbix server: Utilization of alert manager internal processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002f4ciynqxht892',1,'Admin',1672318938,'192.168.64.1',2,15,29823,NULL,'Zabbix server: Utilization of alert syncer internal processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002g4ciyy3j0dh2u',1,'Admin',1672318938,'192.168.64.1',2,15,23252,NULL,'Zabbix server: Utilization of alerter internal processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002h4ciyz3xaoe1z',1,'Admin',1672318938,'192.168.64.1',2,15,33026,NULL,'Zabbix server: Utilization of availability manager internal processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002i4ciyzk9vhi4q',1,'Admin',1672318938,'192.168.64.1',2,15,23253,NULL,'Zabbix server: Utilization of configuration syncer internal processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002j4ciypvlmt3aj',1,'Admin',1672318938,'192.168.64.1',2,15,23255,NULL,'Zabbix server: Utilization of discoverer data collector processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002k4ciywd5063h8',1,'Admin',1672318938,'192.168.64.1',2,15,23256,NULL,'Zabbix server: Utilization of escalator internal processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002l4ciyjnp2m0po',1,'Admin',1672318938,'192.168.64.1',2,15,33027,NULL,'Zabbix server: Utilization of history poller data collector processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002m4ciy1w4af1qt',1,'Admin',1672318938,'192.168.64.1',2,15,23257,NULL,'Zabbix server: Utilization of history syncer internal processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002n4ciyae7z53tw',1,'Admin',1672318938,'192.168.64.1',2,15,23258,NULL,'Zabbix server: Utilization of housekeeper internal processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002o4ciyxhyuzyk0',1,'Admin',1672318938,'192.168.64.1',2,15,23259,NULL,'Zabbix server: Utilization of http poller data collector processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002p4ciyulnlthhw',1,'Admin',1672318938,'192.168.64.1',2,15,23260,NULL,'Zabbix server: Utilization of icmp pinger data collector processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002q4ciymqod31hc',1,'Admin',1672318938,'192.168.64.1',2,15,25367,NULL,'Zabbix server: Utilization of ipmi manager internal processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002r4ciyj6iwmaoj',1,'Admin',1672318938,'192.168.64.1',2,15,23261,NULL,'Zabbix server: Utilization of ipmi poller data collector processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002s4ciy5jqkrdm0',1,'Admin',1672318938,'192.168.64.1',2,15,23262,NULL,'Zabbix server: Utilization of java poller data collector processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002t4ciyfm8iwtj9',1,'Admin',1672318938,'192.168.64.1',2,15,28536,NULL,'Zabbix server: Utilization of LLD manager internal processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002u4ciy8i2lwf60',1,'Admin',1672318938,'192.168.64.1',2,15,28538,NULL,'Zabbix server: Utilization of LLD worker internal processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002v4ciypjph1z1q',1,'Admin',1672318938,'192.168.64.1',2,15,39823,NULL,'Zabbix server: Utilization of ODBC poller data collector processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002w4ciyqmwxrsfa',1,'Admin',1672318938,'192.168.64.1',2,15,23264,NULL,'Zabbix server: Utilization of poller data collector processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002x4ciyv09fofmn',1,'Admin',1672318938,'192.168.64.1',2,15,25667,NULL,'Zabbix server: Utilization of preprocessing manager internal processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002y4ciyt1hn51n2',1,'Admin',1672318938,'192.168.64.1',2,15,25668,NULL,'Zabbix server: Utilization of preprocessing worker internal processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku002z4ciyigrpq6d7',1,'Admin',1672318938,'192.168.64.1',2,15,23265,NULL,'Zabbix server: Utilization of proxy poller data collector processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku00304ciy8i5afduj',1,'Admin',1672318938,'192.168.64.1',2,15,34319,NULL,'Zabbix server: Utilization of report manager internal processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku00314ciy18xl757c',1,'Admin',1672318938,'192.168.64.1',2,15,34318,NULL,'Zabbix server: Utilization of report writer internal processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku00324ciynbqqe7wd',1,'Admin',1672318938,'192.168.64.1',2,15,23266,NULL,'Zabbix server: Utilization of self-monitoring internal processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku00334ciy9rhu16kv',1,'Admin',1672318938,'192.168.64.1',2,15,35277,NULL,'Zabbix server: Utilization of service manager internal processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku00344ciycoutuhnm',1,'Admin',1672318938,'192.168.64.1',2,15,23267,NULL,'Zabbix server: Utilization of snmp trapper data collector processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku00354ciysveyvrsy',1,'Admin',1672318938,'192.168.64.1',2,15,23664,NULL,'Zabbix server: Utilization of task manager internal processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku00364ciy2xhrw9gj',1,'Admin',1672318938,'192.168.64.1',2,15,23268,NULL,'Zabbix server: Utilization of timer internal processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku00374ciy18jrmwsu',1,'Admin',1672318938,'192.168.64.1',2,15,23269,NULL,'Zabbix server: Utilization of trapper data collector processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku00384ciyvpdxd8uu',1,'Admin',1672318938,'192.168.64.1',2,15,35275,NULL,'Zabbix server: Utilization of trigger housekeeper internal processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku00394ciyky7n0oh2',1,'Admin',1672318938,'192.168.64.1',2,15,23270,NULL,'Zabbix server: Utilization of unreachable poller data collector processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku003a4ciy211368t3',1,'Admin',1672318938,'192.168.64.1',2,15,23328,NULL,'Zabbix server: Utilization of vmware data collector processes, in %','clc93inj500004ciy9r276evm',''),('clc93inku003b4ciy1fmvd9z9',1,'Admin',1672318938,'192.168.64.1',2,15,44056,NULL,'Zabbix stats proxy','clc93inj500004ciy9r276evm',''),('clc93inku003c4ciy2hwfruae',1,'Admin',1672318938,'192.168.64.1',2,15,23271,NULL,'Zabbix server: Queue over 10 minutes','clc93inj500004ciy9r276evm',''),('clc93inku003d4ciyz7195z00',1,'Admin',1672318938,'192.168.64.1',2,15,23272,NULL,'Zabbix server: Queue','clc93inj500004ciy9r276evm',''),('clc93inku003e4ciyvq83o003',1,'Admin',1672318938,'192.168.64.1',2,15,23273,NULL,'Zabbix server: Configuration cache, % used','clc93inj500004ciy9r276evm',''),('clc93inku003f4ciywa7z614k',1,'Admin',1672318938,'192.168.64.1',2,15,33024,NULL,'Zabbix server: Trend function cache, % unique requests','clc93inj500004ciy9r276evm',''),('clc93inku003g4ciybipno2ky',1,'Admin',1672318938,'192.168.64.1',2,15,33025,NULL,'Zabbix server: Trend function cache, % misses','clc93inj500004ciy9r276evm',''),('clc93inku003h4ciylgc0cf5t',1,'Admin',1672318938,'192.168.64.1',2,15,23620,NULL,'Zabbix server: Value cache, % used','clc93inj500004ciy9r276evm',''),('clc93inku003i4ciypv1yzolb',1,'Admin',1672318938,'192.168.64.1',2,15,23625,NULL,'Zabbix server: Value cache hits','clc93inj500004ciy9r276evm',''),('clc93inku003j4ciybah4w7cz',1,'Admin',1672318938,'192.168.64.1',2,15,23628,NULL,'Zabbix server: Value cache misses','clc93inj500004ciy9r276evm',''),('clc93inku003k4ciylj31thyl',1,'Admin',1672318938,'192.168.64.1',2,15,23662,NULL,'Zabbix server: Value cache operating mode','clc93inj500004ciy9r276evm',''),('clc93inku003l4ciyv4updjue',1,'Admin',1672318938,'192.168.64.1',2,15,35276,NULL,'Zabbix server: Version','clc93inj500004ciy9r276evm',''),('clc93inku003m4ciyjlnsuc0j',1,'Admin',1672318938,'192.168.64.1',2,15,23635,NULL,'Zabbix server: VMware cache, % used','clc93inj500004ciy9r276evm',''),('clc93inku003n4ciyop9af955',1,'Admin',1672318938,'192.168.64.1',2,15,23274,NULL,'Zabbix server: History write cache, % used','clc93inj500004ciy9r276evm',''),('clc93inku003o4ciy7uxoea28',1,'Admin',1672318938,'192.168.64.1',2,15,23275,NULL,'Zabbix server: History index cache, % used','clc93inj500004ciy9r276evm',''),('clc93inku003p4ciyfky76den',1,'Admin',1672318938,'192.168.64.1',2,15,23276,NULL,'Zabbix server: Trend write cache, % used','clc93inj500004ciy9r276evm',''),('clc93inku003q4ciyies4f4w2',1,'Admin',1672318938,'192.168.64.1',2,15,10073,NULL,'Zabbix server: Number of processed numeric (float) values per second','clc93inj500004ciy9r276evm',''),('clc93inku003r4ciyr3zx94hn',1,'Admin',1672318938,'192.168.64.1',2,15,10075,NULL,'Zabbix server: Number of processed log values per second','clc93inj500004ciy9r276evm',''),('clc93inku003s4ciy5ewzrshn',1,'Admin',1672318938,'192.168.64.1',2,15,10078,NULL,'Zabbix server: Number of processed not supported values per second','clc93inj500004ciy9r276evm',''),('clc93inku003t4ciy4nadcz1r',1,'Admin',1672318938,'192.168.64.1',2,15,10074,NULL,'Zabbix server: Number of processed character values per second','clc93inj500004ciy9r276evm',''),('clc93inku003u4ciy02ubn94w',1,'Admin',1672318938,'192.168.64.1',2,15,10077,NULL,'Zabbix server: Number of processed text values per second','clc93inj500004ciy9r276evm',''),('clc93inku003v4ciyy0bsnehs',1,'Admin',1672318938,'192.168.64.1',2,15,10076,NULL,'Zabbix server: Number of processed numeric (unsigned) values per second','clc93inj500004ciy9r276evm',''),('clc93inku003w4ciy1bcflxev',1,'Admin',1672318938,'192.168.64.1',2,15,23277,NULL,'Zabbix server: Number of processed values per second','clc93inj500004ciy9r276evm',''),('clc93inla003x4ciytf5ai8od',1,'Admin',1672318938,'192.168.64.1',2,4,10084,NULL,'Zabbix server','clc93inj500004ciy9r276evm',''),('clc93sewa00014ciy2rvgqxwd',1,'Admin',1672319394,'192.168.64.1',2,36,22945,NULL,'Interface {#IFNAME}: Incoming network traffic','clc93sewa00004ciyq3kxknhu',''),('clc93sewa00024ciylu6lom9g',1,'Admin',1672319394,'192.168.64.1',2,36,22946,NULL,'Interface {#IFNAME}: Outgoing network traffic','clc93sewa00004ciyq3kxknhu',''),('clc93sewa00034ciyxomqnv62',1,'Admin',1672319394,'192.168.64.1',2,36,22948,NULL,'{#FSNAME}: Free disk space','clc93sewa00004ciyq3kxknhu',''),('clc93sewa00044ciyhajxvmyp',1,'Admin',1672319394,'192.168.64.1',2,36,22949,NULL,'{#FSNAME}: Free inodes, %','clc93sewa00004ciyq3kxknhu',''),('clc93sewa00054ciyil4lpwzl',1,'Admin',1672319394,'192.168.64.1',2,36,22950,NULL,'{#FSNAME}: Total disk space','clc93sewa00004ciyq3kxknhu',''),('clc93sewa00064ciyef636vha',1,'Admin',1672319394,'192.168.64.1',2,36,22951,NULL,'{#FSNAME}: Used disk space','clc93sewa00004ciyq3kxknhu',''),('clc93sewa00074ciy7i1lze90',1,'Admin',1672319394,'192.168.64.1',2,36,22952,NULL,'{#FSNAME}: Free disk space, %','clc93sewa00004ciyq3kxknhu',''),('clc93sewa00084ciy6lrifja1',1,'Admin',1672319394,'192.168.64.1',2,36,44428,NULL,'{#FSNAME}: Get filesystem data','clc93sewa00004ciyq3kxknhu',''),('clc93sewa00094ciy3x44vedk',1,'Admin',1672319394,'192.168.64.1',2,36,44429,NULL,'{#FSNAME}: Filesystem is read-only','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000a4ciyb8hy5yzz',1,'Admin',1672319394,'192.168.64.1',2,36,27212,NULL,'{#SNMPVALUE}: Temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000b4ciyo7x9nb27',1,'Admin',1672319394,'192.168.64.1',2,36,27213,NULL,'#{#SNMPINDEX}: Fan status','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000c4ciycfpn5eo9',1,'Admin',1672319394,'192.168.64.1',2,36,27214,NULL,'{#ENT_NAME}: Hardware serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000d4ciy6qo0kekj',1,'Admin',1672319394,'192.168.64.1',2,36,27246,NULL,'{#SENSOR_INFO}: Temperature status','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000e4ciyd3jgdkep',1,'Admin',1672319394,'192.168.64.1',2,36,27247,NULL,'{#SENSOR_INFO}: Temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000f4ciy4nyvmtt5',1,'Admin',1672319394,'192.168.64.1',2,36,27248,NULL,'{#SENSOR_INFO}: Power supply status','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000g4ciydbijkrx2',1,'Admin',1672319394,'192.168.64.1',2,36,27249,NULL,'{#SENSOR_INFO}: Fan speed','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000h4ciy6fnehagq',1,'Admin',1672319394,'192.168.64.1',2,36,27250,NULL,'{#SENSOR_INFO}: Fan status','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000i4ciyulen4a1h',1,'Admin',1672319394,'192.168.64.1',2,36,27312,NULL,'PSU {#PSU_INDEX}: Power supply status','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000j4ciyiozg0fqq',1,'Admin',1672319394,'192.168.64.1',2,36,27313,NULL,'Fan {#FAN_INDEX}: Fan status','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000k4ciyhwezwgab',1,'Admin',1672319394,'192.168.64.1',2,36,27314,NULL,'{#SENSOR_DESCR}: Temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000l4ciyfw2omia8',1,'Admin',1672319394,'192.168.64.1',2,36,27315,NULL,'Chassis #{#SNMPINDEX}: Temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000m4ciygna0sxcn',1,'Admin',1672319394,'192.168.64.1',2,36,27316,NULL,'Unit {#PSU_UNIT} PSU {#PSU_INDEX}: Power supply status','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000n4ciyzv67gf6e',1,'Admin',1672319394,'192.168.64.1',2,36,27317,NULL,'Unit {#FAN_UNIT} Fan {#FAN_INDEX}: Fan status','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000o4ciyx2pnlod4',1,'Admin',1672319394,'192.168.64.1',2,36,27318,NULL,'{#SENSOR_DESCR}: Temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000p4ciyy3i6fxf6',1,'Admin',1672319394,'192.168.64.1',2,36,27319,NULL,'Unit {#SNMPINDEX}: Hardware model name','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000q4ciyg33jjyor',1,'Admin',1672319394,'192.168.64.1',2,36,27320,NULL,'Unit {#SNMPVALUE}: Hardware serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000r4ciyu5uqm6w2',1,'Admin',1672319394,'192.168.64.1',2,36,27415,NULL,'{#SNMPVALUE}: Free memory','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000s4ciyqmgt58f4',1,'Admin',1672319394,'192.168.64.1',2,36,27416,NULL,'{#SNMPVALUE}: Used memory','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000t4ciy8srcdk6f',1,'Admin',1672319394,'192.168.64.1',2,36,30101,NULL,'{#SNMPVALUE}: Memory utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000u4ciymb2pchz4',1,'Admin',1672319394,'192.168.64.1',2,36,27417,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000v4ciyt8mg0kw6',1,'Admin',1672319394,'192.168.64.1',2,36,27419,NULL,'{#ENT_NAME}: Hardware serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000w4ciyxpwec2am',1,'Admin',1672319394,'192.168.64.1',2,36,27420,NULL,'{#SNMPVALUE}: Temperature status','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000x4ciyyuxm8mga',1,'Admin',1672319394,'192.168.64.1',2,36,27421,NULL,'{#SNMPVALUE}: Temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000y4ciy0j6o2a85',1,'Admin',1672319394,'192.168.64.1',2,36,27422,NULL,'{#SENSOR_INFO}: Power supply status','clc93sewa00004ciyq3kxknhu',''),('clc93sewa000z4ciysqc52l4f',1,'Admin',1672319394,'192.168.64.1',2,36,27423,NULL,'{#SENSOR_INFO}: Fan status','clc93sewa00004ciyq3kxknhu',''),('clc93sewa00104ciyfycrnk1r',1,'Admin',1672319394,'192.168.64.1',2,36,28246,NULL,'{#SNMPVALUE}: CPU utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewa00114ciyaec6uahk',1,'Admin',1672319394,'192.168.64.1',2,36,28323,NULL,'{#SENSOR_INFO}: Temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewa00124ciyqwbgoiu3',1,'Admin',1672319394,'192.168.64.1',2,36,28324,NULL,'{#SENSOR_INFO}: Temperature status','clc93sewa00004ciyq3kxknhu',''),('clc93sewa00134ciylj2xruqp',1,'Admin',1672319394,'192.168.64.1',2,36,28325,NULL,'{#SENSOR_INFO}: Fan speed','clc93sewa00004ciyq3kxknhu',''),('clc93sewa00144ciyw8gxlyin',1,'Admin',1672319394,'192.168.64.1',2,36,28326,NULL,'{#SENSOR_INFO}: Fan status','clc93sewa00004ciyq3kxknhu',''),('clc93sewa00154ciy9gi901m3',1,'Admin',1672319394,'192.168.64.1',2,36,28327,NULL,'{#ENT_NAME}: Hardware model name','clc93sewa00004ciyq3kxknhu',''),('clc93sewa00164ciybd349ens',1,'Admin',1672319394,'192.168.64.1',2,36,28328,NULL,'{#ENT_NAME}: Hardware serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewa00174ciyxgp5wr5a',1,'Admin',1672319394,'192.168.64.1',2,36,28329,NULL,'{#ENT_NAME}: Power supply status','clc93sewa00004ciyq3kxknhu',''),('clc93sewa00184ciyqldw4a93',1,'Admin',1672319394,'192.168.64.1',2,36,28798,NULL,'Apache: Connections async closing','clc93sewa00004ciyq3kxknhu',''),('clc93sewa00194ciy28io6fh8',1,'Admin',1672319394,'192.168.64.1',2,36,28799,NULL,'Apache: Connections async keep alive','clc93sewa00004ciyq3kxknhu',''),('clc93sewa001a4ciyqwnxm4hs',1,'Admin',1672319394,'192.168.64.1',2,36,28800,NULL,'Apache: Connections async writing','clc93sewa00004ciyq3kxknhu',''),('clc93sewa001b4ciy1w2ax6z8',1,'Admin',1672319394,'192.168.64.1',2,36,28801,NULL,'Apache: Connections total','clc93sewa00004ciyq3kxknhu',''),('clc93sewa001c4ciyqacszs59',1,'Admin',1672319394,'192.168.64.1',2,36,28802,NULL,'Apache: Bytes per request','clc93sewa00004ciyq3kxknhu',''),('clc93sewa001d4ciya1ym8acl',1,'Admin',1672319394,'192.168.64.1',2,36,28803,NULL,'Apache: Number of async processes','clc93sewa00004ciyq3kxknhu',''),('clc93sewa001e4ciy18poy6nq',1,'Admin',1672319394,'192.168.64.1',2,36,30091,NULL,'#{#SNMPINDEX}: Power supply status','clc93sewa00004ciyq3kxknhu',''),('clc93sewa001f4ciy2rbahlx0',1,'Admin',1672319394,'192.168.64.1',2,36,30092,NULL,'#{#SNMPINDEX}: Power supply status','clc93sewa00004ciyq3kxknhu',''),('clc93sewa001g4ciydm4r4duv',1,'Admin',1672319394,'192.168.64.1',2,36,30688,NULL,'IPMI: {#SENSOR_ID}','clc93sewa00004ciyq3kxknhu',''),('clc93sewa001h4ciyueovqjzn',1,'Admin',1672319394,'192.168.64.1',2,36,30689,NULL,'IPMI: {#SENSOR_ID}, {#SENSOR_UNIT}','clc93sewa00004ciyq3kxknhu',''),('clc93sewa001i4ciyidaon0ud',1,'Admin',1672319394,'192.168.64.1',2,36,30917,NULL,'Apache: Bytes per request','clc93sewa00004ciyq3kxknhu',''),('clc93sewa001j4ciy22iobzdx',1,'Admin',1672319394,'192.168.64.1',2,36,30918,NULL,'Apache: Connections async closing','clc93sewa00004ciyq3kxknhu',''),('clc93sewa001k4ciybbrku127',1,'Admin',1672319394,'192.168.64.1',2,36,30919,NULL,'Apache: Connections async keepalive','clc93sewa00004ciyq3kxknhu',''),('clc93sewa001l4ciyr9g77m1c',1,'Admin',1672319394,'192.168.64.1',2,36,30920,NULL,'Apache: Connections async writing','clc93sewa00004ciyq3kxknhu',''),('clc93sewa001m4ciyh6cnibne',1,'Admin',1672319394,'192.168.64.1',2,36,30921,NULL,'Apache: Connections total','clc93sewa00004ciyq3kxknhu',''),('clc93sewb001n4ciyz6zs7dr0',1,'Admin',1672319394,'192.168.64.1',2,36,30922,NULL,'Apache: Number of async processes','clc93sewa00004ciyq3kxknhu',''),('clc93sewb001o4ciy5o2z15qx',1,'Admin',1672319394,'192.168.64.1',2,36,31807,NULL,'IAX trunk \"{#OBJECTNAME}\": Active channels','clc93sewa00004ciyq3kxknhu',''),('clc93sewb001p4ciyfid9hpqx',1,'Admin',1672319394,'192.168.64.1',2,36,31808,NULL,'IAX trunk \"{#OBJECTNAME}\": Status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb001q4ciyjqzpye6w',1,'Admin',1672319394,'192.168.64.1',2,36,31809,NULL,'PJSIP trunk \"{#OBJECTNAME}\": Active channels','clc93sewa00004ciyq3kxknhu',''),('clc93sewb001r4ciycb4bxzc7',1,'Admin',1672319394,'192.168.64.1',2,36,31810,NULL,'PJSIP trunk \"{#OBJECTNAME}\": Device state','clc93sewa00004ciyq3kxknhu',''),('clc93sewb001s4ciyg74pidq6',1,'Admin',1672319394,'192.168.64.1',2,36,31811,NULL,'\"{#QUEUE}\": Available','clc93sewa00004ciyq3kxknhu',''),('clc93sewb001t4ciyqpggfk5x',1,'Admin',1672319394,'192.168.64.1',2,36,31812,NULL,'\"{#QUEUE}\": Callers','clc93sewa00004ciyq3kxknhu',''),('clc93sewb001u4ciym7gqbvfu',1,'Admin',1672319394,'192.168.64.1',2,36,31813,NULL,'\"{#QUEUE}\": Logged in','clc93sewa00004ciyq3kxknhu',''),('clc93sewb001v4ciyzratu6zv',1,'Admin',1672319394,'192.168.64.1',2,36,31814,NULL,'SIP trunk \"{#OBJECTNAME}\": Active channels','clc93sewa00004ciyq3kxknhu',''),('clc93sewb001w4ciybf4zh8j0',1,'Admin',1672319394,'192.168.64.1',2,36,31815,NULL,'SIP trunk \"{#OBJECTNAME}\": Status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb001x4ciy66oxklbf',1,'Admin',1672319394,'192.168.64.1',2,36,32170,NULL,'Ceph: [osd.{#OSDNAME}] OSD fill','clc93sewa00004ciyq3kxknhu',''),('clc93sewb001y4ciytypccotr',1,'Admin',1672319394,'192.168.64.1',2,36,32171,NULL,'Ceph: [osd.{#OSDNAME}] OSD in','clc93sewa00004ciyq3kxknhu',''),('clc93sewb001z4ciy9iwahonx',1,'Admin',1672319394,'192.168.64.1',2,36,32172,NULL,'Ceph: [osd.{#OSDNAME}] OSD latency apply','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00204ciyrlfbwato',1,'Admin',1672319394,'192.168.64.1',2,36,32173,NULL,'Ceph: [osd.{#OSDNAME}] OSD latency commit','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00214ciyjsmzxmt7',1,'Admin',1672319394,'192.168.64.1',2,36,32174,NULL,'Ceph: [osd.{#OSDNAME}] OSD PGs','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00224ciynfpn7zi5',1,'Admin',1672319394,'192.168.64.1',2,36,32175,NULL,'Ceph: [osd.{#OSDNAME}] OSD up','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00234ciyrowg121g',1,'Admin',1672319394,'192.168.64.1',2,36,32507,NULL,'Ceph: [{#POOLNAME}] Pool Used','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00244ciy2za8fzz5',1,'Admin',1672319394,'192.168.64.1',2,36,32508,NULL,'Ceph: [{#POOLNAME}] Max available','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00254ciyo3awlee4',1,'Admin',1672319394,'192.168.64.1',2,36,32509,NULL,'Ceph: [{#POOLNAME}] Pool objects','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00264ciy1fppu066',1,'Admin',1672319394,'192.168.64.1',2,36,32510,NULL,'Ceph: [{#POOLNAME}] Pool Percent Used','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00274ciyja0kdhrk',1,'Admin',1672319394,'192.168.64.1',2,36,32511,NULL,'Ceph: [{#POOLNAME}] Pool Read bandwidth','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00284ciys7n5035l',1,'Admin',1672319394,'192.168.64.1',2,36,32512,NULL,'Ceph: [{#POOLNAME}] Pool Read operations','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00294ciye3g7xoxg',1,'Admin',1672319394,'192.168.64.1',2,36,32513,NULL,'Ceph: [{#POOLNAME}] Pool RAW Used','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002a4ciyv5o7mrqp',1,'Admin',1672319394,'192.168.64.1',2,36,32514,NULL,'Ceph: [{#POOLNAME}] Pool Write bandwidth','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002b4ciyncro0ci1',1,'Admin',1672319394,'192.168.64.1',2,36,32515,NULL,'Ceph: [{#POOLNAME}] Pool Write operations','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002c4ciyvadeb1cm',1,'Admin',1672319394,'192.168.64.1',2,36,32442,NULL,'Broker {#JMXBROKERNAME}: Version','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002d4ciymp264pln',1,'Admin',1672319394,'192.168.64.1',2,36,32443,NULL,'Broker {#JMXBROKERNAME}: Memory limit','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002e4ciy1k3idna1',1,'Admin',1672319394,'192.168.64.1',2,36,32444,NULL,'Broker {#JMXBROKERNAME}: Memory usage in percents','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002f4ciyrbq746ls',1,'Admin',1672319394,'192.168.64.1',2,36,32445,NULL,'Broker {#JMXBROKERNAME}: Storage limit','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002g4ciynlzwbzeq',1,'Admin',1672319394,'192.168.64.1',2,36,32446,NULL,'Broker {#JMXBROKERNAME}: Storage usage in percents','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002h4ciyk6s62jp4',1,'Admin',1672319394,'192.168.64.1',2,36,32447,NULL,'Broker {#JMXBROKERNAME}: Temp limit','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002i4ciyeeulboul',1,'Admin',1672319394,'192.168.64.1',2,36,32448,NULL,'Broker {#JMXBROKERNAME}: Temp usage in percents','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002j4ciy3uh92qy8',1,'Admin',1672319394,'192.168.64.1',2,36,32449,NULL,'Broker {#JMXBROKERNAME}: Consumers count total','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002k4ciyk86zwirm',1,'Admin',1672319394,'192.168.64.1',2,36,32450,NULL,'Broker {#JMXBROKERNAME}: Messages dequeue rate','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002l4ciylqxqwmcw',1,'Admin',1672319394,'192.168.64.1',2,36,32451,NULL,'Broker {#JMXBROKERNAME}: Messages enqueue rate','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002m4ciyzom4v9o7',1,'Admin',1672319394,'192.168.64.1',2,36,32452,NULL,'Broker {#JMXBROKERNAME}: Producers count total','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002n4ciybsds0k9e',1,'Admin',1672319394,'192.168.64.1',2,36,32453,NULL,'Broker {#JMXBROKERNAME}: Uptime','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002o4ciyvvz5dmke',1,'Admin',1672319394,'192.168.64.1',2,36,32454,NULL,'{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Consumers count total on {#JMXBROKERNAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002p4ciylhwwdz48',1,'Admin',1672319394,'192.168.64.1',2,36,32455,NULL,'{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Producers count total on {#JMXBROKERNAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002q4ciygkavd18v',1,'Admin',1672319394,'192.168.64.1',2,36,32456,NULL,'{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Consumers count','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002r4ciygxjs0y5m',1,'Admin',1672319394,'192.168.64.1',2,36,32457,NULL,'{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Messages dequeue rate','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002s4ciycs96p3xj',1,'Admin',1672319394,'192.168.64.1',2,36,32458,NULL,'{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Messages enqueue rate','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002t4ciycg6xj2u7',1,'Admin',1672319394,'192.168.64.1',2,36,32459,NULL,'{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Expired messages count','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002u4ciyetl36kc2',1,'Admin',1672319394,'192.168.64.1',2,36,32460,NULL,'{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Memory usage in percents','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002v4ciymcwrqkb1',1,'Admin',1672319394,'192.168.64.1',2,36,32461,NULL,'{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Producers count','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002w4ciyvi934q1t',1,'Admin',1672319394,'192.168.64.1',2,36,32462,NULL,'{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Queue size','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002x4ciy4uz5nniy',1,'Admin',1672319394,'192.168.64.1',2,36,32486,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002y4ciyxjvci7cl',1,'Admin',1672319394,'192.168.64.1',2,36,32487,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb002z4ciy6um5ciuf',1,'Admin',1672319394,'192.168.64.1',2,36,32488,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00304ciygjj6f1a9',1,'Admin',1672319394,'192.168.64.1',2,36,32489,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00314ciydrm6a07e',1,'Admin',1672319394,'192.168.64.1',2,36,32490,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00324ciy3k2t24ex',1,'Admin',1672319394,'192.168.64.1',2,36,32491,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00334ciyu1z3x7au',1,'Admin',1672319394,'192.168.64.1',2,36,32492,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00344ciybd79kwjg',1,'Admin',1672319394,'192.168.64.1',2,36,32493,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00354ciyr9srb6t4',1,'Admin',1672319394,'192.168.64.1',2,36,32494,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00364ciygp8n8kb8',1,'Admin',1672319394,'192.168.64.1',2,36,32495,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00374ciyfeyjo9nt',1,'Admin',1672319394,'192.168.64.1',2,36,32496,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00384ciy2znj2lsy',1,'Admin',1672319394,'192.168.64.1',2,36,32497,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00394ciyphkvnn9b',1,'Admin',1672319394,'192.168.64.1',2,36,32498,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003a4ciy49njafho',1,'Admin',1672319394,'192.168.64.1',2,36,32499,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003b4ciyfbfdpcz6',1,'Admin',1672319394,'192.168.64.1',2,36,32500,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003c4ciy7hna5l13',1,'Admin',1672319394,'192.168.64.1',2,36,32501,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003d4ciyq1vzt5md',1,'Admin',1672319394,'192.168.64.1',2,36,32502,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003e4ciyn28srrxx',1,'Admin',1672319394,'192.168.64.1',2,36,32503,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003f4ciyihq4yone',1,'Admin',1672319394,'192.168.64.1',2,36,32504,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003g4ciyx6vcx7on',1,'Admin',1672319394,'192.168.64.1',2,36,32505,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003h4ciy9li0v7v7',1,'Admin',1672319394,'192.168.64.1',2,36,32506,NULL,'{#METRIC}: [{#GATEWAY_NAME}] {#SENSOR_NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003i4ciyd4e9o82p',1,'Admin',1672319394,'192.168.64.1',2,36,32758,NULL,'Kafka {#JMXTOPIC}: Bytes out per second','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003j4ciy120hy0wr',1,'Admin',1672319394,'192.168.64.1',2,36,32759,NULL,'Kafka {#JMXTOPIC}: Bytes rejected per second','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003k4ciy9w7cuznu',1,'Admin',1672319394,'192.168.64.1',2,36,32760,NULL,'Kafka {#JMXTOPIC}: Bytes in per second','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003l4ciyprr5m6dl',1,'Admin',1672319394,'192.168.64.1',2,36,32761,NULL,'Kafka {#JMXTOPIC}: Messages in per second','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003m4ciykk8ra11f',1,'Admin',1672319394,'192.168.64.1',2,36,32766,NULL,'{#JMXVALUE}: Gzip compression status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003n4ciyn0p4faxp',1,'Admin',1672319394,'192.168.64.1',2,36,32767,NULL,'{#JMXNAME}: Bytes received per second','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003o4ciyok8qgwr6',1,'Admin',1672319394,'192.168.64.1',2,36,32768,NULL,'{#JMXNAME}: Bytes sent per second','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003p4ciyzsauo9l4',1,'Admin',1672319394,'192.168.64.1',2,36,32769,NULL,'{#JMXNAME}: Errors per second','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003q4ciye1di89hi',1,'Admin',1672319394,'192.168.64.1',2,36,32770,NULL,'{#JMXNAME}: Requests processing time','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003r4ciy991qs1ff',1,'Admin',1672319394,'192.168.64.1',2,36,32771,NULL,'{#JMXNAME}: Requests per second','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003s4ciyrb6507pv',1,'Admin',1672319394,'192.168.64.1',2,36,32772,NULL,'{#JMXHOST}{#JMXCONTEXT}: Sessions active','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003t4ciybyzwj05x',1,'Admin',1672319394,'192.168.64.1',2,36,32773,NULL,'{#JMXHOST}{#JMXCONTEXT}: Sessions allowed maximum','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003u4ciy3729gxw5',1,'Admin',1672319394,'192.168.64.1',2,36,32774,NULL,'{#JMXHOST}{#JMXCONTEXT}: Sessions active maximum so far','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003v4ciyulkkk7fy',1,'Admin',1672319394,'192.168.64.1',2,36,32775,NULL,'{#JMXHOST}{#JMXCONTEXT}: Sessions rejected per second','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003w4ciy0sdrgqnp',1,'Admin',1672319394,'192.168.64.1',2,36,32776,NULL,'{#JMXHOST}{#JMXCONTEXT}: Sessions created per second','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003x4ciys26piaq1',1,'Admin',1672319394,'192.168.64.1',2,36,32777,NULL,'{#JMXNAME}: Threads count','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003y4ciy9asg170s',1,'Admin',1672319394,'192.168.64.1',2,36,32778,NULL,'{#JMXNAME}: Threads busy','clc93sewa00004ciyq3kxknhu',''),('clc93sewb003z4ciyat25yyhf',1,'Admin',1672319394,'192.168.64.1',2,36,32779,NULL,'{#JMXNAME}: Threads limit','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00404ciyej39x9t1',1,'Admin',1672319394,'192.168.64.1',2,36,33096,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Bloom filter false ratio','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00414ciytw535erw',1,'Admin',1672319394,'192.168.64.1',2,36,33097,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Row cache hits','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00424ciyssg2790u',1,'Admin',1672319394,'192.168.64.1',2,36,33098,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Write latency 95 percentile','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00434ciyir7kctkv',1,'Admin',1672319394,'192.168.64.1',2,36,33099,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Write latency 75 percentile','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00444ciymogn31zq',1,'Admin',1672319394,'192.168.64.1',2,36,33100,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Waiting on free memtable space95 percentile','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00454ciyeiag898p',1,'Admin',1672319394,'192.168.64.1',2,36,33101,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Waiting on free memtable space 75 percentile','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00464ciymyetz7zm',1,'Admin',1672319394,'192.168.64.1',2,36,33102,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Disk space used','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00474ciyvn0rul31',1,'Admin',1672319394,'192.168.64.1',2,36,33103,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Tombstone scanned 95 percentile','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00484ciy6prvhegj',1,'Admin',1672319394,'192.168.64.1',2,36,33104,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Tombstone scanned 75 percentile','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00494ciyz0hrngim',1,'Admin',1672319394,'192.168.64.1',2,36,33105,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: SS Tables per read 95 percentile','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004a4ciy10u7w4ip',1,'Admin',1672319394,'192.168.64.1',2,36,33106,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: SS Tables per read 75 percentile','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004b4ciybwuypcm5',1,'Admin',1672319394,'192.168.64.1',2,36,33107,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Snapshots size','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004c4ciyuupetsc2',1,'Admin',1672319394,'192.168.64.1',2,36,33108,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Row cache misses','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004d4ciyjqnc2t0q',1,'Admin',1672319394,'192.168.64.1',2,36,33109,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Out of row cache hits','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004e4ciyggh22nqn',1,'Admin',1672319394,'192.168.64.1',2,36,33110,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Read per second','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004f4ciy4g3xhq29',1,'Admin',1672319394,'192.168.64.1',2,36,33111,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Bytes flushed','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004g4ciyc6zyl1g6',1,'Admin',1672319394,'192.168.64.1',2,36,33112,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Read latency 95 percentile','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004h4ciy8x9blm3t',1,'Admin',1672319394,'192.168.64.1',2,36,33113,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Read latency 75 percentile','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004i4ciykzyd3lgw',1,'Admin',1672319394,'192.168.64.1',2,36,33114,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Pending flushes','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004j4ciypt3iejaf',1,'Admin',1672319394,'192.168.64.1',2,36,33115,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Pending compactions','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004k4ciy8qh1r45f',1,'Admin',1672319394,'192.168.64.1',2,36,33116,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Mean partition size','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004l4ciymqqbfv0q',1,'Admin',1672319394,'192.168.64.1',2,36,33117,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Max sartition size','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004m4ciystas4bid',1,'Admin',1672319394,'192.168.64.1',2,36,33118,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Live SS Table','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004n4ciy2n60d880',1,'Admin',1672319394,'192.168.64.1',2,36,33119,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Live disk space used','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004o4ciy901vy9fm',1,'Admin',1672319394,'192.168.64.1',2,36,33120,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: KeyCache hit rate','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004p4ciy6igdare8',1,'Admin',1672319394,'192.168.64.1',2,36,33121,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Compression ratio','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004q4ciybf89xw0a',1,'Admin',1672319394,'192.168.64.1',2,36,33122,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Compaction bytes written','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004r4ciy59rfp3fr',1,'Admin',1672319394,'192.168.64.1',2,36,33123,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Col update time delta 95 percentile','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004s4ciy4fk1h5ri',1,'Admin',1672319394,'192.168.64.1',2,36,33124,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Col update time delta75 percentile','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004t4ciy2ltmmylj',1,'Admin',1672319394,'192.168.64.1',2,36,33125,NULL,'{#JMXKEYSPACE}.{#JMXSCOPE}: Write per second','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004u4ciy96gqgmid',1,'Admin',1672319394,'192.168.64.1',2,36,33183,NULL,'{#SENSOR_INFO}: Voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004v4ciyf2llrkyk',1,'Admin',1672319394,'192.168.64.1',2,36,33966,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004w4ciyf0bfafj7',1,'Admin',1672319394,'192.168.64.1',2,36,33967,NULL,'{#ENT_NAME}: Hardware serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004x4ciyg4jc8siu',1,'Admin',1672319394,'192.168.64.1',2,36,33968,NULL,'{#SNMPVALUE}: Fan status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004y4ciy0i16v8no',1,'Admin',1672319394,'192.168.64.1',2,36,33969,NULL,'{#SNMPVALUE}: Free memory','clc93sewa00004ciyq3kxknhu',''),('clc93sewb004z4ciyd4mo1a7f',1,'Admin',1672319394,'192.168.64.1',2,36,33970,NULL,'{#SNMPVALUE}: Used memory','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00504ciyelutc19v',1,'Admin',1672319394,'192.168.64.1',2,36,33971,NULL,'{#SNMPVALUE}: Memory utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00514ciyfmn3c4rx',1,'Admin',1672319394,'192.168.64.1',2,36,33972,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00524ciyyf0fy1ck',1,'Admin',1672319394,'192.168.64.1',2,36,33973,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00534ciyxr9jq2bw',1,'Admin',1672319394,'192.168.64.1',2,36,33974,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00544ciynet0q8ln',1,'Admin',1672319394,'192.168.64.1',2,36,33975,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00554ciypk0iv5ta',1,'Admin',1672319394,'192.168.64.1',2,36,33976,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00564ciyh52bjlih',1,'Admin',1672319394,'192.168.64.1',2,36,33977,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00574ciyf78ku644',1,'Admin',1672319394,'192.168.64.1',2,36,33978,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00584ciy899klsrc',1,'Admin',1672319394,'192.168.64.1',2,36,33979,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00594ciyb3j5wvwn',1,'Admin',1672319394,'192.168.64.1',2,36,33980,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005a4ciyfoiky3jz',1,'Admin',1672319394,'192.168.64.1',2,36,33981,NULL,'Interface {#IFNAME}({#IFALIAS}): Duplex status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005b4ciynyy2kc9n',1,'Admin',1672319394,'192.168.64.1',2,36,33982,NULL,'{#SNMPVALUE}: Power supply status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005c4ciyyc9gwaki',1,'Admin',1672319394,'192.168.64.1',2,36,33983,NULL,'{#SNMPVALUE}: Temperature status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005d4ciyr335ama9',1,'Admin',1672319394,'192.168.64.1',2,36,33984,NULL,'{#SNMPVALUE}: Temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005e4ciyh6bllwld',1,'Admin',1672319394,'192.168.64.1',2,36,34007,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005f4ciypuam0fmy',1,'Admin',1672319394,'192.168.64.1',2,36,34008,NULL,'{#ENT_NAME}: Hardware serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005g4ciyn2tvu2f9',1,'Admin',1672319394,'192.168.64.1',2,36,34009,NULL,'{#SNMPVALUE}: Fan status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005h4ciyzh23v38o',1,'Admin',1672319394,'192.168.64.1',2,36,34010,NULL,'{#SNMPVALUE}: Free memory','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005i4ciyg73lx5p0',1,'Admin',1672319394,'192.168.64.1',2,36,34011,NULL,'{#SNMPVALUE}: Used memory','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005j4ciyx8roj1o7',1,'Admin',1672319394,'192.168.64.1',2,36,34012,NULL,'{#SNMPVALUE}: Memory utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005k4ciy9g0u7u40',1,'Admin',1672319394,'192.168.64.1',2,36,34013,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005l4ciyan7zvwto',1,'Admin',1672319394,'192.168.64.1',2,36,34014,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005m4ciyapm9extj',1,'Admin',1672319394,'192.168.64.1',2,36,34015,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005n4ciyz5j7d9m0',1,'Admin',1672319394,'192.168.64.1',2,36,34016,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005o4ciylio3zvph',1,'Admin',1672319394,'192.168.64.1',2,36,34017,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005p4ciy6q9mgdux',1,'Admin',1672319394,'192.168.64.1',2,36,34018,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005q4ciy40jt9gf9',1,'Admin',1672319394,'192.168.64.1',2,36,34019,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005r4ciyx1yeuvak',1,'Admin',1672319394,'192.168.64.1',2,36,34020,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005s4ciycbv3u213',1,'Admin',1672319394,'192.168.64.1',2,36,34021,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005t4ciytp83zccx',1,'Admin',1672319394,'192.168.64.1',2,36,34022,NULL,'Interface {#IFNAME}({#IFALIAS}): Duplex status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005u4ciypocpa570',1,'Admin',1672319394,'192.168.64.1',2,36,34023,NULL,'{#SNMPVALUE}: Power supply status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005v4ciy2gqida4a',1,'Admin',1672319394,'192.168.64.1',2,36,34024,NULL,'{#SNMPVALUE}: Temperature status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005w4ciys4i9167h',1,'Admin',1672319394,'192.168.64.1',2,36,34025,NULL,'{#SNMPVALUE}: Temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005x4ciykivogxbj',1,'Admin',1672319394,'192.168.64.1',2,36,34048,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005y4ciyxvp3l3zd',1,'Admin',1672319394,'192.168.64.1',2,36,34049,NULL,'{#ENT_NAME}: Hardware serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewb005z4ciy5pohagrh',1,'Admin',1672319394,'192.168.64.1',2,36,34050,NULL,'{#SNMPVALUE}: Fan status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00604ciyr6mlmukh',1,'Admin',1672319394,'192.168.64.1',2,36,34051,NULL,'{#SNMPVALUE}: Free memory','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00614ciy1hy2enfl',1,'Admin',1672319394,'192.168.64.1',2,36,34052,NULL,'{#SNMPVALUE}: Used memory','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00624ciybbzc6lq9',1,'Admin',1672319394,'192.168.64.1',2,36,34053,NULL,'{#SNMPVALUE}: Memory utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00634ciyrgww0jo5',1,'Admin',1672319394,'192.168.64.1',2,36,34054,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00644ciylqd5dvhj',1,'Admin',1672319394,'192.168.64.1',2,36,34055,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00654ciync1yppk4',1,'Admin',1672319394,'192.168.64.1',2,36,34056,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00664ciyjqlbejng',1,'Admin',1672319394,'192.168.64.1',2,36,34057,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00674ciy6dtvbpmd',1,'Admin',1672319394,'192.168.64.1',2,36,34058,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00684ciyyvhuvhbv',1,'Admin',1672319394,'192.168.64.1',2,36,34059,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00694ciyiyo7gd2s',1,'Admin',1672319394,'192.168.64.1',2,36,34060,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006a4ciyx9wjgx5u',1,'Admin',1672319394,'192.168.64.1',2,36,34061,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006b4ciyc6vicgcp',1,'Admin',1672319394,'192.168.64.1',2,36,34062,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006c4ciy7rppsoko',1,'Admin',1672319394,'192.168.64.1',2,36,34063,NULL,'Interface {#IFNAME}({#IFALIAS}): Duplex status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006d4ciygdd0bc2t',1,'Admin',1672319394,'192.168.64.1',2,36,34064,NULL,'{#SNMPVALUE}: Power supply status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006e4ciy4bzbbbst',1,'Admin',1672319394,'192.168.64.1',2,36,34065,NULL,'{#SNMPVALUE}: Temperature status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006f4ciy0galvs3x',1,'Admin',1672319394,'192.168.64.1',2,36,34066,NULL,'{#SNMPVALUE}: Temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006g4ciyfui2ad1e',1,'Admin',1672319394,'192.168.64.1',2,36,34089,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006h4ciyrn84h91s',1,'Admin',1672319394,'192.168.64.1',2,36,34090,NULL,'{#ENT_NAME}: Hardware serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006i4ciys97eev2k',1,'Admin',1672319394,'192.168.64.1',2,36,34091,NULL,'{#SNMPVALUE}: Fan status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006j4ciyoim9jrqb',1,'Admin',1672319394,'192.168.64.1',2,36,34092,NULL,'{#SNMPVALUE}: Free memory','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006k4ciy0i6508aj',1,'Admin',1672319394,'192.168.64.1',2,36,34093,NULL,'{#SNMPVALUE}: Used memory','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006l4ciywh4neea7',1,'Admin',1672319394,'192.168.64.1',2,36,34094,NULL,'{#SNMPVALUE}: Memory utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006m4ciypv1xnxvf',1,'Admin',1672319394,'192.168.64.1',2,36,34095,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006n4ciytd7ul588',1,'Admin',1672319394,'192.168.64.1',2,36,34096,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006o4ciyb9qy6ayv',1,'Admin',1672319394,'192.168.64.1',2,36,34097,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006p4ciycq9hudf9',1,'Admin',1672319394,'192.168.64.1',2,36,34098,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006q4ciyupgsqflr',1,'Admin',1672319394,'192.168.64.1',2,36,34099,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006r4ciyl1fl6rwj',1,'Admin',1672319394,'192.168.64.1',2,36,34100,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006s4ciyaa3y4lzr',1,'Admin',1672319394,'192.168.64.1',2,36,34101,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006t4ciyno4p8cs5',1,'Admin',1672319394,'192.168.64.1',2,36,34102,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006u4ciy29kh1kqf',1,'Admin',1672319394,'192.168.64.1',2,36,34103,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006v4ciyj9ue0dou',1,'Admin',1672319394,'192.168.64.1',2,36,34104,NULL,'Interface {#IFNAME}({#IFALIAS}): Duplex status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006w4ciy276ah24v',1,'Admin',1672319394,'192.168.64.1',2,36,34105,NULL,'{#SNMPVALUE}: Power supply status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006x4ciyfnlr1al3',1,'Admin',1672319394,'192.168.64.1',2,36,34106,NULL,'{#SNMPVALUE}: Temperature status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006y4ciy8sx8zlpp',1,'Admin',1672319394,'192.168.64.1',2,36,34107,NULL,'{#SNMPVALUE}: Temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewb006z4ciyez5vv028',1,'Admin',1672319394,'192.168.64.1',2,36,34130,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00704ciyj232bqnu',1,'Admin',1672319394,'192.168.64.1',2,36,34131,NULL,'{#ENT_NAME}: Hardware serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00714ciyv70ar5a3',1,'Admin',1672319394,'192.168.64.1',2,36,34132,NULL,'{#SNMPVALUE}: Fan status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00724ciymtpeymbn',1,'Admin',1672319394,'192.168.64.1',2,36,34133,NULL,'{#SNMPVALUE}: Free memory','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00734ciy7xeiyzi6',1,'Admin',1672319394,'192.168.64.1',2,36,34134,NULL,'{#SNMPVALUE}: Used memory','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00744ciy32x7ioda',1,'Admin',1672319394,'192.168.64.1',2,36,34135,NULL,'{#SNMPVALUE}: Memory utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00754ciyphweodkv',1,'Admin',1672319394,'192.168.64.1',2,36,34136,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00764ciy66iun2u9',1,'Admin',1672319394,'192.168.64.1',2,36,34137,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00774ciyobhlmjxr',1,'Admin',1672319394,'192.168.64.1',2,36,34138,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00784ciya0e0kfcr',1,'Admin',1672319394,'192.168.64.1',2,36,34139,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00794ciyo6kwxmfu',1,'Admin',1672319394,'192.168.64.1',2,36,34140,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007a4ciyjz9bt5mw',1,'Admin',1672319394,'192.168.64.1',2,36,34141,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007b4ciy71uhqcgt',1,'Admin',1672319394,'192.168.64.1',2,36,34142,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007c4ciyo7hsrlw0',1,'Admin',1672319394,'192.168.64.1',2,36,34143,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007d4ciyi2jlrzaa',1,'Admin',1672319394,'192.168.64.1',2,36,34144,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007e4ciyxim3job4',1,'Admin',1672319394,'192.168.64.1',2,36,34145,NULL,'Interface {#IFNAME}({#IFALIAS}): Duplex status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007f4ciycnr4upln',1,'Admin',1672319394,'192.168.64.1',2,36,34146,NULL,'{#SNMPVALUE}: Power supply status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007g4ciy215o49y1',1,'Admin',1672319394,'192.168.64.1',2,36,34147,NULL,'{#SNMPVALUE}: Temperature status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007h4ciyyhnf1ykq',1,'Admin',1672319394,'192.168.64.1',2,36,34148,NULL,'{#SNMPVALUE}: Temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007i4ciyn0folva0',1,'Admin',1672319394,'192.168.64.1',2,36,34212,NULL,'{#SNMPINDEX}: External battery packs bad','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007j4ciy7aie27zo',1,'Admin',1672319394,'192.168.64.1',2,36,34213,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007k4ciyir59smkv',1,'Admin',1672319394,'192.168.64.1',2,36,34214,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007l4ciyoca47twj',1,'Admin',1672319394,'192.168.64.1',2,36,34215,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007m4ciyggig5wv5',1,'Admin',1672319394,'192.168.64.1',2,36,34216,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007n4ciykl5tif8p',1,'Admin',1672319394,'192.168.64.1',2,36,34217,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007o4ciy8m6la6b4',1,'Admin',1672319394,'192.168.64.1',2,36,34218,NULL,'{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007p4ciyh57ub63a',1,'Admin',1672319394,'192.168.64.1',2,36,34219,NULL,'{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007q4ciynkjwwh7q',1,'Admin',1672319394,'192.168.64.1',2,36,34220,NULL,'{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007r4ciy8ctxxk85',1,'Admin',1672319394,'192.168.64.1',2,36,34221,NULL,'{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007s4ciy9z2hij2e',1,'Admin',1672319394,'192.168.64.1',2,36,34222,NULL,'{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007t4ciyg81fjvqw',1,'Admin',1672319394,'192.168.64.1',2,36,34223,NULL,'{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007u4ciydpqak0hn',1,'Admin',1672319394,'192.168.64.1',2,36,34224,NULL,'{#PHASEINDEX}: Phase input current','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007v4ciymhi4jw8f',1,'Admin',1672319394,'192.168.64.1',2,36,34225,NULL,'{#PHASEINDEX}: Phase input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007w4ciyyried5ic',1,'Admin',1672319394,'192.168.64.1',2,36,34482,NULL,'{#SNMPINDEX}: External battery packs bad','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007x4ciy97xwt5vy',1,'Admin',1672319394,'192.168.64.1',2,36,34483,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007y4ciy7ku9q7pa',1,'Admin',1672319394,'192.168.64.1',2,36,34484,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health','clc93sewa00004ciyq3kxknhu',''),('clc93sewb007z4ciysrweom5a',1,'Admin',1672319394,'192.168.64.1',2,36,34485,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00804ciyqlkdguev',1,'Admin',1672319394,'192.168.64.1',2,36,34486,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00814ciye747rn2a',1,'Admin',1672319394,'192.168.64.1',2,36,34487,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00824ciy3w323k2d',1,'Admin',1672319394,'192.168.64.1',2,36,34488,NULL,'{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00834ciyqebyt3db',1,'Admin',1672319394,'192.168.64.1',2,36,34489,NULL,'{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00844ciyv7wexvsa',1,'Admin',1672319394,'192.168.64.1',2,36,34490,NULL,'{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00854ciy7w8oyieo',1,'Admin',1672319394,'192.168.64.1',2,36,34491,NULL,'{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00864ciyeosxp5xv',1,'Admin',1672319394,'192.168.64.1',2,36,34492,NULL,'{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00874ciy9v72e000',1,'Admin',1672319394,'192.168.64.1',2,36,34493,NULL,'{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00884ciyzbmouvw3',1,'Admin',1672319394,'192.168.64.1',2,36,34494,NULL,'{#PHASEINDEX}: Phase input current','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00894ciygpfn2t4v',1,'Admin',1672319394,'192.168.64.1',2,36,34495,NULL,'{#PHASEINDEX}: Phase input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008a4ciy2ii2rv4j',1,'Admin',1672319394,'192.168.64.1',2,36,34496,NULL,'{#PHASEINDEX}: Phase output current','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008b4ciyfy9ok7ao',1,'Admin',1672319394,'192.168.64.1',2,36,34497,NULL,'{#PHASEINDEX}: Phase output load, %','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008c4ciy2u2by1xj',1,'Admin',1672319394,'192.168.64.1',2,36,34498,NULL,'{#PHASEINDEX}: Phase output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008d4ciym8te9ui8',1,'Admin',1672319394,'192.168.64.1',2,36,34530,NULL,'{#SNMPINDEX}: External battery packs bad','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008e4ciyn9mahdlk',1,'Admin',1672319394,'192.168.64.1',2,36,34531,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008f4ciy77fs6q4y',1,'Admin',1672319394,'192.168.64.1',2,36,34532,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008g4ciyvt64pt5g',1,'Admin',1672319394,'192.168.64.1',2,36,34533,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008h4ciydnjtez6b',1,'Admin',1672319394,'192.168.64.1',2,36,34534,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008i4ciygtt7nmxy',1,'Admin',1672319394,'192.168.64.1',2,36,34535,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008j4ciys76abkxc',1,'Admin',1672319394,'192.168.64.1',2,36,34536,NULL,'{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008k4ciyouei2upg',1,'Admin',1672319394,'192.168.64.1',2,36,34537,NULL,'{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008l4ciymlhy06xq',1,'Admin',1672319394,'192.168.64.1',2,36,34538,NULL,'{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008m4ciyiwkr2ozp',1,'Admin',1672319394,'192.168.64.1',2,36,34539,NULL,'{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008n4ciyt4rpeaek',1,'Admin',1672319394,'192.168.64.1',2,36,34540,NULL,'{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008o4ciyx9ejlg5a',1,'Admin',1672319394,'192.168.64.1',2,36,34541,NULL,'{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008p4ciydrg1xila',1,'Admin',1672319394,'192.168.64.1',2,36,34542,NULL,'{#PHASEINDEX}: Phase input current','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008q4ciyih2usxeg',1,'Admin',1672319394,'192.168.64.1',2,36,34543,NULL,'{#PHASEINDEX}: Phase input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008r4ciylg9i7p6v',1,'Admin',1672319394,'192.168.64.1',2,36,34544,NULL,'{#PHASEINDEX}: Phase output current','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008s4ciy5ueikl9r',1,'Admin',1672319394,'192.168.64.1',2,36,34545,NULL,'{#PHASEINDEX}: Phase output load, %','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008t4ciy1gaynuf2',1,'Admin',1672319394,'192.168.64.1',2,36,34546,NULL,'{#PHASEINDEX}: Phase output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008u4ciyplm5pjxj',1,'Admin',1672319394,'192.168.64.1',2,36,34578,NULL,'{#SNMPINDEX}: External battery packs bad','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008v4ciy7dk1qxn4',1,'Admin',1672319394,'192.168.64.1',2,36,34579,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008w4ciycnk2hlkm',1,'Admin',1672319394,'192.168.64.1',2,36,34580,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008x4ciyt530c12i',1,'Admin',1672319394,'192.168.64.1',2,36,34581,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008y4ciyb5altmuy',1,'Admin',1672319394,'192.168.64.1',2,36,34582,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewb008z4ciydfa8knm1',1,'Admin',1672319394,'192.168.64.1',2,36,34583,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00904ciyypx4828y',1,'Admin',1672319394,'192.168.64.1',2,36,34584,NULL,'{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00914ciyd0rozl9c',1,'Admin',1672319394,'192.168.64.1',2,36,34585,NULL,'{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00924ciyzf9x98w7',1,'Admin',1672319394,'192.168.64.1',2,36,34586,NULL,'{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00934ciyk7jilr00',1,'Admin',1672319394,'192.168.64.1',2,36,34587,NULL,'{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00944ciyt1csscf4',1,'Admin',1672319394,'192.168.64.1',2,36,34588,NULL,'{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00954ciyd79xhib4',1,'Admin',1672319394,'192.168.64.1',2,36,34589,NULL,'{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00964ciycffwxf2d',1,'Admin',1672319394,'192.168.64.1',2,36,34590,NULL,'{#PHASEINDEX}: Phase input current','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00974ciywclsyuwd',1,'Admin',1672319394,'192.168.64.1',2,36,34591,NULL,'{#PHASEINDEX}: Phase input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00984ciypbkof8z6',1,'Admin',1672319394,'192.168.64.1',2,36,34592,NULL,'{#PHASEINDEX}: Phase output current','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00994ciygd3r2jtr',1,'Admin',1672319394,'192.168.64.1',2,36,34593,NULL,'{#PHASEINDEX}: Phase output load, %','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009a4ciy1gccuiaf',1,'Admin',1672319394,'192.168.64.1',2,36,34594,NULL,'{#PHASEINDEX}: Phase output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009b4ciyv2bm4bht',1,'Admin',1672319394,'192.168.64.1',2,36,34626,NULL,'{#SNMPINDEX}: External battery packs bad','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009c4ciypo8pcwfr',1,'Admin',1672319394,'192.168.64.1',2,36,34627,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009d4ciyavjxvzwy',1,'Admin',1672319394,'192.168.64.1',2,36,34628,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009e4ciy93v3ml7v',1,'Admin',1672319394,'192.168.64.1',2,36,34629,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009f4ciyw9cxn9gx',1,'Admin',1672319394,'192.168.64.1',2,36,34630,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009g4ciy38rq0bpv',1,'Admin',1672319394,'192.168.64.1',2,36,34631,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009h4ciyf1em649u',1,'Admin',1672319394,'192.168.64.1',2,36,34632,NULL,'{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009i4ciyv5ips3ir',1,'Admin',1672319394,'192.168.64.1',2,36,34633,NULL,'{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009j4ciyeb6jnvd1',1,'Admin',1672319394,'192.168.64.1',2,36,34634,NULL,'{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009k4ciygbvs33nk',1,'Admin',1672319394,'192.168.64.1',2,36,34635,NULL,'{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009l4ciyioi72oln',1,'Admin',1672319394,'192.168.64.1',2,36,34636,NULL,'{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009m4ciym83wgo0j',1,'Admin',1672319394,'192.168.64.1',2,36,34637,NULL,'{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009n4ciyl6rxqacp',1,'Admin',1672319394,'192.168.64.1',2,36,34638,NULL,'{#PHASEINDEX}: Phase input current','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009o4ciy0df6we55',1,'Admin',1672319394,'192.168.64.1',2,36,34639,NULL,'{#PHASEINDEX}: Phase input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009p4ciy89qwi0xh',1,'Admin',1672319394,'192.168.64.1',2,36,34640,NULL,'{#PHASEINDEX}: Phase output current','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009q4ciyefp4sxmo',1,'Admin',1672319394,'192.168.64.1',2,36,34641,NULL,'{#PHASEINDEX}: Phase output load, %','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009r4ciygb57cc2t',1,'Admin',1672319394,'192.168.64.1',2,36,34642,NULL,'{#PHASEINDEX}: Phase output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009s4ciygflutsdv',1,'Admin',1672319394,'192.168.64.1',2,36,34674,NULL,'{#SNMPINDEX}: External battery packs bad','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009t4ciykicm0elb',1,'Admin',1672319394,'192.168.64.1',2,36,34675,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009u4ciy8s8aqpnj',1,'Admin',1672319394,'192.168.64.1',2,36,34676,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009v4ciyc3jxpkrb',1,'Admin',1672319394,'192.168.64.1',2,36,34677,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009w4ciylf5fb2oz',1,'Admin',1672319394,'192.168.64.1',2,36,34678,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009x4ciyxuej0glc',1,'Admin',1672319394,'192.168.64.1',2,36,34679,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009y4ciymjfha0lz',1,'Admin',1672319394,'192.168.64.1',2,36,34680,NULL,'{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb009z4ciywscpd34l',1,'Admin',1672319394,'192.168.64.1',2,36,34681,NULL,'{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00a04ciyt2pg0wb0',1,'Admin',1672319394,'192.168.64.1',2,36,34682,NULL,'{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00a14ciyom05bqms',1,'Admin',1672319394,'192.168.64.1',2,36,34683,NULL,'{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00a24ciysp91nhwg',1,'Admin',1672319394,'192.168.64.1',2,36,34684,NULL,'{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00a34ciy28qil913',1,'Admin',1672319394,'192.168.64.1',2,36,34685,NULL,'{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00a44ciyahklnnf8',1,'Admin',1672319394,'192.168.64.1',2,36,34686,NULL,'{#PHASEINDEX}: Phase input current','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00a54ciyd2t4b47w',1,'Admin',1672319394,'192.168.64.1',2,36,34687,NULL,'{#PHASEINDEX}: Phase input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00a64ciy0svmksyd',1,'Admin',1672319394,'192.168.64.1',2,36,34688,NULL,'{#PHASEINDEX}: Phase output current','clc93sewa00004ciyq3kxknhu',''),('clc93sewb00a74ciyrhco1if9',1,'Admin',1672319394,'192.168.64.1',2,36,34689,NULL,'{#PHASEINDEX}: Phase output load, %','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00a84ciymws1ntmg',1,'Admin',1672319394,'192.168.64.1',2,36,34690,NULL,'{#PHASEINDEX}: Phase output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00a94ciyym539tkc',1,'Admin',1672319394,'192.168.64.1',2,36,34770,NULL,'{#SNMPINDEX}: External battery packs bad','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00aa4ciymm0yzuy9',1,'Admin',1672319394,'192.168.64.1',2,36,34771,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ab4ciy4o63cno6',1,'Admin',1672319394,'192.168.64.1',2,36,34772,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ac4ciyfxsudg8g',1,'Admin',1672319394,'192.168.64.1',2,36,34773,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ad4ciyf6gth7s3',1,'Admin',1672319394,'192.168.64.1',2,36,34774,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ae4ciy5zu918pa',1,'Admin',1672319394,'192.168.64.1',2,36,34775,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00af4ciy9wngu7dj',1,'Admin',1672319394,'192.168.64.1',2,36,34776,NULL,'{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ag4ciyusoxowmu',1,'Admin',1672319394,'192.168.64.1',2,36,34777,NULL,'{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ah4ciyddryz7i8',1,'Admin',1672319394,'192.168.64.1',2,36,34778,NULL,'{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ai4ciy4lyrnc1w',1,'Admin',1672319394,'192.168.64.1',2,36,34779,NULL,'{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00aj4ciy5xewwyr6',1,'Admin',1672319394,'192.168.64.1',2,36,34780,NULL,'{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ak4ciyqy38hw9z',1,'Admin',1672319394,'192.168.64.1',2,36,34781,NULL,'{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00al4ciyjrcp5bgt',1,'Admin',1672319394,'192.168.64.1',2,36,34782,NULL,'{#PHASEINDEX}: Phase input current','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00am4ciy49tmwrez',1,'Admin',1672319394,'192.168.64.1',2,36,34783,NULL,'{#PHASEINDEX}: Phase input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00an4ciyin6w09mr',1,'Admin',1672319394,'192.168.64.1',2,36,34784,NULL,'{#PHASEINDEX}: Phase output current','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ao4ciywf3xq8zi',1,'Admin',1672319394,'192.168.64.1',2,36,34785,NULL,'{#PHASEINDEX}: Phase output load, %','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ap4ciynoxgy4tr',1,'Admin',1672319394,'192.168.64.1',2,36,34786,NULL,'{#PHASEINDEX}: Phase output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00aq4ciylay9akj3',1,'Admin',1672319394,'192.168.64.1',2,36,34790,NULL,'{#PHASEINDEX}: Phase output current','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ar4ciyw0kzbd8w',1,'Admin',1672319394,'192.168.64.1',2,36,34791,NULL,'{#PHASEINDEX}: Phase output load, %','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00as4ciyn8qld30w',1,'Admin',1672319394,'192.168.64.1',2,36,34792,NULL,'{#PHASEINDEX}: Phase output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00at4ciyowqn9f5q',1,'Admin',1672319394,'192.168.64.1',2,36,34824,NULL,'{#SNMPINDEX}: External battery packs bad','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00au4ciy2hdph05e',1,'Admin',1672319394,'192.168.64.1',2,36,34825,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00av4ciy6ai6qdgh',1,'Admin',1672319394,'192.168.64.1',2,36,34826,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00aw4ciywg3ywajt',1,'Admin',1672319394,'192.168.64.1',2,36,34827,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ax4ciy6h9r74z3',1,'Admin',1672319394,'192.168.64.1',2,36,34828,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ay4ciyhivyg5te',1,'Admin',1672319394,'192.168.64.1',2,36,34829,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00az4ciy0l9ye9pw',1,'Admin',1672319394,'192.168.64.1',2,36,34830,NULL,'{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00b04ciy1p70ek72',1,'Admin',1672319394,'192.168.64.1',2,36,34831,NULL,'{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00b14ciyjvjsyr2x',1,'Admin',1672319394,'192.168.64.1',2,36,34832,NULL,'{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00b24ciyttf9x7v8',1,'Admin',1672319394,'192.168.64.1',2,36,34833,NULL,'{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00b34ciy5gqh5nq5',1,'Admin',1672319394,'192.168.64.1',2,36,34834,NULL,'{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00b44ciyhux8shjj',1,'Admin',1672319394,'192.168.64.1',2,36,34835,NULL,'{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00b54ciy78quuk3i',1,'Admin',1672319394,'192.168.64.1',2,36,34836,NULL,'{#PHASEINDEX}: Phase input current','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00b64ciy8iv3y9ey',1,'Admin',1672319394,'192.168.64.1',2,36,34837,NULL,'{#PHASEINDEX}: Phase input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00b74ciy6kj36ork',1,'Admin',1672319394,'192.168.64.1',2,36,34838,NULL,'{#PHASEINDEX}: Phase output current','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00b84ciyydqd8zla',1,'Admin',1672319394,'192.168.64.1',2,36,34839,NULL,'{#PHASEINDEX}: Phase output load, %','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00b94ciy8dfita1e',1,'Admin',1672319394,'192.168.64.1',2,36,34840,NULL,'{#PHASEINDEX}: Phase output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ba4ciy4lam3lr5',1,'Admin',1672319394,'192.168.64.1',2,36,34872,NULL,'{#SNMPINDEX}: External battery packs bad','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bb4ciysqrkx1x6',1,'Admin',1672319394,'192.168.64.1',2,36,34873,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bc4ciygv9mwc9h',1,'Admin',1672319394,'192.168.64.1',2,36,34874,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bd4ciy638w66gg',1,'Admin',1672319394,'192.168.64.1',2,36,34875,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00be4ciy8942mepk',1,'Admin',1672319394,'192.168.64.1',2,36,34876,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bf4ciybcwzthxh',1,'Admin',1672319394,'192.168.64.1',2,36,34877,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bg4ciy7e7oom2o',1,'Admin',1672319394,'192.168.64.1',2,36,34878,NULL,'{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bh4ciyqtdoh2k7',1,'Admin',1672319394,'192.168.64.1',2,36,34879,NULL,'{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bi4ciyga6xi54m',1,'Admin',1672319394,'192.168.64.1',2,36,34880,NULL,'{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bj4ciyw8gug8z6',1,'Admin',1672319394,'192.168.64.1',2,36,34881,NULL,'{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bk4ciyn4urr0w3',1,'Admin',1672319394,'192.168.64.1',2,36,34882,NULL,'{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bl4ciy7cv37o2j',1,'Admin',1672319394,'192.168.64.1',2,36,34883,NULL,'{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bm4ciyg693g6y1',1,'Admin',1672319394,'192.168.64.1',2,36,34884,NULL,'{#PHASEINDEX}: Phase input current','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bn4ciyc4ahcrku',1,'Admin',1672319394,'192.168.64.1',2,36,34885,NULL,'{#PHASEINDEX}: Phase input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bo4ciytoiymu1f',1,'Admin',1672319394,'192.168.64.1',2,36,34886,NULL,'{#PHASEINDEX}: Phase output current','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bp4ciy9vi8hkrr',1,'Admin',1672319394,'192.168.64.1',2,36,34887,NULL,'{#PHASEINDEX}: Phase output load, %','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bq4ciyucu9bpmw',1,'Admin',1672319394,'192.168.64.1',2,36,34888,NULL,'{#PHASEINDEX}: Phase output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00br4ciywg3h6gja',1,'Admin',1672319394,'192.168.64.1',2,36,34920,NULL,'{#SNMPINDEX}: External battery packs bad','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bs4ciy9ev1t5di',1,'Admin',1672319394,'192.168.64.1',2,36,34921,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bt4ciyn2lkc0mc',1,'Admin',1672319394,'192.168.64.1',2,36,34922,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bu4ciyci3bixzu',1,'Admin',1672319394,'192.168.64.1',2,36,34923,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bv4ciy2m93dn5x',1,'Admin',1672319394,'192.168.64.1',2,36,34924,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bw4ciywrwulay2',1,'Admin',1672319394,'192.168.64.1',2,36,34925,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bx4ciy6fsm6pyl',1,'Admin',1672319394,'192.168.64.1',2,36,34926,NULL,'{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00by4ciy3sfnxf3k',1,'Admin',1672319394,'192.168.64.1',2,36,34927,NULL,'{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00bz4ciyi4nfnxmg',1,'Admin',1672319394,'192.168.64.1',2,36,34928,NULL,'{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00c04ciyb8ueoooc',1,'Admin',1672319394,'192.168.64.1',2,36,34929,NULL,'{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00c14ciyovr9zwev',1,'Admin',1672319394,'192.168.64.1',2,36,34930,NULL,'{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00c24ciykml6dmbl',1,'Admin',1672319394,'192.168.64.1',2,36,34931,NULL,'{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00c34ciyrk4mss4p',1,'Admin',1672319394,'192.168.64.1',2,36,34932,NULL,'{#PHASEINDEX}: Phase input current','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00c44ciyz3dz6cr4',1,'Admin',1672319394,'192.168.64.1',2,36,34933,NULL,'{#PHASEINDEX}: Phase input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00c54ciyul75lrsx',1,'Admin',1672319394,'192.168.64.1',2,36,34934,NULL,'{#PHASEINDEX}: Phase output current','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00c64ciy5aani0o8',1,'Admin',1672319394,'192.168.64.1',2,36,34935,NULL,'{#PHASEINDEX}: Phase output load, %','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00c74ciyf9em4048',1,'Admin',1672319394,'192.168.64.1',2,36,34936,NULL,'{#PHASEINDEX}: Phase output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00c84ciy197f41ys',1,'Admin',1672319394,'192.168.64.1',2,36,35047,NULL,'{#SNMPINDEX}: External battery packs bad','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00c94ciyyx5sddy7',1,'Admin',1672319394,'192.168.64.1',2,36,35048,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ca4ciy3b9hncag',1,'Admin',1672319394,'192.168.64.1',2,36,35049,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00cb4ciyh0dev7td',1,'Admin',1672319394,'192.168.64.1',2,36,35050,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00cc4ciyeexagvfj',1,'Admin',1672319394,'192.168.64.1',2,36,35051,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00cd4ciyyigwzbm1',1,'Admin',1672319394,'192.168.64.1',2,36,35052,NULL,'{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ce4ciyecgsv3ea',1,'Admin',1672319394,'192.168.64.1',2,36,35053,NULL,'{#EXTERNAL_SENSOR1_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00cf4ciyd051o6dl',1,'Admin',1672319394,'192.168.64.1',2,36,35054,NULL,'{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00cg4ciy2z2qw1n1',1,'Admin',1672319394,'192.168.64.1',2,36,35055,NULL,'{#EXTERNAL_SENSOR1_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ch4ciy8hxbtmyu',1,'Admin',1672319394,'192.168.64.1',2,36,35056,NULL,'{#EXTERNAL_SENSOR2_NAME}: Humidity sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ci4ciypr6l8o9y',1,'Admin',1672319394,'192.168.64.1',2,36,35057,NULL,'{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00cj4ciyu7yh0li5',1,'Admin',1672319394,'192.168.64.1',2,36,35058,NULL,'{#EXTERNAL_SENSOR2_NAME}: Temperature sensor','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ck4ciyarbwuw00',1,'Admin',1672319394,'192.168.64.1',2,36,35059,NULL,'{#PHASEINDEX}: Phase input current','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00cl4ciyurdy2pd2',1,'Admin',1672319394,'192.168.64.1',2,36,35060,NULL,'{#PHASEINDEX}: Phase input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00cm4ciy3mtkiozz',1,'Admin',1672319394,'192.168.64.1',2,36,35061,NULL,'{#PHASEINDEX}: Phase output current','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00cn4ciyuxh50gq7',1,'Admin',1672319394,'192.168.64.1',2,36,35062,NULL,'{#PHASEINDEX}: Phase output load, %','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00co4ciy8ny00p7t',1,'Admin',1672319394,'192.168.64.1',2,36,35063,NULL,'{#PHASEINDEX}: Phase output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00cp4ciylt86mk86',1,'Admin',1672319394,'192.168.64.1',2,36,35369,NULL,'Cisco ASAv: CPU [{#SNMPINDEX}] Utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00cq4ciycqw0wej7',1,'Admin',1672319394,'192.168.64.1',2,36,35370,NULL,'Cisco ASAv: {#SNMPVALUE} Free memory','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00cr4ciy8dk6m70x',1,'Admin',1672319394,'192.168.64.1',2,36,35371,NULL,'Cisco ASAv: {#SNMPVALUE} Used memory','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00cs4ciyszeihggi',1,'Admin',1672319394,'192.168.64.1',2,36,35372,NULL,'Cisco ASAv: {#SNMPVALUE} Memory utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ct4ciy32snwoav',1,'Admin',1672319394,'192.168.64.1',2,36,35373,NULL,'Cisco ASAv: {#CISCO.IF.NAME} Administrative status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00cu4ciyzfsmj8fb',1,'Admin',1672319394,'192.168.64.1',2,36,35374,NULL,'Cisco ASAv: {#CISCO.IF.NAME} Interface description','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00cv4ciyng0teqhu',1,'Admin',1672319394,'192.168.64.1',2,36,35375,NULL,'Cisco ASAv: {#CISCO.IF.NAME} Link speed','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00cw4ciycd8ubxwz',1,'Admin',1672319394,'192.168.64.1',2,36,35376,NULL,'Cisco ASAv: {#CISCO.IF.NAME} Incoming broadcast packets','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00cx4ciysfunqp7e',1,'Admin',1672319394,'192.168.64.1',2,36,35377,NULL,'Cisco ASAv: {#CISCO.IF.NAME} Incoming multicast packets','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00cy4ciyiyxyfqwj',1,'Admin',1672319394,'192.168.64.1',2,36,35378,NULL,'Cisco ASAv: {#CISCO.IF.NAME} Incoming traffic','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00cz4ciypozxkqn3',1,'Admin',1672319394,'192.168.64.1',2,36,35379,NULL,'Cisco ASAv: {#CISCO.IF.NAME} Incoming unicast packets','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00d04ciybfsbegbp',1,'Admin',1672319394,'192.168.64.1',2,36,35380,NULL,'Cisco ASAv: {#CISCO.IF.NAME} Incoming utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00d14ciypatjweuc',1,'Admin',1672319394,'192.168.64.1',2,36,35381,NULL,'Cisco ASAv: {#CISCO.IF.NAME} Interface name','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00d24ciyh6p65oi2',1,'Admin',1672319394,'192.168.64.1',2,36,35382,NULL,'Cisco ASAv: {#CISCO.IF.NAME} Operational status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00d34ciybbwqd33i',1,'Admin',1672319394,'192.168.64.1',2,36,35383,NULL,'Cisco ASAv: {#CISCO.IF.NAME} Outgoing broadcast packets','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00d44ciybm4gqghb',1,'Admin',1672319394,'192.168.64.1',2,36,35384,NULL,'Cisco ASAv: {#CISCO.IF.NAME} Outgoing multicast packets','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00d54ciyyr1vfmky',1,'Admin',1672319394,'192.168.64.1',2,36,35385,NULL,'Cisco ASAv: {#CISCO.IF.NAME} Outgoing traffic','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00d64ciydxwn7jeo',1,'Admin',1672319394,'192.168.64.1',2,36,35386,NULL,'Cisco ASAv: {#CISCO.IF.NAME} Outgoing unicast packets','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00d74ciym99pby06',1,'Admin',1672319394,'192.168.64.1',2,36,35387,NULL,'Cisco ASAv: {#CISCO.IF.NAME} Outgoing utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00d84ciypzd45jwt',1,'Admin',1672319394,'192.168.64.1',2,36,35388,NULL,'Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Physical class','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00d94ciysofpgust',1,'Admin',1672319394,'192.168.64.1',2,36,35389,NULL,'Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Physical description','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00da4ciy8db032jf',1,'Admin',1672319394,'192.168.64.1',2,36,35390,NULL,'Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Hardware revision','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00db4ciyusrk0jni',1,'Admin',1672319394,'192.168.64.1',2,36,35391,NULL,'Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Manufacturer name','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00dc4ciy13fg9wq9',1,'Admin',1672319394,'192.168.64.1',2,36,35392,NULL,'Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Model name','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00dd4ciyv2n803he',1,'Admin',1672319394,'192.168.64.1',2,36,35393,NULL,'Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Physical name','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00de4ciy210u5gei',1,'Admin',1672319394,'192.168.64.1',2,36,35394,NULL,'Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00df4ciy98933ijq',1,'Admin',1672319394,'192.168.64.1',2,36,35395,NULL,'Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Software revision','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00dg4ciyhvdzc0y2',1,'Admin',1672319394,'192.168.64.1',2,36,35396,NULL,'Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] ISP address','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00dh4ciyufbdd650',1,'Admin',1672319394,'192.168.64.1',2,36,35397,NULL,'Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Local address','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00di4ciytresck09',1,'Admin',1672319394,'192.168.64.1',2,36,35398,NULL,'Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Algorithm validate packets','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00dj4ciyrgb2jfg9',1,'Admin',1672319394,'192.168.64.1',2,36,35399,NULL,'Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Authenticate method','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00dk4ciyg2vptwzb',1,'Admin',1672319394,'192.168.64.1',2,36,35400,NULL,'Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Authorize method','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00dl4ciy0s9rz3xj',1,'Admin',1672319394,'192.168.64.1',2,36,35401,NULL,'Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Session duration','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00dm4ciyed9iz9ss',1,'Admin',1672319394,'192.168.64.1',2,36,35402,NULL,'Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Encryption algorithm','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00dn4ciyj2jk8jf1',1,'Admin',1672319394,'192.168.64.1',2,36,35403,NULL,'Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Incoming traffic','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00do4ciyulwefrln',1,'Admin',1672319394,'192.168.64.1',2,36,35404,NULL,'Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Outgoing traffic','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00dp4ciy0etslbrw',1,'Admin',1672319394,'192.168.64.1',2,36,35405,NULL,'Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Session protocol','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00dq4ciynrm2ntng',1,'Admin',1672319394,'192.168.64.1',2,36,40491,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00dr4ciyvqag0zew',1,'Admin',1672319394,'192.168.64.1',2,36,40492,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ds4ciyv46uipa5',1,'Admin',1672319394,'192.168.64.1',2,36,40493,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00dt4ciyzw0ixapb',1,'Admin',1672319394,'192.168.64.1',2,36,40494,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00du4ciyion542eh',1,'Admin',1672319394,'192.168.64.1',2,36,40495,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00dv4ciy97wn5tom',1,'Admin',1672319394,'192.168.64.1',2,36,40496,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00dw4ciy5rjafh3f',1,'Admin',1672319394,'192.168.64.1',2,36,40497,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00dx4ciyrxync6de',1,'Admin',1672319394,'192.168.64.1',2,36,40498,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00dy4ciyhm584ods',1,'Admin',1672319394,'192.168.64.1',2,36,40499,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00dz4ciy809vzl2r',1,'Admin',1672319394,'192.168.64.1',2,36,40500,NULL,'Interface {#IFNAME}({#IFALIAS}): Duplex status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00e04ciyavi1ajop',1,'Admin',1672319394,'192.168.64.1',2,36,40517,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00e14ciyw66kzfvc',1,'Admin',1672319394,'192.168.64.1',2,36,40518,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00e24ciynrynvb33',1,'Admin',1672319394,'192.168.64.1',2,36,40519,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00e34ciya4xtu2ho',1,'Admin',1672319394,'192.168.64.1',2,36,40520,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00e44ciy0ehksgwj',1,'Admin',1672319394,'192.168.64.1',2,36,40521,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00e54ciyfr4rwvvc',1,'Admin',1672319394,'192.168.64.1',2,36,40522,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00e64ciyv7a3lfei',1,'Admin',1672319394,'192.168.64.1',2,36,40523,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00e74ciycswkehd3',1,'Admin',1672319394,'192.168.64.1',2,36,40524,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00e84ciykfrwtgpm',1,'Admin',1672319394,'192.168.64.1',2,36,40525,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00e94ciy9q00x86w',1,'Admin',1672319394,'192.168.64.1',2,36,40526,NULL,'Interface {#IFNAME}({#IFALIAS}): Duplex status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ea4ciyd12jfuum',1,'Admin',1672319394,'192.168.64.1',2,36,40527,NULL,'{#FSNAME}: Space utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00eb4ciym3tamtlv',1,'Admin',1672319394,'192.168.64.1',2,36,40528,NULL,'{#FSNAME}: Total space','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ec4ciyymcdhkqr',1,'Admin',1672319394,'192.168.64.1',2,36,40529,NULL,'{#FSNAME}: Used space','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ed4ciykosnx620',1,'Admin',1672319394,'192.168.64.1',2,36,40530,NULL,'{#MEMNAME}: Total memory','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ee4ciycqqaycr6',1,'Admin',1672319394,'192.168.64.1',2,36,40531,NULL,'{#MEMNAME}: Used memory','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ef4ciybg77y8ve',1,'Admin',1672319394,'192.168.64.1',2,36,40532,NULL,'{#MEMNAME}: Memory utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00eg4ciy3cn207sz',1,'Admin',1672319394,'192.168.64.1',2,36,40545,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00eh4ciy38daytbm',1,'Admin',1672319394,'192.168.64.1',2,36,40546,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ei4ciykh8fk447',1,'Admin',1672319394,'192.168.64.1',2,36,40547,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ej4ciyusf9y8ht',1,'Admin',1672319394,'192.168.64.1',2,36,40548,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ek4ciydhmzwsnf',1,'Admin',1672319394,'192.168.64.1',2,36,40549,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00el4ciy3z0reo00',1,'Admin',1672319394,'192.168.64.1',2,36,40550,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00em4ciywm96zvri',1,'Admin',1672319394,'192.168.64.1',2,36,40551,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00en4ciy0a9mruza',1,'Admin',1672319394,'192.168.64.1',2,36,40552,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00eo4ciy38tdtpd2',1,'Admin',1672319394,'192.168.64.1',2,36,40553,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ep4ciymmpqcc9h',1,'Admin',1672319394,'192.168.64.1',2,36,40582,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00eq4ciyetzq4ouk',1,'Admin',1672319394,'192.168.64.1',2,36,40583,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00er4ciy31hg0v7b',1,'Admin',1672319394,'192.168.64.1',2,36,40584,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00es4ciyr4vguxqa',1,'Admin',1672319394,'192.168.64.1',2,36,40585,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00et4ciygldubj9x',1,'Admin',1672319394,'192.168.64.1',2,36,40586,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00eu4ciy7o8k9dft',1,'Admin',1672319394,'192.168.64.1',2,36,40587,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ev4ciyn4tsm9db',1,'Admin',1672319394,'192.168.64.1',2,36,40588,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ew4ciyk10jj0l8',1,'Admin',1672319394,'192.168.64.1',2,36,40589,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ex4ciy2f0oxum1',1,'Admin',1672319394,'192.168.64.1',2,36,40590,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ey4ciyh1x2stf8',1,'Admin',1672319394,'192.168.64.1',2,36,40591,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ez4ciyj1iheg2f',1,'Admin',1672319394,'192.168.64.1',2,36,40592,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00f04ciyzhnhuau0',1,'Admin',1672319394,'192.168.64.1',2,36,40593,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00f14ciyrp4trxof',1,'Admin',1672319394,'192.168.64.1',2,36,40594,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00f24ciyfxlviww9',1,'Admin',1672319394,'192.168.64.1',2,36,40595,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00f34ciy2a4rftez',1,'Admin',1672319394,'192.168.64.1',2,36,40596,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00f44ciykvhoiu71',1,'Admin',1672319394,'192.168.64.1',2,36,40597,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00f54ciy3zr2n0hh',1,'Admin',1672319394,'192.168.64.1',2,36,40598,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00f64ciyl4ka9jw0',1,'Admin',1672319394,'192.168.64.1',2,36,40599,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00f74ciyttnzv7jm',1,'Admin',1672319394,'192.168.64.1',2,36,40671,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00f84ciytg3fiid0',1,'Admin',1672319394,'192.168.64.1',2,36,40672,NULL,'{#ENT_NAME}: Hardware serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00f94ciyi3ipusk6',1,'Admin',1672319394,'192.168.64.1',2,36,40673,NULL,'{#SENSOR_INFO}: Fan status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fa4ciy1fpmcxjk',1,'Admin',1672319394,'192.168.64.1',2,36,40674,NULL,'{#SNMPVALUE}: Free memory','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fb4ciyii9g13t7',1,'Admin',1672319394,'192.168.64.1',2,36,40675,NULL,'{#SNMPVALUE}: Used memory','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fc4ciynsl9majk',1,'Admin',1672319394,'192.168.64.1',2,36,40676,NULL,'{#SNMPVALUE}: Memory utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fd4ciy6e5djuap',1,'Admin',1672319394,'192.168.64.1',2,36,40677,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fe4ciywti27fei',1,'Admin',1672319394,'192.168.64.1',2,36,40678,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ff4ciyp870dkg2',1,'Admin',1672319394,'192.168.64.1',2,36,40679,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fg4ciy5pkk90li',1,'Admin',1672319394,'192.168.64.1',2,36,40680,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fh4ciyyemu8od3',1,'Admin',1672319394,'192.168.64.1',2,36,40681,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fi4ciys9r4p5g2',1,'Admin',1672319394,'192.168.64.1',2,36,40682,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fj4ciy65jx5336',1,'Admin',1672319394,'192.168.64.1',2,36,40683,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fk4ciysccaunmb',1,'Admin',1672319394,'192.168.64.1',2,36,40684,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fl4ciyhm6mqshg',1,'Admin',1672319394,'192.168.64.1',2,36,40685,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fm4ciykuot81fr',1,'Admin',1672319394,'192.168.64.1',2,36,40686,NULL,'Interface {#IFNAME}({#IFALIAS}): Duplex status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fn4ciy5y2xkfr9',1,'Admin',1672319394,'192.168.64.1',2,36,40687,NULL,'{#SENSOR_INFO}: Power supply status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fo4ciyo56elkyx',1,'Admin',1672319394,'192.168.64.1',2,36,40688,NULL,'{#SNMPVALUE}: Temperature status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fp4ciy4o5el326',1,'Admin',1672319394,'192.168.64.1',2,36,40689,NULL,'{#SNMPVALUE}: Temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fq4ciys6wxsedk',1,'Admin',1672319394,'192.168.64.1',2,36,43529,NULL,'AWS EC2 Alarms: [\"{#ALARM_NAME}\"]: State','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fr4ciyjweu69hb',1,'Admin',1672319394,'192.168.64.1',2,36,43530,NULL,'AWS EC2 Alarms: [\"{#ALARM_NAME}\"]: State reason','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fs4ciysc5iqd1r',1,'Admin',1672319394,'192.168.64.1',2,36,43528,NULL,'AWS EBS: [\"{#VOLUME_ID}\"]: Get metrics','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ft4ciy6vfk4t3g',1,'Admin',1672319394,'192.168.64.1',2,36,43531,NULL,'AWS EBS: [\"{#VOLUME_ID}\"]: Read, bytes','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fu4ciy80s9c1ck',1,'Admin',1672319394,'192.168.64.1',2,36,43532,NULL,'AWS EBS: [\"{#VOLUME_ID}\"]: Write, ops','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fv4ciy2ebrxz48',1,'Admin',1672319394,'192.168.64.1',2,36,43533,NULL,'AWS EBS: [\"{#VOLUME_ID}\"]: Write, bytes','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fw4ciyuno4tbvm',1,'Admin',1672319394,'192.168.64.1',2,36,43534,NULL,'AWS EBS: [\"{#VOLUME_ID}\"]: Write time, total','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fx4ciyhyoduhkq',1,'Admin',1672319394,'192.168.64.1',2,36,43535,NULL,'AWS EBS: [\"{#VOLUME_ID}\"]: Read time, total','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fy4ciyvpbcmxwe',1,'Admin',1672319394,'192.168.64.1',2,36,43536,NULL,'AWS EBS: [\"{#VOLUME_ID}\"]: Throughput, pct','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00fz4ciyme2hjfbe',1,'Admin',1672319394,'192.168.64.1',2,36,43537,NULL,'AWS EBS: [\"{#VOLUME_ID}\"]: Read, ops','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00g04ciymoduj6nj',1,'Admin',1672319394,'192.168.64.1',2,36,43538,NULL,'AWS EBS: [\"{#VOLUME_ID}\"]: Attachment state','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00g14ciyrfrr8urj',1,'Admin',1672319394,'192.168.64.1',2,36,43539,NULL,'AWS EBS: [\"{#VOLUME_ID}\"]: Attachment time','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00g24ciy1fecp4mr',1,'Admin',1672319394,'192.168.64.1',2,36,43540,NULL,'AWS EBS: [\"{#VOLUME_ID}\"]: Idle time','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00g34ciybe4ys4dk',1,'Admin',1672319394,'192.168.64.1',2,36,43541,NULL,'AWS EBS: [\"{#VOLUME_ID}\"]: Consumed Read/Write, ops','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00g44ciyhe8fbcbk',1,'Admin',1672319394,'192.168.64.1',2,36,43542,NULL,'AWS EBS: [\"{#VOLUME_ID}\"]: Burst balance','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00g54ciy0x2n8v64',1,'Admin',1672319394,'192.168.64.1',2,36,43543,NULL,'AWS EBS: [\"{#VOLUME_ID}\"]: Status','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00g64ciyb6lwn67f',1,'Admin',1672319394,'192.168.64.1',2,36,43544,NULL,'AWS EBS: [\"{#VOLUME_ID}\"]: Device','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00g74ciyvmgnf1ne',1,'Admin',1672319394,'192.168.64.1',2,36,43545,NULL,'AWS EBS: [\"{#VOLUME_ID}\"]: Create time','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00g84ciymo4zwr8i',1,'Admin',1672319394,'192.168.64.1',2,36,43546,NULL,'AWS EBS: [\"{#VOLUME_ID}\"]: Queue length','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00g94ciy5k653whf',1,'Admin',1672319394,'192.168.64.1',2,36,43646,NULL,'AWS RDS Alarms: [\"{#ALARM_NAME}\"]: State','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ga4ciy2kthkm0k',1,'Admin',1672319394,'192.168.64.1',2,36,43647,NULL,'AWS RDS Alarms: [\"{#ALARM_NAME}\"]: State reason','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gb4ciyptjuemas',1,'Admin',1672319394,'192.168.64.1',2,36,43648,NULL,'AWS RDS: Replication: Lag, max','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gc4ciy8s24gg9j',1,'Admin',1672319394,'192.168.64.1',2,36,43649,NULL,'AWS RDS: Replication: Lag, min','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gd4ciyw22avzpj',1,'Admin',1672319394,'192.168.64.1',2,36,43650,NULL,'AWS RDS: Replication: Lag','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ge4ciy3rcwb0zq',1,'Admin',1672319394,'192.168.64.1',2,36,43651,NULL,'AWS RDS: Buffer Cache hit ratio','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gf4ciydfcz9hzo',1,'Admin',1672319394,'192.168.64.1',2,36,43652,NULL,'AWS RDS: Operations: Commit latency','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gg4ciy64kv57of',1,'Admin',1672319394,'192.168.64.1',2,36,43653,NULL,'AWS RDS: Operations: Commit throughput','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gh4ciyih4lavku',1,'Admin',1672319394,'192.168.64.1',2,36,43654,NULL,'AWS RDS: Deadlocks, rate','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gi4ciyl0y780s3',1,'Admin',1672319394,'192.168.64.1',2,36,43655,NULL,'AWS RDS: Engine uptime','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gj4ciyo8pgdgk8',1,'Admin',1672319394,'192.168.64.1',2,36,43656,NULL,'AWS RDS: Rollback segment history list length','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gk4ciy7yqaumpe',1,'Admin',1672319394,'192.168.64.1',2,36,43657,NULL,'AWS RDS: Row lock time','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gl4ciyvgwgmity',1,'Admin',1672319394,'192.168.64.1',2,36,43658,NULL,'AWS RDS: Operations: Select latency','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gm4ciyfsgyj8at',1,'Admin',1672319394,'192.168.64.1',2,36,43659,NULL,'AWS RDS: Operations: Select throughput','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gn4ciyb4sz87md',1,'Admin',1672319394,'192.168.64.1',2,36,43660,NULL,'AWS RDS: Network: Throughput','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00go4ciyfvmzmr4o',1,'Admin',1672319394,'192.168.64.1',2,36,43661,NULL,'AWS RDS Events: [{#EVENT_CATEGORY}]: {#EVENT_SOURCE_TYPE}/{#EVENT_SOURCE_ID} : Date','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gp4ciy0tqemlt2',1,'Admin',1672319394,'192.168.64.1',2,36,43662,NULL,'AWS RDS Events: [{#EVENT_CATEGORY}]: {#EVENT_SOURCE_TYPE}/{#EVENT_SOURCE_ID}: Message','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gq4ciyra96q9vw',1,'Admin',1672319394,'192.168.64.1',2,36,43663,NULL,'AWS RDS: Connections: Aborted','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gr4ciywxixwh91',1,'Admin',1672319394,'192.168.64.1',2,36,43664,NULL,'AWS RDS: DML: Throughput','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gs4ciydthxirfl',1,'Admin',1672319394,'192.168.64.1',2,36,43665,NULL,'AWS RDS: Operations: Update latency','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gt4ciy3piifrhb',1,'Admin',1672319394,'192.168.64.1',2,36,43666,NULL,'AWS RDS: Binary log files, size','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gu4ciykb3rdjxh',1,'Admin',1672319394,'192.168.64.1',2,36,43667,NULL,'AWS RDS: Resultset cache hit ratio','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gv4ciyd99ccghd',1,'Admin',1672319394,'192.168.64.1',2,36,43668,NULL,'AWS RDS: Queries, rate','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gw4ciyp4nfzio8',1,'Admin',1672319394,'192.168.64.1',2,36,43669,NULL,'AWS RDS: Binary log files, number','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gx4ciyemextog3',1,'Admin',1672319394,'192.168.64.1',2,36,43670,NULL,'AWS RDS: Login failures, rate','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gy4ciyjteyjs2m',1,'Admin',1672319394,'192.168.64.1',2,36,43671,NULL,'AWS RDS: Operations: Insert throughput','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00gz4ciydg0qfuge',1,'Admin',1672319394,'192.168.64.1',2,36,43672,NULL,'AWS RDS: Operations: Insert latency','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00h04ciyeap63xy9',1,'Admin',1672319394,'192.168.64.1',2,36,43673,NULL,'AWS RDS: DML: Latency','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00h14ciy7qo94ej2',1,'Admin',1672319394,'192.168.64.1',2,36,43674,NULL,'AWS RDS: Replication: Binlog lag','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00h24ciy7vk2tbx9',1,'Admin',1672319394,'192.168.64.1',2,36,43675,NULL,'AWS RDS: Operations: Delete throughput','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00h34ciy5aac1s4j',1,'Admin',1672319394,'192.168.64.1',2,36,43676,NULL,'AWS RDS: Operations: Delete latency','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00h44ciywrr9umqy',1,'Admin',1672319394,'192.168.64.1',2,36,43677,NULL,'AWS RDS: DDL: Throughput','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00h54ciyet90600l',1,'Admin',1672319394,'192.168.64.1',2,36,43678,NULL,'AWS RDS: DDL: Latency','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00h64ciyxarlwfj4',1,'Admin',1672319394,'192.168.64.1',2,36,43679,NULL,'AWS RDS: Transactions: Blocked, rate','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00h74ciyx6vjgwyq',1,'Admin',1672319394,'192.168.64.1',2,36,43680,NULL,'AWS RDS: Backtrack: Window, alert','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00h84ciywwiuuda0',1,'Admin',1672319394,'192.168.64.1',2,36,43681,NULL,'AWS RDS: Backtrack: Window, actual','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00h94ciyer7mnu7m',1,'Admin',1672319394,'192.168.64.1',2,36,43682,NULL,'AWS RDS: Transactions: Active, rate','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00ha4ciy7gxptaw0',1,'Admin',1672319394,'192.168.64.1',2,36,43683,NULL,'AWS RDS: Operations: Update throughput','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00hb4ciydezojmqh',1,'Admin',1672319394,'192.168.64.1',2,36,43712,NULL,'AWS S3 Alarms: [\"{#ALARM_NAME}\"]: State','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00hc4ciyc7h5jl5d',1,'Admin',1672319394,'192.168.64.1',2,36,43713,NULL,'AWS S3 Alarms: [\"{#ALARM_NAME}\"]: State reason','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00hd4ciy68mtd1v2',1,'Admin',1672319394,'192.168.64.1',2,36,44337,NULL,'Apache: CPU utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00he4ciyxdk7ae5f',1,'Admin',1672319394,'192.168.64.1',2,36,44338,NULL,'Apache: Get process data','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00hf4ciy24omumzp',1,'Admin',1672319394,'192.168.64.1',2,36,44339,NULL,'Apache: Number of running processes','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00hg4ciygpzxwfmd',1,'Admin',1672319394,'192.168.64.1',2,36,44340,NULL,'Apache: Memory usage, %','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00hh4ciy4r96o4d6',1,'Admin',1672319394,'192.168.64.1',2,36,44341,NULL,'Apache: Memory usage (rss)','clc93sewa00004ciyq3kxknhu',''),('clc93sewc00hi4ciype6fn4t5',1,'Admin',1672319394,'192.168.64.1',2,36,44342,NULL,'Apache: Memory usage (vsize)','clc93sewa00004ciyq3kxknhu',''),('clc93sexz00hj4ciy17focv7c',1,'Admin',1672319394,'192.168.64.1',2,37,10533,NULL,'Azure virtual machine {#NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sexz00hk4ciydkzc9eb4',1,'Admin',1672319394,'192.168.64.1',2,37,10536,NULL,'{#AWS.EC2.INSTANCE.ID}','clc93sewa00004ciyq3kxknhu',''),('clc93sexz00hl4ciyiwl5j8a2',1,'Admin',1672319394,'192.168.64.1',2,37,10537,NULL,'{#AWS.RDS.INSTANCE.ID}','clc93sewa00004ciyq3kxknhu',''),('clc93sexz00hm4ciycpb0ebra',1,'Admin',1672319394,'192.168.64.1',2,37,10538,NULL,'{#AWS.S3.NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sexz00hn4ciymra0ykap',1,'Admin',1672319394,'192.168.64.1',2,37,10541,NULL,'Azure MySQL server {#NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sexz00ho4ciyon6s7zxb',1,'Admin',1672319394,'192.168.64.1',2,37,10545,NULL,'Azure PostgreSQL server {#NAME}','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00hp4ciy0oym97ii',1,'Admin',1672319394,'192.168.64.1',2,15,42175,NULL,'Host name of Zabbix agent running','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00hq4ciyqli8sb1v',1,'Admin',1672319394,'192.168.64.1',2,15,42176,NULL,'Zabbix agent ping','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00hr4ciyl0m55dip',1,'Admin',1672319394,'192.168.64.1',2,15,42177,NULL,'Version of Zabbix agent running','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00hs4ciyh2qrgm9v',1,'Admin',1672319394,'192.168.64.1',2,15,22917,NULL,'Number of running processes','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ht4ciym5ptc24v',1,'Admin',1672319394,'192.168.64.1',2,15,22918,NULL,'Number of processes','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00hu4ciysnlaofzs',1,'Admin',1672319394,'192.168.64.1',2,15,22920,NULL,'Interrupts per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00hv4ciyooopdwfv',1,'Admin',1672319394,'192.168.64.1',2,15,22921,NULL,'Processor load (15 min average per core)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00hw4ciy1vm5ufhj',1,'Admin',1672319394,'192.168.64.1',2,15,22922,NULL,'Processor load (1 min average per core)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00hx4ciyiwv6evt8',1,'Admin',1672319394,'192.168.64.1',2,15,22923,NULL,'Processor load (5 min average per core)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00hy4ciyfyx816ti',1,'Admin',1672319394,'192.168.64.1',2,15,22924,NULL,'Context switches per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00hz4ciyw8o980wf',1,'Admin',1672319394,'192.168.64.1',2,15,22933,NULL,'Host name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00i04ciyaejg7y2y',1,'Admin',1672319394,'192.168.64.1',2,15,22934,NULL,'Host local time','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00i14ciyr3z5n9ia',1,'Admin',1672319394,'192.168.64.1',2,15,23108,NULL,'CPU available physical processors in the shared pool','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00i24ciyreczjvd9',1,'Admin',1672319394,'192.168.64.1',2,15,23109,NULL,'CPU entitled capacity consumed','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00i34ciyb6nyhr1q',1,'Admin',1672319394,'192.168.64.1',2,15,23110,NULL,'CPU idle time','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00i44ciyh170tu0y',1,'Admin',1672319394,'192.168.64.1',2,15,23111,NULL,'CPU logical processor utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00i54ciy11um1vq9',1,'Admin',1672319394,'192.168.64.1',2,15,23112,NULL,'CPU number of physical processors consumed','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00i64ciyqfe37m9x',1,'Admin',1672319394,'192.168.64.1',2,15,23113,NULL,'CPU system time','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00i74ciya7taq7m0',1,'Admin',1672319394,'192.168.64.1',2,15,23114,NULL,'CPU user time','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00i84ciyd01hiv68',1,'Admin',1672319394,'192.168.64.1',2,15,23115,NULL,'CPU iowait time','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00i94ciy3ie05iho',1,'Admin',1672319394,'192.168.64.1',2,15,23116,NULL,'Amount of data transferred','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ia4ciyyh9dqyq3',1,'Admin',1672319394,'192.168.64.1',2,15,23117,NULL,'Number of transfers','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ib4ciyp95htqxw',1,'Admin',1672319394,'192.168.64.1',2,15,23118,NULL,'Processor units is entitled to receive','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ic4ciyfia03c83',1,'Admin',1672319394,'192.168.64.1',2,15,23119,NULL,'Kernel thread context switches','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00id4ciys9vmygbv',1,'Admin',1672319394,'192.168.64.1',2,15,23120,NULL,'Device interrupts','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ie4ciyhr9gg9aa',1,'Admin',1672319394,'192.168.64.1',2,15,23121,NULL,'System calls','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00if4ciy4fvf4kb9',1,'Admin',1672319394,'192.168.64.1',2,15,23122,NULL,'Length of the swap queue','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ig4ciy065zfwsz',1,'Admin',1672319394,'192.168.64.1',2,15,23123,NULL,'Length of the run queue','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ih4ciyeu9ij7l2',1,'Admin',1672319394,'192.168.64.1',2,15,23124,NULL,'Active virtual pages','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ii4ciy78q45nen',1,'Admin',1672319394,'192.168.64.1',2,15,23125,NULL,'Free real memory','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ij4ciyz30j1fst',1,'Admin',1672319394,'192.168.64.1',2,15,23126,NULL,'File page-ins per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ik4ciy73qed66f',1,'Admin',1672319394,'192.168.64.1',2,15,23127,NULL,'File page-outs per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00il4ciy4hlqlp3n',1,'Admin',1672319394,'192.168.64.1',2,15,23128,NULL,'Pages freed (page replacement)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00im4ciy1c2jdmw7',1,'Admin',1672319394,'192.168.64.1',2,15,23129,NULL,'Pages paged in from paging space','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00in4ciyxfpkx2ab',1,'Admin',1672319394,'192.168.64.1',2,15,23130,NULL,'Pages paged out to paging space','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00io4ciyzkmfmp0b',1,'Admin',1672319394,'192.168.64.1',2,15,23131,NULL,'Pages scanned by page-replacement algorithm','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ip4ciy3gdy87jy',1,'Admin',1672319394,'192.168.64.1',2,15,22938,NULL,'System information','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00iq4ciytzset3pt',1,'Admin',1672319394,'192.168.64.1',2,15,22939,NULL,'System uptime','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ir4ciyeqkfxouy',1,'Admin',1672319394,'192.168.64.1',2,15,22940,NULL,'Number of logged in users','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00is4ciy876e7k3c',1,'Admin',1672319394,'192.168.64.1',2,15,22941,NULL,'Checksum of /etc/passwd','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00it4ciyyuexq8q9',1,'Admin',1672319394,'192.168.64.1',2,15,44427,NULL,'Get filesystems','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00iu4ciybec3tuxc',1,'Admin',1672319394,'192.168.64.1',2,15,22942,NULL,'Available memory','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00iv4ciyfkrzwh7u',1,'Admin',1672319394,'192.168.64.1',2,15,22943,NULL,'Total memory','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00iw4ciyzeu1zb83',1,'Admin',1672319394,'192.168.64.1',2,15,42178,NULL,'Zabbix agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ix4ciy9wpl64w4',1,'Admin',1672319394,'192.168.64.1',2,15,40478,NULL,'ICMP ping','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00iy4ciyonz2xi5z',1,'Admin',1672319394,'192.168.64.1',2,15,40482,NULL,'ICMP loss','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00iz4ciy5dfuk5ge',1,'Admin',1672319394,'192.168.64.1',2,15,40487,NULL,'ICMP response time','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00j04ciyg8iadc4f',1,'Admin',1672319394,'192.168.64.1',2,15,40486,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00j14ciyexgfg9bk',1,'Admin',1672319394,'192.168.64.1',2,15,40485,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00j24ciyk1zut487',1,'Admin',1672319394,'192.168.64.1',2,15,27208,NULL,'CPU utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00j34ciyajw5uu3k',1,'Admin',1672319394,'192.168.64.1',2,15,40484,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00j44ciyzarl3vyv',1,'Admin',1672319394,'192.168.64.1',2,15,27203,NULL,'Hardware model name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00j54ciyuevjz9q1',1,'Admin',1672319394,'192.168.64.1',2,15,43770,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00j64ciyo436tbz3',1,'Admin',1672319394,'192.168.64.1',2,15,40483,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00j74ciyhil4uk25',1,'Admin',1672319394,'192.168.64.1',2,15,40481,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00j84ciynmnxs8vc',1,'Admin',1672319394,'192.168.64.1',2,15,40480,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00j94ciyyhm9s8vz',1,'Admin',1672319394,'192.168.64.1',2,15,40479,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ja4ciy3sycum3t',1,'Admin',1672319394,'192.168.64.1',2,15,30086,NULL,'Operating system','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jb4ciyauml8ejd',1,'Admin',1672319394,'192.168.64.1',2,15,30087,NULL,'Available memory','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jc4ciy2vw1jn86',1,'Admin',1672319394,'192.168.64.1',2,15,30088,NULL,'Total memory','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jd4ciyse8a48dr',1,'Admin',1672319394,'192.168.64.1',2,15,27207,NULL,'Used memory','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00je4ciycaa67hzu',1,'Admin',1672319394,'192.168.64.1',2,15,30089,NULL,'Memory utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jf4ciy91rbofzd',1,'Admin',1672319394,'192.168.64.1',2,15,40488,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jg4ciy9m7wos08',1,'Admin',1672319394,'192.168.64.1',2,15,40533,NULL,'ICMP ping','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jh4ciylv414txt',1,'Admin',1672319394,'192.168.64.1',2,15,40534,NULL,'ICMP loss','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ji4ciyixdisnpa',1,'Admin',1672319394,'192.168.64.1',2,15,40535,NULL,'ICMP response time','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jj4ciy8v1gnh6w',1,'Admin',1672319394,'192.168.64.1',2,15,40536,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jk4ciyl6cc1bt3',1,'Admin',1672319394,'192.168.64.1',2,15,40537,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jl4ciy8bmt1z76',1,'Admin',1672319394,'192.168.64.1',2,15,27240,NULL,'CPU utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jm4ciycorxz84c',1,'Admin',1672319394,'192.168.64.1',2,15,40538,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jn4ciyxhv9zlpd',1,'Admin',1672319394,'192.168.64.1',2,15,27236,NULL,'Firmware version','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jo4ciyejucddjd',1,'Admin',1672319394,'192.168.64.1',2,15,27237,NULL,'Hardware serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jp4ciylj9fq3ta',1,'Admin',1672319394,'192.168.64.1',2,15,43772,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jq4ciyalg05hqe',1,'Admin',1672319394,'192.168.64.1',2,15,40539,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jr4ciy20t7hoyi',1,'Admin',1672319394,'192.168.64.1',2,15,40540,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00js4ciyswon7nra',1,'Admin',1672319394,'192.168.64.1',2,15,40542,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jt4ciyvoqla72s',1,'Admin',1672319394,'192.168.64.1',2,15,40541,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ju4ciymo4jrm0p',1,'Admin',1672319394,'192.168.64.1',2,15,27238,NULL,'Overall system health status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jv4ciy0nw7cvsy',1,'Admin',1672319394,'192.168.64.1',2,15,30093,NULL,'Memory utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jw4ciy8owgbodm',1,'Admin',1672319394,'192.168.64.1',2,15,40543,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jx4ciy91227v1n',1,'Admin',1672319394,'192.168.64.1',2,15,27294,NULL,'CPU utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jy4ciy4ccwwzqz',1,'Admin',1672319394,'192.168.64.1',2,15,30094,NULL,'Memory utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00jz4ciy4mqddojh',1,'Admin',1672319394,'192.168.64.1',2,15,40554,NULL,'ICMP ping','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00k04ciyd35q5m7o',1,'Admin',1672319394,'192.168.64.1',2,15,40555,NULL,'ICMP loss','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00k14ciy6biaf0j2',1,'Admin',1672319394,'192.168.64.1',2,15,40556,NULL,'ICMP response time','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00k24ciym0jzyv9r',1,'Admin',1672319394,'192.168.64.1',2,15,40557,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00k34ciyo6vyxfxj',1,'Admin',1672319394,'192.168.64.1',2,15,40558,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00k44ciy4cx9yvr1',1,'Admin',1672319394,'192.168.64.1',2,15,40559,NULL,'CPU utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00k54ciyhbaukmxz',1,'Admin',1672319394,'192.168.64.1',2,15,40560,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00k64ciyo04pcxno',1,'Admin',1672319394,'192.168.64.1',2,15,27295,NULL,'Firmware version','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00k74ciyhv2ffilx',1,'Admin',1672319394,'192.168.64.1',2,15,27296,NULL,'Hardware serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00k84ciys84dnjkp',1,'Admin',1672319394,'192.168.64.1',2,15,43773,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00k94ciy6qu5jnhb',1,'Admin',1672319394,'192.168.64.1',2,15,40561,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ka4ciy9gteesz8',1,'Admin',1672319394,'192.168.64.1',2,15,40562,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00kb4ciyjloz1rwy',1,'Admin',1672319394,'192.168.64.1',2,15,40564,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00kc4ciy28i0uasg',1,'Admin',1672319394,'192.168.64.1',2,15,40563,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00kd4ciy40n958iw',1,'Admin',1672319394,'192.168.64.1',2,15,40565,NULL,'Memory utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ke4ciygw270h4c',1,'Admin',1672319394,'192.168.64.1',2,15,40566,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00kf4ciy6kb654x3',1,'Admin',1672319394,'192.168.64.1',2,15,40567,NULL,'ICMP ping','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00kg4ciyykygrjsa',1,'Admin',1672319394,'192.168.64.1',2,15,40568,NULL,'ICMP loss','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00kh4ciyd2n840rd',1,'Admin',1672319394,'192.168.64.1',2,15,40569,NULL,'ICMP response time','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ki4ciydqv1kflj',1,'Admin',1672319394,'192.168.64.1',2,15,40570,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00kj4ciyqif0ch2i',1,'Admin',1672319394,'192.168.64.1',2,15,40571,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00kk4ciynautsp3s',1,'Admin',1672319394,'192.168.64.1',2,15,40572,NULL,'CPU utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00kl4ciy08735x8s',1,'Admin',1672319394,'192.168.64.1',2,15,40573,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00km4ciywua0zdao',1,'Admin',1672319394,'192.168.64.1',2,15,27297,NULL,'Firmware version','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00kn4ciyp54s9oij',1,'Admin',1672319394,'192.168.64.1',2,15,43774,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ko4ciy3silplhp',1,'Admin',1672319394,'192.168.64.1',2,15,40574,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00kp4ciyx1b2aec6',1,'Admin',1672319394,'192.168.64.1',2,15,40575,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00kq4ciyrjsrz6jp',1,'Admin',1672319394,'192.168.64.1',2,15,40577,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00kr4ciyfo74nl1x',1,'Admin',1672319394,'192.168.64.1',2,15,40576,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ks4ciyewwv67gj',1,'Admin',1672319394,'192.168.64.1',2,15,40578,NULL,'Memory utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00kt4ciym53g56ty',1,'Admin',1672319394,'192.168.64.1',2,15,40579,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ku4ciy1wsrgqk9',1,'Admin',1672319394,'192.168.64.1',2,15,27379,NULL,'Hardware model name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00kv4ciy9vjz9pgn',1,'Admin',1672319394,'192.168.64.1',2,15,27378,NULL,'Hardware serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00kw4ciyqev106sg',1,'Admin',1672319394,'192.168.64.1',2,15,30097,NULL,'Operating system','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00kx4ciyhpgysyil',1,'Admin',1672319394,'192.168.64.1',2,15,40615,NULL,'ICMP ping','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ky4ciym9vdzunb',1,'Admin',1672319394,'192.168.64.1',2,15,40616,NULL,'ICMP loss','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00kz4ciyjr2qm3wd',1,'Admin',1672319394,'192.168.64.1',2,15,40617,NULL,'ICMP response time','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00l04ciy3lcdkkr9',1,'Admin',1672319394,'192.168.64.1',2,15,40618,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00l14ciy40kvgzxc',1,'Admin',1672319394,'192.168.64.1',2,15,40619,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00l24ciyiz1f64pq',1,'Admin',1672319394,'192.168.64.1',2,15,40620,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00l34ciytmod48c1',1,'Admin',1672319394,'192.168.64.1',2,15,40621,NULL,'Hardware model name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00l44ciyr3ukme35',1,'Admin',1672319394,'192.168.64.1',2,15,40622,NULL,'Hardware serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00l54ciy9xekjmcu',1,'Admin',1672319394,'192.168.64.1',2,15,43781,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00l64ciy1px0mt64',1,'Admin',1672319394,'192.168.64.1',2,15,40623,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00l74ciy3vv81y29',1,'Admin',1672319394,'192.168.64.1',2,15,40624,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00l84ciya3pb44dw',1,'Admin',1672319394,'192.168.64.1',2,15,40627,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00l94ciytoppkw8y',1,'Admin',1672319394,'192.168.64.1',2,15,40625,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00la4ciyutsv7ber',1,'Admin',1672319394,'192.168.64.1',2,15,40626,NULL,'Operating system','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00lb4ciyn6wievty',1,'Admin',1672319394,'192.168.64.1',2,15,40628,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00lc4ciyvrebs6jo',1,'Admin',1672319394,'192.168.64.1',2,15,40501,NULL,'ICMP ping','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ld4ciyga6zijov',1,'Admin',1672319394,'192.168.64.1',2,15,40502,NULL,'ICMP loss','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00le4ciylfjrqjpl',1,'Admin',1672319394,'192.168.64.1',2,15,40503,NULL,'ICMP response time','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00lf4ciyt7idwqzl',1,'Admin',1672319394,'192.168.64.1',2,15,33181,NULL,'Get sensors','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00lg4ciyttctui2e',1,'Admin',1672319394,'192.168.64.1',2,15,40504,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00lh4ciy3eodv5zp',1,'Admin',1672319394,'192.168.64.1',2,15,40505,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00li4ciy0cpy58wm',1,'Admin',1672319394,'192.168.64.1',2,15,40506,NULL,'CPU utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00lj4ciyyvnr1gtw',1,'Admin',1672319394,'192.168.64.1',2,15,40507,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00lk4ciy28bqte19',1,'Admin',1672319394,'192.168.64.1',2,15,43771,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ll4ciyjyuybxo8',1,'Admin',1672319394,'192.168.64.1',2,15,40508,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00lm4ciy02hruuew',1,'Admin',1672319394,'192.168.64.1',2,15,40509,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ln4ciyutxpwmn0',1,'Admin',1672319394,'192.168.64.1',2,15,40511,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00lo4ciy1nze7ih0',1,'Admin',1672319394,'192.168.64.1',2,15,40510,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00lp4ciy736myovl',1,'Admin',1672319394,'192.168.64.1',2,15,40512,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00lq4ciy0lmz3l19',1,'Admin',1672319394,'192.168.64.1',2,15,28511,NULL,'Tomcat: Version','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00lr4ciy4ib27axo',1,'Admin',1672319394,'192.168.64.1',2,15,30902,NULL,'Apache: Total bytes','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ls4ciy7qz6zoyo',1,'Admin',1672319394,'192.168.64.1',2,15,30903,NULL,'Apache: Bytes per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00lt4ciyuxx6fg96',1,'Admin',1672319394,'192.168.64.1',2,15,30914,NULL,'Apache: Total requests','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00lu4ciy5btmbf4x',1,'Admin',1672319394,'192.168.64.1',2,15,30913,NULL,'Apache: Requests per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00lv4ciyevtn9bkz',1,'Admin',1672319394,'192.168.64.1',2,15,30912,NULL,'Apache: Uptime','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00lw4ciyt8sr2v5q',1,'Admin',1672319394,'192.168.64.1',2,15,30911,NULL,'Apache: Version','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00lx4ciyrie4uedj',1,'Admin',1672319394,'192.168.64.1',2,15,30908,NULL,'Apache: Workers idle cleanup','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ly4ciyp8oc795b',1,'Admin',1672319394,'192.168.64.1',2,15,30907,NULL,'Apache: Workers closing connection','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00lz4ciyrdzx1375',1,'Admin',1672319394,'192.168.64.1',2,15,30906,NULL,'Apache: Workers DNS lookup','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00m04ciy8nv3koob',1,'Admin',1672319394,'192.168.64.1',2,15,30905,NULL,'Apache: Workers finishing','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00m14ciy51mtdzn7',1,'Admin',1672319394,'192.168.64.1',2,15,30904,NULL,'Apache: Workers keepalive (read)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00m24ciy3yx4gqnq',1,'Admin',1672319394,'192.168.64.1',2,15,30915,NULL,'Apache: Workers logging','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00m34ciyod4mr51n',1,'Admin',1672319394,'192.168.64.1',2,15,30897,NULL,'Apache: Workers reading request','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00m44ciy7aujjf8c',1,'Admin',1672319394,'192.168.64.1',2,15,30901,NULL,'Apache: Workers sending reply','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00m54ciyx9kr53pe',1,'Admin',1672319394,'192.168.64.1',2,15,30900,NULL,'Apache: Workers slot with no current process','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00m64ciyssk5brw3',1,'Admin',1672319394,'192.168.64.1',2,15,30899,NULL,'Apache: Workers starting up','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00m74ciyaol5b2cn',1,'Admin',1672319394,'192.168.64.1',2,15,30898,NULL,'Apache: Workers waiting for connection','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00m84ciyb62dvauq',1,'Admin',1672319394,'192.168.64.1',2,15,30910,NULL,'Apache: Total workers busy','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00m94ciy92zy86mn',1,'Admin',1672319394,'192.168.64.1',2,15,30909,NULL,'Apache: Total workers idle','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ma4ciyo4ouw3wm',1,'Admin',1672319394,'192.168.64.1',2,15,28748,NULL,'Apache: Service response time','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00mb4ciyje1qpxnh',1,'Admin',1672319394,'192.168.64.1',2,15,28743,NULL,'Apache: Service ping','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00mc4ciy0cyo2l40',1,'Admin',1672319394,'192.168.64.1',2,15,44335,NULL,'Apache: Get processes summary','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00md4ciycmulxy4d',1,'Admin',1672319394,'192.168.64.1',2,15,30896,NULL,'Apache: Get status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00me4ciyxka2j68b',1,'Admin',1672319394,'192.168.64.1',2,15,28795,NULL,'Apache: Total bytes','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00mf4ciyoa005tll',1,'Admin',1672319394,'192.168.64.1',2,15,28794,NULL,'Apache: Bytes per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00mg4ciy6spknp7y',1,'Admin',1672319394,'192.168.64.1',2,15,28775,NULL,'Apache: Get status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00mh4ciya83hwp08',1,'Admin',1672319394,'192.168.64.1',2,15,28792,NULL,'Apache: Total requests','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00mi4ciyjzp4fzvn',1,'Admin',1672319394,'192.168.64.1',2,15,28793,NULL,'Apache: Requests per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00mj4ciy7tqju9my',1,'Admin',1672319394,'192.168.64.1',2,15,28791,NULL,'Apache: Uptime','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00mk4ciyr5uu69kn',1,'Admin',1672319394,'192.168.64.1',2,15,28790,NULL,'Apache: Version','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ml4ciywosthwme',1,'Admin',1672319394,'192.168.64.1',2,15,28784,NULL,'Apache: Workers idle cleanup','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00mm4ciy1uzuyyac',1,'Admin',1672319394,'192.168.64.1',2,15,28786,NULL,'Apache: Workers closing connection','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00mn4ciyc9rzarnm',1,'Admin',1672319394,'192.168.64.1',2,15,28787,NULL,'Apache: Workers DNS lookup','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00mo4ciyvjod6oo4',1,'Admin',1672319394,'192.168.64.1',2,15,28785,NULL,'Apache: Workers finishing','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00mp4ciylygftqkx',1,'Admin',1672319394,'192.168.64.1',2,15,28783,NULL,'Apache: Workers keepalive (read)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00mq4ciy6woe8knc',1,'Admin',1672319394,'192.168.64.1',2,15,28782,NULL,'Apache: Workers logging','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00mr4ciy6ss0oom8',1,'Admin',1672319394,'192.168.64.1',2,15,28781,NULL,'Apache: Workers reading request','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ms4ciy3z5navgz',1,'Admin',1672319394,'192.168.64.1',2,15,28780,NULL,'Apache: Workers sending reply','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00mt4ciyll41egvy',1,'Admin',1672319394,'192.168.64.1',2,15,28779,NULL,'Apache: Workers slot with no current process','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00mu4ciy55377d8x',1,'Admin',1672319394,'192.168.64.1',2,15,28778,NULL,'Apache: Workers starting up','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00mv4ciyjgkw74qd',1,'Admin',1672319394,'192.168.64.1',2,15,28796,NULL,'Apache: Workers waiting for connection','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00mw4ciyejvaszjp',1,'Admin',1672319394,'192.168.64.1',2,15,28789,NULL,'Apache: Total workers busy','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00mx4ciy5k0oy3a3',1,'Admin',1672319394,'192.168.64.1',2,15,28788,NULL,'Apache: Total workers idle','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00my4ciyx9r0db5w',1,'Admin',1672319394,'192.168.64.1',2,15,28777,NULL,'Apache: Service response time','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00mz4ciyjy2srz5s',1,'Admin',1672319394,'192.168.64.1',2,15,28776,NULL,'Apache: Service ping','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00n04ciy9ngy241p',1,'Admin',1672319394,'192.168.64.1',2,15,30685,NULL,'Get IPMI sensors','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00n14ciyouxav0qo',1,'Admin',1672319394,'192.168.64.1',2,15,31792,NULL,'Asterisk: Active calls','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00n24ciyd075sovs',1,'Admin',1672319394,'192.168.64.1',2,15,31794,NULL,'Asterisk: Active channels','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00n34ciyft75gfxq',1,'Admin',1672319394,'192.168.64.1',2,15,31801,NULL,'Asterisk: Calls processed','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00n44ciyfquqq11q',1,'Admin',1672319394,'192.168.64.1',2,15,31800,NULL,'Asterisk: Calls processed per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00n54ciypebjhhh6',1,'Admin',1672319394,'192.168.64.1',2,15,31784,NULL,'Asterisk: Get stats','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00n64ciy0rplgsn5',1,'Admin',1672319394,'192.168.64.1',2,15,36771,NULL,'Asterisk: IAX trunks active channels','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00n74ciycv91b4i1',1,'Admin',1672319394,'192.168.64.1',2,15,31799,NULL,'Asterisk: IAX offline peers','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00n84ciyir1j2y1d',1,'Admin',1672319394,'192.168.64.1',2,15,33390,NULL,'Asterisk: IAX online peers','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00n94ciy0ycp97a6',1,'Admin',1672319394,'192.168.64.1',2,15,31798,NULL,'Asterisk: IAX peers','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00na4ciyxcim1nf6',1,'Admin',1672319394,'192.168.64.1',2,15,31797,NULL,'Asterisk: IAX unmonitored peers','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00nb4ciy9qsp4qjd',1,'Admin',1672319394,'192.168.64.1',2,15,36770,NULL,'Asterisk: PJSIP trunks active channels','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00nc4ciyqn7qg405',1,'Admin',1672319394,'192.168.64.1',2,15,33389,NULL,'Asterisk: PJSIP available endpoints','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00nd4ciyg28ycici',1,'Admin',1672319394,'192.168.64.1',2,15,31796,NULL,'Asterisk: PJSIP endpoints','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ne4ciym2x1lfho',1,'Admin',1672319394,'192.168.64.1',2,15,31795,NULL,'Asterisk: PJSIP unavailable endpoints','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00nf4ciy2we8pdi4',1,'Admin',1672319394,'192.168.64.1',2,15,36769,NULL,'Asterisk: SIP trunks active channels','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ng4ciyqoucqhf0',1,'Admin',1672319394,'192.168.64.1',2,15,31802,NULL,'Asterisk: SIP monitored offline','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00nh4ciyfgerpcmz',1,'Admin',1672319394,'192.168.64.1',2,15,31793,NULL,'Asterisk: SIP monitored online','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ni4ciy2my3iwm5',1,'Admin',1672319394,'192.168.64.1',2,15,31785,NULL,'Asterisk: SIP peers','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00nj4ciymmbpky6n',1,'Admin',1672319394,'192.168.64.1',2,15,31791,NULL,'Asterisk: SIP unmonitored offline','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00nk4ciy4oxi7yiy',1,'Admin',1672319394,'192.168.64.1',2,15,31790,NULL,'Asterisk: SIP unmonitored online','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00nl4ciycccj1b6f',1,'Admin',1672319394,'192.168.64.1',2,15,31789,NULL,'Asterisk: Total queues','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00nm4ciyribs52ed',1,'Admin',1672319394,'192.168.64.1',2,15,31788,NULL,'Asterisk: Uptime','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00nn4ciyvyfyrm30',1,'Admin',1672319394,'192.168.64.1',2,15,31787,NULL,'Asterisk: Uptime after reload','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00no4ciy2zftben9',1,'Admin',1672319394,'192.168.64.1',2,15,31786,NULL,'Asterisk: Version','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00np4ciyhsbv4uja',1,'Admin',1672319394,'192.168.64.1',2,15,31783,NULL,'Asterisk: Service response time','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00nq4ciywhdm22h7',1,'Admin',1672319394,'192.168.64.1',2,15,31782,NULL,'Asterisk: Service status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00nr4ciy2kcjeq2r',1,'Admin',1672319394,'192.168.64.1',2,15,32117,NULL,'Ceph: Get df','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00ns4ciyclb7hext',1,'Admin',1672319394,'192.168.64.1',2,15,32165,NULL,'Ceph: Minimum Mon release version','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00nt4ciyoh46zwfl',1,'Admin',1672319394,'192.168.64.1',2,15,32137,NULL,'Ceph: Number of Monitors','clc93sewa00004ciyq3kxknhu',''),('clc93sf4x00nu4ciyxydeffj5',1,'Admin',1672319394,'192.168.64.1',2,15,32134,NULL,'Ceph: Number of OSDs','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00nv4ciy2111hbmt',1,'Admin',1672319394,'192.168.64.1',2,15,32164,NULL,'Ceph: Number of OSDs in state: IN','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00nw4ciys388z1u9',1,'Admin',1672319394,'192.168.64.1',2,15,32122,NULL,'Ceph: Number of OSDs in state: UP','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00nx4ciyy144spiw',1,'Admin',1672319394,'192.168.64.1',2,15,32145,NULL,'Ceph: Number of Placement Groups','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ny4ciy4pg8sm7n',1,'Admin',1672319394,'192.168.64.1',2,15,32147,NULL,'Ceph: Number of Placement Groups in Temporary state','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00nz4ciyel9jbf95',1,'Admin',1672319394,'192.168.64.1',2,15,32148,NULL,'Ceph: Number of Pools','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00o04ciycfxgsaz7',1,'Admin',1672319394,'192.168.64.1',2,15,32118,NULL,'Ceph: Get OSD dump','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00o14ciyuuukfxn3',1,'Admin',1672319394,'192.168.64.1',2,15,32121,NULL,'Ceph: Get OSD stats','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00o24ciy4rwtywkq',1,'Admin',1672319394,'192.168.64.1',2,15,32149,NULL,'Ceph: Ceph backfill full ratio','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00o34ciytq2kvo32',1,'Admin',1672319394,'192.168.64.1',2,15,32150,NULL,'Ceph: Ceph OSD avg fill','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00o44ciyjx1580sl',1,'Admin',1672319394,'192.168.64.1',2,15,32151,NULL,'Ceph: Ceph OSD max fill','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00o54ciyiuy7s9ez',1,'Admin',1672319394,'192.168.64.1',2,15,32152,NULL,'Ceph: Ceph OSD min fill','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00o64ciyu1fkxf6x',1,'Admin',1672319394,'192.168.64.1',2,15,32153,NULL,'Ceph: Ceph full ratio','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00o74ciyowc7drm5',1,'Admin',1672319394,'192.168.64.1',2,15,32154,NULL,'Ceph: Ceph OSD Apply latency Avg','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00o84ciyyf4z773k',1,'Admin',1672319394,'192.168.64.1',2,15,32155,NULL,'Ceph: Ceph OSD Apply latency Max','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00o94ciyturb9eey',1,'Admin',1672319394,'192.168.64.1',2,15,32146,NULL,'Ceph: Ceph OSD Apply latency Min','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00oa4ciyhwatq7e0',1,'Admin',1672319394,'192.168.64.1',2,15,32156,NULL,'Ceph: Ceph OSD Commit latency Avg','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ob4ciyjro4tc06',1,'Admin',1672319394,'192.168.64.1',2,15,32158,NULL,'Ceph: Ceph OSD Commit latency Max','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00oc4ciy2bm9td32',1,'Admin',1672319394,'192.168.64.1',2,15,32159,NULL,'Ceph: Ceph OSD Commit latency Min','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00od4ciypiau9abl',1,'Admin',1672319394,'192.168.64.1',2,15,32160,NULL,'Ceph: Ceph nearfull ratio','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00oe4ciyh9ulghj1',1,'Admin',1672319394,'192.168.64.1',2,15,32161,NULL,'Ceph: Ceph OSD avg PGs','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00of4ciyoac3xnoz',1,'Admin',1672319394,'192.168.64.1',2,15,32162,NULL,'Ceph: Ceph OSD max PGs','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00og4ciy51a5h0cq',1,'Admin',1672319394,'192.168.64.1',2,15,32163,NULL,'Ceph: Ceph OSD min PGs','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00oh4ciytmzegmhh',1,'Admin',1672319394,'192.168.64.1',2,15,32166,NULL,'Ceph: Overall cluster status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00oi4ciy5xnf05ac',1,'Admin',1672319394,'192.168.64.1',2,15,32157,NULL,'Ceph: Number of Placement Groups in Active state','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00oj4ciy5raaggzh',1,'Admin',1672319394,'192.168.64.1',2,15,32144,NULL,'Ceph: Number of Placement Groups in backfill_toofull state','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ok4ciybto4cmt5',1,'Admin',1672319394,'192.168.64.1',2,15,32133,NULL,'Ceph: Number of Placement Groups in backfill_wait state','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ol4ciy2e47eoxl',1,'Admin',1672319394,'192.168.64.1',2,15,32143,NULL,'Ceph: Number of Placement Groups in Backfilling state','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00om4ciydswstuzf',1,'Admin',1672319394,'192.168.64.1',2,15,32124,NULL,'Ceph: Number of Placement Groups in Clean state','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00on4ciyzz2t8lmf',1,'Admin',1672319394,'192.168.64.1',2,15,32125,NULL,'Ceph: Number of Placement Groups in degraded state','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00oo4ciyvikhrwdp',1,'Admin',1672319394,'192.168.64.1',2,15,32126,NULL,'Ceph: Number of Placement Groups in inconsistent state','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00op4ciy1jjuvyxi',1,'Admin',1672319394,'192.168.64.1',2,15,32127,NULL,'Ceph: Number of Placement Groups in Peering state','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00oq4ciyol45b471',1,'Admin',1672319394,'192.168.64.1',2,15,32128,NULL,'Ceph: Number of Placement Groups in recovering state','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00or4ciyc04q6mxu',1,'Admin',1672319394,'192.168.64.1',2,15,32129,NULL,'Ceph: Number of Placement Groups in recovery_wait state','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00os4ciystr2bnke',1,'Admin',1672319394,'192.168.64.1',2,15,32130,NULL,'Ceph: Number of Placement Groups in remapped state','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ot4ciy1imcfks4',1,'Admin',1672319394,'192.168.64.1',2,15,32131,NULL,'Ceph: Number of Placement Groups in Scrubbing state','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ou4ciyjrk13vpx',1,'Admin',1672319394,'192.168.64.1',2,15,32123,NULL,'Ceph: Number of Placement Groups in Undersized state','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ov4ciy5qq6jx6n',1,'Admin',1672319394,'192.168.64.1',2,15,32132,NULL,'Ceph: Number of Placement Groups in Unknown state','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ow4ciy7tso107c',1,'Admin',1672319394,'192.168.64.1',2,15,32120,NULL,'Ceph: Ping','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ox4ciyeu7hws14',1,'Admin',1672319394,'192.168.64.1',2,15,32135,NULL,'Ceph: Ceph Read bandwidth','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00oy4ciyi153bw1e',1,'Admin',1672319394,'192.168.64.1',2,15,32136,NULL,'Ceph: Ceph Read operations per sec','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00oz4ciyccsyg5ls',1,'Admin',1672319394,'192.168.64.1',2,15,32119,NULL,'Ceph: Get overall cluster status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00p04ciy7jcx4g8r',1,'Admin',1672319394,'192.168.64.1',2,15,32138,NULL,'Ceph: Total bytes available','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00p14ciy90f31u14',1,'Admin',1672319394,'192.168.64.1',2,15,32139,NULL,'Ceph: Total bytes','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00p24ciys3f1uxxs',1,'Admin',1672319394,'192.168.64.1',2,15,32140,NULL,'Ceph: Total number of objects','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00p34ciydl22w3gy',1,'Admin',1672319394,'192.168.64.1',2,15,32141,NULL,'Ceph: Total bytes used','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00p44ciy8rv0zylt',1,'Admin',1672319394,'192.168.64.1',2,15,32142,NULL,'Ceph: Ceph Write bandwidth','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00p54ciye96nfqnd',1,'Admin',1672319394,'192.168.64.1',2,15,32167,NULL,'Ceph: Ceph Write operations per sec','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00p64ciy66spd0ac',1,'Admin',1672319394,'192.168.64.1',2,15,32463,NULL,'Aranet: Get data','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00p74ciy3pk5oxgd',1,'Admin',1672319394,'192.168.64.1',2,15,32464,NULL,'Aranet: Sensors discovery','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00p84ciy29m7q389',1,'Admin',1672319394,'192.168.64.1',2,15,32693,NULL,'Kafka: Leader election per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00p94ciyes58qsv9',1,'Admin',1672319394,'192.168.64.1',2,15,32724,NULL,'Kafka: Unclean leader election per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pa4ciyl7pgsdu4',1,'Admin',1672319394,'192.168.64.1',2,15,32726,NULL,'Kafka: Controller state on broker','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pb4ciyhmgwi1ta',1,'Admin',1672319394,'192.168.64.1',2,15,32727,NULL,'Kafka: Offline partitions count','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pc4ciyno7xorhm',1,'Admin',1672319394,'192.168.64.1',2,15,32728,NULL,'Kafka: Ineligible pending replica deletes','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pd4ciyt5ith6ye',1,'Admin',1672319394,'192.168.64.1',2,15,32729,NULL,'Kafka: Pending replica deletes','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pe4ciy6ax5escl',1,'Admin',1672319394,'192.168.64.1',2,15,32730,NULL,'Kafka: Ineligible pending topic deletes','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pf4ciy7lqk9l00',1,'Admin',1672319394,'192.168.64.1',2,15,32731,NULL,'Kafka: Pending topic deletes','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pg4ciy30h0p71m',1,'Admin',1672319394,'192.168.64.1',2,15,32732,NULL,'Kafka: Offline log directory count','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ph4ciyoqe1dnt8',1,'Admin',1672319394,'192.168.64.1',2,15,32733,NULL,'Kafka: Fetch-Consumer response send time, p95','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pi4ciyzvtl9hqm',1,'Admin',1672319394,'192.168.64.1',2,15,32734,NULL,'Kafka: Fetch-Consumer response send time, p99','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pj4ciyn4ft2aj4',1,'Admin',1672319394,'192.168.64.1',2,15,32735,NULL,'Kafka: Fetch-Consumer response send time, mean','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pk4ciyncaujgb5',1,'Admin',1672319394,'192.168.64.1',2,15,32736,NULL,'Kafka: Fetch-Follower response send time, p95','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pl4ciyqcmqlv1n',1,'Admin',1672319394,'192.168.64.1',2,15,32737,NULL,'Kafka: Fetch-Follower response send time, p99','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pm4ciyh2a6221m',1,'Admin',1672319394,'192.168.64.1',2,15,32738,NULL,'Kafka: Fetch-Follower response send time, mean','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pn4ciy33dkyewi',1,'Admin',1672319394,'192.168.64.1',2,15,32725,NULL,'Kafka: Produce response send time, p95','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00po4ciy71hxltwv',1,'Admin',1672319394,'192.168.64.1',2,15,32739,NULL,'Kafka: Produce response send time, p99','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pp4ciyljr5aw5t',1,'Admin',1672319394,'192.168.64.1',2,15,32741,NULL,'Kafka: Produce response send time, mean','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pq4ciyefm86kro',1,'Admin',1672319394,'192.168.64.1',2,15,32742,NULL,'Kafka: Temporary memory size in bytes (Fetch), max','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pr4ciy4izk3h82',1,'Admin',1672319394,'192.168.64.1',2,15,32743,NULL,'Kafka: Temporary memory size in bytes (Fetch), min','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ps4ciydj31vjec',1,'Admin',1672319394,'192.168.64.1',2,15,32744,NULL,'Kafka: Temporary memory size in bytes (Produce), max','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pt4ciyo6q5tb1w',1,'Admin',1672319394,'192.168.64.1',2,15,32745,NULL,'Kafka: Temporary memory size in bytes (Produce), avg','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pu4ciyrk741lty',1,'Admin',1672319394,'192.168.64.1',2,15,32746,NULL,'Kafka: Temporary memory size in bytes (Produce), min','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pv4ciyf060i9ic',1,'Admin',1672319394,'192.168.64.1',2,15,32747,NULL,'Kafka: Fetch-Consumer request total time, p95','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pw4ciymn3d186b',1,'Admin',1672319394,'192.168.64.1',2,15,32748,NULL,'Kafka: Fetch-Consumer request total time, p99','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00px4ciymcov21wr',1,'Admin',1672319394,'192.168.64.1',2,15,32749,NULL,'Kafka: Fetch-Consumer request total time, mean','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00py4ciyuyqlmjh6',1,'Admin',1672319394,'192.168.64.1',2,15,32750,NULL,'Kafka: Fetch-Follower request total time, p95','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00pz4ciyinnmeqq7',1,'Admin',1672319394,'192.168.64.1',2,15,32751,NULL,'Kafka: Fetch-Follower request total time, p99','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00q04ciy5zrodc9v',1,'Admin',1672319394,'192.168.64.1',2,15,32752,NULL,'Kafka: Fetch-Follower request total time, mean','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00q14ciy4mp2v5yz',1,'Admin',1672319394,'192.168.64.1',2,15,32753,NULL,'Kafka: Produce request total time, p95','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00q24ciyzcmuuv9s',1,'Admin',1672319394,'192.168.64.1',2,15,32740,NULL,'Kafka: Produce request total time, p99','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00q34ciy64b781ae',1,'Admin',1672319394,'192.168.64.1',2,15,32723,NULL,'Kafka: Produce request total time, mean','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00q44ciy0eveo0dv',1,'Admin',1672319394,'192.168.64.1',2,15,32708,NULL,'Kafka: UpdateMetadata request total time, p95','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00q54ciytv9m2oer',1,'Admin',1672319394,'192.168.64.1',2,15,32722,NULL,'Kafka: UpdateMetadata request total time, p99','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00q64ciyyp6q443a',1,'Admin',1672319394,'192.168.64.1',2,15,32695,NULL,'Kafka: Fetch-Consumer request total time, mean','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00q74ciyhilhpnot',1,'Admin',1672319394,'192.168.64.1',2,15,32696,NULL,'Kafka: Network processor average idle percent','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00q84ciybzdd6n6t',1,'Admin',1672319394,'192.168.64.1',2,15,32699,NULL,'Kafka: Bytes in per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00q94ciylmnwgf95',1,'Admin',1672319394,'192.168.64.1',2,15,32700,NULL,'Kafka: Bytes out per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qa4ciy74jg0ep3',1,'Admin',1672319394,'192.168.64.1',2,15,32701,NULL,'Kafka: Bytes rejected per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qb4ciydjmpmsul',1,'Admin',1672319394,'192.168.64.1',2,15,32702,NULL,'Kafka: Client fetch request failed per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qc4ciyeho9dfvu',1,'Admin',1672319394,'192.168.64.1',2,15,32703,NULL,'Kafka: Produce requests failed per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qd4ciym24ib1ih',1,'Admin',1672319394,'192.168.64.1',2,15,32704,NULL,'Kafka: Messages in per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qe4ciy9iqq1msw',1,'Admin',1672319394,'192.168.64.1',2,15,32705,NULL,'Kafka: Requests in producer purgatory','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qf4ciy2vgfdpz6',1,'Admin',1672319394,'192.168.64.1',2,15,32706,NULL,'Kafka: Requests in fetch purgatory','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qg4ciydtmkczwu',1,'Admin',1672319394,'192.168.64.1',2,15,32694,NULL,'Kafka: Request handler average idle percent','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qh4ciy2lr6tzad',1,'Admin',1672319394,'192.168.64.1',2,15,32707,NULL,'Kafka: Replication maximum lag','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qi4ciywo4q64c1',1,'Admin',1672319394,'192.168.64.1',2,15,32709,NULL,'Kafka: ISR expands per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qj4ciyltmkhj68',1,'Admin',1672319394,'192.168.64.1',2,15,32710,NULL,'Kafka: ISR shrink per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qk4ciy16fpvb19',1,'Admin',1672319394,'192.168.64.1',2,15,32711,NULL,'Kafka: Leader count','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ql4ciyavyl1znr',1,'Admin',1672319394,'192.168.64.1',2,15,32712,NULL,'Kafka: Partition count','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qm4ciy7hcwm6n4',1,'Admin',1672319394,'192.168.64.1',2,15,32713,NULL,'Kafka: Number of reassigning partitions','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qn4ciylyajjmc1',1,'Admin',1672319394,'192.168.64.1',2,15,32714,NULL,'Kafka: Under minimum ISR partition count','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qo4ciys9fcdluf',1,'Admin',1672319394,'192.168.64.1',2,15,32715,NULL,'Kafka: Under replicated partitions','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qp4ciybn3raifo',1,'Admin',1672319394,'192.168.64.1',2,15,32716,NULL,'Kafka: Request queue size','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qq4ciyoj5x9sgz',1,'Admin',1672319394,'192.168.64.1',2,15,32717,NULL,'Kafka: ZooKeeper connection status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qr4ciycd0hgiy0',1,'Admin',1672319394,'192.168.64.1',2,15,32718,NULL,'Kafka: ZooKeeper disconnect rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qs4ciyul7049bj',1,'Admin',1672319394,'192.168.64.1',2,15,32719,NULL,'Kafka: ZooKeeper session expiration rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qt4ciyu1r3ueip',1,'Admin',1672319394,'192.168.64.1',2,15,32720,NULL,'Kafka: ZooKeeper readonly rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qu4ciy9hwaeo04',1,'Admin',1672319394,'192.168.64.1',2,15,32721,NULL,'Kafka: ZooKeeper sync rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qv4ciyq623ihuf',1,'Admin',1672319394,'192.168.64.1',2,15,32754,NULL,'Kafka: ZooKeeper client request latency','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qw4ciy5gjyn82p',1,'Admin',1672319394,'192.168.64.1',2,15,32697,NULL,'Kafka: Uptime','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qx4ciyo9imwgcq',1,'Admin',1672319394,'192.168.64.1',2,15,32698,NULL,'Kafka: Version','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qy4ciyajl05hnv',1,'Admin',1672319394,'192.168.64.1',2,15,33028,NULL,'Cluster: Name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00qz4ciye7bf6163',1,'Admin',1672319394,'192.168.64.1',2,15,33062,NULL,'Version','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00r04ciyfs9xv9l2',1,'Admin',1672319394,'192.168.64.1',2,15,33064,NULL,'Compaction: Number of completed tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00r14ciy8jl0o1c1',1,'Admin',1672319394,'192.168.64.1',2,15,33065,NULL,'Commitlog: Pending tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00r24ciyl2lms5b9',1,'Admin',1672319394,'192.168.64.1',2,15,33066,NULL,'Latency: Read median','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00r34ciyzqxdr2cy',1,'Admin',1672319394,'192.168.64.1',2,15,33067,NULL,'Latency: Read 75 percentile','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00r44ciybetrulnm',1,'Admin',1672319394,'192.168.64.1',2,15,33068,NULL,'Latency: Read 95 percentile','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00r54ciy1182jdo7',1,'Admin',1672319394,'192.168.64.1',2,15,33069,NULL,'Commitlog: Total size','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00r64ciylhzgxd93',1,'Admin',1672319394,'192.168.64.1',2,15,33070,NULL,'Compaction: Total compactions completed','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00r74ciy9s1n72af',1,'Admin',1672319394,'192.168.64.1',2,15,33071,NULL,'Latency: Write median','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00r84ciydfxujabp',1,'Admin',1672319394,'192.168.64.1',2,15,33072,NULL,'Latency: Write 75 percentile','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00r94ciyeul2xkde',1,'Admin',1672319394,'192.168.64.1',2,15,33073,NULL,'Latency: Write 95 percentile','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ra4ciydqquolpk',1,'Admin',1672319394,'192.168.64.1',2,15,33074,NULL,'KeyCache: Capacity','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00rb4ciyq4kiz06a',1,'Admin',1672319394,'192.168.64.1',2,15,33075,NULL,'KeyCache: Entries','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00rc4ciyfpqa27q9',1,'Admin',1672319394,'192.168.64.1',2,15,33076,NULL,'KeyCache: HitRate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00rd4ciyk4bdqo4n',1,'Admin',1672319394,'192.168.64.1',2,15,33077,NULL,'KeyCache: Hits per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00re4ciyof36c2yq',1,'Admin',1672319394,'192.168.64.1',2,15,33063,NULL,'KeyCache: requests per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00rf4ciybw1nba45',1,'Admin',1672319394,'192.168.64.1',2,15,33078,NULL,'KeyCache: Size','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00rg4ciyz1feu52c',1,'Admin',1672319394,'192.168.64.1',2,15,33080,NULL,'Client connections: Native','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00rh4ciyvw3gxdq0',1,'Admin',1672319394,'192.168.64.1',2,15,33081,NULL,'Client connections: Trifts','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ri4ciy5nw0ziwt',1,'Admin',1672319394,'192.168.64.1',2,15,33082,NULL,'Latency: Client request read median','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00rj4ciy7kynmbga',1,'Admin',1672319394,'192.168.64.1',2,15,33083,NULL,'Latency: Client request read 75 percentile','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00rk4ciy33lw22t2',1,'Admin',1672319394,'192.168.64.1',2,15,33084,NULL,'Latency: Client request read 95 percentile','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00rl4ciyu53vpriq',1,'Admin',1672319394,'192.168.64.1',2,15,33085,NULL,'Client request: Read per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00rm4ciybavt3slv',1,'Admin',1672319394,'192.168.64.1',2,15,33086,NULL,'Latency: Client request write median','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00rn4ciy3iadxh3s',1,'Admin',1672319394,'192.168.64.1',2,15,33087,NULL,'Latency: Client request write 75 percentile','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ro4ciyjw0v5o0m',1,'Admin',1672319394,'192.168.64.1',2,15,33088,NULL,'Latency: Client request write 95 percentile','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00rp4ciyb8r47lc3',1,'Admin',1672319394,'192.168.64.1',2,15,33089,NULL,'Client request: Write per second','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00rq4ciyf0zinm7l',1,'Admin',1672319394,'192.168.64.1',2,15,33090,NULL,'Client request: Write Timeouts','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00rr4ciyzz471to6',1,'Admin',1672319394,'192.168.64.1',2,15,33091,NULL,'Compaction: Pending tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00rs4ciy704zxeb6',1,'Admin',1672319394,'192.168.64.1',2,15,33092,NULL,'Dropped messages: Write (Mutation)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00rt4ciy7nv0kdg8',1,'Admin',1672319394,'192.168.64.1',2,15,33093,NULL,'Dropped messages: Read','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ru4ciyxvjddhqc',1,'Admin',1672319394,'192.168.64.1',2,15,33079,NULL,'Storage: Errors','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00rv4ciyhpzj975d',1,'Admin',1672319394,'192.168.64.1',2,15,33061,NULL,'Storage: Used (bytes)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00rw4ciyq2uiz4v4',1,'Admin',1672319394,'192.168.64.1',2,15,33045,NULL,'Storage: Hints','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00rx4ciy6apwibtc',1,'Admin',1672319394,'192.168.64.1',2,15,33060,NULL,'Thread pool HintsDispatcher: Currently blocked task','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ry4ciyuf4ydn08',1,'Admin',1672319394,'192.168.64.1',2,15,33030,NULL,'Thread pool HintsDispatcher: Pending tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00rz4ciy15alcle2',1,'Admin',1672319394,'192.168.64.1',2,15,33031,NULL,'Thread pool HintsDispatcher: Total blocked tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00s04ciyumh5y6xk',1,'Admin',1672319394,'192.168.64.1',2,15,33032,NULL,'Thread pool MemtableFlushWriter: Currently blocked task','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00s14ciyqwnebc7a',1,'Admin',1672319394,'192.168.64.1',2,15,33033,NULL,'Thread pool MemtableFlushWriter: Pending tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00s24ciypewrousj',1,'Admin',1672319394,'192.168.64.1',2,15,33034,NULL,'Thread pool MemtableFlushWriter: Total blocked tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00s34ciyxi4cmhon',1,'Admin',1672319394,'192.168.64.1',2,15,33035,NULL,'Thread pool MemtablePostFlush: Currently blocked task','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00s44ciyws5p6eh6',1,'Admin',1672319394,'192.168.64.1',2,15,33036,NULL,'Thread pool MemtablePostFlush: Pending tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00s54ciymadyvvh3',1,'Admin',1672319394,'192.168.64.1',2,15,33037,NULL,'Thread pool MemtablePostFlush: Total blocked tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00s64ciy6hmkqvup',1,'Admin',1672319394,'192.168.64.1',2,15,33038,NULL,'Thread pool MigrationStage: Currently blocked task','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00s74ciymv31wnzf',1,'Admin',1672319394,'192.168.64.1',2,15,33039,NULL,'Thread pool MigrationStage: Pending tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00s84ciyt1338r47',1,'Admin',1672319394,'192.168.64.1',2,15,33040,NULL,'Thread pool MigrationStage: Total blocked tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00s94ciyhp3zepl7',1,'Admin',1672319394,'192.168.64.1',2,15,33041,NULL,'Thread pool MiscStage: Currently blocked task','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00sa4ciy4w4jvxgb',1,'Admin',1672319394,'192.168.64.1',2,15,33042,NULL,'Thread pool MiscStage: Pending tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00sb4ciyw5hulxp8',1,'Admin',1672319394,'192.168.64.1',2,15,33043,NULL,'Thread pool MiscStage: Total blocked tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00sc4ciyum30toai',1,'Admin',1672319394,'192.168.64.1',2,15,33029,NULL,'Thread pool SecondaryIndexManagement: Currently blocked task','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00sd4ciyqf0ysycf',1,'Admin',1672319394,'192.168.64.1',2,15,33044,NULL,'Thread pool SecondaryIndexManagement: Pending tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00se4ciyaiwt2qxy',1,'Admin',1672319394,'192.168.64.1',2,15,33046,NULL,'Thread pool SecondaryIndexManagement: Total blocked tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00sf4ciyjmh5u810',1,'Admin',1672319394,'192.168.64.1',2,15,33047,NULL,'Thread pool CounterMutationStage: Currently blocked task','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00sg4ciybwh9ek1o',1,'Admin',1672319394,'192.168.64.1',2,15,33048,NULL,'Thread pool CounterMutationStage: Pending tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00sh4ciyc5ggya1r',1,'Admin',1672319394,'192.168.64.1',2,15,33049,NULL,'Thread pool CounterMutationStage: Total blocked tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00si4ciyqtolc4p9',1,'Admin',1672319394,'192.168.64.1',2,15,33050,NULL,'Thread pool MutationStage: Currently blocked task','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00sj4ciy1uuzw2ot',1,'Admin',1672319394,'192.168.64.1',2,15,33051,NULL,'Thread pool.MutationStage: Pending tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00sk4ciyh7d0r4m3',1,'Admin',1672319394,'192.168.64.1',2,15,33052,NULL,'Thread pool MutationStage: Total blocked tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00sl4ciyqixqeo2p',1,'Admin',1672319394,'192.168.64.1',2,15,33053,NULL,'Thread pool ReadStage: Currently blocked task','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00sm4ciyp2wjar4a',1,'Admin',1672319394,'192.168.64.1',2,15,33054,NULL,'Thread pool ReadStage: Pending tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00sn4ciy1oewftws',1,'Admin',1672319394,'192.168.64.1',2,15,33055,NULL,'Thread pool ReadStage: Total blocked tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00so4ciy5mg0zq3x',1,'Admin',1672319394,'192.168.64.1',2,15,33056,NULL,'Thread pool ViewMutationStage: Currently blocked task','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00sp4ciyhcgpf24g',1,'Admin',1672319394,'192.168.64.1',2,15,33057,NULL,'Thread pool ViewMutationStage: Pending tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00sq4ciy6dwgf6c6',1,'Admin',1672319394,'192.168.64.1',2,15,33058,NULL,'Thread pool ViewMutationStage: Total blocked tasks','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00sr4ciyxmxcco6o',1,'Admin',1672319394,'192.168.64.1',2,15,33059,NULL,'Cluster: Nodes down','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ss4ciykxltaj8o',1,'Admin',1672319394,'192.168.64.1',2,15,33094,NULL,'Cluster: Nodes up','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00st4ciy77re44ja',1,'Admin',1672319394,'192.168.64.1',2,15,33944,NULL,'ICMP ping','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00su4ciyy0ug6qp0',1,'Admin',1672319394,'192.168.64.1',2,15,33945,NULL,'ICMP loss','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00sv4ciyu0kbw5b5',1,'Admin',1672319394,'192.168.64.1',2,15,33946,NULL,'ICMP response time','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00sw4ciy3jvm5mp7',1,'Admin',1672319394,'192.168.64.1',2,15,33947,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00sx4ciy18kddld3',1,'Admin',1672319394,'192.168.64.1',2,15,33948,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00sy4ciy5lz9p8xo',1,'Admin',1672319394,'192.168.64.1',2,15,33949,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00sz4ciybbaj11mf',1,'Admin',1672319394,'192.168.64.1',2,15,33950,NULL,'Hardware model name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00t04ciyhfzmy87g',1,'Admin',1672319394,'192.168.64.1',2,15,33951,NULL,'Hardware serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00t14ciynz6pe7ic',1,'Admin',1672319394,'192.168.64.1',2,15,43775,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00t24ciy7jmsr73i',1,'Admin',1672319394,'192.168.64.1',2,15,33952,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00t34ciyx3r9230j',1,'Admin',1672319394,'192.168.64.1',2,15,33953,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00t44ciyzd1imc20',1,'Admin',1672319394,'192.168.64.1',2,15,33956,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00t54ciy2knd6evo',1,'Admin',1672319394,'192.168.64.1',2,15,33954,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00t64ciys49me2eu',1,'Admin',1672319394,'192.168.64.1',2,15,33955,NULL,'Operating system','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00t74ciy5zmcd85a',1,'Admin',1672319394,'192.168.64.1',2,15,33957,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00t84ciyvbozddkm',1,'Admin',1672319394,'192.168.64.1',2,15,33985,NULL,'ICMP ping','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00t94ciybylt1q0g',1,'Admin',1672319394,'192.168.64.1',2,15,33986,NULL,'ICMP loss','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ta4ciyjt1gei53',1,'Admin',1672319394,'192.168.64.1',2,15,33987,NULL,'ICMP response time','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00tb4ciyyb925yih',1,'Admin',1672319394,'192.168.64.1',2,15,33988,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00tc4ciybm8y7bvb',1,'Admin',1672319394,'192.168.64.1',2,15,33989,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00td4ciymazzswue',1,'Admin',1672319394,'192.168.64.1',2,15,33990,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00te4ciyitwiak97',1,'Admin',1672319394,'192.168.64.1',2,15,33991,NULL,'Hardware model name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00tf4ciyzrdau5uf',1,'Admin',1672319394,'192.168.64.1',2,15,33992,NULL,'Hardware serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00tg4ciy7ik6nyyf',1,'Admin',1672319394,'192.168.64.1',2,15,43776,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00th4ciyen40pugw',1,'Admin',1672319394,'192.168.64.1',2,15,33993,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ti4ciydvid3elp',1,'Admin',1672319394,'192.168.64.1',2,15,33994,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00tj4ciygssmuu1t',1,'Admin',1672319394,'192.168.64.1',2,15,33997,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00tk4ciybbzi2u7w',1,'Admin',1672319394,'192.168.64.1',2,15,33995,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00tl4ciyr8su9fs2',1,'Admin',1672319394,'192.168.64.1',2,15,33996,NULL,'Operating system','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00tm4ciy7haoie80',1,'Admin',1672319394,'192.168.64.1',2,15,33998,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00tn4ciy93r06pfp',1,'Admin',1672319394,'192.168.64.1',2,15,34026,NULL,'ICMP ping','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00to4ciyxjy0e4pz',1,'Admin',1672319394,'192.168.64.1',2,15,34027,NULL,'ICMP loss','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00tp4ciyjwsc5caz',1,'Admin',1672319394,'192.168.64.1',2,15,34028,NULL,'ICMP response time','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00tq4ciydfixmvyx',1,'Admin',1672319394,'192.168.64.1',2,15,34029,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00tr4ciy5ca65w3x',1,'Admin',1672319394,'192.168.64.1',2,15,34030,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ts4ciy2x6fk1bk',1,'Admin',1672319394,'192.168.64.1',2,15,34031,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00tt4ciyhukut91l',1,'Admin',1672319394,'192.168.64.1',2,15,34032,NULL,'Hardware model name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00tu4ciykc2kqo0y',1,'Admin',1672319394,'192.168.64.1',2,15,34033,NULL,'Hardware serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00tv4ciyuey9ixui',1,'Admin',1672319394,'192.168.64.1',2,15,43777,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00tw4ciy0gi468jl',1,'Admin',1672319394,'192.168.64.1',2,15,34034,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00tx4ciy1yi3xbj2',1,'Admin',1672319394,'192.168.64.1',2,15,34035,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ty4ciyxnb7ucv3',1,'Admin',1672319394,'192.168.64.1',2,15,34038,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00tz4ciy5bd4xgw5',1,'Admin',1672319394,'192.168.64.1',2,15,34036,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00u04ciyoytk3d2c',1,'Admin',1672319394,'192.168.64.1',2,15,34037,NULL,'Operating system','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00u14ciyn419zpbk',1,'Admin',1672319394,'192.168.64.1',2,15,34039,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00u24ciywk88xev3',1,'Admin',1672319394,'192.168.64.1',2,15,34067,NULL,'ICMP ping','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00u34ciy02ghyg71',1,'Admin',1672319394,'192.168.64.1',2,15,34068,NULL,'ICMP loss','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00u44ciydcyzh9zh',1,'Admin',1672319394,'192.168.64.1',2,15,34069,NULL,'ICMP response time','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00u54ciyrh700n0f',1,'Admin',1672319394,'192.168.64.1',2,15,34070,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00u64ciy4qj6k02i',1,'Admin',1672319394,'192.168.64.1',2,15,34071,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00u74ciyl4mv6won',1,'Admin',1672319394,'192.168.64.1',2,15,34072,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00u84ciygn9qyc5h',1,'Admin',1672319394,'192.168.64.1',2,15,34073,NULL,'Hardware model name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00u94ciyronlnjoj',1,'Admin',1672319394,'192.168.64.1',2,15,34074,NULL,'Hardware serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ua4ciycc5aw5rc',1,'Admin',1672319394,'192.168.64.1',2,15,43778,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ub4ciygkz57kf1',1,'Admin',1672319394,'192.168.64.1',2,15,34075,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00uc4ciyibha3bda',1,'Admin',1672319394,'192.168.64.1',2,15,34076,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ud4ciyao0m649c',1,'Admin',1672319394,'192.168.64.1',2,15,34079,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ue4ciyzrtvkk55',1,'Admin',1672319394,'192.168.64.1',2,15,34077,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00uf4ciy34cr7t49',1,'Admin',1672319394,'192.168.64.1',2,15,34078,NULL,'Operating system','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ug4ciy3c9sil8v',1,'Admin',1672319394,'192.168.64.1',2,15,34080,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00uh4ciy1tqwoih2',1,'Admin',1672319394,'192.168.64.1',2,15,34108,NULL,'ICMP ping','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ui4ciyii15f6mw',1,'Admin',1672319394,'192.168.64.1',2,15,34109,NULL,'ICMP loss','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00uj4ciyi0latopj',1,'Admin',1672319394,'192.168.64.1',2,15,34110,NULL,'ICMP response time','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00uk4ciy5m5gg37u',1,'Admin',1672319394,'192.168.64.1',2,15,34111,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ul4ciyu8p1k4dt',1,'Admin',1672319394,'192.168.64.1',2,15,34112,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00um4ciyfdi3wl64',1,'Admin',1672319394,'192.168.64.1',2,15,34113,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00un4ciy7bfum03r',1,'Admin',1672319394,'192.168.64.1',2,15,34114,NULL,'Hardware model name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00uo4ciyp6zpo2pb',1,'Admin',1672319394,'192.168.64.1',2,15,34115,NULL,'Hardware serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00up4ciy8nvsrfce',1,'Admin',1672319394,'192.168.64.1',2,15,43779,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00uq4ciyowqc7mxi',1,'Admin',1672319394,'192.168.64.1',2,15,34116,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ur4ciygn8xis4c',1,'Admin',1672319394,'192.168.64.1',2,15,34117,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00us4ciymxyft2yl',1,'Admin',1672319394,'192.168.64.1',2,15,34120,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ut4ciyxdoesbgi',1,'Admin',1672319394,'192.168.64.1',2,15,34118,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00uu4ciyj1fs2l95',1,'Admin',1672319394,'192.168.64.1',2,15,34119,NULL,'Operating system','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00uv4ciy2z3kmavx',1,'Admin',1672319394,'192.168.64.1',2,15,34121,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00uw4ciyqeu381bu',1,'Admin',1672319394,'192.168.64.1',2,15,34787,NULL,'Battery capacity','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ux4ciycrfxro74',1,'Admin',1672319394,'192.168.64.1',2,15,34193,NULL,'External battery packs count','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00uy4ciytmjf3hvg',1,'Admin',1672319394,'192.168.64.1',2,15,34205,NULL,'Battery last replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00uz4ciye2odcirx',1,'Admin',1672319394,'192.168.64.1',2,15,34204,NULL,'Battery replace indicator','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00v04ciybgu8oyfr',1,'Admin',1672319394,'192.168.64.1',2,15,34203,NULL,'Battery runtime remaining','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00v14ciyt1f6wzkt',1,'Admin',1672319394,'192.168.64.1',2,15,34202,NULL,'Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00v24ciyivx47auf',1,'Admin',1672319394,'192.168.64.1',2,15,34201,NULL,'Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00v34ciyr7mzhlwf',1,'Admin',1672319394,'192.168.64.1',2,15,34200,NULL,'Battery voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00v44ciyfyq7vksk',1,'Admin',1672319394,'192.168.64.1',2,15,34196,NULL,'Input fail cause','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00v54ciyzjkbc8gv',1,'Admin',1672319394,'192.168.64.1',2,15,34195,NULL,'Input frequency','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00v64ciyecf2xpgp',1,'Admin',1672319394,'192.168.64.1',2,15,34194,NULL,'Input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00v74ciyxsw0crnf',1,'Admin',1672319394,'192.168.64.1',2,15,34192,NULL,'Output current','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00v84ciyr7zyu1og',1,'Admin',1672319394,'192.168.64.1',2,15,34180,NULL,'Output load','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00v94ciyat5xai37',1,'Admin',1672319394,'192.168.64.1',2,15,34191,NULL,'Output status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00va4ciy9yxn9d9p',1,'Admin',1672319394,'192.168.64.1',2,15,34190,NULL,'Output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vb4ciyis8fj480',1,'Admin',1672319394,'192.168.64.1',2,15,34189,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vc4ciyh7ajs7lk',1,'Admin',1672319394,'192.168.64.1',2,15,34188,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vd4ciyiyqjlygt',1,'Admin',1672319394,'192.168.64.1',2,15,34187,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ve4ciydb5vum0o',1,'Admin',1672319394,'192.168.64.1',2,15,43883,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vf4ciyugrz1vn9',1,'Admin',1672319394,'192.168.64.1',2,15,34186,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vg4ciyz3hwntsx',1,'Admin',1672319394,'192.168.64.1',2,15,34185,NULL,'Model','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vh4ciyqgl087qd',1,'Admin',1672319394,'192.168.64.1',2,15,34788,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vi4ciyycgu1gtq',1,'Admin',1672319394,'192.168.64.1',2,15,34181,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vj4ciyq53935tz',1,'Admin',1672319394,'192.168.64.1',2,15,34183,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vk4ciysjjqaqq2',1,'Admin',1672319394,'192.168.64.1',2,15,34182,NULL,'Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vl4ciyw2p54ilu',1,'Admin',1672319394,'192.168.64.1',2,15,34206,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vm4ciywnofimtm',1,'Admin',1672319394,'192.168.64.1',2,15,34451,NULL,'Battery capacity','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vn4ciy85oyu4tf',1,'Admin',1672319394,'192.168.64.1',2,15,34464,NULL,'External battery packs count','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vo4ciysdzkhxen',1,'Admin',1672319394,'192.168.64.1',2,15,34474,NULL,'Battery last replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vp4ciytqzhws0m',1,'Admin',1672319394,'192.168.64.1',2,15,34473,NULL,'Battery replace indicator','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vq4ciy7hi0xpzz',1,'Admin',1672319394,'192.168.64.1',2,15,34472,NULL,'Battery runtime remaining','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vr4ciyqzst2qrq',1,'Admin',1672319394,'192.168.64.1',2,15,34471,NULL,'Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vs4ciy5cyfqfxd',1,'Admin',1672319394,'192.168.64.1',2,15,34470,NULL,'Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vt4ciyky50fntt',1,'Admin',1672319394,'192.168.64.1',2,15,34469,NULL,'Battery voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vu4ciylbo65kda',1,'Admin',1672319394,'192.168.64.1',2,15,34468,NULL,'Input fail cause','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vv4ciyu2n9kbeg',1,'Admin',1672319394,'192.168.64.1',2,15,34467,NULL,'Input frequency','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vw4ciyfxtqu3yy',1,'Admin',1672319394,'192.168.64.1',2,15,34466,NULL,'Input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vx4ciyx3pyhvyv',1,'Admin',1672319394,'192.168.64.1',2,15,34465,NULL,'Output current','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vy4ciyfsgx29m8',1,'Admin',1672319394,'192.168.64.1',2,15,34463,NULL,'Output load','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00vz4ciyaj2wdth6',1,'Admin',1672319394,'192.168.64.1',2,15,34452,NULL,'Output status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00w04ciyzerhnb42',1,'Admin',1672319394,'192.168.64.1',2,15,34462,NULL,'Output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00w14ciy7s6aih70',1,'Admin',1672319394,'192.168.64.1',2,15,34461,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00w24ciy4geu675i',1,'Admin',1672319394,'192.168.64.1',2,15,34460,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00w34ciyw6oen2xv',1,'Admin',1672319394,'192.168.64.1',2,15,34459,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00w44ciy48mpl4nv',1,'Admin',1672319394,'192.168.64.1',2,15,43876,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00w54ciyu7vkoh1p',1,'Admin',1672319394,'192.168.64.1',2,15,34458,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00w64ciyvr6cjp3k',1,'Admin',1672319394,'192.168.64.1',2,15,34457,NULL,'Model','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00w74ciysh55kocq',1,'Admin',1672319394,'192.168.64.1',2,15,34456,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00w84ciyi8h9fa4t',1,'Admin',1672319394,'192.168.64.1',2,15,34453,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00w94ciyu71aqz2b',1,'Admin',1672319394,'192.168.64.1',2,15,34455,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wa4ciyh781wshe',1,'Admin',1672319394,'192.168.64.1',2,15,34454,NULL,'Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wb4ciy52kuwb9z',1,'Admin',1672319394,'192.168.64.1',2,15,34475,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wc4ciy958uncee',1,'Admin',1672319394,'192.168.64.1',2,15,34499,NULL,'Battery capacity','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wd4ciym0obz5ml',1,'Admin',1672319394,'192.168.64.1',2,15,34512,NULL,'External battery packs count','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00we4ciycqy83ran',1,'Admin',1672319394,'192.168.64.1',2,15,34522,NULL,'Battery last replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wf4ciy1otp6mzl',1,'Admin',1672319394,'192.168.64.1',2,15,34521,NULL,'Battery replace indicator','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wg4ciy366ej9or',1,'Admin',1672319394,'192.168.64.1',2,15,34520,NULL,'Battery runtime remaining','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wh4ciys3y3c5om',1,'Admin',1672319394,'192.168.64.1',2,15,34519,NULL,'Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wi4ciylsqqc2p4',1,'Admin',1672319394,'192.168.64.1',2,15,34518,NULL,'Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wj4ciyj90xwsoa',1,'Admin',1672319394,'192.168.64.1',2,15,34517,NULL,'Battery voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wk4ciyebhf9fxt',1,'Admin',1672319394,'192.168.64.1',2,15,34516,NULL,'Input fail cause','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wl4ciywg7v89vg',1,'Admin',1672319394,'192.168.64.1',2,15,34515,NULL,'Input frequency','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wm4ciy5wvxyaqu',1,'Admin',1672319394,'192.168.64.1',2,15,34514,NULL,'Input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wn4ciysn239i18',1,'Admin',1672319394,'192.168.64.1',2,15,34513,NULL,'Output current','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wo4ciyzfzl2xii',1,'Admin',1672319394,'192.168.64.1',2,15,34511,NULL,'Output load','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wp4ciyrvpgs4ko',1,'Admin',1672319394,'192.168.64.1',2,15,34500,NULL,'Output status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wq4ciy9tkmv8gf',1,'Admin',1672319394,'192.168.64.1',2,15,34510,NULL,'Output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wr4ciyq6fqzvn5',1,'Admin',1672319394,'192.168.64.1',2,15,34509,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ws4ciym2u7cypk',1,'Admin',1672319394,'192.168.64.1',2,15,34508,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wt4ciyktcpy8c2',1,'Admin',1672319394,'192.168.64.1',2,15,34507,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wu4ciyhiwmxu7m',1,'Admin',1672319394,'192.168.64.1',2,15,43877,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wv4ciyryk0gm5z',1,'Admin',1672319394,'192.168.64.1',2,15,34506,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ww4ciyks7b11co',1,'Admin',1672319394,'192.168.64.1',2,15,34505,NULL,'Model','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wx4ciyscwaeas1',1,'Admin',1672319394,'192.168.64.1',2,15,34504,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wy4ciyxm04mj64',1,'Admin',1672319394,'192.168.64.1',2,15,34501,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00wz4ciy4yzmdptz',1,'Admin',1672319394,'192.168.64.1',2,15,34503,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00x04ciy2om8r5l4',1,'Admin',1672319394,'192.168.64.1',2,15,34502,NULL,'Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00x14ciygfb71kzr',1,'Admin',1672319394,'192.168.64.1',2,15,34523,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00x24ciyz2gh9zvf',1,'Admin',1672319394,'192.168.64.1',2,15,34547,NULL,'Battery capacity','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00x34ciyfdd8qpnx',1,'Admin',1672319394,'192.168.64.1',2,15,34560,NULL,'External battery packs count','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00x44ciygofb43ng',1,'Admin',1672319394,'192.168.64.1',2,15,34570,NULL,'Battery last replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00x54ciy6uokmxlw',1,'Admin',1672319394,'192.168.64.1',2,15,34569,NULL,'Battery replace indicator','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00x64ciyyj0qb0tw',1,'Admin',1672319394,'192.168.64.1',2,15,34568,NULL,'Battery runtime remaining','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00x74ciyrpoj5z2b',1,'Admin',1672319394,'192.168.64.1',2,15,34567,NULL,'Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00x84ciyf976yv0u',1,'Admin',1672319394,'192.168.64.1',2,15,34566,NULL,'Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00x94ciybej1dqro',1,'Admin',1672319394,'192.168.64.1',2,15,34565,NULL,'Battery voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xa4ciy0z2tragh',1,'Admin',1672319394,'192.168.64.1',2,15,34564,NULL,'Input fail cause','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xb4ciys6ozi3xr',1,'Admin',1672319394,'192.168.64.1',2,15,34563,NULL,'Input frequency','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xc4ciy7dkay3ad',1,'Admin',1672319394,'192.168.64.1',2,15,34562,NULL,'Input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xd4ciyef8tsf26',1,'Admin',1672319394,'192.168.64.1',2,15,34561,NULL,'Output current','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xe4ciy0m9esg03',1,'Admin',1672319394,'192.168.64.1',2,15,34559,NULL,'Output load','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xf4ciymun0q5go',1,'Admin',1672319394,'192.168.64.1',2,15,34548,NULL,'Output status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xg4ciy8j729liz',1,'Admin',1672319394,'192.168.64.1',2,15,34558,NULL,'Output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xh4ciyzqod10yv',1,'Admin',1672319394,'192.168.64.1',2,15,34557,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xi4ciy3cq8ym6j',1,'Admin',1672319394,'192.168.64.1',2,15,34556,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xj4ciynnx60smc',1,'Admin',1672319394,'192.168.64.1',2,15,34555,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xk4ciytrcet9t0',1,'Admin',1672319394,'192.168.64.1',2,15,43878,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xl4ciycqf4mjzq',1,'Admin',1672319394,'192.168.64.1',2,15,34554,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xm4ciyryfj67ry',1,'Admin',1672319394,'192.168.64.1',2,15,34553,NULL,'Model','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xn4ciyazoqrnwo',1,'Admin',1672319394,'192.168.64.1',2,15,34552,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xo4ciygilz66ou',1,'Admin',1672319394,'192.168.64.1',2,15,34549,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xp4ciya2j2namz',1,'Admin',1672319394,'192.168.64.1',2,15,34551,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xq4ciyfhw5cpnh',1,'Admin',1672319394,'192.168.64.1',2,15,34550,NULL,'Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xr4ciyebax8p05',1,'Admin',1672319394,'192.168.64.1',2,15,34571,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xs4ciy3ra01md5',1,'Admin',1672319394,'192.168.64.1',2,15,34595,NULL,'Battery capacity','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xt4ciyn2mnj3n7',1,'Admin',1672319394,'192.168.64.1',2,15,34608,NULL,'External battery packs count','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xu4ciy6ia2m8ya',1,'Admin',1672319394,'192.168.64.1',2,15,34618,NULL,'Battery last replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xv4ciyqwujzv6y',1,'Admin',1672319394,'192.168.64.1',2,15,34617,NULL,'Battery replace indicator','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xw4ciy0pvj0acs',1,'Admin',1672319394,'192.168.64.1',2,15,34616,NULL,'Battery runtime remaining','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xx4ciy4ac5qns8',1,'Admin',1672319394,'192.168.64.1',2,15,34615,NULL,'Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xy4ciy5s10zg55',1,'Admin',1672319394,'192.168.64.1',2,15,34614,NULL,'Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00xz4ciy7m3otdqg',1,'Admin',1672319394,'192.168.64.1',2,15,34613,NULL,'Battery voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00y04ciyy2hajrq7',1,'Admin',1672319394,'192.168.64.1',2,15,34612,NULL,'Input fail cause','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00y14ciyq78qvcal',1,'Admin',1672319394,'192.168.64.1',2,15,34611,NULL,'Input frequency','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00y24ciyn4lccde3',1,'Admin',1672319394,'192.168.64.1',2,15,34610,NULL,'Input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00y34ciy6nyxb2ke',1,'Admin',1672319394,'192.168.64.1',2,15,34609,NULL,'Output current','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00y44ciynazm6tum',1,'Admin',1672319394,'192.168.64.1',2,15,34607,NULL,'Output load','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00y54ciyjdsx09cl',1,'Admin',1672319394,'192.168.64.1',2,15,34596,NULL,'Output status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00y64ciyntkc3fqz',1,'Admin',1672319394,'192.168.64.1',2,15,34606,NULL,'Output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00y74ciy98m7hq5a',1,'Admin',1672319394,'192.168.64.1',2,15,34605,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00y84ciy3zhjxasc',1,'Admin',1672319394,'192.168.64.1',2,15,34604,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00y94ciymiqtzmbq',1,'Admin',1672319394,'192.168.64.1',2,15,34603,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ya4ciy0pnr658t',1,'Admin',1672319394,'192.168.64.1',2,15,43879,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00yb4ciyrt41andy',1,'Admin',1672319394,'192.168.64.1',2,15,34602,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00yc4ciyfpqg3ni4',1,'Admin',1672319394,'192.168.64.1',2,15,34601,NULL,'Model','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00yd4ciytotnh1z6',1,'Admin',1672319394,'192.168.64.1',2,15,34600,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ye4ciyod8gsqc2',1,'Admin',1672319394,'192.168.64.1',2,15,34597,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00yf4ciyusraem9t',1,'Admin',1672319394,'192.168.64.1',2,15,34599,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00yg4ciykset6713',1,'Admin',1672319394,'192.168.64.1',2,15,34598,NULL,'Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00yh4ciyvuaysgwo',1,'Admin',1672319394,'192.168.64.1',2,15,34619,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00yi4ciyvubhsxym',1,'Admin',1672319394,'192.168.64.1',2,15,34643,NULL,'Battery capacity','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00yj4ciy0e1jyxvy',1,'Admin',1672319394,'192.168.64.1',2,15,34656,NULL,'External battery packs count','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00yk4ciymk9s47h6',1,'Admin',1672319394,'192.168.64.1',2,15,34666,NULL,'Battery last replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00yl4ciyvo2tn29y',1,'Admin',1672319394,'192.168.64.1',2,15,34665,NULL,'Battery replace indicator','clc93sewa00004ciyq3kxknhu',''),('clc93sf4y00ym4ciymh71i0nq',1,'Admin',1672319394,'192.168.64.1',2,15,34664,NULL,'Battery runtime remaining','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00yn4ciy121nw5pk',1,'Admin',1672319394,'192.168.64.1',2,15,34663,NULL,'Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00yo4ciy3sbapqrp',1,'Admin',1672319394,'192.168.64.1',2,15,34662,NULL,'Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00yp4ciyzyqk48tq',1,'Admin',1672319394,'192.168.64.1',2,15,34661,NULL,'Battery voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00yq4ciyyfl315nf',1,'Admin',1672319394,'192.168.64.1',2,15,34660,NULL,'Input fail cause','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00yr4ciy18gw3ss8',1,'Admin',1672319394,'192.168.64.1',2,15,34659,NULL,'Input frequency','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00ys4ciyu54vug26',1,'Admin',1672319394,'192.168.64.1',2,15,34658,NULL,'Input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00yt4ciy81o7f023',1,'Admin',1672319394,'192.168.64.1',2,15,34657,NULL,'Output current','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00yu4ciycyvs2gc5',1,'Admin',1672319394,'192.168.64.1',2,15,34655,NULL,'Output load','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00yv4ciycn31nmyj',1,'Admin',1672319394,'192.168.64.1',2,15,34644,NULL,'Output status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00yw4ciyk1k1t8lr',1,'Admin',1672319394,'192.168.64.1',2,15,34654,NULL,'Output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00yx4ciycoyrw60n',1,'Admin',1672319394,'192.168.64.1',2,15,34653,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00yy4ciylgidqbuu',1,'Admin',1672319394,'192.168.64.1',2,15,34652,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00yz4ciyr4mldsf2',1,'Admin',1672319394,'192.168.64.1',2,15,34651,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00z04ciymab048c1',1,'Admin',1672319394,'192.168.64.1',2,15,43880,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00z14ciy1rsq386u',1,'Admin',1672319394,'192.168.64.1',2,15,34650,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00z24ciynjhxwto3',1,'Admin',1672319394,'192.168.64.1',2,15,34649,NULL,'Model','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00z34ciyhlwckebj',1,'Admin',1672319394,'192.168.64.1',2,15,34648,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00z44ciyu934r1c5',1,'Admin',1672319394,'192.168.64.1',2,15,34645,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00z54ciyh1h2v2e9',1,'Admin',1672319394,'192.168.64.1',2,15,34647,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00z64ciyyq34w7dq',1,'Admin',1672319394,'192.168.64.1',2,15,34646,NULL,'Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00z74ciy7j661lvr',1,'Admin',1672319394,'192.168.64.1',2,15,34667,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00z84ciy2nvtf4dw',1,'Admin',1672319394,'192.168.64.1',2,15,34739,NULL,'Battery capacity','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00z94ciy9czxeak0',1,'Admin',1672319394,'192.168.64.1',2,15,34752,NULL,'External battery packs count','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00za4ciygarkgg0g',1,'Admin',1672319394,'192.168.64.1',2,15,34762,NULL,'Battery last replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zb4ciyagtajnjy',1,'Admin',1672319394,'192.168.64.1',2,15,34761,NULL,'Battery replace indicator','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zc4ciyvo1vvpbb',1,'Admin',1672319394,'192.168.64.1',2,15,34760,NULL,'Battery runtime remaining','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zd4ciy7nxt8lul',1,'Admin',1672319394,'192.168.64.1',2,15,34759,NULL,'Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00ze4ciykh07t5ai',1,'Admin',1672319394,'192.168.64.1',2,15,34758,NULL,'Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zf4ciye3vmtg9y',1,'Admin',1672319394,'192.168.64.1',2,15,34757,NULL,'Battery voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zg4ciynsnkz5ya',1,'Admin',1672319394,'192.168.64.1',2,15,34756,NULL,'Input fail cause','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zh4ciy6vmb3xc9',1,'Admin',1672319394,'192.168.64.1',2,15,34755,NULL,'Input frequency','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zi4ciyd18xm3ar',1,'Admin',1672319394,'192.168.64.1',2,15,34754,NULL,'Input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zj4ciyk7exvts7',1,'Admin',1672319394,'192.168.64.1',2,15,34753,NULL,'Output current','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zk4ciy0r7t88ca',1,'Admin',1672319394,'192.168.64.1',2,15,34751,NULL,'Output load','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zl4ciytljq90iz',1,'Admin',1672319394,'192.168.64.1',2,15,34740,NULL,'Output status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zm4ciyzngqvp3l',1,'Admin',1672319394,'192.168.64.1',2,15,34750,NULL,'Output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zn4ciyzfned489',1,'Admin',1672319394,'192.168.64.1',2,15,34749,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zo4ciypucr262a',1,'Admin',1672319394,'192.168.64.1',2,15,34748,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zp4ciyazqglzoo',1,'Admin',1672319394,'192.168.64.1',2,15,34747,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zq4ciyd85gbcxn',1,'Admin',1672319394,'192.168.64.1',2,15,43882,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zr4ciyhs0f2e0k',1,'Admin',1672319394,'192.168.64.1',2,15,34746,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zs4ciy7es5p0m5',1,'Admin',1672319394,'192.168.64.1',2,15,34745,NULL,'Model','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zt4ciyeuc7o86v',1,'Admin',1672319394,'192.168.64.1',2,15,34744,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zu4ciyg83ql17p',1,'Admin',1672319394,'192.168.64.1',2,15,34741,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zv4ciyb5n9xjli',1,'Admin',1672319394,'192.168.64.1',2,15,34743,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zw4ciyq1f7pfiw',1,'Admin',1672319394,'192.168.64.1',2,15,34742,NULL,'Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zx4ciylz89pmeq',1,'Admin',1672319394,'192.168.64.1',2,15,34763,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zy4ciyj2wlls5f',1,'Admin',1672319394,'192.168.64.1',2,15,34793,NULL,'Battery capacity','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z00zz4ciylum9ac39',1,'Admin',1672319394,'192.168.64.1',2,15,34806,NULL,'External battery packs count','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01004ciyi52kz95r',1,'Admin',1672319394,'192.168.64.1',2,15,34816,NULL,'Battery last replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01014ciy2far07s3',1,'Admin',1672319394,'192.168.64.1',2,15,34815,NULL,'Battery replace indicator','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01024ciymfxmgrxk',1,'Admin',1672319394,'192.168.64.1',2,15,34814,NULL,'Battery runtime remaining','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01034ciy1gk5ng4b',1,'Admin',1672319394,'192.168.64.1',2,15,34813,NULL,'Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01044ciy45vpn6e9',1,'Admin',1672319394,'192.168.64.1',2,15,34812,NULL,'Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01054ciypdqtue6h',1,'Admin',1672319394,'192.168.64.1',2,15,34811,NULL,'Battery voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01064ciy08bppr0n',1,'Admin',1672319394,'192.168.64.1',2,15,34810,NULL,'Input fail cause','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01074ciyc2p9hge9',1,'Admin',1672319394,'192.168.64.1',2,15,34809,NULL,'Input frequency','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01084ciypypdrk1f',1,'Admin',1672319394,'192.168.64.1',2,15,34808,NULL,'Input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01094ciyn3qrajhw',1,'Admin',1672319394,'192.168.64.1',2,15,34807,NULL,'Output current','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010a4ciymkdpdmuy',1,'Admin',1672319394,'192.168.64.1',2,15,34805,NULL,'Output load','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010b4ciyh1u4s3vg',1,'Admin',1672319394,'192.168.64.1',2,15,34794,NULL,'Output status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010c4ciy4t2lng87',1,'Admin',1672319394,'192.168.64.1',2,15,34804,NULL,'Output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010d4ciylkspn141',1,'Admin',1672319394,'192.168.64.1',2,15,34803,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010e4ciyfqnsohlv',1,'Admin',1672319394,'192.168.64.1',2,15,34802,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010f4ciyp1xh8aok',1,'Admin',1672319394,'192.168.64.1',2,15,34801,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010g4ciyd8xl20s0',1,'Admin',1672319394,'192.168.64.1',2,15,43884,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010h4ciyaki1c63m',1,'Admin',1672319394,'192.168.64.1',2,15,34800,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010i4ciyzhlabynl',1,'Admin',1672319394,'192.168.64.1',2,15,34799,NULL,'Model','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010j4ciyfkkgrarl',1,'Admin',1672319394,'192.168.64.1',2,15,34798,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010k4ciy1t1moapx',1,'Admin',1672319394,'192.168.64.1',2,15,34795,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010l4ciyiuriwo1t',1,'Admin',1672319394,'192.168.64.1',2,15,34797,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010m4ciyi3zrq9is',1,'Admin',1672319394,'192.168.64.1',2,15,34796,NULL,'Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010n4ciypkcuhh9s',1,'Admin',1672319394,'192.168.64.1',2,15,34817,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010o4ciyjhldw2od',1,'Admin',1672319394,'192.168.64.1',2,15,34841,NULL,'Battery capacity','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010p4ciy40lg5nqq',1,'Admin',1672319394,'192.168.64.1',2,15,34854,NULL,'External battery packs count','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010q4ciydfm7h6dq',1,'Admin',1672319394,'192.168.64.1',2,15,34864,NULL,'Battery last replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010r4ciyazfi423w',1,'Admin',1672319394,'192.168.64.1',2,15,34863,NULL,'Battery replace indicator','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010s4ciyzdm9emlr',1,'Admin',1672319394,'192.168.64.1',2,15,34862,NULL,'Battery runtime remaining','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010t4ciyfv01yxv3',1,'Admin',1672319394,'192.168.64.1',2,15,34861,NULL,'Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010u4ciyulhe4nzb',1,'Admin',1672319394,'192.168.64.1',2,15,34860,NULL,'Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010v4ciycq3x1u5g',1,'Admin',1672319394,'192.168.64.1',2,15,34859,NULL,'Battery voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010w4ciy44xnns2s',1,'Admin',1672319394,'192.168.64.1',2,15,34858,NULL,'Input fail cause','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010x4ciydcnp2n0u',1,'Admin',1672319394,'192.168.64.1',2,15,34857,NULL,'Input frequency','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010y4ciyje69edgy',1,'Admin',1672319394,'192.168.64.1',2,15,34856,NULL,'Input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z010z4ciypvqq4yha',1,'Admin',1672319394,'192.168.64.1',2,15,34855,NULL,'Output current','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01104ciy2l568gk9',1,'Admin',1672319394,'192.168.64.1',2,15,34853,NULL,'Output load','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01114ciyi1dqax8f',1,'Admin',1672319394,'192.168.64.1',2,15,34842,NULL,'Output status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01124ciya8cj8ram',1,'Admin',1672319394,'192.168.64.1',2,15,34852,NULL,'Output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01134ciyt0nitw0t',1,'Admin',1672319394,'192.168.64.1',2,15,34851,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01144ciy0t0tw15k',1,'Admin',1672319394,'192.168.64.1',2,15,34850,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01154ciykxhq4k6z',1,'Admin',1672319394,'192.168.64.1',2,15,34849,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01164ciyd72xw3rq',1,'Admin',1672319394,'192.168.64.1',2,15,43885,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01174ciyl4l3icjd',1,'Admin',1672319394,'192.168.64.1',2,15,34848,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01184ciyxs01tp77',1,'Admin',1672319394,'192.168.64.1',2,15,34847,NULL,'Model','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01194ciybhdou35y',1,'Admin',1672319394,'192.168.64.1',2,15,34846,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011a4ciyp4gxwqvp',1,'Admin',1672319394,'192.168.64.1',2,15,34843,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011b4ciydpmplt4j',1,'Admin',1672319394,'192.168.64.1',2,15,34845,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011c4ciyvwk99prq',1,'Admin',1672319394,'192.168.64.1',2,15,34844,NULL,'Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011d4ciyagdr4fnc',1,'Admin',1672319394,'192.168.64.1',2,15,34865,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011e4ciyj5zjmecy',1,'Admin',1672319394,'192.168.64.1',2,15,34889,NULL,'Battery capacity','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011f4ciy99jvq8uw',1,'Admin',1672319394,'192.168.64.1',2,15,34902,NULL,'External battery packs count','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011g4ciy5voc042i',1,'Admin',1672319394,'192.168.64.1',2,15,34912,NULL,'Battery last replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011h4ciyb8do0rg4',1,'Admin',1672319394,'192.168.64.1',2,15,34911,NULL,'Battery replace indicator','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011i4ciyia74imwr',1,'Admin',1672319394,'192.168.64.1',2,15,34910,NULL,'Battery runtime remaining','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011j4ciysybh6aqy',1,'Admin',1672319394,'192.168.64.1',2,15,34909,NULL,'Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011k4ciyhejvbf46',1,'Admin',1672319394,'192.168.64.1',2,15,34908,NULL,'Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011l4ciyc0z9epgk',1,'Admin',1672319394,'192.168.64.1',2,15,34907,NULL,'Battery voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011m4ciycs4gbibu',1,'Admin',1672319394,'192.168.64.1',2,15,34906,NULL,'Input fail cause','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011n4ciyhd37gkbw',1,'Admin',1672319394,'192.168.64.1',2,15,34905,NULL,'Input frequency','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011o4ciy17wzvbly',1,'Admin',1672319394,'192.168.64.1',2,15,34904,NULL,'Input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011p4ciysubir4wi',1,'Admin',1672319394,'192.168.64.1',2,15,34903,NULL,'Output current','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011q4ciy32tiu4ex',1,'Admin',1672319394,'192.168.64.1',2,15,34901,NULL,'Output load','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011r4ciyrtlqs1fq',1,'Admin',1672319394,'192.168.64.1',2,15,34890,NULL,'Output status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011s4ciyg2vaovtu',1,'Admin',1672319394,'192.168.64.1',2,15,34900,NULL,'Output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011t4ciyifwrf1qz',1,'Admin',1672319394,'192.168.64.1',2,15,34899,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011u4ciyaubogcxf',1,'Admin',1672319394,'192.168.64.1',2,15,34898,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011v4ciy5qd1x4xe',1,'Admin',1672319394,'192.168.64.1',2,15,34897,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011w4ciy9w17qb12',1,'Admin',1672319394,'192.168.64.1',2,15,43886,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011x4ciyy42s9tk5',1,'Admin',1672319394,'192.168.64.1',2,15,34896,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011y4ciyzu2yv34n',1,'Admin',1672319394,'192.168.64.1',2,15,34895,NULL,'Model','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z011z4ciy4uujqdha',1,'Admin',1672319394,'192.168.64.1',2,15,34894,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01204ciyzq5te109',1,'Admin',1672319394,'192.168.64.1',2,15,34891,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01214ciyjv6jcb2l',1,'Admin',1672319394,'192.168.64.1',2,15,34893,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01224ciy9w4xmllm',1,'Admin',1672319394,'192.168.64.1',2,15,34892,NULL,'Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01234ciy8xutq61u',1,'Admin',1672319394,'192.168.64.1',2,15,34913,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01244ciyngnltnd7',1,'Admin',1672319394,'192.168.64.1',2,15,35016,NULL,'Battery capacity','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01254ciyg5szucfo',1,'Admin',1672319394,'192.168.64.1',2,15,35029,NULL,'External battery packs count','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01264ciyqoof05om',1,'Admin',1672319394,'192.168.64.1',2,15,35039,NULL,'Battery last replace date','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01274ciytx2zaj3s',1,'Admin',1672319394,'192.168.64.1',2,15,35038,NULL,'Battery replace indicator','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01284ciyarrth0gp',1,'Admin',1672319394,'192.168.64.1',2,15,35037,NULL,'Battery runtime remaining','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01294ciylq2uecif',1,'Admin',1672319394,'192.168.64.1',2,15,35036,NULL,'Battery status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012a4ciy76qmt208',1,'Admin',1672319394,'192.168.64.1',2,15,35035,NULL,'Battery temperature','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012b4ciy8ixtfsea',1,'Admin',1672319394,'192.168.64.1',2,15,35034,NULL,'Battery voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012c4ciyrrrinxfs',1,'Admin',1672319394,'192.168.64.1',2,15,35033,NULL,'Input fail cause','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012d4ciyv1ubq5qz',1,'Admin',1672319394,'192.168.64.1',2,15,35032,NULL,'Input frequency','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012e4ciy2shqsflp',1,'Admin',1672319394,'192.168.64.1',2,15,35031,NULL,'Input voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012f4ciyc5n1bpoj',1,'Admin',1672319394,'192.168.64.1',2,15,35030,NULL,'Output current','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012g4ciya8o28jq1',1,'Admin',1672319394,'192.168.64.1',2,15,35028,NULL,'Output load','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012h4ciypgx2sgoq',1,'Admin',1672319394,'192.168.64.1',2,15,35017,NULL,'Output status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012i4ciyg5oynxly',1,'Admin',1672319394,'192.168.64.1',2,15,35027,NULL,'Output voltage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012j4ciyl0bga2f0',1,'Admin',1672319394,'192.168.64.1',2,15,35026,NULL,'SNMP traps (fallback)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012k4ciy912tic9f',1,'Admin',1672319394,'192.168.64.1',2,15,35025,NULL,'System contact details','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012l4ciy7o0kxh8h',1,'Admin',1672319394,'192.168.64.1',2,15,35024,NULL,'System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012m4ciyhqgyssmn',1,'Admin',1672319394,'192.168.64.1',2,15,43881,NULL,'Uptime (hardware)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012n4ciy8trqe14m',1,'Admin',1672319394,'192.168.64.1',2,15,35023,NULL,'System location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012o4ciyfuj0pv8r',1,'Admin',1672319394,'192.168.64.1',2,15,35022,NULL,'Model','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012p4ciyzowdqh3m',1,'Admin',1672319394,'192.168.64.1',2,15,35021,NULL,'System name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012q4ciyoyzm6sqj',1,'Admin',1672319394,'192.168.64.1',2,15,35018,NULL,'Uptime (network)','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012r4ciy12vjnl7v',1,'Admin',1672319394,'192.168.64.1',2,15,35020,NULL,'System object ID','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012s4ciy98ye2onz',1,'Admin',1672319394,'192.168.64.1',2,15,35019,NULL,'Serial number','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012t4ciyux9f8sbs',1,'Admin',1672319394,'192.168.64.1',2,15,35040,NULL,'SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012u4ciyktz29wgt',1,'Admin',1672319394,'192.168.64.1',2,15,35358,NULL,'Cisco ASAv: Contact','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012v4ciylffd8vgr',1,'Admin',1672319394,'192.168.64.1',2,15,35359,NULL,'Cisco ASAv: Location','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012w4ciy2lpagyze',1,'Admin',1672319394,'192.168.64.1',2,15,35360,NULL,'Cisco ASAv: System description','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012x4ciywqzkmmmo',1,'Admin',1672319394,'192.168.64.1',2,15,35361,NULL,'Cisco ASAv: Host name','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012y4ciynfc9v8j2',1,'Admin',1672319394,'192.168.64.1',2,15,35362,NULL,'Cisco ASAv: Uptime','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z012z4ciyw5rdz0y9',1,'Admin',1672319394,'192.168.64.1',2,15,35363,NULL,'Cisco ASAv: SNMP agent availability','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01304ciy1ii3vfyl',1,'Admin',1672319394,'192.168.64.1',2,15,43500,NULL,'AWS EC2: Get alarms check','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01314ciyqbm94caa',1,'Admin',1672319394,'192.168.64.1',2,15,43512,NULL,'AWS EC2: Credit CPU: Balance','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01324ciy7sdxt7ly',1,'Admin',1672319394,'192.168.64.1',2,15,43524,NULL,'AWS EC2: Credit CPU: Usage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01334ciy55k26ulu',1,'Admin',1672319394,'192.168.64.1',2,15,43523,NULL,'AWS EC2: Credit CPU: Surplus balance','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01344ciyrx4pb1kj',1,'Admin',1672319394,'192.168.64.1',2,15,43522,NULL,'AWS EC2: Credit CPU: Surplus charged','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01354ciyl4k0mjjh',1,'Admin',1672319394,'192.168.64.1',2,15,43521,NULL,'AWS EC2: CPU: Utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01364ciysqcu5hjf',1,'Admin',1672319394,'192.168.64.1',2,15,43520,NULL,'AWS EC2: Disk: Read bytes, rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01374ciyv76qak60',1,'Admin',1672319394,'192.168.64.1',2,15,43519,NULL,'AWS EC2: Disk: Read, rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01384ciynxws32ep',1,'Admin',1672319394,'192.168.64.1',2,15,43518,NULL,'AWS EC2: Disk: Write bytes, rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01394ciyx4tcry98',1,'Admin',1672319394,'192.168.64.1',2,15,43517,NULL,'AWS EC2: Disk: Write ops, rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013a4ciy68ogctxa',1,'Admin',1672319394,'192.168.64.1',2,15,43516,NULL,'AWS EC2: EBS: Byte balance','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013b4ciyyqhzpqx0',1,'Admin',1672319394,'192.168.64.1',2,15,43515,NULL,'AWS EC2: EBS: IO balance','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013c4ciygerywtc4',1,'Admin',1672319394,'192.168.64.1',2,15,43514,NULL,'AWS EC2: EBS: Read bytes, rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013d4ciy6bosdszp',1,'Admin',1672319394,'192.168.64.1',2,15,43513,NULL,'AWS EC2: EBS: Read, rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013e4ciyb1637mwe',1,'Admin',1672319394,'192.168.64.1',2,15,43511,NULL,'AWS EC2: EBS: Write bytes, rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013f4ciy8ntlfnav',1,'Admin',1672319394,'192.168.64.1',2,15,43501,NULL,'AWS EC2: EBS: Write, rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013g4ciy1ngypq1z',1,'Admin',1672319394,'192.168.64.1',2,15,43499,NULL,'AWS CloudWatch: Get instance alarms data','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013h4ciyu64czx5c',1,'Admin',1672319394,'192.168.64.1',2,15,43497,NULL,'AWS EC2: Get metrics data','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013i4ciymzn2pc4p',1,'Admin',1672319394,'192.168.64.1',2,15,43498,NULL,'AWS EBS: Get volumes data','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013j4ciy8nq8reo5',1,'Admin',1672319394,'192.168.64.1',2,15,43510,NULL,'AWS EC2: Metadata: No token','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013k4ciyy3ivy87o',1,'Admin',1672319394,'192.168.64.1',2,15,43509,NULL,'AWS EC2: Get metrics check','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013l4ciyeqckqe7r',1,'Admin',1672319394,'192.168.64.1',2,15,43508,NULL,'AWS EC2: Network: Bytes in, rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013m4ciyazmcmk92',1,'Admin',1672319394,'192.168.64.1',2,15,43507,NULL,'AWS EC2: Network: Bytes out, rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013n4ciyvan4ir8t',1,'Admin',1672319394,'192.168.64.1',2,15,43506,NULL,'AWS EC2: Network: Packets in, rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013o4ciy2jimox21',1,'Admin',1672319394,'192.168.64.1',2,15,43505,NULL,'AWS EC2: Network: Packets out, rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013p4ciycn7nqnjc',1,'Admin',1672319394,'192.168.64.1',2,15,43504,NULL,'AWS EC2: Status: Check failed','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013q4ciyygd3lz8a',1,'Admin',1672319394,'192.168.64.1',2,15,43503,NULL,'AWS EC2: Status: Check failed, instance','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013r4ciyeb4o2h7f',1,'Admin',1672319394,'192.168.64.1',2,15,43502,NULL,'AWS EC2: Status: Check failed, system','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013s4ciy9u6rpqy6',1,'Admin',1672319394,'192.168.64.1',2,15,43525,NULL,'AWS EC2: Get volumes info check','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013t4ciyd2czf2ef',1,'Admin',1672319394,'192.168.64.1',2,15,43596,NULL,'AWS RDS: Get alarms check','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013u4ciyk2h480ec',1,'Admin',1672319394,'192.168.64.1',2,15,43640,NULL,'AWS RDS: Disk: Binlog Usage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013v4ciycozbv9tb',1,'Admin',1672319394,'192.168.64.1',2,15,43621,NULL,'AWS RDS: Burst balance','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013w4ciy76hmpdq1',1,'Admin',1672319394,'192.168.64.1',2,15,43622,NULL,'AWS RDS: Class','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013x4ciyjt51cbjc',1,'Admin',1672319394,'192.168.64.1',2,15,43623,NULL,'AWS RDS: Credit CPU: Balance','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013y4ciy2izf0s99',1,'Admin',1672319394,'192.168.64.1',2,15,43624,NULL,'AWS RDS: Credit CPU: Usage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z013z4ciy9v6eh35a',1,'Admin',1672319394,'192.168.64.1',2,15,43625,NULL,'AWS RDS: CPU: Utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01404ciy9vzw76hs',1,'Admin',1672319394,'192.168.64.1',2,15,43626,NULL,'AWS RDS: Create time','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01414ciy4q0zslfs',1,'Admin',1672319394,'192.168.64.1',2,15,43627,NULL,'AWS RDS: Connections','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01424ciybh4k9evj',1,'Admin',1672319394,'192.168.64.1',2,15,43628,NULL,'AWS RDS: Disk: Queue depth','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01434ciyj8953diz',1,'Admin',1672319394,'192.168.64.1',2,15,43629,NULL,'AWS RDS: EBS: Byte balance','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01444ciyopbezeco',1,'Admin',1672319394,'192.168.64.1',2,15,43620,NULL,'AWS RDS: EBS: IO balance','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01454ciyhanhtzih',1,'Admin',1672319394,'192.168.64.1',2,15,43630,NULL,'AWS RDS: Engine','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01464ciy8jsqhevk',1,'Admin',1672319394,'192.168.64.1',2,15,43632,NULL,'AWS RDS: Engine version','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01474ciy6vm8ao0d',1,'Admin',1672319394,'192.168.64.1',2,15,43633,NULL,'AWS RDS: Get events check','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01484ciyncyquu3k',1,'Admin',1672319394,'192.168.64.1',2,15,43634,NULL,'AWS RDS: SQLServer: Failed agent jobs','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01494ciy7i2q43da',1,'Admin',1672319394,'192.168.64.1',2,15,43636,NULL,'AWS RDS: Storage: Local free','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014a4ciy81n6hpru',1,'Admin',1672319394,'192.168.64.1',2,15,43637,NULL,'AWS RDS: Storage: Space free','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014b4ciy70r7wr9q',1,'Admin',1672319394,'192.168.64.1',2,15,43635,NULL,'AWS RDS: Memory, freeable','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014c4ciy7y2izdo6',1,'Admin',1672319394,'192.168.64.1',2,15,43595,NULL,'AWS CloudWatch: Get instance alarms data','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014d4ciyepvo5l1s',1,'Admin',1672319394,'192.168.64.1',2,15,43594,NULL,'AWS RDS: Get instance events data','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014e4ciymhxub9kx',1,'Admin',1672319394,'192.168.64.1',2,15,43593,NULL,'AWS RDS: Get instance info','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014f4ciykgt7guyg',1,'Admin',1672319394,'192.168.64.1',2,15,43592,NULL,'AWS RDS: Get metrics data','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014g4ciyxs70zd5c',1,'Admin',1672319394,'192.168.64.1',2,15,43638,NULL,'AWS RDS: Get instance info check','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014h4ciy3inkunt6',1,'Admin',1672319394,'192.168.64.1',2,15,43639,NULL,'AWS RDS: Get metrics check','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014i4ciyk9iao1xl',1,'Admin',1672319394,'192.168.64.1',2,15,43618,NULL,'AWS RDS: Network: Receive throughput','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014j4ciy26vhy8el',1,'Admin',1672319394,'192.168.64.1',2,15,43631,NULL,'AWS RDS: Network: Throughput','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014k4ciyks2q5u5s',1,'Admin',1672319394,'192.168.64.1',2,15,43619,NULL,'AWS RDS: Network: Transmit throughput','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014l4ciyn49oqqtz',1,'Admin',1672319394,'192.168.64.1',2,15,43605,NULL,'AWS RDS: Disk: Read IOPS','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014m4ciyo5asbsyn',1,'Admin',1672319394,'192.168.64.1',2,15,43617,NULL,'AWS RDS: Disk: Read IOPS, local storage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014n4ciyovk3l54r',1,'Admin',1672319394,'192.168.64.1',2,15,43598,NULL,'AWS RDS: Disk: Read latency','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014o4ciyo8tnd10j',1,'Admin',1672319394,'192.168.64.1',2,15,43599,NULL,'AWS RDS: Disk: Read latency, local storage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014p4ciyfdzf05q2',1,'Admin',1672319394,'192.168.64.1',2,15,43600,NULL,'AWS RDS: Read replica: State','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014q4ciy14h99zmd',1,'Admin',1672319394,'192.168.64.1',2,15,43601,NULL,'AWS RDS: Read replica: Status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014r4ciy93tf345r',1,'Admin',1672319394,'192.168.64.1',2,15,43602,NULL,'AWS RDS: Disk: Read throughput','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014s4ciyv8omdvs4',1,'Admin',1672319394,'192.168.64.1',2,15,43603,NULL,'AWS RDS: Disk: Read throughput, local storage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014t4ciygsly1yrj',1,'Admin',1672319394,'192.168.64.1',2,15,43597,NULL,'AWS RDS: Replication: Lag','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014u4ciygko5pk5h',1,'Admin',1672319394,'192.168.64.1',2,15,43604,NULL,'AWS RDS: Status','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014v4ciyilkjo1ef',1,'Admin',1672319394,'192.168.64.1',2,15,43606,NULL,'AWS RDS: Storage: Allocated','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014w4ciya4t8dcrw',1,'Admin',1672319394,'192.168.64.1',2,15,43607,NULL,'AWS RDS: Storage: Max allocated','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014x4ciy6dpbncda',1,'Admin',1672319394,'192.168.64.1',2,15,43608,NULL,'AWS RDS: Network: Receive throughput','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014y4ciybwzvk38d',1,'Admin',1672319394,'192.168.64.1',2,15,43609,NULL,'AWS RDS: Network: Transmit throughput','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z014z4ciyswi96a5o',1,'Admin',1672319394,'192.168.64.1',2,15,43610,NULL,'AWS RDS: Storage type','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01504ciyv2j3zief',1,'Admin',1672319394,'192.168.64.1',2,15,43611,NULL,'AWS RDS: Swap usage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01514ciyb1wz5hr1',1,'Admin',1672319394,'192.168.64.1',2,15,43612,NULL,'AWS RDS: Disk: Write IOPS','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01524ciyxk6hg14w',1,'Admin',1672319394,'192.168.64.1',2,15,43613,NULL,'AWS RDS: Disk: Write IOPS, local storage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01534ciyeyomyrxu',1,'Admin',1672319394,'192.168.64.1',2,15,43614,NULL,'AWS RDS: Disk: Write latency','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01544ciypy5asf7k',1,'Admin',1672319394,'192.168.64.1',2,15,43615,NULL,'AWS RDS: Disk: Write latency, local storage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01554ciyvspi34vs',1,'Admin',1672319394,'192.168.64.1',2,15,43616,NULL,'AWS RDS: Disk: Write throughput','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01564ciyd7b1nmns',1,'Admin',1672319394,'192.168.64.1',2,15,43641,NULL,'AWS RDS: Disk: Write throughput, local storage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01574ciy0ok1tmbm',1,'Admin',1672319394,'192.168.64.1',2,15,43686,NULL,'AWS S3: Requests: Errors, 4xx','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01584ciy8k2ed7vy',1,'Admin',1672319394,'192.168.64.1',2,15,43700,NULL,'AWS S3: Requests: Errors, 5xx','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01594ciy9d1n1gvs',1,'Admin',1672319394,'192.168.64.1',2,15,43709,NULL,'AWS S3: Get alarms check','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015a4ciya9rjtqt6',1,'Admin',1672319394,'192.168.64.1',2,15,43708,NULL,'AWS S3: Requests: All','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015b4ciyot308jgq',1,'Admin',1672319394,'192.168.64.1',2,15,43707,NULL,'AWS S3: Bucket Size','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015c4ciyaeglreor',1,'Admin',1672319394,'192.168.64.1',2,15,43706,NULL,'AWS S3: Requests: Bytes downloaded','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015d4ciyeg0e750d',1,'Admin',1672319394,'192.168.64.1',2,15,43705,NULL,'AWS S3: Replication: Bytes pending','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015e4ciyryww4kiz',1,'Admin',1672319394,'192.168.64.1',2,15,43704,NULL,'AWS S3: Requests: Bytes uploaded','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015f4ciyuhs9qj1g',1,'Admin',1672319394,'192.168.64.1',2,15,43703,NULL,'AWS S3: Requests: Delete','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015g4ciyexzazfww',1,'Admin',1672319394,'192.168.64.1',2,15,43702,NULL,'AWS S3: First byte latency, avg','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015h4ciyfzw24oye',1,'Admin',1672319394,'192.168.64.1',2,15,43701,NULL,'AWS S3: First byte latency, p90','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015i4ciyfdkkjgdw',1,'Admin',1672319394,'192.168.64.1',2,15,43685,NULL,'AWS S3: Get alarms data','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015j4ciydockoaj7',1,'Admin',1672319394,'192.168.64.1',2,15,43684,NULL,'AWS S3: Get metrics data','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015k4ciy4tq1vhbh',1,'Admin',1672319394,'192.168.64.1',2,15,43698,NULL,'AWS S3: Requests: Get','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015l4ciyj6ekirdq',1,'Admin',1672319394,'192.168.64.1',2,15,43699,NULL,'AWS S3: Requests: Head','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015m4ciyvx349pnl',1,'Admin',1672319394,'192.168.64.1',2,15,43687,NULL,'AWS S3: Requests: List','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015n4ciyrmru2gyx',1,'Admin',1672319394,'192.168.64.1',2,15,43697,NULL,'AWS S3: Get metrics check','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015o4ciyubi7d0te',1,'Admin',1672319394,'192.168.64.1',2,15,43696,NULL,'AWS S3: Number of objects','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015p4ciyfn0fagdv',1,'Admin',1672319394,'192.168.64.1',2,15,43695,NULL,'AWS S3: Replication: Operations pending','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015q4ciy3t38l7mf',1,'Admin',1672319394,'192.168.64.1',2,15,43694,NULL,'AWS S3: Requests: Post','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015r4ciyc891guno',1,'Admin',1672319394,'192.168.64.1',2,15,43693,NULL,'AWS S3: Requests: Put','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015s4ciyll0vucbz',1,'Admin',1672319394,'192.168.64.1',2,15,43692,NULL,'AWS S3: Replication: Latency','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015t4ciy1tymz7gw',1,'Admin',1672319394,'192.168.64.1',2,15,43691,NULL,'AWS S3: Requests: Select, bytes returned','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015u4ciy78qy3e1g',1,'Admin',1672319394,'192.168.64.1',2,15,43690,NULL,'AWS S3: Requests: Select, bytes scanned','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015v4ciycv3n1eqr',1,'Admin',1672319394,'192.168.64.1',2,15,43689,NULL,'AWS S3: Requests: Select','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015w4ciyexw8yfz6',1,'Admin',1672319394,'192.168.64.1',2,15,43688,NULL,'AWS S3: Total request latency, avg','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015x4ciy6pmtwphs',1,'Admin',1672319394,'192.168.64.1',2,15,43710,NULL,'AWS S3: Total request latency, p90','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015y4ciycu1xqjzv',1,'Admin',1672319394,'192.168.64.1',2,15,43716,NULL,'Azure: Get errors','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z015z4ciyryi7dm7p',1,'Admin',1672319394,'192.168.64.1',2,15,43714,NULL,'Azure: Get resources','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01604ciyxolsepfk',1,'Admin',1672319394,'192.168.64.1',2,15,43717,NULL,'Azure: Availability status detailed','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01614ciyz4ukl6sd',1,'Admin',1672319394,'192.168.64.1',2,15,43743,NULL,'Azure: Availability state','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01624ciymtrp55kf',1,'Admin',1672319394,'192.168.64.1',2,15,43745,NULL,'Azure: VM cached bandwidth consumed percentage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01634ciy1wmscz0c',1,'Admin',1672319394,'192.168.64.1',2,15,43746,NULL,'Azure: VM cached IOPS consumed percentage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01644ciyuzba189v',1,'Admin',1672319394,'192.168.64.1',2,15,43747,NULL,'Azure: CPU credits consumed','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01654ciy0g2nfz17',1,'Admin',1672319394,'192.168.64.1',2,15,43748,NULL,'Azure: CPU credits remaining','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01664ciymzolyhix',1,'Admin',1672319394,'192.168.64.1',2,15,43749,NULL,'Azure: Percentage CPU','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01674ciyylm9ktpl',1,'Admin',1672319394,'192.168.64.1',2,15,43750,NULL,'Azure: Data disk bandwidth consumed percentage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01684ciyjgxybkki',1,'Admin',1672319394,'192.168.64.1',2,15,43751,NULL,'Azure: Data disk IOPS consumed percentage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01694ciy66jyswmp',1,'Admin',1672319394,'192.168.64.1',2,15,43752,NULL,'Azure: Data disk max burst bandwidth','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016a4ciyv9bwhdb8',1,'Admin',1672319394,'192.168.64.1',2,15,43753,NULL,'Azure: Data disk max burst IOPS','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016b4ciyss70iz2i',1,'Admin',1672319394,'192.168.64.1',2,15,43754,NULL,'Azure: Data disk queue depth','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016c4ciylwhlu5eb',1,'Admin',1672319394,'192.168.64.1',2,15,43744,NULL,'Azure: Data disk read rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016d4ciyi4l8yrqy',1,'Admin',1672319394,'192.168.64.1',2,15,43755,NULL,'Azure: Data disk read operations/sec','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016e4ciyxwst7hqy',1,'Admin',1672319394,'192.168.64.1',2,15,43757,NULL,'Azure: Data disk target bandwidth','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016f4ciydxrpvn73',1,'Admin',1672319394,'192.168.64.1',2,15,43758,NULL,'Azure: Data disk target IOPS','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016g4ciy842wdqwr',1,'Admin',1672319394,'192.168.64.1',2,15,43759,NULL,'Azure: Data disk used burst BPS credits percentage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016h4ciyptcqnudn',1,'Admin',1672319394,'192.168.64.1',2,15,43760,NULL,'Azure: Data disk used burst IO credits percentage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016i4ciyv0bh76fa',1,'Admin',1672319394,'192.168.64.1',2,15,43761,NULL,'Azure: Data disk write rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016j4ciyvw9vf2ts',1,'Admin',1672319394,'192.168.64.1',2,15,43762,NULL,'Azure: Data disk write operations/sec','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016k4ciya6ohdpjv',1,'Admin',1672319394,'192.168.64.1',2,15,43763,NULL,'Azure: Get errors','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016l4ciy87s4moot',1,'Admin',1672319394,'192.168.64.1',2,15,43715,NULL,'Azure: Get data','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016m4ciy6fzuexlm',1,'Admin',1672319394,'192.168.64.1',2,15,43764,NULL,'Azure: Disk read rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016n4ciyj7t7f7fa',1,'Admin',1672319394,'192.168.64.1',2,15,43765,NULL,'Azure: Disk read Operations/Sec','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016o4ciyxuvfig58',1,'Admin',1672319394,'192.168.64.1',2,15,43766,NULL,'Azure: Disk write rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016p4ciy30ifz0c0',1,'Admin',1672319394,'192.168.64.1',2,15,43756,NULL,'Azure: Disk write Operations/Sec','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016q4ciyqfajjkay',1,'Admin',1672319394,'192.168.64.1',2,15,43742,NULL,'Azure: Inbound flows','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016r4ciy1numn317',1,'Admin',1672319394,'192.168.64.1',2,15,43729,NULL,'Azure: Inbound flows max creation rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016s4ciy2eqzm44f',1,'Admin',1672319394,'192.168.64.1',2,15,43741,NULL,'Azure: Outbound flows','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016t4ciyzbglba7z',1,'Admin',1672319394,'192.168.64.1',2,15,43719,NULL,'Azure: Outbound flows max creation rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016u4ciy1que0nfa',1,'Admin',1672319394,'192.168.64.1',2,15,43720,NULL,'Azure: Available memory','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016v4ciy6akpqyth',1,'Admin',1672319394,'192.168.64.1',2,15,43721,NULL,'Azure: Network in total','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016w4ciy13v8s598',1,'Admin',1672319394,'192.168.64.1',2,15,43722,NULL,'Azure: Network out total','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016x4ciylxxdp5cj',1,'Admin',1672319394,'192.168.64.1',2,15,43723,NULL,'Azure: OS disk bandwidth consumed percentage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016y4ciy9a9p5x1i',1,'Admin',1672319394,'192.168.64.1',2,15,43724,NULL,'Azure: OS disk IOPS consumed percentage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z016z4ciydchf8x44',1,'Admin',1672319394,'192.168.64.1',2,15,43725,NULL,'Azure: OS disk max burst bandwidth','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01704ciyr4yc3b4h',1,'Admin',1672319394,'192.168.64.1',2,15,43726,NULL,'Azure: OS disk max burst IOPS','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01714ciyb0gtpd5t',1,'Admin',1672319394,'192.168.64.1',2,15,43727,NULL,'Azure: OS disk queue depth','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01724ciykqoio1om',1,'Admin',1672319394,'192.168.64.1',2,15,43718,NULL,'Azure: OS disk read rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01734ciy6efijpvl',1,'Admin',1672319394,'192.168.64.1',2,15,43728,NULL,'Azure: OS disk read operations/sec','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01744ciyxst71mkk',1,'Admin',1672319394,'192.168.64.1',2,15,43730,NULL,'Azure: OS disk target bandwidth','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01754ciyz3l40lq6',1,'Admin',1672319394,'192.168.64.1',2,15,43731,NULL,'Azure: OS disk target IOPS','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01764ciywrlcfgmf',1,'Admin',1672319394,'192.168.64.1',2,15,43732,NULL,'Azure: OS disk used burst BPS credits percentage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01774ciylh5pvdx3',1,'Admin',1672319394,'192.168.64.1',2,15,43733,NULL,'Azure: OS disk used burst IO credits percentage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01784ciyuzzk8bxk',1,'Admin',1672319394,'192.168.64.1',2,15,43734,NULL,'Azure: OS disk write rate','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01794ciy8dxottjg',1,'Admin',1672319394,'192.168.64.1',2,15,43735,NULL,'Azure: OS disk write operations/sec','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017a4ciyd1ofkyr2',1,'Admin',1672319394,'192.168.64.1',2,15,43736,NULL,'Azure: Premium data disk cache read hit','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017b4ciy799r1s73',1,'Admin',1672319394,'192.168.64.1',2,15,43737,NULL,'Azure: Premium data disk cache read miss','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017c4ciycron16jn',1,'Admin',1672319394,'192.168.64.1',2,15,43738,NULL,'Azure: Premium OS disk cache read hit','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017d4ciykmf4zgot',1,'Admin',1672319394,'192.168.64.1',2,15,43739,NULL,'Azure: Premium OS disk cache read miss','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017e4ciy57nuxgh4',1,'Admin',1672319394,'192.168.64.1',2,15,43740,NULL,'Azure: VM uncached bandwidth consumed percentage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017f4ciy6t9j86bn',1,'Admin',1672319394,'192.168.64.1',2,15,43767,NULL,'Azure: VM uncached IOPS consumed percentage','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017g4ciy593trg49',1,'Admin',1672319394,'192.168.64.1',2,15,44163,NULL,'Azure MySQL: Availability status detailed','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017h4ciyq7lqr27l',1,'Admin',1672319394,'192.168.64.1',2,15,44173,NULL,'Azure MySQL: Availability state','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017i4ciyizhlvf81',1,'Admin',1672319394,'192.168.64.1',2,15,44180,NULL,'Azure MySQL: Connections aborted','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017j4ciybp83y0mo',1,'Admin',1672319394,'192.168.64.1',2,15,44179,NULL,'Azure MySQL: Connections active','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017k4ciywmwtg9gf',1,'Admin',1672319394,'192.168.64.1',2,15,44178,NULL,'Azure MySQL: Connections total','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017l4ciypki6c5hu',1,'Admin',1672319394,'192.168.64.1',2,15,44177,NULL,'Azure MySQL: CPU credits consumed','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017m4ciy02v9lzun',1,'Admin',1672319394,'192.168.64.1',2,15,44176,NULL,'Azure MySQL: CPU credits remaining','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017n4ciyzc9cbsim',1,'Admin',1672319394,'192.168.64.1',2,15,44175,NULL,'Azure MySQL: Percentage CPU','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017o4ciysnyvaj4w',1,'Admin',1672319394,'192.168.64.1',2,15,44174,NULL,'Azure MySQL: Get errors','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017p4ciy6u2s5b23',1,'Admin',1672319394,'192.168.64.1',2,15,44161,NULL,'Azure MySQL: Get data','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017q4ciyymocvjg4',1,'Admin',1672319394,'192.168.64.1',2,15,44172,NULL,'Azure MySQL: IO consumption percent','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017r4ciyzo0g64rv',1,'Admin',1672319394,'192.168.64.1',2,15,44164,NULL,'Azure MySQL: Memory utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017s4ciyi9a5z6vp',1,'Admin',1672319394,'192.168.64.1',2,15,44171,NULL,'Azure MySQL: Network out','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017t4ciycvhsuwre',1,'Admin',1672319394,'192.168.64.1',2,15,44170,NULL,'Azure MySQL: Network in','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017u4ciyteg1hdos',1,'Admin',1672319394,'192.168.64.1',2,15,44169,NULL,'Azure MySQL: Queries','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017v4ciyomodilfr',1,'Admin',1672319394,'192.168.64.1',2,15,44168,NULL,'Azure MySQL: Replication lag','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017w4ciyw32rl29l',1,'Admin',1672319394,'192.168.64.1',2,15,44167,NULL,'Azure MySQL: Backup storage used','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017x4ciymxd8819a',1,'Admin',1672319394,'192.168.64.1',2,15,44166,NULL,'Azure MySQL: Storage limit','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017y4ciydnx5wq2s',1,'Admin',1672319394,'192.168.64.1',2,15,44165,NULL,'Azure MySQL: Storage percent','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z017z4ciycdgdjil3',1,'Admin',1672319394,'192.168.64.1',2,15,44181,NULL,'Azure MySQL: Storage used','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01804ciyja1bjyzs',1,'Admin',1672319394,'192.168.64.1',2,15,44182,NULL,'Azure MySQL: Availability status detailed','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01814ciyyg0i0qeg',1,'Admin',1672319394,'192.168.64.1',2,15,44192,NULL,'Azure MySQL: Availability state','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01824ciyjvrf932r',1,'Admin',1672319394,'192.168.64.1',2,15,44198,NULL,'Azure MySQL: Connections active','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01834ciynt47f6zl',1,'Admin',1672319394,'192.168.64.1',2,15,44197,NULL,'Azure MySQL: Connections failed','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01844ciyvr252fn9',1,'Admin',1672319394,'192.168.64.1',2,15,44196,NULL,'Azure MySQL: Percentage CPU','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01854ciyy2f1acf8',1,'Admin',1672319394,'192.168.64.1',2,15,44195,NULL,'Azure MySQL: Get errors','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01864ciy189qgp28',1,'Admin',1672319394,'192.168.64.1',2,15,44162,NULL,'Azure MySQL: Get data','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01874ciyme46miim',1,'Admin',1672319394,'192.168.64.1',2,15,44194,NULL,'Azure MySQL: IO consumption percent','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01884ciyz9bdg19w',1,'Admin',1672319394,'192.168.64.1',2,15,44193,NULL,'Azure MySQL: Memory utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01894ciyx9rqxxri',1,'Admin',1672319394,'192.168.64.1',2,15,44190,NULL,'Azure MySQL: Network out','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018a4ciy4d1l3gzn',1,'Admin',1672319394,'192.168.64.1',2,15,44191,NULL,'Azure MySQL: Network in','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018b4ciytq6l5chk',1,'Admin',1672319394,'192.168.64.1',2,15,44183,NULL,'Azure MySQL: Replication lag','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018c4ciy97vha8cr',1,'Admin',1672319394,'192.168.64.1',2,15,44189,NULL,'Azure MySQL: Backup storage used','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018d4ciytamwoyiq',1,'Admin',1672319394,'192.168.64.1',2,15,44188,NULL,'Azure MySQL: Storage limit','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018e4ciyv3mlex80',1,'Admin',1672319394,'192.168.64.1',2,15,44187,NULL,'Azure MySQL: Storage percent','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018f4ciyl6ac71p3',1,'Admin',1672319394,'192.168.64.1',2,15,44186,NULL,'Azure MySQL: Server log storage limit','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018g4ciyut4fj6vz',1,'Admin',1672319394,'192.168.64.1',2,15,44185,NULL,'Azure MySQL: Server log storage percent','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018h4ciy0zewbvvq',1,'Admin',1672319394,'192.168.64.1',2,15,44184,NULL,'Azure MySQL: Server log storage used','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018i4ciy6sag2mfc',1,'Admin',1672319394,'192.168.64.1',2,15,44199,NULL,'Azure MySQL: Storage used','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018j4ciy2x27054u',1,'Admin',1672319394,'192.168.64.1',2,15,44250,NULL,'Azure PostgreSQL: Availability status detailed','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018k4ciy6gi89rss',1,'Admin',1672319394,'192.168.64.1',2,15,44263,NULL,'Azure PostgreSQL: Availability state','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018l4ciygjhhe4gs',1,'Admin',1672319394,'192.168.64.1',2,15,44272,NULL,'Azure PostgreSQL: Connections active','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018m4ciy129i0nud',1,'Admin',1672319394,'192.168.64.1',2,15,44271,NULL,'Azure PostgreSQL: Connections failed','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018n4ciyxfazey3g',1,'Admin',1672319394,'192.168.64.1',2,15,44270,NULL,'Azure PostgreSQL: Connections succeeded','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018o4ciyqwc71r9e',1,'Admin',1672319394,'192.168.64.1',2,15,44269,NULL,'Azure PostgreSQL: CPU credits consumed','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018p4ciyhsv79hur',1,'Admin',1672319394,'192.168.64.1',2,15,44268,NULL,'Azure PostgreSQL: CPU credits remaining','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018q4ciyos7dao2t',1,'Admin',1672319394,'192.168.64.1',2,15,44267,NULL,'Azure PostgreSQL: Percentage CPU','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018r4ciy0d0w1dzw',1,'Admin',1672319394,'192.168.64.1',2,15,44266,NULL,'Azure PostgreSQL: Get errors','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018s4ciy9ka8b6yd',1,'Admin',1672319394,'192.168.64.1',2,15,44248,NULL,'Azure PostgreSQL: Get data','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018t4ciyi8nsh203',1,'Admin',1672319394,'192.168.64.1',2,15,44265,NULL,'Azure PostgreSQL: Data disk read Bps','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018u4ciyrgck09u6',1,'Admin',1672319394,'192.168.64.1',2,15,44264,NULL,'Azure PostgreSQL: Data disk write Bps','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018v4ciy8yy7gfrc',1,'Admin',1672319394,'192.168.64.1',2,15,44261,NULL,'Azure PostgreSQL: Data disk queue depth','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018w4ciyfy1se437',1,'Admin',1672319394,'192.168.64.1',2,15,44262,NULL,'Azure PostgreSQL: Data disk IOPS','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018x4ciykty5mru1',1,'Admin',1672319394,'192.168.64.1',2,15,44251,NULL,'Azure PostgreSQL: Data disk read IOPS','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018y4ciy8beslnsf',1,'Admin',1672319394,'192.168.64.1',2,15,44260,NULL,'Azure PostgreSQL: Data disk write IOPS','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z018z4ciyknx2k49b',1,'Admin',1672319394,'192.168.64.1',2,15,44259,NULL,'Azure PostgreSQL: Memory utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01904ciynz8pj7h6',1,'Admin',1672319394,'192.168.64.1',2,15,44258,NULL,'Azure PostgreSQL: Network out','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01914ciy3c8m98ws',1,'Admin',1672319394,'192.168.64.1',2,15,44257,NULL,'Azure PostgreSQL: Network in','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01924ciydwzdzems',1,'Admin',1672319394,'192.168.64.1',2,15,44256,NULL,'Azure PostgreSQL: Backup storage used','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01934ciygoip182z',1,'Admin',1672319394,'192.168.64.1',2,15,44255,NULL,'Azure PostgreSQL: Storage free','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01944ciy37fzwwci',1,'Admin',1672319394,'192.168.64.1',2,15,44254,NULL,'Azure PostgreSQL: Storage percent','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01954ciyzf7hwary',1,'Admin',1672319394,'192.168.64.1',2,15,44253,NULL,'Azure PostgreSQL: Transaction log storage used','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01964ciyo5vpitx9',1,'Admin',1672319394,'192.168.64.1',2,15,44252,NULL,'Azure PostgreSQL: Storage used','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01974ciym3qw5e2e',1,'Admin',1672319394,'192.168.64.1',2,15,44273,NULL,'Azure PostgreSQL: Maximum used transaction IDs','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01984ciyeui3fo94',1,'Admin',1672319394,'192.168.64.1',2,15,44274,NULL,'Azure PostgreSQL: Availability status detailed','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z01994ciyy4vhb8cu',1,'Admin',1672319394,'192.168.64.1',2,15,44284,NULL,'Azure PostgreSQL: Availability state','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z019a4ciyzub0kw3f',1,'Admin',1672319394,'192.168.64.1',2,15,44291,NULL,'Azure PostgreSQL: Connections active','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z019b4ciy2fvi1t86',1,'Admin',1672319394,'192.168.64.1',2,15,44290,NULL,'Azure PostgreSQL: Connections failed','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z019c4ciy1jlydmjk',1,'Admin',1672319394,'192.168.64.1',2,15,44289,NULL,'Azure PostgreSQL: Percentage CPU','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z019d4ciy8avqvs32',1,'Admin',1672319394,'192.168.64.1',2,15,44288,NULL,'Azure PostgreSQL: Get errors','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z019e4ciyko3i1e6z',1,'Admin',1672319394,'192.168.64.1',2,15,44249,NULL,'Azure PostgreSQL: Get data','clc93sewa00004ciyq3kxknhu',''),('clc93sf4z019f4ciyamvvexsl',1,'Admin',1672319394,'192.168.64.1',2,15,44287,NULL,'Azure PostgreSQL: IO consumption percent','clc93sewa00004ciyq3kxknhu',''),('clc93sf50019g4ciyhbmtqc94',1,'Admin',1672319394,'192.168.64.1',2,15,44286,NULL,'Azure PsotgreSQL: Memory utilization','clc93sewa00004ciyq3kxknhu',''),('clc93sf50019h4ciyaca0xhkn',1,'Admin',1672319394,'192.168.64.1',2,15,44285,NULL,'Azure PostgreSQL: Network out','clc93sewa00004ciyq3kxknhu',''),('clc93sf50019i4ciyuavik5u5',1,'Admin',1672319394,'192.168.64.1',2,15,44283,NULL,'Azure PosgtreSQL: Network in','clc93sewa00004ciyq3kxknhu',''),('clc93sf50019j4ciylzw0shc3',1,'Admin',1672319394,'192.168.64.1',2,15,44275,NULL,'Azure PostgreSQL: Replication lag','clc93sewa00004ciyq3kxknhu',''),('clc93sf50019k4ciy1x4dqmsz',1,'Admin',1672319394,'192.168.64.1',2,15,44282,NULL,'Azure PostgreSQL: Max lag across replicas in bytes','clc93sewa00004ciyq3kxknhu',''),('clc93sf50019l4ciyx7696qdr',1,'Admin',1672319394,'192.168.64.1',2,15,44281,NULL,'Azure PostgreSQL: Backup storage used','clc93sewa00004ciyq3kxknhu',''),('clc93sf50019m4ciy0fkbxtbv',1,'Admin',1672319394,'192.168.64.1',2,15,44280,NULL,'Azure PostgreSQL: Storage limit','clc93sewa00004ciyq3kxknhu',''),('clc93sf50019n4ciyrua3uj5k',1,'Admin',1672319394,'192.168.64.1',2,15,44279,NULL,'Azure PostgreSQL: Storage percent','clc93sewa00004ciyq3kxknhu',''),('clc93sf50019o4ciy30l7fmwc',1,'Admin',1672319394,'192.168.64.1',2,15,44278,NULL,'Azure PostgreSQL: Server log storage limit','clc93sewa00004ciyq3kxknhu',''),('clc93sf50019p4ciyisrul9ry',1,'Admin',1672319394,'192.168.64.1',2,15,44277,NULL,'Azure PostgreSQL: Server log storage percent','clc93sewa00004ciyq3kxknhu',''),('clc93sf50019q4ciyuh1mewnn',1,'Admin',1672319394,'192.168.64.1',2,15,44276,NULL,'Azure PostgreSQL: Server log storage used','clc93sewa00004ciyq3kxknhu',''),('clc93sf50019r4ciyot1h9syd',1,'Admin',1672319394,'192.168.64.1',2,15,44292,NULL,'Azure PostgreSQL: Storage used','clc93sewa00004ciyq3kxknhu',''),('clc93sf72019s4ciyomg3khyv',1,'Admin',1672319394,'192.168.64.1',2,30,10076,NULL,'AIX by Zabbix agent','clc93sewa00004ciyq3kxknhu',''),('clc93sf72019t4ciy18vd8xeo',1,'Admin',1672319394,'192.168.64.1',2,30,10207,NULL,'Alcatel Timetra TiMOS by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf72019u4ciygr67cwq3',1,'Admin',1672319394,'192.168.64.1',2,30,10208,NULL,'Brocade FC by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf72019v4ciys0xa0ek0',1,'Admin',1672319394,'192.168.64.1',2,30,10209,NULL,'Brocade_Foundry Performance by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf72019w4ciyrdamn22s',1,'Admin',1672319394,'192.168.64.1',2,30,10210,NULL,'Brocade_Foundry Nonstackable by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf72019x4ciybml58yc7',1,'Admin',1672319394,'192.168.64.1',2,30,10211,NULL,'Brocade_Foundry Stackable by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf72019y4ciyj0ka4qm4',1,'Admin',1672319394,'192.168.64.1',2,30,10212,NULL,'Cisco CISCO-MEMORY-POOL-MIB by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf72019z4ciymlb039xj',1,'Admin',1672319394,'192.168.64.1',2,30,10213,NULL,'Cisco CISCO-PROCESS-MIB by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201a04ciyrsrh9n0s',1,'Admin',1672319394,'192.168.64.1',2,30,10216,NULL,'Cisco Inventory by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201a14ciy9ckg3zg0',1,'Admin',1672319394,'192.168.64.1',2,30,10217,NULL,'Cisco CISCO-ENVMON-MIB by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201a24ciywdh2ell7',1,'Admin',1672319394,'192.168.64.1',2,30,10218,NULL,'Cisco IOS by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201a34ciy9rpmg3lx',1,'Admin',1672319394,'192.168.64.1',2,30,10252,NULL,'Cisco CISCO-PROCESS-MIB IOS versions 12.0_3_T-12.2_3.5 by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201a44ciyc7dd1hac',1,'Admin',1672319394,'192.168.64.1',2,30,10254,NULL,'Arista by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201a54ciy6kccxm3l',1,'Admin',1672319394,'192.168.64.1',2,30,10260,NULL,'Apache Tomcat by JMX','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201a64ciya4ovw8l5',1,'Admin',1672319394,'192.168.64.1',2,30,10264,NULL,'Apache by Zabbix agent','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201a74ciymsa8omaz',1,'Admin',1672319394,'192.168.64.1',2,30,10265,NULL,'Apache by HTTP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201a84ciy20mcwd33',1,'Admin',1672319394,'192.168.64.1',2,30,10321,NULL,'Chassis by IPMI','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201a94ciyb96s1wxx',1,'Admin',1672319394,'192.168.64.1',2,30,10336,NULL,'Asterisk by HTTP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201aa4ciyqrpdtizg',1,'Admin',1672319394,'192.168.64.1',2,30,10353,NULL,'Ceph by Zabbix agent 2','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201ab4ciykhd2spms',1,'Admin',1672319394,'192.168.64.1',2,30,10358,NULL,'Apache ActiveMQ by JMX','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201ac4ciyxyqnldgq',1,'Admin',1672319394,'192.168.64.1',2,30,10359,NULL,'Aranet Cloud','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201ad4ciyjkxedigu',1,'Admin',1672319394,'192.168.64.1',2,30,10364,NULL,'Apache Kafka by JMX','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201ae4ciyuqtzp7bz',1,'Admin',1672319394,'192.168.64.1',2,30,10370,NULL,'Apache Cassandra by JMX','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201af4ciync01vw14',1,'Admin',1672319394,'192.168.64.1',2,30,10390,NULL,'Cisco Catalyst 3750V2-24FS by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201ag4ciyvvb07a7b',1,'Admin',1672319394,'192.168.64.1',2,30,10391,NULL,'Cisco Catalyst 3750V2-24PS by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201ah4ciy1pn55kf9',1,'Admin',1672319394,'192.168.64.1',2,30,10392,NULL,'Cisco Catalyst 3750V2-24TS by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201ai4ciyoyhza2ve',1,'Admin',1672319394,'192.168.64.1',2,30,10393,NULL,'Cisco Catalyst 3750V2-48PS by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201aj4ciyho36imp8',1,'Admin',1672319394,'192.168.64.1',2,30,10394,NULL,'Cisco Catalyst 3750V2-48TS by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201ak4ciyy7teki63',1,'Admin',1672319394,'192.168.64.1',2,30,10395,NULL,'APC UPS by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201al4ciy8u3qz4np',1,'Admin',1672319394,'192.168.64.1',2,30,10400,NULL,'APC UPS Galaxy 3500 by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201am4ciyzry24tub',1,'Admin',1672319394,'192.168.64.1',2,30,10401,NULL,'APC Smart-UPS 2200 RM by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201an4ciyhq2zngrb',1,'Admin',1672319394,'192.168.64.1',2,30,10402,NULL,'APC Smart-UPS 3000 XLM by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201ao4ciyz4f8pay0',1,'Admin',1672319394,'192.168.64.1',2,30,10403,NULL,'APC Smart-UPS RT 1000 RM XL by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201ap4ciyn7knvlig',1,'Admin',1672319394,'192.168.64.1',2,30,10404,NULL,'APC Smart-UPS RT 1000 XL by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201aq4ciyza9r005u',1,'Admin',1672319394,'192.168.64.1',2,30,10406,NULL,'APC Smart-UPS SRT 8000 by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201ar4ciyp1ukawdw',1,'Admin',1672319394,'192.168.64.1',2,30,10407,NULL,'APC UPS Symmetra LX by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201as4ciyopkv4w2a',1,'Admin',1672319394,'192.168.64.1',2,30,10408,NULL,'APC UPS Symmetra RM by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201at4ciyqw3bnfd2',1,'Admin',1672319394,'192.168.64.1',2,30,10409,NULL,'APC UPS Symmetra RX by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201au4ciyo4e8oz3y',1,'Admin',1672319394,'192.168.64.1',2,30,10412,NULL,'APC Smart-UPS SRT 5000 by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201av4ciyg04tyvpq',1,'Admin',1672319394,'192.168.64.1',2,30,10418,NULL,'Cisco ASAv by SNMP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201aw4ciyeo65ni2p',1,'Admin',1672319394,'192.168.64.1',2,30,10527,NULL,'AWS EC2 by HTTP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201ax4ciyk5whchhm',1,'Admin',1672319394,'192.168.64.1',2,30,10529,NULL,'AWS RDS instance by HTTP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201ay4ciy1ymqetev',1,'Admin',1672319394,'192.168.64.1',2,30,10530,NULL,'AWS S3 bucket by HTTP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201az4ciyiy7tb1y3',1,'Admin',1672319394,'192.168.64.1',2,30,10531,NULL,'Azure by HTTP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201b04ciyiomogae0',1,'Admin',1672319394,'192.168.64.1',2,30,10532,NULL,'Azure virtual machine by HTTP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201b14ciycviluu2k',1,'Admin',1672319394,'192.168.64.1',2,30,10535,NULL,'AWS by HTTP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201b24ciycdlyrqzr',1,'Admin',1672319394,'192.168.64.1',2,30,10539,NULL,'Azure MySQL flexible server by HTTP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201b34ciy2cnztk4h',1,'Admin',1672319394,'192.168.64.1',2,30,10540,NULL,'Azure MySQL single server by HTTP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201b44ciywesewd59',1,'Admin',1672319394,'192.168.64.1',2,30,10543,NULL,'Azure PostgreSQL flexible server by HTTP','clc93sewa00004ciyq3kxknhu',''),('clc93sf7201b54ciypxo543h6',1,'Admin',1672319394,'192.168.64.1',2,30,10544,NULL,'Azure PostgreSQL single server by HTTP','clc93sewa00004ciyq3kxknhu',''),('clc93sism00014xiygfbk6zpo',1,'Admin',1672319399,'192.168.64.1',2,36,22908,NULL,'{#FSNAME}: Free disk space','clc93sisl00004xiyevwovlv0',''),('clc93sism00024xiy552w2b5z',1,'Admin',1672319399,'192.168.64.1',2,36,22909,NULL,'{#FSNAME}: Free inodes, %','clc93sisl00004xiyevwovlv0',''),('clc93sism00034xiygjmirkf4',1,'Admin',1672319399,'192.168.64.1',2,36,22910,NULL,'{#FSNAME}: Total disk space','clc93sisl00004xiyevwovlv0',''),('clc93sism00044xiyweypmabn',1,'Admin',1672319399,'192.168.64.1',2,36,22911,NULL,'{#FSNAME}: Used disk space','clc93sisl00004xiyevwovlv0',''),('clc93sism00054xiyxoqfvn4j',1,'Admin',1672319399,'192.168.64.1',2,36,22912,NULL,'{#FSNAME}: Free disk space, %','clc93sisl00004xiyevwovlv0',''),('clc93sism00064xiym7rvbvtf',1,'Admin',1672319399,'192.168.64.1',2,36,44431,NULL,'{#FSNAME}: Get filesystem data','clc93sisl00004xiyevwovlv0',''),('clc93sism00074xiyixsuacxy',1,'Admin',1672319399,'192.168.64.1',2,36,44432,NULL,'{#FSNAME}: Filesystem is read-only','clc93sisl00004xiyevwovlv0',''),('clc93sism00084xiyluc2qzbb',1,'Admin',1672319399,'192.168.64.1',2,36,22985,NULL,'Interface {#IFNAME}: Incoming network traffic','clc93sisl00004xiyevwovlv0',''),('clc93sism00094xiycexq3ex3',1,'Admin',1672319399,'192.168.64.1',2,36,22986,NULL,'Interface {#IFNAME}: Outgoing network traffic','clc93sisl00004xiyevwovlv0',''),('clc93sism000a4xiyevp9c6pd',1,'Admin',1672319399,'192.168.64.1',2,36,22988,NULL,'{#FSNAME}: Free disk space','clc93sisl00004xiyevwovlv0',''),('clc93sism000b4xiyay3supx4',1,'Admin',1672319399,'192.168.64.1',2,36,22989,NULL,'{#FSNAME}: Free inodes, %','clc93sisl00004xiyevwovlv0',''),('clc93sism000c4xiyigdhk0ei',1,'Admin',1672319399,'192.168.64.1',2,36,22990,NULL,'{#FSNAME}: Total disk space','clc93sisl00004xiyevwovlv0',''),('clc93sism000d4xiy6fomjyam',1,'Admin',1672319399,'192.168.64.1',2,36,22991,NULL,'{#FSNAME}: Used disk space','clc93sisl00004xiyevwovlv0',''),('clc93sism000e4xiy89w6be30',1,'Admin',1672319399,'192.168.64.1',2,36,22992,NULL,'{#FSNAME}: Free disk space, %','clc93sisl00004xiyevwovlv0',''),('clc93sism000f4xiyn1sph9av',1,'Admin',1672319399,'192.168.64.1',2,36,44434,NULL,'{#FSNAME}: Get filesystem data','clc93sisl00004xiyevwovlv0',''),('clc93sism000g4xiyahpv11sv',1,'Admin',1672319399,'192.168.64.1',2,36,44435,NULL,'{#FSNAME}: Filesystem is read-only','clc93sisl00004xiyevwovlv0',''),('clc93sism000h4xiyf2s8jtv2',1,'Admin',1672319399,'192.168.64.1',2,36,23073,NULL,'Network interfaces: Incoming network traffic on {#IFNAME}','clc93sisl00004xiyevwovlv0',''),('clc93sism000i4xiyo3eg1uxe',1,'Admin',1672319399,'192.168.64.1',2,36,23074,NULL,'Network interfaces: Outgoing network traffic on {#IFNAME}','clc93sisl00004xiyevwovlv0',''),('clc93sism000j4xiy1p61g2xl',1,'Admin',1672319399,'192.168.64.1',2,36,27032,NULL,'Interface {#IFNAME}({#IFALIAS}): Duplex status','clc93sisl00004xiyevwovlv0',''),('clc93sism000k4xiyc6hla6wv',1,'Admin',1672319399,'192.168.64.1',2,36,27478,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sisl00004xiyevwovlv0',''),('clc93sism000l4xiyyz0inz2l',1,'Admin',1672319399,'192.168.64.1',2,36,30105,NULL,'#{#SNMPINDEX}: Memory utilization','clc93sisl00004xiyevwovlv0',''),('clc93sism000m4xiy2vbu4qgr',1,'Admin',1672319399,'192.168.64.1',2,36,27479,NULL,'PSU {#SNMPVALUE}: Power supply status','clc93sisl00004xiyevwovlv0',''),('clc93sism000n4xiysjl7fkch',1,'Admin',1672319399,'192.168.64.1',2,36,27480,NULL,'Fan {#SNMPVALUE}: Fan status','clc93sisl00004xiyevwovlv0',''),('clc93sism000o4xiyj2owd72b',1,'Admin',1672319399,'192.168.64.1',2,36,27481,NULL,'#{#SNMPVALUE}: Operating system','clc93sisl00004xiyevwovlv0',''),('clc93sism000p4xiy8a2kzy8b',1,'Admin',1672319399,'192.168.64.1',2,36,27482,NULL,'#{#SNMPVALUE}: Hardware version(revision)','clc93sisl00004xiyevwovlv0',''),('clc93sism000q4xiyrnvmikn8',1,'Admin',1672319399,'192.168.64.1',2,36,27483,NULL,'#{#SNMPVALUE}: Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93sism000r4xiy0j4f0x0a',1,'Admin',1672319399,'192.168.64.1',2,36,27484,NULL,'#{#SNMPVALUE}: Hardware model name','clc93sisl00004xiyevwovlv0',''),('clc93sism000s4xiy26z5gr7x',1,'Admin',1672319399,'192.168.64.1',2,36,27485,NULL,'Device {#SNMPVALUE}: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93sism000t4xiyqmqmr0ph',1,'Admin',1672319399,'192.168.64.1',2,36,30107,NULL,'{#SNMPINDEX}: Memory utilization','clc93sisl00004xiyevwovlv0',''),('clc93sism000u4xiyfi7kxwr7',1,'Admin',1672319399,'192.168.64.1',2,36,27517,NULL,'{#SNMPVALUE}: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93sism000v4xiy18vud3ag',1,'Admin',1672319399,'192.168.64.1',2,36,27518,NULL,'{#SNMPVALUE}: Power supply status','clc93sisl00004xiyevwovlv0',''),('clc93sism000w4xiymoprolis',1,'Admin',1672319399,'192.168.64.1',2,36,27519,NULL,'{#SNMPVALUE}: Fan status','clc93sisl00004xiyevwovlv0',''),('clc93sism000x4xiyrkgs9ees',1,'Admin',1672319399,'192.168.64.1',2,36,30108,NULL,'#{#SNMPVALUE}: Memory utilization','clc93sisl00004xiyevwovlv0',''),('clc93sism000y4xiykvlelmc2',1,'Admin',1672319399,'192.168.64.1',2,36,27553,NULL,'#{#SNMPVALUE}: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93sism000z4xiyro48bc2a',1,'Admin',1672319399,'192.168.64.1',2,36,27554,NULL,'#{#SNMPVALUE}: Power supply status','clc93sisl00004xiyevwovlv0',''),('clc93sism00104xiy6wnu8v67',1,'Admin',1672319399,'192.168.64.1',2,36,27555,NULL,'#{#SNMPVALUE}: Fan status','clc93sisl00004xiyevwovlv0',''),('clc93sism00114xiytokybtbm',1,'Admin',1672319399,'192.168.64.1',2,36,27591,NULL,'#{#SNMPVALUE}: Total memory','clc93sisl00004xiyevwovlv0',''),('clc93sism00124xiyf955p1no',1,'Admin',1672319399,'192.168.64.1',2,36,30110,NULL,'#{#SNMPVALUE}: Available memory','clc93sisl00004xiyevwovlv0',''),('clc93sism00134xiy29sz6gur',1,'Admin',1672319399,'192.168.64.1',2,36,30111,NULL,'#{#SNMPVALUE}: Memory utilization','clc93sisl00004xiyevwovlv0',''),('clc93sism00144xiygyaqysf5',1,'Admin',1672319399,'192.168.64.1',2,36,27593,NULL,'PSU {#SNMPVALUE}: Power supply status','clc93sisl00004xiyevwovlv0',''),('clc93sism00154xiyoq9jj1dq',1,'Admin',1672319399,'192.168.64.1',2,36,27594,NULL,'Fan {#SNMPVALUE}: Fan speed','clc93sisl00004xiyevwovlv0',''),('clc93sism00164xiy7r2kf2i9',1,'Admin',1672319399,'192.168.64.1',2,36,27595,NULL,'Fan {#SNMPVALUE}: Fan status','clc93sisl00004xiyevwovlv0',''),('clc93sism00174xiyrxokgjhh',1,'Admin',1672319399,'192.168.64.1',2,36,27671,NULL,'{#MODULE_NAME}: CPU utilization','clc93sisl00004xiyevwovlv0',''),('clc93sism00184xiyxkxx1iux',1,'Admin',1672319399,'192.168.64.1',2,36,30112,NULL,'{#MODULE_NAME}: Memory utilization','clc93sisl00004xiyevwovlv0',''),('clc93sism00194xiykkn9px0v',1,'Admin',1672319399,'192.168.64.1',2,36,27672,NULL,'{#SNMPVALUE}: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93sism001a4xiyymrd4l3g',1,'Admin',1672319399,'192.168.64.1',2,36,27673,NULL,'{#ENT_NAME}: Fan status','clc93sisl00004xiyevwovlv0',''),('clc93sism001b4xiy04ltudrm',1,'Admin',1672319399,'192.168.64.1',2,36,27674,NULL,'{#ENT_NAME}: Power supply status','clc93sisl00004xiyevwovlv0',''),('clc93sism001c4xiyatcs6dhi',1,'Admin',1672319399,'192.168.64.1',2,36,27675,NULL,'{#ENT_NAME}: Operating system','clc93sisl00004xiyevwovlv0',''),('clc93sism001d4xiynlywosg3',1,'Admin',1672319399,'192.168.64.1',2,36,27676,NULL,'{#ENT_NAME}: Hardware version(revision)','clc93sisl00004xiyevwovlv0',''),('clc93sism001e4xiyz9jlgvyc',1,'Admin',1672319399,'192.168.64.1',2,36,27677,NULL,'{#ENT_NAME}: Firmware version','clc93sisl00004xiyevwovlv0',''),('clc93sism001f4xiyypz748ty',1,'Admin',1672319399,'192.168.64.1',2,36,27678,NULL,'{#ENT_NAME}: Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93sism001g4xiy4hft7lxo',1,'Admin',1672319399,'192.168.64.1',2,36,27679,NULL,'{#ENT_NAME}: Hardware model name','clc93sisl00004xiyevwovlv0',''),('clc93sism001h4xiy60ncoqr2',1,'Admin',1672319399,'192.168.64.1',2,36,28354,NULL,'{#SENSOR_LOCALE}: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93sism001i4xiy0sk6tv3f',1,'Admin',1672319399,'192.168.64.1',2,36,28355,NULL,'{#SENSOR_LOCALE}: Temperature status','clc93sisl00004xiyevwovlv0',''),('clc93sism001j4xiyyv4vvvnu',1,'Admin',1672319399,'192.168.64.1',2,36,28356,NULL,'{#SENSOR_LOCALE}: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93sism001k4xiyxqpvniz9',1,'Admin',1672319399,'192.168.64.1',2,36,28357,NULL,'{#SENSOR_LOCALE}: Temperature status','clc93sisl00004xiyevwovlv0',''),('clc93sism001l4xiyx2kglarm',1,'Admin',1672319399,'192.168.64.1',2,36,28358,NULL,'{#PSU_DESCR}: Power supply status','clc93sisl00004xiyevwovlv0',''),('clc93sism001m4xiy2ozrw3zg',1,'Admin',1672319399,'192.168.64.1',2,36,28359,NULL,'{#FAN_DESCR}: Fan status','clc93sisl00004xiyevwovlv0',''),('clc93sism001n4xiywornicfw',1,'Admin',1672319399,'192.168.64.1',2,36,28360,NULL,'{#FAN_DESCR}: Fan speed','clc93sisl00004xiyevwovlv0',''),('clc93sism001o4xiytylp82mb',1,'Admin',1672319399,'192.168.64.1',2,36,28361,NULL,'{#DISK_NAME}: Physical disk status','clc93sisl00004xiyevwovlv0',''),('clc93sism001p4xiyk3vfeb4k',1,'Admin',1672319399,'192.168.64.1',2,36,28362,NULL,'{#DISK_NAME}: Physical disk serial number','clc93sisl00004xiyevwovlv0',''),('clc93sism001q4xiyqmg0gmi0',1,'Admin',1672319399,'192.168.64.1',2,36,28363,NULL,'{#DISK_NAME}: Physical disk S.M.A.R.T. status','clc93sisl00004xiyevwovlv0',''),('clc93sism001r4xiyw6fgaf5c',1,'Admin',1672319399,'192.168.64.1',2,36,28364,NULL,'{#DISK_NAME}: Physical disk model name','clc93sisl00004xiyevwovlv0',''),('clc93sism001s4xiygozm8hvh',1,'Admin',1672319399,'192.168.64.1',2,36,28365,NULL,'{#DISK_NAME}: Physical disk part number','clc93sisl00004xiyevwovlv0',''),('clc93sism001t4xiyujt5nium',1,'Admin',1672319399,'192.168.64.1',2,36,28366,NULL,'{#DISK_NAME}: Physical disk media type','clc93sisl00004xiyevwovlv0',''),('clc93sism001u4xiyftbf8rny',1,'Admin',1672319399,'192.168.64.1',2,36,28367,NULL,'{#DISK_NAME}: Disk size','clc93sisl00004xiyevwovlv0',''),('clc93sism001v4xiylu318b5l',1,'Admin',1672319399,'192.168.64.1',2,36,28368,NULL,'Disk {#SNMPVALUE}({#DISK_NAME}): Layout type','clc93sisl00004xiyevwovlv0',''),('clc93sism001w4xiyw22wwmq9',1,'Admin',1672319399,'192.168.64.1',2,36,28369,NULL,'Disk {#SNMPVALUE}({#DISK_NAME}): Current state','clc93sisl00004xiyevwovlv0',''),('clc93sism001x4xiydp1zfy9x',1,'Admin',1672319399,'192.168.64.1',2,36,28370,NULL,'Disk {#SNMPVALUE}({#DISK_NAME}): Read policy','clc93sisl00004xiyevwovlv0',''),('clc93sism001y4xiyb73640vv',1,'Admin',1672319399,'192.168.64.1',2,36,28371,NULL,'Disk {#SNMPVALUE}({#DISK_NAME}): Write policy','clc93sisl00004xiyevwovlv0',''),('clc93sism001z4xiyk79dlmko',1,'Admin',1672319399,'192.168.64.1',2,36,28372,NULL,'Disk {#SNMPVALUE}({#DISK_NAME}): Disk size','clc93sisl00004xiyevwovlv0',''),('clc93sism00204xiyxwhha0om',1,'Admin',1672319399,'192.168.64.1',2,36,28373,NULL,'Disk {#SNMPVALUE}({#DISK_NAME}): Status','clc93sisl00004xiyevwovlv0',''),('clc93sism00214xiy8t08xrwf',1,'Admin',1672319399,'192.168.64.1',2,36,28374,NULL,'{#CNTLR_NAME}: Disk array controller status','clc93sisl00004xiyevwovlv0',''),('clc93sism00224xiyz2pgzv94',1,'Admin',1672319399,'192.168.64.1',2,36,28375,NULL,'{#CNTLR_NAME}: Disk array controller model','clc93sisl00004xiyevwovlv0',''),('clc93sism00234xiy2rhequu4',1,'Admin',1672319399,'192.168.64.1',2,36,28376,NULL,'Battery {#BATTERY_NUM}: Disk array cache controller battery status','clc93sisl00004xiyevwovlv0',''),('clc93sism00244xiyvoawzfp2',1,'Admin',1672319399,'192.168.64.1',2,36,30066,NULL,'{#SENSOR_LOCATION}.Ambient: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93sism00254xiy1abnlwlp',1,'Admin',1672319399,'192.168.64.1',2,36,30067,NULL,'{#SENSOR_LOCATION}.Front: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93sism00264xiyqrsso9d4',1,'Admin',1672319399,'192.168.64.1',2,36,30068,NULL,'{#SENSOR_LOCATION}.Rear: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93sism00274xiyka6fpekh',1,'Admin',1672319399,'192.168.64.1',2,36,30069,NULL,'{#SENSOR_LOCATION}.IOH: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93sism00284xiydm8nyemv',1,'Admin',1672319399,'192.168.64.1',2,36,30070,NULL,'{#SENSOR_LOCATION}: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93sism00294xiyr9c31bmv',1,'Admin',1672319399,'192.168.64.1',2,36,30071,NULL,'{#PSU_LOCATION}: Power supply status','clc93sisl00004xiyevwovlv0',''),('clc93sism002a4xiyg99skirn',1,'Admin',1672319399,'192.168.64.1',2,36,30072,NULL,'{#UNIT_LOCATION}: Overall system health status','clc93sisl00004xiyevwovlv0',''),('clc93sism002b4xiybdb87f6v',1,'Admin',1672319399,'192.168.64.1',2,36,30073,NULL,'{#UNIT_LOCATION}: Hardware model name','clc93sisl00004xiyevwovlv0',''),('clc93sism002c4xiyhdyo7bi7',1,'Admin',1672319399,'192.168.64.1',2,36,30074,NULL,'{#UNIT_LOCATION}: Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93sism002d4xiy3i7s141q',1,'Admin',1672319399,'192.168.64.1',2,36,30075,NULL,'{#FAN_LOCATION}: Fan status','clc93sisl00004xiyevwovlv0',''),('clc93sism002e4xiyukorh563',1,'Admin',1672319399,'192.168.64.1',2,36,30076,NULL,'{#DISK_LOCATION}: Physical disk status','clc93sisl00004xiyevwovlv0',''),('clc93sism002f4xiyawhxw63a',1,'Admin',1672319399,'192.168.64.1',2,36,30077,NULL,'{#DISK_LOCATION}: Physical disk model name','clc93sisl00004xiyevwovlv0',''),('clc93sism002g4xiyr0vo3u73',1,'Admin',1672319399,'192.168.64.1',2,36,30078,NULL,'{#DISK_LOCATION}: Physical disk media type','clc93sisl00004xiyevwovlv0',''),('clc93sism002h4xiyfpx7b45v',1,'Admin',1672319399,'192.168.64.1',2,36,30079,NULL,'{#DISK_LOCATION}: Disk size','clc93sisl00004xiyevwovlv0',''),('clc93sism002i4xiyvkmipnhk',1,'Admin',1672319399,'192.168.64.1',2,36,30080,NULL,'{#VDISK_LOCATION}: Status','clc93sisl00004xiyevwovlv0',''),('clc93sism002j4xiyk7s5zoyc',1,'Admin',1672319399,'192.168.64.1',2,36,30081,NULL,'{#VDISK_LOCATION}: Layout type','clc93sisl00004xiyevwovlv0',''),('clc93sism002k4xiy4vx6lsxc',1,'Admin',1672319399,'192.168.64.1',2,36,30082,NULL,'{#VDISK_LOCATION}: Disk size','clc93sisl00004xiyevwovlv0',''),('clc93sism002l4xiyi01ovcel',1,'Admin',1672319399,'192.168.64.1',2,36,30083,NULL,'{#DISKARRAY_LOCATION}: Disk array controller status','clc93sisl00004xiyevwovlv0',''),('clc93sism002m4xiydotxmj5n',1,'Admin',1672319399,'192.168.64.1',2,36,30084,NULL,'{#DISKARRAY_LOCATION}: Disk array controller model','clc93sisl00004xiyevwovlv0',''),('clc93sism002n4xiyf7vvyudd',1,'Admin',1672319399,'192.168.64.1',2,36,30085,NULL,'{#DISKARRAY_CACHE_LOCATION}: Disk array cache controller battery status','clc93sisl00004xiyevwovlv0',''),('clc93sism002o4xiymj4gr3n9',1,'Admin',1672319399,'192.168.64.1',2,36,30157,NULL,'{#MEMNAME}: Total memory','clc93sisl00004xiyevwovlv0',''),('clc93sism002p4xiyxp0ydj6c',1,'Admin',1672319399,'192.168.64.1',2,36,30158,NULL,'{#MEMNAME}: Used memory','clc93sisl00004xiyevwovlv0',''),('clc93sism002q4xiy51gqge42',1,'Admin',1672319399,'192.168.64.1',2,36,30159,NULL,'{#MEMNAME}: Memory utilization','clc93sisl00004xiyevwovlv0',''),('clc93sism002r4xiyocuhxlff',1,'Admin',1672319399,'192.168.64.1',2,36,30160,NULL,'{#FSNAME}: Space utilization','clc93sisl00004xiyevwovlv0',''),('clc93sism002s4xiyd9mi6txh',1,'Admin',1672319399,'192.168.64.1',2,36,30161,NULL,'{#FSNAME}: Total space','clc93sisl00004xiyevwovlv0',''),('clc93sism002t4xiyxppmcma0',1,'Admin',1672319399,'192.168.64.1',2,36,30162,NULL,'{#FSNAME}: Used space','clc93sisl00004xiyevwovlv0',''),('clc93sism002u4xiy249gxwyp',1,'Admin',1672319399,'192.168.64.1',2,36,30197,NULL,'HAProxy Backend {#PXNAME}: Responses denied per second','clc93sisl00004xiyevwovlv0',''),('clc93sism002v4xiy4w7h64rf',1,'Admin',1672319399,'192.168.64.1',2,36,30198,NULL,'HAProxy Backend {#PXNAME}: Errors connection per second','clc93sisl00004xiyevwovlv0',''),('clc93sism002w4xiyi3wwzgod',1,'Admin',1672319399,'192.168.64.1',2,36,30199,NULL,'HAProxy Backend {#PXNAME}: Response errors per second','clc93sisl00004xiyevwovlv0',''),('clc93sism002x4xiytd8uy7vm',1,'Admin',1672319399,'192.168.64.1',2,36,30200,NULL,'HAProxy Backend {#PXNAME}: Unassigned requests','clc93sisl00004xiyevwovlv0',''),('clc93sism002y4xiyjbr8wrdm',1,'Admin',1672319399,'192.168.64.1',2,36,30201,NULL,'HAProxy Backend {#PXNAME}: Time in queue','clc93sisl00004xiyevwovlv0',''),('clc93sism002z4xiyobij9fiz',1,'Admin',1672319399,'192.168.64.1',2,36,30202,NULL,'HAProxy Backend {#PXNAME}: Responses time','clc93sisl00004xiyevwovlv0',''),('clc93sism00304xiytj3eku26',1,'Admin',1672319399,'192.168.64.1',2,36,30203,NULL,'HAProxy Backend {#PXNAME}: Status','clc93sisl00004xiyevwovlv0',''),('clc93sism00314xiym9g1x6tk',1,'Admin',1672319399,'192.168.64.1',2,36,30204,NULL,'HAProxy Backend {#PXNAME}: Redispatched requests per second','clc93sisl00004xiyevwovlv0',''),('clc93sism00324xiyygl8te3y',1,'Admin',1672319399,'192.168.64.1',2,36,30205,NULL,'HAProxy Backend {#PXNAME}: Retried connections per second','clc93sisl00004xiyevwovlv0',''),('clc93sism00334xiy8xpvplas',1,'Admin',1672319399,'192.168.64.1',2,36,35104,NULL,'HAProxy Backend {#PXNAME}: Number of active servers','clc93sisl00004xiyevwovlv0',''),('clc93sism00344xiycqta1dt6',1,'Admin',1672319399,'192.168.64.1',2,36,35105,NULL,'HAProxy Backend {#PXNAME}: Number of responses with codes 5xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism00354xiyokcb83i9',1,'Admin',1672319399,'192.168.64.1',2,36,35106,NULL,'HAProxy Backend {#PXNAME}: Weight','clc93sisl00004xiyevwovlv0',''),('clc93sism00364xiyclubyc47',1,'Admin',1672319399,'192.168.64.1',2,36,35107,NULL,'HAProxy Backend {#PXNAME}: Sessions per second','clc93sisl00004xiyevwovlv0',''),('clc93sism00374xiyr35psw40',1,'Admin',1672319399,'192.168.64.1',2,36,35108,NULL,'HAProxy Backend {#PXNAME}: Number of responses with codes 4xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism00384xiy5hg28r55',1,'Admin',1672319399,'192.168.64.1',2,36,35109,NULL,'HAProxy Backend {#PXNAME}: Number of backup servers','clc93sisl00004xiyevwovlv0',''),('clc93sism00394xiyh81zhcdd',1,'Admin',1672319399,'192.168.64.1',2,36,35110,NULL,'HAProxy Backend {#PXNAME}: Number of responses with codes 3xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism003a4xiyq6eedoml',1,'Admin',1672319399,'192.168.64.1',2,36,35111,NULL,'HAProxy Backend {#PXNAME}: Number of responses with codes 2xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism003b4xiygs74rple',1,'Admin',1672319399,'192.168.64.1',2,36,35112,NULL,'HAProxy Backend {#PXNAME}: Number of responses with codes 1xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism003c4xiyasq14j7d',1,'Admin',1672319399,'192.168.64.1',2,36,35113,NULL,'HAProxy Backend {#PXNAME}: Outgoing traffic','clc93sisl00004xiyevwovlv0',''),('clc93sism003d4xiyashjodic',1,'Admin',1672319399,'192.168.64.1',2,36,35114,NULL,'HAProxy Backend {#PXNAME}: Incoming traffic','clc93sisl00004xiyevwovlv0',''),('clc93sism003e4xiyb6vogy7j',1,'Admin',1672319399,'192.168.64.1',2,36,30196,NULL,'HAProxy Frontend {#PXNAME}: Session utilization','clc93sisl00004xiyevwovlv0',''),('clc93sism003f4xiypurx6and',1,'Admin',1672319399,'192.168.64.1',2,36,30206,NULL,'HAProxy Frontend {#PXNAME}: Incoming traffic','clc93sisl00004xiyevwovlv0',''),('clc93sism003g4xiyw0srvkn6',1,'Admin',1672319399,'192.168.64.1',2,36,30207,NULL,'HAProxy Frontend {#PXNAME}: Outgoing traffic','clc93sisl00004xiyevwovlv0',''),('clc93sism003h4xiy14i2dqxz',1,'Admin',1672319399,'192.168.64.1',2,36,30208,NULL,'HAProxy Frontend {#PXNAME}: Denied requests per second','clc93sisl00004xiyevwovlv0',''),('clc93sism003i4xiyy0bahwzb',1,'Admin',1672319399,'192.168.64.1',2,36,30209,NULL,'HAProxy Frontend {#PXNAME}: Request errors per second','clc93sisl00004xiyevwovlv0',''),('clc93sism003j4xiy1b6i2d1d',1,'Admin',1672319399,'192.168.64.1',2,36,30210,NULL,'HAProxy Frontend {#PXNAME}: Number of responses with codes 1xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism003k4xiy3pxvhxvu',1,'Admin',1672319399,'192.168.64.1',2,36,30211,NULL,'HAProxy Frontend {#PXNAME}: Number of responses with codes 2xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism003l4xiy8flhfa3g',1,'Admin',1672319399,'192.168.64.1',2,36,30212,NULL,'HAProxy Frontend {#PXNAME}: Number of responses with codes 3xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism003m4xiyw15z45mk',1,'Admin',1672319399,'192.168.64.1',2,36,30213,NULL,'HAProxy Frontend {#PXNAME}: Number of responses with codes 4xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism003n4xiyu6s4v7hv',1,'Admin',1672319399,'192.168.64.1',2,36,30214,NULL,'HAProxy Frontend {#PXNAME}: Number of responses with codes 5xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism003o4xiyzzymnk8j',1,'Admin',1672319399,'192.168.64.1',2,36,30215,NULL,'HAProxy Frontend {#PXNAME}: Sessions rate','clc93sisl00004xiyevwovlv0',''),('clc93sism003p4xiyi4i3vzet',1,'Admin',1672319399,'192.168.64.1',2,36,30216,NULL,'HAProxy Frontend {#PXNAME}: Requests rate','clc93sisl00004xiyevwovlv0',''),('clc93sism003q4xiy1zn3eb4d',1,'Admin',1672319399,'192.168.64.1',2,36,30217,NULL,'HAProxy Frontend {#PXNAME}: Established sessions','clc93sisl00004xiyevwovlv0',''),('clc93sism003r4xiy6a4rx9h6',1,'Admin',1672319399,'192.168.64.1',2,36,30218,NULL,'HAProxy Frontend {#PXNAME}: Session limits','clc93sisl00004xiyevwovlv0',''),('clc93sism003s4xiyhhva3k6o',1,'Admin',1672319399,'192.168.64.1',2,36,35115,NULL,'HAProxy Frontend {#PXNAME}: Status','clc93sisl00004xiyevwovlv0',''),('clc93sism003t4xiyzks24zxr',1,'Admin',1672319399,'192.168.64.1',2,36,30219,NULL,'HAProxy {#PXNAME} {#SVNAME}: Responses denied per second','clc93sisl00004xiyevwovlv0',''),('clc93sism003u4xiy0pd8xmr5',1,'Admin',1672319399,'192.168.64.1',2,36,30220,NULL,'HAProxy {#PXNAME} {#SVNAME}: Errors connection per second','clc93sisl00004xiyevwovlv0',''),('clc93sism003v4xiyb9qu0g6s',1,'Admin',1672319399,'192.168.64.1',2,36,30221,NULL,'HAProxy {#PXNAME} {#SVNAME}: Response errors per second','clc93sisl00004xiyevwovlv0',''),('clc93sism003w4xiyulepa0ms',1,'Admin',1672319399,'192.168.64.1',2,36,30222,NULL,'HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 4xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism003x4xiyil8p24t1',1,'Admin',1672319399,'192.168.64.1',2,36,30223,NULL,'HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 5xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism003y4xiymctz247e',1,'Admin',1672319399,'192.168.64.1',2,36,30224,NULL,'HAProxy {#PXNAME} {#SVNAME}: Unassigned requests','clc93sisl00004xiyevwovlv0',''),('clc93sism003z4xiyv4hr2d5m',1,'Admin',1672319399,'192.168.64.1',2,36,30225,NULL,'HAProxy {#PXNAME} {#SVNAME}: Time in queue','clc93sisl00004xiyevwovlv0',''),('clc93sism00404xiyshu68rlx',1,'Admin',1672319399,'192.168.64.1',2,36,30226,NULL,'HAProxy {#PXNAME} {#SVNAME}: Responses time','clc93sisl00004xiyevwovlv0',''),('clc93sism00414xiytvx8z5cr',1,'Admin',1672319399,'192.168.64.1',2,36,30227,NULL,'HAProxy {#PXNAME} {#SVNAME}: Status','clc93sisl00004xiyevwovlv0',''),('clc93sism00424xiypew4jbu5',1,'Admin',1672319399,'192.168.64.1',2,36,30228,NULL,'HAProxy {#PXNAME} {#SVNAME}: Redispatched requests per second','clc93sisl00004xiyevwovlv0',''),('clc93sism00434xiyz0khlj98',1,'Admin',1672319399,'192.168.64.1',2,36,30229,NULL,'HAProxy {#PXNAME} {#SVNAME}: Retried connections per second','clc93sisl00004xiyevwovlv0',''),('clc93sism00444xiyvil2xnf6',1,'Admin',1672319399,'192.168.64.1',2,36,35116,NULL,'HAProxy {#PXNAME} {#SVNAME}: Server is active','clc93sisl00004xiyevwovlv0',''),('clc93sism00454xiy6r7icv5b',1,'Admin',1672319399,'192.168.64.1',2,36,35117,NULL,'HAProxy {#PXNAME} {#SVNAME}: Weight','clc93sisl00004xiyevwovlv0',''),('clc93sism00464xiy6mekioj0',1,'Admin',1672319399,'192.168.64.1',2,36,35118,NULL,'HAProxy {#PXNAME} {#SVNAME}: Sessions per second','clc93sisl00004xiyevwovlv0',''),('clc93sism00474xiyl9fd9dzw',1,'Admin',1672319399,'192.168.64.1',2,36,35119,NULL,'HAProxy {#PXNAME} {#SVNAME}: Configured maxqueue','clc93sisl00004xiyevwovlv0',''),('clc93sism00484xiyetis5iu2',1,'Admin',1672319399,'192.168.64.1',2,36,35120,NULL,'HAProxy {#PXNAME} {#SVNAME}: Server was selected per second','clc93sisl00004xiyevwovlv0',''),('clc93sism00494xiy2pvowtsi',1,'Admin',1672319399,'192.168.64.1',2,36,35121,NULL,'HAProxy {#PXNAME} {#SVNAME}: Server is backup','clc93sisl00004xiyevwovlv0',''),('clc93sism004a4xiymsgii8f1',1,'Admin',1672319399,'192.168.64.1',2,36,35122,NULL,'HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 3xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism004b4xiyna75gdd1',1,'Admin',1672319399,'192.168.64.1',2,36,35123,NULL,'HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 2xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism004c4xiy0eo7za27',1,'Admin',1672319399,'192.168.64.1',2,36,35124,NULL,'HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 1xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism004d4xiycwc6mncn',1,'Admin',1672319399,'192.168.64.1',2,36,35125,NULL,'HAProxy {#PXNAME} {#SVNAME}: Status of last health check','clc93sisl00004xiyevwovlv0',''),('clc93sism004e4xiys6oh0zwn',1,'Admin',1672319399,'192.168.64.1',2,36,35126,NULL,'HAProxy {#PXNAME} {#SVNAME}: Outgoing traffic','clc93sisl00004xiyevwovlv0',''),('clc93sism004f4xiyqq7jocot',1,'Admin',1672319399,'192.168.64.1',2,36,35127,NULL,'HAProxy {#PXNAME} {#SVNAME}: Incoming traffic','clc93sisl00004xiyevwovlv0',''),('clc93sism004g4xiyqtwy07i6',1,'Admin',1672319399,'192.168.64.1',2,36,30240,NULL,'HAProxy Backend {#PXNAME}: Responses denied per second','clc93sisl00004xiyevwovlv0',''),('clc93sism004h4xiy04ue6dsr',1,'Admin',1672319399,'192.168.64.1',2,36,30241,NULL,'HAProxy Backend {#PXNAME}: Errors connection per second','clc93sisl00004xiyevwovlv0',''),('clc93sism004i4xiy9zrz1hi6',1,'Admin',1672319399,'192.168.64.1',2,36,30242,NULL,'HAProxy Backend {#PXNAME}: Response errors per second','clc93sisl00004xiyevwovlv0',''),('clc93sism004j4xiyjsm5k8ra',1,'Admin',1672319399,'192.168.64.1',2,36,30243,NULL,'HAProxy Backend {#PXNAME}: Unassigned requests','clc93sisl00004xiyevwovlv0',''),('clc93sism004k4xiyz2vilx4a',1,'Admin',1672319399,'192.168.64.1',2,36,30244,NULL,'HAProxy Backend {#PXNAME}: Time in queue','clc93sisl00004xiyevwovlv0',''),('clc93sism004l4xiyy013hkl9',1,'Admin',1672319399,'192.168.64.1',2,36,30245,NULL,'HAProxy Backend {#PXNAME}: Responses time','clc93sisl00004xiyevwovlv0',''),('clc93sism004m4xiy6yfxsd27',1,'Admin',1672319399,'192.168.64.1',2,36,30246,NULL,'HAProxy Backend {#PXNAME}: Status','clc93sisl00004xiyevwovlv0',''),('clc93sism004n4xiygj37ye22',1,'Admin',1672319399,'192.168.64.1',2,36,30247,NULL,'HAProxy Backend {#PXNAME}: Redispatched requests per second','clc93sisl00004xiyevwovlv0',''),('clc93sism004o4xiyjizcse2u',1,'Admin',1672319399,'192.168.64.1',2,36,30248,NULL,'HAProxy Backend {#PXNAME}: Retried connections per second','clc93sisl00004xiyevwovlv0',''),('clc93sism004p4xiyjxovg1fl',1,'Admin',1672319399,'192.168.64.1',2,36,35129,NULL,'HAProxy Backend {#PXNAME}: Number of active servers','clc93sisl00004xiyevwovlv0',''),('clc93sism004q4xiy98myaldm',1,'Admin',1672319399,'192.168.64.1',2,36,35130,NULL,'HAProxy Backend {#PXNAME}: Number of responses with codes 5xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism004r4xiyzew3nawi',1,'Admin',1672319399,'192.168.64.1',2,36,35131,NULL,'HAProxy Backend {#PXNAME}: Weight','clc93sisl00004xiyevwovlv0',''),('clc93sism004s4xiya2rmz93w',1,'Admin',1672319399,'192.168.64.1',2,36,35132,NULL,'HAProxy Backend {#PXNAME}: Sessions per second','clc93sisl00004xiyevwovlv0',''),('clc93sism004t4xiytqu1m04x',1,'Admin',1672319399,'192.168.64.1',2,36,35133,NULL,'HAProxy Backend {#PXNAME}: Number of responses with codes 4xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism004u4xiybehzbtk5',1,'Admin',1672319399,'192.168.64.1',2,36,35134,NULL,'HAProxy Backend {#PXNAME}: Number of backup servers','clc93sisl00004xiyevwovlv0',''),('clc93sism004v4xiyzbck4c9u',1,'Admin',1672319399,'192.168.64.1',2,36,35135,NULL,'HAProxy Backend {#PXNAME}: Number of responses with codes 3xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism004w4xiyy8vjoeuo',1,'Admin',1672319399,'192.168.64.1',2,36,35136,NULL,'HAProxy Backend {#PXNAME}: Number of responses with codes 2xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism004x4xiywvufcufb',1,'Admin',1672319399,'192.168.64.1',2,36,35137,NULL,'HAProxy Backend {#PXNAME}: Number of responses with codes 1xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism004y4xiyoum4m62z',1,'Admin',1672319399,'192.168.64.1',2,36,35138,NULL,'HAProxy Backend {#PXNAME}: Outgoing traffic','clc93sisl00004xiyevwovlv0',''),('clc93sism004z4xiykzb6l5th',1,'Admin',1672319399,'192.168.64.1',2,36,35139,NULL,'HAProxy Backend {#PXNAME}: Incoming traffic','clc93sisl00004xiyevwovlv0',''),('clc93sism00504xiyat1bonqd',1,'Admin',1672319399,'192.168.64.1',2,36,30239,NULL,'HAProxy Frontend {#PXNAME}: Session utilization','clc93sisl00004xiyevwovlv0',''),('clc93sism00514xiyvtnmbf6r',1,'Admin',1672319399,'192.168.64.1',2,36,30249,NULL,'HAProxy Frontend {#PXNAME}: Incoming traffic','clc93sisl00004xiyevwovlv0',''),('clc93sism00524xiyva0ea3u4',1,'Admin',1672319399,'192.168.64.1',2,36,30250,NULL,'HAProxy Frontend {#PXNAME}: Outgoing traffic','clc93sisl00004xiyevwovlv0',''),('clc93sism00534xiy1amcqp5n',1,'Admin',1672319399,'192.168.64.1',2,36,30251,NULL,'HAProxy Frontend {#PXNAME}: Denied requests per second','clc93sisl00004xiyevwovlv0',''),('clc93sism00544xiy1ookoxm8',1,'Admin',1672319399,'192.168.64.1',2,36,30252,NULL,'HAProxy Frontend {#PXNAME}: Request errors per second','clc93sisl00004xiyevwovlv0',''),('clc93sism00554xiy62hv9vv6',1,'Admin',1672319399,'192.168.64.1',2,36,30253,NULL,'HAProxy Frontend {#PXNAME}: Number of responses with codes 1xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism00564xiynazs93ox',1,'Admin',1672319399,'192.168.64.1',2,36,30254,NULL,'HAProxy Frontend {#PXNAME}: Number of responses with codes 2xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism00574xiy1r64vrs6',1,'Admin',1672319399,'192.168.64.1',2,36,30255,NULL,'HAProxy Frontend {#PXNAME}: Number of responses with codes 3xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism00584xiy1np47152',1,'Admin',1672319399,'192.168.64.1',2,36,30256,NULL,'HAProxy Frontend {#PXNAME}: Number of responses with codes 4xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism00594xiynsw058cf',1,'Admin',1672319399,'192.168.64.1',2,36,30257,NULL,'HAProxy Frontend {#PXNAME}: Number of responses with codes 5xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism005a4xiyygtu8gpc',1,'Admin',1672319399,'192.168.64.1',2,36,30258,NULL,'HAProxy Frontend {#PXNAME}: Sessions rate','clc93sisl00004xiyevwovlv0',''),('clc93sism005b4xiybijw2owk',1,'Admin',1672319399,'192.168.64.1',2,36,30259,NULL,'HAProxy Frontend {#PXNAME}: Requests rate','clc93sisl00004xiyevwovlv0',''),('clc93sism005c4xiyv8h45wlu',1,'Admin',1672319399,'192.168.64.1',2,36,30260,NULL,'HAProxy Frontend {#PXNAME}: Established sessions','clc93sisl00004xiyevwovlv0',''),('clc93sism005d4xiygfnzy5ws',1,'Admin',1672319399,'192.168.64.1',2,36,30261,NULL,'HAProxy Frontend {#PXNAME}: Session limits','clc93sisl00004xiyevwovlv0',''),('clc93sism005e4xiyervqg04i',1,'Admin',1672319399,'192.168.64.1',2,36,35140,NULL,'HAProxy Frontend {#PXNAME}: Status','clc93sisl00004xiyevwovlv0',''),('clc93sism005f4xiy95i5w4jm',1,'Admin',1672319399,'192.168.64.1',2,36,30262,NULL,'HAProxy {#PXNAME} {#SVNAME}: Responses denied per second','clc93sisl00004xiyevwovlv0',''),('clc93sism005g4xiygl55n6r1',1,'Admin',1672319399,'192.168.64.1',2,36,30263,NULL,'HAProxy {#PXNAME} {#SVNAME}: Errors connection per second','clc93sisl00004xiyevwovlv0',''),('clc93sism005h4xiyf31ex90w',1,'Admin',1672319399,'192.168.64.1',2,36,30264,NULL,'HAProxy {#PXNAME} {#SVNAME}: Response errors per second','clc93sisl00004xiyevwovlv0',''),('clc93sism005i4xiy6bo0iany',1,'Admin',1672319399,'192.168.64.1',2,36,30265,NULL,'HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 4xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism005j4xiy9mjmqiev',1,'Admin',1672319399,'192.168.64.1',2,36,30266,NULL,'HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 5xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism005k4xiyow51z92o',1,'Admin',1672319399,'192.168.64.1',2,36,30267,NULL,'HAProxy {#PXNAME} {#SVNAME}: Unassigned requests','clc93sisl00004xiyevwovlv0',''),('clc93sism005l4xiyrour3tbf',1,'Admin',1672319399,'192.168.64.1',2,36,30268,NULL,'HAProxy {#PXNAME} {#SVNAME}: Time in queue','clc93sisl00004xiyevwovlv0',''),('clc93sism005m4xiysljuy1nv',1,'Admin',1672319399,'192.168.64.1',2,36,30269,NULL,'HAProxy {#PXNAME} {#SVNAME}: Responses time','clc93sisl00004xiyevwovlv0',''),('clc93sism005n4xiyhwvji6bn',1,'Admin',1672319399,'192.168.64.1',2,36,30270,NULL,'HAProxy {#PXNAME} {#SVNAME}: Status','clc93sisl00004xiyevwovlv0',''),('clc93sism005o4xiya5y6lk5q',1,'Admin',1672319399,'192.168.64.1',2,36,30271,NULL,'HAProxy {#PXNAME} {#SVNAME}: Redispatched requests per second','clc93sisl00004xiyevwovlv0',''),('clc93sism005p4xiyl50k5lnx',1,'Admin',1672319399,'192.168.64.1',2,36,30272,NULL,'HAProxy {#PXNAME} {#SVNAME}: Retried connections per second','clc93sisl00004xiyevwovlv0',''),('clc93sism005q4xiyfivpdlqc',1,'Admin',1672319399,'192.168.64.1',2,36,35141,NULL,'HAProxy {#PXNAME} {#SVNAME}: Server is active','clc93sisl00004xiyevwovlv0',''),('clc93sism005r4xiy118144p5',1,'Admin',1672319399,'192.168.64.1',2,36,35142,NULL,'HAProxy {#PXNAME} {#SVNAME}: Weight','clc93sisl00004xiyevwovlv0',''),('clc93sism005s4xiy86di537c',1,'Admin',1672319399,'192.168.64.1',2,36,35143,NULL,'HAProxy {#PXNAME} {#SVNAME}: Sessions per second','clc93sisl00004xiyevwovlv0',''),('clc93sism005t4xiyllxt9l55',1,'Admin',1672319399,'192.168.64.1',2,36,35144,NULL,'HAProxy {#PXNAME} {#SVNAME}: Configured maxqueue','clc93sisl00004xiyevwovlv0',''),('clc93sism005u4xiyjicrsg33',1,'Admin',1672319399,'192.168.64.1',2,36,35145,NULL,'HAProxy {#PXNAME} {#SVNAME}: Server was selected per second','clc93sisl00004xiyevwovlv0',''),('clc93sism005v4xiyocyw7yuo',1,'Admin',1672319399,'192.168.64.1',2,36,35146,NULL,'HAProxy {#PXNAME} {#SVNAME}: Server is backup','clc93sisl00004xiyevwovlv0',''),('clc93sism005w4xiyu8q43jkq',1,'Admin',1672319399,'192.168.64.1',2,36,35147,NULL,'HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 3xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism005x4xiy4fmrx0o8',1,'Admin',1672319399,'192.168.64.1',2,36,35148,NULL,'HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 2xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism005y4xiyqgodxfd5',1,'Admin',1672319399,'192.168.64.1',2,36,35149,NULL,'HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 1xx per second','clc93sisl00004xiyevwovlv0',''),('clc93sism005z4xiynzfcr2gc',1,'Admin',1672319399,'192.168.64.1',2,36,35150,NULL,'HAProxy {#PXNAME} {#SVNAME}: Status of last health check','clc93sisl00004xiyevwovlv0',''),('clc93sism00604xiyivu2uqck',1,'Admin',1672319399,'192.168.64.1',2,36,35151,NULL,'HAProxy {#PXNAME} {#SVNAME}: Outgoing traffic','clc93sisl00004xiyevwovlv0',''),('clc93sism00614xiynv4yq49o',1,'Admin',1672319399,'192.168.64.1',2,36,35152,NULL,'HAProxy {#PXNAME} {#SVNAME}: Incoming traffic','clc93sisl00004xiyevwovlv0',''),('clc93sism00624xiy9fkq12pi',1,'Admin',1672319399,'192.168.64.1',2,36,30573,NULL,'Container {#NAME}: Get stats','clc93sisl00004xiyevwovlv0',''),('clc93sism00634xiybyfa43oc',1,'Admin',1672319399,'192.168.64.1',2,36,30574,NULL,'Container {#NAME}: Get info','clc93sisl00004xiyevwovlv0',''),('clc93sism00644xiyrxegv573',1,'Admin',1672319399,'192.168.64.1',2,36,30575,NULL,'Container {#NAME}: Online CPUs','clc93sisl00004xiyevwovlv0',''),('clc93sism00654xiy7swim7p9',1,'Admin',1672319399,'192.168.64.1',2,36,30576,NULL,'Container {#NAME}: Memory commit bytes','clc93sisl00004xiyevwovlv0',''),('clc93sism00664xiyk0jy54gz',1,'Admin',1672319399,'192.168.64.1',2,36,30577,NULL,'Container {#NAME}: Memory commit peak bytes','clc93sisl00004xiyevwovlv0',''),('clc93sism00674xiyttf3rqbf',1,'Admin',1672319399,'192.168.64.1',2,36,30578,NULL,'Container {#NAME}: Memory maximum usage','clc93sisl00004xiyevwovlv0',''),('clc93sism00684xiyeew52z7p',1,'Admin',1672319399,'192.168.64.1',2,36,30579,NULL,'Container {#NAME}: Memory private working set','clc93sisl00004xiyevwovlv0',''),('clc93sism00694xiy0e41dlq3',1,'Admin',1672319399,'192.168.64.1',2,36,30580,NULL,'Container {#NAME}: Memory usage','clc93sisl00004xiyevwovlv0',''),('clc93sism006a4xiy0u4k5751',1,'Admin',1672319399,'192.168.64.1',2,36,30581,NULL,'Container {#NAME}: Created','clc93sisl00004xiyevwovlv0',''),('clc93sism006b4xiyvrpsc9bt',1,'Admin',1672319399,'192.168.64.1',2,36,30582,NULL,'Container {#NAME}: CPU total usage per second','clc93sisl00004xiyevwovlv0',''),('clc93sism006c4xiy363uumij',1,'Admin',1672319399,'192.168.64.1',2,36,30583,NULL,'Container {#NAME}: Networks bytes received per second','clc93sisl00004xiyevwovlv0',''),('clc93sism006d4xiydcbj9a6x',1,'Admin',1672319399,'192.168.64.1',2,36,30584,NULL,'Container {#NAME}: Networks incoming packets dropped per second','clc93sisl00004xiyevwovlv0',''),('clc93sism006e4xiy4twjkuu2',1,'Admin',1672319399,'192.168.64.1',2,36,30585,NULL,'Container {#NAME}: Networks errors received per second','clc93sisl00004xiyevwovlv0',''),('clc93sism006f4xiyhuhmyfpm',1,'Admin',1672319399,'192.168.64.1',2,36,30586,NULL,'Container {#NAME}: Networks packets received per second','clc93sisl00004xiyevwovlv0',''),('clc93sism006g4xiyp0kvwcvf',1,'Admin',1672319399,'192.168.64.1',2,36,30587,NULL,'Container {#NAME}: Networks bytes sent per second','clc93sisl00004xiyevwovlv0',''),('clc93sism006h4xiye13jbtbr',1,'Admin',1672319399,'192.168.64.1',2,36,30588,NULL,'Container {#NAME}: Networks outgoing packets dropped per second','clc93sisl00004xiyevwovlv0',''),('clc93sism006i4xiyb6t3m5t7',1,'Admin',1672319399,'192.168.64.1',2,36,30589,NULL,'Container {#NAME}: Networks errors sent per second','clc93sisl00004xiyevwovlv0',''),('clc93sism006j4xiyox4b9tyl',1,'Admin',1672319399,'192.168.64.1',2,36,30590,NULL,'Container {#NAME}: CPU usermode usage per second','clc93sisl00004xiyevwovlv0',''),('clc93sism006k4xiyf7jg35nf',1,'Admin',1672319399,'192.168.64.1',2,36,30591,NULL,'Container {#NAME}: Throttling periods','clc93sisl00004xiyevwovlv0',''),('clc93sism006l4xiyg4m3ur96',1,'Admin',1672319399,'192.168.64.1',2,36,30592,NULL,'Container {#NAME}: Finished at','clc93sisl00004xiyevwovlv0',''),('clc93sism006m4xiy2dj3dgt5',1,'Admin',1672319399,'192.168.64.1',2,36,30593,NULL,'Container {#NAME}: OOMKilled','clc93sisl00004xiyevwovlv0',''),('clc93sism006n4xiy7u7ton0m',1,'Admin',1672319399,'192.168.64.1',2,36,30594,NULL,'Container {#NAME}: Image','clc93sisl00004xiyevwovlv0',''),('clc93sisn006o4xiyztd6cx8r',1,'Admin',1672319399,'192.168.64.1',2,36,30595,NULL,'Container {#NAME}: Restart count','clc93sisl00004xiyevwovlv0',''),('clc93sisn006p4xiyc1w6zo04',1,'Admin',1672319399,'192.168.64.1',2,36,30596,NULL,'Container {#NAME}: Started at','clc93sisl00004xiyevwovlv0',''),('clc93sisn006q4xiyk7mi28xk',1,'Admin',1672319399,'192.168.64.1',2,36,30597,NULL,'Container {#NAME}: Dead','clc93sisl00004xiyevwovlv0',''),('clc93sisn006r4xiy4dt1o327',1,'Admin',1672319399,'192.168.64.1',2,36,30598,NULL,'Container {#NAME}: Error','clc93sisl00004xiyevwovlv0',''),('clc93sisn006s4xiytperig0q',1,'Admin',1672319399,'192.168.64.1',2,36,30599,NULL,'Container {#NAME}: Exit code','clc93sisl00004xiyevwovlv0',''),('clc93sisn006t4xiyvmio4199',1,'Admin',1672319399,'192.168.64.1',2,36,30600,NULL,'Container {#NAME}: Paused','clc93sisl00004xiyevwovlv0',''),('clc93sisn006u4xiypmr6xi6f',1,'Admin',1672319399,'192.168.64.1',2,36,30601,NULL,'Container {#NAME}: Throttled time','clc93sisl00004xiyevwovlv0',''),('clc93sisn006v4xiyxtyz5yxg',1,'Admin',1672319399,'192.168.64.1',2,36,30602,NULL,'Container {#NAME}: Pid','clc93sisl00004xiyevwovlv0',''),('clc93sisn006w4xiyz7s0gcpl',1,'Admin',1672319399,'192.168.64.1',2,36,30603,NULL,'Container {#NAME}: Restarting','clc93sisl00004xiyevwovlv0',''),('clc93sisn006x4xiyqf87e5y1',1,'Admin',1672319399,'192.168.64.1',2,36,30604,NULL,'Container {#NAME}: Running','clc93sisl00004xiyevwovlv0',''),('clc93sisn006y4xiy7rydltv0',1,'Admin',1672319399,'192.168.64.1',2,36,30605,NULL,'Container {#NAME}: Status','clc93sisl00004xiyevwovlv0',''),('clc93sisn006z4xiyolnl2lzy',1,'Admin',1672319399,'192.168.64.1',2,36,30606,NULL,'Container {#NAME}: CPU kernelmode usage per second','clc93sisl00004xiyevwovlv0',''),('clc93sisn00704xiynoxqeqfn',1,'Admin',1672319399,'192.168.64.1',2,36,30607,NULL,'Container {#NAME}: Throttled periods','clc93sisl00004xiyevwovlv0',''),('clc93sisn00714xiywpzhuf3e',1,'Admin',1672319399,'192.168.64.1',2,36,30608,NULL,'Container {#NAME}: Networks packets sent per second','clc93sisl00004xiyevwovlv0',''),('clc93sisn00724xiyi9ez9lbe',1,'Admin',1672319399,'192.168.64.1',2,36,39803,NULL,'Container {#NAME}: CPU percent usage','clc93sisl00004xiyevwovlv0',''),('clc93sisn00734xiyevxb89vq',1,'Admin',1672319399,'192.168.64.1',2,36,30609,NULL,'Image {#NAME}: Created','clc93sisl00004xiyevwovlv0',''),('clc93sisn00744xiy2s666hur',1,'Admin',1672319399,'192.168.64.1',2,36,30610,NULL,'Image {#NAME}: Size','clc93sisl00004xiyevwovlv0',''),('clc93sisn00754xiynb56t65f',1,'Admin',1672319399,'192.168.64.1',2,36,30714,NULL,'ES {#ES.NODE}: Query latency','clc93sisl00004xiyevwovlv0',''),('clc93sisn00764xiydamghw4k',1,'Admin',1672319399,'192.168.64.1',2,36,30715,NULL,'ES {#ES.NODE}: Flush latency','clc93sisl00004xiyevwovlv0',''),('clc93sisn00774xiykyzrxmun',1,'Admin',1672319399,'192.168.64.1',2,36,30716,NULL,'ES {#ES.NODE}: Indexing latency','clc93sisl00004xiyevwovlv0',''),('clc93sisn00784xiyvknireep',1,'Admin',1672319399,'192.168.64.1',2,36,30717,NULL,'ES {#ES.NODE}: Fetch latency','clc93sisl00004xiyevwovlv0',''),('clc93sisn00794xiyz1hj5fmo',1,'Admin',1672319399,'192.168.64.1',2,36,30718,NULL,'ES {#ES.NODE}: Refresh thread pool active threads','clc93sisl00004xiyevwovlv0',''),('clc93sisn007a4xiyfa7o9vtw',1,'Admin',1672319399,'192.168.64.1',2,36,30719,NULL,'ES {#ES.NODE}: Total number of query','clc93sisl00004xiyevwovlv0',''),('clc93sisn007b4xiygygrw8wq',1,'Admin',1672319399,'192.168.64.1',2,36,30720,NULL,'ES {#ES.NODE}: Rate of queries','clc93sisl00004xiyevwovlv0',''),('clc93sisn007c4xiyu9tqvxpl',1,'Admin',1672319399,'192.168.64.1',2,36,30721,NULL,'ES {#ES.NODE}: Amount of JVM heap committed','clc93sisl00004xiyevwovlv0',''),('clc93sisn007d4xiy2jocj8d6',1,'Admin',1672319399,'192.168.64.1',2,36,30722,NULL,'ES {#ES.NODE}: Maximum JVM memory available for use','clc93sisl00004xiyevwovlv0',''),('clc93sisn007e4xiy02si6m97',1,'Admin',1672319399,'192.168.64.1',2,36,30723,NULL,'ES {#ES.NODE}: Amount of JVM heap currently in use','clc93sisl00004xiyevwovlv0',''),('clc93sisn007f4xiyjtq20z6k',1,'Admin',1672319399,'192.168.64.1',2,36,30724,NULL,'ES {#ES.NODE}: Percent of JVM heap currently in use','clc93sisl00004xiyevwovlv0',''),('clc93sisn007g4xiyexpv33o8',1,'Admin',1672319399,'192.168.64.1',2,36,30725,NULL,'ES {#ES.NODE}: Node uptime','clc93sisl00004xiyevwovlv0',''),('clc93sisn007h4xiy5402h24o',1,'Admin',1672319399,'192.168.64.1',2,36,30726,NULL,'ES {#ES.NODE}: Total available size','clc93sisl00004xiyevwovlv0',''),('clc93sisn007i4xiyq82jhxpb',1,'Admin',1672319399,'192.168.64.1',2,36,30727,NULL,'ES {#ES.NODE}: Refresh thread pool executor tasks completed','clc93sisl00004xiyevwovlv0',''),('clc93sisn007j4xiyeccdzjrr',1,'Admin',1672319399,'192.168.64.1',2,36,30728,NULL,'ES {#ES.NODE}: Time spent performing query','clc93sisl00004xiyevwovlv0',''),('clc93sisn007k4xiykswqbrcz',1,'Admin',1672319399,'192.168.64.1',2,36,30729,NULL,'ES {#ES.NODE}: Refresh thread pool executor tasks rejected','clc93sisl00004xiyevwovlv0',''),('clc93sisn007l4xiyfd50wz8f',1,'Admin',1672319399,'192.168.64.1',2,36,30730,NULL,'ES {#ES.NODE}: Search thread pool active threads','clc93sisl00004xiyevwovlv0',''),('clc93sisn007m4xiyjdhrrpfj',1,'Admin',1672319399,'192.168.64.1',2,36,30731,NULL,'ES {#ES.NODE}: Search thread pool executor tasks completed','clc93sisl00004xiyevwovlv0',''),('clc93sisn007n4xiy3a2tg7eq',1,'Admin',1672319399,'192.168.64.1',2,36,30732,NULL,'ES {#ES.NODE}: Search thread pool tasks in queue','clc93sisl00004xiyevwovlv0',''),('clc93sisn007o4xiy3e82qv3o',1,'Admin',1672319399,'192.168.64.1',2,36,30733,NULL,'ES {#ES.NODE}: Search thread pool executor tasks rejected','clc93sisl00004xiyevwovlv0',''),('clc93sisn007p4xiy7mzwvjmx',1,'Admin',1672319399,'192.168.64.1',2,36,30734,NULL,'ES {#ES.NODE}: Write thread pool active threads','clc93sisl00004xiyevwovlv0',''),('clc93sisn007q4xiy7szu7223',1,'Admin',1672319399,'192.168.64.1',2,36,30735,NULL,'ES {#ES.NODE}: Write thread pool executor tasks completed','clc93sisl00004xiyevwovlv0',''),('clc93sisn007r4xiyllf6xiui',1,'Admin',1672319399,'192.168.64.1',2,36,30736,NULL,'ES {#ES.NODE}: Write thread pool tasks in queue','clc93sisl00004xiyevwovlv0',''),('clc93sisn007s4xiyejsayyyn',1,'Admin',1672319399,'192.168.64.1',2,36,30737,NULL,'ES {#ES.NODE}: Refresh thread pool tasks in queue','clc93sisl00004xiyevwovlv0',''),('clc93sisn007t4xiywbodmt5l',1,'Admin',1672319399,'192.168.64.1',2,36,30738,NULL,'ES {#ES.NODE}: Current query operations','clc93sisl00004xiyevwovlv0',''),('clc93sisn007u4xiyo6f9w8z7',1,'Admin',1672319399,'192.168.64.1',2,36,30739,NULL,'ES {#ES.NODE}: Total time spent performing query','clc93sisl00004xiyevwovlv0',''),('clc93sisn007v4xiy5ahnt2vh',1,'Admin',1672319399,'192.168.64.1',2,36,30740,NULL,'ES {#ES.NODE}: Time spent throttling operations','clc93sisl00004xiyevwovlv0',''),('clc93sisn007w4xiye85g0513',1,'Admin',1672319399,'192.168.64.1',2,36,30741,NULL,'ES {#ES.NODE}: Number of open HTTP connections','clc93sisl00004xiyevwovlv0',''),('clc93sisn007x4xiywkpjlszz',1,'Admin',1672319399,'192.168.64.1',2,36,30742,NULL,'ES {#ES.NODE}: Rate of HTTP connections opened','clc93sisl00004xiyevwovlv0',''),('clc93sisn007y4xiyc6tvtk5b',1,'Admin',1672319399,'192.168.64.1',2,36,30743,NULL,'ES {#ES.NODE}: Total time spent on flushing indices to disk','clc93sisl00004xiyevwovlv0',''),('clc93sisn007z4xiy89nlf5yn',1,'Admin',1672319399,'192.168.64.1',2,36,30744,NULL,'ES {#ES.NODE}: Total number of index flushes to disk','clc93sisl00004xiyevwovlv0',''),('clc93sisn00804xiyxmn5p7pm',1,'Admin',1672319399,'192.168.64.1',2,36,30745,NULL,'ES {#ES.NODE}: Current indexing operations','clc93sisl00004xiyevwovlv0',''),('clc93sisn00814xiydeg0tmop',1,'Admin',1672319399,'192.168.64.1',2,36,30746,NULL,'ES {#ES.NODE}: Total time spent performing indexing','clc93sisl00004xiyevwovlv0',''),('clc93sisn00824xiyvk17fnfb',1,'Admin',1672319399,'192.168.64.1',2,36,30747,NULL,'ES {#ES.NODE}: Total number of indexing','clc93sisl00004xiyevwovlv0',''),('clc93sisn00834xiyim7xi3ya',1,'Admin',1672319399,'192.168.64.1',2,36,30748,NULL,'ES {#ES.NODE}: Time spent throttling merge operations','clc93sisl00004xiyevwovlv0',''),('clc93sisn00844xiyn8j19bzi',1,'Admin',1672319399,'192.168.64.1',2,36,30749,NULL,'ES {#ES.NODE}: Total size','clc93sisl00004xiyevwovlv0',''),('clc93sisn00854xiyo884al34',1,'Admin',1672319399,'192.168.64.1',2,36,30750,NULL,'ES {#ES.NODE}: Time spent throttling recovery operations','clc93sisl00004xiyevwovlv0',''),('clc93sisn00864xiyga6kz7fa',1,'Admin',1672319399,'192.168.64.1',2,36,30751,NULL,'ES {#ES.NODE}: Rate of index refreshes','clc93sisl00004xiyevwovlv0',''),('clc93sisn00874xiyt92g88sa',1,'Admin',1672319399,'192.168.64.1',2,36,30752,NULL,'ES {#ES.NODE}: Time spent performing refresh','clc93sisl00004xiyevwovlv0',''),('clc93sisn00884xiygs0pp6fp',1,'Admin',1672319399,'192.168.64.1',2,36,30753,NULL,'ES {#ES.NODE}: Current fetch operations','clc93sisl00004xiyevwovlv0',''),('clc93sisn00894xiyo5mo4uo2',1,'Admin',1672319399,'192.168.64.1',2,36,30754,NULL,'ES {#ES.NODE}: Total time spent performing fetch','clc93sisl00004xiyevwovlv0',''),('clc93sisn008a4xiy48o2qlk8',1,'Admin',1672319399,'192.168.64.1',2,36,30755,NULL,'ES {#ES.NODE}: Time spent performing fetch','clc93sisl00004xiyevwovlv0',''),('clc93sisn008b4xiy7ftw1vb8',1,'Admin',1672319399,'192.168.64.1',2,36,30756,NULL,'ES {#ES.NODE}: Total number of fetch','clc93sisl00004xiyevwovlv0',''),('clc93sisn008c4xiyyp2m41sk',1,'Admin',1672319399,'192.168.64.1',2,36,30757,NULL,'ES {#ES.NODE}: Rate of fetch','clc93sisl00004xiyevwovlv0',''),('clc93sisn008d4xiyvb9k89ib',1,'Admin',1672319399,'192.168.64.1',2,36,30758,NULL,'ES {#ES.NODE}: Write thread pool executor tasks rejected','clc93sisl00004xiyevwovlv0',''),('clc93sisn008e4xiyzhuxk7cd',1,'Admin',1672319399,'192.168.64.1',2,36,30877,NULL,'ClickHouse: Dictionary {#NAME}: Bytes allocated','clc93sisl00004xiyevwovlv0',''),('clc93sisn008f4xiy8458abnd',1,'Admin',1672319399,'192.168.64.1',2,36,30878,NULL,'ClickHouse: Dictionary {#NAME}: Element count','clc93sisl00004xiyevwovlv0',''),('clc93sisn008g4xiyf7bx8914',1,'Admin',1672319399,'192.168.64.1',2,36,30879,NULL,'ClickHouse: Dictionary {#NAME}: Load factor','clc93sisl00004xiyevwovlv0',''),('clc93sisn008h4xiyh9on464r',1,'Admin',1672319399,'192.168.64.1',2,36,30880,NULL,'ClickHouse: {#DB}.{#TABLE}: Active replicas','clc93sisl00004xiyevwovlv0',''),('clc93sisn008i4xiyy8yopde7',1,'Admin',1672319399,'192.168.64.1',2,36,30881,NULL,'ClickHouse: {#DB}.{#TABLE}: Replica future parts','clc93sisl00004xiyevwovlv0',''),('clc93sisn008j4xiy9yamfcxn',1,'Admin',1672319399,'192.168.64.1',2,36,30882,NULL,'ClickHouse: {#DB}.{#TABLE}: Replica queue inserts size','clc93sisl00004xiyevwovlv0',''),('clc93sisn008k4xiyw7mp9m4r',1,'Admin',1672319399,'192.168.64.1',2,36,30883,NULL,'ClickHouse: {#DB}.{#TABLE}: Replica readonly','clc93sisl00004xiyevwovlv0',''),('clc93sisn008l4xiydz354i9x',1,'Admin',1672319399,'192.168.64.1',2,36,30884,NULL,'ClickHouse: {#DB}.{#TABLE}: Replica session expired','clc93sisl00004xiyevwovlv0',''),('clc93sisn008m4xiygnof7gpl',1,'Admin',1672319399,'192.168.64.1',2,36,30885,NULL,'ClickHouse: {#DB}.{#TABLE}: Replica lag','clc93sisl00004xiyevwovlv0',''),('clc93sisn008n4xiydr8yf1u8',1,'Admin',1672319399,'192.168.64.1',2,36,30886,NULL,'ClickHouse: {#DB}.{#TABLE}: Replica log max index','clc93sisl00004xiyevwovlv0',''),('clc93sisn008o4xiy1qowp212',1,'Admin',1672319399,'192.168.64.1',2,36,30887,NULL,'ClickHouse: {#DB}.{#TABLE}: Replica log pointer','clc93sisl00004xiyevwovlv0',''),('clc93sisn008p4xiy92y8xcsr',1,'Admin',1672319399,'192.168.64.1',2,36,30888,NULL,'ClickHouse: {#DB}.{#TABLE}: Replica queue merges size','clc93sisl00004xiyevwovlv0',''),('clc93sisn008q4xiy5v9sjj8n',1,'Admin',1672319399,'192.168.64.1',2,36,30889,NULL,'ClickHouse: {#DB}.{#TABLE}: Replica parts to check','clc93sisl00004xiyevwovlv0',''),('clc93sisn008r4xiyrk48uurb',1,'Admin',1672319399,'192.168.64.1',2,36,30890,NULL,'ClickHouse: {#DB}.{#TABLE}: Replica queue size','clc93sisl00004xiyevwovlv0',''),('clc93sisn008s4xiyfytrb1j9',1,'Admin',1672319399,'192.168.64.1',2,36,30891,NULL,'ClickHouse: {#DB}.{#TABLE}: Total replicas','clc93sisl00004xiyevwovlv0',''),('clc93sisn008t4xiytlxzcqek',1,'Admin',1672319399,'192.168.64.1',2,36,30892,NULL,'ClickHouse: {#DB}: Bytes','clc93sisl00004xiyevwovlv0',''),('clc93sisn008u4xiy17czcep1',1,'Admin',1672319399,'192.168.64.1',2,36,30893,NULL,'ClickHouse: {#DB}.{#TABLE}: Bytes','clc93sisl00004xiyevwovlv0',''),('clc93sisn008v4xiyl70vgajo',1,'Admin',1672319399,'192.168.64.1',2,36,30894,NULL,'ClickHouse: {#DB}.{#TABLE}: Parts','clc93sisl00004xiyevwovlv0',''),('clc93sisn008w4xiyt5xaxakw',1,'Admin',1672319399,'192.168.64.1',2,36,30895,NULL,'ClickHouse: {#DB}.{#TABLE}: Rows','clc93sisl00004xiyevwovlv0',''),('clc93sisn008x4xiyh8l7nkbt',1,'Admin',1672319399,'192.168.64.1',2,36,30963,NULL,'Etcd: RPCs completed with code {#GRPC.CODE}','clc93sisl00004xiyevwovlv0',''),('clc93sisn008y4xiynizga9f2',1,'Admin',1672319399,'192.168.64.1',2,36,30964,NULL,'Etcd: Etcd peer {#ETCD.PEER}: Bytes received','clc93sisl00004xiyevwovlv0',''),('clc93sisn008z4xiyu8uxr67c',1,'Admin',1672319399,'192.168.64.1',2,36,30965,NULL,'Etcd: Etcd peer {#ETCD.PEER}: Bytes sent','clc93sisl00004xiyevwovlv0',''),('clc93sisn00904xiyazxhms7q',1,'Admin',1672319399,'192.168.64.1',2,36,30966,NULL,'Etcd: Etcd peer {#ETCD.PEER}: Receive failures','clc93sisl00004xiyevwovlv0',''),('clc93sisn00914xiywcxntof8',1,'Admin',1672319399,'192.168.64.1',2,36,30967,NULL,'Etcd: Etcd peer {#ETCD.PEER}: Send failures','clc93sisl00004xiyevwovlv0',''),('clc93sisn00924xiydo6uxbud',1,'Admin',1672319399,'192.168.64.1',2,36,32621,NULL,'GitLab: Active connections','clc93sisl00004xiyevwovlv0',''),('clc93sisn00934xiyxmfxx9nt',1,'Admin',1672319399,'192.168.64.1',2,36,32622,NULL,'GitLab: Idle threads','clc93sisl00004xiyevwovlv0',''),('clc93sisn00944xiyfuqvvt5d',1,'Admin',1672319399,'192.168.64.1',2,36,32623,NULL,'GitLab: Killer terminations, total','clc93sisl00004xiyevwovlv0',''),('clc93sisn00954xiyd8plbjy5',1,'Admin',1672319399,'192.168.64.1',2,36,32624,NULL,'GitLab: Max threads','clc93sisl00004xiyevwovlv0',''),('clc93sisn00964xiykid0faja',1,'Admin',1672319399,'192.168.64.1',2,36,32625,NULL,'GitLab: Pool capacity','clc93sisl00004xiyevwovlv0',''),('clc93sisn00974xiyeaoccdiw',1,'Admin',1672319399,'192.168.64.1',2,36,32626,NULL,'GitLab: Queued connections','clc93sisl00004xiyevwovlv0',''),('clc93sisn00984xiycy7gto6j',1,'Admin',1672319399,'192.168.64.1',2,36,32627,NULL,'GitLab: Running threads','clc93sisl00004xiyevwovlv0',''),('clc93sisn00994xiy6dae6zqi',1,'Admin',1672319399,'192.168.64.1',2,36,32628,NULL,'GitLab: Running workers','clc93sisl00004xiyevwovlv0',''),('clc93sisn009a4xiymqnr6d2s',1,'Admin',1672319399,'192.168.64.1',2,36,32629,NULL,'GitLab: Stale workers','clc93sisl00004xiyevwovlv0',''),('clc93sisn009b4xiyoldcrpr0',1,'Admin',1672319399,'192.168.64.1',2,36,32630,NULL,'GitLab: Workers','clc93sisl00004xiyevwovlv0',''),('clc93sisn009c4xiy2wmfkgoe',1,'Admin',1672319399,'192.168.64.1',2,36,32631,NULL,'GitLab: Unicorn: Active connections','clc93sisl00004xiyevwovlv0',''),('clc93sisn009d4xiyfunvampl',1,'Admin',1672319399,'192.168.64.1',2,36,32632,NULL,'GitLab: Unicorn: Queued connections','clc93sisl00004xiyevwovlv0',''),('clc93sisn009e4xiyi0qylf6x',1,'Admin',1672319399,'192.168.64.1',2,36,32633,NULL,'GitLab: Unicorn: Workers','clc93sisl00004xiyevwovlv0',''),('clc93sisn009f4xiydc9wbv6f',1,'Admin',1672319399,'192.168.64.1',2,36,32670,NULL,'Hadoop DataNode {#HOSTNAME}: Get stats','clc93sisl00004xiyevwovlv0',''),('clc93sisn009g4xiywbzwhq5c',1,'Admin',1672319399,'192.168.64.1',2,36,32672,NULL,'{#HOSTNAME}: Admin state','clc93sisl00004xiyevwovlv0',''),('clc93sisn009h4xiyyz24m462',1,'Admin',1672319399,'192.168.64.1',2,36,32673,NULL,'{#HOSTNAME}: Used','clc93sisl00004xiyevwovlv0',''),('clc93sisn009i4xiy0tadn1q3',1,'Admin',1672319399,'192.168.64.1',2,36,32674,NULL,'{#HOSTNAME}: JVM Garbage collection time','clc93sisl00004xiyevwovlv0',''),('clc93sisn009j4xiy87i3q2jj',1,'Admin',1672319399,'192.168.64.1',2,36,32675,NULL,'{#HOSTNAME}: JVM Heap usage','clc93sisl00004xiyevwovlv0',''),('clc93sisn009k4xiyzh2cip1r',1,'Admin',1672319399,'192.168.64.1',2,36,32676,NULL,'{#HOSTNAME}: JVM Threads','clc93sisl00004xiyevwovlv0',''),('clc93sisn009l4xiycktplm97',1,'Admin',1672319399,'192.168.64.1',2,36,32677,NULL,'{#HOSTNAME}: Number of failed volumes','clc93sisl00004xiyevwovlv0',''),('clc93sisn009m4xiyb9nkgxci',1,'Admin',1672319399,'192.168.64.1',2,36,32678,NULL,'{#HOSTNAME}: Oper state','clc93sisl00004xiyevwovlv0',''),('clc93sisn009n4xiy2lupgb0r',1,'Admin',1672319399,'192.168.64.1',2,36,32679,NULL,'{#HOSTNAME}: Remaining','clc93sisl00004xiyevwovlv0',''),('clc93sisn009o4xiyrgddacxa',1,'Admin',1672319399,'192.168.64.1',2,36,32680,NULL,'{#HOSTNAME}: Uptime','clc93sisl00004xiyevwovlv0',''),('clc93sisn009p4xiyl609v8tx',1,'Admin',1672319399,'192.168.64.1',2,36,32681,NULL,'{#HOSTNAME}: Version','clc93sisl00004xiyevwovlv0',''),('clc93sisn009q4xiy9zown2h9',1,'Admin',1672319399,'192.168.64.1',2,36,32671,NULL,'Hadoop NodeManager {#HOSTNAME}: Get stats','clc93sisl00004xiyevwovlv0',''),('clc93sisn009r4xiyfki6wbgm',1,'Admin',1672319399,'192.168.64.1',2,36,32682,NULL,'{#HOSTNAME}: Available memory','clc93sisl00004xiyevwovlv0',''),('clc93sisn009s4xiyog5c1mvg',1,'Admin',1672319399,'192.168.64.1',2,36,32683,NULL,'{#HOSTNAME}: Container launch avg duration','clc93sisl00004xiyevwovlv0',''),('clc93sisn009t4xiyn21wyqlt',1,'Admin',1672319399,'192.168.64.1',2,36,32684,NULL,'{#HOSTNAME}: JVM Garbage collection time','clc93sisl00004xiyevwovlv0',''),('clc93sisn009u4xiyj31fkaqh',1,'Admin',1672319399,'192.168.64.1',2,36,32685,NULL,'{#HOSTNAME}: JVM Heap usage','clc93sisl00004xiyevwovlv0',''),('clc93sisn009v4xiy5sxg0kbc',1,'Admin',1672319399,'192.168.64.1',2,36,32686,NULL,'{#HOSTNAME}: JVM Threads','clc93sisl00004xiyevwovlv0',''),('clc93sisn009w4xiynlu0p8gl',1,'Admin',1672319399,'192.168.64.1',2,36,32687,NULL,'{#HOSTNAME}: Number of containers','clc93sisl00004xiyevwovlv0',''),('clc93sisn009x4xiyykv64do8',1,'Admin',1672319399,'192.168.64.1',2,36,32688,NULL,'{#HOSTNAME}: RPC queue & processing time','clc93sisl00004xiyevwovlv0',''),('clc93sisn009y4xiy63lwhep5',1,'Admin',1672319399,'192.168.64.1',2,36,32689,NULL,'{#HOSTNAME}: State','clc93sisl00004xiyevwovlv0',''),('clc93sisn009z4xiy2f767lv8',1,'Admin',1672319399,'192.168.64.1',2,36,32690,NULL,'{#HOSTNAME}: Uptime','clc93sisl00004xiyevwovlv0',''),('clc93sisn00a04xiy304xp512',1,'Admin',1672319399,'192.168.64.1',2,36,32691,NULL,'{#HOSTNAME}: Used memory','clc93sisl00004xiyevwovlv0',''),('clc93sisn00a14xiy98d0oajd',1,'Admin',1672319399,'192.168.64.1',2,36,32692,NULL,'{#HOSTNAME}: Version','clc93sisl00004xiyevwovlv0',''),('clc93sisn00a24xiy6vyi8pxr',1,'Admin',1672319399,'192.168.64.1',2,36,32874,NULL,'Vault: Rollback attempt [{#MOUNTPOINT}] ops, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00a34xiy7ok1yr9a',1,'Admin',1672319399,'192.168.64.1',2,36,32875,NULL,'Vault: Route rollback [{#MOUNTPOINT}] ops, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00a44xiyalkk3ibo',1,'Admin',1672319399,'192.168.64.1',2,36,32876,NULL,'Vault: Stream WAL guard found, count{#SINGLETON}','clc93sisl00004xiyevwovlv0',''),('clc93sisn00a54xiy2r43ogra',1,'Admin',1672319399,'192.168.64.1',2,36,32877,NULL,'Vault: Stream WAL missing guard, count{#SINGLETON}','clc93sisl00004xiyevwovlv0',''),('clc93sisn00a64xiyp26mmhpc',1,'Admin',1672319399,'192.168.64.1',2,36,32878,NULL,'Vault: Last remote WAL{#SINGLETON}','clc93sisl00004xiyevwovlv0',''),('clc93sisn00a74xiy539mtfvf',1,'Admin',1672319399,'192.168.64.1',2,36,32879,NULL,'Vault: Merkle commit index{#SINGLETON}','clc93sisl00004xiyevwovlv0',''),('clc93sisn00a84xiy3lzh2u72',1,'Admin',1672319399,'192.168.64.1',2,36,32880,NULL,'Vault: Last DR WAL{#SINGLETON}','clc93sisl00004xiyevwovlv0',''),('clc93sisn00a94xiy8kntwsfv',1,'Admin',1672319399,'192.168.64.1',2,36,32881,NULL,'Vault: Last performance WAL{#SINGLETON}','clc93sisl00004xiyevwovlv0',''),('clc93sisn00aa4xiyi3g3iiup',1,'Admin',1672319399,'192.168.64.1',2,36,32882,NULL,'Vault: Last WAL{#SINGLETON}','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ab4xiy9q6whaft',1,'Admin',1672319399,'192.168.64.1',2,36,32883,NULL,'Vault: Storage [{#STORAGE}] {#OPERATION} ops, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ac4xiy0nz2dtdl',1,'Admin',1672319399,'192.168.64.1',2,36,32871,NULL,'Vault: Token [{#TOKEN_NAME}] error','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ad4xiyexfie3al',1,'Admin',1672319399,'192.168.64.1',2,36,32872,NULL,'Vault: Token [{#TOKEN_NAME}] has TTL','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ae4xiyrpc2xcjd',1,'Admin',1672319399,'192.168.64.1',2,36,32873,NULL,'Vault: Token [{#TOKEN_NAME}] TTL','clc93sisl00004xiyevwovlv0',''),('clc93sisn00af4xiy28gvivnd',1,'Admin',1672319399,'192.168.64.1',2,36,32884,NULL,'Vault: Delete WALs, count{#SINGLETON}','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ag4xiy1m7mkcua',1,'Admin',1672319399,'192.168.64.1',2,36,32885,NULL,'Vault: Flush ready WAL, count{#SINGLETON}','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ah4xiy7m63bjyb',1,'Admin',1672319399,'192.168.64.1',2,36,32886,NULL,'Vault: GC deleted WAL{#SINGLETON}','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ai4xiy6r0f6ic5',1,'Admin',1672319399,'192.168.64.1',2,36,32887,NULL,'Vault: WALs on disk, total{#SINGLETON}','clc93sisl00004xiyevwovlv0',''),('clc93sisn00aj4xiysdjjgbde',1,'Admin',1672319399,'192.168.64.1',2,36,32888,NULL,'Vault: Load WALs, count{#SINGLETON}','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ak4xiy64pdmvsf',1,'Admin',1672319399,'192.168.64.1',2,36,32889,NULL,'Vault: Persist WALs, count{#SINGLETON}','clc93sisl00004xiyevwovlv0',''),('clc93sisn00al4xiyu57vmc0h',1,'Admin',1672319399,'192.168.64.1',2,36,33522,NULL,'Hikvision camera: Get PTZ info','clc93sisl00004xiyevwovlv0',''),('clc93sisn00am4xiya1o28kfd',1,'Admin',1672319399,'192.168.64.1',2,36,33523,NULL,'Hikvision camera: Get PTZ info: Channel \"{#PTZ_CHANNEL_ID}\": Login status','clc93sisl00004xiyevwovlv0',''),('clc93sisn00an4xiyocqya5a4',1,'Admin',1672319399,'192.168.64.1',2,36,33524,NULL,'Channel \"{#PTZ_CHANNEL_ID}\": Absolute zoom','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ao4xiy6hf6ofud',1,'Admin',1672319399,'192.168.64.1',2,36,33525,NULL,'Channel \"{#PTZ_CHANNEL_ID}\": Azimuth','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ap4xiy4e33xghh',1,'Admin',1672319399,'192.168.64.1',2,36,33526,NULL,'Channel \"{#PTZ_CHANNEL_ID}\": Elevation','clc93sisl00004xiyevwovlv0',''),('clc93sisn00aq4xiyvf6fgmy2',1,'Admin',1672319399,'192.168.64.1',2,36,33527,NULL,'Channel \"{#CHANNEL_ID}\": Constant bitRate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ar4xiy9bb3bj4r',1,'Admin',1672319399,'192.168.64.1',2,36,33528,NULL,'Channel \"{#CHANNEL_ID}\": Fixed quality','clc93sisl00004xiyevwovlv0',''),('clc93sisn00as4xiymo8chen6',1,'Admin',1672319399,'192.168.64.1',2,36,33529,NULL,'Channel \"{#CHANNEL_ID}\": GovLength','clc93sisl00004xiyevwovlv0',''),('clc93sisn00at4xiyejdx5wov',1,'Admin',1672319399,'192.168.64.1',2,36,33530,NULL,'Channel \"{#CHANNEL_ID}\": H264Profile','clc93sisl00004xiyevwovlv0',''),('clc93sisn00au4xiy4jl4na5q',1,'Admin',1672319399,'192.168.64.1',2,36,33531,NULL,'Channel \"{#CHANNEL_ID}\": Key frame interval','clc93sisl00004xiyevwovlv0',''),('clc93sisn00av4xiyy1vdqt2m',1,'Admin',1672319399,'192.168.64.1',2,36,33532,NULL,'Channel \"{#CHANNEL_ID}\": Frame rate (max)','clc93sisl00004xiyevwovlv0',''),('clc93sisn00aw4xiy8f47fsmw',1,'Admin',1672319399,'192.168.64.1',2,36,33533,NULL,'Channel \"{#CHANNEL_ID}\": Smoothing','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ax4xiy40tapsgj',1,'Admin',1672319399,'192.168.64.1',2,36,33534,NULL,'Channel \"{#CHANNEL_ID}\": Snapshot image type','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ay4xiy733jwkx8',1,'Admin',1672319399,'192.168.64.1',2,36,33535,NULL,'Channel \"{#CHANNEL_ID}\": VBR lower','clc93sisl00004xiyevwovlv0',''),('clc93sisn00az4xiy4auzr4cm',1,'Admin',1672319399,'192.168.64.1',2,36,33536,NULL,'Channel \"{#CHANNEL_ID}\": VBR upper','clc93sisl00004xiyevwovlv0',''),('clc93sisn00b04xiyslsz788m',1,'Admin',1672319399,'192.168.64.1',2,36,33537,NULL,'Channel \"{#CHANNEL_ID}\": Video codec type','clc93sisl00004xiyevwovlv0',''),('clc93sisn00b14xiy8i7uv53n',1,'Admin',1672319399,'192.168.64.1',2,36,33538,NULL,'Channel \"{#CHANNEL_ID}\": Video quality control type','clc93sisl00004xiyevwovlv0',''),('clc93sisn00b24xiyyacmz2nx',1,'Admin',1672319399,'192.168.64.1',2,36,33539,NULL,'Channel \"{#CHANNEL_ID}\": Resolution height','clc93sisl00004xiyevwovlv0',''),('clc93sisn00b34xiy7rleyoif',1,'Admin',1672319399,'192.168.64.1',2,36,33540,NULL,'Channel \"{#CHANNEL_ID}\": Resolution width','clc93sisl00004xiyevwovlv0',''),('clc93sisn00b44xiyaidgj6iw',1,'Admin',1672319399,'192.168.64.1',2,36,33541,NULL,'Channel \"{#CHANNEL_ID}\": Video scan type','clc93sisl00004xiyevwovlv0',''),('clc93sisn00b54xiyb3o9z395',1,'Admin',1672319399,'192.168.64.1',2,36,35290,NULL,'Data region {#JMXNAME}: Allocation, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00b64xiygkysu9fg',1,'Admin',1672319399,'192.168.64.1',2,36,35291,NULL,'Data region {#JMXNAME}: Checkpoint buffer size','clc93sisl00004xiyevwovlv0',''),('clc93sisn00b74xiy7e5q4cby',1,'Admin',1672319399,'192.168.64.1',2,36,35292,NULL,'Data region {#JMXNAME}: Dirty pages','clc93sisl00004xiyevwovlv0',''),('clc93sisn00b84xiy8hfcuds3',1,'Admin',1672319399,'192.168.64.1',2,36,35293,NULL,'Data region {#JMXNAME}: Eviction, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00b94xiyuqvd30vs',1,'Admin',1672319399,'192.168.64.1',2,36,35294,NULL,'Data region {#JMXNAME}: Size, max','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ba4xiy0qf32l29',1,'Admin',1672319399,'192.168.64.1',2,36,35295,NULL,'Data region {#JMXNAME}: Offheap size','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bb4xiy4b6op1lh',1,'Admin',1672319399,'192.168.64.1',2,36,35296,NULL,'Data region {#JMXNAME}: Offheap used size','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bc4xiyqmvjyqru',1,'Admin',1672319399,'192.168.64.1',2,36,35297,NULL,'Data region {#JMXNAME}: Pages fill factor','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bd4xiyldfs5x87',1,'Admin',1672319399,'192.168.64.1',2,36,35298,NULL,'Data region {#JMXNAME}: Pages replace, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00be4xiy9gotibh1',1,'Admin',1672319399,'192.168.64.1',2,36,35299,NULL,'Data region {#JMXNAME}: Allocated, bytes','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bf4xiyzdd1pk0y',1,'Admin',1672319399,'192.168.64.1',2,36,35300,NULL,'Data region {#JMXNAME}: Used checkpoint buffer size','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bg4xiyh53kj96o',1,'Admin',1672319399,'192.168.64.1',2,36,35301,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs active, current','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bh4xiyz9o9qwil',1,'Admin',1672319399,'192.168.64.1',2,36,35302,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs cancelled, current','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bi4xiyrxe0lqaf',1,'Admin',1672319399,'192.168.64.1',2,36,35303,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: PME duration, current','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bj4xiyxpgg4id4',1,'Admin',1672319399,'192.168.64.1',2,36,35304,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs rejected, current','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bk4xiyg3bt0wrx',1,'Admin',1672319399,'192.168.64.1',2,36,35305,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Threads count, current','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bl4xiy8xh2g0b3',1,'Admin',1672319399,'192.168.64.1',2,36,35306,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs waiting, current','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bm4xiyxyzfkyet',1,'Admin',1672319399,'192.168.64.1',2,36,35307,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Heap memory used','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bn4xiyydan16ty',1,'Admin',1672319399,'192.168.64.1',2,36,35308,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs cancelled, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bo4xiyxcejoeqt',1,'Admin',1672319399,'192.168.64.1',2,36,35309,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs executed, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bp4xiyo843dhrv',1,'Admin',1672319399,'192.168.64.1',2,36,35310,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs rejects, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bq4xiy07sheq8w',1,'Admin',1672319399,'192.168.64.1',2,36,35311,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes, Active baseline','clc93sisl00004xiyevwovlv0',''),('clc93sisn00br4xiyug0iynqp',1,'Admin',1672319399,'192.168.64.1',2,36,35312,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes, Baseline','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bs4xiyx0urmaiu',1,'Admin',1672319399,'192.168.64.1',2,36,35313,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes, Client','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bt4xiypw54msg6',1,'Admin',1672319399,'192.168.64.1',2,36,35314,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes, total','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bu4xiyc7pjqe4u',1,'Admin',1672319399,'192.168.64.1',2,36,35315,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes, Server','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bv4xiyutz8ictm',1,'Admin',1672319399,'192.168.64.1',2,36,35316,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Version','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bw4xiynk39jmwp',1,'Admin',1672319399,'192.168.64.1',2,36,35317,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Local node ID','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bx4xiyqxqb4ojy',1,'Admin',1672319399,'192.168.64.1',2,36,35318,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Uptime','clc93sisl00004xiyevwovlv0',''),('clc93sisn00by4xiydtk9drx5',1,'Admin',1672319399,'192.168.64.1',2,36,35319,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Communication outbound messages queue','clc93sisl00004xiyevwovlv0',''),('clc93sisn00bz4xiy5z3hmd1c',1,'Admin',1672319399,'192.168.64.1',2,36,35320,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Communication messages received, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00c04xiy9mol56av',1,'Admin',1672319399,'192.168.64.1',2,36,35321,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Communication reconnect rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00c14xiy5wpp69xn',1,'Admin',1672319399,'192.168.64.1',2,36,35322,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Communication messages sent, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00c24xiyqbs2t2be',1,'Admin',1672319399,'192.168.64.1',2,36,35323,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Coordinator','clc93sisl00004xiyevwovlv0',''),('clc93sisn00c34xiykbq2iz03',1,'Admin',1672319399,'192.168.64.1',2,36,35324,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Discovery message worker queue','clc93sisl00004xiyevwovlv0',''),('clc93sisn00c44xiynfnatcfr',1,'Admin',1672319399,'192.168.64.1',2,36,35325,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes failed','clc93sisl00004xiyevwovlv0',''),('clc93sisn00c54xiyg0gqcjk1',1,'Admin',1672319399,'192.168.64.1',2,36,35326,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes joined','clc93sisl00004xiyevwovlv0',''),('clc93sisn00c64xiy2z0ytcdn',1,'Admin',1672319399,'192.168.64.1',2,36,35327,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes left','clc93sisl00004xiyevwovlv0',''),('clc93sisn00c74xiysw4ett6h',1,'Admin',1672319399,'192.168.64.1',2,36,35328,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Discovery reconnect, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00c84xiyp5i4nj26',1,'Admin',1672319399,'192.168.64.1',2,36,35329,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: TotalProcessedMessages','clc93sisl00004xiyevwovlv0',''),('clc93sisn00c94xiyt7oqvt83',1,'Admin',1672319399,'192.168.64.1',2,36,35330,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Discovery messages received, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ca4xiyxsxrpo05',1,'Admin',1672319399,'192.168.64.1',2,36,35331,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Locked keys','clc93sisl00004xiyevwovlv0',''),('clc93sisn00cb4xiy0i35vjz1',1,'Admin',1672319399,'192.168.64.1',2,36,35332,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Transactions owner, current','clc93sisl00004xiyevwovlv0',''),('clc93sisn00cc4xiye4qg8x1w',1,'Admin',1672319399,'192.168.64.1',2,36,35333,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Transactions committed, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00cd4xiyler9lav6',1,'Admin',1672319399,'192.168.64.1',2,36,35334,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Transactions holding lock, current','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ce4xiy5406qx8s',1,'Admin',1672319399,'192.168.64.1',2,36,35335,NULL,'GridGain [{#JMXIGNITEINSTANCENAME}]: Transactions rolledback, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00cf4xiyabbcaczb',1,'Admin',1672319399,'192.168.64.1',2,36,35336,NULL,'Cache group [{#JMXNAME}]: Backups','clc93sisl00004xiyevwovlv0',''),('clc93sisn00cg4xiyzr76aas0',1,'Admin',1672319399,'192.168.64.1',2,36,35337,NULL,'Cache group [{#JMXNAME}]: Caches','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ch4xiymnsghr7a',1,'Admin',1672319399,'192.168.64.1',2,36,35338,NULL,'Cache group [{#JMXNAME}]: Local node partitions, moving','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ci4xiy3xs4t9th',1,'Admin',1672319399,'192.168.64.1',2,36,35339,NULL,'Cache group [{#JMXNAME}]: Local node partitions, owning','clc93sisl00004xiyevwovlv0',''),('clc93sisn00cj4xiyrltdclsu',1,'Admin',1672319399,'192.168.64.1',2,36,35340,NULL,'Cache group [{#JMXNAME}]: Local node entries, renting','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ck4xiylj295qu5',1,'Admin',1672319399,'192.168.64.1',2,36,35341,NULL,'Cache group [{#JMXNAME}]: Local node partitions, renting','clc93sisl00004xiyevwovlv0',''),('clc93sisn00cl4xiyj7z76h2e',1,'Admin',1672319399,'192.168.64.1',2,36,35342,NULL,'Cache group [{#JMXNAME}]: Partition copies, max','clc93sisl00004xiyevwovlv0',''),('clc93sisn00cm4xiycj18frtd',1,'Admin',1672319399,'192.168.64.1',2,36,35343,NULL,'Cache group [{#JMXNAME}]: Partition copies, min','clc93sisl00004xiyevwovlv0',''),('clc93sisn00cn4xiyzx7vhzqn',1,'Admin',1672319399,'192.168.64.1',2,36,35344,NULL,'Cache group [{#JMXNAME}]: Partitions','clc93sisl00004xiyevwovlv0',''),('clc93sisn00co4xiy7vd3s0pv',1,'Admin',1672319399,'192.168.64.1',2,36,35345,NULL,'Thread pool [{#JMXNAME}]: Pool size, core','clc93sisl00004xiyevwovlv0',''),('clc93sisn00cp4xiy2jz8pci9',1,'Admin',1672319399,'192.168.64.1',2,36,35346,NULL,'Thread pool [{#JMXNAME}]: Pool size, max','clc93sisl00004xiyevwovlv0',''),('clc93sisn00cq4xiy89v5hrc5',1,'Admin',1672319399,'192.168.64.1',2,36,35347,NULL,'Thread pool [{#JMXNAME}]: Pool size','clc93sisl00004xiyevwovlv0',''),('clc93sisn00cr4xiymgomguoc',1,'Admin',1672319399,'192.168.64.1',2,36,35348,NULL,'Thread pool [{#JMXNAME}]: Queue size','clc93sisl00004xiyevwovlv0',''),('clc93sisn00cs4xiyahuvud0a',1,'Admin',1672319399,'192.168.64.1',2,36,35349,NULL,'Cache group [{#JMXGROUP}]: Cache gets, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ct4xiyib8ozkfk',1,'Admin',1672319399,'192.168.64.1',2,36,35350,NULL,'Cache group [{#JMXGROUP}]: Cache hits, pct','clc93sisl00004xiyevwovlv0',''),('clc93sisn00cu4xiy5s7p8by7',1,'Admin',1672319399,'192.168.64.1',2,36,35351,NULL,'Cache group [{#JMXGROUP}]: Cache misses, pct','clc93sisl00004xiyevwovlv0',''),('clc93sisn00cv4xiyakxtzr8t',1,'Admin',1672319399,'192.168.64.1',2,36,35352,NULL,'Cache group [{#JMXGROUP}]: Cache puts, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00cw4xiy58w1wt0g',1,'Admin',1672319399,'192.168.64.1',2,36,35353,NULL,'Cache group [{#JMXGROUP}]: Cache removals, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00cx4xiyp7e31fzk',1,'Admin',1672319399,'192.168.64.1',2,36,35354,NULL,'Cache group [{#JMXGROUP}]: Cache size','clc93sisl00004xiyevwovlv0',''),('clc93sisn00cy4xiy17xezf0y',1,'Admin',1672319399,'192.168.64.1',2,36,35355,NULL,'Cache group [{#JMXGROUP}]: Cache transaction commits, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00cz4xiyenakt403',1,'Admin',1672319399,'192.168.64.1',2,36,35356,NULL,'Cache group [{#JMXGROUP}]: Cache transaction rollbacks, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00d04xiy5ehnn5gd',1,'Admin',1672319399,'192.168.64.1',2,36,35357,NULL,'Cache group [{#JMXGROUP}]: Cache heap entries','clc93sisl00004xiyevwovlv0',''),('clc93sisn00d14xiyapd5c2a7',1,'Admin',1672319399,'192.168.64.1',2,36,35439,NULL,'F5 BIG-IP: Sensor [{#SLOT.INDEX}:{#TEMP.INDEX}]: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93sisn00d24xiyk80chcpq',1,'Admin',1672319399,'192.168.64.1',2,36,35440,NULL,'F5 BIG-IP: Voltage [{#VOLT.INDEX}]: Slot','clc93sisl00004xiyevwovlv0',''),('clc93sisn00d34xiyzvbx27wq',1,'Admin',1672319399,'192.168.64.1',2,36,35441,NULL,'F5 BIG-IP: Voltage [{#VOLT.INDEX}]: Value','clc93sisl00004xiyevwovlv0',''),('clc93sisn00d44xiy8h7ctw1u',1,'Admin',1672319399,'192.168.64.1',2,36,35442,NULL,'F5 BIG-IP: Certificate [{#CERT.NAME}]: Expiration date','clc93sisl00004xiyevwovlv0',''),('clc93sisn00d54xiyvjvv1sbk',1,'Admin',1672319399,'192.168.64.1',2,36,35443,NULL,'F5 BIG-IP: FAN [{#FAN.INDEX}]: Speed','clc93sisl00004xiyevwovlv0',''),('clc93sisn00d64xiy4uf537me',1,'Admin',1672319399,'192.168.64.1',2,36,35444,NULL,'F5 BIG-IP: FAN [{#FAN.INDEX}]: Status','clc93sisl00004xiyevwovlv0',''),('clc93sisn00d74xiyqk7dmm4e',1,'Admin',1672319399,'192.168.64.1',2,36,35445,NULL,'F5 BIG-IP: Power supply [{#POWER.INDEX}]: Status','clc93sisl00004xiyevwovlv0',''),('clc93sisn00d84xiy1gf6f1zf',1,'Admin',1672319399,'192.168.64.1',2,36,35446,NULL,'F5 BIG-IP: Sensor [{#TEMP.INDEX}]: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93sisn00d94xiy3qzwld9p',1,'Admin',1672319399,'192.168.64.1',2,36,35447,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Idle, avg 1m','clc93sisl00004xiyevwovlv0',''),('clc93sisn00da4xiydygtdm7w',1,'Admin',1672319399,'192.168.64.1',2,36,35448,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Soft IRQ, avg 5s','clc93sisl00004xiyevwovlv0',''),('clc93sisn00db4xiye4kas3jc',1,'Admin',1672319399,'192.168.64.1',2,36,35449,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: User, avg 5m','clc93sisl00004xiyevwovlv0',''),('clc93sisn00dc4xiyl738da30',1,'Admin',1672319399,'192.168.64.1',2,36,35450,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: User, avg 1m','clc93sisl00004xiyevwovlv0',''),('clc93sisn00dd4xiyzow8j34j',1,'Admin',1672319399,'192.168.64.1',2,36,35451,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Usage ratio, avg 5s','clc93sisl00004xiyevwovlv0',''),('clc93sisn00de4xiyjezyh4dk',1,'Admin',1672319399,'192.168.64.1',2,36,35452,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Usage ratio, avg 5m','clc93sisl00004xiyevwovlv0',''),('clc93sisn00df4xiyya69e3sq',1,'Admin',1672319399,'192.168.64.1',2,36,35453,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Usage ratio, avg 1m','clc93sisl00004xiyevwovlv0',''),('clc93sisn00dg4xiygx3mvi4e',1,'Admin',1672319399,'192.168.64.1',2,36,35454,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: System, avg 5s','clc93sisl00004xiyevwovlv0',''),('clc93sisn00dh4xiypcd8inkm',1,'Admin',1672319399,'192.168.64.1',2,36,35455,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: System, avg 5m','clc93sisl00004xiyevwovlv0',''),('clc93sisn00di4xiyk60l84tn',1,'Admin',1672319399,'192.168.64.1',2,36,35456,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: System, avg 1m','clc93sisl00004xiyevwovlv0',''),('clc93sisn00dj4xiyrrmjr65t',1,'Admin',1672319399,'192.168.64.1',2,36,35457,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Stolen, avg 5m','clc93sisl00004xiyevwovlv0',''),('clc93sisn00dk4xiyp8f4ytp5',1,'Admin',1672319399,'192.168.64.1',2,36,35458,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Stolen, avg 1s)','clc93sisl00004xiyevwovlv0',''),('clc93sisn00dl4xiyb5rwj7gq',1,'Admin',1672319399,'192.168.64.1',2,36,35459,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Stolen, avg 1m','clc93sisl00004xiyevwovlv0',''),('clc93sisn00dm4xiycl8ov9em',1,'Admin',1672319399,'192.168.64.1',2,36,35460,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Soft IRQ, avg 5m','clc93sisl00004xiyevwovlv0',''),('clc93sisn00dn4xiyz7u30rem',1,'Admin',1672319399,'192.168.64.1',2,36,35461,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Idle, avg 5m','clc93sisl00004xiyevwovlv0',''),('clc93sisn00do4xiy260hlw2x',1,'Admin',1672319399,'192.168.64.1',2,36,35462,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Soft IRQ, avg 1m','clc93sisl00004xiyevwovlv0',''),('clc93sisn00dp4xiykglcx4o4',1,'Admin',1672319399,'192.168.64.1',2,36,35463,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Nice, avg 5s','clc93sisl00004xiyevwovlv0',''),('clc93sisn00dq4xiybrqg6oiq',1,'Admin',1672319399,'192.168.64.1',2,36,35464,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Nice, avg 5m','clc93sisl00004xiyevwovlv0',''),('clc93sisn00dr4xiyvmsvmcec',1,'Admin',1672319399,'192.168.64.1',2,36,35465,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Nice, avg 1m','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ds4xiyz2eqor0d',1,'Admin',1672319399,'192.168.64.1',2,36,35466,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IRQ, avg 5s','clc93sisl00004xiyevwovlv0',''),('clc93sisn00dt4xiy5nlki76c',1,'Admin',1672319399,'192.168.64.1',2,36,35467,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IRQ, avg 5m','clc93sisl00004xiyevwovlv0',''),('clc93sisn00du4xiyaffdumkv',1,'Admin',1672319399,'192.168.64.1',2,36,35468,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IRQ, avg 1m','clc93sisl00004xiyevwovlv0',''),('clc93sisn00dv4xiyszhc2ovq',1,'Admin',1672319399,'192.168.64.1',2,36,35469,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IO wait, avg 5s','clc93sisl00004xiyevwovlv0',''),('clc93sisn00dw4xiyai566te5',1,'Admin',1672319399,'192.168.64.1',2,36,35470,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IO wait, avg 5m','clc93sisl00004xiyevwovlv0',''),('clc93sisn00dx4xiy0jclpiwi',1,'Admin',1672319399,'192.168.64.1',2,36,35471,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IO wait, avg 1m','clc93sisl00004xiyevwovlv0',''),('clc93sisn00dy4xiybansgjxf',1,'Admin',1672319399,'192.168.64.1',2,36,35472,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Idle, avg 5s','clc93sisl00004xiyevwovlv0',''),('clc93sisn00dz4xiyc5bnvtzt',1,'Admin',1672319399,'192.168.64.1',2,36,35473,NULL,'F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: User, avg 5s','clc93sisl00004xiyevwovlv0',''),('clc93sisn00e04xiyycg90og2',1,'Admin',1672319399,'192.168.64.1',2,36,35474,NULL,'F5 BIG-IP: Sensor [{#CPU.SENSOR.SLOT}:{#CPU.SENSOR.INDEX}]: FAN speed','clc93sisl00004xiyevwovlv0',''),('clc93sisn00e14xiyranlmlqn',1,'Admin',1672319399,'192.168.64.1',2,36,35475,NULL,'F5 BIG-IP: Sensor [{#CPU.SENSOR.SLOT}:{#CPU.SENSOR.INDEX}]: Name','clc93sisl00004xiyevwovlv0',''),('clc93sisn00e24xiykxjjw30a',1,'Admin',1672319399,'192.168.64.1',2,36,35476,NULL,'F5 BIG-IP: Sensor [{#CPU.SENSOR.SLOT}:{#CPU.SENSOR.INDEX}]: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93sisn00e34xiyih3vf3l5',1,'Admin',1672319399,'192.168.64.1',2,36,35477,NULL,'F5 BIG-IP: Mount point [{#PART.NAME}]: Block size','clc93sisl00004xiyevwovlv0',''),('clc93sisn00e44xiyrcbdyvb7',1,'Admin',1672319399,'192.168.64.1',2,36,35478,NULL,'F5 BIG-IP: Mount point [{#PART.NAME}]: Free blocks','clc93sisl00004xiyevwovlv0',''),('clc93sisn00e54xiyc3388b34',1,'Admin',1672319399,'192.168.64.1',2,36,35479,NULL,'F5 BIG-IP: Mount point [{#PART.NAME}]: Free nodes','clc93sisl00004xiyevwovlv0',''),('clc93sisn00e64xiyo8j161cs',1,'Admin',1672319399,'192.168.64.1',2,36,35480,NULL,'F5 BIG-IP: Mount point [{#PART.NAME}]: Total blocks','clc93sisl00004xiyevwovlv0',''),('clc93sisn00e74xiynz2c299p',1,'Admin',1672319399,'192.168.64.1',2,36,35481,NULL,'F5 BIG-IP: Mount point [{#PART.NAME}]: Total nodes','clc93sisl00004xiyevwovlv0',''),('clc93sisn00e84xiy3a4ugm8d',1,'Admin',1672319399,'192.168.64.1',2,36,35482,NULL,'F5 BIG-IP: Host [{#HOST.ID}]: Total other non-TMM memory','clc93sisl00004xiyevwovlv0',''),('clc93sisn00e94xiyjs6aauxg',1,'Admin',1672319399,'192.168.64.1',2,36,35483,NULL,'F5 BIG-IP: Host [{#HOST.ID}]: Total swap','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ea4xiy7tww42kk',1,'Admin',1672319399,'192.168.64.1',2,36,35484,NULL,'F5 BIG-IP: Host [{#HOST.ID}]: Total memory','clc93sisl00004xiyevwovlv0',''),('clc93sisn00eb4xiy9ubudwzf',1,'Admin',1672319399,'192.168.64.1',2,36,35485,NULL,'F5 BIG-IP: Host [{#HOST.ID}]: Used other non-TMM memory','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ec4xiy4xqgrj1d',1,'Admin',1672319399,'192.168.64.1',2,36,35486,NULL,'F5 BIG-IP: Host [{#HOST.ID}]: Used swap','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ed4xiyxaxibtdg',1,'Admin',1672319399,'192.168.64.1',2,36,35487,NULL,'F5 BIG-IP: Host [{#HOST.ID}]: Used memory','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ee4xiyzpin5mhk',1,'Admin',1672319399,'192.168.64.1',2,36,35488,NULL,'F5 BIG-IP: Module [{#MODULE.NAME}]: CPU ratio','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ef4xiykj1dxzvn',1,'Admin',1672319399,'192.168.64.1',2,36,35489,NULL,'F5 BIG-IP: Module [{#MODULE.NAME}]: Disk ratio','clc93sisl00004xiyevwovlv0',''),('clc93sisn00eg4xiy9nxwbzo5',1,'Admin',1672319399,'192.168.64.1',2,36,35490,NULL,'F5 BIG-IP: Module [{#MODULE.NAME}]: Memory ratio','clc93sisl00004xiyevwovlv0',''),('clc93sisn00eh4xiymdh9tpk7',1,'Admin',1672319399,'192.168.64.1',2,36,35491,NULL,'F5 BIG-IP: Module [{#MODULE.NAME}]: Provision level','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ei4xiyohshwz50',1,'Admin',1672319399,'192.168.64.1',2,36,35492,NULL,'F5 BIG-IP: Interface [{#IF.NAME}]: Collisions','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ej4xiy6di4jxwx',1,'Admin',1672319399,'192.168.64.1',2,36,35493,NULL,'F5 BIG-IP: Interface [{#IF.NAME}]: Incoming traffic, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ek4xiy10rywfy7',1,'Admin',1672319399,'192.168.64.1',2,36,35494,NULL,'F5 BIG-IP: Interface [{#IF.NAME}]: Incoming packet drops','clc93sisl00004xiyevwovlv0',''),('clc93sisn00el4xiybccqrn95',1,'Admin',1672319399,'192.168.64.1',2,36,35495,NULL,'F5 BIG-IP: Interface [{#IF.NAME}]: Incoming packet error','clc93sisl00004xiyevwovlv0',''),('clc93sisn00em4xiym1ox9p6d',1,'Admin',1672319399,'192.168.64.1',2,36,35496,NULL,'F5 BIG-IP: Interface [{#IF.NAME}]: Incoming multicast packet, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00en4xiyeejj72zq',1,'Admin',1672319399,'192.168.64.1',2,36,35497,NULL,'F5 BIG-IP: Interface [{#IF.NAME}]: Incoming packet, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00eo4xiyhdtzx21z',1,'Admin',1672319399,'192.168.64.1',2,36,35498,NULL,'F5 BIG-IP: Interface [{#IF.NAME}]: Incoming QnQ packet, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ep4xiy4vm4z625',1,'Admin',1672319399,'192.168.64.1',2,36,35499,NULL,'F5 BIG-IP: Interface [{#IF.NAME}]: Outgoing traffic, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00eq4xiy8kyaqp2n',1,'Admin',1672319399,'192.168.64.1',2,36,35500,NULL,'F5 BIG-IP: Interface [{#IF.NAME}]: Outgoing packet drops','clc93sisl00004xiyevwovlv0',''),('clc93sisn00er4xiyjh4lxgce',1,'Admin',1672319399,'192.168.64.1',2,36,35501,NULL,'F5 BIG-IP: Interface [{#IF.NAME}]: Outgoing packet error','clc93sisl00004xiyevwovlv0',''),('clc93sisn00es4xiy1pnzcw49',1,'Admin',1672319399,'192.168.64.1',2,36,35502,NULL,'F5 BIG-IP: Interface [{#IF.NAME}]: Outgoing multicast packet, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00et4xiyc2w9gxnc',1,'Admin',1672319399,'192.168.64.1',2,36,35503,NULL,'F5 BIG-IP: Interface [{#IF.NAME}]: Outgoing packet, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00eu4xiyo7jeps8f',1,'Admin',1672319399,'192.168.64.1',2,36,35504,NULL,'F5 BIG-IP: Interface [{#IF.NAME}]: Outgoing QnQ packet, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ev4xiyarcp4qso',1,'Admin',1672319399,'192.168.64.1',2,36,35505,NULL,'F5 BIG-IP: Interface [{#IF.NAME}]: Pause state','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ew4xiyw2do33lz',1,'Admin',1672319399,'192.168.64.1',2,36,35506,NULL,'F5 BIG-IP: Node [{#NODE.NAME}]: Current connections','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ex4xiyklidbsf8',1,'Admin',1672319399,'192.168.64.1',2,36,35507,NULL,'F5 BIG-IP: Node [{#NODE.NAME}]: Incoming traffic, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ey4xiyarf0lhnr',1,'Admin',1672319399,'192.168.64.1',2,36,35508,NULL,'F5 BIG-IP: Node [{#NODE.NAME}]: Incoming packet, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ez4xiy5qpds3iu',1,'Admin',1672319399,'192.168.64.1',2,36,35509,NULL,'F5 BIG-IP: Node [{#NODE.NAME}]: Outgoing traffic, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00f04xiy1r1ojwcy',1,'Admin',1672319399,'192.168.64.1',2,36,35510,NULL,'F5 BIG-IP: Node [{#NODE.NAME}]: Outgoing packet, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00f14xiygbhf0swk',1,'Admin',1672319399,'192.168.64.1',2,36,35511,NULL,'F5 BIG-IP: Node [{#NODE.NAME}]: Current sessions','clc93sisl00004xiyevwovlv0',''),('clc93sisn00f24xiy4xlqwfvx',1,'Admin',1672319399,'192.168.64.1',2,36,35512,NULL,'F5 BIG-IP: Node [{#NODE.NAME}]: Connections hit a rate limit','clc93sisl00004xiyevwovlv0',''),('clc93sisn00f34xiyr4oqtiv3',1,'Admin',1672319399,'192.168.64.1',2,36,35513,NULL,'F5 BIG-IP: Node [{#NODE.NAME}]: Duration of exceeding rate limit','clc93sisl00004xiyevwovlv0',''),('clc93sisn00f44xiygz0c2623',1,'Admin',1672319399,'192.168.64.1',2,36,35514,NULL,'F5 BIG-IP: Pool [{#POOL.NAME}]: Current connections','clc93sisl00004xiyevwovlv0',''),('clc93sisn00f54xiyuwzp6ypf',1,'Admin',1672319399,'192.168.64.1',2,36,35515,NULL,'F5 BIG-IP: Pool [{#POOL.NAME}]: Incoming traffic, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00f64xiykn2f12ag',1,'Admin',1672319399,'192.168.64.1',2,36,35516,NULL,'F5 BIG-IP: Pool [{#POOL.NAME}]: Incoming packet, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00f74xiylynu7591',1,'Admin',1672319399,'192.168.64.1',2,36,35517,NULL,'F5 BIG-IP: Pool [{#POOL.NAME}]: Outgoing traffic, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00f84xiymp4964y2',1,'Admin',1672319399,'192.168.64.1',2,36,35518,NULL,'F5 BIG-IP: Pool [{#POOL.NAME}]: Outgoing packet, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00f94xiy0bmvuebb',1,'Admin',1672319399,'192.168.64.1',2,36,35519,NULL,'F5 BIG-IP: Pool [{#POOL.NAME}]: Current sessions','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fa4xiylde13m9n',1,'Admin',1672319399,'192.168.64.1',2,36,35520,NULL,'F5 BIG-IP: Pool [{#POOL.NAME}]: Age of the oldest queue entry','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fb4xiyc4g2a499',1,'Admin',1672319399,'192.168.64.1',2,36,35521,NULL,'F5 BIG-IP: Pool [{#POOL.NAME}]: Queue','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fc4xiyl4fyjxe7',1,'Admin',1672319399,'192.168.64.1',2,36,36824,NULL,'F5 BIG-IP: Pool [{#POOL.NAME}]: Status available','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fd4xiytk5vvm04',1,'Admin',1672319399,'192.168.64.1',2,36,36825,NULL,'F5 BIG-IP: Pool [{#POOL.NAME}]: Status enabled','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fe4xiyvtrgwm7g',1,'Admin',1672319399,'192.168.64.1',2,36,35522,NULL,'F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Current connections','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ff4xiy16bd17g3',1,'Admin',1672319399,'192.168.64.1',2,36,35523,NULL,'F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Incoming traffic, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fg4xiygd94wub2',1,'Admin',1672319399,'192.168.64.1',2,36,35524,NULL,'F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Incoming packet, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fh4xiyfc7rae1l',1,'Admin',1672319399,'192.168.64.1',2,36,35525,NULL,'F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Outgoing traffic, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fi4xiyt141anvm',1,'Admin',1672319399,'192.168.64.1',2,36,35526,NULL,'F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Outgoing packet, rate','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fj4xiyk0dcbkvm',1,'Admin',1672319399,'192.168.64.1',2,36,35527,NULL,'F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Connections hit a rate limit','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fk4xiyr3zsz5cp',1,'Admin',1672319399,'192.168.64.1',2,36,35528,NULL,'F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Duration of exceeding rate limit','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fl4xiyialevlne',1,'Admin',1672319399,'192.168.64.1',2,36,35529,NULL,'F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Usage ratio, avg 1m','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fm4xiyrex1v32t',1,'Admin',1672319399,'192.168.64.1',2,36,35530,NULL,'F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Usage ratio, avg 5m','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fn4xiypdlid9d9',1,'Admin',1672319399,'192.168.64.1',2,36,35531,NULL,'F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Usage ratio, avg 5s','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fo4xiyqicdju5o',1,'Admin',1672319399,'192.168.64.1',2,36,36178,NULL,'{#DISKARRAY_CACHE_LOCATION}: Disk array cache controller battery status','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fp4xiy93a1a0we',1,'Admin',1672319399,'192.168.64.1',2,36,36179,NULL,'{#DISKARRAY_LOCATION}: Disk array controller model','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fq4xiyeetax7sg',1,'Admin',1672319399,'192.168.64.1',2,36,36180,NULL,'{#DISKARRAY_LOCATION}: Disk array controller status','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fr4xiyqdksyx42',1,'Admin',1672319399,'192.168.64.1',2,36,36181,NULL,'{#FAN_LOCATION}: Fan status','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fs4xiyuj8xmjzy',1,'Admin',1672319399,'192.168.64.1',2,36,36182,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface description','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ft4xiywumv6069',1,'Admin',1672319399,'192.168.64.1',2,36,36183,NULL,'Interface {#IFNAME}({#IFALIAS}): Broadcast packets received','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fu4xiyvodgwxkx',1,'Admin',1672319399,'192.168.64.1',2,36,36184,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fv4xiy2942u4hl',1,'Admin',1672319399,'192.168.64.1',2,36,36185,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fw4xiyh6bd7r56',1,'Admin',1672319399,'192.168.64.1',2,36,36186,NULL,'Interface {#IFNAME}({#IFALIAS}): Multicast packets received','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fx4xiyh7nl4aeq',1,'Admin',1672319399,'192.168.64.1',2,36,36187,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fy4xiyvn9kh4px',1,'Admin',1672319399,'192.168.64.1',2,36,36188,NULL,'Interface {#IFNAME}({#IFALIAS}): Broadcast packets sent','clc93sisl00004xiyevwovlv0',''),('clc93sisn00fz4xiyvfcdjnmo',1,'Admin',1672319399,'192.168.64.1',2,36,36189,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sisl00004xiyevwovlv0',''),('clc93sisn00g04xiyuj8z9z7m',1,'Admin',1672319399,'192.168.64.1',2,36,36190,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sisl00004xiyevwovlv0',''),('clc93sisn00g14xiy7n0p84vc',1,'Admin',1672319399,'192.168.64.1',2,36,36191,NULL,'Interface {#IFNAME}({#IFALIAS}): Multicast packets sent','clc93sisl00004xiyevwovlv0',''),('clc93sisn00g24xiy6aigyyiy',1,'Admin',1672319399,'192.168.64.1',2,36,36192,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sisl00004xiyevwovlv0',''),('clc93sisn00g34xiyjaiauo1w',1,'Admin',1672319399,'192.168.64.1',2,36,36193,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sisl00004xiyevwovlv0',''),('clc93sisn00g44xiynssahawv',1,'Admin',1672319399,'192.168.64.1',2,36,36194,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sisl00004xiyevwovlv0',''),('clc93sisn00g54xiyqao9klyl',1,'Admin',1672319399,'192.168.64.1',2,36,36195,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sisl00004xiyevwovlv0',''),('clc93sisn00g64xiyz469ji0x',1,'Admin',1672319399,'192.168.64.1',2,36,36196,NULL,'{#DISK_LOCATION}: Physical disk media type','clc93sisl00004xiyevwovlv0',''),('clc93sisn00g74xiys3su437n',1,'Admin',1672319399,'192.168.64.1',2,36,36197,NULL,'{#DISK_LOCATION}: Physical disk model name','clc93sisl00004xiyevwovlv0',''),('clc93sisn00g84xiyysyciiyk',1,'Admin',1672319399,'192.168.64.1',2,36,36198,NULL,'{#DISK_LOCATION}: Physical disk serial number','clc93sisl00004xiyevwovlv0',''),('clc93sisn00g94xiyhatq8ueu',1,'Admin',1672319399,'192.168.64.1',2,36,36199,NULL,'{#DISK_LOCATION}: Disk size','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ga4xiyuzwubv8e',1,'Admin',1672319399,'192.168.64.1',2,36,36200,NULL,'{#DISK_LOCATION}: Physical disk status','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gb4xiyajmbf1ws',1,'Admin',1672319399,'192.168.64.1',2,36,36201,NULL,'{#PSU_LOCATION}: Power supply status','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gc4xiyi87o5vmt',1,'Admin',1672319399,'192.168.64.1',2,36,36202,NULL,'{#SENSOR_LOCATION}: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gd4xiy5k801wbm',1,'Admin',1672319399,'192.168.64.1',2,36,36203,NULL,'{#SENSOR_LOCATION}.IOH: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93sisn00ge4xiyqbhte18u',1,'Admin',1672319399,'192.168.64.1',2,36,36204,NULL,'{#SENSOR_LOCATION}.Ambient: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gf4xiyxi20cj90',1,'Admin',1672319399,'192.168.64.1',2,36,36205,NULL,'{#SENSOR_LOCATION}.Front: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gg4xiymz5r8jxy',1,'Admin',1672319399,'192.168.64.1',2,36,36206,NULL,'{#SENSOR_LOCATION}.Rear: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gh4xiyq6szo3ol',1,'Admin',1672319399,'192.168.64.1',2,36,36207,NULL,'{#UNIT_LOCATION}: Hardware model name','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gi4xiyo1y3cn4k',1,'Admin',1672319399,'192.168.64.1',2,36,36208,NULL,'{#UNIT_LOCATION}: Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gj4xiy0d47xahv',1,'Admin',1672319399,'192.168.64.1',2,36,36209,NULL,'{#UNIT_LOCATION}: Overall system health status','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gk4xiyw42dlr8l',1,'Admin',1672319399,'192.168.64.1',2,36,36210,NULL,'{#VDISK_LOCATION}: Layout type','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gl4xiy0qxkjzl9',1,'Admin',1672319399,'192.168.64.1',2,36,36211,NULL,'{#VDISK_LOCATION}: Disk size','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gm4xiy6ncco27x',1,'Admin',1672319399,'192.168.64.1',2,36,36212,NULL,'{#VDISK_LOCATION}: Status','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gn4xiy1z74kj6c',1,'Admin',1672319399,'192.168.64.1',2,36,36227,NULL,'Dell R720: {#BATTERY_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93sisn00go4xiydu01psl0',1,'Admin',1672319399,'192.168.64.1',2,36,36228,NULL,'Dell R720: {#CNTLR_NAME} in slot {#SLOT} Status','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gp4xiyrvk5m41k',1,'Admin',1672319399,'192.168.64.1',2,36,36229,NULL,'Dell R720: {#SENSOR_NAME} Get sensor','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gq4xiyzedy5uvg',1,'Admin',1672319399,'192.168.64.1',2,36,36235,NULL,'Dell R720: {#SENSOR_NAME} Speed','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gr4xiynh4accyv',1,'Admin',1672319399,'192.168.64.1',2,36,36236,NULL,'Dell R720: {#SENSOR_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gs4xiyxfc8j8rq',1,'Admin',1672319399,'192.168.64.1',2,36,36230,NULL,'Dell R720: {#IFNAME} Get interface','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gt4xiyybegelyy',1,'Admin',1672319399,'192.168.64.1',2,36,36237,NULL,'Dell R720: {#IFNAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gu4xiyxamcobun',1,'Admin',1672319399,'192.168.64.1',2,36,36238,NULL,'Dell R720: {#IFNAME} Speed','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gv4xiyfw8peb1l',1,'Admin',1672319399,'192.168.64.1',2,36,36239,NULL,'Dell R720: {#IFNAME} State','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gw4xiyafzcd043',1,'Admin',1672319399,'192.168.64.1',2,36,36240,NULL,'Dell R720: {#IFNAME} Link status','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gx4xiy9olmmnvr',1,'Admin',1672319399,'192.168.64.1',2,36,36231,NULL,'Dell R720: {#DISK_NAME} Get disk','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gy4xiyfkyeqsmr',1,'Admin',1672319399,'192.168.64.1',2,36,36241,NULL,'Dell R720: {#DISK_NAME} Media type','clc93sisl00004xiyevwovlv0',''),('clc93sisn00gz4xiy3djjrs15',1,'Admin',1672319399,'192.168.64.1',2,36,36242,NULL,'Dell R720: {#DISK_NAME} Model name','clc93sisl00004xiyevwovlv0',''),('clc93sisn00h04xiyeemi2g47',1,'Admin',1672319399,'192.168.64.1',2,36,36243,NULL,'Dell R720: {#DISK_NAME} Serial number','clc93sisl00004xiyevwovlv0',''),('clc93sisn00h14xiyfklv04bh',1,'Admin',1672319399,'192.168.64.1',2,36,36244,NULL,'Dell R720: {#DISK_NAME} Size','clc93sisl00004xiyevwovlv0',''),('clc93sisn00h24xiydl371uka',1,'Admin',1672319399,'192.168.64.1',2,36,36245,NULL,'Dell R720: {#DISK_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00h34xiy5droxjaj',1,'Admin',1672319399,'192.168.64.1',2,36,36232,NULL,'Dell R720: {#SENSOR_NAME} Get sensor','clc93sisl00004xiyevwovlv0',''),('clc93siso00h44xiy1ulrk2mq',1,'Admin',1672319399,'192.168.64.1',2,36,36246,NULL,'Dell R720: {#SENSOR_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00h54xiylfod4o8a',1,'Admin',1672319399,'192.168.64.1',2,36,36233,NULL,'Dell R720: {#SENSOR_NAME} Get sensor','clc93sisl00004xiyevwovlv0',''),('clc93siso00h64xiyggortnq3',1,'Admin',1672319399,'192.168.64.1',2,36,36247,NULL,'Dell R720: {#SENSOR_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00h74xiy5bzqa7xu',1,'Admin',1672319399,'192.168.64.1',2,36,36248,NULL,'Dell R720: {#SENSOR_NAME} Value','clc93sisl00004xiyevwovlv0',''),('clc93siso00h84xiyl7nwsmkx',1,'Admin',1672319399,'192.168.64.1',2,36,36234,NULL,'Dell R720: {#DISK_NAME} Get disk','clc93sisl00004xiyevwovlv0',''),('clc93siso00h94xiy04h1d9q6',1,'Admin',1672319399,'192.168.64.1',2,36,36249,NULL,'Dell R720: {#DISK_NAME} RAID status','clc93sisl00004xiyevwovlv0',''),('clc93siso00ha4xiysfqibmg9',1,'Admin',1672319399,'192.168.64.1',2,36,36250,NULL,'Dell R720: {#DISK_NAME} Read policy','clc93sisl00004xiyevwovlv0',''),('clc93siso00hb4xiyg7k9awng',1,'Admin',1672319399,'192.168.64.1',2,36,36251,NULL,'Dell R720: {#DISK_NAME} Size','clc93sisl00004xiyevwovlv0',''),('clc93siso00hc4xiyc6xge4ni',1,'Admin',1672319399,'192.168.64.1',2,36,36252,NULL,'Dell R720: {#DISK_NAME} Current state','clc93sisl00004xiyevwovlv0',''),('clc93siso00hd4xiysy4gdq3q',1,'Admin',1672319399,'192.168.64.1',2,36,36253,NULL,'Dell R720: {#DISK_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00he4xiyjrmbg7ek',1,'Admin',1672319399,'192.168.64.1',2,36,36254,NULL,'Dell R720: {#DISK_NAME} Write policy','clc93sisl00004xiyevwovlv0',''),('clc93siso00hf4xiyepqutxei',1,'Admin',1672319399,'192.168.64.1',2,36,36275,NULL,'Dell R720: {#BATTERY_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00hg4xiy79qbja61',1,'Admin',1672319399,'192.168.64.1',2,36,36276,NULL,'Dell R720: {#CNTLR_NAME} Model','clc93sisl00004xiyevwovlv0',''),('clc93siso00hh4xiyxb5gxrjs',1,'Admin',1672319399,'192.168.64.1',2,36,36277,NULL,'Dell R720: {#CNTLR_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00hi4xiyatuxs5xu',1,'Admin',1672319399,'192.168.64.1',2,36,36278,NULL,'Dell R720: {#FAN_DESCR} Speed','clc93sisl00004xiyevwovlv0',''),('clc93siso00hj4xiye6pe7fss',1,'Admin',1672319399,'192.168.64.1',2,36,36279,NULL,'Dell R720: {#FAN_DESCR} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00hk4xiyhwxxmncr',1,'Admin',1672319399,'192.168.64.1',2,36,36280,NULL,'Dell R720: {#DISK_NAME} Media type','clc93sisl00004xiyevwovlv0',''),('clc93siso00hl4xiyttaitirh',1,'Admin',1672319399,'192.168.64.1',2,36,36281,NULL,'Dell R720: {#DISK_NAME} Model name','clc93sisl00004xiyevwovlv0',''),('clc93siso00hm4xiydjpxzt2o',1,'Admin',1672319399,'192.168.64.1',2,36,36282,NULL,'Dell R720: {#DISK_NAME} Serial number','clc93sisl00004xiyevwovlv0',''),('clc93siso00hn4xiyzf605fut',1,'Admin',1672319399,'192.168.64.1',2,36,36283,NULL,'Dell R720: {#DISK_NAME} Size','clc93sisl00004xiyevwovlv0',''),('clc93siso00ho4xiy9g0snfmk',1,'Admin',1672319399,'192.168.64.1',2,36,36284,NULL,'Dell R720: {#DISK_NAME} S.M.A.R.T. Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00hp4xiy69dd9dh0',1,'Admin',1672319399,'192.168.64.1',2,36,36285,NULL,'Dell R720: {#DISK_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00hq4xiyg4b23wty',1,'Admin',1672319399,'192.168.64.1',2,36,36286,NULL,'Dell R720: {#PSU_DESCR}','clc93sisl00004xiyevwovlv0',''),('clc93siso00hr4xiybht9c6if',1,'Admin',1672319399,'192.168.64.1',2,36,36287,NULL,'Dell R720: {#SENSOR_LOCALE} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00hs4xiyt4chea8f',1,'Admin',1672319399,'192.168.64.1',2,36,36288,NULL,'Dell R720: {#SENSOR_LOCALE} Value','clc93sisl00004xiyevwovlv0',''),('clc93siso00ht4xiy4jhbtdao',1,'Admin',1672319399,'192.168.64.1',2,36,36289,NULL,'Dell R720: {#DISK_NAME} Layout type','clc93sisl00004xiyevwovlv0',''),('clc93siso00hu4xiyosjhnb7k',1,'Admin',1672319399,'192.168.64.1',2,36,36290,NULL,'Dell R720: {#DISK_NAME} Read policy','clc93sisl00004xiyevwovlv0',''),('clc93siso00hv4xiyurr5258u',1,'Admin',1672319399,'192.168.64.1',2,36,36291,NULL,'Dell R720: {#DISK_NAME} Size','clc93sisl00004xiyevwovlv0',''),('clc93siso00hw4xiyhm1depgt',1,'Admin',1672319399,'192.168.64.1',2,36,36292,NULL,'Dell R720: {#DISK_NAME} Current state','clc93sisl00004xiyevwovlv0',''),('clc93siso00hx4xiyy953n0ck',1,'Admin',1672319399,'192.168.64.1',2,36,36293,NULL,'Dell R720: {#DISK_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00hy4xiyb4gbkgcg',1,'Admin',1672319399,'192.168.64.1',2,36,36294,NULL,'Dell R720: {#DISK_NAME} Write policy','clc93sisl00004xiyevwovlv0',''),('clc93siso00hz4xiyx1ler27c',1,'Admin',1672319399,'192.168.64.1',2,36,36309,NULL,'Dell R740: {#BATTERY_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00i04xiymp32ivyz',1,'Admin',1672319399,'192.168.64.1',2,36,36310,NULL,'Dell R740: {#CNTLR_NAME} in slot {#SLOT} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00i14xiytflg45wq',1,'Admin',1672319399,'192.168.64.1',2,36,36311,NULL,'Dell R740: {#SENSOR_NAME} Get sensor','clc93sisl00004xiyevwovlv0',''),('clc93siso00i24xiyqlsfmh0x',1,'Admin',1672319399,'192.168.64.1',2,36,36317,NULL,'Dell R740: {#SENSOR_NAME} Speed','clc93sisl00004xiyevwovlv0',''),('clc93siso00i34xiy7vwjx4tz',1,'Admin',1672319399,'192.168.64.1',2,36,36318,NULL,'Dell R740: {#SENSOR_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00i44xiyqrmyomsf',1,'Admin',1672319399,'192.168.64.1',2,36,36312,NULL,'Dell R740: {#IFNAME} Get interface','clc93sisl00004xiyevwovlv0',''),('clc93siso00i54xiy87dikl55',1,'Admin',1672319399,'192.168.64.1',2,36,36319,NULL,'Dell R740: {#IFNAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00i64xiyj2xq8ld7',1,'Admin',1672319399,'192.168.64.1',2,36,36320,NULL,'Dell R740: {#IFNAME} Speed','clc93sisl00004xiyevwovlv0',''),('clc93siso00i74xiy8gnn1aor',1,'Admin',1672319399,'192.168.64.1',2,36,36321,NULL,'Dell R740: {#IFNAME} State','clc93sisl00004xiyevwovlv0',''),('clc93siso00i84xiy0gs25xmj',1,'Admin',1672319399,'192.168.64.1',2,36,36322,NULL,'Dell R740: {#IFNAME} Link status','clc93sisl00004xiyevwovlv0',''),('clc93siso00i94xiym2t2pevq',1,'Admin',1672319399,'192.168.64.1',2,36,36313,NULL,'Dell R740: {#DISK_NAME} Get disk','clc93sisl00004xiyevwovlv0',''),('clc93siso00ia4xiyukg82w5v',1,'Admin',1672319399,'192.168.64.1',2,36,36323,NULL,'Dell R740: {#DISK_NAME} Media type','clc93sisl00004xiyevwovlv0',''),('clc93siso00ib4xiyat3ntf8k',1,'Admin',1672319399,'192.168.64.1',2,36,36324,NULL,'Dell R740: {#DISK_NAME} Model name','clc93sisl00004xiyevwovlv0',''),('clc93siso00ic4xiyfmt0pmm7',1,'Admin',1672319399,'192.168.64.1',2,36,36325,NULL,'Dell R740: {#DISK_NAME} Serial number','clc93sisl00004xiyevwovlv0',''),('clc93siso00id4xiygwrt04qj',1,'Admin',1672319399,'192.168.64.1',2,36,36326,NULL,'Dell R740: {#DISK_NAME} Size','clc93sisl00004xiyevwovlv0',''),('clc93siso00ie4xiyx5zru738',1,'Admin',1672319399,'192.168.64.1',2,36,36327,NULL,'Dell R740: {#DISK_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00if4xiy9xxgcn3z',1,'Admin',1672319399,'192.168.64.1',2,36,36314,NULL,'Dell R740: {#SENSOR_NAME} Get sensor','clc93sisl00004xiyevwovlv0',''),('clc93siso00ig4xiyvarpsr7e',1,'Admin',1672319399,'192.168.64.1',2,36,36328,NULL,'Dell R740: {#SENSOR_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00ih4xiynyk6t8f3',1,'Admin',1672319399,'192.168.64.1',2,36,36315,NULL,'Dell R740: {#SENSOR_NAME} Get sensor','clc93sisl00004xiyevwovlv0',''),('clc93siso00ii4xiyairk9igx',1,'Admin',1672319399,'192.168.64.1',2,36,36329,NULL,'Dell R740: {#SENSOR_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00ij4xiyl6r9ir30',1,'Admin',1672319399,'192.168.64.1',2,36,36330,NULL,'Dell R740: {#SENSOR_NAME} Value','clc93sisl00004xiyevwovlv0',''),('clc93siso00ik4xiy9y67b5lb',1,'Admin',1672319399,'192.168.64.1',2,36,36316,NULL,'Dell R740: {#DISK_NAME} Get disk','clc93sisl00004xiyevwovlv0',''),('clc93siso00il4xiyode64ot7',1,'Admin',1672319399,'192.168.64.1',2,36,36331,NULL,'Dell R740: {#DISK_NAME} RAID status','clc93sisl00004xiyevwovlv0',''),('clc93siso00im4xiyj36spiar',1,'Admin',1672319399,'192.168.64.1',2,36,36332,NULL,'Dell R740: {#DISK_NAME} Read policy','clc93sisl00004xiyevwovlv0',''),('clc93siso00in4xiyfmv9f606',1,'Admin',1672319399,'192.168.64.1',2,36,36333,NULL,'Dell R740: {#DISK_NAME} Size','clc93sisl00004xiyevwovlv0',''),('clc93siso00io4xiyf2ki04hp',1,'Admin',1672319399,'192.168.64.1',2,36,36334,NULL,'Dell R740: {#DISK_NAME} Current state','clc93sisl00004xiyevwovlv0',''),('clc93siso00ip4xiyr03h80n0',1,'Admin',1672319399,'192.168.64.1',2,36,36335,NULL,'Dell R740: {#DISK_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00iq4xiyycwlo7kq',1,'Admin',1672319399,'192.168.64.1',2,36,36336,NULL,'Dell R740: {#DISK_NAME} Write policy','clc93sisl00004xiyevwovlv0',''),('clc93siso00ir4xiydwj7kcqy',1,'Admin',1672319399,'192.168.64.1',2,36,36357,NULL,'Dell R740: {#BATTERY_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00is4xiyqsjhd5si',1,'Admin',1672319399,'192.168.64.1',2,36,36358,NULL,'Dell R740: {#CNTLR_NAME} Model','clc93sisl00004xiyevwovlv0',''),('clc93siso00it4xiyprnto1ml',1,'Admin',1672319399,'192.168.64.1',2,36,36359,NULL,'Dell R740: {#CNTLR_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00iu4xiym9eiog0k',1,'Admin',1672319399,'192.168.64.1',2,36,36360,NULL,'Dell R740: {#FAN_DESCR} Speed','clc93sisl00004xiyevwovlv0',''),('clc93siso00iv4xiywikfwg2g',1,'Admin',1672319399,'192.168.64.1',2,36,36361,NULL,'Dell R740: {#FAN_DESCR} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00iw4xiyljlp727b',1,'Admin',1672319399,'192.168.64.1',2,36,36362,NULL,'Dell R740: {#DISK_NAME} Media type','clc93sisl00004xiyevwovlv0',''),('clc93siso00ix4xiyh1ljsqan',1,'Admin',1672319399,'192.168.64.1',2,36,36363,NULL,'Dell R740: {#DISK_NAME} Model name','clc93sisl00004xiyevwovlv0',''),('clc93siso00iy4xiyejt6h0za',1,'Admin',1672319399,'192.168.64.1',2,36,36364,NULL,'Dell R740: {#DISK_NAME} Serial number','clc93sisl00004xiyevwovlv0',''),('clc93siso00iz4xiy79yvgyz8',1,'Admin',1672319399,'192.168.64.1',2,36,36365,NULL,'Dell R740: {#DISK_NAME} Size','clc93sisl00004xiyevwovlv0',''),('clc93siso00j04xiyf6l0zakt',1,'Admin',1672319399,'192.168.64.1',2,36,36366,NULL,'Dell R740: {#DISK_NAME} S.M.A.R.T. Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00j14xiy5udqch58',1,'Admin',1672319399,'192.168.64.1',2,36,36367,NULL,'Dell R740: {#DISK_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00j24xiygboo5p6v',1,'Admin',1672319399,'192.168.64.1',2,36,36368,NULL,'Dell R740: {#PSU_DESCR}','clc93sisl00004xiyevwovlv0',''),('clc93siso00j34xiyxsehroml',1,'Admin',1672319399,'192.168.64.1',2,36,36369,NULL,'Dell R740: {#SENSOR_LOCALE} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00j44xiypoh00hxu',1,'Admin',1672319399,'192.168.64.1',2,36,36370,NULL,'Dell R740: {#SENSOR_LOCALE} Value','clc93sisl00004xiyevwovlv0',''),('clc93siso00j54xiypfvzmds1',1,'Admin',1672319399,'192.168.64.1',2,36,36371,NULL,'Dell R740: {#DISK_NAME} Layout type','clc93sisl00004xiyevwovlv0',''),('clc93siso00j64xiymqz8szuh',1,'Admin',1672319399,'192.168.64.1',2,36,36372,NULL,'Dell R740: {#DISK_NAME} Read policy','clc93sisl00004xiyevwovlv0',''),('clc93siso00j74xiyvgswro3r',1,'Admin',1672319399,'192.168.64.1',2,36,36373,NULL,'Dell R740: {#DISK_NAME} Size','clc93sisl00004xiyevwovlv0',''),('clc93siso00j84xiy0jru9x0m',1,'Admin',1672319399,'192.168.64.1',2,36,36374,NULL,'Dell R740: {#DISK_NAME} Current state','clc93sisl00004xiyevwovlv0',''),('clc93siso00j94xiy1o4lpbxf',1,'Admin',1672319399,'192.168.64.1',2,36,36375,NULL,'Dell R740: {#DISK_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00ja4xiykpzsl87q',1,'Admin',1672319399,'192.168.64.1',2,36,36376,NULL,'Dell R740: {#DISK_NAME} Write policy','clc93sisl00004xiyevwovlv0',''),('clc93siso00jb4xiycbkktl1l',1,'Admin',1672319399,'192.168.64.1',2,36,36391,NULL,'Dell R820: {#BATTERY_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00jc4xiyavqsa5bz',1,'Admin',1672319399,'192.168.64.1',2,36,36392,NULL,'Dell R820: {#CNTLR_NAME} in slot {#SLOT} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00jd4xiy88qc5m6d',1,'Admin',1672319399,'192.168.64.1',2,36,36393,NULL,'Dell R820: {#SENSOR_NAME} Get sensor','clc93sisl00004xiyevwovlv0',''),('clc93siso00je4xiy75o72s27',1,'Admin',1672319399,'192.168.64.1',2,36,36399,NULL,'Dell R820: {#SENSOR_NAME} Speed','clc93sisl00004xiyevwovlv0',''),('clc93siso00jf4xiy8qwa4860',1,'Admin',1672319399,'192.168.64.1',2,36,36400,NULL,'Dell R820: {#SENSOR_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00jg4xiycykn7r8k',1,'Admin',1672319399,'192.168.64.1',2,36,36394,NULL,'Dell R820: {#IFNAME} Get interface','clc93sisl00004xiyevwovlv0',''),('clc93siso00jh4xiy7ej1gam9',1,'Admin',1672319399,'192.168.64.1',2,36,36401,NULL,'Dell R820: {#IFNAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00ji4xiy7yafue06',1,'Admin',1672319399,'192.168.64.1',2,36,36402,NULL,'Dell R820: {#IFNAME} Speed','clc93sisl00004xiyevwovlv0',''),('clc93siso00jj4xiyl4z9rq5c',1,'Admin',1672319399,'192.168.64.1',2,36,36403,NULL,'Dell R820: {#IFNAME} State','clc93sisl00004xiyevwovlv0',''),('clc93siso00jk4xiydz095y5k',1,'Admin',1672319399,'192.168.64.1',2,36,36404,NULL,'Dell R820: {#IFNAME} Link status','clc93sisl00004xiyevwovlv0',''),('clc93siso00jl4xiymb5yp1m5',1,'Admin',1672319399,'192.168.64.1',2,36,36395,NULL,'Dell R820: {#DISK_NAME} Get disk','clc93sisl00004xiyevwovlv0',''),('clc93siso00jm4xiysgn9nem6',1,'Admin',1672319399,'192.168.64.1',2,36,36405,NULL,'Dell R820: {#DISK_NAME} Media type','clc93sisl00004xiyevwovlv0',''),('clc93siso00jn4xiy4547tquy',1,'Admin',1672319399,'192.168.64.1',2,36,36406,NULL,'Dell R820: {#DISK_NAME} Model name','clc93sisl00004xiyevwovlv0',''),('clc93siso00jo4xiyxf1h1g1h',1,'Admin',1672319399,'192.168.64.1',2,36,36407,NULL,'Dell R820: {#DISK_NAME} Serial number','clc93sisl00004xiyevwovlv0',''),('clc93siso00jp4xiyn0jpbp3v',1,'Admin',1672319399,'192.168.64.1',2,36,36408,NULL,'Dell R820: {#DISK_NAME} Size','clc93sisl00004xiyevwovlv0',''),('clc93siso00jq4xiy7aostu8j',1,'Admin',1672319399,'192.168.64.1',2,36,36409,NULL,'Dell R820: {#DISK_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00jr4xiy0ql9lf6h',1,'Admin',1672319399,'192.168.64.1',2,36,36396,NULL,'Dell R820: {#SENSOR_NAME} Get sensor','clc93sisl00004xiyevwovlv0',''),('clc93siso00js4xiy6fl6e3ph',1,'Admin',1672319399,'192.168.64.1',2,36,36410,NULL,'Dell R820: {#SENSOR_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00jt4xiyg9n489ga',1,'Admin',1672319399,'192.168.64.1',2,36,36397,NULL,'Dell R820: {#SENSOR_NAME} Get sensor','clc93sisl00004xiyevwovlv0',''),('clc93siso00ju4xiymnhtsko7',1,'Admin',1672319399,'192.168.64.1',2,36,36411,NULL,'Dell R820: {#SENSOR_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00jv4xiyhv9u5aji',1,'Admin',1672319399,'192.168.64.1',2,36,36412,NULL,'Dell R820: {#SENSOR_NAME} Value','clc93sisl00004xiyevwovlv0',''),('clc93siso00jw4xiyu3eelafa',1,'Admin',1672319399,'192.168.64.1',2,36,36398,NULL,'Dell R820: {#DISK_NAME} Get disk','clc93sisl00004xiyevwovlv0',''),('clc93siso00jx4xiyfz8h6yqv',1,'Admin',1672319399,'192.168.64.1',2,36,36413,NULL,'Dell R820: {#DISK_NAME} RAID status','clc93sisl00004xiyevwovlv0',''),('clc93siso00jy4xiyjgip0wv4',1,'Admin',1672319399,'192.168.64.1',2,36,36414,NULL,'Dell R820: {#DISK_NAME} Read policy','clc93sisl00004xiyevwovlv0',''),('clc93siso00jz4xiyjxjemmzf',1,'Admin',1672319399,'192.168.64.1',2,36,36415,NULL,'Dell R820: {#DISK_NAME} Size','clc93sisl00004xiyevwovlv0',''),('clc93siso00k04xiywtfipnmj',1,'Admin',1672319399,'192.168.64.1',2,36,36416,NULL,'Dell R820: {#DISK_NAME} Current state','clc93sisl00004xiyevwovlv0',''),('clc93siso00k14xiy4uu5w1um',1,'Admin',1672319399,'192.168.64.1',2,36,36417,NULL,'Dell R820: {#DISK_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00k24xiy8p6xk02p',1,'Admin',1672319399,'192.168.64.1',2,36,36418,NULL,'Dell R820: {#DISK_NAME} Write policy','clc93sisl00004xiyevwovlv0',''),('clc93siso00k34xiy952xi3rh',1,'Admin',1672319399,'192.168.64.1',2,36,36439,NULL,'Dell R820: {#BATTERY_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00k44xiyrurkabuu',1,'Admin',1672319399,'192.168.64.1',2,36,36440,NULL,'Dell R820: {#CNTLR_NAME} Model','clc93sisl00004xiyevwovlv0',''),('clc93siso00k54xiy3yf2z3eu',1,'Admin',1672319399,'192.168.64.1',2,36,36441,NULL,'Dell R820: {#CNTLR_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00k64xiy2dut0iwa',1,'Admin',1672319399,'192.168.64.1',2,36,36442,NULL,'Dell R820: {#FAN_DESCR} Speed','clc93sisl00004xiyevwovlv0',''),('clc93siso00k74xiy7bx8bjw0',1,'Admin',1672319399,'192.168.64.1',2,36,36443,NULL,'Dell R820: {#FAN_DESCR} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00k84xiyvx04dg7b',1,'Admin',1672319399,'192.168.64.1',2,36,36444,NULL,'Dell R820: {#DISK_NAME} Media type','clc93sisl00004xiyevwovlv0',''),('clc93siso00k94xiywblo35f8',1,'Admin',1672319399,'192.168.64.1',2,36,36445,NULL,'Dell R820: {#DISK_NAME} Model name','clc93sisl00004xiyevwovlv0',''),('clc93siso00ka4xiyg9psfhj4',1,'Admin',1672319399,'192.168.64.1',2,36,36446,NULL,'Dell R820: {#DISK_NAME} Serial number','clc93sisl00004xiyevwovlv0',''),('clc93siso00kb4xiyjmc7157g',1,'Admin',1672319399,'192.168.64.1',2,36,36447,NULL,'Dell R820: {#DISK_NAME} Size','clc93sisl00004xiyevwovlv0',''),('clc93siso00kc4xiyrkslwxmz',1,'Admin',1672319399,'192.168.64.1',2,36,36448,NULL,'Dell R820: {#DISK_NAME} S.M.A.R.T. Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00kd4xiytgllx5zs',1,'Admin',1672319399,'192.168.64.1',2,36,36449,NULL,'Dell R820: {#DISK_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00ke4xiyn6k64y2g',1,'Admin',1672319399,'192.168.64.1',2,36,36450,NULL,'Dell R820: {#PSU_DESCR}','clc93sisl00004xiyevwovlv0',''),('clc93siso00kf4xiy1f4125al',1,'Admin',1672319399,'192.168.64.1',2,36,36451,NULL,'Dell R820: {#SENSOR_LOCALE} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00kg4xiybaeqivm9',1,'Admin',1672319399,'192.168.64.1',2,36,36452,NULL,'Dell R820: {#SENSOR_LOCALE} Value','clc93sisl00004xiyevwovlv0',''),('clc93siso00kh4xiyb20f84vt',1,'Admin',1672319399,'192.168.64.1',2,36,36453,NULL,'Dell R820: {#DISK_NAME} Layout type','clc93sisl00004xiyevwovlv0',''),('clc93siso00ki4xiylbvtnlj6',1,'Admin',1672319399,'192.168.64.1',2,36,36454,NULL,'Dell R820: {#DISK_NAME} Read policy','clc93sisl00004xiyevwovlv0',''),('clc93siso00kj4xiywrhddjp6',1,'Admin',1672319399,'192.168.64.1',2,36,36455,NULL,'Dell R820: {#DISK_NAME} Size','clc93sisl00004xiyevwovlv0',''),('clc93siso00kk4xiyet6myvj4',1,'Admin',1672319399,'192.168.64.1',2,36,36456,NULL,'Dell R820: {#DISK_NAME} Current state','clc93sisl00004xiyevwovlv0',''),('clc93siso00kl4xiyrzus29g9',1,'Admin',1672319399,'192.168.64.1',2,36,36457,NULL,'Dell R820: {#DISK_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00km4xiy3k7uf1c3',1,'Admin',1672319399,'192.168.64.1',2,36,36458,NULL,'Dell R820: {#DISK_NAME} Write policy','clc93sisl00004xiyevwovlv0',''),('clc93siso00kn4xiy3hcutehx',1,'Admin',1672319399,'192.168.64.1',2,36,36473,NULL,'Dell R840: {#BATTERY_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00ko4xiyz5m1drty',1,'Admin',1672319399,'192.168.64.1',2,36,36474,NULL,'Dell R840: {#CNTLR_NAME} in slot {#SLOT} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00kp4xiy595mm7tg',1,'Admin',1672319399,'192.168.64.1',2,36,36475,NULL,'Dell R840: {#SENSOR_NAME} Get sensor','clc93sisl00004xiyevwovlv0',''),('clc93siso00kq4xiy77ge9105',1,'Admin',1672319399,'192.168.64.1',2,36,36481,NULL,'Dell R840: {#SENSOR_NAME} Speed','clc93sisl00004xiyevwovlv0',''),('clc93siso00kr4xiyfw5i8soi',1,'Admin',1672319399,'192.168.64.1',2,36,36482,NULL,'Dell R840: {#SENSOR_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00ks4xiyct7pgqe0',1,'Admin',1672319399,'192.168.64.1',2,36,36476,NULL,'Dell R840: {#IFNAME} Get interface','clc93sisl00004xiyevwovlv0',''),('clc93siso00kt4xiylbsyznho',1,'Admin',1672319399,'192.168.64.1',2,36,36483,NULL,'Dell R840: {#IFNAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00ku4xiybj7io51y',1,'Admin',1672319399,'192.168.64.1',2,36,36484,NULL,'Dell R840: {#IFNAME} Speed','clc93sisl00004xiyevwovlv0',''),('clc93siso00kv4xiy9uk1vm3m',1,'Admin',1672319399,'192.168.64.1',2,36,36485,NULL,'Dell R840: {#IFNAME} State','clc93sisl00004xiyevwovlv0',''),('clc93siso00kw4xiyekf5z0wp',1,'Admin',1672319399,'192.168.64.1',2,36,36486,NULL,'Dell R840: {#IFNAME} Link status','clc93sisl00004xiyevwovlv0',''),('clc93siso00kx4xiyn814o9hu',1,'Admin',1672319399,'192.168.64.1',2,36,36477,NULL,'Dell R840: {#DISK_NAME} Get disk','clc93sisl00004xiyevwovlv0',''),('clc93siso00ky4xiyzeve2arx',1,'Admin',1672319399,'192.168.64.1',2,36,36487,NULL,'Dell R840: {#DISK_NAME} Media type','clc93sisl00004xiyevwovlv0',''),('clc93siso00kz4xiy30lpjnr5',1,'Admin',1672319399,'192.168.64.1',2,36,36488,NULL,'Dell R840: {#DISK_NAME} Model name','clc93sisl00004xiyevwovlv0',''),('clc93siso00l04xiynzzuew9j',1,'Admin',1672319399,'192.168.64.1',2,36,36489,NULL,'Dell R840: {#DISK_NAME} Serial number','clc93sisl00004xiyevwovlv0',''),('clc93siso00l14xiyqem5uxa6',1,'Admin',1672319399,'192.168.64.1',2,36,36490,NULL,'Dell R840: {#DISK_NAME} Size','clc93sisl00004xiyevwovlv0',''),('clc93siso00l24xiygsnt9in4',1,'Admin',1672319399,'192.168.64.1',2,36,36491,NULL,'Dell R840: {#DISK_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00l34xiyd25169xx',1,'Admin',1672319399,'192.168.64.1',2,36,36478,NULL,'Dell R840: {#SENSOR_NAME} Get sensor','clc93sisl00004xiyevwovlv0',''),('clc93siso00l44xiyhju90zq0',1,'Admin',1672319399,'192.168.64.1',2,36,36492,NULL,'Dell R840: {#SENSOR_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00l54xiyd2utdtmc',1,'Admin',1672319399,'192.168.64.1',2,36,36479,NULL,'Dell R840: {#SENSOR_NAME} Get sensor','clc93sisl00004xiyevwovlv0',''),('clc93siso00l64xiyyexybudj',1,'Admin',1672319399,'192.168.64.1',2,36,36493,NULL,'Dell R840: {#SENSOR_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00l74xiy4adkrtzo',1,'Admin',1672319399,'192.168.64.1',2,36,36494,NULL,'Dell R840: {#SENSOR_NAME} Value','clc93sisl00004xiyevwovlv0',''),('clc93siso00l84xiypbtvwfxe',1,'Admin',1672319399,'192.168.64.1',2,36,36480,NULL,'Dell R840: {#DISK_NAME} Get disk','clc93sisl00004xiyevwovlv0',''),('clc93siso00l94xiyxdu3hg2s',1,'Admin',1672319399,'192.168.64.1',2,36,36495,NULL,'Dell R840: {#DISK_NAME} RAID status','clc93sisl00004xiyevwovlv0',''),('clc93siso00la4xiyauc9rcy1',1,'Admin',1672319399,'192.168.64.1',2,36,36496,NULL,'Dell R840: {#DISK_NAME} Read policy','clc93sisl00004xiyevwovlv0',''),('clc93siso00lb4xiyfr3tadc3',1,'Admin',1672319399,'192.168.64.1',2,36,36497,NULL,'Dell R840: {#DISK_NAME} Size','clc93sisl00004xiyevwovlv0',''),('clc93siso00lc4xiy0kabylhn',1,'Admin',1672319399,'192.168.64.1',2,36,36498,NULL,'Dell R840: {#DISK_NAME} Current state','clc93sisl00004xiyevwovlv0',''),('clc93siso00ld4xiyo1m859rv',1,'Admin',1672319399,'192.168.64.1',2,36,36499,NULL,'Dell R840: {#DISK_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00le4xiyzht4c51f',1,'Admin',1672319399,'192.168.64.1',2,36,36500,NULL,'Dell R840: {#DISK_NAME} Write policy','clc93sisl00004xiyevwovlv0',''),('clc93siso00lf4xiyywuqx9qm',1,'Admin',1672319399,'192.168.64.1',2,36,36521,NULL,'Dell R840: {#BATTERY_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00lg4xiyksbww8m4',1,'Admin',1672319399,'192.168.64.1',2,36,36522,NULL,'Dell R840: {#CNTLR_NAME} Model','clc93sisl00004xiyevwovlv0',''),('clc93siso00lh4xiy7wv6byxk',1,'Admin',1672319399,'192.168.64.1',2,36,36523,NULL,'Dell R840: {#CNTLR_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00li4xiybq146pa2',1,'Admin',1672319399,'192.168.64.1',2,36,36524,NULL,'Dell R840: {#FAN_DESCR} Speed','clc93sisl00004xiyevwovlv0',''),('clc93siso00lj4xiyvor9vrlg',1,'Admin',1672319399,'192.168.64.1',2,36,36525,NULL,'Dell R840: {#FAN_DESCR} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00lk4xiysncwi57u',1,'Admin',1672319399,'192.168.64.1',2,36,36526,NULL,'Dell R840: {#DISK_NAME} Media type','clc93sisl00004xiyevwovlv0',''),('clc93siso00ll4xiyqqh2e9gv',1,'Admin',1672319399,'192.168.64.1',2,36,36527,NULL,'Dell R840: {#DISK_NAME} Model name','clc93sisl00004xiyevwovlv0',''),('clc93siso00lm4xiys5q4bhy0',1,'Admin',1672319399,'192.168.64.1',2,36,36528,NULL,'Dell R840: {#DISK_NAME} Serial number','clc93sisl00004xiyevwovlv0',''),('clc93siso00ln4xiyun0p60h7',1,'Admin',1672319399,'192.168.64.1',2,36,36529,NULL,'Dell R840: {#DISK_NAME} Size','clc93sisl00004xiyevwovlv0',''),('clc93siso00lo4xiywpzajz5d',1,'Admin',1672319399,'192.168.64.1',2,36,36530,NULL,'Dell R840: {#DISK_NAME} S.M.A.R.T. Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00lp4xiydmb666cu',1,'Admin',1672319399,'192.168.64.1',2,36,36531,NULL,'Dell R840: {#DISK_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00lq4xiyaawfl366',1,'Admin',1672319399,'192.168.64.1',2,36,36532,NULL,'Dell R840: {#PSU_DESCR}','clc93sisl00004xiyevwovlv0',''),('clc93siso00lr4xiyrbdz7wd1',1,'Admin',1672319399,'192.168.64.1',2,36,36533,NULL,'Dell R840: {#SENSOR_LOCALE} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00ls4xiy90pcbq5b',1,'Admin',1672319399,'192.168.64.1',2,36,36534,NULL,'Dell R840: {#SENSOR_LOCALE} Value','clc93sisl00004xiyevwovlv0',''),('clc93siso00lt4xiyhbvvqdod',1,'Admin',1672319399,'192.168.64.1',2,36,36535,NULL,'Dell R840: {#DISK_NAME} Layout type','clc93sisl00004xiyevwovlv0',''),('clc93siso00lu4xiy8w7f90k5',1,'Admin',1672319399,'192.168.64.1',2,36,36536,NULL,'Dell R840: {#DISK_NAME} Read policy','clc93sisl00004xiyevwovlv0',''),('clc93siso00lv4xiy74o9fqql',1,'Admin',1672319399,'192.168.64.1',2,36,36537,NULL,'Dell R840: {#DISK_NAME} Size','clc93sisl00004xiyevwovlv0',''),('clc93siso00lw4xiywyf9zcdq',1,'Admin',1672319399,'192.168.64.1',2,36,36538,NULL,'Dell R840: {#DISK_NAME} Current state','clc93sisl00004xiyevwovlv0',''),('clc93siso00lx4xiyvp0ktrot',1,'Admin',1672319399,'192.168.64.1',2,36,36539,NULL,'Dell R840: {#DISK_NAME} Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00ly4xiyoc9e6za2',1,'Admin',1672319399,'192.168.64.1',2,36,36540,NULL,'Dell R840: {#DISK_NAME} Write policy','clc93sisl00004xiyevwovlv0',''),('clc93siso00lz4xiyeaftf3am',1,'Admin',1672319399,'192.168.64.1',2,36,40460,NULL,'{#FSNAME}: Space utilization','clc93sisl00004xiyevwovlv0',''),('clc93siso00m04xiya6xrllst',1,'Admin',1672319399,'192.168.64.1',2,36,40461,NULL,'{#FSNAME}: Total space','clc93sisl00004xiyevwovlv0',''),('clc93siso00m14xiyrhgt7tsf',1,'Admin',1672319399,'192.168.64.1',2,36,40462,NULL,'{#FSNAME}: Used space','clc93sisl00004xiyevwovlv0',''),('clc93siso00m24xiyq4izg2qc',1,'Admin',1672319399,'192.168.64.1',2,36,40463,NULL,'{#MEMNAME}: Total memory','clc93sisl00004xiyevwovlv0',''),('clc93siso00m34xiyu03abwbb',1,'Admin',1672319399,'192.168.64.1',2,36,40464,NULL,'{#MEMNAME}: Used memory','clc93sisl00004xiyevwovlv0',''),('clc93siso00m44xiyog1uhklm',1,'Admin',1672319399,'192.168.64.1',2,36,40465,NULL,'{#MEMNAME}: Memory utilization','clc93sisl00004xiyevwovlv0',''),('clc93siso00m54xiyib19jwp4',1,'Admin',1672319399,'192.168.64.1',2,36,40663,NULL,'{#ENT_NAME}: Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93siso00m64xiyp6khcfn2',1,'Admin',1672319399,'192.168.64.1',2,36,40664,NULL,'{#SENSOR_INFO}: Fan status','clc93sisl00004xiyevwovlv0',''),('clc93siso00m74xiy2saqiwn4',1,'Admin',1672319399,'192.168.64.1',2,36,40665,NULL,'{#SNMPVALUE}: Free memory','clc93sisl00004xiyevwovlv0',''),('clc93siso00m84xiy0ta8a16f',1,'Admin',1672319399,'192.168.64.1',2,36,40666,NULL,'{#SNMPVALUE}: Used memory','clc93sisl00004xiyevwovlv0',''),('clc93siso00m94xiyskce995q',1,'Admin',1672319399,'192.168.64.1',2,36,40667,NULL,'{#SNMPVALUE}: Memory utilization','clc93sisl00004xiyevwovlv0',''),('clc93siso00ma4xiy9qvqkarl',1,'Admin',1672319399,'192.168.64.1',2,36,40668,NULL,'{#SENSOR_INFO}: Power supply status','clc93sisl00004xiyevwovlv0',''),('clc93siso00mb4xiysxviny93',1,'Admin',1672319399,'192.168.64.1',2,36,40669,NULL,'{#SNMPVALUE}: Temperature status','clc93sisl00004xiyevwovlv0',''),('clc93siso00mc4xiyetapkx6b',1,'Admin',1672319399,'192.168.64.1',2,36,40670,NULL,'{#SNMPVALUE}: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93siso00md4xiy7j1wmk5h',1,'Admin',1672319399,'192.168.64.1',2,36,40690,NULL,'{#SNMPVALUE}: CPU utilization','clc93sisl00004xiyevwovlv0',''),('clc93siso00me4xiy4b2qyw9n',1,'Admin',1672319399,'192.168.64.1',2,36,40691,NULL,'{#ENT_NAME}: Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93siso00mf4xiyvekcp3yx',1,'Admin',1672319399,'192.168.64.1',2,36,40692,NULL,'{#SENSOR_INFO}: Fan status','clc93sisl00004xiyevwovlv0',''),('clc93siso00mg4xiyxiyd67r6',1,'Admin',1672319399,'192.168.64.1',2,36,40693,NULL,'{#SNMPVALUE}: Free memory','clc93sisl00004xiyevwovlv0',''),('clc93siso00mh4xiyhvpjzooz',1,'Admin',1672319399,'192.168.64.1',2,36,40694,NULL,'{#SNMPVALUE}: Used memory','clc93sisl00004xiyevwovlv0',''),('clc93siso00mi4xiybypbpdnz',1,'Admin',1672319399,'192.168.64.1',2,36,40695,NULL,'{#SNMPVALUE}: Memory utilization','clc93sisl00004xiyevwovlv0',''),('clc93siso00mj4xiyruq9r2pn',1,'Admin',1672319399,'192.168.64.1',2,36,40696,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sisl00004xiyevwovlv0',''),('clc93siso00mk4xiyveqhkhib',1,'Admin',1672319399,'192.168.64.1',2,36,40697,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sisl00004xiyevwovlv0',''),('clc93siso00ml4xiy5yf912ch',1,'Admin',1672319399,'192.168.64.1',2,36,40698,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sisl00004xiyevwovlv0',''),('clc93siso00mm4xiy1mri9gd4',1,'Admin',1672319399,'192.168.64.1',2,36,40699,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sisl00004xiyevwovlv0',''),('clc93siso00mn4xiyycc61t1o',1,'Admin',1672319399,'192.168.64.1',2,36,40700,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sisl00004xiyevwovlv0',''),('clc93siso00mo4xiycu0te0pq',1,'Admin',1672319399,'192.168.64.1',2,36,40701,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sisl00004xiyevwovlv0',''),('clc93siso00mp4xiykhvvt097',1,'Admin',1672319399,'192.168.64.1',2,36,40702,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sisl00004xiyevwovlv0',''),('clc93siso00mq4xiy3xp4w1p6',1,'Admin',1672319399,'192.168.64.1',2,36,40703,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sisl00004xiyevwovlv0',''),('clc93siso00mr4xiyf8trs8zn',1,'Admin',1672319399,'192.168.64.1',2,36,40704,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sisl00004xiyevwovlv0',''),('clc93siso00ms4xiyweunupw4',1,'Admin',1672319399,'192.168.64.1',2,36,40705,NULL,'{#SENSOR_INFO}: Power supply status','clc93sisl00004xiyevwovlv0',''),('clc93siso00mt4xiy2n5helnt',1,'Admin',1672319399,'192.168.64.1',2,36,40706,NULL,'{#SNMPVALUE}: Temperature status','clc93sisl00004xiyevwovlv0',''),('clc93siso00mu4xiyao7uxzof',1,'Admin',1672319399,'192.168.64.1',2,36,40707,NULL,'{#SNMPVALUE}: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93siso00mv4xiyyhojnnrw',1,'Admin',1672319399,'192.168.64.1',2,36,40721,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sisl00004xiyevwovlv0',''),('clc93siso00mw4xiy1wgqf509',1,'Admin',1672319399,'192.168.64.1',2,36,40722,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sisl00004xiyevwovlv0',''),('clc93siso00mx4xiyn9o8ovqz',1,'Admin',1672319399,'192.168.64.1',2,36,40723,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sisl00004xiyevwovlv0',''),('clc93siso00my4xiyqyb2jho3',1,'Admin',1672319399,'192.168.64.1',2,36,40724,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sisl00004xiyevwovlv0',''),('clc93siso00mz4xiy8tvf4750',1,'Admin',1672319399,'192.168.64.1',2,36,40725,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sisl00004xiyevwovlv0',''),('clc93siso00n04xiyhoqb681r',1,'Admin',1672319399,'192.168.64.1',2,36,40726,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sisl00004xiyevwovlv0',''),('clc93siso00n14xiy00hflf8z',1,'Admin',1672319399,'192.168.64.1',2,36,40727,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sisl00004xiyevwovlv0',''),('clc93siso00n24xiyb0ih3wvl',1,'Admin',1672319399,'192.168.64.1',2,36,40728,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sisl00004xiyevwovlv0',''),('clc93siso00n34xiyer6rnsxg',1,'Admin',1672319399,'192.168.64.1',2,36,40729,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sisl00004xiyevwovlv0',''),('clc93siso00n44xiyvxu97mre',1,'Admin',1672319399,'192.168.64.1',2,36,40730,NULL,'Interface {#IFNAME}({#IFALIAS}): Duplex status','clc93sisl00004xiyevwovlv0',''),('clc93siso00n54xiyruzy3spy',1,'Admin',1672319399,'192.168.64.1',2,36,40743,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sisl00004xiyevwovlv0',''),('clc93siso00n64xiyq19n9z3q',1,'Admin',1672319399,'192.168.64.1',2,36,40744,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sisl00004xiyevwovlv0',''),('clc93siso00n74xiyrg5b5l9i',1,'Admin',1672319399,'192.168.64.1',2,36,40745,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sisl00004xiyevwovlv0',''),('clc93siso00n84xiytvoxc3pw',1,'Admin',1672319399,'192.168.64.1',2,36,40746,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sisl00004xiyevwovlv0',''),('clc93siso00n94xiyk18u2p3f',1,'Admin',1672319399,'192.168.64.1',2,36,40747,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sisl00004xiyevwovlv0',''),('clc93siso00na4xiy42mc2u11',1,'Admin',1672319399,'192.168.64.1',2,36,40748,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sisl00004xiyevwovlv0',''),('clc93siso00nb4xiyhf9ooknm',1,'Admin',1672319399,'192.168.64.1',2,36,40749,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sisl00004xiyevwovlv0',''),('clc93siso00nc4xiy4sj1hdl5',1,'Admin',1672319399,'192.168.64.1',2,36,40750,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sisl00004xiyevwovlv0',''),('clc93siso00nd4xiy2kt1t7yj',1,'Admin',1672319399,'192.168.64.1',2,36,40751,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sisl00004xiyevwovlv0',''),('clc93siso00ne4xiytuodrv7c',1,'Admin',1672319399,'192.168.64.1',2,36,40765,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sisl00004xiyevwovlv0',''),('clc93siso00nf4xiygod06l57',1,'Admin',1672319399,'192.168.64.1',2,36,40766,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sisl00004xiyevwovlv0',''),('clc93siso00ng4xiyv8e4cs6n',1,'Admin',1672319399,'192.168.64.1',2,36,40767,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sisl00004xiyevwovlv0',''),('clc93siso00nh4xiyvmcwddop',1,'Admin',1672319399,'192.168.64.1',2,36,40768,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sisl00004xiyevwovlv0',''),('clc93siso00ni4xiyuhnir0e7',1,'Admin',1672319399,'192.168.64.1',2,36,40769,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sisl00004xiyevwovlv0',''),('clc93siso00nj4xiyu1ixnajm',1,'Admin',1672319399,'192.168.64.1',2,36,40770,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sisl00004xiyevwovlv0',''),('clc93siso00nk4xiyupz1wxb3',1,'Admin',1672319399,'192.168.64.1',2,36,40771,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sisl00004xiyevwovlv0',''),('clc93siso00nl4xiyju7glkhu',1,'Admin',1672319399,'192.168.64.1',2,36,40772,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sisl00004xiyevwovlv0',''),('clc93siso00nm4xiyuxtgbkw3',1,'Admin',1672319399,'192.168.64.1',2,36,40773,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sisl00004xiyevwovlv0',''),('clc93siso00nn4xiy3a111fc3',1,'Admin',1672319399,'192.168.64.1',2,36,40774,NULL,'Interface {#IFNAME}({#IFALIAS}): Duplex status','clc93sisl00004xiyevwovlv0',''),('clc93siso00no4xiyu67228h7',1,'Admin',1672319399,'192.168.64.1',2,36,40788,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sisl00004xiyevwovlv0',''),('clc93siso00np4xiyrgtprgyl',1,'Admin',1672319399,'192.168.64.1',2,36,40789,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sisl00004xiyevwovlv0',''),('clc93siso00nq4xiyw9yad210',1,'Admin',1672319399,'192.168.64.1',2,36,40790,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sisl00004xiyevwovlv0',''),('clc93siso00nr4xiybsmkid5b',1,'Admin',1672319399,'192.168.64.1',2,36,40791,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sisl00004xiyevwovlv0',''),('clc93siso00ns4xiyp6nz1os4',1,'Admin',1672319399,'192.168.64.1',2,36,40792,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sisl00004xiyevwovlv0',''),('clc93siso00nt4xiyqyvysltd',1,'Admin',1672319399,'192.168.64.1',2,36,40793,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sisl00004xiyevwovlv0',''),('clc93siso00nu4xiyuthjrreo',1,'Admin',1672319399,'192.168.64.1',2,36,40794,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sisl00004xiyevwovlv0',''),('clc93siso00nv4xiye82qc7al',1,'Admin',1672319399,'192.168.64.1',2,36,40795,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sisl00004xiyevwovlv0',''),('clc93siso00nw4xiypvcw2bm9',1,'Admin',1672319399,'192.168.64.1',2,36,40796,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sisl00004xiyevwovlv0',''),('clc93siso00nx4xiy66bfjewz',1,'Admin',1672319399,'192.168.64.1',2,36,40797,NULL,'Interface {#IFNAME}({#IFALIAS}): Duplex status','clc93sisl00004xiyevwovlv0',''),('clc93siso00ny4xiypzskfbt0',1,'Admin',1672319399,'192.168.64.1',2,36,40834,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sisl00004xiyevwovlv0',''),('clc93siso00nz4xiysvtb4f6k',1,'Admin',1672319399,'192.168.64.1',2,36,40835,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sisl00004xiyevwovlv0',''),('clc93siso00o04xiy964k5lnz',1,'Admin',1672319399,'192.168.64.1',2,36,40836,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sisl00004xiyevwovlv0',''),('clc93siso00o14xiyd5ydzojz',1,'Admin',1672319399,'192.168.64.1',2,36,40837,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sisl00004xiyevwovlv0',''),('clc93siso00o24xiymcllgkcx',1,'Admin',1672319399,'192.168.64.1',2,36,40838,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sisl00004xiyevwovlv0',''),('clc93siso00o34xiyjbvypy7s',1,'Admin',1672319399,'192.168.64.1',2,36,40839,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sisl00004xiyevwovlv0',''),('clc93siso00o44xiyoliytjgm',1,'Admin',1672319399,'192.168.64.1',2,36,40840,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sisl00004xiyevwovlv0',''),('clc93siso00o54xiyqsofuyml',1,'Admin',1672319399,'192.168.64.1',2,36,40841,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sisl00004xiyevwovlv0',''),('clc93siso00o64xiywswkyt6p',1,'Admin',1672319399,'192.168.64.1',2,36,40842,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sisl00004xiyevwovlv0',''),('clc93siso00o74xiyn5r5t8gt',1,'Admin',1672319399,'192.168.64.1',2,36,40843,NULL,'Interface {#IFNAME}({#IFALIAS}): Duplex status','clc93sisl00004xiyevwovlv0',''),('clc93siso00o84xiytsp02phn',1,'Admin',1672319399,'192.168.64.1',2,36,42686,NULL,'GarbageCollector: {#JMXNAME} number of collections per second','clc93sisl00004xiyevwovlv0',''),('clc93siso00o94xiy1b2u3wpg',1,'Admin',1672319399,'192.168.64.1',2,36,42687,NULL,'GarbageCollector: {#JMXNAME} accumulated time spent in collection','clc93sisl00004xiyevwovlv0',''),('clc93siso00oa4xiycbj68w21',1,'Admin',1672319399,'192.168.64.1',2,36,42688,NULL,'Memory pool: {#JMXNAME} committed','clc93sisl00004xiyevwovlv0',''),('clc93siso00ob4xiy7zh8zkr1',1,'Admin',1672319399,'192.168.64.1',2,36,42689,NULL,'Memory pool: {#JMXNAME} maximum size','clc93sisl00004xiyevwovlv0',''),('clc93siso00oc4xiyp5dnn5lx',1,'Admin',1672319399,'192.168.64.1',2,36,42690,NULL,'Memory pool: {#JMXNAME} used','clc93sisl00004xiyevwovlv0',''),('clc93siso00od4xiy49ks4tv9',1,'Admin',1672319399,'192.168.64.1',2,36,42987,NULL,'CockroachDB: Storage [{#STORE}]: Capacity available in %','clc93sisl00004xiyevwovlv0',''),('clc93siso00oe4xiyjx5hpam2',1,'Admin',1672319399,'192.168.64.1',2,36,42988,NULL,'CockroachDB: Storage [{#STORE}]: RocksDB cache hit ratio','clc93sisl00004xiyevwovlv0',''),('clc93siso00of4xiytch85z18',1,'Admin',1672319399,'192.168.64.1',2,36,42989,NULL,'CockroachDB: Storage [{#STORE}]: Queue processing failures: Consistency, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00og4xiytwe9imay',1,'Admin',1672319399,'192.168.64.1',2,36,42990,NULL,'CockroachDB: Storage [{#STORE}]: RocksDB cache hits, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00oh4xiyhuxrtic4',1,'Admin',1672319399,'192.168.64.1',2,36,42991,NULL,'CockroachDB: Storage [{#STORE}]: Capacity total','clc93sisl00004xiyevwovlv0',''),('clc93siso00oi4xiyoen4w9lu',1,'Admin',1672319399,'192.168.64.1',2,36,42992,NULL,'CockroachDB: Storage [{#STORE}]: Capacity available','clc93sisl00004xiyevwovlv0',''),('clc93siso00oj4xiymwnaxgp4',1,'Admin',1672319399,'192.168.64.1',2,36,42993,NULL,'CockroachDB: Storage [{#STORE}]: Bytes: System','clc93sisl00004xiyevwovlv0',''),('clc93siso00ok4xiybcl7lb11',1,'Admin',1672319399,'192.168.64.1',2,36,42994,NULL,'CockroachDB: Storage [{#STORE}]: Bytes: Logical','clc93sisl00004xiyevwovlv0',''),('clc93siso00ol4xiycw3i4s1e',1,'Admin',1672319399,'192.168.64.1',2,36,42995,NULL,'CockroachDB: Storage [{#STORE}]: Bytes: Live','clc93sisl00004xiyevwovlv0',''),('clc93siso00om4xiy4m8ijajc',1,'Admin',1672319399,'192.168.64.1',2,36,42996,NULL,'CockroachDB: Storage [{#STORE}]: Slow requests: Raft proposals','clc93sisl00004xiyevwovlv0',''),('clc93siso00on4xiyiiyxj5h3',1,'Admin',1672319399,'192.168.64.1',2,36,42997,NULL,'CockroachDB: Storage [{#STORE}]: Slow requests: Lease acquisitions','clc93sisl00004xiyevwovlv0',''),('clc93siso00oo4xiyz3v8r9r5',1,'Admin',1672319399,'192.168.64.1',2,36,42998,NULL,'CockroachDB: Storage [{#STORE}]: Slow requests: Latch acquisitions','clc93sisl00004xiyevwovlv0',''),('clc93siso00op4xiygk6567ra',1,'Admin',1672319399,'192.168.64.1',2,36,42999,NULL,'CockroachDB: Storage [{#STORE}]: RocksDB SSTables','clc93sisl00004xiyevwovlv0',''),('clc93siso00oq4xiyzpfrspm7',1,'Admin',1672319399,'192.168.64.1',2,36,43000,NULL,'CockroachDB: Storage [{#STORE}]: RocksDB read amplification','clc93sisl00004xiyevwovlv0',''),('clc93siso00or4xiy886hvr4g',1,'Admin',1672319399,'192.168.64.1',2,36,43001,NULL,'CockroachDB: Storage [{#STORE}]: RocksDB cache misses, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00os4xiyt9ppsu6r',1,'Admin',1672319399,'192.168.64.1',2,36,43002,NULL,'CockroachDB: Storage [{#STORE}]: Replication: Lease holders','clc93sisl00004xiyevwovlv0',''),('clc93siso00ot4xiy3xt5q9hx',1,'Admin',1672319399,'192.168.64.1',2,36,43003,NULL,'CockroachDB: Storage [{#STORE}]: Queue processing failures: GC, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00ou4xiykiukeyxq',1,'Admin',1672319399,'192.168.64.1',2,36,43004,NULL,'CockroachDB: Storage [{#STORE}]: Replication: Replicas quiesced','clc93sisl00004xiyevwovlv0',''),('clc93siso00ov4xiyhfhh324l',1,'Admin',1672319399,'192.168.64.1',2,36,43005,NULL,'CockroachDB: Storage [{#STORE}]: Replication: Replicas','clc93sisl00004xiyevwovlv0',''),('clc93siso00ow4xiy1lwpl5xt',1,'Admin',1672319399,'192.168.64.1',2,36,43006,NULL,'CockroachDB: Storage [{#STORE}]: Rebalancing: Average writes, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00ox4xiy6vbqklu0',1,'Admin',1672319399,'192.168.64.1',2,36,43007,NULL,'CockroachDB: Storage [{#STORE}]: Rebalancing: Average queries, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00oy4xiya71qp1ig',1,'Admin',1672319399,'192.168.64.1',2,36,43008,NULL,'CockroachDB: Storage [{#STORE}]: Ranges underreplicated','clc93sisl00004xiyevwovlv0',''),('clc93siso00oz4xiyhhwtn73i',1,'Admin',1672319399,'192.168.64.1',2,36,43009,NULL,'CockroachDB: Storage [{#STORE}]: Ranges unavailable','clc93sisl00004xiyevwovlv0',''),('clc93siso00p04xiy747euraw',1,'Admin',1672319399,'192.168.64.1',2,36,43010,NULL,'CockroachDB: Storage [{#STORE}]: Ranges count','clc93sisl00004xiyevwovlv0',''),('clc93siso00p14xiyazdiiuno',1,'Admin',1672319399,'192.168.64.1',2,36,43011,NULL,'CockroachDB: Storage [{#STORE}]: Queue processing failures: Time series maintenance, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00p24xiy3juxf8i9',1,'Admin',1672319399,'192.168.64.1',2,36,43012,NULL,'CockroachDB: Storage [{#STORE}]: Queue processing failures: Split, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00p34xiyb87kkf7j',1,'Admin',1672319399,'192.168.64.1',2,36,43013,NULL,'CockroachDB: Storage [{#STORE}]: Queue processing failures: Replicate, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00p44xiyv3zigacg',1,'Admin',1672319399,'192.168.64.1',2,36,43014,NULL,'CockroachDB: Storage [{#STORE}]: Queue processing failures: Raft snapshot, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00p54xiy9es1ahde',1,'Admin',1672319399,'192.168.64.1',2,36,43015,NULL,'CockroachDB: Storage [{#STORE}]: Queue processing failures: Raft log, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00p64xiyk1d87v8k',1,'Admin',1672319399,'192.168.64.1',2,36,43016,NULL,'CockroachDB: Storage [{#STORE}]: Queue processing failures: Replica GC, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00p74xiyedgm4opf',1,'Admin',1672319399,'192.168.64.1',2,36,43017,NULL,'CockroachDB: Storage [{#STORE}]: Capacity used','clc93sisl00004xiyevwovlv0',''),('clc93siso00p84xiygu5rvtub',1,'Admin',1672319399,'192.168.64.1',2,36,43050,NULL,'Envoy Proxy: Cluster [\"{#CLUSTER_NAME}\"]: Membership, unhealthy','clc93sisl00004xiyevwovlv0',''),('clc93siso00p94xiywe1c6di0',1,'Admin',1672319399,'192.168.64.1',2,36,43051,NULL,'Envoy Proxy: Cluster [\"{#CLUSTER_NAME}\"]: Membership, degraded','clc93sisl00004xiyevwovlv0',''),('clc93siso00pa4xiy7m5mnwbq',1,'Admin',1672319399,'192.168.64.1',2,36,43052,NULL,'Envoy Proxy: Cluster [\"{#CLUSTER_NAME}\"]: Requests 4xx, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00pb4xiyb0zfsxtv',1,'Admin',1672319399,'192.168.64.1',2,36,43053,NULL,'Envoy Proxy: Cluster [\"{#CLUSTER_NAME}\"]: Requests timeout, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00pc4xiyamf6fzey',1,'Admin',1672319399,'192.168.64.1',2,36,43054,NULL,'Envoy Proxy: Cluster [\"{#CLUSTER_NAME}\"]: Requests pending','clc93sisl00004xiyevwovlv0',''),('clc93siso00pd4xiymdjhz3hv',1,'Admin',1672319399,'192.168.64.1',2,36,43055,NULL,'Envoy Proxy: Cluster [\"{#CLUSTER_NAME}\"]: Requests completed, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00pe4xiypj4kqukm',1,'Admin',1672319399,'192.168.64.1',2,36,43056,NULL,'Envoy Proxy: Cluster [\"{#CLUSTER_NAME}\"]: Requests active','clc93sisl00004xiyevwovlv0',''),('clc93siso00pf4xiy0erceitw',1,'Admin',1672319399,'192.168.64.1',2,36,43057,NULL,'Envoy Proxy: Cluster [\"{#CLUSTER_NAME}\"]: Requests 5xx, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00pg4xiy9m388hxq',1,'Admin',1672319399,'192.168.64.1',2,36,43058,NULL,'Envoy Proxy: Cluster [\"{#CLUSTER_NAME}\"]: Requests 2xx, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00ph4xiymzi1o4hz',1,'Admin',1672319399,'192.168.64.1',2,36,43059,NULL,'Envoy Proxy: Cluster [\"{#CLUSTER_NAME}\"]: Requests 3xx, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00pi4xiypnsgw2r0',1,'Admin',1672319399,'192.168.64.1',2,36,43060,NULL,'Envoy Proxy: Cluster [\"{#CLUSTER_NAME}\"]: Membership, healthy','clc93sisl00004xiyevwovlv0',''),('clc93siso00pj4xiyqjl1lffz',1,'Admin',1672319399,'192.168.64.1',2,36,43061,NULL,'Envoy Proxy: Cluster [\"{#CLUSTER_NAME}\"]: Upstream bytes out, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00pk4xiytx1tqovp',1,'Admin',1672319399,'192.168.64.1',2,36,43062,NULL,'Envoy Proxy: Cluster [\"{#CLUSTER_NAME}\"]: Connections, total','clc93sisl00004xiyevwovlv0',''),('clc93siso00pl4xiyryn0mi93',1,'Admin',1672319399,'192.168.64.1',2,36,43063,NULL,'Envoy Proxy: Cluster [\"{#CLUSTER_NAME}\"]: Upstream bytes in, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00pm4xiy053dvkni',1,'Admin',1672319399,'192.168.64.1',2,36,43064,NULL,'Envoy Proxy: Cluster [\"{#CLUSTER_NAME}\"]: Connections, active','clc93sisl00004xiyevwovlv0',''),('clc93siso00pn4xiyv41v6a6m',1,'Admin',1672319399,'192.168.64.1',2,36,43065,NULL,'Envoy Proxy: Cluster [\"{#CLUSTER_NAME}\"]: Membership, total','clc93sisl00004xiyevwovlv0',''),('clc93siso00po4xiy2b2gpys7',1,'Admin',1672319399,'192.168.64.1',2,36,43066,NULL,'Envoy Proxy: Cluster [\"{#CLUSTER_NAME}\"]: Requests total, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00pp4xiyldkyy33j',1,'Admin',1672319399,'192.168.64.1',2,36,43067,NULL,'Envoy Proxy: HTTP [\"{#CONN_MANAGER}\"]: Connections, active','clc93sisl00004xiyevwovlv0',''),('clc93siso00pq4xiyoxay56eg',1,'Admin',1672319399,'192.168.64.1',2,36,43068,NULL,'Envoy Proxy: HTTP [\"{#CONN_MANAGER}\"]: Bytes in, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00pr4xiyno9djcq8',1,'Admin',1672319399,'192.168.64.1',2,36,43069,NULL,'Envoy Proxy: HTTP [\"{#CONN_MANAGER}\"]: Connections, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00ps4xiydmbkv89k',1,'Admin',1672319399,'192.168.64.1',2,36,43070,NULL,'Envoy Proxy: HTTP [\"{#CONN_MANAGER}\"]: Bytes out, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00pt4xiyge126xbt',1,'Admin',1672319399,'192.168.64.1',2,36,43071,NULL,'Envoy Proxy: HTTP [\"{#CONN_MANAGER}\"]: Requests, active','clc93sisl00004xiyevwovlv0',''),('clc93siso00pu4xiyoxuahaty',1,'Admin',1672319399,'192.168.64.1',2,36,43072,NULL,'Envoy Proxy: HTTP [\"{#CONN_MANAGER}\"]: Requests timeout, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00pv4xiyowu4y0wy',1,'Admin',1672319399,'192.168.64.1',2,36,43073,NULL,'Envoy Proxy: HTTP [\"{#CONN_MANAGER}\"]: Requests, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00pw4xiyzqi80zne',1,'Admin',1672319399,'192.168.64.1',2,36,43074,NULL,'Envoy Proxy: Listener [\"{#LISTENER_ADDRESS}\"]: Connections, active','clc93sisl00004xiyevwovlv0',''),('clc93siso00px4xiyawovqg6w',1,'Admin',1672319399,'192.168.64.1',2,36,43075,NULL,'Envoy Proxy: Listener [\"{#LISTENER_ADDRESS}\"]: Connections, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00py4xiyiqznnaan',1,'Admin',1672319399,'192.168.64.1',2,36,43076,NULL,'Envoy Proxy: Listener [\"{#LISTENER_ADDRESS}\"]: Sockets, undergoing','clc93sisl00004xiyevwovlv0',''),('clc93siso00pz4xiyhddotx89',1,'Admin',1672319399,'192.168.64.1',2,36,43137,NULL,'Consul: HTTP request: [\"{#HTTP_METHOD}\"], p50','clc93sisl00004xiyevwovlv0',''),('clc93siso00q04xiy7gmhmy5t',1,'Admin',1672319399,'192.168.64.1',2,36,43138,NULL,'Consul: HTTP request: [\"{#HTTP_METHOD}\"], p90','clc93sisl00004xiyevwovlv0',''),('clc93siso00q14xiyp97ijmai',1,'Admin',1672319399,'192.168.64.1',2,36,43139,NULL,'Consul: HTTP request: [\"{#HTTP_METHOD}\"], rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00q24xiypvuaf7d5',1,'Admin',1672319399,'192.168.64.1',2,36,43140,NULL,'Consul: [\"{#SERVICE_NAME}\"]: Aggregated status','clc93sisl00004xiyevwovlv0',''),('clc93siso00q34xiyopbfoy6p',1,'Admin',1672319399,'192.168.64.1',2,36,43141,NULL,'Consul: [\"{#SERVICE_NAME}\"]: Check [\"{#SERVICE_CHECK_NAME}\"]: Output','clc93sisl00004xiyevwovlv0',''),('clc93siso00q44xiyc5ewv2uv',1,'Admin',1672319399,'192.168.64.1',2,36,43142,NULL,'Consul: [\"{#SERVICE_NAME}\"]: Check [\"{#SERVICE_CHECK_NAME}\"]: Status','clc93sisl00004xiyevwovlv0',''),('clc93siso00q54xiybp8qn4yp',1,'Admin',1672319399,'192.168.64.1',2,36,43143,NULL,'Consul: Autopilot healthy','clc93sisl00004xiyevwovlv0',''),('clc93siso00q64xiyxzwhifps',1,'Admin',1672319399,'192.168.64.1',2,36,43144,NULL,'Consul: Raft state: commit time, p50','clc93sisl00004xiyevwovlv0',''),('clc93siso00q74xiyn85l94ew',1,'Admin',1672319399,'192.168.64.1',2,36,43145,NULL,'Consul: Raft state: commit time, p90','clc93sisl00004xiyevwovlv0',''),('clc93siso00q84xiyui6i2avs',1,'Admin',1672319399,'192.168.64.1',2,36,43146,NULL,'Consul: Raft state: commit, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00q94xiycmhvlu1t',1,'Admin',1672319399,'192.168.64.1',2,36,43147,NULL,'Consul: Raft state: dispatch log, p50','clc93sisl00004xiyevwovlv0',''),('clc93siso00qa4xiya69xqjp0',1,'Admin',1672319399,'192.168.64.1',2,36,43148,NULL,'Consul: Raft state: dispatch log, p90','clc93sisl00004xiyevwovlv0',''),('clc93siso00qb4xiy10uqaa35',1,'Admin',1672319399,'192.168.64.1',2,36,43149,NULL,'Consul: Raft state: dispatch log, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00qc4xiytvpp2ulz',1,'Admin',1672319399,'192.168.64.1',2,36,43150,NULL,'Consul: Raft state: leader last contact, p50','clc93sisl00004xiyevwovlv0',''),('clc93siso00qd4xiymahju8a4',1,'Admin',1672319399,'192.168.64.1',2,36,43151,NULL,'Consul: Raft state: leader last contact, p90','clc93sisl00004xiyevwovlv0',''),('clc93siso00qe4xiy5vjyrrxe',1,'Admin',1672319399,'192.168.64.1',2,36,43152,NULL,'Consul: Raft: apply, rate','clc93sisl00004xiyevwovlv0',''),('clc93siso00qf4xiyj4037p58',1,'Admin',1672319399,'192.168.64.1',2,36,43153,NULL,'Consul: Raft state','clc93sisl00004xiyevwovlv0',''),('clc93siso00qg4xiyxejm8vff',1,'Admin',1672319399,'192.168.64.1',2,36,43154,NULL,'Consul: Raft state: candidate','clc93sisl00004xiyevwovlv0',''),('clc93siso00qh4xiynfdoycrk',1,'Admin',1672319399,'192.168.64.1',2,36,43155,NULL,'Consul: Raft state: leader','clc93sisl00004xiyevwovlv0',''),('clc93siso00qi4xiyvdktkzpv',1,'Admin',1672319399,'192.168.64.1',2,36,43169,NULL,'Consul: Node [\"{#NODE_NAME}\"]: Serf Health','clc93sisl00004xiyevwovlv0',''),('clc93siso00qj4xiy9xiw3xr2',1,'Admin',1672319399,'192.168.64.1',2,36,43168,NULL,'Consul cluster: [\"{#SERVICE_NAME}\"]: Get raw service state','clc93sisl00004xiyevwovlv0',''),('clc93siso00qk4xiyzefwaugi',1,'Admin',1672319399,'192.168.64.1',2,36,43170,NULL,'Consul: Service [\"{#SERVICE_NAME}\"]: Nodes critical','clc93sisl00004xiyevwovlv0',''),('clc93siso00ql4xiysu615007',1,'Admin',1672319399,'192.168.64.1',2,36,43171,NULL,'Consul: Service [\"{#SERVICE_NAME}\"]: Nodes passing','clc93sisl00004xiyevwovlv0',''),('clc93siso00qm4xiyxymbcq7d',1,'Admin',1672319399,'192.168.64.1',2,36,43172,NULL,'Consul: Service [\"{#SERVICE_NAME}\"]: Nodes warning','clc93sisl00004xiyevwovlv0',''),('clc93siso00qn4xiyy49z5iy0',1,'Admin',1672319399,'192.168.64.1',2,36,44319,NULL,'Uplink [{#IP}]: [{#UPLINK}]: Latency','clc93sisl00004xiyevwovlv0',''),('clc93siso00qo4xiymmr2547v',1,'Admin',1672319399,'192.168.64.1',2,36,44320,NULL,'Uplink [{#IP}]: [{#UPLINK}]: Loss, %','clc93sisl00004xiyevwovlv0',''),('clc93siso00qp4xiywe2sei5c',1,'Admin',1672319399,'192.168.64.1',2,36,44321,NULL,'Uplink [{#INTERFACE}]: [{#UPLINK.ROLE}]: [{#NETWORK.NAME}]: status','clc93sisl00004xiyevwovlv0',''),('clc93siso00qq4xiyxys2fbh6',1,'Admin',1672319399,'192.168.64.1',2,36,44322,NULL,'VPN [{#NETWORK.NAME}]=>[{#PEER.NETWORK.NAME}]: stats raw','clc93sisl00004xiyevwovlv0',''),('clc93siso00qr4xiygg5h7f37',1,'Admin',1672319399,'192.168.64.1',2,36,44323,NULL,'VPN [{#NETWORK.NAME}][{#SENDER.UPLINK}]=>[{#PEER.NETWORK.NAME}][{#RECEIVER.UPLINK}]: jitter avg','clc93sisl00004xiyevwovlv0',''),('clc93siso00qs4xiya4d9xcyq',1,'Admin',1672319399,'192.168.64.1',2,36,44324,NULL,'VPN [{#NETWORK.NAME}][{#SENDER.UPLINK}]=>[{#PEER.NETWORK.NAME}][{#RECEIVER.UPLINK}]: jitter max','clc93sisl00004xiyevwovlv0',''),('clc93siso00qt4xiy7smxm33r',1,'Admin',1672319399,'192.168.64.1',2,36,44325,NULL,'VPN [{#NETWORK.NAME}][{#SENDER.UPLINK}]=>[{#PEER.NETWORK.NAME}][{#RECEIVER.UPLINK}]: jitter min','clc93sisl00004xiyevwovlv0',''),('clc93siso00qu4xiy726xw310',1,'Admin',1672319399,'192.168.64.1',2,36,44326,NULL,'VPN [{#NETWORK.NAME}][{#SENDER.UPLINK}]=>[{#PEER.NETWORK.NAME}][{#RECEIVER.UPLINK}]: latency avg','clc93sisl00004xiyevwovlv0',''),('clc93siso00qv4xiyswf7oxrf',1,'Admin',1672319399,'192.168.64.1',2,36,44327,NULL,'VPN [{#NETWORK.NAME}][{#SENDER.UPLINK}]=>[{#PEER.NETWORK.NAME}][{#RECEIVER.UPLINK}]: latency max','clc93sisl00004xiyevwovlv0',''),('clc93siso00qw4xiyudokdt3b',1,'Admin',1672319399,'192.168.64.1',2,36,44328,NULL,'VPN [{#NETWORK.NAME}][{#SENDER.UPLINK}]=>[{#PEER.NETWORK.NAME}][{#RECEIVER.UPLINK}]: latency min','clc93sisl00004xiyevwovlv0',''),('clc93siso00qx4xiy4269kvdq',1,'Admin',1672319399,'192.168.64.1',2,36,44329,NULL,'VPN [{#NETWORK.NAME}][{#SENDER.UPLINK}]=>[{#PEER.NETWORK.NAME}][{#RECEIVER.UPLINK}]: loss avg, %','clc93sisl00004xiyevwovlv0',''),('clc93siso00qy4xiyki74yh3y',1,'Admin',1672319399,'192.168.64.1',2,36,44330,NULL,'VPN [{#NETWORK.NAME}][{#SENDER.UPLINK}]=>[{#PEER.NETWORK.NAME}][{#RECEIVER.UPLINK}]: loss max, %','clc93sisl00004xiyevwovlv0',''),('clc93siso00qz4xiy8bsnd95p',1,'Admin',1672319399,'192.168.64.1',2,36,44331,NULL,'VPN [{#NETWORK.NAME}][{#SENDER.UPLINK}]=>[{#PEER.NETWORK.NAME}][{#RECEIVER.UPLINK}]: loss min, %','clc93sisl00004xiyevwovlv0',''),('clc93siso00r04xiy4cgfbkfu',1,'Admin',1672319399,'192.168.64.1',2,36,44332,NULL,'VPN [{#NETWORK.NAME}][{#SENDER.UPLINK}]=>[{#PEER.NETWORK.NAME}][{#RECEIVER.UPLINK}]: mos avg','clc93sisl00004xiyevwovlv0',''),('clc93siso00r14xiyi5c5uca8',1,'Admin',1672319399,'192.168.64.1',2,36,44333,NULL,'VPN [{#NETWORK.NAME}][{#SENDER.UPLINK}]=>[{#PEER.NETWORK.NAME}][{#RECEIVER.UPLINK}]: mos max','clc93sisl00004xiyevwovlv0',''),('clc93siso00r24xiyhpazwm57',1,'Admin',1672319399,'192.168.64.1',2,36,44334,NULL,'VPN [{#NETWORK.NAME}][{#SENDER.UPLINK}]=>[{#PEER.NETWORK.NAME}][{#RECEIVER.UPLINK}]: mos min','clc93sisl00004xiyevwovlv0',''),('clc93siso00r34xiyyvry9ezb',1,'Admin',1672319399,'192.168.64.1',2,36,44403,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sisl00004xiyevwovlv0',''),('clc93siso00r44xiysv9b4yi9',1,'Admin',1672319399,'192.168.64.1',2,36,44404,NULL,'{#ENT_NAME}: Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93siso00r54xiyoj9i2m4g',1,'Admin',1672319399,'192.168.64.1',2,36,44405,NULL,'{#SNMPVALUE}: Fan operational status','clc93sisl00004xiyevwovlv0',''),('clc93siso00r64xiynoh71cpd',1,'Admin',1672319399,'192.168.64.1',2,36,44406,NULL,'{#SNMPVALUE}: Free memory','clc93sisl00004xiyevwovlv0',''),('clc93siso00r74xiykogoaaea',1,'Admin',1672319399,'192.168.64.1',2,36,44407,NULL,'{#SNMPVALUE}: Used memory','clc93sisl00004xiyevwovlv0',''),('clc93sisp00r84xiyvujrdoph',1,'Admin',1672319399,'192.168.64.1',2,36,44408,NULL,'{#SNMPVALUE}: Memory utilization','clc93sisl00004xiyevwovlv0',''),('clc93sisp00r94xiyy659jjeu',1,'Admin',1672319399,'192.168.64.1',2,36,44409,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sisl00004xiyevwovlv0',''),('clc93sisp00ra4xiybc0z9atd',1,'Admin',1672319399,'192.168.64.1',2,36,44410,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sisl00004xiyevwovlv0',''),('clc93sisp00rb4xiykbvprcy1',1,'Admin',1672319399,'192.168.64.1',2,36,44411,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sisl00004xiyevwovlv0',''),('clc93sisp00rc4xiyt6kxo1jw',1,'Admin',1672319399,'192.168.64.1',2,36,44412,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sisl00004xiyevwovlv0',''),('clc93sisp00rd4xiyim98ztz8',1,'Admin',1672319399,'192.168.64.1',2,36,44413,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sisl00004xiyevwovlv0',''),('clc93sisp00re4xiy9lz3a42u',1,'Admin',1672319399,'192.168.64.1',2,36,44414,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sisl00004xiyevwovlv0',''),('clc93sisp00rf4xiygwvcvf6t',1,'Admin',1672319399,'192.168.64.1',2,36,44415,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sisl00004xiyevwovlv0',''),('clc93sisp00rg4xiydhig0fr6',1,'Admin',1672319399,'192.168.64.1',2,36,44416,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sisl00004xiyevwovlv0',''),('clc93sisp00rh4xiythx1gg12',1,'Admin',1672319399,'192.168.64.1',2,36,44417,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sisl00004xiyevwovlv0',''),('clc93sisp00ri4xiy9gdbuy4t',1,'Admin',1672319399,'192.168.64.1',2,36,44418,NULL,'Interface {#IFNAME}({#IFALIAS}): Duplex status','clc93sisl00004xiyevwovlv0',''),('clc93sisp00rj4xiy8ngtcog6',1,'Admin',1672319399,'192.168.64.1',2,36,44419,NULL,'{#SNMPVALUE}: Power supply status','clc93sisl00004xiyevwovlv0',''),('clc93sisp00rk4xiy5qp0kucm',1,'Admin',1672319399,'192.168.64.1',2,36,44420,NULL,'{#SNMPVALUE}: Temperature sensor status','clc93sisl00004xiyevwovlv0',''),('clc93sisp00rl4xiy0srrdi9e',1,'Admin',1672319399,'192.168.64.1',2,36,44421,NULL,'{#SNMPVALUE}: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93siu800rm4xiyxo90r0h1',1,'Admin',1672319399,'192.168.64.1',2,37,10523,NULL,'Consul {#NODE_NAME}','clc93sisl00004xiyevwovlv0',''),('clc93siu800rn4xiyyib50ymh',1,'Admin',1672319399,'192.168.64.1',2,37,10549,NULL,'{#NAME}','clc93sisl00004xiyevwovlv0',''),('clc93siu800ro4xiyjhw05c1x',1,'Admin',1672319399,'192.168.64.1',2,37,10550,NULL,'{#NAME}','clc93sisl00004xiyevwovlv0',''),('clc93siz700rp4xiyjc3d42qr',1,'Admin',1672319399,'192.168.64.1',2,15,42179,NULL,'Host name of Zabbix agent running','clc93sisl00004xiyevwovlv0',''),('clc93siz700rq4xiy0d2l74ar',1,'Admin',1672319399,'192.168.64.1',2,15,42180,NULL,'Zabbix agent ping','clc93sisl00004xiyevwovlv0',''),('clc93siz700rr4xiyghyydcs5',1,'Admin',1672319399,'192.168.64.1',2,15,42181,NULL,'Version of Zabbix agent running','clc93sisl00004xiyevwovlv0',''),('clc93siz700rs4xiyssxjtj2r',1,'Admin',1672319399,'192.168.64.1',2,15,22875,NULL,'Maximum number of opened files','clc93sisl00004xiyevwovlv0',''),('clc93siz700rt4xiy3mxbhw3k',1,'Admin',1672319399,'192.168.64.1',2,15,22876,NULL,'Maximum number of processes','clc93sisl00004xiyevwovlv0',''),('clc93siz700ru4xiy4igl1qt5',1,'Admin',1672319399,'192.168.64.1',2,15,22877,NULL,'Number of running processes','clc93sisl00004xiyevwovlv0',''),('clc93siz700rv4xiyuki1rg92',1,'Admin',1672319399,'192.168.64.1',2,15,22878,NULL,'Number of processes','clc93sisl00004xiyevwovlv0',''),('clc93siz700rw4xiyhsz17r3f',1,'Admin',1672319399,'192.168.64.1',2,15,22879,NULL,'Host boot time','clc93sisl00004xiyevwovlv0',''),('clc93siz700rx4xiy3gm9zm6y',1,'Admin',1672319399,'192.168.64.1',2,15,22880,NULL,'Interrupts per second','clc93sisl00004xiyevwovlv0',''),('clc93siz700ry4xiy5jnbqslg',1,'Admin',1672319399,'192.168.64.1',2,15,22881,NULL,'Processor load (15 min average per core)','clc93sisl00004xiyevwovlv0',''),('clc93siz700rz4xiy7sff9ydd',1,'Admin',1672319399,'192.168.64.1',2,15,22882,NULL,'Processor load (1 min average per core)','clc93sisl00004xiyevwovlv0',''),('clc93siz700s04xiy3l9r4oiq',1,'Admin',1672319399,'192.168.64.1',2,15,22883,NULL,'Processor load (5 min average per core)','clc93sisl00004xiyevwovlv0',''),('clc93siz700s14xiys4qyhns7',1,'Admin',1672319399,'192.168.64.1',2,15,22884,NULL,'Context switches per second','clc93sisl00004xiyevwovlv0',''),('clc93siz700s24xiy1oyqgqzx',1,'Admin',1672319399,'192.168.64.1',2,15,22885,NULL,'CPU idle time','clc93sisl00004xiyevwovlv0',''),('clc93siz700s34xiys2dze20j',1,'Admin',1672319399,'192.168.64.1',2,15,22886,NULL,'CPU interrupt time','clc93sisl00004xiyevwovlv0',''),('clc93siz700s44xiybgfzhj67',1,'Admin',1672319399,'192.168.64.1',2,15,22888,NULL,'CPU nice time','clc93sisl00004xiyevwovlv0',''),('clc93siz700s54xiyxad4vm3l',1,'Admin',1672319399,'192.168.64.1',2,15,22891,NULL,'CPU system time','clc93sisl00004xiyevwovlv0',''),('clc93siz700s64xiys0vp3tcv',1,'Admin',1672319399,'192.168.64.1',2,15,22892,NULL,'CPU user time','clc93sisl00004xiyevwovlv0',''),('clc93siz700s74xiyhe1pgtyy',1,'Admin',1672319399,'192.168.64.1',2,15,22893,NULL,'Host name','clc93sisl00004xiyevwovlv0',''),('clc93siz700s84xiyoii5u2w5',1,'Admin',1672319399,'192.168.64.1',2,15,22894,NULL,'Host local time','clc93sisl00004xiyevwovlv0',''),('clc93siz700s94xiyux7ny2uz',1,'Admin',1672319399,'192.168.64.1',2,15,22895,NULL,'Free swap space','clc93sisl00004xiyevwovlv0',''),('clc93siz700sa4xiyzgjqz9xk',1,'Admin',1672319399,'192.168.64.1',2,15,22896,NULL,'Free swap space in %','clc93sisl00004xiyevwovlv0',''),('clc93siz700sb4xiyo4u8wd1c',1,'Admin',1672319399,'192.168.64.1',2,15,22897,NULL,'Total swap space','clc93sisl00004xiyevwovlv0',''),('clc93siz700sc4xiywjkxsm2p',1,'Admin',1672319399,'192.168.64.1',2,15,22898,NULL,'System information','clc93sisl00004xiyevwovlv0',''),('clc93siz700sd4xiy8koonqsf',1,'Admin',1672319399,'192.168.64.1',2,15,22899,NULL,'System uptime','clc93sisl00004xiyevwovlv0',''),('clc93siz700se4xiycb1eoyrd',1,'Admin',1672319399,'192.168.64.1',2,15,22900,NULL,'Number of logged in users','clc93sisl00004xiyevwovlv0',''),('clc93siz700sf4xiyfhbxyv68',1,'Admin',1672319399,'192.168.64.1',2,15,22901,NULL,'Checksum of /etc/passwd','clc93sisl00004xiyevwovlv0',''),('clc93siz700sg4xiy6zvupld4',1,'Admin',1672319399,'192.168.64.1',2,15,44430,NULL,'Get filesystems','clc93sisl00004xiyevwovlv0',''),('clc93siz700sh4xiymiuog81m',1,'Admin',1672319399,'192.168.64.1',2,15,22902,NULL,'Available memory','clc93sisl00004xiyevwovlv0',''),('clc93siz700si4xiyrbzoxapb',1,'Admin',1672319399,'192.168.64.1',2,15,22903,NULL,'Total memory','clc93sisl00004xiyevwovlv0',''),('clc93siz700sj4xiy2dd2ck1u',1,'Admin',1672319399,'192.168.64.1',2,15,42182,NULL,'Zabbix agent availability','clc93sisl00004xiyevwovlv0',''),('clc93siz700sk4xiym497qwlq',1,'Admin',1672319399,'192.168.64.1',2,15,42183,NULL,'Host name of Zabbix agent running','clc93sisl00004xiyevwovlv0',''),('clc93siz700sl4xiy2q4hf0j9',1,'Admin',1672319399,'192.168.64.1',2,15,42184,NULL,'Zabbix agent ping','clc93sisl00004xiyevwovlv0',''),('clc93siz700sm4xiyynmavv6z',1,'Admin',1672319399,'192.168.64.1',2,15,42185,NULL,'Version of Zabbix agent running','clc93sisl00004xiyevwovlv0',''),('clc93siz700sn4xiyztr435qy',1,'Admin',1672319399,'192.168.64.1',2,15,22961,NULL,'Processor load (15 min average per core)','clc93sisl00004xiyevwovlv0',''),('clc93siz700so4xiy3nh2kcji',1,'Admin',1672319399,'192.168.64.1',2,15,22962,NULL,'Processor load (1 min average per core)','clc93sisl00004xiyevwovlv0',''),('clc93siz700sp4xiyfrmkaheb',1,'Admin',1672319399,'192.168.64.1',2,15,22963,NULL,'Processor load (5 min average per core)','clc93sisl00004xiyevwovlv0',''),('clc93siz700sq4xiyci6h6a6i',1,'Admin',1672319399,'192.168.64.1',2,15,22965,NULL,'CPU idle time','clc93sisl00004xiyevwovlv0',''),('clc93siz700sr4xiyzgqwm6de',1,'Admin',1672319399,'192.168.64.1',2,15,22968,NULL,'CPU nice time','clc93sisl00004xiyevwovlv0',''),('clc93siz700ss4xiyx5f65v4s',1,'Admin',1672319399,'192.168.64.1',2,15,22971,NULL,'CPU system time','clc93sisl00004xiyevwovlv0',''),('clc93siz700st4xiycwrfuoxp',1,'Admin',1672319399,'192.168.64.1',2,15,22972,NULL,'CPU user time','clc93sisl00004xiyevwovlv0',''),('clc93siz700su4xiynckvkmpg',1,'Admin',1672319399,'192.168.64.1',2,15,22973,NULL,'Host name','clc93sisl00004xiyevwovlv0',''),('clc93siz700sv4xiykb99cd0q',1,'Admin',1672319399,'192.168.64.1',2,15,22974,NULL,'Host local time','clc93sisl00004xiyevwovlv0',''),('clc93siz700sw4xiygumg4716',1,'Admin',1672319399,'192.168.64.1',2,15,22978,NULL,'System information','clc93sisl00004xiyevwovlv0',''),('clc93siz700sx4xiy1rx6r875',1,'Admin',1672319399,'192.168.64.1',2,15,22980,NULL,'Number of logged in users','clc93sisl00004xiyevwovlv0',''),('clc93siz700sy4xiyv1zq9fga',1,'Admin',1672319399,'192.168.64.1',2,15,22981,NULL,'Checksum of /etc/passwd','clc93sisl00004xiyevwovlv0',''),('clc93siz700sz4xiy3l2k1rus',1,'Admin',1672319399,'192.168.64.1',2,15,44433,NULL,'Get filesystems','clc93sisl00004xiyevwovlv0',''),('clc93siz700t04xiybr5d01ox',1,'Admin',1672319399,'192.168.64.1',2,15,22982,NULL,'Available memory','clc93sisl00004xiyevwovlv0',''),('clc93siz700t14xiyxazlahxz',1,'Admin',1672319399,'192.168.64.1',2,15,22983,NULL,'Total memory','clc93sisl00004xiyevwovlv0',''),('clc93siz700t24xiyiyll6kmg',1,'Admin',1672319399,'192.168.64.1',2,15,42186,NULL,'Zabbix agent availability','clc93sisl00004xiyevwovlv0',''),('clc93siz700t34xiyghpm1s9v',1,'Admin',1672319399,'192.168.64.1',2,15,23644,NULL,'FTP service is running','clc93sisl00004xiyevwovlv0',''),('clc93siz700t44xiy03oqbqtb',1,'Admin',1672319399,'192.168.64.1',2,15,31499,NULL,'ClassLoading: Loaded class count','clc93sisl00004xiyevwovlv0',''),('clc93siz700t54xiyxp5yfpg4',1,'Admin',1672319399,'192.168.64.1',2,15,31527,NULL,'ClassLoading: Total loaded class count','clc93sisl00004xiyevwovlv0',''),('clc93siz700t64xiybl9266fi',1,'Admin',1672319399,'192.168.64.1',2,15,31529,NULL,'ClassLoading: Unloaded class count','clc93sisl00004xiyevwovlv0',''),('clc93siz700t74xiypk73bkuh',1,'Admin',1672319399,'192.168.64.1',2,15,31530,NULL,'Compilation: Name of the current JIT compiler','clc93sisl00004xiyevwovlv0',''),('clc93siz700t84xiyu5dbp2hs',1,'Admin',1672319399,'192.168.64.1',2,15,31531,NULL,'Compilation: Accumulated time spent','clc93sisl00004xiyevwovlv0',''),('clc93siz700t94xiy11dheim8',1,'Admin',1672319399,'192.168.64.1',2,15,31544,NULL,'Memory: Heap memory committed','clc93sisl00004xiyevwovlv0',''),('clc93siz700ta4xiyn9f9xra3',1,'Admin',1672319399,'192.168.64.1',2,15,31545,NULL,'Memory: Heap memory maximum size','clc93sisl00004xiyevwovlv0',''),('clc93siz700tb4xiykavihdsd',1,'Admin',1672319399,'192.168.64.1',2,15,31546,NULL,'Memory: Heap memory used','clc93sisl00004xiyevwovlv0',''),('clc93siz700tc4xiyu5wx0s9k',1,'Admin',1672319399,'192.168.64.1',2,15,31547,NULL,'Memory: Non-Heap memory committed','clc93sisl00004xiyevwovlv0',''),('clc93siz700td4xiyncsgng6e',1,'Admin',1672319399,'192.168.64.1',2,15,31548,NULL,'Memory: Non-Heap memory maximum size','clc93sisl00004xiyevwovlv0',''),('clc93siz700te4xiyogcg3c5w',1,'Admin',1672319399,'192.168.64.1',2,15,31549,NULL,'Memory: Non-Heap memory used','clc93sisl00004xiyevwovlv0',''),('clc93siz700tf4xiy2bc42o8u',1,'Admin',1672319399,'192.168.64.1',2,15,31550,NULL,'Memory: Object pending finalization count','clc93sisl00004xiyevwovlv0',''),('clc93siz700tg4xiy9kda25dj',1,'Admin',1672319399,'192.168.64.1',2,15,31516,NULL,'OperatingSystem: File descriptors maximum count','clc93sisl00004xiyevwovlv0',''),('clc93siz700th4xiye7xdts1s',1,'Admin',1672319399,'192.168.64.1',2,15,31517,NULL,'OperatingSystem: File descriptors opened','clc93sisl00004xiyevwovlv0',''),('clc93siz700ti4xiyej9l4s9i',1,'Admin',1672319399,'192.168.64.1',2,15,31518,NULL,'OperatingSystem: Process CPU Load','clc93sisl00004xiyevwovlv0',''),('clc93siz700tj4xiycyxmnq46',1,'Admin',1672319399,'192.168.64.1',2,15,31519,NULL,'Runtime: JVM uptime','clc93sisl00004xiyevwovlv0',''),('clc93siz700tk4xiyqbtb9i1g',1,'Admin',1672319399,'192.168.64.1',2,15,31520,NULL,'Runtime: JVM name','clc93sisl00004xiyevwovlv0',''),('clc93siz700tl4xiy1dit1mho',1,'Admin',1672319399,'192.168.64.1',2,15,31521,NULL,'Runtime: JVM version','clc93sisl00004xiyevwovlv0',''),('clc93siz700tm4xiyux5mapf4',1,'Admin',1672319399,'192.168.64.1',2,15,31522,NULL,'Threading: Daemon thread count','clc93sisl00004xiyevwovlv0',''),('clc93siz700tn4xiy7ekue57v',1,'Admin',1672319399,'192.168.64.1',2,15,31523,NULL,'Threading: Peak thread count','clc93sisl00004xiyevwovlv0',''),('clc93siz700to4xiy3xwsszsp',1,'Admin',1672319399,'192.168.64.1',2,15,31524,NULL,'Threading: Thread count','clc93sisl00004xiyevwovlv0',''),('clc93siz700tp4xiym60sqs1i',1,'Admin',1672319399,'192.168.64.1',2,15,31553,NULL,'Threading: Total started thread count','clc93sisl00004xiyevwovlv0',''),('clc93siz700tq4xiy4xn159bd',1,'Admin',1672319399,'192.168.64.1',2,15,40451,NULL,'CPU utilization','clc93sisl00004xiyevwovlv0',''),('clc93siz700tr4xiyyi0wyzh3',1,'Admin',1672319399,'192.168.64.1',2,15,40190,NULL,'ICMP ping','clc93sisl00004xiyevwovlv0',''),('clc93siz700ts4xiyyannogoi',1,'Admin',1672319399,'192.168.64.1',2,15,40191,NULL,'ICMP loss','clc93sisl00004xiyevwovlv0',''),('clc93siz700tt4xiykwncax84',1,'Admin',1672319399,'192.168.64.1',2,15,40192,NULL,'ICMP response time','clc93sisl00004xiyevwovlv0',''),('clc93siz700tu4xiys6w2jb9u',1,'Admin',1672319399,'192.168.64.1',2,15,27157,NULL,'SNMP traps (fallback)','clc93sisl00004xiyevwovlv0',''),('clc93siz700tv4xiy2dp3d721',1,'Admin',1672319399,'192.168.64.1',2,15,29846,NULL,'System contact details','clc93sisl00004xiyevwovlv0',''),('clc93siz700tw4xiyb88knuji',1,'Admin',1672319399,'192.168.64.1',2,15,29848,NULL,'System description','clc93sisl00004xiyevwovlv0',''),('clc93siz700tx4xiy88fpv6at',1,'Admin',1672319399,'192.168.64.1',2,15,43769,NULL,'Uptime (hardware)','clc93sisl00004xiyevwovlv0',''),('clc93siz700ty4xiy95yterww',1,'Admin',1672319399,'192.168.64.1',2,15,29845,NULL,'System location','clc93sisl00004xiyevwovlv0',''),('clc93siz700tz4xiyj3nplaxp',1,'Admin',1672319399,'192.168.64.1',2,15,27152,NULL,'System name','clc93sisl00004xiyevwovlv0',''),('clc93siz700u04xiyr4vvz7i7',1,'Admin',1672319399,'192.168.64.1',2,15,29844,NULL,'Uptime (network)','clc93sisl00004xiyevwovlv0',''),('clc93siz700u14xiy1eph1fzy',1,'Admin',1672319399,'192.168.64.1',2,15,29847,NULL,'System object ID','clc93sisl00004xiyevwovlv0',''),('clc93siz700u24xiyk6cilvq7',1,'Admin',1672319399,'192.168.64.1',2,15,27154,NULL,'SNMP agent availability','clc93sisl00004xiyevwovlv0',''),('clc93siz700u34xiy6m65q2qd',1,'Admin',1672319399,'192.168.64.1',2,15,27376,NULL,'CPU utilization','clc93sisl00004xiyevwovlv0',''),('clc93siz700u44xiyv3q4sj1h',1,'Admin',1672319399,'192.168.64.1',2,15,40600,NULL,'ICMP ping','clc93sisl00004xiyevwovlv0',''),('clc93siz700u54xiy89r7f8wq',1,'Admin',1672319399,'192.168.64.1',2,15,40601,NULL,'ICMP loss','clc93sisl00004xiyevwovlv0',''),('clc93siz700u64xiy9ayst64l',1,'Admin',1672319399,'192.168.64.1',2,15,40602,NULL,'ICMP response time','clc93sisl00004xiyevwovlv0',''),('clc93siz700u74xiy7be2bfq0',1,'Admin',1672319399,'192.168.64.1',2,15,40603,NULL,'SNMP traps (fallback)','clc93sisl00004xiyevwovlv0',''),('clc93siz700u84xiybeurmx30',1,'Admin',1672319399,'192.168.64.1',2,15,40604,NULL,'System contact details','clc93sisl00004xiyevwovlv0',''),('clc93siz700u94xiyixrugkh3',1,'Admin',1672319399,'192.168.64.1',2,15,40605,NULL,'CPU utilization','clc93sisl00004xiyevwovlv0',''),('clc93siz700ua4xiyo5ekdu93',1,'Admin',1672319399,'192.168.64.1',2,15,40606,NULL,'System description','clc93sisl00004xiyevwovlv0',''),('clc93siz700ub4xiyl2etr2l7',1,'Admin',1672319399,'192.168.64.1',2,15,40607,NULL,'Hardware model name','clc93sisl00004xiyevwovlv0',''),('clc93siz700uc4xiyshm28zbi',1,'Admin',1672319399,'192.168.64.1',2,15,40608,NULL,'Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93siz700ud4xiyrib9nl88',1,'Admin',1672319399,'192.168.64.1',2,15,43780,NULL,'Uptime (hardware)','clc93sisl00004xiyevwovlv0',''),('clc93siz700ue4xiyaepednix',1,'Admin',1672319399,'192.168.64.1',2,15,40609,NULL,'System location','clc93sisl00004xiyevwovlv0',''),('clc93siz700uf4xiyhpp8l2lu',1,'Admin',1672319399,'192.168.64.1',2,15,40610,NULL,'System name','clc93sisl00004xiyevwovlv0',''),('clc93siz700ug4xiy2cexu3xt',1,'Admin',1672319399,'192.168.64.1',2,15,40613,NULL,'Uptime (network)','clc93sisl00004xiyevwovlv0',''),('clc93siz700uh4xiyhxuolpbd',1,'Admin',1672319399,'192.168.64.1',2,15,40611,NULL,'System object ID','clc93sisl00004xiyevwovlv0',''),('clc93siz700ui4xiydny579zx',1,'Admin',1672319399,'192.168.64.1',2,15,40612,NULL,'Operating system','clc93sisl00004xiyevwovlv0',''),('clc93siz700uj4xiy7z9r2ldb',1,'Admin',1672319399,'192.168.64.1',2,15,40614,NULL,'SNMP agent availability','clc93sisl00004xiyevwovlv0',''),('clc93siz700uk4xiy9vboz4ea',1,'Admin',1672319399,'192.168.64.1',2,15,40708,NULL,'ICMP ping','clc93sisl00004xiyevwovlv0',''),('clc93siz700ul4xiyybjjr61l',1,'Admin',1672319399,'192.168.64.1',2,15,40709,NULL,'ICMP loss','clc93sisl00004xiyevwovlv0',''),('clc93siz700um4xiy5cmin4vm',1,'Admin',1672319399,'192.168.64.1',2,15,40710,NULL,'ICMP response time','clc93sisl00004xiyevwovlv0',''),('clc93siz700un4xiyemf1ijaa',1,'Admin',1672319399,'192.168.64.1',2,15,40711,NULL,'SNMP traps (fallback)','clc93sisl00004xiyevwovlv0',''),('clc93siz700uo4xiy03jic572',1,'Admin',1672319399,'192.168.64.1',2,15,40712,NULL,'System contact details','clc93sisl00004xiyevwovlv0',''),('clc93siz700up4xiyzr5ilglk',1,'Admin',1672319399,'192.168.64.1',2,15,40713,NULL,'System description','clc93sisl00004xiyevwovlv0',''),('clc93siz700uq4xiy5mqneu3t',1,'Admin',1672319399,'192.168.64.1',2,15,43783,NULL,'Uptime (hardware)','clc93sisl00004xiyevwovlv0',''),('clc93siz700ur4xiy17g9j792',1,'Admin',1672319399,'192.168.64.1',2,15,40714,NULL,'System location','clc93sisl00004xiyevwovlv0',''),('clc93siz700us4xiykqxdhat7',1,'Admin',1672319399,'192.168.64.1',2,15,40715,NULL,'System name','clc93sisl00004xiyevwovlv0',''),('clc93siz700ut4xiym1sn8xdk',1,'Admin',1672319399,'192.168.64.1',2,15,40717,NULL,'Uptime (network)','clc93sisl00004xiyevwovlv0',''),('clc93siz700uu4xiyh3k53smh',1,'Admin',1672319399,'192.168.64.1',2,15,40716,NULL,'System object ID','clc93sisl00004xiyevwovlv0',''),('clc93siz700uv4xiyxqcnc5lh',1,'Admin',1672319399,'192.168.64.1',2,15,40718,NULL,'SNMP agent availability','clc93sisl00004xiyevwovlv0',''),('clc93siz700uw4xiyhhs6o16e',1,'Admin',1672319399,'192.168.64.1',2,15,40731,NULL,'ICMP ping','clc93sisl00004xiyevwovlv0',''),('clc93siz700ux4xiy0yomr37o',1,'Admin',1672319399,'192.168.64.1',2,15,40732,NULL,'ICMP loss','clc93sisl00004xiyevwovlv0',''),('clc93siz700uy4xiyo8jsz3lo',1,'Admin',1672319399,'192.168.64.1',2,15,40733,NULL,'ICMP response time','clc93sisl00004xiyevwovlv0',''),('clc93siz700uz4xiyli3ttqs5',1,'Admin',1672319399,'192.168.64.1',2,15,40734,NULL,'SNMP traps (fallback)','clc93sisl00004xiyevwovlv0',''),('clc93siz700v04xiyo45g9vzd',1,'Admin',1672319399,'192.168.64.1',2,15,40735,NULL,'System contact details','clc93sisl00004xiyevwovlv0',''),('clc93siz700v14xiyfybbibhd',1,'Admin',1672319399,'192.168.64.1',2,15,27511,NULL,'CPU utilization','clc93sisl00004xiyevwovlv0',''),('clc93siz700v24xiytp38u4nz',1,'Admin',1672319399,'192.168.64.1',2,15,40736,NULL,'System description','clc93sisl00004xiyevwovlv0',''),('clc93siz700v34xiyxan98hpn',1,'Admin',1672319399,'192.168.64.1',2,15,27509,NULL,'Firmware version','clc93sisl00004xiyevwovlv0',''),('clc93siz700v44xiyk4eia5e2',1,'Admin',1672319399,'192.168.64.1',2,15,27510,NULL,'Hardware model name','clc93sisl00004xiyevwovlv0',''),('clc93siz700v54xiyqlpek5qc',1,'Admin',1672319399,'192.168.64.1',2,15,43784,NULL,'Uptime (hardware)','clc93sisl00004xiyevwovlv0',''),('clc93siz700v64xiyydsmrukn',1,'Admin',1672319399,'192.168.64.1',2,15,27508,NULL,'Hardware version(revision)','clc93sisl00004xiyevwovlv0',''),('clc93siz700v74xiy0op3ae8g',1,'Admin',1672319399,'192.168.64.1',2,15,40737,NULL,'System location','clc93sisl00004xiyevwovlv0',''),('clc93siz700v84xiyzoqtdwdc',1,'Admin',1672319399,'192.168.64.1',2,15,40738,NULL,'System name','clc93sisl00004xiyevwovlv0',''),('clc93siz700v94xiyuq8g10dk',1,'Admin',1672319399,'192.168.64.1',2,15,40740,NULL,'Uptime (network)','clc93sisl00004xiyevwovlv0',''),('clc93siz700va4xiyajclg3q4',1,'Admin',1672319399,'192.168.64.1',2,15,40739,NULL,'System object ID','clc93sisl00004xiyevwovlv0',''),('clc93siz700vb4xiyfmav2ohn',1,'Admin',1672319399,'192.168.64.1',2,15,30106,NULL,'Operating system','clc93sisl00004xiyevwovlv0',''),('clc93siz700vc4xiyyufrlu16',1,'Admin',1672319399,'192.168.64.1',2,15,40741,NULL,'SNMP agent availability','clc93sisl00004xiyevwovlv0',''),('clc93siz700vd4xiy4gdvnj0z',1,'Admin',1672319399,'192.168.64.1',2,15,40752,NULL,'ICMP ping','clc93sisl00004xiyevwovlv0',''),('clc93siz700ve4xiyx4myclmr',1,'Admin',1672319399,'192.168.64.1',2,15,40753,NULL,'ICMP loss','clc93sisl00004xiyevwovlv0',''),('clc93siz700vf4xiylx0x76eb',1,'Admin',1672319399,'192.168.64.1',2,15,40754,NULL,'ICMP response time','clc93sisl00004xiyevwovlv0',''),('clc93siz700vg4xiyd0qm39s3',1,'Admin',1672319399,'192.168.64.1',2,15,40755,NULL,'SNMP traps (fallback)','clc93sisl00004xiyevwovlv0',''),('clc93siz700vh4xiytsfemmmz',1,'Admin',1672319399,'192.168.64.1',2,15,40756,NULL,'System contact details','clc93sisl00004xiyevwovlv0',''),('clc93siz700vi4xiyqu5bunwj',1,'Admin',1672319399,'192.168.64.1',2,15,27547,NULL,'CPU utilization','clc93sisl00004xiyevwovlv0',''),('clc93siz700vj4xiyml0wv5yu',1,'Admin',1672319399,'192.168.64.1',2,15,40757,NULL,'System description','clc93sisl00004xiyevwovlv0',''),('clc93siz700vk4xiyvyf5hevq',1,'Admin',1672319399,'192.168.64.1',2,15,27544,NULL,'Firmware version','clc93sisl00004xiyevwovlv0',''),('clc93siz700vl4xiynw46kk1q',1,'Admin',1672319399,'192.168.64.1',2,15,27546,NULL,'Hardware model name','clc93sisl00004xiyevwovlv0',''),('clc93siz700vm4xiyntjjkheq',1,'Admin',1672319399,'192.168.64.1',2,15,27545,NULL,'Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93siz700vn4xiyrhzbnzkg',1,'Admin',1672319399,'192.168.64.1',2,15,43785,NULL,'Uptime (hardware)','clc93sisl00004xiyevwovlv0',''),('clc93siz700vo4xiyp5wsm9p5',1,'Admin',1672319399,'192.168.64.1',2,15,27543,NULL,'Hardware version(revision)','clc93sisl00004xiyevwovlv0',''),('clc93siz700vp4xiy9iqqxfll',1,'Admin',1672319399,'192.168.64.1',2,15,40758,NULL,'System location','clc93sisl00004xiyevwovlv0',''),('clc93siz700vq4xiy2872csq7',1,'Admin',1672319399,'192.168.64.1',2,15,40759,NULL,'System name','clc93sisl00004xiyevwovlv0',''),('clc93siz700vr4xiy20yj8qne',1,'Admin',1672319399,'192.168.64.1',2,15,40761,NULL,'Uptime (network)','clc93sisl00004xiyevwovlv0',''),('clc93siz700vs4xiyakhjp765',1,'Admin',1672319399,'192.168.64.1',2,15,40760,NULL,'System object ID','clc93sisl00004xiyevwovlv0',''),('clc93siz700vt4xiy0zgpek8t',1,'Admin',1672319399,'192.168.64.1',2,15,40762,NULL,'SNMP agent availability','clc93sisl00004xiyevwovlv0',''),('clc93siz700vu4xiydi7lxsuz',1,'Admin',1672319399,'192.168.64.1',2,15,40775,NULL,'ICMP ping','clc93sisl00004xiyevwovlv0',''),('clc93siz700vv4xiyy1yrn9x3',1,'Admin',1672319399,'192.168.64.1',2,15,40780,NULL,'ICMP loss','clc93sisl00004xiyevwovlv0',''),('clc93siz700vw4xiy1khfx454',1,'Admin',1672319399,'192.168.64.1',2,15,40784,NULL,'ICMP response time','clc93sisl00004xiyevwovlv0',''),('clc93siz700vx4xiy1k2v4vdh',1,'Admin',1672319399,'192.168.64.1',2,15,27585,NULL,'Device: Temperature status','clc93sisl00004xiyevwovlv0',''),('clc93siz700vy4xiyymiummom',1,'Admin',1672319399,'192.168.64.1',2,15,27584,NULL,'Device: Temperature','clc93sisl00004xiyevwovlv0',''),('clc93siz700vz4xiyulvr3tmx',1,'Admin',1672319399,'192.168.64.1',2,15,40783,NULL,'SNMP traps (fallback)','clc93sisl00004xiyevwovlv0',''),('clc93siz700w04xiyn2whezzs',1,'Admin',1672319399,'192.168.64.1',2,15,40782,NULL,'System contact details','clc93sisl00004xiyevwovlv0',''),('clc93siz700w14xiyq1pz91da',1,'Admin',1672319399,'192.168.64.1',2,15,27586,NULL,'CPU utilization','clc93sisl00004xiyevwovlv0',''),('clc93siz700w24xiyu98i1jnh',1,'Admin',1672319399,'192.168.64.1',2,15,40781,NULL,'System description','clc93sisl00004xiyevwovlv0',''),('clc93siz700w34xiywa8fvpqd',1,'Admin',1672319399,'192.168.64.1',2,15,27579,NULL,'Firmware version','clc93sisl00004xiyevwovlv0',''),('clc93siz700w44xiysolhf6ha',1,'Admin',1672319399,'192.168.64.1',2,15,27583,NULL,'Hardware model name','clc93sisl00004xiyevwovlv0',''),('clc93siz700w54xiymrrw0tyu',1,'Admin',1672319399,'192.168.64.1',2,15,27582,NULL,'Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93siz700w64xiym9mie6xv',1,'Admin',1672319399,'192.168.64.1',2,15,43786,NULL,'Uptime (hardware)','clc93sisl00004xiyevwovlv0',''),('clc93siz700w74xiyscrtiryp',1,'Admin',1672319399,'192.168.64.1',2,15,27580,NULL,'Hardware version(revision)','clc93sisl00004xiyevwovlv0',''),('clc93siz700w84xiygek1fowh',1,'Admin',1672319399,'192.168.64.1',2,15,40779,NULL,'System location','clc93sisl00004xiyevwovlv0',''),('clc93siz700w94xiyaddwj96r',1,'Admin',1672319399,'192.168.64.1',2,15,40778,NULL,'System name','clc93sisl00004xiyevwovlv0',''),('clc93siz700wa4xiywyyi8gsv',1,'Admin',1672319399,'192.168.64.1',2,15,40776,NULL,'Uptime (network)','clc93sisl00004xiyevwovlv0',''),('clc93siz700wb4xiyitaoymhn',1,'Admin',1672319399,'192.168.64.1',2,15,40777,NULL,'System object ID','clc93sisl00004xiyevwovlv0',''),('clc93siz700wc4xiylyuh4qot',1,'Admin',1672319399,'192.168.64.1',2,15,30109,NULL,'Operating system','clc93sisl00004xiyevwovlv0',''),('clc93siz700wd4xiyc56ddj6d',1,'Admin',1672319399,'192.168.64.1',2,15,40785,NULL,'SNMP agent availability','clc93sisl00004xiyevwovlv0',''),('clc93siz700we4xiy25d1rv9m',1,'Admin',1672319399,'192.168.64.1',2,15,40821,NULL,'ICMP ping','clc93sisl00004xiyevwovlv0',''),('clc93siz700wf4xiy0n50zkbd',1,'Admin',1672319399,'192.168.64.1',2,15,40822,NULL,'ICMP loss','clc93sisl00004xiyevwovlv0',''),('clc93siz700wg4xiyq9l21fhv',1,'Admin',1672319399,'192.168.64.1',2,15,40823,NULL,'ICMP response time','clc93sisl00004xiyevwovlv0',''),('clc93siz700wh4xiy6j58vime',1,'Admin',1672319399,'192.168.64.1',2,15,40824,NULL,'SNMP traps (fallback)','clc93sisl00004xiyevwovlv0',''),('clc93siz700wi4xiytvwmecg7',1,'Admin',1672319399,'192.168.64.1',2,15,40825,NULL,'System contact details','clc93sisl00004xiyevwovlv0',''),('clc93siz700wj4xiyofjg7yk1',1,'Admin',1672319399,'192.168.64.1',2,15,40826,NULL,'System description','clc93sisl00004xiyevwovlv0',''),('clc93siz700wk4xiyievkb6ip',1,'Admin',1672319399,'192.168.64.1',2,15,43788,NULL,'Uptime (hardware)','clc93sisl00004xiyevwovlv0',''),('clc93siz700wl4xiydgkg55cy',1,'Admin',1672319399,'192.168.64.1',2,15,40827,NULL,'System location','clc93sisl00004xiyevwovlv0',''),('clc93siz700wm4xiywa1t1izm',1,'Admin',1672319399,'192.168.64.1',2,15,40828,NULL,'System name','clc93sisl00004xiyevwovlv0',''),('clc93siz700wn4xiy7cdh2dij',1,'Admin',1672319399,'192.168.64.1',2,15,40830,NULL,'Uptime (network)','clc93sisl00004xiyevwovlv0',''),('clc93siz700wo4xiyipt57izi',1,'Admin',1672319399,'192.168.64.1',2,15,40829,NULL,'System object ID','clc93sisl00004xiyevwovlv0',''),('clc93siz700wp4xiyifyr9i4q',1,'Admin',1672319399,'192.168.64.1',2,15,40831,NULL,'SNMP agent availability','clc93sisl00004xiyevwovlv0',''),('clc93siz700wq4xiys63ykfu6',1,'Admin',1672319399,'192.168.64.1',2,15,40629,NULL,'ICMP ping','clc93sisl00004xiyevwovlv0',''),('clc93siz700wr4xiyin08b10q',1,'Admin',1672319399,'192.168.64.1',2,15,40630,NULL,'ICMP loss','clc93sisl00004xiyevwovlv0',''),('clc93siz700ws4xiyud3jxrwt',1,'Admin',1672319399,'192.168.64.1',2,15,40631,NULL,'ICMP response time','clc93sisl00004xiyevwovlv0',''),('clc93siz700wt4xiy4nowe5pr',1,'Admin',1672319399,'192.168.64.1',2,15,40632,NULL,'SNMP traps (fallback)','clc93sisl00004xiyevwovlv0',''),('clc93siz700wu4xiyg76z7alb',1,'Admin',1672319399,'192.168.64.1',2,15,40633,NULL,'System contact details','clc93sisl00004xiyevwovlv0',''),('clc93siz700wv4xiyfec71i99',1,'Admin',1672319399,'192.168.64.1',2,15,40634,NULL,'System description','clc93sisl00004xiyevwovlv0',''),('clc93siz700ww4xiyp35vxdu2',1,'Admin',1672319399,'192.168.64.1',2,15,40635,NULL,'Hardware model name','clc93sisl00004xiyevwovlv0',''),('clc93siz700wx4xiyvu2vlf0c',1,'Admin',1672319399,'192.168.64.1',2,15,40636,NULL,'Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93siz700wy4xiykrdsmyl1',1,'Admin',1672319399,'192.168.64.1',2,15,43782,NULL,'Uptime (hardware)','clc93sisl00004xiyevwovlv0',''),('clc93siz700wz4xiybdiu9wg3',1,'Admin',1672319399,'192.168.64.1',2,15,40637,NULL,'System location','clc93sisl00004xiyevwovlv0',''),('clc93siz700x04xiybensewh2',1,'Admin',1672319399,'192.168.64.1',2,15,40638,NULL,'System name','clc93sisl00004xiyevwovlv0',''),('clc93siz700x14xiybuvgffic',1,'Admin',1672319399,'192.168.64.1',2,15,40641,NULL,'Uptime (network)','clc93sisl00004xiyevwovlv0',''),('clc93siz700x24xiyxiiguc33',1,'Admin',1672319399,'192.168.64.1',2,15,40639,NULL,'System object ID','clc93sisl00004xiyevwovlv0',''),('clc93siz700x34xiywc9udgvr',1,'Admin',1672319399,'192.168.64.1',2,15,40640,NULL,'Operating system','clc93sisl00004xiyevwovlv0',''),('clc93siz700x44xiys5dved21',1,'Admin',1672319399,'192.168.64.1',2,15,40642,NULL,'SNMP agent availability','clc93sisl00004xiyevwovlv0',''),('clc93siz700x54xiyt1qqqfu2',1,'Admin',1672319399,'192.168.64.1',2,15,42631,NULL,'ICMP ping','clc93sisl00004xiyevwovlv0',''),('clc93siz700x64xiyzyb03kiy',1,'Admin',1672319399,'192.168.64.1',2,15,42632,NULL,'ICMP loss','clc93sisl00004xiyevwovlv0',''),('clc93siz700x74xiyxocfyj2v',1,'Admin',1672319399,'192.168.64.1',2,15,42633,NULL,'ICMP response time','clc93sisl00004xiyevwovlv0',''),('clc93siz700x84xiyw7x34qed',1,'Admin',1672319399,'192.168.64.1',2,15,42634,NULL,'SNMP traps (fallback)','clc93sisl00004xiyevwovlv0',''),('clc93siz700x94xiyuqhe8gn0',1,'Admin',1672319399,'192.168.64.1',2,15,42635,NULL,'System contact details','clc93sisl00004xiyevwovlv0',''),('clc93siz700xa4xiypcomb1l7',1,'Admin',1672319399,'192.168.64.1',2,15,42636,NULL,'System description','clc93sisl00004xiyevwovlv0',''),('clc93siz700xb4xiywrnkuhug',1,'Admin',1672319399,'192.168.64.1',2,15,28345,NULL,'Firmware version','clc93sisl00004xiyevwovlv0',''),('clc93siz700xc4xiy2jq8pj8w',1,'Admin',1672319399,'192.168.64.1',2,15,28342,NULL,'Hardware model name','clc93sisl00004xiyevwovlv0',''),('clc93siz700xd4xiy6mwwgsvn',1,'Admin',1672319399,'192.168.64.1',2,15,28344,NULL,'Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93siz700xe4xiy0n9owjs6',1,'Admin',1672319399,'192.168.64.1',2,15,43895,NULL,'Uptime (hardware)','clc93sisl00004xiyevwovlv0',''),('clc93siz700xf4xiy4koxkc03',1,'Admin',1672319399,'192.168.64.1',2,15,42637,NULL,'System location','clc93sisl00004xiyevwovlv0',''),('clc93siz700xg4xiy9qk3ntly',1,'Admin',1672319399,'192.168.64.1',2,15,42638,NULL,'System name','clc93sisl00004xiyevwovlv0',''),('clc93siz700xh4xiy0q80kznf',1,'Admin',1672319399,'192.168.64.1',2,15,42640,NULL,'Uptime (network)','clc93sisl00004xiyevwovlv0',''),('clc93siz700xi4xiyb961un64',1,'Admin',1672319399,'192.168.64.1',2,15,42639,NULL,'System object ID','clc93sisl00004xiyevwovlv0',''),('clc93siz700xj4xiyv2nkuumc',1,'Admin',1672319399,'192.168.64.1',2,15,28341,NULL,'Overall system health status','clc93sisl00004xiyevwovlv0',''),('clc93siz700xk4xiyi5qdof2l',1,'Admin',1672319399,'192.168.64.1',2,15,30141,NULL,'Operating system','clc93sisl00004xiyevwovlv0',''),('clc93siz700xl4xiykdc8cue2',1,'Admin',1672319399,'192.168.64.1',2,15,42641,NULL,'SNMP agent availability','clc93sisl00004xiyevwovlv0',''),('clc93siz700xm4xiykxe0k5hk',1,'Admin',1672319399,'192.168.64.1',2,15,42620,NULL,'ICMP ping','clc93sisl00004xiyevwovlv0',''),('clc93siz700xn4xiye7unvw8l',1,'Admin',1672319399,'192.168.64.1',2,15,42621,NULL,'ICMP loss','clc93sisl00004xiyevwovlv0',''),('clc93siz700xo4xiyinso6tfe',1,'Admin',1672319399,'192.168.64.1',2,15,42622,NULL,'ICMP response time','clc93sisl00004xiyevwovlv0',''),('clc93siz700xp4xiyas8omg48',1,'Admin',1672319399,'192.168.64.1',2,15,42623,NULL,'SNMP traps (fallback)','clc93sisl00004xiyevwovlv0',''),('clc93siz700xq4xiy7cn4xdez',1,'Admin',1672319399,'192.168.64.1',2,15,42624,NULL,'System contact details','clc93sisl00004xiyevwovlv0',''),('clc93siz700xr4xiyc6qov9r7',1,'Admin',1672319399,'192.168.64.1',2,15,42625,NULL,'System description','clc93sisl00004xiyevwovlv0',''),('clc93siz700xs4xiyfnz7w2ak',1,'Admin',1672319399,'192.168.64.1',2,15,43890,NULL,'Uptime (hardware)','clc93sisl00004xiyevwovlv0',''),('clc93siz700xt4xiy008lmzzr',1,'Admin',1672319399,'192.168.64.1',2,15,42626,NULL,'System location','clc93sisl00004xiyevwovlv0',''),('clc93siz700xu4xiyrrovaxy0',1,'Admin',1672319399,'192.168.64.1',2,15,42627,NULL,'System name','clc93sisl00004xiyevwovlv0',''),('clc93siz700xv4xiy3nwwtie8',1,'Admin',1672319399,'192.168.64.1',2,15,42629,NULL,'Uptime (network)','clc93sisl00004xiyevwovlv0',''),('clc93siz700xw4xiycwg8cens',1,'Admin',1672319399,'192.168.64.1',2,15,42628,NULL,'System object ID','clc93sisl00004xiyevwovlv0',''),('clc93siz700xx4xiyk0bxitax',1,'Admin',1672319399,'192.168.64.1',2,15,42630,NULL,'SNMP agent availability','clc93sisl00004xiyevwovlv0',''),('clc93siz700xy4xiyt8c32m4q',1,'Admin',1672319399,'192.168.64.1',2,15,30142,NULL,'CPU utilization','clc93sisl00004xiyevwovlv0',''),('clc93siz700xz4xiyjxc9m0ze',1,'Admin',1672319399,'192.168.64.1',2,15,35103,NULL,'HAProxy: Get nodes','clc93sisl00004xiyevwovlv0',''),('clc93siz700y04xiy86ezjnbv',1,'Admin',1672319399,'192.168.64.1',2,15,30191,NULL,'HAProxy: Uptime','clc93sisl00004xiyevwovlv0',''),('clc93siz700y14xiyjiz81vdv',1,'Admin',1672319399,'192.168.64.1',2,15,30192,NULL,'HAProxy: Version','clc93sisl00004xiyevwovlv0',''),('clc93siz700y24xiyi4jfl4ob',1,'Admin',1672319399,'192.168.64.1',2,15,30187,NULL,'HAProxy: Service response time','clc93sisl00004xiyevwovlv0',''),('clc93siz700y34xiy9u7m35t8',1,'Admin',1672319399,'192.168.64.1',2,15,30188,NULL,'HAProxy: Service status','clc93sisl00004xiyevwovlv0',''),('clc93siz700y44xiyfhiudpyn',1,'Admin',1672319399,'192.168.64.1',2,15,30190,NULL,'HAProxy: Get stats page','clc93sisl00004xiyevwovlv0',''),('clc93siz700y54xiyj1kd5d8v',1,'Admin',1672319399,'192.168.64.1',2,15,30189,NULL,'HAProxy: Get stats','clc93sisl00004xiyevwovlv0',''),('clc93siz700y64xiysjgay4je',1,'Admin',1672319399,'192.168.64.1',2,15,30230,NULL,'HAProxy: Get stats','clc93sisl00004xiyevwovlv0',''),('clc93siz700y74xiysjn419wc',1,'Admin',1672319399,'192.168.64.1',2,15,35128,NULL,'HAProxy: Get nodes','clc93sisl00004xiyevwovlv0',''),('clc93siz700y84xiyq4w4bti8',1,'Admin',1672319399,'192.168.64.1',2,15,30231,NULL,'HAProxy: Get stats page','clc93sisl00004xiyevwovlv0',''),('clc93siz700y94xiyht4tobm6',1,'Admin',1672319399,'192.168.64.1',2,15,30234,NULL,'HAProxy: Uptime','clc93sisl00004xiyevwovlv0',''),('clc93siz700ya4xiys0bnbjdd',1,'Admin',1672319399,'192.168.64.1',2,15,30235,NULL,'HAProxy: Version','clc93sisl00004xiyevwovlv0',''),('clc93siz700yb4xiy0if8p6h1',1,'Admin',1672319399,'192.168.64.1',2,15,30789,NULL,'HAProxy: Service response time','clc93sisl00004xiyevwovlv0',''),('clc93siz700yc4xiydf7zkg5b',1,'Admin',1672319399,'192.168.64.1',2,15,30790,NULL,'HAProxy: Service status','clc93sisl00004xiyevwovlv0',''),('clc93siz700yd4xiyx6qcywvv',1,'Admin',1672319399,'192.168.64.1',2,15,30532,NULL,'Docker: Architecture','clc93sisl00004xiyevwovlv0',''),('clc93siz700ye4xiynyaz4p6y',1,'Admin',1672319399,'192.168.64.1',2,15,30569,NULL,'Docker: Cgroup driver','clc93sisl00004xiyevwovlv0',''),('clc93siz700yf4xiyjo5dywxo',1,'Admin',1672319399,'192.168.64.1',2,15,30528,NULL,'Docker: Get containers','clc93sisl00004xiyevwovlv0',''),('clc93siz700yg4xiyhg6r4jts',1,'Admin',1672319399,'192.168.64.1',2,15,30554,NULL,'Docker: Containers paused','clc93sisl00004xiyevwovlv0',''),('clc93siz700yh4xiyxbziotdv',1,'Admin',1672319399,'192.168.64.1',2,15,30555,NULL,'Docker: Containers running','clc93sisl00004xiyevwovlv0',''),('clc93siz700yi4xiybxvtr3r6',1,'Admin',1672319399,'192.168.64.1',2,15,30556,NULL,'Docker: Containers stopped','clc93sisl00004xiyevwovlv0',''),('clc93siz700yj4xiyxkzz3ncu',1,'Admin',1672319399,'192.168.64.1',2,15,30557,NULL,'Docker: Containers total','clc93sisl00004xiyevwovlv0',''),('clc93siz700yk4xiyqlh4uhi4',1,'Admin',1672319399,'192.168.64.1',2,15,30553,NULL,'Docker: Containers size','clc93sisl00004xiyevwovlv0',''),('clc93siz700yl4xiyf31a8hey',1,'Admin',1672319399,'192.168.64.1',2,15,30558,NULL,'Docker: CPU CFS Period enabled','clc93sisl00004xiyevwovlv0',''),('clc93siz700ym4xiyi3p5aa3i',1,'Admin',1672319399,'192.168.64.1',2,15,30559,NULL,'Docker: CPU CFS Quota enabled','clc93sisl00004xiyevwovlv0',''),('clc93siz700yn4xiyyk7q9qk6',1,'Admin',1672319399,'192.168.64.1',2,15,30552,NULL,'Docker: CPU Set enabled','clc93sisl00004xiyevwovlv0',''),('clc93siz700yo4xiy8brdyjyb',1,'Admin',1672319399,'192.168.64.1',2,15,30560,NULL,'Docker: CPU Shares enabled','clc93sisl00004xiyevwovlv0',''),('clc93siz700yp4xiyz25ptfo9',1,'Admin',1672319399,'192.168.64.1',2,15,30527,NULL,'Docker: Get data_usage','clc93sisl00004xiyevwovlv0',''),('clc93siz700yq4xiygybcbxzc',1,'Admin',1672319399,'192.168.64.1',2,15,30562,NULL,'Docker: Debug enabled','clc93sisl00004xiyevwovlv0',''),('clc93siz700yr4xiy8yt5yhb2',1,'Admin',1672319399,'192.168.64.1',2,15,30563,NULL,'Docker: Default runtime','clc93sisl00004xiyevwovlv0',''),('clc93siz700ys4xiy6gwr1cmn',1,'Admin',1672319399,'192.168.64.1',2,15,30564,NULL,'Docker: Storage driver','clc93sisl00004xiyevwovlv0',''),('clc93siz700yt4xiy4kepv3gf',1,'Admin',1672319399,'192.168.64.1',2,15,30565,NULL,'Docker: Goroutines','clc93sisl00004xiyevwovlv0',''),('clc93siz700yu4xiy78ac2n1v',1,'Admin',1672319399,'192.168.64.1',2,15,30531,NULL,'Docker: Get images','clc93sisl00004xiyevwovlv0',''),('clc93siz700yv4xiyp7pvrguh',1,'Admin',1672319399,'192.168.64.1',2,15,30567,NULL,'Docker: Images available','clc93sisl00004xiyevwovlv0',''),('clc93siz700yw4xiybv5ipsa2',1,'Admin',1672319399,'192.168.64.1',2,15,30568,NULL,'Docker: Images total','clc93sisl00004xiyevwovlv0',''),('clc93siz700yx4xiyjalm60x3',1,'Admin',1672319399,'192.168.64.1',2,15,30566,NULL,'Docker: Images size','clc93sisl00004xiyevwovlv0',''),('clc93siz700yy4xiyv1fo34w1',1,'Admin',1672319399,'192.168.64.1',2,15,30529,NULL,'Docker: Get info','clc93sisl00004xiyevwovlv0',''),('clc93siz700yz4xiy9oskz2g9',1,'Admin',1672319399,'192.168.64.1',2,15,30550,NULL,'Docker: IPv4 Forwarding enabled','clc93sisl00004xiyevwovlv0',''),('clc93siz700z04xiy8thm1fzm',1,'Admin',1672319399,'192.168.64.1',2,15,30551,NULL,'Docker: Kernel memory enabled','clc93sisl00004xiyevwovlv0',''),('clc93siz700z14xiynnkl60il',1,'Admin',1672319399,'192.168.64.1',2,15,30561,NULL,'Docker: Kernel memory TCP enabled','clc93sisl00004xiyevwovlv0',''),('clc93siz700z24xiyvpvk5we6',1,'Admin',1672319399,'192.168.64.1',2,15,30541,NULL,'Docker: Kernel version','clc93sisl00004xiyevwovlv0',''),('clc93siz700z34xiyjr9o5io6',1,'Admin',1672319399,'192.168.64.1',2,15,30549,NULL,'Docker: Layers size','clc93sisl00004xiyevwovlv0',''),('clc93siz700z44xiyvxbgqzhe',1,'Admin',1672319399,'192.168.64.1',2,15,30533,NULL,'Docker: Live restore enabled','clc93sisl00004xiyevwovlv0',''),('clc93siz700z54xiy77doprud',1,'Admin',1672319399,'192.168.64.1',2,15,30534,NULL,'Docker: Logging driver','clc93sisl00004xiyevwovlv0',''),('clc93siz700z64xiypxel27gl',1,'Admin',1672319399,'192.168.64.1',2,15,30536,NULL,'Docker: Memory total','clc93sisl00004xiyevwovlv0',''),('clc93siz700z74xiyja6f6lm5',1,'Admin',1672319399,'192.168.64.1',2,15,30535,NULL,'Docker: Memory limit enabled','clc93sisl00004xiyevwovlv0',''),('clc93siz700z84xiyb7gy9jw2',1,'Admin',1672319399,'192.168.64.1',2,15,30537,NULL,'Docker: Name','clc93sisl00004xiyevwovlv0',''),('clc93siz700z94xiyq15gce11',1,'Admin',1672319399,'192.168.64.1',2,15,30538,NULL,'Docker: NCPU','clc93sisl00004xiyevwovlv0',''),('clc93siz700za4xiycunifzdv',1,'Admin',1672319399,'192.168.64.1',2,15,30540,NULL,'Docker: NEvents listener','clc93sisl00004xiyevwovlv0',''),('clc93siz700zb4xiyr3f5suoz',1,'Admin',1672319399,'192.168.64.1',2,15,30539,NULL,'Docker: Nfd','clc93sisl00004xiyevwovlv0',''),('clc93siz700zc4xiyqzxhk421',1,'Admin',1672319399,'192.168.64.1',2,15,30542,NULL,'Docker: OomKill disabled','clc93sisl00004xiyevwovlv0',''),('clc93siz700zd4xiywyih8ioo',1,'Admin',1672319399,'192.168.64.1',2,15,30543,NULL,'Docker: Operating system','clc93sisl00004xiyevwovlv0',''),('clc93siz700ze4xiyfiydjgp5',1,'Admin',1672319399,'192.168.64.1',2,15,30544,NULL,'Docker: OS type','clc93sisl00004xiyevwovlv0',''),('clc93siz700zf4xiyync6hzda',1,'Admin',1672319399,'192.168.64.1',2,15,30545,NULL,'Docker: Pids limit enabled','clc93sisl00004xiyevwovlv0',''),('clc93siz700zg4xiycgnnkbrh',1,'Admin',1672319399,'192.168.64.1',2,15,30530,NULL,'Docker: Ping','clc93sisl00004xiyevwovlv0',''),('clc93siz700zh4xiyqnyvacph',1,'Admin',1672319399,'192.168.64.1',2,15,30546,NULL,'Docker: Docker root dir','clc93sisl00004xiyevwovlv0',''),('clc93siz700zi4xiyml4ht6q6',1,'Admin',1672319399,'192.168.64.1',2,15,30547,NULL,'Docker: Server version','clc93sisl00004xiyevwovlv0',''),('clc93siz700zj4xiyp4c1m0kz',1,'Admin',1672319399,'192.168.64.1',2,15,30548,NULL,'Docker: Swap limit enabled','clc93sisl00004xiyevwovlv0',''),('clc93siz700zk4xiy9qu42im7',1,'Admin',1672319399,'192.168.64.1',2,15,30570,NULL,'Docker: Volumes size','clc93sisl00004xiyevwovlv0',''),('clc93siz700zl4xiy01agek8e',1,'Admin',1672319399,'192.168.64.1',2,15,30702,NULL,'ES: Delayed unassigned shards','clc93sisl00004xiyevwovlv0',''),('clc93siz700zm4xiyni03l6ul',1,'Admin',1672319399,'192.168.64.1',2,15,30694,NULL,'ES: Get cluster health','clc93sisl00004xiyevwovlv0',''),('clc93siz700zn4xiyppola50z',1,'Admin',1672319399,'192.168.64.1',2,15,30691,NULL,'ES: Get cluster stats','clc93sisl00004xiyevwovlv0',''),('clc93siz700zo4xiyt498fp3j',1,'Admin',1672319399,'192.168.64.1',2,15,30711,NULL,'ES: Inactive shards percentage','clc93sisl00004xiyevwovlv0',''),('clc93siz700zp4xiy52wkfixt',1,'Admin',1672319399,'192.168.64.1',2,15,30710,NULL,'ES: Number of initializing shards','clc93sisl00004xiyevwovlv0',''),('clc93siz700zq4xiykxfvdx8r',1,'Admin',1672319399,'192.168.64.1',2,15,30709,NULL,'ES: Number of data nodes','clc93sisl00004xiyevwovlv0',''),('clc93siz700zr4xiy9xq9rc00',1,'Admin',1672319399,'192.168.64.1',2,15,30708,NULL,'ES: Number of nodes','clc93sisl00004xiyevwovlv0',''),('clc93siz700zs4xiypcqfgq05',1,'Admin',1672319399,'192.168.64.1',2,15,30707,NULL,'ES: Number of pending tasks','clc93sisl00004xiyevwovlv0',''),('clc93siz700zt4xiyf3wb6jtg',1,'Admin',1672319399,'192.168.64.1',2,15,30706,NULL,'ES: Number of relocating shards','clc93sisl00004xiyevwovlv0',''),('clc93siz700zu4xiyrxqi2vem',1,'Admin',1672319399,'192.168.64.1',2,15,30705,NULL,'ES: Cluster health status','clc93sisl00004xiyevwovlv0',''),('clc93siz700zv4xiy9q81ijka',1,'Admin',1672319399,'192.168.64.1',2,15,30704,NULL,'ES: Task max waiting in queue','clc93sisl00004xiyevwovlv0',''),('clc93siz700zw4xiylgdq9gpr',1,'Admin',1672319399,'192.168.64.1',2,15,30712,NULL,'ES: Number of unassigned shards','clc93sisl00004xiyevwovlv0',''),('clc93siz700zx4xiyc2kl598s',1,'Admin',1672319399,'192.168.64.1',2,15,30703,NULL,'ES: Indices with shards assigned to nodes','clc93sisl00004xiyevwovlv0',''),('clc93siz700zy4xiyu8w3vktl',1,'Admin',1672319399,'192.168.64.1',2,15,30695,NULL,'ES: Number of non-deleted documents','clc93sisl00004xiyevwovlv0',''),('clc93siz700zz4xiyr09dqemp',1,'Admin',1672319399,'192.168.64.1',2,15,30701,NULL,'ES: Nodes with the data role','clc93sisl00004xiyevwovlv0',''),('clc93siz701004xiy8v5xdsd9',1,'Admin',1672319399,'192.168.64.1',2,15,30700,NULL,'ES: Nodes with the ingest role','clc93sisl00004xiyevwovlv0',''),('clc93siz701014xiyh47t18g5',1,'Admin',1672319399,'192.168.64.1',2,15,30699,NULL,'ES: Nodes with the master role','clc93sisl00004xiyevwovlv0',''),('clc93siz701024xiy58pa1qoc',1,'Admin',1672319399,'192.168.64.1',2,15,30698,NULL,'ES: Total available size to JVM in all file stores','clc93sisl00004xiyevwovlv0',''),('clc93siz701034xiyifsfqeub',1,'Admin',1672319399,'192.168.64.1',2,15,30697,NULL,'ES: Total size of all file stores','clc93sisl00004xiyevwovlv0',''),('clc93siz701044xiyacw8gjht',1,'Admin',1672319399,'192.168.64.1',2,15,30693,NULL,'ES: Get nodes stats','clc93sisl00004xiyevwovlv0',''),('clc93siz701054xiy8mldduz1',1,'Admin',1672319399,'192.168.64.1',2,15,30696,NULL,'ES: Cluster uptime','clc93sisl00004xiyevwovlv0',''),('clc93siz701064xiyl0l2r1on',1,'Admin',1672319399,'192.168.64.1',2,15,30692,NULL,'ES: Service response time','clc93sisl00004xiyevwovlv0',''),('clc93siz701074xiyevs2oxuv',1,'Admin',1672319399,'192.168.64.1',2,15,30690,NULL,'ES: Service status','clc93sisl00004xiyevwovlv0',''),('clc93siz701084xiy16wmk3nq',1,'Admin',1672319399,'192.168.64.1',2,15,30848,NULL,'ClickHouse: Current distribute connections','clc93sisl00004xiyevwovlv0',''),('clc93siz701094xiy59k0zy6z',1,'Admin',1672319399,'192.168.64.1',2,15,30849,NULL,'ClickHouse: Current HTTP connections','clc93sisl00004xiyevwovlv0',''),('clc93siz7010a4xiyysf9tsq8',1,'Admin',1672319399,'192.168.64.1',2,15,30851,NULL,'ClickHouse: Current Interserver connections','clc93sisl00004xiyevwovlv0',''),('clc93siz7010b4xiykb6alby5',1,'Admin',1672319399,'192.168.64.1',2,15,30852,NULL,'ClickHouse: Current MySQL connections','clc93sisl00004xiyevwovlv0',''),('clc93siz8010c4xiy3blqwg1s',1,'Admin',1672319399,'192.168.64.1',2,15,30853,NULL,'ClickHouse: Current TCP connections','clc93sisl00004xiyevwovlv0',''),('clc93siz8010d4xiyk1lm8bgo',1,'Admin',1672319399,'192.168.64.1',2,15,30830,NULL,'ClickHouse: Get dictionaries info','clc93sisl00004xiyevwovlv0',''),('clc93siz8010e4xiye2f1ua2l',1,'Admin',1672319399,'192.168.64.1',2,15,30854,NULL,'ClickHouse: Current distributed files to insert','clc93sisl00004xiyevwovlv0',''),('clc93siz8010f4xiynfof3j5e',1,'Admin',1672319399,'192.168.64.1',2,15,30855,NULL,'ClickHouse: Distributed connection fail with retry per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8010g4xiy6vvbpisl',1,'Admin',1672319399,'192.168.64.1',2,15,30856,NULL,'ClickHouse: Distributed connection fail with retry per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8010h4xiyx1sg4twh',1,'Admin',1672319399,'192.168.64.1',2,15,30858,NULL,'ClickHouse: Delayed insert queries','clc93sisl00004xiyevwovlv0',''),('clc93siz8010i4xiybgtam2dj',1,'Admin',1672319399,'192.168.64.1',2,15,30857,NULL,'ClickHouse: New INSERT queries per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8010j4xiy3fd2ugp4',1,'Admin',1672319399,'192.168.64.1',2,15,30859,NULL,'ClickHouse: Inserted bytes per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8010k4xiyvjhu4wvc',1,'Admin',1672319399,'192.168.64.1',2,15,30860,NULL,'ClickHouse: Inserted rows per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8010l4xiy2u0yx053',1,'Admin',1672319399,'192.168.64.1',2,15,30850,NULL,'ClickHouse: Allocated bytes','clc93sisl00004xiyevwovlv0',''),('clc93siz8010m4xiy5ianv72n',1,'Admin',1672319399,'192.168.64.1',2,15,30861,NULL,'ClickHouse: Mapped memory','clc93sisl00004xiyevwovlv0',''),('clc93siz8010n4xiycc91qezj',1,'Admin',1672319399,'192.168.64.1',2,15,30863,NULL,'ClickHouse: Resident memory','clc93sisl00004xiyevwovlv0',''),('clc93siz8010o4xiyyzwrj9jm',1,'Admin',1672319399,'192.168.64.1',2,15,30864,NULL,'ClickHouse: Max count of parts per partition across all tables','clc93sisl00004xiyevwovlv0',''),('clc93siz8010p4xiynkn40fp9',1,'Admin',1672319399,'192.168.64.1',2,15,30865,NULL,'ClickHouse: Memory used for queries','clc93sisl00004xiyevwovlv0',''),('clc93siz8010q4xiyjdi6cnwz',1,'Admin',1672319399,'192.168.64.1',2,15,30866,NULL,'ClickHouse: Memory used for background merges','clc93sisl00004xiyevwovlv0',''),('clc93siz8010r4xiygqpf7m46',1,'Admin',1672319399,'192.168.64.1',2,15,30867,NULL,'ClickHouse: Memory used for background moves','clc93sisl00004xiyevwovlv0',''),('clc93siz8010s4xiyojhtp59j',1,'Admin',1672319399,'192.168.64.1',2,15,30868,NULL,'ClickHouse: Memory used for merges','clc93sisl00004xiyevwovlv0',''),('clc93siz8010t4xiyrsw7bj7j',1,'Admin',1672319399,'192.168.64.1',2,15,30869,NULL,'ClickHouse: Memory used for background schedule pool','clc93sisl00004xiyevwovlv0',''),('clc93siz8010u4xiyoepxdf4u',1,'Admin',1672319399,'192.168.64.1',2,15,30872,NULL,'ClickHouse: Current running merges','clc93sisl00004xiyevwovlv0',''),('clc93siz8010v4xiythgmobiw',1,'Admin',1672319399,'192.168.64.1',2,15,30870,NULL,'ClickHouse: Uncompressed bytes merged per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8010w4xiyw46hz1oc',1,'Admin',1672319399,'192.168.64.1',2,15,30871,NULL,'ClickHouse: Merged rows per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8010x4xiy7qok1a8i',1,'Admin',1672319399,'192.168.64.1',2,15,30862,NULL,'ClickHouse: Network errors per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8010y4xiy7lxyd1v5',1,'Admin',1672319399,'192.168.64.1',2,15,30821,NULL,'ClickHouse: Ping','clc93sisl00004xiyevwovlv0',''),('clc93siz8010z4xiykcg0lav0',1,'Admin',1672319399,'192.168.64.1',2,15,30827,NULL,'ClickHouse: Longest currently running query time','clc93sisl00004xiyevwovlv0',''),('clc93siz801104xiymlg0j1jg',1,'Admin',1672319399,'192.168.64.1',2,15,30847,NULL,'ClickHouse: Current running queries','clc93sisl00004xiyevwovlv0',''),('clc93siz801114xiymesnse6p',1,'Admin',1672319399,'192.168.64.1',2,15,30833,NULL,'ClickHouse: New queries per second','clc93sisl00004xiyevwovlv0',''),('clc93siz801124xiyxsickw9g',1,'Admin',1672319399,'192.168.64.1',2,15,30834,NULL,'ClickHouse: Read syscalls in fly','clc93sisl00004xiyevwovlv0',''),('clc93siz801134xiy5jo1rgmj',1,'Admin',1672319399,'192.168.64.1',2,15,30835,NULL,'ClickHouse: Read bytes per second','clc93sisl00004xiyevwovlv0',''),('clc93siz801144xiyzi42gkjm',1,'Admin',1672319399,'192.168.64.1',2,15,30823,NULL,'ClickHouse: Get replicas info','clc93sisl00004xiyevwovlv0',''),('clc93siz801154xiy0n9o4og2',1,'Admin',1672319399,'192.168.64.1',2,15,30837,NULL,'ClickHouse: Replication lag across all tables','clc93sisl00004xiyevwovlv0',''),('clc93siz801164xiytdco05bc',1,'Admin',1672319399,'192.168.64.1',2,15,30838,NULL,'ClickHouse: Total number read-only Replicas','clc93sisl00004xiyevwovlv0',''),('clc93siz801174xiyrd4o72u4',1,'Admin',1672319399,'192.168.64.1',2,15,30832,NULL,'ClickHouse: Total replication tasks in queue','clc93sisl00004xiyevwovlv0',''),('clc93siz801184xiycjnr80lw',1,'Admin',1672319399,'192.168.64.1',2,15,30839,NULL,'ClickHouse: Revision','clc93sisl00004xiyevwovlv0',''),('clc93siz801194xiyi6ish0ec',1,'Admin',1672319399,'192.168.64.1',2,15,30841,NULL,'ClickHouse: New SELECT queries per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8011a4xiyzv0x729g',1,'Admin',1672319399,'192.168.64.1',2,15,30824,NULL,'ClickHouse: Get system.asynchronous_metrics','clc93sisl00004xiyevwovlv0',''),('clc93siz8011b4xiy74utrfg3',1,'Admin',1672319399,'192.168.64.1',2,15,30825,NULL,'ClickHouse: Get system.events','clc93sisl00004xiyevwovlv0',''),('clc93siz8011c4xiykcz1hrbq',1,'Admin',1672319399,'192.168.64.1',2,15,30826,NULL,'ClickHouse: Get system.metrics','clc93sisl00004xiyevwovlv0',''),('clc93siz8011d4xiyupp0tmfv',1,'Admin',1672319399,'192.168.64.1',2,15,30829,NULL,'ClickHouse: Get system.settings','clc93sisl00004xiyevwovlv0',''),('clc93siz8011e4xiyudmknnvi',1,'Admin',1672319399,'192.168.64.1',2,15,30828,NULL,'ClickHouse: Get tables info','clc93sisl00004xiyevwovlv0',''),('clc93siz8011f4xiye1ahfsn5',1,'Admin',1672319399,'192.168.64.1',2,15,30846,NULL,'ClickHouse: Uptime','clc93sisl00004xiyevwovlv0',''),('clc93siz8011g4xiy9y233uo9',1,'Admin',1672319399,'192.168.64.1',2,15,30822,NULL,'ClickHouse: Version','clc93sisl00004xiyevwovlv0',''),('clc93siz8011h4xiys7dgtulj',1,'Admin',1672319399,'192.168.64.1',2,15,30831,NULL,'ClickHouse: Write syscalls in fly','clc93sisl00004xiyevwovlv0',''),('clc93siz8011i4xiynaskfmlc',1,'Admin',1672319399,'192.168.64.1',2,15,34320,NULL,'ClickHouse: ZooKeeper exceptions per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8011j4xiyf59o4dt7',1,'Admin',1672319399,'192.168.64.1',2,15,30845,NULL,'ClickHouse: ZooKeeper hardware exceptions per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8011k4xiy1w7ebtbb',1,'Admin',1672319399,'192.168.64.1',2,15,30844,NULL,'ClickHouse: ZooKeeper requests','clc93sisl00004xiyevwovlv0',''),('clc93siz8011l4xiyipltg2vi',1,'Admin',1672319399,'192.168.64.1',2,15,30843,NULL,'ClickHouse: ZooKeeper sessions','clc93sisl00004xiyevwovlv0',''),('clc93siz8011m4xiyhnum1bcy',1,'Admin',1672319399,'192.168.64.1',2,15,30842,NULL,'ClickHouse: ZooKeeper user exceptions per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8011n4xiyrem3j41v',1,'Admin',1672319399,'192.168.64.1',2,15,30836,NULL,'ClickHouse: ZooKeeper wait time','clc93sisl00004xiyevwovlv0',''),('clc93siz8011o4xiyuk0q94mp',1,'Admin',1672319399,'192.168.64.1',2,15,30873,NULL,'ClickHouse: ZooKeeper watches','clc93sisl00004xiyevwovlv0',''),('clc93siz8011p4xiy0t00awkn',1,'Admin',1672319399,'192.168.64.1',2,15,31054,NULL,'ClickHouse: Check port availability','clc93sisl00004xiyevwovlv0',''),('clc93siz8011q4xiyr9p8qk4q',1,'Admin',1672319399,'192.168.64.1',2,15,30943,NULL,'Etcd: Cluster version','clc93sisl00004xiyevwovlv0',''),('clc93siz8011r4xiysk74h829',1,'Admin',1672319399,'192.168.64.1',2,15,30953,NULL,'Etcd: CPU','clc93sisl00004xiyevwovlv0',''),('clc93siz8011s4xiylsaj10ie',1,'Admin',1672319399,'192.168.64.1',2,15,30946,NULL,'Etcd: DB size','clc93sisl00004xiyevwovlv0',''),('clc93siz8011t4xiyev70stn7',1,'Admin',1672319399,'192.168.64.1',2,15,30947,NULL,'Etcd: Deletes per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8011u4xiynguy4mvi',1,'Admin',1672319399,'192.168.64.1',2,15,30948,NULL,'Etcd: Pending events','clc93sisl00004xiyevwovlv0',''),('clc93siz8011v4xiynoalbzjw',1,'Admin',1672319399,'192.168.64.1',2,15,30925,NULL,'Etcd: Get node metrics','clc93sisl00004xiyevwovlv0',''),('clc93siz8011w4xiye20y69sf',1,'Admin',1672319399,'192.168.64.1',2,15,30926,NULL,'Etcd: Get version','clc93sisl00004xiyevwovlv0',''),('clc93siz8011x4xiy86jxudk0',1,'Admin',1672319399,'192.168.64.1',2,15,30949,NULL,'Etcd: RPCs received per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8011y4xiycngs1ue7',1,'Admin',1672319399,'192.168.64.1',2,15,30950,NULL,'Etcd: RPCs sent per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8011z4xiyfha1ht6a',1,'Admin',1672319399,'192.168.64.1',2,15,30951,NULL,'Etcd: RPCs started per second','clc93sisl00004xiyevwovlv0',''),('clc93siz801204xiyx08rnrxt',1,'Admin',1672319399,'192.168.64.1',2,15,30945,NULL,'Etcd: Server has a leader','clc93sisl00004xiyevwovlv0',''),('clc93siz801214xiyba308kvq',1,'Admin',1672319399,'192.168.64.1',2,15,30924,NULL,'Etcd: Node health','clc93sisl00004xiyevwovlv0',''),('clc93siz801224xiyhgc2gc3u',1,'Admin',1672319399,'192.168.64.1',2,15,30952,NULL,'Etcd: HTTP 4XX','clc93sisl00004xiyevwovlv0',''),('clc93siz801234xiyepalc0fl',1,'Admin',1672319399,'192.168.64.1',2,15,30954,NULL,'Etcd: HTTP 5XX','clc93sisl00004xiyevwovlv0',''),('clc93siz801244xiy36lf1ced',1,'Admin',1672319399,'192.168.64.1',2,15,30955,NULL,'Etcd: HTTP requests received','clc93sisl00004xiyevwovlv0',''),('clc93siz801254xiys42pqxy5',1,'Admin',1672319399,'192.168.64.1',2,15,30956,NULL,'Etcd: Server is a leader','clc93sisl00004xiyevwovlv0',''),('clc93siz801264xiywob5dx2y',1,'Admin',1672319399,'192.168.64.1',2,15,30957,NULL,'Etcd: Keys compacted per second','clc93sisl00004xiyevwovlv0',''),('clc93siz801274xiyr5zkzq2r',1,'Admin',1672319399,'192.168.64.1',2,15,30958,NULL,'Etcd: Keys expired per second','clc93sisl00004xiyevwovlv0',''),('clc93siz801284xiy96v97rm9',1,'Admin',1672319399,'192.168.64.1',2,15,30959,NULL,'Etcd: Keys total','clc93sisl00004xiyevwovlv0',''),('clc93siz801294xiywkppgts2',1,'Admin',1672319399,'192.168.64.1',2,15,30960,NULL,'Etcd: Leader changes','clc93sisl00004xiyevwovlv0',''),('clc93siz8012a4xiy63q1d5ad',1,'Admin',1672319399,'192.168.64.1',2,15,30944,NULL,'Etcd: Maximum open file descriptors','clc93sisl00004xiyevwovlv0',''),('clc93siz8012b4xiycgub9uh6',1,'Admin',1672319399,'192.168.64.1',2,15,30935,NULL,'Etcd: Client gRPC received bytes per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8012c4xiynhvpr7n7',1,'Admin',1672319399,'192.168.64.1',2,15,30942,NULL,'Etcd: Client gRPC sent bytes per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8012d4xiy0bql8qai',1,'Admin',1672319399,'192.168.64.1',2,15,30927,NULL,'Etcd: Open file descriptors','clc93sisl00004xiyevwovlv0',''),('clc93siz8012e4xiyive4ttli',1,'Admin',1672319399,'192.168.64.1',2,15,30928,NULL,'Etcd: Proposals applied per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8012f4xiynl0wxew9',1,'Admin',1672319399,'192.168.64.1',2,15,30929,NULL,'Etcd: Proposals committed per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8012g4xiywyfppqyl',1,'Admin',1672319399,'192.168.64.1',2,15,30930,NULL,'Etcd: Proposals failed per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8012h4xiyrhi4penq',1,'Admin',1672319399,'192.168.64.1',2,15,30931,NULL,'Etcd: Proposals pending','clc93sisl00004xiyevwovlv0',''),('clc93siz8012i4xiyo4gwv2n5',1,'Admin',1672319399,'192.168.64.1',2,15,30932,NULL,'Etcd: PUT per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8012j4xiy6nvh8awt',1,'Admin',1672319399,'192.168.64.1',2,15,30933,NULL,'Etcd: Range per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8012k4xiypfphdtom',1,'Admin',1672319399,'192.168.64.1',2,15,30934,NULL,'Etcd: Reads per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8012l4xiyl4ns6iky',1,'Admin',1672319399,'192.168.64.1',2,15,30936,NULL,'Etcd: Resident memory','clc93sisl00004xiyevwovlv0',''),('clc93siz8012m4xiyw3z2bf0q',1,'Admin',1672319399,'192.168.64.1',2,15,30937,NULL,'Etcd: Server version','clc93sisl00004xiyevwovlv0',''),('clc93siz8012n4xiyb8zd6tk1',1,'Admin',1672319399,'192.168.64.1',2,15,30938,NULL,'Etcd: Transaction per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8012o4xiy60weahrq',1,'Admin',1672319399,'192.168.64.1',2,15,30939,NULL,'Etcd: Uptime','clc93sisl00004xiyevwovlv0',''),('clc93siz8012p4xiy4cxl7kz1',1,'Admin',1672319399,'192.168.64.1',2,15,30940,NULL,'Etcd: Virtual memory','clc93sisl00004xiyevwovlv0',''),('clc93siz8012q4xiyo571papy',1,'Admin',1672319399,'192.168.64.1',2,15,30941,NULL,'Etcd: Writes per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8012r4xiysx078ual',1,'Admin',1672319399,'192.168.64.1',2,15,30923,NULL,'Etcd: Service\'s TCP port state','clc93sisl00004xiyevwovlv0',''),('clc93siz8012s4xiytrxxhkbu',1,'Admin',1672319399,'192.168.64.1',2,15,32598,NULL,'GitLab: Cache: Misses rate, total','clc93sisl00004xiyevwovlv0',''),('clc93siz8012t4xiyunlne40y',1,'Admin',1672319399,'192.168.64.1',2,15,32609,NULL,'GitLab: Cache: Operations rate, total','clc93sisl00004xiyevwovlv0',''),('clc93siz8012u4xiyzo2oxooh',1,'Admin',1672319399,'192.168.64.1',2,15,32601,NULL,'GitLab: Database: Connection pool, busy','clc93sisl00004xiyevwovlv0',''),('clc93siz8012v4xiyp9xkbkth',1,'Admin',1672319399,'192.168.64.1',2,15,32602,NULL,'GitLab: Database: Connection pool, current','clc93sisl00004xiyevwovlv0',''),('clc93siz8012w4xiycpq58mij',1,'Admin',1672319399,'192.168.64.1',2,15,32603,NULL,'GitLab: Database: Connection pool, dead','clc93sisl00004xiyevwovlv0',''),('clc93siz8012x4xiycg0xkn01',1,'Admin',1672319399,'192.168.64.1',2,15,32604,NULL,'GitLab: Database: Connection pool, idle','clc93sisl00004xiyevwovlv0',''),('clc93siz8012y4xiy1ot3rw6b',1,'Admin',1672319399,'192.168.64.1',2,15,32605,NULL,'GitLab: Database: Connection pool, size','clc93sisl00004xiyevwovlv0',''),('clc93siz8012z4xiyuvsism25',1,'Admin',1672319399,'192.168.64.1',2,15,32606,NULL,'GitLab: Database: Connection pool, waiting','clc93sisl00004xiyevwovlv0',''),('clc93siz801304xiyz8tnkinb',1,'Admin',1672319399,'192.168.64.1',2,15,32607,NULL,'GitLab: Version','clc93sisl00004xiyevwovlv0',''),('clc93siz801314xiyck9lrucq',1,'Admin',1672319399,'192.168.64.1',2,15,32600,NULL,'GitLab: User CAPTCHA logins failed, total','clc93sisl00004xiyevwovlv0',''),('clc93siz801324xiy6ccerv3z',1,'Admin',1672319399,'192.168.64.1',2,15,32578,NULL,'GitLab: Get instance metrics','clc93sisl00004xiyevwovlv0',''),('clc93siz801334xiy8d4scv4t',1,'Admin',1672319399,'192.168.64.1',2,15,32608,NULL,'GitLab: HTTP requests rate, 4xx','clc93sisl00004xiyevwovlv0',''),('clc93siz801344xiyfpq819so',1,'Admin',1672319399,'192.168.64.1',2,15,32610,NULL,'GitLab: HTTP requests rate, 5xx','clc93sisl00004xiyevwovlv0',''),('clc93siz801354xiyh0c6r696',1,'Admin',1672319399,'192.168.64.1',2,15,32611,NULL,'GitLab: HTTP requests rate, total','clc93sisl00004xiyevwovlv0',''),('clc93siz801364xiypbuve0v6',1,'Admin',1672319399,'192.168.64.1',2,15,32576,NULL,'GitLab: Application server status','clc93sisl00004xiyevwovlv0',''),('clc93siz801374xiyw3vwqm1j',1,'Admin',1672319399,'192.168.64.1',2,15,32612,NULL,'GitLab: Pipelines: Auto DevOps pipelines, total','clc93sisl00004xiyevwovlv0',''),('clc93siz801384xiywkhvumln',1,'Admin',1672319399,'192.168.64.1',2,15,32613,NULL,'GitLab: Pipelines: Auto DevOps pipelines, failed','clc93sisl00004xiyevwovlv0',''),('clc93siz801394xiyuatvnrkb',1,'Admin',1672319399,'192.168.64.1',2,15,32614,NULL,'GitLab: Pipelines: Created, total','clc93sisl00004xiyevwovlv0',''),('clc93siz8013a4xiy0pmzhqtc',1,'Admin',1672319399,'192.168.64.1',2,15,32615,NULL,'GitLab: Pipelines: CI/CD creation duration','clc93sisl00004xiyevwovlv0',''),('clc93siz8013b4xiyw085dgiw',1,'Admin',1672319399,'192.168.64.1',2,15,32616,NULL,'GitLab: Pipelines: Pipelines: CI/CD creation count','clc93sisl00004xiyevwovlv0',''),('clc93siz8013c4xiy34fflszw',1,'Admin',1672319399,'192.168.64.1',2,15,32617,NULL,'GitLab: Pipelines: Processing events, total','clc93sisl00004xiyevwovlv0',''),('clc93siz8013d4xiy5rvbrqm0',1,'Admin',1672319399,'192.168.64.1',2,15,32577,NULL,'GitLab: Instance readiness check','clc93sisl00004xiyevwovlv0',''),('clc93siz8013e4xiyg1pkhx1t',1,'Admin',1672319399,'192.168.64.1',2,15,32599,NULL,'GitLab: Redis: Client exceptions rate, cache','clc93sisl00004xiyevwovlv0',''),('clc93siz8013f4xiyvvlifksy',1,'Admin',1672319399,'192.168.64.1',2,15,32588,NULL,'GitLab: Redis: Client exceptions rate, queues','clc93sisl00004xiyevwovlv0',''),('clc93siz8013g4xiy7qkvvrd1',1,'Admin',1672319399,'192.168.64.1',2,15,32597,NULL,'GitLab: Redis: client exceptions rate, shared_state','clc93sisl00004xiyevwovlv0',''),('clc93siz8013h4xiyb16jc53h',1,'Admin',1672319399,'192.168.64.1',2,15,32580,NULL,'GitLab: Redis: Client requests rate, cache','clc93sisl00004xiyevwovlv0',''),('clc93siz8013i4xiy7h6ngxtx',1,'Admin',1672319399,'192.168.64.1',2,15,32581,NULL,'GitLab: Redis: Client requests rate, queues','clc93sisl00004xiyevwovlv0',''),('clc93siz8013j4xiy8t70d256',1,'Admin',1672319399,'192.168.64.1',2,15,32582,NULL,'GitLab: Redis: Client requests rate, shared_state','clc93sisl00004xiyevwovlv0',''),('clc93siz8013k4xiyfp28qxs4',1,'Admin',1672319399,'192.168.64.1',2,15,32583,NULL,'GitLab: Ruby: File descriptors opened, avg','clc93sisl00004xiyevwovlv0',''),('clc93siz8013l4xiy0e4256jx',1,'Admin',1672319399,'192.168.64.1',2,15,32584,NULL,'GitLab: Ruby: File descriptors opened, max','clc93sisl00004xiyevwovlv0',''),('clc93siz8013m4xiyi30ohrwd',1,'Admin',1672319399,'192.168.64.1',2,15,32585,NULL,'GitLab: Ruby: File descriptors opened, min','clc93sisl00004xiyevwovlv0',''),('clc93siz8013n4xiy144fuiq6',1,'Admin',1672319399,'192.168.64.1',2,15,32586,NULL,'GitLab: Ruby: CPU usage per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8013o4xiy5i08g7k2',1,'Admin',1672319399,'192.168.64.1',2,15,32579,NULL,'GitLab: Ruby: File descriptors, max','clc93sisl00004xiyevwovlv0',''),('clc93siz8013p4xiybzabb3mj',1,'Admin',1672319399,'192.168.64.1',2,15,32587,NULL,'GitLab: Ruby: RSS memory, avg','clc93sisl00004xiyevwovlv0',''),('clc93siz8013q4xiy1gx1tedf',1,'Admin',1672319399,'192.168.64.1',2,15,32589,NULL,'GitLab: Ruby: RSS memory, max','clc93sisl00004xiyevwovlv0',''),('clc93siz8013r4xiyt2enyugf',1,'Admin',1672319399,'192.168.64.1',2,15,32590,NULL,'GitLab: Ruby: RSS memory, min','clc93sisl00004xiyevwovlv0',''),('clc93siz8013s4xiyikl9gsox',1,'Admin',1672319399,'192.168.64.1',2,15,32591,NULL,'GitLab: Ruby: First process start time','clc93sisl00004xiyevwovlv0',''),('clc93siz8013t4xiyhzb6tp16',1,'Admin',1672319399,'192.168.64.1',2,15,32592,NULL,'GitLab: Ruby: Last process start time','clc93sisl00004xiyevwovlv0',''),('clc93siz8013u4xiyrwgky8f5',1,'Admin',1672319399,'192.168.64.1',2,15,32593,NULL,'GitLab: Ruby: Running_threads','clc93sisl00004xiyevwovlv0',''),('clc93siz8013v4xiy0lkns5x3',1,'Admin',1672319399,'192.168.64.1',2,15,32594,NULL,'GitLab: User CAPTCHA logins, total','clc93sisl00004xiyevwovlv0',''),('clc93siz8013w4xiymqd1gidr',1,'Admin',1672319399,'192.168.64.1',2,15,32595,NULL,'GitLab: Transactions per second','clc93sisl00004xiyevwovlv0',''),('clc93siz8013x4xiyie9mw740',1,'Admin',1672319399,'192.168.64.1',2,15,32596,NULL,'GitLab: Upload file does not exist','clc93sisl00004xiyevwovlv0',''),('clc93siz8013y4xiyprrdwhx7',1,'Admin',1672319399,'192.168.64.1',2,15,32618,NULL,'GitLab: User logins, total','clc93sisl00004xiyevwovlv0',''),('clc93siz8013z4xiyvqsxlzd5',1,'Admin',1672319399,'192.168.64.1',2,15,32634,NULL,'Get DataNodes states','clc93sisl00004xiyevwovlv0',''),('clc93siz801404xiy8vhk6yz9',1,'Admin',1672319399,'192.168.64.1',2,15,32644,NULL,'NameNode: Blocks allocable','clc93sisl00004xiyevwovlv0',''),('clc93siz801414xiyowaaq3si',1,'Admin',1672319399,'192.168.64.1',2,15,32658,NULL,'NameNode: Total blocks','clc93sisl00004xiyevwovlv0',''),('clc93siz801424xiyk8jv5iqq',1,'Admin',1672319399,'192.168.64.1',2,15,32645,NULL,'NameNode: Capacity remaining','clc93sisl00004xiyevwovlv0',''),('clc93siz801434xiykssi0zqv',1,'Admin',1672319399,'192.168.64.1',2,15,32646,NULL,'NameNode: Corrupt blocks','clc93sisl00004xiyevwovlv0',''),('clc93siz801444xiy0dchizxg',1,'Admin',1672319399,'192.168.64.1',2,15,32654,NULL,'NameNode: Total files','clc93sisl00004xiyevwovlv0',''),('clc93siz801454xiy175beik2',1,'Admin',1672319399,'192.168.64.1',2,15,32641,NULL,'Get NameNode stats','clc93sisl00004xiyevwovlv0',''),('clc93siz801464xiy1i590qqz',1,'Admin',1672319399,'192.168.64.1',2,15,32642,NULL,'NameNode: Missing blocks','clc93sisl00004xiyevwovlv0',''),('clc93siz801474xiy39z53jw6',1,'Admin',1672319399,'192.168.64.1',2,15,32656,NULL,'NameNode: Dead DataNodes','clc93sisl00004xiyevwovlv0',''),('clc93siz801484xiy2g9ar69d',1,'Admin',1672319399,'192.168.64.1',2,15,32666,NULL,'NameNode: Alive DataNodes','clc93sisl00004xiyevwovlv0',''),('clc93siz801494xiyedypon7v',1,'Admin',1672319399,'192.168.64.1',2,15,32665,NULL,'NameNode: Stale DataNodes','clc93sisl00004xiyevwovlv0',''),('clc93siz8014a4xiyriu2t0ua',1,'Admin',1672319399,'192.168.64.1',2,15,32664,NULL,'NameNode: Block Pool Renaming','clc93sisl00004xiyevwovlv0',''),('clc93siz8014b4xiyeb8xb59m',1,'Admin',1672319399,'192.168.64.1',2,15,32663,NULL,'NameNode: Percent capacity remaining','clc93sisl00004xiyevwovlv0',''),('clc93siz8014c4xiydymegcud',1,'Admin',1672319399,'192.168.64.1',2,15,32662,NULL,'NameNode: RPC queue & processing time','clc93sisl00004xiyevwovlv0',''),('clc93siz8014d4xiyz9ao4k12',1,'Admin',1672319399,'192.168.64.1',2,15,32661,NULL,'NameNode: Total load','clc93sisl00004xiyevwovlv0',''),('clc93siz8014e4xiytj6w585w',1,'Admin',1672319399,'192.168.64.1',2,15,32660,NULL,'NameNode: Transactions since last checkpoint','clc93sisl00004xiyevwovlv0',''),('clc93siz8014f4xiy6ebqbdlg',1,'Admin',1672319399,'192.168.64.1',2,15,32659,NULL,'NameNode: Under-replicated blocks','clc93sisl00004xiyevwovlv0',''),('clc93siz8014g4xiybcf6q67x',1,'Admin',1672319399,'192.168.64.1',2,15,32667,NULL,'NameNode: Uptime','clc93sisl00004xiyevwovlv0',''),('clc93siz8014h4xiyvry2rm61',1,'Admin',1672319399,'192.168.64.1',2,15,32657,NULL,'NameNode: Failed volumes','clc93sisl00004xiyevwovlv0',''),('clc93siz8014i4xiy0o2q1lto',1,'Admin',1672319399,'192.168.64.1',2,15,32635,NULL,'Get NodeManagers states','clc93sisl00004xiyevwovlv0',''),('clc93siz8014j4xiy7c19o90l',1,'Admin',1672319399,'192.168.64.1',2,15,32639,NULL,'Get ResourceManager stats','clc93sisl00004xiyevwovlv0',''),('clc93siz8014k4xiy3698px76',1,'Admin',1672319399,'192.168.64.1',2,15,32655,NULL,'ResourceManager: Active NMs','clc93sisl00004xiyevwovlv0',''),('clc93siz8014l4xiy3y6aa874',1,'Admin',1672319399,'192.168.64.1',2,15,32643,NULL,'ResourceManager: Decommissioned NMs','clc93sisl00004xiyevwovlv0',''),('clc93siz8014m4xiya1xlredi',1,'Admin',1672319399,'192.168.64.1',2,15,32653,NULL,'ResourceManager: Decommissioning NMs','clc93sisl00004xiyevwovlv0',''),('clc93siz8014n4xiylcjzbaw4',1,'Admin',1672319399,'192.168.64.1',2,15,32652,NULL,'ResourceManager: Lost NMs','clc93sisl00004xiyevwovlv0',''),('clc93siz8014o4xiyuadxsl8n',1,'Admin',1672319399,'192.168.64.1',2,15,32651,NULL,'ResourceManager: Rebooted NMs','clc93sisl00004xiyevwovlv0',''),('clc93siz8014p4xiypkbxura0',1,'Admin',1672319399,'192.168.64.1',2,15,32650,NULL,'ResourceManager: Shutdown NMs','clc93sisl00004xiyevwovlv0',''),('clc93siz8014q4xiymh90ixks',1,'Admin',1672319399,'192.168.64.1',2,15,32649,NULL,'ResourceManager: Unhealthy NMs','clc93sisl00004xiyevwovlv0',''),('clc93siz8014r4xiyv24rhnmj',1,'Admin',1672319399,'192.168.64.1',2,15,32648,NULL,'ResourceManager: RPC queue & processing time','clc93sisl00004xiyevwovlv0',''),('clc93siz8014s4xiyu9arih2k',1,'Admin',1672319399,'192.168.64.1',2,15,32647,NULL,'ResourceManager: Uptime','clc93sisl00004xiyevwovlv0',''),('clc93siz8014t4xiyphnqgisq',1,'Admin',1672319399,'192.168.64.1',2,15,32638,NULL,'NameNode: Service response time','clc93sisl00004xiyevwovlv0',''),('clc93siz8014u4xiygrqu4hlw',1,'Admin',1672319399,'192.168.64.1',2,15,32637,NULL,'ResourceManager: Service response time','clc93sisl00004xiyevwovlv0',''),('clc93siz8014v4xiyopxh3q33',1,'Admin',1672319399,'192.168.64.1',2,15,32636,NULL,'NameNode: Service status','clc93sisl00004xiyevwovlv0',''),('clc93siz8014w4xiylfomw6qx',1,'Admin',1672319399,'192.168.64.1',2,15,32640,NULL,'ResourceManager: Service status','clc93sisl00004xiyevwovlv0',''),('clc93siz8014x4xiyklcl402b',1,'Admin',1672319399,'192.168.64.1',2,15,32803,NULL,'Vault: Check mountpoint discovery','clc93sisl00004xiyevwovlv0',''),('clc93siz8014y4xiyxcc7jx41',1,'Admin',1672319399,'192.168.64.1',2,15,32850,NULL,'Vault: Check replication discovery','clc93sisl00004xiyevwovlv0',''),('clc93siz8014z4xiy7a8iny22',1,'Admin',1672319399,'192.168.64.1',2,15,32846,NULL,'Vault: Check storage discovery','clc93sisl00004xiyevwovlv0',''),('clc93siz801504xiyk8secssq',1,'Admin',1672319399,'192.168.64.1',2,15,32845,NULL,'Vault: Check WAL discovery','clc93sisl00004xiyevwovlv0',''),('clc93siz801514xiygvw6tybx',1,'Admin',1672319399,'192.168.64.1',2,15,32795,NULL,'Vault: Clear metrics','clc93sisl00004xiyevwovlv0',''),('clc93siz801524xiydl3zyqea',1,'Admin',1672319399,'192.168.64.1',2,15,32781,NULL,'Vault: Get health','clc93sisl00004xiyevwovlv0',''),('clc93siz801534xiylpewig0u',1,'Admin',1672319399,'192.168.64.1',2,15,32780,NULL,'Vault: Get leader','clc93sisl00004xiyevwovlv0',''),('clc93siz801544xiyph08ms0c',1,'Admin',1672319399,'192.168.64.1',2,15,32782,NULL,'Vault: Get metrics','clc93sisl00004xiyevwovlv0',''),('clc93siz801554xiyi9opurwh',1,'Admin',1672319399,'192.168.64.1',2,15,32794,NULL,'Vault: Get metrics error','clc93sisl00004xiyevwovlv0',''),('clc93siz801564xiyukmhkzzw',1,'Admin',1672319399,'192.168.64.1',2,15,32783,NULL,'Vault: Get tokens','clc93sisl00004xiyevwovlv0',''),('clc93siz801574xiy32ifdwy7',1,'Admin',1672319399,'192.168.64.1',2,15,32793,NULL,'Vault: Healthcheck','clc93sisl00004xiyevwovlv0',''),('clc93siz801584xiytfsyra9k',1,'Admin',1672319399,'192.168.64.1',2,15,32791,NULL,'Vault: Initialized','clc93sisl00004xiyevwovlv0',''),('clc93siz801594xiyheq6lf29',1,'Admin',1672319399,'192.168.64.1',2,15,32792,NULL,'Vault: Performance standby','clc93sisl00004xiyevwovlv0',''),('clc93siz8015a4xiywtdklzee',1,'Admin',1672319399,'192.168.64.1',2,15,32785,NULL,'Vault: Disaster Recovery replication','clc93sisl00004xiyevwovlv0',''),('clc93siz8015b4xiydw4m5nhb',1,'Admin',1672319399,'192.168.64.1',2,15,32790,NULL,'Vault: Performance replication','clc93sisl00004xiyevwovlv0',''),('clc93siz8015c4xiysy635dnt',1,'Admin',1672319399,'192.168.64.1',2,15,32789,NULL,'Vault: Sealed','clc93sisl00004xiyevwovlv0',''),('clc93siz8015d4xiy5my1ethy',1,'Admin',1672319399,'192.168.64.1',2,15,32784,NULL,'Vault: Standby','clc93sisl00004xiyevwovlv0',''),('clc93siz8015e4xiybac7ljrx',1,'Admin',1672319399,'192.168.64.1',2,15,32788,NULL,'Vault: Version','clc93sisl00004xiyevwovlv0',''),('clc93siz8015f4xiylhj8bqi5',1,'Admin',1672319399,'192.168.64.1',2,15,32787,NULL,'Vault: HA enabled','clc93sisl00004xiyevwovlv0',''),('clc93siz8015g4xiyw5j85ai9',1,'Admin',1672319399,'192.168.64.1',2,15,32786,NULL,'Vault: Is leader','clc93sisl00004xiyevwovlv0',''),('clc93siz8015h4xiyd4ljd9do',1,'Admin',1672319399,'192.168.64.1',2,15,32844,NULL,'Vault: Audit log request failures, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz8015i4xiyc1t3gquz',1,'Admin',1672319399,'192.168.64.1',2,15,32843,NULL,'Vault: Audit log requests, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz8015j4xiyfn14xw5t',1,'Admin',1672319399,'192.168.64.1',2,15,32842,NULL,'Vault: Audit log response failures, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz8015k4xiyz77xsvj6',1,'Admin',1672319399,'192.168.64.1',2,15,32841,NULL,'Vault: Audit log response, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz8015l4xiyc6e4cqap',1,'Admin',1672319399,'192.168.64.1',2,15,32839,NULL,'Vault: Barrier DELETE ops, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz8015m4xiyu530tp27',1,'Admin',1672319399,'192.168.64.1',2,15,32832,NULL,'Vault: Barrier LIST ops, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz8015n4xiyslryfm9b',1,'Admin',1672319399,'192.168.64.1',2,15,32838,NULL,'Vault: Barrier PUT ops, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz8015o4xiyb9xjlgbm',1,'Admin',1672319399,'192.168.64.1',2,15,32837,NULL,'Vault: Cache hit, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz8015p4xiywr3s0au5',1,'Admin',1672319399,'192.168.64.1',2,15,32836,NULL,'Vault: Cache miss, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz8015q4xiys9cdq7v7',1,'Admin',1672319399,'192.168.64.1',2,15,32835,NULL,'Vault: Cache write, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz8015r4xiydszkmc1p',1,'Admin',1672319399,'192.168.64.1',2,15,32834,NULL,'Vault: Check token, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz8015s4xiyfwimws50',1,'Admin',1672319399,'192.168.64.1',2,15,32833,NULL,'Vault: Fetch ACL and token, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz8015t4xiyj86gauz2',1,'Admin',1672319399,'192.168.64.1',2,15,32847,NULL,'Vault: Requests, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz8015u4xiy59753f63',1,'Admin',1672319399,'192.168.64.1',2,15,32840,NULL,'Vault: Leadership setup failed, counter','clc93sisl00004xiyevwovlv0',''),('clc93siz8015v4xiyvh3k0qsc',1,'Admin',1672319399,'192.168.64.1',2,15,32848,NULL,'Vault: Leadership setup lost, counter','clc93sisl00004xiyevwovlv0',''),('clc93siz8015w4xiymh6s1a9u',1,'Admin',1672319399,'192.168.64.1',2,15,32858,NULL,'Vault: Post-unseal ops, counter','clc93sisl00004xiyevwovlv0',''),('clc93siz8015x4xiymzuwz49a',1,'Admin',1672319399,'192.168.64.1',2,15,32864,NULL,'Vault: Pre-seal ops, counter','clc93sisl00004xiyevwovlv0',''),('clc93siz8015y4xiyg0w9h7xk',1,'Admin',1672319399,'192.168.64.1',2,15,32863,NULL,'Vault: Seal ops, counter','clc93sisl00004xiyevwovlv0',''),('clc93siz8015z4xiyg9tyiwib',1,'Admin',1672319399,'192.168.64.1',2,15,32862,NULL,'Vault: Internal seal ops, counter','clc93sisl00004xiyevwovlv0',''),('clc93siz801604xiy6c4a3chs',1,'Admin',1672319399,'192.168.64.1',2,15,32861,NULL,'Vault: Requested seal ops, counter','clc93sisl00004xiyevwovlv0',''),('clc93siz801614xiywqn6fmz2',1,'Admin',1672319399,'192.168.64.1',2,15,32860,NULL,'Vault: Leadership step downs, counter','clc93sisl00004xiyevwovlv0',''),('clc93siz801624xiy5lmcon0q',1,'Admin',1672319399,'192.168.64.1',2,15,32859,NULL,'Vault: Unseal ops, counter','clc93sisl00004xiyevwovlv0',''),('clc93siz801634xiysdx4qseb',1,'Admin',1672319399,'192.168.64.1',2,15,32857,NULL,'Vault: Fetch lease times, counter','clc93sisl00004xiyevwovlv0',''),('clc93siz801644xiygdqccvcz',1,'Admin',1672319399,'192.168.64.1',2,15,32830,NULL,'Vault: Fetch lease times by token, counter','clc93sisl00004xiyevwovlv0',''),('clc93siz801654xiylwy7hbl1',1,'Admin',1672319399,'192.168.64.1',2,15,32856,NULL,'Vault: Number of expiring leases','clc93sisl00004xiyevwovlv0',''),('clc93siz801664xiya7ur7i3d',1,'Admin',1672319399,'192.168.64.1',2,15,32855,NULL,'Vault: Register ops, count','clc93sisl00004xiyevwovlv0',''),('clc93siz801674xiy0pebaw2d',1,'Admin',1672319399,'192.168.64.1',2,15,32854,NULL,'Vault: Register auth ops, count','clc93sisl00004xiyevwovlv0',''),('clc93siz801684xiyuh35aqlq',1,'Admin',1672319399,'192.168.64.1',2,15,32853,NULL,'Vault: Expire renew, count','clc93sisl00004xiyevwovlv0',''),('clc93siz801694xiyqxlwntig',1,'Admin',1672319399,'192.168.64.1',2,15,32852,NULL,'Vault: Renew token, count','clc93sisl00004xiyevwovlv0',''),('clc93siz8016a4xiytiu5k69j',1,'Admin',1672319399,'192.168.64.1',2,15,32851,NULL,'Vault: Expire revoke, count','clc93sisl00004xiyevwovlv0',''),('clc93siz8016b4xiyfmgkprr5',1,'Admin',1672319399,'192.168.64.1',2,15,32849,NULL,'Vault: Revoke secrets by token, count','clc93sisl00004xiyevwovlv0',''),('clc93siz8016c4xiys89ru3vv',1,'Admin',1672319399,'192.168.64.1',2,15,32831,NULL,'Vault: Expire revoke force, count','clc93sisl00004xiyevwovlv0',''),('clc93siz8016d4xiylw86kqt2',1,'Admin',1672319399,'192.168.64.1',2,15,32821,NULL,'Vault: Expire revoke prefix, count','clc93sisl00004xiyevwovlv0',''),('clc93siz8016e4xiy5cq5bkj6',1,'Admin',1672319399,'192.168.64.1',2,15,32829,NULL,'Vault: Policy DELETE ops, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz8016f4xiyhl3gxcjg',1,'Admin',1672319399,'192.168.64.1',2,15,32810,NULL,'Vault: Policy GET ops, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz8016g4xiyv94hbpvk',1,'Admin',1672319399,'192.168.64.1',2,15,32809,NULL,'Vault: Policy LIST ops, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz8016h4xiy7wzzfrow',1,'Admin',1672319399,'192.168.64.1',2,15,32807,NULL,'Vault: Policy SET ops, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz8016i4xiyb0ehgh8c',1,'Admin',1672319399,'192.168.64.1',2,15,32806,NULL,'Vault: Process CPU seconds, total','clc93sisl00004xiyevwovlv0',''),('clc93siz8016j4xiyumm16yfo',1,'Admin',1672319399,'192.168.64.1',2,15,32805,NULL,'Vault: Open file descriptors, max','clc93sisl00004xiyevwovlv0',''),('clc93siz8016k4xiysa1dst5u',1,'Admin',1672319399,'192.168.64.1',2,15,32804,NULL,'Vault: Open file descriptors, current','clc93sisl00004xiyevwovlv0',''),('clc93siz8016l4xiyf6z6n0s5',1,'Admin',1672319399,'192.168.64.1',2,15,32796,NULL,'Vault: Process resident memory','clc93sisl00004xiyevwovlv0',''),('clc93siz8016m4xiydqwmhvvu',1,'Admin',1672319399,'192.168.64.1',2,15,32802,NULL,'Vault: Uptime','clc93sisl00004xiyevwovlv0',''),('clc93siz8016n4xiynljmtnld',1,'Admin',1672319399,'192.168.64.1',2,15,32801,NULL,'Vault: Process virtual memory, current','clc93sisl00004xiyevwovlv0',''),('clc93siz8016o4xiyfmru6j5n',1,'Admin',1672319399,'192.168.64.1',2,15,32800,NULL,'Vault: Process virtual memory, max','clc93sisl00004xiyevwovlv0',''),('clc93siz8016p4xiyinetzbvv',1,'Admin',1672319399,'192.168.64.1',2,15,32797,NULL,'Vault: Runtime allocated bytes','clc93sisl00004xiyevwovlv0',''),('clc93siz8016q4xiykqx6gk3k',1,'Admin',1672319399,'192.168.64.1',2,15,32798,NULL,'Vault: Runtime freed objects','clc93sisl00004xiyevwovlv0',''),('clc93siz8016r4xiysh7qx59g',1,'Admin',1672319399,'192.168.64.1',2,15,32799,NULL,'Vault: Runtime heap objects','clc93sisl00004xiyevwovlv0',''),('clc93siz8016s4xiysvk13w7k',1,'Admin',1672319399,'192.168.64.1',2,15,32811,NULL,'Vault: Runtime malloc count','clc93sisl00004xiyevwovlv0',''),('clc93siz8016t4xiyo1xgbet6',1,'Admin',1672319399,'192.168.64.1',2,15,32808,NULL,'Vault: Runtime num goroutines','clc93sisl00004xiyevwovlv0',''),('clc93siz8016u4xiyjhaeu85d',1,'Admin',1672319399,'192.168.64.1',2,15,32813,NULL,'Vault: Runtime sys bytes','clc93sisl00004xiyevwovlv0',''),('clc93siz8016v4xiyqgaj5y31',1,'Admin',1672319399,'192.168.64.1',2,15,32822,NULL,'Vault: Runtime GC runs, total','clc93sisl00004xiyevwovlv0',''),('clc93siz8016w4xiyf401tdux',1,'Admin',1672319399,'192.168.64.1',2,15,32828,NULL,'Vault: Secret kv entries','clc93sisl00004xiyevwovlv0',''),('clc93siz8016x4xiyzlwh2yql',1,'Admin',1672319399,'192.168.64.1',2,15,32827,NULL,'Vault: Token secret lease creation, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz8016y4xiyc9t1wa7r',1,'Admin',1672319399,'192.168.64.1',2,15,32826,NULL,'Vault: Token count, total','clc93sisl00004xiyevwovlv0',''),('clc93siz8016z4xiy2d25fu35',1,'Admin',1672319399,'192.168.64.1',2,15,32825,NULL,'Vault: Token count by auth, total','clc93sisl00004xiyevwovlv0',''),('clc93siz801704xiypii5ac2r',1,'Admin',1672319399,'192.168.64.1',2,15,32824,NULL,'Vault: Token count by policy, total','clc93sisl00004xiyevwovlv0',''),('clc93siz801714xiyfhc7gqk0',1,'Admin',1672319399,'192.168.64.1',2,15,32823,NULL,'Vault: Token count by ttl, total','clc93sisl00004xiyevwovlv0',''),('clc93siz801724xiya4i1eb4y',1,'Admin',1672319399,'192.168.64.1',2,15,32812,NULL,'Vault: Token create, count','clc93sisl00004xiyevwovlv0',''),('clc93siz801734xiypbxgez62',1,'Admin',1672319399,'192.168.64.1',2,15,32814,NULL,'Vault: Token createAccessor, count','clc93sisl00004xiyevwovlv0',''),('clc93siz801744xiy48zbfh4u',1,'Admin',1672319399,'192.168.64.1',2,15,32820,NULL,'Vault: Token creation, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz801754xiyf8sql6ur',1,'Admin',1672319399,'192.168.64.1',2,15,32819,NULL,'Vault: Token lookup, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz801764xiy0zzif9ih',1,'Admin',1672319399,'192.168.64.1',2,15,32818,NULL,'Vault: Token revoke, count','clc93sisl00004xiyevwovlv0',''),('clc93siz801774xiyll711xyr',1,'Admin',1672319399,'192.168.64.1',2,15,32817,NULL,'Vault: Token revoke tree, count','clc93sisl00004xiyevwovlv0',''),('clc93siz801784xiytu121kx9',1,'Admin',1672319399,'192.168.64.1',2,15,32816,NULL,'Vault: Token store, count','clc93sisl00004xiyevwovlv0',''),('clc93siz801794xiyrg638o4n',1,'Admin',1672319399,'192.168.64.1',2,15,32815,NULL,'Vault: Runtime GC pause, total','clc93sisl00004xiyevwovlv0',''),('clc93siz8017a4xiyok5n7eba',1,'Admin',1672319399,'192.168.64.1',2,15,32865,NULL,'Vault: Barrier GET ops, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz8017b4xiy0ge93tho',1,'Admin',1672319399,'192.168.64.1',2,15,33494,NULL,'Hikvision camera: Boot loader released date','clc93sisl00004xiyevwovlv0',''),('clc93siz8017c4xiy93ktpzcm',1,'Admin',1672319399,'192.168.64.1',2,15,33507,NULL,'Hikvision camera: Boot loader version','clc93sisl00004xiyevwovlv0',''),('clc93siz8017d4xiyea7o17ih',1,'Admin',1672319399,'192.168.64.1',2,15,33518,NULL,'Hikvision camera: CPU utilization','clc93sisl00004xiyevwovlv0',''),('clc93siz8017e4xiyp0j8z1z7',1,'Admin',1672319399,'192.168.64.1',2,15,33517,NULL,'Hikvision camera: Current device time','clc93sisl00004xiyevwovlv0',''),('clc93siz8017f4xiyjtlr3nwi',1,'Admin',1672319399,'192.168.64.1',2,15,33516,NULL,'Hikvision camera: Device description','clc93sisl00004xiyevwovlv0',''),('clc93siz8017g4xiy5vmbi0k0',1,'Admin',1672319399,'192.168.64.1',2,15,33515,NULL,'Hikvision camera: Device ID','clc93sisl00004xiyevwovlv0',''),('clc93siz8017h4xiy5q3ws1fk',1,'Admin',1672319399,'192.168.64.1',2,15,33514,NULL,'Hikvision camera: Device location','clc93sisl00004xiyevwovlv0',''),('clc93siz8017i4xiyvpwly8jk',1,'Admin',1672319399,'192.168.64.1',2,15,33513,NULL,'Hikvision camera: Device name','clc93sisl00004xiyevwovlv0',''),('clc93siz8017j4xiywi9rrvhj',1,'Admin',1672319399,'192.168.64.1',2,15,33512,NULL,'Hikvision camera: Device type','clc93sisl00004xiyevwovlv0',''),('clc93siz8017k4xiyj5lfng6h',1,'Admin',1672319399,'192.168.64.1',2,15,33511,NULL,'Hikvision camera: Encoder released date','clc93sisl00004xiyevwovlv0',''),('clc93siz8017l4xiy7drkwldy',1,'Admin',1672319399,'192.168.64.1',2,15,33510,NULL,'Hikvision camera: Encoder version','clc93sisl00004xiyevwovlv0',''),('clc93siz8017m4xiypeam9e78',1,'Admin',1672319399,'192.168.64.1',2,15,33509,NULL,'Hikvision camera: Firmware released date','clc93sisl00004xiyevwovlv0',''),('clc93siz8017n4xiyx2p5nbqo',1,'Admin',1672319399,'192.168.64.1',2,15,33508,NULL,'Hikvision camera: Firmware version','clc93sisl00004xiyevwovlv0',''),('clc93siz8017o4xiypg2ha43l',1,'Admin',1672319399,'192.168.64.1',2,15,33493,NULL,'Hikvision camera: Get device info','clc93sisl00004xiyevwovlv0',''),('clc93siz8017p4xiyyxyt3176',1,'Admin',1672319399,'192.168.64.1',2,15,33506,NULL,'Hikvision camera: Get device info: Login status','clc93sisl00004xiyevwovlv0',''),('clc93siz8017q4xiycmouwf1b',1,'Admin',1672319399,'192.168.64.1',2,15,33492,NULL,'Hikvision camera: Get system status','clc93sisl00004xiyevwovlv0',''),('clc93siz8017r4xiy0ju1cm41',1,'Admin',1672319399,'192.168.64.1',2,15,33505,NULL,'Hikvision camera: Get system status: Login status','clc93sisl00004xiyevwovlv0',''),('clc93siz8017s4xiyx2fd306a',1,'Admin',1672319399,'192.168.64.1',2,15,33491,NULL,'Hikvision camera: Get streaming channels','clc93sisl00004xiyevwovlv0',''),('clc93siz8017t4xiyipwoe45a',1,'Admin',1672319399,'192.168.64.1',2,15,33504,NULL,'Hikvision camera: Get streaming channels: Login status','clc93sisl00004xiyevwovlv0',''),('clc93siz8017u4xiy1xj57wcp',1,'Admin',1672319399,'192.168.64.1',2,15,33503,NULL,'Hikvision camera: Hardware version','clc93sisl00004xiyevwovlv0',''),('clc93siz8017v4xiyd4sohajy',1,'Admin',1672319399,'192.168.64.1',2,15,33502,NULL,'Hikvision camera: MACaddress','clc93sisl00004xiyevwovlv0',''),('clc93siz8017w4xiybin812p5',1,'Admin',1672319399,'192.168.64.1',2,15,33501,NULL,'Hikvision camera: Memory utilization','clc93sisl00004xiyevwovlv0',''),('clc93siz8017x4xiygsohskuy',1,'Admin',1672319399,'192.168.64.1',2,15,33500,NULL,'Hikvision camera: Model','clc93sisl00004xiyevwovlv0',''),('clc93siz8017y4xiyknc9dk8j',1,'Admin',1672319399,'192.168.64.1',2,15,33499,NULL,'Hikvision camera: Serial number','clc93sisl00004xiyevwovlv0',''),('clc93siz8017z4xiytvex4nia',1,'Admin',1672319399,'192.168.64.1',2,15,33498,NULL,'Hikvision camera: Supported beep','clc93sisl00004xiyevwovlv0',''),('clc93siz801804xiya23yefkk',1,'Admin',1672319399,'192.168.64.1',2,15,33497,NULL,'Hikvision camera: Supported video loss','clc93sisl00004xiyevwovlv0',''),('clc93siz801814xiy8tonx3st',1,'Admin',1672319399,'192.168.64.1',2,15,33496,NULL,'Hikvision camera: System contact','clc93sisl00004xiyevwovlv0',''),('clc93siz801824xiyzrxato3i',1,'Admin',1672319399,'192.168.64.1',2,15,33495,NULL,'Hikvision camera: Telecontrol ID','clc93sisl00004xiyevwovlv0',''),('clc93siz801834xiy7ukmznbe',1,'Admin',1672319399,'192.168.64.1',2,15,33519,NULL,'Hikvision camera: Uptime','clc93sisl00004xiyevwovlv0',''),('clc93siz801844xiyitjbfy21',1,'Admin',1672319399,'192.168.64.1',2,15,35078,NULL,'Cloudflare: Total bandwidth','clc93sisl00004xiyevwovlv0',''),('clc93siz801854xiya5ua6wrv',1,'Admin',1672319399,'192.168.64.1',2,15,35101,NULL,'Cloudflare: Cache hit ratio of bandwidth','clc93sisl00004xiyevwovlv0',''),('clc93siz801864xiyc40yq3kd',1,'Admin',1672319399,'192.168.64.1',2,15,35091,NULL,'Cloudflare: Cached bandwidth','clc93sisl00004xiyevwovlv0',''),('clc93siz801874xiyl1x117wo',1,'Admin',1672319399,'192.168.64.1',2,15,35100,NULL,'Cloudflare: SSL encrypted bandwidth','clc93sisl00004xiyevwovlv0',''),('clc93siz801884xiyyhkeigxc',1,'Admin',1672319399,'192.168.64.1',2,15,35099,NULL,'Cloudflare: Unencrypted bandwidth','clc93sisl00004xiyevwovlv0',''),('clc93siz801894xiy3pzela9o',1,'Admin',1672319399,'192.168.64.1',2,15,35098,NULL,'Cloudflare: Uncached bandwidth','clc93sisl00004xiyevwovlv0',''),('clc93siz8018a4xiy5ppmnz6l',1,'Admin',1672319399,'192.168.64.1',2,15,35097,NULL,'Cloudflare: DNS queries','clc93sisl00004xiyevwovlv0',''),('clc93siz8018b4xiy0ng9bzph',1,'Admin',1672319399,'192.168.64.1',2,15,35096,NULL,'Cloudflare: Stale DNS queries','clc93sisl00004xiyevwovlv0',''),('clc93siz8018c4xiyo1za17ax',1,'Admin',1672319399,'192.168.64.1',2,15,35095,NULL,'Cloudflare: Uncached DNS queries','clc93sisl00004xiyevwovlv0',''),('clc93siz8018d4xiyv6shxa84',1,'Admin',1672319399,'192.168.64.1',2,15,35077,NULL,'Cloudflare: Get data','clc93sisl00004xiyevwovlv0',''),('clc93siz8018e4xiyep0q4u9k',1,'Admin',1672319399,'192.168.64.1',2,15,35094,NULL,'Cloudflare: Total page views','clc93sisl00004xiyevwovlv0',''),('clc93siz8018f4xiy0qndidki',1,'Admin',1672319399,'192.168.64.1',2,15,35093,NULL,'Cloudflare: Total requests','clc93sisl00004xiyevwovlv0',''),('clc93siz8018g4xiycn914rjp',1,'Admin',1672319399,'192.168.64.1',2,15,35090,NULL,'Cloudflare: Cache hit ratio % over time','clc93sisl00004xiyevwovlv0',''),('clc93siz8018h4xiyh1936b8h',1,'Admin',1672319399,'192.168.64.1',2,15,35092,NULL,'Cloudflare: Cached requests','clc93sisl00004xiyevwovlv0',''),('clc93siz8018i4xiyx8lo5c8q',1,'Admin',1672319399,'192.168.64.1',2,15,35079,NULL,'Cloudflare: Non-2xx responses ratio','clc93sisl00004xiyevwovlv0',''),('clc93siz8018j4xiyawbfjemc',1,'Admin',1672319399,'192.168.64.1',2,15,35089,NULL,'Cloudflare: Response codes 1xx','clc93sisl00004xiyevwovlv0',''),('clc93siz8018k4xiy7j7uoxhn',1,'Admin',1672319399,'192.168.64.1',2,15,35088,NULL,'Cloudflare: Response codes 2xx','clc93sisl00004xiyevwovlv0',''),('clc93siz8018l4xiy9cdxbqcw',1,'Admin',1672319399,'192.168.64.1',2,15,35087,NULL,'Cloudflare: Response codes 3xx','clc93sisl00004xiyevwovlv0',''),('clc93siz8018m4xiyrcdj2rif',1,'Admin',1672319399,'192.168.64.1',2,15,35086,NULL,'Cloudflare: Response codes 4xx','clc93sisl00004xiyevwovlv0',''),('clc93siz8018n4xiye8at1dk7',1,'Admin',1672319399,'192.168.64.1',2,15,35085,NULL,'Cloudflare: Response codes 5xx','clc93sisl00004xiyevwovlv0',''),('clc93siz8018o4xiythmc0jfy',1,'Admin',1672319399,'192.168.64.1',2,15,35084,NULL,'Cloudflare: SSL encrypted requests','clc93sisl00004xiyevwovlv0',''),('clc93siz8018p4xiyzl1fxsvf',1,'Admin',1672319399,'192.168.64.1',2,15,35083,NULL,'Cloudflare: Unencrypted requests','clc93sisl00004xiyevwovlv0',''),('clc93siz8018q4xiyj38kr3xd',1,'Admin',1672319399,'192.168.64.1',2,15,35082,NULL,'Cloudflare: 2xx responses ratio','clc93sisl00004xiyevwovlv0',''),('clc93siz8018r4xiydr3rp0zk',1,'Admin',1672319399,'192.168.64.1',2,15,35081,NULL,'Cloudflare: Uncached requests','clc93sisl00004xiyevwovlv0',''),('clc93siz8018s4xiyzsev6p7i',1,'Admin',1672319399,'192.168.64.1',2,15,35080,NULL,'Cloudflare: Total threats','clc93sisl00004xiyevwovlv0',''),('clc93siz8018t4xiyp0ygya9u',1,'Admin',1672319399,'192.168.64.1',2,15,35102,NULL,'Cloudflare: Unique visitors','clc93sisl00004xiyevwovlv0',''),('clc93siz8018u4xiyu28xla1l',1,'Admin',1672319399,'192.168.64.1',2,15,35406,NULL,'F5 BIG-IP: Contact','clc93sisl00004xiyevwovlv0',''),('clc93siz8018v4xiyyplldxu6',1,'Admin',1672319399,'192.168.64.1',2,15,36823,NULL,'F5 BIG-IP: Failover status','clc93sisl00004xiyevwovlv0',''),('clc93siz8018w4xiypf9njj5t',1,'Admin',1672319399,'192.168.64.1',2,15,35415,NULL,'F5 BIG-IP: Location','clc93sisl00004xiyevwovlv0',''),('clc93siz8018x4xiympnkinvz',1,'Admin',1672319399,'192.168.64.1',2,15,35422,NULL,'F5 BIG-IP: Hardware model name','clc93sisl00004xiyevwovlv0',''),('clc93siz8018y4xiyj00qsvmx',1,'Admin',1672319399,'192.168.64.1',2,15,35421,NULL,'F5 BIG-IP: Host name','clc93sisl00004xiyevwovlv0',''),('clc93siz8018z4xiygotjw54h',1,'Admin',1672319399,'192.168.64.1',2,15,35420,NULL,'F5 BIG-IP: Product build','clc93sisl00004xiyevwovlv0',''),('clc93siz801904xiy2lokgsfu',1,'Admin',1672319399,'192.168.64.1',2,15,35419,NULL,'F5 BIG-IP: Product build date','clc93sisl00004xiyevwovlv0',''),('clc93siz801914xiyk697ong6',1,'Admin',1672319399,'192.168.64.1',2,15,35418,NULL,'F5 BIG-IP: Product edition','clc93sisl00004xiyevwovlv0',''),('clc93siz801924xiybb2pw4xu',1,'Admin',1672319399,'192.168.64.1',2,15,35417,NULL,'F5 BIG-IP: Product name','clc93sisl00004xiyevwovlv0',''),('clc93siz801934xiy3n0a572p',1,'Admin',1672319399,'192.168.64.1',2,15,35416,NULL,'F5 BIG-IP: Product version','clc93sisl00004xiyevwovlv0',''),('clc93siz801944xiy72hb2e8n',1,'Admin',1672319399,'192.168.64.1',2,15,35414,NULL,'F5 BIG-IP: Chassis serial number','clc93sisl00004xiyevwovlv0',''),('clc93siz801954xiyjtpiif3o',1,'Admin',1672319399,'192.168.64.1',2,15,36822,NULL,'F5 BIG-IP: Sync Status','clc93sisl00004xiyevwovlv0',''),('clc93siz801964xiykgcgr9xo',1,'Admin',1672319399,'192.168.64.1',2,15,35407,NULL,'F5 BIG-IP: TCP connections, CLOSE-WAIT/LAST-ACK','clc93sisl00004xiyevwovlv0',''),('clc93siz801974xiyym1jlath',1,'Admin',1672319399,'192.168.64.1',2,15,35413,NULL,'F5 BIG-IP: TCP connections, FIN-WAIT-1/CLOSING','clc93sisl00004xiyevwovlv0',''),('clc93siz801984xiy4svy5u4u',1,'Admin',1672319399,'192.168.64.1',2,15,35412,NULL,'F5 BIG-IP: TCP connections, FIN-WAIT-2','clc93sisl00004xiyevwovlv0',''),('clc93siz801994xiyzlckmog9',1,'Admin',1672319399,'192.168.64.1',2,15,35411,NULL,'F5 BIG-IP: Open TCP connections','clc93sisl00004xiyevwovlv0',''),('clc93siz8019a4xiymv0x9pz4',1,'Admin',1672319399,'192.168.64.1',2,15,35410,NULL,'F5 BIG-IP: TCP connections, TIME-WAIT','clc93sisl00004xiyevwovlv0',''),('clc93siz8019b4xiyvg7njx4s',1,'Admin',1672319399,'192.168.64.1',2,15,35409,NULL,'F5 BIG-IP: Open UDP connections','clc93sisl00004xiyevwovlv0',''),('clc93siz8019c4xiy9ikbpxca',1,'Admin',1672319399,'192.168.64.1',2,15,35408,NULL,'F5 BIG-IP: Uptime','clc93sisl00004xiyevwovlv0',''),('clc93siz8019d4xiyk872rnyt',1,'Admin',1672319399,'192.168.64.1',2,15,35423,NULL,'F5 BIG-IP: SNMP agent availability','clc93sisl00004xiyevwovlv0',''),('clc93siz8019e4xiyya0jhc1o',1,'Admin',1672319399,'192.168.64.1',2,15,36160,NULL,'System contact details','clc93sisl00004xiyevwovlv0',''),('clc93siz8019f4xiyfocr7qgu',1,'Admin',1672319399,'192.168.64.1',2,15,36161,NULL,'System description','clc93sisl00004xiyevwovlv0',''),('clc93siz8019g4xiy3n3nsm5z',1,'Admin',1672319399,'192.168.64.1',2,15,43889,NULL,'Uptime (hardware)','clc93sisl00004xiyevwovlv0',''),('clc93siz8019h4xiy4qlzxohs',1,'Admin',1672319399,'192.168.64.1',2,15,36162,NULL,'System location','clc93sisl00004xiyevwovlv0',''),('clc93siz8019i4xiyiwfmmj18',1,'Admin',1672319399,'192.168.64.1',2,15,36163,NULL,'System name','clc93sisl00004xiyevwovlv0',''),('clc93siz8019j4xiy10vzue71',1,'Admin',1672319399,'192.168.64.1',2,15,36165,NULL,'Uptime (network)','clc93sisl00004xiyevwovlv0',''),('clc93siz8019k4xiykr260ts5',1,'Admin',1672319399,'192.168.64.1',2,15,36164,NULL,'System object ID','clc93sisl00004xiyevwovlv0',''),('clc93siz8019l4xiylpao00b0',1,'Admin',1672319399,'192.168.64.1',2,15,36166,NULL,'SNMP traps (fallback)','clc93sisl00004xiyevwovlv0',''),('clc93siz8019m4xiysnzqc7in',1,'Admin',1672319399,'192.168.64.1',2,15,36167,NULL,'SNMP agent availability','clc93sisl00004xiyevwovlv0',''),('clc93siz8019n4xiyfsjwf363',1,'Admin',1672319399,'192.168.64.1',2,15,36215,NULL,'Dell R720: Firmware version','clc93sisl00004xiyevwovlv0',''),('clc93siz8019o4xiy8qhwu33w',1,'Admin',1672319399,'192.168.64.1',2,15,36216,NULL,'Dell R720: Hardware model name','clc93sisl00004xiyevwovlv0',''),('clc93siz8019p4xiyil9q2z3z',1,'Admin',1672319399,'192.168.64.1',2,15,36217,NULL,'Dell R720: Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93siz8019q4xiyfqhu89xt',1,'Admin',1672319399,'192.168.64.1',2,15,36218,NULL,'Dell R720: Overall system health status','clc93sisl00004xiyevwovlv0',''),('clc93siz8019r4xiyosu2wrb4',1,'Admin',1672319399,'192.168.64.1',2,15,36213,NULL,'Dell R720: Get system','clc93sisl00004xiyevwovlv0',''),('clc93siz8019s4xiytdshniy4',1,'Admin',1672319399,'192.168.64.1',2,15,36214,NULL,'Dell R720: Redfish API','clc93sisl00004xiyevwovlv0',''),('clc93siz8019t4xiy65yfuez0',1,'Admin',1672319399,'192.168.64.1',2,15,36255,NULL,'Dell R720: System contact details','clc93sisl00004xiyevwovlv0',''),('clc93siz8019u4xiydnkebgr0',1,'Admin',1672319399,'192.168.64.1',2,15,36256,NULL,'Dell R720: System description','clc93sisl00004xiyevwovlv0',''),('clc93siz8019v4xiy2rhaoq9i',1,'Admin',1672319399,'192.168.64.1',2,15,36257,NULL,'Dell R720: Firmware version','clc93sisl00004xiyevwovlv0',''),('clc93siz8019w4xiyz2gljjoh',1,'Admin',1672319399,'192.168.64.1',2,15,36258,NULL,'Dell R720: Hardware model name','clc93sisl00004xiyevwovlv0',''),('clc93siz8019x4xiy4lvfhro2',1,'Admin',1672319399,'192.168.64.1',2,15,36259,NULL,'Dell R720: Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93siz8019y4xiy1srh2gxy',1,'Admin',1672319399,'192.168.64.1',2,15,43891,NULL,'Dell R720: Uptime (hardware)','clc93sisl00004xiyevwovlv0',''),('clc93siz8019z4xiyrlhmeowx',1,'Admin',1672319399,'192.168.64.1',2,15,36260,NULL,'Dell R720: System location','clc93sisl00004xiyevwovlv0',''),('clc93siz801a04xiy9s206qsp',1,'Admin',1672319399,'192.168.64.1',2,15,36261,NULL,'Dell R720: System name','clc93sisl00004xiyevwovlv0',''),('clc93siz801a14xiy5copowi0',1,'Admin',1672319399,'192.168.64.1',2,15,36265,NULL,'Dell R720: Uptime (network)','clc93sisl00004xiyevwovlv0',''),('clc93siz801a24xiy65rj4a8s',1,'Admin',1672319399,'192.168.64.1',2,15,36262,NULL,'Dell R720: System object ID','clc93sisl00004xiyevwovlv0',''),('clc93siz801a34xiytmbc9kad',1,'Admin',1672319399,'192.168.64.1',2,15,36263,NULL,'Dell R720: Overall system health status','clc93sisl00004xiyevwovlv0',''),('clc93siz801a44xiya3fm9m5i',1,'Admin',1672319399,'192.168.64.1',2,15,36264,NULL,'Dell R720: Operating system','clc93sisl00004xiyevwovlv0',''),('clc93siz801a54xiyax9ur5gl',1,'Admin',1672319399,'192.168.64.1',2,15,36266,NULL,'Dell R720: SNMP traps (fallback)','clc93sisl00004xiyevwovlv0',''),('clc93siz801a64xiya3ak82qk',1,'Admin',1672319399,'192.168.64.1',2,15,36267,NULL,'Dell R720: SNMP agent availability','clc93sisl00004xiyevwovlv0',''),('clc93siz801a74xiyv9y70oco',1,'Admin',1672319399,'192.168.64.1',2,15,36297,NULL,'Dell R740: Firmware version','clc93sisl00004xiyevwovlv0',''),('clc93siz801a84xiylase4akv',1,'Admin',1672319399,'192.168.64.1',2,15,36298,NULL,'Dell R740: Hardware model name','clc93sisl00004xiyevwovlv0',''),('clc93siz801a94xiyfxbylipu',1,'Admin',1672319399,'192.168.64.1',2,15,36299,NULL,'Dell R740: Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93siz801aa4xiyenveg32z',1,'Admin',1672319399,'192.168.64.1',2,15,36300,NULL,'Dell R740: Overall system health status','clc93sisl00004xiyevwovlv0',''),('clc93siz801ab4xiyn7y3u4k1',1,'Admin',1672319399,'192.168.64.1',2,15,36295,NULL,'Dell R740: Get system','clc93sisl00004xiyevwovlv0',''),('clc93siz801ac4xiy93lwwkfj',1,'Admin',1672319399,'192.168.64.1',2,15,36296,NULL,'Dell R740: Redfish API','clc93sisl00004xiyevwovlv0',''),('clc93siz801ad4xiyentxphz5',1,'Admin',1672319399,'192.168.64.1',2,15,36337,NULL,'Dell R740: System contact details','clc93sisl00004xiyevwovlv0',''),('clc93siz801ae4xiyoas0eteg',1,'Admin',1672319399,'192.168.64.1',2,15,36338,NULL,'Dell R740: System description','clc93sisl00004xiyevwovlv0',''),('clc93siz801af4xiyme0xvsn7',1,'Admin',1672319399,'192.168.64.1',2,15,36339,NULL,'Dell R740: Firmware version','clc93sisl00004xiyevwovlv0',''),('clc93siz801ag4xiy0s1zbdo3',1,'Admin',1672319399,'192.168.64.1',2,15,36340,NULL,'Dell R740: Hardware model name','clc93sisl00004xiyevwovlv0',''),('clc93siz801ah4xiyeiyi5ctq',1,'Admin',1672319399,'192.168.64.1',2,15,36341,NULL,'Dell R740: Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93siz801ai4xiy0gf9hvmj',1,'Admin',1672319399,'192.168.64.1',2,15,43892,NULL,'Dell R740: Uptime (hardware)','clc93sisl00004xiyevwovlv0',''),('clc93siz801aj4xiy4abqcktq',1,'Admin',1672319399,'192.168.64.1',2,15,36342,NULL,'Dell R740: System location','clc93sisl00004xiyevwovlv0',''),('clc93siz901ak4xiypk34d0os',1,'Admin',1672319399,'192.168.64.1',2,15,36343,NULL,'Dell R740: System name','clc93sisl00004xiyevwovlv0',''),('clc93siz901al4xiyz3jzio32',1,'Admin',1672319399,'192.168.64.1',2,15,36347,NULL,'Dell R740: Uptime (network)','clc93sisl00004xiyevwovlv0',''),('clc93siz901am4xiysyq812ud',1,'Admin',1672319399,'192.168.64.1',2,15,36344,NULL,'Dell R740: System object ID','clc93sisl00004xiyevwovlv0',''),('clc93siz901an4xiyn122c214',1,'Admin',1672319399,'192.168.64.1',2,15,36345,NULL,'Dell R740: Overall system health status','clc93sisl00004xiyevwovlv0',''),('clc93siz901ao4xiy1ph9ge4z',1,'Admin',1672319399,'192.168.64.1',2,15,36346,NULL,'Dell R740: Operating system','clc93sisl00004xiyevwovlv0',''),('clc93siz901ap4xiyuw1x8ml1',1,'Admin',1672319399,'192.168.64.1',2,15,36348,NULL,'Dell R740: SNMP traps (fallback)','clc93sisl00004xiyevwovlv0',''),('clc93siz901aq4xiy5x8ybotw',1,'Admin',1672319399,'192.168.64.1',2,15,36349,NULL,'Dell R740: SNMP agent availability','clc93sisl00004xiyevwovlv0',''),('clc93siz901ar4xiyt88dg7nv',1,'Admin',1672319399,'192.168.64.1',2,15,36379,NULL,'Dell R820: Firmware version','clc93sisl00004xiyevwovlv0',''),('clc93siz901as4xiy43sx455g',1,'Admin',1672319399,'192.168.64.1',2,15,36380,NULL,'Dell R820: Hardware model name','clc93sisl00004xiyevwovlv0',''),('clc93siz901at4xiykzj6gwjt',1,'Admin',1672319399,'192.168.64.1',2,15,36381,NULL,'Dell R820: Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93siz901au4xiy3boqfli9',1,'Admin',1672319399,'192.168.64.1',2,15,36382,NULL,'Dell R820: Overall system health status','clc93sisl00004xiyevwovlv0',''),('clc93siz901av4xiymtpeoe6f',1,'Admin',1672319399,'192.168.64.1',2,15,36377,NULL,'Dell R820: Get system','clc93sisl00004xiyevwovlv0',''),('clc93siz901aw4xiy1isua07q',1,'Admin',1672319399,'192.168.64.1',2,15,36378,NULL,'Dell R820: Redfish API','clc93sisl00004xiyevwovlv0',''),('clc93siz901ax4xiymm9l6c2n',1,'Admin',1672319399,'192.168.64.1',2,15,36419,NULL,'Dell R820: System contact details','clc93sisl00004xiyevwovlv0',''),('clc93siz901ay4xiymfvqy3b8',1,'Admin',1672319399,'192.168.64.1',2,15,36420,NULL,'Dell R820: System description','clc93sisl00004xiyevwovlv0',''),('clc93siz901az4xiytlows5sq',1,'Admin',1672319399,'192.168.64.1',2,15,36421,NULL,'Dell R820: Firmware version','clc93sisl00004xiyevwovlv0',''),('clc93siz901b04xiyccynuw3z',1,'Admin',1672319399,'192.168.64.1',2,15,36422,NULL,'Dell R820: Hardware model name','clc93sisl00004xiyevwovlv0',''),('clc93siz901b14xiy0p587cuq',1,'Admin',1672319399,'192.168.64.1',2,15,36423,NULL,'Dell R820: Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93siz901b24xiyd837pasi',1,'Admin',1672319399,'192.168.64.1',2,15,43893,NULL,'Dell R820: Uptime (hardware)','clc93sisl00004xiyevwovlv0',''),('clc93siz901b34xiymz1bh0hp',1,'Admin',1672319399,'192.168.64.1',2,15,36424,NULL,'Dell R820: System location','clc93sisl00004xiyevwovlv0',''),('clc93siz901b44xiy9205onug',1,'Admin',1672319399,'192.168.64.1',2,15,36425,NULL,'Dell R820: System name','clc93sisl00004xiyevwovlv0',''),('clc93siz901b54xiybva6znmu',1,'Admin',1672319399,'192.168.64.1',2,15,36429,NULL,'Dell R820: Uptime (network)','clc93sisl00004xiyevwovlv0',''),('clc93siz901b64xiyb3ijxsys',1,'Admin',1672319399,'192.168.64.1',2,15,36426,NULL,'Dell R820: System object ID','clc93sisl00004xiyevwovlv0',''),('clc93siz901b74xiy21jbr4x4',1,'Admin',1672319399,'192.168.64.1',2,15,36427,NULL,'Dell R820: Overall system health status','clc93sisl00004xiyevwovlv0',''),('clc93siz901b84xiyahsdalan',1,'Admin',1672319399,'192.168.64.1',2,15,36428,NULL,'Dell R820: Operating system','clc93sisl00004xiyevwovlv0',''),('clc93siz901b94xiy00mz6awv',1,'Admin',1672319399,'192.168.64.1',2,15,36430,NULL,'Dell R820: SNMP traps (fallback)','clc93sisl00004xiyevwovlv0',''),('clc93siz901ba4xiyj41hhsgm',1,'Admin',1672319399,'192.168.64.1',2,15,36431,NULL,'Dell R820: SNMP agent availability','clc93sisl00004xiyevwovlv0',''),('clc93siz901bb4xiyemzlud17',1,'Admin',1672319399,'192.168.64.1',2,15,36461,NULL,'Dell R840: Firmware version','clc93sisl00004xiyevwovlv0',''),('clc93siz901bc4xiyvza7hbpl',1,'Admin',1672319399,'192.168.64.1',2,15,36462,NULL,'Dell R840: Hardware model name','clc93sisl00004xiyevwovlv0',''),('clc93siz901bd4xiylwld8rg0',1,'Admin',1672319399,'192.168.64.1',2,15,36463,NULL,'Dell R840: Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93siz901be4xiy9s8714h4',1,'Admin',1672319399,'192.168.64.1',2,15,36464,NULL,'Dell R840: Overall system health status','clc93sisl00004xiyevwovlv0',''),('clc93siz901bf4xiyh3jbm95k',1,'Admin',1672319399,'192.168.64.1',2,15,36459,NULL,'Dell R840: Get system','clc93sisl00004xiyevwovlv0',''),('clc93siz901bg4xiyx85ixd74',1,'Admin',1672319399,'192.168.64.1',2,15,36460,NULL,'Dell R840: Redfish API','clc93sisl00004xiyevwovlv0',''),('clc93siz901bh4xiyro1iukir',1,'Admin',1672319399,'192.168.64.1',2,15,36501,NULL,'Dell R840: System contact details','clc93sisl00004xiyevwovlv0',''),('clc93siz901bi4xiybca1ud8t',1,'Admin',1672319399,'192.168.64.1',2,15,36502,NULL,'Dell R840: System description','clc93sisl00004xiyevwovlv0',''),('clc93siz901bj4xiyb4rkfejl',1,'Admin',1672319399,'192.168.64.1',2,15,36503,NULL,'Dell R840: Firmware version','clc93sisl00004xiyevwovlv0',''),('clc93siz901bk4xiykuhxpk9t',1,'Admin',1672319399,'192.168.64.1',2,15,36504,NULL,'Dell R840: Hardware model name','clc93sisl00004xiyevwovlv0',''),('clc93siz901bl4xiyyssgbga9',1,'Admin',1672319399,'192.168.64.1',2,15,36505,NULL,'Dell R840: Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93siz901bm4xiyl1ror3tm',1,'Admin',1672319399,'192.168.64.1',2,15,43894,NULL,'Dell R840: Uptime (hardware)','clc93sisl00004xiyevwovlv0',''),('clc93siz901bn4xiy0dcmff1s',1,'Admin',1672319399,'192.168.64.1',2,15,36506,NULL,'Dell R840: System location','clc93sisl00004xiyevwovlv0',''),('clc93siz901bo4xiyxmdivhpo',1,'Admin',1672319399,'192.168.64.1',2,15,36507,NULL,'Dell R840: System name','clc93sisl00004xiyevwovlv0',''),('clc93siz901bp4xiy08he7vqp',1,'Admin',1672319399,'192.168.64.1',2,15,36511,NULL,'Dell R840: Uptime (network)','clc93sisl00004xiyevwovlv0',''),('clc93siz901bq4xiylm4gkhpa',1,'Admin',1672319399,'192.168.64.1',2,15,36508,NULL,'Dell R840: System object ID','clc93sisl00004xiyevwovlv0',''),('clc93siz901br4xiydlxd5vq8',1,'Admin',1672319399,'192.168.64.1',2,15,36509,NULL,'Dell R840: Overall system health status','clc93sisl00004xiyevwovlv0',''),('clc93siz901bs4xiyqe2xbcqn',1,'Admin',1672319399,'192.168.64.1',2,15,36510,NULL,'Dell R840: Operating system','clc93sisl00004xiyevwovlv0',''),('clc93siz901bt4xiyoczad59w',1,'Admin',1672319399,'192.168.64.1',2,15,36512,NULL,'Dell R840: SNMP traps (fallback)','clc93sisl00004xiyevwovlv0',''),('clc93siz901bu4xiyw2mwsg8o',1,'Admin',1672319399,'192.168.64.1',2,15,36513,NULL,'Dell R840: SNMP agent availability','clc93sisl00004xiyevwovlv0',''),('clc93siz901bv4xiysofx77s9',1,'Admin',1672319399,'192.168.64.1',2,15,42959,NULL,'CockroachDB: CA certificate expiration date','clc93sisl00004xiyevwovlv0',''),('clc93siz901bw4xiyed99ufp4',1,'Admin',1672319399,'192.168.64.1',2,15,42973,NULL,'CockroachDB: Node certificate expiration date','clc93sisl00004xiyevwovlv0',''),('clc93siz901bx4xiyagxf8qko',1,'Admin',1672319399,'192.168.64.1',2,15,42962,NULL,'CockroachDB: Clock offset','clc93sisl00004xiyevwovlv0',''),('clc93siz901by4xiylpez8sqf',1,'Admin',1672319399,'192.168.64.1',2,15,42963,NULL,'CockroachDB: CPU: System time','clc93sisl00004xiyevwovlv0',''),('clc93siz901bz4xiyhn5gpp61',1,'Admin',1672319399,'192.168.64.1',2,15,42964,NULL,'CockroachDB: CPU: User time','clc93sisl00004xiyevwovlv0',''),('clc93siz901c04xiynbysjggd',1,'Admin',1672319399,'192.168.64.1',2,15,42965,NULL,'CockroachDB: CPU: Utilization','clc93sisl00004xiyevwovlv0',''),('clc93siz901c14xiyb5v84nef',1,'Admin',1672319399,'192.168.64.1',2,15,42966,NULL,'CockroachDB: File descriptors: Limit','clc93sisl00004xiyevwovlv0',''),('clc93siz901c24xiyar9chns4',1,'Admin',1672319399,'192.168.64.1',2,15,42967,NULL,'CockroachDB: File descriptors: Open','clc93sisl00004xiyevwovlv0',''),('clc93siz901c34xiy54ruu016',1,'Admin',1672319399,'192.168.64.1',2,15,42968,NULL,'CockroachDB: Disk: IOPS in progress, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901c44xiy6zauoh5v',1,'Admin',1672319399,'192.168.64.1',2,15,42969,NULL,'CockroachDB: Disk: Read IOPS, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901c54xiyvwmt4l8f',1,'Admin',1672319399,'192.168.64.1',2,15,42970,NULL,'CockroachDB: Disk: Write IOPS, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901c64xiy5zczgq2m',1,'Admin',1672319399,'192.168.64.1',2,15,42971,NULL,'CockroachDB: Disk: Reads, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901c74xiyijg2m05o',1,'Admin',1672319399,'192.168.64.1',2,15,42961,NULL,'CockroachDB: Disk: Writes, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901c84xiyzdlcbtzs',1,'Admin',1672319399,'192.168.64.1',2,15,42972,NULL,'CockroachDB: GC: Pause time','clc93sisl00004xiyevwovlv0',''),('clc93siz901c94xiypwlnrf1v',1,'Admin',1672319399,'192.168.64.1',2,15,42974,NULL,'CockroachDB: GC: Runs, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901ca4xiyey0mirhi',1,'Admin',1672319399,'192.168.64.1',2,15,42931,NULL,'CockroachDB: Get health','clc93sisl00004xiyevwovlv0',''),('clc93siz901cb4xiy8isrhm0n',1,'Admin',1672319399,'192.168.64.1',2,15,42933,NULL,'CockroachDB: Get metrics','clc93sisl00004xiyevwovlv0',''),('clc93siz901cc4xiyn4k7iim7',1,'Admin',1672319399,'192.168.64.1',2,15,42932,NULL,'CockroachDB: Get readiness','clc93sisl00004xiyevwovlv0',''),('clc93siz901cd4xiyh008k4cd',1,'Admin',1672319399,'192.168.64.1',2,15,42975,NULL,'CockroachDB: Go: Goroutines count','clc93sisl00004xiyevwovlv0',''),('clc93siz901ce4xiyq7l0gjvj',1,'Admin',1672319399,'192.168.64.1',2,15,42976,NULL,'CockroachDB: Liveness heartbeats, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901cf4xiy2ys3g6im',1,'Admin',1672319399,'192.168.64.1',2,15,42977,NULL,'CockroachDB: KV transactions: Aborted, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901cg4xiya9llrwvj',1,'Admin',1672319399,'192.168.64.1',2,15,42978,NULL,'CockroachDB: KV transactions: Committed, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901ch4xiyn3rwty23',1,'Admin',1672319399,'192.168.64.1',2,15,42979,NULL,'CockroachDB: Live nodes count','clc93sisl00004xiyevwovlv0',''),('clc93siz901ci4xiypz77ybvz',1,'Admin',1672319399,'192.168.64.1',2,15,42980,NULL,'CockroachDB: Memory: Allocated by Cgo','clc93sisl00004xiyevwovlv0',''),('clc93siz901cj4xiyk625woel',1,'Admin',1672319399,'192.168.64.1',2,15,42981,NULL,'CockroachDB: Memory: Managed by Cgo','clc93sisl00004xiyevwovlv0',''),('clc93siz901ck4xiyer1fzge9',1,'Admin',1672319399,'192.168.64.1',2,15,42982,NULL,'CockroachDB: Memory: Allocated by Go','clc93sisl00004xiyevwovlv0',''),('clc93siz901cl4xiy8gdxth7b',1,'Admin',1672319399,'192.168.64.1',2,15,42983,NULL,'CockroachDB: Memory: Managed by Go','clc93sisl00004xiyevwovlv0',''),('clc93siz901cm4xiygjf44c95',1,'Admin',1672319399,'192.168.64.1',2,15,42984,NULL,'CockroachDB: Memory: Allocated by SQL','clc93sisl00004xiyevwovlv0',''),('clc93siz901cn4xiykxhcs489',1,'Admin',1672319399,'192.168.64.1',2,15,42985,NULL,'CockroachDB: Memory: Total usage','clc93sisl00004xiyevwovlv0',''),('clc93siz901co4xiyg0ko2d8k',1,'Admin',1672319399,'192.168.64.1',2,15,42960,NULL,'CockroachDB: Network: Bytes received, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901cp4xiy4a760ggz',1,'Admin',1672319399,'192.168.64.1',2,15,42945,NULL,'CockroachDB: Network: Bytes sent, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901cq4xiystyvs9ax',1,'Admin',1672319399,'192.168.64.1',2,15,42958,NULL,'CockroachDB: Slow requests: DistSender RPCs','clc93sisl00004xiyevwovlv0',''),('clc93siz901cr4xiyl2sbced5',1,'Admin',1672319399,'192.168.64.1',2,15,42934,NULL,'CockroachDB: SQL: Bytes received, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901cs4xiyscbi0yma',1,'Admin',1672319399,'192.168.64.1',2,15,42935,NULL,'CockroachDB: SQL: Bytes sent, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901ct4xiylnm573pb',1,'Admin',1672319399,'192.168.64.1',2,15,42936,NULL,'CockroachDB: SQL: Schema changes, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901cu4xiy3wdc00dd',1,'Admin',1672319399,'192.168.64.1',2,15,42937,NULL,'CockroachDB: SQL sessions: Open','clc93sisl00004xiyevwovlv0',''),('clc93siz901cv4xiy6en8wj9l',1,'Admin',1672319399,'192.168.64.1',2,15,42938,NULL,'CockroachDB: SQL statements: Active','clc93sisl00004xiyevwovlv0',''),('clc93siz901cw4xiyrgk2dl2e',1,'Admin',1672319399,'192.168.64.1',2,15,42939,NULL,'CockroachDB: SQL statements: Contention, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901cx4xiyypi751h7',1,'Admin',1672319399,'192.168.64.1',2,15,42940,NULL,'CockroachDB: SQL statements: DELETE, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901cy4xiyr4l2ee2i',1,'Admin',1672319399,'192.168.64.1',2,15,42941,NULL,'CockroachDB: SQL statements: Denials, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901cz4xiytaik9t84',1,'Admin',1672319399,'192.168.64.1',2,15,42942,NULL,'CockroachDB: SQL statements: Errors, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901d04xiy2h1kvv9z',1,'Admin',1672319399,'192.168.64.1',2,15,42943,NULL,'CockroachDB: SQL statements: Executed, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901d14xiys84id69e',1,'Admin',1672319399,'192.168.64.1',2,15,42944,NULL,'CockroachDB: SQL statements: Active flows distributed, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901d24xiyjhcuqso2',1,'Admin',1672319399,'192.168.64.1',2,15,42946,NULL,'CockroachDB: SQL statements: INSERT, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901d34xiyju5u9cjq',1,'Admin',1672319399,'192.168.64.1',2,15,42947,NULL,'CockroachDB: SQL statements: SELECT, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901d44xiyhhtlbpaf',1,'Admin',1672319399,'192.168.64.1',2,15,42948,NULL,'CockroachDB: SQL statements: UPDATE, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901d54xiysajekq6e',1,'Admin',1672319399,'192.168.64.1',2,15,42949,NULL,'CockroachDB: SQL transactions: Aborted, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901d64xiym0yc31jm',1,'Admin',1672319399,'192.168.64.1',2,15,42950,NULL,'CockroachDB: SQL transactions: Committed, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901d74xiyhdojtjuy',1,'Admin',1672319399,'192.168.64.1',2,15,42951,NULL,'CockroachDB: SQL transactions: Initiated, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901d84xiy1ny9ncin',1,'Admin',1672319399,'192.168.64.1',2,15,42952,NULL,'CockroachDB: SQL transactions: Open','clc93sisl00004xiyevwovlv0',''),('clc93siz901d94xiy7b560kxr',1,'Admin',1672319399,'192.168.64.1',2,15,42953,NULL,'CockroachDB: SQL transactions: Rolled back, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901da4xiyhx89gi0q',1,'Admin',1672319399,'192.168.64.1',2,15,42954,NULL,'CockroachDB: Time series: Sample errors, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901db4xiyfbwb14o0',1,'Admin',1672319399,'192.168.64.1',2,15,42955,NULL,'CockroachDB: Time series: Samples written, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901dc4xiyg9spmk3l',1,'Admin',1672319399,'192.168.64.1',2,15,42956,NULL,'CockroachDB: Uptime','clc93sisl00004xiyevwovlv0',''),('clc93siz901dd4xiy190korxv',1,'Admin',1672319399,'192.168.64.1',2,15,42957,NULL,'CockroachDB: Version','clc93sisl00004xiyevwovlv0',''),('clc93siz901de4xiysyxgy90o',1,'Admin',1672319399,'192.168.64.1',2,15,42930,NULL,'CockroachDB: Service ping','clc93sisl00004xiyevwovlv0',''),('clc93siz901df4xiy4bhwn51l',1,'Admin',1672319399,'192.168.64.1',2,15,43019,NULL,'Envoy Proxy: Clusters, active','clc93sisl00004xiyevwovlv0',''),('clc93siz901dg4xiyymt7272h',1,'Admin',1672319399,'192.168.64.1',2,15,43034,NULL,'Envoy Proxy: Clusters, added rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901dh4xiy4128gvyz',1,'Admin',1672319399,'192.168.64.1',2,15,43045,NULL,'Envoy Proxy: Clusters, modified rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901di4xiyag13j4xy',1,'Admin',1672319399,'192.168.64.1',2,15,43044,NULL,'Envoy Proxy: Clusters, removed rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901dj4xiyaoyd15ck',1,'Admin',1672319399,'192.168.64.1',2,15,43043,NULL,'Envoy Proxy: Clusters, updates rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901dk4xiyabil56j9',1,'Admin',1672319399,'192.168.64.1',2,15,43042,NULL,'Envoy Proxy: Clusters, warming','clc93sisl00004xiyevwovlv0',''),('clc93siz901dl4xiyb3x5r2tj',1,'Admin',1672319399,'192.168.64.1',2,15,43041,NULL,'Envoy Proxy: Filesystem, flushed by timer rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901dm4xiytospntxr',1,'Admin',1672319399,'192.168.64.1',2,15,43040,NULL,'Envoy Proxy: Filesystem, reopen failed rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901dn4xiyp9aqyq2j',1,'Admin',1672319399,'192.168.64.1',2,15,43039,NULL,'Envoy Proxy: Filesystem, write completed rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901do4xiy5h9na95k',1,'Admin',1672319399,'192.168.64.1',2,15,43038,NULL,'Envoy Proxy: Filesystem, write failed rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901dp4xiy6r910egq',1,'Admin',1672319399,'192.168.64.1',2,15,43018,NULL,'Envoy Proxy: Get node metrics','clc93sisl00004xiyevwovlv0',''),('clc93siz901dq4xiyddei19xx',1,'Admin',1672319399,'192.168.64.1',2,15,43037,NULL,'Envoy Proxy: Listeners, added','clc93sisl00004xiyevwovlv0',''),('clc93siz901dr4xiyz1lbht83',1,'Admin',1672319399,'192.168.64.1',2,15,43036,NULL,'Envoy Proxy: Listeners, create failure','clc93sisl00004xiyevwovlv0',''),('clc93siz901ds4xiykcoog95h',1,'Admin',1672319399,'192.168.64.1',2,15,43035,NULL,'Envoy Proxy: Listeners, create success','clc93sisl00004xiyevwovlv0',''),('clc93siz901dt4xiyrif1xjwz',1,'Admin',1672319399,'192.168.64.1',2,15,43032,NULL,'Envoy Proxy: Listeners, stopped','clc93sisl00004xiyevwovlv0',''),('clc93siz901du4xiyzv6qnouy',1,'Admin',1672319399,'192.168.64.1',2,15,43033,NULL,'Envoy Proxy: Listeners, active','clc93sisl00004xiyevwovlv0',''),('clc93siz901dv4xiyrvwt70ph',1,'Admin',1672319399,'192.168.64.1',2,15,43020,NULL,'Envoy Proxy: Listeners, draining','clc93sisl00004xiyevwovlv0',''),('clc93siz901dw4xiy83saba5j',1,'Admin',1672319399,'192.168.64.1',2,15,43031,NULL,'Envoy Proxy: Listener, warming','clc93sisl00004xiyevwovlv0',''),('clc93siz901dx4xiyt4etycju',1,'Admin',1672319399,'192.168.64.1',2,15,43030,NULL,'Envoy Proxy: Listener manager, initialized','clc93sisl00004xiyevwovlv0',''),('clc93siz901dy4xiy9u7ojlum',1,'Admin',1672319399,'192.168.64.1',2,15,43029,NULL,'Envoy Proxy: Server concurrency','clc93sisl00004xiyevwovlv0',''),('clc93siz901dz4xiyogw5n03e',1,'Admin',1672319399,'192.168.64.1',2,15,43028,NULL,'Envoy Proxy: Certificate expiration, day before','clc93sisl00004xiyevwovlv0',''),('clc93siz901e04xiyirbvycwx',1,'Admin',1672319399,'192.168.64.1',2,15,43027,NULL,'Envoy Proxy: Server live','clc93sisl00004xiyevwovlv0',''),('clc93siz901e14xiyn9dpo5va',1,'Admin',1672319399,'192.168.64.1',2,15,43026,NULL,'Envoy Proxy: Memory allocated','clc93sisl00004xiyevwovlv0',''),('clc93siz901e24xiylk665eki',1,'Admin',1672319399,'192.168.64.1',2,15,43025,NULL,'Envoy Proxy: Memory heap size','clc93sisl00004xiyevwovlv0',''),('clc93siz901e34xiywsdop3qp',1,'Admin',1672319399,'192.168.64.1',2,15,43024,NULL,'Envoy Proxy: Memory physical size','clc93sisl00004xiyevwovlv0',''),('clc93siz901e44xiyyx9atrfx',1,'Admin',1672319399,'192.168.64.1',2,15,43023,NULL,'Envoy Proxy: Connections, parent','clc93sisl00004xiyevwovlv0',''),('clc93siz901e54xiy30ri7a9g',1,'Admin',1672319399,'192.168.64.1',2,15,43022,NULL,'Envoy Proxy: Server state','clc93sisl00004xiyevwovlv0',''),('clc93siz901e64xiyiadlb3mp',1,'Admin',1672319399,'192.168.64.1',2,15,43021,NULL,'Envoy Proxy: Connections, total','clc93sisl00004xiyevwovlv0',''),('clc93siz901e74xiysgnxvt82',1,'Admin',1672319399,'192.168.64.1',2,15,43046,NULL,'Envoy Proxy: Uptime','clc93sisl00004xiyevwovlv0',''),('clc93siz901e84xiyuxpx3f99',1,'Admin',1672319399,'192.168.64.1',2,15,43095,NULL,'Consul: ACL: resolves, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901e94xiyghklmddv',1,'Admin',1672319399,'192.168.64.1',2,15,43121,NULL,'Consul: Catalog: deregister, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901ea4xiy3yqjyzle',1,'Admin',1672319399,'192.168.64.1',2,15,43111,NULL,'Consul: Catalog: register, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901eb4xiyl2xwlx8c',1,'Admin',1672319399,'192.168.64.1',2,15,43113,NULL,'Consul: Number of check monitors','clc93sisl00004xiyevwovlv0',''),('clc93siz901ec4xiy92vjpsdt',1,'Admin',1672319399,'192.168.64.1',2,15,43112,NULL,'Consul: Number of checks','clc93sisl00004xiyevwovlv0',''),('clc93siz901ed4xiyhr3suxvm',1,'Admin',1672319399,'192.168.64.1',2,15,43114,NULL,'Consul: Client RPC, per second','clc93sisl00004xiyevwovlv0',''),('clc93siz901ee4xiygr8n5ivr',1,'Admin',1672319399,'192.168.64.1',2,15,43115,NULL,'Consul: Client RPC failed ,per second','clc93sisl00004xiyevwovlv0',''),('clc93siz901ef4xiyuvf4p0xu',1,'Admin',1672319399,'192.168.64.1',2,15,43116,NULL,'Consul: Process CPU seconds, total','clc93sisl00004xiyevwovlv0',''),('clc93siz901eg4xiyb5d90ys5',1,'Admin',1672319399,'192.168.64.1',2,15,43117,NULL,'Consul: GC pause, p50','clc93sisl00004xiyevwovlv0',''),('clc93siz901eh4xiy89p90t8f',1,'Admin',1672319399,'192.168.64.1',2,15,43118,NULL,'Consul: GC pause, p90','clc93sisl00004xiyevwovlv0',''),('clc93siz901ei4xiybrcobwo4',1,'Admin',1672319399,'192.168.64.1',2,15,43081,NULL,'Consul: Get local services','clc93sisl00004xiyevwovlv0',''),('clc93siz901ej4xiyfwyegcms',1,'Admin',1672319399,'192.168.64.1',2,15,43119,NULL,'Consul: Get local services check','clc93sisl00004xiyevwovlv0',''),('clc93siz901ek4xiylfyt9936',1,'Admin',1672319399,'192.168.64.1',2,15,43083,NULL,'Consul: Get instance metrics','clc93sisl00004xiyevwovlv0',''),('clc93siz901el4xiyeta2v2c0',1,'Admin',1672319399,'192.168.64.1',2,15,43082,NULL,'Consul: Get node info','clc93sisl00004xiyevwovlv0',''),('clc93siz901em4xiyuffbexml',1,'Admin',1672319399,'192.168.64.1',2,15,43110,NULL,'Consul: Goroutine count','clc93sisl00004xiyevwovlv0',''),('clc93siz901en4xiy9row15qi',1,'Admin',1672319399,'192.168.64.1',2,15,43120,NULL,'Consul: KV store: apply, p50','clc93sisl00004xiyevwovlv0',''),('clc93siz901eo4xiyiue0d4mx',1,'Admin',1672319399,'192.168.64.1',2,15,43122,NULL,'Consul: KV store: apply, p90','clc93sisl00004xiyevwovlv0',''),('clc93siz901ep4xiy2q339lum',1,'Admin',1672319399,'192.168.64.1',2,15,43123,NULL,'Consul: KV store: apply, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901eq4xiyg1r0rxuo',1,'Admin',1672319399,'192.168.64.1',2,15,43124,NULL,'Consul: Memberlist: degraded','clc93sisl00004xiyevwovlv0',''),('clc93siz901er4xiyhabvtcs7',1,'Admin',1672319399,'192.168.64.1',2,15,43125,NULL,'Consul: Memberlist: gossip, p90','clc93sisl00004xiyevwovlv0',''),('clc93siz901es4xiy5jyfyqsl',1,'Admin',1672319399,'192.168.64.1',2,15,43126,NULL,'Consul: Memberlist: gossip, p50','clc93sisl00004xiyevwovlv0',''),('clc93siz901et4xiy80d1m312',1,'Admin',1672319399,'192.168.64.1',2,15,43127,NULL,'Consul: Memberlist: health score','clc93sisl00004xiyevwovlv0',''),('clc93siz901eu4xiy16c6qvxt',1,'Admin',1672319399,'192.168.64.1',2,15,43128,NULL,'Consul: Memberlist: msg alive','clc93sisl00004xiyevwovlv0',''),('clc93siz901ev4xiyrpxotkbf',1,'Admin',1672319399,'192.168.64.1',2,15,43129,NULL,'Consul: Memberlist: msg dead','clc93sisl00004xiyevwovlv0',''),('clc93siz901ew4xiy0eb7qquv',1,'Admin',1672319399,'192.168.64.1',2,15,43130,NULL,'Consul: Memberlist: msg suspect','clc93sisl00004xiyevwovlv0',''),('clc93siz901ex4xiyrlcxaw2f',1,'Admin',1672319399,'192.168.64.1',2,15,43131,NULL,'Consul: Memberlist: probe node, p50','clc93sisl00004xiyevwovlv0',''),('clc93siz901ey4xiysmsseyy3',1,'Admin',1672319399,'192.168.64.1',2,15,43108,NULL,'Consul: Memberlist: probe node, p90','clc93sisl00004xiyevwovlv0',''),('clc93siz901ez4xiygrozoqqh',1,'Admin',1672319399,'192.168.64.1',2,15,43109,NULL,'Consul: Memberlist: push pull node, p50','clc93sisl00004xiyevwovlv0',''),('clc93siz901f04xiy4a0i5xyd',1,'Admin',1672319399,'192.168.64.1',2,15,43097,NULL,'Consul: Memberlist: push pull node, p90','clc93sisl00004xiyevwovlv0',''),('clc93siz901f14xiytitlgxpc',1,'Admin',1672319399,'192.168.64.1',2,15,43107,NULL,'Consul: TCP connections, accepted per second','clc93sisl00004xiyevwovlv0',''),('clc93siz901f24xiyglggqa2k',1,'Admin',1672319399,'192.168.64.1',2,15,43085,NULL,'Consul: TCP connections, per second','clc93sisl00004xiyevwovlv0',''),('clc93siz901f34xiy1tk3uekc',1,'Admin',1672319399,'192.168.64.1',2,15,43086,NULL,'Consul: TCP send bytes, per second','clc93sisl00004xiyevwovlv0',''),('clc93siz901f44xiyo37r64xz',1,'Admin',1672319399,'192.168.64.1',2,15,43087,NULL,'Consul: UDP received bytes, per second','clc93sisl00004xiyevwovlv0',''),('clc93siz901f54xiyfb1t2c0s',1,'Admin',1672319399,'192.168.64.1',2,15,43088,NULL,'Consul: UDP sent bytes, per second','clc93sisl00004xiyevwovlv0',''),('clc93siz901f64xiyc1che7i0',1,'Admin',1672319399,'192.168.64.1',2,15,43089,NULL,'Consul: Open file descriptors, max','clc93sisl00004xiyevwovlv0',''),('clc93siz901f74xiy2oh38csj',1,'Admin',1672319399,'192.168.64.1',2,15,43090,NULL,'Consul: Open file descriptors','clc93sisl00004xiyevwovlv0',''),('clc93siz901f84xiya260acsf',1,'Admin',1672319399,'192.168.64.1',2,15,43091,NULL,'Consul: RSS memory usage','clc93sisl00004xiyevwovlv0',''),('clc93siz901f94xiyk819dbe5',1,'Admin',1672319399,'192.168.64.1',2,15,43092,NULL,'Consul: Role','clc93sisl00004xiyevwovlv0',''),('clc93siz901fa4xiywsjxhvrv',1,'Admin',1672319399,'192.168.64.1',2,15,43093,NULL,'Consul: Serf member: failed, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901fb4xiyzhxtjxye',1,'Admin',1672319399,'192.168.64.1',2,15,43094,NULL,'Consul: Serf member: flap, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901fc4xiyslgfoyc0',1,'Admin',1672319399,'192.168.64.1',2,15,43084,NULL,'Consul: Serf member: join, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901fd4xiyikzn34pz',1,'Admin',1672319399,'192.168.64.1',2,15,43096,NULL,'Consul: Serf member: left, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901fe4xiyo51h9bdn',1,'Admin',1672319399,'192.168.64.1',2,15,43098,NULL,'Consul: Serf member: update, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901ff4xiymtuo6j04',1,'Admin',1672319399,'192.168.64.1',2,15,43099,NULL,'Consul: Number of services','clc93sisl00004xiyevwovlv0',''),('clc93siz901fg4xiyb6wv3wut',1,'Admin',1672319399,'192.168.64.1',2,15,43100,NULL,'Consul: Snapshot: append line, p50','clc93sisl00004xiyevwovlv0',''),('clc93siz901fh4xiyn0c8uo6m',1,'Admin',1672319399,'192.168.64.1',2,15,43101,NULL,'Consul: Snapshot: append line, p90','clc93sisl00004xiyevwovlv0',''),('clc93siz901fi4xiytyc1esuv',1,'Admin',1672319399,'192.168.64.1',2,15,43102,NULL,'Consul: Snapshot: append line, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901fj4xiyvpaplckr',1,'Admin',1672319399,'192.168.64.1',2,15,43103,NULL,'Consul: Snapshot: compact, p50','clc93sisl00004xiyevwovlv0',''),('clc93siz901fk4xiyrqzz30qd',1,'Admin',1672319399,'192.168.64.1',2,15,43104,NULL,'Consul: Snapshot: compact, p90','clc93sisl00004xiyevwovlv0',''),('clc93siz901fl4xiyy13a11kb',1,'Admin',1672319399,'192.168.64.1',2,15,43105,NULL,'Consul: Snapshot: compact, rate','clc93sisl00004xiyevwovlv0',''),('clc93siz901fm4xiya7uvj087',1,'Admin',1672319399,'192.168.64.1',2,15,43106,NULL,'Consul: Version','clc93sisl00004xiyevwovlv0',''),('clc93siz901fn4xiyy8x1s89e',1,'Admin',1672319399,'192.168.64.1',2,15,43132,NULL,'Consul: Virtual memory size','clc93sisl00004xiyevwovlv0',''),('clc93siz901fo4xiy4eznxkj4',1,'Admin',1672319399,'192.168.64.1',2,15,43156,NULL,'Consul cluster: Get services','clc93sisl00004xiyevwovlv0',''),('clc93siz901fp4xiyr6w373rq',1,'Admin',1672319399,'192.168.64.1',2,15,43157,NULL,'Consul cluster: Get nodes Serf health status','clc93sisl00004xiyevwovlv0',''),('clc93siz901fq4xiyr7m6b62m',1,'Admin',1672319399,'192.168.64.1',2,15,43158,NULL,'Consul cluster: Cluster leader','clc93sisl00004xiyevwovlv0',''),('clc93siz901fr4xiy1ge38l2h',1,'Admin',1672319399,'192.168.64.1',2,15,43159,NULL,'Consul cluster: Get nodes','clc93sisl00004xiyevwovlv0',''),('clc93siz901fs4xiydqw8dnyb',1,'Admin',1672319399,'192.168.64.1',2,15,43160,NULL,'Consul cluster: Nodes: peers','clc93sisl00004xiyevwovlv0',''),('clc93siz901ft4xiy65v9yk1p',1,'Admin',1672319399,'192.168.64.1',2,15,43161,NULL,'Consul: Nodes: critical','clc93sisl00004xiyevwovlv0',''),('clc93siz901fu4xiygplzl376',1,'Admin',1672319399,'192.168.64.1',2,15,43162,NULL,'Consul: Nodes: passing','clc93sisl00004xiyevwovlv0',''),('clc93siz901fv4xiyuepc4on3',1,'Admin',1672319399,'192.168.64.1',2,15,43163,NULL,'Consul: Nodes: total','clc93sisl00004xiyevwovlv0',''),('clc93siz901fw4xiy6mryml41',1,'Admin',1672319399,'192.168.64.1',2,15,43164,NULL,'Consul: Nodes: warning','clc93sisl00004xiyevwovlv0',''),('clc93siz901fx4xiye0g1577k',1,'Admin',1672319399,'192.168.64.1',2,15,43165,NULL,'Consul: Services: total','clc93sisl00004xiyevwovlv0',''),('clc93siz901fy4xiyxakiuzt4',1,'Admin',1672319399,'192.168.64.1',2,15,44294,NULL,'Meraki: Get data','clc93sisl00004xiyevwovlv0',''),('clc93siz901fz4xiy4tr14svc',1,'Admin',1672319399,'192.168.64.1',2,15,44301,NULL,'Meraki: Data item errors','clc93sisl00004xiyevwovlv0',''),('clc93siz901g04xiyr5rzmpt8',1,'Admin',1672319399,'192.168.64.1',2,15,44302,NULL,'Meraki: public ip','clc93sisl00004xiyevwovlv0',''),('clc93siz901g14xiyei5pr90i',1,'Admin',1672319399,'192.168.64.1',2,15,44303,NULL,'Meraki: status','clc93sisl00004xiyevwovlv0',''),('clc93siz901g24xiyj8ujyg5w',1,'Admin',1672319399,'192.168.64.1',2,15,44295,NULL,'Meraki: Get device data','clc93sisl00004xiyevwovlv0',''),('clc93siz901g34xiymc65isih',1,'Admin',1672319399,'192.168.64.1',2,15,44304,NULL,'Meraki: Device data item errors','clc93sisl00004xiyevwovlv0',''),('clc93siz901g44xiyqicbhtzj',1,'Admin',1672319399,'192.168.64.1',2,15,44296,NULL,'Meraki: Get list of adaptive policy aggregate statistics','clc93sisl00004xiyevwovlv0',''),('clc93siz901g54xiyxxz2m2kc',1,'Admin',1672319399,'192.168.64.1',2,15,44297,NULL,'Meraki: Get list of configuration changes','clc93sisl00004xiyevwovlv0',''),('clc93siz901g64xiy8yv4ktf7',1,'Admin',1672319399,'192.168.64.1',2,15,44298,NULL,'Meraki: Get licenses info','clc93sisl00004xiyevwovlv0',''),('clc93siz901g74xiy6u9nze5n',1,'Admin',1672319399,'192.168.64.1',2,15,44299,NULL,'Meraki: Get list of the networks','clc93sisl00004xiyevwovlv0',''),('clc93siz901g84xiykhxu4vw2',1,'Admin',1672319399,'192.168.64.1',2,15,44305,NULL,'Meraki: Networks item errors','clc93sisl00004xiyevwovlv0',''),('clc93siz901g94xiynysbwgs0',1,'Admin',1672319399,'192.168.64.1',2,15,44300,NULL,'Meraki: Get list of the vpn stats','clc93sisl00004xiyevwovlv0',''),('clc93siz901ga4xiy3211jb0m',1,'Admin',1672319399,'192.168.64.1',2,15,44306,NULL,'Meraki: VPN item errors','clc93sisl00004xiyevwovlv0',''),('clc93siz901gb4xiy4czesf4v',1,'Admin',1672319399,'192.168.64.1',2,15,44307,NULL,'Meraki: License expire','clc93sisl00004xiyevwovlv0',''),('clc93siz901gc4xiyhe3lf7pu',1,'Admin',1672319399,'192.168.64.1',2,15,44308,NULL,'Meraki: License status','clc93sisl00004xiyevwovlv0',''),('clc93siz901gd4xiy7lk1udgq',1,'Admin',1672319399,'192.168.64.1',2,15,44309,NULL,'Meraki: Policies','clc93sisl00004xiyevwovlv0',''),('clc93siz901ge4xiyd2s57d46',1,'Admin',1672319399,'192.168.64.1',2,15,44310,NULL,'Meraki: Allow policies','clc93sisl00004xiyevwovlv0',''),('clc93siz901gf4xiy4x4eitj5',1,'Admin',1672319399,'192.168.64.1',2,15,44311,NULL,'Meraki: Custom ACLs','clc93sisl00004xiyevwovlv0',''),('clc93siz901gg4xiydz3c6aac',1,'Admin',1672319399,'192.168.64.1',2,15,44312,NULL,'Meraki: Deny policies','clc93sisl00004xiyevwovlv0',''),('clc93siz901gh4xiyai32aeqn',1,'Admin',1672319399,'192.168.64.1',2,15,44313,NULL,'Meraki: Groups','clc93sisl00004xiyevwovlv0',''),('clc93siz901gi4xiyzkycej8q',1,'Admin',1672319399,'192.168.64.1',2,15,44381,NULL,'ICMP ping','clc93sisl00004xiyevwovlv0',''),('clc93siz901gj4xiyqjs4nh71',1,'Admin',1672319399,'192.168.64.1',2,15,44382,NULL,'ICMP loss','clc93sisl00004xiyevwovlv0',''),('clc93siz901gk4xiyd2e0jyff',1,'Admin',1672319399,'192.168.64.1',2,15,44383,NULL,'ICMP response time','clc93sisl00004xiyevwovlv0',''),('clc93siz901gl4xiy7eep2htd',1,'Admin',1672319399,'192.168.64.1',2,15,44384,NULL,'SNMP traps (fallback)','clc93sisl00004xiyevwovlv0',''),('clc93siz901gm4xiyru0hl5ms',1,'Admin',1672319399,'192.168.64.1',2,15,44385,NULL,'System contact details','clc93sisl00004xiyevwovlv0',''),('clc93siz901gn4xiynvslap04',1,'Admin',1672319399,'192.168.64.1',2,15,44386,NULL,'System description','clc93sisl00004xiyevwovlv0',''),('clc93siz901go4xiyh4so8zaz',1,'Admin',1672319399,'192.168.64.1',2,15,44387,NULL,'Hardware model name','clc93sisl00004xiyevwovlv0',''),('clc93siz901gp4xiynwjreir5',1,'Admin',1672319399,'192.168.64.1',2,15,44388,NULL,'Hardware serial number','clc93sisl00004xiyevwovlv0',''),('clc93siz901gq4xiyknvs87vl',1,'Admin',1672319399,'192.168.64.1',2,15,44389,NULL,'System location','clc93sisl00004xiyevwovlv0',''),('clc93siz901gr4xiyakvjlw7j',1,'Admin',1672319399,'192.168.64.1',2,15,44390,NULL,'System name','clc93sisl00004xiyevwovlv0',''),('clc93siz901gs4xiyqasrv31l',1,'Admin',1672319399,'192.168.64.1',2,15,44391,NULL,'System object ID','clc93sisl00004xiyevwovlv0',''),('clc93siz901gt4xiy75v8fh0d',1,'Admin',1672319399,'192.168.64.1',2,15,44392,NULL,'Operating system','clc93sisl00004xiyevwovlv0',''),('clc93siz901gu4xiy448odwk2',1,'Admin',1672319399,'192.168.64.1',2,15,44393,NULL,'Uptime (snmp)','clc93sisl00004xiyevwovlv0',''),('clc93siz901gv4xiy4xsl42jt',1,'Admin',1672319399,'192.168.64.1',2,15,44394,NULL,'SNMP agent availability','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01gw4xiy4wqgavu2',1,'Admin',1672319399,'192.168.64.1',2,30,10075,NULL,'FreeBSD by Zabbix agent','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01gx4xiy18ddhw3u',1,'Admin',1672319399,'192.168.64.1',2,30,10077,NULL,'HP-UX by Zabbix agent','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01gy4xiyzmy0xids',1,'Admin',1672319399,'192.168.64.1',2,30,10093,NULL,'FTP Service','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01gz4xiy6ibq4avu',1,'Admin',1672319399,'192.168.64.1',2,30,10169,NULL,'Generic Java JMX','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01h04xiy72i06rg3',1,'Admin',1672319399,'192.168.64.1',2,30,10183,NULL,'EtherLike-MIB by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01h14xiyv07ahcnx',1,'Admin',1672319399,'192.168.64.1',2,30,10185,NULL,'HOST-RESOURCES-MIB by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01h24xiydfa2lndm',1,'Admin',1672319399,'192.168.64.1',2,30,10204,NULL,'Generic by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01h34xiyu5r2gqfl',1,'Admin',1672319399,'192.168.64.1',2,30,10215,NULL,'Cisco OLD-CISCO-CPU-MIB by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01h44xiy6lp4wlk2',1,'Admin',1672319399,'192.168.64.1',2,30,10220,NULL,'Cisco IOS prior to 12.0_3_T by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01h54xiyjhrzxxx4',1,'Admin',1672319399,'192.168.64.1',2,30,10221,NULL,'Dell Force S-Series by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01h64xiycv094hcp',1,'Admin',1672319399,'192.168.64.1',2,30,10222,NULL,'D-Link DES 7200 by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01h74xiyita957kq',1,'Admin',1672319399,'192.168.64.1',2,30,10223,NULL,'D-Link DES_DGS Switch by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01h84xiy71h1od2k',1,'Admin',1672319399,'192.168.64.1',2,30,10224,NULL,'Extreme EXOS by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01h94xiyuo88nll7',1,'Admin',1672319399,'192.168.64.1',2,30,10227,NULL,'HP Comware HH3C by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01ha4xiy30y3aoqi',1,'Admin',1672319399,'192.168.64.1',2,30,10253,NULL,'Cisco IOS versions 12.0_3_T-12.2_3.5 by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hb4xiywrplutxu',1,'Admin',1672319399,'192.168.64.1',2,30,10255,NULL,'Dell iDRAC by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hc4xiy4x9rgi1o',1,'Admin',1672319399,'192.168.64.1',2,30,10304,NULL,'Cisco UCS by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hd4xiysqfuqdl2',1,'Admin',1672319399,'192.168.64.1',2,30,10305,NULL,'HOST-RESOURCES-MIB CPU by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01he4xiy8apkt114',1,'Admin',1672319399,'192.168.64.1',2,30,10306,NULL,'HOST-RESOURCES-MIB memory by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hf4xiykkoelb6q',1,'Admin',1672319399,'192.168.64.1',2,30,10307,NULL,'HOST-RESOURCES-MIB storage by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hg4xiycioeup7q',1,'Admin',1672319399,'192.168.64.1',2,30,10308,NULL,'HAProxy by Zabbix agent','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hh4xiyd4a5u6qy',1,'Admin',1672319399,'192.168.64.1',2,30,10309,NULL,'HAProxy by HTTP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hi4xiy2bnt8eza',1,'Admin',1672319399,'192.168.64.1',2,30,10318,NULL,'Docker by Zabbix agent 2','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hj4xiy2jecqu0a',1,'Admin',1672319399,'192.168.64.1',2,30,10322,NULL,'Elasticsearch Cluster by HTTP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hk4xiycs3kl386',1,'Admin',1672319399,'192.168.64.1',2,30,10323,NULL,'ClickHouse by HTTP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hl4xiywr4g1qbi',1,'Admin',1672319399,'192.168.64.1',2,30,10324,NULL,'Etcd by HTTP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hm4xiyj5mcja1e',1,'Admin',1672319399,'192.168.64.1',2,30,10362,NULL,'GitLab by HTTP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hn4xiy1ck7y5ev',1,'Admin',1672319399,'192.168.64.1',2,30,10363,NULL,'Hadoop by HTTP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01ho4xiyeg3wq5k1',1,'Admin',1672319399,'192.168.64.1',2,30,10365,NULL,'HashiCorp Vault by HTTP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hp4xiypt4e9buv',1,'Admin',1672319399,'192.168.64.1',2,30,10380,NULL,'Hikvision camera by HTTP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hq4xiysl729i8d',1,'Admin',1672319399,'192.168.64.1',2,30,10414,NULL,'Cloudflare by HTTP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hr4xiy3m5idqa8',1,'Admin',1672319399,'192.168.64.1',2,30,10417,NULL,'GridGain by JMX','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hs4xiyx8h7vkkv',1,'Admin',1672319399,'192.168.64.1',2,30,10419,NULL,'F5 Big-IP by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01ht4xiyypyrha39',1,'Admin',1672319399,'192.168.64.1',2,30,10434,NULL,'Cisco UCS Manager by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hu4xiyvyso9ww9',1,'Admin',1672319399,'192.168.64.1',2,30,10435,NULL,'DELL PowerEdge R720 by HTTP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hv4xiyzp8gmjos',1,'Admin',1672319399,'192.168.64.1',2,30,10436,NULL,'DELL PowerEdge R720 by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hw4xiy7v7o7zqd',1,'Admin',1672319399,'192.168.64.1',2,30,10437,NULL,'DELL PowerEdge R740 by HTTP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hx4xiy6m0c0lkn',1,'Admin',1672319399,'192.168.64.1',2,30,10438,NULL,'DELL PowerEdge R740 by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hy4xiyuia8m9h7',1,'Admin',1672319399,'192.168.64.1',2,30,10439,NULL,'DELL PowerEdge R820 by HTTP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01hz4xiya0ffwo6a',1,'Admin',1672319399,'192.168.64.1',2,30,10440,NULL,'DELL PowerEdge R820 by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01i04xiykmn1ieir',1,'Admin',1672319399,'192.168.64.1',2,30,10441,NULL,'DELL PowerEdge R840 by HTTP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01i14xiyovnqqbls',1,'Admin',1672319399,'192.168.64.1',2,30,10442,NULL,'DELL PowerEdge R840 by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01i24xiyx0jummz2',1,'Admin',1672319399,'192.168.64.1',2,30,10519,NULL,'CockroachDB by HTTP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01i34xiy18air0n8',1,'Admin',1672319399,'192.168.64.1',2,30,10520,NULL,'Envoy Proxy by HTTP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01i44xiyxcza8dkc',1,'Admin',1672319399,'192.168.64.1',2,30,10521,NULL,'HashiCorp Consul Node by HTTP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01i54xiyw332z9xn',1,'Admin',1672319399,'192.168.64.1',2,30,10522,NULL,'HashiCorp Consul Cluster by HTTP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01i64xiy5m5mdpor',1,'Admin',1672319399,'192.168.64.1',2,30,10546,NULL,'Cisco Meraki dashboard by HTTP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01i74xiy6opu6jtz',1,'Admin',1672319399,'192.168.64.1',2,30,10547,NULL,'Cisco Meraki device by HTTP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01i84xiyhar6up7a',1,'Admin',1672319399,'192.168.64.1',2,30,10548,NULL,'Cisco Meraki organization by HTTP','clc93sisl00004xiyevwovlv0',''),('clc93sj0g01i94xiyi1wc9k90',1,'Admin',1672319399,'192.168.64.1',2,30,10551,NULL,'Cisco Nexus 9000 Series by SNMP','clc93sisl00004xiyevwovlv0',''),('clc93snar00017kiyxz15etjg',1,'Admin',1672319405,'192.168.64.1',2,36,27079,NULL,'Interface {#IFDESCR}: Inbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snar00027kiyutjlx0jy',1,'Admin',1672319405,'192.168.64.1',2,36,27080,NULL,'Interface {#IFDESCR}: Interface type','clc93snar00007kiypalxeeen',''),('clc93snar00037kiyb29tdx2w',1,'Admin',1672319405,'192.168.64.1',2,36,27081,NULL,'Interface {#IFDESCR}: Speed','clc93snar00007kiypalxeeen',''),('clc93snar00047kiy5rhrtyki',1,'Admin',1672319405,'192.168.64.1',2,36,27082,NULL,'Interface {#IFDESCR}: Outbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snar00057kiytnumapza',1,'Admin',1672319405,'192.168.64.1',2,36,27083,NULL,'Interface {#IFDESCR}: Outbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snar00067kiys9kb3hf9',1,'Admin',1672319405,'192.168.64.1',2,36,27084,NULL,'Interface {#IFDESCR}: Bits received','clc93snar00007kiypalxeeen',''),('clc93snar00077kiycsapunbd',1,'Admin',1672319405,'192.168.64.1',2,36,27085,NULL,'Interface {#IFDESCR}: Bits sent','clc93snar00007kiypalxeeen',''),('clc93snar00087kiynauekgoh',1,'Admin',1672319405,'192.168.64.1',2,36,27086,NULL,'Interface {#IFDESCR}: Inbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snar00097kiym5gs9syw',1,'Admin',1672319405,'192.168.64.1',2,36,27087,NULL,'Interface {#IFDESCR}: Operational status','clc93snar00007kiypalxeeen',''),('clc93snar000a7kiy9tq3ji23',1,'Admin',1672319405,'192.168.64.1',2,36,27099,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snar000b7kiydskinkrj',1,'Admin',1672319405,'192.168.64.1',2,36,27100,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93snar00007kiypalxeeen',''),('clc93snar000c7kiy0kj0jbun',1,'Admin',1672319405,'192.168.64.1',2,36,27101,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93snar00007kiypalxeeen',''),('clc93snar000d7kiytr8i8v5h',1,'Admin',1672319405,'192.168.64.1',2,36,27102,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snar000e7kiyvevxh5tu',1,'Admin',1672319405,'192.168.64.1',2,36,27103,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snar000f7kiyu1xcr8c7',1,'Admin',1672319405,'192.168.64.1',2,36,27104,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93snar00007kiypalxeeen',''),('clc93snar000g7kiyoo2pmq5k',1,'Admin',1672319405,'192.168.64.1',2,36,27105,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93snar00007kiypalxeeen',''),('clc93snas000h7kiyftwbs4z0',1,'Admin',1672319405,'192.168.64.1',2,36,27106,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snas000i7kiyfyde9btv',1,'Admin',1672319405,'192.168.64.1',2,36,27107,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93snar00007kiypalxeeen',''),('clc93snas000j7kiy2oy6kgng',1,'Admin',1672319405,'192.168.64.1',2,36,27119,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snas000k7kiy30ncyhv2',1,'Admin',1672319405,'192.168.64.1',2,36,27120,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93snar00007kiypalxeeen',''),('clc93snas000l7kiykyhjdug1',1,'Admin',1672319405,'192.168.64.1',2,36,27121,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93snar00007kiypalxeeen',''),('clc93snas000m7kiyski9nwc9',1,'Admin',1672319405,'192.168.64.1',2,36,27122,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snas000n7kiy4c7hnqil',1,'Admin',1672319405,'192.168.64.1',2,36,27123,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snas000o7kiywjtwalvq',1,'Admin',1672319405,'192.168.64.1',2,36,27124,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93snar00007kiypalxeeen',''),('clc93snas000p7kiyquabuz75',1,'Admin',1672319405,'192.168.64.1',2,36,27125,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93snar00007kiypalxeeen',''),('clc93snas000q7kiywrfekuz9',1,'Admin',1672319405,'192.168.64.1',2,36,27126,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snas000r7kiye39lsfzm',1,'Admin',1672319405,'192.168.64.1',2,36,27127,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93snar00007kiypalxeeen',''),('clc93snas000s7kiy9uhg9b2n',1,'Admin',1672319405,'192.168.64.1',2,36,27748,NULL,'{#ENT_NAME}: Hardware version(revision)','clc93snar00007kiypalxeeen',''),('clc93snas000t7kiy26w2zdau',1,'Admin',1672319405,'192.168.64.1',2,36,27749,NULL,'{#ENT_NAME}: Operating system','clc93snar00007kiypalxeeen',''),('clc93snas000u7kiybmi72j6q',1,'Admin',1672319405,'192.168.64.1',2,36,27750,NULL,'{#ENT_NAME}: Hardware serial number','clc93snar00007kiypalxeeen',''),('clc93snas000v7kiyd2k3nxo4',1,'Admin',1672319405,'192.168.64.1',2,36,27751,NULL,'{#ENT_NAME}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snas000w7kiyw9o1i3hq',1,'Admin',1672319405,'192.168.64.1',2,36,27753,NULL,'{#ENT_NAME}: CPU utilization','clc93snar00007kiypalxeeen',''),('clc93snas000x7kiyy1iqebyl',1,'Admin',1672319405,'192.168.64.1',2,36,30116,NULL,'{#ENT_NAME}: Memory utilization','clc93snar00007kiypalxeeen',''),('clc93snas000y7kiy2hoi41u8',1,'Admin',1672319405,'192.168.64.1',2,36,27754,NULL,'{#ENT_NAME}: Hardware model name','clc93snar00007kiypalxeeen',''),('clc93snas000z7kiypc23rwry',1,'Admin',1672319405,'192.168.64.1',2,36,27755,NULL,'#{#SNMPVALUE}: Fan status','clc93snar00007kiypalxeeen',''),('clc93snas00107kiyguqb7qix',1,'Admin',1672319405,'192.168.64.1',2,36,27783,NULL,'{#SENSOR_INFO}: Temperature status','clc93snar00007kiypalxeeen',''),('clc93snas00117kiykdu3asgs',1,'Admin',1672319405,'192.168.64.1',2,36,27784,NULL,'{#SENSOR_INFO}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snas00127kiy2htilk31',1,'Admin',1672319405,'192.168.64.1',2,36,27785,NULL,'{#ENT_NAME}: Hardware serial number','clc93snar00007kiypalxeeen',''),('clc93snas00137kiyhhuyg0cb',1,'Admin',1672319405,'192.168.64.1',2,36,27786,NULL,'{#SNMPVALUE}: Power supply status','clc93snar00007kiypalxeeen',''),('clc93snas00147kiyz3a7ipa7',1,'Admin',1672319405,'192.168.64.1',2,36,27787,NULL,'{#SNMPVALUE}: Fan status','clc93snar00007kiypalxeeen',''),('clc93snas00157kiyuz7j6ntg',1,'Admin',1672319405,'192.168.64.1',2,36,28894,NULL,'{#SNMPVALUE}: CPU utilization','clc93snar00007kiypalxeeen',''),('clc93snas00167kiy8lqixt2u',1,'Admin',1672319405,'192.168.64.1',2,36,30118,NULL,'{#SNMPVALUE}: Memory utilization','clc93snar00007kiypalxeeen',''),('clc93snas00177kiy2czvvydy',1,'Admin',1672319405,'192.168.64.1',2,36,27821,NULL,'{#SENSOR_INFO}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snas00187kiywoexeo9l',1,'Admin',1672319405,'192.168.64.1',2,36,27822,NULL,'{#SNMPVALUE}: Fan status','clc93snar00007kiypalxeeen',''),('clc93snas00197kiy0medm61e',1,'Admin',1672319405,'192.168.64.1',2,36,27823,NULL,'{#SNMPVALUE}: Power supply status','clc93snar00007kiypalxeeen',''),('clc93snas001a7kiyp6dnm79o',1,'Admin',1672319405,'192.168.64.1',2,36,28150,NULL,'{#SENSOR_INFO}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snas001b7kiy6zum79v8',1,'Admin',1672319405,'192.168.64.1',2,36,28153,NULL,'#{#SNMPVALUE}: Used memory','clc93snar00007kiypalxeeen',''),('clc93snas001c7kiye4lt4nyo',1,'Admin',1672319405,'192.168.64.1',2,36,30113,NULL,'#{#SNMPVALUE}: Available memory','clc93snar00007kiypalxeeen',''),('clc93snas001d7kiytxjtr92u',1,'Admin',1672319405,'192.168.64.1',2,36,30114,NULL,'#{#SNMPVALUE}: Total memory','clc93snar00007kiypalxeeen',''),('clc93snas001e7kiy56y79984',1,'Admin',1672319405,'192.168.64.1',2,36,30115,NULL,'#{#SNMPVALUE}: Memory utilization','clc93snar00007kiypalxeeen',''),('clc93snas001f7kiybl2icprd',1,'Admin',1672319405,'192.168.64.1',2,36,28154,NULL,'{#ENT_DESCR}: Fan status','clc93snar00007kiypalxeeen',''),('clc93snas001g7kiyp19a3egi',1,'Admin',1672319405,'192.168.64.1',2,36,28155,NULL,'{#ENT_DESCR}: Power supply status','clc93snar00007kiypalxeeen',''),('clc93snas001h7kiyg5ce5j7j',1,'Admin',1672319405,'192.168.64.1',2,36,28156,NULL,'{#ENT_DESCR}: Temperature status','clc93snar00007kiypalxeeen',''),('clc93snas001i7kiymnkggytj',1,'Admin',1672319405,'192.168.64.1',2,36,28157,NULL,'{#ENT_NAME}: Hardware version(revision)','clc93snar00007kiypalxeeen',''),('clc93snas001j7kiyzzgu6mbb',1,'Admin',1672319405,'192.168.64.1',2,36,28158,NULL,'{#ENT_NAME}: Hardware model name','clc93snar00007kiypalxeeen',''),('clc93snas001k7kiy6g4vtlfd',1,'Admin',1672319405,'192.168.64.1',2,36,28404,NULL,'{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snas001l7kiy4i2n143g',1,'Admin',1672319405,'192.168.64.1',2,36,28405,NULL,'{#SNMPINDEX}: Temperature sensor location','clc93snar00007kiypalxeeen',''),('clc93snas001m7kiyl17ca92j',1,'Admin',1672319405,'192.168.64.1',2,36,33621,NULL,'{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snas001n7kiycgj523km',1,'Admin',1672319405,'192.168.64.1',2,36,28406,NULL,'Ambient: Temperature','clc93snar00007kiypalxeeen',''),('clc93snas001o7kiyb6vuoez8',1,'Admin',1672319405,'192.168.64.1',2,36,33622,NULL,'Ambient: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snas001p7kiyuu191ojk',1,'Admin',1672319405,'192.168.64.1',2,36,28407,NULL,'CPU-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snas001q7kiyay48kauw',1,'Admin',1672319405,'192.168.64.1',2,36,33623,NULL,'CPU-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snas001r7kiyfrwll71f',1,'Admin',1672319405,'192.168.64.1',2,36,28408,NULL,'Memory-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snas001s7kiy364er25w',1,'Admin',1672319405,'192.168.64.1',2,36,33626,NULL,'Memory-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snas001t7kiyeb130s5z',1,'Admin',1672319405,'192.168.64.1',2,36,28409,NULL,'PSU-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snas001u7kiy6cca50bd',1,'Admin',1672319405,'192.168.64.1',2,36,33627,NULL,'PSU-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snas001v7kiype1ptaj2',1,'Admin',1672319405,'192.168.64.1',2,36,33624,NULL,'I/O-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snas001w7kiykmda6sod',1,'Admin',1672319405,'192.168.64.1',2,36,33625,NULL,'I/O-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snas001x7kiyas7qrfqa',1,'Admin',1672319405,'192.168.64.1',2,36,28411,NULL,'Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply status','clc93snar00007kiypalxeeen',''),('clc93snas001y7kiy6bozdxzp',1,'Admin',1672319405,'192.168.64.1',2,36,28412,NULL,'Fan {#SNMPINDEX}: Fan status','clc93snar00007kiypalxeeen',''),('clc93snas001z7kiy542ssepn',1,'Admin',1672319405,'192.168.64.1',2,36,28413,NULL,'{#CNTLR_LOCATION}: Disk array controller status','clc93snar00007kiypalxeeen',''),('clc93snas00207kiyx98e9489',1,'Admin',1672319405,'192.168.64.1',2,36,28414,NULL,'{#CNTLR_LOCATION}: Disk array controller model','clc93snar00007kiypalxeeen',''),('clc93snas00217kiyb2mynkj7',1,'Admin',1672319405,'192.168.64.1',2,36,28415,NULL,'#{#CACHE_CNTRL_INDEX}: Disk array cache controller status','clc93snar00007kiypalxeeen',''),('clc93snas00227kiyqnmeek99',1,'Admin',1672319405,'192.168.64.1',2,36,28416,NULL,'#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery status','clc93snar00007kiypalxeeen',''),('clc93snas00237kiys54b2xuy',1,'Admin',1672319405,'192.168.64.1',2,36,28417,NULL,'{#DISK_LOCATION}: Physical disk status','clc93snar00007kiypalxeeen',''),('clc93snas00247kiy2ebr6pds',1,'Admin',1672319405,'192.168.64.1',2,36,28418,NULL,'{#DISK_LOCATION}: Physical disk S.M.A.R.T. status','clc93snar00007kiypalxeeen',''),('clc93snas00257kiy82cpina2',1,'Admin',1672319405,'192.168.64.1',2,36,28419,NULL,'{#DISK_LOCATION}: Physical disk serial number','clc93snar00007kiypalxeeen',''),('clc93snas00267kiy3ci1g1if',1,'Admin',1672319405,'192.168.64.1',2,36,28420,NULL,'{#DISK_LOCATION}: Physical disk model name','clc93snar00007kiypalxeeen',''),('clc93snas00277kiyn109agbd',1,'Admin',1672319405,'192.168.64.1',2,36,28421,NULL,'{#DISK_LOCATION}: Physical disk media type','clc93snar00007kiypalxeeen',''),('clc93snas00287kiy0rqplz3c',1,'Admin',1672319405,'192.168.64.1',2,36,28422,NULL,'{#DISK_LOCATION}: Disk size','clc93snar00007kiypalxeeen',''),('clc93snas00297kiyr3v48fcm',1,'Admin',1672319405,'192.168.64.1',2,36,28423,NULL,'Disk {#SNMPINDEX}({#DISK_NAME}): Status','clc93snar00007kiypalxeeen',''),('clc93snas002a7kiyef0tbjdi',1,'Admin',1672319405,'192.168.64.1',2,36,28424,NULL,'Disk {#SNMPINDEX}({#DISK_NAME}): Layout type','clc93snar00007kiypalxeeen',''),('clc93snas002b7kiy3t67033b',1,'Admin',1672319405,'192.168.64.1',2,36,28425,NULL,'Disk {#SNMPINDEX}({#DISK_NAME}): Disk size','clc93snar00007kiypalxeeen',''),('clc93snas002c7kiy2coeu2kb',1,'Admin',1672319405,'192.168.64.1',2,36,28474,NULL,'{#SNMPVALUE}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snas002d7kiyjxwkw9ln',1,'Admin',1672319405,'192.168.64.1',2,36,28475,NULL,'Ambient: Temperature','clc93snar00007kiypalxeeen',''),('clc93snas002e7kiy0w2rp9kj',1,'Admin',1672319405,'192.168.64.1',2,36,28476,NULL,'CPU: Temperature','clc93snar00007kiypalxeeen',''),('clc93snas002f7kiy6y7qpowf',1,'Admin',1672319405,'192.168.64.1',2,36,28477,NULL,'{#PSU_DESCR}: Power supply status','clc93snar00007kiypalxeeen',''),('clc93snas002g7kiyy9m8rndz',1,'Admin',1672319405,'192.168.64.1',2,36,28478,NULL,'{#FAN_DESCR}: Fan status','clc93snar00007kiypalxeeen',''),('clc93snas002h7kiyzwvhw6ff',1,'Admin',1672319405,'192.168.64.1',2,36,28479,NULL,'{#FAN_DESCR}: Fan speed, %','clc93snar00007kiypalxeeen',''),('clc93snas002i7kiydffczsl4',1,'Admin',1672319405,'192.168.64.1',2,36,28480,NULL,'{#SNMPINDEX}: Physical disk status','clc93snar00007kiypalxeeen',''),('clc93snas002j7kiy9jo6akw6',1,'Admin',1672319405,'192.168.64.1',2,36,28481,NULL,'{#SNMPINDEX}: Physical disk part number','clc93snar00007kiypalxeeen',''),('clc93snas002k7kiy9sxhag3y',1,'Admin',1672319405,'192.168.64.1',2,36,29014,NULL,'{#DEVNAME}: Disk read rate','clc93snar00007kiypalxeeen',''),('clc93snas002l7kiy2v0chn8y',1,'Admin',1672319405,'192.168.64.1',2,36,29015,NULL,'{#DEVNAME}: Disk write rate','clc93snar00007kiypalxeeen',''),('clc93snas002m7kiyhj09goq2',1,'Admin',1672319405,'192.168.64.1',2,36,29016,NULL,'{#DEVNAME}: Disk utilization','clc93snar00007kiypalxeeen',''),('clc93snas002n7kiye0fq58yw',1,'Admin',1672319405,'192.168.64.1',2,36,29017,NULL,'CPU idle time','clc93snar00007kiypalxeeen',''),('clc93snas002o7kiyt5g99y5q',1,'Admin',1672319405,'192.168.64.1',2,36,29018,NULL,'CPU system time','clc93snar00007kiypalxeeen',''),('clc93snas002p7kiydor1na92',1,'Admin',1672319405,'192.168.64.1',2,36,29019,NULL,'CPU user time','clc93snar00007kiypalxeeen',''),('clc93snas002q7kiy7dxff1ni',1,'Admin',1672319405,'192.168.64.1',2,36,29020,NULL,'CPU steal time','clc93snar00007kiypalxeeen',''),('clc93snas002r7kiyiflq8wsu',1,'Admin',1672319405,'192.168.64.1',2,36,29021,NULL,'CPU softirq time','clc93snar00007kiypalxeeen',''),('clc93snas002s7kiyp296vcnq',1,'Admin',1672319405,'192.168.64.1',2,36,29022,NULL,'CPU nice time','clc93snar00007kiypalxeeen',''),('clc93snas002t7kiyoadgpswl',1,'Admin',1672319405,'192.168.64.1',2,36,29023,NULL,'CPU iowait time','clc93snar00007kiypalxeeen',''),('clc93snas002u7kiy5eadmw46',1,'Admin',1672319405,'192.168.64.1',2,36,29024,NULL,'CPU interrupt time','clc93snar00007kiypalxeeen',''),('clc93snas002v7kiy9hcivlcn',1,'Admin',1672319405,'192.168.64.1',2,36,29025,NULL,'CPU guest time','clc93snar00007kiypalxeeen',''),('clc93snas002w7kiy9szvadxy',1,'Admin',1672319405,'192.168.64.1',2,36,29026,NULL,'CPU guest nice time','clc93snar00007kiypalxeeen',''),('clc93snas002x7kiy1uj69354',1,'Admin',1672319405,'192.168.64.1',2,36,29048,NULL,'CPU utilization','clc93snar00007kiypalxeeen',''),('clc93snas002y7kiyzg812rcr',1,'Admin',1672319405,'192.168.64.1',2,36,29027,NULL,'{#FSNAME}: Used space','clc93snar00007kiypalxeeen',''),('clc93snas002z7kiyr721jgmg',1,'Admin',1672319405,'192.168.64.1',2,36,29028,NULL,'{#FSNAME}: Total space','clc93snar00007kiypalxeeen',''),('clc93snas00307kiyifbky8f0',1,'Admin',1672319405,'192.168.64.1',2,36,29029,NULL,'{#FSNAME}: Space utilization','clc93snar00007kiypalxeeen',''),('clc93snas00317kiyoge6fiyn',1,'Admin',1672319405,'192.168.64.1',2,36,29030,NULL,'{#FSNAME}: Free inodes in %','clc93snar00007kiypalxeeen',''),('clc93snas00327kiyardvt8ec',1,'Admin',1672319405,'192.168.64.1',2,36,29210,NULL,'{#FSNAME}: Used space','clc93snar00007kiypalxeeen',''),('clc93snas00337kiycj81nx79',1,'Admin',1672319405,'192.168.64.1',2,36,29211,NULL,'{#FSNAME}: Total space','clc93snar00007kiypalxeeen',''),('clc93snas00347kiym8a4wwtk',1,'Admin',1672319405,'192.168.64.1',2,36,29212,NULL,'{#FSNAME}: Space utilization','clc93snar00007kiypalxeeen',''),('clc93snas00357kiyyhbgqb1n',1,'Admin',1672319405,'192.168.64.1',2,36,29213,NULL,'{#FSNAME}: Free inodes in %','clc93snar00007kiypalxeeen',''),('clc93snas00367kiy99df549u',1,'Admin',1672319405,'192.168.64.1',2,36,44372,NULL,'{#FSNAME}: Get filesystem data','clc93snar00007kiypalxeeen',''),('clc93snas00377kiy7qwxp64z',1,'Admin',1672319405,'192.168.64.1',2,36,44373,NULL,'{#FSNAME}: Filesystem is read-only','clc93snar00007kiypalxeeen',''),('clc93snas00387kiyhenhb2ne',1,'Admin',1672319405,'192.168.64.1',2,36,29436,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93snar00007kiypalxeeen',''),('clc93snas00397kiyql8baj21',1,'Admin',1672319405,'192.168.64.1',2,36,29437,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93snar00007kiypalxeeen',''),('clc93snas003a7kiyzf36q7oy',1,'Admin',1672319405,'192.168.64.1',2,36,29438,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snas003b7kiy3751ml1u',1,'Admin',1672319405,'192.168.64.1',2,36,29439,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snas003c7kiyd17jiqp7',1,'Admin',1672319405,'192.168.64.1',2,36,29440,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snas003d7kiy3hjfbpvg',1,'Admin',1672319405,'192.168.64.1',2,36,29441,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snas003e7kiy9u57zone',1,'Admin',1672319405,'192.168.64.1',2,36,29442,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93snar00007kiypalxeeen',''),('clc93snas003f7kiy599zbs11',1,'Admin',1672319405,'192.168.64.1',2,36,29443,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93snar00007kiypalxeeen',''),('clc93snas003g7kiyj71agzkp',1,'Admin',1672319405,'192.168.64.1',2,36,29444,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93snar00007kiypalxeeen',''),('clc93snas003h7kiyz81khync',1,'Admin',1672319405,'192.168.64.1',2,36,29432,NULL,'{#FSNAME}: Used space','clc93snar00007kiypalxeeen',''),('clc93snas003i7kiyr5n2aw65',1,'Admin',1672319405,'192.168.64.1',2,36,29433,NULL,'{#FSNAME}: Space utilization','clc93snar00007kiypalxeeen',''),('clc93snas003j7kiyffo56n8p',1,'Admin',1672319405,'192.168.64.1',2,36,29445,NULL,'{#FSNAME}: Free space','clc93snar00007kiypalxeeen',''),('clc93snas003k7kiy6x6k49lo',1,'Admin',1672319405,'192.168.64.1',2,36,29446,NULL,'{#FSNAME}: Total space','clc93snar00007kiypalxeeen',''),('clc93snas003l7kiyxpvytbk4',1,'Admin',1672319405,'192.168.64.1',2,36,29447,NULL,'{#FSNAME}: Free inodes in %','clc93snar00007kiypalxeeen',''),('clc93snas003m7kiycwhge2na',1,'Admin',1672319405,'192.168.64.1',2,36,29434,NULL,'{#DEVNAME}: Disk read request avg waiting time (r_await)','clc93snar00007kiypalxeeen',''),('clc93snas003n7kiyiqe6py0x',1,'Admin',1672319405,'192.168.64.1',2,36,29435,NULL,'{#DEVNAME}: Disk write request avg waiting time (w_await)','clc93snar00007kiypalxeeen',''),('clc93snas003o7kiyx7dy89b6',1,'Admin',1672319405,'192.168.64.1',2,36,29448,NULL,'{#DEVNAME}: Disk read rate','clc93snar00007kiypalxeeen',''),('clc93snas003p7kiy2be22c4o',1,'Admin',1672319405,'192.168.64.1',2,36,29449,NULL,'{#DEVNAME}: Disk write rate','clc93snar00007kiypalxeeen',''),('clc93snas003q7kiyueq59xi4',1,'Admin',1672319405,'192.168.64.1',2,36,29450,NULL,'{#DEVNAME}: Disk read time (rate)','clc93snar00007kiypalxeeen',''),('clc93snas003r7kiyl7voshft',1,'Admin',1672319405,'192.168.64.1',2,36,29451,NULL,'{#DEVNAME}: Disk write time (rate)','clc93snar00007kiypalxeeen',''),('clc93snas003s7kiy4rr52gpk',1,'Admin',1672319405,'192.168.64.1',2,36,29452,NULL,'{#DEVNAME}: Disk average queue size (avgqu-sz)','clc93snar00007kiypalxeeen',''),('clc93snas003t7kiyos4y27h9',1,'Admin',1672319405,'192.168.64.1',2,36,29453,NULL,'{#DEVNAME}: Disk utilization','clc93snar00007kiypalxeeen',''),('clc93snas003u7kiyma8p76z9',1,'Admin',1672319405,'192.168.64.1',2,36,31006,NULL,'IIS: AppPool {#APPPOOL} state','clc93snar00007kiypalxeeen',''),('clc93snas003v7kiyv0lynquo',1,'Admin',1672319405,'192.168.64.1',2,36,31007,NULL,'IIS: {#APPPOOL} Uptime','clc93snar00007kiypalxeeen',''),('clc93snas003w7kiymz0i7en6',1,'Admin',1672319405,'192.168.64.1',2,36,31008,NULL,'IIS: AppPool {#APPPOOL} recycles','clc93snar00007kiypalxeeen',''),('clc93snas003x7kiyo8lmanwu',1,'Admin',1672319405,'192.168.64.1',2,36,31009,NULL,'IIS: AppPool {#APPPOOL} current queue size','clc93snar00007kiypalxeeen',''),('clc93snas003y7kiyivdsgjwn',1,'Admin',1672319405,'192.168.64.1',2,36,31048,NULL,'IIS: AppPool {#APPPOOL} state','clc93snar00007kiypalxeeen',''),('clc93snas003z7kiy5g6c0njw',1,'Admin',1672319405,'192.168.64.1',2,36,31049,NULL,'IIS: {#APPPOOL} Uptime','clc93snar00007kiypalxeeen',''),('clc93snas00407kiy58k2jnym',1,'Admin',1672319405,'192.168.64.1',2,36,31050,NULL,'IIS: AppPool {#APPPOOL} recycles','clc93snar00007kiypalxeeen',''),('clc93snas00417kiy98ur6kw6',1,'Admin',1672319405,'192.168.64.1',2,36,31051,NULL,'IIS: AppPool {#APPPOOL} current queue size','clc93snar00007kiypalxeeen',''),('clc93snas00427kiy1jvevjwq',1,'Admin',1672319405,'192.168.64.1',2,36,31370,NULL,'{#DEVNAME}: Disk read request avg waiting time (r_await)','clc93snar00007kiypalxeeen',''),('clc93snas00437kiy85wmthtx',1,'Admin',1672319405,'192.168.64.1',2,36,31371,NULL,'{#DEVNAME}: Disk write request avg waiting time (w_await)','clc93snar00007kiypalxeeen',''),('clc93snas00447kiyqtnrjd7s',1,'Admin',1672319405,'192.168.64.1',2,36,31372,NULL,'{#DEVNAME}: Get stats','clc93snar00007kiypalxeeen',''),('clc93snas00457kiydscnf7vg',1,'Admin',1672319405,'192.168.64.1',2,36,31379,NULL,'{#DEVNAME}: Disk average queue size (avgqu-sz)','clc93snar00007kiypalxeeen',''),('clc93snas00467kiybpb3m799',1,'Admin',1672319405,'192.168.64.1',2,36,31380,NULL,'{#DEVNAME}: Disk read rate','clc93snar00007kiypalxeeen',''),('clc93snas00477kiycgo8gs6o',1,'Admin',1672319405,'192.168.64.1',2,36,31381,NULL,'{#DEVNAME}: Disk read time (rate)','clc93snar00007kiypalxeeen',''),('clc93snas00487kiyz7oefbey',1,'Admin',1672319405,'192.168.64.1',2,36,31382,NULL,'{#DEVNAME}: Disk utilization','clc93snar00007kiypalxeeen',''),('clc93snas00497kiy54hkfqz3',1,'Admin',1672319405,'192.168.64.1',2,36,31383,NULL,'{#DEVNAME}: Disk write rate','clc93snar00007kiypalxeeen',''),('clc93snas004a7kiybga9zk2n',1,'Admin',1672319405,'192.168.64.1',2,36,31384,NULL,'{#DEVNAME}: Disk write time (rate)','clc93snar00007kiypalxeeen',''),('clc93snas004b7kiybekbq4me',1,'Admin',1672319405,'192.168.64.1',2,36,31902,NULL,'{#DEVNAME}: Disk read request avg waiting time (r_await)','clc93snar00007kiypalxeeen',''),('clc93snas004c7kiycv9d3o8z',1,'Admin',1672319405,'192.168.64.1',2,36,31903,NULL,'{#DEVNAME}: Disk write request avg waiting time (w_await)','clc93snar00007kiypalxeeen',''),('clc93snas004d7kiyc6lz9yo4',1,'Admin',1672319405,'192.168.64.1',2,36,31904,NULL,'{#DEVNAME}: Get stats','clc93snar00007kiypalxeeen',''),('clc93snas004e7kiy09375n85',1,'Admin',1672319405,'192.168.64.1',2,36,31932,NULL,'{#DEVNAME}: Disk average queue size (avgqu-sz)','clc93snar00007kiypalxeeen',''),('clc93snas004f7kiyxzkmehsa',1,'Admin',1672319405,'192.168.64.1',2,36,31933,NULL,'{#DEVNAME}: Disk read rate','clc93snar00007kiypalxeeen',''),('clc93snas004g7kiymdbe98e5',1,'Admin',1672319405,'192.168.64.1',2,36,31934,NULL,'{#DEVNAME}: Disk read time (rate)','clc93snar00007kiypalxeeen',''),('clc93snas004h7kiygvb2roqn',1,'Admin',1672319405,'192.168.64.1',2,36,31935,NULL,'{#DEVNAME}: Disk utilization','clc93snar00007kiypalxeeen',''),('clc93snas004i7kiy4125xxdh',1,'Admin',1672319405,'192.168.64.1',2,36,31936,NULL,'{#DEVNAME}: Disk write rate','clc93snar00007kiypalxeeen',''),('clc93snas004j7kiys88kdd9k',1,'Admin',1672319405,'192.168.64.1',2,36,31937,NULL,'{#DEVNAME}: Disk write time (rate)','clc93snar00007kiypalxeeen',''),('clc93snas004k7kiywfw2j4nc',1,'Admin',1672319405,'192.168.64.1',2,36,31905,NULL,'{#FSNAME}: Free inodes in %','clc93snar00007kiypalxeeen',''),('clc93snas004l7kiyppdgs6bc',1,'Admin',1672319405,'192.168.64.1',2,36,31906,NULL,'{#FSNAME}: Space utilization','clc93snar00007kiypalxeeen',''),('clc93snas004m7kiy85ose8id',1,'Admin',1672319405,'192.168.64.1',2,36,31907,NULL,'{#FSNAME}: Total space','clc93snar00007kiypalxeeen',''),('clc93snas004n7kiyt0v4httc',1,'Admin',1672319405,'192.168.64.1',2,36,31908,NULL,'{#FSNAME}: Used space','clc93snar00007kiypalxeeen',''),('clc93snas004o7kiygjrf0416',1,'Admin',1672319405,'192.168.64.1',2,36,44375,NULL,'{#FSNAME}: Get filesystem data','clc93snar00007kiypalxeeen',''),('clc93snas004p7kiyq9ceicip',1,'Admin',1672319405,'192.168.64.1',2,36,44376,NULL,'{#FSNAME}: Filesystem is read-only','clc93snar00007kiypalxeeen',''),('clc93snas004q7kiy6vct8vf9',1,'Admin',1672319405,'192.168.64.1',2,36,33467,NULL,'Jenkins: Computer [{#DISPLAY_NAME}]: Available physical memory','clc93snar00007kiypalxeeen',''),('clc93snas004r7kiysemgwcu8',1,'Admin',1672319405,'192.168.64.1',2,36,33468,NULL,'Jenkins: Computer [{#DISPLAY_NAME}]: Available swap space','clc93snar00007kiypalxeeen',''),('clc93snas004s7kiy6zrazyb6',1,'Admin',1672319405,'192.168.64.1',2,36,33469,NULL,'Jenkins: Computer [{#DISPLAY_NAME}]: Clock difference','clc93snar00007kiypalxeeen',''),('clc93snas004t7kiyjoorga67',1,'Admin',1672319405,'192.168.64.1',2,36,33470,NULL,'Jenkins: Computer [{#DISPLAY_NAME}]: Available disk space','clc93snar00007kiypalxeeen',''),('clc93snas004u7kiyi2tfl9u1',1,'Admin',1672319405,'192.168.64.1',2,36,33471,NULL,'Jenkins: Computer [{#DISPLAY_NAME}]: Idle','clc93snar00007kiypalxeeen',''),('clc93snas004v7kiyl6lcpe9f',1,'Admin',1672319405,'192.168.64.1',2,36,33472,NULL,'Jenkins: Computer [{#DISPLAY_NAME}]: Executors','clc93snar00007kiypalxeeen',''),('clc93snas004w7kiyx21hp4vx',1,'Admin',1672319405,'192.168.64.1',2,36,33473,NULL,'Jenkins: Computer [{#DISPLAY_NAME}]: Offline cause reason','clc93snar00007kiypalxeeen',''),('clc93snas004x7kiysognefsj',1,'Admin',1672319405,'192.168.64.1',2,36,33474,NULL,'Jenkins: Computer [{#DISPLAY_NAME}]: Response time average','clc93snar00007kiypalxeeen',''),('clc93snas004y7kiyxjgejla4',1,'Admin',1672319405,'192.168.64.1',2,36,33475,NULL,'Jenkins: Computer [{#DISPLAY_NAME}]: State','clc93snar00007kiypalxeeen',''),('clc93snas004z7kiyjl5cbibi',1,'Admin',1672319405,'192.168.64.1',2,36,33476,NULL,'Jenkins: Computer [{#DISPLAY_NAME}]: Temporarily offline','clc93snar00007kiypalxeeen',''),('clc93snas00507kiy08f617nw',1,'Admin',1672319405,'192.168.64.1',2,36,33477,NULL,'Jenkins: Computer [{#DISPLAY_NAME}]: Available temp space','clc93snar00007kiypalxeeen',''),('clc93snas00517kiynf0c7wxv',1,'Admin',1672319405,'192.168.64.1',2,36,33478,NULL,'Jenkins: Computer [{#DISPLAY_NAME}]: Total physical memory','clc93snar00007kiypalxeeen',''),('clc93snas00527kiyephsnjre',1,'Admin',1672319405,'192.168.64.1',2,36,33479,NULL,'Jenkins: Computer [{#DISPLAY_NAME}]: Total swap space','clc93snar00007kiypalxeeen',''),('clc93snas00537kiypck257a1',1,'Admin',1672319405,'192.168.64.1',2,36,33480,NULL,'Jenkins job [{#NAME}]: Health score','clc93snar00007kiypalxeeen',''),('clc93snas00547kiy3q4bv0oj',1,'Admin',1672319405,'192.168.64.1',2,36,33481,NULL,'Jenkins job [{#NAME}]: Last Build duration','clc93snar00007kiypalxeeen',''),('clc93snas00557kiy9t1tq71o',1,'Admin',1672319405,'192.168.64.1',2,36,33482,NULL,'Jenkins job [{#NAME}]: Last Build number','clc93snar00007kiypalxeeen',''),('clc93snas00567kiy425zf91u',1,'Admin',1672319405,'192.168.64.1',2,36,33483,NULL,'Jenkins job [{#NAME}]: Last Build result','clc93snar00007kiypalxeeen',''),('clc93snas00577kiywh2072hd',1,'Admin',1672319405,'192.168.64.1',2,36,33484,NULL,'Jenkins job [{#NAME}]: Last Build timestamp','clc93snar00007kiypalxeeen',''),('clc93snas00587kiydfom34zz',1,'Admin',1672319405,'192.168.64.1',2,36,33485,NULL,'Jenkins job [{#NAME}]: Last Failed Build duration','clc93snar00007kiypalxeeen',''),('clc93snas00597kiyug36pumg',1,'Admin',1672319405,'192.168.64.1',2,36,33486,NULL,'Jenkins job [{#NAME}]: Last Failed Build number','clc93snar00007kiypalxeeen',''),('clc93snas005a7kiy74n4x6ls',1,'Admin',1672319405,'192.168.64.1',2,36,33487,NULL,'Jenkins job [{#NAME}]: Last Failed Build timestamp','clc93snar00007kiypalxeeen',''),('clc93snas005b7kiykpkxy7hr',1,'Admin',1672319405,'192.168.64.1',2,36,33488,NULL,'Jenkins job [{#NAME}]: Last Successful Build duration','clc93snar00007kiypalxeeen',''),('clc93snas005c7kiy0x0jfd0k',1,'Admin',1672319405,'192.168.64.1',2,36,33489,NULL,'Jenkins job [{#NAME}]: Last Successful Build number','clc93snar00007kiypalxeeen',''),('clc93snas005d7kiy7yhqxq30',1,'Admin',1672319405,'192.168.64.1',2,36,33490,NULL,'Jenkins job [{#NAME}]: Last Successful Build timestamp','clc93snar00007kiypalxeeen',''),('clc93snas005e7kiylandyfwh',1,'Admin',1672319405,'192.168.64.1',2,36,33552,NULL,'Data region {#JMXNAME}: Allocation, rate','clc93snar00007kiypalxeeen',''),('clc93snas005f7kiyl131dgkh',1,'Admin',1672319405,'192.168.64.1',2,36,33553,NULL,'Data region {#JMXNAME}: Checkpoint buffer size','clc93snar00007kiypalxeeen',''),('clc93snas005g7kiym9vubb5z',1,'Admin',1672319405,'192.168.64.1',2,36,33554,NULL,'Data region {#JMXNAME}: Dirty pages','clc93snar00007kiypalxeeen',''),('clc93snas005h7kiyvruys108',1,'Admin',1672319405,'192.168.64.1',2,36,33555,NULL,'Data region {#JMXNAME}: Eviction, rate','clc93snar00007kiypalxeeen',''),('clc93snas005i7kiy6u8nho7j',1,'Admin',1672319405,'192.168.64.1',2,36,33556,NULL,'Data region {#JMXNAME}: Size, max','clc93snar00007kiypalxeeen',''),('clc93snas005j7kiywmk5vcg3',1,'Admin',1672319405,'192.168.64.1',2,36,33557,NULL,'Data region {#JMXNAME}: Offheap size','clc93snar00007kiypalxeeen',''),('clc93snas005k7kiy0a5t8800',1,'Admin',1672319405,'192.168.64.1',2,36,33558,NULL,'Data region {#JMXNAME}: Offheap used size','clc93snar00007kiypalxeeen',''),('clc93snas005l7kiyz59j6z0k',1,'Admin',1672319405,'192.168.64.1',2,36,33559,NULL,'Data region {#JMXNAME}: Pages fill factor','clc93snar00007kiypalxeeen',''),('clc93snas005m7kiyrkggg3v8',1,'Admin',1672319405,'192.168.64.1',2,36,33560,NULL,'Data region {#JMXNAME}: Pages replace, rate','clc93snar00007kiypalxeeen',''),('clc93snas005n7kiyegre2enj',1,'Admin',1672319405,'192.168.64.1',2,36,33561,NULL,'Data region {#JMXNAME}: Allocated, bytes','clc93snar00007kiypalxeeen',''),('clc93snas005o7kiy05ryl865',1,'Admin',1672319405,'192.168.64.1',2,36,33562,NULL,'Data region {#JMXNAME}: Used checkpoint buffer size','clc93snar00007kiypalxeeen',''),('clc93snas005p7kiyhknxml6a',1,'Admin',1672319405,'192.168.64.1',2,36,33563,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs active, current','clc93snar00007kiypalxeeen',''),('clc93snas005q7kiy4j11guxk',1,'Admin',1672319405,'192.168.64.1',2,36,33564,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs cancelled, current','clc93snar00007kiypalxeeen',''),('clc93snas005r7kiytivu1iqb',1,'Admin',1672319405,'192.168.64.1',2,36,33565,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: PME duration, current','clc93snar00007kiypalxeeen',''),('clc93snas005s7kiy3vzol1zb',1,'Admin',1672319405,'192.168.64.1',2,36,33566,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs rejected, current','clc93snar00007kiypalxeeen',''),('clc93snas005t7kiyjmwju09s',1,'Admin',1672319405,'192.168.64.1',2,36,33567,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Threads count, current','clc93snar00007kiypalxeeen',''),('clc93snas005u7kiy65myt2as',1,'Admin',1672319405,'192.168.64.1',2,36,33568,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs waiting, current','clc93snar00007kiypalxeeen',''),('clc93snas005v7kiyj7h0yswa',1,'Admin',1672319405,'192.168.64.1',2,36,33569,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Heap memory used','clc93snar00007kiypalxeeen',''),('clc93snas005w7kiygw98cfvd',1,'Admin',1672319405,'192.168.64.1',2,36,33570,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs cancelled, rate','clc93snar00007kiypalxeeen',''),('clc93snas005x7kiy9p01sqhm',1,'Admin',1672319405,'192.168.64.1',2,36,33571,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs executed, rate','clc93snar00007kiypalxeeen',''),('clc93snas005y7kiyecydyymo',1,'Admin',1672319405,'192.168.64.1',2,36,33572,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs rejects, rate','clc93snar00007kiypalxeeen',''),('clc93snas005z7kiyrbilhd3h',1,'Admin',1672319405,'192.168.64.1',2,36,33573,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes, Active baseline','clc93snar00007kiypalxeeen',''),('clc93snas00607kiyqf3v2tqh',1,'Admin',1672319405,'192.168.64.1',2,36,33574,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes, Baseline','clc93snar00007kiypalxeeen',''),('clc93snas00617kiy8a2ii366',1,'Admin',1672319405,'192.168.64.1',2,36,33575,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes, Client','clc93snar00007kiypalxeeen',''),('clc93snas00627kiyexkxflsm',1,'Admin',1672319405,'192.168.64.1',2,36,33576,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes, total','clc93snar00007kiypalxeeen',''),('clc93snas00637kiy2w8yblks',1,'Admin',1672319405,'192.168.64.1',2,36,33577,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes, Server','clc93snar00007kiypalxeeen',''),('clc93snas00647kiy3aftyyfc',1,'Admin',1672319405,'192.168.64.1',2,36,33578,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Version','clc93snar00007kiypalxeeen',''),('clc93snas00657kiyttt5icep',1,'Admin',1672319405,'192.168.64.1',2,36,33579,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Local node ID','clc93snar00007kiypalxeeen',''),('clc93snas00667kiy5arvkbce',1,'Admin',1672319405,'192.168.64.1',2,36,33580,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Uptime','clc93snar00007kiypalxeeen',''),('clc93snas00677kiy74o8cyy8',1,'Admin',1672319405,'192.168.64.1',2,36,33581,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Communication outbound messages queue','clc93snar00007kiypalxeeen',''),('clc93snas00687kiy4bvfh357',1,'Admin',1672319405,'192.168.64.1',2,36,33582,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Communication messages received, rate','clc93snar00007kiypalxeeen',''),('clc93snas00697kiy858uhpkj',1,'Admin',1672319405,'192.168.64.1',2,36,33584,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Communication messages sent, rate','clc93snar00007kiypalxeeen',''),('clc93snas006a7kiysv3wdxtn',1,'Admin',1672319405,'192.168.64.1',2,36,33585,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Coordinator','clc93snar00007kiypalxeeen',''),('clc93snas006b7kiy9gsi7i1f',1,'Admin',1672319405,'192.168.64.1',2,36,33586,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Discovery message worker queue','clc93snar00007kiypalxeeen',''),('clc93snas006c7kiybxazf37m',1,'Admin',1672319405,'192.168.64.1',2,36,33587,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes failed','clc93snar00007kiypalxeeen',''),('clc93snas006d7kiyjz3759pe',1,'Admin',1672319405,'192.168.64.1',2,36,33588,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes joined','clc93snar00007kiypalxeeen',''),('clc93snas006e7kiyib9ob96e',1,'Admin',1672319405,'192.168.64.1',2,36,33589,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes left','clc93snar00007kiypalxeeen',''),('clc93snas006f7kiy1ykvpkxn',1,'Admin',1672319405,'192.168.64.1',2,36,33590,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Discovery reconnect, rate','clc93snar00007kiypalxeeen',''),('clc93snas006g7kiyd2cg1ct8',1,'Admin',1672319405,'192.168.64.1',2,36,33591,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: TotalProcessedMessages','clc93snar00007kiypalxeeen',''),('clc93snas006h7kiyiicdr635',1,'Admin',1672319405,'192.168.64.1',2,36,33592,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Discovery messages received, rate','clc93snar00007kiypalxeeen',''),('clc93snas006i7kiyl466ht9g',1,'Admin',1672319405,'192.168.64.1',2,36,33593,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Locked keys','clc93snar00007kiypalxeeen',''),('clc93snas006j7kiy2vyg00ut',1,'Admin',1672319405,'192.168.64.1',2,36,33594,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Transactions owner, current','clc93snar00007kiypalxeeen',''),('clc93snas006k7kiyscdymvoq',1,'Admin',1672319405,'192.168.64.1',2,36,33595,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Transactions committed, rate','clc93snar00007kiypalxeeen',''),('clc93snas006l7kiycrn7rcow',1,'Admin',1672319405,'192.168.64.1',2,36,33596,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Transactions holding lock, current','clc93snar00007kiypalxeeen',''),('clc93snas006m7kiy23tawyqk',1,'Admin',1672319405,'192.168.64.1',2,36,33597,NULL,'Ignite [{#JMXIGNITEINSTANCENAME}]: Transactions rolledback, rate','clc93snar00007kiypalxeeen',''),('clc93snas006n7kiy5xb3xhmm',1,'Admin',1672319405,'192.168.64.1',2,36,33598,NULL,'Cache group [{#JMXNAME}]: Backups','clc93snar00007kiypalxeeen',''),('clc93snas006o7kiyt73ymt6v',1,'Admin',1672319405,'192.168.64.1',2,36,33599,NULL,'Cache group [{#JMXNAME}]: Caches','clc93snar00007kiypalxeeen',''),('clc93snas006p7kiy7gduroq6',1,'Admin',1672319405,'192.168.64.1',2,36,33600,NULL,'Cache group [{#JMXNAME}]: Local node partitions, moving','clc93snar00007kiypalxeeen',''),('clc93snas006q7kiygk7rllew',1,'Admin',1672319405,'192.168.64.1',2,36,33601,NULL,'Cache group [{#JMXNAME}]: Local node partitions, owning','clc93snar00007kiypalxeeen',''),('clc93snas006r7kiybfrkksle',1,'Admin',1672319405,'192.168.64.1',2,36,33602,NULL,'Cache group [{#JMXNAME}]: Local node entries, renting','clc93snar00007kiypalxeeen',''),('clc93snas006s7kiyvcgoh2sk',1,'Admin',1672319405,'192.168.64.1',2,36,33603,NULL,'Cache group [{#JMXNAME}]: Local node partitions, renting','clc93snar00007kiypalxeeen',''),('clc93snas006t7kiyj0kav6o9',1,'Admin',1672319405,'192.168.64.1',2,36,33604,NULL,'Cache group [{#JMXNAME}]: Partition copies, max','clc93snar00007kiypalxeeen',''),('clc93snas006u7kiy8kcvjhan',1,'Admin',1672319405,'192.168.64.1',2,36,33605,NULL,'Cache group [{#JMXNAME}]: Partition copies, min','clc93snar00007kiypalxeeen',''),('clc93snas006v7kiy6pipaopr',1,'Admin',1672319405,'192.168.64.1',2,36,33606,NULL,'Cache group [{#JMXNAME}]: Partitions','clc93snar00007kiypalxeeen',''),('clc93snas006w7kiycdrnm5x9',1,'Admin',1672319405,'192.168.64.1',2,36,33607,NULL,'Thread pool [{#JMXNAME}]: Pool size, core','clc93snar00007kiypalxeeen',''),('clc93snas006x7kiyseczokb1',1,'Admin',1672319405,'192.168.64.1',2,36,33608,NULL,'Thread pool [{#JMXNAME}]: Pool size, max','clc93snar00007kiypalxeeen',''),('clc93snas006y7kiyt07up3d5',1,'Admin',1672319405,'192.168.64.1',2,36,33609,NULL,'Thread pool [{#JMXNAME}]: Pool size','clc93snar00007kiypalxeeen',''),('clc93snas006z7kiy6m4278q0',1,'Admin',1672319405,'192.168.64.1',2,36,33610,NULL,'Thread pool [{#JMXNAME}]: Queue size','clc93snar00007kiypalxeeen',''),('clc93snas00707kiym4gp312d',1,'Admin',1672319405,'192.168.64.1',2,36,33611,NULL,'Cache group [{#JMXGROUP}]: Cache gets, rate','clc93snar00007kiypalxeeen',''),('clc93snas00717kiy0dl1mm78',1,'Admin',1672319405,'192.168.64.1',2,36,33612,NULL,'Cache group [{#JMXGROUP}]: Cache hits, pct','clc93snar00007kiypalxeeen',''),('clc93snas00727kiyrc01pfup',1,'Admin',1672319405,'192.168.64.1',2,36,33613,NULL,'Cache group [{#JMXGROUP}]: Cache misses, pct','clc93snar00007kiypalxeeen',''),('clc93snas00737kiy9xr2sleb',1,'Admin',1672319405,'192.168.64.1',2,36,33614,NULL,'Cache group [{#JMXGROUP}]: Cache puts, rate','clc93snar00007kiypalxeeen',''),('clc93snas00747kiyjv6i00fu',1,'Admin',1672319405,'192.168.64.1',2,36,33615,NULL,'Cache group [{#JMXGROUP}]: Cache removals, rate','clc93snar00007kiypalxeeen',''),('clc93snas00757kiy9tbgnf3m',1,'Admin',1672319405,'192.168.64.1',2,36,33616,NULL,'Cache group [{#JMXGROUP}]: Cache size','clc93snar00007kiypalxeeen',''),('clc93snas00767kiyf21hhvbw',1,'Admin',1672319405,'192.168.64.1',2,36,33617,NULL,'Cache group [{#JMXGROUP}]: Cache transaction commits, rate','clc93snar00007kiypalxeeen',''),('clc93snas00777kiyrdmlzl16',1,'Admin',1672319405,'192.168.64.1',2,36,33618,NULL,'Cache group [{#JMXGROUP}]: Cache transaction rollbacks, rate','clc93snar00007kiypalxeeen',''),('clc93snas00787kiyta6g5emc',1,'Admin',1672319405,'192.168.64.1',2,36,33619,NULL,'Cache group [{#JMXGROUP}]: Cache heap entries','clc93snar00007kiypalxeeen',''),('clc93snas00797kiyo0h421d7',1,'Admin',1672319405,'192.168.64.1',2,36,33628,NULL,'System-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snas007a7kiyom730y6c',1,'Admin',1672319405,'192.168.64.1',2,36,33629,NULL,'System-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snas007b7kiymoys5l86',1,'Admin',1672319405,'192.168.64.1',2,36,33703,NULL,'BBU {#ID} on {#LOCATION}: Health status','clc93snar00007kiypalxeeen',''),('clc93snas007c7kiyhkmmcox9',1,'Admin',1672319405,'192.168.64.1',2,36,33704,NULL,'BBU {#ID} on {#LOCATION}: Running status','clc93snar00007kiypalxeeen',''),('clc93snas007d7kiyw78eo5bt',1,'Admin',1672319405,'192.168.64.1',2,36,33705,NULL,'Controller {#ID}: CPU utilization','clc93snar00007kiypalxeeen',''),('clc93snas007e7kiyrol0o0cz',1,'Admin',1672319405,'192.168.64.1',2,36,33706,NULL,'Controller {#ID}: Health status','clc93snar00007kiypalxeeen',''),('clc93snas007f7kiykxur9e53',1,'Admin',1672319405,'192.168.64.1',2,36,33707,NULL,'Controller {#ID}: Memory utilization','clc93snar00007kiypalxeeen',''),('clc93snas007g7kiycvwlxx0m',1,'Admin',1672319405,'192.168.64.1',2,36,33708,NULL,'Controller {#ID}: Role','clc93snar00007kiypalxeeen',''),('clc93snas007h7kiyy78u4kze',1,'Admin',1672319405,'192.168.64.1',2,36,33709,NULL,'Controller {#ID}: Running status','clc93snar00007kiypalxeeen',''),('clc93snas007i7kiyu2yakwfc',1,'Admin',1672319405,'192.168.64.1',2,36,33710,NULL,'Disk {#MODEL} on {#LOCATION}: Health score','clc93snar00007kiypalxeeen',''),('clc93snat007j7kiyxl5optj2',1,'Admin',1672319405,'192.168.64.1',2,36,33711,NULL,'Disk {#MODEL} on {#LOCATION}: Health status','clc93snar00007kiypalxeeen',''),('clc93snat007k7kiyn5xluml4',1,'Admin',1672319405,'192.168.64.1',2,36,33712,NULL,'Disk {#MODEL} on {#LOCATION}: Running status','clc93snar00007kiypalxeeen',''),('clc93snat007l7kiyk91ooy27',1,'Admin',1672319405,'192.168.64.1',2,36,33713,NULL,'Disk {#MODEL} on {#LOCATION}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat007m7kiy4x0yl46u',1,'Admin',1672319405,'192.168.64.1',2,36,33714,NULL,'Enclosure {#NAME}: Health status','clc93snar00007kiypalxeeen',''),('clc93snat007n7kiyr66x65po',1,'Admin',1672319405,'192.168.64.1',2,36,33715,NULL,'Enclosure {#NAME}: Running status','clc93snar00007kiypalxeeen',''),('clc93snat007o7kiyv877p83j',1,'Admin',1672319405,'192.168.64.1',2,36,33716,NULL,'Enclosure {#NAME}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat007p7kiy36fdcil2',1,'Admin',1672319405,'192.168.64.1',2,36,33717,NULL,'FAN {#ID} on {#LOCATION}: Health status','clc93snar00007kiypalxeeen',''),('clc93snat007q7kiyyakv394y',1,'Admin',1672319405,'192.168.64.1',2,36,33718,NULL,'FAN {#ID} on {#LOCATION}: Running status','clc93snar00007kiypalxeeen',''),('clc93snat007r7kiyocv1ychu',1,'Admin',1672319405,'192.168.64.1',2,36,33719,NULL,'LUN {#NAME}: Average total I/O latency','clc93snar00007kiypalxeeen',''),('clc93snat007s7kiy5m10xq7w',1,'Admin',1672319405,'192.168.64.1',2,36,33720,NULL,'LUN {#NAME}: Average read I/O latency','clc93snar00007kiypalxeeen',''),('clc93snat007t7kiyg25bsiku',1,'Admin',1672319405,'192.168.64.1',2,36,33721,NULL,'LUN {#NAME}: Average write I/O latency','clc93snar00007kiypalxeeen',''),('clc93snat007u7kiybu27fj42',1,'Admin',1672319405,'192.168.64.1',2,36,33722,NULL,'LUN {#NAME}: Read operations per second','clc93snar00007kiypalxeeen',''),('clc93snat007v7kiyxu5i693d',1,'Admin',1672319405,'192.168.64.1',2,36,33723,NULL,'LUN {#NAME}: Read traffic per second','clc93snar00007kiypalxeeen',''),('clc93snat007w7kiyelswof6i',1,'Admin',1672319405,'192.168.64.1',2,36,33724,NULL,'LUN {#NAME}: Total I/O per second','clc93snar00007kiypalxeeen',''),('clc93snat007x7kiyoje4pmjq',1,'Admin',1672319405,'192.168.64.1',2,36,33725,NULL,'LUN {#NAME}: Total traffic per second','clc93snar00007kiypalxeeen',''),('clc93snat007y7kiyghbbn42j',1,'Admin',1672319405,'192.168.64.1',2,36,33726,NULL,'LUN {#NAME}: Write operations per second','clc93snar00007kiypalxeeen',''),('clc93snat007z7kiy845dqznr',1,'Admin',1672319405,'192.168.64.1',2,36,33727,NULL,'LUN {#NAME}: Write traffic per second','clc93snar00007kiypalxeeen',''),('clc93snat00807kiymgdnlefl',1,'Admin',1672319405,'192.168.64.1',2,36,33728,NULL,'LUN {#NAME}: Capacity','clc93snar00007kiypalxeeen',''),('clc93snat00817kiyapk8iwk5',1,'Admin',1672319405,'192.168.64.1',2,36,33729,NULL,'LUN {#NAME}: Status','clc93snar00007kiypalxeeen',''),('clc93snat00827kiyz9fg6wen',1,'Admin',1672319405,'192.168.64.1',2,36,33730,NULL,'Node {#NODE}: CPU utilization','clc93snar00007kiypalxeeen',''),('clc93snat00837kiyqaj73q3z',1,'Admin',1672319405,'192.168.64.1',2,36,33731,NULL,'Node {#NODE}: Average I/O latency','clc93snar00007kiypalxeeen',''),('clc93snat00847kiymmnhflle',1,'Admin',1672319405,'192.168.64.1',2,36,33732,NULL,'Node {#NODE}: Read operations per second','clc93snar00007kiypalxeeen',''),('clc93snat00857kiyutokq12h',1,'Admin',1672319405,'192.168.64.1',2,36,33733,NULL,'Node {#NODE}: Read traffic per second','clc93snar00007kiypalxeeen',''),('clc93snat00867kiywf3rgbux',1,'Admin',1672319405,'192.168.64.1',2,36,33734,NULL,'Node {#NODE}: Total I/O per second','clc93snar00007kiypalxeeen',''),('clc93snat00877kiyvauggz51',1,'Admin',1672319405,'192.168.64.1',2,36,33735,NULL,'Node {#NODE}: Total traffic per second','clc93snar00007kiypalxeeen',''),('clc93snat00887kiy1rinzrt5',1,'Admin',1672319405,'192.168.64.1',2,36,33736,NULL,'Node {#NODE}: Write operations per second','clc93snar00007kiypalxeeen',''),('clc93snat00897kiycig605gg',1,'Admin',1672319405,'192.168.64.1',2,36,33737,NULL,'Node {#NODE}: Write traffic per second','clc93snar00007kiypalxeeen',''),('clc93snat008a7kiyl0py9paa',1,'Admin',1672319405,'192.168.64.1',2,36,33738,NULL,'Pool {#NAME}: Capacity free','clc93snar00007kiypalxeeen',''),('clc93snat008b7kiy2j9d94yl',1,'Admin',1672319405,'192.168.64.1',2,36,33739,NULL,'Pool {#NAME}: Capacity used percentage','clc93snar00007kiypalxeeen',''),('clc93snat008c7kiyujwmqltn',1,'Admin',1672319405,'192.168.64.1',2,36,33740,NULL,'Pool {#NAME}: Health status','clc93snar00007kiypalxeeen',''),('clc93snat008d7kiybrryvcnh',1,'Admin',1672319405,'192.168.64.1',2,36,33741,NULL,'Pool {#NAME}: Running status','clc93snar00007kiypalxeeen',''),('clc93snat008e7kiy53utwfim',1,'Admin',1672319405,'192.168.64.1',2,36,33742,NULL,'Pool {#NAME}: Capacity used','clc93snar00007kiypalxeeen',''),('clc93snat008f7kiy663not8e',1,'Admin',1672319405,'192.168.64.1',2,36,33743,NULL,'Pool {#NAME}: Capacity total','clc93snar00007kiypalxeeen',''),('clc93snat008g7kiym0nw19zk',1,'Admin',1672319405,'192.168.64.1',2,36,36567,NULL,'#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery status','clc93snar00007kiypalxeeen',''),('clc93snat008h7kiyaxaorqrn',1,'Admin',1672319405,'192.168.64.1',2,36,36568,NULL,'#{#CACHE_CNTRL_INDEX}: Disk array cache controller status','clc93snar00007kiypalxeeen',''),('clc93snat008i7kiy7t870jlt',1,'Admin',1672319405,'192.168.64.1',2,36,36569,NULL,'{#CNTLR_LOCATION}: Disk array controller model','clc93snar00007kiypalxeeen',''),('clc93snat008j7kiy7eazm4rj',1,'Admin',1672319405,'192.168.64.1',2,36,36570,NULL,'{#CNTLR_LOCATION}: Disk array controller status','clc93snar00007kiypalxeeen',''),('clc93snat008k7kiy5d73p09d',1,'Admin',1672319405,'192.168.64.1',2,36,36571,NULL,'Fan {#SNMPINDEX}: Fan status','clc93snar00007kiypalxeeen',''),('clc93snat008l7kiytljqb5hf',1,'Admin',1672319405,'192.168.64.1',2,36,36572,NULL,'{#ADAPTER_NAME} port {#ADAPTER_INDEX}: Status','clc93snar00007kiypalxeeen',''),('clc93snat008m7kiyff6s397r',1,'Admin',1672319405,'192.168.64.1',2,36,36573,NULL,'{#DISK_LOCATION}: Physical disk media type','clc93snar00007kiypalxeeen',''),('clc93snat008n7kiyhze1in3u',1,'Admin',1672319405,'192.168.64.1',2,36,36574,NULL,'{#DISK_LOCATION}: Physical disk model name','clc93snar00007kiypalxeeen',''),('clc93snat008o7kiyg0ksslrk',1,'Admin',1672319405,'192.168.64.1',2,36,36575,NULL,'{#DISK_LOCATION}: Physical disk serial number','clc93snar00007kiypalxeeen',''),('clc93snat008p7kiy8zxmosfg',1,'Admin',1672319405,'192.168.64.1',2,36,36576,NULL,'{#DISK_LOCATION}: Disk size','clc93snar00007kiypalxeeen',''),('clc93snat008q7kiy71nfws3o',1,'Admin',1672319405,'192.168.64.1',2,36,36577,NULL,'{#DISK_LOCATION}: Physical disk S.M.A.R.T. status','clc93snar00007kiypalxeeen',''),('clc93snat008r7kiymlw4wcqn',1,'Admin',1672319405,'192.168.64.1',2,36,36578,NULL,'{#DISK_LOCATION}: Physical disk status','clc93snar00007kiypalxeeen',''),('clc93snat008s7kiybxt6tzdc',1,'Admin',1672319405,'192.168.64.1',2,36,36579,NULL,'Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply status','clc93snar00007kiypalxeeen',''),('clc93snat008t7kiy058pklgg',1,'Admin',1672319405,'192.168.64.1',2,36,36580,NULL,'Ambient: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat008u7kiydwd1u0g5',1,'Admin',1672319405,'192.168.64.1',2,36,36581,NULL,'Ambient: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat008v7kiy376c3s6r',1,'Admin',1672319405,'192.168.64.1',2,36,36582,NULL,'CPU-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat008w7kiy7w288l9n',1,'Admin',1672319405,'192.168.64.1',2,36,36583,NULL,'CPU-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat008x7kiy24g05tme',1,'Admin',1672319405,'192.168.64.1',2,36,36584,NULL,'{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat008y7kiyux1m1ixv',1,'Admin',1672319405,'192.168.64.1',2,36,36585,NULL,'{#SNMPINDEX}: Temperature sensor location','clc93snar00007kiypalxeeen',''),('clc93snat008z7kiy53cpjset',1,'Admin',1672319405,'192.168.64.1',2,36,36586,NULL,'{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00907kiyfhuiiy9u',1,'Admin',1672319405,'192.168.64.1',2,36,36587,NULL,'I/O-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat00917kiy54iwj56j',1,'Admin',1672319405,'192.168.64.1',2,36,36588,NULL,'I/O-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00927kiyrjhmnzh3',1,'Admin',1672319405,'192.168.64.1',2,36,36589,NULL,'Memory-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat00937kiyyh0jir58',1,'Admin',1672319405,'192.168.64.1',2,36,36590,NULL,'Memory-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00947kiy1r10u4ra',1,'Admin',1672319405,'192.168.64.1',2,36,36591,NULL,'PSU-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat00957kiyzhjosvj3',1,'Admin',1672319405,'192.168.64.1',2,36,36592,NULL,'PSU-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00967kiyi0iqr8oh',1,'Admin',1672319405,'192.168.64.1',2,36,36593,NULL,'System-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat00977kiy3kknefeb',1,'Admin',1672319405,'192.168.64.1',2,36,36594,NULL,'System-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00987kiypxyaqarc',1,'Admin',1672319405,'192.168.64.1',2,36,36595,NULL,'Disk {#SNMPINDEX}({#DISK_NAME}): Layout type','clc93snar00007kiypalxeeen',''),('clc93snat00997kiy6ezysg6a',1,'Admin',1672319405,'192.168.64.1',2,36,36596,NULL,'Disk {#SNMPINDEX}({#DISK_NAME}): Disk size','clc93snar00007kiypalxeeen',''),('clc93snat009a7kiymuk47xyd',1,'Admin',1672319405,'192.168.64.1',2,36,36597,NULL,'Disk {#SNMPINDEX}({#DISK_NAME}): Status','clc93snar00007kiypalxeeen',''),('clc93snat009b7kiy80pytbdx',1,'Admin',1672319405,'192.168.64.1',2,36,36624,NULL,'#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery status','clc93snar00007kiypalxeeen',''),('clc93snat009c7kiynrr7jdu6',1,'Admin',1672319405,'192.168.64.1',2,36,36625,NULL,'#{#CACHE_CNTRL_INDEX}: Disk array cache controller status','clc93snar00007kiypalxeeen',''),('clc93snat009d7kiytymwlm0s',1,'Admin',1672319405,'192.168.64.1',2,36,36626,NULL,'{#CNTLR_LOCATION}: Disk array controller model','clc93snar00007kiypalxeeen',''),('clc93snat009e7kiyows0rio1',1,'Admin',1672319405,'192.168.64.1',2,36,36627,NULL,'{#CNTLR_LOCATION}: Disk array controller status','clc93snar00007kiypalxeeen',''),('clc93snat009f7kiy2tio1cp8',1,'Admin',1672319405,'192.168.64.1',2,36,36628,NULL,'Fan {#SNMPINDEX}: Fan status','clc93snar00007kiypalxeeen',''),('clc93snat009g7kiy50re3e5k',1,'Admin',1672319405,'192.168.64.1',2,36,36629,NULL,'{#ADAPTER_NAME} port {#ADAPTER_INDEX}: Status','clc93snar00007kiypalxeeen',''),('clc93snat009h7kiy2cq0wk3u',1,'Admin',1672319405,'192.168.64.1',2,36,36630,NULL,'{#DISK_LOCATION}: Physical disk media type','clc93snar00007kiypalxeeen',''),('clc93snat009i7kiymirrnu5t',1,'Admin',1672319405,'192.168.64.1',2,36,36631,NULL,'{#DISK_LOCATION}: Physical disk model name','clc93snar00007kiypalxeeen',''),('clc93snat009j7kiypnw4qu0t',1,'Admin',1672319405,'192.168.64.1',2,36,36632,NULL,'{#DISK_LOCATION}: Physical disk serial number','clc93snar00007kiypalxeeen',''),('clc93snat009k7kiyv5d3p034',1,'Admin',1672319405,'192.168.64.1',2,36,36633,NULL,'{#DISK_LOCATION}: Disk size','clc93snar00007kiypalxeeen',''),('clc93snat009l7kiyscq8jdr7',1,'Admin',1672319405,'192.168.64.1',2,36,36634,NULL,'{#DISK_LOCATION}: Physical disk S.M.A.R.T. status','clc93snar00007kiypalxeeen',''),('clc93snat009m7kiyb1io8ngf',1,'Admin',1672319405,'192.168.64.1',2,36,36635,NULL,'{#DISK_LOCATION}: Physical disk status','clc93snar00007kiypalxeeen',''),('clc93snat009n7kiyp3xio0dp',1,'Admin',1672319405,'192.168.64.1',2,36,36636,NULL,'Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply status','clc93snar00007kiypalxeeen',''),('clc93snat009o7kiy6kl8m366',1,'Admin',1672319405,'192.168.64.1',2,36,36637,NULL,'Ambient: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat009p7kiyyf3j5l6v',1,'Admin',1672319405,'192.168.64.1',2,36,36638,NULL,'Ambient: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat009q7kiyu9q7f60h',1,'Admin',1672319405,'192.168.64.1',2,36,36639,NULL,'CPU-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat009r7kiynfoo6ky3',1,'Admin',1672319405,'192.168.64.1',2,36,36640,NULL,'CPU-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat009s7kiyakq0qjdr',1,'Admin',1672319405,'192.168.64.1',2,36,36641,NULL,'{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat009t7kiy8xhm7is8',1,'Admin',1672319405,'192.168.64.1',2,36,36642,NULL,'{#SNMPINDEX}: Temperature sensor location','clc93snar00007kiypalxeeen',''),('clc93snat009u7kiy88lnqbvh',1,'Admin',1672319405,'192.168.64.1',2,36,36643,NULL,'{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat009v7kiyuxw8gwvo',1,'Admin',1672319405,'192.168.64.1',2,36,36644,NULL,'I/O-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat009w7kiy1ttgfu23',1,'Admin',1672319405,'192.168.64.1',2,36,36645,NULL,'I/O-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat009x7kiykm00s49o',1,'Admin',1672319405,'192.168.64.1',2,36,36646,NULL,'Memory-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat009y7kiyy0gidbn5',1,'Admin',1672319405,'192.168.64.1',2,36,36647,NULL,'Memory-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat009z7kiywzecqpi8',1,'Admin',1672319405,'192.168.64.1',2,36,36648,NULL,'PSU-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat00a07kiygofvdbjm',1,'Admin',1672319405,'192.168.64.1',2,36,36649,NULL,'PSU-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00a17kiy835hddcw',1,'Admin',1672319405,'192.168.64.1',2,36,36650,NULL,'System-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat00a27kiy2alh63gk',1,'Admin',1672319405,'192.168.64.1',2,36,36651,NULL,'System-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00a37kiy60o9es9i',1,'Admin',1672319405,'192.168.64.1',2,36,36652,NULL,'Disk {#SNMPINDEX}({#DISK_NAME}): Layout type','clc93snar00007kiypalxeeen',''),('clc93snat00a47kiyrbc1xcb3',1,'Admin',1672319405,'192.168.64.1',2,36,36653,NULL,'Disk {#SNMPINDEX}({#DISK_NAME}): Disk size','clc93snar00007kiypalxeeen',''),('clc93snat00a57kiyo5uh18xn',1,'Admin',1672319405,'192.168.64.1',2,36,36654,NULL,'Disk {#SNMPINDEX}({#DISK_NAME}): Status','clc93snar00007kiypalxeeen',''),('clc93snat00a67kiy7h7u8dkl',1,'Admin',1672319405,'192.168.64.1',2,36,36681,NULL,'#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery status','clc93snar00007kiypalxeeen',''),('clc93snat00a77kiynsus1ggd',1,'Admin',1672319405,'192.168.64.1',2,36,36682,NULL,'#{#CACHE_CNTRL_INDEX}: Disk array cache controller status','clc93snar00007kiypalxeeen',''),('clc93snat00a87kiyynowfohk',1,'Admin',1672319405,'192.168.64.1',2,36,36683,NULL,'{#CNTLR_LOCATION}: Disk array controller model','clc93snar00007kiypalxeeen',''),('clc93snat00a97kiyd6amrdpt',1,'Admin',1672319405,'192.168.64.1',2,36,36684,NULL,'{#CNTLR_LOCATION}: Disk array controller status','clc93snar00007kiypalxeeen',''),('clc93snat00aa7kiy5zb2eaww',1,'Admin',1672319405,'192.168.64.1',2,36,36685,NULL,'Fan {#SNMPINDEX}: Fan status','clc93snar00007kiypalxeeen',''),('clc93snat00ab7kiy7t13eekb',1,'Admin',1672319405,'192.168.64.1',2,36,36686,NULL,'{#ADAPTER_NAME} port {#ADAPTER_INDEX}: Status','clc93snar00007kiypalxeeen',''),('clc93snat00ac7kiycbvzpat1',1,'Admin',1672319405,'192.168.64.1',2,36,36687,NULL,'{#DISK_LOCATION}: Physical disk media type','clc93snar00007kiypalxeeen',''),('clc93snat00ad7kiy62jmmaix',1,'Admin',1672319405,'192.168.64.1',2,36,36688,NULL,'{#DISK_LOCATION}: Physical disk model name','clc93snar00007kiypalxeeen',''),('clc93snat00ae7kiyadl4yxju',1,'Admin',1672319405,'192.168.64.1',2,36,36689,NULL,'{#DISK_LOCATION}: Physical disk serial number','clc93snar00007kiypalxeeen',''),('clc93snat00af7kiylpy2ycjv',1,'Admin',1672319405,'192.168.64.1',2,36,36690,NULL,'{#DISK_LOCATION}: Disk size','clc93snar00007kiypalxeeen',''),('clc93snat00ag7kiyb25j6ptc',1,'Admin',1672319405,'192.168.64.1',2,36,36691,NULL,'{#DISK_LOCATION}: Physical disk S.M.A.R.T. status','clc93snar00007kiypalxeeen',''),('clc93snat00ah7kiyvsmpmiyi',1,'Admin',1672319405,'192.168.64.1',2,36,36692,NULL,'{#DISK_LOCATION}: Physical disk status','clc93snar00007kiypalxeeen',''),('clc93snat00ai7kiyex4uvg33',1,'Admin',1672319405,'192.168.64.1',2,36,36693,NULL,'Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply status','clc93snar00007kiypalxeeen',''),('clc93snat00aj7kiyd96mijli',1,'Admin',1672319405,'192.168.64.1',2,36,36694,NULL,'Ambient: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat00ak7kiy3c89ekwz',1,'Admin',1672319405,'192.168.64.1',2,36,36695,NULL,'Ambient: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00al7kiyvx887oab',1,'Admin',1672319405,'192.168.64.1',2,36,36696,NULL,'CPU-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat00am7kiyv2a42p71',1,'Admin',1672319405,'192.168.64.1',2,36,36697,NULL,'CPU-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00an7kiycx3eeepf',1,'Admin',1672319405,'192.168.64.1',2,36,36698,NULL,'{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat00ao7kiyob1rxl8c',1,'Admin',1672319405,'192.168.64.1',2,36,36699,NULL,'{#SNMPINDEX}: Temperature sensor location','clc93snar00007kiypalxeeen',''),('clc93snat00ap7kiycw5b22z7',1,'Admin',1672319405,'192.168.64.1',2,36,36700,NULL,'{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00aq7kiymlrbs5qw',1,'Admin',1672319405,'192.168.64.1',2,36,36701,NULL,'I/O-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat00ar7kiytp6yz2ze',1,'Admin',1672319405,'192.168.64.1',2,36,36702,NULL,'I/O-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00as7kiyhvh7f7mf',1,'Admin',1672319405,'192.168.64.1',2,36,36703,NULL,'Memory-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat00at7kiyoemiix19',1,'Admin',1672319405,'192.168.64.1',2,36,36704,NULL,'Memory-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00au7kiywg9vnmnd',1,'Admin',1672319405,'192.168.64.1',2,36,36705,NULL,'PSU-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat00av7kiyxpnr0w3x',1,'Admin',1672319405,'192.168.64.1',2,36,36706,NULL,'PSU-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00aw7kiycbwtz5pj',1,'Admin',1672319405,'192.168.64.1',2,36,36707,NULL,'System-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat00ax7kiyn194a6iy',1,'Admin',1672319405,'192.168.64.1',2,36,36708,NULL,'System-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00ay7kiyazfo8czi',1,'Admin',1672319405,'192.168.64.1',2,36,36709,NULL,'Disk {#SNMPINDEX}({#DISK_NAME}): Layout type','clc93snar00007kiypalxeeen',''),('clc93snat00az7kiyh6m5qp32',1,'Admin',1672319405,'192.168.64.1',2,36,36710,NULL,'Disk {#SNMPINDEX}({#DISK_NAME}): Disk size','clc93snar00007kiypalxeeen',''),('clc93snat00b07kiys04ek75a',1,'Admin',1672319405,'192.168.64.1',2,36,36711,NULL,'Disk {#SNMPINDEX}({#DISK_NAME}): Status','clc93snar00007kiypalxeeen',''),('clc93snat00b17kiy61f5otyw',1,'Admin',1672319405,'192.168.64.1',2,36,36738,NULL,'#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery status','clc93snar00007kiypalxeeen',''),('clc93snat00b27kiywluc8cgl',1,'Admin',1672319405,'192.168.64.1',2,36,36739,NULL,'#{#CACHE_CNTRL_INDEX}: Disk array cache controller status','clc93snar00007kiypalxeeen',''),('clc93snat00b37kiyzyhhgvj9',1,'Admin',1672319405,'192.168.64.1',2,36,36740,NULL,'{#CNTLR_LOCATION}: Disk array controller model','clc93snar00007kiypalxeeen',''),('clc93snat00b47kiy65gtevf9',1,'Admin',1672319405,'192.168.64.1',2,36,36741,NULL,'{#CNTLR_LOCATION}: Disk array controller status','clc93snar00007kiypalxeeen',''),('clc93snat00b57kiy6s4mbx4o',1,'Admin',1672319405,'192.168.64.1',2,36,36742,NULL,'Fan {#SNMPINDEX}: Fan status','clc93snar00007kiypalxeeen',''),('clc93snat00b67kiy5d8itkqb',1,'Admin',1672319405,'192.168.64.1',2,36,36743,NULL,'{#ADAPTER_NAME} port {#ADAPTER_INDEX}: Status','clc93snar00007kiypalxeeen',''),('clc93snat00b77kiy9gwtbvod',1,'Admin',1672319405,'192.168.64.1',2,36,36744,NULL,'{#DISK_LOCATION}: Physical disk media type','clc93snar00007kiypalxeeen',''),('clc93snat00b87kiyvavm0o9o',1,'Admin',1672319405,'192.168.64.1',2,36,36745,NULL,'{#DISK_LOCATION}: Physical disk model name','clc93snar00007kiypalxeeen',''),('clc93snat00b97kiyqe0tfm4j',1,'Admin',1672319405,'192.168.64.1',2,36,36746,NULL,'{#DISK_LOCATION}: Physical disk serial number','clc93snar00007kiypalxeeen',''),('clc93snat00ba7kiyhsj4cn6x',1,'Admin',1672319405,'192.168.64.1',2,36,36747,NULL,'{#DISK_LOCATION}: Disk size','clc93snar00007kiypalxeeen',''),('clc93snat00bb7kiymif5g4nn',1,'Admin',1672319405,'192.168.64.1',2,36,36748,NULL,'{#DISK_LOCATION}: Physical disk S.M.A.R.T. status','clc93snar00007kiypalxeeen',''),('clc93snat00bc7kiy8pw1cf1x',1,'Admin',1672319405,'192.168.64.1',2,36,36749,NULL,'{#DISK_LOCATION}: Physical disk status','clc93snar00007kiypalxeeen',''),('clc93snat00bd7kiyyikpqgfx',1,'Admin',1672319405,'192.168.64.1',2,36,36750,NULL,'Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply status','clc93snar00007kiypalxeeen',''),('clc93snat00be7kiyrc5ass0q',1,'Admin',1672319405,'192.168.64.1',2,36,36751,NULL,'Ambient: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat00bf7kiyd996217p',1,'Admin',1672319405,'192.168.64.1',2,36,36752,NULL,'Ambient: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00bg7kiystiofnm1',1,'Admin',1672319405,'192.168.64.1',2,36,36753,NULL,'CPU-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat00bh7kiypnjs2e9t',1,'Admin',1672319405,'192.168.64.1',2,36,36754,NULL,'CPU-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00bi7kiy8q1s5v2n',1,'Admin',1672319405,'192.168.64.1',2,36,36755,NULL,'{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat00bj7kiysup947lz',1,'Admin',1672319405,'192.168.64.1',2,36,36756,NULL,'{#SNMPINDEX}: Temperature sensor location','clc93snar00007kiypalxeeen',''),('clc93snat00bk7kiyyq4x0711',1,'Admin',1672319405,'192.168.64.1',2,36,36757,NULL,'{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00bl7kiyzkzzlq1x',1,'Admin',1672319405,'192.168.64.1',2,36,36758,NULL,'I/O-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat00bm7kiy9y7apv1k',1,'Admin',1672319405,'192.168.64.1',2,36,36759,NULL,'I/O-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00bn7kiywure03bn',1,'Admin',1672319405,'192.168.64.1',2,36,36760,NULL,'Memory-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat00bo7kiy8u2y28i5',1,'Admin',1672319405,'192.168.64.1',2,36,36761,NULL,'Memory-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00bp7kiytugmwlsb',1,'Admin',1672319405,'192.168.64.1',2,36,36762,NULL,'PSU-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat00bq7kiyqa0ssa4q',1,'Admin',1672319405,'192.168.64.1',2,36,36763,NULL,'PSU-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00br7kiybv1ga7nk',1,'Admin',1672319405,'192.168.64.1',2,36,36764,NULL,'System-{#SNMPINDEX}: Temperature sensor condition','clc93snar00007kiypalxeeen',''),('clc93snat00bs7kiyko1davam',1,'Admin',1672319405,'192.168.64.1',2,36,36765,NULL,'System-{#SNMPINDEX}: Temperature','clc93snar00007kiypalxeeen',''),('clc93snat00bt7kiy149ofac1',1,'Admin',1672319405,'192.168.64.1',2,36,36766,NULL,'Disk {#SNMPINDEX}({#DISK_NAME}): Layout type','clc93snar00007kiypalxeeen',''),('clc93snat00bu7kiyoyanbyd9',1,'Admin',1672319405,'192.168.64.1',2,36,36767,NULL,'Disk {#SNMPINDEX}({#DISK_NAME}): Disk size','clc93snar00007kiypalxeeen',''),('clc93snat00bv7kiy0navx8le',1,'Admin',1672319405,'192.168.64.1',2,36,36768,NULL,'Disk {#SNMPINDEX}({#DISK_NAME}): Status','clc93snar00007kiypalxeeen',''),('clc93snat00bw7kiy79r2b02y',1,'Admin',1672319405,'192.168.64.1',2,36,36814,NULL,'InfluxDB: [{#ORG_NAME}] Query response bytes, failed','clc93snar00007kiypalxeeen',''),('clc93snat00bx7kiy28fbxvrf',1,'Admin',1672319405,'192.168.64.1',2,36,36815,NULL,'InfluxDB: [{#ORG_NAME}] Query response bytes, success','clc93snar00007kiypalxeeen',''),('clc93snat00by7kiyt9uiygyo',1,'Admin',1672319405,'192.168.64.1',2,36,36816,NULL,'InfluxDB: [{#ORG_NAME}] Query requests, failed','clc93snar00007kiypalxeeen',''),('clc93snat00bz7kiy2uk7s422',1,'Admin',1672319405,'192.168.64.1',2,36,36817,NULL,'InfluxDB: [{#ORG_NAME}] Query requests, success','clc93snar00007kiypalxeeen',''),('clc93snat00c07kiyrnpcs23x',1,'Admin',1672319405,'192.168.64.1',2,36,36818,NULL,'InfluxDB: [{#ORG_NAME}] Query requests bytes, failed','clc93snar00007kiypalxeeen',''),('clc93snat00c17kiy1ki8546h',1,'Admin',1672319405,'192.168.64.1',2,36,36819,NULL,'InfluxDB: [{#ORG_NAME}] Query requests bytes, success','clc93snar00007kiypalxeeen',''),('clc93snat00c27kiycot80vtn',1,'Admin',1672319405,'192.168.64.1',2,36,39865,NULL,'Kubernetes API: Watchers: {#KIND}','clc93snar00007kiypalxeeen',''),('clc93snat00c37kiy9gjaoi6a',1,'Admin',1672319405,'192.168.64.1',2,36,39866,NULL,'Kubernetes API: Authenticated requests: {#NAME}, rate','clc93snar00007kiypalxeeen',''),('clc93snat00c47kiy0tim8spo',1,'Admin',1672319405,'192.168.64.1',2,36,39867,NULL,'Kubernetes API: Authentication attempts: {#RESULT}, rate','clc93snar00007kiypalxeeen',''),('clc93snat00c57kiy2ibstz56',1,'Admin',1672319405,'192.168.64.1',2,36,39868,NULL,'Kubernetes API: Certificate expiration seconds bucket, {#LE}','clc93snar00007kiypalxeeen',''),('clc93snat00c67kiy2ub0vaeq',1,'Admin',1672319405,'192.168.64.1',2,36,42691,NULL,'Kubernetes API: Client certificate expiration, p1','clc93snar00007kiypalxeeen',''),('clc93snat00c77kiyy6sfb7l1',1,'Admin',1672319405,'192.168.64.1',2,36,39869,NULL,'Kubernetes API: etcd objects: {#RESOURCE}','clc93snar00007kiypalxeeen',''),('clc93snat00c87kiyvcvy4rg4',1,'Admin',1672319405,'192.168.64.1',2,36,39870,NULL,'Kubernetes API: gRPCs completed: {#GRPC_CODE}, rate','clc93snar00007kiypalxeeen',''),('clc93snat00c97kiy4ozg1s7s',1,'Admin',1672319405,'192.168.64.1',2,36,39871,NULL,'Kubernetes API: Requests current: {#KIND}','clc93snar00007kiypalxeeen',''),('clc93snat00ca7kiybbwnbv6p',1,'Admin',1672319405,'192.168.64.1',2,36,39872,NULL,'Kubernetes API: Long-running [\"{#VERB}\"] requests [\"{#RESOURCE}\"]: {#SCOPE}','clc93snar00007kiypalxeeen',''),('clc93snat00cb7kiyt15v2hxh',1,'Admin',1672319405,'192.168.64.1',2,36,39861,NULL,'Kubernetes API: [\"{#VERB}\"] Requests, p90','clc93snar00007kiypalxeeen',''),('clc93snat00cc7kiykum3o0br',1,'Admin',1672319405,'192.168.64.1',2,36,39862,NULL,'Kubernetes API: [\"{#VERB}\"] Requests, p50','clc93snar00007kiypalxeeen',''),('clc93snat00cd7kiy4uwf0234',1,'Admin',1672319405,'192.168.64.1',2,36,39863,NULL,'Kubernetes API: [\"{#VERB}\"] Requests, p95','clc93snar00007kiypalxeeen',''),('clc93snat00ce7kiymnabi31q',1,'Admin',1672319405,'192.168.64.1',2,36,39864,NULL,'Kubernetes API: [\"{#VERB}\"] Requests, p99','clc93snar00007kiypalxeeen',''),('clc93snat00cf7kiyeqzx7dpf',1,'Admin',1672319405,'192.168.64.1',2,36,39873,NULL,'Kubernetes API: [\"{#VERB}\"] Requests bucket: {#LE}','clc93snar00007kiypalxeeen',''),('clc93snat00cg7kiy8qh4zciv',1,'Admin',1672319405,'192.168.64.1',2,36,39874,NULL,'Kubernetes API: [\"{#NAME}\"] Workqueue adds total, rate','clc93snar00007kiypalxeeen',''),('clc93snat00ch7kiyl0kgznem',1,'Admin',1672319405,'192.168.64.1',2,36,39875,NULL,'Kubernetes API: [\"{#NAME}\"] Workqueue depth','clc93snar00007kiypalxeeen',''),('clc93snat00ci7kiys8sbwcsh',1,'Admin',1672319405,'192.168.64.1',2,36,39890,NULL,'Kubernetes Controller Manager: [\"{#NAME}\"]: Workqueue queue duration, p90','clc93snar00007kiypalxeeen',''),('clc93snat00cj7kiyye0gbsrg',1,'Admin',1672319405,'192.168.64.1',2,36,39891,NULL,'Kubernetes Controller Manager: [\"{#NAME}\"]: Workqueue queue duration, 50p','clc93snar00007kiypalxeeen',''),('clc93snat00ck7kiyjiuhh7fg',1,'Admin',1672319405,'192.168.64.1',2,36,39892,NULL,'Kubernetes Controller Manager: [\"{#NAME}\"]: Workqueue queue duration, p95','clc93snar00007kiypalxeeen',''),('clc93snat00cl7kiy0cy1ntz2',1,'Admin',1672319405,'192.168.64.1',2,36,39893,NULL,'Kubernetes Controller Manager: [\"{#NAME}\"]: Workqueue queue duration, p99','clc93snar00007kiypalxeeen',''),('clc93snat00cm7kiyxkgcpcdy',1,'Admin',1672319405,'192.168.64.1',2,36,39894,NULL,'Kubernetes Controller Manager: [\"{#NAME}\"]: Workqueue work duration, 50p','clc93snar00007kiypalxeeen',''),('clc93snat00cn7kiy39enxqp9',1,'Admin',1672319405,'192.168.64.1',2,36,39895,NULL,'Kubernetes Controller Manager: [\"{#NAME}\"]: Workqueue work duration, p90','clc93snar00007kiypalxeeen',''),('clc93snat00co7kiyk0imj1ae',1,'Admin',1672319405,'192.168.64.1',2,36,39896,NULL,'Kubernetes Controller Manager: [\"{#NAME}\"]: Workqueue work duration, p95','clc93snar00007kiypalxeeen',''),('clc93snat00cp7kiy3rpm785v',1,'Admin',1672319405,'192.168.64.1',2,36,39897,NULL,'Kubernetes Controller Manager: [\"{#NAME}\"]: Workqueue work duration, p99','clc93snar00007kiypalxeeen',''),('clc93snat00cq7kiy6pb1ax33',1,'Admin',1672319405,'192.168.64.1',2,36,39898,NULL,'Kubernetes Controller Manager: [\"{#NAME}\"]: Workqueue duration seconds bucket, {#LE}','clc93snar00007kiypalxeeen',''),('clc93snat00cr7kiyje7lxc0n',1,'Admin',1672319405,'192.168.64.1',2,36,39899,NULL,'Kubernetes Controller Manager: [\"{#NAME}\"]: Queue duration seconds bucket, {#LE}','clc93snar00007kiypalxeeen',''),('clc93snat00cs7kiy7to271g0',1,'Admin',1672319405,'192.168.64.1',2,36,39900,NULL,'Kubernetes Controller Manager: [\"{#NAME}\"]: Workqueue adds total, rate','clc93snar00007kiypalxeeen',''),('clc93snat00ct7kiy39t1az7e',1,'Admin',1672319405,'192.168.64.1',2,36,39901,NULL,'Kubernetes Controller Manager: [\"{#NAME}\"]: Workqueue depth','clc93snar00007kiypalxeeen',''),('clc93snat00cu7kiyhqlkm6bm',1,'Admin',1672319405,'192.168.64.1',2,36,39902,NULL,'Kubernetes Controller Manager: [\"{#NAME}\"]: Workqueue longest running processor, sec','clc93snar00007kiypalxeeen',''),('clc93snat00cv7kiygfx1fn5j',1,'Admin',1672319405,'192.168.64.1',2,36,39903,NULL,'Kubernetes Controller Manager: [\"{#NAME}\"]: Workqueue retries, rate','clc93snar00007kiypalxeeen',''),('clc93snat00cw7kiy4e91p672',1,'Admin',1672319405,'192.168.64.1',2,36,39904,NULL,'Kubernetes Controller Manager: [\"{#NAME}\"]: Workqueue unfinished work, sec','clc93snar00007kiypalxeeen',''),('clc93snat00cx7kiy4zxlbo5g',1,'Admin',1672319405,'192.168.64.1',2,36,39925,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#POD}] Container [{#CONTAINER}]: Memory page cache','clc93snar00007kiypalxeeen',''),('clc93snat00cy7kiylyw8ewxq',1,'Admin',1672319405,'192.168.64.1',2,36,39926,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#POD}] Container [{#CONTAINER}]: Memory max usage','clc93snar00007kiypalxeeen',''),('clc93snat00cz7kiymt6v61b7',1,'Admin',1672319405,'192.168.64.1',2,36,39927,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#POD}] Container [{#CONTAINER}]: RSS','clc93snar00007kiypalxeeen',''),('clc93snat00d07kiyd4rtkfwq',1,'Admin',1672319405,'192.168.64.1',2,36,39928,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#POD}] Container [{#CONTAINER}]: Swap','clc93snar00007kiypalxeeen',''),('clc93snat00d17kiygs0uo2gf',1,'Admin',1672319405,'192.168.64.1',2,36,39929,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#POD}] Container [{#CONTAINER}]: Usage','clc93snar00007kiypalxeeen',''),('clc93snat00d27kiy9bg86cz0',1,'Admin',1672319405,'192.168.64.1',2,36,39930,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#POD}] Container [{#CONTAINER}]: Working set','clc93snar00007kiypalxeeen',''),('clc93snat00d37kiy9sd237sp',1,'Admin',1672319405,'192.168.64.1',2,36,39931,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}] CPU: Load average, 10s','clc93snar00007kiypalxeeen',''),('clc93snat00d47kiytxqu6eid',1,'Admin',1672319405,'192.168.64.1',2,36,39932,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}] CPU: System seconds, total','clc93snar00007kiypalxeeen',''),('clc93snat00d57kiyc43sd0vp',1,'Admin',1672319405,'192.168.64.1',2,36,39933,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}] CPU: User seconds, total','clc93snar00007kiypalxeeen',''),('clc93snat00d67kiyy6kc0u82',1,'Admin',1672319405,'192.168.64.1',2,36,39934,NULL,'Kubernetes: Host [{#HOST}] Request method [{#METHOD}] Code:[{#CODE}]','clc93snar00007kiypalxeeen',''),('clc93snat00d77kiynokida47',1,'Admin',1672319405,'192.168.64.1',2,36,39921,NULL,'Kubernetes: [{#OP_TYPE}] Operations, p50','clc93snar00007kiypalxeeen',''),('clc93snat00d87kiyibsa3d40',1,'Admin',1672319405,'192.168.64.1',2,36,39922,NULL,'Kubernetes: [{#OP_TYPE}] Operations, p90','clc93snar00007kiypalxeeen',''),('clc93snat00d97kiyegv1trhd',1,'Admin',1672319405,'192.168.64.1',2,36,39923,NULL,'Kubernetes: [{#OP_TYPE}] Operations, p95','clc93snar00007kiypalxeeen',''),('clc93snat00da7kiy02vg784d',1,'Admin',1672319405,'192.168.64.1',2,36,39924,NULL,'Kubernetes: [{#OP_TYPE}] Operations, p99','clc93snar00007kiypalxeeen',''),('clc93snat00db7kiy1xe5jrx6',1,'Admin',1672319405,'192.168.64.1',2,36,39935,NULL,'Kubernetes: [{#OP_TYPE}] Runtime operations bucket: {#LE}','clc93snar00007kiypalxeeen',''),('clc93snat00dc7kiyxp2lv2wt',1,'Admin',1672319405,'192.168.64.1',2,36,39936,NULL,'Kubernetes: [{#OP_TYPE}] Runtime operations total, rate','clc93snar00007kiypalxeeen',''),('clc93snat00dd7kiykl5ajxjo',1,'Admin',1672319405,'192.168.64.1',2,36,39943,NULL,'Node [{#NAME}] Addresses: External IP','clc93snar00007kiypalxeeen',''),('clc93snat00de7kiy4rwrqmfw',1,'Admin',1672319405,'192.168.64.1',2,36,39944,NULL,'Node [{#NAME}] Info: Container runtime','clc93snar00007kiypalxeeen',''),('clc93snat00df7kiymxxbr05q',1,'Admin',1672319405,'192.168.64.1',2,36,39945,NULL,'Node [{#NAME}] Uptime','clc93snar00007kiypalxeeen',''),('clc93snat00dg7kiy06xs1psq',1,'Admin',1672319405,'192.168.64.1',2,36,39946,NULL,'Node [{#NAME}] Requests: Memory','clc93snar00007kiypalxeeen',''),('clc93snat00dh7kiyses62fk2',1,'Admin',1672319405,'192.168.64.1',2,36,39947,NULL,'Node [{#NAME}] Requests: CPU','clc93snar00007kiypalxeeen',''),('clc93snat00di7kiywavdeehh',1,'Admin',1672319405,'192.168.64.1',2,36,39948,NULL,'Node [{#NAME}] Limits: Memory','clc93snar00007kiypalxeeen',''),('clc93snat00dj7kiyk2nmjmi8',1,'Admin',1672319405,'192.168.64.1',2,36,39949,NULL,'Node [{#NAME}] Limits: CPU','clc93snar00007kiypalxeeen',''),('clc93snat00dk7kiy3ehxcuwk',1,'Admin',1672319405,'192.168.64.1',2,36,39950,NULL,'Node [{#NAME}] Info: Roles','clc93snar00007kiypalxeeen',''),('clc93snat00dl7kiy0dn87v8z',1,'Admin',1672319405,'192.168.64.1',2,36,39951,NULL,'Node [{#NAME}] Info: OS image','clc93snar00007kiypalxeeen',''),('clc93snat00dm7kiyhyh1z27z',1,'Admin',1672319405,'192.168.64.1',2,36,39952,NULL,'Node [{#NAME}] Info: Operating system','clc93snar00007kiypalxeeen',''),('clc93snat00dn7kiy4sbdzffm',1,'Admin',1672319405,'192.168.64.1',2,36,39953,NULL,'Node [{#NAME}] Info: KubeProxy version','clc93snar00007kiypalxeeen',''),('clc93snat00do7kiycthq66ee',1,'Admin',1672319405,'192.168.64.1',2,36,39954,NULL,'Node [{#NAME}] Info: Kubelet version','clc93snar00007kiypalxeeen',''),('clc93snat00dp7kiyu4asvmxv',1,'Admin',1672319405,'192.168.64.1',2,36,39955,NULL,'Node [{#NAME}] Info: Kernel version','clc93snar00007kiypalxeeen',''),('clc93snat00dq7kiy6q27dn0u',1,'Admin',1672319405,'192.168.64.1',2,36,39956,NULL,'Node [{#NAME}] Info: Architecture','clc93snar00007kiypalxeeen',''),('clc93snat00dr7kiy8mowmwnd',1,'Admin',1672319405,'192.168.64.1',2,36,39957,NULL,'Node [{#NAME}] Addresses: Internal IP','clc93snar00007kiypalxeeen',''),('clc93snat00ds7kiy1kicessp',1,'Admin',1672319405,'192.168.64.1',2,36,39958,NULL,'Node [{#NAME}] Conditions: Ready','clc93snar00007kiypalxeeen',''),('clc93snat00dt7kiya1h2eeny',1,'Admin',1672319405,'192.168.64.1',2,36,39959,NULL,'Node [{#NAME}] Conditions: PID pressure','clc93snar00007kiypalxeeen',''),('clc93snat00du7kiyhj70k3a3',1,'Admin',1672319405,'192.168.64.1',2,36,39960,NULL,'Node [{#NAME}] Conditions: Network unavailable','clc93snar00007kiypalxeeen',''),('clc93snat00dv7kiye6mj8eom',1,'Admin',1672319405,'192.168.64.1',2,36,39961,NULL,'Node [{#NAME}] Conditions: Memory pressure','clc93snar00007kiypalxeeen',''),('clc93snat00dw7kiycv149x1g',1,'Admin',1672319405,'192.168.64.1',2,36,39962,NULL,'Node [{#NAME}] Conditions: Disk pressure','clc93snar00007kiypalxeeen',''),('clc93snat00dx7kiy7m52atkw',1,'Admin',1672319405,'192.168.64.1',2,36,39963,NULL,'Node [{#NAME}] Capacity: Pods','clc93snar00007kiypalxeeen',''),('clc93snat00dy7kiysj54xdnz',1,'Admin',1672319405,'192.168.64.1',2,36,39964,NULL,'Node [{#NAME}] Capacity: Memory','clc93snar00007kiypalxeeen',''),('clc93snat00dz7kiy612fumec',1,'Admin',1672319405,'192.168.64.1',2,36,39965,NULL,'Node [{#NAME}] Capacity: CPU','clc93snar00007kiypalxeeen',''),('clc93snat00e07kiyz1lek6uh',1,'Admin',1672319405,'192.168.64.1',2,36,39966,NULL,'Node [{#NAME}] Allocatable: Pods','clc93snar00007kiypalxeeen',''),('clc93snat00e17kiylr2i7s2h',1,'Admin',1672319405,'192.168.64.1',2,36,39967,NULL,'Node [{#NAME}] Allocatable: Memory','clc93snar00007kiypalxeeen',''),('clc93snat00e27kiy4sb1vsm2',1,'Admin',1672319405,'192.168.64.1',2,36,39968,NULL,'Node [{#NAME}] Allocatable: CPU','clc93snar00007kiypalxeeen',''),('clc93snat00e37kiydonpz2gf',1,'Admin',1672319405,'192.168.64.1',2,36,39969,NULL,'Node [{#NAME}] Used: Pods','clc93snar00007kiypalxeeen',''),('clc93snat00e47kiyil5holw3',1,'Admin',1672319405,'192.168.64.1',2,36,44246,NULL,'Node [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snat00e57kiyz77q80xk',1,'Admin',1672319405,'192.168.64.1',2,36,39970,NULL,'Node [{#NODE}] Pod [{#POD}] Conditions: Containers ready','clc93snar00007kiypalxeeen',''),('clc93snat00e67kiypd153axi',1,'Admin',1672319405,'192.168.64.1',2,36,39971,NULL,'Node [{#NODE}] Pod [{#POD}] Conditions: Initialized','clc93snar00007kiypalxeeen',''),('clc93snat00e77kiy6ocjc91n',1,'Admin',1672319405,'192.168.64.1',2,36,39972,NULL,'Node [{#NODE}] Pod [{#POD}] Conditions: Ready','clc93snar00007kiypalxeeen',''),('clc93snat00e87kiy6nflj06l',1,'Admin',1672319405,'192.168.64.1',2,36,39973,NULL,'Node [{#NODE}] Pod [{#POD}] Conditions: Scheduled','clc93snar00007kiypalxeeen',''),('clc93snat00e97kiydmoxeobt',1,'Admin',1672319405,'192.168.64.1',2,36,39974,NULL,'Node [{#NODE}] Pod [{#POD}] Containers: Restarts','clc93snar00007kiypalxeeen',''),('clc93snat00ea7kiyhytybt9p',1,'Admin',1672319405,'192.168.64.1',2,36,39975,NULL,'Node [{#NODE}] Pod [{#POD}] Status: Phase','clc93snar00007kiypalxeeen',''),('clc93snat00eb7kiy1a8dnftt',1,'Admin',1672319405,'192.168.64.1',2,36,39976,NULL,'Node [{#NODE}] Pod [{#POD}] Uptime','clc93snar00007kiypalxeeen',''),('clc93snat00ec7kiy7cwix34w',1,'Admin',1672319405,'192.168.64.1',2,36,44247,NULL,'Node [{#NODE}] Pod [{#POD}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snat00ed7kiyr6hdqc0k',1,'Admin',1672319405,'192.168.64.1',2,36,40003,NULL,'Kubernetes Scheduler: [\"{#RESULT}\"]: e2e scheduling, p90','clc93snar00007kiypalxeeen',''),('clc93snat00ee7kiyhatu4j6g',1,'Admin',1672319405,'192.168.64.1',2,36,40004,NULL,'Kubernetes Scheduler: [\"{#RESULT}\"]: e2e scheduling, p50','clc93snar00007kiypalxeeen',''),('clc93snat00ef7kiy4my968a2',1,'Admin',1672319405,'192.168.64.1',2,36,40005,NULL,'Kubernetes Scheduler: [\"{#RESULT}\"]: e2e scheduling, p95','clc93snar00007kiypalxeeen',''),('clc93snat00eg7kiyo7ujene5',1,'Admin',1672319405,'192.168.64.1',2,36,40006,NULL,'Kubernetes Scheduler: [\"{#RESULT}\"]: e2e scheduling, p99','clc93snar00007kiypalxeeen',''),('clc93snat00eh7kiylxpqhr0a',1,'Admin',1672319405,'192.168.64.1',2,36,40007,NULL,'Kubernetes Scheduler: [\"{#RESULT}\"]: e2e scheduling seconds bucket, {#LE}','clc93snar00007kiypalxeeen',''),('clc93snat00ei7kiyn6nfsg8l',1,'Admin',1672319405,'192.168.64.1',2,36,40008,NULL,'Kubernetes Scheduler: Binding duration bucket, {#LE}','clc93snar00007kiypalxeeen',''),('clc93snat00ej7kiyxq1fkj1o',1,'Admin',1672319405,'192.168.64.1',2,36,42692,NULL,'Kubernetes Scheduler: Binding duration, p90','clc93snar00007kiypalxeeen',''),('clc93snat00ek7kiyafdj1ubg',1,'Admin',1672319405,'192.168.64.1',2,36,42693,NULL,'Kubernetes Scheduler: Binding duration, p50','clc93snar00007kiypalxeeen',''),('clc93snat00el7kiy3qdeas9j',1,'Admin',1672319405,'192.168.64.1',2,36,42694,NULL,'Kubernetes Scheduler: Binding duration, p95','clc93snar00007kiypalxeeen',''),('clc93snat00em7kiyawwr20rb',1,'Admin',1672319405,'192.168.64.1',2,36,42695,NULL,'Kubernetes Scheduler: Binding duration, p99','clc93snar00007kiypalxeeen',''),('clc93snat00en7kiy1plc5d8w',1,'Admin',1672319405,'192.168.64.1',2,36,40009,NULL,'Kubernetes Scheduler: Scheduling algorithm duration bucket, {#LE}','clc93snar00007kiypalxeeen',''),('clc93snat00eo7kiynxsrlawi',1,'Admin',1672319405,'192.168.64.1',2,36,42696,NULL,'Kubernetes Scheduler: Scheduling algorithm duration, p90','clc93snar00007kiypalxeeen',''),('clc93snat00ep7kiy728p539g',1,'Admin',1672319405,'192.168.64.1',2,36,42697,NULL,'Kubernetes Scheduler: Scheduling algorithm duration, p50','clc93snar00007kiypalxeeen',''),('clc93snat00eq7kiymawehzik',1,'Admin',1672319405,'192.168.64.1',2,36,42698,NULL,'Kubernetes Scheduler: Scheduling algorithm duration, p95','clc93snar00007kiypalxeeen',''),('clc93snat00er7kiyscvxvxro',1,'Admin',1672319405,'192.168.64.1',2,36,42699,NULL,'Kubernetes Scheduler: Scheduling algorithm duration, p99','clc93snar00007kiypalxeeen',''),('clc93snat00es7kiy6j6cmqw2',1,'Admin',1672319405,'192.168.64.1',2,36,40036,NULL,'Kubernetes: Component [{#NAME}]: Healthy','clc93snar00007kiypalxeeen',''),('clc93snat00et7kiyz4qpspnn',1,'Admin',1672319405,'192.168.64.1',2,36,40037,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Daemonset [{#NAME}]: Desired','clc93snar00007kiypalxeeen',''),('clc93snat00eu7kiyt8kccbnr',1,'Admin',1672319405,'192.168.64.1',2,36,40038,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Daemonset [{#NAME}]: Misscheduled','clc93snar00007kiypalxeeen',''),('clc93snat00ev7kiynhzzkpqf',1,'Admin',1672319405,'192.168.64.1',2,36,40039,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Daemonset [{#NAME}]: Ready','clc93snar00007kiypalxeeen',''),('clc93snat00ew7kiy8gpm8677',1,'Admin',1672319405,'192.168.64.1',2,36,40040,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Daemonset [{#NAME}]: Scheduled','clc93snar00007kiypalxeeen',''),('clc93snat00ex7kiy8ntn11yr',1,'Admin',1672319405,'192.168.64.1',2,36,40041,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Daemonset [{#NAME}]: Updated number scheduled','clc93snar00007kiypalxeeen',''),('clc93snat00ey7kiyaibfztje',1,'Admin',1672319405,'192.168.64.1',2,36,40042,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Deployment [{#NAME}]: Replicas','clc93snar00007kiypalxeeen',''),('clc93snat00ez7kiyj9we4s1e',1,'Admin',1672319405,'192.168.64.1',2,36,40043,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Deployment [{#NAME}]: Replicas available','clc93snar00007kiypalxeeen',''),('clc93snat00f07kiyb1zey019',1,'Admin',1672319405,'192.168.64.1',2,36,40044,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Deployment [{#NAME}]: Replicas desired','clc93snar00007kiypalxeeen',''),('clc93snat00f17kiyu7oh9xee',1,'Admin',1672319405,'192.168.64.1',2,36,40045,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Deployment [{#NAME}]: Replicas unavailable','clc93snar00007kiypalxeeen',''),('clc93snat00f27kiyxuhuplfq',1,'Admin',1672319405,'192.168.64.1',2,36,40046,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Deployment [{#NAME}]: Replicas updated','clc93snar00007kiypalxeeen',''),('clc93snat00f37kiyo8eyq4ad',1,'Admin',1672319405,'192.168.64.1',2,36,40047,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Deployment [{#NAME}]: Rollingupdate max unavailable','clc93snar00007kiypalxeeen',''),('clc93snat00f47kiysg2mjshn',1,'Admin',1672319405,'192.168.64.1',2,36,40048,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Deployment [{#NAME}]: Paused','clc93snar00007kiypalxeeen',''),('clc93snat00f57kiyp71wi7tl',1,'Admin',1672319405,'192.168.64.1',2,36,40049,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Endpoint [{#NAME}]: Address available','clc93snar00007kiypalxeeen',''),('clc93snat00f67kiy4jr5teej',1,'Admin',1672319405,'192.168.64.1',2,36,40050,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Endpoint [{#NAME}]: Address not ready','clc93snar00007kiypalxeeen',''),('clc93snat00f77kiy8kjavlru',1,'Admin',1672319405,'192.168.64.1',2,36,40051,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Endpoint [{#NAME}]: Age','clc93snar00007kiypalxeeen',''),('clc93snat00f87kiy5ioxdsoj',1,'Admin',1672319405,'192.168.64.1',2,36,40052,NULL,'Kubernetes: Livez [{#NAME}]: Healthcheck','clc93snar00007kiypalxeeen',''),('clc93snat00f97kiyp1wdh4k6',1,'Admin',1672319405,'192.168.64.1',2,36,40053,NULL,'Kubernetes: Node [{#NAME}]: CPU allocatable','clc93snar00007kiypalxeeen',''),('clc93snat00fa7kiyu0nw88sh',1,'Admin',1672319405,'192.168.64.1',2,36,40054,NULL,'Kubernetes: Node [{#NAME}]: CPU capacity','clc93snar00007kiypalxeeen',''),('clc93snat00fb7kiy6gkwrdl4',1,'Admin',1672319405,'192.168.64.1',2,36,40055,NULL,'Kubernetes: Node [{#NAME}]: Memory allocatable','clc93snar00007kiypalxeeen',''),('clc93snat00fc7kiyt6fn1kow',1,'Admin',1672319405,'192.168.64.1',2,36,40056,NULL,'Kubernetes: Node [{#NAME}]: Memory capacity','clc93snar00007kiypalxeeen',''),('clc93snat00fd7kiy2lsz1xe8',1,'Admin',1672319405,'192.168.64.1',2,36,40057,NULL,'Kubernetes: Node [{#NAME}]: Pods allocatable','clc93snar00007kiypalxeeen',''),('clc93snat00fe7kiyzxmlv9lj',1,'Admin',1672319405,'192.168.64.1',2,36,40058,NULL,'Kubernetes: Node [{#NAME}]: Pods capacity','clc93snar00007kiypalxeeen',''),('clc93snat00ff7kiyibyfsqdb',1,'Admin',1672319405,'192.168.64.1',2,36,42718,NULL,'Kubernetes: Node [{#NAME}]: Ephemeral storage allocatable','clc93snar00007kiypalxeeen',''),('clc93snat00fg7kiyigteujs0',1,'Admin',1672319405,'192.168.64.1',2,36,42719,NULL,'Kubernetes: Node [{#NAME}]: Ephemeral storage capacity','clc93snar00007kiypalxeeen',''),('clc93snat00fh7kiyhh9kt7if',1,'Admin',1672319405,'192.168.64.1',2,36,40059,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Containers CPU limits','clc93snar00007kiypalxeeen',''),('clc93snat00fi7kiycn2s6ssn',1,'Admin',1672319405,'192.168.64.1',2,36,40060,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}] Phase: Failed','clc93snar00007kiypalxeeen',''),('clc93snat00fj7kiy34edld7c',1,'Admin',1672319405,'192.168.64.1',2,36,40061,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Scheduled','clc93snar00007kiypalxeeen',''),('clc93snat00fk7kiyso261rca',1,'Admin',1672319405,'192.168.64.1',2,36,40062,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Ready','clc93snar00007kiypalxeeen',''),('clc93snat00fl7kiy55ofki14',1,'Admin',1672319405,'192.168.64.1',2,36,40063,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}] Phase: Unknown','clc93snar00007kiypalxeeen',''),('clc93snau00fm7kiy79kgn8l7',1,'Admin',1672319405,'192.168.64.1',2,36,40064,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}] Phase: Succeeded','clc93snar00007kiypalxeeen',''),('clc93snau00fn7kiy3tjkgj32',1,'Admin',1672319405,'192.168.64.1',2,36,40065,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}] Phase: Running','clc93snar00007kiypalxeeen',''),('clc93snau00fo7kiype1fn4ca',1,'Admin',1672319405,'192.168.64.1',2,36,40066,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}] Phase: Pending','clc93snar00007kiypalxeeen',''),('clc93snau00fp7kiyahp4im1h',1,'Admin',1672319405,'192.168.64.1',2,36,40067,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Containers waiting','clc93snar00007kiypalxeeen',''),('clc93snau00fq7kiyynm9g03t',1,'Admin',1672319405,'192.168.64.1',2,36,40068,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Containers memory limits','clc93snar00007kiypalxeeen',''),('clc93snau00fr7kiytm5mlcza',1,'Admin',1672319405,'192.168.64.1',2,36,40069,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Containers terminated','clc93snar00007kiypalxeeen',''),('clc93snau00fs7kiy8v01qh0t',1,'Admin',1672319405,'192.168.64.1',2,36,40070,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Containers running','clc93snar00007kiypalxeeen',''),('clc93snau00ft7kiyco4y777a',1,'Admin',1672319405,'192.168.64.1',2,36,40071,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Containers restarts','clc93snar00007kiypalxeeen',''),('clc93snau00fu7kiytztde7iu',1,'Admin',1672319405,'192.168.64.1',2,36,40072,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Containers ready','clc93snar00007kiypalxeeen',''),('clc93snau00fv7kiykyfr7ycr',1,'Admin',1672319405,'192.168.64.1',2,36,40073,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Containers memory requests','clc93snar00007kiypalxeeen',''),('clc93snau00fw7kiyv57xhec7',1,'Admin',1672319405,'192.168.64.1',2,36,40074,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Containers CPU requests','clc93snar00007kiypalxeeen',''),('clc93snau00fx7kiyuhazp7xb',1,'Admin',1672319405,'192.168.64.1',2,36,40075,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Pod [{#NAME}]: Unschedulable','clc93snar00007kiypalxeeen',''),('clc93snau00fy7kiy0jjwgzn3',1,'Admin',1672319405,'192.168.64.1',2,36,40076,NULL,'Kubernetes: Namespace [{#NAMESPACE}] PVC [{#NAME}] Requested storage','clc93snar00007kiypalxeeen',''),('clc93snau00fz7kiyjbb6ijjy',1,'Admin',1672319405,'192.168.64.1',2,36,40077,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Status phase: Active, sum','clc93snar00007kiypalxeeen',''),('clc93snau00g07kiy06r5ck8n',1,'Admin',1672319405,'192.168.64.1',2,36,40078,NULL,'Kubernetes: Namespace [{#NAMESPACE}] PVC [{#NAME}] Status phase: Available','clc93snar00007kiypalxeeen',''),('clc93snau00g17kiy79jdpeew',1,'Admin',1672319405,'192.168.64.1',2,36,40079,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Status phase: Bound, sum','clc93snar00007kiypalxeeen',''),('clc93snau00g27kiyiiiza75c',1,'Admin',1672319405,'192.168.64.1',2,36,40080,NULL,'Kubernetes: Namespace [{#NAMESPACE}] PVC [{#NAME}] Status phase: Bound','clc93snar00007kiypalxeeen',''),('clc93snau00g37kiyx29sz26z',1,'Admin',1672319405,'192.168.64.1',2,36,40081,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Status phase: Lost, sum','clc93snar00007kiypalxeeen',''),('clc93snau00g47kiy88xu0ztp',1,'Admin',1672319405,'192.168.64.1',2,36,40082,NULL,'Kubernetes: Namespace [{#NAMESPACE}] PVC [{#NAME}] Status phase: Lost','clc93snar00007kiypalxeeen',''),('clc93snau00g57kiyvfsg5a1g',1,'Admin',1672319405,'192.168.64.1',2,36,40083,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Status phase: Pending, sum','clc93snar00007kiypalxeeen',''),('clc93snau00g67kiy7j9794b3',1,'Admin',1672319405,'192.168.64.1',2,36,40084,NULL,'Kubernetes: Namespace [{#NAMESPACE}] PVC [{#NAME}] Status phase: Pending','clc93snar00007kiypalxeeen',''),('clc93snau00g77kiyeyic7e81',1,'Admin',1672319405,'192.168.64.1',2,36,40085,NULL,'Kubernetes: Readyz [{#NAME}]: Healthcheck','clc93snar00007kiypalxeeen',''),('clc93snau00g87kiy04hc9jm6',1,'Admin',1672319405,'192.168.64.1',2,36,40086,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Replicaset [{#NAME}]: Fully labeled replicas','clc93snar00007kiypalxeeen',''),('clc93snau00g97kiys100rqid',1,'Admin',1672319405,'192.168.64.1',2,36,40087,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Replicaset [{#NAME}]: Ready','clc93snar00007kiypalxeeen',''),('clc93snau00ga7kiyp9ub38g9',1,'Admin',1672319405,'192.168.64.1',2,36,40088,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Replicaset [{#NAME}]: Replicas','clc93snar00007kiypalxeeen',''),('clc93snau00gb7kiyee0xmykx',1,'Admin',1672319405,'192.168.64.1',2,36,40089,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Replicaset [{#NAME}]: Desired replicas','clc93snar00007kiypalxeeen',''),('clc93snau00gc7kiya8gsmhpw',1,'Admin',1672319405,'192.168.64.1',2,36,40090,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Statefulset [{#NAME}]: Replicas','clc93snar00007kiypalxeeen',''),('clc93snau00gd7kiyf7gz0mwf',1,'Admin',1672319405,'192.168.64.1',2,36,40091,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Statefulset [{#NAME}]: Current replicas','clc93snar00007kiypalxeeen',''),('clc93snau00ge7kiylrw8izfj',1,'Admin',1672319405,'192.168.64.1',2,36,40092,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Statefulset [{#NAME}]: Desired replicas','clc93snar00007kiypalxeeen',''),('clc93snau00gf7kiy040nwkez',1,'Admin',1672319405,'192.168.64.1',2,36,40093,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Statefulset [{#NAME}]: Ready replicas','clc93snar00007kiypalxeeen',''),('clc93snau00gg7kiydp5ccn7p',1,'Admin',1672319405,'192.168.64.1',2,36,40094,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Statefulset [{#NAME}]: Updated replicas','clc93snar00007kiypalxeeen',''),('clc93snau00gh7kiyt4nd0d4s',1,'Admin',1672319405,'192.168.64.1',2,36,40857,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snau00gi7kiypdrsf2xm',1,'Admin',1672319405,'192.168.64.1',2,36,40858,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snau00gj7kiy0xbou9zm',1,'Admin',1672319405,'192.168.64.1',2,36,40859,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93snar00007kiypalxeeen',''),('clc93snau00gk7kiyhygczvz4',1,'Admin',1672319405,'192.168.64.1',2,36,40860,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snau00gl7kiyr9boxezb',1,'Admin',1672319405,'192.168.64.1',2,36,40861,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snau00gm7kiytf0ity1m',1,'Admin',1672319405,'192.168.64.1',2,36,40862,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93snar00007kiypalxeeen',''),('clc93snau00gn7kiyi3ffd724',1,'Admin',1672319405,'192.168.64.1',2,36,40863,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93snar00007kiypalxeeen',''),('clc93snau00go7kiymtx3oaha',1,'Admin',1672319405,'192.168.64.1',2,36,40864,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93snar00007kiypalxeeen',''),('clc93snau00gp7kiyqze6a2t8',1,'Admin',1672319405,'192.168.64.1',2,36,40865,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93snar00007kiypalxeeen',''),('clc93snau00gq7kiya3meq77a',1,'Admin',1672319405,'192.168.64.1',2,36,40866,NULL,'Interface {#IFNAME}({#IFALIAS}): Duplex status','clc93snar00007kiypalxeeen',''),('clc93snau00gr7kiy7ymamdgb',1,'Admin',1672319405,'192.168.64.1',2,36,40880,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snau00gs7kiyvz20t9dw',1,'Admin',1672319405,'192.168.64.1',2,36,40881,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snau00gt7kiyqw01zdgu',1,'Admin',1672319405,'192.168.64.1',2,36,40882,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93snar00007kiypalxeeen',''),('clc93snau00gu7kiyy1t1dyx0',1,'Admin',1672319405,'192.168.64.1',2,36,40883,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snau00gv7kiytx0xxp8m',1,'Admin',1672319405,'192.168.64.1',2,36,40884,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snau00gw7kiye3bina9i',1,'Admin',1672319405,'192.168.64.1',2,36,40885,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93snar00007kiypalxeeen',''),('clc93snau00gx7kiylaxz7f3a',1,'Admin',1672319405,'192.168.64.1',2,36,40886,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93snar00007kiypalxeeen',''),('clc93snau00gy7kiytwjw5g4m',1,'Admin',1672319405,'192.168.64.1',2,36,40887,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93snar00007kiypalxeeen',''),('clc93snau00gz7kiyvllgj70o',1,'Admin',1672319405,'192.168.64.1',2,36,40888,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93snar00007kiypalxeeen',''),('clc93snau00h07kiywiptfu6x',1,'Admin',1672319405,'192.168.64.1',2,36,40889,NULL,'Interface {#IFNAME}({#IFALIAS}): Duplex status','clc93snar00007kiypalxeeen',''),('clc93snau00h17kiycgzadvad',1,'Admin',1672319405,'192.168.64.1',2,36,40902,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snau00h27kiykacdm7ow',1,'Admin',1672319405,'192.168.64.1',2,36,40903,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snau00h37kiyudgk2g6a',1,'Admin',1672319405,'192.168.64.1',2,36,40904,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93snar00007kiypalxeeen',''),('clc93snau00h47kiymtswm67p',1,'Admin',1672319405,'192.168.64.1',2,36,40905,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snau00h57kiyjl6f5v9s',1,'Admin',1672319405,'192.168.64.1',2,36,40906,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snau00h67kiyqp79prla',1,'Admin',1672319405,'192.168.64.1',2,36,40907,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93snar00007kiypalxeeen',''),('clc93snau00h77kiyqaqtc5zl',1,'Admin',1672319405,'192.168.64.1',2,36,40908,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93snar00007kiypalxeeen',''),('clc93snau00h87kiyxkol4mxo',1,'Admin',1672319405,'192.168.64.1',2,36,40909,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93snar00007kiypalxeeen',''),('clc93snau00h97kiyxj7w4ufn',1,'Admin',1672319405,'192.168.64.1',2,36,40910,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93snar00007kiypalxeeen',''),('clc93snau00ha7kiy5ytbk32z',1,'Admin',1672319405,'192.168.64.1',2,36,40924,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snau00hb7kiy9aglt5ow',1,'Admin',1672319405,'192.168.64.1',2,36,40925,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snau00hc7kiya7azh8rc',1,'Admin',1672319405,'192.168.64.1',2,36,40926,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93snar00007kiypalxeeen',''),('clc93snau00hd7kiybe0gmrde',1,'Admin',1672319405,'192.168.64.1',2,36,40927,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snau00he7kiyldwfo5yj',1,'Admin',1672319405,'192.168.64.1',2,36,40928,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snau00hf7kiyztasdllt',1,'Admin',1672319405,'192.168.64.1',2,36,40929,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93snar00007kiypalxeeen',''),('clc93snau00hg7kiyr84s4fbu',1,'Admin',1672319405,'192.168.64.1',2,36,40930,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93snar00007kiypalxeeen',''),('clc93snau00hh7kiywwzxjv8l',1,'Admin',1672319405,'192.168.64.1',2,36,40931,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93snar00007kiypalxeeen',''),('clc93snau00hi7kiyfnvcj4rt',1,'Admin',1672319405,'192.168.64.1',2,36,40932,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93snar00007kiypalxeeen',''),('clc93snau00hj7kiyqm4w9h5i',1,'Admin',1672319405,'192.168.64.1',2,36,40933,NULL,'Interface {#IFNAME}({#IFALIAS}): Duplex status','clc93snar00007kiypalxeeen',''),('clc93snau00hk7kiyiudh0m4l',1,'Admin',1672319405,'192.168.64.1',2,36,42277,NULL,'Interface {#IFNAME}: Inbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snau00hl7kiyobyx58gq',1,'Admin',1672319405,'192.168.64.1',2,36,42278,NULL,'Interface {#IFNAME}: Inbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snau00hm7kiy7ojj1lxw',1,'Admin',1672319405,'192.168.64.1',2,36,42279,NULL,'Interface {#IFNAME}: Bits received','clc93snar00007kiypalxeeen',''),('clc93snau00hn7kiyjx9wn7v1',1,'Admin',1672319405,'192.168.64.1',2,36,42280,NULL,'Interface {#IFNAME}: Outbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snau00ho7kiy3fob2hb0',1,'Admin',1672319405,'192.168.64.1',2,36,42281,NULL,'Interface {#IFNAME}: Outbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snau00hp7kiys5pj7bca',1,'Admin',1672319405,'192.168.64.1',2,36,42282,NULL,'Interface {#IFNAME}: Bits sent','clc93snar00007kiypalxeeen',''),('clc93snau00hq7kiypu4ck7me',1,'Admin',1672319405,'192.168.64.1',2,36,42283,NULL,'Interface {#IFNAME}: Operational status','clc93snar00007kiypalxeeen',''),('clc93snau00hr7kiyee1w3cs4',1,'Admin',1672319405,'192.168.64.1',2,36,42284,NULL,'Interface {#IFNAME}: Interface type','clc93snar00007kiypalxeeen',''),('clc93snau00hs7kiym8tk7hkz',1,'Admin',1672319405,'192.168.64.1',2,36,42679,NULL,'Interface {#IFNAME}: Speed','clc93snar00007kiypalxeeen',''),('clc93snau00ht7kiyvux9dppw',1,'Admin',1672319405,'192.168.64.1',2,36,42285,NULL,'{#DEVNAME}: Disk read request avg waiting time (r_await)','clc93snar00007kiypalxeeen',''),('clc93snau00hu7kiyim4adjdv',1,'Admin',1672319405,'192.168.64.1',2,36,42286,NULL,'{#DEVNAME}: Disk write request avg waiting time (w_await)','clc93snar00007kiypalxeeen',''),('clc93snau00hv7kiyyrgsgvpa',1,'Admin',1672319405,'192.168.64.1',2,36,42287,NULL,'{#DEVNAME}: Get stats','clc93snar00007kiypalxeeen',''),('clc93snau00hw7kiykdqwolzs',1,'Admin',1672319405,'192.168.64.1',2,36,42307,NULL,'{#DEVNAME}: Disk average queue size (avgqu-sz)','clc93snar00007kiypalxeeen',''),('clc93snau00hx7kiyj0s5dge5',1,'Admin',1672319405,'192.168.64.1',2,36,42308,NULL,'{#DEVNAME}: Disk read rate','clc93snar00007kiypalxeeen',''),('clc93snau00hy7kiy1jrxxd3t',1,'Admin',1672319405,'192.168.64.1',2,36,42309,NULL,'{#DEVNAME}: Disk read time (rate)','clc93snar00007kiypalxeeen',''),('clc93snau00hz7kiycupcae9v',1,'Admin',1672319405,'192.168.64.1',2,36,42310,NULL,'{#DEVNAME}: Disk utilization','clc93snar00007kiypalxeeen',''),('clc93snau00i07kiyn3riypmn',1,'Admin',1672319405,'192.168.64.1',2,36,42311,NULL,'{#DEVNAME}: Disk write rate','clc93snar00007kiypalxeeen',''),('clc93snau00i17kiynyjmekta',1,'Admin',1672319405,'192.168.64.1',2,36,42312,NULL,'{#DEVNAME}: Disk write time (rate)','clc93snar00007kiypalxeeen',''),('clc93snau00i27kiyrpyqdz4l',1,'Admin',1672319405,'192.168.64.1',2,36,42288,NULL,'{#FSNAME}: Free inodes in %','clc93snar00007kiypalxeeen',''),('clc93snau00i37kiyqqk9307h',1,'Admin',1672319405,'192.168.64.1',2,36,42289,NULL,'{#FSNAME}: Space utilization','clc93snar00007kiypalxeeen',''),('clc93snau00i47kiyxum8oris',1,'Admin',1672319405,'192.168.64.1',2,36,42290,NULL,'{#FSNAME}: Total space','clc93snar00007kiypalxeeen',''),('clc93snau00i57kiycdq45spf',1,'Admin',1672319405,'192.168.64.1',2,36,42291,NULL,'{#FSNAME}: Used space','clc93snar00007kiypalxeeen',''),('clc93snau00i67kiy06vgujw2',1,'Admin',1672319405,'192.168.64.1',2,36,44438,NULL,'{#FSNAME}: Get filesystem data','clc93snar00007kiypalxeeen',''),('clc93snau00i77kiypfcotxbk',1,'Admin',1672319405,'192.168.64.1',2,36,44440,NULL,'{#FSNAME}: Filesystem is read-only','clc93snar00007kiypalxeeen',''),('clc93snau00i87kiybzvcd2m8',1,'Admin',1672319405,'192.168.64.1',2,36,42363,NULL,'Interface {#IFNAME}: Inbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snau00i97kiyjvebij2d',1,'Admin',1672319405,'192.168.64.1',2,36,42364,NULL,'Interface {#IFNAME}: Inbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snau00ia7kiy5yk22kjd',1,'Admin',1672319405,'192.168.64.1',2,36,42365,NULL,'Interface {#IFNAME}: Bits received','clc93snar00007kiypalxeeen',''),('clc93snau00ib7kiyb77f4jn3',1,'Admin',1672319405,'192.168.64.1',2,36,42366,NULL,'Interface {#IFNAME}: Outbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snau00ic7kiytyw0pbxx',1,'Admin',1672319405,'192.168.64.1',2,36,42367,NULL,'Interface {#IFNAME}: Outbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snau00id7kiy83k9z7zb',1,'Admin',1672319405,'192.168.64.1',2,36,42368,NULL,'Interface {#IFNAME}: Bits sent','clc93snar00007kiypalxeeen',''),('clc93snau00ie7kiyxm76ndb2',1,'Admin',1672319405,'192.168.64.1',2,36,42369,NULL,'Interface {#IFNAME}: Operational status','clc93snar00007kiypalxeeen',''),('clc93snau00if7kiykylbu1ck',1,'Admin',1672319405,'192.168.64.1',2,36,42370,NULL,'Interface {#IFNAME}: Interface type','clc93snar00007kiypalxeeen',''),('clc93snau00ig7kiymaoovifd',1,'Admin',1672319405,'192.168.64.1',2,36,42682,NULL,'Interface {#IFNAME}: Speed','clc93snar00007kiypalxeeen',''),('clc93snau00ih7kiyqp2s7k8g',1,'Admin',1672319405,'192.168.64.1',2,36,42371,NULL,'{#DEVNAME}: Disk read request avg waiting time (r_await)','clc93snar00007kiypalxeeen',''),('clc93snau00ii7kiyzf89k456',1,'Admin',1672319405,'192.168.64.1',2,36,42372,NULL,'{#DEVNAME}: Disk write request avg waiting time (w_await)','clc93snar00007kiypalxeeen',''),('clc93snau00ij7kiyngjm4tga',1,'Admin',1672319405,'192.168.64.1',2,36,42373,NULL,'{#DEVNAME}: Get stats','clc93snar00007kiypalxeeen',''),('clc93snau00ik7kiygzogdj91',1,'Admin',1672319405,'192.168.64.1',2,36,42378,NULL,'{#DEVNAME}: Disk average queue size (avgqu-sz)','clc93snar00007kiypalxeeen',''),('clc93snau00il7kiyjjeh1i6e',1,'Admin',1672319405,'192.168.64.1',2,36,42379,NULL,'{#DEVNAME}: Disk read rate','clc93snar00007kiypalxeeen',''),('clc93snau00im7kiyiy3j3wi8',1,'Admin',1672319405,'192.168.64.1',2,36,42380,NULL,'{#DEVNAME}: Disk read time (rate)','clc93snar00007kiypalxeeen',''),('clc93snau00in7kiyxsrghuif',1,'Admin',1672319405,'192.168.64.1',2,36,42381,NULL,'{#DEVNAME}: Disk utilization','clc93snar00007kiypalxeeen',''),('clc93snau00io7kiyr54jgos5',1,'Admin',1672319405,'192.168.64.1',2,36,42382,NULL,'{#DEVNAME}: Disk write rate','clc93snar00007kiypalxeeen',''),('clc93snau00ip7kiyna7d5ac9',1,'Admin',1672319405,'192.168.64.1',2,36,42383,NULL,'{#DEVNAME}: Disk write time (rate)','clc93snar00007kiypalxeeen',''),('clc93snau00iq7kiy226pgrh5',1,'Admin',1672319405,'192.168.64.1',2,36,42374,NULL,'{#FSNAME}: Free inodes in %','clc93snar00007kiypalxeeen',''),('clc93snau00ir7kiyle6uxvqa',1,'Admin',1672319405,'192.168.64.1',2,36,42375,NULL,'{#FSNAME}: Space utilization','clc93snar00007kiypalxeeen',''),('clc93snau00is7kiyb4abhx6c',1,'Admin',1672319405,'192.168.64.1',2,36,42376,NULL,'{#FSNAME}: Total space','clc93snar00007kiypalxeeen',''),('clc93snau00it7kiybt1hifee',1,'Admin',1672319405,'192.168.64.1',2,36,42377,NULL,'{#FSNAME}: Used space','clc93snar00007kiypalxeeen',''),('clc93snau00iu7kiy5fawxndh',1,'Admin',1672319405,'192.168.64.1',2,36,44443,NULL,'{#FSNAME}: Get filesystem data','clc93snar00007kiypalxeeen',''),('clc93snau00iv7kiy2cn8y9gy',1,'Admin',1672319405,'192.168.64.1',2,36,44444,NULL,'{#FSNAME}: Filesystem is read-only','clc93snar00007kiypalxeeen',''),('clc93snau00iw7kiyikl7hjfc',1,'Admin',1672319405,'192.168.64.1',2,36,42415,NULL,'CPU guest time','clc93snar00007kiypalxeeen',''),('clc93snau00ix7kiycx3kfbct',1,'Admin',1672319405,'192.168.64.1',2,36,42416,NULL,'CPU guest nice time','clc93snar00007kiypalxeeen',''),('clc93snau00iy7kiy3tchqd2w',1,'Admin',1672319405,'192.168.64.1',2,36,42417,NULL,'CPU idle time','clc93snar00007kiypalxeeen',''),('clc93snau00iz7kiyeeahzez5',1,'Admin',1672319405,'192.168.64.1',2,36,42418,NULL,'CPU interrupt time','clc93snar00007kiypalxeeen',''),('clc93snau00j07kiy9d4u3m60',1,'Admin',1672319405,'192.168.64.1',2,36,42419,NULL,'CPU iowait time','clc93snar00007kiypalxeeen',''),('clc93snau00j17kiyojgpz8uw',1,'Admin',1672319405,'192.168.64.1',2,36,42420,NULL,'CPU nice time','clc93snar00007kiypalxeeen',''),('clc93snau00j27kiyhw3t9sdf',1,'Admin',1672319405,'192.168.64.1',2,36,42421,NULL,'CPU softirq time','clc93snar00007kiypalxeeen',''),('clc93snau00j37kiyjz8fdm97',1,'Admin',1672319405,'192.168.64.1',2,36,42422,NULL,'CPU steal time','clc93snar00007kiypalxeeen',''),('clc93snau00j47kiy0ktttv80',1,'Admin',1672319405,'192.168.64.1',2,36,42423,NULL,'CPU system time','clc93snar00007kiypalxeeen',''),('clc93snau00j57kiy0rapgqaq',1,'Admin',1672319405,'192.168.64.1',2,36,42424,NULL,'CPU user time','clc93snar00007kiypalxeeen',''),('clc93snau00j67kiy6py6pymx',1,'Admin',1672319405,'192.168.64.1',2,36,42442,NULL,'CPU utilization','clc93snar00007kiypalxeeen',''),('clc93snau00j77kiysj20o68p',1,'Admin',1672319405,'192.168.64.1',2,36,42425,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snau00j87kiygf611nhm',1,'Admin',1672319405,'192.168.64.1',2,36,42426,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snau00j97kiyiokf6jvc',1,'Admin',1672319405,'192.168.64.1',2,36,42427,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93snar00007kiypalxeeen',''),('clc93snau00ja7kiy0ggu7xlx',1,'Admin',1672319405,'192.168.64.1',2,36,42428,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93snar00007kiypalxeeen',''),('clc93snau00jb7kiyyo5gz37w',1,'Admin',1672319405,'192.168.64.1',2,36,42429,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93snar00007kiypalxeeen',''),('clc93snau00jc7kiyj8hhvrqs',1,'Admin',1672319405,'192.168.64.1',2,36,42430,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93snar00007kiypalxeeen',''),('clc93snau00jd7kiyqeqa1exl',1,'Admin',1672319405,'192.168.64.1',2,36,42431,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93snar00007kiypalxeeen',''),('clc93snau00je7kiyq4lgwuwe',1,'Admin',1672319405,'192.168.64.1',2,36,42432,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93snar00007kiypalxeeen',''),('clc93snau00jf7kiy2aa9jnuh',1,'Admin',1672319405,'192.168.64.1',2,36,42433,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93snar00007kiypalxeeen',''),('clc93snau00jg7kiyp3zvk8cb',1,'Admin',1672319405,'192.168.64.1',2,36,42434,NULL,'Interface {#IFNAME}({#IFALIAS}): Duplex status','clc93snar00007kiypalxeeen',''),('clc93snau00jh7kiydboeuor1',1,'Admin',1672319405,'192.168.64.1',2,36,42435,NULL,'{#DEVNAME}: Disk read rate','clc93snar00007kiypalxeeen',''),('clc93snau00ji7kiyqz8724bu',1,'Admin',1672319405,'192.168.64.1',2,36,42436,NULL,'{#DEVNAME}: Disk utilization','clc93snar00007kiypalxeeen',''),('clc93snau00jj7kiym2a9xfys',1,'Admin',1672319405,'192.168.64.1',2,36,42437,NULL,'{#DEVNAME}: Disk write rate','clc93snar00007kiypalxeeen',''),('clc93snau00jk7kiy6h71a7ou',1,'Admin',1672319405,'192.168.64.1',2,36,42438,NULL,'{#FSNAME}: Free inodes in %','clc93snar00007kiypalxeeen',''),('clc93snau00jl7kiyqqfat8uu',1,'Admin',1672319405,'192.168.64.1',2,36,42439,NULL,'{#FSNAME}: Space utilization','clc93snar00007kiypalxeeen',''),('clc93snau00jm7kiyisn8wolr',1,'Admin',1672319405,'192.168.64.1',2,36,42440,NULL,'{#FSNAME}: Total space','clc93snar00007kiypalxeeen',''),('clc93snau00jn7kiywox4h5wx',1,'Admin',1672319405,'192.168.64.1',2,36,42441,NULL,'{#FSNAME}: Used space','clc93snar00007kiypalxeeen',''),('clc93snau00jo7kiy99neo68a',1,'Admin',1672319405,'192.168.64.1',2,36,42706,NULL,'Kubernetes: Namespace [{#NAMESPACE}] CronJob [{#NAME}]: Completion failed','clc93snar00007kiypalxeeen',''),('clc93snau00jp7kiy5opi3bc3',1,'Admin',1672319405,'192.168.64.1',2,36,42707,NULL,'Kubernetes: Namespace [{#NAMESPACE}] CronJob [{#NAME}]: Completion succeeded','clc93snar00007kiypalxeeen',''),('clc93snau00jq7kiyy10q96ad',1,'Admin',1672319405,'192.168.64.1',2,36,42708,NULL,'Kubernetes: Namespace [{#NAMESPACE}] CronJob [{#NAME}]: Last schedule','clc93snar00007kiypalxeeen',''),('clc93snau00jr7kiy8adunz3c',1,'Admin',1672319405,'192.168.64.1',2,36,42709,NULL,'Kubernetes: Namespace [{#NAMESPACE}] CronJob [{#NAME}]: Next schedule','clc93snar00007kiypalxeeen',''),('clc93snau00js7kiy9obfyjtp',1,'Admin',1672319405,'192.168.64.1',2,36,42710,NULL,'Kubernetes: Namespace [{#NAMESPACE}] CronJob [{#NAME}]: Suspend','clc93snar00007kiypalxeeen',''),('clc93snau00jt7kiyra3nud6n',1,'Admin',1672319405,'192.168.64.1',2,36,42711,NULL,'Kubernetes: Namespace [{#NAMESPACE}] CronJob [{#NAME}]: Active','clc93snar00007kiypalxeeen',''),('clc93snau00ju7kiybb1s1rat',1,'Admin',1672319405,'192.168.64.1',2,36,42712,NULL,'Kubernetes: Namespace [{#NAMESPACE}] CronJob [{#NAME}]: Failed','clc93snar00007kiypalxeeen',''),('clc93snau00jv7kiyzev86dli',1,'Admin',1672319405,'192.168.64.1',2,36,42713,NULL,'Kubernetes: Namespace [{#NAMESPACE}] CronJob [{#NAME}]: Succeeded','clc93snar00007kiypalxeeen',''),('clc93snau00jw7kiy8tp6042p',1,'Admin',1672319405,'192.168.64.1',2,36,42714,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Job [{#NAME}]: Completion failed','clc93snar00007kiypalxeeen',''),('clc93snau00jx7kiy03j6gvbm',1,'Admin',1672319405,'192.168.64.1',2,36,42715,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Job [{#NAME}]: Completion succeeded','clc93snar00007kiypalxeeen',''),('clc93snau00jy7kiy9ogywrpk',1,'Admin',1672319405,'192.168.64.1',2,36,42716,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Job [{#NAME}]: Failed','clc93snar00007kiypalxeeen',''),('clc93snau00jz7kiyv4akaqas',1,'Admin',1672319405,'192.168.64.1',2,36,42717,NULL,'Kubernetes: Namespace [{#NAMESPACE}] Job [{#NAME}]: Succeeded','clc93snar00007kiypalxeeen',''),('clc93snau00k07kiydx0ma299',1,'Admin',1672319405,'192.168.64.1',2,36,42720,NULL,'Kubernetes: Namespace [{#NAMESPACE}] PodDisruptionBudget [{#NAME}]: Disruptions allowed','clc93snar00007kiypalxeeen',''),('clc93snau00k17kiyk3fr9wxe',1,'Admin',1672319405,'192.168.64.1',2,36,42721,NULL,'Kubernetes: Namespace [{#NAMESPACE}] PodDisruptionBudget [{#NAME}]: Pods desired','clc93snar00007kiypalxeeen',''),('clc93snau00k27kiy23ryfpcp',1,'Admin',1672319405,'192.168.64.1',2,36,42722,NULL,'Kubernetes: Namespace [{#NAMESPACE}] PodDisruptionBudget [{#NAME}]: Pods healthy','clc93snar00007kiypalxeeen',''),('clc93snau00k37kiye8pthcb6',1,'Admin',1672319405,'192.168.64.1',2,36,42723,NULL,'Kubernetes: Namespace [{#NAMESPACE}] PodDisruptionBudget [{#NAME}]: Pods total','clc93snar00007kiypalxeeen',''),('clc93snau00k47kiy56o3dqzb',1,'Admin',1672319405,'192.168.64.1',2,36,43196,NULL,'Controller [{#CONTROLLER.ID}]: Cache: Read hits, rate','clc93snar00007kiypalxeeen',''),('clc93snau00k57kiynwchm34e',1,'Admin',1672319405,'192.168.64.1',2,36,43197,NULL,'Controller [{#CONTROLLER.ID}]: IOPS, write rate','clc93snar00007kiypalxeeen',''),('clc93snau00k67kiyvlmf7rbh',1,'Admin',1672319405,'192.168.64.1',2,36,43198,NULL,'Controller [{#CONTROLLER.ID}]: Status','clc93snar00007kiypalxeeen',''),('clc93snau00k77kiy3wvjstql',1,'Admin',1672319405,'192.168.64.1',2,36,43199,NULL,'Controller [{#CONTROLLER.ID}]: Serial number','clc93snar00007kiypalxeeen',''),('clc93snau00k87kiysqgtltqd',1,'Admin',1672319405,'192.168.64.1',2,36,43200,NULL,'Controller [{#CONTROLLER.ID}]: Pools','clc93snar00007kiypalxeeen',''),('clc93snau00k97kiytris0arc',1,'Admin',1672319405,'192.168.64.1',2,36,43201,NULL,'Controller [{#CONTROLLER.ID}]: Part number','clc93snar00007kiypalxeeen',''),('clc93snau00ka7kiy7p30pac1',1,'Admin',1672319405,'192.168.64.1',2,36,43202,NULL,'Controller [{#CONTROLLER.ID}]: IP address','clc93snar00007kiypalxeeen',''),('clc93snau00kb7kiyiuk3cle0',1,'Admin',1672319405,'192.168.64.1',2,36,43203,NULL,'Controller [{#CONTROLLER.ID}]: Health','clc93snar00007kiypalxeeen',''),('clc93snau00kc7kiy89zlrkhs',1,'Admin',1672319405,'192.168.64.1',2,36,43204,NULL,'Controller [{#CONTROLLER.ID}]: Firmware version','clc93snar00007kiypalxeeen',''),('clc93snau00kd7kiyg9iza4e2',1,'Admin',1672319405,'192.168.64.1',2,36,43205,NULL,'Controller [{#CONTROLLER.ID}]: Disk groups','clc93snar00007kiypalxeeen',''),('clc93snau00ke7kiy8q08pl63',1,'Admin',1672319405,'192.168.64.1',2,36,43206,NULL,'Controller [{#CONTROLLER.ID}]: Disks','clc93snar00007kiypalxeeen',''),('clc93snau00kf7kiy3pdokkdy',1,'Admin',1672319405,'192.168.64.1',2,36,43207,NULL,'Controller [{#CONTROLLER.ID}]: IOPS, total rate','clc93snar00007kiypalxeeen',''),('clc93snau00kg7kiywbj8mtxb',1,'Admin',1672319405,'192.168.64.1',2,36,43208,NULL,'Controller [{#CONTROLLER.ID}]: Cache: Read misses, rate','clc93snar00007kiypalxeeen',''),('clc93snau00kh7kiysobyw50z',1,'Admin',1672319405,'192.168.64.1',2,36,43209,NULL,'Controller [{#CONTROLLER.ID}]: IOPS, read rate','clc93snar00007kiypalxeeen',''),('clc93snau00ki7kiy0uu6gejo',1,'Admin',1672319405,'192.168.64.1',2,36,43210,NULL,'Controller [{#CONTROLLER.ID}]: Data transfer rate: Writes','clc93snar00007kiypalxeeen',''),('clc93snau00kj7kiymqvoiyt5',1,'Admin',1672319405,'192.168.64.1',2,36,43211,NULL,'Controller [{#CONTROLLER.ID}]: Data transfer rate: Total','clc93snar00007kiypalxeeen',''),('clc93snau00kk7kiy7l93jr0i',1,'Admin',1672319405,'192.168.64.1',2,36,43212,NULL,'Controller [{#CONTROLLER.ID}]: Data transfer rate: Reads','clc93snar00007kiypalxeeen',''),('clc93snau00kl7kiygjohchj2',1,'Admin',1672319405,'192.168.64.1',2,36,43213,NULL,'Controller [{#CONTROLLER.ID}]: CPU utilization','clc93snar00007kiypalxeeen',''),('clc93snau00km7kiytqmjn3xr',1,'Admin',1672319405,'192.168.64.1',2,36,43214,NULL,'Controller [{#CONTROLLER.ID}]: Cache memory size','clc93snar00007kiypalxeeen',''),('clc93snau00kn7kiykp5o480r',1,'Admin',1672319405,'192.168.64.1',2,36,43215,NULL,'Controller [{#CONTROLLER.ID}]: Cache: Write utilization','clc93snar00007kiypalxeeen',''),('clc93snau00ko7kiybp0qmw8v',1,'Admin',1672319405,'192.168.64.1',2,36,43216,NULL,'Controller [{#CONTROLLER.ID}]: Cache: Write misses, rate','clc93snar00007kiypalxeeen',''),('clc93snau00kp7kiy2ejuizk0',1,'Admin',1672319405,'192.168.64.1',2,36,43217,NULL,'Controller [{#CONTROLLER.ID}]: Cache: Write hits, rate','clc93snar00007kiypalxeeen',''),('clc93snau00kq7kiynrwei6ao',1,'Admin',1672319405,'192.168.64.1',2,36,43218,NULL,'Controller [{#CONTROLLER.ID}]: Uptime','clc93snar00007kiypalxeeen',''),('clc93snau00kr7kiyzzqrv1bi',1,'Admin',1672319405,'192.168.64.1',2,36,44108,NULL,'Controller [{#CONTROLLER.ID}]: Get statistics data','clc93snar00007kiypalxeeen',''),('clc93snau00ks7kiyhtuuua32',1,'Admin',1672319405,'192.168.64.1',2,36,44109,NULL,'Controller [{#CONTROLLER.ID}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snau00kt7kiylkp0pqj5',1,'Admin',1672319405,'192.168.64.1',2,36,43219,NULL,'Disk [{#DURABLE.ID}]: Space total','clc93snar00007kiypalxeeen',''),('clc93snau00ku7kiy0y75x2ns',1,'Admin',1672319405,'192.168.64.1',2,36,43220,NULL,'Disk [{#DURABLE.ID}]: SSD life left','clc93snar00007kiypalxeeen',''),('clc93snau00kv7kiy3w8kn8n3',1,'Admin',1672319405,'192.168.64.1',2,36,43221,NULL,'Disk [{#DURABLE.ID}]: Disk group','clc93snar00007kiypalxeeen',''),('clc93snau00kw7kiydjwx8d48',1,'Admin',1672319405,'192.168.64.1',2,36,43222,NULL,'Disk [{#DURABLE.ID}]: Health','clc93snar00007kiypalxeeen',''),('clc93snau00kx7kiyn3sqsgsm',1,'Admin',1672319405,'192.168.64.1',2,36,43223,NULL,'Disk [{#DURABLE.ID}]: Model','clc93snar00007kiypalxeeen',''),('clc93snau00ky7kiy64gnsih7',1,'Admin',1672319405,'192.168.64.1',2,36,43224,NULL,'Disk [{#DURABLE.ID}]: Storage pool','clc93snar00007kiypalxeeen',''),('clc93snau00kz7kiyxnei4233',1,'Admin',1672319405,'192.168.64.1',2,36,43225,NULL,'Disk [{#DURABLE.ID}]: Serial number','clc93snar00007kiypalxeeen',''),('clc93snau00l07kiyj4ml3g85',1,'Admin',1672319405,'192.168.64.1',2,36,43226,NULL,'Disk [{#DURABLE.ID}]: Temperature','clc93snar00007kiypalxeeen',''),('clc93snau00l17kiyw3t5rhn4',1,'Admin',1672319405,'192.168.64.1',2,36,43227,NULL,'Disk [{#DURABLE.ID}]: Temperature status','clc93snar00007kiypalxeeen',''),('clc93snau00l27kiyasutetlg',1,'Admin',1672319405,'192.168.64.1',2,36,43228,NULL,'Disk [{#DURABLE.ID}]: Type','clc93snar00007kiypalxeeen',''),('clc93snau00l37kiyrzfgbe9x',1,'Admin',1672319405,'192.168.64.1',2,36,43229,NULL,'Disk [{#DURABLE.ID}]: Vendor','clc93snar00007kiypalxeeen',''),('clc93snau00l47kiyxyewn20k',1,'Admin',1672319405,'192.168.64.1',2,36,44110,NULL,'Disk [{#DURABLE.ID}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snau00l57kiyoalrwytw',1,'Admin',1672319405,'192.168.64.1',2,36,43194,NULL,'Disk group [{#NAME}]: Space utilization','clc93snar00007kiypalxeeen',''),('clc93snau00l67kiyr7beytle',1,'Admin',1672319405,'192.168.64.1',2,36,43230,NULL,'Disk group [{#NAME}]: Average response time: Read','clc93snar00007kiypalxeeen',''),('clc93snau00l77kiy42wkncr8',1,'Admin',1672319405,'192.168.64.1',2,36,43231,NULL,'Disk group [{#NAME}]: RAID type','clc93snar00007kiypalxeeen',''),('clc93snau00l87kiy4v4o8dgw',1,'Admin',1672319405,'192.168.64.1',2,36,43232,NULL,'Disk group [{#NAME}]: Health','clc93snar00007kiypalxeeen',''),('clc93snau00l97kiytxz9u4g1',1,'Admin',1672319405,'192.168.64.1',2,36,43233,NULL,'Disk group [{#NAME}]: Disks count','clc93snar00007kiypalxeeen',''),('clc93snau00la7kiy1nhqg9bp',1,'Admin',1672319405,'192.168.64.1',2,36,43234,NULL,'Disk group [{#NAME}]: Space total','clc93snar00007kiypalxeeen',''),('clc93snau00lb7kiy1c7cezhy',1,'Admin',1672319405,'192.168.64.1',2,36,43235,NULL,'Disk group [{#NAME}]: Pool space used','clc93snar00007kiypalxeeen',''),('clc93snau00lc7kiywa90s452',1,'Admin',1672319405,'192.168.64.1',2,36,43236,NULL,'Disk group [{#NAME}]: Space free','clc93snar00007kiypalxeeen',''),('clc93snau00ld7kiyg11xkya2',1,'Admin',1672319405,'192.168.64.1',2,36,43237,NULL,'Disk group [{#NAME}]: IOPS, write rate','clc93snar00007kiypalxeeen',''),('clc93snau00le7kiy173bqw51',1,'Admin',1672319405,'192.168.64.1',2,36,43238,NULL,'Disk group [{#NAME}]: Average response time: Total','clc93snar00007kiypalxeeen',''),('clc93snau00lf7kiy103ulf7f',1,'Admin',1672319405,'192.168.64.1',2,36,43239,NULL,'Disk group [{#NAME}]: IOPS, total rate','clc93snar00007kiypalxeeen',''),('clc93snau00lg7kiy3upolill',1,'Admin',1672319405,'192.168.64.1',2,36,43240,NULL,'Disk group [{#NAME}]: IOPS, read rate','clc93snar00007kiypalxeeen',''),('clc93snau00lh7kiynlqky817',1,'Admin',1672319405,'192.168.64.1',2,36,43241,NULL,'Disk group [{#NAME}]: Data transfer rate: Writes','clc93snar00007kiypalxeeen',''),('clc93snau00li7kiyx75klo5r',1,'Admin',1672319405,'192.168.64.1',2,36,43242,NULL,'Disk group [{#NAME}]: Data transfer rate: Total','clc93snar00007kiypalxeeen',''),('clc93snau00lj7kiyyw1ifjzm',1,'Admin',1672319405,'192.168.64.1',2,36,43243,NULL,'Disk group [{#NAME}]: Data transfer rate: Reads','clc93snar00007kiypalxeeen',''),('clc93snau00lk7kiye43lgzs5',1,'Admin',1672319405,'192.168.64.1',2,36,43244,NULL,'Disk group [{#NAME}]: Average response time: Write','clc93snar00007kiypalxeeen',''),('clc93snau00ll7kiyy6qhomam',1,'Admin',1672319405,'192.168.64.1',2,36,43245,NULL,'Disk group [{#NAME}]: Status','clc93snar00007kiypalxeeen',''),('clc93snau00lm7kiy1n6djagn',1,'Admin',1672319405,'192.168.64.1',2,36,44111,NULL,'Disk group [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snau00ln7kiypjjcguvi',1,'Admin',1672319405,'192.168.64.1',2,36,44112,NULL,'Disk group [{#NAME}]: Get statistics data','clc93snar00007kiypalxeeen',''),('clc93snau00lo7kiy2eubm9nh',1,'Admin',1672319405,'192.168.64.1',2,36,43246,NULL,'Enclosure [{#DURABLE.ID}]: Health','clc93snar00007kiypalxeeen',''),('clc93snau00lp7kiy2izvgp5l',1,'Admin',1672319405,'192.168.64.1',2,36,43247,NULL,'Enclosure [{#DURABLE.ID}]: Midplane serial number','clc93snar00007kiypalxeeen',''),('clc93snau00lq7kiyre6a3dml',1,'Admin',1672319405,'192.168.64.1',2,36,43248,NULL,'Enclosure [{#DURABLE.ID}]: Model','clc93snar00007kiypalxeeen',''),('clc93snau00lr7kiyx8738lw8',1,'Admin',1672319405,'192.168.64.1',2,36,43249,NULL,'Enclosure [{#DURABLE.ID}]: Part number','clc93snar00007kiypalxeeen',''),('clc93snau00ls7kiyix5kgfyx',1,'Admin',1672319405,'192.168.64.1',2,36,43250,NULL,'Enclosure [{#DURABLE.ID}]: Power','clc93snar00007kiypalxeeen',''),('clc93snau00lt7kiyjmezbtdu',1,'Admin',1672319405,'192.168.64.1',2,36,43251,NULL,'Enclosure [{#DURABLE.ID}]: Status','clc93snar00007kiypalxeeen',''),('clc93snau00lu7kiy4o3ivzf4',1,'Admin',1672319405,'192.168.64.1',2,36,44113,NULL,'Enclosure [{#DURABLE.ID}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snau00lv7kiy48syb9el',1,'Admin',1672319405,'192.168.64.1',2,36,43252,NULL,'Fan [{#DURABLE.ID}]: Health','clc93snar00007kiypalxeeen',''),('clc93snau00lw7kiyycblynzu',1,'Admin',1672319405,'192.168.64.1',2,36,43253,NULL,'Fan [{#DURABLE.ID}]: Speed','clc93snar00007kiypalxeeen',''),('clc93snau00lx7kiyumk9z0t3',1,'Admin',1672319405,'192.168.64.1',2,36,43254,NULL,'Fan [{#DURABLE.ID}]: Status','clc93snar00007kiypalxeeen',''),('clc93snau00ly7kiyv1nmhcqj',1,'Admin',1672319405,'192.168.64.1',2,36,44114,NULL,'Fan [{#DURABLE.ID}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snau00lz7kiynsiavstv',1,'Admin',1672319405,'192.168.64.1',2,36,43255,NULL,'FRU [{#ENCLOSURE.ID}: {#LOCATION}]: Part number','clc93snar00007kiypalxeeen',''),('clc93snau00m07kiyudro1o72',1,'Admin',1672319405,'192.168.64.1',2,36,43256,NULL,'FRU [{#ENCLOSURE.ID}: {#LOCATION}]: Serial number','clc93snar00007kiypalxeeen',''),('clc93snau00m17kiyc95dgze3',1,'Admin',1672319405,'192.168.64.1',2,36,43257,NULL,'FRU [{#ENCLOSURE.ID}: {#LOCATION}]: Status','clc93snar00007kiypalxeeen',''),('clc93snau00m27kiywvlho0l3',1,'Admin',1672319405,'192.168.64.1',2,36,44115,NULL,'FRU [{#ENCLOSURE.ID}: {#LOCATION}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snau00m37kiyizqptjsu',1,'Admin',1672319405,'192.168.64.1',2,36,43195,NULL,'Pool [{#NAME}]: Space utilization','clc93snar00007kiypalxeeen',''),('clc93snau00m47kiygf7ei38s',1,'Admin',1672319405,'192.168.64.1',2,36,43258,NULL,'Pool [{#NAME}]: Space free','clc93snar00007kiypalxeeen',''),('clc93snau00m57kiy7tpeivsv',1,'Admin',1672319405,'192.168.64.1',2,36,43259,NULL,'Pool [{#NAME}]: Space total','clc93snar00007kiypalxeeen',''),('clc93snau00m67kiys9isbbh0',1,'Admin',1672319405,'192.168.64.1',2,36,43260,NULL,'Pool [{#NAME}]: Health','clc93snar00007kiypalxeeen',''),('clc93snau00m77kiy8hy9qx57',1,'Admin',1672319405,'192.168.64.1',2,36,44116,NULL,'Pool [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snau00m87kiyhmtpr5pe',1,'Admin',1672319405,'192.168.64.1',2,36,43261,NULL,'Port [{#NAME}]: Health','clc93snar00007kiypalxeeen',''),('clc93snau00m97kiymz38q12d',1,'Admin',1672319405,'192.168.64.1',2,36,43262,NULL,'Port [{#NAME}]: Status','clc93snar00007kiypalxeeen',''),('clc93snau00ma7kiyed2kln15',1,'Admin',1672319405,'192.168.64.1',2,36,43263,NULL,'Port [{#NAME}]: Type','clc93snar00007kiypalxeeen',''),('clc93snau00mb7kiylp7ax7zu',1,'Admin',1672319405,'192.168.64.1',2,36,44117,NULL,'Port [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snau00mc7kiyll7ieb4n',1,'Admin',1672319405,'192.168.64.1',2,36,43264,NULL,'Power supply [{#DURABLE.ID}]: Health','clc93snar00007kiypalxeeen',''),('clc93snau00md7kiyil81m1bo',1,'Admin',1672319405,'192.168.64.1',2,36,43265,NULL,'Power supply [{#DURABLE.ID}]: Part number','clc93snar00007kiypalxeeen',''),('clc93snau00me7kiy6ohd9f6q',1,'Admin',1672319405,'192.168.64.1',2,36,43266,NULL,'Power supply [{#DURABLE.ID}]: Serial number','clc93snar00007kiypalxeeen',''),('clc93snau00mf7kiycwo42nhv',1,'Admin',1672319405,'192.168.64.1',2,36,43267,NULL,'Power supply [{#DURABLE.ID}]: Status','clc93snar00007kiypalxeeen',''),('clc93snau00mg7kiyo3i3jvdx',1,'Admin',1672319405,'192.168.64.1',2,36,43268,NULL,'Power supply [{#DURABLE.ID}]: Temperature','clc93snar00007kiypalxeeen',''),('clc93snau00mh7kiyau28vozr',1,'Admin',1672319405,'192.168.64.1',2,36,44118,NULL,'Power supply [{#DURABLE.ID}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snau00mi7kiyqh572twt',1,'Admin',1672319405,'192.168.64.1',2,36,43269,NULL,'Volume [{#NAME}]: Cache: Read hits, rate','clc93snar00007kiypalxeeen',''),('clc93snau00mj7kiyd6e6fjol',1,'Admin',1672319405,'192.168.64.1',2,36,43270,NULL,'Volume [{#NAME}]: Cache: Read misses, rate','clc93snar00007kiypalxeeen',''),('clc93snau00mk7kiyio61w1vg',1,'Admin',1672319405,'192.168.64.1',2,36,43271,NULL,'Volume [{#NAME}]: Cache: Write hits, rate','clc93snar00007kiypalxeeen',''),('clc93snau00ml7kiyhjxfrcho',1,'Admin',1672319405,'192.168.64.1',2,36,43272,NULL,'Volume [{#NAME}]: Cache: Write misses, rate','clc93snar00007kiypalxeeen',''),('clc93snau00mm7kiyf80vgoiv',1,'Admin',1672319405,'192.168.64.1',2,36,43273,NULL,'Volume [{#NAME}]: Data transfer rate: Reads','clc93snar00007kiypalxeeen',''),('clc93snau00mn7kiyx8thucus',1,'Admin',1672319405,'192.168.64.1',2,36,43274,NULL,'Volume [{#NAME}]: Data transfer rate: Total','clc93snar00007kiypalxeeen',''),('clc93snau00mo7kiyv74cgrnz',1,'Admin',1672319405,'192.168.64.1',2,36,43275,NULL,'Volume [{#NAME}]: Data transfer rate: Writes','clc93snar00007kiypalxeeen',''),('clc93snau00mp7kiyx62aggji',1,'Admin',1672319405,'192.168.64.1',2,36,43276,NULL,'Volume [{#NAME}]: IOPS, read rate','clc93snar00007kiypalxeeen',''),('clc93snau00mq7kiyxqtoguq6',1,'Admin',1672319405,'192.168.64.1',2,36,43277,NULL,'Volume [{#NAME}]: IOPS, total rate','clc93snar00007kiypalxeeen',''),('clc93snau00mr7kiyjzv07bnm',1,'Admin',1672319405,'192.168.64.1',2,36,43278,NULL,'Volume [{#NAME}]: IOPS, write rate','clc93snar00007kiypalxeeen',''),('clc93snau00ms7kiyeda11slo',1,'Admin',1672319405,'192.168.64.1',2,36,43279,NULL,'Volume [{#NAME}]: Space allocated','clc93snar00007kiypalxeeen',''),('clc93snau00mt7kiygx98hx0a',1,'Admin',1672319405,'192.168.64.1',2,36,43280,NULL,'Volume [{#NAME}]: Space total','clc93snar00007kiypalxeeen',''),('clc93snau00mu7kiyn0nrcbme',1,'Admin',1672319405,'192.168.64.1',2,36,44119,NULL,'Volume [{#NAME}]: Get statistics data','clc93snar00007kiypalxeeen',''),('clc93snau00mv7kiywkpt74pj',1,'Admin',1672319405,'192.168.64.1',2,36,44120,NULL,'Volume [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snau00mw7kiy1wtjusgb',1,'Admin',1672319405,'192.168.64.1',2,36,43310,NULL,'Controller [{#CONTROLLER.ID}]: Cache: Read hits, rate','clc93snar00007kiypalxeeen',''),('clc93snau00mx7kiyljv5z966',1,'Admin',1672319405,'192.168.64.1',2,36,43311,NULL,'Controller [{#CONTROLLER.ID}]: IOPS, write rate','clc93snar00007kiypalxeeen',''),('clc93snau00my7kiyvk8i6o7v',1,'Admin',1672319405,'192.168.64.1',2,36,43312,NULL,'Controller [{#CONTROLLER.ID}]: Status','clc93snar00007kiypalxeeen',''),('clc93snau00mz7kiy8opwum3y',1,'Admin',1672319405,'192.168.64.1',2,36,43313,NULL,'Controller [{#CONTROLLER.ID}]: Serial number','clc93snar00007kiypalxeeen',''),('clc93snau00n07kiyfiistxgg',1,'Admin',1672319405,'192.168.64.1',2,36,43314,NULL,'Controller [{#CONTROLLER.ID}]: Pools','clc93snar00007kiypalxeeen',''),('clc93snau00n17kiy2nporcy6',1,'Admin',1672319405,'192.168.64.1',2,36,43315,NULL,'Controller [{#CONTROLLER.ID}]: Part number','clc93snar00007kiypalxeeen',''),('clc93snau00n27kiyixrklzfb',1,'Admin',1672319405,'192.168.64.1',2,36,43316,NULL,'Controller [{#CONTROLLER.ID}]: IP address','clc93snar00007kiypalxeeen',''),('clc93snau00n37kiyitiufp6p',1,'Admin',1672319405,'192.168.64.1',2,36,43317,NULL,'Controller [{#CONTROLLER.ID}]: Health','clc93snar00007kiypalxeeen',''),('clc93snau00n47kiy8mka7l53',1,'Admin',1672319405,'192.168.64.1',2,36,43318,NULL,'Controller [{#CONTROLLER.ID}]: Firmware version','clc93snar00007kiypalxeeen',''),('clc93snau00n57kiylea66q0w',1,'Admin',1672319405,'192.168.64.1',2,36,43319,NULL,'Controller [{#CONTROLLER.ID}]: Disk groups','clc93snar00007kiypalxeeen',''),('clc93snau00n67kiyst6lbn0z',1,'Admin',1672319405,'192.168.64.1',2,36,43320,NULL,'Controller [{#CONTROLLER.ID}]: Disks','clc93snar00007kiypalxeeen',''),('clc93snau00n77kiyazg7m5nd',1,'Admin',1672319405,'192.168.64.1',2,36,43321,NULL,'Controller [{#CONTROLLER.ID}]: IOPS, total rate','clc93snar00007kiypalxeeen',''),('clc93snau00n87kiyzco6564q',1,'Admin',1672319405,'192.168.64.1',2,36,43322,NULL,'Controller [{#CONTROLLER.ID}]: Cache: Read misses, rate','clc93snar00007kiypalxeeen',''),('clc93snau00n97kiyi13rk70k',1,'Admin',1672319405,'192.168.64.1',2,36,43323,NULL,'Controller [{#CONTROLLER.ID}]: IOPS, read rate','clc93snar00007kiypalxeeen',''),('clc93snau00na7kiyapi1qvrf',1,'Admin',1672319405,'192.168.64.1',2,36,43324,NULL,'Controller [{#CONTROLLER.ID}]: Data transfer rate: Writes','clc93snar00007kiypalxeeen',''),('clc93snau00nb7kiygjd5htdj',1,'Admin',1672319405,'192.168.64.1',2,36,43325,NULL,'Controller [{#CONTROLLER.ID}]: Data transfer rate: Total','clc93snar00007kiypalxeeen',''),('clc93snau00nc7kiy3qn51osq',1,'Admin',1672319405,'192.168.64.1',2,36,43326,NULL,'Controller [{#CONTROLLER.ID}]: Data transfer rate: Reads','clc93snar00007kiypalxeeen',''),('clc93snau00nd7kiytk4s08oj',1,'Admin',1672319405,'192.168.64.1',2,36,43327,NULL,'Controller [{#CONTROLLER.ID}]: CPU utilization','clc93snar00007kiypalxeeen',''),('clc93snau00ne7kiykgeluhqn',1,'Admin',1672319405,'192.168.64.1',2,36,43328,NULL,'Controller [{#CONTROLLER.ID}]: Cache memory size','clc93snar00007kiypalxeeen',''),('clc93snau00nf7kiyu6cule2y',1,'Admin',1672319405,'192.168.64.1',2,36,43329,NULL,'Controller [{#CONTROLLER.ID}]: Cache: Write utilization','clc93snar00007kiypalxeeen',''),('clc93snau00ng7kiydhnlw1nx',1,'Admin',1672319405,'192.168.64.1',2,36,43330,NULL,'Controller [{#CONTROLLER.ID}]: Cache: Write misses, rate','clc93snar00007kiypalxeeen',''),('clc93snau00nh7kiy1e5n5g14',1,'Admin',1672319405,'192.168.64.1',2,36,43331,NULL,'Controller [{#CONTROLLER.ID}]: Cache: Write hits, rate','clc93snar00007kiypalxeeen',''),('clc93snau00ni7kiy53im4fgj',1,'Admin',1672319405,'192.168.64.1',2,36,43332,NULL,'Controller [{#CONTROLLER.ID}]: Uptime','clc93snar00007kiypalxeeen',''),('clc93snau00nj7kiy5nz5vpw9',1,'Admin',1672319405,'192.168.64.1',2,36,44135,NULL,'Controller [{#CONTROLLER.ID}]: Get statistics data','clc93snar00007kiypalxeeen',''),('clc93snau00nk7kiy1944mtik',1,'Admin',1672319405,'192.168.64.1',2,36,44136,NULL,'Controller [{#CONTROLLER.ID}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snau00nl7kiyflfuyewq',1,'Admin',1672319405,'192.168.64.1',2,36,43301,NULL,'Disk [{#DURABLE.ID}]: Space total','clc93snar00007kiypalxeeen',''),('clc93snau00nm7kiymqkitoj5',1,'Admin',1672319405,'192.168.64.1',2,36,43333,NULL,'Disk [{#DURABLE.ID}]: Blocks size','clc93snar00007kiypalxeeen',''),('clc93snau00nn7kiywofv1erv',1,'Admin',1672319405,'192.168.64.1',2,36,43334,NULL,'Disk [{#DURABLE.ID}]: Blocks total','clc93snar00007kiypalxeeen',''),('clc93snau00no7kiykas2hszp',1,'Admin',1672319405,'192.168.64.1',2,36,43335,NULL,'Disk [{#DURABLE.ID}]: SSD life left','clc93snar00007kiypalxeeen',''),('clc93snau00np7kiymaw2g914',1,'Admin',1672319405,'192.168.64.1',2,36,43336,NULL,'Disk [{#DURABLE.ID}]: Disk group','clc93snar00007kiypalxeeen',''),('clc93snau00nq7kiyjwiyfgq4',1,'Admin',1672319405,'192.168.64.1',2,36,43337,NULL,'Disk [{#DURABLE.ID}]: Health','clc93snar00007kiypalxeeen',''),('clc93snau00nr7kiyy4pdhxcj',1,'Admin',1672319405,'192.168.64.1',2,36,43338,NULL,'Disk [{#DURABLE.ID}]: Model','clc93snar00007kiypalxeeen',''),('clc93snau00ns7kiygymsjahl',1,'Admin',1672319405,'192.168.64.1',2,36,43339,NULL,'Disk [{#DURABLE.ID}]: Storage pool','clc93snar00007kiypalxeeen',''),('clc93snau00nt7kiydvo7s0t2',1,'Admin',1672319405,'192.168.64.1',2,36,43340,NULL,'Disk [{#DURABLE.ID}]: Serial number','clc93snar00007kiypalxeeen',''),('clc93snau00nu7kiyqmu84uw3',1,'Admin',1672319405,'192.168.64.1',2,36,43341,NULL,'Disk [{#DURABLE.ID}]: Temperature','clc93snar00007kiypalxeeen',''),('clc93snau00nv7kiygeei3mv1',1,'Admin',1672319405,'192.168.64.1',2,36,43342,NULL,'Disk [{#DURABLE.ID}]: Temperature status','clc93snar00007kiypalxeeen',''),('clc93snau00nw7kiyrkl93npy',1,'Admin',1672319405,'192.168.64.1',2,36,43343,NULL,'Disk [{#DURABLE.ID}]: Type','clc93snar00007kiypalxeeen',''),('clc93snau00nx7kiyyj3d9ny6',1,'Admin',1672319405,'192.168.64.1',2,36,43344,NULL,'Disk [{#DURABLE.ID}]: Vendor','clc93snar00007kiypalxeeen',''),('clc93snau00ny7kiygp9g8u5d',1,'Admin',1672319405,'192.168.64.1',2,36,44137,NULL,'Disk [{#DURABLE.ID}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snau00nz7kiybza0q8f2',1,'Admin',1672319405,'192.168.64.1',2,36,43302,NULL,'Disk group [{#NAME}]: Space utilization','clc93snar00007kiypalxeeen',''),('clc93snau00o07kiyza5f4w3y',1,'Admin',1672319405,'192.168.64.1',2,36,43303,NULL,'Disk group [{#NAME}]: Space total','clc93snar00007kiypalxeeen',''),('clc93snau00o17kiyhrkwb94k',1,'Admin',1672319405,'192.168.64.1',2,36,43304,NULL,'Disk group [{#NAME}]: Space free','clc93snar00007kiypalxeeen',''),('clc93snau00o27kiyq0skw4na',1,'Admin',1672319405,'192.168.64.1',2,36,43345,NULL,'Disk group [{#NAME}]: Average response time: Read','clc93snar00007kiypalxeeen',''),('clc93snau00o37kiyndj1qmrl',1,'Admin',1672319405,'192.168.64.1',2,36,43346,NULL,'Disk group [{#NAME}]: IOPS, write rate','clc93snar00007kiypalxeeen',''),('clc93snau00o47kiyog3qub83',1,'Admin',1672319405,'192.168.64.1',2,36,43347,NULL,'Disk group [{#NAME}]: Health','clc93snar00007kiypalxeeen',''),('clc93snau00o57kiypx9dg70h',1,'Admin',1672319405,'192.168.64.1',2,36,43348,NULL,'Disk group [{#NAME}]: Disks count','clc93snar00007kiypalxeeen',''),('clc93snau00o67kiy66ji3a2q',1,'Admin',1672319405,'192.168.64.1',2,36,43349,NULL,'Disk group [{#NAME}]: Pool space used','clc93snar00007kiypalxeeen',''),('clc93snau00o77kiynj5ynwto',1,'Admin',1672319405,'192.168.64.1',2,36,43350,NULL,'Disk group [{#NAME}]: RAID type','clc93snar00007kiypalxeeen',''),('clc93snau00o87kiy6fatjeb9',1,'Admin',1672319405,'192.168.64.1',2,36,43351,NULL,'Disk group [{#NAME}]: IOPS, total rate','clc93snar00007kiypalxeeen',''),('clc93snau00o97kiyrqi4dcvs',1,'Admin',1672319405,'192.168.64.1',2,36,43352,NULL,'Disk group [{#NAME}]: Average response time: Total','clc93snar00007kiypalxeeen',''),('clc93snau00oa7kiyna5p6fec',1,'Admin',1672319405,'192.168.64.1',2,36,43353,NULL,'Disk group [{#NAME}]: IOPS, read rate','clc93snar00007kiypalxeeen',''),('clc93snau00ob7kiyjrwoyocm',1,'Admin',1672319405,'192.168.64.1',2,36,43354,NULL,'Disk group [{#NAME}]: Data transfer rate: Writes','clc93snar00007kiypalxeeen',''),('clc93snau00oc7kiy2zyqttvm',1,'Admin',1672319405,'192.168.64.1',2,36,43355,NULL,'Disk group [{#NAME}]: Data transfer rate: Total','clc93snar00007kiypalxeeen',''),('clc93snau00od7kiydof6pi79',1,'Admin',1672319405,'192.168.64.1',2,36,43356,NULL,'Disk group [{#NAME}]: Data transfer rate: Reads','clc93snar00007kiypalxeeen',''),('clc93snau00oe7kiywp74cl3w',1,'Admin',1672319405,'192.168.64.1',2,36,43357,NULL,'Disk group [{#NAME}]: Blocks total','clc93snar00007kiypalxeeen',''),('clc93snau00of7kiy1cyl2w67',1,'Admin',1672319405,'192.168.64.1',2,36,43358,NULL,'Disk group [{#NAME}]: Blocks size','clc93snar00007kiypalxeeen',''),('clc93snau00og7kiy72688c5c',1,'Admin',1672319405,'192.168.64.1',2,36,43359,NULL,'Disk group [{#NAME}]: Blocks free','clc93snar00007kiypalxeeen',''),('clc93snau00oh7kiyj03937fj',1,'Admin',1672319405,'192.168.64.1',2,36,43360,NULL,'Disk group [{#NAME}]: Average response time: Write','clc93snar00007kiypalxeeen',''),('clc93snau00oi7kiyhozu9jyg',1,'Admin',1672319405,'192.168.64.1',2,36,43361,NULL,'Disk group [{#NAME}]: Status','clc93snar00007kiypalxeeen',''),('clc93snau00oj7kiybkeqw3wq',1,'Admin',1672319405,'192.168.64.1',2,36,44138,NULL,'Disk group [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snau00ok7kiyygw4iqo5',1,'Admin',1672319405,'192.168.64.1',2,36,44139,NULL,'Disk group [{#NAME}]: Get statistics data','clc93snar00007kiypalxeeen',''),('clc93snau00ol7kiykqz4iy91',1,'Admin',1672319405,'192.168.64.1',2,36,43362,NULL,'Enclosure [{#DURABLE.ID}]: Health','clc93snar00007kiypalxeeen',''),('clc93snau00om7kiya8n5gw01',1,'Admin',1672319405,'192.168.64.1',2,36,43363,NULL,'Enclosure [{#DURABLE.ID}]: Midplane serial number','clc93snar00007kiypalxeeen',''),('clc93snau00on7kiysscrev4u',1,'Admin',1672319405,'192.168.64.1',2,36,43364,NULL,'Enclosure [{#DURABLE.ID}]: Model','clc93snar00007kiypalxeeen',''),('clc93snau00oo7kiyll5nlg7z',1,'Admin',1672319405,'192.168.64.1',2,36,43365,NULL,'Enclosure [{#DURABLE.ID}]: Part number','clc93snar00007kiypalxeeen',''),('clc93snau00op7kiyoaq1xzmy',1,'Admin',1672319405,'192.168.64.1',2,36,43366,NULL,'Enclosure [{#DURABLE.ID}]: Power','clc93snar00007kiypalxeeen',''),('clc93snau00oq7kiy5oba9c04',1,'Admin',1672319405,'192.168.64.1',2,36,43367,NULL,'Enclosure [{#DURABLE.ID}]: Status','clc93snar00007kiypalxeeen',''),('clc93snau00or7kiyp26a8kp9',1,'Admin',1672319405,'192.168.64.1',2,36,44140,NULL,'Enclosure [{#DURABLE.ID}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snau00os7kiyuebe56my',1,'Admin',1672319405,'192.168.64.1',2,36,43368,NULL,'Fan [{#DURABLE.ID}]: Health','clc93snar00007kiypalxeeen',''),('clc93snau00ot7kiyqaqjd1qy',1,'Admin',1672319405,'192.168.64.1',2,36,43369,NULL,'Fan [{#DURABLE.ID}]: Speed','clc93snar00007kiypalxeeen',''),('clc93snau00ou7kiyndb30p92',1,'Admin',1672319405,'192.168.64.1',2,36,43370,NULL,'Fan [{#DURABLE.ID}]: Status','clc93snar00007kiypalxeeen',''),('clc93snau00ov7kiy5rn6jbpk',1,'Admin',1672319405,'192.168.64.1',2,36,44141,NULL,'Fan [{#DURABLE.ID}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00ow7kiy95w4ee3e',1,'Admin',1672319405,'192.168.64.1',2,36,43371,NULL,'FRU [{#ENCLOSURE.ID}: {#LOCATION}]: Part number','clc93snar00007kiypalxeeen',''),('clc93snav00ox7kiyebr9pvfa',1,'Admin',1672319405,'192.168.64.1',2,36,43372,NULL,'FRU [{#ENCLOSURE.ID}: {#LOCATION}]: Serial number','clc93snar00007kiypalxeeen',''),('clc93snav00oy7kiyah6echmg',1,'Admin',1672319405,'192.168.64.1',2,36,43373,NULL,'FRU [{#ENCLOSURE.ID}: {#LOCATION}]: Status','clc93snar00007kiypalxeeen',''),('clc93snav00oz7kiyr74xh7mp',1,'Admin',1672319405,'192.168.64.1',2,36,44142,NULL,'FRU [{#ENCLOSURE.ID}: {#LOCATION}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00p07kiyh4m8lebe',1,'Admin',1672319405,'192.168.64.1',2,36,43305,NULL,'Pool [{#NAME}]: Space free','clc93snar00007kiypalxeeen',''),('clc93snav00p17kiymlfr0n4n',1,'Admin',1672319405,'192.168.64.1',2,36,43306,NULL,'Pool [{#NAME}]: Space total','clc93snar00007kiypalxeeen',''),('clc93snav00p27kiy1ie4isbo',1,'Admin',1672319405,'192.168.64.1',2,36,43307,NULL,'Pool [{#NAME}]: Space utilization','clc93snar00007kiypalxeeen',''),('clc93snav00p37kiyg1g7fztx',1,'Admin',1672319405,'192.168.64.1',2,36,43374,NULL,'Pool [{#NAME}]: Blocks available','clc93snar00007kiypalxeeen',''),('clc93snav00p47kiyf1fe1w3y',1,'Admin',1672319405,'192.168.64.1',2,36,43375,NULL,'Pool [{#NAME}]: Blocks size','clc93snar00007kiypalxeeen',''),('clc93snav00p57kiy79vxcpz2',1,'Admin',1672319405,'192.168.64.1',2,36,43376,NULL,'Pool [{#NAME}]: Blocks total','clc93snar00007kiypalxeeen',''),('clc93snav00p67kiy70sld9to',1,'Admin',1672319405,'192.168.64.1',2,36,43377,NULL,'Pool [{#NAME}]: Health','clc93snar00007kiypalxeeen',''),('clc93snav00p77kiy4blz9n66',1,'Admin',1672319405,'192.168.64.1',2,36,44143,NULL,'Pool [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00p87kiy8lq28lee',1,'Admin',1672319405,'192.168.64.1',2,36,43378,NULL,'Port [{#NAME}]: Health','clc93snar00007kiypalxeeen',''),('clc93snav00p97kiyvffakcly',1,'Admin',1672319405,'192.168.64.1',2,36,43379,NULL,'Port [{#NAME}]: Status','clc93snar00007kiypalxeeen',''),('clc93snav00pa7kiyew9f48il',1,'Admin',1672319405,'192.168.64.1',2,36,43380,NULL,'Port [{#NAME}]: Type','clc93snar00007kiypalxeeen',''),('clc93snav00pb7kiyawkq0x4i',1,'Admin',1672319405,'192.168.64.1',2,36,44144,NULL,'Port [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00pc7kiy7xim2py8',1,'Admin',1672319405,'192.168.64.1',2,36,43381,NULL,'Power supply [{#DURABLE.ID}]: Health','clc93snar00007kiypalxeeen',''),('clc93snav00pd7kiypjvivxy4',1,'Admin',1672319405,'192.168.64.1',2,36,43382,NULL,'Power supply [{#DURABLE.ID}]: Part number','clc93snar00007kiypalxeeen',''),('clc93snav00pe7kiyiojreykt',1,'Admin',1672319405,'192.168.64.1',2,36,43383,NULL,'Power supply [{#DURABLE.ID}]: Serial number','clc93snar00007kiypalxeeen',''),('clc93snav00pf7kiycw7z4yfs',1,'Admin',1672319405,'192.168.64.1',2,36,43384,NULL,'Power supply [{#DURABLE.ID}]: Status','clc93snar00007kiypalxeeen',''),('clc93snav00pg7kiy6mze5gc3',1,'Admin',1672319405,'192.168.64.1',2,36,44145,NULL,'Power supply [{#DURABLE.ID}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00ph7kiyjjn4k4rd',1,'Admin',1672319405,'192.168.64.1',2,36,43308,NULL,'Volume [{#NAME}]: Space total','clc93snar00007kiypalxeeen',''),('clc93snav00pi7kiy76nl0f8m',1,'Admin',1672319405,'192.168.64.1',2,36,43309,NULL,'Volume [{#NAME}]: Space allocated','clc93snar00007kiypalxeeen',''),('clc93snav00pj7kiy47232ki0',1,'Admin',1672319405,'192.168.64.1',2,36,43385,NULL,'Volume [{#NAME}]: Blocks allocated','clc93snar00007kiypalxeeen',''),('clc93snav00pk7kiyyi3exih5',1,'Admin',1672319405,'192.168.64.1',2,36,43386,NULL,'Volume [{#NAME}]: Blocks size','clc93snar00007kiypalxeeen',''),('clc93snav00pl7kiy58oo3dk0',1,'Admin',1672319405,'192.168.64.1',2,36,43387,NULL,'Volume [{#NAME}]: Blocks total','clc93snar00007kiypalxeeen',''),('clc93snav00pm7kiyqamay6qz',1,'Admin',1672319405,'192.168.64.1',2,36,43388,NULL,'Volume [{#NAME}]: Cache: Read hits, rate','clc93snar00007kiypalxeeen',''),('clc93snav00pn7kiy16mqtpbj',1,'Admin',1672319405,'192.168.64.1',2,36,43389,NULL,'Volume [{#NAME}]: Cache: Read misses, rate','clc93snar00007kiypalxeeen',''),('clc93snav00po7kiypmmw8twc',1,'Admin',1672319405,'192.168.64.1',2,36,43390,NULL,'Volume [{#NAME}]: Cache: Write hits, rate','clc93snar00007kiypalxeeen',''),('clc93snav00pp7kiymkqxot15',1,'Admin',1672319405,'192.168.64.1',2,36,43391,NULL,'Volume [{#NAME}]: Cache: Write misses, rate','clc93snar00007kiypalxeeen',''),('clc93snav00pq7kiyg77vj12t',1,'Admin',1672319405,'192.168.64.1',2,36,43392,NULL,'Volume [{#NAME}]: Data transfer rate: Reads','clc93snar00007kiypalxeeen',''),('clc93snav00pr7kiyhftilnjj',1,'Admin',1672319405,'192.168.64.1',2,36,43393,NULL,'Volume [{#NAME}]: Data transfer rate: Total','clc93snar00007kiypalxeeen',''),('clc93snav00ps7kiyjzl9zi0w',1,'Admin',1672319405,'192.168.64.1',2,36,43394,NULL,'Volume [{#NAME}]: Data transfer rate: Writes','clc93snar00007kiypalxeeen',''),('clc93snav00pt7kiydtxh5wbq',1,'Admin',1672319405,'192.168.64.1',2,36,43395,NULL,'Volume [{#NAME}]: IOPS, read rate','clc93snar00007kiypalxeeen',''),('clc93snav00pu7kiysef8yo5a',1,'Admin',1672319405,'192.168.64.1',2,36,43396,NULL,'Volume [{#NAME}]: IOPS, total rate','clc93snar00007kiypalxeeen',''),('clc93snav00pv7kiy4rfta6ao',1,'Admin',1672319405,'192.168.64.1',2,36,43397,NULL,'Volume [{#NAME}]: IOPS, write rate','clc93snar00007kiypalxeeen',''),('clc93snav00pw7kiyp86fzza2',1,'Admin',1672319405,'192.168.64.1',2,36,44146,NULL,'Volume [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00px7kiy6bw0rgwu',1,'Admin',1672319405,'192.168.64.1',2,36,44147,NULL,'Volume [{#NAME}]: Get statistics data','clc93snar00007kiypalxeeen',''),('clc93snav00py7kiyndla12iz',1,'Admin',1672319405,'192.168.64.1',2,36,43421,NULL,'CPG [{#NAME}]: Number of FPVVs','clc93snar00007kiypalxeeen',''),('clc93snav00pz7kiyifsczrv6',1,'Admin',1672319405,'192.168.64.1',2,36,43422,NULL,'CPG [{#NAME}]: Logical disk space: User space: Used (raw)','clc93snar00007kiypalxeeen',''),('clc93snav00q07kiyqz3x9y98',1,'Admin',1672319405,'192.168.64.1',2,36,43423,NULL,'CPG [{#NAME}]: Number of TDVVs','clc93snar00007kiypalxeeen',''),('clc93snav00q17kiyd2men5p4',1,'Admin',1672319405,'192.168.64.1',2,36,43424,NULL,'CPG [{#NAME}]: State','clc93snar00007kiypalxeeen',''),('clc93snav00q27kiygqwes9ti',1,'Admin',1672319405,'192.168.64.1',2,36,43425,NULL,'CPG [{#NAME}]: Failed state','clc93snar00007kiypalxeeen',''),('clc93snav00q37kiyfzyvahwr',1,'Admin',1672319405,'192.168.64.1',2,36,43426,NULL,'CPG [{#NAME}]: Degraded state','clc93snar00007kiypalxeeen',''),('clc93snav00q47kiykddksfyv',1,'Admin',1672319405,'192.168.64.1',2,36,43427,NULL,'CPG [{#NAME}]: CPG space: Total','clc93snar00007kiypalxeeen',''),('clc93snav00q57kiyfh5kbdwd',1,'Admin',1672319405,'192.168.64.1',2,36,43428,NULL,'CPG [{#NAME}]: CPG space: Shared','clc93snar00007kiypalxeeen',''),('clc93snav00q67kiy6lvp1d6t',1,'Admin',1672319405,'192.168.64.1',2,36,43429,NULL,'CPG [{#NAME}]: CPG space: Free','clc93snar00007kiypalxeeen',''),('clc93snav00q77kiy2vcxo6zt',1,'Admin',1672319405,'192.168.64.1',2,36,43430,NULL,'CPG [{#NAME}]: Logical disk space: User space: Used','clc93snar00007kiypalxeeen',''),('clc93snav00q87kiy4f4a7m9f',1,'Admin',1672319405,'192.168.64.1',2,36,43431,NULL,'CPG [{#NAME}]: Logical disk space: User space: Total','clc93snar00007kiypalxeeen',''),('clc93snav00q97kiyrm02v4vx',1,'Admin',1672319405,'192.168.64.1',2,36,43432,NULL,'CPG [{#NAME}]: Logical disk space: User space: Total (raw)','clc93snar00007kiypalxeeen',''),('clc93snav00qa7kiy6pi6v4r4',1,'Admin',1672319405,'192.168.64.1',2,36,43433,NULL,'CPG [{#NAME}]: Raw space: Free','clc93snar00007kiypalxeeen',''),('clc93snav00qb7kiyz6o45b4j',1,'Admin',1672319405,'192.168.64.1',2,36,43434,NULL,'CPG [{#NAME}]: Logical disk space: Snapshot data: Used','clc93snar00007kiypalxeeen',''),('clc93snav00qc7kiyxczf8u1q',1,'Admin',1672319405,'192.168.64.1',2,36,43435,NULL,'CPG [{#NAME}]: Logical disk space: Snapshot data: Total','clc93snar00007kiypalxeeen',''),('clc93snav00qd7kiy7se7vf9s',1,'Admin',1672319405,'192.168.64.1',2,36,43436,NULL,'CPG [{#NAME}]: Logical disk space: Snapshot data: Used (raw)','clc93snar00007kiypalxeeen',''),('clc93snav00qe7kiypy47wgtp',1,'Admin',1672319405,'192.168.64.1',2,36,43437,NULL,'CPG [{#NAME}]: Logical disk space: Snapshot data: Total (raw)','clc93snar00007kiypalxeeen',''),('clc93snav00qf7kiyta32xio7',1,'Admin',1672319405,'192.168.64.1',2,36,43438,NULL,'CPG [{#NAME}]: Logical disk space: Snapshot administration: Used','clc93snar00007kiypalxeeen',''),('clc93snav00qg7kiy2ivv3e7q',1,'Admin',1672319405,'192.168.64.1',2,36,43439,NULL,'CPG [{#NAME}]: Logical disk space: Snapshot administration: Total','clc93snar00007kiypalxeeen',''),('clc93snav00qh7kiysgrv7ia6',1,'Admin',1672319405,'192.168.64.1',2,36,43440,NULL,'CPG [{#NAME}]: Logical disk space: Snapshot administration: Used (raw)','clc93snar00007kiypalxeeen',''),('clc93snav00qi7kiyrxrbx4vd',1,'Admin',1672319405,'192.168.64.1',2,36,43441,NULL,'CPG [{#NAME}]: Logical disk space: Snapshot administration: Total (raw)','clc93snar00007kiypalxeeen',''),('clc93snav00qj7kiywc8wry1w',1,'Admin',1672319405,'192.168.64.1',2,36,43442,NULL,'CPG [{#NAME}]: Raw space: Total','clc93snar00007kiypalxeeen',''),('clc93snav00qk7kiy1ihginf2',1,'Admin',1672319405,'192.168.64.1',2,36,43443,NULL,'CPG [{#NAME}]: Raw space: Shared','clc93snar00007kiypalxeeen',''),('clc93snav00ql7kiyaxiyvgp5',1,'Admin',1672319405,'192.168.64.1',2,36,43444,NULL,'CPG [{#NAME}]: Number of TPVVs','clc93snar00007kiypalxeeen',''),('clc93snav00qm7kiyxfmp3gpj',1,'Admin',1672319405,'192.168.64.1',2,36,44155,NULL,'CPG [{#NAME}]: Get CPG data','clc93snar00007kiypalxeeen',''),('clc93snav00qn7kiym1871682',1,'Admin',1672319405,'192.168.64.1',2,36,43445,NULL,'Disk [{#POSITION}]: Free size','clc93snar00007kiypalxeeen',''),('clc93snav00qo7kiyxhftkiys',1,'Admin',1672319405,'192.168.64.1',2,36,43446,NULL,'Disk [{#POSITION}]: Firmware version','clc93snar00007kiypalxeeen',''),('clc93snav00qp7kiyxb2dw9qz',1,'Admin',1672319405,'192.168.64.1',2,36,43447,NULL,'Disk [{#POSITION}]: Path A0 degraded','clc93snar00007kiypalxeeen',''),('clc93snav00qq7kiyr26kbubb',1,'Admin',1672319405,'192.168.64.1',2,36,43448,NULL,'Disk [{#POSITION}]: Path A1 degraded','clc93snar00007kiypalxeeen',''),('clc93snav00qr7kiyyfxp9str',1,'Admin',1672319405,'192.168.64.1',2,36,43449,NULL,'Disk [{#POSITION}]: Path B0 degraded','clc93snar00007kiypalxeeen',''),('clc93snav00qs7kiyg236avxk',1,'Admin',1672319405,'192.168.64.1',2,36,43450,NULL,'Disk [{#POSITION}]: Path B1 degraded','clc93snar00007kiypalxeeen',''),('clc93snav00qt7kiyj9ycftv5',1,'Admin',1672319405,'192.168.64.1',2,36,43451,NULL,'Disk [{#POSITION}]: Manufacturer','clc93snar00007kiypalxeeen',''),('clc93snav00qu7kiyt8gs172r',1,'Admin',1672319405,'192.168.64.1',2,36,43452,NULL,'Disk [{#POSITION}]: Model','clc93snar00007kiypalxeeen',''),('clc93snav00qv7kiy2gjoiojj',1,'Admin',1672319405,'192.168.64.1',2,36,43453,NULL,'Disk [{#POSITION}]: RPM','clc93snar00007kiypalxeeen',''),('clc93snav00qw7kiyuubfjjxl',1,'Admin',1672319405,'192.168.64.1',2,36,43454,NULL,'Disk [{#POSITION}]: Serial number','clc93snar00007kiypalxeeen',''),('clc93snav00qx7kiyg6q8oaiq',1,'Admin',1672319405,'192.168.64.1',2,36,43455,NULL,'Disk [{#POSITION}]: State','clc93snar00007kiypalxeeen',''),('clc93snav00qy7kiyxw6z7o2e',1,'Admin',1672319405,'192.168.64.1',2,36,43456,NULL,'Disk [{#POSITION}]: Total size','clc93snar00007kiypalxeeen',''),('clc93snav00qz7kiy43ij9d91',1,'Admin',1672319405,'192.168.64.1',2,36,44156,NULL,'Disk [{#POSITION}]: Get disk data','clc93snar00007kiypalxeeen',''),('clc93snav00r07kiyk36f0fpi',1,'Admin',1672319405,'192.168.64.1',2,36,43457,NULL,'Host [{#NAME}]: Comment','clc93snar00007kiypalxeeen',''),('clc93snav00r17kiy5dx0zque',1,'Admin',1672319405,'192.168.64.1',2,36,43458,NULL,'Host [{#NAME}]: Contact','clc93snar00007kiypalxeeen',''),('clc93snav00r27kiy5oosqxrb',1,'Admin',1672319405,'192.168.64.1',2,36,43459,NULL,'Host [{#NAME}]: IP address','clc93snar00007kiypalxeeen',''),('clc93snav00r37kiyogjon9is',1,'Admin',1672319405,'192.168.64.1',2,36,43460,NULL,'Host [{#NAME}]: Location','clc93snar00007kiypalxeeen',''),('clc93snav00r47kiykz2koghw',1,'Admin',1672319405,'192.168.64.1',2,36,43461,NULL,'Host [{#NAME}]: Model','clc93snar00007kiypalxeeen',''),('clc93snav00r57kiyztvhsu16',1,'Admin',1672319405,'192.168.64.1',2,36,43462,NULL,'Host [{#NAME}]: OS','clc93snar00007kiypalxeeen',''),('clc93snav00r67kiy5lxqkwsi',1,'Admin',1672319405,'192.168.64.1',2,36,44157,NULL,'Host [{#NAME}]: Get host data','clc93snar00007kiypalxeeen',''),('clc93snav00r77kiy4z5ajb2s',1,'Admin',1672319405,'192.168.64.1',2,36,43463,NULL,'Port [{#NODE}:{#SLOT}:{#CARD.PORT}]: Failover state','clc93snar00007kiypalxeeen',''),('clc93snav00r87kiyku5ro4zr',1,'Admin',1672319405,'192.168.64.1',2,36,43464,NULL,'Port [{#NODE}:{#SLOT}:{#CARD.PORT}]: Hardware type','clc93snar00007kiypalxeeen',''),('clc93snav00r97kiys4zrqibi',1,'Admin',1672319405,'192.168.64.1',2,36,43465,NULL,'Port [{#NODE}:{#SLOT}:{#CARD.PORT}]: Link state','clc93snar00007kiypalxeeen',''),('clc93snav00ra7kiypjqt9a2f',1,'Admin',1672319405,'192.168.64.1',2,36,43466,NULL,'Port [{#NODE}:{#SLOT}:{#CARD.PORT}]: Type','clc93snar00007kiypalxeeen',''),('clc93snav00rb7kiyaci5i1t2',1,'Admin',1672319405,'192.168.64.1',2,36,44158,NULL,'Port [{#NODE}:{#SLOT}:{#CARD.PORT}]: Get port data','clc93snar00007kiypalxeeen',''),('clc93snav00rc7kiynlrw7cz4',1,'Admin',1672319405,'192.168.64.1',2,36,43467,NULL,'Task [{#NAME}]: Finish time','clc93snar00007kiypalxeeen',''),('clc93snav00rd7kiy5mak9pek',1,'Admin',1672319405,'192.168.64.1',2,36,43468,NULL,'Task [{#NAME}]: Start time','clc93snar00007kiypalxeeen',''),('clc93snav00re7kiyo4ow0h2a',1,'Admin',1672319405,'192.168.64.1',2,36,43469,NULL,'Task [{#NAME}]: Status','clc93snar00007kiypalxeeen',''),('clc93snav00rf7kiyytxb2fd8',1,'Admin',1672319405,'192.168.64.1',2,36,43470,NULL,'Task [{#NAME}]: Type','clc93snar00007kiypalxeeen',''),('clc93snav00rg7kiyw2hazt37',1,'Admin',1672319405,'192.168.64.1',2,36,44159,NULL,'Task [{#NAME}]: Get task data','clc93snar00007kiypalxeeen',''),('clc93snav00rh7kiyn4ghw2hd',1,'Admin',1672319405,'192.168.64.1',2,36,43471,NULL,'Volume [{#NAME}]: Compaction ratio','clc93snar00007kiypalxeeen',''),('clc93snav00ri7kiy9zjlh0ni',1,'Admin',1672319405,'192.168.64.1',2,36,43472,NULL,'Volume [{#NAME}]: Total space','clc93snar00007kiypalxeeen',''),('clc93snav00rj7kiypzmagtps',1,'Admin',1672319405,'192.168.64.1',2,36,43473,NULL,'Volume [{#NAME}]: State','clc93snar00007kiypalxeeen',''),('clc93snav00rk7kiyacj9syvx',1,'Admin',1672319405,'192.168.64.1',2,36,43474,NULL,'Volume [{#NAME}]: Failed state','clc93snar00007kiypalxeeen',''),('clc93snav00rl7kiyw9wbai7c',1,'Admin',1672319405,'192.168.64.1',2,36,43475,NULL,'Volume [{#NAME}]: Degraded state','clc93snar00007kiypalxeeen',''),('clc93snav00rm7kiyy5kabbeb',1,'Admin',1672319405,'192.168.64.1',2,36,43476,NULL,'Volume [{#NAME}]: Deduplication state','clc93snar00007kiypalxeeen',''),('clc93snav00rn7kiytleh74a8',1,'Admin',1672319405,'192.168.64.1',2,36,43477,NULL,'Volume [{#NAME}]: Compression state','clc93snar00007kiypalxeeen',''),('clc93snav00ro7kiy9wzly7w8',1,'Admin',1672319405,'192.168.64.1',2,36,43478,NULL,'Volume [{#NAME}]: User space: Used','clc93snar00007kiypalxeeen',''),('clc93snav00rp7kiyeltebqmv',1,'Admin',1672319405,'192.168.64.1',2,36,43479,NULL,'Volume [{#NAME}]: User space: Reserved','clc93snar00007kiypalxeeen',''),('clc93snav00rq7kiyv5uz5ddb',1,'Admin',1672319405,'192.168.64.1',2,36,43480,NULL,'Volume [{#NAME}]: User space: Raw reserved','clc93snar00007kiypalxeeen',''),('clc93snav00rr7kiyvj5t2pi3',1,'Admin',1672319405,'192.168.64.1',2,36,43481,NULL,'Volume [{#NAME}]: User space: Free','clc93snar00007kiypalxeeen',''),('clc93snav00rs7kiy0ukqqz5t',1,'Admin',1672319405,'192.168.64.1',2,36,43482,NULL,'Volume [{#NAME}]: Total used space','clc93snar00007kiypalxeeen',''),('clc93snav00rt7kiyfw212zoa',1,'Admin',1672319405,'192.168.64.1',2,36,43483,NULL,'Volume [{#NAME}]: Total reserved space','clc93snar00007kiypalxeeen',''),('clc93snav00ru7kiyeeeje2x8',1,'Admin',1672319405,'192.168.64.1',2,36,43484,NULL,'Volume [{#NAME}]: Storage space saved using compression','clc93snar00007kiypalxeeen',''),('clc93snav00rv7kiyzdwo1q2s',1,'Admin',1672319405,'192.168.64.1',2,36,43485,NULL,'Volume [{#NAME}]: Snapshot space: Used','clc93snar00007kiypalxeeen',''),('clc93snav00rw7kiym8f1vlpu',1,'Admin',1672319405,'192.168.64.1',2,36,43486,NULL,'Volume [{#NAME}]: Snapshot space: Reserved','clc93snar00007kiypalxeeen',''),('clc93snav00rx7kiykbt56clj',1,'Admin',1672319405,'192.168.64.1',2,36,43487,NULL,'Volume [{#NAME}]: Snapshot space: Raw reserved','clc93snar00007kiypalxeeen',''),('clc93snav00ry7kiyousuw8a3',1,'Admin',1672319405,'192.168.64.1',2,36,43488,NULL,'Volume [{#NAME}]: Snapshot space: Free','clc93snar00007kiypalxeeen',''),('clc93snav00rz7kiyyrim4u02',1,'Admin',1672319405,'192.168.64.1',2,36,43489,NULL,'Volume [{#NAME}]: Administrative space: Used','clc93snar00007kiypalxeeen',''),('clc93snav00s07kiydwzswxaf',1,'Admin',1672319405,'192.168.64.1',2,36,43490,NULL,'Volume [{#NAME}]: Administrative space: Reserved','clc93snar00007kiypalxeeen',''),('clc93snav00s17kiy1zpb3yn5',1,'Admin',1672319405,'192.168.64.1',2,36,43491,NULL,'Volume [{#NAME}]: Administrative space: Raw reserved','clc93snar00007kiypalxeeen',''),('clc93snav00s27kiy59514yuk',1,'Admin',1672319405,'192.168.64.1',2,36,43492,NULL,'Volume [{#NAME}]: Administrative space: Free','clc93snar00007kiypalxeeen',''),('clc93snav00s37kiy2lnle5t4',1,'Admin',1672319405,'192.168.64.1',2,36,43493,NULL,'Volume [{#NAME}]: Storage space saved using deduplication and compression','clc93snar00007kiypalxeeen',''),('clc93snav00s47kiyezk8blvl',1,'Admin',1672319405,'192.168.64.1',2,36,43494,NULL,'Volume [{#NAME}]: Overprovisioning ratio','clc93snar00007kiypalxeeen',''),('clc93snav00s57kiyi004j2t7',1,'Admin',1672319405,'192.168.64.1',2,36,43495,NULL,'Volume [{#NAME}]: Storage space saved using deduplication','clc93snar00007kiypalxeeen',''),('clc93snav00s67kiyfyrzyb4z',1,'Admin',1672319405,'192.168.64.1',2,36,43496,NULL,'Volume [{#NAME}]: Remote copy status','clc93snar00007kiypalxeeen',''),('clc93snav00s77kiy7reskzwa',1,'Admin',1672319405,'192.168.64.1',2,36,44160,NULL,'Volume [{#NAME}]: Get volume data','clc93snar00007kiypalxeeen',''),('clc93snav00s87kiyhsu4csbu',1,'Admin',1672319405,'192.168.64.1',2,36,43926,NULL,'Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Power state','clc93snar00007kiypalxeeen',''),('clc93snav00s97kiyqidr451m',1,'Admin',1672319405,'192.168.64.1',2,36,43927,NULL,'Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Model','clc93snar00007kiypalxeeen',''),('clc93snav00sa7kiy09qm5hfn',1,'Admin',1672319405,'192.168.64.1',2,36,43928,NULL,'Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Part number','clc93snar00007kiypalxeeen',''),('clc93snav00sb7kiyns748j89',1,'Admin',1672319405,'192.168.64.1',2,36,43929,NULL,'Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Powered on','clc93snar00007kiypalxeeen',''),('clc93snav00sc7kiy3vyisf55',1,'Admin',1672319405,'192.168.64.1',2,36,43930,NULL,'Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Presence','clc93snar00007kiypalxeeen',''),('clc93snav00sd7kiy6gpkrno4',1,'Admin',1672319405,'192.168.64.1',2,36,43931,NULL,'Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Serial number','clc93snar00007kiypalxeeen',''),('clc93snav00se7kiyczs6hqsx',1,'Admin',1672319405,'192.168.64.1',2,36,43932,NULL,'Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Spare part number','clc93snar00007kiypalxeeen',''),('clc93snav00sf7kiyce99y6ik',1,'Admin',1672319405,'192.168.64.1',2,36,43933,NULL,'Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Status','clc93snar00007kiypalxeeen',''),('clc93snav00sg7kiynsfn4epu',1,'Admin',1672319405,'192.168.64.1',2,36,44214,NULL,'Appliance bay [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00sh7kiyr4tls4s9',1,'Admin',1672319405,'192.168.64.1',2,36,43934,NULL,'Crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: HW version','clc93snar00007kiypalxeeen',''),('clc93snav00si7kiy5glkfcj4',1,'Admin',1672319405,'192.168.64.1',2,36,43935,NULL,'Crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Part number','clc93snar00007kiypalxeeen',''),('clc93snav00sj7kiyr13xgegs',1,'Admin',1672319405,'192.168.64.1',2,36,43936,NULL,'Crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Presence','clc93snar00007kiypalxeeen',''),('clc93snav00sk7kiye7693jyq',1,'Admin',1672319405,'192.168.64.1',2,36,43937,NULL,'Crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Serial number','clc93snar00007kiypalxeeen',''),('clc93snav00sl7kiy6yahrt1o',1,'Admin',1672319405,'192.168.64.1',2,36,43938,NULL,'Crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Status','clc93snar00007kiypalxeeen',''),('clc93snav00sm7kiyiwec4ni8',1,'Admin',1672319405,'192.168.64.1',2,36,44215,NULL,'Crossbar [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00sn7kiyxcwj6bjj',1,'Admin',1672319405,'192.168.64.1',2,36,43939,NULL,'Datacenter [{#NAME}]: State','clc93snar00007kiypalxeeen',''),('clc93snav00so7kiyhmmlsczp',1,'Admin',1672319405,'192.168.64.1',2,36,43940,NULL,'Datacenter [{#NAME}]: Status','clc93snar00007kiypalxeeen',''),('clc93snav00sp7kiyl53mlar2',1,'Admin',1672319405,'192.168.64.1',2,36,44216,NULL,'Datacenter [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00sq7kiyrmon3406',1,'Admin',1672319405,'192.168.64.1',2,36,43941,NULL,'Device [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Model','clc93snar00007kiypalxeeen',''),('clc93snav00sr7kiyg8saw5k9',1,'Admin',1672319405,'192.168.64.1',2,36,43942,NULL,'Device [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Power allocated','clc93snar00007kiypalxeeen',''),('clc93snav00ss7kiyyihkz0wy',1,'Admin',1672319405,'192.168.64.1',2,36,43943,NULL,'Device [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Presence','clc93snar00007kiypalxeeen',''),('clc93snav00st7kiyvnyazcte',1,'Admin',1672319405,'192.168.64.1',2,36,43944,NULL,'Device [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Serial number','clc93snar00007kiypalxeeen',''),('clc93snav00su7kiytrg2c50h',1,'Admin',1672319405,'192.168.64.1',2,36,44217,NULL,'Device [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00sv7kiyml2l3t98',1,'Admin',1672319405,'192.168.64.1',2,36,43945,NULL,'Enclosure [{#NAME}]: Appliance bays count','clc93snar00007kiypalxeeen',''),('clc93snav00sw7kiywpbquxai',1,'Admin',1672319405,'192.168.64.1',2,36,43946,NULL,'Enclosure [{#NAME}]: Part number','clc93snar00007kiypalxeeen',''),('clc93snav00sx7kiyiec278rt',1,'Admin',1672319405,'192.168.64.1',2,36,43947,NULL,'Enclosure [{#NAME}]: Status','clc93snar00007kiypalxeeen',''),('clc93snav00sy7kiy8tj4t2rv',1,'Admin',1672319405,'192.168.64.1',2,36,43948,NULL,'Enclosure [{#NAME}]: State reason','clc93snar00007kiypalxeeen',''),('clc93snav00sz7kiypoca8yse',1,'Admin',1672319405,'192.168.64.1',2,36,43949,NULL,'Enclosure [{#NAME}]: State','clc93snar00007kiypalxeeen',''),('clc93snav00t07kiy9cbzb2v2',1,'Admin',1672319405,'192.168.64.1',2,36,43950,NULL,'Enclosure [{#NAME}]: Serial number','clc93snar00007kiypalxeeen',''),('clc93snav00t17kiymk92s1p2',1,'Admin',1672319405,'192.168.64.1',2,36,43951,NULL,'Enclosure [{#NAME}]: Power supply bays count','clc93snar00007kiypalxeeen',''),('clc93snav00t27kiy6l2eeza2',1,'Admin',1672319405,'192.168.64.1',2,36,43952,NULL,'Enclosure [{#NAME}]: Total available power','clc93snar00007kiypalxeeen',''),('clc93snav00t37kiye9devtrt',1,'Admin',1672319405,'192.168.64.1',2,36,43953,NULL,'Enclosure [{#NAME}]: Total allocated power','clc93snar00007kiypalxeeen',''),('clc93snav00t47kiyghox3rz2',1,'Admin',1672319405,'192.168.64.1',2,36,43954,NULL,'Enclosure [{#NAME}]: Power capacity','clc93snar00007kiypalxeeen',''),('clc93snav00t57kiyfm7mk9w1',1,'Admin',1672319405,'192.168.64.1',2,36,43955,NULL,'Enclosure [{#NAME}]: Model','clc93snar00007kiypalxeeen',''),('clc93snav00t67kiy6qydh9bn',1,'Admin',1672319405,'192.168.64.1',2,36,43956,NULL,'Enclosure [{#NAME}]: Device bays count','clc93snar00007kiypalxeeen',''),('clc93snav00t77kiyw4k7apzd',1,'Admin',1672319405,'192.168.64.1',2,36,43957,NULL,'Enclosure [{#NAME}]: Min power supplies for redundant power feed','clc93snar00007kiypalxeeen',''),('clc93snav00t87kiy5t1gqlkn',1,'Admin',1672319405,'192.168.64.1',2,36,43958,NULL,'Enclosure [{#NAME}]: Min power supplies','clc93snar00007kiypalxeeen',''),('clc93snav00t97kiysdjhokos',1,'Admin',1672319405,'192.168.64.1',2,36,43959,NULL,'Enclosure [{#NAME}]: Interconnect bays power','clc93snar00007kiypalxeeen',''),('clc93snav00ta7kiyju23ackf',1,'Admin',1672319405,'192.168.64.1',2,36,43960,NULL,'Enclosure [{#NAME}]: Interconnect bays count','clc93snar00007kiypalxeeen',''),('clc93snav00tb7kiyc2smstcb',1,'Admin',1672319405,'192.168.64.1',2,36,43961,NULL,'Enclosure [{#NAME}]: Firmware baseline','clc93snar00007kiypalxeeen',''),('clc93snav00tc7kiyf2199u3c',1,'Admin',1672319405,'192.168.64.1',2,36,43962,NULL,'Enclosure [{#NAME}]: Fan bays count','clc93snar00007kiypalxeeen',''),('clc93snav00td7kiy58mh1uet',1,'Admin',1672319405,'192.168.64.1',2,36,43963,NULL,'Enclosure [{#NAME}]: Power allocated for fans and management devices','clc93snar00007kiypalxeeen',''),('clc93snav00te7kiywvdal4v4',1,'Admin',1672319405,'192.168.64.1',2,36,43964,NULL,'Enclosure [{#NAME}]: Device bays power','clc93snar00007kiypalxeeen',''),('clc93snav00tf7kiyu8jufnso',1,'Admin',1672319405,'192.168.64.1',2,36,43965,NULL,'Enclosure [{#NAME}]: Type','clc93snar00007kiypalxeeen',''),('clc93snav00tg7kiyu37dy9a8',1,'Admin',1672319405,'192.168.64.1',2,36,44218,NULL,'Enclosure [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00th7kiyyvg1tlpb',1,'Admin',1672319405,'192.168.64.1',2,36,43966,NULL,'Ethernet network [{#NAME}]: State','clc93snar00007kiypalxeeen',''),('clc93snav00ti7kiyfvc41zij',1,'Admin',1672319405,'192.168.64.1',2,36,43967,NULL,'Ethernet network [{#NAME}]: Status','clc93snar00007kiypalxeeen',''),('clc93snav00tj7kiyl8x71ag3',1,'Admin',1672319405,'192.168.64.1',2,36,44219,NULL,'Ethernet network [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00tk7kiyso1d5ozs',1,'Admin',1672319405,'192.168.64.1',2,36,43968,NULL,'Fabric [{#NAME}]: State','clc93snar00007kiypalxeeen',''),('clc93snav00tl7kiysh5z1x7a',1,'Admin',1672319405,'192.168.64.1',2,36,43969,NULL,'Fabric [{#NAME}]: Status','clc93snar00007kiypalxeeen',''),('clc93snav00tm7kiy3deiz31l',1,'Admin',1672319405,'192.168.64.1',2,36,44220,NULL,'Fabric [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00tn7kiy752bfwtm',1,'Admin',1672319405,'192.168.64.1',2,36,43970,NULL,'Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Model','clc93snar00007kiypalxeeen',''),('clc93snav00to7kiy3g0ad5ev',1,'Admin',1672319405,'192.168.64.1',2,36,43971,NULL,'Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Part number','clc93snar00007kiypalxeeen',''),('clc93snav00tp7kiyoeqxv8dr',1,'Admin',1672319405,'192.168.64.1',2,36,43972,NULL,'Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Presence','clc93snar00007kiypalxeeen',''),('clc93snav00tq7kiyi94837s5',1,'Admin',1672319405,'192.168.64.1',2,36,43973,NULL,'Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Required','clc93snar00007kiypalxeeen',''),('clc93snav00tr7kiyq0flal63',1,'Admin',1672319405,'192.168.64.1',2,36,43974,NULL,'Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Serial number','clc93snar00007kiypalxeeen',''),('clc93snav00ts7kiy6kz8e481',1,'Admin',1672319405,'192.168.64.1',2,36,43975,NULL,'Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Spare part number','clc93snar00007kiypalxeeen',''),('clc93snav00tt7kiyw9z70zxx',1,'Admin',1672319405,'192.168.64.1',2,36,43976,NULL,'Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: State','clc93snar00007kiypalxeeen',''),('clc93snav00tu7kiy972qczcz',1,'Admin',1672319405,'192.168.64.1',2,36,43977,NULL,'Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Status','clc93snar00007kiypalxeeen',''),('clc93snav00tv7kiypy6j8fuu',1,'Admin',1672319405,'192.168.64.1',2,36,44221,NULL,'Fan [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00tw7kiypcuwsvej',1,'Admin',1672319405,'192.168.64.1',2,36,43978,NULL,'FC network [{#NAME}]: State','clc93snar00007kiypalxeeen',''),('clc93snav00tx7kiy4kplipf0',1,'Admin',1672319405,'192.168.64.1',2,36,43979,NULL,'FC network [{#NAME}]: Status','clc93snar00007kiypalxeeen',''),('clc93snav00ty7kiyza6w2l9w',1,'Admin',1672319405,'192.168.64.1',2,36,44222,NULL,'FC network [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00tz7kiyn95zkyl8',1,'Admin',1672319405,'192.168.64.1',2,36,43980,NULL,'Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Firmware version','clc93snar00007kiypalxeeen',''),('clc93snav00u07kiym5ynmq2u',1,'Admin',1672319405,'192.168.64.1',2,36,43981,NULL,'Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Link port state','clc93snar00007kiypalxeeen',''),('clc93snav00u17kiyu2rycx41',1,'Admin',1672319405,'192.168.64.1',2,36,43982,NULL,'Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Link port status','clc93snar00007kiypalxeeen',''),('clc93snav00u27kiy3hfu1qav',1,'Admin',1672319405,'192.168.64.1',2,36,43983,NULL,'Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: MGMT port state','clc93snar00007kiypalxeeen',''),('clc93snav00u37kiycym8sops',1,'Admin',1672319405,'192.168.64.1',2,36,43984,NULL,'Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: MGMT port status','clc93snar00007kiypalxeeen',''),('clc93snav00u47kiykuxvbwjw',1,'Admin',1672319405,'192.168.64.1',2,36,43985,NULL,'Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Model','clc93snar00007kiypalxeeen',''),('clc93snav00u57kiyn6rgg14i',1,'Admin',1672319405,'192.168.64.1',2,36,43986,NULL,'Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Part number','clc93snar00007kiypalxeeen',''),('clc93snav00u67kiyg9lq7lzc',1,'Admin',1672319405,'192.168.64.1',2,36,43987,NULL,'Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Presence','clc93snar00007kiypalxeeen',''),('clc93snav00u77kiyav9ssiyb',1,'Admin',1672319405,'192.168.64.1',2,36,43988,NULL,'Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Serial number','clc93snar00007kiypalxeeen',''),('clc93snav00u87kiyt58yd5kl',1,'Admin',1672319405,'192.168.64.1',2,36,43989,NULL,'Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Spare part number','clc93snar00007kiypalxeeen',''),('clc93snav00u97kiy7kdc2a32',1,'Admin',1672319405,'192.168.64.1',2,36,43990,NULL,'Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Status','clc93snar00007kiypalxeeen',''),('clc93snav00ua7kiyxpo0kdoi',1,'Admin',1672319405,'192.168.64.1',2,36,44223,NULL,'Manager [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00ub7kiyweuuhkrw',1,'Admin',1672319405,'192.168.64.1',2,36,43991,NULL,'Hypervisor manager [{#NAME}]: State','clc93snar00007kiypalxeeen',''),('clc93snav00uc7kiymeeosgs7',1,'Admin',1672319405,'192.168.64.1',2,36,43992,NULL,'Hypervisor manager [{#NAME}]: State reason','clc93snar00007kiypalxeeen',''),('clc93snav00ud7kiye2lhhk1e',1,'Admin',1672319405,'192.168.64.1',2,36,43993,NULL,'Hypervisor manager [{#NAME}]: Status','clc93snar00007kiypalxeeen',''),('clc93snav00ue7kiygrgxf5sp',1,'Admin',1672319405,'192.168.64.1',2,36,44224,NULL,'Hypervisor manager [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00uf7kiy6ayzry1o',1,'Admin',1672319405,'192.168.64.1',2,36,43994,NULL,'Interconnect [{#NAME}]: Hardware health','clc93snar00007kiypalxeeen',''),('clc93snav00ug7kiydsx5f3c2',1,'Admin',1672319405,'192.168.64.1',2,36,43995,NULL,'Interconnect [{#NAME}]: Model','clc93snar00007kiypalxeeen',''),('clc93snav00uh7kiyimnqi8un',1,'Admin',1672319405,'192.168.64.1',2,36,43996,NULL,'Interconnect [{#NAME}]: Part number','clc93snar00007kiypalxeeen',''),('clc93snav00ui7kiy1t0wlgwz',1,'Admin',1672319405,'192.168.64.1',2,36,43997,NULL,'Interconnect [{#NAME}]: Port count','clc93snar00007kiypalxeeen',''),('clc93snav00uj7kiyebcpoex7',1,'Admin',1672319405,'192.168.64.1',2,36,43998,NULL,'Interconnect [{#NAME}]: Serial number','clc93snar00007kiypalxeeen',''),('clc93snav00uk7kiydxedxzz9',1,'Admin',1672319405,'192.168.64.1',2,36,43999,NULL,'Interconnect [{#NAME}]: Spare part number','clc93snar00007kiypalxeeen',''),('clc93snav00ul7kiy3fxezuh0',1,'Admin',1672319405,'192.168.64.1',2,36,44000,NULL,'Interconnect [{#NAME}]: State','clc93snar00007kiypalxeeen',''),('clc93snav00um7kiyjw57m1rb',1,'Admin',1672319405,'192.168.64.1',2,36,44001,NULL,'Interconnect [{#NAME}]: Status','clc93snar00007kiypalxeeen',''),('clc93snav00un7kiy34ozy4qv',1,'Admin',1672319405,'192.168.64.1',2,36,44225,NULL,'Interconnect [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00uo7kiyte4efem0',1,'Admin',1672319405,'192.168.64.1',2,36,44002,NULL,'Logical enclosure [{#NAME}]: State','clc93snar00007kiypalxeeen',''),('clc93snav00up7kiyh1ksd20n',1,'Admin',1672319405,'192.168.64.1',2,36,44003,NULL,'Logical enclosure [{#NAME}]: Status','clc93snar00007kiypalxeeen',''),('clc93snav00uq7kiyw5gldtzu',1,'Admin',1672319405,'192.168.64.1',2,36,44226,NULL,'Logical enclosure [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00ur7kiy5sgardmp',1,'Admin',1672319405,'192.168.64.1',2,36,44004,NULL,'Partition [{#ENCLOSURE_NAME}:{#PARTITION_ID}]: Devices count','clc93snar00007kiypalxeeen',''),('clc93snav00us7kiy7o6fdwqz',1,'Admin',1672319405,'192.168.64.1',2,36,44005,NULL,'Partition [{#ENCLOSURE_NAME}:{#PARTITION_ID}]: Health','clc93snar00007kiypalxeeen',''),('clc93snav00ut7kiyka60m38a',1,'Admin',1672319405,'192.168.64.1',2,36,44006,NULL,'Partition [{#ENCLOSURE_NAME}:{#PARTITION_ID}]: Memory','clc93snar00007kiypalxeeen',''),('clc93snav00uu7kiymnqwn5ut',1,'Admin',1672319405,'192.168.64.1',2,36,44007,NULL,'Partition [{#ENCLOSURE_NAME}:{#PARTITION_ID}]: Processors Count','clc93snar00007kiypalxeeen',''),('clc93snav00uv7kiy00k18jyt',1,'Admin',1672319405,'192.168.64.1',2,36,44008,NULL,'Partition [{#ENCLOSURE_NAME}:{#PARTITION_ID}]: Status','clc93snar00007kiypalxeeen',''),('clc93snav00uw7kiyei6ruoxp',1,'Admin',1672319405,'192.168.64.1',2,36,44227,NULL,'Partition [{#ENCLOSURE_NAME}:{#PARTITION_ID}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00ux7kiypwaczhv6',1,'Admin',1672319405,'192.168.64.1',2,36,44009,NULL,'Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Model','clc93snar00007kiypalxeeen',''),('clc93snav00uy7kiy36c62m0v',1,'Admin',1672319405,'192.168.64.1',2,36,44010,NULL,'Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Output capacity','clc93snar00007kiypalxeeen',''),('clc93snav00uz7kiy1lruju6i',1,'Admin',1672319405,'192.168.64.1',2,36,44011,NULL,'Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Part number','clc93snar00007kiypalxeeen',''),('clc93snav00v07kiy3z4qoe2c',1,'Admin',1672319405,'192.168.64.1',2,36,44012,NULL,'Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Presence','clc93snar00007kiypalxeeen',''),('clc93snav00v17kiylsqiw1v0',1,'Admin',1672319405,'192.168.64.1',2,36,44013,NULL,'Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Serial number','clc93snar00007kiypalxeeen',''),('clc93snav00v27kiyfexvgsrg',1,'Admin',1672319405,'192.168.64.1',2,36,44014,NULL,'Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Spare part number','clc93snar00007kiypalxeeen',''),('clc93snav00v37kiyhfsmdp0b',1,'Admin',1672319405,'192.168.64.1',2,36,44015,NULL,'Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Status','clc93snar00007kiypalxeeen',''),('clc93snav00v47kiypya6ru1d',1,'Admin',1672319405,'192.168.64.1',2,36,44228,NULL,'Power Supply [{#ENCLOSURE_NAME}:{#BAY_NUMBER}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00v57kiyz5p9d9bi',1,'Admin',1672319405,'192.168.64.1',2,36,44016,NULL,'Rack [{#NAME}]: State','clc93snar00007kiypalxeeen',''),('clc93snav00v67kiyz9r1kvv3',1,'Admin',1672319405,'192.168.64.1',2,36,44017,NULL,'Rack [{#NAME}]: Status','clc93snar00007kiypalxeeen',''),('clc93snav00v77kiy7xe63hyy',1,'Admin',1672319405,'192.168.64.1',2,36,44229,NULL,'Rack [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snav00v87kiyjax8c3q1',1,'Admin',1672319405,'192.168.64.1',2,36,44018,NULL,'Server [{#SERVER_NAME}:{#LOCATION}]: Processor cores count','clc93snar00007kiypalxeeen',''),('clc93snaw00v97kiyfx72vyf4',1,'Admin',1672319405,'192.168.64.1',2,36,44019,NULL,'Server [{#SERVER_NAME}:{#LOCATION}]: Processors count','clc93snar00007kiypalxeeen',''),('clc93snaw00va7kiywn9gyc8x',1,'Admin',1672319405,'192.168.64.1',2,36,44020,NULL,'Server [{#SERVER_NAME}:{#LOCATION}]: Processor speed','clc93snar00007kiypalxeeen',''),('clc93snaw00vb7kiy6labihga',1,'Admin',1672319405,'192.168.64.1',2,36,44021,NULL,'Server [{#SERVER_NAME}:{#LOCATION}]: Processor type','clc93snar00007kiypalxeeen',''),('clc93snaw00vc7kiyhna0o9r2',1,'Admin',1672319405,'192.168.64.1',2,36,44022,NULL,'Server [{#SERVER_NAME}:{#LOCATION}]: Maintenance state','clc93snar00007kiypalxeeen',''),('clc93snaw00vd7kiy8252h159',1,'Admin',1672319405,'192.168.64.1',2,36,44023,NULL,'Server [{#SERVER_NAME}:{#LOCATION}]: Maintenance state reason','clc93snar00007kiypalxeeen',''),('clc93snaw00ve7kiy0kx1orwx',1,'Admin',1672319405,'192.168.64.1',2,36,44024,NULL,'Server [{#SERVER_NAME}:{#LOCATION}]: Memory','clc93snar00007kiypalxeeen',''),('clc93snaw00vf7kiyr9jx17p6',1,'Admin',1672319405,'192.168.64.1',2,36,44025,NULL,'Server [{#SERVER_NAME}:{#LOCATION}]: Migration state','clc93snar00007kiypalxeeen',''),('clc93snaw00vg7kiylbttfxb9',1,'Admin',1672319405,'192.168.64.1',2,36,44026,NULL,'Server [{#SERVER_NAME}:{#LOCATION}]: Model','clc93snar00007kiypalxeeen',''),('clc93snaw00vh7kiyfh6rcgxk',1,'Admin',1672319405,'192.168.64.1',2,36,44027,NULL,'Server [{#SERVER_NAME}:{#LOCATION}]: Part number','clc93snar00007kiypalxeeen',''),('clc93snaw00vi7kiyw9lamxl5',1,'Admin',1672319405,'192.168.64.1',2,36,44028,NULL,'Server [{#SERVER_NAME}:{#LOCATION}]: Power state','clc93snar00007kiypalxeeen',''),('clc93snaw00vj7kiyex8bxcsy',1,'Admin',1672319405,'192.168.64.1',2,36,44029,NULL,'Server [{#SERVER_NAME}:{#LOCATION}]: Serial number','clc93snar00007kiypalxeeen',''),('clc93snaw00vk7kiynw17e46c',1,'Admin',1672319405,'192.168.64.1',2,36,44030,NULL,'Server [{#SERVER_NAME}:{#LOCATION}]: State','clc93snar00007kiypalxeeen',''),('clc93snaw00vl7kiyrfgh1u03',1,'Admin',1672319405,'192.168.64.1',2,36,44031,NULL,'Server [{#SERVER_NAME}:{#LOCATION}]: State reason','clc93snar00007kiypalxeeen',''),('clc93snaw00vm7kiyldplx5k6',1,'Admin',1672319405,'192.168.64.1',2,36,44032,NULL,'Server [{#SERVER_NAME}:{#LOCATION}]: Status','clc93snar00007kiypalxeeen',''),('clc93snaw00vn7kiykusxfbpn',1,'Admin',1672319405,'192.168.64.1',2,36,44230,NULL,'Server [{#SERVER_NAME}:{#LOCATION}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snaw00vo7kiygy6qrrjs',1,'Admin',1672319405,'192.168.64.1',2,36,44033,NULL,'Storage pool [{#NAME}]: Capacity allocated','clc93snar00007kiypalxeeen',''),('clc93snaw00vp7kiyluzzh8rl',1,'Admin',1672319405,'192.168.64.1',2,36,44034,NULL,'Storage pool [{#NAME}]: Capacity free','clc93snar00007kiypalxeeen',''),('clc93snaw00vq7kiynrp5k6e4',1,'Admin',1672319405,'192.168.64.1',2,36,44035,NULL,'Storage pool [{#NAME}]: Capacity allocated to snapshots','clc93snar00007kiypalxeeen',''),('clc93snaw00vr7kiyy645tm6y',1,'Admin',1672319405,'192.168.64.1',2,36,44036,NULL,'Storage pool [{#NAME}]: Capacity total','clc93snar00007kiypalxeeen',''),('clc93snaw00vs7kiy7m1kg0oq',1,'Admin',1672319405,'192.168.64.1',2,36,44037,NULL,'Storage pool [{#NAME}]: State','clc93snar00007kiypalxeeen',''),('clc93snaw00vt7kiy784wtjdq',1,'Admin',1672319405,'192.168.64.1',2,36,44038,NULL,'Storage pool [{#NAME}]: Status','clc93snar00007kiypalxeeen',''),('clc93snaw00vu7kiyfny0dbjx',1,'Admin',1672319405,'192.168.64.1',2,36,44231,NULL,'Storage pool [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snaw00vv7kiy4486c458',1,'Admin',1672319405,'192.168.64.1',2,36,44039,NULL,'Storage system [{#NAME}]: Capacity allocated','clc93snar00007kiypalxeeen',''),('clc93snaw00vw7kiyfhxnwqil',1,'Admin',1672319405,'192.168.64.1',2,36,44040,NULL,'Storage system [{#NAME}]: Capacity free','clc93snar00007kiypalxeeen',''),('clc93snaw00vx7kiy38opkia7',1,'Admin',1672319405,'192.168.64.1',2,36,44041,NULL,'Storage system [{#NAME}]: Capacity total','clc93snar00007kiypalxeeen',''),('clc93snaw00vy7kiys8xne61s',1,'Admin',1672319405,'192.168.64.1',2,36,44042,NULL,'Storage system [{#NAME}]: State','clc93snar00007kiypalxeeen',''),('clc93snaw00vz7kiyfjx350yk',1,'Admin',1672319405,'192.168.64.1',2,36,44043,NULL,'Storage system [{#NAME}]: Status','clc93snar00007kiypalxeeen',''),('clc93snaw00w07kiyzbz5h9h5',1,'Admin',1672319405,'192.168.64.1',2,36,44232,NULL,'Storage system [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snaw00w17kiynlpcrnk8',1,'Admin',1672319405,'192.168.64.1',2,36,44044,NULL,'Storage volume [{#NAME}]: Capacity allocated','clc93snar00007kiypalxeeen',''),('clc93snaw00w27kiyu55dhvmg',1,'Admin',1672319405,'192.168.64.1',2,36,44045,NULL,'Storage volume [{#NAME}]: Capacity provisioned','clc93snar00007kiypalxeeen',''),('clc93snaw00w37kiy1hmxykpy',1,'Admin',1672319405,'192.168.64.1',2,36,44046,NULL,'Storage volume [{#NAME}]: State','clc93snar00007kiypalxeeen',''),('clc93snaw00w47kiyj8mcda80',1,'Admin',1672319405,'192.168.64.1',2,36,44047,NULL,'Storage volume [{#NAME}]: Status','clc93snar00007kiypalxeeen',''),('clc93snaw00w57kiyc6r52azp',1,'Admin',1672319405,'192.168.64.1',2,36,44233,NULL,'Storage volume [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snaw00w67kiyuq4wwao1',1,'Admin',1672319405,'192.168.64.1',2,36,44048,NULL,'Uplink set [{#NAME}]: State','clc93snar00007kiypalxeeen',''),('clc93snaw00w77kiyl6v05j6b',1,'Admin',1672319405,'192.168.64.1',2,36,44049,NULL,'Uplink set [{#NAME}]: Status','clc93snar00007kiypalxeeen',''),('clc93snaw00w87kiyfiimn1f6',1,'Admin',1672319405,'192.168.64.1',2,36,44234,NULL,'Uplink set [{#NAME}]: Get data','clc93snar00007kiypalxeeen',''),('clc93snbu00w97kiy15darily',1,'Admin',1672319405,'192.168.64.1',2,37,10508,NULL,'{#NAME}','clc93snar00007kiypalxeeen',''),('clc93snbu00wa7kiytzd293ft',1,'Admin',1672319405,'192.168.64.1',2,37,10511,NULL,'API {#NAME}','clc93snar00007kiypalxeeen',''),('clc93snbu00wb7kiyfqveq7je',1,'Admin',1672319405,'192.168.64.1',2,37,10512,NULL,'Controller manager {#NAME}','clc93snar00007kiypalxeeen',''),('clc93snbu00wc7kiy1xykhgwu',1,'Admin',1672319405,'192.168.64.1',2,37,10513,NULL,'Scheduler {#NAME}','clc93snar00007kiypalxeeen',''),('clc93snbu00wd7kiyv0s4699x',1,'Admin',1672319405,'192.168.64.1',2,37,10514,NULL,'Kubelet {#NAME}','clc93snar00007kiypalxeeen',''),('clc93snfp00we7kiygwwwva9u',1,'Admin',1672319405,'192.168.64.1',2,15,42187,NULL,'Host name of Zabbix agent running','clc93snar00007kiypalxeeen',''),('clc93snfp00wf7kiyejqm5zbj',1,'Admin',1672319405,'192.168.64.1',2,15,42197,NULL,'Zabbix agent ping','clc93snar00007kiypalxeeen',''),('clc93snfp00wg7kiyurapbw5h',1,'Admin',1672319405,'192.168.64.1',2,15,42210,NULL,'Version of Zabbix agent running','clc93snar00007kiypalxeeen',''),('clc93snfp00wh7kiyku8hufs9',1,'Admin',1672319405,'192.168.64.1',2,15,42211,NULL,'Maximum number of open file descriptors','clc93snar00007kiypalxeeen',''),('clc93snfp00wi7kiy5l0l597p',1,'Admin',1672319405,'192.168.64.1',2,15,42212,NULL,'Maximum number of processes','clc93snar00007kiypalxeeen',''),('clc93snfp00wj7kiyb7kn2uu7',1,'Admin',1672319405,'192.168.64.1',2,15,42213,NULL,'Number of processes','clc93snar00007kiypalxeeen',''),('clc93snfp00wk7kiyxouyvax2',1,'Admin',1672319405,'192.168.64.1',2,15,42214,NULL,'Number of running processes','clc93snar00007kiypalxeeen',''),('clc93snfp00wl7kiyc842iazr',1,'Admin',1672319405,'192.168.64.1',2,15,42215,NULL,'System boot time','clc93snar00007kiypalxeeen',''),('clc93snfp00wm7kiyna7mlmw3',1,'Admin',1672319405,'192.168.64.1',2,15,42216,NULL,'Interrupts per second','clc93snar00007kiypalxeeen',''),('clc93snfp00wn7kiy9ev9u9zo',1,'Admin',1672319405,'192.168.64.1',2,15,42219,NULL,'Load average (15m avg)','clc93snar00007kiypalxeeen',''),('clc93snfp00wo7kiygs0m06zn',1,'Admin',1672319405,'192.168.64.1',2,15,42209,NULL,'Load average (1m avg)','clc93snar00007kiypalxeeen',''),('clc93snfp00wp7kiy70rgdgoz',1,'Admin',1672319405,'192.168.64.1',2,15,42217,NULL,'Load average (5m avg)','clc93snar00007kiypalxeeen',''),('clc93snfp00wq7kiypxnkceog',1,'Admin',1672319405,'192.168.64.1',2,15,42220,NULL,'Number of CPUs','clc93snar00007kiypalxeeen',''),('clc93snfp00wr7kiytwrr5ll1',1,'Admin',1672319405,'192.168.64.1',2,15,42221,NULL,'Context switches per second','clc93snar00007kiypalxeeen',''),('clc93snfp00ws7kiy9h682j9n',1,'Admin',1672319405,'192.168.64.1',2,15,42267,NULL,'CPU utilization','clc93snar00007kiypalxeeen',''),('clc93snfp00wt7kiy3lfxke9x',1,'Admin',1672319405,'192.168.64.1',2,15,42222,NULL,'CPU guest time','clc93snar00007kiypalxeeen',''),('clc93snfp00wu7kiymf0bz0sd',1,'Admin',1672319405,'192.168.64.1',2,15,42223,NULL,'CPU guest nice time','clc93snar00007kiypalxeeen',''),('clc93snfp00wv7kiygd4ya83a',1,'Admin',1672319405,'192.168.64.1',2,15,42224,NULL,'CPU idle time','clc93snar00007kiypalxeeen',''),('clc93snfp00ww7kiysgk8pka0',1,'Admin',1672319405,'192.168.64.1',2,15,42225,NULL,'CPU interrupt time','clc93snar00007kiypalxeeen',''),('clc93snfp00wx7kiyeqqyxpkz',1,'Admin',1672319405,'192.168.64.1',2,15,42218,NULL,'CPU iowait time','clc93snar00007kiypalxeeen',''),('clc93snfp00wy7kiy36fwgov9',1,'Admin',1672319405,'192.168.64.1',2,15,42208,NULL,'CPU nice time','clc93snar00007kiypalxeeen',''),('clc93snfp00wz7kiyi6bcma3z',1,'Admin',1672319405,'192.168.64.1',2,15,42207,NULL,'CPU softirq time','clc93snar00007kiypalxeeen',''),('clc93snfp00x07kiy2owofhkv',1,'Admin',1672319405,'192.168.64.1',2,15,42206,NULL,'CPU steal time','clc93snar00007kiypalxeeen',''),('clc93snfp00x17kiy8fc3eefk',1,'Admin',1672319405,'192.168.64.1',2,15,42189,NULL,'CPU system time','clc93snar00007kiypalxeeen',''),('clc93snfp00x27kiyktencc4i',1,'Admin',1672319405,'192.168.64.1',2,15,42190,NULL,'CPU user time','clc93snar00007kiypalxeeen',''),('clc93snfp00x37kiywk1kr3d1',1,'Admin',1672319405,'192.168.64.1',2,15,42191,NULL,'System name','clc93snar00007kiypalxeeen',''),('clc93snfp00x47kiy1ng9xawk',1,'Admin',1672319405,'192.168.64.1',2,15,42192,NULL,'System local time','clc93snar00007kiypalxeeen',''),('clc93snfp00x57kiy7l9kqz8o',1,'Admin',1672319405,'192.168.64.1',2,15,42193,NULL,'Operating system architecture','clc93snar00007kiypalxeeen',''),('clc93snfp00x67kiyvoty075v',1,'Admin',1672319405,'192.168.64.1',2,15,42194,NULL,'Operating system','clc93snar00007kiypalxeeen',''),('clc93snfp00x77kiy392sg198',1,'Admin',1672319405,'192.168.64.1',2,15,42195,NULL,'Software installed','clc93snar00007kiypalxeeen',''),('clc93snfp00x87kiya5vhahf7',1,'Admin',1672319405,'192.168.64.1',2,15,42188,NULL,'Free swap space','clc93snar00007kiypalxeeen',''),('clc93snfp00x97kiy7nkaqqob',1,'Admin',1672319405,'192.168.64.1',2,15,42196,NULL,'Free swap space in %','clc93snar00007kiypalxeeen',''),('clc93snfp00xa7kiyz06gsjzi',1,'Admin',1672319405,'192.168.64.1',2,15,42198,NULL,'Total swap space','clc93snar00007kiypalxeeen',''),('clc93snfp00xb7kiylyveqzjm',1,'Admin',1672319405,'192.168.64.1',2,15,42199,NULL,'System description','clc93snar00007kiypalxeeen',''),('clc93snfp00xc7kiybf5ijbh3',1,'Admin',1672319405,'192.168.64.1',2,15,42200,NULL,'System uptime','clc93snar00007kiypalxeeen',''),('clc93snfp00xd7kiyg81e8zme',1,'Admin',1672319405,'192.168.64.1',2,15,42201,NULL,'Number of logged in users','clc93snar00007kiypalxeeen',''),('clc93snfp00xe7kiy8mj53ew6',1,'Admin',1672319405,'192.168.64.1',2,15,42202,NULL,'Checksum of /etc/passwd','clc93snar00007kiypalxeeen',''),('clc93snfp00xf7kiyscb5bok1',1,'Admin',1672319405,'192.168.64.1',2,15,44436,NULL,'Get filesystems','clc93snar00007kiypalxeeen',''),('clc93snfp00xg7kiyu6emit4o',1,'Admin',1672319405,'192.168.64.1',2,15,42203,NULL,'Available memory','clc93snar00007kiypalxeeen',''),('clc93snfp00xh7kiy7uph5dgn',1,'Admin',1672319405,'192.168.64.1',2,15,42204,NULL,'Available memory in %','clc93snar00007kiypalxeeen',''),('clc93snfp00xi7kiyzdwkq6o9',1,'Admin',1672319405,'192.168.64.1',2,15,42205,NULL,'Total memory','clc93snar00007kiypalxeeen',''),('clc93snfp00xj7kiyfhbjswhx',1,'Admin',1672319405,'192.168.64.1',2,15,42268,NULL,'Memory utilization','clc93snar00007kiypalxeeen',''),('clc93snfp00xk7kiyoexamzmq',1,'Admin',1672319405,'192.168.64.1',2,15,42226,NULL,'Zabbix agent availability','clc93snar00007kiypalxeeen',''),('clc93snfp00xl7kiy8rsfjnlw',1,'Admin',1672319405,'192.168.64.1',2,15,42675,NULL,'HTTP service is running','clc93snar00007kiypalxeeen',''),('clc93snfp00xm7kiytkvy9pgf',1,'Admin',1672319405,'192.168.64.1',2,15,23646,NULL,'HTTPS service is running','clc93snar00007kiypalxeeen',''),('clc93snfp00xn7kiykm7560ok',1,'Admin',1672319405,'192.168.64.1',2,15,23647,NULL,'IMAP service is running','clc93snar00007kiypalxeeen',''),('clc93snfp00xo7kiy1bc8jqgh',1,'Admin',1672319405,'192.168.64.1',2,15,23648,NULL,'LDAP service is running','clc93snar00007kiypalxeeen',''),('clc93snfp00xp7kiyva7i09tk',1,'Admin',1672319405,'192.168.64.1',2,15,26932,NULL,'BB +1.8V SM','clc93snar00007kiypalxeeen',''),('clc93snfp00xq7kiya7vlytkh',1,'Admin',1672319405,'192.168.64.1',2,15,26930,NULL,'BB +3.3V','clc93snar00007kiypalxeeen',''),('clc93snfp00xr7kiyzy45cdmm',1,'Admin',1672319405,'192.168.64.1',2,15,26931,NULL,'BB +3.3V STBY','clc93snar00007kiypalxeeen',''),('clc93snfp00xs7kiyo61mekth',1,'Admin',1672319405,'192.168.64.1',2,15,26929,NULL,'BB +5.0V','clc93snar00007kiypalxeeen',''),('clc93snfp00xt7kiylassn9d7',1,'Admin',1672319405,'192.168.64.1',2,15,26928,NULL,'BB Ambient Temp','clc93snar00007kiypalxeeen',''),('clc93snfp00xu7kiytadol0cv',1,'Admin',1672319405,'192.168.64.1',2,15,26925,NULL,'Power','clc93snar00007kiypalxeeen',''),('clc93snfp00xv7kiyf89ybdhr',1,'Admin',1672319405,'192.168.64.1',2,15,26926,NULL,'Processor Vcc','clc93snar00007kiypalxeeen',''),('clc93snfp00xw7kiynb95mloo',1,'Admin',1672319405,'192.168.64.1',2,15,26927,NULL,'System Fan 3','clc93snar00007kiypalxeeen',''),('clc93snfp00xx7kiyq1mbri9i',1,'Admin',1672319405,'192.168.64.1',2,15,26943,NULL,'Baseboard Temp','clc93snar00007kiypalxeeen',''),('clc93snfp00xy7kiywfdn6om6',1,'Admin',1672319405,'192.168.64.1',2,15,26939,NULL,'BB +1.05V PCH','clc93snar00007kiypalxeeen',''),('clc93snfp00xz7kiyc6hndzqa',1,'Admin',1672319405,'192.168.64.1',2,15,26940,NULL,'BB +1.1V P1 Vccp','clc93snar00007kiypalxeeen',''),('clc93snfp00y07kiyu1k3aoc7',1,'Admin',1672319405,'192.168.64.1',2,15,26941,NULL,'BB +1.5V P1 DDR3','clc93snar00007kiypalxeeen',''),('clc93snfp00y17kiyg1tvigh1',1,'Admin',1672319405,'192.168.64.1',2,15,26942,NULL,'BB +3.3V','clc93snar00007kiypalxeeen',''),('clc93snfp00y27kiyvo04n9bt',1,'Admin',1672319405,'192.168.64.1',2,15,26938,NULL,'BB +3.3V STBY','clc93snar00007kiypalxeeen',''),('clc93snfp00y37kiywqywsjgd',1,'Admin',1672319405,'192.168.64.1',2,15,26937,NULL,'BB +5.0V','clc93snar00007kiypalxeeen',''),('clc93snfp00y47kiyt3ozwh6t',1,'Admin',1672319405,'192.168.64.1',2,15,26933,NULL,'Front Panel Temp','clc93snar00007kiypalxeeen',''),('clc93snfp00y57kiy8ovxqdvd',1,'Admin',1672319405,'192.168.64.1',2,15,26934,NULL,'Power','clc93snar00007kiypalxeeen',''),('clc93snfp00y67kiypsoom5pn',1,'Admin',1672319405,'192.168.64.1',2,15,26935,NULL,'System Fan 2','clc93snar00007kiypalxeeen',''),('clc93snfp00y77kiyq715nckh',1,'Admin',1672319405,'192.168.64.1',2,15,26936,NULL,'System Fan 3','clc93snar00007kiypalxeeen',''),('clc93snfp00y87kiysfouqr0f',1,'Admin',1672319405,'192.168.64.1',2,15,27067,NULL,'ICMP ping','clc93snar00007kiypalxeeen',''),('clc93snfp00y97kiymg397k62',1,'Admin',1672319405,'192.168.64.1',2,15,27066,NULL,'ICMP loss','clc93snar00007kiypalxeeen',''),('clc93snfp00ya7kiyhebaz4do',1,'Admin',1672319405,'192.168.64.1',2,15,27065,NULL,'ICMP response time','clc93snar00007kiypalxeeen',''),('clc93snfp00yb7kiyvcxo5krb',1,'Admin',1672319405,'192.168.64.1',2,15,40867,NULL,'ICMP ping','clc93snar00007kiypalxeeen',''),('clc93snfp00yc7kiytmlwta9t',1,'Admin',1672319405,'192.168.64.1',2,15,40868,NULL,'ICMP loss','clc93snar00007kiypalxeeen',''),('clc93snfp00yd7kiylwn1q6k5',1,'Admin',1672319405,'192.168.64.1',2,15,40869,NULL,'ICMP response time','clc93snar00007kiypalxeeen',''),('clc93snfp00ye7kiyn6k7n6hb',1,'Admin',1672319405,'192.168.64.1',2,15,40870,NULL,'SNMP traps (fallback)','clc93snar00007kiypalxeeen',''),('clc93snfp00yf7kiysgkuuy9e',1,'Admin',1672319405,'192.168.64.1',2,15,40871,NULL,'System contact details','clc93snar00007kiypalxeeen',''),('clc93snfp00yg7kiy9igs5j2o',1,'Admin',1672319405,'192.168.64.1',2,15,40872,NULL,'System description','clc93snar00007kiypalxeeen',''),('clc93snfp00yh7kiyh3s1zmlr',1,'Admin',1672319405,'192.168.64.1',2,15,43790,NULL,'Uptime (hardware)','clc93snar00007kiypalxeeen',''),('clc93snfp00yi7kiyzbx0pkjs',1,'Admin',1672319405,'192.168.64.1',2,15,40873,NULL,'System location','clc93snar00007kiypalxeeen',''),('clc93snfp00yj7kiyo1a7z856',1,'Admin',1672319405,'192.168.64.1',2,15,40874,NULL,'System name','clc93snar00007kiypalxeeen',''),('clc93snfp00yk7kiyu0wm2cpo',1,'Admin',1672319405,'192.168.64.1',2,15,40876,NULL,'Uptime (network)','clc93snar00007kiypalxeeen',''),('clc93snfp00yl7kiyqts0cgok',1,'Admin',1672319405,'192.168.64.1',2,15,40875,NULL,'System object ID','clc93snar00007kiypalxeeen',''),('clc93snfp00ym7kiy1pn1pv8d',1,'Admin',1672319405,'192.168.64.1',2,15,40877,NULL,'SNMP agent availability','clc93snar00007kiypalxeeen',''),('clc93snfp00yn7kiy56k28mql',1,'Admin',1672319405,'192.168.64.1',2,15,40890,NULL,'ICMP ping','clc93snar00007kiypalxeeen',''),('clc93snfp00yo7kiyd19iulcc',1,'Admin',1672319405,'192.168.64.1',2,15,40891,NULL,'ICMP loss','clc93snar00007kiypalxeeen',''),('clc93snfp00yp7kiy4ove8bx5',1,'Admin',1672319405,'192.168.64.1',2,15,40892,NULL,'ICMP response time','clc93snar00007kiypalxeeen',''),('clc93snfp00yq7kiy9zmdfr7s',1,'Admin',1672319405,'192.168.64.1',2,15,40893,NULL,'SNMP traps (fallback)','clc93snar00007kiypalxeeen',''),('clc93snfp00yr7kiye8cfcorw',1,'Admin',1672319405,'192.168.64.1',2,15,40894,NULL,'System contact details','clc93snar00007kiypalxeeen',''),('clc93snfp00ys7kiydrlup9z8',1,'Admin',1672319405,'192.168.64.1',2,15,40895,NULL,'System description','clc93snar00007kiypalxeeen',''),('clc93snfp00yt7kiyc4b4jgnj',1,'Admin',1672319405,'192.168.64.1',2,15,27777,NULL,'Firmware version','clc93snar00007kiypalxeeen',''),('clc93snfp00yu7kiyl4a1sek1',1,'Admin',1672319405,'192.168.64.1',2,15,27778,NULL,'Hardware model name','clc93snar00007kiypalxeeen',''),('clc93snfp00yv7kiyvyyfuu5y',1,'Admin',1672319405,'192.168.64.1',2,15,43791,NULL,'Uptime (hardware)','clc93snar00007kiypalxeeen',''),('clc93snfp00yw7kiyxkiyhk36',1,'Admin',1672319405,'192.168.64.1',2,15,40896,NULL,'System location','clc93snar00007kiypalxeeen',''),('clc93snfp00yx7kiydzfj1vy7',1,'Admin',1672319405,'192.168.64.1',2,15,40897,NULL,'System name','clc93snar00007kiypalxeeen',''),('clc93snfp00yy7kiy00s0muz3',1,'Admin',1672319405,'192.168.64.1',2,15,40899,NULL,'Uptime (network)','clc93snar00007kiypalxeeen',''),('clc93snfp00yz7kiyeoyg04y8',1,'Admin',1672319405,'192.168.64.1',2,15,40898,NULL,'System object ID','clc93snar00007kiypalxeeen',''),('clc93snfp00z07kiypqbptgwd',1,'Admin',1672319405,'192.168.64.1',2,15,40900,NULL,'SNMP agent availability','clc93snar00007kiypalxeeen',''),('clc93snfp00z17kiy60ci4ufh',1,'Admin',1672319405,'192.168.64.1',2,15,40911,NULL,'ICMP ping','clc93snar00007kiypalxeeen',''),('clc93snfp00z27kiyr5iqofhn',1,'Admin',1672319405,'192.168.64.1',2,15,40912,NULL,'ICMP loss','clc93snar00007kiypalxeeen',''),('clc93snfp00z37kiy3yymmn0p',1,'Admin',1672319405,'192.168.64.1',2,15,40913,NULL,'ICMP response time','clc93snar00007kiypalxeeen',''),('clc93snfp00z47kiy79y4rvol',1,'Admin',1672319405,'192.168.64.1',2,15,40914,NULL,'SNMP traps (fallback)','clc93snar00007kiypalxeeen',''),('clc93snfp00z57kiyg01d340b',1,'Admin',1672319405,'192.168.64.1',2,15,40915,NULL,'System contact details','clc93snar00007kiypalxeeen',''),('clc93snfp00z67kiy9qploz6j',1,'Admin',1672319405,'192.168.64.1',2,15,40916,NULL,'System description','clc93snar00007kiypalxeeen',''),('clc93snfp00z77kiy2gi7psh0',1,'Admin',1672319405,'192.168.64.1',2,15,27812,NULL,'Hardware model name','clc93snar00007kiypalxeeen',''),('clc93snfp00z87kiyarynzrqj',1,'Admin',1672319405,'192.168.64.1',2,15,27813,NULL,'Hardware serial number','clc93snar00007kiypalxeeen',''),('clc93snfp00z97kiykl375ljc',1,'Admin',1672319405,'192.168.64.1',2,15,43792,NULL,'Uptime (hardware)','clc93snar00007kiypalxeeen',''),('clc93snfp00za7kiyuhb2q2jr',1,'Admin',1672319405,'192.168.64.1',2,15,40917,NULL,'System location','clc93snar00007kiypalxeeen',''),('clc93snfp00zb7kiyz0s283m0',1,'Admin',1672319405,'192.168.64.1',2,15,40918,NULL,'System name','clc93snar00007kiypalxeeen',''),('clc93snfp00zc7kiy0iflwgtk',1,'Admin',1672319405,'192.168.64.1',2,15,40920,NULL,'Uptime (network)','clc93snar00007kiypalxeeen',''),('clc93snfp00zd7kiyuj3qn3qa',1,'Admin',1672319405,'192.168.64.1',2,15,40919,NULL,'System object ID','clc93snar00007kiypalxeeen',''),('clc93snfp00ze7kiyix9dw1z5',1,'Admin',1672319405,'192.168.64.1',2,15,27814,NULL,'Overall system health status','clc93snar00007kiypalxeeen',''),('clc93snfp00zf7kiytqkks309',1,'Admin',1672319405,'192.168.64.1',2,15,30117,NULL,'Operating system','clc93snar00007kiypalxeeen',''),('clc93snfp00zg7kiya912txl2',1,'Admin',1672319405,'192.168.64.1',2,15,40921,NULL,'SNMP agent availability','clc93snar00007kiypalxeeen',''),('clc93snfp00zh7kiyovimdc0p',1,'Admin',1672319405,'192.168.64.1',2,15,42384,NULL,'ICMP ping','clc93snar00007kiypalxeeen',''),('clc93snfp00zi7kiys9cvym0u',1,'Admin',1672319405,'192.168.64.1',2,15,42397,NULL,'ICMP loss','clc93snar00007kiypalxeeen',''),('clc93snfp00zj7kiy24p17edp',1,'Admin',1672319405,'192.168.64.1',2,15,42408,NULL,'ICMP response time','clc93snar00007kiypalxeeen',''),('clc93snfp00zk7kiy2bfeziz1',1,'Admin',1672319405,'192.168.64.1',2,15,42407,NULL,'SNMP traps (fallback)','clc93snar00007kiypalxeeen',''),('clc93snfp00zl7kiygr93md97',1,'Admin',1672319405,'192.168.64.1',2,15,42406,NULL,'System contact details','clc93snar00007kiypalxeeen',''),('clc93snfp00zm7kiyupahunbg',1,'Admin',1672319405,'192.168.64.1',2,15,42405,NULL,'Interrupts per second','clc93snar00007kiypalxeeen',''),('clc93snfp00zn7kiyt6gh2nql',1,'Admin',1672319405,'192.168.64.1',2,15,42402,NULL,'Load average (15m avg)','clc93snar00007kiypalxeeen',''),('clc93snfp00zo7kiyv9zvyewa',1,'Admin',1672319405,'192.168.64.1',2,15,42404,NULL,'Load average (1m avg)','clc93snar00007kiypalxeeen',''),('clc93snfp00zp7kiyx56bg5jf',1,'Admin',1672319405,'192.168.64.1',2,15,42403,NULL,'Load average (5m avg)','clc93snar00007kiypalxeeen',''),('clc93snfp00zq7kiypuia3o92',1,'Admin',1672319405,'192.168.64.1',2,15,42401,NULL,'Number of CPUs','clc93snar00007kiypalxeeen',''),('clc93snfp00zr7kiyxopckk0t',1,'Admin',1672319405,'192.168.64.1',2,15,42400,NULL,'Context switches per second','clc93snar00007kiypalxeeen',''),('clc93snfp00zs7kiylb0dpeyh',1,'Admin',1672319405,'192.168.64.1',2,15,42399,NULL,'System description','clc93snar00007kiypalxeeen',''),('clc93snfp00zt7kiyxxg5za5z',1,'Admin',1672319405,'192.168.64.1',2,15,43874,NULL,'Uptime (hardware)','clc93snar00007kiypalxeeen',''),('clc93snfp00zu7kiypuivatsv',1,'Admin',1672319405,'192.168.64.1',2,15,42398,NULL,'System location','clc93snar00007kiypalxeeen',''),('clc93snfp00zv7kiytjgz5fj9',1,'Admin',1672319405,'192.168.64.1',2,15,42396,NULL,'System name','clc93snar00007kiypalxeeen',''),('clc93snfp00zw7kiyofo2swmh',1,'Admin',1672319405,'192.168.64.1',2,15,42392,NULL,'Uptime (network)','clc93snar00007kiypalxeeen',''),('clc93snfp00zx7kiy0ptfj100',1,'Admin',1672319405,'192.168.64.1',2,15,42385,NULL,'System object ID','clc93snar00007kiypalxeeen',''),('clc93snfp00zy7kiy23h6nqaw',1,'Admin',1672319405,'192.168.64.1',2,15,42395,NULL,'Free swap space','clc93snar00007kiypalxeeen',''),('clc93snfp00zz7kiy2e8i3uy2',1,'Admin',1672319405,'192.168.64.1',2,15,42394,NULL,'Free swap space in %','clc93snar00007kiypalxeeen',''),('clc93snfp01007kiyy3iwgth3',1,'Admin',1672319405,'192.168.64.1',2,15,42393,NULL,'Total swap space','clc93snar00007kiypalxeeen',''),('clc93snfp01017kiyxxzus679',1,'Admin',1672319405,'192.168.64.1',2,15,42391,NULL,'Available memory','clc93snar00007kiypalxeeen',''),('clc93snfp01027kiyz84dg900',1,'Admin',1672319405,'192.168.64.1',2,15,42390,NULL,'Memory (buffers)','clc93snar00007kiypalxeeen',''),('clc93snfp01037kiyufgulqzn',1,'Admin',1672319405,'192.168.64.1',2,15,42389,NULL,'Memory (cached)','clc93snar00007kiypalxeeen',''),('clc93snfp01047kiyqsvriakx',1,'Admin',1672319405,'192.168.64.1',2,15,42388,NULL,'Free memory','clc93snar00007kiypalxeeen',''),('clc93snfp01057kiyftgh03mo',1,'Admin',1672319405,'192.168.64.1',2,15,42387,NULL,'Total memory','clc93snar00007kiypalxeeen',''),('clc93snfp01067kiyphcctyhh',1,'Admin',1672319405,'192.168.64.1',2,15,42386,NULL,'Memory utilization','clc93snar00007kiypalxeeen',''),('clc93snfp01077kiyw3hwp3j6',1,'Admin',1672319405,'192.168.64.1',2,15,42409,NULL,'SNMP agent availability','clc93snar00007kiypalxeeen',''),('clc93snfp01087kiyffiaabhc',1,'Admin',1672319405,'192.168.64.1',2,15,40844,NULL,'ICMP ping','clc93snar00007kiypalxeeen',''),('clc93snfp01097kiyy3lfyab1',1,'Admin',1672319405,'192.168.64.1',2,15,40845,NULL,'ICMP loss','clc93snar00007kiypalxeeen',''),('clc93snfp010a7kiy6vjnlml3',1,'Admin',1672319405,'192.168.64.1',2,15,40846,NULL,'ICMP response time','clc93snar00007kiypalxeeen',''),('clc93snfp010b7kiy626ucyhm',1,'Admin',1672319405,'192.168.64.1',2,15,40847,NULL,'SNMP traps (fallback)','clc93snar00007kiypalxeeen',''),('clc93snfp010c7kiy5tkbdujo',1,'Admin',1672319405,'192.168.64.1',2,15,40848,NULL,'System contact details','clc93snar00007kiypalxeeen',''),('clc93snfp010d7kiyocyllbju',1,'Admin',1672319405,'192.168.64.1',2,15,28143,NULL,'CPU utilization','clc93snar00007kiypalxeeen',''),('clc93snfp010e7kiyqtq0766i',1,'Admin',1672319405,'192.168.64.1',2,15,40849,NULL,'System description','clc93snar00007kiypalxeeen',''),('clc93snfp010f7kiy9b3net72',1,'Admin',1672319405,'192.168.64.1',2,15,28141,NULL,'Firmware version','clc93snar00007kiypalxeeen',''),('clc93snfp010g7kiyjdozo0iu',1,'Admin',1672319405,'192.168.64.1',2,15,28142,NULL,'Hardware serial number','clc93snar00007kiypalxeeen',''),('clc93snfp010h7kiyvaodjitk',1,'Admin',1672319405,'192.168.64.1',2,15,43789,NULL,'Uptime (hardware)','clc93snar00007kiypalxeeen',''),('clc93snfp010i7kiye1es2f7h',1,'Admin',1672319405,'192.168.64.1',2,15,40850,NULL,'System location','clc93snar00007kiypalxeeen',''),('clc93snfp010j7kiyobmodb3l',1,'Admin',1672319405,'192.168.64.1',2,15,40851,NULL,'System name','clc93snar00007kiypalxeeen',''),('clc93snfp010k7kiy12pon29i',1,'Admin',1672319405,'192.168.64.1',2,15,40853,NULL,'Uptime (network)','clc93snar00007kiypalxeeen',''),('clc93snfp010l7kiyp517a5cj',1,'Admin',1672319405,'192.168.64.1',2,15,40852,NULL,'System object ID','clc93snar00007kiypalxeeen',''),('clc93snfp010m7kiywouwoz84',1,'Admin',1672319405,'192.168.64.1',2,15,40854,NULL,'SNMP agent availability','clc93snar00007kiypalxeeen',''),('clc93snfp010n7kiyvv026w6g',1,'Admin',1672319405,'192.168.64.1',2,15,42642,NULL,'ICMP ping','clc93snar00007kiypalxeeen',''),('clc93snfp010o7kiyefqkoa90',1,'Admin',1672319405,'192.168.64.1',2,15,42643,NULL,'ICMP loss','clc93snar00007kiypalxeeen',''),('clc93snfp010p7kiyf441himw',1,'Admin',1672319405,'192.168.64.1',2,15,42644,NULL,'ICMP response time','clc93snar00007kiypalxeeen',''),('clc93snfp010q7kiyadw5j57j',1,'Admin',1672319405,'192.168.64.1',2,15,28388,NULL,'System: Temperature status','clc93snar00007kiypalxeeen',''),('clc93snfp010r7kiymkws1rpj',1,'Admin',1672319405,'192.168.64.1',2,15,42645,NULL,'SNMP traps (fallback)','clc93snar00007kiypalxeeen',''),('clc93snfp010s7kiyskh8hx2a',1,'Admin',1672319405,'192.168.64.1',2,15,42646,NULL,'System contact details','clc93snar00007kiypalxeeen',''),('clc93snfp010t7kiy4h15xdse',1,'Admin',1672319405,'192.168.64.1',2,15,42647,NULL,'System description','clc93snar00007kiypalxeeen',''),('clc93snfp010u7kiyy8zslfno',1,'Admin',1672319405,'192.168.64.1',2,15,28390,NULL,'Hardware model name','clc93snar00007kiypalxeeen',''),('clc93snfp010v7kiykonkc3ev',1,'Admin',1672319405,'192.168.64.1',2,15,28391,NULL,'Hardware serial number','clc93snar00007kiypalxeeen',''),('clc93snfp010w7kiyxx9vjj7a',1,'Admin',1672319405,'192.168.64.1',2,15,43900,NULL,'Uptime (hardware)','clc93snar00007kiypalxeeen',''),('clc93snfp010x7kiy1n8csbvn',1,'Admin',1672319405,'192.168.64.1',2,15,42648,NULL,'System location','clc93snar00007kiypalxeeen',''),('clc93snfp010y7kiybbhbuow1',1,'Admin',1672319405,'192.168.64.1',2,15,42649,NULL,'System name','clc93snar00007kiypalxeeen',''),('clc93snfp010z7kiyq5cmojtn',1,'Admin',1672319405,'192.168.64.1',2,15,42651,NULL,'Uptime (network)','clc93snar00007kiypalxeeen',''),('clc93snfp01107kiyliqdwwz7',1,'Admin',1672319405,'192.168.64.1',2,15,42650,NULL,'System object ID','clc93snar00007kiypalxeeen',''),('clc93snfp01117kiye1iak8mw',1,'Admin',1672319405,'192.168.64.1',2,15,29994,NULL,'Overall system health status','clc93snar00007kiypalxeeen',''),('clc93snfp01127kiyqn70eks3',1,'Admin',1672319405,'192.168.64.1',2,15,42652,NULL,'SNMP agent availability','clc93snar00007kiypalxeeen',''),('clc93snfp01137kiyukukdb8o',1,'Admin',1672319405,'192.168.64.1',2,15,42653,NULL,'ICMP ping','clc93snar00007kiypalxeeen',''),('clc93snfp01147kiyu20hy2hx',1,'Admin',1672319405,'192.168.64.1',2,15,42654,NULL,'ICMP loss','clc93snar00007kiypalxeeen',''),('clc93snfp01157kiyo4mg2cpo',1,'Admin',1672319405,'192.168.64.1',2,15,42655,NULL,'ICMP response time','clc93snar00007kiypalxeeen',''),('clc93snfp01167kiy7pyhvqsd',1,'Admin',1672319405,'192.168.64.1',2,15,42656,NULL,'SNMP traps (fallback)','clc93snar00007kiypalxeeen',''),('clc93snfp01177kiyuox67ill',1,'Admin',1672319405,'192.168.64.1',2,15,42657,NULL,'System contact details','clc93snar00007kiypalxeeen',''),('clc93snfp01187kiydq3wuzcq',1,'Admin',1672319405,'192.168.64.1',2,15,42658,NULL,'System description','clc93snar00007kiypalxeeen',''),('clc93snfp01197kiy4pxd66od',1,'Admin',1672319405,'192.168.64.1',2,15,28466,NULL,'Hardware model name','clc93snar00007kiypalxeeen',''),('clc93snfp011a7kiywmb8pbhu',1,'Admin',1672319405,'192.168.64.1',2,15,28467,NULL,'Hardware serial number','clc93snar00007kiypalxeeen',''),('clc93snfp011b7kiyophe65vh',1,'Admin',1672319405,'192.168.64.1',2,15,44050,NULL,'Uptime (hardware)','clc93snar00007kiypalxeeen',''),('clc93snfp011c7kiyer6ipmp8',1,'Admin',1672319405,'192.168.64.1',2,15,42659,NULL,'System location','clc93snar00007kiypalxeeen',''),('clc93snfp011d7kiyjw2vv6y2',1,'Admin',1672319405,'192.168.64.1',2,15,42660,NULL,'System name','clc93snar00007kiypalxeeen',''),('clc93snfp011e7kiyzzxng8g7',1,'Admin',1672319405,'192.168.64.1',2,15,42662,NULL,'Uptime (network)','clc93snar00007kiypalxeeen',''),('clc93snfp011f7kiyaswxsmx2',1,'Admin',1672319405,'192.168.64.1',2,15,42661,NULL,'System object ID','clc93snar00007kiypalxeeen',''),('clc93snfp011g7kiyy3bxgi0a',1,'Admin',1672319405,'192.168.64.1',2,15,28465,NULL,'Overall system health status','clc93snar00007kiypalxeeen',''),('clc93snfp011h7kiyoqlejx4j',1,'Admin',1672319405,'192.168.64.1',2,15,42663,NULL,'SNMP agent availability','clc93snar00007kiypalxeeen',''),('clc93snfp011i7kiyk2egkhkx',1,'Admin',1672319405,'192.168.64.1',2,15,28991,NULL,'Interrupts per second','clc93snar00007kiypalxeeen',''),('clc93snfp011j7kiyiynjqf6s',1,'Admin',1672319405,'192.168.64.1',2,15,28989,NULL,'Load average (15m avg)','clc93snar00007kiypalxeeen',''),('clc93snfp011k7kiymie31gm6',1,'Admin',1672319405,'192.168.64.1',2,15,28987,NULL,'Load average (1m avg)','clc93snar00007kiypalxeeen',''),('clc93snfp011l7kiyjcmr74em',1,'Admin',1672319405,'192.168.64.1',2,15,28988,NULL,'Load average (5m avg)','clc93snar00007kiypalxeeen',''),('clc93snfp011m7kiyykee5cbl',1,'Admin',1672319405,'192.168.64.1',2,15,28990,NULL,'Number of CPUs','clc93snar00007kiypalxeeen',''),('clc93snfp011n7kiyuthodj9p',1,'Admin',1672319405,'192.168.64.1',2,15,28992,NULL,'Context switches per second','clc93snar00007kiypalxeeen',''),('clc93snfp011o7kiyzogs6cyg',1,'Admin',1672319405,'192.168.64.1',2,15,29102,NULL,'Interrupts per second','clc93snar00007kiypalxeeen',''),('clc93snfp011p7kiywmkx82rm',1,'Admin',1672319405,'192.168.64.1',2,15,29100,NULL,'Load average (15m avg)','clc93snar00007kiypalxeeen',''),('clc93snfp011q7kiyav0dr4u9',1,'Admin',1672319405,'192.168.64.1',2,15,29096,NULL,'Load average (1m avg)','clc93snar00007kiypalxeeen',''),('clc93snfp011r7kiyfd357fqr',1,'Admin',1672319405,'192.168.64.1',2,15,29101,NULL,'Load average (5m avg)','clc93snar00007kiypalxeeen',''),('clc93snfp011s7kiysyzm75l9',1,'Admin',1672319405,'192.168.64.1',2,15,29087,NULL,'Number of CPUs','clc93snar00007kiypalxeeen',''),('clc93snfp011t7kiy9ssm7dbw',1,'Admin',1672319405,'192.168.64.1',2,15,29089,NULL,'Context switches per second','clc93snar00007kiypalxeeen',''),('clc93snfp011u7kiyg75tjrlv',1,'Admin',1672319405,'192.168.64.1',2,15,29198,NULL,'CPU utilization','clc93snar00007kiypalxeeen',''),('clc93snfp011v7kiyzp11hink',1,'Admin',1672319405,'192.168.64.1',2,15,29091,NULL,'CPU guest time','clc93snar00007kiypalxeeen',''),('clc93snfp011w7kiy8l07mewa',1,'Admin',1672319405,'192.168.64.1',2,15,29090,NULL,'CPU guest nice time','clc93snar00007kiypalxeeen',''),('clc93snfp011x7kiyjzrv5alr',1,'Admin',1672319405,'192.168.64.1',2,15,29099,NULL,'CPU idle time','clc93snar00007kiypalxeeen',''),('clc93snfp011y7kiyeg6a8qdk',1,'Admin',1672319405,'192.168.64.1',2,15,29093,NULL,'CPU interrupt time','clc93snar00007kiypalxeeen',''),('clc93snfp011z7kiyarae5ot4',1,'Admin',1672319405,'192.168.64.1',2,15,29088,NULL,'CPU iowait time','clc93snar00007kiypalxeeen',''),('clc93snfp01207kiy0mep4jkj',1,'Admin',1672319405,'192.168.64.1',2,15,29095,NULL,'CPU nice time','clc93snar00007kiypalxeeen',''),('clc93snfp01217kiy8n57k55p',1,'Admin',1672319405,'192.168.64.1',2,15,29092,NULL,'CPU softirq time','clc93snar00007kiypalxeeen',''),('clc93snfp01227kiyp054x80t',1,'Admin',1672319405,'192.168.64.1',2,15,29094,NULL,'CPU steal time','clc93snar00007kiypalxeeen',''),('clc93snfp01237kiyfgycq2sp',1,'Admin',1672319405,'192.168.64.1',2,15,29098,NULL,'CPU system time','clc93snar00007kiypalxeeen',''),('clc93snfp01247kiybvx34kx5',1,'Admin',1672319405,'192.168.64.1',2,15,29097,NULL,'CPU user time','clc93snar00007kiypalxeeen',''),('clc93snfp01257kiy66z50f19',1,'Admin',1672319405,'192.168.64.1',2,15,44371,NULL,'Get filesystems','clc93snar00007kiypalxeeen',''),('clc93snfp01267kiyw8etnnts',1,'Admin',1672319405,'192.168.64.1',2,15,29116,NULL,'Maximum number of open file descriptors','clc93snar00007kiypalxeeen',''),('clc93snfp01277kiyu71mvk7h',1,'Admin',1672319405,'192.168.64.1',2,15,29117,NULL,'Maximum number of processes','clc93snar00007kiypalxeeen',''),('clc93snfp01287kiywayl6vvm',1,'Admin',1672319405,'192.168.64.1',2,15,29118,NULL,'Number of processes','clc93snar00007kiypalxeeen',''),('clc93snfp01297kiyz142xp2q',1,'Admin',1672319405,'192.168.64.1',2,15,29119,NULL,'Number of running processes','clc93snar00007kiypalxeeen',''),('clc93snfp012a7kiy6ri3r3q6',1,'Admin',1672319405,'192.168.64.1',2,15,29111,NULL,'System boot time','clc93snar00007kiypalxeeen',''),('clc93snfp012b7kiygmf9xvu2',1,'Admin',1672319405,'192.168.64.1',2,15,29113,NULL,'System name','clc93snar00007kiypalxeeen',''),('clc93snfp012c7kiycufvsfnl',1,'Admin',1672319405,'192.168.64.1',2,15,29112,NULL,'System local time','clc93snar00007kiypalxeeen',''),('clc93snfp012d7kiyrcc8h66v',1,'Admin',1672319405,'192.168.64.1',2,15,29122,NULL,'Operating system architecture','clc93snar00007kiypalxeeen',''),('clc93snfp012e7kiyn1nwigwj',1,'Admin',1672319405,'192.168.64.1',2,15,29121,NULL,'Operating system','clc93snar00007kiypalxeeen',''),('clc93snfp012f7kiyi49uabgw',1,'Admin',1672319405,'192.168.64.1',2,15,29123,NULL,'Software installed','clc93snar00007kiypalxeeen',''),('clc93snfp012g7kiymlksj9vd',1,'Admin',1672319405,'192.168.64.1',2,15,29114,NULL,'System description','clc93snar00007kiypalxeeen',''),('clc93snfp012h7kiybq3gy804',1,'Admin',1672319405,'192.168.64.1',2,15,29110,NULL,'System uptime','clc93snar00007kiypalxeeen',''),('clc93snfp012i7kiyq0ruhxa3',1,'Admin',1672319405,'192.168.64.1',2,15,29115,NULL,'Number of logged in users','clc93snar00007kiypalxeeen',''),('clc93snfp012j7kiymljz2ogl',1,'Admin',1672319405,'192.168.64.1',2,15,29120,NULL,'Checksum of /etc/passwd','clc93snar00007kiypalxeeen',''),('clc93snfp012k7kiydqpwp4ek',1,'Admin',1672319405,'192.168.64.1',2,15,29415,NULL,'Version of node_exporter running','clc93snar00007kiypalxeeen',''),('clc93snfp012l7kiy6s4wecte',1,'Admin',1672319405,'192.168.64.1',2,15,29423,NULL,'Number of open file descriptors','clc93snar00007kiypalxeeen',''),('clc93snfp012m7kiy0wdesa66',1,'Admin',1672319405,'192.168.64.1',2,15,29424,NULL,'Maximum number of open file descriptors','clc93snar00007kiypalxeeen',''),('clc93snfp012n7kiyne51ddb3',1,'Admin',1672319405,'192.168.64.1',2,15,29395,NULL,'Get node_exporter metrics','clc93snar00007kiypalxeeen',''),('clc93snfp012o7kiyh8zcgx7e',1,'Admin',1672319405,'192.168.64.1',2,15,29404,NULL,'System boot time','clc93snar00007kiypalxeeen',''),('clc93snfp012p7kiy2h5pbdsg',1,'Admin',1672319405,'192.168.64.1',2,15,29408,NULL,'CPU guest time','clc93snar00007kiypalxeeen',''),('clc93snfp012q7kiyvph98zgg',1,'Admin',1672319405,'192.168.64.1',2,15,29407,NULL,'CPU guest nice time','clc93snar00007kiypalxeeen',''),('clc93snfp012r7kiyoigmhxpq',1,'Admin',1672319405,'192.168.64.1',2,15,29416,NULL,'CPU idle time','clc93snar00007kiypalxeeen',''),('clc93snfp012s7kiyoqtyhd91',1,'Admin',1672319405,'192.168.64.1',2,15,29409,NULL,'CPU interrupt time','clc93snar00007kiypalxeeen',''),('clc93snfp012t7kiyjjo4h5kh',1,'Admin',1672319405,'192.168.64.1',2,15,29406,NULL,'Interrupts per second','clc93snar00007kiypalxeeen',''),('clc93snfp012u7kiy73dp7myd',1,'Admin',1672319405,'192.168.64.1',2,15,29410,NULL,'CPU iowait time','clc93snar00007kiypalxeeen',''),('clc93snfp012v7kiy5xcxmb4t',1,'Admin',1672319405,'192.168.64.1',2,15,29418,NULL,'Load average (15m avg)','clc93snar00007kiypalxeeen',''),('clc93snfp012w7kiym0bxabqn',1,'Admin',1672319405,'192.168.64.1',2,15,29420,NULL,'Load average (1m avg)','clc93snar00007kiypalxeeen',''),('clc93snfp012x7kiyrrobg4ka',1,'Admin',1672319405,'192.168.64.1',2,15,29419,NULL,'Load average (5m avg)','clc93snar00007kiypalxeeen',''),('clc93snfp012y7kiyiv07a0jl',1,'Admin',1672319405,'192.168.64.1',2,15,29411,NULL,'CPU nice time','clc93snar00007kiypalxeeen',''),('clc93snfp012z7kiyg5puqve7',1,'Admin',1672319405,'192.168.64.1',2,15,29417,NULL,'Number of CPUs','clc93snar00007kiypalxeeen',''),('clc93snfp01307kiycvsx8ui1',1,'Admin',1672319405,'192.168.64.1',2,15,29412,NULL,'CPU softirq time','clc93snar00007kiypalxeeen',''),('clc93snfp01317kiygze6dcro',1,'Admin',1672319405,'192.168.64.1',2,15,29399,NULL,'CPU steal time','clc93snar00007kiypalxeeen',''),('clc93snfp01327kiy8z3wnrym',1,'Admin',1672319405,'192.168.64.1',2,15,29405,NULL,'Context switches per second','clc93snar00007kiypalxeeen',''),('clc93snfp01337kiydcmcrk5c',1,'Admin',1672319405,'192.168.64.1',2,15,29426,NULL,'CPU system time','clc93snar00007kiypalxeeen',''),('clc93snfp01347kiyrfy3pely',1,'Admin',1672319405,'192.168.64.1',2,15,29413,NULL,'CPU user time','clc93snar00007kiypalxeeen',''),('clc93snfp01357kiyce4li06h',1,'Admin',1672319405,'192.168.64.1',2,15,29427,NULL,'CPU utilization','clc93snar00007kiypalxeeen',''),('clc93snfp01367kiyp411f7x6',1,'Admin',1672319405,'192.168.64.1',2,15,29425,NULL,'System description','clc93snar00007kiypalxeeen',''),('clc93snfp01377kiyxnl5meu8',1,'Admin',1672319405,'192.168.64.1',2,15,29398,NULL,'System local time','clc93snar00007kiypalxeeen',''),('clc93snfp01387kiyg151ngso',1,'Admin',1672319405,'192.168.64.1',2,15,29414,NULL,'System name','clc93snar00007kiypalxeeen',''),('clc93snfp01397kiyi7emqv9u',1,'Admin',1672319405,'192.168.64.1',2,15,29422,NULL,'Operating system architecture','clc93snar00007kiypalxeeen',''),('clc93snfp013a7kiy3tumnws0',1,'Admin',1672319405,'192.168.64.1',2,15,29428,NULL,'Operating system','clc93snar00007kiypalxeeen',''),('clc93snfp013b7kiy9khqu17c',1,'Admin',1672319405,'192.168.64.1',2,15,29400,NULL,'Free swap space','clc93snar00007kiypalxeeen',''),('clc93snfp013c7kiyfn7rslli',1,'Admin',1672319405,'192.168.64.1',2,15,29397,NULL,'Free swap space in %','clc93snar00007kiypalxeeen',''),('clc93snfp013d7kiyp9y890vv',1,'Admin',1672319405,'192.168.64.1',2,15,29401,NULL,'Total swap space','clc93snar00007kiypalxeeen',''),('clc93snfp013e7kiyp38kt2o2',1,'Admin',1672319405,'192.168.64.1',2,15,29421,NULL,'System uptime','clc93snar00007kiypalxeeen',''),('clc93snfp013f7kiys3t0g04b',1,'Admin',1672319405,'192.168.64.1',2,15,29402,NULL,'Available memory','clc93snar00007kiypalxeeen',''),('clc93snfp013g7kiyue2vl82m',1,'Admin',1672319405,'192.168.64.1',2,15,29403,NULL,'Total memory','clc93snar00007kiypalxeeen',''),('clc93snfp013h7kiyzj80f45b',1,'Admin',1672319405,'192.168.64.1',2,15,29396,NULL,'Memory utilization','clc93snar00007kiypalxeeen',''),('clc93snfp013i7kiy8z1fxckf',1,'Admin',1672319405,'192.168.64.1',2,15,30968,NULL,'IIS: {$IIS.PORT} port ping','clc93snar00007kiypalxeeen',''),('clc93snfp013j7kiyvmlkw0xr',1,'Admin',1672319405,'192.168.64.1',2,15,30980,NULL,'IIS: Files cache hits percentage','clc93snar00007kiypalxeeen',''),('clc93snfp013k7kiyo9kzmbhl',1,'Admin',1672319405,'192.168.64.1',2,15,30981,NULL,'IIS: File cache misses','clc93snar00007kiypalxeeen',''),('clc93snfp013l7kiy0zo01xw0',1,'Admin',1672319405,'192.168.64.1',2,15,30982,NULL,'IIS: URIs cache hits percentage','clc93snar00007kiypalxeeen',''),('clc93snfp013m7kiyb1d8p3ty',1,'Admin',1672319405,'192.168.64.1',2,15,30983,NULL,'IIS: URI cache misses','clc93snar00007kiypalxeeen',''),('clc93snfp013n7kiy7po1hwry',1,'Admin',1672319405,'192.168.64.1',2,15,30987,NULL,'IIS: Anonymous users per second','clc93snar00007kiypalxeeen',''),('clc93snfp013o7kiylokfa7bh',1,'Admin',1672319405,'192.168.64.1',2,15,30989,NULL,'IIS: Bytes Received per second','clc93snar00007kiypalxeeen',''),('clc93snfp013p7kiydyrpbizf',1,'Admin',1672319405,'192.168.64.1',2,15,30990,NULL,'IIS: Bytes Sent per second','clc93snar00007kiypalxeeen',''),('clc93snfp013q7kiyefaybpsv',1,'Admin',1672319405,'192.168.64.1',2,15,30991,NULL,'IIS: Bytes Total per second','clc93snar00007kiypalxeeen',''),('clc93snfp013r7kiyzflkrb28',1,'Admin',1672319405,'192.168.64.1',2,15,30992,NULL,'IIS: Method CGI requests per second','clc93snar00007kiypalxeeen',''),('clc93snfp013s7kiy0zzq84b3',1,'Admin',1672319405,'192.168.64.1',2,15,30993,NULL,'IIS: Connection attempts per second','clc93snar00007kiypalxeeen',''),('clc93snfp013t7kiyjo18rgqw',1,'Admin',1672319405,'192.168.64.1',2,15,30994,NULL,'IIS: Method COPY requests per second','clc93snar00007kiypalxeeen',''),('clc93snfp013u7kiyu44oy67f',1,'Admin',1672319405,'192.168.64.1',2,15,30988,NULL,'IIS: Current connections','clc93snar00007kiypalxeeen',''),('clc93snfp013v7kiyhb9yd0n0',1,'Admin',1672319405,'192.168.64.1',2,15,30995,NULL,'IIS: Method DELETE requests per second','clc93snar00007kiypalxeeen',''),('clc93snfp013w7kiydc7y62zm',1,'Admin',1672319405,'192.168.64.1',2,15,30997,NULL,'IIS: Method GET requests per second','clc93snar00007kiypalxeeen',''),('clc93snfp013x7kiyrrij3hk0',1,'Admin',1672319405,'192.168.64.1',2,15,30998,NULL,'IIS: Method HEAD requests per second','clc93snar00007kiypalxeeen',''),('clc93snfp013y7kiy9x1d3wq2',1,'Admin',1672319405,'192.168.64.1',2,15,30999,NULL,'IIS: Method ISAPI requests per second','clc93snar00007kiypalxeeen',''),('clc93snfp013z7kiy10x3lc71',1,'Admin',1672319405,'192.168.64.1',2,15,31001,NULL,'IIS: Method LOCK requests per second','clc93snar00007kiypalxeeen',''),('clc93snfp01407kiyxu5kw3mz',1,'Admin',1672319405,'192.168.64.1',2,15,31000,NULL,'IIS: Locked errors per second','clc93snar00007kiypalxeeen',''),('clc93snfp01417kiyqeszb0jw',1,'Admin',1672319405,'192.168.64.1',2,15,31002,NULL,'IIS: Method MKCOL requests per second','clc93snar00007kiypalxeeen',''),('clc93snfp01427kiydmdtiqv2',1,'Admin',1672319405,'192.168.64.1',2,15,31003,NULL,'IIS: Method MOVE requests per second','clc93snar00007kiypalxeeen',''),('clc93snfp01437kiy85u1auxq',1,'Admin',1672319405,'192.168.64.1',2,15,30996,NULL,'IIS: NonAnonymous users per second','clc93snar00007kiypalxeeen',''),('clc93snfp01447kiy12a0r83d',1,'Admin',1672319405,'192.168.64.1',2,15,30986,NULL,'IIS: Not Found errors per second','clc93snar00007kiypalxeeen',''),('clc93snfp01457kiyjjxkpngd',1,'Admin',1672319405,'192.168.64.1',2,15,30977,NULL,'IIS: Method OPTIONS requests per second','clc93snar00007kiypalxeeen',''),('clc93snfp01467kiy9tzmee80',1,'Admin',1672319405,'192.168.64.1',2,15,30985,NULL,'IIS: Method Total Other requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq01477kiyfr6l966z',1,'Admin',1672319405,'192.168.64.1',2,15,30970,NULL,'IIS: Method POST requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq01487kiycz0001im',1,'Admin',1672319405,'192.168.64.1',2,15,30971,NULL,'IIS: Method PROPFIND requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq01497kiyo3zsh0hv',1,'Admin',1672319405,'192.168.64.1',2,15,30972,NULL,'IIS: Method PROPPATCH requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq014a7kiy142i7aph',1,'Admin',1672319405,'192.168.64.1',2,15,30973,NULL,'IIS: Method PUT requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq014b7kiyn9jdugs4',1,'Admin',1672319405,'192.168.64.1',2,15,30974,NULL,'IIS: Method MS-SEARCH requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq014c7kiy8menr9l8',1,'Admin',1672319405,'192.168.64.1',2,15,30975,NULL,'IIS: Uptime','clc93snar00007kiypalxeeen',''),('clc93snfq014d7kiyeq4tkn2x',1,'Admin',1672319405,'192.168.64.1',2,15,30969,NULL,'IIS: Total connection attempts','clc93snar00007kiypalxeeen',''),('clc93snfq014e7kiydvqzamco',1,'Admin',1672319405,'192.168.64.1',2,15,30976,NULL,'IIS: Method Total requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq014f7kiy1boez7g5',1,'Admin',1672319405,'192.168.64.1',2,15,30978,NULL,'IIS: Method TRACE requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq014g7kiyvujl1vfj',1,'Admin',1672319405,'192.168.64.1',2,15,30979,NULL,'IIS: Method TRACE requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq014h7kiykedz5ufb',1,'Admin',1672319405,'192.168.64.1',2,15,30984,NULL,'IIS: World Wide Web Publishing Service (W3SVC) state','clc93snar00007kiypalxeeen',''),('clc93snfq014i7kiynhy8v1z6',1,'Admin',1672319405,'192.168.64.1',2,15,31004,NULL,'IIS: Windows Process Activation Service (WAS) state','clc93snar00007kiypalxeeen',''),('clc93snfq014j7kiykelmuvx4',1,'Admin',1672319405,'192.168.64.1',2,15,31010,NULL,'IIS: {$IIS.PORT} port ping','clc93snar00007kiypalxeeen',''),('clc93snfq014k7kiy6wpwfobj',1,'Admin',1672319405,'192.168.64.1',2,15,31022,NULL,'IIS: Files cache hits percentage','clc93snar00007kiypalxeeen',''),('clc93snfq014l7kiyl78kjxxf',1,'Admin',1672319405,'192.168.64.1',2,15,31023,NULL,'IIS: File cache misses','clc93snar00007kiypalxeeen',''),('clc93snfq014m7kiyhlpu7vkh',1,'Admin',1672319405,'192.168.64.1',2,15,31024,NULL,'IIS: URIs cache hits percentage','clc93snar00007kiypalxeeen',''),('clc93snfq014n7kiyyk2yl94g',1,'Admin',1672319405,'192.168.64.1',2,15,31025,NULL,'IIS: URI cache misses','clc93snar00007kiypalxeeen',''),('clc93snfq014o7kiyfmmeo9hu',1,'Admin',1672319405,'192.168.64.1',2,15,31029,NULL,'IIS: Anonymous users per second','clc93snar00007kiypalxeeen',''),('clc93snfq014p7kiyvkh15fdk',1,'Admin',1672319405,'192.168.64.1',2,15,31031,NULL,'IIS: Bytes Received per second','clc93snar00007kiypalxeeen',''),('clc93snfq014q7kiyngjz3b9o',1,'Admin',1672319405,'192.168.64.1',2,15,31032,NULL,'IIS: Bytes Sent per second','clc93snar00007kiypalxeeen',''),('clc93snfq014r7kiy884h4m06',1,'Admin',1672319405,'192.168.64.1',2,15,31033,NULL,'IIS: Bytes Total per second','clc93snar00007kiypalxeeen',''),('clc93snfq014s7kiy2kcrljw1',1,'Admin',1672319405,'192.168.64.1',2,15,31034,NULL,'IIS: Method CGI requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq014t7kiyko5ubbgm',1,'Admin',1672319405,'192.168.64.1',2,15,31035,NULL,'IIS: Connection attempts per second','clc93snar00007kiypalxeeen',''),('clc93snfq014u7kiy5lw4yr1w',1,'Admin',1672319405,'192.168.64.1',2,15,31036,NULL,'IIS: Method COPY requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq014v7kiyxerbq5co',1,'Admin',1672319405,'192.168.64.1',2,15,31030,NULL,'IIS: Current connections','clc93snar00007kiypalxeeen',''),('clc93snfq014w7kiy7cr9n36i',1,'Admin',1672319405,'192.168.64.1',2,15,31037,NULL,'IIS: Method DELETE requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq014x7kiybx5c7yo4',1,'Admin',1672319405,'192.168.64.1',2,15,31039,NULL,'IIS: Method GET requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq014y7kiys8pql86m',1,'Admin',1672319405,'192.168.64.1',2,15,31040,NULL,'IIS: Method HEAD requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq014z7kiyaswvhveb',1,'Admin',1672319405,'192.168.64.1',2,15,31041,NULL,'IIS: Method ISAPI requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq01507kiywytowki3',1,'Admin',1672319405,'192.168.64.1',2,15,31043,NULL,'IIS: Method LOCK requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq01517kiys7i6oh3w',1,'Admin',1672319405,'192.168.64.1',2,15,31042,NULL,'IIS: Locked errors per second','clc93snar00007kiypalxeeen',''),('clc93snfq01527kiy0hv6ukov',1,'Admin',1672319405,'192.168.64.1',2,15,31044,NULL,'IIS: Method MKCOL requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq01537kiysayliu5i',1,'Admin',1672319405,'192.168.64.1',2,15,31045,NULL,'IIS: Method MOVE requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq01547kiyftw9glcq',1,'Admin',1672319405,'192.168.64.1',2,15,31038,NULL,'IIS: NonAnonymous users per second','clc93snar00007kiypalxeeen',''),('clc93snfq01557kiym463jwmo',1,'Admin',1672319405,'192.168.64.1',2,15,31028,NULL,'IIS: Not Found errors per second','clc93snar00007kiypalxeeen',''),('clc93snfq01567kiy0tv07zde',1,'Admin',1672319405,'192.168.64.1',2,15,31019,NULL,'IIS: Method OPTIONS requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq01577kiykqwgmu5f',1,'Admin',1672319405,'192.168.64.1',2,15,31027,NULL,'IIS: Method Total Other requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq01587kiyzgz2q19z',1,'Admin',1672319405,'192.168.64.1',2,15,31012,NULL,'IIS: Method POST requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq01597kiyafanmqin',1,'Admin',1672319405,'192.168.64.1',2,15,31013,NULL,'IIS: Method PROPFIND requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq015a7kiy920r7om3',1,'Admin',1672319405,'192.168.64.1',2,15,31014,NULL,'IIS: Method PROPPATCH requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq015b7kiyggcckqep',1,'Admin',1672319405,'192.168.64.1',2,15,31015,NULL,'IIS: Method PUT requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq015c7kiyzenla7z7',1,'Admin',1672319405,'192.168.64.1',2,15,31016,NULL,'IIS: Method MS-SEARCH requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq015d7kiyr364nijf',1,'Admin',1672319405,'192.168.64.1',2,15,31017,NULL,'IIS: Uptime','clc93snar00007kiypalxeeen',''),('clc93snfq015e7kiyha57oglc',1,'Admin',1672319405,'192.168.64.1',2,15,31011,NULL,'IIS: Total connection attempts','clc93snar00007kiypalxeeen',''),('clc93snfq015f7kiy8d32xjdk',1,'Admin',1672319405,'192.168.64.1',2,15,31018,NULL,'IIS: Method Total requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq015g7kiym1jzr0fq',1,'Admin',1672319405,'192.168.64.1',2,15,31020,NULL,'IIS: Method TRACE requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq015h7kiydl5vwp5u',1,'Admin',1672319405,'192.168.64.1',2,15,31021,NULL,'IIS: Method TRACE requests per second','clc93snar00007kiypalxeeen',''),('clc93snfq015i7kiy6q5gd6s6',1,'Admin',1672319405,'192.168.64.1',2,15,31026,NULL,'IIS: World Wide Web Publishing Service (W3SVC) state','clc93snar00007kiypalxeeen',''),('clc93snfq015j7kiyjved45a9',1,'Admin',1672319405,'192.168.64.1',2,15,31046,NULL,'IIS: Windows Process Activation Service (WAS) state','clc93snar00007kiypalxeeen',''),('clc93snfq015k7kiyeqw0j8vs',1,'Admin',1672319405,'192.168.64.1',2,15,43078,NULL,'IIS: Active agent availability','clc93snar00007kiypalxeeen',''),('clc93snfq015l7kiyjlirle21',1,'Admin',1672319405,'192.168.64.1',2,15,31820,NULL,'Interrupts per second','clc93snar00007kiypalxeeen',''),('clc93snfq015m7kiy7oepust3',1,'Admin',1672319405,'192.168.64.1',2,15,31834,NULL,'Load average (15m avg)','clc93snar00007kiypalxeeen',''),('clc93snfq015n7kiy13fyuwbo',1,'Admin',1672319405,'192.168.64.1',2,15,31829,NULL,'Load average (1m avg)','clc93snar00007kiypalxeeen',''),('clc93snfq015o7kiyzuftomsb',1,'Admin',1672319405,'192.168.64.1',2,15,31833,NULL,'Load average (5m avg)','clc93snar00007kiypalxeeen',''),('clc93snfq015p7kiyki5rvufu',1,'Admin',1672319405,'192.168.64.1',2,15,31832,NULL,'Number of CPUs','clc93snar00007kiypalxeeen',''),('clc93snfq015q7kiyrm1ycikn',1,'Admin',1672319405,'192.168.64.1',2,15,31831,NULL,'Context switches per second','clc93snar00007kiypalxeeen',''),('clc93snfq015r7kiycd2k81rf',1,'Admin',1672319405,'192.168.64.1',2,15,31892,NULL,'CPU utilization','clc93snar00007kiypalxeeen',''),('clc93snfq015s7kiyyf9helxx',1,'Admin',1672319405,'192.168.64.1',2,15,31828,NULL,'CPU guest time','clc93snar00007kiypalxeeen',''),('clc93snfq015t7kiy7wek006k',1,'Admin',1672319405,'192.168.64.1',2,15,31830,NULL,'CPU guest nice time','clc93snar00007kiypalxeeen',''),('clc93snfq015u7kiyq1xe5yax',1,'Admin',1672319405,'192.168.64.1',2,15,31821,NULL,'CPU idle time','clc93snar00007kiypalxeeen',''),('clc93snfq015v7kiy7fbaf4zo',1,'Admin',1672319405,'192.168.64.1',2,15,31827,NULL,'CPU interrupt time','clc93snar00007kiypalxeeen',''),('clc93snfq015w7kiy1oh51hm3',1,'Admin',1672319405,'192.168.64.1',2,15,31826,NULL,'CPU iowait time','clc93snar00007kiypalxeeen',''),('clc93snfq015x7kiy6yrzh888',1,'Admin',1672319405,'192.168.64.1',2,15,31825,NULL,'CPU nice time','clc93snar00007kiypalxeeen',''),('clc93snfq015y7kiyd0m8rkoi',1,'Admin',1672319405,'192.168.64.1',2,15,31824,NULL,'CPU softirq time','clc93snar00007kiypalxeeen',''),('clc93snfq015z7kiyfds64z08',1,'Admin',1672319405,'192.168.64.1',2,15,31823,NULL,'CPU steal time','clc93snar00007kiypalxeeen',''),('clc93snfq01607kiyveb3vf6j',1,'Admin',1672319405,'192.168.64.1',2,15,31822,NULL,'CPU system time','clc93snar00007kiypalxeeen',''),('clc93snfq01617kiy8c5bbusr',1,'Admin',1672319405,'192.168.64.1',2,15,31835,NULL,'CPU user time','clc93snar00007kiypalxeeen',''),('clc93snfq01627kiycudna2he',1,'Admin',1672319405,'192.168.64.1',2,15,44374,NULL,'Get filesystems','clc93snar00007kiypalxeeen',''),('clc93snfq01637kiyrilnqzu5',1,'Admin',1672319405,'192.168.64.1',2,15,42319,NULL,'Host name of Zabbix agent running','clc93snar00007kiypalxeeen',''),('clc93snfq01647kiy7cbuo02v',1,'Admin',1672319405,'192.168.64.1',2,15,42340,NULL,'Zabbix agent ping','clc93snar00007kiypalxeeen',''),('clc93snfq01657kiy2jmjwksq',1,'Admin',1672319405,'192.168.64.1',2,15,42342,NULL,'Version of Zabbix agent running','clc93snar00007kiypalxeeen',''),('clc93snfq01667kiy58vf5grt',1,'Admin',1672319405,'192.168.64.1',2,15,42343,NULL,'Maximum number of open file descriptors','clc93snar00007kiypalxeeen',''),('clc93snfq01677kiyl8cswxuw',1,'Admin',1672319405,'192.168.64.1',2,15,42344,NULL,'Maximum number of processes','clc93snar00007kiypalxeeen',''),('clc93snfq01687kiyabe8puov',1,'Admin',1672319405,'192.168.64.1',2,15,42345,NULL,'Number of processes','clc93snar00007kiypalxeeen',''),('clc93snfq01697kiy7l8zxvxm',1,'Admin',1672319405,'192.168.64.1',2,15,42346,NULL,'Number of running processes','clc93snar00007kiypalxeeen',''),('clc93snfq016a7kiyt8qy0chx',1,'Admin',1672319405,'192.168.64.1',2,15,42347,NULL,'System boot time','clc93snar00007kiypalxeeen',''),('clc93snfq016b7kiyjr95wtq0',1,'Admin',1672319405,'192.168.64.1',2,15,42348,NULL,'Interrupts per second','clc93snar00007kiypalxeeen',''),('clc93snfq016c7kiyfksib56g',1,'Admin',1672319405,'192.168.64.1',2,15,42351,NULL,'Load average (15m avg)','clc93snar00007kiypalxeeen',''),('clc93snfq016d7kiyxy67sqhp',1,'Admin',1672319405,'192.168.64.1',2,15,42341,NULL,'Load average (1m avg)','clc93snar00007kiypalxeeen',''),('clc93snfq016e7kiydp9mcl2t',1,'Admin',1672319405,'192.168.64.1',2,15,42349,NULL,'Load average (5m avg)','clc93snar00007kiypalxeeen',''),('clc93snfq016f7kiyegioduej',1,'Admin',1672319405,'192.168.64.1',2,15,42352,NULL,'Number of CPUs','clc93snar00007kiypalxeeen',''),('clc93snfq016g7kiymzz87oxq',1,'Admin',1672319405,'192.168.64.1',2,15,42353,NULL,'Context switches per second','clc93snar00007kiypalxeeen',''),('clc93snfq016h7kiyt8d2uqj2',1,'Admin',1672319405,'192.168.64.1',2,15,42358,NULL,'CPU utilization','clc93snar00007kiypalxeeen',''),('clc93snfq016i7kiyzlj6tqnb',1,'Admin',1672319405,'192.168.64.1',2,15,42354,NULL,'CPU guest time','clc93snar00007kiypalxeeen',''),('clc93snfq016j7kiystyo3mos',1,'Admin',1672319405,'192.168.64.1',2,15,42355,NULL,'CPU guest nice time','clc93snar00007kiypalxeeen',''),('clc93snfq016k7kiy31wg37qp',1,'Admin',1672319405,'192.168.64.1',2,15,42356,NULL,'CPU idle time','clc93snar00007kiypalxeeen',''),('clc93snfq016l7kiya5c5nvla',1,'Admin',1672319405,'192.168.64.1',2,15,42357,NULL,'CPU interrupt time','clc93snar00007kiypalxeeen',''),('clc93snfq016m7kiytkoi17xh',1,'Admin',1672319405,'192.168.64.1',2,15,42350,NULL,'CPU iowait time','clc93snar00007kiypalxeeen',''),('clc93snfq016n7kiyfy7uqy9p',1,'Admin',1672319405,'192.168.64.1',2,15,42339,NULL,'CPU nice time','clc93snar00007kiypalxeeen',''),('clc93snfq016o7kiy4d8y5eev',1,'Admin',1672319405,'192.168.64.1',2,15,42329,NULL,'CPU softirq time','clc93snar00007kiypalxeeen',''),('clc93snfq016p7kiyy0z7lbob',1,'Admin',1672319405,'192.168.64.1',2,15,42338,NULL,'CPU steal time','clc93snar00007kiypalxeeen',''),('clc93snfq016q7kiyk0swp3ma',1,'Admin',1672319405,'192.168.64.1',2,15,42321,NULL,'CPU system time','clc93snar00007kiypalxeeen',''),('clc93snfq016r7kiyioerqtkh',1,'Admin',1672319405,'192.168.64.1',2,15,42322,NULL,'CPU user time','clc93snar00007kiypalxeeen',''),('clc93snfq016s7kiyja9ee9wn',1,'Admin',1672319405,'192.168.64.1',2,15,42323,NULL,'System name','clc93snar00007kiypalxeeen',''),('clc93snfq016t7kiypx7ald7m',1,'Admin',1672319405,'192.168.64.1',2,15,42324,NULL,'System local time','clc93snar00007kiypalxeeen',''),('clc93snfq016u7kiypix0htym',1,'Admin',1672319405,'192.168.64.1',2,15,42325,NULL,'Operating system architecture','clc93snar00007kiypalxeeen',''),('clc93snfq016v7kiypy7svq75',1,'Admin',1672319405,'192.168.64.1',2,15,42326,NULL,'Operating system','clc93snar00007kiypalxeeen',''),('clc93snfq016w7kiya1qdakyc',1,'Admin',1672319405,'192.168.64.1',2,15,42327,NULL,'Software installed','clc93snar00007kiypalxeeen',''),('clc93snfq016x7kiywo2jzswi',1,'Admin',1672319405,'192.168.64.1',2,15,42320,NULL,'Free swap space','clc93snar00007kiypalxeeen',''),('clc93snfq016y7kiym63o8f1v',1,'Admin',1672319405,'192.168.64.1',2,15,42328,NULL,'Free swap space in %','clc93snar00007kiypalxeeen',''),('clc93snfq016z7kiytpw12zka',1,'Admin',1672319405,'192.168.64.1',2,15,42330,NULL,'Total swap space','clc93snar00007kiypalxeeen',''),('clc93snfq01707kiyt78vgi18',1,'Admin',1672319405,'192.168.64.1',2,15,42331,NULL,'System description','clc93snar00007kiypalxeeen',''),('clc93snfq01717kiyt7zq7ti7',1,'Admin',1672319405,'192.168.64.1',2,15,42332,NULL,'System uptime','clc93snar00007kiypalxeeen',''),('clc93snfq01727kiyz63lf1o3',1,'Admin',1672319405,'192.168.64.1',2,15,42333,NULL,'Number of logged in users','clc93snar00007kiypalxeeen',''),('clc93snfq01737kiyfnahulit',1,'Admin',1672319405,'192.168.64.1',2,15,42334,NULL,'Checksum of /etc/passwd','clc93snar00007kiypalxeeen',''),('clc93snfq01747kiyggjgiimt',1,'Admin',1672319405,'192.168.64.1',2,15,44442,NULL,'Get filesystems','clc93snar00007kiypalxeeen',''),('clc93snfq01757kiyeedcwd2q',1,'Admin',1672319405,'192.168.64.1',2,15,42335,NULL,'Available memory','clc93snar00007kiypalxeeen',''),('clc93snfq01767kiyo7d3rv27',1,'Admin',1672319405,'192.168.64.1',2,15,42336,NULL,'Available memory in %','clc93snar00007kiypalxeeen',''),('clc93snfq01777kiy9o6qj1i6',1,'Admin',1672319405,'192.168.64.1',2,15,42337,NULL,'Total memory','clc93snar00007kiypalxeeen',''),('clc93snfq01787kiyzh9g69ml',1,'Admin',1672319405,'192.168.64.1',2,15,42359,NULL,'Memory utilization','clc93snar00007kiypalxeeen',''),('clc93snfq01797kiy861y67xs',1,'Admin',1672319405,'192.168.64.1',2,15,43079,NULL,'Active agent availability','clc93snar00007kiypalxeeen',''),('clc93snfq017a7kiy4ze5q5nu',1,'Admin',1672319405,'192.168.64.1',2,15,33391,NULL,'Jenkins: Get computer info','clc93snar00007kiypalxeeen',''),('clc93snfq017b7kiydu9esr43',1,'Admin',1672319405,'192.168.64.1',2,15,33447,NULL,'Jenkins: File descriptor ratio','clc93snar00007kiypalxeeen',''),('clc93snfq017c7kiy0zf7smkq',1,'Admin',1672319405,'192.168.64.1',2,15,33444,NULL,'Jenkins: Disk space check','clc93snar00007kiypalxeeen',''),('clc93snfq017d7kiy3lvh68gy',1,'Admin',1672319405,'192.168.64.1',2,15,33443,NULL,'Jenkins: Disk space check message','clc93snar00007kiypalxeeen',''),('clc93snfq017e7kiygxnt3u4u',1,'Admin',1672319405,'192.168.64.1',2,15,33442,NULL,'Jenkins: Executors count','clc93snar00007kiypalxeeen',''),('clc93snfq017f7kiytubx25j6',1,'Admin',1672319405,'192.168.64.1',2,15,33441,NULL,'Jenkins: Executors free','clc93snar00007kiypalxeeen',''),('clc93snfq017g7kiys3uo30nr',1,'Admin',1672319405,'192.168.64.1',2,15,33440,NULL,'Jenkins: Executors in use','clc93snar00007kiypalxeeen',''),('clc93snfq017h7kiy9xg0flk2',1,'Admin',1672319405,'192.168.64.1',2,15,33394,NULL,'Jenkins: Get service metrics','clc93snar00007kiypalxeeen',''),('clc93snfq017i7kiyvtz76uav',1,'Admin',1672319405,'192.168.64.1',2,15,33395,NULL,'Jenkins: Get healthcheck','clc93snar00007kiypalxeeen',''),('clc93snfq017j7kiyf8tlae9q',1,'Admin',1672319405,'192.168.64.1',2,15,33439,NULL,'Jenkins: HTTP active requests, rate','clc93snar00007kiypalxeeen',''),('clc93snfq017k7kiy2lkyjxcq',1,'Admin',1672319405,'192.168.64.1',2,15,33437,NULL,'Jenkins: HTTP response 400, rate','clc93snar00007kiypalxeeen',''),('clc93snfq017l7kiyrtwpj8sz',1,'Admin',1672319405,'192.168.64.1',2,15,33430,NULL,'Jenkins: HTTP response 201, rate','clc93snar00007kiypalxeeen',''),('clc93snfq017m7kiyri2zrxig',1,'Admin',1672319405,'192.168.64.1',2,15,33436,NULL,'Jenkins: HTTP response 403, rate','clc93snar00007kiypalxeeen',''),('clc93snfq017n7kiy8ci6kj0m',1,'Admin',1672319405,'192.168.64.1',2,15,33433,NULL,'Jenkins: HTTP response 204, rate','clc93snar00007kiypalxeeen',''),('clc93snfq017o7kiya584wex5',1,'Admin',1672319405,'192.168.64.1',2,15,33435,NULL,'Jenkins: HTTP response 404, rate','clc93snar00007kiypalxeeen',''),('clc93snfq017p7kiymd376y98',1,'Admin',1672319405,'192.168.64.1',2,15,33434,NULL,'Jenkins: HTTP response 304, rate','clc93snar00007kiypalxeeen',''),('clc93snfq017q7kiysmj9oepm',1,'Admin',1672319405,'192.168.64.1',2,15,33432,NULL,'Jenkins: HTTP response 200, rate','clc93snar00007kiypalxeeen',''),('clc93snfq017r7kiy1bae04di',1,'Admin',1672319405,'192.168.64.1',2,15,33431,NULL,'Jenkins: HTTP response other, rate','clc93snar00007kiypalxeeen',''),('clc93snfq017s7kiy1hvl6w4m',1,'Admin',1672319405,'192.168.64.1',2,15,33445,NULL,'Jenkins: HTTP requests, rate','clc93snar00007kiypalxeeen',''),('clc93snfq017t7kiyg3atrvps',1,'Admin',1672319405,'192.168.64.1',2,15,33438,NULL,'Jenkins: HTTP requests, median','clc93snar00007kiypalxeeen',''),('clc93snfq017u7kiy6rnorlxa',1,'Admin',1672319405,'192.168.64.1',2,15,33446,NULL,'Jenkins: HTTP requests, p95','clc93snar00007kiypalxeeen',''),('clc93snfq017v7kiyluvai7f5',1,'Admin',1672319405,'192.168.64.1',2,15,33456,NULL,'Jenkins: HTTP response 500, rate','clc93snar00007kiypalxeeen',''),('clc93snfq017w7kiyls1syix3',1,'Admin',1672319405,'192.168.64.1',2,15,33463,NULL,'Jenkins: HTTP response 503, rate','clc93snar00007kiypalxeeen',''),('clc93snfq017x7kiy2fohv9fx',1,'Admin',1672319405,'192.168.64.1',2,15,33462,NULL,'Jenkins: Job blocked duration, median','clc93snar00007kiypalxeeen',''),('clc93snfq017y7kiy3qa1ks4s',1,'Admin',1672319405,'192.168.64.1',2,15,33461,NULL,'Jenkins: Job blocked duration, p95','clc93snar00007kiypalxeeen',''),('clc93snfq017z7kiyil8deplq',1,'Admin',1672319405,'192.168.64.1',2,15,33460,NULL,'Jenkins: Job blocked, m1 rate','clc93snar00007kiypalxeeen',''),('clc93snfq01807kiygc0xruov',1,'Admin',1672319405,'192.168.64.1',2,15,33459,NULL,'Jenkins: Job blocked, m5 rate','clc93snar00007kiypalxeeen',''),('clc93snfq01817kiyqhef2tkt',1,'Admin',1672319405,'192.168.64.1',2,15,33458,NULL,'Jenkins: Job buildable duration, median','clc93snar00007kiypalxeeen',''),('clc93snfq01827kiyu9ahmc0s',1,'Admin',1672319405,'192.168.64.1',2,15,33457,NULL,'Jenkins: Job buildable duration, p95','clc93snar00007kiypalxeeen',''),('clc93snfq01837kiyjr6o1zws',1,'Admin',1672319405,'192.168.64.1',2,15,33455,NULL,'Jenkins: Job buildable, m1 rate','clc93snar00007kiypalxeeen',''),('clc93snfq01847kiyvry4un6n',1,'Admin',1672319405,'192.168.64.1',2,15,33448,NULL,'Jenkins: Job buildable, m5 rate','clc93snar00007kiypalxeeen',''),('clc93snfq01857kiyxi7sgkem',1,'Admin',1672319405,'192.168.64.1',2,15,33454,NULL,'Jenkins: Job building duration, median','clc93snar00007kiypalxeeen',''),('clc93snfq01867kiy3ryvq7wg',1,'Admin',1672319405,'192.168.64.1',2,15,33453,NULL,'Jenkins: Job building duration, p95','clc93snar00007kiypalxeeen',''),('clc93snfq01877kiysadlynsk',1,'Admin',1672319405,'192.168.64.1',2,15,33452,NULL,'Jenkins: Job building, m1 rate','clc93snar00007kiypalxeeen',''),('clc93snfq01887kiypc0kguo5',1,'Admin',1672319405,'192.168.64.1',2,15,33451,NULL,'Jenkins: Job building, m5 rate','clc93snar00007kiypalxeeen',''),('clc93snfq01897kiyty54ytxs',1,'Admin',1672319405,'192.168.64.1',2,15,33450,NULL,'Jenkins: Jobs count','clc93snar00007kiypalxeeen',''),('clc93snfq018a7kiys0ipot50',1,'Admin',1672319405,'192.168.64.1',2,15,33449,NULL,'Jenkins: Job queuing duration, median','clc93snar00007kiypalxeeen',''),('clc93snfq018b7kiy83hay89v',1,'Admin',1672319405,'192.168.64.1',2,15,33428,NULL,'Jenkins: Job queuing duration, p95','clc93snar00007kiypalxeeen',''),('clc93snfq018c7kiyyw5lt9go',1,'Admin',1672319405,'192.168.64.1',2,15,33429,NULL,'Jenkins: Job queuing, m1 rate','clc93snar00007kiypalxeeen',''),('clc93snfq018d7kiytq204g2f',1,'Admin',1672319405,'192.168.64.1',2,15,33420,NULL,'Jenkins: Job queuing, m5 rate','clc93snar00007kiypalxeeen',''),('clc93snfq018e7kiyaqjs9suo',1,'Admin',1672319405,'192.168.64.1',2,15,33427,NULL,'Jenkins: Job scheduled, m1 rate','clc93snar00007kiypalxeeen',''),('clc93snfq018f7kiyyz0y5oqo',1,'Admin',1672319405,'192.168.64.1',2,15,33408,NULL,'Jenkins: Jobs scheduled, m5 rate','clc93snar00007kiypalxeeen',''),('clc93snfq018g7kiybovsbw3l',1,'Admin',1672319405,'192.168.64.1',2,15,33407,NULL,'Jenkins: Job total duration, median','clc93snar00007kiypalxeeen',''),('clc93snfq018h7kiymwrw0y0a',1,'Admin',1672319405,'192.168.64.1',2,15,33406,NULL,'Jenkins: Job total duration, p95','clc93snar00007kiypalxeeen',''),('clc93snfq018i7kiyosy015pp',1,'Admin',1672319405,'192.168.64.1',2,15,33405,NULL,'Jenkins: Job total, m1 rate','clc93snar00007kiypalxeeen',''),('clc93snfq018j7kiygb2rvtm5',1,'Admin',1672319405,'192.168.64.1',2,15,33404,NULL,'Jenkins: Job total, m5 rate','clc93snar00007kiypalxeeen',''),('clc93snfq018k7kiy1xceepz4',1,'Admin',1672319405,'192.168.64.1',2,15,33401,NULL,'Jenkins: Job waiting duration, median','clc93snar00007kiypalxeeen',''),('clc93snfq018l7kiybjb5032f',1,'Admin',1672319405,'192.168.64.1',2,15,33402,NULL,'Jenkins: Job waiting duration, p95','clc93snar00007kiypalxeeen',''),('clc93snfq018m7kiyr0fqj1aj',1,'Admin',1672319405,'192.168.64.1',2,15,33396,NULL,'Jenkins: Job waiting, m1 rate','clc93snar00007kiypalxeeen',''),('clc93snfq018n7kiyhuxv5043',1,'Admin',1672319405,'192.168.64.1',2,15,33400,NULL,'Jenkins: Job waiting, m5 rate','clc93snar00007kiypalxeeen',''),('clc93snfq018o7kiyikyx16bu',1,'Admin',1672319405,'192.168.64.1',2,15,33393,NULL,'Jenkins: Get jobs info','clc93snar00007kiypalxeeen',''),('clc93snfq018p7kiyeyjz4neq',1,'Admin',1672319405,'192.168.64.1',2,15,33399,NULL,'Jenkins: Nodes count','clc93snar00007kiypalxeeen',''),('clc93snfq018q7kiyak6t3ct7',1,'Admin',1672319405,'192.168.64.1',2,15,33398,NULL,'Jenkins: Nodes offline','clc93snar00007kiypalxeeen',''),('clc93snfq018r7kiy6bsvc3kd',1,'Admin',1672319405,'192.168.64.1',2,15,33397,NULL,'Jenkins: Nodes online','clc93snar00007kiypalxeeen',''),('clc93snfq018s7kiy8ytxm19p',1,'Admin',1672319405,'192.168.64.1',2,15,33392,NULL,'Jenkins: Service ping','clc93snar00007kiypalxeeen',''),('clc93snfq018t7kiyrx98egjy',1,'Admin',1672319405,'192.168.64.1',2,15,33409,NULL,'Jenkins: Plugins check','clc93snar00007kiypalxeeen',''),('clc93snfq018u7kiyf1ltd3qp',1,'Admin',1672319405,'192.168.64.1',2,15,33403,NULL,'Jenkins: Plugins active','clc93snar00007kiypalxeeen',''),('clc93snfq018v7kiytn9aqoe2',1,'Admin',1672319405,'192.168.64.1',2,15,33411,NULL,'Jenkins: Plugins failed','clc93snar00007kiypalxeeen',''),('clc93snfq018w7kiywj0gbf37',1,'Admin',1672319405,'192.168.64.1',2,15,33410,NULL,'Jenkins: Plugins inactive','clc93snar00007kiypalxeeen',''),('clc93snfq018x7kiys3nt0j16',1,'Admin',1672319405,'192.168.64.1',2,15,33426,NULL,'Jenkins: Plugins check message','clc93snar00007kiypalxeeen',''),('clc93snfq018y7kiya58sdv7m',1,'Admin',1672319405,'192.168.64.1',2,15,33425,NULL,'Jenkins: Plugins with update','clc93snar00007kiypalxeeen',''),('clc93snfq018z7kiyj79xv432',1,'Admin',1672319405,'192.168.64.1',2,15,33424,NULL,'Jenkins: Projects count','clc93snar00007kiypalxeeen',''),('clc93snfq01907kiyk8d6hj2d',1,'Admin',1672319405,'192.168.64.1',2,15,33423,NULL,'Jenkins: Build queue, blocked','clc93snar00007kiypalxeeen',''),('clc93snfq01917kiy9szvke3z',1,'Admin',1672319405,'192.168.64.1',2,15,33422,NULL,'Jenkins: Build queue, buildable','clc93snar00007kiypalxeeen',''),('clc93snfq01927kiywl23fcq0',1,'Admin',1672319405,'192.168.64.1',2,15,33421,NULL,'Jenkins: Build queue, pending','clc93snar00007kiypalxeeen',''),('clc93snfq01937kiy0elblt3b',1,'Admin',1672319405,'192.168.64.1',2,15,33419,NULL,'Jenkins: Build queue, size','clc93snar00007kiypalxeeen',''),('clc93snfq01947kiy6hmkws6g',1,'Admin',1672319405,'192.168.64.1',2,15,33412,NULL,'Jenkins: Build queue, stuck','clc93snar00007kiypalxeeen',''),('clc93snfq01957kiyk4axpy1j',1,'Admin',1672319405,'192.168.64.1',2,15,33418,NULL,'Jenkins: CPU Load','clc93snar00007kiypalxeeen',''),('clc93snfq01967kiyb88p5u3v',1,'Admin',1672319405,'192.168.64.1',2,15,33417,NULL,'Jenkins: Uptime','clc93snar00007kiypalxeeen',''),('clc93snfq01977kiyuwr3bc8a',1,'Admin',1672319405,'192.168.64.1',2,15,33416,NULL,'Jenkins: Temporary space check','clc93snar00007kiypalxeeen',''),('clc93snfq01987kiyhuhj4lmc',1,'Admin',1672319405,'192.168.64.1',2,15,33415,NULL,'Jenkins: Temporary space check message','clc93snar00007kiypalxeeen',''),('clc93snfq01997kiycfsbntvj',1,'Admin',1672319405,'192.168.64.1',2,15,33414,NULL,'Jenkins: Thread deadlock check','clc93snar00007kiypalxeeen',''),('clc93snfq019a7kiyvq0jzv1x',1,'Admin',1672319405,'192.168.64.1',2,15,33413,NULL,'Jenkins: Thread deadlock check message','clc93snar00007kiypalxeeen',''),('clc93snfq019b7kiybn9vujjf',1,'Admin',1672319405,'192.168.64.1',2,15,33464,NULL,'Jenkins: Version','clc93snar00007kiypalxeeen',''),('clc93snfq019c7kiyec75omwm',1,'Admin',1672319405,'192.168.64.1',2,15,33691,NULL,'OceanStor 5300 V5: Status','clc93snar00007kiypalxeeen',''),('clc93snfq019d7kiye2tn8vsy',1,'Admin',1672319405,'192.168.64.1',2,15,33692,NULL,'OceanStor 5300 V5: Capacity total','clc93snar00007kiypalxeeen',''),('clc93snfq019e7kiycwffdnz2',1,'Admin',1672319405,'192.168.64.1',2,15,33693,NULL,'OceanStor 5300 V5: Capacity used','clc93snar00007kiypalxeeen',''),('clc93snfq019f7kiyl4kfwg6v',1,'Admin',1672319405,'192.168.64.1',2,15,33694,NULL,'OceanStor 5300 V5: Version','clc93snar00007kiypalxeeen',''),('clc93snfq019g7kiypekcufav',1,'Admin',1672319405,'192.168.64.1',2,15,42598,NULL,'ICMP ping','clc93snar00007kiypalxeeen',''),('clc93snfq019h7kiyniruy6o9',1,'Admin',1672319405,'192.168.64.1',2,15,42599,NULL,'ICMP loss','clc93snar00007kiypalxeeen',''),('clc93snfq019i7kiyfvtc2iz8',1,'Admin',1672319405,'192.168.64.1',2,15,42600,NULL,'ICMP response time','clc93snar00007kiypalxeeen',''),('clc93snfq019j7kiytgfd7hfw',1,'Admin',1672319405,'192.168.64.1',2,15,42601,NULL,'SNMP traps (fallback)','clc93snar00007kiypalxeeen',''),('clc93snfq019k7kiyk4flow9s',1,'Admin',1672319405,'192.168.64.1',2,15,42602,NULL,'System contact details','clc93snar00007kiypalxeeen',''),('clc93snfq019l7kiyym3gj41b',1,'Admin',1672319405,'192.168.64.1',2,15,42603,NULL,'System description','clc93snar00007kiypalxeeen',''),('clc93snfq019m7kiy01qjbn0o',1,'Admin',1672319405,'192.168.64.1',2,15,43887,NULL,'Uptime (hardware)','clc93snar00007kiypalxeeen',''),('clc93snfq019n7kiy2rtyfbyr',1,'Admin',1672319405,'192.168.64.1',2,15,42604,NULL,'System location','clc93snar00007kiypalxeeen',''),('clc93snfq019o7kiybswd2cwj',1,'Admin',1672319405,'192.168.64.1',2,15,42605,NULL,'System name','clc93snar00007kiypalxeeen',''),('clc93snfq019p7kiy5btawcyz',1,'Admin',1672319405,'192.168.64.1',2,15,42607,NULL,'Uptime (network)','clc93snar00007kiypalxeeen',''),('clc93snfq019q7kiyqrsvphga',1,'Admin',1672319405,'192.168.64.1',2,15,42606,NULL,'System object ID','clc93snar00007kiypalxeeen',''),('clc93snfq019r7kiy48irt6vp',1,'Admin',1672319405,'192.168.64.1',2,15,42608,NULL,'SNMP agent availability','clc93snar00007kiypalxeeen',''),('clc93snfq019s7kiy8gguz2eo',1,'Admin',1672319405,'192.168.64.1',2,15,36541,NULL,'System contact details','clc93snar00007kiypalxeeen',''),('clc93snfq019t7kiyq3j0em0x',1,'Admin',1672319405,'192.168.64.1',2,15,36542,NULL,'System description','clc93snar00007kiypalxeeen',''),('clc93snfq019u7kiyjp977mbf',1,'Admin',1672319405,'192.168.64.1',2,15,36543,NULL,'Hardware model name','clc93snar00007kiypalxeeen',''),('clc93snfq019v7kiyt6yyd3wi',1,'Admin',1672319405,'192.168.64.1',2,15,36544,NULL,'Hardware serial number','clc93snar00007kiypalxeeen',''),('clc93snfq019w7kiyc9k4jfat',1,'Admin',1672319405,'192.168.64.1',2,15,43896,NULL,'Uptime (hardware)','clc93snar00007kiypalxeeen',''),('clc93snfq019x7kiy6ttcs2f2',1,'Admin',1672319405,'192.168.64.1',2,15,36545,NULL,'System location','clc93snar00007kiypalxeeen',''),('clc93snfq019y7kiybe2s1pk6',1,'Admin',1672319405,'192.168.64.1',2,15,36546,NULL,'System name','clc93snar00007kiypalxeeen',''),('clc93snfq019z7kiyy5nfppp7',1,'Admin',1672319405,'192.168.64.1',2,15,36550,NULL,'Uptime (network)','clc93snar00007kiypalxeeen',''),('clc93snfq01a07kiypiq8zukc',1,'Admin',1672319405,'192.168.64.1',2,15,36547,NULL,'System object ID','clc93snar00007kiypalxeeen',''),('clc93snfq01a17kiyytccg238',1,'Admin',1672319405,'192.168.64.1',2,15,36548,NULL,'System temperature status','clc93snar00007kiypalxeeen',''),('clc93snfq01a27kiyo1b0d3nl',1,'Admin',1672319405,'192.168.64.1',2,15,36549,NULL,'Overall system health status','clc93snar00007kiypalxeeen',''),('clc93snfq01a37kiyupepzs1l',1,'Admin',1672319405,'192.168.64.1',2,15,36551,NULL,'SNMP traps (fallback)','clc93snar00007kiypalxeeen',''),('clc93snfq01a47kiyuxwco4b1',1,'Admin',1672319405,'192.168.64.1',2,15,36552,NULL,'SNMP agent availability','clc93snar00007kiypalxeeen',''),('clc93snfq01a57kiybhia4lcu',1,'Admin',1672319405,'192.168.64.1',2,15,36598,NULL,'System contact details','clc93snar00007kiypalxeeen',''),('clc93snfq01a67kiyifri4vgd',1,'Admin',1672319405,'192.168.64.1',2,15,36599,NULL,'System description','clc93snar00007kiypalxeeen',''),('clc93snfq01a77kiy57w8qar4',1,'Admin',1672319405,'192.168.64.1',2,15,36600,NULL,'Hardware model name','clc93snar00007kiypalxeeen',''),('clc93snfq01a87kiy6sjinq57',1,'Admin',1672319405,'192.168.64.1',2,15,36601,NULL,'Hardware serial number','clc93snar00007kiypalxeeen',''),('clc93snfq01a97kiykjgi3n8m',1,'Admin',1672319405,'192.168.64.1',2,15,43897,NULL,'Uptime (hardware)','clc93snar00007kiypalxeeen',''),('clc93snfq01aa7kiyustn170h',1,'Admin',1672319405,'192.168.64.1',2,15,36602,NULL,'System location','clc93snar00007kiypalxeeen',''),('clc93snfq01ab7kiybw6znm4h',1,'Admin',1672319405,'192.168.64.1',2,15,36603,NULL,'System name','clc93snar00007kiypalxeeen',''),('clc93snfq01ac7kiy47g6vrik',1,'Admin',1672319405,'192.168.64.1',2,15,36607,NULL,'Uptime (network)','clc93snar00007kiypalxeeen',''),('clc93snfq01ad7kiyhks8cnu1',1,'Admin',1672319405,'192.168.64.1',2,15,36604,NULL,'System object ID','clc93snar00007kiypalxeeen',''),('clc93snfq01ae7kiyhqbxvng4',1,'Admin',1672319405,'192.168.64.1',2,15,36605,NULL,'System temperature status','clc93snar00007kiypalxeeen',''),('clc93snfq01af7kiy8o6nt61i',1,'Admin',1672319405,'192.168.64.1',2,15,36606,NULL,'Overall system health status','clc93snar00007kiypalxeeen',''),('clc93snfq01ag7kiyhzcyp6zx',1,'Admin',1672319405,'192.168.64.1',2,15,36608,NULL,'SNMP traps (fallback)','clc93snar00007kiypalxeeen',''),('clc93snfq01ah7kiyf1xm0a9f',1,'Admin',1672319405,'192.168.64.1',2,15,36609,NULL,'SNMP agent availability','clc93snar00007kiypalxeeen',''),('clc93snfq01ai7kiyigx6ffvn',1,'Admin',1672319405,'192.168.64.1',2,15,36655,NULL,'System contact details','clc93snar00007kiypalxeeen',''),('clc93snfq01aj7kiy1jvsc2ln',1,'Admin',1672319405,'192.168.64.1',2,15,36656,NULL,'System description','clc93snar00007kiypalxeeen',''),('clc93snfq01ak7kiy11cgz5oz',1,'Admin',1672319405,'192.168.64.1',2,15,36657,NULL,'Hardware model name','clc93snar00007kiypalxeeen',''),('clc93snfq01al7kiyu0h7x8jg',1,'Admin',1672319405,'192.168.64.1',2,15,36658,NULL,'Hardware serial number','clc93snar00007kiypalxeeen',''),('clc93snfq01am7kiyl1g71xa2',1,'Admin',1672319405,'192.168.64.1',2,15,43898,NULL,'Uptime (hardware)','clc93snar00007kiypalxeeen',''),('clc93snfq01an7kiy1bnxb0lp',1,'Admin',1672319405,'192.168.64.1',2,15,36659,NULL,'System location','clc93snar00007kiypalxeeen',''),('clc93snfq01ao7kiym9skam5p',1,'Admin',1672319405,'192.168.64.1',2,15,36660,NULL,'System name','clc93snar00007kiypalxeeen',''),('clc93snfq01ap7kiyub2p87jt',1,'Admin',1672319405,'192.168.64.1',2,15,36664,NULL,'Uptime (network)','clc93snar00007kiypalxeeen',''),('clc93snfq01aq7kiytlcwt9e0',1,'Admin',1672319405,'192.168.64.1',2,15,36661,NULL,'System object ID','clc93snar00007kiypalxeeen',''),('clc93snfq01ar7kiycs3q276d',1,'Admin',1672319405,'192.168.64.1',2,15,36662,NULL,'System temperature status','clc93snar00007kiypalxeeen',''),('clc93snfq01as7kiy0dfz3uyb',1,'Admin',1672319405,'192.168.64.1',2,15,36663,NULL,'Overall system health status','clc93snar00007kiypalxeeen',''),('clc93snfq01at7kiypylr7ap0',1,'Admin',1672319405,'192.168.64.1',2,15,36665,NULL,'SNMP traps (fallback)','clc93snar00007kiypalxeeen',''),('clc93snfq01au7kiy5fa4sjuh',1,'Admin',1672319405,'192.168.64.1',2,15,36666,NULL,'SNMP agent availability','clc93snar00007kiypalxeeen',''),('clc93snfq01av7kiyy2jlg2c0',1,'Admin',1672319405,'192.168.64.1',2,15,36712,NULL,'System contact details','clc93snar00007kiypalxeeen',''),('clc93snfq01aw7kiy9diy3duo',1,'Admin',1672319405,'192.168.64.1',2,15,36713,NULL,'System description','clc93snar00007kiypalxeeen',''),('clc93snfq01ax7kiyz56gadao',1,'Admin',1672319405,'192.168.64.1',2,15,36714,NULL,'Hardware model name','clc93snar00007kiypalxeeen',''),('clc93snfq01ay7kiy4c07bwrk',1,'Admin',1672319405,'192.168.64.1',2,15,36715,NULL,'Hardware serial number','clc93snar00007kiypalxeeen',''),('clc93snfq01az7kiykw9kvaph',1,'Admin',1672319405,'192.168.64.1',2,15,43899,NULL,'Uptime (hardware)','clc93snar00007kiypalxeeen',''),('clc93snfq01b07kiyf8d6xpal',1,'Admin',1672319405,'192.168.64.1',2,15,36716,NULL,'System location','clc93snar00007kiypalxeeen',''),('clc93snfq01b17kiytwv7orw6',1,'Admin',1672319405,'192.168.64.1',2,15,36717,NULL,'System name','clc93snar00007kiypalxeeen',''),('clc93snfq01b27kiy29yhb38f',1,'Admin',1672319405,'192.168.64.1',2,15,36721,NULL,'Uptime (network)','clc93snar00007kiypalxeeen',''),('clc93snfq01b37kiyrvbmu4yb',1,'Admin',1672319405,'192.168.64.1',2,15,36718,NULL,'System object ID','clc93snar00007kiypalxeeen',''),('clc93snfq01b47kiyryc5g4su',1,'Admin',1672319405,'192.168.64.1',2,15,36719,NULL,'System temperature status','clc93snar00007kiypalxeeen',''),('clc93snfq01b57kiywdu1az3g',1,'Admin',1672319405,'192.168.64.1',2,15,36720,NULL,'Overall system health status','clc93snar00007kiypalxeeen',''),('clc93snfq01b67kiydx6c6jlg',1,'Admin',1672319405,'192.168.64.1',2,15,36722,NULL,'SNMP traps (fallback)','clc93snar00007kiypalxeeen',''),('clc93snfq01b77kiyf16cxzwk',1,'Admin',1672319405,'192.168.64.1',2,15,36723,NULL,'SNMP agent availability','clc93snar00007kiypalxeeen',''),('clc93snfq01b87kiy37535nbs',1,'Admin',1672319405,'192.168.64.1',2,15,36795,NULL,'InfluxDB: Get instance metrics','clc93snar00007kiypalxeeen',''),('clc93snfq01b97kiyl4m0u4ig',1,'Admin',1672319405,'192.168.64.1',2,15,36796,NULL,'InfluxDB: Instance status','clc93snar00007kiypalxeeen',''),('clc93snfq01ba7kiyzfyddf8d',1,'Admin',1672319405,'192.168.64.1',2,15,36811,NULL,'InfluxDB: Boltdb reads, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01bb7kiys1qa9njc',1,'Admin',1672319405,'192.168.64.1',2,15,36810,NULL,'InfluxDB: Boltdb writes, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01bc7kiy7a5eca6a',1,'Admin',1672319405,'192.168.64.1',2,15,36809,NULL,'InfluxDB: Buckets, total','clc93snar00007kiypalxeeen',''),('clc93snfq01bd7kiyoyqf8ycd',1,'Admin',1672319405,'192.168.64.1',2,15,36808,NULL,'InfluxDB: Dashboards, total','clc93snar00007kiypalxeeen',''),('clc93snfq01be7kiyp1oodapm',1,'Admin',1672319405,'192.168.64.1',2,15,36807,NULL,'InfluxDB: Organizations, total','clc93snar00007kiypalxeeen',''),('clc93snfq01bf7kiyl1b8qe0r',1,'Admin',1672319405,'192.168.64.1',2,15,36806,NULL,'InfluxDB: Scrapers, total','clc93snar00007kiypalxeeen',''),('clc93snfq01bg7kiyadtz9l0z',1,'Admin',1672319405,'192.168.64.1',2,15,36805,NULL,'InfluxDB: Task runs failed, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01bh7kiyl1ebbx2p',1,'Admin',1672319405,'192.168.64.1',2,15,36804,NULL,'InfluxDB: Task runs successful, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01bi7kiyr2qo13xm',1,'Admin',1672319405,'192.168.64.1',2,15,36803,NULL,'InfluxDB: Workers currently running','clc93snar00007kiypalxeeen',''),('clc93snfq01bj7kiyiing9uq8',1,'Admin',1672319405,'192.168.64.1',2,15,36802,NULL,'InfluxDB: Workers busy, pct','clc93snar00007kiypalxeeen',''),('clc93snfq01bk7kiyoyvwk7fi',1,'Admin',1672319405,'192.168.64.1',2,15,36800,NULL,'InfluxDB: Telegraf plugins, total','clc93snar00007kiypalxeeen',''),('clc93snfq01bl7kiyesv3nnib',1,'Admin',1672319405,'192.168.64.1',2,15,36801,NULL,'InfluxDB: Telegrafs, total','clc93snar00007kiypalxeeen',''),('clc93snfq01bm7kiymrvti3bo',1,'Admin',1672319405,'192.168.64.1',2,15,36799,NULL,'InfluxDB: Tokens, total','clc93snar00007kiypalxeeen',''),('clc93snfq01bn7kiysxqcuje9',1,'Admin',1672319405,'192.168.64.1',2,15,36798,NULL,'InfluxDB: Uptime','clc93snar00007kiypalxeeen',''),('clc93snfq01bo7kiyuvcy0jx0',1,'Admin',1672319405,'192.168.64.1',2,15,36797,NULL,'InfluxDB: Users, total','clc93snar00007kiypalxeeen',''),('clc93snfq01bp7kiyeh3bn8fw',1,'Admin',1672319405,'192.168.64.1',2,15,36812,NULL,'InfluxDB: Version','clc93snar00007kiypalxeeen',''),('clc93snfq01bq7kiyl1bpvzrx',1,'Admin',1672319405,'192.168.64.1',2,15,39829,NULL,'Kubernetes API: Request terminations, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01br7kiy6o86mhtg',1,'Admin',1672319405,'192.168.64.1',2,15,39841,NULL,'Kubernetes API: API server requests: 0','clc93snar00007kiypalxeeen',''),('clc93snfq01bs7kiybkyskw5m',1,'Admin',1672319405,'192.168.64.1',2,15,39849,NULL,'Kubernetes API: API server requests: 2xx, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01bt7kiy510e7oyn',1,'Admin',1672319405,'192.168.64.1',2,15,39848,NULL,'Kubernetes API: API server requests: 3xx, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01bu7kiyhdc2mm8b',1,'Admin',1672319405,'192.168.64.1',2,15,39847,NULL,'Kubernetes API: API server requests: 4xx, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01bv7kiyc3qimq6j',1,'Admin',1672319405,'192.168.64.1',2,15,39846,NULL,'Kubernetes API: API server requests: 5xx, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01bw7kiyl307tyri',1,'Admin',1672319405,'192.168.64.1',2,15,39845,NULL,'Kubernetes API: TLS handshake errors, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01bx7kiyl3c06b9r',1,'Admin',1672319405,'192.168.64.1',2,15,39844,NULL,'Kubernetes API: Audit events, total','clc93snar00007kiypalxeeen',''),('clc93snfq01by7kiyd0pjksf1',1,'Admin',1672319405,'192.168.64.1',2,15,39843,NULL,'Kubernetes API: CPU','clc93snar00007kiypalxeeen',''),('clc93snfq01bz7kiy1c3olcy3',1,'Admin',1672319405,'192.168.64.1',2,15,39827,NULL,'Kubernetes API: Get API instance metrics','clc93snar00007kiypalxeeen',''),('clc93snfq01c07kiygnvxoh0g',1,'Admin',1672319405,'192.168.64.1',2,15,39842,NULL,'Kubernetes API: Goroutines','clc93snar00007kiypalxeeen',''),('clc93snfq01c17kiyar1ltx4y',1,'Admin',1672319405,'192.168.64.1',2,15,39839,NULL,'Kubernetes API: Go threads','clc93snar00007kiypalxeeen',''),('clc93snfq01c27kiytv4hr3a9',1,'Admin',1672319405,'192.168.64.1',2,15,39840,NULL,'Kubernetes API: gRPCs messages ressived, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01c37kiy5gsj1b0i',1,'Admin',1672319405,'192.168.64.1',2,15,39830,NULL,'Kubernetes API: gRPCs messages sent, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01c47kiy3efk32c3',1,'Admin',1672319405,'192.168.64.1',2,15,39838,NULL,'Kubernetes API: gRPCs client started, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01c57kiypa8bzj4s',1,'Admin',1672319405,'192.168.64.1',2,15,39837,NULL,'Kubernetes API: Fds max','clc93snar00007kiypalxeeen',''),('clc93snfq01c67kiyf8jaxzyl',1,'Admin',1672319405,'192.168.64.1',2,15,39836,NULL,'Kubernetes API: Fds open','clc93snar00007kiypalxeeen',''),('clc93snfq01c77kiywmgcjfsd',1,'Admin',1672319405,'192.168.64.1',2,15,39835,NULL,'Kubernetes API: Resident memory, bytes','clc93snar00007kiypalxeeen',''),('clc93snfq01c87kiyh04xt1cu',1,'Admin',1672319405,'192.168.64.1',2,15,39834,NULL,'Kubernetes API: Virtual memory, bytes','clc93snar00007kiypalxeeen',''),('clc93snfq01c97kiy33kwaq34',1,'Admin',1672319405,'192.168.64.1',2,15,39833,NULL,'Kubernetes API: HTTP requests: 2xx, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01ca7kiyo3t5g0v5',1,'Admin',1672319405,'192.168.64.1',2,15,39832,NULL,'Kubernetes API: HTTP requests: 3xx, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01cb7kiywzt99s7t',1,'Admin',1672319405,'192.168.64.1',2,15,39831,NULL,'Kubernetes API: HTTP requests: 4xx, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01cc7kiyvo0xb8e6',1,'Admin',1672319405,'192.168.64.1',2,15,39850,NULL,'Kubernetes API: HTTP requests: 5xx, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01cd7kiyuhcsbi00',1,'Admin',1672319405,'192.168.64.1',2,15,39877,NULL,'Kubernetes Controller Manager: REST Client requests: 2xx, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01ce7kiyzlo82rxy',1,'Admin',1672319405,'192.168.64.1',2,15,39878,NULL,'Kubernetes Controller Manager: REST Client requests: 3xx, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01cf7kiy3mckrakw',1,'Admin',1672319405,'192.168.64.1',2,15,39879,NULL,'Kubernetes Controller Manager: REST Client requests: 4xx, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01cg7kiyizjo0ka4',1,'Admin',1672319405,'192.168.64.1',2,15,39880,NULL,'Kubernetes Controller Manager: REST Client requests: 5xx, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01ch7kiyxbbwc50o',1,'Admin',1672319405,'192.168.64.1',2,15,39881,NULL,'Kubernetes Controller Manager: CPU','clc93snar00007kiypalxeeen',''),('clc93snfq01ci7kiyi8vx83ob',1,'Admin',1672319405,'192.168.64.1',2,15,39876,NULL,'Kubernetes Controller: Get Controller metrics','clc93snar00007kiypalxeeen',''),('clc93snfq01cj7kiyq13kyfl8',1,'Admin',1672319405,'192.168.64.1',2,15,39882,NULL,'Kubernetes Controller Manager: Goroutines','clc93snar00007kiypalxeeen',''),('clc93snfq01ck7kiyi0t6ek1z',1,'Admin',1672319405,'192.168.64.1',2,15,39883,NULL,'Kubernetes Controller Manager: Go threads','clc93snar00007kiypalxeeen',''),('clc93snfq01cl7kiyybl0nxvr',1,'Admin',1672319405,'192.168.64.1',2,15,39884,NULL,'Kubernetes Controller Manager: Leader election status','clc93snar00007kiypalxeeen',''),('clc93snfq01cm7kiy86hox38u',1,'Admin',1672319405,'192.168.64.1',2,15,39885,NULL,'Kubernetes Controller Manager: Fds max','clc93snar00007kiypalxeeen',''),('clc93snfq01cn7kiyeqw6wmn0',1,'Admin',1672319405,'192.168.64.1',2,15,39886,NULL,'Kubernetes Controller Manager: Fds open','clc93snar00007kiypalxeeen',''),('clc93snfq01co7kiya6p0ysuw',1,'Admin',1672319405,'192.168.64.1',2,15,39887,NULL,'Kubernetes Controller Manager: Resident memory, bytes','clc93snar00007kiypalxeeen',''),('clc93snfq01cp7kiy037xchdp',1,'Admin',1672319405,'192.168.64.1',2,15,39888,NULL,'Kubernetes Controller Manager: Virtual memory, bytes','clc93snar00007kiypalxeeen',''),('clc93snfq01cq7kiyb8hqbyq1',1,'Admin',1672319405,'192.168.64.1',2,15,39905,NULL,'Kubernetes: Get cadvisor metrics','clc93snar00007kiypalxeeen',''),('clc93snfq01cr7kiy5pfjcxny',1,'Admin',1672319405,'192.168.64.1',2,15,39908,NULL,'Kubernetes: Containers restarts','clc93snar00007kiypalxeeen',''),('clc93snfq01cs7kiytf43fxg8',1,'Admin',1672319405,'192.168.64.1',2,15,39909,NULL,'Kubernetes: Containers running','clc93snar00007kiypalxeeen',''),('clc93snfq01ct7kiy2tal0438',1,'Admin',1672319405,'192.168.64.1',2,15,39910,NULL,'Kubernetes: CPU cores, total','clc93snar00007kiypalxeeen',''),('clc93snfq01cu7kiyq2x7liqc',1,'Admin',1672319405,'192.168.64.1',2,15,39911,NULL,'Kubernetes: Machine memory, bytes','clc93snar00007kiypalxeeen',''),('clc93snfq01cv7kiy4gg9rm7r',1,'Admin',1672319405,'192.168.64.1',2,15,39906,NULL,'Kubernetes: Get kubelet metrics','clc93snar00007kiypalxeeen',''),('clc93snfq01cw7kiyf7jewf8d',1,'Admin',1672319405,'192.168.64.1',2,15,39912,NULL,'Kubernetes: Pods running','clc93snar00007kiypalxeeen',''),('clc93snfq01cx7kiyg4k5v3tp',1,'Admin',1672319405,'192.168.64.1',2,15,39913,NULL,'Kubernetes: File descriptors, max','clc93snar00007kiypalxeeen',''),('clc93snfq01cy7kiy30d56q9q',1,'Admin',1672319405,'192.168.64.1',2,15,39914,NULL,'Kubernetes: File descriptors, open','clc93snar00007kiypalxeeen',''),('clc93snfq01cz7kiym5x0wnju',1,'Admin',1672319405,'192.168.64.1',2,15,39915,NULL,'Kubernetes: Virtual memory, bytes','clc93snar00007kiypalxeeen',''),('clc93snfq01d07kiy0micsct6',1,'Admin',1672319405,'192.168.64.1',2,15,39916,NULL,'Kubernetes: Containers last state terminated','clc93snar00007kiypalxeeen',''),('clc93snfq01d17kiygo0uggq0',1,'Admin',1672319405,'192.168.64.1',2,15,39907,NULL,'Kubernetes: Get pods','clc93snar00007kiypalxeeen',''),('clc93snfq01d27kiyoj9u3eq2',1,'Admin',1672319405,'192.168.64.1',2,15,39937,NULL,'Kubernetes: Get nodes','clc93snar00007kiypalxeeen',''),('clc93snfq01d37kiyuqse44pl',1,'Admin',1672319405,'192.168.64.1',2,15,39938,NULL,'Get nodes check','clc93snar00007kiypalxeeen',''),('clc93snfq01d47kiym8nr6htm',1,'Admin',1672319405,'192.168.64.1',2,15,39939,NULL,'Node LLD','clc93snar00007kiypalxeeen',''),('clc93snfq01d57kiys140vjv4',1,'Admin',1672319405,'192.168.64.1',2,15,39998,NULL,'Kubernetes Scheduler: REST Client requests: 2xx, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01d67kiyq8uzvvt9',1,'Admin',1672319405,'192.168.64.1',2,15,39990,NULL,'Kubernetes Scheduler: REST Client requests: 3xx, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01d77kiyz147cokw',1,'Admin',1672319405,'192.168.64.1',2,15,39988,NULL,'Kubernetes Scheduler: REST Client requests: 4xx, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01d87kiyc6va6l79',1,'Admin',1672319405,'192.168.64.1',2,15,39986,NULL,'Kubernetes Scheduler: REST Client requests: 5xx, rate','clc93snar00007kiypalxeeen',''),('clc93snfq01d97kiyngkvkuxp',1,'Admin',1672319405,'192.168.64.1',2,15,39987,NULL,'Kubernetes Scheduler: CPU','clc93snar00007kiypalxeeen',''),('clc93snfq01da7kiyxqr3hjhw',1,'Admin',1672319405,'192.168.64.1',2,15,39978,NULL,'Kubernetes Scheduler: Get Scheduler metrics','clc93snar00007kiypalxeeen',''),('clc93snfq01db7kiy8zs4hltv',1,'Admin',1672319405,'192.168.64.1',2,15,39989,NULL,'Kubernetes Scheduler: Goroutines','clc93snar00007kiypalxeeen',''),('clc93snfq01dc7kiyuyv5qdz1',1,'Admin',1672319405,'192.168.64.1',2,15,39999,NULL,'Kubernetes Scheduler: Go threads','clc93snar00007kiypalxeeen',''),('clc93snfq01dd7kiyygjytvqd',1,'Admin',1672319405,'192.168.64.1',2,15,39991,NULL,'Kubernetes Scheduler: Fds max','clc93snar00007kiypalxeeen',''),('clc93snfq01de7kiy3ut2tgy1',1,'Admin',1672319405,'192.168.64.1',2,15,39992,NULL,'Kubernetes Scheduler: Fds open','clc93snar00007kiypalxeeen',''),('clc93snfq01df7kiyv8uikv6d',1,'Admin',1672319405,'192.168.64.1',2,15,39993,NULL,'Kubernetes Scheduler: Resident memory, bytes','clc93snar00007kiypalxeeen',''),('clc93snfq01dg7kiy36s0aua5',1,'Admin',1672319405,'192.168.64.1',2,15,39994,NULL,'Kubernetes Scheduler: Virtual memory, bytes','clc93snar00007kiypalxeeen',''),('clc93snfq01dh7kiy9n06we5z',1,'Admin',1672319405,'192.168.64.1',2,15,39995,NULL,'Kubernetes Scheduler: Schedule attempts: error','clc93snar00007kiypalxeeen',''),('clc93snfq01di7kiy3btweqhu',1,'Admin',1672319405,'192.168.64.1',2,15,39996,NULL,'Kubernetes Scheduler: Schedule attempts: scheduled','clc93snar00007kiypalxeeen',''),('clc93snfq01dj7kiyzs6qrlyk',1,'Admin',1672319405,'192.168.64.1',2,15,39997,NULL,'Kubernetes Scheduler: Schedule attempts: unschedulable','clc93snar00007kiypalxeeen',''),('clc93snfq01dk7kiy3fqi5z2o',1,'Admin',1672319405,'192.168.64.1',2,15,40010,NULL,'Kubernetes: Get component statuses','clc93snar00007kiypalxeeen',''),('clc93snfq01dl7kiy9j8ijz6l',1,'Admin',1672319405,'192.168.64.1',2,15,40011,NULL,'Kubernetes: Control plane LLD','clc93snar00007kiypalxeeen',''),('clc93snfq01dm7kiyp2qp1ou8',1,'Admin',1672319405,'192.168.64.1',2,15,42700,NULL,'Kubernetes: CronJob count','clc93snar00007kiypalxeeen',''),('clc93snfq01dn7kiybk5jvtu7',1,'Admin',1672319405,'192.168.64.1',2,15,40016,NULL,'Kubernetes: Deployment count','clc93snar00007kiypalxeeen',''),('clc93snfq01do7kiyppkv5kl2',1,'Admin',1672319405,'192.168.64.1',2,15,42701,NULL,'Kubernetes: Endpoint count','clc93snar00007kiypalxeeen',''),('clc93snfq01dp7kiy3pzcwe9d',1,'Admin',1672319405,'192.168.64.1',2,15,42702,NULL,'Kubernetes: Job count','clc93snar00007kiypalxeeen',''),('clc93snfq01dq7kiybcsrcf0m',1,'Admin',1672319405,'192.168.64.1',2,15,40012,NULL,'Kubernetes: Get livez','clc93snar00007kiypalxeeen',''),('clc93snfq01dr7kiy3aa2il8k',1,'Admin',1672319405,'192.168.64.1',2,15,40017,NULL,'Kubernetes: Namespace count','clc93snar00007kiypalxeeen',''),('clc93snfq01ds7kiyrn3szr5o',1,'Admin',1672319405,'192.168.64.1',2,15,40018,NULL,'Kubernetes: Node count','clc93snar00007kiypalxeeen',''),('clc93snfq01dt7kiysc2urpvx',1,'Admin',1672319405,'192.168.64.1',2,15,40015,NULL,'Kubernetes: Node LLD','clc93snar00007kiypalxeeen',''),('clc93snfq01du7kiy4v25paye',1,'Admin',1672319405,'192.168.64.1',2,15,40013,NULL,'Kubernetes: Get readyz','clc93snar00007kiypalxeeen',''),('clc93snfq01dv7kiy7gd86b15',1,'Admin',1672319405,'192.168.64.1',2,15,40019,NULL,'Kubernetes: Service count','clc93snar00007kiypalxeeen',''),('clc93snfq01dw7kiyk86if4q5',1,'Admin',1672319405,'192.168.64.1',2,15,40014,NULL,'Kubernetes: Get state metrics','clc93snar00007kiypalxeeen',''),('clc93snfq01dx7kiy3fcchg08',1,'Admin',1672319405,'192.168.64.1',2,15,40020,NULL,'Kubernetes: Statefulset count','clc93snar00007kiypalxeeen',''),('clc93snfq01dy7kiyhs9bmhje',1,'Admin',1672319405,'192.168.64.1',2,15,44100,NULL,'Get disk group statistics','clc93snar00007kiypalxeeen',''),('clc93snfq01dz7kiyacl6zgvf',1,'Admin',1672319405,'192.168.64.1',2,15,44106,NULL,'Get controller statistics','clc93snar00007kiypalxeeen',''),('clc93snfq01e07kiy2881blbc',1,'Admin',1672319405,'192.168.64.1',2,15,44098,NULL,'Get controllers','clc93snar00007kiypalxeeen',''),('clc93snfq01e17kiy1vb29014',1,'Admin',1672319405,'192.168.64.1',2,15,43174,NULL,'HPE MSA: Get data','clc93snar00007kiypalxeeen',''),('clc93snfq01e27kiy167m2d1y',1,'Admin',1672319405,'192.168.64.1',2,15,44105,NULL,'Get disks','clc93snar00007kiypalxeeen',''),('clc93snfq01e37kiyu8yuwno4',1,'Admin',1672319405,'192.168.64.1',2,15,44104,NULL,'Get disk groups','clc93snar00007kiypalxeeen',''),('clc93snfq01e47kiyc77m1vkg',1,'Admin',1672319405,'192.168.64.1',2,15,44103,NULL,'Get enclosures','clc93snar00007kiypalxeeen',''),('clc93snfq01e57kiyvr2kd56j',1,'Admin',1672319405,'192.168.64.1',2,15,43176,NULL,'Get method errors','clc93snar00007kiypalxeeen',''),('clc93snfq01e67kiy4z6meewa',1,'Admin',1672319405,'192.168.64.1',2,15,44102,NULL,'Get fans','clc93snar00007kiypalxeeen',''),('clc93snfq01e77kiyr5q24d4r',1,'Admin',1672319405,'192.168.64.1',2,15,44101,NULL,'Get FRU','clc93snar00007kiypalxeeen',''),('clc93snfq01e87kiy902zqvk3',1,'Admin',1672319405,'192.168.64.1',2,15,44094,NULL,'Get pools','clc93snar00007kiypalxeeen',''),('clc93snfq01e97kiyfuntxo0o',1,'Admin',1672319405,'192.168.64.1',2,15,44099,NULL,'Get ports','clc93snar00007kiypalxeeen',''),('clc93snfq01ea7kiyxkpdjdpx',1,'Admin',1672319405,'192.168.64.1',2,15,44107,NULL,'Get power supplies','clc93snar00007kiypalxeeen',''),('clc93snfq01eb7kiypt41th0q',1,'Admin',1672319405,'192.168.64.1',2,15,44097,NULL,'Get system','clc93snar00007kiypalxeeen',''),('clc93snfq01ec7kiy6dava82q',1,'Admin',1672319405,'192.168.64.1',2,15,44096,NULL,'Get volumes','clc93snar00007kiypalxeeen',''),('clc93snfq01ed7kiyxq3n3js5',1,'Admin',1672319405,'192.168.64.1',2,15,44095,NULL,'Get volume statistics','clc93snar00007kiypalxeeen',''),('clc93snfq01ee7kiyalmnicuc',1,'Admin',1672319405,'192.168.64.1',2,15,43177,NULL,'System contact','clc93snar00007kiypalxeeen',''),('clc93snfq01ef7kiymbby662c',1,'Admin',1672319405,'192.168.64.1',2,15,43178,NULL,'System health','clc93snar00007kiypalxeeen',''),('clc93snfq01eg7kiyp4hschze',1,'Admin',1672319405,'192.168.64.1',2,15,43179,NULL,'System information','clc93snar00007kiypalxeeen',''),('clc93snfq01eh7kiykp6ddffv',1,'Admin',1672319405,'192.168.64.1',2,15,43180,NULL,'System location','clc93snar00007kiypalxeeen',''),('clc93snfq01ei7kiygzegfwvo',1,'Admin',1672319405,'192.168.64.1',2,15,43181,NULL,'System name','clc93snar00007kiypalxeeen',''),('clc93snfq01ej7kiy3v61f5ql',1,'Admin',1672319405,'192.168.64.1',2,15,43182,NULL,'Product ID','clc93snar00007kiypalxeeen',''),('clc93snfq01ek7kiy2ykheekt',1,'Admin',1672319405,'192.168.64.1',2,15,43183,NULL,'Vendor name','clc93snar00007kiypalxeeen',''),('clc93snfq01el7kiy398kuj5d',1,'Admin',1672319405,'192.168.64.1',2,15,43175,NULL,'HPE MSA: Service ping','clc93snar00007kiypalxeeen',''),('clc93snfq01em7kiya25koa7g',1,'Admin',1672319405,'192.168.64.1',2,15,44127,NULL,'Get disk group statistics','clc93snar00007kiypalxeeen',''),('clc93snfq01en7kiyf7op2y68',1,'Admin',1672319405,'192.168.64.1',2,15,44133,NULL,'Get controller statistics','clc93snar00007kiypalxeeen',''),('clc93snfq01eo7kiy08agmihh',1,'Admin',1672319405,'192.168.64.1',2,15,44125,NULL,'Get controllers','clc93snar00007kiypalxeeen',''),('clc93snfq01ep7kiykma20u9r',1,'Admin',1672319405,'192.168.64.1',2,15,43281,NULL,'HPE MSA: Get data','clc93snar00007kiypalxeeen',''),('clc93snfq01eq7kiyfkjl5h00',1,'Admin',1672319405,'192.168.64.1',2,15,44132,NULL,'Get disks','clc93snar00007kiypalxeeen',''),('clc93snfq01er7kiysd4flw5m',1,'Admin',1672319405,'192.168.64.1',2,15,44131,NULL,'Get disk groups','clc93snar00007kiypalxeeen',''),('clc93snfq01es7kiy3qy1bk22',1,'Admin',1672319405,'192.168.64.1',2,15,44130,NULL,'Get enclosures','clc93snar00007kiypalxeeen',''),('clc93snfq01et7kiy7j95h1yj',1,'Admin',1672319405,'192.168.64.1',2,15,43283,NULL,'Get method errors','clc93snar00007kiypalxeeen',''),('clc93snfq01eu7kiywqscgoo9',1,'Admin',1672319405,'192.168.64.1',2,15,44129,NULL,'Get fans','clc93snar00007kiypalxeeen',''),('clc93snfq01ev7kiyvwx2fqta',1,'Admin',1672319405,'192.168.64.1',2,15,44128,NULL,'Get FRU','clc93snar00007kiypalxeeen',''),('clc93snfq01ew7kiyvwvl9uy0',1,'Admin',1672319405,'192.168.64.1',2,15,44121,NULL,'Get pools','clc93snar00007kiypalxeeen',''),('clc93snfq01ex7kiychz11rzd',1,'Admin',1672319405,'192.168.64.1',2,15,44126,NULL,'Get ports','clc93snar00007kiypalxeeen',''),('clc93snfq01ey7kiyxrd0kfm1',1,'Admin',1672319405,'192.168.64.1',2,15,44134,NULL,'Get power supplies','clc93snar00007kiypalxeeen',''),('clc93snfq01ez7kiyjhh8w2f4',1,'Admin',1672319405,'192.168.64.1',2,15,44124,NULL,'Get system','clc93snar00007kiypalxeeen',''),('clc93snfr01f07kiyhj61f5jb',1,'Admin',1672319405,'192.168.64.1',2,15,44123,NULL,'Get volumes','clc93snar00007kiypalxeeen',''),('clc93snfr01f17kiy0l5t26uu',1,'Admin',1672319405,'192.168.64.1',2,15,44122,NULL,'Get volume statistics','clc93snar00007kiypalxeeen',''),('clc93snfr01f27kiymhmxbdft',1,'Admin',1672319405,'192.168.64.1',2,15,43284,NULL,'System contact','clc93snar00007kiypalxeeen',''),('clc93snfr01f37kiy9bhsst8a',1,'Admin',1672319405,'192.168.64.1',2,15,43285,NULL,'System health','clc93snar00007kiypalxeeen',''),('clc93snfr01f47kiytpw9y5mg',1,'Admin',1672319405,'192.168.64.1',2,15,43286,NULL,'System information','clc93snar00007kiypalxeeen',''),('clc93snfr01f57kiy1qhobt70',1,'Admin',1672319405,'192.168.64.1',2,15,43287,NULL,'System location','clc93snar00007kiypalxeeen',''),('clc93snfr01f67kiyhi36fno8',1,'Admin',1672319405,'192.168.64.1',2,15,43288,NULL,'System name','clc93snar00007kiypalxeeen',''),('clc93snfr01f77kiyepnzrmtt',1,'Admin',1672319405,'192.168.64.1',2,15,43289,NULL,'Product ID','clc93snar00007kiypalxeeen',''),('clc93snfr01f87kiyqvx1mr63',1,'Admin',1672319405,'192.168.64.1',2,15,43290,NULL,'Vendor name','clc93snar00007kiypalxeeen',''),('clc93snfr01f97kiy93eghdpu',1,'Admin',1672319405,'192.168.64.1',2,15,43282,NULL,'HPE MSA: Service ping','clc93snar00007kiypalxeeen',''),('clc93snfr01fa7kiy1raoxc97',1,'Admin',1672319405,'192.168.64.1',2,15,43413,NULL,'HPE Primera: Disks total','clc93snar00007kiypalxeeen',''),('clc93snfr01fb7kiy4yp31a9t',1,'Admin',1672319405,'192.168.64.1',2,15,44154,NULL,'HPE Primera: Get CPGs data','clc93snar00007kiypalxeeen',''),('clc93snfr01fc7kiysjhvlr92',1,'Admin',1672319405,'192.168.64.1',2,15,43399,NULL,'HPE Primera: Get data','clc93snar00007kiypalxeeen',''),('clc93snfr01fd7kiy25iq9f90',1,'Admin',1672319405,'192.168.64.1',2,15,44148,NULL,'HPE Primera: Get disks data','clc93snar00007kiypalxeeen',''),('clc93snfr01fe7kiyggtcxjsz',1,'Admin',1672319405,'192.168.64.1',2,15,43406,NULL,'HPE Primera: Get errors','clc93snar00007kiypalxeeen',''),('clc93snfr01ff7kiywpvfnxyv',1,'Admin',1672319405,'192.168.64.1',2,15,44149,NULL,'HPE Primera: Get hosts data','clc93snar00007kiypalxeeen',''),('clc93snfr01fg7kiyt8dfft24',1,'Admin',1672319405,'192.168.64.1',2,15,44150,NULL,'HPE Primera: Get ports data','clc93snar00007kiypalxeeen',''),('clc93snfr01fh7kiyvydlo48i',1,'Admin',1672319405,'192.168.64.1',2,15,44151,NULL,'HPE Primera: Get system data','clc93snar00007kiypalxeeen',''),('clc93snfr01fi7kiyjh1ldwwx',1,'Admin',1672319405,'192.168.64.1',2,15,44152,NULL,'HPE Primera: Get tasks data','clc93snar00007kiypalxeeen',''),('clc93snfr01fj7kiyrz9gwbab',1,'Admin',1672319405,'192.168.64.1',2,15,44153,NULL,'HPE Primera: Get volumes data','clc93snar00007kiypalxeeen',''),('clc93snfr01fk7kiyw2d9bude',1,'Admin',1672319405,'192.168.64.1',2,15,43412,NULL,'HPE Primera: Capacity allocated','clc93snar00007kiypalxeeen',''),('clc93snfr01fl7kiyduygdpu8',1,'Admin',1672319405,'192.168.64.1',2,15,43411,NULL,'HPE Primera: Capacity failed','clc93snar00007kiypalxeeen',''),('clc93snfr01fm7kiyzatreh5p',1,'Admin',1672319405,'192.168.64.1',2,15,43410,NULL,'HPE Primera: Capacity free','clc93snar00007kiypalxeeen',''),('clc93snfr01fn7kiykpbt8i42',1,'Admin',1672319405,'192.168.64.1',2,15,43409,NULL,'HPE Primera: Capacity total','clc93snar00007kiypalxeeen',''),('clc93snfr01fo7kiy6ktl3wvc',1,'Admin',1672319405,'192.168.64.1',2,15,43408,NULL,'HPE Primera: Chunklet size','clc93snar00007kiypalxeeen',''),('clc93snfr01fp7kiyzy749z5p',1,'Admin',1672319405,'192.168.64.1',2,15,43414,NULL,'HPE Primera: System contact','clc93snar00007kiypalxeeen',''),('clc93snfr01fq7kiyrvfw8qwn',1,'Admin',1672319405,'192.168.64.1',2,15,43407,NULL,'HPE Primera: System location','clc93snar00007kiypalxeeen',''),('clc93snfr01fr7kiy17fm2b7v',1,'Admin',1672319405,'192.168.64.1',2,15,43405,NULL,'HPE Primera: Model','clc93snar00007kiypalxeeen',''),('clc93snfr01fs7kiynfbw5ir6',1,'Admin',1672319405,'192.168.64.1',2,15,43404,NULL,'HPE Primera: System name','clc93snar00007kiypalxeeen',''),('clc93snfr01ft7kiyhqbdk31a',1,'Admin',1672319405,'192.168.64.1',2,15,43403,NULL,'HPE Primera: Nodes online','clc93snar00007kiypalxeeen',''),('clc93snfr01fu7kiyxioyzkmu',1,'Admin',1672319405,'192.168.64.1',2,15,43402,NULL,'HPE Primera: Nodes total','clc93snar00007kiypalxeeen',''),('clc93snfr01fv7kiyjuesino9',1,'Admin',1672319405,'192.168.64.1',2,15,43401,NULL,'HPE Primera: Serial number','clc93snar00007kiypalxeeen',''),('clc93snfr01fw7kiyzpf429aw',1,'Admin',1672319405,'192.168.64.1',2,15,43400,NULL,'HPE Primera: Software version number','clc93snar00007kiypalxeeen',''),('clc93snfr01fx7kiy17wwzsgt',1,'Admin',1672319405,'192.168.64.1',2,15,43398,NULL,'HPE Primera: Service ping','clc93snar00007kiypalxeeen',''),('clc93snfr01fy7kiyh9qwprba',1,'Admin',1672319405,'192.168.64.1',2,15,43901,NULL,'HPE Synergy: Get data','clc93snar00007kiypalxeeen',''),('clc93snfr01fz7kiyfjz2wic3',1,'Admin',1672319405,'192.168.64.1',2,15,44205,NULL,'HPE Synergy: Get datacenters data','clc93snar00007kiypalxeeen',''),('clc93snfr01g07kiygq57w3pf',1,'Admin',1672319405,'192.168.64.1',2,15,43903,NULL,'HPE Synergy: Get enclosures data','clc93snar00007kiypalxeeen',''),('clc93snfr01g17kiyy1qo5opt',1,'Admin',1672319405,'192.168.64.1',2,15,43904,NULL,'HPE Synergy: Get errors','clc93snar00007kiypalxeeen',''),('clc93snfr01g27kiy3yuhw4tk',1,'Admin',1672319405,'192.168.64.1',2,15,44201,NULL,'HPE Synergy: Get ethernet networks data','clc93snar00007kiypalxeeen',''),('clc93snfr01g37kiysgfvgxgq',1,'Admin',1672319405,'192.168.64.1',2,15,44202,NULL,'HPE Synergy: Get fabrics data','clc93snar00007kiypalxeeen',''),('clc93snfr01g47kiy7wren4cn',1,'Admin',1672319405,'192.168.64.1',2,15,44203,NULL,'HPE Synergy: Get FC networks data','clc93snar00007kiypalxeeen',''),('clc93snfr01g57kiy771dz16r',1,'Admin',1672319405,'192.168.64.1',2,15,44204,NULL,'HPE Synergy: Get hypervisor managers data','clc93snar00007kiypalxeeen',''),('clc93snfr01g67kiyaewjbdpt',1,'Admin',1672319405,'192.168.64.1',2,15,44213,NULL,'HPE Synergy: Get interconnects data','clc93snar00007kiypalxeeen',''),('clc93snfr01g77kiym4pdw4u8',1,'Admin',1672319405,'192.168.64.1',2,15,44206,NULL,'HPE Synergy: Get logical enclosures data','clc93snar00007kiypalxeeen',''),('clc93snfr01g87kiyzsh9hhym',1,'Admin',1672319405,'192.168.64.1',2,15,44207,NULL,'HPE Synergy: Get racks data','clc93snar00007kiypalxeeen',''),('clc93snfr01g97kiynvvkvw4d',1,'Admin',1672319405,'192.168.64.1',2,15,44208,NULL,'HPE Synergy: Get server hardware data','clc93snar00007kiypalxeeen',''),('clc93snfr01ga7kiybals0695',1,'Admin',1672319405,'192.168.64.1',2,15,44209,NULL,'HPE Synergy: Get storage pools data','clc93snar00007kiypalxeeen',''),('clc93snfr01gb7kiyytr5ksk2',1,'Admin',1672319405,'192.168.64.1',2,15,44210,NULL,'HPE Synergy: Get storage systems data','clc93snar00007kiypalxeeen',''),('clc93snfr01gc7kiyx0rke0f2',1,'Admin',1672319405,'192.168.64.1',2,15,44211,NULL,'HPE Synergy: Get storage volumes data','clc93snar00007kiypalxeeen',''),('clc93snfr01gd7kiyyb398ev1',1,'Admin',1672319405,'192.168.64.1',2,15,44212,NULL,'HPE Synergy: Get uplink sets data','clc93snar00007kiypalxeeen',''),('clc93snfr01ge7kiyojslgm2v',1,'Admin',1672319405,'192.168.64.1',2,15,43902,NULL,'HPE Synergy: Service ping','clc93snar00007kiypalxeeen',''),('clc93sngv01gf7kiyjnxfadk4',1,'Admin',1672319405,'192.168.64.1',2,30,10001,NULL,'Linux by Zabbix agent','clc93snar00007kiypalxeeen',''),('clc93sngv01gg7kiy0sdcbx6r',1,'Admin',1672319405,'192.168.64.1',2,30,10094,NULL,'HTTP Service','clc93snar00007kiypalxeeen',''),('clc93sngv01gh7kiywffqxcm8',1,'Admin',1672319405,'192.168.64.1',2,30,10095,NULL,'HTTPS Service','clc93snar00007kiypalxeeen',''),('clc93sngv01gi7kiy40brler4',1,'Admin',1672319405,'192.168.64.1',2,30,10096,NULL,'IMAP Service','clc93snar00007kiypalxeeen',''),('clc93sngv01gj7kiy0mg6ezeo',1,'Admin',1672319405,'192.168.64.1',2,30,10097,NULL,'LDAP Service','clc93snar00007kiypalxeeen',''),('clc93sngv01gk7kiydpdyvr35',1,'Admin',1672319405,'192.168.64.1',2,30,10171,NULL,'Intel SR1530 IPMI','clc93snar00007kiypalxeeen',''),('clc93sngv01gl7kiyv49yq2lw',1,'Admin',1672319405,'192.168.64.1',2,30,10172,NULL,'Intel SR1630 IPMI','clc93snar00007kiypalxeeen',''),('clc93sngv01gm7kiyyjluvh03',1,'Admin',1672319405,'192.168.64.1',2,30,10186,NULL,'ICMP Ping','clc93snar00007kiypalxeeen',''),('clc93sngv01gn7kiy22pyyq67',1,'Admin',1672319405,'192.168.64.1',2,30,10188,NULL,'Interfaces Simple by SNMP','clc93snar00007kiypalxeeen',''),('clc93sngv01go7kiywj0hlzgl',1,'Admin',1672319405,'192.168.64.1',2,30,10190,NULL,'Interfaces by SNMP','clc93snar00007kiypalxeeen',''),('clc93sngv01gp7kiy9kvwx1mr',1,'Admin',1672319405,'192.168.64.1',2,30,10192,NULL,'Interfaces Windows by SNMP','clc93snar00007kiypalxeeen',''),('clc93sngv01gq7kiysaw6gfmt',1,'Admin',1672319405,'192.168.64.1',2,30,10229,NULL,'Huawei VRP by SNMP','clc93snar00007kiypalxeeen',''),('clc93sngv01gr7kiysks98qvu',1,'Admin',1672319405,'192.168.64.1',2,30,10230,NULL,'Intel_Qlogic Infiniband by SNMP','clc93snar00007kiypalxeeen',''),('clc93sngv01gs7kiyzd3gokga',1,'Admin',1672319405,'192.168.64.1',2,30,10231,NULL,'Juniper by SNMP','clc93snar00007kiypalxeeen',''),('clc93sngv01gt7kiy2t7den4b',1,'Admin',1672319405,'192.168.64.1',2,30,10248,NULL,'Linux by SNMP','clc93snar00007kiypalxeeen',''),('clc93sngv01gu7kiyzzhnh27h',1,'Admin',1672319405,'192.168.64.1',2,30,10250,NULL,'HP Enterprise Switch by SNMP','clc93snar00007kiypalxeeen',''),('clc93sngv01gv7kiyct53d9qn',1,'Admin',1672319405,'192.168.64.1',2,30,10256,NULL,'HP iLO by SNMP','clc93snar00007kiypalxeeen',''),('clc93sngv01gw7kiy19thrj9y',1,'Admin',1672319405,'192.168.64.1',2,30,10258,NULL,'IBM IMM by SNMP','clc93snar00007kiypalxeeen',''),('clc93sngv01gx7kiy852tpkg3',1,'Admin',1672319405,'192.168.64.1',2,30,10269,NULL,'Linux block devices by SNMP','clc93snar00007kiypalxeeen',''),('clc93sngv01gy7kiyt40cnxsd',1,'Admin',1672319405,'192.168.64.1',2,30,10270,NULL,'Linux CPU by SNMP','clc93snar00007kiypalxeeen',''),('clc93sngv01gz7kiyp6q5p8ej',1,'Admin',1672319405,'192.168.64.1',2,30,10271,NULL,'Linux filesystems by SNMP','clc93snar00007kiypalxeeen',''),('clc93sngv01h07kiyycum5wdz',1,'Admin',1672319405,'192.168.64.1',2,30,10272,NULL,'Linux CPU by Zabbix agent','clc93snar00007kiypalxeeen',''),('clc93sngv01h17kiy2d15htpc',1,'Admin',1672319405,'192.168.64.1',2,30,10273,NULL,'Linux filesystems by Zabbix agent','clc93snar00007kiypalxeeen',''),('clc93sngv01h27kiy2kjz6yzo',1,'Admin',1672319405,'192.168.64.1',2,30,10275,NULL,'Linux block devices by Zabbix agent','clc93snar00007kiypalxeeen',''),('clc93sngv01h37kiy8jdu7kmb',1,'Admin',1672319405,'192.168.64.1',2,30,10277,NULL,'Linux generic by Zabbix agent','clc93snar00007kiypalxeeen',''),('clc93sngv01h47kiyxrk46zl6',1,'Admin',1672319405,'192.168.64.1',2,30,10285,NULL,'Linux by Prom','clc93snar00007kiypalxeeen',''),('clc93sngv01h57kiy8y0vxv50',1,'Admin',1672319405,'192.168.64.1',2,30,10325,NULL,'IIS by Zabbix agent','clc93snar00007kiypalxeeen',''),('clc93sngv01h67kiyq0xwpc04',1,'Admin',1672319405,'192.168.64.1',2,30,10326,NULL,'IIS by Zabbix agent active','clc93snar00007kiypalxeeen',''),('clc93sngv01h77kiy3dtdqtnm',1,'Admin',1672319405,'192.168.64.1',2,30,10337,NULL,'Linux block devices by Zabbix agent active','clc93snar00007kiypalxeeen',''),('clc93sngv01h87kiydv7vku6l',1,'Admin',1672319405,'192.168.64.1',2,30,10338,NULL,'Linux CPU by Zabbix agent active','clc93snar00007kiypalxeeen',''),('clc93sngv01h97kiyt9xtahib',1,'Admin',1672319405,'192.168.64.1',2,30,10339,NULL,'Linux filesystems by Zabbix agent active','clc93snar00007kiypalxeeen',''),('clc93sngv01ha7kiya1tob7qk',1,'Admin',1672319405,'192.168.64.1',2,30,10343,NULL,'Linux by Zabbix agent active','clc93snar00007kiypalxeeen',''),('clc93sngv01hb7kiyuewlr1kq',1,'Admin',1672319405,'192.168.64.1',2,30,10379,NULL,'Jenkins by HTTP','clc93snar00007kiypalxeeen',''),('clc93sngv01hc7kiyu0f9than',1,'Admin',1672319405,'192.168.64.1',2,30,10381,NULL,'Ignite by JMX','clc93snar00007kiypalxeeen',''),('clc93sngv01hd7kiy0a73eczp',1,'Admin',1672319405,'192.168.64.1',2,30,10385,NULL,'Huawei OceanStor 5300 V5 by SNMP','clc93snar00007kiypalxeeen',''),('clc93sngv01he7kiy0z1y3ljb',1,'Admin',1672319405,'192.168.64.1',2,30,10443,NULL,'HPE ProLiant BL460 by SNMP','clc93snar00007kiypalxeeen',''),('clc93sngv01hf7kiyztvbmj1l',1,'Admin',1672319405,'192.168.64.1',2,30,10444,NULL,'HPE ProLiant BL920 by SNMP','clc93snar00007kiypalxeeen',''),('clc93sngv01hg7kiyvg4qn01w',1,'Admin',1672319405,'192.168.64.1',2,30,10445,NULL,'HPE ProLiant DL360 by SNMP','clc93snar00007kiypalxeeen',''),('clc93sngv01hh7kiygfupxa11',1,'Admin',1672319405,'192.168.64.1',2,30,10446,NULL,'HPE ProLiant DL380 by SNMP','clc93snar00007kiypalxeeen',''),('clc93sngv01hi7kiytk27anrf',1,'Admin',1672319405,'192.168.64.1',2,30,10448,NULL,'InfluxDB by HTTP','clc93snar00007kiypalxeeen',''),('clc93sngv01hj7kiyw7m3bekf',1,'Admin',1672319405,'192.168.64.1',2,30,10504,NULL,'Kubernetes API server by HTTP','clc93snar00007kiypalxeeen',''),('clc93sngv01hk7kiyao42xr4c',1,'Admin',1672319405,'192.168.64.1',2,30,10505,NULL,'Kubernetes Controller manager by HTTP','clc93snar00007kiypalxeeen',''),('clc93sngv01hl7kiyfa97wrxd',1,'Admin',1672319405,'192.168.64.1',2,30,10506,NULL,'Kubernetes Kubelet by HTTP','clc93snar00007kiypalxeeen',''),('clc93sngv01hm7kiylhujs6zq',1,'Admin',1672319405,'192.168.64.1',2,30,10507,NULL,'Kubernetes nodes by HTTP','clc93snar00007kiypalxeeen',''),('clc93sngv01hn7kiy7zhlap4q',1,'Admin',1672319405,'192.168.64.1',2,30,10509,NULL,'Kubernetes Scheduler by HTTP','clc93snar00007kiypalxeeen',''),('clc93sngv01ho7kiypi2uwp7i',1,'Admin',1672319405,'192.168.64.1',2,30,10510,NULL,'Kubernetes cluster state by HTTP','clc93snar00007kiypalxeeen',''),('clc93sngv01hp7kiy50emjn77',1,'Admin',1672319405,'192.168.64.1',2,30,10524,NULL,'HPE MSA 2040 Storage by HTTP','clc93snar00007kiypalxeeen',''),('clc93sngv01hq7kiy20a9jymc',1,'Admin',1672319405,'192.168.64.1',2,30,10525,NULL,'HPE MSA 2060 Storage by HTTP','clc93snar00007kiypalxeeen',''),('clc93sngv01hr7kiymjwo0ec0',1,'Admin',1672319405,'192.168.64.1',2,30,10526,NULL,'HPE Primera by HTTP','clc93snar00007kiypalxeeen',''),('clc93sngv01hs7kiykmwq7dvg',1,'Admin',1672319405,'192.168.64.1',2,30,10534,NULL,'HPE Synergy by HTTP','clc93snar00007kiypalxeeen',''),('clc93sqcu00014xiycfmr7aim',1,'Admin',1672319409,'192.168.64.1',2,36,23068,NULL,'{#FSNAME}: Free disk space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00024xiyskhev0j6',1,'Admin',1672319409,'192.168.64.1',2,36,23069,NULL,'{#FSNAME}: Free inodes, %','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00034xiyq09xry7z',1,'Admin',1672319409,'192.168.64.1',2,36,23070,NULL,'{#FSNAME}: Total disk space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00044xiyueu6ytzr',1,'Admin',1672319409,'192.168.64.1',2,36,23071,NULL,'{#FSNAME}: Used disk space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00054xiyq80myiub',1,'Admin',1672319409,'192.168.64.1',2,36,23072,NULL,'{#FSNAME}: Free disk space, %','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00064xiy8e7mralw',1,'Admin',1672319409,'192.168.64.1',2,36,44446,NULL,'{#FSNAME}: Get filesystem data','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00074xiymkk6z70l',1,'Admin',1672319409,'192.168.64.1',2,36,27904,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00084xiy73queh7e',1,'Admin',1672319409,'192.168.64.1',2,36,27905,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00094xiytdlmi53d',1,'Admin',1672319409,'192.168.64.1',2,36,27906,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000a4xiyzubk6kgp',1,'Admin',1672319409,'192.168.64.1',2,36,27907,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000b4xiypflhus6a',1,'Admin',1672319409,'192.168.64.1',2,36,27908,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000c4xiyr7wvaadf',1,'Admin',1672319409,'192.168.64.1',2,36,28200,NULL,'{#SENSOR_INFO}: Temperature status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000d4xiyyxg22y3h',1,'Admin',1672319409,'192.168.64.1',2,36,28201,NULL,'{#SENSOR_INFO}: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000e4xiymyy0c9zj',1,'Admin',1672319409,'192.168.64.1',2,36,28202,NULL,'{#SENSOR_INFO}: Fan status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000f4xiyssn2ho7c',1,'Admin',1672319409,'192.168.64.1',2,36,28203,NULL,'{#SENSOR_INFO}: Fan speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000g4xiy0ass577x',1,'Admin',1672319409,'192.168.64.1',2,36,28204,NULL,'{#ENT_NAME}: Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000h4xiyfyqe9au3',1,'Admin',1672319409,'192.168.64.1',2,36,28205,NULL,'{#ENT_NAME}: Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000i4xiyp6y302n8',1,'Admin',1672319409,'192.168.64.1',2,36,28206,NULL,'{#ENT_NAME}: Power supply status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000j4xiygvkohcnz',1,'Admin',1672319409,'192.168.64.1',2,36,29216,NULL,'Interface {#IFNAME}: Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000k4xiyt1dgeieq',1,'Admin',1672319409,'192.168.64.1',2,36,29217,NULL,'Interface {#IFNAME}: Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000l4xiy9z21s4ya',1,'Admin',1672319409,'192.168.64.1',2,36,29218,NULL,'Interface {#IFNAME}: Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000m4xiy1i9et7qq',1,'Admin',1672319409,'192.168.64.1',2,36,29219,NULL,'Interface {#IFNAME}: Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000n4xiydym7q2jj',1,'Admin',1672319409,'192.168.64.1',2,36,29220,NULL,'Interface {#IFNAME}: Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000o4xiyqlyp68mg',1,'Admin',1672319409,'192.168.64.1',2,36,29221,NULL,'Interface {#IFNAME}: Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000p4xiyuz7rl478',1,'Admin',1672319409,'192.168.64.1',2,36,29222,NULL,'Interface {#IFNAME}: Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000q4xiy43oiuqjm',1,'Admin',1672319409,'192.168.64.1',2,36,29223,NULL,'Interface {#IFNAME}: Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000r4xiy9270p3pw',1,'Admin',1672319409,'192.168.64.1',2,36,42680,NULL,'Interface {#IFNAME}: Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000s4xiy9lg8lnhn',1,'Admin',1672319409,'192.168.64.1',2,36,31560,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000t4xiyuh6yoaqa',1,'Admin',1672319409,'192.168.64.1',2,36,31561,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000u4xiyo93ugt0b',1,'Admin',1672319409,'192.168.64.1',2,36,31562,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000v4xiyt3645v52',1,'Admin',1672319409,'192.168.64.1',2,36,31563,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000w4xiyzhsbqj3d',1,'Admin',1672319409,'192.168.64.1',2,36,31564,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000x4xiysgebedi2',1,'Admin',1672319409,'192.168.64.1',2,36,31565,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000y4xiy35g000lm',1,'Admin',1672319409,'192.168.64.1',2,36,31566,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu000z4xiy612rfqme',1,'Admin',1672319409,'192.168.64.1',2,36,31567,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00104xiyloes6j5h',1,'Admin',1672319409,'192.168.64.1',2,36,31568,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00114xiy0rr5w0nt',1,'Admin',1672319409,'192.168.64.1',2,36,31569,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00124xiy0p9s1p8i',1,'Admin',1672319409,'192.168.64.1',2,36,31909,NULL,'Interface {#IFNAME}: Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00134xiy0rye2c42',1,'Admin',1672319409,'192.168.64.1',2,36,31910,NULL,'Interface {#IFNAME}: Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00144xiy02yid74x',1,'Admin',1672319409,'192.168.64.1',2,36,31911,NULL,'Interface {#IFNAME}: Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00154xiydzjk3usd',1,'Admin',1672319409,'192.168.64.1',2,36,31912,NULL,'Interface {#IFNAME}: Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00164xiytzjwyqqg',1,'Admin',1672319409,'192.168.64.1',2,36,31913,NULL,'Interface {#IFNAME}: Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00174xiy77ov2lim',1,'Admin',1672319409,'192.168.64.1',2,36,31914,NULL,'Interface {#IFNAME}: Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00184xiyanbamwr4',1,'Admin',1672319409,'192.168.64.1',2,36,31915,NULL,'Interface {#IFNAME}: Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00194xiyr1u7lyg8',1,'Admin',1672319409,'192.168.64.1',2,36,31916,NULL,'Interface {#IFNAME}: Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001a4xiynwiect5o',1,'Admin',1672319409,'192.168.64.1',2,36,42683,NULL,'Interface {#IFNAME}: Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001b4xiym5vzfub4',1,'Admin',1672319409,'192.168.64.1',2,36,32436,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001c4xiy9n34njrc',1,'Admin',1672319409,'192.168.64.1',2,36,32437,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001d4xiyc9jqmwdt',1,'Admin',1672319409,'192.168.64.1',2,36,32438,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001e4xiya157hbbp',1,'Admin',1672319409,'192.168.64.1',2,36,32439,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001f4xiyolfuveeu',1,'Admin',1672319409,'192.168.64.1',2,36,32528,NULL,'Active Manager [{#INSTANCE}]: Database copy role','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001g4xiybxkr34d1',1,'Admin',1672319409,'192.168.64.1',2,36,32529,NULL,'Information Store [{#INSTANCE}]: Page faults per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001h4xiyguba4s5q',1,'Admin',1672319409,'192.168.64.1',2,36,32530,NULL,'Information Store [{#INSTANCE}]: Log records stalled','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001i4xiycqnwd0my',1,'Admin',1672319409,'192.168.64.1',2,36,32531,NULL,'Information Store [{#INSTANCE}]: Log threads waiting','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001j4xiypbfx438r',1,'Admin',1672319409,'192.168.64.1',2,36,32532,NULL,'Database Counters [{#INSTANCE}]: Active database read operations per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001k4xiykmifc58d',1,'Admin',1672319409,'192.168.64.1',2,36,32533,NULL,'Database Counters [{#INSTANCE}]: Active database read operations latency','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001l4xiynpoobijh',1,'Admin',1672319409,'192.168.64.1',2,36,32534,NULL,'Database Counters [{#INSTANCE}]: Passive database read operations latency','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001m4xiy1t7eso59',1,'Admin',1672319409,'192.168.64.1',2,36,32535,NULL,'Database Counters [{#INSTANCE}]: Active database write operations per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001n4xiynquaiqgx',1,'Admin',1672319409,'192.168.64.1',2,36,32536,NULL,'Database Counters [{#INSTANCE}]: Active database write operations latency','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001o4xiyrazvkzo2',1,'Admin',1672319409,'192.168.64.1',2,36,32537,NULL,'Database Counters [{#INSTANCE}]: Passive database write operations latency','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001p4xiygsclvdh2',1,'Admin',1672319409,'192.168.64.1',2,36,32538,NULL,'Information Store [{#INSTANCE}]: Active mailboxes count','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001q4xiy6loqzhkx',1,'Admin',1672319409,'192.168.64.1',2,36,32539,NULL,'Information Store [{#INSTANCE}]: Database state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001r4xiynjndyy9s',1,'Admin',1672319409,'192.168.64.1',2,36,32540,NULL,'Information Store [{#INSTANCE}]: RPC requests latency','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001s4xiyxu3ycjv9',1,'Admin',1672319409,'192.168.64.1',2,36,32541,NULL,'Information Store [{#INSTANCE}]: RPC requests per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001t4xiyxh4hm9in',1,'Admin',1672319409,'192.168.64.1',2,36,32542,NULL,'Information Store [{#INSTANCE}]: RPC requests total','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001u4xiy9tkomj8z',1,'Admin',1672319409,'192.168.64.1',2,36,32543,NULL,'Domain Controller [{#INSTANCE}]: Read time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001v4xiyq66q0ack',1,'Admin',1672319409,'192.168.64.1',2,36,32544,NULL,'Domain Controller [{#INSTANCE}]: Search time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001w4xiygc1zmn6p',1,'Admin',1672319409,'192.168.64.1',2,36,32545,NULL,'Web Service [{#INSTANCE}]: Current connections','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001x4xiyhmmy6rss',1,'Admin',1672319409,'192.168.64.1',2,36,32558,NULL,'Active Manager [{#INSTANCE}]: Database copy role','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001y4xiy3etl5mdb',1,'Admin',1672319409,'192.168.64.1',2,36,32559,NULL,'Information Store [{#INSTANCE}]: Page faults per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu001z4xiy489tuank',1,'Admin',1672319409,'192.168.64.1',2,36,32560,NULL,'Information Store [{#INSTANCE}]: Log records stalled','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00204xiybnxsa0cp',1,'Admin',1672319409,'192.168.64.1',2,36,32561,NULL,'Information Store [{#INSTANCE}]: Log threads waiting','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00214xiyip6555fe',1,'Admin',1672319409,'192.168.64.1',2,36,32562,NULL,'Database Counters [{#INSTANCE}]: Active database read operations per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00224xiyw9fvgbmu',1,'Admin',1672319409,'192.168.64.1',2,36,32563,NULL,'Database Counters [{#INSTANCE}]: Active database read operations latency','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00234xiybnhwmsxi',1,'Admin',1672319409,'192.168.64.1',2,36,32564,NULL,'Database Counters [{#INSTANCE}]: Passive database read operations latency','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00244xiyxcoh5l9n',1,'Admin',1672319409,'192.168.64.1',2,36,32565,NULL,'Database Counters [{#INSTANCE}]: Active database write operations per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00254xiyv6002sot',1,'Admin',1672319409,'192.168.64.1',2,36,32566,NULL,'Database Counters [{#INSTANCE}]: Active database write operations latency','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00264xiyqa90hdo4',1,'Admin',1672319409,'192.168.64.1',2,36,32567,NULL,'Database Counters [{#INSTANCE}]: Passive database write operations latency','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00274xiyeb38eewx',1,'Admin',1672319409,'192.168.64.1',2,36,32568,NULL,'Information Store [{#INSTANCE}]: Active mailboxes count','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00284xiyp761qisc',1,'Admin',1672319409,'192.168.64.1',2,36,32569,NULL,'Information Store [{#INSTANCE}]: Database state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu00294xiyfd9pwrrr',1,'Admin',1672319409,'192.168.64.1',2,36,32570,NULL,'Information Store [{#INSTANCE}]: RPC requests latency','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu002a4xiyp5tg5vkj',1,'Admin',1672319409,'192.168.64.1',2,36,32571,NULL,'Information Store [{#INSTANCE}]: RPC requests per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu002b4xiyyyo8752s',1,'Admin',1672319409,'192.168.64.1',2,36,32572,NULL,'Information Store [{#INSTANCE}]: RPC requests total','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu002c4xiy29oer3ql',1,'Admin',1672319409,'192.168.64.1',2,36,32573,NULL,'Domain Controller [{#INSTANCE}]: Read time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu002d4xiyzxx0cg7c',1,'Admin',1672319409,'192.168.64.1',2,36,32574,NULL,'Domain Controller [{#INSTANCE}]: Search time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu002e4xiy1d6sfc1c',1,'Admin',1672319409,'192.168.64.1',2,36,32575,NULL,'Web Service [{#INSTANCE}]: Current connections','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu002f4xiyqwhmfe24',1,'Admin',1672319409,'192.168.64.1',2,36,33635,NULL,'Sharepoint: Created ({#SHAREPOINT.LLD.FULL_PATH})','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu002g4xiyn1ssix9t',1,'Admin',1672319409,'192.168.64.1',2,36,33636,NULL,'Sharepoint: Modified ({#SHAREPOINT.LLD.FULL_PATH})','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcu002h4xiyvxq6gu18',1,'Admin',1672319409,'192.168.64.1',2,36,33637,NULL,'Sharepoint: Size ({#SHAREPOINT.LLD.FULL_PATH})','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv002i4xiyb0v2hxrc',1,'Admin',1672319409,'192.168.64.1',2,36,34164,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv002j4xiyz3zacnvi',1,'Admin',1672319409,'192.168.64.1',2,36,34165,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv002k4xiymcw744pq',1,'Admin',1672319409,'192.168.64.1',2,36,34166,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv002l4xiyy7lc2ib2',1,'Admin',1672319409,'192.168.64.1',2,36,34167,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv002m4xiyx6mqwbpb',1,'Admin',1672319409,'192.168.64.1',2,36,34168,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv002n4xiy7nsv70ze',1,'Admin',1672319409,'192.168.64.1',2,36,34169,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv002o4xiym0t9lxil',1,'Admin',1672319409,'192.168.64.1',2,36,34170,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv002p4xiypcbwq2f3',1,'Admin',1672319409,'192.168.64.1',2,36,34171,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv002q4xiy6uyjl9fj',1,'Admin',1672319409,'192.168.64.1',2,36,34172,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv002r4xiynjpjpicj',1,'Admin',1672319409,'192.168.64.1',2,36,34173,NULL,'{#FSNAME}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv002s4xiyzhf5z3a6',1,'Admin',1672319409,'192.168.64.1',2,36,34174,NULL,'{#FSNAME}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv002t4xiy79ozt46m',1,'Admin',1672319409,'192.168.64.1',2,36,34175,NULL,'{#FSNAME}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv002u4xiyf209v1kv',1,'Admin',1672319409,'192.168.64.1',2,36,34176,NULL,'{#MEMNAME}: Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv002v4xiyrnwzth7l',1,'Admin',1672319409,'192.168.64.1',2,36,34177,NULL,'{#MEMNAME}: Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv002w4xiycivaz49n',1,'Admin',1672319409,'192.168.64.1',2,36,34178,NULL,'{#MEMNAME}: Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv002x4xiy1ho0syhc',1,'Admin',1672319409,'192.168.64.1',2,36,36861,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv002y4xiykadi6inr',1,'Admin',1672319409,'192.168.64.1',2,36,36862,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv002z4xiyzavsb96h',1,'Admin',1672319409,'192.168.64.1',2,36,36863,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00304xiyd6k1gjkc',1,'Admin',1672319409,'192.168.64.1',2,36,36864,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00314xiyy1coxht1',1,'Admin',1672319409,'192.168.64.1',2,36,36865,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00324xiydd6lj9ms',1,'Admin',1672319409,'192.168.64.1',2,36,36866,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00334xiy3qpqnwqs',1,'Admin',1672319409,'192.168.64.1',2,36,36867,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00344xiyi572npyf',1,'Admin',1672319409,'192.168.64.1',2,36,36868,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00354xiyfypguuyx',1,'Admin',1672319409,'192.168.64.1',2,36,36869,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00364xiy5p0j80dr',1,'Admin',1672319409,'192.168.64.1',2,36,36870,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00374xiyuj10e3ll',1,'Admin',1672319409,'192.168.64.1',2,36,36871,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00384xiy95ag4d2o',1,'Admin',1672319409,'192.168.64.1',2,36,36872,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00394xiydoq86688',1,'Admin',1672319409,'192.168.64.1',2,36,36873,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003a4xiyee24cyu1',1,'Admin',1672319409,'192.168.64.1',2,36,36874,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003b4xiyh7zv1zc6',1,'Admin',1672319409,'192.168.64.1',2,36,36875,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003c4xiyitbgmsta',1,'Admin',1672319409,'192.168.64.1',2,36,36876,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003d4xiymqdfzin9',1,'Admin',1672319409,'192.168.64.1',2,36,36877,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003e4xiyk7wg34k0',1,'Admin',1672319409,'192.168.64.1',2,36,36878,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003f4xiychaykpwy',1,'Admin',1672319409,'192.168.64.1',2,36,36879,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003g4xiyl38c9eg2',1,'Admin',1672319409,'192.168.64.1',2,36,36915,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003h4xiys2ddqlc8',1,'Admin',1672319409,'192.168.64.1',2,36,36916,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003i4xiyiegw5va0',1,'Admin',1672319409,'192.168.64.1',2,36,36917,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003j4xiy5zas31mz',1,'Admin',1672319409,'192.168.64.1',2,36,36918,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003k4xiy79iukbh5',1,'Admin',1672319409,'192.168.64.1',2,36,36919,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003l4xiyp6i780iz',1,'Admin',1672319409,'192.168.64.1',2,36,36920,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003m4xiyncwmoghw',1,'Admin',1672319409,'192.168.64.1',2,36,36921,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003n4xiyvo956qq9',1,'Admin',1672319409,'192.168.64.1',2,36,36922,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003o4xiyfh8e3omw',1,'Admin',1672319409,'192.168.64.1',2,36,36923,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003p4xiyt7jou0yr',1,'Admin',1672319409,'192.168.64.1',2,36,36924,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003q4xiyps0qd4hg',1,'Admin',1672319409,'192.168.64.1',2,36,36925,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003r4xiyx18mtxq1',1,'Admin',1672319409,'192.168.64.1',2,36,36926,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003s4xiywd6eliyb',1,'Admin',1672319409,'192.168.64.1',2,36,36927,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003t4xiyrcwaczis',1,'Admin',1672319409,'192.168.64.1',2,36,36928,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003u4xiylxxegllq',1,'Admin',1672319409,'192.168.64.1',2,36,36929,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003v4xiymnjryrpt',1,'Admin',1672319409,'192.168.64.1',2,36,36930,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003w4xiy3juteshb',1,'Admin',1672319409,'192.168.64.1',2,36,36931,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003x4xiye35uri89',1,'Admin',1672319409,'192.168.64.1',2,36,36932,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003y4xiy3w0i8e3d',1,'Admin',1672319409,'192.168.64.1',2,36,36933,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv003z4xiyexzd77qq',1,'Admin',1672319409,'192.168.64.1',2,36,36969,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00404xiyp0ds75gl',1,'Admin',1672319409,'192.168.64.1',2,36,36970,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00414xiyr3e1w0dn',1,'Admin',1672319409,'192.168.64.1',2,36,36971,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00424xiyqbrsiv8z',1,'Admin',1672319409,'192.168.64.1',2,36,36972,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00434xiyoyewh0x8',1,'Admin',1672319409,'192.168.64.1',2,36,36973,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00444xiyfje62hzt',1,'Admin',1672319409,'192.168.64.1',2,36,36974,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00454xiyqflt013h',1,'Admin',1672319409,'192.168.64.1',2,36,36975,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00464xiy2lu0886o',1,'Admin',1672319409,'192.168.64.1',2,36,36976,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00474xiyx47psxcd',1,'Admin',1672319409,'192.168.64.1',2,36,36977,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00484xiy05cl7646',1,'Admin',1672319409,'192.168.64.1',2,36,36978,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00494xiygzql10a4',1,'Admin',1672319409,'192.168.64.1',2,36,36979,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004a4xiyt1g2rlh1',1,'Admin',1672319409,'192.168.64.1',2,36,36980,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004b4xiybfqrcpaf',1,'Admin',1672319409,'192.168.64.1',2,36,36981,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004c4xiysb8sgnab',1,'Admin',1672319409,'192.168.64.1',2,36,36982,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004d4xiy7frdny76',1,'Admin',1672319409,'192.168.64.1',2,36,36983,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004e4xiyx5pl910f',1,'Admin',1672319409,'192.168.64.1',2,36,36984,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004f4xiyht1rg7mj',1,'Admin',1672319409,'192.168.64.1',2,36,36985,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004g4xiyvz34t9u9',1,'Admin',1672319409,'192.168.64.1',2,36,36986,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004h4xiyceuhmk54',1,'Admin',1672319409,'192.168.64.1',2,36,36987,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004i4xiyfvtueihq',1,'Admin',1672319409,'192.168.64.1',2,36,37023,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004j4xiyhph0gbzj',1,'Admin',1672319409,'192.168.64.1',2,36,37024,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004k4xiybgi223x4',1,'Admin',1672319409,'192.168.64.1',2,36,37025,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004l4xiy25hom3pe',1,'Admin',1672319409,'192.168.64.1',2,36,37026,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004m4xiyp3go3pdy',1,'Admin',1672319409,'192.168.64.1',2,36,37027,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004n4xiyb41unizt',1,'Admin',1672319409,'192.168.64.1',2,36,37028,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004o4xiyr5s807ew',1,'Admin',1672319409,'192.168.64.1',2,36,37029,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004p4xiys729f37i',1,'Admin',1672319409,'192.168.64.1',2,36,37030,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004q4xiyjc2yvpew',1,'Admin',1672319409,'192.168.64.1',2,36,37031,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004r4xiyzchnpdk3',1,'Admin',1672319409,'192.168.64.1',2,36,37032,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004s4xiyayajlv7j',1,'Admin',1672319409,'192.168.64.1',2,36,37033,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004t4xiyc5uu51fw',1,'Admin',1672319409,'192.168.64.1',2,36,37034,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004u4xiyihtxq199',1,'Admin',1672319409,'192.168.64.1',2,36,37035,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004v4xiytw6c7rau',1,'Admin',1672319409,'192.168.64.1',2,36,37036,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004w4xiyid31hc4d',1,'Admin',1672319409,'192.168.64.1',2,36,37037,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004x4xiym2k3uobk',1,'Admin',1672319409,'192.168.64.1',2,36,37038,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004y4xiyjuir5qcj',1,'Admin',1672319409,'192.168.64.1',2,36,37039,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv004z4xiy1aiajybo',1,'Admin',1672319409,'192.168.64.1',2,36,37040,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00504xiycuyq1kd9',1,'Admin',1672319409,'192.168.64.1',2,36,37041,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00514xiy6xc8v24r',1,'Admin',1672319409,'192.168.64.1',2,36,37077,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00524xiyeu6gf4jk',1,'Admin',1672319409,'192.168.64.1',2,36,37078,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00534xiy962hv0ml',1,'Admin',1672319409,'192.168.64.1',2,36,37079,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00544xiybo151dd9',1,'Admin',1672319409,'192.168.64.1',2,36,37080,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00554xiyati6l0p6',1,'Admin',1672319409,'192.168.64.1',2,36,37081,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00564xiy22um5q3l',1,'Admin',1672319409,'192.168.64.1',2,36,37082,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00574xiy02ruh7ju',1,'Admin',1672319409,'192.168.64.1',2,36,37083,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00584xiyvxxlsgwu',1,'Admin',1672319409,'192.168.64.1',2,36,37084,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00594xiyadkxkf3f',1,'Admin',1672319409,'192.168.64.1',2,36,37085,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005a4xiy10br4b9a',1,'Admin',1672319409,'192.168.64.1',2,36,37086,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005b4xiyy4iz1qbs',1,'Admin',1672319409,'192.168.64.1',2,36,37087,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005c4xiyxo1t1gah',1,'Admin',1672319409,'192.168.64.1',2,36,37088,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005d4xiyq6qok0tf',1,'Admin',1672319409,'192.168.64.1',2,36,37089,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005e4xiyznzkkksg',1,'Admin',1672319409,'192.168.64.1',2,36,37090,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005f4xiytwwmu4mu',1,'Admin',1672319409,'192.168.64.1',2,36,37091,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005g4xiygegcri4b',1,'Admin',1672319409,'192.168.64.1',2,36,37092,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005h4xiyy3iugx7q',1,'Admin',1672319409,'192.168.64.1',2,36,37093,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005i4xiy5vafs49d',1,'Admin',1672319409,'192.168.64.1',2,36,37094,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005j4xiye7de7q7m',1,'Admin',1672319409,'192.168.64.1',2,36,37095,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005k4xiyes174exe',1,'Admin',1672319409,'192.168.64.1',2,36,37131,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005l4xiyuy7k0zwf',1,'Admin',1672319409,'192.168.64.1',2,36,37132,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005m4xiynhujhi10',1,'Admin',1672319409,'192.168.64.1',2,36,37133,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005n4xiytvzq490f',1,'Admin',1672319409,'192.168.64.1',2,36,37134,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005o4xiydlbpuqx2',1,'Admin',1672319409,'192.168.64.1',2,36,37135,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005p4xiyjzy1xm0t',1,'Admin',1672319409,'192.168.64.1',2,36,37136,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005q4xiyb5tc5z5j',1,'Admin',1672319409,'192.168.64.1',2,36,37137,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005r4xiy20szgsor',1,'Admin',1672319409,'192.168.64.1',2,36,37138,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005s4xiybzan8bw9',1,'Admin',1672319409,'192.168.64.1',2,36,37139,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005t4xiyf5z20hex',1,'Admin',1672319409,'192.168.64.1',2,36,37140,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005u4xiyzcb3cilj',1,'Admin',1672319409,'192.168.64.1',2,36,37141,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005v4xiyg57ok3yn',1,'Admin',1672319409,'192.168.64.1',2,36,37142,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005w4xiy3632llqg',1,'Admin',1672319409,'192.168.64.1',2,36,37143,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005x4xiyawb953ch',1,'Admin',1672319409,'192.168.64.1',2,36,37144,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005y4xiysrizk5we',1,'Admin',1672319409,'192.168.64.1',2,36,37145,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv005z4xiysl4lt03a',1,'Admin',1672319409,'192.168.64.1',2,36,37146,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00604xiy25e4hogo',1,'Admin',1672319409,'192.168.64.1',2,36,37147,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00614xiy3mlktm6n',1,'Admin',1672319409,'192.168.64.1',2,36,37148,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00624xiyff5at3gp',1,'Admin',1672319409,'192.168.64.1',2,36,37149,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00634xiyv2i655bn',1,'Admin',1672319409,'192.168.64.1',2,36,37185,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00644xiypmv6c7uk',1,'Admin',1672319409,'192.168.64.1',2,36,37186,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00654xiyqg7ofdfk',1,'Admin',1672319409,'192.168.64.1',2,36,37187,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00664xiyus1vc8ub',1,'Admin',1672319409,'192.168.64.1',2,36,37188,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00674xiyxdybj19f',1,'Admin',1672319409,'192.168.64.1',2,36,37189,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00684xiywgtelmej',1,'Admin',1672319409,'192.168.64.1',2,36,37190,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00694xiy550on1zj',1,'Admin',1672319409,'192.168.64.1',2,36,37191,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006a4xiyoyim12vd',1,'Admin',1672319409,'192.168.64.1',2,36,37192,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006b4xiy8afk6ala',1,'Admin',1672319409,'192.168.64.1',2,36,37193,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006c4xiytcf99ece',1,'Admin',1672319409,'192.168.64.1',2,36,37194,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006d4xiyvr2xjs0b',1,'Admin',1672319409,'192.168.64.1',2,36,37195,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006e4xiy6vmbqfth',1,'Admin',1672319409,'192.168.64.1',2,36,37196,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006f4xiyb91fdfeb',1,'Admin',1672319409,'192.168.64.1',2,36,37197,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006g4xiyotaw0qh4',1,'Admin',1672319409,'192.168.64.1',2,36,37198,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006h4xiyerzacb4q',1,'Admin',1672319409,'192.168.64.1',2,36,37199,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006i4xiyevmnhavc',1,'Admin',1672319409,'192.168.64.1',2,36,37200,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006j4xiyl7mxyti5',1,'Admin',1672319409,'192.168.64.1',2,36,37201,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006k4xiy2lzcosl6',1,'Admin',1672319409,'192.168.64.1',2,36,37202,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006l4xiy3mtenrwj',1,'Admin',1672319409,'192.168.64.1',2,36,37203,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006m4xiyuomzh1jz',1,'Admin',1672319409,'192.168.64.1',2,36,37239,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006n4xiyazhfds52',1,'Admin',1672319409,'192.168.64.1',2,36,37240,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006o4xiyqr06x1xp',1,'Admin',1672319409,'192.168.64.1',2,36,37241,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006p4xiyim47eld2',1,'Admin',1672319409,'192.168.64.1',2,36,37242,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006q4xiyu0fjg77e',1,'Admin',1672319409,'192.168.64.1',2,36,37243,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006r4xiyps414olf',1,'Admin',1672319409,'192.168.64.1',2,36,37244,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006s4xiyb3r3n9kc',1,'Admin',1672319409,'192.168.64.1',2,36,37245,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006t4xiy5sg1fpa9',1,'Admin',1672319409,'192.168.64.1',2,36,37246,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006u4xiyv22i61sx',1,'Admin',1672319409,'192.168.64.1',2,36,37247,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006v4xiyi92ygs0g',1,'Admin',1672319409,'192.168.64.1',2,36,37248,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006w4xiy5jwg6dle',1,'Admin',1672319409,'192.168.64.1',2,36,37249,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006x4xiy1y1fa2vo',1,'Admin',1672319409,'192.168.64.1',2,36,37250,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006y4xiy97ljic7v',1,'Admin',1672319409,'192.168.64.1',2,36,37251,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv006z4xiy0gdfss3w',1,'Admin',1672319409,'192.168.64.1',2,36,37252,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00704xiyu2fx4c9a',1,'Admin',1672319409,'192.168.64.1',2,36,37253,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00714xiy38uixpwu',1,'Admin',1672319409,'192.168.64.1',2,36,37254,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00724xiyduv3p4qw',1,'Admin',1672319409,'192.168.64.1',2,36,37255,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00734xiyrdtikwc3',1,'Admin',1672319409,'192.168.64.1',2,36,37256,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00744xiym85g4pmx',1,'Admin',1672319409,'192.168.64.1',2,36,37257,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00754xiylht30gvu',1,'Admin',1672319409,'192.168.64.1',2,36,37293,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00764xiye7yhrxz6',1,'Admin',1672319409,'192.168.64.1',2,36,37294,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00774xiywejgr8yf',1,'Admin',1672319409,'192.168.64.1',2,36,37295,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00784xiy43lcnu7t',1,'Admin',1672319409,'192.168.64.1',2,36,37296,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00794xiyazk07hyo',1,'Admin',1672319409,'192.168.64.1',2,36,37297,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007a4xiy6jkbcosx',1,'Admin',1672319409,'192.168.64.1',2,36,37298,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007b4xiy8y9pujhi',1,'Admin',1672319409,'192.168.64.1',2,36,37299,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007c4xiyes0x7dk5',1,'Admin',1672319409,'192.168.64.1',2,36,37300,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007d4xiyx9vciaf4',1,'Admin',1672319409,'192.168.64.1',2,36,37301,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007e4xiyq35a1hdb',1,'Admin',1672319409,'192.168.64.1',2,36,37302,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007f4xiy3why40o1',1,'Admin',1672319409,'192.168.64.1',2,36,37303,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007g4xiykbhwga9a',1,'Admin',1672319409,'192.168.64.1',2,36,37304,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007h4xiyg7uev3qq',1,'Admin',1672319409,'192.168.64.1',2,36,37305,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007i4xiya9dhq3a6',1,'Admin',1672319409,'192.168.64.1',2,36,37306,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007j4xiyxo5lrzsf',1,'Admin',1672319409,'192.168.64.1',2,36,37307,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007k4xiy8lui7sic',1,'Admin',1672319409,'192.168.64.1',2,36,37308,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007l4xiyv1yddouz',1,'Admin',1672319409,'192.168.64.1',2,36,37309,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007m4xiyycvs2i7m',1,'Admin',1672319409,'192.168.64.1',2,36,37310,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007n4xiy0b7oe9rk',1,'Admin',1672319409,'192.168.64.1',2,36,37311,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007o4xiy5pf8xz19',1,'Admin',1672319409,'192.168.64.1',2,36,37347,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007p4xiyhnisa7db',1,'Admin',1672319409,'192.168.64.1',2,36,37348,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007q4xiymllntofz',1,'Admin',1672319409,'192.168.64.1',2,36,37349,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007r4xiywf7xteow',1,'Admin',1672319409,'192.168.64.1',2,36,37350,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007s4xiy3fuizkbz',1,'Admin',1672319409,'192.168.64.1',2,36,37351,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007t4xiye3ccjcwe',1,'Admin',1672319409,'192.168.64.1',2,36,37352,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007u4xiy9tlrsydm',1,'Admin',1672319409,'192.168.64.1',2,36,37353,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007v4xiyb5ym1kqu',1,'Admin',1672319409,'192.168.64.1',2,36,37354,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007w4xiy0udgbscp',1,'Admin',1672319409,'192.168.64.1',2,36,37355,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007x4xiykcrs6ay5',1,'Admin',1672319409,'192.168.64.1',2,36,37356,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007y4xiyiliuym62',1,'Admin',1672319409,'192.168.64.1',2,36,37357,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv007z4xiyc3o60d7w',1,'Admin',1672319409,'192.168.64.1',2,36,37358,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00804xiyy6mwjty1',1,'Admin',1672319409,'192.168.64.1',2,36,37359,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00814xiy90tkrnvk',1,'Admin',1672319409,'192.168.64.1',2,36,37360,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00824xiyrb1hs153',1,'Admin',1672319409,'192.168.64.1',2,36,37361,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00834xiy0750y1mv',1,'Admin',1672319409,'192.168.64.1',2,36,37362,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00844xiyd914h7if',1,'Admin',1672319409,'192.168.64.1',2,36,37363,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00854xiyvj6o9mi5',1,'Admin',1672319409,'192.168.64.1',2,36,37364,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00864xiyekeo7uq5',1,'Admin',1672319409,'192.168.64.1',2,36,37365,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00874xiyk2d5sjgm',1,'Admin',1672319409,'192.168.64.1',2,36,37401,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00884xiyd4sfk1u6',1,'Admin',1672319409,'192.168.64.1',2,36,37402,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00894xiyv6mojaxl',1,'Admin',1672319409,'192.168.64.1',2,36,37403,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008a4xiyfqqffy8h',1,'Admin',1672319409,'192.168.64.1',2,36,37404,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008b4xiyzy44t4bm',1,'Admin',1672319409,'192.168.64.1',2,36,37405,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008c4xiy32z4l2eq',1,'Admin',1672319409,'192.168.64.1',2,36,37406,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008d4xiyvuur6vbr',1,'Admin',1672319409,'192.168.64.1',2,36,37407,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008e4xiytki3xf3g',1,'Admin',1672319409,'192.168.64.1',2,36,37408,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008f4xiy75qwxqqo',1,'Admin',1672319409,'192.168.64.1',2,36,37409,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008g4xiygk3m7j8g',1,'Admin',1672319409,'192.168.64.1',2,36,37410,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008h4xiyl2ng74hb',1,'Admin',1672319409,'192.168.64.1',2,36,37411,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008i4xiywr6hpcsg',1,'Admin',1672319409,'192.168.64.1',2,36,37412,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008j4xiybnqg1g80',1,'Admin',1672319409,'192.168.64.1',2,36,37413,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008k4xiy9qnjnvly',1,'Admin',1672319409,'192.168.64.1',2,36,37414,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008l4xiy2w9tqa6o',1,'Admin',1672319409,'192.168.64.1',2,36,37415,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008m4xiy5d2wzlze',1,'Admin',1672319409,'192.168.64.1',2,36,37416,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008n4xiyibznmjs7',1,'Admin',1672319409,'192.168.64.1',2,36,37417,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008o4xiybg6qpomm',1,'Admin',1672319409,'192.168.64.1',2,36,37418,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008p4xiypizxtd6r',1,'Admin',1672319409,'192.168.64.1',2,36,37419,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008q4xiyc4up876i',1,'Admin',1672319409,'192.168.64.1',2,36,37455,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008r4xiyn1u8s34v',1,'Admin',1672319409,'192.168.64.1',2,36,37456,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008s4xiy0sbqvcuw',1,'Admin',1672319409,'192.168.64.1',2,36,37457,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008t4xiyy0ni3u2k',1,'Admin',1672319409,'192.168.64.1',2,36,37458,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008u4xiytvnbez6k',1,'Admin',1672319409,'192.168.64.1',2,36,37459,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008v4xiycitcxpn7',1,'Admin',1672319409,'192.168.64.1',2,36,37460,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008w4xiykiw7h84t',1,'Admin',1672319409,'192.168.64.1',2,36,37461,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008x4xiy4s1novxj',1,'Admin',1672319409,'192.168.64.1',2,36,37462,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008y4xiyi3ke5qo4',1,'Admin',1672319409,'192.168.64.1',2,36,37463,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv008z4xiytgaw2vuy',1,'Admin',1672319409,'192.168.64.1',2,36,37464,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00904xiyvas50g6v',1,'Admin',1672319409,'192.168.64.1',2,36,37465,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00914xiyuuwe34de',1,'Admin',1672319409,'192.168.64.1',2,36,37466,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00924xiy9r1msghm',1,'Admin',1672319409,'192.168.64.1',2,36,37467,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00934xiydo8owt3u',1,'Admin',1672319409,'192.168.64.1',2,36,37468,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00944xiy6i7g4bkf',1,'Admin',1672319409,'192.168.64.1',2,36,37469,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00954xiywq34jjid',1,'Admin',1672319409,'192.168.64.1',2,36,37470,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00964xiyqdzuarxn',1,'Admin',1672319409,'192.168.64.1',2,36,37471,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00974xiynmdvlgi8',1,'Admin',1672319409,'192.168.64.1',2,36,37472,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00984xiy524rzhs2',1,'Admin',1672319409,'192.168.64.1',2,36,37473,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00994xiyuqnw9eo8',1,'Admin',1672319409,'192.168.64.1',2,36,37509,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009a4xiyh9c33mix',1,'Admin',1672319409,'192.168.64.1',2,36,37510,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009b4xiyskzwfw31',1,'Admin',1672319409,'192.168.64.1',2,36,37511,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009c4xiy3gbucvd7',1,'Admin',1672319409,'192.168.64.1',2,36,37512,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009d4xiywe8506ob',1,'Admin',1672319409,'192.168.64.1',2,36,37513,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009e4xiyeyh34n2c',1,'Admin',1672319409,'192.168.64.1',2,36,37514,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009f4xiya6aaoew4',1,'Admin',1672319409,'192.168.64.1',2,36,37515,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009g4xiyvzxjonnp',1,'Admin',1672319409,'192.168.64.1',2,36,37516,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009h4xiyo3lyxw72',1,'Admin',1672319409,'192.168.64.1',2,36,37517,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009i4xiydxfuxsov',1,'Admin',1672319409,'192.168.64.1',2,36,37518,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009j4xiynteacf7x',1,'Admin',1672319409,'192.168.64.1',2,36,37519,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009k4xiy2lso9r7d',1,'Admin',1672319409,'192.168.64.1',2,36,37520,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009l4xiy1bvs7qk1',1,'Admin',1672319409,'192.168.64.1',2,36,37521,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009m4xiybwifekbp',1,'Admin',1672319409,'192.168.64.1',2,36,37522,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009n4xiyyi8mz55a',1,'Admin',1672319409,'192.168.64.1',2,36,37523,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009o4xiyjurhfooz',1,'Admin',1672319409,'192.168.64.1',2,36,37524,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009p4xiyigi1xa85',1,'Admin',1672319409,'192.168.64.1',2,36,37525,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009q4xiypa91ne59',1,'Admin',1672319409,'192.168.64.1',2,36,37526,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009r4xiygld1nxjm',1,'Admin',1672319409,'192.168.64.1',2,36,37527,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009s4xiyglsmc7tg',1,'Admin',1672319409,'192.168.64.1',2,36,37563,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009t4xiy9t18u8x2',1,'Admin',1672319409,'192.168.64.1',2,36,37564,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009u4xiyx0t9wsvq',1,'Admin',1672319409,'192.168.64.1',2,36,37565,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009v4xiyx3mt9ckl',1,'Admin',1672319409,'192.168.64.1',2,36,37566,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009w4xiyga8aghsx',1,'Admin',1672319409,'192.168.64.1',2,36,37567,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009x4xiyywjg1r7g',1,'Admin',1672319409,'192.168.64.1',2,36,37568,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009y4xiyc8rvgkgp',1,'Admin',1672319409,'192.168.64.1',2,36,37569,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv009z4xiyfb31dwmb',1,'Admin',1672319409,'192.168.64.1',2,36,37570,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00a04xiyq7hds2o5',1,'Admin',1672319409,'192.168.64.1',2,36,37571,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00a14xiyt3e2xbi3',1,'Admin',1672319409,'192.168.64.1',2,36,37572,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00a24xiypjnwccyb',1,'Admin',1672319409,'192.168.64.1',2,36,37573,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00a34xiy5fg6b587',1,'Admin',1672319409,'192.168.64.1',2,36,37574,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00a44xiyeqva251m',1,'Admin',1672319409,'192.168.64.1',2,36,37575,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00a54xiyzopp4y0g',1,'Admin',1672319409,'192.168.64.1',2,36,37576,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00a64xiy97oj661b',1,'Admin',1672319409,'192.168.64.1',2,36,37577,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00a74xiyx86umd5c',1,'Admin',1672319409,'192.168.64.1',2,36,37578,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00a84xiy59zvxoy2',1,'Admin',1672319409,'192.168.64.1',2,36,37579,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00a94xiyz5wxq6u3',1,'Admin',1672319409,'192.168.64.1',2,36,37580,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00aa4xiy1luqg18a',1,'Admin',1672319409,'192.168.64.1',2,36,37581,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00ab4xiynf8aelpq',1,'Admin',1672319409,'192.168.64.1',2,36,37617,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00ac4xiybmzwk0kb',1,'Admin',1672319409,'192.168.64.1',2,36,37618,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00ad4xiy02mpcj1k',1,'Admin',1672319409,'192.168.64.1',2,36,37619,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00ae4xiyshqhc65b',1,'Admin',1672319409,'192.168.64.1',2,36,37620,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00af4xiyq82us6lf',1,'Admin',1672319409,'192.168.64.1',2,36,37621,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00ag4xiyizce4qxh',1,'Admin',1672319409,'192.168.64.1',2,36,37622,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00ah4xiyy6p9gawg',1,'Admin',1672319409,'192.168.64.1',2,36,37623,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00ai4xiy1vpag5lz',1,'Admin',1672319409,'192.168.64.1',2,36,37624,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00aj4xiyww94g21a',1,'Admin',1672319409,'192.168.64.1',2,36,37625,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00ak4xiypjj1a27m',1,'Admin',1672319409,'192.168.64.1',2,36,37626,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00al4xiy4qbkef62',1,'Admin',1672319409,'192.168.64.1',2,36,37627,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00am4xiyuf3rvxw9',1,'Admin',1672319409,'192.168.64.1',2,36,37628,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00an4xiylsa319ml',1,'Admin',1672319409,'192.168.64.1',2,36,37629,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00ao4xiyc01680y4',1,'Admin',1672319409,'192.168.64.1',2,36,37630,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00ap4xiyf6jg8ywg',1,'Admin',1672319409,'192.168.64.1',2,36,37631,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00aq4xiydedoqcp2',1,'Admin',1672319409,'192.168.64.1',2,36,37632,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00ar4xiy41jxsqjc',1,'Admin',1672319409,'192.168.64.1',2,36,37633,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00as4xiy4pi1lqb9',1,'Admin',1672319409,'192.168.64.1',2,36,37634,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00at4xiyf360164y',1,'Admin',1672319409,'192.168.64.1',2,36,37635,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00au4xiymk94dpsh',1,'Admin',1672319409,'192.168.64.1',2,36,37671,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00av4xiyo2wow3e9',1,'Admin',1672319409,'192.168.64.1',2,36,37672,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00aw4xiymhlfsbf8',1,'Admin',1672319409,'192.168.64.1',2,36,37673,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00ax4xiy559xl0gw',1,'Admin',1672319409,'192.168.64.1',2,36,37674,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00ay4xiyxo4wbo1n',1,'Admin',1672319409,'192.168.64.1',2,36,37675,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00az4xiynr1pxvjn',1,'Admin',1672319409,'192.168.64.1',2,36,37676,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00b04xiyjt8oglu1',1,'Admin',1672319409,'192.168.64.1',2,36,37677,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00b14xiykmxacgpl',1,'Admin',1672319409,'192.168.64.1',2,36,37678,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00b24xiytl484gl5',1,'Admin',1672319409,'192.168.64.1',2,36,37679,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00b34xiyyrk5936k',1,'Admin',1672319409,'192.168.64.1',2,36,37680,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00b44xiynn0f62xu',1,'Admin',1672319409,'192.168.64.1',2,36,37681,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00b54xiy4w2uq2v8',1,'Admin',1672319409,'192.168.64.1',2,36,37682,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00b64xiysl7eyqti',1,'Admin',1672319409,'192.168.64.1',2,36,37683,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00b74xiycss6immu',1,'Admin',1672319409,'192.168.64.1',2,36,37684,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00b84xiyc89i6xz0',1,'Admin',1672319409,'192.168.64.1',2,36,37685,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00b94xiy82shfhm5',1,'Admin',1672319409,'192.168.64.1',2,36,37686,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00ba4xiy7gys8hg9',1,'Admin',1672319409,'192.168.64.1',2,36,37687,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bb4xiy6wmiey3e',1,'Admin',1672319409,'192.168.64.1',2,36,37688,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bc4xiypvldktgz',1,'Admin',1672319409,'192.168.64.1',2,36,37689,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bd4xiytbop075n',1,'Admin',1672319409,'192.168.64.1',2,36,37725,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00be4xiy62axdhrq',1,'Admin',1672319409,'192.168.64.1',2,36,37726,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bf4xiypqlqmaxs',1,'Admin',1672319409,'192.168.64.1',2,36,37727,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bg4xiykxoh0liw',1,'Admin',1672319409,'192.168.64.1',2,36,37728,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bh4xiylhw593yh',1,'Admin',1672319409,'192.168.64.1',2,36,37729,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bi4xiy7qnwddle',1,'Admin',1672319409,'192.168.64.1',2,36,37730,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bj4xiy0kaawfot',1,'Admin',1672319409,'192.168.64.1',2,36,37731,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bk4xiy3acyh0xq',1,'Admin',1672319409,'192.168.64.1',2,36,37732,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bl4xiydpyz1vny',1,'Admin',1672319409,'192.168.64.1',2,36,37733,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bm4xiyfkw7gdms',1,'Admin',1672319409,'192.168.64.1',2,36,37734,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bn4xiyodsfdbpb',1,'Admin',1672319409,'192.168.64.1',2,36,37735,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bo4xiy3rzohi23',1,'Admin',1672319409,'192.168.64.1',2,36,37736,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bp4xiys7y0wbss',1,'Admin',1672319409,'192.168.64.1',2,36,37737,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bq4xiy5fpbw3te',1,'Admin',1672319409,'192.168.64.1',2,36,37738,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00br4xiyef0z6b38',1,'Admin',1672319409,'192.168.64.1',2,36,37739,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bs4xiyg73f6j7l',1,'Admin',1672319409,'192.168.64.1',2,36,37740,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bt4xiyu4rutp4f',1,'Admin',1672319409,'192.168.64.1',2,36,37741,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bu4xiybioysgvd',1,'Admin',1672319409,'192.168.64.1',2,36,37742,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bv4xiytu4cr4w9',1,'Admin',1672319409,'192.168.64.1',2,36,37743,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bw4xiypyr3npgq',1,'Admin',1672319409,'192.168.64.1',2,36,37779,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bx4xiyrri3yaey',1,'Admin',1672319409,'192.168.64.1',2,36,37780,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00by4xiykjw77tqn',1,'Admin',1672319409,'192.168.64.1',2,36,37781,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00bz4xiy38o41at7',1,'Admin',1672319409,'192.168.64.1',2,36,37782,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00c04xiy7eucdioc',1,'Admin',1672319409,'192.168.64.1',2,36,37783,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00c14xiyhg5yg9pv',1,'Admin',1672319409,'192.168.64.1',2,36,37784,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00c24xiyzhtew8h4',1,'Admin',1672319409,'192.168.64.1',2,36,37785,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00c34xiyznairi12',1,'Admin',1672319409,'192.168.64.1',2,36,37786,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00c44xiyhml6sf2n',1,'Admin',1672319409,'192.168.64.1',2,36,37787,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00c54xiym4ybsjts',1,'Admin',1672319409,'192.168.64.1',2,36,37788,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00c64xiybtyoi9ra',1,'Admin',1672319409,'192.168.64.1',2,36,37789,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00c74xiyzun6y5mj',1,'Admin',1672319409,'192.168.64.1',2,36,37790,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00c84xiyrqwvqfkc',1,'Admin',1672319409,'192.168.64.1',2,36,37791,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00c94xiyif9fn7vn',1,'Admin',1672319409,'192.168.64.1',2,36,37792,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00ca4xiy068spysl',1,'Admin',1672319409,'192.168.64.1',2,36,37793,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00cb4xiyv41twvlz',1,'Admin',1672319409,'192.168.64.1',2,36,37794,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00cc4xiy9nea2j7b',1,'Admin',1672319409,'192.168.64.1',2,36,37795,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00cd4xiy0oxxrnly',1,'Admin',1672319409,'192.168.64.1',2,36,37796,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00ce4xiyx16me0ie',1,'Admin',1672319409,'192.168.64.1',2,36,37797,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00cf4xiysqokdm3v',1,'Admin',1672319409,'192.168.64.1',2,36,37833,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00cg4xiy41z2js9m',1,'Admin',1672319409,'192.168.64.1',2,36,37834,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00ch4xiyjayptcwj',1,'Admin',1672319409,'192.168.64.1',2,36,37835,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00ci4xiy58aiekdt',1,'Admin',1672319409,'192.168.64.1',2,36,37836,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00cj4xiyxjxsn5yz',1,'Admin',1672319409,'192.168.64.1',2,36,37837,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00ck4xiy2ibos2v1',1,'Admin',1672319409,'192.168.64.1',2,36,37838,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00cl4xiye1v67ngt',1,'Admin',1672319409,'192.168.64.1',2,36,37839,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00cm4xiyq51wcr52',1,'Admin',1672319409,'192.168.64.1',2,36,37840,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00cn4xiy1btaxszv',1,'Admin',1672319409,'192.168.64.1',2,36,37841,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00co4xiyyr6drabk',1,'Admin',1672319409,'192.168.64.1',2,36,37842,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00cp4xiyqcnvk0wt',1,'Admin',1672319409,'192.168.64.1',2,36,37843,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00cq4xiy1yzjncoi',1,'Admin',1672319409,'192.168.64.1',2,36,37844,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00cr4xiy1jvwb9t7',1,'Admin',1672319409,'192.168.64.1',2,36,37845,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00cs4xiyst4feep8',1,'Admin',1672319409,'192.168.64.1',2,36,37846,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00ct4xiyow2kgl61',1,'Admin',1672319409,'192.168.64.1',2,36,37847,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00cu4xiylnx9nzc6',1,'Admin',1672319409,'192.168.64.1',2,36,37848,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00cv4xiynpk6t7xx',1,'Admin',1672319409,'192.168.64.1',2,36,37849,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00cw4xiym0tl9nv7',1,'Admin',1672319409,'192.168.64.1',2,36,37850,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00cx4xiypf915x2q',1,'Admin',1672319409,'192.168.64.1',2,36,37851,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00cy4xiyd7thl9xt',1,'Admin',1672319409,'192.168.64.1',2,36,37887,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00cz4xiy877rmz2e',1,'Admin',1672319409,'192.168.64.1',2,36,37888,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00d04xiy48q3cmxe',1,'Admin',1672319409,'192.168.64.1',2,36,37889,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00d14xiy28sw0pmx',1,'Admin',1672319409,'192.168.64.1',2,36,37890,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00d24xiysetvqu2h',1,'Admin',1672319409,'192.168.64.1',2,36,37891,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00d34xiy9g2jcvzv',1,'Admin',1672319409,'192.168.64.1',2,36,37892,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00d44xiyvvey6hua',1,'Admin',1672319409,'192.168.64.1',2,36,37893,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00d54xiyqsly2m7r',1,'Admin',1672319409,'192.168.64.1',2,36,37894,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00d64xiylbu3ai1i',1,'Admin',1672319409,'192.168.64.1',2,36,37895,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcv00d74xiywg34uce0',1,'Admin',1672319409,'192.168.64.1',2,36,37896,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00d84xiy1ueihhxt',1,'Admin',1672319409,'192.168.64.1',2,36,37897,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00d94xiybe9jklj4',1,'Admin',1672319409,'192.168.64.1',2,36,37898,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00da4xiyrtnx0cer',1,'Admin',1672319409,'192.168.64.1',2,36,37899,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00db4xiymfehqvf2',1,'Admin',1672319409,'192.168.64.1',2,36,37900,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00dc4xiy2dpevr9r',1,'Admin',1672319409,'192.168.64.1',2,36,37901,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00dd4xiy0sb9vfr7',1,'Admin',1672319409,'192.168.64.1',2,36,37902,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00de4xiy0vw8qnwy',1,'Admin',1672319409,'192.168.64.1',2,36,37903,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00df4xiyxfb8881w',1,'Admin',1672319409,'192.168.64.1',2,36,37904,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00dg4xiy5iu21k6k',1,'Admin',1672319409,'192.168.64.1',2,36,37905,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00dh4xiyoplemdt8',1,'Admin',1672319409,'192.168.64.1',2,36,37941,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00di4xiywgkjjvd9',1,'Admin',1672319409,'192.168.64.1',2,36,37942,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00dj4xiykt70rukn',1,'Admin',1672319409,'192.168.64.1',2,36,37943,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00dk4xiyh01mi7i2',1,'Admin',1672319409,'192.168.64.1',2,36,37944,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00dl4xiy6t2lukrd',1,'Admin',1672319409,'192.168.64.1',2,36,37945,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00dm4xiyxkiuvel0',1,'Admin',1672319409,'192.168.64.1',2,36,37946,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00dn4xiy8sr91orx',1,'Admin',1672319409,'192.168.64.1',2,36,37947,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00do4xiy2lgmebb1',1,'Admin',1672319409,'192.168.64.1',2,36,37948,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00dp4xiyu8y5eybn',1,'Admin',1672319409,'192.168.64.1',2,36,37949,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00dq4xiyqgv2r36c',1,'Admin',1672319409,'192.168.64.1',2,36,37950,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00dr4xiycljikmdu',1,'Admin',1672319409,'192.168.64.1',2,36,37951,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ds4xiyp0jpyc7q',1,'Admin',1672319409,'192.168.64.1',2,36,37952,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00dt4xiyst7wfjxg',1,'Admin',1672319409,'192.168.64.1',2,36,37953,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00du4xiy7wx498x4',1,'Admin',1672319409,'192.168.64.1',2,36,37954,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00dv4xiyqbx081i6',1,'Admin',1672319409,'192.168.64.1',2,36,37955,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00dw4xiylvtghgx7',1,'Admin',1672319409,'192.168.64.1',2,36,37956,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00dx4xiy9bcgxmgr',1,'Admin',1672319409,'192.168.64.1',2,36,37957,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00dy4xiyxaybea7z',1,'Admin',1672319409,'192.168.64.1',2,36,37958,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00dz4xiygs8gqbcw',1,'Admin',1672319409,'192.168.64.1',2,36,37959,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00e04xiy9bju9i9a',1,'Admin',1672319409,'192.168.64.1',2,36,37995,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00e14xiytucb98da',1,'Admin',1672319409,'192.168.64.1',2,36,37996,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00e24xiyobr3kpzj',1,'Admin',1672319409,'192.168.64.1',2,36,37997,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00e34xiydry1mk20',1,'Admin',1672319409,'192.168.64.1',2,36,37998,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00e44xiyq78ubwa3',1,'Admin',1672319409,'192.168.64.1',2,36,37999,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00e54xiypsy5x9ru',1,'Admin',1672319409,'192.168.64.1',2,36,38000,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00e64xiyfwnbl4zg',1,'Admin',1672319409,'192.168.64.1',2,36,38001,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00e74xiy9s7brc3v',1,'Admin',1672319409,'192.168.64.1',2,36,38002,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00e84xiythdc4lhe',1,'Admin',1672319409,'192.168.64.1',2,36,38003,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00e94xiys3lk1lc5',1,'Admin',1672319409,'192.168.64.1',2,36,38004,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ea4xiy3ds980s2',1,'Admin',1672319409,'192.168.64.1',2,36,38005,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00eb4xiyhf4nz5cl',1,'Admin',1672319409,'192.168.64.1',2,36,38006,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ec4xiyskmpzsbt',1,'Admin',1672319409,'192.168.64.1',2,36,38007,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ed4xiyc16enudo',1,'Admin',1672319409,'192.168.64.1',2,36,38008,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ee4xiydqe5qmdp',1,'Admin',1672319409,'192.168.64.1',2,36,38009,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ef4xiycu1zsqa4',1,'Admin',1672319409,'192.168.64.1',2,36,38010,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00eg4xiynu1ei5dc',1,'Admin',1672319409,'192.168.64.1',2,36,38011,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00eh4xiyupjgvcgp',1,'Admin',1672319409,'192.168.64.1',2,36,38012,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ei4xiy9f5usqhn',1,'Admin',1672319409,'192.168.64.1',2,36,38013,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ej4xiy2186y2d1',1,'Admin',1672319409,'192.168.64.1',2,36,38049,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ek4xiyfdwvpdu0',1,'Admin',1672319409,'192.168.64.1',2,36,38050,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00el4xiy9q860jz8',1,'Admin',1672319409,'192.168.64.1',2,36,38051,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00em4xiynv82s0fg',1,'Admin',1672319409,'192.168.64.1',2,36,38052,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00en4xiyz4ywfoc2',1,'Admin',1672319409,'192.168.64.1',2,36,38053,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00eo4xiycab3kkta',1,'Admin',1672319409,'192.168.64.1',2,36,38054,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ep4xiyf8fyeuf4',1,'Admin',1672319409,'192.168.64.1',2,36,38055,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00eq4xiyqh4h0fcx',1,'Admin',1672319409,'192.168.64.1',2,36,38056,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00er4xiyqq37qqkc',1,'Admin',1672319409,'192.168.64.1',2,36,38057,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00es4xiy9wdjnfvr',1,'Admin',1672319409,'192.168.64.1',2,36,38058,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00et4xiytvxig187',1,'Admin',1672319409,'192.168.64.1',2,36,38059,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00eu4xiylq7jxoky',1,'Admin',1672319409,'192.168.64.1',2,36,38060,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ev4xiyh56g1l6i',1,'Admin',1672319409,'192.168.64.1',2,36,38061,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ew4xiydefdw7mc',1,'Admin',1672319409,'192.168.64.1',2,36,38062,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ex4xiygquhya53',1,'Admin',1672319409,'192.168.64.1',2,36,38063,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ey4xiypbnjthiu',1,'Admin',1672319409,'192.168.64.1',2,36,38064,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ez4xiyerwsk1ao',1,'Admin',1672319409,'192.168.64.1',2,36,38065,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00f04xiy0jwwq982',1,'Admin',1672319409,'192.168.64.1',2,36,38066,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00f14xiy57kj1kvr',1,'Admin',1672319409,'192.168.64.1',2,36,38067,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00f24xiy78ru057z',1,'Admin',1672319409,'192.168.64.1',2,36,38103,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00f34xiyx305oy0f',1,'Admin',1672319409,'192.168.64.1',2,36,38104,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00f44xiywudi3d0x',1,'Admin',1672319409,'192.168.64.1',2,36,38105,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00f54xiycfmssn0y',1,'Admin',1672319409,'192.168.64.1',2,36,38106,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00f64xiyjeyl9nd5',1,'Admin',1672319409,'192.168.64.1',2,36,38107,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00f74xiy0iflbjgg',1,'Admin',1672319409,'192.168.64.1',2,36,38108,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00f84xiyw0a5qehp',1,'Admin',1672319409,'192.168.64.1',2,36,38109,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00f94xiyd1utrbqt',1,'Admin',1672319409,'192.168.64.1',2,36,38110,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fa4xiyl6x8up3j',1,'Admin',1672319409,'192.168.64.1',2,36,38111,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fb4xiy9scmxank',1,'Admin',1672319409,'192.168.64.1',2,36,38112,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fc4xiy74nl94b6',1,'Admin',1672319409,'192.168.64.1',2,36,38113,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fd4xiyf7gskx8g',1,'Admin',1672319409,'192.168.64.1',2,36,38114,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fe4xiy5erifzay',1,'Admin',1672319409,'192.168.64.1',2,36,38115,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ff4xiyv194hogp',1,'Admin',1672319409,'192.168.64.1',2,36,38116,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fg4xiymzom6g8d',1,'Admin',1672319409,'192.168.64.1',2,36,38117,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fh4xiya3xq7gtw',1,'Admin',1672319409,'192.168.64.1',2,36,38118,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fi4xiyq0u685wm',1,'Admin',1672319409,'192.168.64.1',2,36,38119,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fj4xiykezjsad7',1,'Admin',1672319409,'192.168.64.1',2,36,38120,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fk4xiy6spmzh2e',1,'Admin',1672319409,'192.168.64.1',2,36,38121,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fl4xiyd6bqknn3',1,'Admin',1672319409,'192.168.64.1',2,36,38157,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fm4xiyhnl5vg2n',1,'Admin',1672319409,'192.168.64.1',2,36,38158,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fn4xiyx25wl12t',1,'Admin',1672319409,'192.168.64.1',2,36,38159,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fo4xiy71y76008',1,'Admin',1672319409,'192.168.64.1',2,36,38160,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fp4xiyikvksc9d',1,'Admin',1672319409,'192.168.64.1',2,36,38161,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fq4xiykvr8u84l',1,'Admin',1672319409,'192.168.64.1',2,36,38162,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fr4xiyo313gcp6',1,'Admin',1672319409,'192.168.64.1',2,36,38163,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fs4xiyzxodv979',1,'Admin',1672319409,'192.168.64.1',2,36,38164,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ft4xiyenoeplh1',1,'Admin',1672319409,'192.168.64.1',2,36,38165,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fu4xiyut5v6u0w',1,'Admin',1672319409,'192.168.64.1',2,36,38166,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fv4xiygcgicncw',1,'Admin',1672319409,'192.168.64.1',2,36,38167,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fw4xiyk0rx1kbg',1,'Admin',1672319409,'192.168.64.1',2,36,38168,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fx4xiy2090hwc2',1,'Admin',1672319409,'192.168.64.1',2,36,38169,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fy4xiygz746i8c',1,'Admin',1672319409,'192.168.64.1',2,36,38170,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00fz4xiyymmiybeg',1,'Admin',1672319409,'192.168.64.1',2,36,38171,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00g04xiyhy36r3ll',1,'Admin',1672319409,'192.168.64.1',2,36,38172,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00g14xiy24iaoy6b',1,'Admin',1672319409,'192.168.64.1',2,36,38173,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00g24xiyrtch346y',1,'Admin',1672319409,'192.168.64.1',2,36,38174,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00g34xiy4vaj128j',1,'Admin',1672319409,'192.168.64.1',2,36,38175,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00g44xiykpv781pi',1,'Admin',1672319409,'192.168.64.1',2,36,38211,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00g54xiy0ft8iz2u',1,'Admin',1672319409,'192.168.64.1',2,36,38212,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00g64xiyc8rhcenm',1,'Admin',1672319409,'192.168.64.1',2,36,38213,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00g74xiyknr1x0iu',1,'Admin',1672319409,'192.168.64.1',2,36,38214,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00g84xiylyu8yngu',1,'Admin',1672319409,'192.168.64.1',2,36,38215,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00g94xiyx1j37ljd',1,'Admin',1672319409,'192.168.64.1',2,36,38216,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ga4xiyg97pb5vx',1,'Admin',1672319409,'192.168.64.1',2,36,38217,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gb4xiyewf8j78o',1,'Admin',1672319409,'192.168.64.1',2,36,38218,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gc4xiype22cacw',1,'Admin',1672319409,'192.168.64.1',2,36,38219,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gd4xiyg37t6rsl',1,'Admin',1672319409,'192.168.64.1',2,36,38220,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ge4xiys0fldsud',1,'Admin',1672319409,'192.168.64.1',2,36,38221,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gf4xiy6rxsaws0',1,'Admin',1672319409,'192.168.64.1',2,36,38222,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gg4xiyl3yn0vbo',1,'Admin',1672319409,'192.168.64.1',2,36,38223,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gh4xiy0pv4d9zu',1,'Admin',1672319409,'192.168.64.1',2,36,38224,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gi4xiy9v60upuh',1,'Admin',1672319409,'192.168.64.1',2,36,38225,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gj4xiyv25tvqa6',1,'Admin',1672319409,'192.168.64.1',2,36,38226,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gk4xiyix5jd40l',1,'Admin',1672319409,'192.168.64.1',2,36,38227,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gl4xiyqi7x6ucd',1,'Admin',1672319409,'192.168.64.1',2,36,38228,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gm4xiyzob0jwst',1,'Admin',1672319409,'192.168.64.1',2,36,38229,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gn4xiyn168wu44',1,'Admin',1672319409,'192.168.64.1',2,36,38265,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00go4xiy4q379zkt',1,'Admin',1672319409,'192.168.64.1',2,36,38266,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gp4xiy5fkj31he',1,'Admin',1672319409,'192.168.64.1',2,36,38267,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gq4xiymgbvoxem',1,'Admin',1672319409,'192.168.64.1',2,36,38268,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gr4xiy9g7ikbxa',1,'Admin',1672319409,'192.168.64.1',2,36,38269,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gs4xiy6m4gtf3b',1,'Admin',1672319409,'192.168.64.1',2,36,38270,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gt4xiyqbj0cnis',1,'Admin',1672319409,'192.168.64.1',2,36,38271,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gu4xiyndjac0xh',1,'Admin',1672319409,'192.168.64.1',2,36,38272,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gv4xiyxqaj9aqz',1,'Admin',1672319409,'192.168.64.1',2,36,38273,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gw4xiyno2qe5bp',1,'Admin',1672319409,'192.168.64.1',2,36,38274,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gx4xiy5gmd2zln',1,'Admin',1672319409,'192.168.64.1',2,36,38275,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gy4xiype3tocyp',1,'Admin',1672319409,'192.168.64.1',2,36,38276,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00gz4xiyzgqqyw1d',1,'Admin',1672319409,'192.168.64.1',2,36,38277,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00h04xiywpfzg0dn',1,'Admin',1672319409,'192.168.64.1',2,36,38278,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00h14xiy7o53pu7f',1,'Admin',1672319409,'192.168.64.1',2,36,38279,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00h24xiy8m6fp9wi',1,'Admin',1672319409,'192.168.64.1',2,36,38280,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00h34xiymhdev2zm',1,'Admin',1672319409,'192.168.64.1',2,36,38281,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00h44xiyt5k9cymb',1,'Admin',1672319409,'192.168.64.1',2,36,38282,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00h54xiygnez5dzd',1,'Admin',1672319409,'192.168.64.1',2,36,38283,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00h64xiyjo6s1x1k',1,'Admin',1672319409,'192.168.64.1',2,36,38319,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00h74xiyj3316vct',1,'Admin',1672319409,'192.168.64.1',2,36,38320,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00h84xiy1k5y4rub',1,'Admin',1672319409,'192.168.64.1',2,36,38321,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00h94xiyjtdhpsn4',1,'Admin',1672319409,'192.168.64.1',2,36,38322,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ha4xiymbl1e713',1,'Admin',1672319409,'192.168.64.1',2,36,38323,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hb4xiyjckj6zx1',1,'Admin',1672319409,'192.168.64.1',2,36,38324,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hc4xiyv86ykqqj',1,'Admin',1672319409,'192.168.64.1',2,36,38325,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hd4xiyw5nued65',1,'Admin',1672319409,'192.168.64.1',2,36,38326,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00he4xiywb56nx0v',1,'Admin',1672319409,'192.168.64.1',2,36,38327,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hf4xiy6y6eviyj',1,'Admin',1672319409,'192.168.64.1',2,36,38328,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hg4xiyqdb02fy9',1,'Admin',1672319409,'192.168.64.1',2,36,38329,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hh4xiyzuaj9a31',1,'Admin',1672319409,'192.168.64.1',2,36,38330,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hi4xiyflvtpfs1',1,'Admin',1672319409,'192.168.64.1',2,36,38331,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hj4xiy4nxlogwj',1,'Admin',1672319409,'192.168.64.1',2,36,38332,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hk4xiyddbp76no',1,'Admin',1672319409,'192.168.64.1',2,36,38333,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hl4xiy36ffzbbn',1,'Admin',1672319409,'192.168.64.1',2,36,38334,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hm4xiy9zfxsp01',1,'Admin',1672319409,'192.168.64.1',2,36,38335,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hn4xiyda38skq6',1,'Admin',1672319409,'192.168.64.1',2,36,38336,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ho4xiywhysdp1j',1,'Admin',1672319409,'192.168.64.1',2,36,38337,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hp4xiyxu24ibix',1,'Admin',1672319409,'192.168.64.1',2,36,38373,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hq4xiyohbrzf5t',1,'Admin',1672319409,'192.168.64.1',2,36,38374,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hr4xiy56aj38bt',1,'Admin',1672319409,'192.168.64.1',2,36,38375,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hs4xiycgsdu5j1',1,'Admin',1672319409,'192.168.64.1',2,36,38376,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ht4xiyd1nxg66k',1,'Admin',1672319409,'192.168.64.1',2,36,38377,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hu4xiyphy6za5l',1,'Admin',1672319409,'192.168.64.1',2,36,38378,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hv4xiyirbjfbaw',1,'Admin',1672319409,'192.168.64.1',2,36,38379,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hw4xiyj55j63dg',1,'Admin',1672319409,'192.168.64.1',2,36,38380,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hx4xiy8x1ij1at',1,'Admin',1672319409,'192.168.64.1',2,36,38381,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hy4xiy6y9hkb6n',1,'Admin',1672319409,'192.168.64.1',2,36,38382,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00hz4xiy1uqpx7ne',1,'Admin',1672319409,'192.168.64.1',2,36,38383,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00i04xiyxbfz6d09',1,'Admin',1672319409,'192.168.64.1',2,36,38384,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00i14xiy608vhl8p',1,'Admin',1672319409,'192.168.64.1',2,36,38385,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00i24xiycovnj6ku',1,'Admin',1672319409,'192.168.64.1',2,36,38386,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00i34xiy7f5yl7bn',1,'Admin',1672319409,'192.168.64.1',2,36,38387,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00i44xiy2n2ol0u7',1,'Admin',1672319409,'192.168.64.1',2,36,38388,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00i54xiyrnx9puo5',1,'Admin',1672319409,'192.168.64.1',2,36,38389,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00i64xiyt6vilekx',1,'Admin',1672319409,'192.168.64.1',2,36,38390,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00i74xiyc5hn79x7',1,'Admin',1672319409,'192.168.64.1',2,36,38391,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00i84xiy106gzby4',1,'Admin',1672319409,'192.168.64.1',2,36,38427,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00i94xiyv1ewb4x1',1,'Admin',1672319409,'192.168.64.1',2,36,38428,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ia4xiyd1ngswiy',1,'Admin',1672319409,'192.168.64.1',2,36,38429,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ib4xiykjpsmhdy',1,'Admin',1672319409,'192.168.64.1',2,36,38430,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ic4xiyk86dapyw',1,'Admin',1672319409,'192.168.64.1',2,36,38431,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00id4xiyb6pnblj7',1,'Admin',1672319409,'192.168.64.1',2,36,38432,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ie4xiy0pefws63',1,'Admin',1672319409,'192.168.64.1',2,36,38433,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00if4xiydsv51k59',1,'Admin',1672319409,'192.168.64.1',2,36,38434,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ig4xiybu15zcno',1,'Admin',1672319409,'192.168.64.1',2,36,38435,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ih4xiy5nj6z07w',1,'Admin',1672319409,'192.168.64.1',2,36,38436,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ii4xiy7lulsgx5',1,'Admin',1672319409,'192.168.64.1',2,36,38437,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ij4xiyozofxm5r',1,'Admin',1672319409,'192.168.64.1',2,36,38438,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ik4xiyqceecs6a',1,'Admin',1672319409,'192.168.64.1',2,36,38439,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00il4xiy2km3chkj',1,'Admin',1672319409,'192.168.64.1',2,36,38440,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00im4xiyg4ksgslc',1,'Admin',1672319409,'192.168.64.1',2,36,38441,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00in4xiyzjlosy9a',1,'Admin',1672319409,'192.168.64.1',2,36,38442,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00io4xiyuqqk3ew9',1,'Admin',1672319409,'192.168.64.1',2,36,38443,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ip4xiygvnf95ng',1,'Admin',1672319409,'192.168.64.1',2,36,38444,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00iq4xiy76gbeit4',1,'Admin',1672319409,'192.168.64.1',2,36,38445,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ir4xiyblrcdcvr',1,'Admin',1672319409,'192.168.64.1',2,36,38481,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00is4xiy4m1gwluf',1,'Admin',1672319409,'192.168.64.1',2,36,38482,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00it4xiyrmlq9w74',1,'Admin',1672319409,'192.168.64.1',2,36,38483,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00iu4xiyhw8c8kxf',1,'Admin',1672319409,'192.168.64.1',2,36,38484,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00iv4xiyb3gro5gd',1,'Admin',1672319409,'192.168.64.1',2,36,38485,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00iw4xiylu2ryvue',1,'Admin',1672319409,'192.168.64.1',2,36,38486,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ix4xiyypijt7lx',1,'Admin',1672319409,'192.168.64.1',2,36,38487,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00iy4xiyqm8728c5',1,'Admin',1672319409,'192.168.64.1',2,36,38488,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00iz4xiyftjh3gdq',1,'Admin',1672319409,'192.168.64.1',2,36,38489,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00j04xiypz3rxtg2',1,'Admin',1672319409,'192.168.64.1',2,36,38490,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00j14xiyxlac4tre',1,'Admin',1672319409,'192.168.64.1',2,36,38491,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00j24xiyngt6qkaa',1,'Admin',1672319409,'192.168.64.1',2,36,38492,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00j34xiymmay7bqk',1,'Admin',1672319409,'192.168.64.1',2,36,38493,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00j44xiy1ody8ljl',1,'Admin',1672319409,'192.168.64.1',2,36,38494,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00j54xiyjukqbpqh',1,'Admin',1672319409,'192.168.64.1',2,36,38495,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00j64xiygpjos4t1',1,'Admin',1672319409,'192.168.64.1',2,36,38496,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00j74xiykzbupcs6',1,'Admin',1672319409,'192.168.64.1',2,36,38497,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00j84xiy1cwp49wt',1,'Admin',1672319409,'192.168.64.1',2,36,38498,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00j94xiyrs0d3gqf',1,'Admin',1672319409,'192.168.64.1',2,36,38499,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ja4xiy39rjhbc6',1,'Admin',1672319409,'192.168.64.1',2,36,38535,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jb4xiy3u2j0wxh',1,'Admin',1672319409,'192.168.64.1',2,36,38536,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jc4xiybqtrns6n',1,'Admin',1672319409,'192.168.64.1',2,36,38537,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jd4xiyz4ui5jwo',1,'Admin',1672319409,'192.168.64.1',2,36,38538,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00je4xiy0wddxr14',1,'Admin',1672319409,'192.168.64.1',2,36,38539,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jf4xiyzr7l2sgi',1,'Admin',1672319409,'192.168.64.1',2,36,38540,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jg4xiymrvz77wz',1,'Admin',1672319409,'192.168.64.1',2,36,38541,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jh4xiyxv6b1uwc',1,'Admin',1672319409,'192.168.64.1',2,36,38542,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ji4xiylhsy8p9l',1,'Admin',1672319409,'192.168.64.1',2,36,38543,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jj4xiy9lijhbxh',1,'Admin',1672319409,'192.168.64.1',2,36,38544,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jk4xiy6cg4h9e2',1,'Admin',1672319409,'192.168.64.1',2,36,38545,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jl4xiygylif21p',1,'Admin',1672319409,'192.168.64.1',2,36,38546,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jm4xiyz5vh9298',1,'Admin',1672319409,'192.168.64.1',2,36,38547,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jn4xiyckextp8i',1,'Admin',1672319409,'192.168.64.1',2,36,38548,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jo4xiyuejutsk5',1,'Admin',1672319409,'192.168.64.1',2,36,38549,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jp4xiyks62bare',1,'Admin',1672319409,'192.168.64.1',2,36,38550,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jq4xiyyxpchggw',1,'Admin',1672319409,'192.168.64.1',2,36,38551,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jr4xiys79xd05l',1,'Admin',1672319409,'192.168.64.1',2,36,38552,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00js4xiy3xtxd1a6',1,'Admin',1672319409,'192.168.64.1',2,36,38553,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jt4xiyoyay270p',1,'Admin',1672319409,'192.168.64.1',2,36,39345,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ju4xiywcdxvozt',1,'Admin',1672319409,'192.168.64.1',2,36,39346,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jv4xiy30mdpdlq',1,'Admin',1672319409,'192.168.64.1',2,36,39347,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jw4xiya6128eqh',1,'Admin',1672319409,'192.168.64.1',2,36,39348,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jx4xiyd0bk7o9c',1,'Admin',1672319409,'192.168.64.1',2,36,39349,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jy4xiy6ndpcdv3',1,'Admin',1672319409,'192.168.64.1',2,36,39350,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00jz4xiy596q22cy',1,'Admin',1672319409,'192.168.64.1',2,36,39351,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00k04xiy18pt1482',1,'Admin',1672319409,'192.168.64.1',2,36,39352,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00k14xiyvpwu9j7y',1,'Admin',1672319409,'192.168.64.1',2,36,39353,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00k24xiy42tonmt7',1,'Admin',1672319409,'192.168.64.1',2,36,39354,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00k34xiypxiduei4',1,'Admin',1672319409,'192.168.64.1',2,36,39355,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00k44xiype0ky9ly',1,'Admin',1672319409,'192.168.64.1',2,36,39356,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00k54xiy75o46609',1,'Admin',1672319409,'192.168.64.1',2,36,39357,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00k64xiyzfqdgcb8',1,'Admin',1672319409,'192.168.64.1',2,36,39358,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00k74xiyjjdwqqt1',1,'Admin',1672319409,'192.168.64.1',2,36,39359,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00k84xiyuaoxdnd4',1,'Admin',1672319409,'192.168.64.1',2,36,39360,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00k94xiypxcuwk5p',1,'Admin',1672319409,'192.168.64.1',2,36,39361,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ka4xiyhi38bwqc',1,'Admin',1672319409,'192.168.64.1',2,36,39362,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00kb4xiyite1b2l8',1,'Admin',1672319409,'192.168.64.1',2,36,39363,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00kc4xiyno3fpyux',1,'Admin',1672319409,'192.168.64.1',2,36,39399,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00kd4xiyj6vxz6gn',1,'Admin',1672319409,'192.168.64.1',2,36,39400,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ke4xiyb74v6bcf',1,'Admin',1672319409,'192.168.64.1',2,36,39401,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00kf4xiyuo5lnd7n',1,'Admin',1672319409,'192.168.64.1',2,36,39402,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00kg4xiyctpk47v6',1,'Admin',1672319409,'192.168.64.1',2,36,39403,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00kh4xiyp9dhbplm',1,'Admin',1672319409,'192.168.64.1',2,36,39404,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ki4xiyb108gojb',1,'Admin',1672319409,'192.168.64.1',2,36,39405,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00kj4xiyjkv2ln82',1,'Admin',1672319409,'192.168.64.1',2,36,39406,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00kk4xiy6ubsypmv',1,'Admin',1672319409,'192.168.64.1',2,36,39407,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00kl4xiyeei79rm2',1,'Admin',1672319409,'192.168.64.1',2,36,39408,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00km4xiyq6uuccgx',1,'Admin',1672319409,'192.168.64.1',2,36,39409,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00kn4xiyhjlwbqg3',1,'Admin',1672319409,'192.168.64.1',2,36,39410,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ko4xiy2dgmqnyp',1,'Admin',1672319409,'192.168.64.1',2,36,39411,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00kp4xiy1tt0o8tp',1,'Admin',1672319409,'192.168.64.1',2,36,39412,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00kq4xiyrbxodo5y',1,'Admin',1672319409,'192.168.64.1',2,36,39413,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00kr4xiymepobcta',1,'Admin',1672319409,'192.168.64.1',2,36,39414,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ks4xiyf13z1bsx',1,'Admin',1672319409,'192.168.64.1',2,36,39415,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00kt4xiykmn7a4r6',1,'Admin',1672319409,'192.168.64.1',2,36,39416,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ku4xiyxitbapj7',1,'Admin',1672319409,'192.168.64.1',2,36,39417,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00kv4xiy1ksikmh9',1,'Admin',1672319409,'192.168.64.1',2,36,39453,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00kw4xiybcohcwd0',1,'Admin',1672319409,'192.168.64.1',2,36,39454,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00kx4xiyjj56r7nx',1,'Admin',1672319409,'192.168.64.1',2,36,39455,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ky4xiyui0o3zbk',1,'Admin',1672319409,'192.168.64.1',2,36,39456,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00kz4xiyvvc4oybv',1,'Admin',1672319409,'192.168.64.1',2,36,39457,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00l04xiyxglqbgvu',1,'Admin',1672319409,'192.168.64.1',2,36,39458,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00l14xiyyseyn6qw',1,'Admin',1672319409,'192.168.64.1',2,36,39459,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00l24xiyh4pwnxjw',1,'Admin',1672319409,'192.168.64.1',2,36,39460,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00l34xiynbqo081z',1,'Admin',1672319409,'192.168.64.1',2,36,39461,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00l44xiy9giw59dc',1,'Admin',1672319409,'192.168.64.1',2,36,39462,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00l54xiyiknsqjdd',1,'Admin',1672319409,'192.168.64.1',2,36,39463,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00l64xiyxvqfkcyy',1,'Admin',1672319409,'192.168.64.1',2,36,39464,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00l74xiyl0sxjm9b',1,'Admin',1672319409,'192.168.64.1',2,36,39465,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00l84xiyj9av59b9',1,'Admin',1672319409,'192.168.64.1',2,36,39466,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00l94xiyc1xqeln1',1,'Admin',1672319409,'192.168.64.1',2,36,39467,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00la4xiy4nftuz0n',1,'Admin',1672319409,'192.168.64.1',2,36,39468,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00lb4xiypbr5qlgr',1,'Admin',1672319409,'192.168.64.1',2,36,39469,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00lc4xiyt5rd4b9o',1,'Admin',1672319409,'192.168.64.1',2,36,39470,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ld4xiyvnepqduf',1,'Admin',1672319409,'192.168.64.1',2,36,39471,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00le4xiy8eg1yoyf',1,'Admin',1672319409,'192.168.64.1',2,36,39507,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00lf4xiycp95x1lr',1,'Admin',1672319409,'192.168.64.1',2,36,39508,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00lg4xiyx9p1djqr',1,'Admin',1672319409,'192.168.64.1',2,36,39509,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00lh4xiym1zhqbqa',1,'Admin',1672319409,'192.168.64.1',2,36,39510,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00li4xiyf6sn1re6',1,'Admin',1672319409,'192.168.64.1',2,36,39511,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00lj4xiyo2hmvc6m',1,'Admin',1672319409,'192.168.64.1',2,36,39512,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00lk4xiylr77mxm9',1,'Admin',1672319409,'192.168.64.1',2,36,39513,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ll4xiypipv984u',1,'Admin',1672319409,'192.168.64.1',2,36,39514,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00lm4xiy1exbmwaj',1,'Admin',1672319409,'192.168.64.1',2,36,39515,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ln4xiylat37ucz',1,'Admin',1672319409,'192.168.64.1',2,36,39516,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00lo4xiych5tv11m',1,'Admin',1672319409,'192.168.64.1',2,36,39517,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00lp4xiyrdh3bph6',1,'Admin',1672319409,'192.168.64.1',2,36,39518,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00lq4xiyj30nvwbl',1,'Admin',1672319409,'192.168.64.1',2,36,39519,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00lr4xiy9cygsxba',1,'Admin',1672319409,'192.168.64.1',2,36,39520,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ls4xiy0i0yx102',1,'Admin',1672319409,'192.168.64.1',2,36,39521,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00lt4xiym7pq9qth',1,'Admin',1672319409,'192.168.64.1',2,36,39522,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00lu4xiynvnx56oh',1,'Admin',1672319409,'192.168.64.1',2,36,39523,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00lv4xiyta95h8em',1,'Admin',1672319409,'192.168.64.1',2,36,39524,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00lw4xiymbdmdc43',1,'Admin',1672319409,'192.168.64.1',2,36,39525,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00lx4xiykvbb442d',1,'Admin',1672319409,'192.168.64.1',2,36,39561,NULL,'#{#SNMPINDEX}: CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ly4xiygarntcna',1,'Admin',1672319409,'192.168.64.1',2,36,39562,NULL,'CPU: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00lz4xiyih8gbpxd',1,'Admin',1672319409,'192.168.64.1',2,36,39563,NULL,'Device: Temperature','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00m04xiyqe5wiq14',1,'Admin',1672319409,'192.168.64.1',2,36,39564,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00m14xiye9m19q3y',1,'Admin',1672319409,'192.168.64.1',2,36,39565,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00m24xiyg1alnmpc',1,'Admin',1672319409,'192.168.64.1',2,36,39566,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00m34xiydqstun8d',1,'Admin',1672319409,'192.168.64.1',2,36,39567,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00m44xiys65n3rmc',1,'Admin',1672319409,'192.168.64.1',2,36,39568,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00m54xiy8670mi4p',1,'Admin',1672319409,'192.168.64.1',2,36,39569,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00m64xiyi9726vbb',1,'Admin',1672319409,'192.168.64.1',2,36,39570,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00m74xiyfmsok9c9',1,'Admin',1672319409,'192.168.64.1',2,36,39571,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00m84xiy8qj6zlkj',1,'Admin',1672319409,'192.168.64.1',2,36,39572,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00m94xiyat45ortw',1,'Admin',1672319409,'192.168.64.1',2,36,39573,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ma4xiy3najdlg9',1,'Admin',1672319409,'192.168.64.1',2,36,39574,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00mb4xiyw3rlwlr4',1,'Admin',1672319409,'192.168.64.1',2,36,39575,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00mc4xiy3hc80kwr',1,'Admin',1672319409,'192.168.64.1',2,36,39576,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00md4xiy7psq7alt',1,'Admin',1672319409,'192.168.64.1',2,36,39577,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00me4xiytswnvc8c',1,'Admin',1672319409,'192.168.64.1',2,36,39578,NULL,'Disk-{#SNMPINDEX}: Total space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00mf4xiyzl3bo22b',1,'Admin',1672319409,'192.168.64.1',2,36,39579,NULL,'Disk-{#SNMPINDEX}: Used space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00mg4xiyj6idpdfi',1,'Admin',1672319409,'192.168.64.1',2,36,40946,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00mh4xiycpnfl1ft',1,'Admin',1672319409,'192.168.64.1',2,36,40947,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00mi4xiymmifnlg1',1,'Admin',1672319409,'192.168.64.1',2,36,40948,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00mj4xiyzuz81pdo',1,'Admin',1672319409,'192.168.64.1',2,36,40949,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00mk4xiyaomwy6cl',1,'Admin',1672319409,'192.168.64.1',2,36,40950,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ml4xiyju0khngn',1,'Admin',1672319409,'192.168.64.1',2,36,40951,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00mm4xiyq6cn5p1z',1,'Admin',1672319409,'192.168.64.1',2,36,40952,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00mn4xiywev3s9wm',1,'Admin',1672319409,'192.168.64.1',2,36,40953,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00mo4xiy75ie5n3a',1,'Admin',1672319409,'192.168.64.1',2,36,40954,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00mp4xiyfqrvu674',1,'Admin',1672319409,'192.168.64.1',2,36,40967,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00mq4xiyroakq5cc',1,'Admin',1672319409,'192.168.64.1',2,36,40968,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00mr4xiye7cw676y',1,'Admin',1672319409,'192.168.64.1',2,36,40969,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ms4xiyl97d1zd4',1,'Admin',1672319409,'192.168.64.1',2,36,40970,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00mt4xiykrp9fov0',1,'Admin',1672319409,'192.168.64.1',2,36,40971,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00mu4xiyitobye8r',1,'Admin',1672319409,'192.168.64.1',2,36,40972,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00mv4xiys5zqaal3',1,'Admin',1672319409,'192.168.64.1',2,36,40973,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00mw4xiynjdt96jb',1,'Admin',1672319409,'192.168.64.1',2,36,40974,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00mx4xiyaij7nojv',1,'Admin',1672319409,'192.168.64.1',2,36,40975,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00my4xiygdxh0vm3',1,'Admin',1672319409,'192.168.64.1',2,36,40988,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00mz4xiyfwwdhtd6',1,'Admin',1672319409,'192.168.64.1',2,36,40989,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00n04xiy30y05qkj',1,'Admin',1672319409,'192.168.64.1',2,36,40990,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00n14xiyit1qus8g',1,'Admin',1672319409,'192.168.64.1',2,36,40991,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00n24xiyp0c6k6el',1,'Admin',1672319409,'192.168.64.1',2,36,40992,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00n34xiyj1tt9ka8',1,'Admin',1672319409,'192.168.64.1',2,36,40993,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00n44xiy3qiiyj0z',1,'Admin',1672319409,'192.168.64.1',2,36,40994,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00n54xiykhwl4use',1,'Admin',1672319409,'192.168.64.1',2,36,40995,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00n64xiyailoezzd',1,'Admin',1672319409,'192.168.64.1',2,36,40996,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00n74xiysyxm8one',1,'Admin',1672319409,'192.168.64.1',2,36,41009,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00n84xiyf7kjjbly',1,'Admin',1672319409,'192.168.64.1',2,36,41010,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00n94xiyyvmy3ehp',1,'Admin',1672319409,'192.168.64.1',2,36,41011,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00na4xiy6l8htz1n',1,'Admin',1672319409,'192.168.64.1',2,36,41012,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00nb4xiyagz2s6ct',1,'Admin',1672319409,'192.168.64.1',2,36,41013,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00nc4xiyk18e5zwp',1,'Admin',1672319409,'192.168.64.1',2,36,41014,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00nd4xiyq5ife73h',1,'Admin',1672319409,'192.168.64.1',2,36,41015,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ne4xiywww6libo',1,'Admin',1672319409,'192.168.64.1',2,36,41016,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00nf4xiyxmrmbnaw',1,'Admin',1672319409,'192.168.64.1',2,36,41017,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ng4xiyvrdchg80',1,'Admin',1672319409,'192.168.64.1',2,36,41030,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00nh4xiys5bnpsrz',1,'Admin',1672319409,'192.168.64.1',2,36,41031,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ni4xiy988luhel',1,'Admin',1672319409,'192.168.64.1',2,36,41032,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00nj4xiyicnl3gxh',1,'Admin',1672319409,'192.168.64.1',2,36,41033,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00nk4xiyw2iiztwj',1,'Admin',1672319409,'192.168.64.1',2,36,41034,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00nl4xiyn23i22bj',1,'Admin',1672319409,'192.168.64.1',2,36,41035,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00nm4xiy8249j168',1,'Admin',1672319409,'192.168.64.1',2,36,41036,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00nn4xiyqygj2xuw',1,'Admin',1672319409,'192.168.64.1',2,36,41037,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00no4xiys46ohefo',1,'Admin',1672319409,'192.168.64.1',2,36,41038,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00np4xiy4kaeb3j0',1,'Admin',1672319409,'192.168.64.1',2,36,41051,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00nq4xiypmq6qap6',1,'Admin',1672319409,'192.168.64.1',2,36,41052,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00nr4xiyn33x9gwz',1,'Admin',1672319409,'192.168.64.1',2,36,41053,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00ns4xiyqrg9918r',1,'Admin',1672319409,'192.168.64.1',2,36,41054,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcw00nt4xiysqswevix',1,'Admin',1672319409,'192.168.64.1',2,36,41055,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00nu4xiyd8c1it5i',1,'Admin',1672319409,'192.168.64.1',2,36,41056,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00nv4xiyjmlii2ml',1,'Admin',1672319409,'192.168.64.1',2,36,41057,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00nw4xiyqdc2n19k',1,'Admin',1672319409,'192.168.64.1',2,36,41058,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00nx4xiyh1lncjou',1,'Admin',1672319409,'192.168.64.1',2,36,41059,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ny4xiylu37b9i0',1,'Admin',1672319409,'192.168.64.1',2,36,41072,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00nz4xiy3mwn1yhc',1,'Admin',1672319409,'192.168.64.1',2,36,41073,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00o04xiyr0ycwnym',1,'Admin',1672319409,'192.168.64.1',2,36,41074,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00o14xiyqsq0inhb',1,'Admin',1672319409,'192.168.64.1',2,36,41075,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00o24xiy6x54dabm',1,'Admin',1672319409,'192.168.64.1',2,36,41076,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00o34xiycwop8atc',1,'Admin',1672319409,'192.168.64.1',2,36,41077,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00o44xiy2svidhrv',1,'Admin',1672319409,'192.168.64.1',2,36,41078,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00o54xiy2wx176xj',1,'Admin',1672319409,'192.168.64.1',2,36,41079,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00o64xiyvtnvpsmc',1,'Admin',1672319409,'192.168.64.1',2,36,41080,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00o74xiykhwtq5nj',1,'Admin',1672319409,'192.168.64.1',2,36,41093,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00o84xiy4bpb2x1c',1,'Admin',1672319409,'192.168.64.1',2,36,41094,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00o94xiyzn75kwpf',1,'Admin',1672319409,'192.168.64.1',2,36,41095,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00oa4xiymtt1s4df',1,'Admin',1672319409,'192.168.64.1',2,36,41096,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ob4xiywa6cv2qb',1,'Admin',1672319409,'192.168.64.1',2,36,41097,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00oc4xiyu9cs4nkq',1,'Admin',1672319409,'192.168.64.1',2,36,41098,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00od4xiys6ka722m',1,'Admin',1672319409,'192.168.64.1',2,36,41099,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00oe4xiyw6up7nks',1,'Admin',1672319409,'192.168.64.1',2,36,41100,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00of4xiyeyz9f6gs',1,'Admin',1672319409,'192.168.64.1',2,36,41101,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00og4xiy3tl0uzs9',1,'Admin',1672319409,'192.168.64.1',2,36,41114,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00oh4xiy9vg08zs6',1,'Admin',1672319409,'192.168.64.1',2,36,41115,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00oi4xiyhqq5mczy',1,'Admin',1672319409,'192.168.64.1',2,36,41116,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00oj4xiyq0zbib66',1,'Admin',1672319409,'192.168.64.1',2,36,41117,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ok4xiygciw5t3n',1,'Admin',1672319409,'192.168.64.1',2,36,41118,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ol4xiybyzjfwi2',1,'Admin',1672319409,'192.168.64.1',2,36,41119,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00om4xiy5brenwpt',1,'Admin',1672319409,'192.168.64.1',2,36,41120,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00on4xiy1affh6dy',1,'Admin',1672319409,'192.168.64.1',2,36,41121,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00oo4xiytluysj83',1,'Admin',1672319409,'192.168.64.1',2,36,41122,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00op4xiyx48j9360',1,'Admin',1672319409,'192.168.64.1',2,36,41135,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00oq4xiy1fr426w1',1,'Admin',1672319409,'192.168.64.1',2,36,41136,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00or4xiyt523f60p',1,'Admin',1672319409,'192.168.64.1',2,36,41137,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00os4xiyapn1wz94',1,'Admin',1672319409,'192.168.64.1',2,36,41138,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ot4xiy06sipoyw',1,'Admin',1672319409,'192.168.64.1',2,36,41139,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ou4xiya3hw3gcb',1,'Admin',1672319409,'192.168.64.1',2,36,41140,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ov4xiya4fh7myf',1,'Admin',1672319409,'192.168.64.1',2,36,41141,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ow4xiy2u6r8u8a',1,'Admin',1672319409,'192.168.64.1',2,36,41142,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ox4xiypoiykiqu',1,'Admin',1672319409,'192.168.64.1',2,36,41143,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00oy4xiy9w8vbit1',1,'Admin',1672319409,'192.168.64.1',2,36,41156,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00oz4xiy7zatr4qr',1,'Admin',1672319409,'192.168.64.1',2,36,41157,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00p04xiyymnm0d98',1,'Admin',1672319409,'192.168.64.1',2,36,41158,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00p14xiymmdrvnbv',1,'Admin',1672319409,'192.168.64.1',2,36,41159,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00p24xiy95opb1qm',1,'Admin',1672319409,'192.168.64.1',2,36,41160,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00p34xiy33f9831t',1,'Admin',1672319409,'192.168.64.1',2,36,41161,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00p44xiynairxfu7',1,'Admin',1672319409,'192.168.64.1',2,36,41162,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00p54xiy5pul8zk0',1,'Admin',1672319409,'192.168.64.1',2,36,41163,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00p64xiyoicinhmb',1,'Admin',1672319409,'192.168.64.1',2,36,41164,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00p74xiy0xw5ufyp',1,'Admin',1672319409,'192.168.64.1',2,36,41177,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00p84xiyeqk61caj',1,'Admin',1672319409,'192.168.64.1',2,36,41178,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00p94xiyw7ruk6rd',1,'Admin',1672319409,'192.168.64.1',2,36,41179,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pa4xiyqf42r1hb',1,'Admin',1672319409,'192.168.64.1',2,36,41180,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pb4xiy61xu1inv',1,'Admin',1672319409,'192.168.64.1',2,36,41181,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pc4xiyjljutokt',1,'Admin',1672319409,'192.168.64.1',2,36,41182,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pd4xiy9b11f4eb',1,'Admin',1672319409,'192.168.64.1',2,36,41183,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pe4xiy8pi0ds76',1,'Admin',1672319409,'192.168.64.1',2,36,41184,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pf4xiy9g5qjzei',1,'Admin',1672319409,'192.168.64.1',2,36,41185,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pg4xiyn139pbyg',1,'Admin',1672319409,'192.168.64.1',2,36,41198,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ph4xiyudyrlh00',1,'Admin',1672319409,'192.168.64.1',2,36,41199,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pi4xiyjnnatjfp',1,'Admin',1672319409,'192.168.64.1',2,36,41200,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pj4xiybh3wcq9v',1,'Admin',1672319409,'192.168.64.1',2,36,41201,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pk4xiyto8vg3jy',1,'Admin',1672319409,'192.168.64.1',2,36,41202,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pl4xiyrmlcuib4',1,'Admin',1672319409,'192.168.64.1',2,36,41203,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pm4xiy6agqr6do',1,'Admin',1672319409,'192.168.64.1',2,36,41204,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pn4xiyrlj8apya',1,'Admin',1672319409,'192.168.64.1',2,36,41205,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00po4xiysxx35vzm',1,'Admin',1672319409,'192.168.64.1',2,36,41206,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pp4xiy4tfdrw5z',1,'Admin',1672319409,'192.168.64.1',2,36,41219,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pq4xiydaarhqur',1,'Admin',1672319409,'192.168.64.1',2,36,41220,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pr4xiy419kkb6r',1,'Admin',1672319409,'192.168.64.1',2,36,41221,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ps4xiyrqgaocqh',1,'Admin',1672319409,'192.168.64.1',2,36,41222,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pt4xiysmvm4qx4',1,'Admin',1672319409,'192.168.64.1',2,36,41223,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pu4xiy92wfegts',1,'Admin',1672319409,'192.168.64.1',2,36,41224,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pv4xiy8hrw3cq2',1,'Admin',1672319409,'192.168.64.1',2,36,41225,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pw4xiytq4ogybw',1,'Admin',1672319409,'192.168.64.1',2,36,41226,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00px4xiyu430hqxs',1,'Admin',1672319409,'192.168.64.1',2,36,41227,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00py4xiyqvju0ui9',1,'Admin',1672319409,'192.168.64.1',2,36,41240,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00pz4xiyp1tju6r7',1,'Admin',1672319409,'192.168.64.1',2,36,41241,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00q04xiy2jmiwy6t',1,'Admin',1672319409,'192.168.64.1',2,36,41242,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00q14xiyfp9nsbti',1,'Admin',1672319409,'192.168.64.1',2,36,41243,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00q24xiysh1ru5fr',1,'Admin',1672319409,'192.168.64.1',2,36,41244,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00q34xiyhm68kye1',1,'Admin',1672319409,'192.168.64.1',2,36,41245,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00q44xiyu2cbx7v1',1,'Admin',1672319409,'192.168.64.1',2,36,41246,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00q54xiy2bnbkh7e',1,'Admin',1672319409,'192.168.64.1',2,36,41247,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00q64xiy5mffftjz',1,'Admin',1672319409,'192.168.64.1',2,36,41248,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00q74xiy16nmfxff',1,'Admin',1672319409,'192.168.64.1',2,36,41261,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00q84xiyigijwg79',1,'Admin',1672319409,'192.168.64.1',2,36,41262,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00q94xiy9dvpnw0x',1,'Admin',1672319409,'192.168.64.1',2,36,41263,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qa4xiycnw60cbd',1,'Admin',1672319409,'192.168.64.1',2,36,41264,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qb4xiyhca7aq9l',1,'Admin',1672319409,'192.168.64.1',2,36,41265,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qc4xiy6thd39t5',1,'Admin',1672319409,'192.168.64.1',2,36,41266,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qd4xiyvpeitmwr',1,'Admin',1672319409,'192.168.64.1',2,36,41267,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qe4xiytw1mnysq',1,'Admin',1672319409,'192.168.64.1',2,36,41268,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qf4xiyvh0fvkqq',1,'Admin',1672319409,'192.168.64.1',2,36,41269,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qg4xiyuzt78kq5',1,'Admin',1672319409,'192.168.64.1',2,36,41282,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qh4xiyuckwjt91',1,'Admin',1672319409,'192.168.64.1',2,36,41283,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qi4xiy17a6hka3',1,'Admin',1672319409,'192.168.64.1',2,36,41284,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qj4xiyfuut2bgl',1,'Admin',1672319409,'192.168.64.1',2,36,41285,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qk4xiyxkhgf2r0',1,'Admin',1672319409,'192.168.64.1',2,36,41286,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ql4xiyuvdtcz6o',1,'Admin',1672319409,'192.168.64.1',2,36,41287,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qm4xiydhw6fsph',1,'Admin',1672319409,'192.168.64.1',2,36,41288,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qn4xiyuyz4d1sj',1,'Admin',1672319409,'192.168.64.1',2,36,41289,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qo4xiyxmrqdzev',1,'Admin',1672319409,'192.168.64.1',2,36,41290,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qp4xiyoyp35n3e',1,'Admin',1672319409,'192.168.64.1',2,36,41303,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qq4xiy168k4vrd',1,'Admin',1672319409,'192.168.64.1',2,36,41304,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qr4xiy4afjmv27',1,'Admin',1672319409,'192.168.64.1',2,36,41305,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qs4xiyxlir5toh',1,'Admin',1672319409,'192.168.64.1',2,36,41306,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qt4xiykow2n5jq',1,'Admin',1672319409,'192.168.64.1',2,36,41307,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qu4xiy176w1fw6',1,'Admin',1672319409,'192.168.64.1',2,36,41308,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qv4xiyj2o9rtnq',1,'Admin',1672319409,'192.168.64.1',2,36,41309,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qw4xiy4enakn36',1,'Admin',1672319409,'192.168.64.1',2,36,41310,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qx4xiy91ia96sb',1,'Admin',1672319409,'192.168.64.1',2,36,41311,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qy4xiyizo0j8wg',1,'Admin',1672319409,'192.168.64.1',2,36,41324,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00qz4xiyujkae0za',1,'Admin',1672319409,'192.168.64.1',2,36,41325,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00r04xiy4wsh2fht',1,'Admin',1672319409,'192.168.64.1',2,36,41326,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00r14xiyrmbpnpzj',1,'Admin',1672319409,'192.168.64.1',2,36,41327,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00r24xiy5bq5tvix',1,'Admin',1672319409,'192.168.64.1',2,36,41328,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00r34xiyreu2g9hs',1,'Admin',1672319409,'192.168.64.1',2,36,41329,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00r44xiydwfszj5z',1,'Admin',1672319409,'192.168.64.1',2,36,41330,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00r54xiycu9sz6qp',1,'Admin',1672319409,'192.168.64.1',2,36,41331,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00r64xiygim8dlvv',1,'Admin',1672319409,'192.168.64.1',2,36,41332,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00r74xiyu1jt2a3j',1,'Admin',1672319409,'192.168.64.1',2,36,41345,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00r84xiyqvdo1yux',1,'Admin',1672319409,'192.168.64.1',2,36,41346,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00r94xiyrjgiem6g',1,'Admin',1672319409,'192.168.64.1',2,36,41347,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ra4xiy62k4nvvy',1,'Admin',1672319409,'192.168.64.1',2,36,41348,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00rb4xiyfmo5nf4x',1,'Admin',1672319409,'192.168.64.1',2,36,41349,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00rc4xiyy31xdl3l',1,'Admin',1672319409,'192.168.64.1',2,36,41350,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00rd4xiyhct7bwwd',1,'Admin',1672319409,'192.168.64.1',2,36,41351,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00re4xiy7xqi4ifw',1,'Admin',1672319409,'192.168.64.1',2,36,41352,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00rf4xiycr11n7c3',1,'Admin',1672319409,'192.168.64.1',2,36,41353,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00rg4xiyhal3i1t4',1,'Admin',1672319409,'192.168.64.1',2,36,41366,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00rh4xiyog5438sl',1,'Admin',1672319409,'192.168.64.1',2,36,41367,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ri4xiyjec19jer',1,'Admin',1672319409,'192.168.64.1',2,36,41368,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00rj4xiy6bxx6kam',1,'Admin',1672319409,'192.168.64.1',2,36,41369,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00rk4xiyo74yvk0h',1,'Admin',1672319409,'192.168.64.1',2,36,41370,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00rl4xiywmkv0txz',1,'Admin',1672319409,'192.168.64.1',2,36,41371,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00rm4xiy3fbgvu6q',1,'Admin',1672319409,'192.168.64.1',2,36,41372,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00rn4xiy0in37lv4',1,'Admin',1672319409,'192.168.64.1',2,36,41373,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ro4xiyftypu8p4',1,'Admin',1672319409,'192.168.64.1',2,36,41374,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00rp4xiybjwabfqw',1,'Admin',1672319409,'192.168.64.1',2,36,41387,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00rq4xiy8wuelosg',1,'Admin',1672319409,'192.168.64.1',2,36,41388,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00rr4xiyj8pdgnkj',1,'Admin',1672319409,'192.168.64.1',2,36,41389,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00rs4xiydfqfmaeq',1,'Admin',1672319409,'192.168.64.1',2,36,41390,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00rt4xiywza33tn5',1,'Admin',1672319409,'192.168.64.1',2,36,41391,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ru4xiy52janrux',1,'Admin',1672319409,'192.168.64.1',2,36,41392,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00rv4xiy8bd1nt3y',1,'Admin',1672319409,'192.168.64.1',2,36,41393,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00rw4xiyq7w2ligo',1,'Admin',1672319409,'192.168.64.1',2,36,41394,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00rx4xiyca7maflw',1,'Admin',1672319409,'192.168.64.1',2,36,41395,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ry4xiywuedsapn',1,'Admin',1672319409,'192.168.64.1',2,36,41408,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00rz4xiyf2pkwunm',1,'Admin',1672319409,'192.168.64.1',2,36,41409,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00s04xiyd4vn9wnn',1,'Admin',1672319409,'192.168.64.1',2,36,41410,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00s14xiys0owgk4l',1,'Admin',1672319409,'192.168.64.1',2,36,41411,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00s24xiy3ad55lf5',1,'Admin',1672319409,'192.168.64.1',2,36,41412,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00s34xiy51jmjomi',1,'Admin',1672319409,'192.168.64.1',2,36,41413,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00s44xiyl3t0h1jo',1,'Admin',1672319409,'192.168.64.1',2,36,41414,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00s54xiyes1osu19',1,'Admin',1672319409,'192.168.64.1',2,36,41415,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00s64xiyqwneq2wc',1,'Admin',1672319409,'192.168.64.1',2,36,41416,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00s74xiyuugo0ngr',1,'Admin',1672319409,'192.168.64.1',2,36,41429,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00s84xiyzqpblm8j',1,'Admin',1672319409,'192.168.64.1',2,36,41430,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00s94xiyfanb5j24',1,'Admin',1672319409,'192.168.64.1',2,36,41431,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00sa4xiy7rkv56wh',1,'Admin',1672319409,'192.168.64.1',2,36,41432,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00sb4xiyzmtd9ud2',1,'Admin',1672319409,'192.168.64.1',2,36,41433,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00sc4xiyx5rb8z76',1,'Admin',1672319409,'192.168.64.1',2,36,41434,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00sd4xiyhxfkdaor',1,'Admin',1672319409,'192.168.64.1',2,36,41435,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00se4xiyz2e6l3zt',1,'Admin',1672319409,'192.168.64.1',2,36,41436,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00sf4xiyq38inm6k',1,'Admin',1672319409,'192.168.64.1',2,36,41437,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00sg4xiyfb9siec9',1,'Admin',1672319409,'192.168.64.1',2,36,41450,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00sh4xiyw54023mw',1,'Admin',1672319409,'192.168.64.1',2,36,41451,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00si4xiyonhq983t',1,'Admin',1672319409,'192.168.64.1',2,36,41452,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00sj4xiyyyoseoaa',1,'Admin',1672319409,'192.168.64.1',2,36,41453,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00sk4xiyqzoevey7',1,'Admin',1672319409,'192.168.64.1',2,36,41454,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00sl4xiyezjo85s9',1,'Admin',1672319409,'192.168.64.1',2,36,41455,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00sm4xiyn0pzxnlw',1,'Admin',1672319409,'192.168.64.1',2,36,41456,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00sn4xiytxp52x9w',1,'Admin',1672319409,'192.168.64.1',2,36,41457,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00so4xiy1xmpe96w',1,'Admin',1672319409,'192.168.64.1',2,36,41458,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00sp4xiy4qqr59h6',1,'Admin',1672319409,'192.168.64.1',2,36,41471,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00sq4xiyxp0xfr5j',1,'Admin',1672319409,'192.168.64.1',2,36,41472,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00sr4xiyc33wy6vp',1,'Admin',1672319409,'192.168.64.1',2,36,41473,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ss4xiyaetllitj',1,'Admin',1672319409,'192.168.64.1',2,36,41474,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00st4xiyxei6hp1n',1,'Admin',1672319409,'192.168.64.1',2,36,41475,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00su4xiyw8fr749v',1,'Admin',1672319409,'192.168.64.1',2,36,41476,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00sv4xiys52d834y',1,'Admin',1672319409,'192.168.64.1',2,36,41477,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00sw4xiyw2an9kqm',1,'Admin',1672319409,'192.168.64.1',2,36,41478,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00sx4xiy7fwi6hhm',1,'Admin',1672319409,'192.168.64.1',2,36,41479,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00sy4xiywywzm78a',1,'Admin',1672319409,'192.168.64.1',2,36,41492,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00sz4xiyiu6kxxpg',1,'Admin',1672319409,'192.168.64.1',2,36,41493,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00t04xiyix0n8a8u',1,'Admin',1672319409,'192.168.64.1',2,36,41494,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00t14xiyi4e6t5cf',1,'Admin',1672319409,'192.168.64.1',2,36,41495,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00t24xiynhccm7ey',1,'Admin',1672319409,'192.168.64.1',2,36,41496,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00t34xiy2ji2l9he',1,'Admin',1672319409,'192.168.64.1',2,36,41497,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00t44xiyua3240o7',1,'Admin',1672319409,'192.168.64.1',2,36,41498,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00t54xiy1l076vbn',1,'Admin',1672319409,'192.168.64.1',2,36,41499,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00t64xiy86f1j1jx',1,'Admin',1672319409,'192.168.64.1',2,36,41500,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00t74xiy3up7yx1d',1,'Admin',1672319409,'192.168.64.1',2,36,41513,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00t84xiyx3m3djh8',1,'Admin',1672319409,'192.168.64.1',2,36,41514,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00t94xiyafpq9hug',1,'Admin',1672319409,'192.168.64.1',2,36,41515,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ta4xiyicc2reqv',1,'Admin',1672319409,'192.168.64.1',2,36,41516,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00tb4xiyjbmd4etm',1,'Admin',1672319409,'192.168.64.1',2,36,41517,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00tc4xiypdahfp19',1,'Admin',1672319409,'192.168.64.1',2,36,41518,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00td4xiydncjymc0',1,'Admin',1672319409,'192.168.64.1',2,36,41519,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00te4xiyo8duf4ly',1,'Admin',1672319409,'192.168.64.1',2,36,41520,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00tf4xiyk0a9jhnw',1,'Admin',1672319409,'192.168.64.1',2,36,41521,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00tg4xiyce0g6wad',1,'Admin',1672319409,'192.168.64.1',2,36,41534,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00th4xiye42bf14n',1,'Admin',1672319409,'192.168.64.1',2,36,41535,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ti4xiyzrgk583h',1,'Admin',1672319409,'192.168.64.1',2,36,41536,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00tj4xiyezv49g0n',1,'Admin',1672319409,'192.168.64.1',2,36,41537,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00tk4xiyqnfg3x81',1,'Admin',1672319409,'192.168.64.1',2,36,41538,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00tl4xiyeh2y5uci',1,'Admin',1672319409,'192.168.64.1',2,36,41539,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00tm4xiyrcxhi46n',1,'Admin',1672319409,'192.168.64.1',2,36,41540,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00tn4xiyw3r5nlqm',1,'Admin',1672319409,'192.168.64.1',2,36,41541,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00to4xiy2z52we33',1,'Admin',1672319409,'192.168.64.1',2,36,41542,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00tp4xiywdb3mcm3',1,'Admin',1672319409,'192.168.64.1',2,36,41555,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00tq4xiyu1ukh0xd',1,'Admin',1672319409,'192.168.64.1',2,36,41556,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00tr4xiylppc5doc',1,'Admin',1672319409,'192.168.64.1',2,36,41557,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ts4xiyv30qhbgh',1,'Admin',1672319409,'192.168.64.1',2,36,41558,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00tt4xiyvtxo0qtg',1,'Admin',1672319409,'192.168.64.1',2,36,41559,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00tu4xiyamr7i0vo',1,'Admin',1672319409,'192.168.64.1',2,36,41560,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00tv4xiysuc3sgoo',1,'Admin',1672319409,'192.168.64.1',2,36,41561,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00tw4xiypdaox9mu',1,'Admin',1672319409,'192.168.64.1',2,36,41562,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00tx4xiyjynikkx3',1,'Admin',1672319409,'192.168.64.1',2,36,41563,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ty4xiy6wbrth2d',1,'Admin',1672319409,'192.168.64.1',2,36,41576,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00tz4xiy5t9s2u4m',1,'Admin',1672319409,'192.168.64.1',2,36,41577,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00u04xiy7zv4ivi3',1,'Admin',1672319409,'192.168.64.1',2,36,41578,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00u14xiy4qzesek6',1,'Admin',1672319409,'192.168.64.1',2,36,41579,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00u24xiyequhjz30',1,'Admin',1672319409,'192.168.64.1',2,36,41580,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00u34xiywt2o5g99',1,'Admin',1672319409,'192.168.64.1',2,36,41581,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00u44xiyi6c1yasl',1,'Admin',1672319409,'192.168.64.1',2,36,41582,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00u54xiy0s4ms0jj',1,'Admin',1672319409,'192.168.64.1',2,36,41583,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00u64xiyi4v63our',1,'Admin',1672319409,'192.168.64.1',2,36,41584,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00u74xiysfw5pftn',1,'Admin',1672319409,'192.168.64.1',2,36,41597,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00u84xiynhryn55p',1,'Admin',1672319409,'192.168.64.1',2,36,41598,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00u94xiy7w6fc2ni',1,'Admin',1672319409,'192.168.64.1',2,36,41599,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ua4xiyyprmiwfh',1,'Admin',1672319409,'192.168.64.1',2,36,41600,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ub4xiyr8nimjvu',1,'Admin',1672319409,'192.168.64.1',2,36,41601,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00uc4xiy4essqevt',1,'Admin',1672319409,'192.168.64.1',2,36,41602,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ud4xiyntkmdxj1',1,'Admin',1672319409,'192.168.64.1',2,36,41603,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ue4xiyadd5tqp0',1,'Admin',1672319409,'192.168.64.1',2,36,41604,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00uf4xiyezabv1kf',1,'Admin',1672319409,'192.168.64.1',2,36,41605,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ug4xiyeb8jhwtx',1,'Admin',1672319409,'192.168.64.1',2,36,41912,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00uh4xiy9lnzlgnq',1,'Admin',1672319409,'192.168.64.1',2,36,41913,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ui4xiyqqj7qcq3',1,'Admin',1672319409,'192.168.64.1',2,36,41914,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00uj4xiy801qvqaa',1,'Admin',1672319409,'192.168.64.1',2,36,41915,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00uk4xiym214urti',1,'Admin',1672319409,'192.168.64.1',2,36,41916,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ul4xiynolt5a9j',1,'Admin',1672319409,'192.168.64.1',2,36,41917,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00um4xiyiczgblkn',1,'Admin',1672319409,'192.168.64.1',2,36,41918,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00un4xiyo4tfk8cy',1,'Admin',1672319409,'192.168.64.1',2,36,41919,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00uo4xiyyp3mxvi5',1,'Admin',1672319409,'192.168.64.1',2,36,41920,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00up4xiypi8svtwx',1,'Admin',1672319409,'192.168.64.1',2,36,41933,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00uq4xiyfqfzi6vu',1,'Admin',1672319409,'192.168.64.1',2,36,41934,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ur4xiyicqbgzgf',1,'Admin',1672319409,'192.168.64.1',2,36,41935,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00us4xiy9z08jsvq',1,'Admin',1672319409,'192.168.64.1',2,36,41936,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ut4xiyhly2sbn5',1,'Admin',1672319409,'192.168.64.1',2,36,41937,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00uu4xiy3t2pw42y',1,'Admin',1672319409,'192.168.64.1',2,36,41938,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00uv4xiyhq125b1z',1,'Admin',1672319409,'192.168.64.1',2,36,41939,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00uw4xiyhmrkkqji',1,'Admin',1672319409,'192.168.64.1',2,36,41940,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ux4xiy7y4uxqku',1,'Admin',1672319409,'192.168.64.1',2,36,41941,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00uy4xiya7d0brtt',1,'Admin',1672319409,'192.168.64.1',2,36,41954,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''); INSERT INTO `auditlog` VALUES ('clc93sqcx00uz4xiy9055x5xe',1,'Admin',1672319409,'192.168.64.1',2,36,41955,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00v04xiyvrbw015c',1,'Admin',1672319409,'192.168.64.1',2,36,41956,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00v14xiyi5l71y7l',1,'Admin',1672319409,'192.168.64.1',2,36,41957,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00v24xiyiepd1f2t',1,'Admin',1672319409,'192.168.64.1',2,36,41958,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00v34xiy3fz416ci',1,'Admin',1672319409,'192.168.64.1',2,36,41959,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00v44xiyv8tdj1m6',1,'Admin',1672319409,'192.168.64.1',2,36,41960,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00v54xiyhyd97esq',1,'Admin',1672319409,'192.168.64.1',2,36,41961,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00v64xiyfuf36a2h',1,'Admin',1672319409,'192.168.64.1',2,36,41962,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00v74xiyswu2pc8u',1,'Admin',1672319409,'192.168.64.1',2,36,41975,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00v84xiyffrd20d9',1,'Admin',1672319409,'192.168.64.1',2,36,41976,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00v94xiytfeaywzz',1,'Admin',1672319409,'192.168.64.1',2,36,41977,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00va4xiybwi6a6h0',1,'Admin',1672319409,'192.168.64.1',2,36,41978,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vb4xiy0jvx4wy3',1,'Admin',1672319409,'192.168.64.1',2,36,41979,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vc4xiyg0wymrnr',1,'Admin',1672319409,'192.168.64.1',2,36,41980,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vd4xiy67axyaut',1,'Admin',1672319409,'192.168.64.1',2,36,41981,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00ve4xiy0zzqs3kk',1,'Admin',1672319409,'192.168.64.1',2,36,41982,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vf4xiyo4fm5795',1,'Admin',1672319409,'192.168.64.1',2,36,41983,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vg4xiyhvx0tb2y',1,'Admin',1672319409,'192.168.64.1',2,36,41996,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vh4xiyw2wivk2j',1,'Admin',1672319409,'192.168.64.1',2,36,41997,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vi4xiy4m7kmtij',1,'Admin',1672319409,'192.168.64.1',2,36,41998,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vj4xiys9kiwnkx',1,'Admin',1672319409,'192.168.64.1',2,36,41999,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vk4xiywj3kgq4v',1,'Admin',1672319409,'192.168.64.1',2,36,42000,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vl4xiy7c05xitb',1,'Admin',1672319409,'192.168.64.1',2,36,42001,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vm4xiy2mdw924z',1,'Admin',1672319409,'192.168.64.1',2,36,42002,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vn4xiyklufa7e8',1,'Admin',1672319409,'192.168.64.1',2,36,42003,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vo4xiy62486tq4',1,'Admin',1672319409,'192.168.64.1',2,36,42004,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vp4xiy2p2nld9s',1,'Admin',1672319409,'192.168.64.1',2,36,42080,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vq4xiyeogr9ou6',1,'Admin',1672319409,'192.168.64.1',2,36,42081,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vr4xiybd75ijae',1,'Admin',1672319409,'192.168.64.1',2,36,42082,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vs4xiyjw1g9xmt',1,'Admin',1672319409,'192.168.64.1',2,36,42083,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vt4xiye3bxc9t6',1,'Admin',1672319409,'192.168.64.1',2,36,42084,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vu4xiybatgfe1q',1,'Admin',1672319409,'192.168.64.1',2,36,42085,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vv4xiyzovt60rz',1,'Admin',1672319409,'192.168.64.1',2,36,42086,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vw4xiyfk39y9my',1,'Admin',1672319409,'192.168.64.1',2,36,42087,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqcx00vx4xiy2oiogdgh',1,'Admin',1672319409,'192.168.64.1',2,36,42088,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300vy4xiywax946tn',1,'Admin',1672319409,'192.168.64.1',2,15,23035,NULL,'Maximum number of opened files','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300vz4xiyzdi7it92',1,'Admin',1672319409,'192.168.64.1',2,15,23036,NULL,'Maximum number of processes','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300w04xiyhhqc8ezk',1,'Admin',1672319409,'192.168.64.1',2,15,23039,NULL,'Host boot time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300w14xiyjpntaekg',1,'Admin',1672319409,'192.168.64.1',2,15,23041,NULL,'Processor load (15 min average per core)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300w24xiyoelny0xm',1,'Admin',1672319409,'192.168.64.1',2,15,23042,NULL,'Processor load (1 min average per core)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300w34xiyccllbako',1,'Admin',1672319409,'192.168.64.1',2,15,23043,NULL,'Processor load (5 min average per core)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300w44xiyklh43jxl',1,'Admin',1672319409,'192.168.64.1',2,15,23053,NULL,'Host name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300w54xiykrxx8zmq',1,'Admin',1672319409,'192.168.64.1',2,15,23054,NULL,'Host local time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300w64xiy1gc94yzc',1,'Admin',1672319409,'192.168.64.1',2,15,23058,NULL,'System information','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300w74xiygegipj3j',1,'Admin',1672319409,'192.168.64.1',2,15,23059,NULL,'System uptime','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300w84xiyxx94afzc',1,'Admin',1672319409,'192.168.64.1',2,15,23060,NULL,'Number of logged in users','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300w94xiy0tgp3t2d',1,'Admin',1672319409,'192.168.64.1',2,15,23061,NULL,'Checksum of /etc/passwd','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wa4xiyuwpc6q5n',1,'Admin',1672319409,'192.168.64.1',2,15,23062,NULL,'Available memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wb4xiybgdhmps0',1,'Admin',1672319409,'192.168.64.1',2,15,23063,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wc4xiyxbm14sbj',1,'Admin',1672319409,'192.168.64.1',2,15,23077,NULL,'Incoming network traffic on en0','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wd4xiyvkfdpv1i',1,'Admin',1672319409,'192.168.64.1',2,15,23078,NULL,'Outgoing network traffic on en0','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300we4xiyih3ajhz8',1,'Admin',1672319409,'192.168.64.1',2,15,27893,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wf4xiystg47sg9',1,'Admin',1672319409,'192.168.64.1',2,15,27894,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wg4xiyg5qkkgyj',1,'Admin',1672319409,'192.168.64.1',2,15,27895,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wh4xiyr8oph5yt',1,'Admin',1672319409,'192.168.64.1',2,15,27898,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wi4xiyvefhdxej',1,'Admin',1672319409,'192.168.64.1',2,15,27900,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wj4xiym6v5k227',1,'Admin',1672319409,'192.168.64.1',2,15,28978,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wk4xiy3koh86wl',1,'Admin',1672319409,'192.168.64.1',2,15,28979,NULL,'Free memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wl4xiyckn748i1',1,'Admin',1672319409,'192.168.64.1',2,15,28980,NULL,'Memory (buffers)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wm4xiys2wm5dac',1,'Admin',1672319409,'192.168.64.1',2,15,28981,NULL,'Memory (cached)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wn4xiy8pt0um2q',1,'Admin',1672319409,'192.168.64.1',2,15,28982,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wo4xiygsmw4wij',1,'Admin',1672319409,'192.168.64.1',2,15,28983,NULL,'Available memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wp4xiygwsjf6k2',1,'Admin',1672319409,'192.168.64.1',2,15,28984,NULL,'Total swap space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wq4xiy08qzyebm',1,'Admin',1672319409,'192.168.64.1',2,15,28985,NULL,'Free swap space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wr4xiy97rfr3k3',1,'Admin',1672319409,'192.168.64.1',2,15,28986,NULL,'Free swap space in %','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300ws4xiyggnalf7t',1,'Admin',1672319409,'192.168.64.1',2,15,29103,NULL,'Available memory in %','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wt4xiye5g5uivx',1,'Admin',1672319409,'192.168.64.1',2,15,29104,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wu4xiysa699jy1',1,'Admin',1672319409,'192.168.64.1',2,15,29105,NULL,'Available memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wv4xiyzkd6vexc',1,'Admin',1672319409,'192.168.64.1',2,15,29106,NULL,'Total swap space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300ww4xiyh6xiqb04',1,'Admin',1672319409,'192.168.64.1',2,15,29107,NULL,'Free swap space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wx4xiy75yk70b8',1,'Admin',1672319409,'192.168.64.1',2,15,29108,NULL,'Free swap space in %','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wy4xiy7y9646ub',1,'Admin',1672319409,'192.168.64.1',2,15,30119,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300wz4xiyb4y4oqxz',1,'Admin',1672319409,'192.168.64.1',2,15,30120,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300x04xiy0cpcnvt9',1,'Admin',1672319409,'192.168.64.1',2,15,30611,NULL,'Memcached: Ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300x14xiyq4am4cm0',1,'Admin',1672319409,'192.168.64.1',2,15,30612,NULL,'Memcached: Get status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300x24xiy7pg5757q',1,'Admin',1672319409,'192.168.64.1',2,15,30613,NULL,'Memcached: Commands: FLUSH per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300x34xiyorrmsaap',1,'Admin',1672319409,'192.168.64.1',2,15,30614,NULL,'Memcached: Bytes used','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300x44xiy6pupiond',1,'Admin',1672319409,'192.168.64.1',2,15,30615,NULL,'Memcached: Uptime','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300x54xiyfz6iguae',1,'Admin',1672319409,'192.168.64.1',2,15,30616,NULL,'Memcached: New items per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300x64xiyzkw3uinl',1,'Admin',1672319409,'192.168.64.1',2,15,30617,NULL,'Memcached: Threads','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300x74xiyuftax92b',1,'Admin',1672319409,'192.168.64.1',2,15,30618,NULL,'Memcached: Misses per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300x84xiyfh7dx8cr',1,'Admin',1672319409,'192.168.64.1',2,15,30619,NULL,'Memcached: Hits per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300x94xiymlnpv6w0',1,'Admin',1672319409,'192.168.64.1',2,15,30620,NULL,'Memcached: Evictions per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xa4xiyv2wawvy4',1,'Admin',1672319409,'192.168.64.1',2,15,30621,NULL,'Memcached: Current number of items stored','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xb4xiytr64j4wg',1,'Admin',1672319409,'192.168.64.1',2,15,30622,NULL,'Memcached: Written bytes per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xc4xiyglhbs9r5',1,'Admin',1672319409,'192.168.64.1',2,15,30623,NULL,'Memcached: Read bytes per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xd4xiy034rgspe',1,'Admin',1672319409,'192.168.64.1',2,15,30624,NULL,'Memcached: Process id','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xe4xiycd9nu9a5',1,'Admin',1672319409,'192.168.64.1',2,15,30625,NULL,'Memcached: Commands: GET per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xf4xiyp9v0pc0c',1,'Admin',1672319409,'192.168.64.1',2,15,30626,NULL,'Memcached: CPU user','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xg4xiyno6y5qx3',1,'Admin',1672319409,'192.168.64.1',2,15,30627,NULL,'Memcached: CPU sys','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xh4xiyax77ifuh',1,'Admin',1672319409,'192.168.64.1',2,15,30628,NULL,'Memcached: Throttled connections','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xi4xiy7gyptpik',1,'Admin',1672319409,'192.168.64.1',2,15,30629,NULL,'Memcached: Connection structures','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xj4xiylgenjmb0',1,'Admin',1672319409,'192.168.64.1',2,15,30630,NULL,'Memcached: New connections per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xk4xiykwp2bnjv',1,'Admin',1672319409,'192.168.64.1',2,15,30631,NULL,'Memcached: Queued connections per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xl4xiykjb7a8ue',1,'Admin',1672319409,'192.168.64.1',2,15,30632,NULL,'Memcached: Max connections','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xm4xiyeb6qcdvb',1,'Admin',1672319409,'192.168.64.1',2,15,30633,NULL,'Memcached: Open connections','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xn4xiyb2q7la53',1,'Admin',1672319409,'192.168.64.1',2,15,30634,NULL,'Memcached: Maximum number of bytes','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xo4xiypm4dh5l4',1,'Admin',1672319409,'192.168.64.1',2,15,30635,NULL,'Memcached: Commands: SET per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xp4xiys5rivu2f',1,'Admin',1672319409,'192.168.64.1',2,15,30636,NULL,'Memcached: Memcached version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xq4xiyqxzpxz9a',1,'Admin',1672319409,'192.168.64.1',2,15,31364,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xr4xiykabmgx0e',1,'Admin',1672319409,'192.168.64.1',2,15,31836,NULL,'Maximum number of open file descriptors','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xs4xiydassen6f',1,'Admin',1672319409,'192.168.64.1',2,15,31837,NULL,'Maximum number of processes','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xt4xiyj6d5542q',1,'Admin',1672319409,'192.168.64.1',2,15,31838,NULL,'Number of processes','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xu4xiyqa2m493p',1,'Admin',1672319409,'192.168.64.1',2,15,31839,NULL,'Number of running processes','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xv4xiyihwklmwh',1,'Admin',1672319409,'192.168.64.1',2,15,31840,NULL,'System boot time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xw4xiycv2wfre8',1,'Admin',1672319409,'192.168.64.1',2,15,31841,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xx4xiyee5hyx8p',1,'Admin',1672319409,'192.168.64.1',2,15,31842,NULL,'System local time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xy4xiynj9rzi3f',1,'Admin',1672319409,'192.168.64.1',2,15,31843,NULL,'Operating system architecture','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300xz4xiyd8hpsbuk',1,'Admin',1672319409,'192.168.64.1',2,15,31844,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300y04xiyolxtn0zb',1,'Admin',1672319409,'192.168.64.1',2,15,31845,NULL,'Software installed','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300y14xiy7rh5w2ky',1,'Admin',1672319409,'192.168.64.1',2,15,31846,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300y24xiyaylbzg6i',1,'Admin',1672319409,'192.168.64.1',2,15,31847,NULL,'System uptime','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300y34xiyuyqa3ofp',1,'Admin',1672319409,'192.168.64.1',2,15,31848,NULL,'Number of logged in users','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300y44xiyttelns52',1,'Admin',1672319409,'192.168.64.1',2,15,31849,NULL,'Checksum of /etc/passwd','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300y54xiysheh6twv',1,'Admin',1672319409,'192.168.64.1',2,15,31850,NULL,'Free swap space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300y64xiyprqajx79',1,'Admin',1672319409,'192.168.64.1',2,15,31851,NULL,'Free swap space in %','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300y74xiyf4hizyrp',1,'Admin',1672319409,'192.168.64.1',2,15,31852,NULL,'Total swap space','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300y84xiywwh97wnq',1,'Admin',1672319409,'192.168.64.1',2,15,31853,NULL,'Available memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300y94xiymxwo22bl',1,'Admin',1672319409,'192.168.64.1',2,15,31854,NULL,'Available memory in %','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300ya4xiylvdadczl',1,'Admin',1672319409,'192.168.64.1',2,15,31855,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yb4xiy5lfvx8lt',1,'Admin',1672319409,'192.168.64.1',2,15,31893,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yc4xiynek7lg8d',1,'Admin',1672319409,'192.168.64.1',2,15,32516,NULL,'MS Exchange: Databases total mounted','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yd4xiysyzh7yoo',1,'Admin',1672319409,'192.168.64.1',2,15,32517,NULL,'MS Exchange [Client Access Server]: ActiveSync: ping command pending','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300ye4xiyiw2tlib0',1,'Admin',1672319409,'192.168.64.1',2,15,32518,NULL,'MS Exchange [Client Access Server]: ActiveSync: requests per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yf4xiym4aw5soc',1,'Admin',1672319409,'192.168.64.1',2,15,32519,NULL,'MS Exchange [Client Access Server]: ActiveSync: sync commands per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yg4xiyyd0rq6mv',1,'Admin',1672319409,'192.168.64.1',2,15,32520,NULL,'MS Exchange [Client Access Server]: Autodiscover: requests per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yh4xiybtc82flu',1,'Admin',1672319409,'192.168.64.1',2,15,32521,NULL,'MS Exchange [Client Access Server]: Availability Service: availability requests per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yi4xiyzkp65sh7',1,'Admin',1672319409,'192.168.64.1',2,15,32522,NULL,'MS Exchange [Client Access Server]: Outlook Web App: current unique users','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yj4xiy23cso1wq',1,'Admin',1672319409,'192.168.64.1',2,15,32523,NULL,'MS Exchange [Client Access Server]: Outlook Web App: requests per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yk4xiykotdnyam',1,'Admin',1672319409,'192.168.64.1',2,15,32524,NULL,'MS Exchange [Client Access Server]: MSExchangeWS: requests per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yl4xiyhw8vkmuy',1,'Admin',1672319409,'192.168.64.1',2,15,32546,NULL,'MS Exchange: Databases total mounted','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300ym4xiydgsqzlcl',1,'Admin',1672319409,'192.168.64.1',2,15,32547,NULL,'MS Exchange [Client Access Server]: ActiveSync: ping command pending','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yn4xiyz2l1ziqr',1,'Admin',1672319409,'192.168.64.1',2,15,32548,NULL,'MS Exchange [Client Access Server]: ActiveSync: requests per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yo4xiykxha2kfu',1,'Admin',1672319409,'192.168.64.1',2,15,32549,NULL,'MS Exchange [Client Access Server]: ActiveSync: sync commands per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yp4xiy3dj2674a',1,'Admin',1672319409,'192.168.64.1',2,15,32550,NULL,'MS Exchange [Client Access Server]: Autodiscover: requests per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yq4xiy24iidxrv',1,'Admin',1672319409,'192.168.64.1',2,15,32551,NULL,'MS Exchange [Client Access Server]: Availability Service: availability requests per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yr4xiydxu8ls25',1,'Admin',1672319409,'192.168.64.1',2,15,32552,NULL,'MS Exchange [Client Access Server]: Outlook Web App: current unique users','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300ys4xiy1sgo6bk2',1,'Admin',1672319409,'192.168.64.1',2,15,32553,NULL,'MS Exchange [Client Access Server]: Outlook Web App: requests per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yt4xiyp9jdka9m',1,'Admin',1672319409,'192.168.64.1',2,15,32554,NULL,'MS Exchange [Client Access Server]: MSExchangeWS: requests per second','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yu4xiypw0aer1f',1,'Admin',1672319409,'192.168.64.1',2,15,33630,NULL,'Sharepoint: Get directory structure','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yv4xiyablc87fw',1,'Admin',1672319409,'192.168.64.1',2,15,33631,NULL,'Sharepoint: Health score','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yw4xiymjaie1ph',1,'Admin',1672319409,'192.168.64.1',2,15,33632,NULL,'Sharepoint: Get directory structure: Status','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yx4xiy7c7qxirf',1,'Admin',1672319409,'192.168.64.1',2,15,33633,NULL,'Sharepoint: Get directory structure: Exec time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yy4xiymz3ogr2m',1,'Admin',1672319409,'192.168.64.1',2,15,34149,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300yz4xiyf1eko7vw',1,'Admin',1672319409,'192.168.64.1',2,15,34150,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300z04xiynu1a61fw',1,'Admin',1672319409,'192.168.64.1',2,15,34151,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300z14xiyf2kxyn6a',1,'Admin',1672319409,'192.168.64.1',2,15,34152,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300z24xiyqdq7epni',1,'Admin',1672319409,'192.168.64.1',2,15,34153,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300z34xiyfeh5051y',1,'Admin',1672319409,'192.168.64.1',2,15,34154,NULL,'CPU utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300z44xiyuk3tvrvt',1,'Admin',1672319409,'192.168.64.1',2,15,34155,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300z54xiy85icnzpe',1,'Admin',1672319409,'192.168.64.1',2,15,34156,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300z64xiyikxj9t8b',1,'Admin',1672319409,'192.168.64.1',2,15,34157,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300z74xiyi3xp1uc1',1,'Admin',1672319409,'192.168.64.1',2,15,34158,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300z84xiyze3hsp9g',1,'Admin',1672319409,'192.168.64.1',2,15,34159,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300z94xiyukpm5870',1,'Admin',1672319409,'192.168.64.1',2,15,34160,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300za4xiyzry5u1nu',1,'Admin',1672319409,'192.168.64.1',2,15,36847,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zb4xiykzk2kfhd',1,'Admin',1672319409,'192.168.64.1',2,15,36848,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zc4xiyd6g4f7wx',1,'Admin',1672319409,'192.168.64.1',2,15,36849,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zd4xiyff52i7ij',1,'Admin',1672319409,'192.168.64.1',2,15,36850,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300ze4xiyw6vrnmds',1,'Admin',1672319409,'192.168.64.1',2,15,36851,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zf4xiy8c7royt3',1,'Admin',1672319409,'192.168.64.1',2,15,36852,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zg4xiy2f2k05s0',1,'Admin',1672319409,'192.168.64.1',2,15,36853,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zh4xiyg2qca50l',1,'Admin',1672319409,'192.168.64.1',2,15,36901,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zi4xiy277cgh63',1,'Admin',1672319409,'192.168.64.1',2,15,36902,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zj4xiywjorw5vn',1,'Admin',1672319409,'192.168.64.1',2,15,36903,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zk4xiyar84k935',1,'Admin',1672319409,'192.168.64.1',2,15,36904,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zl4xiydrmgjbeq',1,'Admin',1672319409,'192.168.64.1',2,15,36905,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zm4xiy5wpsoi24',1,'Admin',1672319409,'192.168.64.1',2,15,36906,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zn4xiy1xdgb6ew',1,'Admin',1672319409,'192.168.64.1',2,15,36907,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zo4xiyp8yak29u',1,'Admin',1672319409,'192.168.64.1',2,15,36955,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zp4xiyagh2ztau',1,'Admin',1672319409,'192.168.64.1',2,15,36956,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zq4xiyg74v4nyt',1,'Admin',1672319409,'192.168.64.1',2,15,36957,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zr4xiyz2zww0s8',1,'Admin',1672319409,'192.168.64.1',2,15,36958,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zs4xiyjnfxq847',1,'Admin',1672319409,'192.168.64.1',2,15,36959,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zt4xiymcd1eqww',1,'Admin',1672319409,'192.168.64.1',2,15,36960,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zu4xiy2pqlww8k',1,'Admin',1672319409,'192.168.64.1',2,15,36961,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zv4xiyn0hx9kti',1,'Admin',1672319409,'192.168.64.1',2,15,37009,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zw4xiydat99fmc',1,'Admin',1672319409,'192.168.64.1',2,15,37010,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zx4xiymyeoch2j',1,'Admin',1672319409,'192.168.64.1',2,15,37011,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zy4xiyk4uzv0hx',1,'Admin',1672319409,'192.168.64.1',2,15,37012,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh300zz4xiy624q2rb3',1,'Admin',1672319409,'192.168.64.1',2,15,37013,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301004xiykefsz3vj',1,'Admin',1672319409,'192.168.64.1',2,15,37014,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301014xiyvkp2uust',1,'Admin',1672319409,'192.168.64.1',2,15,37015,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301024xiyzowja70h',1,'Admin',1672319409,'192.168.64.1',2,15,37063,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301034xiyqbuag8vg',1,'Admin',1672319409,'192.168.64.1',2,15,37064,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301044xiy2zcmn7hp',1,'Admin',1672319409,'192.168.64.1',2,15,37065,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301054xiyj18dkiu4',1,'Admin',1672319409,'192.168.64.1',2,15,37066,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301064xiy5g8xqmno',1,'Admin',1672319409,'192.168.64.1',2,15,37067,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301074xiyfffysc67',1,'Admin',1672319409,'192.168.64.1',2,15,37068,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301084xiys8c6jvtp',1,'Admin',1672319409,'192.168.64.1',2,15,37069,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301094xiyg9xawpwn',1,'Admin',1672319409,'192.168.64.1',2,15,37117,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010a4xiy427wxb48',1,'Admin',1672319409,'192.168.64.1',2,15,37118,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010b4xiygw8ge2gd',1,'Admin',1672319409,'192.168.64.1',2,15,37119,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010c4xiy46nlx2bp',1,'Admin',1672319409,'192.168.64.1',2,15,37120,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010d4xiy4aoynga6',1,'Admin',1672319409,'192.168.64.1',2,15,37121,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010e4xiypcouagmv',1,'Admin',1672319409,'192.168.64.1',2,15,37122,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010f4xiy63bio8pq',1,'Admin',1672319409,'192.168.64.1',2,15,37123,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010g4xiydusgvmcy',1,'Admin',1672319409,'192.168.64.1',2,15,37171,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010h4xiyb8xe9afj',1,'Admin',1672319409,'192.168.64.1',2,15,37172,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010i4xiyibd8m9y7',1,'Admin',1672319409,'192.168.64.1',2,15,37173,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010j4xiy8llf4bpf',1,'Admin',1672319409,'192.168.64.1',2,15,37174,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010k4xiy5ojc335d',1,'Admin',1672319409,'192.168.64.1',2,15,37175,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010l4xiyj5aww3zv',1,'Admin',1672319409,'192.168.64.1',2,15,37176,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010m4xiyefehr1l7',1,'Admin',1672319409,'192.168.64.1',2,15,37177,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010n4xiyjla36qmd',1,'Admin',1672319409,'192.168.64.1',2,15,37225,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010o4xiynu0jmza1',1,'Admin',1672319409,'192.168.64.1',2,15,37226,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010p4xiyulsv291b',1,'Admin',1672319409,'192.168.64.1',2,15,37227,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010q4xiy1rsl1hzp',1,'Admin',1672319409,'192.168.64.1',2,15,37228,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010r4xiysqw2sup7',1,'Admin',1672319409,'192.168.64.1',2,15,37229,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010s4xiyyp28ssc0',1,'Admin',1672319409,'192.168.64.1',2,15,37230,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010t4xiyh4m7xhi4',1,'Admin',1672319409,'192.168.64.1',2,15,37231,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010u4xiyfkbfqcw9',1,'Admin',1672319409,'192.168.64.1',2,15,37279,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010v4xiyv97o3w1g',1,'Admin',1672319409,'192.168.64.1',2,15,37280,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010w4xiybexlo6qy',1,'Admin',1672319409,'192.168.64.1',2,15,37281,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010x4xiyud53vtwv',1,'Admin',1672319409,'192.168.64.1',2,15,37282,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010y4xiy0bly33le',1,'Admin',1672319409,'192.168.64.1',2,15,37283,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3010z4xiyqc08cdzy',1,'Admin',1672319409,'192.168.64.1',2,15,37284,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301104xiyy8uzfqht',1,'Admin',1672319409,'192.168.64.1',2,15,37285,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301114xiy4i8vkfkv',1,'Admin',1672319409,'192.168.64.1',2,15,37333,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301124xiy4gpu2cht',1,'Admin',1672319409,'192.168.64.1',2,15,37334,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301134xiy7snhm06e',1,'Admin',1672319409,'192.168.64.1',2,15,37335,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301144xiyj2xq1hgr',1,'Admin',1672319409,'192.168.64.1',2,15,37336,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301154xiyscsibg80',1,'Admin',1672319409,'192.168.64.1',2,15,37337,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301164xiyymzdl3ed',1,'Admin',1672319409,'192.168.64.1',2,15,37338,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301174xiyvyf0hnvm',1,'Admin',1672319409,'192.168.64.1',2,15,37339,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301184xiymag2a7cn',1,'Admin',1672319409,'192.168.64.1',2,15,37387,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301194xiyisfh7805',1,'Admin',1672319409,'192.168.64.1',2,15,37388,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011a4xiymt7mhuvm',1,'Admin',1672319409,'192.168.64.1',2,15,37389,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011b4xiyfm38ibuk',1,'Admin',1672319409,'192.168.64.1',2,15,37390,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011c4xiy1foycmuk',1,'Admin',1672319409,'192.168.64.1',2,15,37391,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011d4xiyo0uttuid',1,'Admin',1672319409,'192.168.64.1',2,15,37392,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011e4xiyymfq3om3',1,'Admin',1672319409,'192.168.64.1',2,15,37393,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011f4xiy3r8h6v5o',1,'Admin',1672319409,'192.168.64.1',2,15,37441,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011g4xiydaa04jxv',1,'Admin',1672319409,'192.168.64.1',2,15,37442,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011h4xiyulzmweig',1,'Admin',1672319409,'192.168.64.1',2,15,37443,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011i4xiy2u1vxows',1,'Admin',1672319409,'192.168.64.1',2,15,37444,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011j4xiyd0b21ntr',1,'Admin',1672319409,'192.168.64.1',2,15,37445,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011k4xiyqgimab5f',1,'Admin',1672319409,'192.168.64.1',2,15,37446,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011l4xiy6ht753b8',1,'Admin',1672319409,'192.168.64.1',2,15,37447,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011m4xiylo4uw0uo',1,'Admin',1672319409,'192.168.64.1',2,15,37495,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011n4xiyw7i606y2',1,'Admin',1672319409,'192.168.64.1',2,15,37496,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011o4xiy9o1xg7y1',1,'Admin',1672319409,'192.168.64.1',2,15,37497,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011p4xiyx5192dgh',1,'Admin',1672319409,'192.168.64.1',2,15,37498,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011q4xiyo8vkzz56',1,'Admin',1672319409,'192.168.64.1',2,15,37499,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011r4xiycvm79h6w',1,'Admin',1672319409,'192.168.64.1',2,15,37500,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011s4xiyvjv4gz96',1,'Admin',1672319409,'192.168.64.1',2,15,37501,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011t4xiyxum3clqr',1,'Admin',1672319409,'192.168.64.1',2,15,37549,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011u4xiyarddrdan',1,'Admin',1672319409,'192.168.64.1',2,15,37550,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011v4xiyd3bccbmb',1,'Admin',1672319409,'192.168.64.1',2,15,37551,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011w4xiy64zaotyt',1,'Admin',1672319409,'192.168.64.1',2,15,37552,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011x4xiybbbqzpoc',1,'Admin',1672319409,'192.168.64.1',2,15,37553,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011y4xiyazqeayo6',1,'Admin',1672319409,'192.168.64.1',2,15,37554,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3011z4xiyfy1ek7u9',1,'Admin',1672319409,'192.168.64.1',2,15,37555,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301204xiy518urq5q',1,'Admin',1672319409,'192.168.64.1',2,15,37603,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301214xiyr80mvukf',1,'Admin',1672319409,'192.168.64.1',2,15,37604,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301224xiycsv3renk',1,'Admin',1672319409,'192.168.64.1',2,15,37605,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301234xiywymsdpui',1,'Admin',1672319409,'192.168.64.1',2,15,37606,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301244xiyt3bzrzhi',1,'Admin',1672319409,'192.168.64.1',2,15,37607,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301254xiydco8p914',1,'Admin',1672319409,'192.168.64.1',2,15,37608,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301264xiy8x5fppz6',1,'Admin',1672319409,'192.168.64.1',2,15,37609,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301274xiyb12dephm',1,'Admin',1672319409,'192.168.64.1',2,15,37657,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301284xiyylblfwc2',1,'Admin',1672319409,'192.168.64.1',2,15,37658,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301294xiyecz86amr',1,'Admin',1672319409,'192.168.64.1',2,15,37659,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012a4xiypt8kqrwn',1,'Admin',1672319409,'192.168.64.1',2,15,37660,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012b4xiytx5s7704',1,'Admin',1672319409,'192.168.64.1',2,15,37661,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012c4xiyvjkf29ex',1,'Admin',1672319409,'192.168.64.1',2,15,37662,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012d4xiyhw0gawux',1,'Admin',1672319409,'192.168.64.1',2,15,37663,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012e4xiyjn8xkcuk',1,'Admin',1672319409,'192.168.64.1',2,15,37711,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012f4xiy9w3jtwk2',1,'Admin',1672319409,'192.168.64.1',2,15,37712,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012g4xiyee3xgqjo',1,'Admin',1672319409,'192.168.64.1',2,15,37713,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012h4xiydjv30xa7',1,'Admin',1672319409,'192.168.64.1',2,15,37714,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012i4xiyym4972k9',1,'Admin',1672319409,'192.168.64.1',2,15,37715,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012j4xiy0oiozocq',1,'Admin',1672319409,'192.168.64.1',2,15,37716,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012k4xiy4v8rtlgc',1,'Admin',1672319409,'192.168.64.1',2,15,37717,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012l4xiy9f84dp9g',1,'Admin',1672319409,'192.168.64.1',2,15,37765,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012m4xiy0o609wvk',1,'Admin',1672319409,'192.168.64.1',2,15,37766,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012n4xiy8b413jj4',1,'Admin',1672319409,'192.168.64.1',2,15,37767,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012o4xiy5q86rjk7',1,'Admin',1672319409,'192.168.64.1',2,15,37768,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012p4xiyyvron9di',1,'Admin',1672319409,'192.168.64.1',2,15,37769,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012q4xiyzmb7l6ye',1,'Admin',1672319409,'192.168.64.1',2,15,37770,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012r4xiynmi1x5ge',1,'Admin',1672319409,'192.168.64.1',2,15,37771,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012s4xiy018wivjw',1,'Admin',1672319409,'192.168.64.1',2,15,37819,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012t4xiyhwoaggkc',1,'Admin',1672319409,'192.168.64.1',2,15,37820,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012u4xiyi7s0os5r',1,'Admin',1672319409,'192.168.64.1',2,15,37821,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012v4xiyv6wpcqh2',1,'Admin',1672319409,'192.168.64.1',2,15,37822,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012w4xiy8kq0rv29',1,'Admin',1672319409,'192.168.64.1',2,15,37823,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012x4xiy9m8sug42',1,'Admin',1672319409,'192.168.64.1',2,15,37824,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012y4xiyoqcf58cc',1,'Admin',1672319409,'192.168.64.1',2,15,37825,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3012z4xiy7dyo47c5',1,'Admin',1672319409,'192.168.64.1',2,15,37873,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301304xiyfh252ybv',1,'Admin',1672319409,'192.168.64.1',2,15,37874,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301314xiy0gb2rgib',1,'Admin',1672319409,'192.168.64.1',2,15,37875,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301324xiyv41btr91',1,'Admin',1672319409,'192.168.64.1',2,15,37876,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301334xiybhrlr2j0',1,'Admin',1672319409,'192.168.64.1',2,15,37877,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301344xiy9774x8f3',1,'Admin',1672319409,'192.168.64.1',2,15,37878,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301354xiycxdulj0d',1,'Admin',1672319409,'192.168.64.1',2,15,37879,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301364xiy6lgqsa2e',1,'Admin',1672319409,'192.168.64.1',2,15,37927,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301374xiyzwgx58en',1,'Admin',1672319409,'192.168.64.1',2,15,37928,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301384xiyqulfcn99',1,'Admin',1672319409,'192.168.64.1',2,15,37929,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301394xiyc1l70n8x',1,'Admin',1672319409,'192.168.64.1',2,15,37930,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013a4xiydgikoh8q',1,'Admin',1672319409,'192.168.64.1',2,15,37931,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013b4xiyf84b3som',1,'Admin',1672319409,'192.168.64.1',2,15,37932,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013c4xiy8v8nmr7o',1,'Admin',1672319409,'192.168.64.1',2,15,37933,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013d4xiy8lpom1qj',1,'Admin',1672319409,'192.168.64.1',2,15,37981,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013e4xiyyipf3ygv',1,'Admin',1672319409,'192.168.64.1',2,15,37982,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013f4xiynilhv6sb',1,'Admin',1672319409,'192.168.64.1',2,15,37983,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013g4xiy2ofheabd',1,'Admin',1672319409,'192.168.64.1',2,15,37984,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013h4xiyeonloct5',1,'Admin',1672319409,'192.168.64.1',2,15,37985,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013i4xiy7cz2iopk',1,'Admin',1672319409,'192.168.64.1',2,15,37986,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013j4xiykbdoxbw1',1,'Admin',1672319409,'192.168.64.1',2,15,37987,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013k4xiyjgsx3fbq',1,'Admin',1672319409,'192.168.64.1',2,15,38035,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013l4xiyaaf0chfc',1,'Admin',1672319409,'192.168.64.1',2,15,38036,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013m4xiy4aztzv16',1,'Admin',1672319409,'192.168.64.1',2,15,38037,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013n4xiy9nglpxip',1,'Admin',1672319409,'192.168.64.1',2,15,38038,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013o4xiy7z2is27g',1,'Admin',1672319409,'192.168.64.1',2,15,38039,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013p4xiybosz9c5u',1,'Admin',1672319409,'192.168.64.1',2,15,38040,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013q4xiyhisss3ok',1,'Admin',1672319409,'192.168.64.1',2,15,38041,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013r4xiy2knpf4gk',1,'Admin',1672319409,'192.168.64.1',2,15,38089,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013s4xiyx1a98lee',1,'Admin',1672319409,'192.168.64.1',2,15,38090,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013t4xiyxdyeno06',1,'Admin',1672319409,'192.168.64.1',2,15,38091,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013u4xiygsbs19th',1,'Admin',1672319409,'192.168.64.1',2,15,38092,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013v4xiy310p2cg2',1,'Admin',1672319409,'192.168.64.1',2,15,38093,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013w4xiyfpi5c19f',1,'Admin',1672319409,'192.168.64.1',2,15,38094,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013x4xiynelq5m8d',1,'Admin',1672319409,'192.168.64.1',2,15,38095,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013y4xiyrnex3q8j',1,'Admin',1672319409,'192.168.64.1',2,15,38143,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3013z4xiypnqlyvnj',1,'Admin',1672319409,'192.168.64.1',2,15,38144,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301404xiybywrwpgt',1,'Admin',1672319409,'192.168.64.1',2,15,38145,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301414xiyv9msugt1',1,'Admin',1672319409,'192.168.64.1',2,15,38146,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301424xiyylrw7j50',1,'Admin',1672319409,'192.168.64.1',2,15,38147,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301434xiyu4uocqyj',1,'Admin',1672319409,'192.168.64.1',2,15,38148,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301444xiy9ikqmat8',1,'Admin',1672319409,'192.168.64.1',2,15,38149,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301454xiys3u6k7zs',1,'Admin',1672319409,'192.168.64.1',2,15,38197,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301464xiy0cpg5x8a',1,'Admin',1672319409,'192.168.64.1',2,15,38198,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301474xiym8q7eke7',1,'Admin',1672319409,'192.168.64.1',2,15,38199,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301484xiy06b76k45',1,'Admin',1672319409,'192.168.64.1',2,15,38200,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh301494xiyijv63oqf',1,'Admin',1672319409,'192.168.64.1',2,15,38201,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014a4xiy8rf4qt44',1,'Admin',1672319409,'192.168.64.1',2,15,38202,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014b4xiyc0l2hvh1',1,'Admin',1672319409,'192.168.64.1',2,15,38203,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014c4xiymgqobw78',1,'Admin',1672319409,'192.168.64.1',2,15,38251,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014d4xiyxbbv5980',1,'Admin',1672319409,'192.168.64.1',2,15,38252,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014e4xiyshkw9ag7',1,'Admin',1672319409,'192.168.64.1',2,15,38253,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014f4xiy2s8emwb4',1,'Admin',1672319409,'192.168.64.1',2,15,38254,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014g4xiydpdy77h6',1,'Admin',1672319409,'192.168.64.1',2,15,38255,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014h4xiyaoj15aqc',1,'Admin',1672319409,'192.168.64.1',2,15,38256,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014i4xiyxlhy0v3z',1,'Admin',1672319409,'192.168.64.1',2,15,38257,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014j4xiydtdfzv9y',1,'Admin',1672319409,'192.168.64.1',2,15,38305,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014k4xiyokacd1pn',1,'Admin',1672319409,'192.168.64.1',2,15,38306,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014l4xiy54yvywg3',1,'Admin',1672319409,'192.168.64.1',2,15,38307,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014m4xiy98w1snt5',1,'Admin',1672319409,'192.168.64.1',2,15,38308,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014n4xiyur4qsgvn',1,'Admin',1672319409,'192.168.64.1',2,15,38309,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014o4xiypo7hxhyt',1,'Admin',1672319409,'192.168.64.1',2,15,38310,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014p4xiyqh0gmn4d',1,'Admin',1672319409,'192.168.64.1',2,15,38311,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014q4xiy01bpjjgo',1,'Admin',1672319409,'192.168.64.1',2,15,38359,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014r4xiyco8eukpy',1,'Admin',1672319409,'192.168.64.1',2,15,38360,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014s4xiysbfj5sgu',1,'Admin',1672319409,'192.168.64.1',2,15,38361,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014t4xiyrx3oaqnd',1,'Admin',1672319409,'192.168.64.1',2,15,38362,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014u4xiymcdbbix8',1,'Admin',1672319409,'192.168.64.1',2,15,38363,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh3014v4xiyfazbrjb9',1,'Admin',1672319409,'192.168.64.1',2,15,38364,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4014w4xiy70s71dmi',1,'Admin',1672319409,'192.168.64.1',2,15,38365,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4014x4xiykj564054',1,'Admin',1672319409,'192.168.64.1',2,15,38413,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4014y4xiyzxgihbro',1,'Admin',1672319409,'192.168.64.1',2,15,38414,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4014z4xiyy088ncv5',1,'Admin',1672319409,'192.168.64.1',2,15,38415,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401504xiyv3enzn6d',1,'Admin',1672319409,'192.168.64.1',2,15,38416,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401514xiyssmj8n2r',1,'Admin',1672319409,'192.168.64.1',2,15,38417,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401524xiyk1ggjgjk',1,'Admin',1672319409,'192.168.64.1',2,15,38418,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401534xiyq91dcczm',1,'Admin',1672319409,'192.168.64.1',2,15,38419,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401544xiy4bm0cl4q',1,'Admin',1672319409,'192.168.64.1',2,15,38467,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401554xiyzqeaczug',1,'Admin',1672319409,'192.168.64.1',2,15,38468,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401564xiylynn8f2r',1,'Admin',1672319409,'192.168.64.1',2,15,38469,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401574xiydkh0jphm',1,'Admin',1672319409,'192.168.64.1',2,15,38470,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401584xiyctrvuj3y',1,'Admin',1672319409,'192.168.64.1',2,15,38471,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401594xiy41b0uj0m',1,'Admin',1672319409,'192.168.64.1',2,15,38472,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015a4xiy2b2l2gmu',1,'Admin',1672319409,'192.168.64.1',2,15,38473,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015b4xiynku2ihlu',1,'Admin',1672319409,'192.168.64.1',2,15,38521,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015c4xiy0pl024ot',1,'Admin',1672319409,'192.168.64.1',2,15,38522,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015d4xiy96vihevw',1,'Admin',1672319409,'192.168.64.1',2,15,38523,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015e4xiybrauqdtp',1,'Admin',1672319409,'192.168.64.1',2,15,38524,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015f4xiyu15syzed',1,'Admin',1672319409,'192.168.64.1',2,15,38525,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015g4xiy3ucwneol',1,'Admin',1672319409,'192.168.64.1',2,15,38526,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015h4xiyrk6cuje7',1,'Admin',1672319409,'192.168.64.1',2,15,38527,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015i4xiyp7ggj4jz',1,'Admin',1672319409,'192.168.64.1',2,15,39331,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015j4xiyw8i8en3h',1,'Admin',1672319409,'192.168.64.1',2,15,39332,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015k4xiydbmdi1jq',1,'Admin',1672319409,'192.168.64.1',2,15,39333,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015l4xiyk8zhglkd',1,'Admin',1672319409,'192.168.64.1',2,15,39334,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015m4xiyie5e86uj',1,'Admin',1672319409,'192.168.64.1',2,15,39335,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015n4xiycsieg5ep',1,'Admin',1672319409,'192.168.64.1',2,15,39336,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015o4xiyamvfrtxy',1,'Admin',1672319409,'192.168.64.1',2,15,39337,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015p4xiyr469hu9u',1,'Admin',1672319409,'192.168.64.1',2,15,39385,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015q4xiy4ropiw9a',1,'Admin',1672319409,'192.168.64.1',2,15,39386,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015r4xiy5734w6t1',1,'Admin',1672319409,'192.168.64.1',2,15,39387,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015s4xiyhc1mjx2h',1,'Admin',1672319409,'192.168.64.1',2,15,39388,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015t4xiy2cbxyfry',1,'Admin',1672319409,'192.168.64.1',2,15,39389,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015u4xiyuw74211u',1,'Admin',1672319409,'192.168.64.1',2,15,39390,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015v4xiywe2eq21j',1,'Admin',1672319409,'192.168.64.1',2,15,39391,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015w4xiylwuseyr3',1,'Admin',1672319409,'192.168.64.1',2,15,39439,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015x4xiy23wspgwb',1,'Admin',1672319409,'192.168.64.1',2,15,39440,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015y4xiy0aukt6j4',1,'Admin',1672319409,'192.168.64.1',2,15,39441,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4015z4xiy1f8bh1ya',1,'Admin',1672319409,'192.168.64.1',2,15,39442,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401604xiy9w5k15ys',1,'Admin',1672319409,'192.168.64.1',2,15,39443,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401614xiye3jzj2a8',1,'Admin',1672319409,'192.168.64.1',2,15,39444,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401624xiynaobiwhh',1,'Admin',1672319409,'192.168.64.1',2,15,39445,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401634xiy6zbl86xu',1,'Admin',1672319409,'192.168.64.1',2,15,39493,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401644xiy4ljueelg',1,'Admin',1672319409,'192.168.64.1',2,15,39494,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401654xiymcptbge9',1,'Admin',1672319409,'192.168.64.1',2,15,39495,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401664xiydw6aqu4x',1,'Admin',1672319409,'192.168.64.1',2,15,39496,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401674xiyb7ovfwzt',1,'Admin',1672319409,'192.168.64.1',2,15,39497,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401684xiyw12sl28t',1,'Admin',1672319409,'192.168.64.1',2,15,39498,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401694xiybe0fhs1x',1,'Admin',1672319409,'192.168.64.1',2,15,39499,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016a4xiykvo9f68r',1,'Admin',1672319409,'192.168.64.1',2,15,39547,NULL,'Firmware version','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016b4xiye16siko0',1,'Admin',1672319409,'192.168.64.1',2,15,39548,NULL,'Hardware model name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016c4xiyw1c84n86',1,'Admin',1672319409,'192.168.64.1',2,15,39549,NULL,'Hardware serial number','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016d4xiy2crlx0va',1,'Admin',1672319409,'192.168.64.1',2,15,39550,NULL,'Operating system','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016e4xiycq3ha9u6',1,'Admin',1672319409,'192.168.64.1',2,15,39551,NULL,'Total memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016f4xiyud2xiu3h',1,'Admin',1672319409,'192.168.64.1',2,15,39552,NULL,'Used memory','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016g4xiyrtcvp84c',1,'Admin',1672319409,'192.168.64.1',2,15,39553,NULL,'Memory utilization','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016h4xiycowywc8y',1,'Admin',1672319409,'192.168.64.1',2,15,40934,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016i4xiy5t5tb0ea',1,'Admin',1672319409,'192.168.64.1',2,15,40935,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016j4xiytfmxca30',1,'Admin',1672319409,'192.168.64.1',2,15,40936,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016k4xiyd225y42b',1,'Admin',1672319409,'192.168.64.1',2,15,40937,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016l4xiyxwb1i1ex',1,'Admin',1672319409,'192.168.64.1',2,15,40938,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016m4xiy86o3dl8k',1,'Admin',1672319409,'192.168.64.1',2,15,40939,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016n4xiy2w4axvsa',1,'Admin',1672319409,'192.168.64.1',2,15,40940,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016o4xiywa8o8576',1,'Admin',1672319409,'192.168.64.1',2,15,40941,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016p4xiykjhor77z',1,'Admin',1672319409,'192.168.64.1',2,15,40942,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016q4xiyg8vle2n7',1,'Admin',1672319409,'192.168.64.1',2,15,40943,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016r4xiyf6sy9v20',1,'Admin',1672319409,'192.168.64.1',2,15,40944,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016s4xiyyuh5868i',1,'Admin',1672319409,'192.168.64.1',2,15,40955,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016t4xiyi4fbolzy',1,'Admin',1672319409,'192.168.64.1',2,15,40956,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016u4xiyepxq4ilk',1,'Admin',1672319409,'192.168.64.1',2,15,40957,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016v4xiyy9rhrrh1',1,'Admin',1672319409,'192.168.64.1',2,15,40958,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016w4xiykvk4zikn',1,'Admin',1672319409,'192.168.64.1',2,15,40959,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016x4xiy3zksn4kz',1,'Admin',1672319409,'192.168.64.1',2,15,40960,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016y4xiymg378aya',1,'Admin',1672319409,'192.168.64.1',2,15,40961,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4016z4xiy5bci7npp',1,'Admin',1672319409,'192.168.64.1',2,15,40962,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401704xiy1wz08274',1,'Admin',1672319409,'192.168.64.1',2,15,40963,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401714xiysxidw4fi',1,'Admin',1672319409,'192.168.64.1',2,15,40964,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401724xiyj1riwwuc',1,'Admin',1672319409,'192.168.64.1',2,15,40965,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401734xiy820h9w99',1,'Admin',1672319409,'192.168.64.1',2,15,40976,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401744xiyhsie8ycb',1,'Admin',1672319409,'192.168.64.1',2,15,40977,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401754xiyzh5g0vr7',1,'Admin',1672319409,'192.168.64.1',2,15,40978,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401764xiy1rs620sp',1,'Admin',1672319409,'192.168.64.1',2,15,40979,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401774xiy493oann7',1,'Admin',1672319409,'192.168.64.1',2,15,40980,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401784xiyt8r7ohca',1,'Admin',1672319409,'192.168.64.1',2,15,40981,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401794xiyfxpcwhi3',1,'Admin',1672319409,'192.168.64.1',2,15,40982,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017a4xiy26grdfz7',1,'Admin',1672319409,'192.168.64.1',2,15,40983,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017b4xiyolsxfjue',1,'Admin',1672319409,'192.168.64.1',2,15,40984,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017c4xiyoi61g2mb',1,'Admin',1672319409,'192.168.64.1',2,15,40985,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017d4xiy2qssrk0w',1,'Admin',1672319409,'192.168.64.1',2,15,40986,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017e4xiyrebyw7fg',1,'Admin',1672319409,'192.168.64.1',2,15,40997,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017f4xiyk2sutq5y',1,'Admin',1672319409,'192.168.64.1',2,15,40998,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017g4xiyw0bvnehg',1,'Admin',1672319409,'192.168.64.1',2,15,40999,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017h4xiybprb0o1e',1,'Admin',1672319409,'192.168.64.1',2,15,41000,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017i4xiy87qxl004',1,'Admin',1672319409,'192.168.64.1',2,15,41001,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017j4xiyeoj8ctz9',1,'Admin',1672319409,'192.168.64.1',2,15,41002,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017k4xiynp6ua6q0',1,'Admin',1672319409,'192.168.64.1',2,15,41003,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017l4xiy9lu35qr0',1,'Admin',1672319409,'192.168.64.1',2,15,41004,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017m4xiy6vhsy0fl',1,'Admin',1672319409,'192.168.64.1',2,15,41005,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017n4xiyvqo1wvc5',1,'Admin',1672319409,'192.168.64.1',2,15,41006,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017o4xiyl9htpbni',1,'Admin',1672319409,'192.168.64.1',2,15,41007,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017p4xiy4kvacow7',1,'Admin',1672319409,'192.168.64.1',2,15,41018,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017q4xiy38j043cy',1,'Admin',1672319409,'192.168.64.1',2,15,41019,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017r4xiy180y07fv',1,'Admin',1672319409,'192.168.64.1',2,15,41020,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017s4xiywrrflqn0',1,'Admin',1672319409,'192.168.64.1',2,15,41021,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017t4xiygx6h4ttb',1,'Admin',1672319409,'192.168.64.1',2,15,41022,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017u4xiyor8r4lyk',1,'Admin',1672319409,'192.168.64.1',2,15,41023,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017v4xiywqstl8y6',1,'Admin',1672319409,'192.168.64.1',2,15,41024,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017w4xiya2yiy2qz',1,'Admin',1672319409,'192.168.64.1',2,15,41025,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017x4xiyz0aeimgg',1,'Admin',1672319409,'192.168.64.1',2,15,41026,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017y4xiyqgc2jupf',1,'Admin',1672319409,'192.168.64.1',2,15,41027,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4017z4xiyovvzeg9f',1,'Admin',1672319409,'192.168.64.1',2,15,41028,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401804xiycd1whrui',1,'Admin',1672319409,'192.168.64.1',2,15,41039,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401814xiybvikzub7',1,'Admin',1672319409,'192.168.64.1',2,15,41040,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401824xiyajhxl5qv',1,'Admin',1672319409,'192.168.64.1',2,15,41041,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401834xiyv1968rzj',1,'Admin',1672319409,'192.168.64.1',2,15,41042,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401844xiytksi4uv1',1,'Admin',1672319409,'192.168.64.1',2,15,41043,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401854xiyfalg1a27',1,'Admin',1672319409,'192.168.64.1',2,15,41044,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401864xiyftucjcjx',1,'Admin',1672319409,'192.168.64.1',2,15,41045,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401874xiytemu6hql',1,'Admin',1672319409,'192.168.64.1',2,15,41046,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401884xiyfc22fofg',1,'Admin',1672319409,'192.168.64.1',2,15,41047,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401894xiymheqx461',1,'Admin',1672319409,'192.168.64.1',2,15,41048,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018a4xiywq96mods',1,'Admin',1672319409,'192.168.64.1',2,15,41049,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018b4xiyitn390r6',1,'Admin',1672319409,'192.168.64.1',2,15,41060,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018c4xiyt0zveiu1',1,'Admin',1672319409,'192.168.64.1',2,15,41061,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018d4xiyzurkhjaw',1,'Admin',1672319409,'192.168.64.1',2,15,41062,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018e4xiyqr64h9lt',1,'Admin',1672319409,'192.168.64.1',2,15,41063,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018f4xiyghom8zii',1,'Admin',1672319409,'192.168.64.1',2,15,41064,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018g4xiy4az2i2cl',1,'Admin',1672319409,'192.168.64.1',2,15,41065,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018h4xiyd87oahbb',1,'Admin',1672319409,'192.168.64.1',2,15,41066,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018i4xiymjw23zzg',1,'Admin',1672319409,'192.168.64.1',2,15,41067,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018j4xiy5alqtccm',1,'Admin',1672319409,'192.168.64.1',2,15,41068,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018k4xiyxjm8g6h6',1,'Admin',1672319409,'192.168.64.1',2,15,41069,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018l4xiy97jv3azz',1,'Admin',1672319409,'192.168.64.1',2,15,41070,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018m4xiyww5syobm',1,'Admin',1672319409,'192.168.64.1',2,15,41081,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018n4xiye5d6tfi6',1,'Admin',1672319409,'192.168.64.1',2,15,41082,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018o4xiyb8hfafp8',1,'Admin',1672319409,'192.168.64.1',2,15,41083,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018p4xiynauduq5x',1,'Admin',1672319409,'192.168.64.1',2,15,41084,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018q4xiyb4rroveu',1,'Admin',1672319409,'192.168.64.1',2,15,41085,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018r4xiy16b1z5hu',1,'Admin',1672319409,'192.168.64.1',2,15,41086,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018s4xiy5ckh36zb',1,'Admin',1672319409,'192.168.64.1',2,15,41087,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018t4xiyhqysbq3n',1,'Admin',1672319409,'192.168.64.1',2,15,41088,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018u4xiyjnyo6mmx',1,'Admin',1672319409,'192.168.64.1',2,15,41089,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018v4xiywn3m77it',1,'Admin',1672319409,'192.168.64.1',2,15,41090,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018w4xiye1desogm',1,'Admin',1672319409,'192.168.64.1',2,15,41091,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018x4xiy99nqnduy',1,'Admin',1672319409,'192.168.64.1',2,15,41102,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018y4xiynnnkbld1',1,'Admin',1672319409,'192.168.64.1',2,15,41103,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4018z4xiyxv5m9uw1',1,'Admin',1672319409,'192.168.64.1',2,15,41104,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401904xiyvzig8euy',1,'Admin',1672319409,'192.168.64.1',2,15,41105,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401914xiyadtyuxb3',1,'Admin',1672319409,'192.168.64.1',2,15,41106,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401924xiy9pxjsozr',1,'Admin',1672319409,'192.168.64.1',2,15,41107,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401934xiynb3df5i2',1,'Admin',1672319409,'192.168.64.1',2,15,41108,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401944xiyvpaim753',1,'Admin',1672319409,'192.168.64.1',2,15,41109,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401954xiy6cqcjzxa',1,'Admin',1672319409,'192.168.64.1',2,15,41110,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401964xiy7dwvoh4v',1,'Admin',1672319409,'192.168.64.1',2,15,41111,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401974xiy1myat3mn',1,'Admin',1672319409,'192.168.64.1',2,15,41112,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401984xiycuijt75o',1,'Admin',1672319409,'192.168.64.1',2,15,41123,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401994xiyglca5bmp',1,'Admin',1672319409,'192.168.64.1',2,15,41124,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019a4xiyug4n80fh',1,'Admin',1672319409,'192.168.64.1',2,15,41125,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019b4xiyaobsn9g1',1,'Admin',1672319409,'192.168.64.1',2,15,41126,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019c4xiytrbmdgyh',1,'Admin',1672319409,'192.168.64.1',2,15,41127,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019d4xiyfyvld9qs',1,'Admin',1672319409,'192.168.64.1',2,15,41128,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019e4xiy9uibd9vr',1,'Admin',1672319409,'192.168.64.1',2,15,41129,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019f4xiy2rm4z8wb',1,'Admin',1672319409,'192.168.64.1',2,15,41130,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019g4xiy6nsq8egr',1,'Admin',1672319409,'192.168.64.1',2,15,41131,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019h4xiy1xb09tjv',1,'Admin',1672319409,'192.168.64.1',2,15,41132,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019i4xiywg4u02b8',1,'Admin',1672319409,'192.168.64.1',2,15,41133,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019j4xiywzoo4r7l',1,'Admin',1672319409,'192.168.64.1',2,15,41144,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019k4xiyun1kbguj',1,'Admin',1672319409,'192.168.64.1',2,15,41145,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019l4xiys0k3zs2p',1,'Admin',1672319409,'192.168.64.1',2,15,41146,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019m4xiy6axeeumg',1,'Admin',1672319409,'192.168.64.1',2,15,41147,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019n4xiy9kf5f909',1,'Admin',1672319409,'192.168.64.1',2,15,41148,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019o4xiygm780qfh',1,'Admin',1672319409,'192.168.64.1',2,15,41149,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019p4xiy9j8ve0tt',1,'Admin',1672319409,'192.168.64.1',2,15,41150,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019q4xiy26zwk0ou',1,'Admin',1672319409,'192.168.64.1',2,15,41151,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019r4xiybrq3goy5',1,'Admin',1672319409,'192.168.64.1',2,15,41152,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019s4xiy8x71gb94',1,'Admin',1672319409,'192.168.64.1',2,15,41153,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019t4xiy9tx6hg4s',1,'Admin',1672319409,'192.168.64.1',2,15,41154,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019u4xiy1ajyn0h0',1,'Admin',1672319409,'192.168.64.1',2,15,41165,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019v4xiy6hhc1r0i',1,'Admin',1672319409,'192.168.64.1',2,15,41166,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019w4xiycx2at0ht',1,'Admin',1672319409,'192.168.64.1',2,15,41167,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019x4xiyet56xaa8',1,'Admin',1672319409,'192.168.64.1',2,15,41168,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019y4xiygk77f3oe',1,'Admin',1672319409,'192.168.64.1',2,15,41169,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh4019z4xiygcm6cdig',1,'Admin',1672319409,'192.168.64.1',2,15,41170,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401a04xiyzlbndfng',1,'Admin',1672319409,'192.168.64.1',2,15,41171,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401a14xiyommrhing',1,'Admin',1672319409,'192.168.64.1',2,15,41172,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401a24xiywnnv8mgb',1,'Admin',1672319409,'192.168.64.1',2,15,41173,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401a34xiyz8g5lh9u',1,'Admin',1672319409,'192.168.64.1',2,15,41174,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401a44xiyw800m6kj',1,'Admin',1672319409,'192.168.64.1',2,15,41175,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401a54xiy2hhbhsre',1,'Admin',1672319409,'192.168.64.1',2,15,41186,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401a64xiyeqrzj6if',1,'Admin',1672319409,'192.168.64.1',2,15,41187,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401a74xiyhm31ycus',1,'Admin',1672319409,'192.168.64.1',2,15,41188,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401a84xiyb9q29kho',1,'Admin',1672319409,'192.168.64.1',2,15,41189,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401a94xiygrghy3mc',1,'Admin',1672319409,'192.168.64.1',2,15,41190,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401aa4xiywr8dw0nj',1,'Admin',1672319409,'192.168.64.1',2,15,41191,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ab4xiyslskue58',1,'Admin',1672319409,'192.168.64.1',2,15,41192,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ac4xiyfq6cdzi2',1,'Admin',1672319409,'192.168.64.1',2,15,41193,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ad4xiymn2jlgzy',1,'Admin',1672319409,'192.168.64.1',2,15,41194,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ae4xiyx3wm520n',1,'Admin',1672319409,'192.168.64.1',2,15,41195,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401af4xiy9jr2gzt1',1,'Admin',1672319409,'192.168.64.1',2,15,41196,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ag4xiyp7v16u99',1,'Admin',1672319409,'192.168.64.1',2,15,41207,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ah4xiy01mlqzqm',1,'Admin',1672319409,'192.168.64.1',2,15,41208,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ai4xiytm6w0orl',1,'Admin',1672319409,'192.168.64.1',2,15,41209,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401aj4xiydstcjdrr',1,'Admin',1672319409,'192.168.64.1',2,15,41210,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ak4xiybb02i8hi',1,'Admin',1672319409,'192.168.64.1',2,15,41211,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401al4xiylhgwg9ry',1,'Admin',1672319409,'192.168.64.1',2,15,41212,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401am4xiyl8sgrzh3',1,'Admin',1672319409,'192.168.64.1',2,15,41213,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401an4xiyd74y2n2j',1,'Admin',1672319409,'192.168.64.1',2,15,41214,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ao4xiyuo3tjls7',1,'Admin',1672319409,'192.168.64.1',2,15,41215,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ap4xiyizx225rh',1,'Admin',1672319409,'192.168.64.1',2,15,41216,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401aq4xiyvddv0gwe',1,'Admin',1672319409,'192.168.64.1',2,15,41217,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ar4xiyr7eo4bva',1,'Admin',1672319409,'192.168.64.1',2,15,41228,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401as4xiyrsggyspw',1,'Admin',1672319409,'192.168.64.1',2,15,41229,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401at4xiyhcjgryju',1,'Admin',1672319409,'192.168.64.1',2,15,41230,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401au4xiy8cfilmzo',1,'Admin',1672319409,'192.168.64.1',2,15,41231,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401av4xiyupies4pr',1,'Admin',1672319409,'192.168.64.1',2,15,41232,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401aw4xiy7x28zoi0',1,'Admin',1672319409,'192.168.64.1',2,15,41233,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ax4xiyxayavw3h',1,'Admin',1672319409,'192.168.64.1',2,15,41234,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ay4xiy4xrou916',1,'Admin',1672319409,'192.168.64.1',2,15,41235,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401az4xiygbhqp8oj',1,'Admin',1672319409,'192.168.64.1',2,15,41236,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401b04xiy1gll0v82',1,'Admin',1672319409,'192.168.64.1',2,15,41237,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401b14xiy15gnitjf',1,'Admin',1672319409,'192.168.64.1',2,15,41238,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401b24xiyhtioybzy',1,'Admin',1672319409,'192.168.64.1',2,15,41249,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401b34xiyp554j9id',1,'Admin',1672319409,'192.168.64.1',2,15,41250,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401b44xiy0jy4xarh',1,'Admin',1672319409,'192.168.64.1',2,15,41251,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401b54xiypy8oocnx',1,'Admin',1672319409,'192.168.64.1',2,15,41252,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401b64xiyybzy4t4k',1,'Admin',1672319409,'192.168.64.1',2,15,41253,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401b74xiy14o1isj1',1,'Admin',1672319409,'192.168.64.1',2,15,41254,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401b84xiypug03b3x',1,'Admin',1672319409,'192.168.64.1',2,15,41255,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401b94xiyjx93jvou',1,'Admin',1672319409,'192.168.64.1',2,15,41256,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ba4xiy923qysr1',1,'Admin',1672319409,'192.168.64.1',2,15,41257,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bb4xiyjvwnaz9v',1,'Admin',1672319409,'192.168.64.1',2,15,41258,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bc4xiyq3o24suy',1,'Admin',1672319409,'192.168.64.1',2,15,41259,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bd4xiyoutv2el6',1,'Admin',1672319409,'192.168.64.1',2,15,41270,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401be4xiy7jirhbkq',1,'Admin',1672319409,'192.168.64.1',2,15,41271,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bf4xiy2nqud7sb',1,'Admin',1672319409,'192.168.64.1',2,15,41272,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bg4xiy08bx9pue',1,'Admin',1672319409,'192.168.64.1',2,15,41273,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bh4xiysnjlzhfi',1,'Admin',1672319409,'192.168.64.1',2,15,41274,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bi4xiyiqa8qle0',1,'Admin',1672319409,'192.168.64.1',2,15,41275,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bj4xiyp9zbq3bc',1,'Admin',1672319409,'192.168.64.1',2,15,41276,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bk4xiyoarhow85',1,'Admin',1672319409,'192.168.64.1',2,15,41277,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bl4xiya56t896g',1,'Admin',1672319409,'192.168.64.1',2,15,41278,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bm4xiyrwf4m758',1,'Admin',1672319409,'192.168.64.1',2,15,41279,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bn4xiyz4ph90ap',1,'Admin',1672319409,'192.168.64.1',2,15,41280,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bo4xiyycncl6bi',1,'Admin',1672319409,'192.168.64.1',2,15,41291,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bp4xiycoyvnr9z',1,'Admin',1672319409,'192.168.64.1',2,15,41292,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bq4xiybdh5yc87',1,'Admin',1672319409,'192.168.64.1',2,15,41293,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401br4xiywglq7d5t',1,'Admin',1672319409,'192.168.64.1',2,15,41294,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bs4xiyole3g4p1',1,'Admin',1672319409,'192.168.64.1',2,15,41295,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bt4xiyqlit46j2',1,'Admin',1672319409,'192.168.64.1',2,15,41296,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bu4xiyh2ael8xk',1,'Admin',1672319409,'192.168.64.1',2,15,41297,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bv4xiyp54pxkf0',1,'Admin',1672319409,'192.168.64.1',2,15,41298,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bw4xiyoc353ut7',1,'Admin',1672319409,'192.168.64.1',2,15,41299,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bx4xiy2wgj3fa6',1,'Admin',1672319409,'192.168.64.1',2,15,41300,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401by4xiyc9g31x7t',1,'Admin',1672319409,'192.168.64.1',2,15,41301,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401bz4xiy5pe61nm6',1,'Admin',1672319409,'192.168.64.1',2,15,41312,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401c04xiygoosx0ij',1,'Admin',1672319409,'192.168.64.1',2,15,41313,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401c14xiyee2z0lh5',1,'Admin',1672319409,'192.168.64.1',2,15,41314,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401c24xiyzhaykvm8',1,'Admin',1672319409,'192.168.64.1',2,15,41315,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401c34xiy2pxbr174',1,'Admin',1672319409,'192.168.64.1',2,15,41316,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401c44xiyte1ltdpx',1,'Admin',1672319409,'192.168.64.1',2,15,41317,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401c54xiy66pexosb',1,'Admin',1672319409,'192.168.64.1',2,15,41318,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401c64xiyu3fmmaaj',1,'Admin',1672319409,'192.168.64.1',2,15,41319,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401c74xiy2ljpnqc8',1,'Admin',1672319409,'192.168.64.1',2,15,41320,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401c84xiyhc5j5m0t',1,'Admin',1672319409,'192.168.64.1',2,15,41321,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401c94xiym88s3gxi',1,'Admin',1672319409,'192.168.64.1',2,15,41322,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ca4xiy1sc7wg8g',1,'Admin',1672319409,'192.168.64.1',2,15,41333,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401cb4xiy2tbjq7j2',1,'Admin',1672319409,'192.168.64.1',2,15,41334,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401cc4xiylcwslfua',1,'Admin',1672319409,'192.168.64.1',2,15,41335,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401cd4xiyawtgnvrd',1,'Admin',1672319409,'192.168.64.1',2,15,41336,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ce4xiyp6agtwev',1,'Admin',1672319409,'192.168.64.1',2,15,41337,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401cf4xiy7lda2uwc',1,'Admin',1672319409,'192.168.64.1',2,15,41338,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401cg4xiy4rw3oj77',1,'Admin',1672319409,'192.168.64.1',2,15,41339,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ch4xiy7kjx0m00',1,'Admin',1672319409,'192.168.64.1',2,15,41340,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ci4xiy2c99e4lt',1,'Admin',1672319409,'192.168.64.1',2,15,41341,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401cj4xiyud7oxse4',1,'Admin',1672319409,'192.168.64.1',2,15,41342,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ck4xiys6fou4sj',1,'Admin',1672319409,'192.168.64.1',2,15,41343,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401cl4xiy0honn5yr',1,'Admin',1672319409,'192.168.64.1',2,15,41354,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401cm4xiy7fyjimu7',1,'Admin',1672319409,'192.168.64.1',2,15,41355,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401cn4xiyykvsp3z9',1,'Admin',1672319409,'192.168.64.1',2,15,41356,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401co4xiyb668lu8b',1,'Admin',1672319409,'192.168.64.1',2,15,41357,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401cp4xiy9z2va7x3',1,'Admin',1672319409,'192.168.64.1',2,15,41358,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401cq4xiybo2woqad',1,'Admin',1672319409,'192.168.64.1',2,15,41359,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401cr4xiyegi4bvcr',1,'Admin',1672319409,'192.168.64.1',2,15,41360,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401cs4xiyfbi897t8',1,'Admin',1672319409,'192.168.64.1',2,15,41361,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ct4xiycwqjl0ht',1,'Admin',1672319409,'192.168.64.1',2,15,41362,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401cu4xiyj2p1z6lv',1,'Admin',1672319409,'192.168.64.1',2,15,41363,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401cv4xiy97x287b0',1,'Admin',1672319409,'192.168.64.1',2,15,41364,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401cw4xiyvxr86j0c',1,'Admin',1672319409,'192.168.64.1',2,15,41375,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401cx4xiymuugqx6p',1,'Admin',1672319409,'192.168.64.1',2,15,41376,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401cy4xiyaaezphez',1,'Admin',1672319409,'192.168.64.1',2,15,41377,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401cz4xiyhxftu6ka',1,'Admin',1672319409,'192.168.64.1',2,15,41378,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401d04xiykp7w6w3c',1,'Admin',1672319409,'192.168.64.1',2,15,41379,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401d14xiymqropi48',1,'Admin',1672319409,'192.168.64.1',2,15,41380,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401d24xiytzyuy3y0',1,'Admin',1672319409,'192.168.64.1',2,15,41381,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401d34xiyqmkwzl4q',1,'Admin',1672319409,'192.168.64.1',2,15,41382,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401d44xiydu9rmspi',1,'Admin',1672319409,'192.168.64.1',2,15,41383,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401d54xiym32rdqcy',1,'Admin',1672319409,'192.168.64.1',2,15,41384,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401d64xiynwlktfxa',1,'Admin',1672319409,'192.168.64.1',2,15,41385,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401d74xiytb27usk0',1,'Admin',1672319409,'192.168.64.1',2,15,41396,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401d84xiyi56izqxr',1,'Admin',1672319409,'192.168.64.1',2,15,41397,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401d94xiyxdxhzl4m',1,'Admin',1672319409,'192.168.64.1',2,15,41398,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401da4xiyjnmyee2j',1,'Admin',1672319409,'192.168.64.1',2,15,41399,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401db4xiy0f37xv6e',1,'Admin',1672319409,'192.168.64.1',2,15,41400,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401dc4xiy7ll036lh',1,'Admin',1672319409,'192.168.64.1',2,15,41401,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401dd4xiymlbknzqj',1,'Admin',1672319409,'192.168.64.1',2,15,41402,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401de4xiygqffns99',1,'Admin',1672319409,'192.168.64.1',2,15,41403,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401df4xiye02m0l93',1,'Admin',1672319409,'192.168.64.1',2,15,41404,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401dg4xiy7ectzkxc',1,'Admin',1672319409,'192.168.64.1',2,15,41405,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401dh4xiy7yl8k86y',1,'Admin',1672319409,'192.168.64.1',2,15,41406,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401di4xiy9uwycdtv',1,'Admin',1672319409,'192.168.64.1',2,15,41417,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401dj4xiymuhppz00',1,'Admin',1672319409,'192.168.64.1',2,15,41418,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401dk4xiybd4yf0f4',1,'Admin',1672319409,'192.168.64.1',2,15,41419,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401dl4xiyzbwb7wyx',1,'Admin',1672319409,'192.168.64.1',2,15,41420,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401dm4xiy2tapcuqc',1,'Admin',1672319409,'192.168.64.1',2,15,41421,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401dn4xiykcyb49sh',1,'Admin',1672319409,'192.168.64.1',2,15,41422,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401do4xiystx18qat',1,'Admin',1672319409,'192.168.64.1',2,15,41423,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401dp4xiyv2te0sqp',1,'Admin',1672319409,'192.168.64.1',2,15,41424,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401dq4xiyia3jenyq',1,'Admin',1672319409,'192.168.64.1',2,15,41425,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401dr4xiy7kztnqn1',1,'Admin',1672319409,'192.168.64.1',2,15,41426,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ds4xiypqgu1xyz',1,'Admin',1672319409,'192.168.64.1',2,15,41427,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401dt4xiyxprb59en',1,'Admin',1672319409,'192.168.64.1',2,15,41438,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401du4xiyrvh4ys6b',1,'Admin',1672319409,'192.168.64.1',2,15,41439,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401dv4xiyrveebwrp',1,'Admin',1672319409,'192.168.64.1',2,15,41440,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401dw4xiyfuljrfhd',1,'Admin',1672319409,'192.168.64.1',2,15,41441,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401dx4xiy4xaxhwtt',1,'Admin',1672319409,'192.168.64.1',2,15,41442,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401dy4xiyhex03hx8',1,'Admin',1672319409,'192.168.64.1',2,15,41443,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401dz4xiynx2uzag2',1,'Admin',1672319409,'192.168.64.1',2,15,41444,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401e04xiysf6seks6',1,'Admin',1672319409,'192.168.64.1',2,15,41445,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401e14xiytmee38zn',1,'Admin',1672319409,'192.168.64.1',2,15,41446,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401e24xiyvhp0612a',1,'Admin',1672319409,'192.168.64.1',2,15,41447,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401e34xiyolnworph',1,'Admin',1672319409,'192.168.64.1',2,15,41448,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401e44xiyygnikq1j',1,'Admin',1672319409,'192.168.64.1',2,15,41459,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401e54xiyxtt2u1kl',1,'Admin',1672319409,'192.168.64.1',2,15,41460,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401e64xiygkqlpkha',1,'Admin',1672319409,'192.168.64.1',2,15,41461,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401e74xiyomyibl5f',1,'Admin',1672319409,'192.168.64.1',2,15,41462,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401e84xiyr0le5fgy',1,'Admin',1672319409,'192.168.64.1',2,15,41463,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401e94xiy7482we0l',1,'Admin',1672319409,'192.168.64.1',2,15,41464,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ea4xiy44ugq0qy',1,'Admin',1672319409,'192.168.64.1',2,15,41465,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401eb4xiyfjqi37y6',1,'Admin',1672319409,'192.168.64.1',2,15,41466,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ec4xiyp2fbdw97',1,'Admin',1672319409,'192.168.64.1',2,15,41467,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ed4xiyfhrxhi0h',1,'Admin',1672319409,'192.168.64.1',2,15,41468,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ee4xiyv68hehdh',1,'Admin',1672319409,'192.168.64.1',2,15,41469,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ef4xiyte4f7yl6',1,'Admin',1672319409,'192.168.64.1',2,15,41480,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401eg4xiy6dmo8jtp',1,'Admin',1672319409,'192.168.64.1',2,15,41481,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401eh4xiyv449baxp',1,'Admin',1672319409,'192.168.64.1',2,15,41482,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ei4xiyfgiqf1hr',1,'Admin',1672319409,'192.168.64.1',2,15,41483,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ej4xiypy0xomrm',1,'Admin',1672319409,'192.168.64.1',2,15,41484,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ek4xiya5maawxw',1,'Admin',1672319409,'192.168.64.1',2,15,41485,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401el4xiyqn6skj3w',1,'Admin',1672319409,'192.168.64.1',2,15,41486,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401em4xiyezxd6r9d',1,'Admin',1672319409,'192.168.64.1',2,15,41487,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401en4xiygw3oxvm8',1,'Admin',1672319409,'192.168.64.1',2,15,41488,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401eo4xiy73x0tf9e',1,'Admin',1672319409,'192.168.64.1',2,15,41489,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ep4xiye5qz4sop',1,'Admin',1672319409,'192.168.64.1',2,15,41490,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401eq4xiyii3lhrhg',1,'Admin',1672319409,'192.168.64.1',2,15,41501,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401er4xiy4qosrxpg',1,'Admin',1672319409,'192.168.64.1',2,15,41502,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401es4xiy7c1u9p8t',1,'Admin',1672319409,'192.168.64.1',2,15,41503,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401et4xiymt04mxgg',1,'Admin',1672319409,'192.168.64.1',2,15,41504,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401eu4xiyah2uo26a',1,'Admin',1672319409,'192.168.64.1',2,15,41505,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ev4xiyd7zhlljp',1,'Admin',1672319409,'192.168.64.1',2,15,41506,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ew4xiys9khrngi',1,'Admin',1672319409,'192.168.64.1',2,15,41507,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ex4xiyw1wu3l63',1,'Admin',1672319409,'192.168.64.1',2,15,41508,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ey4xiyl32iaxfs',1,'Admin',1672319409,'192.168.64.1',2,15,41509,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ez4xiynsn7kpsf',1,'Admin',1672319409,'192.168.64.1',2,15,41510,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401f04xiyje0lwdqc',1,'Admin',1672319409,'192.168.64.1',2,15,41511,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401f14xiyitbotawr',1,'Admin',1672319409,'192.168.64.1',2,15,41522,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401f24xiy8hmp8awa',1,'Admin',1672319409,'192.168.64.1',2,15,41523,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401f34xiy4mpypr7h',1,'Admin',1672319409,'192.168.64.1',2,15,41524,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401f44xiyvvb60p8b',1,'Admin',1672319409,'192.168.64.1',2,15,41525,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401f54xiy23kobiy5',1,'Admin',1672319409,'192.168.64.1',2,15,41526,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401f64xiyb564jwwg',1,'Admin',1672319409,'192.168.64.1',2,15,41527,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401f74xiyyerrnxjb',1,'Admin',1672319409,'192.168.64.1',2,15,41528,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401f84xiy7dn0sg0d',1,'Admin',1672319409,'192.168.64.1',2,15,41529,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401f94xiybckgoyqf',1,'Admin',1672319409,'192.168.64.1',2,15,41530,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401fa4xiyfxqy34ge',1,'Admin',1672319409,'192.168.64.1',2,15,41531,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401fb4xiyr75s8fe1',1,'Admin',1672319409,'192.168.64.1',2,15,41532,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401fc4xiyb28dqgxr',1,'Admin',1672319409,'192.168.64.1',2,15,41543,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401fd4xiy9xuwpz2f',1,'Admin',1672319409,'192.168.64.1',2,15,41544,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401fe4xiymamt2pzo',1,'Admin',1672319409,'192.168.64.1',2,15,41545,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401ff4xiyomu6azoq',1,'Admin',1672319409,'192.168.64.1',2,15,41546,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401fg4xiypqx2bnit',1,'Admin',1672319409,'192.168.64.1',2,15,41547,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401fh4xiy1zmaq6bp',1,'Admin',1672319409,'192.168.64.1',2,15,41548,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401fi4xiy36kfh57j',1,'Admin',1672319409,'192.168.64.1',2,15,41549,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401fj4xiy4zig15nc',1,'Admin',1672319409,'192.168.64.1',2,15,41550,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401fk4xiyts3zj12e',1,'Admin',1672319409,'192.168.64.1',2,15,41551,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401fl4xiydywmvxub',1,'Admin',1672319409,'192.168.64.1',2,15,41552,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh401fm4xiy0qod0a2r',1,'Admin',1672319409,'192.168.64.1',2,15,41553,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501fn4xiy5bbnapgi',1,'Admin',1672319409,'192.168.64.1',2,15,41564,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501fo4xiyt027zc4b',1,'Admin',1672319409,'192.168.64.1',2,15,41565,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501fp4xiy8dmurwtj',1,'Admin',1672319409,'192.168.64.1',2,15,41566,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501fq4xiyh13vwaq2',1,'Admin',1672319409,'192.168.64.1',2,15,41567,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501fr4xiylnvaabp6',1,'Admin',1672319409,'192.168.64.1',2,15,41568,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501fs4xiycpegq75g',1,'Admin',1672319409,'192.168.64.1',2,15,41569,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501ft4xiyk3r68u2q',1,'Admin',1672319409,'192.168.64.1',2,15,41570,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501fu4xiys1hi922m',1,'Admin',1672319409,'192.168.64.1',2,15,41571,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501fv4xiyz3yze756',1,'Admin',1672319409,'192.168.64.1',2,15,41572,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501fw4xiye0lm9ita',1,'Admin',1672319409,'192.168.64.1',2,15,41573,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501fx4xiy1uez5htu',1,'Admin',1672319409,'192.168.64.1',2,15,41574,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501fy4xiy2f8pzk6h',1,'Admin',1672319409,'192.168.64.1',2,15,41585,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501fz4xiytlqhs93d',1,'Admin',1672319409,'192.168.64.1',2,15,41586,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501g04xiy08yt37hj',1,'Admin',1672319409,'192.168.64.1',2,15,41587,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501g14xiyfz8ufvyv',1,'Admin',1672319409,'192.168.64.1',2,15,41588,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501g24xiyhe6zv327',1,'Admin',1672319409,'192.168.64.1',2,15,41589,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501g34xiyuu9vbd60',1,'Admin',1672319409,'192.168.64.1',2,15,41590,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501g44xiy8g0zcbul',1,'Admin',1672319409,'192.168.64.1',2,15,41591,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501g54xiy1nlzgp5g',1,'Admin',1672319409,'192.168.64.1',2,15,41592,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501g64xiyuzjs75ho',1,'Admin',1672319409,'192.168.64.1',2,15,41593,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501g74xiy0cg2w5u3',1,'Admin',1672319409,'192.168.64.1',2,15,41594,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501g84xiy3k59bavu',1,'Admin',1672319409,'192.168.64.1',2,15,41595,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501g94xiyjdipkw2z',1,'Admin',1672319409,'192.168.64.1',2,15,41900,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501ga4xiyyohgk005',1,'Admin',1672319409,'192.168.64.1',2,15,41901,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gb4xiydg461k8z',1,'Admin',1672319409,'192.168.64.1',2,15,41902,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gc4xiy419gxuqv',1,'Admin',1672319409,'192.168.64.1',2,15,41903,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gd4xiyjil1mrx8',1,'Admin',1672319409,'192.168.64.1',2,15,41904,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501ge4xiymzdx5gdd',1,'Admin',1672319409,'192.168.64.1',2,15,41905,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gf4xiydkjsvf0o',1,'Admin',1672319409,'192.168.64.1',2,15,41906,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gg4xiyn59esqqo',1,'Admin',1672319409,'192.168.64.1',2,15,41907,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gh4xiyjvo9o3mz',1,'Admin',1672319409,'192.168.64.1',2,15,41908,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gi4xiyi2v501no',1,'Admin',1672319409,'192.168.64.1',2,15,41909,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gj4xiyru583ixt',1,'Admin',1672319409,'192.168.64.1',2,15,41910,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gk4xiysbo3jdvp',1,'Admin',1672319409,'192.168.64.1',2,15,41921,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gl4xiy715nxnmf',1,'Admin',1672319409,'192.168.64.1',2,15,41922,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gm4xiyymlb9t22',1,'Admin',1672319409,'192.168.64.1',2,15,41923,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gn4xiyvelxwdsy',1,'Admin',1672319409,'192.168.64.1',2,15,41924,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501go4xiyu7kiwtxt',1,'Admin',1672319409,'192.168.64.1',2,15,41925,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gp4xiy9ci4ozy9',1,'Admin',1672319409,'192.168.64.1',2,15,41926,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gq4xiyphxs78k3',1,'Admin',1672319409,'192.168.64.1',2,15,41927,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gr4xiyfiwiqk46',1,'Admin',1672319409,'192.168.64.1',2,15,41928,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gs4xiy2aksvlxq',1,'Admin',1672319409,'192.168.64.1',2,15,41929,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gt4xiyktlojhtp',1,'Admin',1672319409,'192.168.64.1',2,15,41930,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gu4xiy4g8hm6m3',1,'Admin',1672319409,'192.168.64.1',2,15,41931,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gv4xiyiwxclf52',1,'Admin',1672319409,'192.168.64.1',2,15,41942,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gw4xiy69p0h24r',1,'Admin',1672319409,'192.168.64.1',2,15,41943,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gx4xiy09qhe2l8',1,'Admin',1672319409,'192.168.64.1',2,15,41944,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gy4xiy9xsth5z6',1,'Admin',1672319409,'192.168.64.1',2,15,41945,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501gz4xiy8deore8r',1,'Admin',1672319409,'192.168.64.1',2,15,41946,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501h04xiyu58vf33w',1,'Admin',1672319409,'192.168.64.1',2,15,41947,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501h14xiyx4vl5pes',1,'Admin',1672319409,'192.168.64.1',2,15,41948,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501h24xiy6tjr9cpa',1,'Admin',1672319409,'192.168.64.1',2,15,41949,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501h34xiynio1b6e9',1,'Admin',1672319409,'192.168.64.1',2,15,41950,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501h44xiyqvgpiiib',1,'Admin',1672319409,'192.168.64.1',2,15,41951,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501h54xiy287goiyj',1,'Admin',1672319409,'192.168.64.1',2,15,41952,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501h64xiyjz3kz904',1,'Admin',1672319409,'192.168.64.1',2,15,41963,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501h74xiym1u5tl95',1,'Admin',1672319409,'192.168.64.1',2,15,41964,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501h84xiybw3lwed5',1,'Admin',1672319409,'192.168.64.1',2,15,41965,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501h94xiyy47pqif9',1,'Admin',1672319409,'192.168.64.1',2,15,41966,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501ha4xiyi3qaw96v',1,'Admin',1672319409,'192.168.64.1',2,15,41967,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hb4xiyle62v2td',1,'Admin',1672319409,'192.168.64.1',2,15,41968,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hc4xiymfpfnin2',1,'Admin',1672319409,'192.168.64.1',2,15,41969,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hd4xiy1kf9fajf',1,'Admin',1672319409,'192.168.64.1',2,15,41970,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501he4xiys0kmlyl7',1,'Admin',1672319409,'192.168.64.1',2,15,41971,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hf4xiyu3wtm6em',1,'Admin',1672319409,'192.168.64.1',2,15,41972,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hg4xiyid2py4oj',1,'Admin',1672319409,'192.168.64.1',2,15,41973,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hh4xiy30nh752t',1,'Admin',1672319409,'192.168.64.1',2,15,41984,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hi4xiy3uksiqs0',1,'Admin',1672319409,'192.168.64.1',2,15,41985,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hj4xiyxdekeljr',1,'Admin',1672319409,'192.168.64.1',2,15,41986,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hk4xiyxmdfln8j',1,'Admin',1672319409,'192.168.64.1',2,15,41987,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hl4xiyiuh12kot',1,'Admin',1672319409,'192.168.64.1',2,15,41988,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hm4xiyffhj9qfr',1,'Admin',1672319409,'192.168.64.1',2,15,41989,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hn4xiyf7sdjpee',1,'Admin',1672319409,'192.168.64.1',2,15,41990,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501ho4xiylwdw1oqz',1,'Admin',1672319409,'192.168.64.1',2,15,41991,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hp4xiyyveq4sjj',1,'Admin',1672319409,'192.168.64.1',2,15,41992,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hq4xiyq6kne6k8',1,'Admin',1672319409,'192.168.64.1',2,15,41993,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hr4xiy7vlv382d',1,'Admin',1672319409,'192.168.64.1',2,15,41994,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hs4xiydkv5hmi0',1,'Admin',1672319409,'192.168.64.1',2,15,42068,NULL,'ICMP ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501ht4xiywihped8f',1,'Admin',1672319409,'192.168.64.1',2,15,42069,NULL,'System name','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hu4xiy99349nbu',1,'Admin',1672319409,'192.168.64.1',2,15,42070,NULL,'Uptime (network)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hv4xiycf85vzdc',1,'Admin',1672319409,'192.168.64.1',2,15,42071,NULL,'System object ID','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hw4xiyzftc6bvw',1,'Admin',1672319409,'192.168.64.1',2,15,42072,NULL,'System location','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hx4xiyoh2waqnb',1,'Admin',1672319409,'192.168.64.1',2,15,42073,NULL,'ICMP loss','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hy4xiyqs9kq1gi',1,'Admin',1672319409,'192.168.64.1',2,15,42074,NULL,'System description','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501hz4xiyosuh9fdb',1,'Admin',1672319409,'192.168.64.1',2,15,42075,NULL,'System contact details','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501i04xiyvy83x9oh',1,'Admin',1672319409,'192.168.64.1',2,15,42076,NULL,'SNMP traps (fallback)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501i14xiypzumii6l',1,'Admin',1672319409,'192.168.64.1',2,15,42077,NULL,'ICMP response time','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501i24xiyoizq87wl',1,'Admin',1672319409,'192.168.64.1',2,15,42078,NULL,'SNMP agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501i34xiydnbvuvj3',1,'Admin',1672319409,'192.168.64.1',2,15,42443,NULL,'Host name of Zabbix agent running','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501i44xiyvpv4ha3y',1,'Admin',1672319409,'192.168.64.1',2,15,42444,NULL,'Zabbix agent ping','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501i54xiyzgmfhnaz',1,'Admin',1672319409,'192.168.64.1',2,15,42445,NULL,'Version of Zabbix agent running','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501i64xiy7ua4fvnb',1,'Admin',1672319409,'192.168.64.1',2,15,42446,NULL,'Zabbix agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501i74xiy7jfrw1rp',1,'Admin',1672319409,'192.168.64.1',2,15,43077,NULL,'MS Exchange: Active agent availability','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501i84xiymh33eurq',1,'Admin',1672319409,'192.168.64.1',2,15,43793,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501i94xiyoit2mq2h',1,'Admin',1672319409,'192.168.64.1',2,15,43794,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501ia4xiyi12oyyuw',1,'Admin',1672319409,'192.168.64.1',2,15,43795,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501ib4xiyyx07y372',1,'Admin',1672319409,'192.168.64.1',2,15,43796,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501ic4xiy0csjrwuu',1,'Admin',1672319409,'192.168.64.1',2,15,43797,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501id4xiy7g4f6o1q',1,'Admin',1672319409,'192.168.64.1',2,15,43798,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501ie4xiy1t1ckiu5',1,'Admin',1672319409,'192.168.64.1',2,15,43799,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501if4xiyippe4e1r',1,'Admin',1672319409,'192.168.64.1',2,15,43800,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501ig4xiyhpk6si76',1,'Admin',1672319409,'192.168.64.1',2,15,43801,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501ih4xiy37pbmrk7',1,'Admin',1672319409,'192.168.64.1',2,15,43802,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501ii4xiy5xt8gmss',1,'Admin',1672319409,'192.168.64.1',2,15,43803,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501ij4xiyfsv7x8gc',1,'Admin',1672319409,'192.168.64.1',2,15,43804,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501ik4xiyoudzkjwi',1,'Admin',1672319409,'192.168.64.1',2,15,43805,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501il4xiyz1e4olcq',1,'Admin',1672319409,'192.168.64.1',2,15,43806,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501im4xiyk4up7ajt',1,'Admin',1672319409,'192.168.64.1',2,15,43807,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501in4xiy5zjqrma8',1,'Admin',1672319409,'192.168.64.1',2,15,43808,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501io4xiyxvuu7nj6',1,'Admin',1672319409,'192.168.64.1',2,15,43809,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501ip4xiy39efdxrf',1,'Admin',1672319409,'192.168.64.1',2,15,43810,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501iq4xiylhzc5fqc',1,'Admin',1672319409,'192.168.64.1',2,15,43811,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501ir4xiyo55mcw23',1,'Admin',1672319409,'192.168.64.1',2,15,43812,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501is4xiy7e70kn4l',1,'Admin',1672319409,'192.168.64.1',2,15,43813,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501it4xiyz3itesld',1,'Admin',1672319409,'192.168.64.1',2,15,43814,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501iu4xiygjgjdzz0',1,'Admin',1672319409,'192.168.64.1',2,15,43815,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501iv4xiyppa7heyk',1,'Admin',1672319409,'192.168.64.1',2,15,43816,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501iw4xiyoafbb001',1,'Admin',1672319409,'192.168.64.1',2,15,43817,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501ix4xiy1msrxx5c',1,'Admin',1672319409,'192.168.64.1',2,15,43818,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501iy4xiyabo7ivfz',1,'Admin',1672319409,'192.168.64.1',2,15,43819,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501iz4xiy5d2bsntu',1,'Admin',1672319409,'192.168.64.1',2,15,43820,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501j04xiywjq7dslw',1,'Admin',1672319409,'192.168.64.1',2,15,43821,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501j14xiyjzgp3cjy',1,'Admin',1672319409,'192.168.64.1',2,15,43822,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501j24xiy5bldodjq',1,'Admin',1672319409,'192.168.64.1',2,15,43823,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501j34xiyha7jithc',1,'Admin',1672319409,'192.168.64.1',2,15,43824,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501j44xiys7kf2bre',1,'Admin',1672319409,'192.168.64.1',2,15,43825,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501j54xiybxsrtvwj',1,'Admin',1672319409,'192.168.64.1',2,15,43840,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501j64xiyqmbdlh30',1,'Admin',1672319409,'192.168.64.1',2,15,43841,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501j74xiy4f998kq7',1,'Admin',1672319409,'192.168.64.1',2,15,43842,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501j84xiyeyehp97c',1,'Admin',1672319409,'192.168.64.1',2,15,43843,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501j94xiypvar7caw',1,'Admin',1672319409,'192.168.64.1',2,15,43844,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501ja4xiytudldve0',1,'Admin',1672319409,'192.168.64.1',2,15,43848,NULL,'Uptime (hardware)','clc93sqcu00004xiyhlx64ynm',''),('clc93sqh501jb4xiyy7mtp22i',1,'Admin',1672319409,'192.168.64.1',2,15,44445,NULL,'Get filesystems','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01jc4xiyg4sml3m1',1,'Admin',1672319409,'192.168.64.1',2,30,10079,NULL,'macOS','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01jd4xiyw7u0xpih',1,'Admin',1672319409,'192.168.64.1',2,30,10233,NULL,'Mikrotik by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01je4xiybxdj9p0q',1,'Admin',1672319409,'192.168.64.1',2,30,10251,NULL,'Mellanox by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01jf4xiywwfcksik',1,'Admin',1672319409,'192.168.64.1',2,30,10268,NULL,'Linux memory by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01jg4xiyjnjupw7u',1,'Admin',1672319409,'192.168.64.1',2,30,10274,NULL,'Linux memory by Zabbix agent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01jh4xiy7vs82dmo',1,'Admin',1672319409,'192.168.64.1',2,30,10276,NULL,'Linux network interfaces by Zabbix agent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01ji4xiy7ku2bois',1,'Admin',1672319409,'192.168.64.1',2,30,10319,NULL,'Memcached by Zabbix agent 2','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01jj4xiyxiw1t1nz',1,'Admin',1672319409,'192.168.64.1',2,30,10340,NULL,'Linux generic by Zabbix agent active','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01jk4xiye9a6ygft',1,'Admin',1672319409,'192.168.64.1',2,30,10341,NULL,'Linux memory by Zabbix agent active','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01jl4xiy2eavz6qx',1,'Admin',1672319409,'192.168.64.1',2,30,10342,NULL,'Linux network interfaces by Zabbix agent active','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01jm4xiyrrsu6gr1',1,'Admin',1672319409,'192.168.64.1',2,30,10360,NULL,'Microsoft Exchange Server 2016 by Zabbix agent','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01jn4xiy838fmjj3',1,'Admin',1672319409,'192.168.64.1',2,30,10361,NULL,'Microsoft Exchange Server 2016 by Zabbix agent active','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01jo4xiycvxxs7hj',1,'Admin',1672319409,'192.168.64.1',2,30,10382,NULL,'Microsoft SharePoint by HTTP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01jp4xiy9thbpqx9',1,'Admin',1672319409,'192.168.64.1',2,30,10449,NULL,'MikroTik CCR1009-7G-1C-1SPC by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01jq4xiy0r0tgp1c',1,'Admin',1672319409,'192.168.64.1',2,30,10450,NULL,'MikroTik CCR1009-7G-1C-1S by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01jr4xiy3wdacb4b',1,'Admin',1672319409,'192.168.64.1',2,30,10451,NULL,'MikroTik CCR1009-7G-1C-PC by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01js4xiyxlknwtd6',1,'Admin',1672319409,'192.168.64.1',2,30,10452,NULL,'MikroTik CCR1016-12G by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01jt4xiyxd0kbjln',1,'Admin',1672319409,'192.168.64.1',2,30,10453,NULL,'MikroTik CCR1016-12S-1S by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01ju4xiyjv7gkqg7',1,'Admin',1672319409,'192.168.64.1',2,30,10454,NULL,'MikroTik CCR1036-12G-4S-EM by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01jv4xiyxb1fs3ci',1,'Admin',1672319409,'192.168.64.1',2,30,10455,NULL,'MikroTik CCR1036-12G-4S by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01jw4xiyropjsjld',1,'Admin',1672319409,'192.168.64.1',2,30,10456,NULL,'MikroTik CCR1036-8G-2SEM by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01jx4xiybewfvheb',1,'Admin',1672319409,'192.168.64.1',2,30,10457,NULL,'MikroTik CCR1036-8G-2S by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01jy4xiyy0u3r3oj',1,'Admin',1672319409,'192.168.64.1',2,30,10458,NULL,'MikroTik CCR1072-1G-8S by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01jz4xiyyf3pevxz',1,'Admin',1672319409,'192.168.64.1',2,30,10459,NULL,'MikroTik CCR2004-16G-2S by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01k04xiy1r7ghzf6',1,'Admin',1672319409,'192.168.64.1',2,30,10460,NULL,'MikroTik CCR2004-1G-12S2XS by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01k14xiy0aapey0j',1,'Admin',1672319409,'192.168.64.1',2,30,10461,NULL,'MikroTik CRS106-1C-5S by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01k24xiymm5spp0h',1,'Admin',1672319409,'192.168.64.1',2,30,10462,NULL,'MikroTik CRS109-8G-1S-2HnD-IN by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01k34xiyk6tw1z84',1,'Admin',1672319409,'192.168.64.1',2,30,10463,NULL,'MikroTik CRS112-8G-4S-IN by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01k44xiy7b9odtv1',1,'Admin',1672319409,'192.168.64.1',2,30,10464,NULL,'MikroTik CRS112-8P-4S-IN by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01k54xiy53wbsxdg',1,'Admin',1672319409,'192.168.64.1',2,30,10465,NULL,'MikroTik CRS125-24G-1S-2HnD-IN by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01k64xiy5o2yze30',1,'Admin',1672319409,'192.168.64.1',2,30,10466,NULL,'MikroTik CRS212-1G-10S-1SIN by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01k74xiyl48btb0i',1,'Admin',1672319409,'192.168.64.1',2,30,10467,NULL,'MikroTik CRS305-1G-4SIN by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01k84xiy4f7wymam',1,'Admin',1672319409,'192.168.64.1',2,30,10468,NULL,'MikroTik CRS309-1G-8SIN by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01k94xiy7zki9jcc',1,'Admin',1672319409,'192.168.64.1',2,30,10469,NULL,'MikroTik CRS312-4C8XG-RM by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01ka4xiy3g7sfy0t',1,'Admin',1672319409,'192.168.64.1',2,30,10470,NULL,'MikroTik CRS317-1G-16SRM by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01kb4xiyku9nscoc',1,'Admin',1672319409,'192.168.64.1',2,30,10471,NULL,'MikroTik CRS326-24G-2SIN by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01kc4xiy4qwu1bkv',1,'Admin',1672319409,'192.168.64.1',2,30,10472,NULL,'MikroTik CRS326-24G-2SRM by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01kd4xiyvf6j7ogy',1,'Admin',1672319409,'192.168.64.1',2,30,10473,NULL,'MikroTik CRS326-24S2QRM by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01ke4xiyf7rjok17',1,'Admin',1672319409,'192.168.64.1',2,30,10474,NULL,'MikroTik CRS328-24P-4SRM by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01kf4xiy9brbwpzv',1,'Admin',1672319409,'192.168.64.1',2,30,10475,NULL,'MikroTik CRS328-4C-20S-4SRM by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01kg4xiynko2ygha',1,'Admin',1672319409,'192.168.64.1',2,30,10476,NULL,'MikroTik CRS354-48G-4S2QRM by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01kh4xiyt15cczqe',1,'Admin',1672319409,'192.168.64.1',2,30,10477,NULL,'MikroTik CRS354-48P-4S2QRM by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01ki4xiy45meprp0',1,'Admin',1672319409,'192.168.64.1',2,30,10478,NULL,'MikroTik CSS326-24G-2SRM by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01kj4xiypp6u7l3f',1,'Admin',1672319409,'192.168.64.1',2,30,10479,NULL,'MikroTik CSS610-8G-2SIN by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01kk4xiyd7b2pu4i',1,'Admin',1672319409,'192.168.64.1',2,30,10480,NULL,'MikroTik FiberBox by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01kl4xiyt0915vtr',1,'Admin',1672319409,'192.168.64.1',2,30,10495,NULL,'MikroTik hEX PoE lite by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01km4xiy0u27q270',1,'Admin',1672319409,'192.168.64.1',2,30,10496,NULL,'MikroTik hEX PoE by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01kn4xiy4644qxtw',1,'Admin',1672319409,'192.168.64.1',2,30,10497,NULL,'MikroTik hEX S by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01ko4xiyivrekrdu',1,'Admin',1672319409,'192.168.64.1',2,30,10498,NULL,'MikroTik hEX lite by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93sqiy01kp4xiyoh7gj71e',1,'Admin',1672319409,'192.168.64.1',2,30,10499,NULL,'MikroTik hEX by SNMP','clc93sqcu00004xiyhlx64ynm',''),('clc93suuy00014ciy62b5i7d2',1,'Admin',1672319414,'192.168.64.1',2,36,22868,NULL,'{#FSNAME}: Free disk space','clc93suux00004ciywh0nidxf',''),('clc93suuy00024ciy9dn2hu0j',1,'Admin',1672319414,'192.168.64.1',2,36,22869,NULL,'{#FSNAME}: Free inodes, %','clc93suux00004ciywh0nidxf',''),('clc93suuy00034ciyprybcxut',1,'Admin',1672319414,'192.168.64.1',2,36,22870,NULL,'{#FSNAME}: Total disk space','clc93suux00004ciywh0nidxf',''),('clc93suuy00044ciym46u0fml',1,'Admin',1672319414,'192.168.64.1',2,36,22871,NULL,'{#FSNAME}: Used disk space','clc93suux00004ciywh0nidxf',''),('clc93suuy00054ciyy2o3rn6m',1,'Admin',1672319414,'192.168.64.1',2,36,22872,NULL,'{#FSNAME}: Free disk space, %','clc93suux00004ciywh0nidxf',''),('clc93suuy00064ciyk4gtchz1',1,'Admin',1672319414,'192.168.64.1',2,36,44448,NULL,'{#FSNAME}: Get filesystem data','clc93suux00004ciywh0nidxf',''),('clc93suuy00074ciy9dgvt9uj',1,'Admin',1672319414,'192.168.64.1',2,36,44449,NULL,'{#FSNAME}: Filesystem is read-only','clc93suux00004ciywh0nidxf',''),('clc93suuy00084ciywstxkaik',1,'Admin',1672319414,'192.168.64.1',2,36,23075,NULL,'Network interfaces: Incoming network traffic on {#IFNAME}','clc93suux00004ciywh0nidxf',''),('clc93suuy00094ciybwnpohtu',1,'Admin',1672319414,'192.168.64.1',2,36,23076,NULL,'Network interfaces: Outgoing network traffic on {#IFNAME}','clc93suux00004ciywh0nidxf',''),('clc93suuy000a4ciyl4278jrd',1,'Admin',1672319414,'192.168.64.1',2,36,27940,NULL,'#{#SNMPVALUE}: Temperature status','clc93suux00004ciywh0nidxf',''),('clc93suuy000b4ciy17qigz07',1,'Admin',1672319414,'192.168.64.1',2,36,27941,NULL,'#{#SNMPVALUE}: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuy000c4ciyi9rk4xou',1,'Admin',1672319414,'192.168.64.1',2,36,27942,NULL,'#{#SNMPVALUE}: Fan status','clc93suux00004ciywh0nidxf',''),('clc93suuy000d4ciysgmrbmv1',1,'Admin',1672319414,'192.168.64.1',2,36,27943,NULL,'#{#SNMPVALUE}: Power supply status','clc93suux00004ciywh0nidxf',''),('clc93suuy000e4ciya691vkjy',1,'Admin',1672319414,'192.168.64.1',2,36,30474,NULL,'MySQL: Size of database {#DBNAME}','clc93suux00004ciywh0nidxf',''),('clc93suuy000f4ciytfskjii6',1,'Admin',1672319414,'192.168.64.1',2,36,30475,NULL,'MySQL: Replication Slave status {#MASTERHOST}','clc93suux00004ciywh0nidxf',''),('clc93suuy000g4ciyycjtwj8k',1,'Admin',1672319414,'192.168.64.1',2,36,30476,NULL,'MySQL: Replication Seconds Behind Master {#MASTERHOST}','clc93suux00004ciywh0nidxf',''),('clc93suuy000h4ciy2n46rual',1,'Admin',1672319414,'192.168.64.1',2,36,30477,NULL,'MySQL: Replication Slave IO Running {#MASTERHOST}','clc93suux00004ciywh0nidxf',''),('clc93suuy000i4ciy2hhsgk2t',1,'Admin',1672319414,'192.168.64.1',2,36,30478,NULL,'MySQL: Replication Slave SQL Running {#MASTERHOST}','clc93suux00004ciywh0nidxf',''),('clc93suuy000j4ciy42o4gz6m',1,'Admin',1672319414,'192.168.64.1',2,36,33139,NULL,'MySQL: Replication Slave SQL Running State {#MASTER_HOST}','clc93suux00004ciywh0nidxf',''),('clc93suuy000k4ciysmrsx94u',1,'Admin',1672319414,'192.168.64.1',2,36,30522,NULL,'MySQL: Size of database {#DATABASE}','clc93suux00004ciywh0nidxf',''),('clc93suuy000l4ciy7p5rdvso',1,'Admin',1672319414,'192.168.64.1',2,36,30523,NULL,'MySQL: Replication Slave status {#MASTER_HOST}','clc93suux00004ciywh0nidxf',''),('clc93suuy000m4ciyx5f0klda',1,'Admin',1672319414,'192.168.64.1',2,36,30524,NULL,'MySQL: Replication Seconds Behind Master {#MASTER_HOST}','clc93suux00004ciywh0nidxf',''),('clc93suuy000n4ciyli1vpb3d',1,'Admin',1672319414,'192.168.64.1',2,36,30525,NULL,'MySQL: Replication Slave IO Running {#MASTER_HOST}','clc93suux00004ciywh0nidxf',''),('clc93suuy000o4ciyt6roccp9',1,'Admin',1672319414,'192.168.64.1',2,36,30526,NULL,'MySQL: Replication Slave SQL Running {#MASTER_HOST}','clc93suux00004ciywh0nidxf',''),('clc93suuy000p4ciysxp9r8ub',1,'Admin',1672319414,'192.168.64.1',2,36,33162,NULL,'MySQL: Replication Slave SQL Running State {#MASTER_HOST}','clc93suux00004ciywh0nidxf',''),('clc93suuy000q4ciycwhznpuy',1,'Admin',1672319414,'192.168.64.1',2,36,30680,NULL,'MySQL: Size of database {#DATABASE}','clc93suux00004ciywh0nidxf',''),('clc93suuy000r4ciyt4ttazei',1,'Admin',1672319414,'192.168.64.1',2,36,30681,NULL,'MySQL: Replication Slave status {#MASTER_HOST}','clc93suux00004ciywh0nidxf',''),('clc93suuy000s4ciy80yz8i3g',1,'Admin',1672319414,'192.168.64.1',2,36,30682,NULL,'MySQL: Replication Seconds Behind Master {#MASTER_HOST}','clc93suux00004ciywh0nidxf',''),('clc93suuy000t4ciyzwaf03ez',1,'Admin',1672319414,'192.168.64.1',2,36,30683,NULL,'MySQL: Replication Slave IO Running {#MASTER_HOST}','clc93suux00004ciywh0nidxf',''),('clc93suuy000u4ciylx942dv8',1,'Admin',1672319414,'192.168.64.1',2,36,30684,NULL,'MySQL: Replication Slave SQL Running {#MASTER_HOST}','clc93suux00004ciywh0nidxf',''),('clc93suuy000v4ciyr42b8w7i',1,'Admin',1672319414,'192.168.64.1',2,36,33153,NULL,'MySQL: Replication Slave SQL Running State {#MASTER_HOST}','clc93suux00004ciywh0nidxf',''),('clc93suuy000w4ciyfsgox2w2',1,'Admin',1672319414,'192.168.64.1',2,36,31128,NULL,'MSSQL AG \'{#GROUP_NAME}\': Get replica states','clc93suux00004ciywh0nidxf',''),('clc93suuy000x4ciykzs0hfm2',1,'Admin',1672319414,'192.168.64.1',2,36,31133,NULL,'MSSQL AG \'{#GROUP_NAME}\': Primary replica recovery health','clc93suux00004ciywh0nidxf',''),('clc93suuy000y4ciy6pa9kr96',1,'Admin',1672319414,'192.168.64.1',2,36,31134,NULL,'MSSQL AG \'{#GROUP_NAME}\': Primary replica name','clc93suux00004ciywh0nidxf',''),('clc93suuy000z4ciyx0g1vmmi',1,'Admin',1672319414,'192.168.64.1',2,36,31135,NULL,'MSSQL AG \'{#GROUP_NAME}\': Secondary replica recovery health','clc93suux00004ciywh0nidxf',''),('clc93suuy00104ciy3vltql1z',1,'Admin',1672319414,'192.168.64.1',2,36,31136,NULL,'MSSQL AG \'{#GROUP_NAME}\': Synchronization health','clc93suux00004ciywh0nidxf',''),('clc93suuy00114ciymzjf5hey',1,'Admin',1672319414,'192.168.64.1',2,36,31137,NULL,'MSSQL DB \'{#DBNAME}\': Active transactions','clc93suux00004ciywh0nidxf',''),('clc93suuy00124ciy3n7nufa5',1,'Admin',1672319414,'192.168.64.1',2,36,31138,NULL,'MSSQL DB \'{#DBNAME}\': Data file size','clc93suux00004ciywh0nidxf',''),('clc93suuy00134ciy96xida2x',1,'Admin',1672319414,'192.168.64.1',2,36,31139,NULL,'MSSQL DB \'{#DBNAME}\': Log bytes flushed per second','clc93suux00004ciywh0nidxf',''),('clc93suuy00144ciyoeb44oju',1,'Admin',1672319414,'192.168.64.1',2,36,31140,NULL,'MSSQL DB \'{#DBNAME}\': Log file size','clc93suux00004ciywh0nidxf',''),('clc93suuy00154ciybpstaken',1,'Admin',1672319414,'192.168.64.1',2,36,31141,NULL,'MSSQL DB \'{#DBNAME}\': Log file used size','clc93suux00004ciywh0nidxf',''),('clc93suuy00164ciyi2qnw6h3',1,'Admin',1672319414,'192.168.64.1',2,36,31142,NULL,'MSSQL DB \'{#DBNAME}\': Log flush wait time','clc93suux00004ciywh0nidxf',''),('clc93suuy00174ciyrx63cibr',1,'Admin',1672319414,'192.168.64.1',2,36,31143,NULL,'MSSQL DB \'{#DBNAME}\': Log flush waits per second','clc93suux00004ciywh0nidxf',''),('clc93suuy00184ciy0cky39p6',1,'Admin',1672319414,'192.168.64.1',2,36,31144,NULL,'MSSQL DB \'{#DBNAME}\': Log flushes per second','clc93suux00004ciywh0nidxf',''),('clc93suuy00194ciy487l441f',1,'Admin',1672319414,'192.168.64.1',2,36,31145,NULL,'MSSQL DB \'{#DBNAME}\': Log growths','clc93suux00004ciywh0nidxf',''),('clc93suuy001a4ciyjg7mxuxg',1,'Admin',1672319414,'192.168.64.1',2,36,31146,NULL,'MSSQL DB \'{#DBNAME}\': Log shrinks','clc93suux00004ciywh0nidxf',''),('clc93suuy001b4ciy8d6s6l03',1,'Admin',1672319414,'192.168.64.1',2,36,31147,NULL,'MSSQL DB \'{#DBNAME}\': Log truncations','clc93suux00004ciywh0nidxf',''),('clc93suuy001c4ciynnymwab4',1,'Admin',1672319414,'192.168.64.1',2,36,31148,NULL,'MSSQL DB \'{#DBNAME}\': Percent log used','clc93suux00004ciywh0nidxf',''),('clc93suuy001d4ciyc8hhkep0',1,'Admin',1672319414,'192.168.64.1',2,36,31149,NULL,'MSSQL DB \'{#DBNAME}\': State','clc93suux00004ciywh0nidxf',''),('clc93suuy001e4ciye8ww7sc6',1,'Admin',1672319414,'192.168.64.1',2,36,31150,NULL,'MSSQL DB \'{#DBNAME}\': Transactions per second','clc93suux00004ciywh0nidxf',''),('clc93suuy001f4ciyv3j76d9o',1,'Admin',1672319414,'192.168.64.1',2,36,34325,NULL,'MSSQL DB \'{#DBNAME}\': Last diff backup duration','clc93suux00004ciywh0nidxf',''),('clc93suuy001g4ciymy53r15r',1,'Admin',1672319414,'192.168.64.1',2,36,34326,NULL,'MSSQL DB \'{#DBNAME}\': Last diff backup (time ago)','clc93suux00004ciywh0nidxf',''),('clc93suuy001h4ciy2vp87wnz',1,'Admin',1672319414,'192.168.64.1',2,36,34327,NULL,'MSSQL DB \'{#DBNAME}\': Last log backup','clc93suux00004ciywh0nidxf',''),('clc93suuy001i4ciylfk0vr3a',1,'Admin',1672319414,'192.168.64.1',2,36,34328,NULL,'MSSQL DB \'{#DBNAME}\': Last log backup duration','clc93suux00004ciywh0nidxf',''),('clc93suuy001j4ciyxo72udkv',1,'Admin',1672319414,'192.168.64.1',2,36,34329,NULL,'MSSQL DB \'{#DBNAME}\': Last full backup (time ago)','clc93suux00004ciywh0nidxf',''),('clc93suuy001k4ciybpyw4g7o',1,'Admin',1672319414,'192.168.64.1',2,36,34330,NULL,'MSSQL DB \'{#DBNAME}\': Last full backup duration','clc93suux00004ciywh0nidxf',''),('clc93suuy001l4ciyesm4b2n1',1,'Admin',1672319414,'192.168.64.1',2,36,31129,NULL,'MSSQL AG \'{#GROUP_NAME}\' Local DB \'{#DBNAME}\': Get local DB states','clc93suux00004ciywh0nidxf',''),('clc93suuy001m4ciy7yrfb8vv',1,'Admin',1672319414,'192.168.64.1',2,36,31151,NULL,'MSSQL AG \'{#GROUP_NAME}\' Local DB \'{#DBNAME}\': Suspended','clc93suux00004ciywh0nidxf',''),('clc93suuy001n4ciyigy0j9jc',1,'Admin',1672319414,'192.168.64.1',2,36,31152,NULL,'MSSQL AG \'{#GROUP_NAME}\' Local DB \'{#DBNAME}\': State','clc93suux00004ciywh0nidxf',''),('clc93suuy001o4ciyeqxo0ael',1,'Admin',1672319414,'192.168.64.1',2,36,31153,NULL,'MSSQL AG \'{#GROUP_NAME}\' Local DB \'{#DBNAME}\': Synchronization health','clc93suux00004ciywh0nidxf',''),('clc93suuy001p4ciyevduax1b',1,'Admin',1672319414,'192.168.64.1',2,36,31130,NULL,'MSSQL Mirroring \'{#DBNAME}\': Get the mirror state','clc93suux00004ciywh0nidxf',''),('clc93suuy001q4ciy445ou4no',1,'Admin',1672319414,'192.168.64.1',2,36,31154,NULL,'MSSQL Mirroring \'{#DBNAME}\': Role sequence','clc93suux00004ciywh0nidxf',''),('clc93suuy001r4ciyyd1yy7gd',1,'Admin',1672319414,'192.168.64.1',2,36,31155,NULL,'MSSQL Mirroring \'{#DBNAME}\': Role','clc93suux00004ciywh0nidxf',''),('clc93suuy001s4ciy6102lzro',1,'Admin',1672319414,'192.168.64.1',2,36,31156,NULL,'MSSQL Mirroring \'{#DBNAME}\': Safety level','clc93suux00004ciywh0nidxf',''),('clc93suuy001t4ciyb6zkthc6',1,'Admin',1672319414,'192.168.64.1',2,36,31157,NULL,'MSSQL Mirroring \'{#DBNAME}\': State','clc93suux00004ciywh0nidxf',''),('clc93suuy001u4ciyf5sv8mpa',1,'Admin',1672319414,'192.168.64.1',2,36,31158,NULL,'MSSQL Mirroring \'{#DBNAME}\': Witness state','clc93suux00004ciywh0nidxf',''),('clc93suuy001v4ciy1whoajee',1,'Admin',1672319414,'192.168.64.1',2,36,33941,NULL,'MSSQL AG \'{#GROUP_NAME}\' Non-Local DB \'*{#REPLICA_NAME}*{#DBNAME}\': Get non-local DB states','clc93suux00004ciywh0nidxf',''),('clc93suuy001w4ciyxbaknft1',1,'Admin',1672319414,'192.168.64.1',2,36,33942,NULL,'MSSQL AG \'{#GROUP_NAME}\' Non-Local DB \'*{#REPLICA_NAME}*{#DBNAME}\': Log queue size','clc93suux00004ciywh0nidxf',''),('clc93suuy001x4ciy9y8kw44z',1,'Admin',1672319414,'192.168.64.1',2,36,33943,NULL,'MSSQL AG \'{#GROUP_NAME}\' Non-Local DB \'*{#REPLICA_NAME}*{#DBNAME}\': Redo log queue size','clc93suux00004ciywh0nidxf',''),('clc93suuy001y4ciy3uhq08lf',1,'Admin',1672319414,'192.168.64.1',2,36,31132,NULL,'MSSQL AG \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\': Get the replica state','clc93suux00004ciywh0nidxf',''),('clc93suuy001z4ciy3a6b2gn9',1,'Admin',1672319414,'192.168.64.1',2,36,31161,NULL,'MSSQL AG \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\': Connected state','clc93suux00004ciywh0nidxf',''),('clc93suuy00204ciyd9zjvkw9',1,'Admin',1672319414,'192.168.64.1',2,36,31162,NULL,'MSSQL AG \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\': Is local','clc93suux00004ciywh0nidxf',''),('clc93suuy00214ciy8136celo',1,'Admin',1672319414,'192.168.64.1',2,36,31163,NULL,'MSSQL AG \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\': Join state','clc93suux00004ciywh0nidxf',''),('clc93suuy00224ciye2jbe61f',1,'Admin',1672319414,'192.168.64.1',2,36,31164,NULL,'MSSQL AG \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\': Operational state','clc93suux00004ciywh0nidxf',''),('clc93suuy00234ciy6j2343uz',1,'Admin',1672319414,'192.168.64.1',2,36,31165,NULL,'MSSQL AG \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\': Recovery health','clc93suux00004ciywh0nidxf',''),('clc93suuy00244ciy8yy3fqga',1,'Admin',1672319414,'192.168.64.1',2,36,31166,NULL,'MSSQL AG \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\': Role','clc93suux00004ciywh0nidxf',''),('clc93suuy00254ciygug9adah',1,'Admin',1672319414,'192.168.64.1',2,36,31167,NULL,'MSSQL AG \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\': Sync health','clc93suux00004ciywh0nidxf',''),('clc93suuy00264ciyijugempc',1,'Admin',1672319414,'192.168.64.1',2,36,31258,NULL,'Archivelog \'{#DEST_NAME}\': Error','clc93suux00004ciywh0nidxf',''),('clc93suuy00274ciy8b8amdur',1,'Admin',1672319414,'192.168.64.1',2,36,31259,NULL,'Archivelog \'{#DEST_NAME}\': Last sequence','clc93suux00004ciywh0nidxf',''),('clc93suuy00284ciyic4qui1q',1,'Admin',1672319414,'192.168.64.1',2,36,31260,NULL,'Archivelog \'{#DEST_NAME}\': Status','clc93suux00004ciywh0nidxf',''),('clc93suuy00294ciy0ywwktkf',1,'Admin',1672319414,'192.168.64.1',2,36,31261,NULL,'ASM \'{#DG_NAME}\': Free size','clc93suux00004ciywh0nidxf',''),('clc93suuy002a4ciy3uli26p2',1,'Admin',1672319414,'192.168.64.1',2,36,31262,NULL,'ASM \'{#DG_NAME}\': Total size','clc93suux00004ciywh0nidxf',''),('clc93suuy002b4ciy5jkgjwlr',1,'Admin',1672319414,'192.168.64.1',2,36,31263,NULL,'ASM \'{#DG_NAME}\': Free size','clc93suux00004ciywh0nidxf',''),('clc93suuy002c4ciyg887i2qn',1,'Admin',1672319414,'192.168.64.1',2,36,31264,NULL,'Oracle Database \'{#DBNAME}\': Force logging','clc93suux00004ciywh0nidxf',''),('clc93suuy002d4ciyutjj42aj',1,'Admin',1672319414,'192.168.64.1',2,36,31265,NULL,'Oracle Database \'{#DBNAME}\': Log mode','clc93suux00004ciywh0nidxf',''),('clc93suuy002e4ciy066h6nho',1,'Admin',1672319414,'192.168.64.1',2,36,31266,NULL,'Oracle Database \'{#DBNAME}\': Open status','clc93suux00004ciywh0nidxf',''),('clc93suuy002f4ciy756kvhsc',1,'Admin',1672319414,'192.168.64.1',2,36,31267,NULL,'Oracle Database \'{#DBNAME}\': Role','clc93suux00004ciywh0nidxf',''),('clc93suuy002g4ciymqwnadc5',1,'Admin',1672319414,'192.168.64.1',2,36,31268,NULL,'Oracle Database \'{#DBNAME}\': Open status','clc93suux00004ciywh0nidxf',''),('clc93suuy002h4ciym3b5wy36',1,'Admin',1672319414,'192.168.64.1',2,36,31269,NULL,'Oracle TBS \'{#TABLESPACE}\': Tablespace allocated, bytes','clc93suux00004ciywh0nidxf',''),('clc93suuy002i4ciyqalvpzqy',1,'Admin',1672319414,'192.168.64.1',2,36,31270,NULL,'Oracle TBS \'{#TABLESPACE}\': Tablespace free, bytes','clc93suux00004ciywh0nidxf',''),('clc93suuy002j4ciywu5mk0po',1,'Admin',1672319414,'192.168.64.1',2,36,31271,NULL,'Oracle TBS \'{#TABLESPACE}\': Tablespace MAX size, bytes','clc93suux00004ciywh0nidxf',''),('clc93suuy002k4ciyzq30qfp3',1,'Admin',1672319414,'192.168.64.1',2,36,31272,NULL,'Oracle TBS \'{#TABLESPACE}\': Open status','clc93suux00004ciywh0nidxf',''),('clc93suuy002l4ciyxzcy59r2',1,'Admin',1672319414,'192.168.64.1',2,36,31273,NULL,'Oracle TBS \'{#TABLESPACE}\': Tablespace allocated, percent','clc93suux00004ciywh0nidxf',''),('clc93suuy002m4ciyd41bpwxj',1,'Admin',1672319414,'192.168.64.1',2,36,33170,NULL,'Oracle TBS \'{#TABLESPACE}\': Tablespace used, bytes','clc93suux00004ciywh0nidxf',''),('clc93suuy002n4ciy5fcupjeg',1,'Admin',1672319414,'192.168.64.1',2,36,33171,NULL,'Oracle TBS \'{#TABLESPACE}\': Tablespace usage, percent','clc93suux00004ciywh0nidxf',''),('clc93suuy002o4ciy7p6z858y',1,'Admin',1672319414,'192.168.64.1',2,36,31766,NULL,'Archivelog \'{#DEST_NAME}\': Error','clc93suux00004ciywh0nidxf',''),('clc93suuy002p4ciyvfosfp4p',1,'Admin',1672319414,'192.168.64.1',2,36,31767,NULL,'Archivelog \'{#DEST_NAME}\': Last sequence','clc93suux00004ciywh0nidxf',''),('clc93suuy002q4ciy5jvdq7yd',1,'Admin',1672319414,'192.168.64.1',2,36,31768,NULL,'Archivelog \'{#DEST_NAME}\': Status','clc93suux00004ciywh0nidxf',''),('clc93suuy002r4ciydwb29af7',1,'Admin',1672319414,'192.168.64.1',2,36,31769,NULL,'Oracle Database \'{#DBNAME}\': Force logging','clc93suux00004ciywh0nidxf',''),('clc93suuy002s4ciymplc62g2',1,'Admin',1672319414,'192.168.64.1',2,36,31770,NULL,'Oracle Database \'{#DBNAME}\': Log mode','clc93suux00004ciywh0nidxf',''),('clc93suuy002t4ciyhx42istg',1,'Admin',1672319414,'192.168.64.1',2,36,31771,NULL,'Oracle Database \'{#DBNAME}\': Open status','clc93suux00004ciywh0nidxf',''),('clc93suuy002u4ciy5kq1a0dz',1,'Admin',1672319414,'192.168.64.1',2,36,31772,NULL,'Oracle Database \'{#DBNAME}\': Role','clc93suux00004ciywh0nidxf',''),('clc93suuy002v4ciy6cf2ghqs',1,'Admin',1672319414,'192.168.64.1',2,36,31773,NULL,'ASM \'{#DG_NAME}\': Free size','clc93suux00004ciywh0nidxf',''),('clc93suuy002w4ciyqvz4jj7g',1,'Admin',1672319414,'192.168.64.1',2,36,31774,NULL,'ASM \'{#DG_NAME}\': Total size','clc93suux00004ciywh0nidxf',''),('clc93suuy002x4ciyv7mtf4t6',1,'Admin',1672319414,'192.168.64.1',2,36,31775,NULL,'ASM \'{#DG_NAME}\': Free size','clc93suux00004ciywh0nidxf',''),('clc93suuy002y4ciyqdqmde0w',1,'Admin',1672319414,'192.168.64.1',2,36,31776,NULL,'Oracle Database \'{#DBNAME}\': Open status','clc93suux00004ciywh0nidxf',''),('clc93suuy002z4ciyk11e6xme',1,'Admin',1672319414,'192.168.64.1',2,36,31777,NULL,'Oracle TBS \'{#TABLESPACE}\': Tablespace allocated, bytes','clc93suux00004ciywh0nidxf',''),('clc93suuy00304ciyn17zk393',1,'Admin',1672319414,'192.168.64.1',2,36,31778,NULL,'Oracle TBS \'{#TABLESPACE}\': Tablespace free, bytes','clc93suux00004ciywh0nidxf',''),('clc93suuy00314ciyk86u24m0',1,'Admin',1672319414,'192.168.64.1',2,36,31779,NULL,'Oracle TBS \'{#TABLESPACE}\': Tablespace MAX size, bytes','clc93suux00004ciywh0nidxf',''),('clc93suuy00324ciyfsx0pr1v',1,'Admin',1672319414,'192.168.64.1',2,36,31780,NULL,'Oracle TBS \'{#TABLESPACE}\': Open status','clc93suux00004ciywh0nidxf',''),('clc93suuy00334ciyxcbm69bk',1,'Admin',1672319414,'192.168.64.1',2,36,31781,NULL,'Oracle TBS \'{#TABLESPACE}\': Tablespace allocated, percent','clc93suux00004ciywh0nidxf',''),('clc93suuy00344ciyqwlu261w',1,'Admin',1672319414,'192.168.64.1',2,36,33168,NULL,'Oracle TBS \'{#TABLESPACE}\': Tablespace used, bytes','clc93suux00004ciywh0nidxf',''),('clc93suuy00354ciyd8cyu67t',1,'Admin',1672319414,'192.168.64.1',2,36,33169,NULL,'Oracle TBS \'{#TABLESPACE}\': Tablespace usage, percent','clc93suux00004ciywh0nidxf',''),('clc93suuy00364ciyfczqk2oa',1,'Admin',1672319414,'192.168.64.1',2,36,32405,NULL,'DB {#DBNAME}: Database size','clc93suux00004ciywh0nidxf',''),('clc93suuy00374ciyk3g7k1e6',1,'Admin',1672319414,'192.168.64.1',2,36,32406,NULL,'DB {#DBNAME}: Get frozen XID','clc93suux00004ciywh0nidxf',''),('clc93suuy00384ciye4e41yri',1,'Admin',1672319414,'192.168.64.1',2,36,32407,NULL,'DB {#DBNAME}: Get scans','clc93suux00004ciywh0nidxf',''),('clc93suuy00394ciy20todac8',1,'Admin',1672319414,'192.168.64.1',2,36,32408,NULL,'DB {#DBNAME}: Detected conflicts per second','clc93suux00004ciywh0nidxf',''),('clc93suuy003a4ciytx2zc0cw',1,'Admin',1672319414,'192.168.64.1',2,36,32409,NULL,'DB {#DBNAME}: Locks total','clc93suux00004ciywh0nidxf',''),('clc93suuy003b4ciygv11to1h',1,'Admin',1672319414,'192.168.64.1',2,36,32410,NULL,'DB {#DBNAME}: Sequential scans per second','clc93suux00004ciywh0nidxf',''),('clc93suuy003c4ciyigaopw4x',1,'Admin',1672319414,'192.168.64.1',2,36,32411,NULL,'DB {#DBNAME}: Index scans per second','clc93suux00004ciywh0nidxf',''),('clc93suuy003d4ciyh5aqlwgu',1,'Admin',1672319414,'192.168.64.1',2,36,32412,NULL,'DB {#DBNAME}: Queries sum transaction time','clc93suux00004ciywh0nidxf',''),('clc93suuy003e4ciyfi28g487',1,'Admin',1672319414,'192.168.64.1',2,36,32413,NULL,'DB {#DBNAME}: Queries max transaction time','clc93suux00004ciywh0nidxf',''),('clc93suuy003f4ciyu57vj7im',1,'Admin',1672319414,'192.168.64.1',2,36,32414,NULL,'DB {#DBNAME}: Queries slow transaction count','clc93suux00004ciywh0nidxf',''),('clc93suuy003g4ciybf4kptli',1,'Admin',1672319414,'192.168.64.1',2,36,32415,NULL,'DB {#DBNAME}: Queries sum query time','clc93suux00004ciywh0nidxf',''),('clc93suuy003h4ciyu7ai3qf0',1,'Admin',1672319414,'192.168.64.1',2,36,32416,NULL,'DB {#DBNAME}: Queries max query time','clc93suux00004ciywh0nidxf',''),('clc93suuy003i4ciyrselx4rs',1,'Admin',1672319414,'192.168.64.1',2,36,32417,NULL,'DB {#DBNAME}: Queries slow query count','clc93suux00004ciywh0nidxf',''),('clc93suuy003j4ciyqct76nhg',1,'Admin',1672319414,'192.168.64.1',2,36,32418,NULL,'DB {#DBNAME}: Queries sum maintenance time','clc93suux00004ciywh0nidxf',''),('clc93suuy003k4ciy03mdh5cn',1,'Admin',1672319414,'192.168.64.1',2,36,32419,NULL,'DB {#DBNAME}: Queries max maintenance time','clc93suux00004ciywh0nidxf',''),('clc93suuy003l4ciysrzwp0re',1,'Admin',1672319414,'192.168.64.1',2,36,32420,NULL,'DB {#DBNAME}: Queries slow maintenance count','clc93suux00004ciywh0nidxf',''),('clc93suuy003m4ciyx2y711g7',1,'Admin',1672319414,'192.168.64.1',2,36,32421,NULL,'DB {#DBNAME}: Disk blocks read per second','clc93suux00004ciywh0nidxf',''),('clc93suuy003n4ciyck85omxc',1,'Admin',1672319414,'192.168.64.1',2,36,32422,NULL,'DB {#DBNAME}: Detected deadlocks per second','clc93suux00004ciywh0nidxf',''),('clc93suuy003o4ciybxy5fp4a',1,'Admin',1672319414,'192.168.64.1',2,36,32423,NULL,'DB {#DBNAME}: Blocks hit per second','clc93suux00004ciywh0nidxf',''),('clc93suuy003p4ciy5tu6ek5x',1,'Admin',1672319414,'192.168.64.1',2,36,32424,NULL,'DB {#DBNAME}: Frozen XID before avtovacuum %','clc93suux00004ciywh0nidxf',''),('clc93suuy003q4ciy31toswfc',1,'Admin',1672319414,'192.168.64.1',2,36,32425,NULL,'DB {#DBNAME}: Rollbacks per second','clc93suux00004ciywh0nidxf',''),('clc93suuy003r4ciy2jz657cw',1,'Admin',1672319414,'192.168.64.1',2,36,32426,NULL,'DB {#DBNAME}: Commits per second','clc93suux00004ciywh0nidxf',''),('clc93suuy003s4ciycd9r9viu',1,'Admin',1672319414,'192.168.64.1',2,36,32427,NULL,'DB {#DBNAME}: Tuples updated per second','clc93suux00004ciywh0nidxf',''),('clc93suuy003t4ciyppqsgmzs',1,'Admin',1672319414,'192.168.64.1',2,36,32428,NULL,'DB {#DBNAME}: Tuples returned per second','clc93suux00004ciywh0nidxf',''),('clc93suuy003u4ciyzrzqe7m1',1,'Admin',1672319414,'192.168.64.1',2,36,32429,NULL,'DB {#DBNAME}: Tuples inserted per second','clc93suux00004ciywh0nidxf',''),('clc93suuy003v4ciyz5ncyn98',1,'Admin',1672319414,'192.168.64.1',2,36,32430,NULL,'DB {#DBNAME}: Tuples fetched per second','clc93suux00004ciywh0nidxf',''),('clc93suuy003w4ciym0s19whk',1,'Admin',1672319414,'192.168.64.1',2,36,32431,NULL,'DB {#DBNAME}: Tuples deleted per second','clc93suux00004ciywh0nidxf',''),('clc93suuy003x4ciynbt1cq40',1,'Admin',1672319414,'192.168.64.1',2,36,32432,NULL,'DB {#DBNAME}: Temp_files created per second','clc93suux00004ciywh0nidxf',''),('clc93suuy003y4ciy1z5o3bw6',1,'Admin',1672319414,'192.168.64.1',2,36,32433,NULL,'DB {#DBNAME}: Temp_bytes written per second','clc93suux00004ciywh0nidxf',''),('clc93suuy003z4ciyr041usqu',1,'Admin',1672319414,'192.168.64.1',2,36,32434,NULL,'DB {#DBNAME}: Frozen XID before stop %','clc93suux00004ciywh0nidxf',''),('clc93suuy00404ciytxmga0xo',1,'Admin',1672319414,'192.168.64.1',2,36,33134,NULL,'MySQL: Binlog commits','clc93suux00004ciywh0nidxf',''),('clc93suuy00414ciyi3wg2yvc',1,'Admin',1672319414,'192.168.64.1',2,36,33135,NULL,'MySQL: Binlog group commits','clc93suux00004ciywh0nidxf',''),('clc93suuy00424ciyg4lln7js',1,'Admin',1672319414,'192.168.64.1',2,36,33136,NULL,'MySQL: Master GTID wait count','clc93suux00004ciywh0nidxf',''),('clc93suuy00434ciyb5mjy7iy',1,'Admin',1672319414,'192.168.64.1',2,36,33137,NULL,'MySQL: Master GTID wait timeouts','clc93suux00004ciywh0nidxf',''),('clc93suuy00444ciymsdidv98',1,'Admin',1672319414,'192.168.64.1',2,36,33138,NULL,'MySQL: Master GTID wait time','clc93suux00004ciywh0nidxf',''),('clc93suuy00454ciyr9x4ubke',1,'Admin',1672319414,'192.168.64.1',2,36,33148,NULL,'MySQL: Binlog commits','clc93suux00004ciywh0nidxf',''),('clc93suuy00464ciyc8dgs0yh',1,'Admin',1672319414,'192.168.64.1',2,36,33149,NULL,'MySQL: Binlog group commits','clc93suux00004ciywh0nidxf',''),('clc93suuy00474ciytuca0o19',1,'Admin',1672319414,'192.168.64.1',2,36,33150,NULL,'MySQL: Master GTID wait count','clc93suux00004ciywh0nidxf',''),('clc93suuy00484ciyz2icx4z7',1,'Admin',1672319414,'192.168.64.1',2,36,33151,NULL,'MySQL: Master GTID wait timeouts','clc93suux00004ciywh0nidxf',''),('clc93suuy00494ciy99oo880o',1,'Admin',1672319414,'192.168.64.1',2,36,33152,NULL,'MySQL: Master GTID wait time','clc93suux00004ciywh0nidxf',''),('clc93suuy004a4ciy4ivy3tei',1,'Admin',1672319414,'192.168.64.1',2,36,33163,NULL,'MySQL: Binlog commits','clc93suux00004ciywh0nidxf',''),('clc93suuy004b4ciygsnej65z',1,'Admin',1672319414,'192.168.64.1',2,36,33164,NULL,'MySQL: Binlog group commits','clc93suux00004ciywh0nidxf',''),('clc93suuy004c4ciyu27taprk',1,'Admin',1672319414,'192.168.64.1',2,36,33165,NULL,'MySQL: Master GTID wait count','clc93suux00004ciywh0nidxf',''),('clc93suuy004d4ciyvps6th6g',1,'Admin',1672319414,'192.168.64.1',2,36,33166,NULL,'MySQL: Master GTID wait timeouts','clc93suux00004ciywh0nidxf',''),('clc93suuy004e4ciyb44oowd4',1,'Admin',1672319414,'192.168.64.1',2,36,33167,NULL,'MySQL: Master GTID wait time','clc93suux00004ciywh0nidxf',''),('clc93suuy004f4ciyz40j82aj',1,'Admin',1672319414,'192.168.64.1',2,36,33206,NULL,'Battery: Voltage{#SINGLETON}','clc93suux00004ciywh0nidxf',''),('clc93suuy004g4ciy6jbf3i18',1,'Admin',1672319414,'192.168.64.1',2,36,33226,NULL,'Battery: Voltage{#SINGLETON}','clc93suux00004ciywh0nidxf',''),('clc93suuy004h4ciygspg4uu4',1,'Admin',1672319414,'192.168.64.1',2,36,33249,NULL,'Battery: Voltage{#SINGLETON}','clc93suux00004ciywh0nidxf',''),('clc93suuy004i4ciyah5fkw5q',1,'Admin',1672319414,'192.168.64.1',2,36,33258,NULL,'Battery: Voltage{#SINGLETON}','clc93suux00004ciywh0nidxf',''),('clc93suuy004j4ciybw40wlzr',1,'Admin',1672319414,'192.168.64.1',2,36,33277,NULL,'Battery: Voltage{#SINGLETON}','clc93suux00004ciywh0nidxf',''),('clc93suuy004k4ciyoiwmkjpn',1,'Admin',1672319414,'192.168.64.1',2,36,33296,NULL,'Battery: Voltage{#SINGLETON}','clc93suux00004ciywh0nidxf',''),('clc93suuy004l4ciyy83drhma',1,'Admin',1672319414,'192.168.64.1',2,36,33312,NULL,'Battery: Voltage{#SINGLETON}','clc93suux00004ciywh0nidxf',''),('clc93suuy004m4ciypyufc81m',1,'Admin',1672319414,'192.168.64.1',2,36,33313,NULL,'Array: Voltage{#SINGLETON}','clc93suux00004ciywh0nidxf',''),('clc93suuy004n4ciy6me15hhk',1,'Admin',1672319414,'192.168.64.1',2,36,33314,NULL,'Battery: Charge Current{#SINGLETON}','clc93suux00004ciywh0nidxf',''),('clc93suuy004o4ciyhhytd2de',1,'Admin',1672319414,'192.168.64.1',2,36,33315,NULL,'Battery: Charge State{#SINGLETON}','clc93suux00004ciywh0nidxf',''),('clc93suuy004p4ciy9ujpcih8',1,'Admin',1672319414,'192.168.64.1',2,36,33316,NULL,'Battery: Target Voltage{#SINGLETON}','clc93suux00004ciywh0nidxf',''),('clc93suuy004q4ciy3jedxesr',1,'Admin',1672319414,'192.168.64.1',2,36,33317,NULL,'Load: PWM Duty Cycle{#SINGLETON}','clc93suux00004ciywh0nidxf',''),('clc93suuy004r4ciyfdt2ru6d',1,'Admin',1672319414,'192.168.64.1',2,36,33318,NULL,'Load: State{#SINGLETON}','clc93suux00004ciywh0nidxf',''),('clc93suuy004s4ciynn7k5baj',1,'Admin',1672319414,'192.168.64.1',2,36,33319,NULL,'Load: Current{#SINGLETON}','clc93suux00004ciywh0nidxf',''),('clc93suuy004t4ciycg0tm15c',1,'Admin',1672319414,'192.168.64.1',2,36,33320,NULL,'Load: Voltage{#SINGLETON}','clc93suux00004ciywh0nidxf',''),('clc93suuy004u4ciyh2cuzavs',1,'Admin',1672319414,'192.168.64.1',2,36,33357,NULL,'Node {#NODE.NAME}: Failed FAN count','clc93suux00004ciywh0nidxf',''),('clc93suuy004v4ciygez9iycb',1,'Admin',1672319414,'192.168.64.1',2,36,33358,NULL,'Node {#NODE.NAME}: Failed FAN message','clc93suux00004ciywh0nidxf',''),('clc93suuy004w4ciyko4snksr',1,'Admin',1672319414,'192.168.64.1',2,36,33359,NULL,'Node {#NODE.NAME}: Degraded power supplies count','clc93suux00004ciywh0nidxf',''),('clc93suuy004x4ciy69rgxsjt',1,'Admin',1672319414,'192.168.64.1',2,36,33360,NULL,'Node {#NODE.NAME}: Degraded power supplies message','clc93suux00004ciywh0nidxf',''),('clc93suuy004y4ciy8qn3qyec',1,'Admin',1672319414,'192.168.64.1',2,36,33361,NULL,'Node {#NODE.NAME}: Over-temperature','clc93suux00004ciywh0nidxf',''),('clc93suuy004z4ciy0ccr6jiu',1,'Admin',1672319414,'192.168.64.1',2,36,33362,NULL,'Node {#NODE.NAME}: Health','clc93suux00004ciywh0nidxf',''),('clc93suuy00504ciyieaky35p',1,'Admin',1672319414,'192.168.64.1',2,36,33363,NULL,'Node {#NODE.NAME}: Location','clc93suux00004ciywh0nidxf',''),('clc93suuy00514ciyvicagdr1',1,'Admin',1672319414,'192.168.64.1',2,36,33364,NULL,'Node {#NODE.NAME}: Model','clc93suux00004ciywh0nidxf',''),('clc93suuy00524ciyq0lobhai',1,'Admin',1672319414,'192.168.64.1',2,36,33365,NULL,'Node {#NODE.NAME}: NVRAM battery status','clc93suux00004ciywh0nidxf',''),('clc93suuy00534ciyel3q8tpq',1,'Admin',1672319414,'192.168.64.1',2,36,33366,NULL,'Node {#NODE.NAME}: Serial number','clc93suux00004ciywh0nidxf',''),('clc93suuy00544ciyd46s1oa7',1,'Admin',1672319414,'192.168.64.1',2,36,33367,NULL,'Node {#NODE.NAME}: Uptime','clc93suux00004ciywh0nidxf',''),('clc93suuy00554ciy4p25g3az',1,'Admin',1672319414,'192.168.64.1',2,36,33368,NULL,'Node {#NODE.NAME}: CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93suuy00564ciy2x5kh5s6',1,'Admin',1672319414,'192.168.64.1',2,36,33369,NULL,'{#VSERVER}{#FSNAME}: Total space available','clc93suux00004ciywh0nidxf',''),('clc93suuy00574ciy7v01pc2l',1,'Admin',1672319414,'192.168.64.1',2,36,33370,NULL,'{#VSERVER}{#FSNAME}: Total space','clc93suux00004ciywh0nidxf',''),('clc93suuy00584ciyi1t3mbry',1,'Admin',1672319414,'192.168.64.1',2,36,33371,NULL,'{#VSERVER}{#FSNAME}: Total space used','clc93suux00004ciywh0nidxf',''),('clc93suuy00594ciytj463zu1',1,'Admin',1672319414,'192.168.64.1',2,36,33372,NULL,'{#VSERVER}{#FSNAME}: Saved by compression percents','clc93suux00004ciywh0nidxf',''),('clc93suuy005a4ciy98gw9lxg',1,'Admin',1672319414,'192.168.64.1',2,36,33373,NULL,'{#VSERVER}{#FSNAME}: Saved by deduplication percents','clc93suux00004ciywh0nidxf',''),('clc93suuy005b4ciyqp75wx5w',1,'Admin',1672319414,'192.168.64.1',2,36,33374,NULL,'{#VSERVER}{#FSNAME}: Used space percents','clc93suux00004ciywh0nidxf',''),('clc93suuy005c4ciy8q8r0hwq',1,'Admin',1672319414,'192.168.64.1',2,36,33375,NULL,'Node {#NODE.NAME}: Cannot takeover cause','clc93suux00004ciywh0nidxf',''),('clc93suuy005d4ciy7ov1m02x',1,'Admin',1672319414,'192.168.64.1',2,36,33376,NULL,'Node {#NODE.NAME}: HA settings','clc93suux00004ciywh0nidxf',''),('clc93suuy005e4ciypbaamwlr',1,'Admin',1672319414,'192.168.64.1',2,36,33377,NULL,'Node {#NODE}: port {#IFNAME} ({#TYPE}): Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suuy005f4ciy43j7wt7h',1,'Admin',1672319414,'192.168.64.1',2,36,33378,NULL,'Node {#NODE}: port {#IFNAME} ({#TYPE}): Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suuy005g4ciyyn7se6w5',1,'Admin',1672319414,'192.168.64.1',2,36,33379,NULL,'Node {#NODE}: port {#IFNAME} ({#TYPE}): Bits received','clc93suux00004ciywh0nidxf',''),('clc93suuy005h4ciy4ozkld0r',1,'Admin',1672319414,'192.168.64.1',2,36,33380,NULL,'Node {#NODE}: port {#IFNAME} ({#TYPE}): Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suuy005i4ciygiw4u6c8',1,'Admin',1672319414,'192.168.64.1',2,36,33381,NULL,'Node {#NODE}: port {#IFNAME} ({#TYPE}): Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suuy005j4ciy9csc9poy',1,'Admin',1672319414,'192.168.64.1',2,36,33382,NULL,'Node {#NODE}: port {#IFNAME} ({#TYPE}): Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suuy005k4ciy6fh2os9c',1,'Admin',1672319414,'192.168.64.1',2,36,33383,NULL,'Node {#NODE}: port {#IFNAME} ({#TYPE}): Health degraded reason','clc93suux00004ciywh0nidxf',''),('clc93suuy005l4ciyvt2ibmn7',1,'Admin',1672319414,'192.168.64.1',2,36,33384,NULL,'Node {#NODE}: port {#IFNAME} ({#TYPE}): Health','clc93suux00004ciywh0nidxf',''),('clc93suuy005m4ciypw012mb5',1,'Admin',1672319414,'192.168.64.1',2,36,33385,NULL,'Node {#NODE}: port {#IFNAME} ({#TYPE}): State','clc93suux00004ciywh0nidxf',''),('clc93suuy005n4ciy371ho92v',1,'Admin',1672319414,'192.168.64.1',2,36,33386,NULL,'Node {#NODE}: port {#IFNAME} ({#TYPE}): Role','clc93suux00004ciywh0nidxf',''),('clc93suuy005o4ciycwvpipcr',1,'Admin',1672319414,'192.168.64.1',2,36,33387,NULL,'Node {#NODE}: port {#IFNAME} ({#TYPE}): Speed','clc93suux00004ciywh0nidxf',''),('clc93suuy005p4ciye1yn6r4z',1,'Admin',1672319414,'192.168.64.1',2,36,33388,NULL,'Node {#NODE}: port {#IFNAME} ({#TYPE}): Up by an administrator','clc93suux00004ciywh0nidxf',''),('clc93suuy005q4ciym7t3h2gy',1,'Admin',1672319414,'192.168.64.1',2,36,33812,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Get collection stats {#DBNAME}.{#COLLECTION}','clc93suux00004ciywh0nidxf',''),('clc93suuy005r4ciydqdygwh5',1,'Admin',1672319414,'192.168.64.1',2,36,33814,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Objects, avg size','clc93suux00004ciywh0nidxf',''),('clc93suuy005s4ciy8zf3e7yv',1,'Admin',1672319414,'192.168.64.1',2,36,33815,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Operations: remove, ms/s','clc93suux00004ciywh0nidxf',''),('clc93suuy005t4ciyyoqzsn8w',1,'Admin',1672319414,'192.168.64.1',2,36,33816,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Write lock, ms/s','clc93suux00004ciywh0nidxf',''),('clc93suuy005u4ciytxspmiuc',1,'Admin',1672319414,'192.168.64.1',2,36,33817,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Storage size','clc93suux00004ciywh0nidxf',''),('clc93suuy005v4ciyaxakghzo',1,'Admin',1672319414,'192.168.64.1',2,36,33818,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Size','clc93suux00004ciywh0nidxf',''),('clc93suuy005w4ciykzmwl6o9',1,'Admin',1672319414,'192.168.64.1',2,36,33819,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Read lock, rate','clc93suux00004ciywh0nidxf',''),('clc93suuy005x4ciyvrofaukv',1,'Admin',1672319414,'192.168.64.1',2,36,33820,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Read lock, ms/s','clc93suux00004ciywh0nidxf',''),('clc93suuy005y4ciy5uqxyghx',1,'Admin',1672319414,'192.168.64.1',2,36,33821,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Operations: update, rate','clc93suux00004ciywh0nidxf',''),('clc93suuy005z4ciyuay08yyy',1,'Admin',1672319414,'192.168.64.1',2,36,33822,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Operations: update, ms/s','clc93suux00004ciywh0nidxf',''),('clc93suuy00604ciyici65pne',1,'Admin',1672319414,'192.168.64.1',2,36,33823,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Operations: total, rate','clc93suux00004ciywh0nidxf',''),('clc93suuy00614ciyljuv738n',1,'Admin',1672319414,'192.168.64.1',2,36,33824,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Operations: total, ms/s','clc93suux00004ciywh0nidxf',''),('clc93suuy00624ciy311z02g5',1,'Admin',1672319414,'192.168.64.1',2,36,33825,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Operations: remove, rate','clc93suux00004ciywh0nidxf',''),('clc93suuy00634ciy7gtrda52',1,'Admin',1672319414,'192.168.64.1',2,36,33826,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Operations: queries, rate','clc93suux00004ciywh0nidxf',''),('clc93suuy00644ciyfww1td0e',1,'Admin',1672319414,'192.168.64.1',2,36,33827,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Capped','clc93suux00004ciywh0nidxf',''),('clc93suuy00654ciytaaqreit',1,'Admin',1672319414,'192.168.64.1',2,36,33828,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Operations: queries, ms/s','clc93suux00004ciywh0nidxf',''),('clc93suuy00664ciy0wj5iro5',1,'Admin',1672319414,'192.168.64.1',2,36,33829,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Operations: insert, rate','clc93suux00004ciywh0nidxf',''),('clc93suuy00674ciyli990tje',1,'Admin',1672319414,'192.168.64.1',2,36,33830,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Operations: insert, ms/s','clc93suux00004ciywh0nidxf',''),('clc93suuy00684ciyprjteiyj',1,'Admin',1672319414,'192.168.64.1',2,36,33831,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Operations: getmore, rate','clc93suux00004ciywh0nidxf',''),('clc93suuy00694ciypsydnjq5',1,'Admin',1672319414,'192.168.64.1',2,36,33832,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Operations: getmore, ms/s','clc93suux00004ciywh0nidxf',''),('clc93suuy006a4ciybaj56enb',1,'Admin',1672319414,'192.168.64.1',2,36,33833,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Operations: commands, rate','clc93suux00004ciywh0nidxf',''),('clc93suuy006b4ciylzjaqk6n',1,'Admin',1672319414,'192.168.64.1',2,36,33834,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Operations: commands, ms/s','clc93suux00004ciywh0nidxf',''),('clc93suuy006c4ciy2xi7jkre',1,'Admin',1672319414,'192.168.64.1',2,36,33835,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Indexes','clc93suux00004ciywh0nidxf',''),('clc93suuy006d4ciy1p117kaz',1,'Admin',1672319414,'192.168.64.1',2,36,33836,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Capped: max size','clc93suux00004ciywh0nidxf',''),('clc93suuy006e4ciyrr2ax68c',1,'Admin',1672319414,'192.168.64.1',2,36,33837,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Capped: max number','clc93suux00004ciywh0nidxf',''),('clc93suuy006f4ciy6f9ah2gm',1,'Admin',1672319414,'192.168.64.1',2,36,33838,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Objects, count','clc93suux00004ciywh0nidxf',''),('clc93suuy006g4ciyaxwkjxz6',1,'Admin',1672319414,'192.168.64.1',2,36,33839,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Write lock, rate','clc93suux00004ciywh0nidxf',''),('clc93suuy006h4ciynpgupi13',1,'Admin',1672319414,'192.168.64.1',2,36,33813,NULL,'MongoDB {#DBNAME}: Get db stats {#DBNAME}','clc93suux00004ciywh0nidxf',''),('clc93suuy006i4ciy40j1e2rg',1,'Admin',1672319414,'192.168.64.1',2,36,33840,NULL,'MongoDB {#DBNAME}: Collections','clc93suux00004ciywh0nidxf',''),('clc93suuy006j4ciyba9o86f2',1,'Admin',1672319414,'192.168.64.1',2,36,33841,NULL,'MongoDB {#DBNAME}: Size, data','clc93suux00004ciywh0nidxf',''),('clc93suuy006k4ciyou2804ul',1,'Admin',1672319414,'192.168.64.1',2,36,33842,NULL,'MongoDB {#DBNAME}: Extents','clc93suux00004ciywh0nidxf',''),('clc93suuy006l4ciybmm9w0ka',1,'Admin',1672319414,'192.168.64.1',2,36,33843,NULL,'MongoDB {#DBNAME}: Size, file','clc93suux00004ciywh0nidxf',''),('clc93suuy006m4ciyz8i454q7',1,'Admin',1672319414,'192.168.64.1',2,36,33844,NULL,'MongoDB {#DBNAME}: Size, index','clc93suux00004ciywh0nidxf',''),('clc93suuy006n4ciyg21l0xcu',1,'Admin',1672319414,'192.168.64.1',2,36,33845,NULL,'MongoDB {#DBNAME}: Objects, count','clc93suux00004ciywh0nidxf',''),('clc93suuy006o4ciyvmirjcyc',1,'Admin',1672319414,'192.168.64.1',2,36,33846,NULL,'MongoDB {#DBNAME}: Objects, avg size','clc93suux00004ciywh0nidxf',''),('clc93suuy006p4ciyyac3fdam',1,'Admin',1672319414,'192.168.64.1',2,36,33847,NULL,'MongoDB {#DBNAME}: Size, storage','clc93suux00004ciywh0nidxf',''),('clc93suuy006q4ciyhcrtqclu',1,'Admin',1672319414,'192.168.64.1',2,36,33848,NULL,'MongoDB: Apply batches, ms/s','clc93suux00004ciywh0nidxf',''),('clc93suuy006r4ciyf7lzshno',1,'Admin',1672319414,'192.168.64.1',2,36,33849,NULL,'MongoDB: Network readers created, rate','clc93suux00004ciywh0nidxf',''),('clc93suuy006s4ciy5ewr3k80',1,'Admin',1672319414,'192.168.64.1',2,36,33850,NULL,'MongoDB: Unhealthy replicas','clc93suux00004ciywh0nidxf',''),('clc93suuy006t4ciy47lh11c5',1,'Admin',1672319414,'192.168.64.1',2,36,33851,NULL,'MongoDB: Number of replicas','clc93suux00004ciywh0nidxf',''),('clc93suuy006u4ciy6vabkbc9',1,'Admin',1672319414,'192.168.64.1',2,36,33852,NULL,'MongoDB: Node state','clc93suux00004ciywh0nidxf',''),('clc93suuy006v4ciyjp9tugi9',1,'Admin',1672319414,'192.168.64.1',2,36,33853,NULL,'MongoDB: Preload indexes, rate','clc93suux00004ciywh0nidxf',''),('clc93suuy006w4ciyhnpez1ti',1,'Admin',1672319414,'192.168.64.1',2,36,33854,NULL,'MongoDB: Preload indexes, ms/s','clc93suux00004ciywh0nidxf',''),('clc93suuy006x4ciy2gqcj8sf',1,'Admin',1672319414,'192.168.64.1',2,36,33855,NULL,'MongoDB: Preload docs, rate','clc93suux00004ciywh0nidxf',''),('clc93suuy006y4ciyvztop6pl',1,'Admin',1672319414,'192.168.64.1',2,36,33856,NULL,'MongoDB: Preload docs, ms/s','clc93suux00004ciywh0nidxf',''),('clc93suuy006z4ciylp41yjny',1,'Admin',1672319414,'192.168.64.1',2,36,33857,NULL,'MongoDB {#RS_NAME}: Oplog time diff','clc93suux00004ciywh0nidxf',''),('clc93suuy00704ciyxtuv3fux',1,'Admin',1672319414,'192.168.64.1',2,36,33858,NULL,'MongoDB: Network ops, rate','clc93suux00004ciywh0nidxf',''),('clc93suuy00714ciyj1x184p9',1,'Admin',1672319414,'192.168.64.1',2,36,33859,NULL,'MongoDB: Apply batches, rate','clc93suux00004ciywh0nidxf',''),('clc93suuy00724ciynoogbgxx',1,'Admin',1672319414,'192.168.64.1',2,36,33860,NULL,'MongoDB: Network getmores, rate','clc93suux00004ciywh0nidxf',''),('clc93suuy00734ciypx7buprt',1,'Admin',1672319414,'192.168.64.1',2,36,33861,NULL,'MongoDB: Network getmores, ms/s','clc93suux00004ciywh0nidxf',''),('clc93suuy00744ciyypqq0ywo',1,'Admin',1672319414,'192.168.64.1',2,36,33862,NULL,'MongoDB: Network bytes, rate','clc93suux00004ciywh0nidxf',''),('clc93suuy00754ciyz413wka1',1,'Admin',1672319414,'192.168.64.1',2,36,33863,NULL,'MongoDB: Replication lag','clc93suux00004ciywh0nidxf',''),('clc93suuy00764ciyfwovy139',1,'Admin',1672319414,'192.168.64.1',2,36,33864,NULL,'MongoDB: Buffer, size','clc93suux00004ciywh0nidxf',''),('clc93suuy00774ciyvwwvnv1g',1,'Admin',1672319414,'192.168.64.1',2,36,33865,NULL,'MongoDB: Buffer, max size','clc93suux00004ciywh0nidxf',''),('clc93suuy00784ciyddl9bp0e',1,'Admin',1672319414,'192.168.64.1',2,36,33866,NULL,'MongoDB: Buffer','clc93suux00004ciywh0nidxf',''),('clc93suuy00794ciyodojw39f',1,'Admin',1672319414,'192.168.64.1',2,36,33867,NULL,'MongoDB: Apply ops, rate','clc93suux00004ciywh0nidxf',''),('clc93suuy007a4ciyqcinj9ct',1,'Admin',1672319414,'192.168.64.1',2,36,33868,NULL,'MongoDB: Number of unhealthy replicas','clc93suux00004ciywh0nidxf',''),('clc93suuy007b4ciysuifu0uo',1,'Admin',1672319414,'192.168.64.1',2,36,33869,NULL,'MongoDB: WiredTiger cache: bytes','clc93suux00004ciywh0nidxf',''),('clc93suuy007c4ciyehip3h5o',1,'Admin',1672319414,'192.168.64.1',2,36,33870,NULL,'MongoDB: WiredTiger cache: tracked dirty bytes in the cache','clc93suux00004ciywh0nidxf',''),('clc93suuy007d4ciyf1617le3',1,'Admin',1672319414,'192.168.64.1',2,36,33871,NULL,'MongoDB: WiredTiger concurrent transactions: write, out','clc93suux00004ciywh0nidxf',''),('clc93suuy007e4ciyt3e6qyp0',1,'Admin',1672319414,'192.168.64.1',2,36,33872,NULL,'MongoDB: WiredTiger concurrent transactions: write, available','clc93suux00004ciywh0nidxf',''),('clc93suuy007f4ciyvc0uz2b8',1,'Admin',1672319414,'192.168.64.1',2,36,33873,NULL,'MongoDB: WiredTiger concurrent transactions: read, total tickets','clc93suux00004ciywh0nidxf',''),('clc93suuy007g4ciyer2nduco',1,'Admin',1672319414,'192.168.64.1',2,36,33874,NULL,'MongoDB: WiredTiger concurrent transactions: read, out','clc93suux00004ciywh0nidxf',''),('clc93suuy007h4ciy5cfvuqtv',1,'Admin',1672319414,'192.168.64.1',2,36,33875,NULL,'MongoDB: WiredTiger concurrent transactions: read, available','clc93suux00004ciywh0nidxf',''),('clc93suuy007i4ciy9qathcz2',1,'Admin',1672319414,'192.168.64.1',2,36,33876,NULL,'MongoDB: WiredTiger cache: unmodified pages evicted','clc93suux00004ciywh0nidxf',''),('clc93suuy007j4ciyolpkcipa',1,'Admin',1672319414,'192.168.64.1',2,36,33877,NULL,'MongoDB: WiredTiger cache: in-memory page splits','clc93suux00004ciywh0nidxf',''),('clc93suuy007k4ciy371fnvil',1,'Admin',1672319414,'192.168.64.1',2,36,33878,NULL,'MongoDB: WiredTiger cache: bytes, max','clc93suux00004ciywh0nidxf',''),('clc93suuy007l4ciy9lhy5n12',1,'Admin',1672319414,'192.168.64.1',2,36,33879,NULL,'MongoDB: WiredTiger cache: pages written from cache','clc93suux00004ciywh0nidxf',''),('clc93suuy007m4ciy1n17241y',1,'Admin',1672319414,'192.168.64.1',2,36,33880,NULL,'MongoDB: WiredTiger cache: pages read into cache','clc93suux00004ciywh0nidxf',''),('clc93suuy007n4ciydpboi88j',1,'Admin',1672319414,'192.168.64.1',2,36,33881,NULL,'MongoDB: WiredTiger cache: pages held in cache','clc93suux00004ciywh0nidxf',''),('clc93suuy007o4ciywfxkne0c',1,'Admin',1672319414,'192.168.64.1',2,36,33882,NULL,'MongoDB: WiredTiger cache: pages evicted by application threads, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz007p4ciynyc2pn0n',1,'Admin',1672319414,'192.168.64.1',2,36,33883,NULL,'MongoDB: WiredTiger cache: modified pages evicted','clc93suux00004ciywh0nidxf',''),('clc93suuz007q4ciysrsdpvj5',1,'Admin',1672319414,'192.168.64.1',2,36,33884,NULL,'MongoDB: WiredTiger cache: max page size at eviction','clc93suux00004ciywh0nidxf',''),('clc93suuz007r4ciyhxrbyxh6',1,'Admin',1672319414,'192.168.64.1',2,36,33885,NULL,'MongoDB: WiredTiger concurrent transactions: write, total tickets','clc93suux00004ciywh0nidxf',''),('clc93suuz007s4ciy0o4l351b',1,'Admin',1672319414,'192.168.64.1',2,36,33924,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Get collection stats {#DBNAME}.{#COLLECTION}','clc93suux00004ciywh0nidxf',''),('clc93suuz007t4ciyozr3mff1',1,'Admin',1672319414,'192.168.64.1',2,36,33926,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Objects, avg size','clc93suux00004ciywh0nidxf',''),('clc93suuz007u4ciymq5cdsjc',1,'Admin',1672319414,'192.168.64.1',2,36,33927,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Capped','clc93suux00004ciywh0nidxf',''),('clc93suuz007v4ciypj9kor13',1,'Admin',1672319414,'192.168.64.1',2,36,33928,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Objects, count','clc93suux00004ciywh0nidxf',''),('clc93suuz007w4ciy7ye4t1g0',1,'Admin',1672319414,'192.168.64.1',2,36,33929,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Capped, max number','clc93suux00004ciywh0nidxf',''),('clc93suuz007x4ciymru6br3v',1,'Admin',1672319414,'192.168.64.1',2,36,33930,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Capped, max size','clc93suux00004ciywh0nidxf',''),('clc93suuz007y4ciy2gvvhdtd',1,'Admin',1672319414,'192.168.64.1',2,36,33931,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Indexes','clc93suux00004ciywh0nidxf',''),('clc93suuz007z4ciyxpzkska2',1,'Admin',1672319414,'192.168.64.1',2,36,33932,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Size','clc93suux00004ciywh0nidxf',''),('clc93suuz00804ciyzk4b4yzi',1,'Admin',1672319414,'192.168.64.1',2,36,33933,NULL,'MongoDB {#DBNAME}.{#COLLECTION}: Storage size','clc93suux00004ciywh0nidxf',''),('clc93suuz00814ciycic82hod',1,'Admin',1672319414,'192.168.64.1',2,36,33925,NULL,'MongoDB {#DBNAME}: Get db stats {#DBNAME}','clc93suux00004ciywh0nidxf',''),('clc93suuz00824ciywrsr4uo4',1,'Admin',1672319414,'192.168.64.1',2,36,33934,NULL,'MongoDB {#DBNAME}: Size, data','clc93suux00004ciywh0nidxf',''),('clc93suuz00834ciy6d9avrnf',1,'Admin',1672319414,'192.168.64.1',2,36,33935,NULL,'MongoDB {#DBNAME}: Extents','clc93suux00004ciywh0nidxf',''),('clc93suuz00844ciy556i2xnp',1,'Admin',1672319414,'192.168.64.1',2,36,33936,NULL,'MongoDB {#DBNAME}: Size, file','clc93suux00004ciywh0nidxf',''),('clc93suuz00854ciyi6ybptbj',1,'Admin',1672319414,'192.168.64.1',2,36,33937,NULL,'MongoDB {#DBNAME}: Size, index','clc93suux00004ciywh0nidxf',''),('clc93suuz00864ciylidyqagd',1,'Admin',1672319414,'192.168.64.1',2,36,33938,NULL,'MongoDB {#DBNAME}: Objects, count','clc93suux00004ciywh0nidxf',''),('clc93suuz00874ciyb3ha7dt2',1,'Admin',1672319414,'192.168.64.1',2,36,33939,NULL,'MongoDB {#DBNAME}: Objects, avg size','clc93suux00004ciywh0nidxf',''),('clc93suuz00884ciy8q02x7lr',1,'Admin',1672319414,'192.168.64.1',2,36,33940,NULL,'MongoDB {#DBNAME}: Size, storage','clc93suux00004ciywh0nidxf',''),('clc93suuz00894ciyyp30eogr',1,'Admin',1672319414,'192.168.64.1',2,36,34273,NULL,'{#ID}: State','clc93suux00004ciywh0nidxf',''),('clc93suuz008a4ciyb0w933sf',1,'Admin',1672319414,'192.168.64.1',2,36,34274,NULL,'{#DISKNAME}: State','clc93suux00004ciywh0nidxf',''),('clc93suuz008b4ciyh1qv3au9',1,'Admin',1672319414,'192.168.64.1',2,36,34275,NULL,'{#FRUID}: State','clc93suux00004ciywh0nidxf',''),('clc93suuz008c4ciy8s2f1hq0',1,'Admin',1672319414,'192.168.64.1',2,36,34276,NULL,'{#LUNNAME}: Space size','clc93suux00004ciywh0nidxf',''),('clc93suuz008d4ciytb98rltw',1,'Admin',1672319414,'192.168.64.1',2,36,34277,NULL,'{#LUNNAME}: Space used','clc93suux00004ciywh0nidxf',''),('clc93suuz008e4ciyog12kk2m',1,'Admin',1672319414,'192.168.64.1',2,36,34278,NULL,'{#LUNNAME}: Container state','clc93suux00004ciywh0nidxf',''),('clc93suuz008f4ciy74d654br',1,'Admin',1672319414,'192.168.64.1',2,36,34279,NULL,'{#LUNNAME}: State','clc93suux00004ciywh0nidxf',''),('clc93suuz008g4ciyssn1fcid',1,'Admin',1672319414,'192.168.64.1',2,36,34280,NULL,'{#NODENAME}: Software version','clc93suux00004ciywh0nidxf',''),('clc93suuz008h4ciykcze05im',1,'Admin',1672319414,'192.168.64.1',2,36,34281,NULL,'{#NODENAME}: Controller over temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz008i4ciyaui791pa',1,'Admin',1672319414,'192.168.64.1',2,36,34282,NULL,'{#NODENAME}: Location','clc93suux00004ciywh0nidxf',''),('clc93suuz008j4ciy1pau1xow',1,'Admin',1672319414,'192.168.64.1',2,36,34283,NULL,'{#NODENAME}: Membership','clc93suux00004ciywh0nidxf',''),('clc93suuz008k4ciy8iwb218v',1,'Admin',1672319414,'192.168.64.1',2,36,34284,NULL,'{#NODENAME}: State','clc93suux00004ciywh0nidxf',''),('clc93suuz008l4ciy5ugk36sa',1,'Admin',1672319414,'192.168.64.1',2,36,34285,NULL,'{#NODENAME}: Uptime','clc93suux00004ciywh0nidxf',''),('clc93suuz008m4ciyuk9fxwn0',1,'Admin',1672319414,'192.168.64.1',2,36,34286,NULL,'{#ETHPORTNAME}: State','clc93suux00004ciywh0nidxf',''),('clc93suuz008n4ciybj87gof0',1,'Admin',1672319414,'192.168.64.1',2,36,34287,NULL,'{#FCPORTNAME}: Description','clc93suux00004ciywh0nidxf',''),('clc93suuz008o4ciy0d85pn41',1,'Admin',1672319414,'192.168.64.1',2,36,34288,NULL,'{#FCPORTNAME}: State','clc93suux00004ciywh0nidxf',''),('clc93suuz008p4ciybl3n89jx',1,'Admin',1672319414,'192.168.64.1',2,36,34289,NULL,'{#SVMNAME}: Comment','clc93suux00004ciywh0nidxf',''),('clc93suuz008q4ciynmyp2hxp',1,'Admin',1672319414,'192.168.64.1',2,36,34290,NULL,'{#SVMNAME}: State','clc93suux00004ciywh0nidxf',''),('clc93suuz008r4ciy1cxbmj90',1,'Admin',1672319414,'192.168.64.1',2,36,34269,NULL,'{#VOLUMENAME}: Volume latency, other','clc93suux00004ciywh0nidxf',''),('clc93suuz008s4ciy9m2xmp8w',1,'Admin',1672319414,'192.168.64.1',2,36,34270,NULL,'{#VOLUMENAME}: Volume latency, read','clc93suux00004ciywh0nidxf',''),('clc93suuz008t4ciybza11oa9',1,'Admin',1672319414,'192.168.64.1',2,36,34271,NULL,'{#VOLUMENAME}: Volume latency, write','clc93suux00004ciywh0nidxf',''),('clc93suuz008u4ciyw8exvmwc',1,'Admin',1672319414,'192.168.64.1',2,36,34272,NULL,'{#VOLUMENAME}: Volume latency, total','clc93suux00004ciywh0nidxf',''),('clc93suuz008v4ciygu9ylx9i',1,'Admin',1672319414,'192.168.64.1',2,36,34291,NULL,'{#VOLUMENAME}: SVM name','clc93suux00004ciywh0nidxf',''),('clc93suuz008w4ciy6eoou7uk',1,'Admin',1672319414,'192.168.64.1',2,36,34292,NULL,'{#VOLUMENAME}: Volume throughput, write rate','clc93suux00004ciywh0nidxf',''),('clc93suuz008x4ciy4qzxe3ez',1,'Admin',1672319414,'192.168.64.1',2,36,34293,NULL,'{#VOLUMENAME}: Volume throughput, total rate','clc93suux00004ciywh0nidxf',''),('clc93suuz008y4ciyu2qtebcb',1,'Admin',1672319414,'192.168.64.1',2,36,34294,NULL,'{#VOLUMENAME}: Volume throughput, read rate','clc93suux00004ciywh0nidxf',''),('clc93suuz008z4ciyaykoka88',1,'Admin',1672319414,'192.168.64.1',2,36,34295,NULL,'{#VOLUMENAME}: Volume throughput, other rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00904ciyd6zpxuig',1,'Admin',1672319414,'192.168.64.1',2,36,34296,NULL,'{#VOLUMENAME}: Volume latency raw, write','clc93suux00004ciywh0nidxf',''),('clc93suuz00914ciy0l2n5rld',1,'Admin',1672319414,'192.168.64.1',2,36,34297,NULL,'{#VOLUMENAME}: Volume latency raw, total','clc93suux00004ciywh0nidxf',''),('clc93suuz00924ciyiyv64z5i',1,'Admin',1672319414,'192.168.64.1',2,36,34298,NULL,'{#VOLUMENAME}: Volume latency raw, read','clc93suux00004ciywh0nidxf',''),('clc93suuz00934ciysuydrg1j',1,'Admin',1672319414,'192.168.64.1',2,36,34299,NULL,'{#VOLUMENAME}: Volume latency raw, other','clc93suux00004ciywh0nidxf',''),('clc93suuz00944ciytzdjwc96',1,'Admin',1672319414,'192.168.64.1',2,36,34300,NULL,'{#VOLUMENAME}: Comment','clc93suux00004ciywh0nidxf',''),('clc93suuz00954ciyaycbdpxc',1,'Admin',1672319414,'192.168.64.1',2,36,34301,NULL,'{#VOLUMENAME}: Available size','clc93suux00004ciywh0nidxf',''),('clc93suuz00964ciyzj7pwojk',1,'Admin',1672319414,'192.168.64.1',2,36,34302,NULL,'{#VOLUMENAME}: Volume IOPS raw, write','clc93suux00004ciywh0nidxf',''),('clc93suuz00974ciyj26m7a3c',1,'Admin',1672319414,'192.168.64.1',2,36,34303,NULL,'{#VOLUMENAME}: Volume IOPS raw, total','clc93suux00004ciywh0nidxf',''),('clc93suuz00984ciypyzep3k7',1,'Admin',1672319414,'192.168.64.1',2,36,34304,NULL,'{#VOLUMENAME}: Volume IOPS raw, read','clc93suux00004ciywh0nidxf',''),('clc93suuz00994ciy0zkt38kq',1,'Admin',1672319414,'192.168.64.1',2,36,34305,NULL,'{#VOLUMENAME}: Volume IOPS raw, other','clc93suux00004ciywh0nidxf',''),('clc93suuz009a4ciycn2t95f7',1,'Admin',1672319414,'192.168.64.1',2,36,34306,NULL,'{#VOLUMENAME}: Volume IOPS, write rate','clc93suux00004ciywh0nidxf',''),('clc93suuz009b4ciygoo6i98s',1,'Admin',1672319414,'192.168.64.1',2,36,34307,NULL,'{#VOLUMENAME}: Volume IOPS, total rate','clc93suux00004ciywh0nidxf',''),('clc93suuz009c4ciy1z5awfj0',1,'Admin',1672319414,'192.168.64.1',2,36,34308,NULL,'{#VOLUMENAME}: Volume IOPS, read rate','clc93suux00004ciywh0nidxf',''),('clc93suuz009d4ciyj3a4fj1s',1,'Admin',1672319414,'192.168.64.1',2,36,34309,NULL,'{#VOLUMENAME}: Volume IOPS, other rate','clc93suux00004ciywh0nidxf',''),('clc93suuz009e4ciytwtuzrmv',1,'Admin',1672319414,'192.168.64.1',2,36,34310,NULL,'{#VOLUMENAME}: State','clc93suux00004ciywh0nidxf',''),('clc93suuz009f4ciycu9pye7d',1,'Admin',1672319414,'192.168.64.1',2,36,34311,NULL,'{#VOLUMENAME}: Used size','clc93suux00004ciywh0nidxf',''),('clc93suuz009g4ciyk8pz8smo',1,'Admin',1672319414,'192.168.64.1',2,36,34312,NULL,'{#VOLUMENAME}: Space size','clc93suux00004ciywh0nidxf',''),('clc93suuz009h4ciymw805ir4',1,'Admin',1672319414,'192.168.64.1',2,36,34313,NULL,'{#VOLUMENAME}: Type','clc93suux00004ciywh0nidxf',''),('clc93suuz009i4ciy6yi9pokb',1,'Admin',1672319414,'192.168.64.1',2,36,34331,NULL,'MSSQL Job \'{#JOBNAME}\': Last run date-time','clc93suux00004ciywh0nidxf',''),('clc93suuz009j4ciyu324oqch',1,'Admin',1672319414,'192.168.64.1',2,36,34332,NULL,'MSSQL Job \'{#JOBNAME}\': Last run status message','clc93suux00004ciywh0nidxf',''),('clc93suuz009k4ciy7zk9tbk1',1,'Admin',1672319414,'192.168.64.1',2,36,34333,NULL,'MSSQL Job \'{#JOBNAME}\': Next run date-time','clc93suux00004ciywh0nidxf',''),('clc93suuz009l4ciy53nskk1k',1,'Admin',1672319414,'192.168.64.1',2,36,34334,NULL,'MSSQL Job \'{#JOBNAME}\': Run status','clc93suux00004ciywh0nidxf',''),('clc93suuz009m4ciy10a5659l',1,'Admin',1672319414,'192.168.64.1',2,36,34335,NULL,'MSSQL Job \'{#JOBNAME}\': Run duration','clc93suux00004ciywh0nidxf',''),('clc93suuz009n4ciyrispvyeo',1,'Admin',1672319414,'192.168.64.1',2,36,35185,NULL,'Nginx: HTTP location zone [{#NAME}]: Discarded, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz009o4ciyiwngfh4s',1,'Admin',1672319414,'192.168.64.1',2,36,35186,NULL,'Nginx: HTTP location zone [{#NAME}]: Received, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz009p4ciy75iukrc1',1,'Admin',1672319414,'192.168.64.1',2,36,35187,NULL,'Nginx: HTTP location zone [{#NAME}]: Requests, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz009q4ciyawxkctiz',1,'Admin',1672319414,'192.168.64.1',2,36,35188,NULL,'Nginx: HTTP location zone [{#NAME}]: Responses 1xx, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz009r4ciyoieczztd',1,'Admin',1672319414,'192.168.64.1',2,36,35189,NULL,'Nginx: HTTP location zone [{#NAME}]: Responses 2xx, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz009s4ciy1r7o8glt',1,'Admin',1672319414,'192.168.64.1',2,36,35190,NULL,'Nginx: HTTP location zone [{#NAME}]: Responses 3xx, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz009t4ciy6jchwt0r',1,'Admin',1672319414,'192.168.64.1',2,36,35191,NULL,'Nginx: HTTP location zone [{#NAME}]: Responses 4xx, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz009u4ciywaos0wqs',1,'Admin',1672319414,'192.168.64.1',2,36,35192,NULL,'Nginx: HTTP location zone [{#NAME}]: Responses 5xx, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz009v4ciyk3fhhgyq',1,'Admin',1672319414,'192.168.64.1',2,36,35193,NULL,'Nginx: HTTP location zone [{#NAME}]: Responses total, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz009w4ciyy7e2gaq9',1,'Admin',1672319414,'192.168.64.1',2,36,35194,NULL,'Nginx: HTTP location zone [{#NAME}]: Sent, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz009x4ciy6w909yaq',1,'Admin',1672319414,'192.168.64.1',2,36,35195,NULL,'Nginx: HTTP server zone [{#NAME}]: Discarded, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz009y4ciyik36xwav',1,'Admin',1672319414,'192.168.64.1',2,36,35196,NULL,'Nginx: HTTP server zone [{#NAME}]: Processing','clc93suux00004ciywh0nidxf',''),('clc93suuz009z4ciykrjo4kfb',1,'Admin',1672319414,'192.168.64.1',2,36,35197,NULL,'Nginx: HTTP server zone [{#NAME}]: Received, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00a04ciylvehjdg9',1,'Admin',1672319414,'192.168.64.1',2,36,35198,NULL,'Nginx: HTTP server zone [{#NAME}]: Requests, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00a14ciyp8iw6sxb',1,'Admin',1672319414,'192.168.64.1',2,36,35199,NULL,'Nginx: HTTP server zone [{#NAME}]: Responses 1xx, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00a24ciyba4xidep',1,'Admin',1672319414,'192.168.64.1',2,36,35200,NULL,'Nginx: HTTP server zone [{#NAME}]: Responses 2xx, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00a34ciymjv8w4mo',1,'Admin',1672319414,'192.168.64.1',2,36,35201,NULL,'Nginx: HTTP server zone [{#NAME}]: Responses 3xx, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00a44ciyoehordtk',1,'Admin',1672319414,'192.168.64.1',2,36,35202,NULL,'Nginx: HTTP server zone [{#NAME}]: Responses 4xx, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00a54ciy4vzlzhfx',1,'Admin',1672319414,'192.168.64.1',2,36,35203,NULL,'Nginx: HTTP server zone [{#NAME}]: Responses 5xx, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00a64ciy2l3lb0je',1,'Admin',1672319414,'192.168.64.1',2,36,35204,NULL,'Nginx: HTTP server zone [{#NAME}]: Responses total, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00a74ciy0w8c6orh',1,'Admin',1672319414,'192.168.64.1',2,36,35205,NULL,'Nginx: HTTP server zone [{#NAME}]: Sent, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00a84ciy7rhhl8eq',1,'Admin',1672319414,'192.168.64.1',2,36,35206,NULL,'Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Active','clc93suux00004ciywh0nidxf',''),('clc93suuz00a94ciyga7nsy2a',1,'Admin',1672319414,'192.168.64.1',2,36,35207,NULL,'Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Responses 3xx, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00aa4ciyz1hfny8a',1,'Admin',1672319414,'192.168.64.1',2,36,35208,NULL,'Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: State','clc93suux00004ciywh0nidxf',''),('clc93suuz00ab4ciym7pta21z',1,'Admin',1672319414,'192.168.64.1',2,36,35209,NULL,'Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Sent, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00ac4ciytlftwpbe',1,'Admin',1672319414,'192.168.64.1',2,36,35210,NULL,'Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Response time','clc93suux00004ciywh0nidxf',''),('clc93suuz00ad4ciyoz3x23ad',1,'Admin',1672319414,'192.168.64.1',2,36,35211,NULL,'Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Responses total, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00ae4ciyptda8rsj',1,'Admin',1672319414,'192.168.64.1',2,36,35212,NULL,'Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Responses 5xx, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00af4ciy5x9vr7qw',1,'Admin',1672319414,'192.168.64.1',2,36,35213,NULL,'Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Responses 4xx, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00ag4ciy5zatuomz',1,'Admin',1672319414,'192.168.64.1',2,36,35214,NULL,'Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Responses 2xx, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00ah4ciyrzplg3q1',1,'Admin',1672319414,'192.168.64.1',2,36,35215,NULL,'Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Fails, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00ai4ciyeigmaivs',1,'Admin',1672319414,'192.168.64.1',2,36,35216,NULL,'Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Responses 1xx, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00aj4ciypya4kkm9',1,'Admin',1672319414,'192.168.64.1',2,36,35217,NULL,'Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Requests, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00ak4ciylbvblfmb',1,'Admin',1672319414,'192.168.64.1',2,36,35218,NULL,'Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Received, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00al4ciywl0jcpbs',1,'Admin',1672319414,'192.168.64.1',2,36,35219,NULL,'Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Health checks, unhealthy','clc93suux00004ciywh0nidxf',''),('clc93suuz00am4ciyer8dlrjp',1,'Admin',1672319414,'192.168.64.1',2,36,35220,NULL,'Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Health checks, fails','clc93suux00004ciywh0nidxf',''),('clc93suuz00an4ciy399j3twg',1,'Admin',1672319414,'192.168.64.1',2,36,35221,NULL,'Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Health checks, check','clc93suux00004ciywh0nidxf',''),('clc93suuz00ao4ciyq4ao43pf',1,'Admin',1672319414,'192.168.64.1',2,36,35222,NULL,'Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Header time','clc93suux00004ciywh0nidxf',''),('clc93suuz00ap4ciy8fr8vn6r',1,'Admin',1672319414,'192.168.64.1',2,36,35223,NULL,'Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Unavail','clc93suux00004ciywh0nidxf',''),('clc93suuz00aq4ciy1p1tl45s',1,'Admin',1672319414,'192.168.64.1',2,36,35224,NULL,'Nginx: HTTP upstream [{#NAME}]: Keepalive','clc93suux00004ciywh0nidxf',''),('clc93suuz00ar4ciynlb180zn',1,'Admin',1672319414,'192.168.64.1',2,36,35225,NULL,'Nginx: HTTP upstream [{#NAME}]: Zombies','clc93suux00004ciywh0nidxf',''),('clc93suuz00as4ciyghx432p2',1,'Admin',1672319414,'192.168.64.1',2,36,35226,NULL,'Nginx: HTTP upstream [{#NAME}]: Zone','clc93suux00004ciywh0nidxf',''),('clc93suuz00at4ciydx4uj25m',1,'Admin',1672319414,'192.168.64.1',2,36,35227,NULL,'Nginx: Resolver [{#NAME}]: Requests addr, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00au4ciy2mup2g67',1,'Admin',1672319414,'192.168.64.1',2,36,35228,NULL,'Nginx: Resolver [{#NAME}]: Requests name, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00av4ciy6x0ftawr',1,'Admin',1672319414,'192.168.64.1',2,36,35229,NULL,'Nginx: Resolver [{#NAME}]: Requests srv, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00aw4ciyzdijaioh',1,'Admin',1672319414,'192.168.64.1',2,36,35230,NULL,'Nginx: Resolver [{#NAME}]: Responses formerr, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00ax4ciyy8yn7cy8',1,'Admin',1672319414,'192.168.64.1',2,36,35231,NULL,'Nginx: Resolver [{#NAME}]: Responses noerror, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00ay4ciyki8nn3wo',1,'Admin',1672319414,'192.168.64.1',2,36,35232,NULL,'Nginx: Resolver [{#NAME}]: Responses notimp, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00az4ciy1rh6rpnd',1,'Admin',1672319414,'192.168.64.1',2,36,35233,NULL,'Nginx: Resolver [{#NAME}]: Responses nxdomain, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00b04ciybu9mcsdx',1,'Admin',1672319414,'192.168.64.1',2,36,35234,NULL,'Nginx: Resolver [{#NAME}]: Responses refused, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00b14ciy19u8ggzg',1,'Admin',1672319414,'192.168.64.1',2,36,35235,NULL,'Nginx: Resolver [{#NAME}]: Responses servfail, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00b24ciysnqh31it',1,'Admin',1672319414,'192.168.64.1',2,36,35236,NULL,'Nginx: Resolver [{#NAME}]: Responses timedout, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00b34ciya782inmf',1,'Admin',1672319414,'192.168.64.1',2,36,35237,NULL,'Nginx: Resolver [{#NAME}]: Responses unknown, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00b44ciyialhvx7p',1,'Admin',1672319414,'192.168.64.1',2,36,35238,NULL,'Nginx: Stream server zone [{#NAME}]: Connections, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00b54ciy3h47hnxe',1,'Admin',1672319414,'192.168.64.1',2,36,35239,NULL,'Nginx: Stream server zone [{#NAME}]: Discarded, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00b64ciy869fv58s',1,'Admin',1672319414,'192.168.64.1',2,36,35240,NULL,'Nginx: Stream server zone [{#NAME}]: Processing','clc93suux00004ciywh0nidxf',''),('clc93suuz00b74ciy6o7yrcyt',1,'Admin',1672319414,'192.168.64.1',2,36,35241,NULL,'Nginx: Stream server zone [{#NAME}]: Received, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00b84ciyev0lfum0',1,'Admin',1672319414,'192.168.64.1',2,36,35242,NULL,'Nginx: Stream server zone [{#NAME}]: Sent, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00b94ciyf3b6y8gf',1,'Admin',1672319414,'192.168.64.1',2,36,35243,NULL,'Nginx: Stream server zone [{#NAME}]: Sessions 2xx, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00ba4ciy09rls9or',1,'Admin',1672319414,'192.168.64.1',2,36,35244,NULL,'Nginx: Stream server zone [{#NAME}]: Sessions 4xx, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00bb4ciyvfidd9sk',1,'Admin',1672319414,'192.168.64.1',2,36,35245,NULL,'Nginx: Stream server zone [{#NAME}]: Sessions 5xx, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00bc4ciyc8mwu771',1,'Admin',1672319414,'192.168.64.1',2,36,35246,NULL,'Nginx: Stream server zone [{#NAME}]: Sessions total, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00bd4ciykcaiarxr',1,'Admin',1672319414,'192.168.64.1',2,36,35247,NULL,'Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Active','clc93suux00004ciywh0nidxf',''),('clc93suuz00be4ciystp0kpfo',1,'Admin',1672319414,'192.168.64.1',2,36,35248,NULL,'Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Connections','clc93suux00004ciywh0nidxf',''),('clc93suuz00bf4ciym25q9frb',1,'Admin',1672319414,'192.168.64.1',2,36,35249,NULL,'Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Connect time','clc93suux00004ciywh0nidxf',''),('clc93suuz00bg4ciyzfzzi1ye',1,'Admin',1672319414,'192.168.64.1',2,36,35250,NULL,'Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Fails, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00bh4ciye20slc1c',1,'Admin',1672319414,'192.168.64.1',2,36,35251,NULL,'Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: First byte time','clc93suux00004ciywh0nidxf',''),('clc93suuz00bi4ciyr1spmg03',1,'Admin',1672319414,'192.168.64.1',2,36,35252,NULL,'Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Health checks, check','clc93suux00004ciywh0nidxf',''),('clc93suuz00bj4ciyo0n0a9dk',1,'Admin',1672319414,'192.168.64.1',2,36,35253,NULL,'Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Health checks, fails','clc93suux00004ciywh0nidxf',''),('clc93suuz00bk4ciy5dpr8ujp',1,'Admin',1672319414,'192.168.64.1',2,36,35254,NULL,'Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Health checks, unhealthy','clc93suux00004ciywh0nidxf',''),('clc93suuz00bl4ciy0rjwc8ir',1,'Admin',1672319414,'192.168.64.1',2,36,35255,NULL,'Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Received, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00bm4ciyjanhxj8y',1,'Admin',1672319414,'192.168.64.1',2,36,35256,NULL,'Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Response time','clc93suux00004ciywh0nidxf',''),('clc93suuz00bn4ciy852ybrjt',1,'Admin',1672319414,'192.168.64.1',2,36,35257,NULL,'Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Sent, rate','clc93suux00004ciywh0nidxf',''),('clc93suuz00bo4ciyps9v2icn',1,'Admin',1672319414,'192.168.64.1',2,36,35258,NULL,'Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: State','clc93suux00004ciywh0nidxf',''),('clc93suuz00bp4ciysvsumcv6',1,'Admin',1672319414,'192.168.64.1',2,36,35259,NULL,'Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Unavail','clc93suux00004ciywh0nidxf',''),('clc93suuz00bq4ciy8qmm2tk0',1,'Admin',1672319414,'192.168.64.1',2,36,35260,NULL,'Nginx: Stream upstream [{#NAME}]: Zombies','clc93suux00004ciywh0nidxf',''),('clc93suuz00br4ciyfvxqcvqy',1,'Admin',1672319414,'192.168.64.1',2,36,35261,NULL,'Nginx: Stream upstream [{#NAME}]: Zone','clc93suux00004ciywh0nidxf',''),('clc93suuz00bs4ciysagg6sxd',1,'Admin',1672319414,'192.168.64.1',2,36,38589,NULL,'#{#SNMPINDEX}: CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00bt4ciytcy4sbm7',1,'Admin',1672319414,'192.168.64.1',2,36,38590,NULL,'CPU: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00bu4ciyro5923g5',1,'Admin',1672319414,'192.168.64.1',2,36,38591,NULL,'Device: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00bv4ciycvrowx5q',1,'Admin',1672319414,'192.168.64.1',2,36,38592,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93suux00004ciywh0nidxf',''),('clc93suuz00bw4ciyqzzpqndk',1,'Admin',1672319414,'192.168.64.1',2,36,38593,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93suux00004ciywh0nidxf',''),('clc93suuz00bx4ciyq1c5af6i',1,'Admin',1672319414,'192.168.64.1',2,36,38594,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93suux00004ciywh0nidxf',''),('clc93suuz00by4ciyrbvuki6t',1,'Admin',1672319414,'192.168.64.1',2,36,38595,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93suux00004ciywh0nidxf',''),('clc93suuz00bz4ciyhvd4y7c7',1,'Admin',1672319414,'192.168.64.1',2,36,38596,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00c04ciyyq8bmg17',1,'Admin',1672319414,'192.168.64.1',2,36,38597,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93suux00004ciywh0nidxf',''),('clc93suuz00c14ciy3pihkic8',1,'Admin',1672319414,'192.168.64.1',2,36,38598,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93suux00004ciywh0nidxf',''),('clc93suuz00c24ciy9k6yr0o5',1,'Admin',1672319414,'192.168.64.1',2,36,38599,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93suux00004ciywh0nidxf',''),('clc93suuz00c34ciyqxy4bd8d',1,'Admin',1672319414,'192.168.64.1',2,36,38600,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00c44ciyxgtedr4g',1,'Admin',1672319414,'192.168.64.1',2,36,38601,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00c54ciy7haqdfll',1,'Admin',1672319414,'192.168.64.1',2,36,38602,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93suux00004ciywh0nidxf',''),('clc93suuz00c64ciy1j513oxi',1,'Admin',1672319414,'192.168.64.1',2,36,38603,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00c74ciyvhvbrlae',1,'Admin',1672319414,'192.168.64.1',2,36,38604,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93suux00004ciywh0nidxf',''),('clc93suuz00c84ciylyg7sa8u',1,'Admin',1672319414,'192.168.64.1',2,36,38605,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00c94ciybx4yj7mb',1,'Admin',1672319414,'192.168.64.1',2,36,38606,NULL,'Disk-{#SNMPINDEX}: Total space','clc93suux00004ciywh0nidxf',''),('clc93suuz00ca4ciy6chidb98',1,'Admin',1672319414,'192.168.64.1',2,36,38607,NULL,'Disk-{#SNMPINDEX}: Used space','clc93suux00004ciywh0nidxf',''),('clc93suuz00cb4ciyp7y4ym5e',1,'Admin',1672319414,'192.168.64.1',2,36,38643,NULL,'#{#SNMPINDEX}: CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00cc4ciytfc7xu38',1,'Admin',1672319414,'192.168.64.1',2,36,38644,NULL,'CPU: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00cd4ciydafd8f9j',1,'Admin',1672319414,'192.168.64.1',2,36,38645,NULL,'Device: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00ce4ciycbx23ybs',1,'Admin',1672319414,'192.168.64.1',2,36,38646,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93suux00004ciywh0nidxf',''),('clc93suuz00cf4ciyqkbc2o7k',1,'Admin',1672319414,'192.168.64.1',2,36,38647,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93suux00004ciywh0nidxf',''),('clc93suuz00cg4ciyd4clkihi',1,'Admin',1672319414,'192.168.64.1',2,36,38648,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93suux00004ciywh0nidxf',''),('clc93suuz00ch4ciyks3jecpl',1,'Admin',1672319414,'192.168.64.1',2,36,38649,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93suux00004ciywh0nidxf',''),('clc93suuz00ci4ciyq6pqjoon',1,'Admin',1672319414,'192.168.64.1',2,36,38650,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00cj4ciyrhawgvd2',1,'Admin',1672319414,'192.168.64.1',2,36,38651,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93suux00004ciywh0nidxf',''),('clc93suuz00ck4ciy148ylj36',1,'Admin',1672319414,'192.168.64.1',2,36,38652,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93suux00004ciywh0nidxf',''),('clc93suuz00cl4ciykdlnnmef',1,'Admin',1672319414,'192.168.64.1',2,36,38653,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93suux00004ciywh0nidxf',''),('clc93suuz00cm4ciyu9acwwdn',1,'Admin',1672319414,'192.168.64.1',2,36,38654,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00cn4ciyk3i9dtu0',1,'Admin',1672319414,'192.168.64.1',2,36,38655,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00co4ciyi72yxx0p',1,'Admin',1672319414,'192.168.64.1',2,36,38656,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93suux00004ciywh0nidxf',''),('clc93suuz00cp4ciyfh6vj5lj',1,'Admin',1672319414,'192.168.64.1',2,36,38657,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00cq4ciyheus0zq2',1,'Admin',1672319414,'192.168.64.1',2,36,38658,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93suux00004ciywh0nidxf',''),('clc93suuz00cr4ciy6cfswx9p',1,'Admin',1672319414,'192.168.64.1',2,36,38659,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00cs4ciyclr4cor4',1,'Admin',1672319414,'192.168.64.1',2,36,38660,NULL,'Disk-{#SNMPINDEX}: Total space','clc93suux00004ciywh0nidxf',''),('clc93suuz00ct4ciyk606txt4',1,'Admin',1672319414,'192.168.64.1',2,36,38661,NULL,'Disk-{#SNMPINDEX}: Used space','clc93suux00004ciywh0nidxf',''),('clc93suuz00cu4ciyzck7qptf',1,'Admin',1672319414,'192.168.64.1',2,36,38697,NULL,'#{#SNMPINDEX}: CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00cv4ciyepr2mud9',1,'Admin',1672319414,'192.168.64.1',2,36,38698,NULL,'CPU: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00cw4ciyi1mfjw93',1,'Admin',1672319414,'192.168.64.1',2,36,38699,NULL,'Device: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00cx4ciy8u7kxgjg',1,'Admin',1672319414,'192.168.64.1',2,36,38700,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93suux00004ciywh0nidxf',''),('clc93suuz00cy4ciy2afm6qzx',1,'Admin',1672319414,'192.168.64.1',2,36,38701,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93suux00004ciywh0nidxf',''),('clc93suuz00cz4ciyx0fhznof',1,'Admin',1672319414,'192.168.64.1',2,36,38702,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93suux00004ciywh0nidxf',''),('clc93suuz00d04ciyuu05tydy',1,'Admin',1672319414,'192.168.64.1',2,36,38703,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93suux00004ciywh0nidxf',''),('clc93suuz00d14ciy98c5iovp',1,'Admin',1672319414,'192.168.64.1',2,36,38704,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00d24ciyifyfbnog',1,'Admin',1672319414,'192.168.64.1',2,36,38705,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93suux00004ciywh0nidxf',''),('clc93suuz00d34ciyzkyczrcz',1,'Admin',1672319414,'192.168.64.1',2,36,38706,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93suux00004ciywh0nidxf',''),('clc93suuz00d44ciyj466vrpc',1,'Admin',1672319414,'192.168.64.1',2,36,38707,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93suux00004ciywh0nidxf',''),('clc93suuz00d54ciyh6fp7i9f',1,'Admin',1672319414,'192.168.64.1',2,36,38708,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00d64ciyi8anxcsy',1,'Admin',1672319414,'192.168.64.1',2,36,38709,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00d74ciypa9s3a40',1,'Admin',1672319414,'192.168.64.1',2,36,38710,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93suux00004ciywh0nidxf',''),('clc93suuz00d84ciym2cpqmjo',1,'Admin',1672319414,'192.168.64.1',2,36,38711,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00d94ciy9azy3wqh',1,'Admin',1672319414,'192.168.64.1',2,36,38712,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93suux00004ciywh0nidxf',''),('clc93suuz00da4ciyc2f1rz11',1,'Admin',1672319414,'192.168.64.1',2,36,38713,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00db4ciyn6ho2tql',1,'Admin',1672319414,'192.168.64.1',2,36,38714,NULL,'Disk-{#SNMPINDEX}: Total space','clc93suux00004ciywh0nidxf',''),('clc93suuz00dc4ciyr5zcy2it',1,'Admin',1672319414,'192.168.64.1',2,36,38715,NULL,'Disk-{#SNMPINDEX}: Used space','clc93suux00004ciywh0nidxf',''),('clc93suuz00dd4ciywmfu5er3',1,'Admin',1672319414,'192.168.64.1',2,36,38751,NULL,'#{#SNMPINDEX}: CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00de4ciy45n85t5k',1,'Admin',1672319414,'192.168.64.1',2,36,38752,NULL,'CPU: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00df4ciy34dfmjnr',1,'Admin',1672319414,'192.168.64.1',2,36,38753,NULL,'Device: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00dg4ciysmflcdcg',1,'Admin',1672319414,'192.168.64.1',2,36,38754,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93suux00004ciywh0nidxf',''),('clc93suuz00dh4ciyefvroiza',1,'Admin',1672319414,'192.168.64.1',2,36,38755,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93suux00004ciywh0nidxf',''),('clc93suuz00di4ciyjwdvjxks',1,'Admin',1672319414,'192.168.64.1',2,36,38756,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93suux00004ciywh0nidxf',''),('clc93suuz00dj4ciygkfgtup2',1,'Admin',1672319414,'192.168.64.1',2,36,38757,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93suux00004ciywh0nidxf',''),('clc93suuz00dk4ciyc5xldbey',1,'Admin',1672319414,'192.168.64.1',2,36,38758,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00dl4ciywas5l8tj',1,'Admin',1672319414,'192.168.64.1',2,36,38759,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93suux00004ciywh0nidxf',''),('clc93suuz00dm4ciytmlyqvhl',1,'Admin',1672319414,'192.168.64.1',2,36,38760,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93suux00004ciywh0nidxf',''),('clc93suuz00dn4ciya2asill1',1,'Admin',1672319414,'192.168.64.1',2,36,38761,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93suux00004ciywh0nidxf',''),('clc93suuz00do4ciy2wkjdjnn',1,'Admin',1672319414,'192.168.64.1',2,36,38762,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00dp4ciyhi3ssd3f',1,'Admin',1672319414,'192.168.64.1',2,36,38763,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00dq4ciyg5wwb31l',1,'Admin',1672319414,'192.168.64.1',2,36,38764,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93suux00004ciywh0nidxf',''),('clc93suuz00dr4ciy6ebmqqtm',1,'Admin',1672319414,'192.168.64.1',2,36,38765,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00ds4ciy1jvei1my',1,'Admin',1672319414,'192.168.64.1',2,36,38766,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93suux00004ciywh0nidxf',''),('clc93suuz00dt4ciy3pimnh9k',1,'Admin',1672319414,'192.168.64.1',2,36,38767,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00du4ciyobsh76x9',1,'Admin',1672319414,'192.168.64.1',2,36,38768,NULL,'Disk-{#SNMPINDEX}: Total space','clc93suux00004ciywh0nidxf',''),('clc93suuz00dv4ciyuhiq86fy',1,'Admin',1672319414,'192.168.64.1',2,36,38769,NULL,'Disk-{#SNMPINDEX}: Used space','clc93suux00004ciywh0nidxf',''),('clc93suuz00dw4ciygtu6i8rp',1,'Admin',1672319414,'192.168.64.1',2,36,38805,NULL,'#{#SNMPINDEX}: CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00dx4ciy28lnw06a',1,'Admin',1672319414,'192.168.64.1',2,36,38806,NULL,'CPU: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00dy4ciyjo5ebg7s',1,'Admin',1672319414,'192.168.64.1',2,36,38807,NULL,'Device: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00dz4ciyt2qeq9i4',1,'Admin',1672319414,'192.168.64.1',2,36,38808,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93suux00004ciywh0nidxf',''),('clc93suuz00e04ciyxa1x242x',1,'Admin',1672319414,'192.168.64.1',2,36,38809,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93suux00004ciywh0nidxf',''),('clc93suuz00e14ciypkc680sl',1,'Admin',1672319414,'192.168.64.1',2,36,38810,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93suux00004ciywh0nidxf',''),('clc93suuz00e24ciybq6ab0cz',1,'Admin',1672319414,'192.168.64.1',2,36,38811,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93suux00004ciywh0nidxf',''),('clc93suuz00e34ciy53xcwvwr',1,'Admin',1672319414,'192.168.64.1',2,36,38812,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00e44ciyej34i9v7',1,'Admin',1672319414,'192.168.64.1',2,36,38813,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93suux00004ciywh0nidxf',''),('clc93suuz00e54ciyx7c3c6j2',1,'Admin',1672319414,'192.168.64.1',2,36,38814,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93suux00004ciywh0nidxf',''),('clc93suuz00e64ciy92vg196q',1,'Admin',1672319414,'192.168.64.1',2,36,38815,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93suux00004ciywh0nidxf',''),('clc93suuz00e74ciygbpakkpl',1,'Admin',1672319414,'192.168.64.1',2,36,38816,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00e84ciy0ui81bym',1,'Admin',1672319414,'192.168.64.1',2,36,38817,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00e94ciyej944iap',1,'Admin',1672319414,'192.168.64.1',2,36,38818,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93suux00004ciywh0nidxf',''),('clc93suuz00ea4ciybqweogp9',1,'Admin',1672319414,'192.168.64.1',2,36,38819,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00eb4ciy1vvs9o87',1,'Admin',1672319414,'192.168.64.1',2,36,38820,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93suux00004ciywh0nidxf',''),('clc93suuz00ec4ciypngoikuj',1,'Admin',1672319414,'192.168.64.1',2,36,38821,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00ed4ciy2t4fp1rz',1,'Admin',1672319414,'192.168.64.1',2,36,38822,NULL,'Disk-{#SNMPINDEX}: Total space','clc93suux00004ciywh0nidxf',''),('clc93suuz00ee4ciywflow7uf',1,'Admin',1672319414,'192.168.64.1',2,36,38823,NULL,'Disk-{#SNMPINDEX}: Used space','clc93suux00004ciywh0nidxf',''),('clc93suuz00ef4ciytp6copjz',1,'Admin',1672319414,'192.168.64.1',2,36,38859,NULL,'#{#SNMPINDEX}: CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00eg4ciyvysoj5dh',1,'Admin',1672319414,'192.168.64.1',2,36,38860,NULL,'CPU: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00eh4ciy2ehthpv2',1,'Admin',1672319414,'192.168.64.1',2,36,38861,NULL,'Device: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00ei4ciy6l7x2a2i',1,'Admin',1672319414,'192.168.64.1',2,36,38862,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93suux00004ciywh0nidxf',''),('clc93suuz00ej4ciyjk8t636l',1,'Admin',1672319414,'192.168.64.1',2,36,38863,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93suux00004ciywh0nidxf',''),('clc93suuz00ek4ciyojyqvcew',1,'Admin',1672319414,'192.168.64.1',2,36,38864,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93suux00004ciywh0nidxf',''),('clc93suuz00el4ciywt2smq2i',1,'Admin',1672319414,'192.168.64.1',2,36,38865,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93suux00004ciywh0nidxf',''),('clc93suuz00em4ciydl64hzbb',1,'Admin',1672319414,'192.168.64.1',2,36,38866,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00en4ciy23uue4sy',1,'Admin',1672319414,'192.168.64.1',2,36,38867,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93suux00004ciywh0nidxf',''),('clc93suuz00eo4ciy0ogkwie4',1,'Admin',1672319414,'192.168.64.1',2,36,38868,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93suux00004ciywh0nidxf',''),('clc93suuz00ep4ciy2etv9t72',1,'Admin',1672319414,'192.168.64.1',2,36,38869,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93suux00004ciywh0nidxf',''),('clc93suuz00eq4ciyq814cld8',1,'Admin',1672319414,'192.168.64.1',2,36,38870,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00er4ciycx74ol80',1,'Admin',1672319414,'192.168.64.1',2,36,38871,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00es4ciy0ar54h25',1,'Admin',1672319414,'192.168.64.1',2,36,38872,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93suux00004ciywh0nidxf',''),('clc93suuz00et4ciy1kek029z',1,'Admin',1672319414,'192.168.64.1',2,36,38873,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00eu4ciyony1f4wx',1,'Admin',1672319414,'192.168.64.1',2,36,38874,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93suux00004ciywh0nidxf',''),('clc93suuz00ev4ciyyu27togn',1,'Admin',1672319414,'192.168.64.1',2,36,38875,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00ew4ciy5ebpmd1z',1,'Admin',1672319414,'192.168.64.1',2,36,38876,NULL,'Disk-{#SNMPINDEX}: Total space','clc93suux00004ciywh0nidxf',''),('clc93suuz00ex4ciyj7fev9xg',1,'Admin',1672319414,'192.168.64.1',2,36,38877,NULL,'Disk-{#SNMPINDEX}: Used space','clc93suux00004ciywh0nidxf',''),('clc93suuz00ey4ciyrderddn2',1,'Admin',1672319414,'192.168.64.1',2,36,38913,NULL,'#{#SNMPINDEX}: CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00ez4ciy79ngprgp',1,'Admin',1672319414,'192.168.64.1',2,36,38914,NULL,'CPU: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00f04ciy3mbpxfpn',1,'Admin',1672319414,'192.168.64.1',2,36,38915,NULL,'Device: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00f14ciyz7l87xcp',1,'Admin',1672319414,'192.168.64.1',2,36,38916,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93suux00004ciywh0nidxf',''),('clc93suuz00f24ciybzgqdq7y',1,'Admin',1672319414,'192.168.64.1',2,36,38917,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93suux00004ciywh0nidxf',''),('clc93suuz00f34ciy63hyolg3',1,'Admin',1672319414,'192.168.64.1',2,36,38918,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93suux00004ciywh0nidxf',''),('clc93suuz00f44ciy5ffi8fdy',1,'Admin',1672319414,'192.168.64.1',2,36,38919,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93suux00004ciywh0nidxf',''),('clc93suuz00f54ciytatlmaby',1,'Admin',1672319414,'192.168.64.1',2,36,38920,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00f64ciyqzdk8mnr',1,'Admin',1672319414,'192.168.64.1',2,36,38921,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93suux00004ciywh0nidxf',''),('clc93suuz00f74ciysnuj9jwv',1,'Admin',1672319414,'192.168.64.1',2,36,38922,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93suux00004ciywh0nidxf',''),('clc93suuz00f84ciyys78rhf4',1,'Admin',1672319414,'192.168.64.1',2,36,38923,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93suux00004ciywh0nidxf',''),('clc93suuz00f94ciyf35esyzb',1,'Admin',1672319414,'192.168.64.1',2,36,38924,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00fa4ciyq0ujnab4',1,'Admin',1672319414,'192.168.64.1',2,36,38925,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00fb4ciyfjriwo0j',1,'Admin',1672319414,'192.168.64.1',2,36,38926,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93suux00004ciywh0nidxf',''),('clc93suuz00fc4ciy5h6t5srb',1,'Admin',1672319414,'192.168.64.1',2,36,38927,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00fd4ciyhgqknlbu',1,'Admin',1672319414,'192.168.64.1',2,36,38928,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93suux00004ciywh0nidxf',''),('clc93suuz00fe4ciyrb07gpu9',1,'Admin',1672319414,'192.168.64.1',2,36,38929,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00ff4ciy53xd28u6',1,'Admin',1672319414,'192.168.64.1',2,36,38930,NULL,'Disk-{#SNMPINDEX}: Total space','clc93suux00004ciywh0nidxf',''),('clc93suuz00fg4ciy9ravwizj',1,'Admin',1672319414,'192.168.64.1',2,36,38931,NULL,'Disk-{#SNMPINDEX}: Used space','clc93suux00004ciywh0nidxf',''),('clc93suuz00fh4ciytpkjdc94',1,'Admin',1672319414,'192.168.64.1',2,36,38967,NULL,'#{#SNMPINDEX}: CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00fi4ciy94tkm25i',1,'Admin',1672319414,'192.168.64.1',2,36,38968,NULL,'CPU: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00fj4ciyqzop59hx',1,'Admin',1672319414,'192.168.64.1',2,36,38969,NULL,'Device: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00fk4ciy5fdbykyx',1,'Admin',1672319414,'192.168.64.1',2,36,38970,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93suux00004ciywh0nidxf',''),('clc93suuz00fl4ciyggo4c5rc',1,'Admin',1672319414,'192.168.64.1',2,36,38971,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93suux00004ciywh0nidxf',''),('clc93suuz00fm4ciyrepd5euk',1,'Admin',1672319414,'192.168.64.1',2,36,38972,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93suux00004ciywh0nidxf',''),('clc93suuz00fn4ciyij8r87kg',1,'Admin',1672319414,'192.168.64.1',2,36,38973,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93suux00004ciywh0nidxf',''),('clc93suuz00fo4ciymdmsmxup',1,'Admin',1672319414,'192.168.64.1',2,36,38974,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00fp4ciyywjh225m',1,'Admin',1672319414,'192.168.64.1',2,36,38975,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93suux00004ciywh0nidxf',''),('clc93suuz00fq4ciyn6kgpejf',1,'Admin',1672319414,'192.168.64.1',2,36,38976,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93suux00004ciywh0nidxf',''),('clc93suuz00fr4ciy5ofg8h6m',1,'Admin',1672319414,'192.168.64.1',2,36,38977,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93suux00004ciywh0nidxf',''),('clc93suuz00fs4ciy8n9azhsj',1,'Admin',1672319414,'192.168.64.1',2,36,38978,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00ft4ciyen2ncjfa',1,'Admin',1672319414,'192.168.64.1',2,36,38979,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00fu4ciy4as1ytbc',1,'Admin',1672319414,'192.168.64.1',2,36,38980,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93suux00004ciywh0nidxf',''),('clc93suuz00fv4ciya63w289g',1,'Admin',1672319414,'192.168.64.1',2,36,38981,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00fw4ciyzyrma9i6',1,'Admin',1672319414,'192.168.64.1',2,36,38982,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93suux00004ciywh0nidxf',''),('clc93suuz00fx4ciyxhzd52m2',1,'Admin',1672319414,'192.168.64.1',2,36,38983,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00fy4ciyfxpsl2gr',1,'Admin',1672319414,'192.168.64.1',2,36,38984,NULL,'Disk-{#SNMPINDEX}: Total space','clc93suux00004ciywh0nidxf',''),('clc93suuz00fz4ciyhkxa5oua',1,'Admin',1672319414,'192.168.64.1',2,36,38985,NULL,'Disk-{#SNMPINDEX}: Used space','clc93suux00004ciywh0nidxf',''),('clc93suuz00g04ciyqobktr2d',1,'Admin',1672319414,'192.168.64.1',2,36,39021,NULL,'#{#SNMPINDEX}: CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00g14ciyos63pk3t',1,'Admin',1672319414,'192.168.64.1',2,36,39022,NULL,'CPU: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00g24ciyjxjrgij0',1,'Admin',1672319414,'192.168.64.1',2,36,39023,NULL,'Device: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00g34ciyesob6lu9',1,'Admin',1672319414,'192.168.64.1',2,36,39024,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93suux00004ciywh0nidxf',''),('clc93suuz00g44ciyny0lnhni',1,'Admin',1672319414,'192.168.64.1',2,36,39025,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93suux00004ciywh0nidxf',''),('clc93suuz00g54ciyuwflkpfe',1,'Admin',1672319414,'192.168.64.1',2,36,39026,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93suux00004ciywh0nidxf',''),('clc93suuz00g64ciyhuwrlwti',1,'Admin',1672319414,'192.168.64.1',2,36,39027,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93suux00004ciywh0nidxf',''),('clc93suuz00g74ciynpu2i1ui',1,'Admin',1672319414,'192.168.64.1',2,36,39028,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00g84ciykkc3ouvd',1,'Admin',1672319414,'192.168.64.1',2,36,39029,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93suux00004ciywh0nidxf',''),('clc93suuz00g94ciyeumt6n45',1,'Admin',1672319414,'192.168.64.1',2,36,39030,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93suux00004ciywh0nidxf',''),('clc93suuz00ga4ciy8c3jovfb',1,'Admin',1672319414,'192.168.64.1',2,36,39031,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93suux00004ciywh0nidxf',''),('clc93suuz00gb4ciyi59i1ue1',1,'Admin',1672319414,'192.168.64.1',2,36,39032,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00gc4ciyf7av6zfb',1,'Admin',1672319414,'192.168.64.1',2,36,39033,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00gd4ciyhutuw8v8',1,'Admin',1672319414,'192.168.64.1',2,36,39034,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93suux00004ciywh0nidxf',''),('clc93suuz00ge4ciy85chwgg2',1,'Admin',1672319414,'192.168.64.1',2,36,39035,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00gf4ciymmvu614o',1,'Admin',1672319414,'192.168.64.1',2,36,39036,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93suux00004ciywh0nidxf',''),('clc93suuz00gg4ciyrk75ulxl',1,'Admin',1672319414,'192.168.64.1',2,36,39037,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00gh4ciycnhkbfg3',1,'Admin',1672319414,'192.168.64.1',2,36,39038,NULL,'Disk-{#SNMPINDEX}: Total space','clc93suux00004ciywh0nidxf',''),('clc93suuz00gi4ciy2i8ow3d5',1,'Admin',1672319414,'192.168.64.1',2,36,39039,NULL,'Disk-{#SNMPINDEX}: Used space','clc93suux00004ciywh0nidxf',''),('clc93suuz00gj4ciyd19r2rl4',1,'Admin',1672319414,'192.168.64.1',2,36,39075,NULL,'#{#SNMPINDEX}: CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00gk4ciykmzbwud8',1,'Admin',1672319414,'192.168.64.1',2,36,39076,NULL,'CPU: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00gl4ciy6ebw0bqa',1,'Admin',1672319414,'192.168.64.1',2,36,39077,NULL,'Device: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00gm4ciyxf255it5',1,'Admin',1672319414,'192.168.64.1',2,36,39078,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93suux00004ciywh0nidxf',''),('clc93suuz00gn4ciye5zigzbq',1,'Admin',1672319414,'192.168.64.1',2,36,39079,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93suux00004ciywh0nidxf',''),('clc93suuz00go4ciya0h80mva',1,'Admin',1672319414,'192.168.64.1',2,36,39080,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93suux00004ciywh0nidxf',''),('clc93suuz00gp4ciy2ky7eyon',1,'Admin',1672319414,'192.168.64.1',2,36,39081,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93suux00004ciywh0nidxf',''),('clc93suuz00gq4ciy7ehvoycn',1,'Admin',1672319414,'192.168.64.1',2,36,39082,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00gr4ciyro5dzski',1,'Admin',1672319414,'192.168.64.1',2,36,39083,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93suux00004ciywh0nidxf',''),('clc93suuz00gs4ciyd5ksxfjf',1,'Admin',1672319414,'192.168.64.1',2,36,39084,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93suux00004ciywh0nidxf',''),('clc93suuz00gt4ciyilu2w916',1,'Admin',1672319414,'192.168.64.1',2,36,39085,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93suux00004ciywh0nidxf',''),('clc93suuz00gu4ciyk177nl4p',1,'Admin',1672319414,'192.168.64.1',2,36,39086,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00gv4ciykpg123gn',1,'Admin',1672319414,'192.168.64.1',2,36,39087,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00gw4ciy18ua2l7o',1,'Admin',1672319414,'192.168.64.1',2,36,39088,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93suux00004ciywh0nidxf',''),('clc93suuz00gx4ciy0wluzc5c',1,'Admin',1672319414,'192.168.64.1',2,36,39089,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00gy4ciy8djjpchg',1,'Admin',1672319414,'192.168.64.1',2,36,39090,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93suux00004ciywh0nidxf',''),('clc93suuz00gz4ciyaqmhhjl8',1,'Admin',1672319414,'192.168.64.1',2,36,39091,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00h04ciyc9to5yuk',1,'Admin',1672319414,'192.168.64.1',2,36,39092,NULL,'Disk-{#SNMPINDEX}: Total space','clc93suux00004ciywh0nidxf',''),('clc93suuz00h14ciyoi1tzyq9',1,'Admin',1672319414,'192.168.64.1',2,36,39093,NULL,'Disk-{#SNMPINDEX}: Used space','clc93suux00004ciywh0nidxf',''),('clc93suuz00h24ciy5tlhf3di',1,'Admin',1672319414,'192.168.64.1',2,36,39129,NULL,'#{#SNMPINDEX}: CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00h34ciy9fer4y8p',1,'Admin',1672319414,'192.168.64.1',2,36,39130,NULL,'CPU: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00h44ciy35yk523u',1,'Admin',1672319414,'192.168.64.1',2,36,39131,NULL,'Device: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00h54ciyhvlesvf3',1,'Admin',1672319414,'192.168.64.1',2,36,39132,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93suux00004ciywh0nidxf',''),('clc93suuz00h64ciyapez71l4',1,'Admin',1672319414,'192.168.64.1',2,36,39133,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93suux00004ciywh0nidxf',''),('clc93suuz00h74ciyz1dk8d4f',1,'Admin',1672319414,'192.168.64.1',2,36,39134,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93suux00004ciywh0nidxf',''),('clc93suuz00h84ciyxcjr1x8o',1,'Admin',1672319414,'192.168.64.1',2,36,39135,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93suux00004ciywh0nidxf',''),('clc93suuz00h94ciy8ipo1zj5',1,'Admin',1672319414,'192.168.64.1',2,36,39136,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00ha4ciywx4kjp7h',1,'Admin',1672319414,'192.168.64.1',2,36,39137,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93suux00004ciywh0nidxf',''),('clc93suuz00hb4ciy8ah6wznr',1,'Admin',1672319414,'192.168.64.1',2,36,39138,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93suux00004ciywh0nidxf',''),('clc93suuz00hc4ciyrkgsoqox',1,'Admin',1672319414,'192.168.64.1',2,36,39139,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93suux00004ciywh0nidxf',''),('clc93suuz00hd4ciyas75i2vc',1,'Admin',1672319414,'192.168.64.1',2,36,39140,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00he4ciylxpl8317',1,'Admin',1672319414,'192.168.64.1',2,36,39141,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00hf4ciy0p390ctg',1,'Admin',1672319414,'192.168.64.1',2,36,39142,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93suux00004ciywh0nidxf',''),('clc93suuz00hg4ciycprbebxo',1,'Admin',1672319414,'192.168.64.1',2,36,39143,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00hh4ciyonzcyyd1',1,'Admin',1672319414,'192.168.64.1',2,36,39144,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93suux00004ciywh0nidxf',''),('clc93suuz00hi4ciyit8rma3g',1,'Admin',1672319414,'192.168.64.1',2,36,39145,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00hj4ciy2od9oo0b',1,'Admin',1672319414,'192.168.64.1',2,36,39146,NULL,'Disk-{#SNMPINDEX}: Total space','clc93suux00004ciywh0nidxf',''),('clc93suuz00hk4ciybil5d6ia',1,'Admin',1672319414,'192.168.64.1',2,36,39147,NULL,'Disk-{#SNMPINDEX}: Used space','clc93suux00004ciywh0nidxf',''),('clc93suuz00hl4ciy0z07r908',1,'Admin',1672319414,'192.168.64.1',2,36,39183,NULL,'#{#SNMPINDEX}: CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93suuz00hm4ciyjb2v5iub',1,'Admin',1672319414,'192.168.64.1',2,36,39184,NULL,'CPU: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00hn4ciye2cu06r6',1,'Admin',1672319414,'192.168.64.1',2,36,39185,NULL,'Device: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suuz00ho4ciydtomqrc0',1,'Admin',1672319414,'192.168.64.1',2,36,39186,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93suux00004ciywh0nidxf',''),('clc93suuz00hp4ciycwcjkx7l',1,'Admin',1672319414,'192.168.64.1',2,36,39187,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93suux00004ciywh0nidxf',''),('clc93suuz00hq4ciy33kenyni',1,'Admin',1672319414,'192.168.64.1',2,36,39188,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93suux00004ciywh0nidxf',''),('clc93suuz00hr4ciysxkabooy',1,'Admin',1672319414,'192.168.64.1',2,36,39189,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93suux00004ciywh0nidxf',''),('clc93suuz00hs4ciybh0d4cex',1,'Admin',1672319414,'192.168.64.1',2,36,39190,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00ht4ciy62fwjxp8',1,'Admin',1672319414,'192.168.64.1',2,36,39191,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93suux00004ciywh0nidxf',''),('clc93suuz00hu4ciydorlpajn',1,'Admin',1672319414,'192.168.64.1',2,36,39192,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93suux00004ciywh0nidxf',''),('clc93suuz00hv4ciy4jc6exq4',1,'Admin',1672319414,'192.168.64.1',2,36,39193,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93suux00004ciywh0nidxf',''),('clc93suuz00hw4ciyd3wlmzgz',1,'Admin',1672319414,'192.168.64.1',2,36,39194,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00hx4ciynblzhf1a',1,'Admin',1672319414,'192.168.64.1',2,36,39195,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00hy4ciy05lv576z',1,'Admin',1672319414,'192.168.64.1',2,36,39196,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93suux00004ciywh0nidxf',''),('clc93suuz00hz4ciygw62yovd',1,'Admin',1672319414,'192.168.64.1',2,36,39197,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suuz00i04ciyoprhypfq',1,'Admin',1672319414,'192.168.64.1',2,36,39198,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93suux00004ciywh0nidxf',''),('clc93suv000i14ciy8vkm58gx',1,'Admin',1672319414,'192.168.64.1',2,36,39199,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93suux00004ciywh0nidxf',''),('clc93suv000i24ciyyhg1326p',1,'Admin',1672319414,'192.168.64.1',2,36,39200,NULL,'Disk-{#SNMPINDEX}: Total space','clc93suux00004ciywh0nidxf',''),('clc93suv000i34ciy1vhvu59s',1,'Admin',1672319414,'192.168.64.1',2,36,39201,NULL,'Disk-{#SNMPINDEX}: Used space','clc93suux00004ciywh0nidxf',''),('clc93suv000i44ciypi655u9u',1,'Admin',1672319414,'192.168.64.1',2,36,39237,NULL,'#{#SNMPINDEX}: CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93suv000i54ciyu2apllqo',1,'Admin',1672319414,'192.168.64.1',2,36,39238,NULL,'CPU: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suv000i64ciyzc9qes88',1,'Admin',1672319414,'192.168.64.1',2,36,39239,NULL,'Device: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suv000i74ciysl1mbv7f',1,'Admin',1672319414,'192.168.64.1',2,36,39240,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93suux00004ciywh0nidxf',''),('clc93suv000i84ciyh8dpjzmi',1,'Admin',1672319414,'192.168.64.1',2,36,39241,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93suux00004ciywh0nidxf',''),('clc93suv000i94ciyaf8t3qab',1,'Admin',1672319414,'192.168.64.1',2,36,39242,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93suux00004ciywh0nidxf',''),('clc93suv000ia4ciy1af8uolg',1,'Admin',1672319414,'192.168.64.1',2,36,39243,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93suux00004ciywh0nidxf',''),('clc93suv000ib4ciyc58iukhn',1,'Admin',1672319414,'192.168.64.1',2,36,39244,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suv000ic4ciy8myiw6oy',1,'Admin',1672319414,'192.168.64.1',2,36,39245,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93suux00004ciywh0nidxf',''),('clc93suv000id4ciyvgrez3it',1,'Admin',1672319414,'192.168.64.1',2,36,39246,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93suux00004ciywh0nidxf',''),('clc93suv000ie4ciy733je04r',1,'Admin',1672319414,'192.168.64.1',2,36,39247,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93suux00004ciywh0nidxf',''),('clc93suv000if4ciytlg19w5s',1,'Admin',1672319414,'192.168.64.1',2,36,39248,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suv000ig4ciy0nqycwhi',1,'Admin',1672319414,'192.168.64.1',2,36,39249,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suv000ih4ciy6tyv7t46',1,'Admin',1672319414,'192.168.64.1',2,36,39250,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93suux00004ciywh0nidxf',''),('clc93suv000ii4ciyreu1m5e6',1,'Admin',1672319414,'192.168.64.1',2,36,39251,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suv000ij4ciy4izzep8s',1,'Admin',1672319414,'192.168.64.1',2,36,39252,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93suux00004ciywh0nidxf',''),('clc93suv000ik4ciyr4jh3837',1,'Admin',1672319414,'192.168.64.1',2,36,39253,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93suux00004ciywh0nidxf',''),('clc93suv000il4ciy0uxs6d25',1,'Admin',1672319414,'192.168.64.1',2,36,39254,NULL,'Disk-{#SNMPINDEX}: Total space','clc93suux00004ciywh0nidxf',''),('clc93suv000im4ciy6gloa17m',1,'Admin',1672319414,'192.168.64.1',2,36,39255,NULL,'Disk-{#SNMPINDEX}: Used space','clc93suux00004ciywh0nidxf',''),('clc93suv000in4ciyqui2ku0y',1,'Admin',1672319414,'192.168.64.1',2,36,39291,NULL,'#{#SNMPINDEX}: CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93suv000io4ciy1jc4aczm',1,'Admin',1672319414,'192.168.64.1',2,36,39292,NULL,'CPU: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suv000ip4ciykjagt3f3',1,'Admin',1672319414,'192.168.64.1',2,36,39293,NULL,'Device: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suv000iq4ciyll4a6ie0',1,'Admin',1672319414,'192.168.64.1',2,36,39294,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93suux00004ciywh0nidxf',''),('clc93suv000ir4ciyvja3phbe',1,'Admin',1672319414,'192.168.64.1',2,36,39295,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93suux00004ciywh0nidxf',''),('clc93suv000is4ciydqiufmjp',1,'Admin',1672319414,'192.168.64.1',2,36,39296,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93suux00004ciywh0nidxf',''),('clc93suv000it4ciymohgtyta',1,'Admin',1672319414,'192.168.64.1',2,36,39297,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93suux00004ciywh0nidxf',''),('clc93suv000iu4ciymw8ubvom',1,'Admin',1672319414,'192.168.64.1',2,36,39298,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suv000iv4ciyid7at6gn',1,'Admin',1672319414,'192.168.64.1',2,36,39299,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93suux00004ciywh0nidxf',''),('clc93suv000iw4ciyh5q3sh9q',1,'Admin',1672319414,'192.168.64.1',2,36,39300,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93suux00004ciywh0nidxf',''),('clc93suv000ix4ciyrqaovyn4',1,'Admin',1672319414,'192.168.64.1',2,36,39301,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93suux00004ciywh0nidxf',''),('clc93suv000iy4ciy0b81id5w',1,'Admin',1672319414,'192.168.64.1',2,36,39302,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suv000iz4ciy95i4r1ve',1,'Admin',1672319414,'192.168.64.1',2,36,39303,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suv000j04ciyfea7wph5',1,'Admin',1672319414,'192.168.64.1',2,36,39304,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93suux00004ciywh0nidxf',''),('clc93suv000j14ciyjk1mgrvd',1,'Admin',1672319414,'192.168.64.1',2,36,39305,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suv000j24ciyzq0uc66v',1,'Admin',1672319414,'192.168.64.1',2,36,39306,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93suux00004ciywh0nidxf',''),('clc93suv000j34ciy89wjpj33',1,'Admin',1672319414,'192.168.64.1',2,36,39307,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93suux00004ciywh0nidxf',''),('clc93suv000j44ciy0qbos0xu',1,'Admin',1672319414,'192.168.64.1',2,36,39308,NULL,'Disk-{#SNMPINDEX}: Total space','clc93suux00004ciywh0nidxf',''),('clc93suv000j54ciymtwolaur',1,'Admin',1672319414,'192.168.64.1',2,36,39309,NULL,'Disk-{#SNMPINDEX}: Used space','clc93suux00004ciywh0nidxf',''),('clc93suv000j64ciy0h1yz4jb',1,'Admin',1672319414,'192.168.64.1',2,36,39615,NULL,'#{#SNMPINDEX}: CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93suv000j74ciyrl0dm5lb',1,'Admin',1672319414,'192.168.64.1',2,36,39616,NULL,'CPU: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suv000j84ciycni5697w',1,'Admin',1672319414,'192.168.64.1',2,36,39617,NULL,'Device: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suv000j94ciyzmohkuol',1,'Admin',1672319414,'192.168.64.1',2,36,39618,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93suux00004ciywh0nidxf',''),('clc93suv000ja4ciygfkuvqgw',1,'Admin',1672319414,'192.168.64.1',2,36,39619,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93suux00004ciywh0nidxf',''),('clc93suv000jb4ciykbchaioj',1,'Admin',1672319414,'192.168.64.1',2,36,39620,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93suux00004ciywh0nidxf',''),('clc93suv000jc4ciyez909zmi',1,'Admin',1672319414,'192.168.64.1',2,36,39621,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93suux00004ciywh0nidxf',''),('clc93suv000jd4ciyatclrmn5',1,'Admin',1672319414,'192.168.64.1',2,36,39622,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suv000je4ciyrfevm4cd',1,'Admin',1672319414,'192.168.64.1',2,36,39623,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93suux00004ciywh0nidxf',''),('clc93suv000jf4ciynpyrmfom',1,'Admin',1672319414,'192.168.64.1',2,36,39624,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93suux00004ciywh0nidxf',''),('clc93suv000jg4ciygt4beirx',1,'Admin',1672319414,'192.168.64.1',2,36,39625,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93suux00004ciywh0nidxf',''),('clc93suv000jh4ciy20gjhy55',1,'Admin',1672319414,'192.168.64.1',2,36,39626,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suv000ji4ciyznnaj3s1',1,'Admin',1672319414,'192.168.64.1',2,36,39627,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suv000jj4ciy85rztvur',1,'Admin',1672319414,'192.168.64.1',2,36,39628,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93suux00004ciywh0nidxf',''),('clc93suv000jk4ciywb7m982s',1,'Admin',1672319414,'192.168.64.1',2,36,39629,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suv000jl4ciyr8hfdz9k',1,'Admin',1672319414,'192.168.64.1',2,36,39630,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93suux00004ciywh0nidxf',''),('clc93suv000jm4ciy16ttsnlj',1,'Admin',1672319414,'192.168.64.1',2,36,39631,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93suux00004ciywh0nidxf',''),('clc93suv000jn4ciyyoby67cz',1,'Admin',1672319414,'192.168.64.1',2,36,39632,NULL,'Disk-{#SNMPINDEX}: Total space','clc93suux00004ciywh0nidxf',''),('clc93suv000jo4ciyj3tkid1z',1,'Admin',1672319414,'192.168.64.1',2,36,39633,NULL,'Disk-{#SNMPINDEX}: Used space','clc93suux00004ciywh0nidxf',''),('clc93suv000jp4ciy209f53y0',1,'Admin',1672319414,'192.168.64.1',2,36,39669,NULL,'#{#SNMPINDEX}: CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93suv000jq4ciyhz4luw16',1,'Admin',1672319414,'192.168.64.1',2,36,39670,NULL,'CPU: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suv000jr4ciy94ftq6wp',1,'Admin',1672319414,'192.168.64.1',2,36,39671,NULL,'Device: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suv000js4ciyliq9e84x',1,'Admin',1672319414,'192.168.64.1',2,36,39672,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93suux00004ciywh0nidxf',''),('clc93suv000jt4ciyrdxck3yv',1,'Admin',1672319414,'192.168.64.1',2,36,39673,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93suux00004ciywh0nidxf',''),('clc93suv000ju4ciyq9ccptpy',1,'Admin',1672319414,'192.168.64.1',2,36,39674,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93suux00004ciywh0nidxf',''),('clc93suv000jv4ciyb6rhzugs',1,'Admin',1672319414,'192.168.64.1',2,36,39675,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93suux00004ciywh0nidxf',''),('clc93suv000jw4ciy5dkj99je',1,'Admin',1672319414,'192.168.64.1',2,36,39676,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suv000jx4ciyckleceyt',1,'Admin',1672319414,'192.168.64.1',2,36,39677,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93suux00004ciywh0nidxf',''),('clc93suv000jy4ciy7fq18tua',1,'Admin',1672319414,'192.168.64.1',2,36,39678,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93suux00004ciywh0nidxf',''),('clc93suv000jz4ciymvrpdkjx',1,'Admin',1672319414,'192.168.64.1',2,36,39679,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93suux00004ciywh0nidxf',''),('clc93suv000k04ciy4tem4dq9',1,'Admin',1672319414,'192.168.64.1',2,36,39680,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suv000k14ciyu09fh877',1,'Admin',1672319414,'192.168.64.1',2,36,39681,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suv000k24ciy7xi83hkb',1,'Admin',1672319414,'192.168.64.1',2,36,39682,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93suux00004ciywh0nidxf',''),('clc93suv000k34ciyt3rp490j',1,'Admin',1672319414,'192.168.64.1',2,36,39683,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suv000k44ciye6dwqrfa',1,'Admin',1672319414,'192.168.64.1',2,36,39684,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93suux00004ciywh0nidxf',''),('clc93suv000k54ciyt75ejlf2',1,'Admin',1672319414,'192.168.64.1',2,36,39685,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93suux00004ciywh0nidxf',''),('clc93suv000k64ciy1hn8cm61',1,'Admin',1672319414,'192.168.64.1',2,36,39686,NULL,'Disk-{#SNMPINDEX}: Total space','clc93suux00004ciywh0nidxf',''),('clc93suv000k74ciy6jhpldoa',1,'Admin',1672319414,'192.168.64.1',2,36,39687,NULL,'Disk-{#SNMPINDEX}: Used space','clc93suux00004ciywh0nidxf',''),('clc93suv000k84ciy0gy8wdrg',1,'Admin',1672319414,'192.168.64.1',2,36,39723,NULL,'#{#SNMPINDEX}: CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93suv000k94ciywcl3m42j',1,'Admin',1672319414,'192.168.64.1',2,36,39724,NULL,'CPU: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suv000ka4ciycnsg11lu',1,'Admin',1672319414,'192.168.64.1',2,36,39725,NULL,'Device: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suv000kb4ciy1k8athn2',1,'Admin',1672319414,'192.168.64.1',2,36,39726,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP','clc93suux00004ciywh0nidxf',''),('clc93suv000kc4ciytd1h3hkz',1,'Admin',1672319414,'192.168.64.1',2,36,39727,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ','clc93suux00004ciywh0nidxf',''),('clc93suv000kd4ciyhy5gaj1g',1,'Admin',1672319414,'192.168.64.1',2,36,39728,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI','clc93suux00004ciywh0nidxf',''),('clc93suv000ke4ciyr9mwfc0b',1,'Admin',1672319414,'192.168.64.1',2,36,39729,NULL,'Interface {#IFNAME}({#IFALIAS}): LTE modem SINR','clc93suux00004ciywh0nidxf',''),('clc93suv000kf4ciyxq9jnkh1',1,'Admin',1672319414,'192.168.64.1',2,36,39730,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suv000kg4ciysa4khb04',1,'Admin',1672319414,'192.168.64.1',2,36,39731,NULL,'Interface {#IFNAME}({#IFALIAS}): AP band','clc93suux00004ciywh0nidxf',''),('clc93suv000kh4ciyepdw09uw',1,'Admin',1672319414,'192.168.64.1',2,36,39732,NULL,'Interface {#IFNAME}({#IFALIAS}): SSID','clc93suux00004ciywh0nidxf',''),('clc93suv000ki4ciyiupzbrci',1,'Admin',1672319414,'192.168.64.1',2,36,39733,NULL,'Interface {#IFNAME}({#IFALIAS}): AP noise floor','clc93suux00004ciywh0nidxf',''),('clc93suv000kj4ciyf2g9n2wl',1,'Admin',1672319414,'192.168.64.1',2,36,39734,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suv000kk4ciy7eu0d1f1',1,'Admin',1672319414,'192.168.64.1',2,36,39735,NULL,'Interface {#IFNAME}({#IFALIAS}): AP authenticated clients','clc93suux00004ciywh0nidxf',''),('clc93suv000kl4ciyuraix29u',1,'Admin',1672319414,'192.168.64.1',2,36,39736,NULL,'Interface {#IFNAME}({#IFALIAS}): AP channel','clc93suux00004ciywh0nidxf',''),('clc93suv000km4ciyw0fkixkl',1,'Admin',1672319414,'192.168.64.1',2,36,39737,NULL,'Interface {#IFNAME}({#IFALIAS}): AP registered clients','clc93suux00004ciywh0nidxf',''),('clc93suv000kn4ciyimd6298i',1,'Admin',1672319414,'192.168.64.1',2,36,39738,NULL,'Interface {#IFNAME}({#IFALIAS}): AP state','clc93suux00004ciywh0nidxf',''),('clc93suv000ko4ciy3jjhmhyc',1,'Admin',1672319414,'192.168.64.1',2,36,39739,NULL,'Disk-{#SNMPINDEX}: Space utilization','clc93suux00004ciywh0nidxf',''),('clc93suv000kp4ciyha58j0zb',1,'Admin',1672319414,'192.168.64.1',2,36,39740,NULL,'Disk-{#SNMPINDEX}: Total space','clc93suux00004ciywh0nidxf',''),('clc93suv000kq4ciydwcy4i85',1,'Admin',1672319414,'192.168.64.1',2,36,39741,NULL,'Disk-{#SNMPINDEX}: Used space','clc93suux00004ciywh0nidxf',''),('clc93suv000kr4ciymif7em0c',1,'Admin',1672319414,'192.168.64.1',2,36,40147,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv4 traffic blocked','clc93suux00004ciywh0nidxf',''),('clc93suv000ks4ciysbiqhdlu',1,'Admin',1672319414,'192.168.64.1',2,36,40148,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv6 packets blocked','clc93suux00004ciywh0nidxf',''),('clc93suv000kt4ciyp7q3z9b4',1,'Admin',1672319414,'192.168.64.1',2,36,40149,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000ku4ciyss2k6czr',1,'Admin',1672319414,'192.168.64.1',2,36,40150,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000kv4ciye15wu3nu',1,'Admin',1672319414,'192.168.64.1',2,36,40151,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Rules references count','clc93suux00004ciywh0nidxf',''),('clc93suv000kw4ciyq89x38im',1,'Admin',1672319414,'192.168.64.1',2,36,40152,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000kx4ciykt59vubc',1,'Admin',1672319414,'192.168.64.1',2,36,40153,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv6 packets passed','clc93suux00004ciywh0nidxf',''),('clc93suv000ky4ciyvh89k4pu',1,'Admin',1672319414,'192.168.64.1',2,36,40154,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv6 traffic passed','clc93suux00004ciywh0nidxf',''),('clc93suv000kz4ciy9wvfxca3',1,'Admin',1672319414,'192.168.64.1',2,36,40155,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv4 packets passed','clc93suux00004ciywh0nidxf',''),('clc93suv000l04ciyknzyqsi3',1,'Admin',1672319414,'192.168.64.1',2,36,40156,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv4 traffic passed','clc93suux00004ciywh0nidxf',''),('clc93suv000l14ciymk2szt5z',1,'Admin',1672319414,'192.168.64.1',2,36,40157,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000l24ciy6su1o3q5',1,'Admin',1672319414,'192.168.64.1',2,36,40158,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000l34ciyrd5wf7zt',1,'Admin',1672319414,'192.168.64.1',2,36,40159,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv6 traffic blocked','clc93suux00004ciywh0nidxf',''),('clc93suv000l44ciyp0qv2nln',1,'Admin',1672319414,'192.168.64.1',2,36,40160,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv4 packets blocked','clc93suux00004ciywh0nidxf',''),('clc93suv000l54ciye2h48fog',1,'Admin',1672319414,'192.168.64.1',2,36,40161,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv4 packets blocked','clc93suux00004ciywh0nidxf',''),('clc93suv000l64ciy7c5vqhul',1,'Admin',1672319414,'192.168.64.1',2,36,40162,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv4 traffic blocked','clc93suux00004ciywh0nidxf',''),('clc93suv000l74ciyz14vdq2r',1,'Admin',1672319414,'192.168.64.1',2,36,40163,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000l84ciyansmqq5i',1,'Admin',1672319414,'192.168.64.1',2,36,40164,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv6 packets passed','clc93suux00004ciywh0nidxf',''),('clc93suv000l94ciyr034dg6l',1,'Admin',1672319414,'192.168.64.1',2,36,40165,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv6 traffic passed','clc93suux00004ciywh0nidxf',''),('clc93suv000la4ciylh25mrux',1,'Admin',1672319414,'192.168.64.1',2,36,40166,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv4 packets passed','clc93suux00004ciywh0nidxf',''),('clc93suv000lb4ciymtgopg33',1,'Admin',1672319414,'192.168.64.1',2,36,40167,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv4 traffic passed','clc93suux00004ciywh0nidxf',''),('clc93suv000lc4ciy5y6bmc3w',1,'Admin',1672319414,'192.168.64.1',2,36,40168,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000ld4ciykjrojxla',1,'Admin',1672319414,'192.168.64.1',2,36,40169,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000le4ciytv9lyzwa',1,'Admin',1672319414,'192.168.64.1',2,36,40170,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv6 packets blocked','clc93suux00004ciywh0nidxf',''),('clc93suv000lf4ciycjoyvpw3',1,'Admin',1672319414,'192.168.64.1',2,36,40171,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv6 traffic blocked','clc93suux00004ciywh0nidxf',''),('clc93suv000lg4ciyvf125le5',1,'Admin',1672319414,'192.168.64.1',2,36,40172,NULL,'PFSense: Interface [{#IFNAME}({#IFALIAS})]: Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000lh4ciy93ngf6j7',1,'Admin',1672319414,'192.168.64.1',2,36,40811,NULL,'Interface {#IFDESCR}: Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000li4ciy1z7u5hpp',1,'Admin',1672319414,'192.168.64.1',2,36,40812,NULL,'Interface {#IFDESCR}: Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000lj4ciysf47f2nu',1,'Admin',1672319414,'192.168.64.1',2,36,40813,NULL,'Interface {#IFDESCR}: Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000lk4ciysju96sxw',1,'Admin',1672319414,'192.168.64.1',2,36,40814,NULL,'Interface {#IFDESCR}: Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000ll4ciy75ky62gu',1,'Admin',1672319414,'192.168.64.1',2,36,40815,NULL,'Interface {#IFDESCR}: Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000lm4ciysh6xiuq3',1,'Admin',1672319414,'192.168.64.1',2,36,40816,NULL,'Interface {#IFDESCR}: Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000ln4ciyb46esm3c',1,'Admin',1672319414,'192.168.64.1',2,36,40817,NULL,'Interface {#IFDESCR}: Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000lo4ciybwdj3y3n',1,'Admin',1672319414,'192.168.64.1',2,36,40818,NULL,'Interface {#IFDESCR}: Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000lp4ciysvkcqwu6',1,'Admin',1672319414,'192.168.64.1',2,36,40819,NULL,'Interface {#IFDESCR}: Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000lq4ciyyfskhpg9',1,'Admin',1672319414,'192.168.64.1',2,36,40820,NULL,'Interface {#IFNAME}({#IFALIAS}): Duplex status','clc93suux00004ciywh0nidxf',''),('clc93suv000lr4ciywyjws074',1,'Admin',1672319414,'192.168.64.1',2,36,41618,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000ls4ciyk0ag4xps',1,'Admin',1672319414,'192.168.64.1',2,36,41619,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000lt4ciyipsd1rsz',1,'Admin',1672319414,'192.168.64.1',2,36,41620,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000lu4ciy26dte9ld',1,'Admin',1672319414,'192.168.64.1',2,36,41621,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000lv4ciyj64ug005',1,'Admin',1672319414,'192.168.64.1',2,36,41622,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000lw4ciyyrbdwg3l',1,'Admin',1672319414,'192.168.64.1',2,36,41623,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000lx4ciyy98qmo1y',1,'Admin',1672319414,'192.168.64.1',2,36,41624,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000ly4ciyokbhir9q',1,'Admin',1672319414,'192.168.64.1',2,36,41625,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000lz4ciyq9tdmnbc',1,'Admin',1672319414,'192.168.64.1',2,36,41626,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000m04ciysgun3suv',1,'Admin',1672319414,'192.168.64.1',2,36,41639,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000m14ciy0w9l95gf',1,'Admin',1672319414,'192.168.64.1',2,36,41640,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000m24ciy0qsevizn',1,'Admin',1672319414,'192.168.64.1',2,36,41641,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000m34ciyc6a8k37h',1,'Admin',1672319414,'192.168.64.1',2,36,41642,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000m44ciyw7du01sl',1,'Admin',1672319414,'192.168.64.1',2,36,41643,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000m54ciydl1k8zqy',1,'Admin',1672319414,'192.168.64.1',2,36,41644,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000m64ciyp8gng3xm',1,'Admin',1672319414,'192.168.64.1',2,36,41645,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000m74ciyocqcny2n',1,'Admin',1672319414,'192.168.64.1',2,36,41646,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000m84ciyl87c9pja',1,'Admin',1672319414,'192.168.64.1',2,36,41647,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000m94ciyxe5c4r11',1,'Admin',1672319414,'192.168.64.1',2,36,41660,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000ma4ciypoybdcyb',1,'Admin',1672319414,'192.168.64.1',2,36,41661,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000mb4ciyrsi8r5p4',1,'Admin',1672319414,'192.168.64.1',2,36,41662,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000mc4ciyc08b1pvo',1,'Admin',1672319414,'192.168.64.1',2,36,41663,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000md4ciy4t4chzj4',1,'Admin',1672319414,'192.168.64.1',2,36,41664,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000me4ciye7655mal',1,'Admin',1672319414,'192.168.64.1',2,36,41665,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000mf4ciytenobeqg',1,'Admin',1672319414,'192.168.64.1',2,36,41666,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000mg4ciyjmdhdscp',1,'Admin',1672319414,'192.168.64.1',2,36,41667,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000mh4ciykyyi5ijk',1,'Admin',1672319414,'192.168.64.1',2,36,41668,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000mi4ciylqjpfyqv',1,'Admin',1672319414,'192.168.64.1',2,36,41681,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000mj4ciy0b6l80gu',1,'Admin',1672319414,'192.168.64.1',2,36,41682,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000mk4ciyqu8vuook',1,'Admin',1672319414,'192.168.64.1',2,36,41683,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000ml4ciyt6hp0zcm',1,'Admin',1672319414,'192.168.64.1',2,36,41684,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000mm4ciy6mqe2tqd',1,'Admin',1672319414,'192.168.64.1',2,36,41685,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000mn4ciyb784yt2f',1,'Admin',1672319414,'192.168.64.1',2,36,41686,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000mo4ciy3e7e292z',1,'Admin',1672319414,'192.168.64.1',2,36,41687,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000mp4ciyrftgxhow',1,'Admin',1672319414,'192.168.64.1',2,36,41688,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000mq4ciyy5fbd1be',1,'Admin',1672319414,'192.168.64.1',2,36,41689,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000mr4ciyigq7lbmw',1,'Admin',1672319414,'192.168.64.1',2,36,41702,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000ms4ciyp81ytoz3',1,'Admin',1672319414,'192.168.64.1',2,36,41703,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000mt4ciy2gmuej4r',1,'Admin',1672319414,'192.168.64.1',2,36,41704,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000mu4ciy3idms433',1,'Admin',1672319414,'192.168.64.1',2,36,41705,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000mv4ciy247lc94j',1,'Admin',1672319414,'192.168.64.1',2,36,41706,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000mw4ciy2dt4r356',1,'Admin',1672319414,'192.168.64.1',2,36,41707,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000mx4ciyoudcfgur',1,'Admin',1672319414,'192.168.64.1',2,36,41708,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000my4ciy41tk0mzt',1,'Admin',1672319414,'192.168.64.1',2,36,41709,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000mz4ciyxm5l6n0j',1,'Admin',1672319414,'192.168.64.1',2,36,41710,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000n04ciyqccp3ucn',1,'Admin',1672319414,'192.168.64.1',2,36,41723,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000n14ciyigi85qua',1,'Admin',1672319414,'192.168.64.1',2,36,41724,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000n24ciybomagwrb',1,'Admin',1672319414,'192.168.64.1',2,36,41725,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000n34ciyjzbd4nhs',1,'Admin',1672319414,'192.168.64.1',2,36,41726,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000n44ciyxdh4ep6y',1,'Admin',1672319414,'192.168.64.1',2,36,41727,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000n54ciy6htw17ld',1,'Admin',1672319414,'192.168.64.1',2,36,41728,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000n64ciyrwuvbuk1',1,'Admin',1672319414,'192.168.64.1',2,36,41729,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000n74ciyijv65ian',1,'Admin',1672319414,'192.168.64.1',2,36,41730,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000n84ciywljcahcv',1,'Admin',1672319414,'192.168.64.1',2,36,41731,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000n94ciyztyunquw',1,'Admin',1672319414,'192.168.64.1',2,36,41744,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000na4ciyma44r901',1,'Admin',1672319414,'192.168.64.1',2,36,41745,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000nb4ciykcghq04f',1,'Admin',1672319414,'192.168.64.1',2,36,41746,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000nc4ciy89uqkckg',1,'Admin',1672319414,'192.168.64.1',2,36,41747,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000nd4ciyr2c1jn7o',1,'Admin',1672319414,'192.168.64.1',2,36,41748,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000ne4ciyo0ni1re6',1,'Admin',1672319414,'192.168.64.1',2,36,41749,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000nf4ciyw773rfrh',1,'Admin',1672319414,'192.168.64.1',2,36,41750,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000ng4ciy4866dh4w',1,'Admin',1672319414,'192.168.64.1',2,36,41751,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000nh4ciypis9zg1m',1,'Admin',1672319414,'192.168.64.1',2,36,41752,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000ni4ciybyacb312',1,'Admin',1672319414,'192.168.64.1',2,36,41765,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000nj4ciysk53pej1',1,'Admin',1672319414,'192.168.64.1',2,36,41766,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000nk4ciyithq4w22',1,'Admin',1672319414,'192.168.64.1',2,36,41767,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000nl4ciyl14ajujx',1,'Admin',1672319414,'192.168.64.1',2,36,41768,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000nm4ciygskvbgzn',1,'Admin',1672319414,'192.168.64.1',2,36,41769,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000nn4ciytwi2x44a',1,'Admin',1672319414,'192.168.64.1',2,36,41770,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000no4ciy6z5zhk2i',1,'Admin',1672319414,'192.168.64.1',2,36,41771,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000np4ciy7qj6wmai',1,'Admin',1672319414,'192.168.64.1',2,36,41772,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000nq4ciyzgb3nu9m',1,'Admin',1672319414,'192.168.64.1',2,36,41773,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000nr4ciycmd4qj8x',1,'Admin',1672319414,'192.168.64.1',2,36,41786,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000ns4ciywb4fo8rm',1,'Admin',1672319414,'192.168.64.1',2,36,41787,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000nt4ciyx4mx1nr4',1,'Admin',1672319414,'192.168.64.1',2,36,41788,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000nu4ciyd5xicpx5',1,'Admin',1672319414,'192.168.64.1',2,36,41789,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000nv4ciy0agpaclw',1,'Admin',1672319414,'192.168.64.1',2,36,41790,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000nw4ciycpbfru2h',1,'Admin',1672319414,'192.168.64.1',2,36,41791,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000nx4ciy9t9fllth',1,'Admin',1672319414,'192.168.64.1',2,36,41792,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000ny4ciymlhhyhwz',1,'Admin',1672319414,'192.168.64.1',2,36,41793,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000nz4ciyyg77zzlk',1,'Admin',1672319414,'192.168.64.1',2,36,41794,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000o04ciy723oyaif',1,'Admin',1672319414,'192.168.64.1',2,36,41807,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000o14ciyq8vn6w96',1,'Admin',1672319414,'192.168.64.1',2,36,41808,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000o24ciyjq8rqjlt',1,'Admin',1672319414,'192.168.64.1',2,36,41809,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000o34ciy39wojtz0',1,'Admin',1672319414,'192.168.64.1',2,36,41810,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000o44ciy3by5m8ik',1,'Admin',1672319414,'192.168.64.1',2,36,41811,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000o54ciyg9iwvvvu',1,'Admin',1672319414,'192.168.64.1',2,36,41812,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000o64ciy7j4fvcx8',1,'Admin',1672319414,'192.168.64.1',2,36,41813,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000o74ciyr98014yv',1,'Admin',1672319414,'192.168.64.1',2,36,41814,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000o84ciyu86smsdu',1,'Admin',1672319414,'192.168.64.1',2,36,41815,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000o94ciy3ovsq44b',1,'Admin',1672319414,'192.168.64.1',2,36,41828,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000oa4ciy81bcumal',1,'Admin',1672319414,'192.168.64.1',2,36,41829,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000ob4ciyjz8h2ous',1,'Admin',1672319414,'192.168.64.1',2,36,41830,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000oc4ciyige8dstb',1,'Admin',1672319414,'192.168.64.1',2,36,41831,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000od4ciyfmwt310v',1,'Admin',1672319414,'192.168.64.1',2,36,41832,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000oe4ciyhruhq2po',1,'Admin',1672319414,'192.168.64.1',2,36,41833,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000of4ciy7ksatjgc',1,'Admin',1672319414,'192.168.64.1',2,36,41834,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000og4ciyx5s2d4l9',1,'Admin',1672319414,'192.168.64.1',2,36,41835,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000oh4ciytsd856ac',1,'Admin',1672319414,'192.168.64.1',2,36,41836,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000oi4ciykuj2cr03',1,'Admin',1672319414,'192.168.64.1',2,36,41849,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000oj4ciy0hghmuz2',1,'Admin',1672319414,'192.168.64.1',2,36,41850,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000ok4ciyj97zurva',1,'Admin',1672319414,'192.168.64.1',2,36,41851,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000ol4ciyh8kb6tpy',1,'Admin',1672319414,'192.168.64.1',2,36,41852,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000om4ciyccmptas4',1,'Admin',1672319414,'192.168.64.1',2,36,41853,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000on4ciyylkrj8ph',1,'Admin',1672319414,'192.168.64.1',2,36,41854,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000oo4ciy4i8ep418',1,'Admin',1672319414,'192.168.64.1',2,36,41855,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000op4ciynx8y6u75',1,'Admin',1672319414,'192.168.64.1',2,36,41856,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000oq4ciy83bg2ax8',1,'Admin',1672319414,'192.168.64.1',2,36,41857,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000or4ciy3iimsng8',1,'Admin',1672319414,'192.168.64.1',2,36,41870,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000os4ciyzog8xbri',1,'Admin',1672319414,'192.168.64.1',2,36,41871,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000ot4ciy03cndbhh',1,'Admin',1672319414,'192.168.64.1',2,36,41872,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000ou4ciy1682i50e',1,'Admin',1672319414,'192.168.64.1',2,36,41873,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000ov4ciyvix7qa7z',1,'Admin',1672319414,'192.168.64.1',2,36,41874,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000ow4ciyeae6qj2m',1,'Admin',1672319414,'192.168.64.1',2,36,41875,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000ox4ciybykat8oe',1,'Admin',1672319414,'192.168.64.1',2,36,41876,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000oy4ciy1u6htv6v',1,'Admin',1672319414,'192.168.64.1',2,36,41877,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000oz4ciy89yczkoh',1,'Admin',1672319414,'192.168.64.1',2,36,41878,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000p04ciy3l4j9wfu',1,'Admin',1672319414,'192.168.64.1',2,36,41891,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000p14ciylg69mf75',1,'Admin',1672319414,'192.168.64.1',2,36,41892,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000p24ciyb0z1oyqo',1,'Admin',1672319414,'192.168.64.1',2,36,41893,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000p34ciy1usxsa4o',1,'Admin',1672319414,'192.168.64.1',2,36,41894,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000p44ciyrpw3q3vk',1,'Admin',1672319414,'192.168.64.1',2,36,41895,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000p54ciyhborw0d9',1,'Admin',1672319414,'192.168.64.1',2,36,41896,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000p64ciyuze007i5',1,'Admin',1672319414,'192.168.64.1',2,36,41897,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000p74ciy8bx4naet',1,'Admin',1672319414,'192.168.64.1',2,36,41898,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000p84ciy02ke93fk',1,'Admin',1672319414,'192.168.64.1',2,36,41899,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000p94ciyna6akax7',1,'Admin',1672319414,'192.168.64.1',2,36,42017,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000pa4ciyxl2oyyaz',1,'Admin',1672319414,'192.168.64.1',2,36,42018,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000pb4ciy80s470bb',1,'Admin',1672319414,'192.168.64.1',2,36,42019,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000pc4ciyc6ollfr6',1,'Admin',1672319414,'192.168.64.1',2,36,42020,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000pd4ciyuwaalmhc',1,'Admin',1672319414,'192.168.64.1',2,36,42021,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000pe4ciyt4u61df5',1,'Admin',1672319414,'192.168.64.1',2,36,42022,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000pf4ciymsv1ij7z',1,'Admin',1672319414,'192.168.64.1',2,36,42023,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000pg4ciycqgs882d',1,'Admin',1672319414,'192.168.64.1',2,36,42024,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000ph4ciyf6f1idxj',1,'Admin',1672319414,'192.168.64.1',2,36,42025,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000pi4ciyr74ialel',1,'Admin',1672319414,'192.168.64.1',2,36,42038,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000pj4ciy5rnlxa7b',1,'Admin',1672319414,'192.168.64.1',2,36,42039,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000pk4ciy0n9cqydf',1,'Admin',1672319414,'192.168.64.1',2,36,42040,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000pl4ciy7ut08sqs',1,'Admin',1672319414,'192.168.64.1',2,36,42041,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000pm4ciyq259bkuh',1,'Admin',1672319414,'192.168.64.1',2,36,42042,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000pn4ciyea4qc76l',1,'Admin',1672319414,'192.168.64.1',2,36,42043,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000po4ciys7s3atdm',1,'Admin',1672319414,'192.168.64.1',2,36,42044,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000pp4ciyonaaamfv',1,'Admin',1672319414,'192.168.64.1',2,36,42045,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000pq4ciy2e6ka4v2',1,'Admin',1672319414,'192.168.64.1',2,36,42046,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000pr4ciywiamxoh3',1,'Admin',1672319414,'192.168.64.1',2,36,42059,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000ps4ciyh48uikp6',1,'Admin',1672319414,'192.168.64.1',2,36,42060,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000pt4ciysvx4nepo',1,'Admin',1672319414,'192.168.64.1',2,36,42061,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000pu4ciye0yl5bt2',1,'Admin',1672319414,'192.168.64.1',2,36,42062,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000pv4ciy0y19xm86',1,'Admin',1672319414,'192.168.64.1',2,36,42063,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000pw4ciyauhcs8v4',1,'Admin',1672319414,'192.168.64.1',2,36,42064,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000px4ciy9cs4cig9',1,'Admin',1672319414,'192.168.64.1',2,36,42065,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000py4ciyedc4p48y',1,'Admin',1672319414,'192.168.64.1',2,36,42066,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000pz4ciym1r95gw4',1,'Admin',1672319414,'192.168.64.1',2,36,42067,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000q04ciymed6fy2e',1,'Admin',1672319414,'192.168.64.1',2,36,42101,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000q14ciy34fj4tah',1,'Admin',1672319414,'192.168.64.1',2,36,42102,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000q24ciyd9ieeuki',1,'Admin',1672319414,'192.168.64.1',2,36,42103,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000q34ciye28x2puu',1,'Admin',1672319414,'192.168.64.1',2,36,42104,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000q44ciy2pk5dgz9',1,'Admin',1672319414,'192.168.64.1',2,36,42105,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000q54ciythkpxwg4',1,'Admin',1672319414,'192.168.64.1',2,36,42106,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000q64ciy0uk0jin5',1,'Admin',1672319414,'192.168.64.1',2,36,42107,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000q74ciyde742s75',1,'Admin',1672319414,'192.168.64.1',2,36,42108,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000q84ciyp8uaght0',1,'Admin',1672319414,'192.168.64.1',2,36,42109,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000q94ciy6jr7s87v',1,'Admin',1672319414,'192.168.64.1',2,36,42727,NULL,'[{#LOCATION}, {#COUNTRY}]: Data','clc93suux00004ciywh0nidxf',''),('clc93suv000qa4ciyc2k6tydz',1,'Admin',1672319414,'192.168.64.1',2,36,42728,NULL,'[{#LOCATION}, {#COUNTRY}]: Cloudiness','clc93suux00004ciywh0nidxf',''),('clc93suv000qb4ciys7hlr5w7',1,'Admin',1672319414,'192.168.64.1',2,36,42729,NULL,'[{#LOCATION}, {#COUNTRY}]: Short weather status','clc93suux00004ciywh0nidxf',''),('clc93suv000qc4ciy7z5ptae5',1,'Admin',1672319414,'192.168.64.1',2,36,42730,NULL,'[{#LOCATION}, {#COUNTRY}]: Humidity','clc93suux00004ciywh0nidxf',''),('clc93suv000qd4ciyg5gcadbe',1,'Admin',1672319414,'192.168.64.1',2,36,42731,NULL,'[{#LOCATION}, {#COUNTRY}]: Atmospheric pressure','clc93suux00004ciywh0nidxf',''),('clc93suv000qe4ciyb9n0gynv',1,'Admin',1672319414,'192.168.64.1',2,36,42732,NULL,'[{#LOCATION}, {#COUNTRY}]: Rain volume for the last one hour','clc93suux00004ciywh0nidxf',''),('clc93suv000qf4ciyj1tn9cqw',1,'Admin',1672319414,'192.168.64.1',2,36,42733,NULL,'[{#LOCATION}, {#COUNTRY}]: Snow volume for the last one hour','clc93suux00004ciywh0nidxf',''),('clc93suv000qg4ciyyuolh9ng',1,'Admin',1672319414,'192.168.64.1',2,36,42734,NULL,'[{#LOCATION}, {#COUNTRY}]: Temperature','clc93suux00004ciywh0nidxf',''),('clc93suv000qh4ciyil9a5xcw',1,'Admin',1672319414,'192.168.64.1',2,36,42735,NULL,'[{#LOCATION}, {#COUNTRY}]: Visibility','clc93suux00004ciywh0nidxf',''),('clc93suv000qi4ciyey1v2yyb',1,'Admin',1672319414,'192.168.64.1',2,36,42736,NULL,'[{#LOCATION}, {#COUNTRY}]: Wind direction','clc93suux00004ciywh0nidxf',''),('clc93suv000qj4ciy8un6ds3z',1,'Admin',1672319414,'192.168.64.1',2,36,42737,NULL,'[{#LOCATION}, {#COUNTRY}]: Wind speed','clc93suux00004ciywh0nidxf',''),('clc93suv000qk4ciyce1nczhi',1,'Admin',1672319414,'192.168.64.1',2,36,43566,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv4 traffic blocked','clc93suux00004ciywh0nidxf',''),('clc93suv000ql4ciyzpcjk5po',1,'Admin',1672319414,'192.168.64.1',2,36,43567,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv6 packets blocked','clc93suux00004ciywh0nidxf',''),('clc93suv000qm4ciyhvsdbps8',1,'Admin',1672319414,'192.168.64.1',2,36,43568,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Operational status','clc93suux00004ciywh0nidxf',''),('clc93suv000qn4ciywan5i4ku',1,'Admin',1672319414,'192.168.64.1',2,36,43569,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Speed','clc93suux00004ciywh0nidxf',''),('clc93suv000qo4ciyiyqr0st7',1,'Admin',1672319414,'192.168.64.1',2,36,43570,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Rules references count','clc93suux00004ciywh0nidxf',''),('clc93suv000qp4ciyfjafidia',1,'Admin',1672319414,'192.168.64.1',2,36,43571,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Bits sent','clc93suux00004ciywh0nidxf',''),('clc93suv000qq4ciy9mek1fn3',1,'Admin',1672319414,'192.168.64.1',2,36,43572,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv6 packets passed','clc93suux00004ciywh0nidxf',''),('clc93suv000qr4ciy14vq2jxb',1,'Admin',1672319414,'192.168.64.1',2,36,43573,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv6 traffic passed','clc93suux00004ciywh0nidxf',''),('clc93suv000qs4ciy672dzgcx',1,'Admin',1672319414,'192.168.64.1',2,36,43574,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv4 packets passed','clc93suux00004ciywh0nidxf',''),('clc93suv000qt4ciyk17ue8o2',1,'Admin',1672319414,'192.168.64.1',2,36,43575,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv4 traffic passed','clc93suux00004ciywh0nidxf',''),('clc93suv000qu4ciyo8pbxhsh',1,'Admin',1672319414,'192.168.64.1',2,36,43576,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Outbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000qv4ciybhar78wx',1,'Admin',1672319414,'192.168.64.1',2,36,43577,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Outbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000qw4ciyur0k2jxd',1,'Admin',1672319414,'192.168.64.1',2,36,43578,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv6 traffic blocked','clc93suux00004ciywh0nidxf',''),('clc93suv000qx4ciykafx78p5',1,'Admin',1672319414,'192.168.64.1',2,36,43579,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv4 packets blocked','clc93suux00004ciywh0nidxf',''),('clc93suv000qy4ciyrh3lrqz6',1,'Admin',1672319414,'192.168.64.1',2,36,43580,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv4 packets blocked','clc93suux00004ciywh0nidxf',''),('clc93suv000qz4ciytdkwd66j',1,'Admin',1672319414,'192.168.64.1',2,36,43581,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv4 traffic blocked','clc93suux00004ciywh0nidxf',''),('clc93suv000r04ciyaegirggi',1,'Admin',1672319414,'192.168.64.1',2,36,43582,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Bits received','clc93suux00004ciywh0nidxf',''),('clc93suv000r14ciyphdnbo9k',1,'Admin',1672319414,'192.168.64.1',2,36,43583,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv6 packets passed','clc93suux00004ciywh0nidxf',''),('clc93suv000r24ciy4rkwta3t',1,'Admin',1672319414,'192.168.64.1',2,36,43584,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv6 traffic passed','clc93suux00004ciywh0nidxf',''),('clc93suv000r34ciym9c4vtzu',1,'Admin',1672319414,'192.168.64.1',2,36,43585,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv4 packets passed','clc93suux00004ciywh0nidxf',''),('clc93suv000r44ciyjyeixdx0',1,'Admin',1672319414,'192.168.64.1',2,36,43586,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv4 traffic passed','clc93suux00004ciywh0nidxf',''),('clc93suv000r54ciye9gnnd5p',1,'Admin',1672319414,'192.168.64.1',2,36,43587,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Inbound packets with errors','clc93suux00004ciywh0nidxf',''),('clc93suv000r64ciy1ro28377',1,'Admin',1672319414,'192.168.64.1',2,36,43588,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Inbound packets discarded','clc93suux00004ciywh0nidxf',''),('clc93suv000r74ciyycm8355p',1,'Admin',1672319414,'192.168.64.1',2,36,43589,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv6 packets blocked','clc93suux00004ciywh0nidxf',''),('clc93suv000r84ciycol2dqjh',1,'Admin',1672319414,'192.168.64.1',2,36,43590,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv6 traffic blocked','clc93suux00004ciywh0nidxf',''),('clc93suv000r94ciy06yyc25s',1,'Admin',1672319414,'192.168.64.1',2,36,43591,NULL,'OPNsense: Interface [{#IFNAME}({#IFALIAS})]: Interface type','clc93suux00004ciywh0nidxf',''),('clc93suv000ra4ciy4lldl9fv',1,'Admin',1672319414,'192.168.64.1',2,36,44237,NULL,'Process [{#NAME}]: Get data','clc93suux00004ciywh0nidxf',''),('clc93suv000rb4ciye5y7blfe',1,'Admin',1672319414,'192.168.64.1',2,36,44238,NULL,'Process [{#NAME}]: Size of locked memory','clc93suux00004ciywh0nidxf',''),('clc93suv000rc4ciylu5ut7ol',1,'Admin',1672319414,'192.168.64.1',2,36,44239,NULL,'Process [{#NAME}]: Number of running processes','clc93suux00004ciywh0nidxf',''),('clc93suv000rd4ciyu0l97vej',1,'Admin',1672319414,'192.168.64.1',2,36,44240,NULL,'Process [{#NAME}]: Number of page faults','clc93suux00004ciywh0nidxf',''),('clc93suv000re4ciyds7m8qq3',1,'Admin',1672319414,'192.168.64.1',2,36,44241,NULL,'Process [{#NAME}]: Memory usage, %','clc93suux00004ciywh0nidxf',''),('clc93suv000rf4ciy7kqg0h8l',1,'Admin',1672319414,'192.168.64.1',2,36,44242,NULL,'Process [{#NAME}]: Memory usage (rss)','clc93suux00004ciywh0nidxf',''),('clc93suv000rg4ciy5r589gbx',1,'Admin',1672319414,'192.168.64.1',2,36,44243,NULL,'Process [{#NAME}]: Swap space used','clc93suux00004ciywh0nidxf',''),('clc93suv000rh4ciyex0lust5',1,'Admin',1672319414,'192.168.64.1',2,36,44244,NULL,'Process [{#NAME}]: Number of threads','clc93suux00004ciywh0nidxf',''),('clc93suv000ri4ciybmzmxje8',1,'Admin',1672319414,'192.168.64.1',2,36,44245,NULL,'Process [{#NAME}]: Memory usage (vsize)','clc93suux00004ciywh0nidxf',''),('clc93suv000rj4ciym4gchk96',1,'Admin',1672319414,'192.168.64.1',2,36,44345,NULL,'Nginx: CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93suv000rk4ciy75cuewxl',1,'Admin',1672319414,'192.168.64.1',2,36,44346,NULL,'Nginx: Get process data','clc93suux00004ciywh0nidxf',''),('clc93suv000rl4ciyih1da1ds',1,'Admin',1672319414,'192.168.64.1',2,36,44347,NULL,'Nginx: Number of running processes','clc93suux00004ciywh0nidxf',''),('clc93suv000rm4ciydyr7nemk',1,'Admin',1672319414,'192.168.64.1',2,36,44348,NULL,'Nginx: Memory usage, %','clc93suux00004ciywh0nidxf',''),('clc93suv000rn4ciyhmbhnp7e',1,'Admin',1672319414,'192.168.64.1',2,36,44349,NULL,'Nginx: Memory usage (rss)','clc93suux00004ciywh0nidxf',''),('clc93suv000ro4ciyl4dnd6dp',1,'Admin',1672319414,'192.168.64.1',2,36,44350,NULL,'Nginx: Memory usage (vsize)','clc93suux00004ciywh0nidxf',''),('clc93suv000rp4ciybi7ndzit',1,'Admin',1672319414,'192.168.64.1',2,36,44353,NULL,'PHP-FPM: CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93suv000rq4ciy3mn3wm0n',1,'Admin',1672319414,'192.168.64.1',2,36,44354,NULL,'PHP-FPM: Get process data','clc93suux00004ciywh0nidxf',''),('clc93suv000rr4ciyr3651lag',1,'Admin',1672319414,'192.168.64.1',2,36,44355,NULL,'PHP-FPM: Number of running processes','clc93suux00004ciywh0nidxf',''),('clc93suv000rs4ciyd48wfsr3',1,'Admin',1672319414,'192.168.64.1',2,36,44356,NULL,'PHP-FPM: Memory usage, %','clc93suux00004ciywh0nidxf',''),('clc93suv000rt4ciyeiicx91f',1,'Admin',1672319414,'192.168.64.1',2,36,44357,NULL,'PHP-FPM: Memory usage (rss)','clc93suux00004ciywh0nidxf',''),('clc93suv000ru4ciyaofk3fwz',1,'Admin',1672319414,'192.168.64.1',2,36,44358,NULL,'PHP-FPM: Memory usage (vsize)','clc93suux00004ciywh0nidxf',''),('clc93suvp00rv4ciyitmhhoef',1,'Admin',1672319414,'192.168.64.1',2,37,10388,NULL,'{#HOSTNAME}','clc93suux00004ciywh0nidxf',''),('clc93suvp00rw4ciy0185cz7z',1,'Admin',1672319414,'192.168.64.1',2,37,10389,NULL,'{#HOSTNAME}','clc93suux00004ciywh0nidxf',''),('clc93sv0u00rx4ciyb9anxupl',1,'Admin',1672319415,'192.168.64.1',2,15,22835,NULL,'Maximum number of opened files','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ry4ciyawhf4axj',1,'Admin',1672319415,'192.168.64.1',2,15,22836,NULL,'Maximum number of processes','clc93suux00004ciywh0nidxf',''),('clc93sv0v00rz4ciy5k7lcwy7',1,'Admin',1672319415,'192.168.64.1',2,15,22837,NULL,'Number of running processes','clc93suux00004ciywh0nidxf',''),('clc93sv0v00s04ciy6s0uoiq6',1,'Admin',1672319415,'192.168.64.1',2,15,22838,NULL,'Number of processes','clc93suux00004ciywh0nidxf',''),('clc93sv0v00s14ciynlhc2voi',1,'Admin',1672319415,'192.168.64.1',2,15,22839,NULL,'Host boot time','clc93suux00004ciywh0nidxf',''),('clc93sv0v00s24ciyahjgp5i0',1,'Admin',1672319415,'192.168.64.1',2,15,22840,NULL,'Interrupts per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00s34ciyk3oes1a2',1,'Admin',1672319415,'192.168.64.1',2,15,22841,NULL,'Processor load (15 min average per core)','clc93suux00004ciywh0nidxf',''),('clc93sv0v00s44ciyjgfnxcfn',1,'Admin',1672319415,'192.168.64.1',2,15,22842,NULL,'Processor load (1 min average per core)','clc93suux00004ciywh0nidxf',''),('clc93sv0v00s54ciydsfjoqg4',1,'Admin',1672319415,'192.168.64.1',2,15,22843,NULL,'Processor load (5 min average per core)','clc93suux00004ciywh0nidxf',''),('clc93sv0v00s64ciyothmp9ev',1,'Admin',1672319415,'192.168.64.1',2,15,22844,NULL,'Context switches per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00s74ciypppubyu3',1,'Admin',1672319415,'192.168.64.1',2,15,22845,NULL,'CPU idle time','clc93suux00004ciywh0nidxf',''),('clc93sv0v00s84ciyw1ufpj43',1,'Admin',1672319415,'192.168.64.1',2,15,22846,NULL,'CPU interrupt time','clc93suux00004ciywh0nidxf',''),('clc93sv0v00s94ciycmfbsce7',1,'Admin',1672319415,'192.168.64.1',2,15,22848,NULL,'CPU nice time','clc93suux00004ciywh0nidxf',''),('clc93sv0v00sa4ciyrgjej89u',1,'Admin',1672319415,'192.168.64.1',2,15,22851,NULL,'CPU system time','clc93suux00004ciywh0nidxf',''),('clc93sv0v00sb4ciyecjqi283',1,'Admin',1672319415,'192.168.64.1',2,15,22852,NULL,'CPU user time','clc93suux00004ciywh0nidxf',''),('clc93sv0v00sc4ciys75a7jnv',1,'Admin',1672319415,'192.168.64.1',2,15,22853,NULL,'Host name','clc93suux00004ciywh0nidxf',''),('clc93sv0v00sd4ciy3xgbbxnc',1,'Admin',1672319415,'192.168.64.1',2,15,22854,NULL,'Host local time','clc93suux00004ciywh0nidxf',''),('clc93sv0v00se4ciymv1lokny',1,'Admin',1672319415,'192.168.64.1',2,15,22855,NULL,'Free swap space','clc93suux00004ciywh0nidxf',''),('clc93sv0v00sf4ciyjpqt7auo',1,'Admin',1672319415,'192.168.64.1',2,15,22856,NULL,'Free swap space in %','clc93suux00004ciywh0nidxf',''),('clc93sv0v00sg4ciy7b61zf91',1,'Admin',1672319415,'192.168.64.1',2,15,22857,NULL,'Total swap space','clc93suux00004ciywh0nidxf',''),('clc93sv0v00sh4ciyf07mc77x',1,'Admin',1672319415,'192.168.64.1',2,15,22858,NULL,'System information','clc93suux00004ciywh0nidxf',''),('clc93sv0v00si4ciyypxyzr8r',1,'Admin',1672319415,'192.168.64.1',2,15,22859,NULL,'System uptime','clc93suux00004ciywh0nidxf',''),('clc93sv0v00sj4ciykcg1l4zk',1,'Admin',1672319415,'192.168.64.1',2,15,22860,NULL,'Number of logged in users','clc93suux00004ciywh0nidxf',''),('clc93sv0v00sk4ciys5zcdibo',1,'Admin',1672319415,'192.168.64.1',2,15,22861,NULL,'Checksum of /etc/passwd','clc93suux00004ciywh0nidxf',''),('clc93sv0v00sl4ciywax6iz8s',1,'Admin',1672319415,'192.168.64.1',2,15,22862,NULL,'Available memory','clc93suux00004ciywh0nidxf',''),('clc93sv0v00sm4ciyypa6itsh',1,'Admin',1672319415,'192.168.64.1',2,15,22863,NULL,'Total memory','clc93suux00004ciywh0nidxf',''),('clc93sv0v00sn4ciy3yvl8dng',1,'Admin',1672319415,'192.168.64.1',2,15,23649,NULL,'NNTP service is running','clc93suux00004ciywh0nidxf',''),('clc93sv0v00so4ciyd45wv32f',1,'Admin',1672319415,'192.168.64.1',2,15,23650,NULL,'NTP service is running','clc93suux00004ciywh0nidxf',''),('clc93sv0v00sp4ciynwx424l9',1,'Admin',1672319415,'192.168.64.1',2,15,23651,NULL,'POP service is running','clc93suux00004ciywh0nidxf',''),('clc93sv0v00sq4ciyf1bgnwce',1,'Admin',1672319415,'192.168.64.1',2,15,27930,NULL,'Hardware model name','clc93suux00004ciywh0nidxf',''),('clc93sv0v00sr4ciyk83mccgf',1,'Admin',1672319415,'192.168.64.1',2,15,27931,NULL,'Hardware serial number','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ss4ciyu2lua92w',1,'Admin',1672319415,'192.168.64.1',2,15,27935,NULL,'Total memory','clc93suux00004ciywh0nidxf',''),('clc93sv0v00st4ciyk66vxnsy',1,'Admin',1672319415,'192.168.64.1',2,15,27936,NULL,'CPU utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0v00su4ciyah0l7m0c',1,'Admin',1672319415,'192.168.64.1',2,15,28804,NULL,'Nginx: Get stub status page','clc93suux00004ciywh0nidxf',''),('clc93sv0v00sv4ciyvwa4b77n',1,'Admin',1672319415,'192.168.64.1',2,15,28805,NULL,'Nginx: Service response time','clc93suux00004ciywh0nidxf',''),('clc93sv0v00sw4ciyoc4j9lwg',1,'Admin',1672319415,'192.168.64.1',2,15,28810,NULL,'Nginx: Service status','clc93suux00004ciywh0nidxf',''),('clc93sv0v00sx4ciy2m9nydzy',1,'Admin',1672319415,'192.168.64.1',2,15,28811,NULL,'Nginx: Connections waiting','clc93suux00004ciywh0nidxf',''),('clc93sv0v00sy4ciyy318gzqb',1,'Admin',1672319415,'192.168.64.1',2,15,28812,NULL,'Nginx: Connections writing','clc93suux00004ciywh0nidxf',''),('clc93sv0v00sz4ciyxpg32e61',1,'Admin',1672319415,'192.168.64.1',2,15,28813,NULL,'Nginx: Connections active','clc93suux00004ciywh0nidxf',''),('clc93sv0v00t04ciycvaj1fyp',1,'Admin',1672319415,'192.168.64.1',2,15,28814,NULL,'Nginx: Connections reading','clc93suux00004ciywh0nidxf',''),('clc93sv0v00t14ciy4robx74u',1,'Admin',1672319415,'192.168.64.1',2,15,28815,NULL,'Nginx: Connections handled per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00t24ciygl96en1l',1,'Admin',1672319415,'192.168.64.1',2,15,28816,NULL,'Nginx: Connections dropped per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00t34ciyjesplu8g',1,'Admin',1672319415,'192.168.64.1',2,15,28817,NULL,'Nginx: Connections accepted per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00t44ciypjjgcivb',1,'Admin',1672319415,'192.168.64.1',2,15,28818,NULL,'Nginx: Requests per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00t54ciysny0l63x',1,'Admin',1672319415,'192.168.64.1',2,15,28819,NULL,'Nginx: Requests total','clc93suux00004ciywh0nidxf',''),('clc93sv0v00t64ciyf00k0gur',1,'Admin',1672319415,'192.168.64.1',2,15,28820,NULL,'Nginx: Version','clc93suux00004ciywh0nidxf',''),('clc93sv0v00t74ciy6npbdxam',1,'Admin',1672319415,'192.168.64.1',2,15,28821,NULL,'Nginx: Get stub status page','clc93suux00004ciywh0nidxf',''),('clc93sv0v00t84ciyzxlth641',1,'Admin',1672319415,'192.168.64.1',2,15,28822,NULL,'Nginx: Service status','clc93suux00004ciywh0nidxf',''),('clc93sv0v00t94ciymbvan85q',1,'Admin',1672319415,'192.168.64.1',2,15,28823,NULL,'Nginx: Service response time','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ta4ciytimi7ml9',1,'Admin',1672319415,'192.168.64.1',2,15,28824,NULL,'Nginx: Requests total','clc93suux00004ciywh0nidxf',''),('clc93sv0v00tb4ciyof4ih320',1,'Admin',1672319415,'192.168.64.1',2,15,28825,NULL,'Nginx: Requests per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00tc4ciyxodte5lj',1,'Admin',1672319415,'192.168.64.1',2,15,28826,NULL,'Nginx: Connections accepted per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00td4ciystea0zkt',1,'Admin',1672319415,'192.168.64.1',2,15,28827,NULL,'Nginx: Connections dropped per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00te4ciyewp5clvd',1,'Admin',1672319415,'192.168.64.1',2,15,28828,NULL,'Nginx: Connections handled per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00tf4ciyjdm2chu1',1,'Admin',1672319415,'192.168.64.1',2,15,28829,NULL,'Nginx: Connections active','clc93suux00004ciywh0nidxf',''),('clc93sv0v00tg4ciyiedgpv1s',1,'Admin',1672319415,'192.168.64.1',2,15,28830,NULL,'Nginx: Connections reading','clc93suux00004ciywh0nidxf',''),('clc93sv0v00th4ciyav7028y1',1,'Admin',1672319415,'192.168.64.1',2,15,28831,NULL,'Nginx: Connections waiting','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ti4ciyni3ss9ds',1,'Admin',1672319415,'192.168.64.1',2,15,28832,NULL,'Nginx: Connections writing','clc93suux00004ciywh0nidxf',''),('clc93sv0v00tj4ciyows9198c',1,'Admin',1672319415,'192.168.64.1',2,15,28833,NULL,'Nginx: Version','clc93suux00004ciywh0nidxf',''),('clc93sv0v00tk4ciy6wh4wk0b',1,'Admin',1672319415,'192.168.64.1',2,15,30121,NULL,'Operating system','clc93suux00004ciywh0nidxf',''),('clc93sv0v00tl4ciy81v7a8rk',1,'Admin',1672319415,'192.168.64.1',2,15,30122,NULL,'Available memory','clc93suux00004ciywh0nidxf',''),('clc93sv0v00tm4ciydo1mnjmb',1,'Admin',1672319415,'192.168.64.1',2,15,30123,NULL,'Memory utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0v00tn4ciybnkby8we',1,'Admin',1672319415,'192.168.64.1',2,15,30431,NULL,'MySQL: Version','clc93suux00004ciywh0nidxf',''),('clc93sv0v00to4ciygvlvo16m',1,'Admin',1672319415,'192.168.64.1',2,15,30432,NULL,'MySQL: Status','clc93suux00004ciywh0nidxf',''),('clc93sv0v00tp4ciyfdulluqn',1,'Admin',1672319415,'192.168.64.1',2,15,30433,NULL,'MySQL: Get status variables','clc93suux00004ciywh0nidxf',''),('clc93sv0v00tq4ciy2cu39h0d',1,'Admin',1672319415,'192.168.64.1',2,15,30434,NULL,'MySQL: Buffer pool utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0v00tr4ciy6f0bf27x',1,'Admin',1672319415,'192.168.64.1',2,15,30435,NULL,'MySQL: Buffer pool efficiency','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ts4ciy780zxeao',1,'Admin',1672319415,'192.168.64.1',2,15,30436,NULL,'MySQL: InnoDB buffer pool reads','clc93suux00004ciywh0nidxf',''),('clc93sv0v00tt4ciy4divx3xm',1,'Admin',1672319415,'192.168.64.1',2,15,30437,NULL,'MySQL: InnoDB buffer pool reads per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00tu4ciyobpqaxur',1,'Admin',1672319415,'192.168.64.1',2,15,30438,NULL,'MySQL: InnoDB row lock time','clc93suux00004ciywh0nidxf',''),('clc93sv0v00tv4ciytuvnzsyx',1,'Admin',1672319415,'192.168.64.1',2,15,30439,NULL,'MySQL: InnoDB row lock time max','clc93suux00004ciywh0nidxf',''),('clc93sv0v00tw4ciy7mo96d2b',1,'Admin',1672319415,'192.168.64.1',2,15,30440,NULL,'MySQL: InnoDB row lock waits','clc93suux00004ciywh0nidxf',''),('clc93sv0v00tx4ciyd7p61dpc',1,'Admin',1672319415,'192.168.64.1',2,15,30441,NULL,'MySQL: Max used connections','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ty4ciy1h4tcj72',1,'Admin',1672319415,'192.168.64.1',2,15,30442,NULL,'MySQL: Queries per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00tz4ciy15wafqjl',1,'Admin',1672319415,'192.168.64.1',2,15,30443,NULL,'MySQL: InnoDB buffer pool read requests','clc93suux00004ciywh0nidxf',''),('clc93sv0v00u04ciyw7udf35j',1,'Admin',1672319415,'192.168.64.1',2,15,30444,NULL,'MySQL: Questions per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00u14ciymrxkg7yz',1,'Admin',1672319415,'192.168.64.1',2,15,30445,NULL,'MySQL: Slow queries per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00u24ciyjxylwsuh',1,'Admin',1672319415,'192.168.64.1',2,15,30446,NULL,'MySQL: Threads cached','clc93suux00004ciywh0nidxf',''),('clc93sv0v00u34ciyttea5w74',1,'Admin',1672319415,'192.168.64.1',2,15,30447,NULL,'MySQL: Threads connected','clc93suux00004ciywh0nidxf',''),('clc93sv0v00u44ciyq80iqie9',1,'Admin',1672319415,'192.168.64.1',2,15,30449,NULL,'MySQL: Threads running','clc93suux00004ciywh0nidxf',''),('clc93sv0v00u54ciy7yytv95j',1,'Admin',1672319415,'192.168.64.1',2,15,30450,NULL,'MySQL: Uptime','clc93suux00004ciywh0nidxf',''),('clc93sv0v00u64ciy4402lhks',1,'Admin',1672319415,'192.168.64.1',2,15,30451,NULL,'MySQL: InnoDB buffer pool read requests per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00u74ciyypghr7ez',1,'Admin',1672319415,'192.168.64.1',2,15,30452,NULL,'MySQL: InnoDB buffer pool pages total','clc93suux00004ciywh0nidxf',''),('clc93sv0v00u84ciyywfgu1hu',1,'Admin',1672319415,'192.168.64.1',2,15,30453,NULL,'MySQL: Bytes received','clc93suux00004ciywh0nidxf',''),('clc93sv0v00u94ciyrw81yk9j',1,'Admin',1672319415,'192.168.64.1',2,15,30454,NULL,'MySQL: Connection errors max connections per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ua4ciyk4i8kcxc',1,'Admin',1672319415,'192.168.64.1',2,15,30455,NULL,'MySQL: Bytes sent','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ub4ciyh0nhfyya',1,'Admin',1672319415,'192.168.64.1',2,15,30456,NULL,'MySQL: Command Delete per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00uc4ciyuoit1mpy',1,'Admin',1672319415,'192.168.64.1',2,15,30457,NULL,'MySQL: Command Insert per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ud4ciyjlqlbmod',1,'Admin',1672319415,'192.168.64.1',2,15,30458,NULL,'MySQL: Command Select per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ue4ciyyhb669qa',1,'Admin',1672319415,'192.168.64.1',2,15,30459,NULL,'MySQL: Command Update per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00uf4ciy3z27upv0',1,'Admin',1672319415,'192.168.64.1',2,15,30460,NULL,'MySQL: Connection errors accept per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ug4ciy573mcrdp',1,'Admin',1672319415,'192.168.64.1',2,15,30461,NULL,'MySQL: Connection errors internal per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00uh4ciyt0j1py29',1,'Admin',1672319415,'192.168.64.1',2,15,30462,NULL,'MySQL: Connection errors peer address per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ui4ciy0bov0kd4',1,'Admin',1672319415,'192.168.64.1',2,15,30463,NULL,'MySQL: InnoDB buffer pool pages free','clc93suux00004ciywh0nidxf',''),('clc93sv0v00uj4ciyavw4qzn7',1,'Admin',1672319415,'192.168.64.1',2,15,30464,NULL,'MySQL: Connection errors select per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00uk4ciyiuev4jhk',1,'Admin',1672319415,'192.168.64.1',2,15,30465,NULL,'MySQL: Connection errors tcpwrap per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ul4ciy88a64n9z',1,'Admin',1672319415,'192.168.64.1',2,15,30466,NULL,'MySQL: Connections per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00um4ciy9d10fcbi',1,'Admin',1672319415,'192.168.64.1',2,15,30470,NULL,'MySQL: Aborted connections per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00un4ciyf5s69eek',1,'Admin',1672319415,'192.168.64.1',2,15,30471,NULL,'MySQL: Aborted clients per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00uo4ciysacnfefn',1,'Admin',1672319415,'192.168.64.1',2,15,30479,NULL,'MySQL: Get status variables','clc93suux00004ciywh0nidxf',''),('clc93sv0v00up4ciyh0p57q1w',1,'Admin',1672319415,'192.168.64.1',2,15,30480,NULL,'MySQL: Version','clc93suux00004ciywh0nidxf',''),('clc93sv0v00uq4ciyu63fktfz',1,'Admin',1672319415,'192.168.64.1',2,15,30481,NULL,'MySQL: Status','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ur4ciymxolltwk',1,'Admin',1672319415,'192.168.64.1',2,15,30482,NULL,'MySQL: Buffer pool efficiency','clc93suux00004ciywh0nidxf',''),('clc93sv0v00us4ciyac1hhvn5',1,'Admin',1672319415,'192.168.64.1',2,15,30483,NULL,'MySQL: Buffer pool utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ut4ciyjr0ou91e',1,'Admin',1672319415,'192.168.64.1',2,15,30484,NULL,'MySQL: InnoDB row lock waits','clc93suux00004ciywh0nidxf',''),('clc93sv0v00uu4ciyawukfz28',1,'Admin',1672319415,'192.168.64.1',2,15,30485,NULL,'MySQL: InnoDB buffer pool read requests','clc93suux00004ciywh0nidxf',''),('clc93sv0v00uv4ciy8h7h1em1',1,'Admin',1672319415,'192.168.64.1',2,15,30486,NULL,'MySQL: InnoDB buffer pool read requests per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00uw4ciy7vksalz0',1,'Admin',1672319415,'192.168.64.1',2,15,30487,NULL,'MySQL: InnoDB buffer pool reads','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ux4ciykrtdavfi',1,'Admin',1672319415,'192.168.64.1',2,15,30488,NULL,'MySQL: InnoDB buffer pool reads per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00uy4ciy3kvtbrl7',1,'Admin',1672319415,'192.168.64.1',2,15,30489,NULL,'MySQL: InnoDB row lock time','clc93suux00004ciywh0nidxf',''),('clc93sv0v00uz4ciy2bl6m2q5',1,'Admin',1672319415,'192.168.64.1',2,15,30490,NULL,'MySQL: InnoDB row lock time max','clc93suux00004ciywh0nidxf',''),('clc93sv0v00v04ciynnx2c26i',1,'Admin',1672319415,'192.168.64.1',2,15,30491,NULL,'MySQL: Queries per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00v14ciyz322mwts',1,'Admin',1672319415,'192.168.64.1',2,15,30492,NULL,'MySQL: Max used connections','clc93suux00004ciywh0nidxf',''),('clc93sv0v00v24ciygdjsglze',1,'Admin',1672319415,'192.168.64.1',2,15,30493,NULL,'MySQL: InnoDB buffer pool pages free','clc93suux00004ciywh0nidxf',''),('clc93sv0v00v34ciy4u14lo5a',1,'Admin',1672319415,'192.168.64.1',2,15,30494,NULL,'MySQL: Questions per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00v44ciykxr2x8p1',1,'Admin',1672319415,'192.168.64.1',2,15,30495,NULL,'MySQL: Slow queries per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00v54ciymbcenpg7',1,'Admin',1672319415,'192.168.64.1',2,15,30496,NULL,'MySQL: Threads cached','clc93suux00004ciywh0nidxf',''),('clc93sv0v00v64ciyq84c6ipk',1,'Admin',1672319415,'192.168.64.1',2,15,30497,NULL,'MySQL: Threads connected','clc93suux00004ciywh0nidxf',''),('clc93sv0v00v74ciypa31f35l',1,'Admin',1672319415,'192.168.64.1',2,15,30499,NULL,'MySQL: Threads running','clc93suux00004ciywh0nidxf',''),('clc93sv0v00v84ciyrrfqo5u8',1,'Admin',1672319415,'192.168.64.1',2,15,30500,NULL,'MySQL: InnoDB buffer pool pages total','clc93suux00004ciywh0nidxf',''),('clc93sv0v00v94ciybb55fzxp',1,'Admin',1672319415,'192.168.64.1',2,15,30503,NULL,'MySQL: Command Select per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00va4ciyh5g13d9l',1,'Admin',1672319415,'192.168.64.1',2,15,30504,NULL,'MySQL: Aborted clients per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vb4ciyeq7hrzhq',1,'Admin',1672319415,'192.168.64.1',2,15,30505,NULL,'MySQL: Aborted connections per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vc4ciyy4j0m5co',1,'Admin',1672319415,'192.168.64.1',2,15,30506,NULL,'MySQL: Bytes received','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vd4ciyn09z6gl2',1,'Admin',1672319415,'192.168.64.1',2,15,30507,NULL,'MySQL: Bytes sent','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ve4ciyw4qw1ns8',1,'Admin',1672319415,'192.168.64.1',2,15,30508,NULL,'MySQL: Command Delete per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vf4ciy58t3wurd',1,'Admin',1672319415,'192.168.64.1',2,15,30509,NULL,'MySQL: Command Insert per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vg4ciyulea3env',1,'Admin',1672319415,'192.168.64.1',2,15,30510,NULL,'MySQL: Command Update per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vh4ciyt0j1dckc',1,'Admin',1672319415,'192.168.64.1',2,15,30512,NULL,'MySQL: Connection errors accept per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vi4ciy4eeqxf8k',1,'Admin',1672319415,'192.168.64.1',2,15,30513,NULL,'MySQL: Connection errors internal per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vj4ciyqcxmfzxh',1,'Admin',1672319415,'192.168.64.1',2,15,30514,NULL,'MySQL: Connection errors max connections per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vk4ciyz7ilki8s',1,'Admin',1672319415,'192.168.64.1',2,15,30515,NULL,'MySQL: Connection errors peer address per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vl4ciywchaeosc',1,'Admin',1672319415,'192.168.64.1',2,15,30516,NULL,'MySQL: Connection errors select per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vm4ciy6dckk813',1,'Admin',1672319415,'192.168.64.1',2,15,30517,NULL,'MySQL: Connection errors tcpwrap per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vn4ciyj4tabnsl',1,'Admin',1672319415,'192.168.64.1',2,15,30518,NULL,'MySQL: Connections per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vo4ciyjjlfzd2q',1,'Admin',1672319415,'192.168.64.1',2,15,30519,NULL,'MySQL: Uptime','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vp4ciy58vyqklg',1,'Admin',1672319415,'192.168.64.1',2,15,30637,NULL,'MySQL: Version','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vq4ciyafm7n0ow',1,'Admin',1672319415,'192.168.64.1',2,15,30638,NULL,'MySQL: Status','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vr4ciyrzm0nr9s',1,'Admin',1672319415,'192.168.64.1',2,15,30639,NULL,'MySQL: Get status variables','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vs4ciyy6nryxg3',1,'Admin',1672319415,'192.168.64.1',2,15,30640,NULL,'MySQL: Buffer pool utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vt4ciyfkq8m0vo',1,'Admin',1672319415,'192.168.64.1',2,15,30641,NULL,'MySQL: Buffer pool efficiency','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vu4ciybxjzufqo',1,'Admin',1672319415,'192.168.64.1',2,15,30642,NULL,'MySQL: InnoDB buffer pool reads','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vv4ciyqoja55rj',1,'Admin',1672319415,'192.168.64.1',2,15,30643,NULL,'MySQL: InnoDB buffer pool reads per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vw4ciy11jr9d91',1,'Admin',1672319415,'192.168.64.1',2,15,30644,NULL,'MySQL: InnoDB row lock time','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vx4ciy90kgnl9s',1,'Admin',1672319415,'192.168.64.1',2,15,30645,NULL,'MySQL: InnoDB row lock time max','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vy4ciybx95c9jm',1,'Admin',1672319415,'192.168.64.1',2,15,30646,NULL,'MySQL: InnoDB row lock waits','clc93suux00004ciywh0nidxf',''),('clc93sv0v00vz4ciyuxdqyi7w',1,'Admin',1672319415,'192.168.64.1',2,15,30647,NULL,'MySQL: Max used connections','clc93suux00004ciywh0nidxf',''),('clc93sv0v00w04ciyxmlzwj6m',1,'Admin',1672319415,'192.168.64.1',2,15,30648,NULL,'MySQL: Queries per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00w14ciy9woxrayz',1,'Admin',1672319415,'192.168.64.1',2,15,30649,NULL,'MySQL: InnoDB buffer pool read requests','clc93suux00004ciywh0nidxf',''),('clc93sv0v00w24ciy4kmdq7z7',1,'Admin',1672319415,'192.168.64.1',2,15,30650,NULL,'MySQL: Questions per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00w34ciyay60etq8',1,'Admin',1672319415,'192.168.64.1',2,15,30651,NULL,'MySQL: Slow queries per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00w44ciysj9zxs5w',1,'Admin',1672319415,'192.168.64.1',2,15,30652,NULL,'MySQL: Threads cached','clc93suux00004ciywh0nidxf',''),('clc93sv0v00w54ciy8ahsfc07',1,'Admin',1672319415,'192.168.64.1',2,15,30653,NULL,'MySQL: Threads connected','clc93suux00004ciywh0nidxf',''),('clc93sv0v00w64ciyn99tkm90',1,'Admin',1672319415,'192.168.64.1',2,15,30655,NULL,'MySQL: Threads running','clc93suux00004ciywh0nidxf',''),('clc93sv0v00w74ciy0cx5v5qn',1,'Admin',1672319415,'192.168.64.1',2,15,30656,NULL,'MySQL: Uptime','clc93suux00004ciywh0nidxf',''),('clc93sv0v00w84ciy5v24px6y',1,'Admin',1672319415,'192.168.64.1',2,15,30657,NULL,'MySQL: InnoDB buffer pool read requests per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00w94ciypg5adfnz',1,'Admin',1672319415,'192.168.64.1',2,15,30658,NULL,'MySQL: InnoDB buffer pool pages total','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wa4ciygd9qsz2e',1,'Admin',1672319415,'192.168.64.1',2,15,30659,NULL,'MySQL: Bytes received','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wb4ciytktpo15b',1,'Admin',1672319415,'192.168.64.1',2,15,30660,NULL,'MySQL: Connection errors max connections per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wc4ciybhadz9zx',1,'Admin',1672319415,'192.168.64.1',2,15,30661,NULL,'MySQL: Bytes sent','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wd4ciyyzaccirp',1,'Admin',1672319415,'192.168.64.1',2,15,30662,NULL,'MySQL: Command Delete per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00we4ciyb16tj2vp',1,'Admin',1672319415,'192.168.64.1',2,15,30663,NULL,'MySQL: Command Insert per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wf4ciyhrx86lv4',1,'Admin',1672319415,'192.168.64.1',2,15,30664,NULL,'MySQL: Command Select per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wg4ciym4x6buh6',1,'Admin',1672319415,'192.168.64.1',2,15,30665,NULL,'MySQL: Command Update per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wh4ciyydphrl5p',1,'Admin',1672319415,'192.168.64.1',2,15,30666,NULL,'MySQL: Connection errors accept per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wi4ciyjlcdw8ug',1,'Admin',1672319415,'192.168.64.1',2,15,30667,NULL,'MySQL: Connection errors internal per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wj4ciy8hsdttj7',1,'Admin',1672319415,'192.168.64.1',2,15,30668,NULL,'MySQL: Connection errors peer address per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wk4ciy53ghcb8f',1,'Admin',1672319415,'192.168.64.1',2,15,30669,NULL,'MySQL: InnoDB buffer pool pages free','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wl4ciy63erzq2s',1,'Admin',1672319415,'192.168.64.1',2,15,30670,NULL,'MySQL: Connection errors select per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wm4ciydkzqs76m',1,'Admin',1672319415,'192.168.64.1',2,15,30671,NULL,'MySQL: Connection errors tcpwrap per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wn4ciyug3wsmag',1,'Admin',1672319415,'192.168.64.1',2,15,30672,NULL,'MySQL: Connections per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wo4ciywhoftvr2',1,'Admin',1672319415,'192.168.64.1',2,15,30676,NULL,'MySQL: Aborted connections per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wp4ciy9e5v5erb',1,'Admin',1672319415,'192.168.64.1',2,15,30677,NULL,'MySQL: Aborted clients per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wq4ciyy2o9jtr5',1,'Admin',1672319415,'192.168.64.1',2,15,31055,NULL,'MSSQL: Get performance counters','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wr4ciyk3ky8ohw',1,'Admin',1672319415,'192.168.64.1',2,15,31056,NULL,'MSSQL: Total average wait time','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ws4ciy2qkz13qu',1,'Admin',1672319415,'192.168.64.1',2,15,31057,NULL,'MSSQL: Service\'s TCP port state','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wt4ciyz9pusuda',1,'Admin',1672319415,'192.168.64.1',2,15,31058,NULL,'MSSQL: Average latch wait time','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wu4ciyc4eo360m',1,'Admin',1672319415,'192.168.64.1',2,15,31059,NULL,'MSSQL: Average latch wait time base','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wv4ciyh2oall4i',1,'Admin',1672319415,'192.168.64.1',2,15,31060,NULL,'MSSQL: Table lock escalations per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ww4ciy3bvs57h4',1,'Admin',1672319415,'192.168.64.1',2,15,31061,NULL,'MSSQL: Memory grants pending','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wx4ciyuz3mrbim',1,'Admin',1672319415,'192.168.64.1',2,15,31062,NULL,'MSSQL: Total lock requests per second that have deadlocks','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wy4ciyswofeszt',1,'Admin',1672319415,'192.168.64.1',2,15,31063,NULL,'MSSQL: Errors per second (DB offline errors)','clc93suux00004ciywh0nidxf',''),('clc93sv0v00wz4ciybd70twn0',1,'Admin',1672319415,'192.168.64.1',2,15,31064,NULL,'MSSQL: Page life expectancy','clc93suux00004ciywh0nidxf',''),('clc93sv0v00x04ciyevndc2t7',1,'Admin',1672319415,'192.168.64.1',2,15,31065,NULL,'MSSQL: Page lookups per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00x14ciy27umxv92',1,'Admin',1672319415,'192.168.64.1',2,15,31066,NULL,'MSSQL: Page reads per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00x24ciywfcbx1x9',1,'Admin',1672319415,'192.168.64.1',2,15,31067,NULL,'MSSQL: Page splits per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00x34ciyw5jc5wuu',1,'Admin',1672319415,'192.168.64.1',2,15,31068,NULL,'MSSQL: Page writes per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00x44ciykj0mmzdr',1,'Admin',1672319415,'192.168.64.1',2,15,31069,NULL,'MSSQL: Number of blocked processes','clc93suux00004ciywh0nidxf',''),('clc93sv0v00x54ciy4rbwxb5x',1,'Admin',1672319415,'192.168.64.1',2,15,31070,NULL,'MSSQL: Read-ahead pages per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00x64ciy8yfv1i7k',1,'Admin',1672319415,'192.168.64.1',2,15,31071,NULL,'MSSQL: Safe auto-params per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00x74ciy93808bng',1,'Admin',1672319415,'192.168.64.1',2,15,31072,NULL,'MSSQL: SQL compilations per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00x84ciy7odps5qc',1,'Admin',1672319415,'192.168.64.1',2,15,31073,NULL,'MSSQL: SQL re-compilations per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00x94ciym5k3xzpn',1,'Admin',1672319415,'192.168.64.1',2,15,31074,NULL,'MSSQL: Target pages','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xa4ciyfzqt3ibk',1,'Admin',1672319415,'192.168.64.1',2,15,31075,NULL,'MSSQL: Maximum workspace memory','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xb4ciy7la0nfmr',1,'Admin',1672319415,'192.168.64.1',2,15,31076,NULL,'MSSQL: Target server memory','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xc4ciybb11uexw',1,'Admin',1672319415,'192.168.64.1',2,15,31077,NULL,'MSSQL: Total latch wait Time','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xd4ciy2cfcsa70',1,'Admin',1672319415,'192.168.64.1',2,15,31078,NULL,'MSSQL: Total server memory','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xe4ciyh3hpagyz',1,'Admin',1672319415,'192.168.64.1',2,15,31079,NULL,'MSSQL: Total transactions number','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xf4ciyi0x325iu',1,'Admin',1672319415,'192.168.64.1',2,15,31080,NULL,'MSSQL: Total transactions per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xg4ciystru5wk6',1,'Admin',1672319415,'192.168.64.1',2,15,31081,NULL,'MSSQL: Unsafe auto-params per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xh4ciyjemqr2hb',1,'Admin',1672319415,'192.168.64.1',2,15,31082,NULL,'MSSQL: Uptime','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xi4ciypcbik3fn',1,'Admin',1672319415,'192.168.64.1',2,15,31083,NULL,'MSSQL: Number users connected','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xj4ciyqhk3wjul',1,'Admin',1672319415,'192.168.64.1',2,15,31084,NULL,'MSSQL: Errors per second (User errors)','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xk4ciyy5hk1a9t',1,'Admin',1672319415,'192.168.64.1',2,15,31085,NULL,'MSSQL: Version','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xl4ciyl4qcfr6u',1,'Admin',1672319415,'192.168.64.1',2,15,31086,NULL,'MSSQL: Work files created per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xm4ciycareymcf',1,'Admin',1672319415,'192.168.64.1',2,15,31087,NULL,'MSSQL: Work tables created per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xn4ciyzd26upm0',1,'Admin',1672319415,'192.168.64.1',2,15,31088,NULL,'MSSQL: Worktables from cache ratio','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xo4ciyfo62totp',1,'Admin',1672319415,'192.168.64.1',2,15,31089,NULL,'MSSQL: Memory grants outstanding','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xp4ciym4xb580d',1,'Admin',1672319415,'192.168.64.1',2,15,31090,NULL,'MSSQL: Logouts per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xq4ciymvj23wka',1,'Admin',1672319415,'192.168.64.1',2,15,31091,NULL,'MSSQL: Average latch wait time raw','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xr4ciyq1hw4zg3',1,'Admin',1672319415,'192.168.64.1',2,15,31092,NULL,'MSSQL: Forwarded records per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xs4ciyeh2saqvp',1,'Admin',1672319415,'192.168.64.1',2,15,31093,NULL,'MSSQL: Total average wait time base','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xt4ciyw2xxi1v9',1,'Admin',1672319415,'192.168.64.1',2,15,31094,NULL,'MSSQL: Total average wait time raw','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xu4ciy2i33l510',1,'Admin',1672319415,'192.168.64.1',2,15,31095,NULL,'MSSQL: Batch requests per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xv4ciybi8hl15b',1,'Admin',1672319415,'192.168.64.1',2,15,31096,NULL,'MSSQL: Buffer cache hit ratio','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xw4ciyzgtht7k4',1,'Admin',1672319415,'192.168.64.1',2,15,31097,NULL,'MSSQL: Cache hit ratio','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xx4ciyxrz6dbj0',1,'Admin',1672319415,'192.168.64.1',2,15,31098,NULL,'MSSQL: Cache object counts','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xy4ciy0o30tu4c',1,'Admin',1672319415,'192.168.64.1',2,15,31099,NULL,'MSSQL: Cache objects in use','clc93suux00004ciywh0nidxf',''),('clc93sv0v00xz4ciyw3wlkdka',1,'Admin',1672319415,'192.168.64.1',2,15,31100,NULL,'MSSQL: Cache pages','clc93suux00004ciywh0nidxf',''),('clc93sv0v00y04ciy8540ebyj',1,'Admin',1672319415,'192.168.64.1',2,15,31101,NULL,'MSSQL: Checkpoint pages per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00y14ciyfbslcy0r',1,'Admin',1672319415,'192.168.64.1',2,15,31102,NULL,'MSSQL: Total data file size','clc93suux00004ciywh0nidxf',''),('clc93sv0v00y24ciyq0blbjnx',1,'Admin',1672319415,'192.168.64.1',2,15,31103,NULL,'MSSQL: Database pages','clc93suux00004ciywh0nidxf',''),('clc93sv0v00y34ciy6ojgcc90',1,'Admin',1672319415,'192.168.64.1',2,15,31104,NULL,'MSSQL: Total errors per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00y44ciyrkm0wgrs',1,'Admin',1672319415,'192.168.64.1',2,15,31105,NULL,'MSSQL: Failed auto-params per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00y54ciyewtumbuj',1,'Admin',1672319415,'192.168.64.1',2,15,31106,NULL,'MSSQL: Free list stalls per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00y64ciyul7dcwbq',1,'Admin',1672319415,'192.168.64.1',2,15,31107,NULL,'MSSQL: Logins per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00y74ciylgvtzigi',1,'Admin',1672319415,'192.168.64.1',2,15,31108,NULL,'MSSQL: Full scans per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00y84ciyh2t2w66p',1,'Admin',1672319415,'192.168.64.1',2,15,31109,NULL,'MSSQL: Granted Workspace Memory','clc93suux00004ciywh0nidxf',''),('clc93sv0v00y94ciybcx6h75w',1,'Admin',1672319415,'192.168.64.1',2,15,31110,NULL,'MSSQL: Index searches per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ya4ciyv0172jm5',1,'Admin',1672319415,'192.168.64.1',2,15,31111,NULL,'MSSQL: Errors per second (Info errors)','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yb4ciy6m36rp4g',1,'Admin',1672319415,'192.168.64.1',2,15,31112,NULL,'MSSQL: Errors per second (Kill connection errors)','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yc4ciyfhj3svji',1,'Admin',1672319415,'192.168.64.1',2,15,31113,NULL,'MSSQL: Latch waits per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yd4ciyy8iodw4u',1,'Admin',1672319415,'192.168.64.1',2,15,31114,NULL,'MSSQL: Lazy writes per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ye4ciy3xmb3ll6',1,'Admin',1672319415,'192.168.64.1',2,15,31115,NULL,'MSSQL: Total lock requests per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yf4ciyu2yu18bc',1,'Admin',1672319415,'192.168.64.1',2,15,31116,NULL,'MSSQL: Total lock requests per second that timed out','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yg4ciy4e7igs46',1,'Admin',1672319415,'192.168.64.1',2,15,31117,NULL,'MSSQL: Lock wait time','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yh4ciyv7wg0swd',1,'Admin',1672319415,'192.168.64.1',2,15,31118,NULL,'MSSQL: Total lock requests per second that required waiting','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yi4ciyzqy0mw1b',1,'Admin',1672319415,'192.168.64.1',2,15,31119,NULL,'MSSQL: Total log file size','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yj4ciyxgelruf1',1,'Admin',1672319415,'192.168.64.1',2,15,31120,NULL,'MSSQL: Auto-param attempts per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yk4ciyo77xw24p',1,'Admin',1672319415,'192.168.64.1',2,15,31121,NULL,'MSSQL: Total log file used size','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yl4ciy9jzwbl3m',1,'Admin',1672319415,'192.168.64.1',2,15,31168,NULL,'MySQL: Threads created per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ym4ciykj2qywl7',1,'Admin',1672319415,'192.168.64.1',2,15,31169,NULL,'MySQL: Created tmp tables on disk per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yn4ciy2ttbzsny',1,'Admin',1672319415,'192.168.64.1',2,15,31170,NULL,'MySQL: Created tmp files on disk per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yo4ciycukq8kw6',1,'Admin',1672319415,'192.168.64.1',2,15,31171,NULL,'MySQL: Created tmp tables on memory per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yp4ciy1u3p0mo5',1,'Admin',1672319415,'192.168.64.1',2,15,31172,NULL,'MySQL: Threads created per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yq4ciytgsy7w4r',1,'Admin',1672319415,'192.168.64.1',2,15,31173,NULL,'MySQL: Created tmp tables on disk per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yr4ciya58orlrr',1,'Admin',1672319415,'192.168.64.1',2,15,31174,NULL,'MySQL: Created tmp files on disk per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ys4ciy019du9kz',1,'Admin',1672319415,'192.168.64.1',2,15,31175,NULL,'MySQL: Created tmp tables on memory per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yt4ciyzrnlr0he',1,'Admin',1672319415,'192.168.64.1',2,15,31176,NULL,'MySQL: Threads created per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yu4ciyfwa1vy3l',1,'Admin',1672319415,'192.168.64.1',2,15,31177,NULL,'MySQL: Created tmp tables on disk per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yv4ciyzc2eaeue',1,'Admin',1672319415,'192.168.64.1',2,15,31178,NULL,'MySQL: Created tmp tables on memory per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yw4ciyo12d45kl',1,'Admin',1672319415,'192.168.64.1',2,15,31179,NULL,'MySQL: Created tmp files on disk per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yx4ciy2ey48o28',1,'Admin',1672319415,'192.168.64.1',2,15,31180,NULL,'Oracle: Get archive log info','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yy4ciyet2wbes2',1,'Admin',1672319415,'192.168.64.1',2,15,31181,NULL,'Oracle: Get tablespaces stats','clc93suux00004ciywh0nidxf',''),('clc93sv0v00yz4ciyz1toq29d',1,'Admin',1672319415,'192.168.64.1',2,15,31182,NULL,'Oracle: Get ASM stats','clc93suux00004ciywh0nidxf',''),('clc93sv0v00z04ciybqnfa3p8',1,'Admin',1672319415,'192.168.64.1',2,15,31183,NULL,'Oracle: Service\'s TCP port state','clc93suux00004ciywh0nidxf',''),('clc93sv0v00z14ciy20uyae91',1,'Admin',1672319415,'192.168.64.1',2,15,31184,NULL,'Oracle: Number of LISTENER processes','clc93suux00004ciywh0nidxf',''),('clc93sv0v00z24ciygv38kyz1',1,'Admin',1672319415,'192.168.64.1',2,15,31185,NULL,'Oracle: Get system metrics','clc93suux00004ciywh0nidxf',''),('clc93sv0v00z34ciygdqxerr3',1,'Admin',1672319415,'192.168.64.1',2,15,31186,NULL,'Oracle: Get CDB and No-CDB info','clc93suux00004ciywh0nidxf',''),('clc93sv0v00z44ciyywyyeyfl',1,'Admin',1672319415,'192.168.64.1',2,15,31187,NULL,'Oracle: Get PDB info','clc93suux00004ciywh0nidxf',''),('clc93sv0v00z54ciyuy0mydrr',1,'Admin',1672319415,'192.168.64.1',2,15,31188,NULL,'Oracle: Get instance state','clc93suux00004ciywh0nidxf',''),('clc93sv0v00z64ciyelzri6h6',1,'Admin',1672319415,'192.168.64.1',2,15,31189,NULL,'Oracle: Version','clc93suux00004ciywh0nidxf',''),('clc93sv0v00z74ciyrtps05uw',1,'Admin',1672319415,'192.168.64.1',2,15,31190,NULL,'Oracle: Sessions lock rate','clc93suux00004ciywh0nidxf',''),('clc93sv0v00z84ciyt4ygd6ve',1,'Admin',1672319415,'192.168.64.1',2,15,31191,NULL,'Oracle: Physical writes per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00z94ciyjpc5lswl',1,'Admin',1672319415,'192.168.64.1',2,15,31192,NULL,'Oracle: Number of processes','clc93suux00004ciywh0nidxf',''),('clc93sv0v00za4ciyi4cbu1ff',1,'Admin',1672319415,'192.168.64.1',2,15,31193,NULL,'Oracle: Processes limit','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zb4ciy1f5o6ebz',1,'Admin',1672319415,'192.168.64.1',2,15,31194,NULL,'Oracle: Redo logs available to switch','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zc4ciyv61xoool',1,'Admin',1672319415,'192.168.64.1',2,15,31195,NULL,'Oracle: Rows per sort','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zd4ciyig0ctq3w',1,'Admin',1672319415,'192.168.64.1',2,15,31196,NULL,'Oracle: SQL service response time','clc93suux00004ciywh0nidxf',''),('clc93sv0v00ze4ciyqkau9ej4',1,'Admin',1672319415,'192.168.64.1',2,15,31197,NULL,'Oracle: Active background sessions','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zf4ciyrwus5q0k',1,'Admin',1672319415,'192.168.64.1',2,15,31198,NULL,'Oracle: Active user sessions','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zg4ciy3lgpq29m',1,'Admin',1672319415,'192.168.64.1',2,15,31199,NULL,'Oracle: Sessions concurrency','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zh4ciyiy7trhy8',1,'Admin',1672319415,'192.168.64.1',2,15,31200,NULL,'Oracle: Session count','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zi4ciyy9nxqxsd',1,'Admin',1672319415,'192.168.64.1',2,15,31201,NULL,'Oracle: Inactive user sessions','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zj4ciyqfo5elax',1,'Admin',1672319415,'192.168.64.1',2,15,31202,NULL,'Oracle: Sessions limit','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zk4ciysdlrp720',1,'Admin',1672319415,'192.168.64.1',2,15,31203,NULL,'Oracle: Sessions locked over {$ORACLE.SESSION.LOCK.MAX.TIME}s','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zl4ciyy6djrfst',1,'Admin',1672319415,'192.168.64.1',2,15,31204,NULL,'Oracle: User rollbacks per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zm4ciy0rkezbn5',1,'Admin',1672319415,'192.168.64.1',2,15,31205,NULL,'Oracle: SGA, buffer cache','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zn4ciyrp5k6o1c',1,'Admin',1672319415,'192.168.64.1',2,15,31206,NULL,'Oracle: Physical writes bytes per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zo4ciy32h6dik9',1,'Admin',1672319415,'192.168.64.1',2,15,31207,NULL,'Oracle: SGA, java pool','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zp4ciyb56h9low',1,'Admin',1672319415,'192.168.64.1',2,15,31208,NULL,'Oracle: SGA, large pool','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zq4ciygsag1d4h',1,'Admin',1672319415,'192.168.64.1',2,15,31209,NULL,'Oracle: SGA, log buffer','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zr4ciy7doz8p0s',1,'Admin',1672319415,'192.168.64.1',2,15,31210,NULL,'Oracle: SGA, shared pool','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zs4ciyguyi3n72',1,'Admin',1672319415,'192.168.64.1',2,15,31211,NULL,'Oracle: Shared pool free %','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zt4ciye0duysk6',1,'Admin',1672319415,'192.168.64.1',2,15,31212,NULL,'Oracle: Total sorts per user call','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zu4ciy0rps4miu',1,'Admin',1672319415,'192.168.64.1',2,15,31213,NULL,'Oracle: Temp space used','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zv4ciy44u3fmhb',1,'Admin',1672319415,'192.168.64.1',2,15,31214,NULL,'Oracle: PGA, Total allocated','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zw4ciy7esb1rya',1,'Admin',1672319415,'192.168.64.1',2,15,31215,NULL,'Oracle: PGA, Total freeable','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zx4ciysf5g7peq',1,'Admin',1672319415,'192.168.64.1',2,15,31216,NULL,'Oracle: PGA, Total inuse','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zy4ciytv42q2zx',1,'Admin',1672319415,'192.168.64.1',2,15,31217,NULL,'Oracle: Uptime','clc93suux00004ciywh0nidxf',''),('clc93sv0v00zz4ciysc3ztavt',1,'Admin',1672319415,'192.168.64.1',2,15,31218,NULL,'Oracle: User \'{$ORACLE.USER}\' expire password','clc93suux00004ciywh0nidxf',''),('clc93sv0v01004ciyhbdpm6t0',1,'Admin',1672319415,'192.168.64.1',2,15,31219,NULL,'Oracle: SGA, fixed','clc93suux00004ciywh0nidxf',''),('clc93sv0v01014ciyhja11mmb',1,'Admin',1672319415,'192.168.64.1',2,15,31220,NULL,'Oracle: Physical reads bytes per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v01024ciy732o27sl',1,'Admin',1672319415,'192.168.64.1',2,15,31221,NULL,'Oracle: Physical reads per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v01034ciyz7d474rp',1,'Admin',1672319415,'192.168.64.1',2,15,31222,NULL,'Oracle: Enqueue timeouts per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v01044ciys0jpmfsc',1,'Admin',1672319415,'192.168.64.1',2,15,31223,NULL,'Oracle: Active parallel sessions','clc93suux00004ciywh0nidxf',''),('clc93sv0v01054ciylnr6krpv',1,'Admin',1672319415,'192.168.64.1',2,15,31224,NULL,'Oracle: Active serial sessions','clc93suux00004ciywh0nidxf',''),('clc93sv0v01064ciyb07jfb4d',1,'Admin',1672319415,'192.168.64.1',2,15,31225,NULL,'Oracle: Average active sessions','clc93suux00004ciywh0nidxf',''),('clc93sv0v01074ciyx88r4h2a',1,'Admin',1672319415,'192.168.64.1',2,15,31226,NULL,'Oracle: Archiver state','clc93suux00004ciywh0nidxf',''),('clc93sv0v01084ciy2ilcpag3',1,'Admin',1672319415,'192.168.64.1',2,15,31227,NULL,'Oracle: Buffer cache hit ratio','clc93suux00004ciywh0nidxf',''),('clc93sv0v01094ciyxec78kwj',1,'Admin',1672319415,'192.168.64.1',2,15,31228,NULL,'Oracle: Global cache blocks corrupted','clc93suux00004ciywh0nidxf',''),('clc93sv0v010a4ciymshufkpm',1,'Admin',1672319415,'192.168.64.1',2,15,31229,NULL,'Oracle: Global cache blocks lost','clc93suux00004ciywh0nidxf',''),('clc93sv0v010b4ciyvocf704q',1,'Admin',1672319415,'192.168.64.1',2,15,31230,NULL,'Oracle: Cursor cache hit ratio','clc93suux00004ciywh0nidxf',''),('clc93sv0v010c4ciyezy2qmea',1,'Admin',1672319415,'192.168.64.1',2,15,31231,NULL,'Oracle: Database CPU time ratio','clc93suux00004ciywh0nidxf',''),('clc93sv0v010d4ciysgpyps59',1,'Admin',1672319415,'192.168.64.1',2,15,31232,NULL,'Oracle: Database wait time ratio','clc93suux00004ciywh0nidxf',''),('clc93sv0v010e4ciy8zizd7tt',1,'Admin',1672319415,'192.168.64.1',2,15,31233,NULL,'Oracle: Datafiles count','clc93suux00004ciywh0nidxf',''),('clc93sv0v010f4ciy5oaxr4cj',1,'Admin',1672319415,'192.168.64.1',2,15,31234,NULL,'Oracle: Datafiles limit','clc93suux00004ciywh0nidxf',''),('clc93sv0v010g4ciy0g062ub6',1,'Admin',1672319415,'192.168.64.1',2,15,31235,NULL,'Oracle: Disk sort per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v010h4ciy19ds7maj',1,'Admin',1672319415,'192.168.64.1',2,15,31236,NULL,'Oracle: FRA, Number of files','clc93suux00004ciywh0nidxf',''),('clc93sv0v010i4ciyh8pa856w',1,'Admin',1672319415,'192.168.64.1',2,15,31237,NULL,'Oracle: PGA, Aggregate target parameter','clc93suux00004ciywh0nidxf',''),('clc93sv0v010j4ciy6ar18uez',1,'Admin',1672319415,'192.168.64.1',2,15,31238,NULL,'Oracle: FRA, Number of restore points','clc93suux00004ciywh0nidxf',''),('clc93sv0v010k4ciyfe7e1vmm',1,'Admin',1672319415,'192.168.64.1',2,15,31239,NULL,'Oracle: FRA, Space limit','clc93suux00004ciywh0nidxf',''),('clc93sv0v010l4ciy81ya8vld',1,'Admin',1672319415,'192.168.64.1',2,15,31240,NULL,'Oracle: FRA, Space reclaimable','clc93suux00004ciywh0nidxf',''),('clc93sv0v010m4ciy58zqq8ct',1,'Admin',1672319415,'192.168.64.1',2,15,31241,NULL,'Oracle: FRA, Used space','clc93suux00004ciywh0nidxf',''),('clc93sv0v010n4ciyxafhiopk',1,'Admin',1672319415,'192.168.64.1',2,15,31242,NULL,'Oracle: FRA, Usable space in %','clc93suux00004ciywh0nidxf',''),('clc93sv0v010o4ciyad140iw3',1,'Admin',1672319415,'192.168.64.1',2,15,31243,NULL,'Oracle: GC CR block received per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v010p4ciyvsfzyylo',1,'Admin',1672319415,'192.168.64.1',2,15,31244,NULL,'Oracle: Instance hostname','clc93suux00004ciywh0nidxf',''),('clc93sv0v010q4ciysak5l29m',1,'Admin',1672319415,'192.168.64.1',2,15,31245,NULL,'Oracle: Instance name','clc93suux00004ciywh0nidxf',''),('clc93sv0v010r4ciy3rvqz1fd',1,'Admin',1672319415,'192.168.64.1',2,15,31246,NULL,'Oracle: Instance status','clc93suux00004ciywh0nidxf',''),('clc93sv0v010s4ciyqsrp0o39',1,'Admin',1672319415,'192.168.64.1',2,15,31247,NULL,'Oracle: Instance role','clc93suux00004ciywh0nidxf',''),('clc93sv0v010t4ciy0qz0hbn3',1,'Admin',1672319415,'192.168.64.1',2,15,31248,NULL,'Oracle: Library cache hit ratio','clc93suux00004ciywh0nidxf',''),('clc93sv0v010u4ciy5owpxuiz',1,'Admin',1672319415,'192.168.64.1',2,15,31249,NULL,'Oracle: Logons per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v010v4ciy14arwx0r',1,'Admin',1672319415,'192.168.64.1',2,15,31250,NULL,'Oracle: Long table scans per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v010w4ciysrdvl8um',1,'Admin',1672319415,'192.168.64.1',2,15,31251,NULL,'Oracle: PGA, Global memory bound','clc93suux00004ciywh0nidxf',''),('clc93sv0v010x4ciyaztldftx',1,'Admin',1672319415,'192.168.64.1',2,15,31252,NULL,'Oracle: Memory sorts ratio','clc93suux00004ciywh0nidxf',''),('clc93sv0v010y4ciy3ci5e64x',1,'Admin',1672319415,'192.168.64.1',2,15,31554,NULL,'MSSQL: Percent of Adhoc queries running','clc93suux00004ciywh0nidxf',''),('clc93sv0v010z4ciy0rnfidvr',1,'Admin',1672319415,'192.168.64.1',2,15,31555,NULL,'MSSQL: Full scans to Index searches ratio','clc93suux00004ciywh0nidxf',''),('clc93sv0v01104ciy0r575dn0',1,'Admin',1672319415,'192.168.64.1',2,15,31556,NULL,'MSSQL: Percent of Recompiled Transact-SQL Objects','clc93suux00004ciywh0nidxf',''),('clc93sv0v01114ciy7mj060tf',1,'Admin',1672319415,'192.168.64.1',2,15,31570,NULL,'PHP-FPM: Get status page','clc93suux00004ciywh0nidxf',''),('clc93sv0v01124ciy9ojr2qmq',1,'Admin',1672319415,'192.168.64.1',2,15,31571,NULL,'PHP-FPM: php-fpm_ping','clc93suux00004ciywh0nidxf',''),('clc93sv0v01134ciyselda9bp',1,'Admin',1672319415,'192.168.64.1',2,15,31573,NULL,'PHP-FPM: Queue usage','clc93suux00004ciywh0nidxf',''),('clc93sv0v01144ciy05xlaj59',1,'Admin',1672319415,'192.168.64.1',2,15,31577,NULL,'PHP-FPM: Slow requests','clc93suux00004ciywh0nidxf',''),('clc93sv0v01154ciyh58hevwm',1,'Admin',1672319415,'192.168.64.1',2,15,31578,NULL,'PHP-FPM: Version','clc93suux00004ciywh0nidxf',''),('clc93sv0v01164ciydb375ccg',1,'Admin',1672319415,'192.168.64.1',2,15,31579,NULL,'PHP-FPM: Uptime','clc93suux00004ciywh0nidxf',''),('clc93sv0v01174ciydncdc0dp',1,'Admin',1672319415,'192.168.64.1',2,15,31580,NULL,'PHP-FPM: Start time','clc93suux00004ciywh0nidxf',''),('clc93sv0v01184ciyunnzwg83',1,'Admin',1672319415,'192.168.64.1',2,15,31581,NULL,'PHP-FPM: Accepted connections per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v01194ciy8fsx5mlz',1,'Admin',1672319415,'192.168.64.1',2,15,31582,NULL,'PHP-FPM: Processes, total','clc93suux00004ciywh0nidxf',''),('clc93sv0v011a4ciyw3vyncxd',1,'Admin',1672319415,'192.168.64.1',2,15,31583,NULL,'PHP-FPM: Listen queue','clc93suux00004ciywh0nidxf',''),('clc93sv0v011b4ciy2z4g5hl6',1,'Admin',1672319415,'192.168.64.1',2,15,31584,NULL,'PHP-FPM: Processes, idle','clc93suux00004ciywh0nidxf',''),('clc93sv0v011c4ciyf0cbovyc',1,'Admin',1672319415,'192.168.64.1',2,15,31585,NULL,'PHP-FPM: Processes, active','clc93suux00004ciywh0nidxf',''),('clc93sv0v011d4ciyce2p9fib',1,'Admin',1672319415,'192.168.64.1',2,15,31586,NULL,'PHP-FPM: Process manager','clc93suux00004ciywh0nidxf',''),('clc93sv0v011e4ciyc3mfequ7',1,'Admin',1672319415,'192.168.64.1',2,15,31587,NULL,'PHP-FPM: Ping','clc93suux00004ciywh0nidxf',''),('clc93sv0v011f4ciyx2d1v7qy',1,'Admin',1672319415,'192.168.64.1',2,15,31588,NULL,'PHP-FPM: Pool name','clc93suux00004ciywh0nidxf',''),('clc93sv0v011g4ciytyqvapsh',1,'Admin',1672319415,'192.168.64.1',2,15,31589,NULL,'PHP-FPM: Max children reached','clc93suux00004ciywh0nidxf',''),('clc93sv0v011h4ciyr89mt21c',1,'Admin',1672319415,'192.168.64.1',2,15,31590,NULL,'PHP-FPM: Listen queue, max','clc93suux00004ciywh0nidxf',''),('clc93sv0v011i4ciy3xdg03pq',1,'Admin',1672319415,'192.168.64.1',2,15,31591,NULL,'PHP-FPM: Listen queue, len','clc93suux00004ciywh0nidxf',''),('clc93sv0v011j4ciybuqmrfjq',1,'Admin',1672319415,'192.168.64.1',2,15,31592,NULL,'PHP-FPM: Processes, max active','clc93suux00004ciywh0nidxf',''),('clc93sv0v011k4ciytlgzecfv',1,'Admin',1672319415,'192.168.64.1',2,15,31593,NULL,'PHP-FPM: Queue usage','clc93suux00004ciywh0nidxf',''),('clc93sv0v011l4ciyf9ppzj81',1,'Admin',1672319415,'192.168.64.1',2,15,31594,NULL,'PHP-FPM: Get status page','clc93suux00004ciywh0nidxf',''),('clc93sv0v011m4ciyr3ak2lo2',1,'Admin',1672319415,'192.168.64.1',2,15,31595,NULL,'PHP-FPM: Get ping page','clc93suux00004ciywh0nidxf',''),('clc93sv0v011n4ciygk9qqg01',1,'Admin',1672319415,'192.168.64.1',2,15,31596,NULL,'PHP-FPM: Accepted connections per second','clc93suux00004ciywh0nidxf',''),('clc93sv0v011o4ciy5gft6wcs',1,'Admin',1672319415,'192.168.64.1',2,15,31597,NULL,'PHP-FPM: Processes, idle','clc93suux00004ciywh0nidxf',''),('clc93sv0v011p4ciyen72tvf4',1,'Admin',1672319415,'192.168.64.1',2,15,31598,NULL,'PHP-FPM: Uptime','clc93suux00004ciywh0nidxf',''),('clc93sv0v011q4ciyus5ad7v2',1,'Admin',1672319415,'192.168.64.1',2,15,31599,NULL,'PHP-FPM: Start time','clc93suux00004ciywh0nidxf',''),('clc93sv0v011r4ciyffts7zzw',1,'Admin',1672319415,'192.168.64.1',2,15,31600,NULL,'PHP-FPM: Slow requests','clc93suux00004ciywh0nidxf',''),('clc93sv0v011s4ciye89yl5td',1,'Admin',1672319415,'192.168.64.1',2,15,31601,NULL,'PHP-FPM: Processes, total','clc93suux00004ciywh0nidxf',''),('clc93sv0v011t4ciyoth37uo8',1,'Admin',1672319415,'192.168.64.1',2,15,31602,NULL,'PHP-FPM: Processes, max active','clc93suux00004ciywh0nidxf',''),('clc93sv0v011u4ciy09a42cpv',1,'Admin',1672319415,'192.168.64.1',2,15,31603,NULL,'PHP-FPM: Ping','clc93suux00004ciywh0nidxf',''),('clc93sv0v011v4ciyoryimkfu',1,'Admin',1672319415,'192.168.64.1',2,15,31604,NULL,'PHP-FPM: Processes, active','clc93suux00004ciywh0nidxf',''),('clc93sv0v011w4ciytxz5zkhg',1,'Admin',1672319415,'192.168.64.1',2,15,31605,NULL,'PHP-FPM: Process manager','clc93suux00004ciywh0nidxf',''),('clc93sv0v011x4ciy0wd7ag4c',1,'Admin',1672319415,'192.168.64.1',2,15,31606,NULL,'PHP-FPM: Pool name','clc93suux00004ciywh0nidxf',''),('clc93sv0v011y4ciym5h8qhkg',1,'Admin',1672319415,'192.168.64.1',2,15,31607,NULL,'PHP-FPM: Max children reached','clc93suux00004ciywh0nidxf',''),('clc93sv0v011z4ciyvhpujmtq',1,'Admin',1672319415,'192.168.64.1',2,15,31608,NULL,'PHP-FPM: Listen queue, max','clc93suux00004ciywh0nidxf',''),('clc93sv0v01204ciy4ufogc5c',1,'Admin',1672319415,'192.168.64.1',2,15,31609,NULL,'PHP-FPM: Listen queue, len','clc93suux00004ciywh0nidxf',''),('clc93sv0v01214ciy53zn48c3',1,'Admin',1672319415,'192.168.64.1',2,15,31610,NULL,'PHP-FPM: Listen queue','clc93suux00004ciywh0nidxf',''),('clc93sv0v01224ciysh5tw07k',1,'Admin',1672319415,'192.168.64.1',2,15,31611,NULL,'PHP-FPM: Version','clc93suux00004ciywh0nidxf',''),('clc93sv0v01234ciykwaynvsa',1,'Admin',1672319415,'192.168.64.1',2,15,31684,NULL,'Oracle: Ping','clc93suux00004ciywh0nidxf',''),('clc93sv0v01244ciyp3x99yqy',1,'Admin',1672319415,'192.168.64.1',2,15,31685,NULL,'Oracle: Datafiles count','clc93suux00004ciywh0nidxf',''),('clc93sv0v01254ciy3p5qoqic',1,'Admin',1672319415,'192.168.64.1',2,15,31686,NULL,'Oracle: Get FRA stats','clc93suux00004ciywh0nidxf',''),('clc93sv0v01264ciyogg3c5s2',1,'Admin',1672319415,'192.168.64.1',2,15,31687,NULL,'Oracle: Number of processes','clc93suux00004ciywh0nidxf',''),('clc93sv0v01274ciyd0i1z0s7',1,'Admin',1672319415,'192.168.64.1',2,15,31688,NULL,'Oracle: Get SGA stats','clc93suux00004ciywh0nidxf',''),('clc93sv0v01284ciyrjbch33w',1,'Admin',1672319415,'192.168.64.1',2,15,31689,NULL,'Oracle: Get PDB info','clc93suux00004ciywh0nidxf',''),('clc93sv0v01294ciy0ltygps4',1,'Admin',1672319415,'192.168.64.1',2,15,31690,NULL,'Oracle: Get ASM stats','clc93suux00004ciywh0nidxf',''),('clc93sv0v012a4ciyqhw34gwe',1,'Admin',1672319415,'192.168.64.1',2,15,31691,NULL,'Oracle: Get system metrics','clc93suux00004ciywh0nidxf',''),('clc93sv0v012b4ciymyshehp2',1,'Admin',1672319415,'192.168.64.1',2,15,31692,NULL,'Oracle: Get instance state','clc93suux00004ciywh0nidxf',''),('clc93sv0v012c4ciygbg9zlh5',1,'Admin',1672319415,'192.168.64.1',2,15,31693,NULL,'Oracle: Get system parameters','clc93suux00004ciywh0nidxf',''),('clc93sv0v012d4ciy92xhcsvc',1,'Admin',1672319415,'192.168.64.1',2,15,31694,NULL,'Oracle: Get PGA stats','clc93suux00004ciywh0nidxf',''),('clc93sv0v012e4ciy2tcldhyu',1,'Admin',1672319415,'192.168.64.1',2,15,31695,NULL,'Oracle: Redo logs available to switch','clc93suux00004ciywh0nidxf',''),('clc93sv0v012f4ciypa4fvpk6',1,'Admin',1672319415,'192.168.64.1',2,15,31696,NULL,'Oracle: User\'s expire password','clc93suux00004ciywh0nidxf',''),('clc93sv0v012g4ciy79udhi1h',1,'Admin',1672319415,'192.168.64.1',2,15,31697,NULL,'Oracle: Get archive log info','clc93suux00004ciywh0nidxf',''),('clc93sv0v012h4ciy5wxfic36',1,'Admin',1672319415,'192.168.64.1',2,15,31698,NULL,'Oracle: Get sessions stats','clc93suux00004ciywh0nidxf',''),('clc93sv0v012i4ciyf0jhgbo3',1,'Admin',1672319415,'192.168.64.1',2,15,31699,NULL,'Oracle: Get CDB and No-CDB info','clc93suux00004ciywh0nidxf',''),('clc93sv0v012j4ciy23r44kdm',1,'Admin',1672319415,'192.168.64.1',2,15,31700,NULL,'Oracle: Get tablespaces stats','clc93suux00004ciywh0nidxf',''),('clc93sv0v012k4ciyldg3tojx',1,'Admin',1672319415,'192.168.64.1',2,15,31701,NULL,'Oracle: Active user sessions','clc93suux00004ciywh0nidxf',''),('clc93sv0v012l4ciy3chek2zt',1,'Admin',1672319415,'192.168.64.1',2,15,31702,NULL,'Oracle: Rows per sort','clc93suux00004ciywh0nidxf',''),('clc93sv0v012m4ciyogl1d7mp',1,'Admin',1672319415,'192.168.64.1',2,15,31703,NULL,'Oracle: Active background sessions','clc93suux00004ciywh0nidxf',''),('clc93sv0v012n4ciyi131jtq7',1,'Admin',1672319415,'192.168.64.1',2,15,31704,NULL,'Oracle: Sessions concurrency','clc93suux00004ciywh0nidxf',''),('clc93sv0v012o4ciy72lrr34w',1,'Admin',1672319415,'192.168.64.1',2,15,31705,NULL,'Oracle: Session count','clc93suux00004ciywh0nidxf',''),('clc93sv0w012p4ciy8drrat7z',1,'Admin',1672319415,'192.168.64.1',2,15,31706,NULL,'Oracle: Inactive user sessions','clc93suux00004ciywh0nidxf',''),('clc93sv0w012q4ciyhxs325zh',1,'Admin',1672319415,'192.168.64.1',2,15,31707,NULL,'Oracle: SQL service response time','clc93suux00004ciywh0nidxf',''),('clc93sv0w012r4ciylbcuru1j',1,'Admin',1672319415,'192.168.64.1',2,15,31708,NULL,'Oracle: Sessions limit','clc93suux00004ciywh0nidxf',''),('clc93sv0w012s4ciyck53dy7n',1,'Admin',1672319415,'192.168.64.1',2,15,31709,NULL,'Oracle: Sessions lock rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w012t4ciysdbc1pew',1,'Admin',1672319415,'192.168.64.1',2,15,31710,NULL,'Oracle: Processes limit','clc93suux00004ciywh0nidxf',''),('clc93sv0w012u4ciyyu3neuxw',1,'Admin',1672319415,'192.168.64.1',2,15,31711,NULL,'Oracle: Active parallel sessions','clc93suux00004ciywh0nidxf',''),('clc93sv0w012v4ciyvaoarqhm',1,'Admin',1672319415,'192.168.64.1',2,15,31712,NULL,'Oracle: Sessions locked over {$ORACLE.SESSION.LOCK.MAX.TIME}s','clc93suux00004ciywh0nidxf',''),('clc93sv0w012w4ciyookfq63u',1,'Admin',1672319415,'192.168.64.1',2,15,31713,NULL,'Oracle: SGA, buffer cache','clc93suux00004ciywh0nidxf',''),('clc93sv0w012x4ciyeve07e7e',1,'Admin',1672319415,'192.168.64.1',2,15,31714,NULL,'Oracle: SGA, fixed','clc93suux00004ciywh0nidxf',''),('clc93sv0w012y4ciylet35zbe',1,'Admin',1672319415,'192.168.64.1',2,15,31715,NULL,'Oracle: SGA, java pool','clc93suux00004ciywh0nidxf',''),('clc93sv0w012z4ciyjm0bhcop',1,'Admin',1672319415,'192.168.64.1',2,15,31716,NULL,'Oracle: SGA, log buffer','clc93suux00004ciywh0nidxf',''),('clc93sv0w01304ciy24a1tdkk',1,'Admin',1672319415,'192.168.64.1',2,15,31717,NULL,'Oracle: SGA, shared pool','clc93suux00004ciywh0nidxf',''),('clc93sv0w01314ciywl6z97jg',1,'Admin',1672319415,'192.168.64.1',2,15,31718,NULL,'Oracle: Shared pool free %','clc93suux00004ciywh0nidxf',''),('clc93sv0w01324ciywvwes6ca',1,'Admin',1672319415,'192.168.64.1',2,15,31719,NULL,'Oracle: Total sorts per user call','clc93suux00004ciywh0nidxf',''),('clc93sv0w01334ciyj4c4biru',1,'Admin',1672319415,'192.168.64.1',2,15,31720,NULL,'Oracle: Temp space used','clc93suux00004ciywh0nidxf',''),('clc93sv0w01344ciyq1ciciej',1,'Admin',1672319415,'192.168.64.1',2,15,31721,NULL,'Oracle: PGA, Total allocated','clc93suux00004ciywh0nidxf',''),('clc93sv0w01354ciyxhmhmeae',1,'Admin',1672319415,'192.168.64.1',2,15,31722,NULL,'Oracle: PGA, Total freeable','clc93suux00004ciywh0nidxf',''),('clc93sv0w01364ciylzs0qz88',1,'Admin',1672319415,'192.168.64.1',2,15,31723,NULL,'Oracle: PGA, Total inuse','clc93suux00004ciywh0nidxf',''),('clc93sv0w01374ciy1b57m4sj',1,'Admin',1672319415,'192.168.64.1',2,15,31724,NULL,'Oracle: Uptime','clc93suux00004ciywh0nidxf',''),('clc93sv0w01384ciyxjtw9p4j',1,'Admin',1672319415,'192.168.64.1',2,15,31725,NULL,'Oracle: User rollbacks per second','clc93suux00004ciywh0nidxf',''),('clc93sv0w01394ciyltghx15r',1,'Admin',1672319415,'192.168.64.1',2,15,31726,NULL,'Oracle: SGA, large pool','clc93suux00004ciywh0nidxf',''),('clc93sv0w013a4ciyzrmpu1bc',1,'Admin',1672319415,'192.168.64.1',2,15,31727,NULL,'Oracle: Physical reads bytes per second','clc93suux00004ciywh0nidxf',''),('clc93sv0w013b4ciysmy7pdub',1,'Admin',1672319415,'192.168.64.1',2,15,31728,NULL,'Oracle: Physical writes per second','clc93suux00004ciywh0nidxf',''),('clc93sv0w013c4ciyn2ugadd6',1,'Admin',1672319415,'192.168.64.1',2,15,31729,NULL,'Oracle: FRA, Space reclaimable','clc93suux00004ciywh0nidxf',''),('clc93sv0w013d4ciyj4q51exx',1,'Admin',1672319415,'192.168.64.1',2,15,31730,NULL,'Oracle: Average active sessions','clc93suux00004ciywh0nidxf',''),('clc93sv0w013e4ciy40oxf8pf',1,'Admin',1672319415,'192.168.64.1',2,15,31731,NULL,'Oracle: Archiver state','clc93suux00004ciywh0nidxf',''),('clc93sv0w013f4ciyhg2y9go1',1,'Admin',1672319415,'192.168.64.1',2,15,31732,NULL,'Oracle: Buffer cache hit ratio','clc93suux00004ciywh0nidxf',''),('clc93sv0w013g4ciy1kwg12z3',1,'Admin',1672319415,'192.168.64.1',2,15,31733,NULL,'Oracle: Global cache blocks corrupted','clc93suux00004ciywh0nidxf',''),('clc93sv0w013h4ciy0ymjb3c4',1,'Admin',1672319415,'192.168.64.1',2,15,31734,NULL,'Oracle: Global cache blocks lost','clc93suux00004ciywh0nidxf',''),('clc93sv0w013i4ciy8wand473',1,'Admin',1672319415,'192.168.64.1',2,15,31735,NULL,'Oracle: Cursor cache hit ratio','clc93suux00004ciywh0nidxf',''),('clc93sv0w013j4ciylayi6ocj',1,'Admin',1672319415,'192.168.64.1',2,15,31736,NULL,'Oracle: Database CPU time ratio','clc93suux00004ciywh0nidxf',''),('clc93sv0w013k4ciyi3fv44er',1,'Admin',1672319415,'192.168.64.1',2,15,31737,NULL,'Oracle: Database wait time ratio','clc93suux00004ciywh0nidxf',''),('clc93sv0w013l4ciywo4it13f',1,'Admin',1672319415,'192.168.64.1',2,15,31738,NULL,'Oracle: Datafiles limit','clc93suux00004ciywh0nidxf',''),('clc93sv0w013m4ciyogfq00xu',1,'Admin',1672319415,'192.168.64.1',2,15,31739,NULL,'Oracle: Disk sort per second','clc93suux00004ciywh0nidxf',''),('clc93sv0w013n4ciyw5pc4fnn',1,'Admin',1672319415,'192.168.64.1',2,15,31740,NULL,'Oracle: Enqueue timeouts per second','clc93suux00004ciywh0nidxf',''),('clc93sv0w013o4ciyx161oc1j',1,'Admin',1672319415,'192.168.64.1',2,15,31741,NULL,'Oracle: FRA, Number of files','clc93suux00004ciywh0nidxf',''),('clc93sv0w013p4ciyec9iunot',1,'Admin',1672319415,'192.168.64.1',2,15,31742,NULL,'Oracle: FRA, Number of restore points','clc93suux00004ciywh0nidxf',''),('clc93sv0w013q4ciyjegqirdd',1,'Admin',1672319415,'192.168.64.1',2,15,31743,NULL,'Oracle: FRA, Space limit','clc93suux00004ciywh0nidxf',''),('clc93sv0w013r4ciybq4dcode',1,'Admin',1672319415,'192.168.64.1',2,15,31744,NULL,'Oracle: FRA, Used space','clc93suux00004ciywh0nidxf',''),('clc93sv0w013s4ciyz6x1hxui',1,'Admin',1672319415,'192.168.64.1',2,15,31745,NULL,'Oracle: Physical writes bytes per second','clc93suux00004ciywh0nidxf',''),('clc93sv0w013t4ciyskeu3hnc',1,'Admin',1672319415,'192.168.64.1',2,15,31746,NULL,'Oracle: FRA, Usable space in %','clc93suux00004ciywh0nidxf',''),('clc93sv0w013u4ciy37ukm5xp',1,'Admin',1672319415,'192.168.64.1',2,15,31747,NULL,'Oracle: GC CR block received per second','clc93suux00004ciywh0nidxf',''),('clc93sv0w013v4ciybwl690bv',1,'Admin',1672319415,'192.168.64.1',2,15,31748,NULL,'Oracle: Instance hostname','clc93suux00004ciywh0nidxf',''),('clc93sv0w013w4ciyyuhjeget',1,'Admin',1672319415,'192.168.64.1',2,15,31749,NULL,'Oracle: Instance name','clc93suux00004ciywh0nidxf',''),('clc93sv0w013x4ciyto8i1qp9',1,'Admin',1672319415,'192.168.64.1',2,15,31750,NULL,'Oracle: Instance status','clc93suux00004ciywh0nidxf',''),('clc93sv0w013y4ciyrliq5qw8',1,'Admin',1672319415,'192.168.64.1',2,15,31751,NULL,'Oracle: Instance role','clc93suux00004ciywh0nidxf',''),('clc93sv0w013z4ciycehx5rg2',1,'Admin',1672319415,'192.168.64.1',2,15,31752,NULL,'Oracle: Library cache hit ratio','clc93suux00004ciywh0nidxf',''),('clc93sv0w01404ciyyn7cbtth',1,'Admin',1672319415,'192.168.64.1',2,15,31753,NULL,'Oracle: Logons per second','clc93suux00004ciywh0nidxf',''),('clc93sv0w01414ciyuipi14rc',1,'Admin',1672319415,'192.168.64.1',2,15,31754,NULL,'Oracle: Long table scans per second','clc93suux00004ciywh0nidxf',''),('clc93sv0w01424ciybzx5dcyk',1,'Admin',1672319415,'192.168.64.1',2,15,31755,NULL,'Oracle: Memory sorts ratio','clc93suux00004ciywh0nidxf',''),('clc93sv0w01434ciymmew5erf',1,'Admin',1672319415,'192.168.64.1',2,15,31756,NULL,'Oracle: PGA, Global memory bound','clc93suux00004ciywh0nidxf',''),('clc93sv0w01444ciywrcm2fid',1,'Admin',1672319415,'192.168.64.1',2,15,31757,NULL,'Oracle: PGA, Aggregate target parameter','clc93suux00004ciywh0nidxf',''),('clc93sv0w01454ciy9tzbfsof',1,'Admin',1672319415,'192.168.64.1',2,15,31758,NULL,'Oracle: Active serial sessions','clc93suux00004ciywh0nidxf',''),('clc93sv0w01464ciyfrhlut6v',1,'Admin',1672319415,'192.168.64.1',2,15,31759,NULL,'Oracle: Physical reads per second','clc93suux00004ciywh0nidxf',''),('clc93sv0w01474ciylr3tnqa4',1,'Admin',1672319415,'192.168.64.1',2,15,31760,NULL,'Oracle: Version','clc93suux00004ciywh0nidxf',''),('clc93sv0w01484ciycuhjw22j',1,'Admin',1672319415,'192.168.64.1',2,15,32364,NULL,'PostgreSQL: Get connections sum','clc93suux00004ciywh0nidxf',''),('clc93sv0w01494ciycph6bcta',1,'Admin',1672319415,'192.168.64.1',2,15,32365,NULL,'PostgreSQL: Get locks','clc93suux00004ciywh0nidxf',''),('clc93sv0w014a4ciykl4oxbdo',1,'Admin',1672319415,'192.168.64.1',2,15,32366,NULL,'Status: Ping time','clc93suux00004ciywh0nidxf',''),('clc93sv0w014b4ciy26z17vv2',1,'Admin',1672319415,'192.168.64.1',2,15,32367,NULL,'Status: Ping','clc93suux00004ciywh0nidxf',''),('clc93sv0w014c4ciyu1099xmc',1,'Admin',1672319415,'192.168.64.1',2,15,32368,NULL,'PostgreSQL: Get queries','clc93suux00004ciywh0nidxf',''),('clc93sv0w014d4ciyebdrkz3m',1,'Admin',1672319415,'192.168.64.1',2,15,32369,NULL,'Replication: standby count','clc93suux00004ciywh0nidxf',''),('clc93sv0w014e4ciy99co5pxo',1,'Admin',1672319415,'192.168.64.1',2,15,32370,NULL,'Replication: lag in seconds','clc93suux00004ciywh0nidxf',''),('clc93sv0w014f4ciybb1nnxmb',1,'Admin',1672319415,'192.168.64.1',2,15,32371,NULL,'Replication: recovery role','clc93suux00004ciywh0nidxf',''),('clc93sv0w014g4ciyjbzeahyt',1,'Admin',1672319415,'192.168.64.1',2,15,32372,NULL,'Replication: status','clc93suux00004ciywh0nidxf',''),('clc93sv0w014h4ciynrtlhcce',1,'Admin',1672319415,'192.168.64.1',2,15,32373,NULL,'Status: Config hash','clc93suux00004ciywh0nidxf',''),('clc93sv0w014i4ciyuyf0yj0f',1,'Admin',1672319415,'192.168.64.1',2,15,32374,NULL,'Status: Cache hit ratio %','clc93suux00004ciywh0nidxf',''),('clc93sv0w014j4ciyhspbhofo',1,'Admin',1672319415,'192.168.64.1',2,15,32375,NULL,'PostgreSQL: Get bgwriter','clc93suux00004ciywh0nidxf',''),('clc93sv0w014k4ciywj1hj7zy',1,'Admin',1672319415,'192.168.64.1',2,15,32376,NULL,'PostgreSQL: Get transactions','clc93suux00004ciywh0nidxf',''),('clc93sv0w014l4ciyguwdakk4',1,'Admin',1672319415,'192.168.64.1',2,15,32377,NULL,'Status: Uptime','clc93suux00004ciywh0nidxf',''),('clc93sv0w014m4ciyj94f7iuj',1,'Admin',1672319415,'192.168.64.1',2,15,32378,NULL,'Status: Version','clc93suux00004ciywh0nidxf',''),('clc93sv0w014n4ciy8t0vcv3m',1,'Admin',1672319415,'192.168.64.1',2,15,32379,NULL,'PostgreSQL: Get WAL','clc93suux00004ciywh0nidxf',''),('clc93sv0w014o4ciyo5sepz2e',1,'Admin',1672319415,'192.168.64.1',2,15,32380,NULL,'PostgreSQL: Get dbstat','clc93suux00004ciywh0nidxf',''),('clc93sv0w014p4ciyf48sp84y',1,'Admin',1672319415,'192.168.64.1',2,15,32381,NULL,'Transactions: Max idle transaction time','clc93suux00004ciywh0nidxf',''),('clc93sv0w014q4ciy2skcb3et',1,'Admin',1672319415,'192.168.64.1',2,15,32382,NULL,'Transactions: Max active transaction time','clc93suux00004ciywh0nidxf',''),('clc93sv0w014r4ciyy2crfxb9',1,'Admin',1672319415,'192.168.64.1',2,15,32383,NULL,'Transactions: Max prepared transaction time','clc93suux00004ciywh0nidxf',''),('clc93sv0w014s4ciyfrqb7icm',1,'Admin',1672319415,'192.168.64.1',2,15,32384,NULL,'Transactions: Max waiting transaction time','clc93suux00004ciywh0nidxf',''),('clc93sv0w014t4ciyw4ze8czt',1,'Admin',1672319415,'192.168.64.1',2,15,32385,NULL,'WAL: Segments count','clc93suux00004ciywh0nidxf',''),('clc93sv0w014u4ciy35ovwg5i',1,'Admin',1672319415,'192.168.64.1',2,15,32386,NULL,'Bgwriter: Buffers allocated per second','clc93suux00004ciywh0nidxf',''),('clc93sv0w014v4ciy0ay0o4pr',1,'Admin',1672319415,'192.168.64.1',2,15,32387,NULL,'Bgwriter: Buffers written directly by a backend per second','clc93suux00004ciywh0nidxf',''),('clc93sv0w014w4ciytals2q76',1,'Admin',1672319415,'192.168.64.1',2,15,32388,NULL,'Bgwriter: Checkpoint write time','clc93suux00004ciywh0nidxf',''),('clc93sv0w014x4ciy2yz78gb8',1,'Admin',1672319415,'192.168.64.1',2,15,32389,NULL,'Bgwriter: Buffers backend fsync per second','clc93suux00004ciywh0nidxf',''),('clc93sv0w014y4ciybtuy55m3',1,'Admin',1672319415,'192.168.64.1',2,15,32390,NULL,'Bgwriter: Buffers written during checkpoints per second','clc93suux00004ciywh0nidxf',''),('clc93sv0w014z4ciyaya8ymxz',1,'Admin',1672319415,'192.168.64.1',2,15,32391,NULL,'Bgwriter: Buffers written by the background writer per second','clc93suux00004ciywh0nidxf',''),('clc93sv0w01504ciy84ueeug5',1,'Admin',1672319415,'192.168.64.1',2,15,32392,NULL,'Bgwriter: Requested checkpoints per second','clc93suux00004ciywh0nidxf',''),('clc93sv0w01514ciy0aopsrbi',1,'Admin',1672319415,'192.168.64.1',2,15,32393,NULL,'Bgwriter: Scheduled checkpoints per second','clc93suux00004ciywh0nidxf',''),('clc93sv0w01524ciy466e93nu',1,'Admin',1672319415,'192.168.64.1',2,15,32394,NULL,'Bgwriter: Checkpoint sync time','clc93suux00004ciywh0nidxf',''),('clc93sv0w01534ciymon4ij73',1,'Admin',1672319415,'192.168.64.1',2,15,32395,NULL,'Bgwriter: Max written per second','clc93suux00004ciywh0nidxf',''),('clc93sv0w01544ciyg5aghc7n',1,'Admin',1672319415,'192.168.64.1',2,15,32396,NULL,'Connections sum: Waiting','clc93suux00004ciywh0nidxf',''),('clc93sv0w01554ciy3zdt62w7',1,'Admin',1672319415,'192.168.64.1',2,15,32397,NULL,'Connections sum: Active','clc93suux00004ciywh0nidxf',''),('clc93sv0w01564ciyxrhbnm6v',1,'Admin',1672319415,'192.168.64.1',2,15,32398,NULL,'Connections sum: Idle','clc93suux00004ciywh0nidxf',''),('clc93sv0w01574ciywkfjuzpo',1,'Admin',1672319415,'192.168.64.1',2,15,32399,NULL,'Connections sum: Idle in transaction','clc93suux00004ciywh0nidxf',''),('clc93sv0w01584ciyhgb2zkff',1,'Admin',1672319415,'192.168.64.1',2,15,32400,NULL,'Connections sum: Prepared','clc93suux00004ciywh0nidxf',''),('clc93sv0w01594ciy18niun80',1,'Admin',1672319415,'192.168.64.1',2,15,32401,NULL,'Connections sum: Total','clc93suux00004ciywh0nidxf',''),('clc93sv0w015a4ciyum0wa7v2',1,'Admin',1672319415,'192.168.64.1',2,15,32402,NULL,'Connections sum: Total %','clc93suux00004ciywh0nidxf',''),('clc93sv0w015b4ciyoo7soaee',1,'Admin',1672319415,'192.168.64.1',2,15,32403,NULL,'WAL: Bytes written','clc93suux00004ciywh0nidxf',''),('clc93sv0w015c4ciygxpyhu65',1,'Admin',1672319415,'192.168.64.1',2,15,33126,NULL,'MySQL: Calculated value of innodb_log_file_size','clc93suux00004ciywh0nidxf',''),('clc93sv0w015d4ciy7ckz19u5',1,'Admin',1672319415,'192.168.64.1',2,15,33127,NULL,'MySQL: Innodb buffer pool wait free','clc93suux00004ciywh0nidxf',''),('clc93sv0w015e4ciynhysg6i6',1,'Admin',1672319415,'192.168.64.1',2,15,33128,NULL,'MySQL: Innodb number open files','clc93suux00004ciywh0nidxf',''),('clc93sv0w015f4ciy6dd2dswl',1,'Admin',1672319415,'192.168.64.1',2,15,33129,NULL,'MySQL: Innodb log written','clc93suux00004ciywh0nidxf',''),('clc93sv0w015g4ciyzvby55lb',1,'Admin',1672319415,'192.168.64.1',2,15,33130,NULL,'MySQL: Open tables','clc93suux00004ciywh0nidxf',''),('clc93sv0w015h4ciyx3uwi93w',1,'Admin',1672319415,'192.168.64.1',2,15,33131,NULL,'MySQL: Open table definitions','clc93suux00004ciywh0nidxf',''),('clc93sv0w015i4ciydgckegw5',1,'Admin',1672319415,'192.168.64.1',2,15,33132,NULL,'MySQL: Binlog cache disk use','clc93suux00004ciywh0nidxf',''),('clc93sv0w015j4ciybj9lu7uu',1,'Admin',1672319415,'192.168.64.1',2,15,33140,NULL,'MySQL: Calculated value of innodb_log_file_size','clc93suux00004ciywh0nidxf',''),('clc93sv0w015k4ciy8n9poj68',1,'Admin',1672319415,'192.168.64.1',2,15,33141,NULL,'MySQL: Innodb buffer pool wait free','clc93suux00004ciywh0nidxf',''),('clc93sv0w015l4ciyi1xl08n4',1,'Admin',1672319415,'192.168.64.1',2,15,33142,NULL,'MySQL: Innodb number open files','clc93suux00004ciywh0nidxf',''),('clc93sv0w015m4ciy2xyfy382',1,'Admin',1672319415,'192.168.64.1',2,15,33143,NULL,'MySQL: Innodb log written','clc93suux00004ciywh0nidxf',''),('clc93sv0w015n4ciycsd1ut7x',1,'Admin',1672319415,'192.168.64.1',2,15,33144,NULL,'MySQL: Open tables','clc93suux00004ciywh0nidxf',''),('clc93sv0w015o4ciymvwjh25d',1,'Admin',1672319415,'192.168.64.1',2,15,33145,NULL,'MySQL: Open table definitions','clc93suux00004ciywh0nidxf',''),('clc93sv0w015p4ciywywfwlaf',1,'Admin',1672319415,'192.168.64.1',2,15,33146,NULL,'MySQL: Binlog cache disk use','clc93suux00004ciywh0nidxf',''),('clc93sv0w015q4ciy5q4u66m5',1,'Admin',1672319415,'192.168.64.1',2,15,33154,NULL,'MySQL: Calculated value of innodb_log_file_size','clc93suux00004ciywh0nidxf',''),('clc93sv0w015r4ciye0t9dder',1,'Admin',1672319415,'192.168.64.1',2,15,33155,NULL,'MySQL: Innodb buffer pool wait free','clc93suux00004ciywh0nidxf',''),('clc93sv0w015s4ciyl78cwr6l',1,'Admin',1672319415,'192.168.64.1',2,15,33156,NULL,'MySQL: Innodb number open files','clc93suux00004ciywh0nidxf',''),('clc93sv0w015t4ciydrs38hdc',1,'Admin',1672319415,'192.168.64.1',2,15,33157,NULL,'MySQL: Innodb log written','clc93suux00004ciywh0nidxf',''),('clc93sv0w015u4ciy6nkt27sn',1,'Admin',1672319415,'192.168.64.1',2,15,33158,NULL,'MySQL: Open tables','clc93suux00004ciywh0nidxf',''),('clc93sv0w015v4ciyiktwvacp',1,'Admin',1672319415,'192.168.64.1',2,15,33159,NULL,'MySQL: Open table definitions','clc93suux00004ciywh0nidxf',''),('clc93sv0w015w4ciyebqed91o',1,'Admin',1672319415,'192.168.64.1',2,15,33160,NULL,'MySQL: Binlog cache disk use','clc93suux00004ciywh0nidxf',''),('clc93sv0w015x4ciy2mpvi6c6',1,'Admin',1672319415,'192.168.64.1',2,15,33184,NULL,'Array: Sweep Pmax','clc93suux00004ciywh0nidxf',''),('clc93sv0w015y4ciytq4d6mkx',1,'Admin',1672319415,'192.168.64.1',2,15,33185,NULL,'Load: State','clc93suux00004ciywh0nidxf',''),('clc93sv0w015z4ciytagltjdt',1,'Admin',1672319415,'192.168.64.1',2,15,33186,NULL,'Temperature: Battery','clc93suux00004ciywh0nidxf',''),('clc93sv0w01604ciyphgso0ki',1,'Admin',1672319415,'192.168.64.1',2,15,33187,NULL,'Temperature: Ambient','clc93suux00004ciywh0nidxf',''),('clc93sv0w01614ciysfpqkwku',1,'Admin',1672319415,'192.168.64.1',2,15,33188,NULL,'Battery: Target Voltage','clc93suux00004ciywh0nidxf',''),('clc93sv0w01624ciyu1uomcws',1,'Admin',1672319415,'192.168.64.1',2,15,33189,NULL,'Status: Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0w01634ciy3qxvbi0x',1,'Admin',1672319415,'192.168.64.1',2,15,33190,NULL,'Status: Load Faults','clc93suux00004ciywh0nidxf',''),('clc93sv0w01644ciy29xk6ioa',1,'Admin',1672319415,'192.168.64.1',2,15,33191,NULL,'Status: Array Faults','clc93suux00004ciywh0nidxf',''),('clc93sv0w01654ciy6xuxvi3z',1,'Admin',1672319415,'192.168.64.1',2,15,33192,NULL,'Status: Alarms','clc93suux00004ciywh0nidxf',''),('clc93sv0w01664ciyglgg0x9y',1,'Admin',1672319415,'192.168.64.1',2,15,33193,NULL,'Load: Voltage','clc93suux00004ciywh0nidxf',''),('clc93sv0w01674ciyp1eha7jq',1,'Admin',1672319415,'192.168.64.1',2,15,33194,NULL,'Load: Current','clc93suux00004ciywh0nidxf',''),('clc93sv0w01684ciyyc44xob7',1,'Admin',1672319415,'192.168.64.1',2,15,33195,NULL,'Array: Sweep Vmp','clc93suux00004ciywh0nidxf',''),('clc93sv0w01694ciynzdandve',1,'Admin',1672319415,'192.168.64.1',2,15,33196,NULL,'Counter: Load Amp-hours','clc93suux00004ciywh0nidxf',''),('clc93sv0w016a4ciydi0lsolp',1,'Admin',1672319415,'192.168.64.1',2,15,33197,NULL,'Counter: Charge KW-hours','clc93suux00004ciywh0nidxf',''),('clc93sv0w016b4ciysx9j52tw',1,'Admin',1672319415,'192.168.64.1',2,15,33198,NULL,'Counter: Charge Amp-hours','clc93suux00004ciywh0nidxf',''),('clc93sv0w016c4ciy3shexqrr',1,'Admin',1672319415,'192.168.64.1',2,15,33199,NULL,'Battery: Charge State','clc93suux00004ciywh0nidxf',''),('clc93sv0w016d4ciyyxvetd0m',1,'Admin',1672319415,'192.168.64.1',2,15,33200,NULL,'Battery: Charge Current','clc93suux00004ciywh0nidxf',''),('clc93sv0w016e4ciyfzahtm8t',1,'Admin',1672319415,'192.168.64.1',2,15,33201,NULL,'Battery: Battery Voltage discovery','clc93suux00004ciywh0nidxf',''),('clc93sv0w016f4ciy46o3h9m5',1,'Admin',1672319415,'192.168.64.1',2,15,33202,NULL,'Array: Voltage','clc93suux00004ciywh0nidxf',''),('clc93sv0w016g4ciyw13h1k0w',1,'Admin',1672319415,'192.168.64.1',2,15,33203,NULL,'Array: Sweep Voc','clc93suux00004ciywh0nidxf',''),('clc93sv0w016h4ciyghau4m2p',1,'Admin',1672319415,'192.168.64.1',2,15,33204,NULL,'Temperature: Heatsink','clc93suux00004ciywh0nidxf',''),('clc93sv0w016i4ciykdj2bxfy',1,'Admin',1672319415,'192.168.64.1',2,15,33207,NULL,'Array: Voltage','clc93suux00004ciywh0nidxf',''),('clc93sv0w016j4ciyd2rz8nid',1,'Admin',1672319415,'192.168.64.1',2,15,33208,NULL,'Status: Alarms','clc93suux00004ciywh0nidxf',''),('clc93sv0w016k4ciy6cq2c3uv',1,'Admin',1672319415,'192.168.64.1',2,15,33209,NULL,'Temperature: Battery','clc93suux00004ciywh0nidxf',''),('clc93sv0w016l4ciyos9zmr3q',1,'Admin',1672319415,'192.168.64.1',2,15,33210,NULL,'Temperature: Ambient','clc93suux00004ciywh0nidxf',''),('clc93sv0w016m4ciy1n3nhrz1',1,'Admin',1672319415,'192.168.64.1',2,15,33211,NULL,'Battery: Target Voltage','clc93suux00004ciywh0nidxf',''),('clc93sv0w016n4ciyngq5dfws',1,'Admin',1672319415,'192.168.64.1',2,15,33212,NULL,'Status: Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0w016o4ciybwdtfly4',1,'Admin',1672319415,'192.168.64.1',2,15,33213,NULL,'Status: Load Faults','clc93suux00004ciywh0nidxf',''),('clc93sv0w016p4ciymid01k5s',1,'Admin',1672319415,'192.168.64.1',2,15,33214,NULL,'Status: Array Faults','clc93suux00004ciywh0nidxf',''),('clc93sv0w016q4ciynjxbvfj6',1,'Admin',1672319415,'192.168.64.1',2,15,33215,NULL,'Load: Voltage','clc93suux00004ciywh0nidxf',''),('clc93sv0w016r4ciy8z8do3fx',1,'Admin',1672319415,'192.168.64.1',2,15,33216,NULL,'Battery: Battery Voltage discovery','clc93suux00004ciywh0nidxf',''),('clc93sv0w016s4ciygweuovnj',1,'Admin',1672319415,'192.168.64.1',2,15,33217,NULL,'Load: State','clc93suux00004ciywh0nidxf',''),('clc93sv0w016t4ciyex4auqeq',1,'Admin',1672319415,'192.168.64.1',2,15,33218,NULL,'Load: Current','clc93suux00004ciywh0nidxf',''),('clc93sv0w016u4ciy62syqmng',1,'Admin',1672319415,'192.168.64.1',2,15,33219,NULL,'Counter: Load Amp-hours','clc93suux00004ciywh0nidxf',''),('clc93sv0w016v4ciyyznepn8f',1,'Admin',1672319415,'192.168.64.1',2,15,33220,NULL,'Counter: Charge KW-hours','clc93suux00004ciywh0nidxf',''),('clc93sv0w016w4ciywoybp6xb',1,'Admin',1672319415,'192.168.64.1',2,15,33221,NULL,'Counter: Charge Amp-hours','clc93suux00004ciywh0nidxf',''),('clc93sv0w016x4ciy6i06zkdz',1,'Admin',1672319415,'192.168.64.1',2,15,33222,NULL,'Battery: Charge State','clc93suux00004ciywh0nidxf',''),('clc93sv0w016y4ciy277x4zds',1,'Admin',1672319415,'192.168.64.1',2,15,33223,NULL,'Battery: Charge Current','clc93suux00004ciywh0nidxf',''),('clc93sv0w016z4ciyz1id1tcq',1,'Admin',1672319415,'192.168.64.1',2,15,33224,NULL,'Temperature: Heatsink','clc93suux00004ciywh0nidxf',''),('clc93sv0w01704ciy9hdhnd9j',1,'Admin',1672319415,'192.168.64.1',2,15,33227,NULL,'Array: Sweep Pmax','clc93suux00004ciywh0nidxf',''),('clc93sv0w01714ciy0ruqz4w3',1,'Admin',1672319415,'192.168.64.1',2,15,33228,NULL,'Load: State','clc93suux00004ciywh0nidxf',''),('clc93sv0w01724ciy6n7ttx62',1,'Admin',1672319415,'192.168.64.1',2,15,33229,NULL,'Temperature: Battery','clc93suux00004ciywh0nidxf',''),('clc93sv0w01734ciy4kax7p9a',1,'Admin',1672319415,'192.168.64.1',2,15,33230,NULL,'Temperature: Ambient','clc93suux00004ciywh0nidxf',''),('clc93sv0w01744ciy42ffmcb1',1,'Admin',1672319415,'192.168.64.1',2,15,33231,NULL,'Battery: Target Voltage','clc93suux00004ciywh0nidxf',''),('clc93sv0w01754ciy96wfvm2s',1,'Admin',1672319415,'192.168.64.1',2,15,33232,NULL,'Status: Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0w01764ciykf2p7w7j',1,'Admin',1672319415,'192.168.64.1',2,15,33233,NULL,'Status: Load Faults','clc93suux00004ciywh0nidxf',''),('clc93sv0w01774ciyvcjtz92x',1,'Admin',1672319415,'192.168.64.1',2,15,33234,NULL,'Status: Array Faults','clc93suux00004ciywh0nidxf',''),('clc93sv0w01784ciy74mfxi0e',1,'Admin',1672319415,'192.168.64.1',2,15,33235,NULL,'Status: Alarms','clc93suux00004ciywh0nidxf',''),('clc93sv0w01794ciyik8kgohd',1,'Admin',1672319415,'192.168.64.1',2,15,33236,NULL,'Load: Voltage','clc93suux00004ciywh0nidxf',''),('clc93sv0w017a4ciy42csv4m0',1,'Admin',1672319415,'192.168.64.1',2,15,33237,NULL,'Load: Current','clc93suux00004ciywh0nidxf',''),('clc93sv0w017b4ciyl5mukmyh',1,'Admin',1672319415,'192.168.64.1',2,15,33238,NULL,'Array: Sweep Vmp','clc93suux00004ciywh0nidxf',''),('clc93sv0w017c4ciyhh5w2k9o',1,'Admin',1672319415,'192.168.64.1',2,15,33239,NULL,'Counter: Load Amp-hours','clc93suux00004ciywh0nidxf',''),('clc93sv0w017d4ciyaettqs7s',1,'Admin',1672319415,'192.168.64.1',2,15,33240,NULL,'Counter: Charge KW-hours','clc93suux00004ciywh0nidxf',''),('clc93sv0w017e4ciy5wt0l0zz',1,'Admin',1672319415,'192.168.64.1',2,15,33241,NULL,'Counter: Charge Amp-hours','clc93suux00004ciywh0nidxf',''),('clc93sv0w017f4ciyhbodtvmi',1,'Admin',1672319415,'192.168.64.1',2,15,33242,NULL,'Battery: Charge State','clc93suux00004ciywh0nidxf',''),('clc93sv0w017g4ciyorfctwr9',1,'Admin',1672319415,'192.168.64.1',2,15,33243,NULL,'Battery: Charge Current','clc93suux00004ciywh0nidxf',''),('clc93sv0w017h4ciylhkneym2',1,'Admin',1672319415,'192.168.64.1',2,15,33244,NULL,'Battery: Battery Voltage discovery','clc93suux00004ciywh0nidxf',''),('clc93sv0w017i4ciyggmcqqfo',1,'Admin',1672319415,'192.168.64.1',2,15,33245,NULL,'Array: Voltage','clc93suux00004ciywh0nidxf',''),('clc93sv0w017j4ciysfsxasog',1,'Admin',1672319415,'192.168.64.1',2,15,33246,NULL,'Array: Sweep Voc','clc93suux00004ciywh0nidxf',''),('clc93sv0w017k4ciywvq38018',1,'Admin',1672319415,'192.168.64.1',2,15,33247,NULL,'Temperature: Heatsink','clc93suux00004ciywh0nidxf',''),('clc93sv0w017l4ciynt07oalt',1,'Admin',1672319415,'192.168.64.1',2,15,33250,NULL,'Battery: Battery Voltage discovery','clc93suux00004ciywh0nidxf',''),('clc93sv0w017m4ciy9dhcezow',1,'Admin',1672319415,'192.168.64.1',2,15,33251,NULL,'Load: A/C Current','clc93suux00004ciywh0nidxf',''),('clc93sv0w017n4ciyp1o5hxjn',1,'Admin',1672319415,'192.168.64.1',2,15,33252,NULL,'Load: State','clc93suux00004ciywh0nidxf',''),('clc93sv0w017o4ciycd99mq0f',1,'Admin',1672319415,'192.168.64.1',2,15,33253,NULL,'Status: Alarms','clc93suux00004ciywh0nidxf',''),('clc93sv0w017p4ciyhn1l9kpq',1,'Admin',1672319415,'192.168.64.1',2,15,33254,NULL,'Status: Faults','clc93suux00004ciywh0nidxf',''),('clc93sv0w017q4ciyxa0w341i',1,'Admin',1672319415,'192.168.64.1',2,15,33255,NULL,'Status: Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0w017r4ciyu47fnime',1,'Admin',1672319415,'192.168.64.1',2,15,33256,NULL,'Temperature: Heatsink','clc93suux00004ciywh0nidxf',''),('clc93sv0w017s4ciyuixk9je3',1,'Admin',1672319415,'192.168.64.1',2,15,33259,NULL,'Array: Array Current','clc93suux00004ciywh0nidxf',''),('clc93sv0w017t4ciytyle5oia',1,'Admin',1672319415,'192.168.64.1',2,15,33260,NULL,'Counter: Charge Amp-hours','clc93suux00004ciywh0nidxf',''),('clc93sv0w017u4ciy9qyldrqi',1,'Admin',1672319415,'192.168.64.1',2,15,33261,NULL,'Temperature: Battery','clc93suux00004ciywh0nidxf',''),('clc93sv0w017v4ciysq6i9m9x',1,'Admin',1672319415,'192.168.64.1',2,15,33262,NULL,'Battery: Target Voltage','clc93suux00004ciywh0nidxf',''),('clc93sv0w017w4ciyripito0e',1,'Admin',1672319415,'192.168.64.1',2,15,33263,NULL,'Status: Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0w017x4ciyxb7yfheg',1,'Admin',1672319415,'192.168.64.1',2,15,33264,NULL,'Status: Faults','clc93suux00004ciywh0nidxf',''),('clc93sv0w017y4ciyzcq5kvnw',1,'Admin',1672319415,'192.168.64.1',2,15,33265,NULL,'Status: Alarms','clc93suux00004ciywh0nidxf',''),('clc93sv0w017z4ciyaed53jjm',1,'Admin',1672319415,'192.168.64.1',2,15,33266,NULL,'Counter: Charge KW-hours','clc93suux00004ciywh0nidxf',''),('clc93sv0w01804ciyw984spz9',1,'Admin',1672319415,'192.168.64.1',2,15,33267,NULL,'Battery: Charge State','clc93suux00004ciywh0nidxf',''),('clc93sv0w01814ciyueccgglv',1,'Admin',1672319415,'192.168.64.1',2,15,33268,NULL,'Array: Sweep Pmax','clc93suux00004ciywh0nidxf',''),('clc93sv0w01824ciyisbz9mih',1,'Admin',1672319415,'192.168.64.1',2,15,33269,NULL,'Battery: Output Power','clc93suux00004ciywh0nidxf',''),('clc93sv0w01834ciyj6a0lgls',1,'Admin',1672319415,'192.168.64.1',2,15,33270,NULL,'Battery: Charge Current','clc93suux00004ciywh0nidxf',''),('clc93sv0w01844ciyoom0sk9i',1,'Admin',1672319415,'192.168.64.1',2,15,33271,NULL,'Battery: Battery Voltage discovery','clc93suux00004ciywh0nidxf',''),('clc93sv0w01854ciysiql3ybj',1,'Admin',1672319415,'192.168.64.1',2,15,33272,NULL,'Array: Voltage','clc93suux00004ciywh0nidxf',''),('clc93sv0w01864ciyamawj3ga',1,'Admin',1672319415,'192.168.64.1',2,15,33273,NULL,'Array: Sweep Voc','clc93suux00004ciywh0nidxf',''),('clc93sv0w01874ciyn48mwtgm',1,'Admin',1672319415,'192.168.64.1',2,15,33274,NULL,'Array: Sweep Vmp','clc93suux00004ciywh0nidxf',''),('clc93sv0w01884ciylseqi3u9',1,'Admin',1672319415,'192.168.64.1',2,15,33275,NULL,'Temperature: Heatsink','clc93suux00004ciywh0nidxf',''),('clc93sv0w01894ciy3gqynyv8',1,'Admin',1672319415,'192.168.64.1',2,15,33278,NULL,'Array: Array Current','clc93suux00004ciywh0nidxf',''),('clc93sv0w018a4ciyndpsj7m3',1,'Admin',1672319415,'192.168.64.1',2,15,33279,NULL,'Counter: Charge Amp-hours','clc93suux00004ciywh0nidxf',''),('clc93sv0w018b4ciypnlbde6x',1,'Admin',1672319415,'192.168.64.1',2,15,33280,NULL,'Temperature: Battery','clc93suux00004ciywh0nidxf',''),('clc93sv0w018c4ciyf6lbx0x8',1,'Admin',1672319415,'192.168.64.1',2,15,33281,NULL,'Battery: Target Voltage','clc93suux00004ciywh0nidxf',''),('clc93sv0w018d4ciydncdyrlw',1,'Admin',1672319415,'192.168.64.1',2,15,33282,NULL,'Status: Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0w018e4ciyvtwxcymv',1,'Admin',1672319415,'192.168.64.1',2,15,33283,NULL,'Status: Faults','clc93suux00004ciywh0nidxf',''),('clc93sv0w018f4ciy7emvk0oc',1,'Admin',1672319415,'192.168.64.1',2,15,33284,NULL,'Status: Alarms','clc93suux00004ciywh0nidxf',''),('clc93sv0w018g4ciy16q8g31p',1,'Admin',1672319415,'192.168.64.1',2,15,33285,NULL,'Counter: Charge KW-hours','clc93suux00004ciywh0nidxf',''),('clc93sv0w018h4ciya2yinlx4',1,'Admin',1672319415,'192.168.64.1',2,15,33286,NULL,'Battery: Charge State','clc93suux00004ciywh0nidxf',''),('clc93sv0w018i4ciy1xcpz6jl',1,'Admin',1672319415,'192.168.64.1',2,15,33287,NULL,'Array: Sweep Pmax','clc93suux00004ciywh0nidxf',''),('clc93sv0w018j4ciyinsv6cdf',1,'Admin',1672319415,'192.168.64.1',2,15,33288,NULL,'Battery: Output Power','clc93suux00004ciywh0nidxf',''),('clc93sv0w018k4ciy77lw7riw',1,'Admin',1672319415,'192.168.64.1',2,15,33289,NULL,'Battery: Charge Current','clc93suux00004ciywh0nidxf',''),('clc93sv0w018l4ciy7t81b5em',1,'Admin',1672319415,'192.168.64.1',2,15,33290,NULL,'Battery: Battery Voltage discovery','clc93suux00004ciywh0nidxf',''),('clc93sv0w018m4ciypei6ttzi',1,'Admin',1672319415,'192.168.64.1',2,15,33291,NULL,'Array: Voltage','clc93suux00004ciywh0nidxf',''),('clc93sv0w018n4ciy9hu1tvrz',1,'Admin',1672319415,'192.168.64.1',2,15,33292,NULL,'Array: Sweep Voc','clc93suux00004ciywh0nidxf',''),('clc93sv0w018o4ciyfzs7d42n',1,'Admin',1672319415,'192.168.64.1',2,15,33293,NULL,'Array: Sweep Vmp','clc93suux00004ciywh0nidxf',''),('clc93sv0w018p4ciyafep1llg',1,'Admin',1672319415,'192.168.64.1',2,15,33294,NULL,'Temperature: Heatsink','clc93suux00004ciywh0nidxf',''),('clc93sv0w018q4ciycp5y7vf8',1,'Admin',1672319415,'192.168.64.1',2,15,33297,NULL,'Battery: Battery Voltage discovery','clc93suux00004ciywh0nidxf',''),('clc93sv0w018r4ciylyr2o248',1,'Admin',1672319415,'192.168.64.1',2,15,33298,NULL,'Status: Control Mode','clc93suux00004ciywh0nidxf',''),('clc93sv0w018s4ciyfov7elfp',1,'Admin',1672319415,'192.168.64.1',2,15,33299,NULL,'Counter: Amp-hours','clc93suux00004ciywh0nidxf',''),('clc93sv0w018t4ciyet29fh8z',1,'Admin',1672319415,'192.168.64.1',2,15,33300,NULL,'Counter: KW-hours','clc93suux00004ciywh0nidxf',''),('clc93sv0w018u4ciyvqb7chqc',1,'Admin',1672319415,'192.168.64.1',2,15,33301,NULL,'Status: Alarms','clc93suux00004ciywh0nidxf',''),('clc93sv0w018v4ciyz7f15i45',1,'Admin',1672319415,'192.168.64.1',2,15,33302,NULL,'Status: Faults','clc93suux00004ciywh0nidxf',''),('clc93sv0w018w4ciytb783h4s',1,'Admin',1672319415,'192.168.64.1',2,15,33303,NULL,'Status: Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0w018x4ciy1tu28381',1,'Admin',1672319415,'192.168.64.1',2,15,33304,NULL,'Temperature: Battery','clc93suux00004ciywh0nidxf',''),('clc93sv0w018y4ciycvnv90ex',1,'Admin',1672319415,'192.168.64.1',2,15,33305,NULL,'Temperature: Heatsink','clc93suux00004ciywh0nidxf',''),('clc93sv0w018z4ciytuq8aobg',1,'Admin',1672319415,'192.168.64.1',2,15,33348,NULL,'NetApp FAS3220: Failed disks count','clc93suux00004ciywh0nidxf',''),('clc93sv0w01904ciyl9t1erff',1,'Admin',1672319415,'192.168.64.1',2,15,33349,NULL,'NetApp FAS3220: Failed disks message','clc93suux00004ciywh0nidxf',''),('clc93sv0w01914ciy9y12f2rp',1,'Admin',1672319415,'192.168.64.1',2,15,33350,NULL,'NetApp FAS3220: Product firmware version','clc93suux00004ciywh0nidxf',''),('clc93sv0w01924ciyfv4ky7ma',1,'Admin',1672319415,'192.168.64.1',2,15,33351,NULL,'NetApp FAS3220: Product version','clc93suux00004ciywh0nidxf',''),('clc93sv0w01934ciy6q01vb08',1,'Admin',1672319415,'192.168.64.1',2,15,33764,NULL,'MongoDB: Get server status','clc93suux00004ciywh0nidxf',''),('clc93sv0w01944ciyv4yvmx93',1,'Admin',1672319415,'192.168.64.1',2,15,33765,NULL,'MongoDB: Get Replica Set status','clc93suux00004ciywh0nidxf',''),('clc93sv0w01954ciyobgqegke',1,'Admin',1672319415,'192.168.64.1',2,15,33766,NULL,'MongoDB: Ping','clc93suux00004ciywh0nidxf',''),('clc93sv0w01964ciyq3djtoyv',1,'Admin',1672319415,'192.168.64.1',2,15,33767,NULL,'MongoDB: Get oplog stats','clc93suux00004ciywh0nidxf',''),('clc93sv0w01974ciyyd1ew14i',1,'Admin',1672319415,'192.168.64.1',2,15,33768,NULL,'MongoDB: Get collections usage stats','clc93suux00004ciywh0nidxf',''),('clc93sv0w01984ciykrvhc3ez',1,'Admin',1672319415,'192.168.64.1',2,15,33769,NULL,'MongoDB: Document: deleted, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01994ciy6iclpc7k',1,'Admin',1672319415,'192.168.64.1',2,15,33770,NULL,'MongoDB: Requests, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w019a4ciynkyk388l',1,'Admin',1672319415,'192.168.64.1',2,15,33771,NULL,'MongoDB: Memory: mapped with journal','clc93suux00004ciywh0nidxf',''),('clc93sv0w019b4ciyy2r4vahj',1,'Admin',1672319415,'192.168.64.1',2,15,33772,NULL,'MongoDB: Memory: resident','clc93suux00004ciywh0nidxf',''),('clc93sv0w019c4ciycv680ith',1,'Admin',1672319415,'192.168.64.1',2,15,33773,NULL,'MongoDB: Memory: virtual','clc93suux00004ciywh0nidxf',''),('clc93sv0w019d4ciygsh1gqul',1,'Admin',1672319415,'192.168.64.1',2,15,33774,NULL,'MongoDB: Cursor: open no timeout','clc93suux00004ciywh0nidxf',''),('clc93sv0w019e4ciyshdi9aci',1,'Admin',1672319415,'192.168.64.1',2,15,33775,NULL,'MongoDB: Bytes in, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w019f4ciy0stxsqt3',1,'Admin',1672319415,'192.168.64.1',2,15,33776,NULL,'MongoDB: Bytes out, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w019g4ciyre51142o',1,'Admin',1672319415,'192.168.64.1',2,15,33777,NULL,'MongoDB: Operations: delete, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w019h4ciy6zvnnvzs',1,'Admin',1672319415,'192.168.64.1',2,15,33778,NULL,'MongoDB: Operations: command, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w019i4ciy9rhsmb2d',1,'Admin',1672319415,'192.168.64.1',2,15,33779,NULL,'MongoDB: Architecture','clc93suux00004ciywh0nidxf',''),('clc93sv0w019j4ciyetiio1k5',1,'Admin',1672319415,'192.168.64.1',2,15,33780,NULL,'MongoDB: Operations: getmore, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w019k4ciyb4sqnohq',1,'Admin',1672319415,'192.168.64.1',2,15,33781,NULL,'MongoDB: Operations: insert, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w019l4ciy77mvl1t1',1,'Admin',1672319415,'192.168.64.1',2,15,33782,NULL,'MongoDB: Operations: query, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w019m4ciyndrkecht',1,'Admin',1672319415,'192.168.64.1',2,15,33783,NULL,'MongoDB: Operations: update, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w019n4ciy4yeid9rc',1,'Admin',1672319415,'192.168.64.1',2,15,33784,NULL,'MongoDB: Uptime','clc93suux00004ciywh0nidxf',''),('clc93sv0w019o4ciyvs2h4f9u',1,'Admin',1672319415,'192.168.64.1',2,15,33785,NULL,'MongoDB: Memory: mapped','clc93suux00004ciywh0nidxf',''),('clc93sv0w019p4ciy6d66yiiy',1,'Admin',1672319415,'192.168.64.1',2,15,33786,NULL,'MongoDB: Cursor: timed out, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w019q4ciym3rxule3',1,'Admin',1672319415,'192.168.64.1',2,15,33787,NULL,'MongoDB: Document: inserted, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w019r4ciy3vwyhfmb',1,'Admin',1672319415,'192.168.64.1',2,15,33788,NULL,'MongoDB: Asserts: user, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w019s4ciytocn9r5h',1,'Admin',1672319415,'192.168.64.1',2,15,33789,NULL,'MongoDB: Document: returned, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w019t4ciyh3irpwpj',1,'Admin',1672319415,'192.168.64.1',2,15,33790,NULL,'MongoDB: Document: updated, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w019u4ciygodci0s2',1,'Admin',1672319415,'192.168.64.1',2,15,33791,NULL,'MongoDB: Active clients: readers','clc93suux00004ciywh0nidxf',''),('clc93sv0w019v4ciyf6qojx4s',1,'Admin',1672319415,'192.168.64.1',2,15,33792,NULL,'MongoDB: Active clients: total','clc93suux00004ciywh0nidxf',''),('clc93sv0w019w4ciyfxxhfe9t',1,'Admin',1672319415,'192.168.64.1',2,15,33793,NULL,'MongoDB: Active clients: writers','clc93suux00004ciywh0nidxf',''),('clc93sv0w019x4ciyzlytzu39',1,'Admin',1672319415,'192.168.64.1',2,15,33794,NULL,'MongoDB: Asserts: message, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w019y4ciyq7imgqqj',1,'Admin',1672319415,'192.168.64.1',2,15,33795,NULL,'MongoDB: Asserts: regular, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w019z4ciyd3jz1wmu',1,'Admin',1672319415,'192.168.64.1',2,15,33796,NULL,'MongoDB: Asserts: rollovers, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01a04ciyy3pi2m48',1,'Admin',1672319415,'192.168.64.1',2,15,33797,NULL,'MongoDB: Asserts: warning, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01a14ciyshy72589',1,'Admin',1672319415,'192.168.64.1',2,15,33798,NULL,'MongoDB: Cursor: open total','clc93suux00004ciywh0nidxf',''),('clc93sv0w01a24ciyy0ivifkf',1,'Admin',1672319415,'192.168.64.1',2,15,33799,NULL,'MongoDB: Connections, active','clc93suux00004ciywh0nidxf',''),('clc93sv0w01a34ciyf7i2zuwl',1,'Admin',1672319415,'192.168.64.1',2,15,33800,NULL,'MongoDB: Connections, available','clc93suux00004ciywh0nidxf',''),('clc93sv0w01a44ciy03m6tzkq',1,'Admin',1672319415,'192.168.64.1',2,15,33801,NULL,'MongoDB: Connections, current','clc93suux00004ciywh0nidxf',''),('clc93sv0w01a54ciyv2rs689u',1,'Admin',1672319415,'192.168.64.1',2,15,33802,NULL,'MongoDB: New connections, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01a64ciye7nlqava',1,'Admin',1672319415,'192.168.64.1',2,15,33803,NULL,'MongoDB: Current queue: readers','clc93suux00004ciywh0nidxf',''),('clc93sv0w01a74ciy8n0bohb9',1,'Admin',1672319415,'192.168.64.1',2,15,33804,NULL,'MongoDB: Current queue: total','clc93suux00004ciywh0nidxf',''),('clc93sv0w01a84ciyqqc9jn81',1,'Admin',1672319415,'192.168.64.1',2,15,33805,NULL,'MongoDB: Current queue: writers','clc93suux00004ciywh0nidxf',''),('clc93sv0w01a94ciyj2d5e6de',1,'Admin',1672319415,'192.168.64.1',2,15,33806,NULL,'MongoDB: Cursor: open pinned','clc93suux00004ciywh0nidxf',''),('clc93sv0w01aa4ciyw7qllv2a',1,'Admin',1672319415,'192.168.64.1',2,15,33807,NULL,'MongoDB: MongoDB version','clc93suux00004ciywh0nidxf',''),('clc93sv0w01ab4ciy6umjz6i8',1,'Admin',1672319415,'192.168.64.1',2,15,33886,NULL,'MongoDB cluster: Jumbo chunks','clc93suux00004ciywh0nidxf',''),('clc93sv0w01ac4ciy6fzhwu16',1,'Admin',1672319415,'192.168.64.1',2,15,33887,NULL,'MongoDB cluster: Get server status','clc93suux00004ciywh0nidxf',''),('clc93sv0w01ad4ciy3vnn30es',1,'Admin',1672319415,'192.168.64.1',2,15,33888,NULL,'MongoDB cluster: Ping','clc93suux00004ciywh0nidxf',''),('clc93sv0w01ae4ciyztr1jwkm',1,'Admin',1672319415,'192.168.64.1',2,15,33889,NULL,'MongoDB cluster: Get mongodb.connpool.stats','clc93suux00004ciywh0nidxf',''),('clc93sv0w01af4ciyz5qet5p1',1,'Admin',1672319415,'192.168.64.1',2,15,33891,NULL,'MongoDB cluster: Operations: command','clc93suux00004ciywh0nidxf',''),('clc93sv0w01ag4ciypxba7q5y',1,'Admin',1672319415,'192.168.64.1',2,15,33892,NULL,'MongoDB cluster: Bytes in, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01ah4ciy4emljaos',1,'Admin',1672319415,'192.168.64.1',2,15,33893,NULL,'MongoDB cluster: Bytes out, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01ai4ciye3v6z9o8',1,'Admin',1672319415,'192.168.64.1',2,15,33894,NULL,'MongoDB cluster: Requests, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01aj4ciyxvre925r',1,'Admin',1672319415,'192.168.64.1',2,15,33895,NULL,'MongoDB cluster: Operations: getmore, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01ak4ciyfj6b5p4n',1,'Admin',1672319415,'192.168.64.1',2,15,33896,NULL,'MongoDB cluster: Operations: delete','clc93suux00004ciywh0nidxf',''),('clc93sv0w01al4ciy7rdhdpme',1,'Admin',1672319415,'192.168.64.1',2,15,33897,NULL,'MongoDB cluster: Memory: virtual','clc93suux00004ciywh0nidxf',''),('clc93sv0w01am4ciy1rgnkpfx',1,'Admin',1672319415,'192.168.64.1',2,15,33898,NULL,'MongoDB cluster: Operations: insert, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01an4ciyhs089kkt',1,'Admin',1672319415,'192.168.64.1',2,15,33899,NULL,'MongoDB cluster: Operations: query, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01ao4ciyu9ql4hy5',1,'Admin',1672319415,'192.168.64.1',2,15,33900,NULL,'MongoDB cluster: Operations: update, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01ap4ciyk032daj7',1,'Admin',1672319415,'192.168.64.1',2,15,33901,NULL,'MongoDB cluster: Uptime','clc93suux00004ciywh0nidxf',''),('clc93sv0w01aq4ciylh17ascc',1,'Admin',1672319415,'192.168.64.1',2,15,33902,NULL,'MongoDB cluster: Cursor: open no timeout','clc93suux00004ciywh0nidxf',''),('clc93sv0w01ar4ciymx9htbnj',1,'Admin',1672319415,'192.168.64.1',2,15,33903,NULL,'MongoDB cluster: Architecture','clc93suux00004ciywh0nidxf',''),('clc93sv0w01as4ciybe1x7h4m',1,'Admin',1672319415,'192.168.64.1',2,15,33904,NULL,'MongoDB cluster: Memory: resident','clc93suux00004ciywh0nidxf',''),('clc93sv0w01at4ciyv6bz7fu3',1,'Admin',1672319415,'192.168.64.1',2,15,33905,NULL,'MongoDB cluster: Connections, active','clc93suux00004ciywh0nidxf',''),('clc93sv0w01au4ciyiphxkrez',1,'Admin',1672319415,'192.168.64.1',2,15,33906,NULL,'MongoDB cluster: Last seen configserver','clc93suux00004ciywh0nidxf',''),('clc93sv0w01av4ciylj6nsx2b',1,'Admin',1672319415,'192.168.64.1',2,15,33907,NULL,'MongoDB cluster: Cursor: timed out, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01aw4ciyj7a3edhh',1,'Admin',1672319415,'192.168.64.1',2,15,33908,NULL,'MongoDB cluster: Cursor: open total','clc93suux00004ciywh0nidxf',''),('clc93sv0w01ax4ciy0q3sk1on',1,'Admin',1672319415,'192.168.64.1',2,15,33909,NULL,'MongoDB cluster: Cursor: open pinned','clc93suux00004ciywh0nidxf',''),('clc93sv0w01ay4ciydelzrsao',1,'Admin',1672319415,'192.168.64.1',2,15,33910,NULL,'MongoDB cluster: Connection pool: scoped','clc93suux00004ciywh0nidxf',''),('clc93sv0w01az4ciyql6q9u3j',1,'Admin',1672319415,'192.168.64.1',2,15,33911,NULL,'MongoDB cluster: Connection pool: refreshing','clc93suux00004ciywh0nidxf',''),('clc93sv0w01b04ciy79gg5wy3',1,'Admin',1672319415,'192.168.64.1',2,15,33912,NULL,'MongoDB cluster: Connection pool: in use','clc93suux00004ciywh0nidxf',''),('clc93sv0w01b14ciyua4ba9nx',1,'Admin',1672319415,'192.168.64.1',2,15,33913,NULL,'MongoDB cluster: Connection pool: created, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01b24ciyricuiq96',1,'Admin',1672319415,'192.168.64.1',2,15,33914,NULL,'MongoDB cluster: Connection pool: client connections','clc93suux00004ciywh0nidxf',''),('clc93sv0w01b34ciyvvrql7qu',1,'Admin',1672319415,'192.168.64.1',2,15,33915,NULL,'MongoDB cluster: Connection pool: available','clc93suux00004ciywh0nidxf',''),('clc93sv0w01b44ciyxtnx1uj4',1,'Admin',1672319415,'192.168.64.1',2,15,33916,NULL,'MongoDB cluster: New connections, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01b54ciy6sz1r7jf',1,'Admin',1672319415,'192.168.64.1',2,15,33917,NULL,'MongoDB cluster: Connections, current','clc93suux00004ciywh0nidxf',''),('clc93sv0w01b64ciy7m25djlp',1,'Admin',1672319415,'192.168.64.1',2,15,33918,NULL,'MongoDB cluster: Connections, available','clc93suux00004ciywh0nidxf',''),('clc93sv0w01b74ciy2xz9sdgv',1,'Admin',1672319415,'192.168.64.1',2,15,33919,NULL,'MongoDB cluster: Mongos version','clc93suux00004ciywh0nidxf',''),('clc93sv0w01b84ciyfcbxvqfv',1,'Admin',1672319415,'192.168.64.1',2,15,34226,NULL,'Get chassis','clc93suux00004ciywh0nidxf',''),('clc93sv0w01b94ciy3itz24gv',1,'Admin',1672319415,'192.168.64.1',2,15,34227,NULL,'Cluster latency, read','clc93suux00004ciywh0nidxf',''),('clc93sv0w01ba4ciygjuvd6x6',1,'Admin',1672319415,'192.168.64.1',2,15,34228,NULL,'Get SVMs','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bb4ciy4859gq4w',1,'Admin',1672319415,'192.168.64.1',2,15,34229,NULL,'Get FC ports','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bc4ciy4pwmwlyr',1,'Admin',1672319415,'192.168.64.1',2,15,34230,NULL,'Get ethernet ports','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bd4ciynw8lmh2v',1,'Admin',1672319415,'192.168.64.1',2,15,34231,NULL,'Get nodes','clc93suux00004ciywh0nidxf',''),('clc93sv0w01be4ciyy8b27rmn',1,'Admin',1672319415,'192.168.64.1',2,15,34232,NULL,'Get LUNs','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bf4ciys8pzqbop',1,'Admin',1672319415,'192.168.64.1',2,15,34233,NULL,'Get FRUs','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bg4ciy6f9jc2xs',1,'Admin',1672319415,'192.168.64.1',2,15,34234,NULL,'Get disks','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bh4ciyuy22h0mz',1,'Admin',1672319415,'192.168.64.1',2,15,34235,NULL,'Get cluster','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bi4ciyktzv63u4',1,'Admin',1672319415,'192.168.64.1',2,15,34236,NULL,'Cluster latency, write','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bj4ciye3g78nm6',1,'Admin',1672319415,'192.168.64.1',2,15,34237,NULL,'Cluster latency, total','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bk4ciyium09gnw',1,'Admin',1672319415,'192.168.64.1',2,15,34238,NULL,'Get volumes','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bl4ciyw0ur1ow3',1,'Admin',1672319415,'192.168.64.1',2,15,34239,NULL,'Cluster latency, other','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bm4ciy4eai8ood',1,'Admin',1672319415,'192.168.64.1',2,15,34240,NULL,'Cluster status','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bn4ciyxiokkl93',1,'Admin',1672319415,'192.168.64.1',2,15,34241,NULL,'Cluster location','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bo4ciyvcwyshym',1,'Admin',1672319415,'192.168.64.1',2,15,34242,NULL,'Cluster name','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bp4ciypt1g9mz5',1,'Admin',1672319415,'192.168.64.1',2,15,34243,NULL,'Cluster IOPS, other rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bq4ciymfmezrj0',1,'Admin',1672319415,'192.168.64.1',2,15,34244,NULL,'Cluster IOPS, read rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01br4ciy4sn9pllw',1,'Admin',1672319415,'192.168.64.1',2,15,34245,NULL,'Cluster IOPS, total rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bs4ciyjkis09wv',1,'Admin',1672319415,'192.168.64.1',2,15,34246,NULL,'Cluster IOPS, write rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bt4ciyfgjs9cv6',1,'Admin',1672319415,'192.168.64.1',2,15,34247,NULL,'Cluster IOPS raw, other','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bu4ciyemw0iyiy',1,'Admin',1672319415,'192.168.64.1',2,15,34248,NULL,'Cluster software version','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bv4ciytfyqd28z',1,'Admin',1672319415,'192.168.64.1',2,15,34249,NULL,'Cluster throughput, write rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bw4ciy0vlz6zvr',1,'Admin',1672319415,'192.168.64.1',2,15,34250,NULL,'Cluster IOPS raw, write','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bx4ciyo23tyohb',1,'Admin',1672319415,'192.168.64.1',2,15,34251,NULL,'Cluster throughput, total rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01by4ciykfhujchd',1,'Admin',1672319415,'192.168.64.1',2,15,34252,NULL,'Cluster throughput, read rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01bz4ciylhdomjrp',1,'Admin',1672319415,'192.168.64.1',2,15,34253,NULL,'Cluster throughput, other rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01c04ciy7xh15saa',1,'Admin',1672319415,'192.168.64.1',2,15,34254,NULL,'Cluster latency raw, write','clc93suux00004ciywh0nidxf',''),('clc93sv0w01c14ciy9j6c5km8',1,'Admin',1672319415,'192.168.64.1',2,15,34255,NULL,'Cluster latency raw, total','clc93suux00004ciywh0nidxf',''),('clc93sv0w01c24ciyvztrfe1w',1,'Admin',1672319415,'192.168.64.1',2,15,34256,NULL,'Cluster IOPS raw, read','clc93suux00004ciywh0nidxf',''),('clc93sv0w01c34ciyjxb41698',1,'Admin',1672319415,'192.168.64.1',2,15,34257,NULL,'Cluster latency raw, other','clc93suux00004ciywh0nidxf',''),('clc93sv0w01c44ciy0lq5ag8b',1,'Admin',1672319415,'192.168.64.1',2,15,34258,NULL,'Cluster IOPS raw, total','clc93suux00004ciywh0nidxf',''),('clc93sv0w01c54ciycdxo7map',1,'Admin',1672319415,'192.168.64.1',2,15,34259,NULL,'Cluster latency raw, read','clc93suux00004ciywh0nidxf',''),('clc93sv0w01c64ciymrsoevq3',1,'Admin',1672319415,'192.168.64.1',2,15,34321,NULL,'MongoDB cluster: Configserver heartbeat','clc93suux00004ciywh0nidxf',''),('clc93sv0w01c74ciy7twond5p',1,'Admin',1672319415,'192.168.64.1',2,15,34322,NULL,'MSSQL: Get job status','clc93suux00004ciywh0nidxf',''),('clc93sv0w01c84ciyjeu837x2',1,'Admin',1672319415,'192.168.64.1',2,15,34323,NULL,'MSSQL: Get last backup','clc93suux00004ciywh0nidxf',''),('clc93sv0w01c94ciyhmm0e1yu',1,'Admin',1672319415,'192.168.64.1',2,15,35153,NULL,'Nginx: Get connections','clc93suux00004ciywh0nidxf',''),('clc93sv0w01ca4ciy0dcdzqas',1,'Admin',1672319415,'192.168.64.1',2,15,35154,NULL,'Nginx: Get info','clc93suux00004ciywh0nidxf',''),('clc93sv0w01cb4ciyzokaif5q',1,'Admin',1672319415,'192.168.64.1',2,15,35155,NULL,'Nginx: Get Stream server zones','clc93suux00004ciywh0nidxf',''),('clc93sv0w01cc4ciy3bis7ga7',1,'Admin',1672319415,'192.168.64.1',2,15,35156,NULL,'Nginx: Get SSL','clc93suux00004ciywh0nidxf',''),('clc93sv0w01cd4ciy8gz4deek',1,'Admin',1672319415,'192.168.64.1',2,15,35157,NULL,'Nginx: Get resolvers','clc93suux00004ciywh0nidxf',''),('clc93sv0w01ce4ciyk4jigfua',1,'Admin',1672319415,'192.168.64.1',2,15,35158,NULL,'Nginx: Get requests','clc93suux00004ciywh0nidxf',''),('clc93sv0w01cf4ciy2i68hvrw',1,'Admin',1672319415,'192.168.64.1',2,15,35159,NULL,'Nginx: Get Stream upstreams','clc93suux00004ciywh0nidxf',''),('clc93sv0w01cg4ciyvfj32pxv',1,'Admin',1672319415,'192.168.64.1',2,15,35160,NULL,'Nginx: Get HTTP upstreams','clc93suux00004ciywh0nidxf',''),('clc93sv0w01ch4ciy5cpq2kmm',1,'Admin',1672319415,'192.168.64.1',2,15,35161,NULL,'Nginx: Get HTTP location zones','clc93suux00004ciywh0nidxf',''),('clc93sv0w01ci4ciyiqhi01r4',1,'Admin',1672319415,'192.168.64.1',2,15,35162,NULL,'Nginx: Get HTTP zones','clc93suux00004ciywh0nidxf',''),('clc93sv0w01cj4ciyczz46q10',1,'Admin',1672319415,'192.168.64.1',2,15,35163,NULL,'Nginx: Connections idle','clc93suux00004ciywh0nidxf',''),('clc93sv0w01ck4ciy8weli4bm',1,'Admin',1672319415,'192.168.64.1',2,15,35164,NULL,'Nginx: Connections active','clc93suux00004ciywh0nidxf',''),('clc93sv0w01cl4ciyeomorcwd',1,'Admin',1672319415,'192.168.64.1',2,15,35165,NULL,'Nginx: SSL session reuses, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0w01cm4ciyzzp15t0i',1,'Admin',1672319415,'192.168.64.1',2,15,35166,NULL,'Nginx: SSL handshakes failed, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0x01cn4ciyof6p2yjv',1,'Admin',1672319415,'192.168.64.1',2,15,35167,NULL,'Nginx: SSL handshakes, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0x01co4ciy27u8ysnt',1,'Admin',1672319415,'192.168.64.1',2,15,35168,NULL,'Nginx: Connections dropped','clc93suux00004ciywh0nidxf',''),('clc93sv0x01cp4ciy3vbmunti',1,'Admin',1672319415,'192.168.64.1',2,15,35169,NULL,'Nginx: Requests current','clc93suux00004ciywh0nidxf',''),('clc93sv0x01cq4ciy0391el8x',1,'Admin',1672319415,'192.168.64.1',2,15,35170,NULL,'Nginx: Requests total, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0x01cr4ciy0ja0jg80',1,'Admin',1672319415,'192.168.64.1',2,15,35171,NULL,'Nginx: Version','clc93suux00004ciywh0nidxf',''),('clc93sv0x01cs4ciy2653l482',1,'Admin',1672319415,'192.168.64.1',2,15,35172,NULL,'Nginx: Connections accepted, rate','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ct4ciy0a6ylaj4',1,'Admin',1672319415,'192.168.64.1',2,15,35173,NULL,'Nginx: Generation','clc93suux00004ciywh0nidxf',''),('clc93sv0x01cu4ciy8s0ecvoi',1,'Admin',1672319415,'192.168.64.1',2,15,35174,NULL,'Nginx: Get info error','clc93suux00004ciywh0nidxf',''),('clc93sv0x01cv4ciykgvd1q3p',1,'Admin',1672319415,'192.168.64.1',2,15,35175,NULL,'Nginx: Address','clc93suux00004ciywh0nidxf',''),('clc93sv0x01cw4ciy1vtlhne5',1,'Admin',1672319415,'192.168.64.1',2,15,35176,NULL,'Nginx: Uptime','clc93suux00004ciywh0nidxf',''),('clc93sv0x01cx4ciysiwch9pz',1,'Admin',1672319415,'192.168.64.1',2,15,38575,NULL,'Firmware version','clc93suux00004ciywh0nidxf',''),('clc93sv0x01cy4ciyp3ewq6oi',1,'Admin',1672319415,'192.168.64.1',2,15,38576,NULL,'Hardware model name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01cz4ciyultwguel',1,'Admin',1672319415,'192.168.64.1',2,15,38577,NULL,'Hardware serial number','clc93suux00004ciywh0nidxf',''),('clc93sv0x01d04ciyiyd1r9vv',1,'Admin',1672319415,'192.168.64.1',2,15,38578,NULL,'Operating system','clc93suux00004ciywh0nidxf',''),('clc93sv0x01d14ciydilci9kp',1,'Admin',1672319415,'192.168.64.1',2,15,38579,NULL,'Total memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01d24ciytdjd28gm',1,'Admin',1672319415,'192.168.64.1',2,15,38580,NULL,'Used memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01d34ciy3igkymfm',1,'Admin',1672319415,'192.168.64.1',2,15,38581,NULL,'Memory utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0x01d44ciyg6n1z6g8',1,'Admin',1672319415,'192.168.64.1',2,15,38629,NULL,'Firmware version','clc93suux00004ciywh0nidxf',''),('clc93sv0x01d54ciymx85s0d6',1,'Admin',1672319415,'192.168.64.1',2,15,38630,NULL,'Hardware model name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01d64ciy1nleokf1',1,'Admin',1672319415,'192.168.64.1',2,15,38631,NULL,'Hardware serial number','clc93suux00004ciywh0nidxf',''),('clc93sv0x01d74ciymw7hrl6i',1,'Admin',1672319415,'192.168.64.1',2,15,38632,NULL,'Operating system','clc93suux00004ciywh0nidxf',''),('clc93sv0x01d84ciyb7lcehgh',1,'Admin',1672319415,'192.168.64.1',2,15,38633,NULL,'Total memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01d94ciyv4yei1ik',1,'Admin',1672319415,'192.168.64.1',2,15,38634,NULL,'Used memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01da4ciyrf11qbss',1,'Admin',1672319415,'192.168.64.1',2,15,38635,NULL,'Memory utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0x01db4ciyei21ec2f',1,'Admin',1672319415,'192.168.64.1',2,15,38683,NULL,'Firmware version','clc93suux00004ciywh0nidxf',''),('clc93sv0x01dc4ciytilyb9au',1,'Admin',1672319415,'192.168.64.1',2,15,38684,NULL,'Hardware model name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01dd4ciyqu0zoo3r',1,'Admin',1672319415,'192.168.64.1',2,15,38685,NULL,'Hardware serial number','clc93suux00004ciywh0nidxf',''),('clc93sv0x01de4ciydv0oi9b6',1,'Admin',1672319415,'192.168.64.1',2,15,38686,NULL,'Operating system','clc93suux00004ciywh0nidxf',''),('clc93sv0x01df4ciyutep2xvt',1,'Admin',1672319415,'192.168.64.1',2,15,38687,NULL,'Total memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01dg4ciyxhyhoenh',1,'Admin',1672319415,'192.168.64.1',2,15,38688,NULL,'Used memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01dh4ciyqqh6z5av',1,'Admin',1672319415,'192.168.64.1',2,15,38689,NULL,'Memory utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0x01di4ciy4ccnr2am',1,'Admin',1672319415,'192.168.64.1',2,15,38737,NULL,'Firmware version','clc93suux00004ciywh0nidxf',''),('clc93sv0x01dj4ciyvqaxh38c',1,'Admin',1672319415,'192.168.64.1',2,15,38738,NULL,'Hardware model name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01dk4ciyzmm2fars',1,'Admin',1672319415,'192.168.64.1',2,15,38739,NULL,'Hardware serial number','clc93suux00004ciywh0nidxf',''),('clc93sv0x01dl4ciybn0y2vst',1,'Admin',1672319415,'192.168.64.1',2,15,38740,NULL,'Operating system','clc93suux00004ciywh0nidxf',''),('clc93sv0x01dm4ciy5ieo2psf',1,'Admin',1672319415,'192.168.64.1',2,15,38741,NULL,'Total memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01dn4ciy2m92tmbl',1,'Admin',1672319415,'192.168.64.1',2,15,38742,NULL,'Used memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01do4ciyhn1487wk',1,'Admin',1672319415,'192.168.64.1',2,15,38743,NULL,'Memory utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0x01dp4ciy4v0qb96h',1,'Admin',1672319415,'192.168.64.1',2,15,38791,NULL,'Firmware version','clc93suux00004ciywh0nidxf',''),('clc93sv0x01dq4ciytt6dzpk4',1,'Admin',1672319415,'192.168.64.1',2,15,38792,NULL,'Hardware model name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01dr4ciy6ngysqaj',1,'Admin',1672319415,'192.168.64.1',2,15,38793,NULL,'Hardware serial number','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ds4ciy3wxickj2',1,'Admin',1672319415,'192.168.64.1',2,15,38794,NULL,'Operating system','clc93suux00004ciywh0nidxf',''),('clc93sv0x01dt4ciykowsoel8',1,'Admin',1672319415,'192.168.64.1',2,15,38795,NULL,'Total memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01du4ciyl7ol0ed5',1,'Admin',1672319415,'192.168.64.1',2,15,38796,NULL,'Used memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01dv4ciyeayhfc2i',1,'Admin',1672319415,'192.168.64.1',2,15,38797,NULL,'Memory utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0x01dw4ciyecnpdzqi',1,'Admin',1672319415,'192.168.64.1',2,15,38845,NULL,'Firmware version','clc93suux00004ciywh0nidxf',''),('clc93sv0x01dx4ciyf2emratb',1,'Admin',1672319415,'192.168.64.1',2,15,38846,NULL,'Hardware model name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01dy4ciy70wpdmwg',1,'Admin',1672319415,'192.168.64.1',2,15,38847,NULL,'Hardware serial number','clc93suux00004ciywh0nidxf',''),('clc93sv0x01dz4ciyggj84gtt',1,'Admin',1672319415,'192.168.64.1',2,15,38848,NULL,'Operating system','clc93suux00004ciywh0nidxf',''),('clc93sv0x01e04ciym268u66f',1,'Admin',1672319415,'192.168.64.1',2,15,38849,NULL,'Total memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01e14ciy563f2mjl',1,'Admin',1672319415,'192.168.64.1',2,15,38850,NULL,'Used memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01e24ciyqfodb8cw',1,'Admin',1672319415,'192.168.64.1',2,15,38851,NULL,'Memory utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0x01e34ciyt2d20k6m',1,'Admin',1672319415,'192.168.64.1',2,15,38899,NULL,'Firmware version','clc93suux00004ciywh0nidxf',''),('clc93sv0x01e44ciyikswxjfo',1,'Admin',1672319415,'192.168.64.1',2,15,38900,NULL,'Hardware model name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01e54ciyhorbfer9',1,'Admin',1672319415,'192.168.64.1',2,15,38901,NULL,'Hardware serial number','clc93suux00004ciywh0nidxf',''),('clc93sv0x01e64ciyizn74qc4',1,'Admin',1672319415,'192.168.64.1',2,15,38902,NULL,'Operating system','clc93suux00004ciywh0nidxf',''),('clc93sv0x01e74ciyxgxitbpe',1,'Admin',1672319415,'192.168.64.1',2,15,38903,NULL,'Total memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01e84ciyguk57k4f',1,'Admin',1672319415,'192.168.64.1',2,15,38904,NULL,'Used memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01e94ciy1dmak9qv',1,'Admin',1672319415,'192.168.64.1',2,15,38905,NULL,'Memory utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ea4ciys5hatlw6',1,'Admin',1672319415,'192.168.64.1',2,15,38953,NULL,'Firmware version','clc93suux00004ciywh0nidxf',''),('clc93sv0x01eb4ciyw04m9gmp',1,'Admin',1672319415,'192.168.64.1',2,15,38954,NULL,'Hardware model name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ec4ciyjg0tmhjv',1,'Admin',1672319415,'192.168.64.1',2,15,38955,NULL,'Hardware serial number','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ed4ciypsgnz9xo',1,'Admin',1672319415,'192.168.64.1',2,15,38956,NULL,'Operating system','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ee4ciylyl1zh2v',1,'Admin',1672319415,'192.168.64.1',2,15,38957,NULL,'Total memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ef4ciysau2ydpz',1,'Admin',1672319415,'192.168.64.1',2,15,38958,NULL,'Used memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01eg4ciys55r4rat',1,'Admin',1672319415,'192.168.64.1',2,15,38959,NULL,'Memory utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0x01eh4ciyrudwbl6w',1,'Admin',1672319415,'192.168.64.1',2,15,39007,NULL,'Firmware version','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ei4ciy751obdgl',1,'Admin',1672319415,'192.168.64.1',2,15,39008,NULL,'Hardware model name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ej4ciydeabrgos',1,'Admin',1672319415,'192.168.64.1',2,15,39009,NULL,'Hardware serial number','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ek4ciytxh750rk',1,'Admin',1672319415,'192.168.64.1',2,15,39010,NULL,'Operating system','clc93suux00004ciywh0nidxf',''),('clc93sv0x01el4ciy3hd60kw3',1,'Admin',1672319415,'192.168.64.1',2,15,39011,NULL,'Total memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01em4ciy6die2jll',1,'Admin',1672319415,'192.168.64.1',2,15,39012,NULL,'Used memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01en4ciy6vhcqd50',1,'Admin',1672319415,'192.168.64.1',2,15,39013,NULL,'Memory utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0x01eo4ciyi3d8oyie',1,'Admin',1672319415,'192.168.64.1',2,15,39061,NULL,'Firmware version','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ep4ciyubum4x2f',1,'Admin',1672319415,'192.168.64.1',2,15,39062,NULL,'Hardware model name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01eq4ciymtidljj1',1,'Admin',1672319415,'192.168.64.1',2,15,39063,NULL,'Hardware serial number','clc93suux00004ciywh0nidxf',''),('clc93sv0x01er4ciygxv6ftdf',1,'Admin',1672319415,'192.168.64.1',2,15,39064,NULL,'Operating system','clc93suux00004ciywh0nidxf',''),('clc93sv0x01es4ciygy5np9kz',1,'Admin',1672319415,'192.168.64.1',2,15,39065,NULL,'Total memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01et4ciy0zz1se7z',1,'Admin',1672319415,'192.168.64.1',2,15,39066,NULL,'Used memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01eu4ciy8x7dff6f',1,'Admin',1672319415,'192.168.64.1',2,15,39067,NULL,'Memory utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ev4ciyv8r8xj16',1,'Admin',1672319415,'192.168.64.1',2,15,39115,NULL,'Firmware version','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ew4ciyp0oqz2wo',1,'Admin',1672319415,'192.168.64.1',2,15,39116,NULL,'Hardware model name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ex4ciyxbrxjq3j',1,'Admin',1672319415,'192.168.64.1',2,15,39117,NULL,'Hardware serial number','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ey4ciyg25pfss8',1,'Admin',1672319415,'192.168.64.1',2,15,39118,NULL,'Operating system','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ez4ciyapwoah0n',1,'Admin',1672319415,'192.168.64.1',2,15,39119,NULL,'Total memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01f04ciy0ah435ev',1,'Admin',1672319415,'192.168.64.1',2,15,39120,NULL,'Used memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01f14ciybmz8qul9',1,'Admin',1672319415,'192.168.64.1',2,15,39121,NULL,'Memory utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0x01f24ciyo1t4mwvd',1,'Admin',1672319415,'192.168.64.1',2,15,39169,NULL,'Firmware version','clc93suux00004ciywh0nidxf',''),('clc93sv0x01f34ciyqznpem1a',1,'Admin',1672319415,'192.168.64.1',2,15,39170,NULL,'Hardware model name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01f44ciy7t6lit96',1,'Admin',1672319415,'192.168.64.1',2,15,39171,NULL,'Hardware serial number','clc93suux00004ciywh0nidxf',''),('clc93sv0x01f54ciyqs82v90x',1,'Admin',1672319415,'192.168.64.1',2,15,39172,NULL,'Operating system','clc93suux00004ciywh0nidxf',''),('clc93sv0x01f64ciy11cisjod',1,'Admin',1672319415,'192.168.64.1',2,15,39173,NULL,'Total memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01f74ciy8kg2a645',1,'Admin',1672319415,'192.168.64.1',2,15,39174,NULL,'Used memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01f84ciyaxgxi8r3',1,'Admin',1672319415,'192.168.64.1',2,15,39175,NULL,'Memory utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0x01f94ciylsg5utcf',1,'Admin',1672319415,'192.168.64.1',2,15,39223,NULL,'Firmware version','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fa4ciyda0y1huy',1,'Admin',1672319415,'192.168.64.1',2,15,39224,NULL,'Hardware model name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fb4ciyswfdz8bq',1,'Admin',1672319415,'192.168.64.1',2,15,39225,NULL,'Hardware serial number','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fc4ciyjyqazn95',1,'Admin',1672319415,'192.168.64.1',2,15,39226,NULL,'Operating system','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fd4ciywf2ym3z2',1,'Admin',1672319415,'192.168.64.1',2,15,39227,NULL,'Total memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fe4ciyjr216zah',1,'Admin',1672319415,'192.168.64.1',2,15,39228,NULL,'Used memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ff4ciyx9kbijz3',1,'Admin',1672319415,'192.168.64.1',2,15,39229,NULL,'Memory utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fg4ciyx767jq9l',1,'Admin',1672319415,'192.168.64.1',2,15,39277,NULL,'Firmware version','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fh4ciyw7mzur7m',1,'Admin',1672319415,'192.168.64.1',2,15,39278,NULL,'Hardware model name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fi4ciyyd3uqf5h',1,'Admin',1672319415,'192.168.64.1',2,15,39279,NULL,'Hardware serial number','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fj4ciy9s1mwz8l',1,'Admin',1672319415,'192.168.64.1',2,15,39280,NULL,'Operating system','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fk4ciydezm5pmi',1,'Admin',1672319415,'192.168.64.1',2,15,39281,NULL,'Total memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fl4ciy2y6bxtuu',1,'Admin',1672319415,'192.168.64.1',2,15,39282,NULL,'Used memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fm4ciyxnkf5xi9',1,'Admin',1672319415,'192.168.64.1',2,15,39283,NULL,'Memory utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fn4ciy5yl4uodt',1,'Admin',1672319415,'192.168.64.1',2,15,39601,NULL,'Firmware version','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fo4ciybuup1p4u',1,'Admin',1672319415,'192.168.64.1',2,15,39602,NULL,'Hardware model name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fp4ciyexzyaqfz',1,'Admin',1672319415,'192.168.64.1',2,15,39603,NULL,'Hardware serial number','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fq4ciyvbycpv9r',1,'Admin',1672319415,'192.168.64.1',2,15,39604,NULL,'Operating system','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fr4ciygep09dww',1,'Admin',1672319415,'192.168.64.1',2,15,39605,NULL,'Total memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fs4ciywdts8kwl',1,'Admin',1672319415,'192.168.64.1',2,15,39606,NULL,'Used memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ft4ciyp2pyjw5g',1,'Admin',1672319415,'192.168.64.1',2,15,39607,NULL,'Memory utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fu4ciyvaz6nk1w',1,'Admin',1672319415,'192.168.64.1',2,15,39655,NULL,'Firmware version','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fv4ciyd7tzbsus',1,'Admin',1672319415,'192.168.64.1',2,15,39656,NULL,'Hardware model name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fw4ciy8jaqee3w',1,'Admin',1672319415,'192.168.64.1',2,15,39657,NULL,'Hardware serial number','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fx4ciy2ykjlz0o',1,'Admin',1672319415,'192.168.64.1',2,15,39658,NULL,'Operating system','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fy4ciy0o0hwj4r',1,'Admin',1672319415,'192.168.64.1',2,15,39659,NULL,'Total memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01fz4ciyqjs226nw',1,'Admin',1672319415,'192.168.64.1',2,15,39660,NULL,'Used memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01g04ciyumlyazhr',1,'Admin',1672319415,'192.168.64.1',2,15,39661,NULL,'Memory utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0x01g14ciypqhj09p9',1,'Admin',1672319415,'192.168.64.1',2,15,39709,NULL,'Firmware version','clc93suux00004ciywh0nidxf',''),('clc93sv0x01g24ciyy7fjfy0f',1,'Admin',1672319415,'192.168.64.1',2,15,39710,NULL,'Hardware model name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01g34ciyul0cc7s2',1,'Admin',1672319415,'192.168.64.1',2,15,39711,NULL,'Hardware serial number','clc93suux00004ciywh0nidxf',''),('clc93sv0x01g44ciyptzb4cpl',1,'Admin',1672319415,'192.168.64.1',2,15,39712,NULL,'Operating system','clc93suux00004ciywh0nidxf',''),('clc93sv0x01g54ciytxcahdzw',1,'Admin',1672319415,'192.168.64.1',2,15,39713,NULL,'Total memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01g64ciyn1zgvqov',1,'Admin',1672319415,'192.168.64.1',2,15,39714,NULL,'Used memory','clc93suux00004ciywh0nidxf',''),('clc93sv0x01g74ciyxbrsyfxc',1,'Admin',1672319415,'192.168.64.1',2,15,39715,NULL,'Memory utilization','clc93suux00004ciywh0nidxf',''),('clc93sv0x01g84ciyoikf10lf',1,'Admin',1672319415,'192.168.64.1',2,15,40117,NULL,'PFSense: Normalized packets','clc93suux00004ciywh0nidxf',''),('clc93sv0x01g94ciy7kjr8pob',1,'Admin',1672319415,'192.168.64.1',2,15,40119,NULL,'PFSense: DHCP server status','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ga4ciys3vglcw7',1,'Admin',1672319415,'192.168.64.1',2,15,40120,NULL,'PFSense: DNS server status','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gb4ciyb5l5qxkm',1,'Admin',1672319415,'192.168.64.1',2,15,40121,NULL,'PFSense: State of nginx process','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gc4ciyax29ihlo',1,'Admin',1672319415,'192.168.64.1',2,15,40122,NULL,'PFSense: Packets with bad offset','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gd4ciyzj3vq3e5',1,'Admin',1672319415,'192.168.64.1',2,15,40123,NULL,'PFSense: Fragmented packets','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ge4ciypokev143',1,'Admin',1672319415,'192.168.64.1',2,15,40124,NULL,'PFSense: Packets matched a filter rule','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gf4ciycwfxepmx',1,'Admin',1672319415,'192.168.64.1',2,15,40125,NULL,'PFSense: Packets dropped due to memory limitation','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gg4ciypo3swb9d',1,'Admin',1672319415,'192.168.64.1',2,15,40126,NULL,'PFSense: Short packets','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gh4ciycrw4bw52',1,'Admin',1672319415,'192.168.64.1',2,15,40128,NULL,'PFSense: Packet filter running status','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gi4ciyw72rnjkr',1,'Admin',1672319415,'192.168.64.1',2,15,40129,NULL,'PFSense: Firewall rules count','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gj4ciy97pc5pl7',1,'Admin',1672319415,'192.168.64.1',2,15,40130,NULL,'PFSense: Source tracking table current','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gk4ciy9r4sblj4',1,'Admin',1672319415,'192.168.64.1',2,15,40131,NULL,'PFSense: Source tracking table limit','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gl4ciylbkvqdnw',1,'Admin',1672319415,'192.168.64.1',2,15,40132,NULL,'PFSense: Source tracking table utilization in %','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gm4ciybh42guzg',1,'Admin',1672319415,'192.168.64.1',2,15,40133,NULL,'PFSense: States table current','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gn4ciy845rm9bp',1,'Admin',1672319415,'192.168.64.1',2,15,40134,NULL,'PFSense: States table limit','clc93suux00004ciywh0nidxf',''),('clc93sv0x01go4ciyp6u1ucge',1,'Admin',1672319415,'192.168.64.1',2,15,40135,NULL,'PFSense: States table utilization in %','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gp4ciyi2ql65hm',1,'Admin',1672319415,'192.168.64.1',2,15,40136,NULL,'PFSense: SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gq4ciyryqor3jt',1,'Admin',1672319415,'192.168.64.1',2,15,40798,NULL,'ICMP ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gr4ciydmpl3aj6',1,'Admin',1672319415,'192.168.64.1',2,15,40799,NULL,'ICMP loss','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gs4ciy9ig73tvd',1,'Admin',1672319415,'192.168.64.1',2,15,40800,NULL,'ICMP response time','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gt4ciymkmg9dx7',1,'Admin',1672319415,'192.168.64.1',2,15,40801,NULL,'SNMP traps (fallback)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gu4ciydmgdp5yc',1,'Admin',1672319415,'192.168.64.1',2,15,40802,NULL,'System contact details','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gv4ciygqo0qpvf',1,'Admin',1672319415,'192.168.64.1',2,15,40803,NULL,'System description','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gw4ciyj9t4xq3y',1,'Admin',1672319415,'192.168.64.1',2,15,40804,NULL,'System location','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gx4ciy0sveny90',1,'Admin',1672319415,'192.168.64.1',2,15,40805,NULL,'System name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gy4ciyzo4zow3n',1,'Admin',1672319415,'192.168.64.1',2,15,40806,NULL,'System object ID','clc93suux00004ciywh0nidxf',''),('clc93sv0x01gz4ciymobyt0ff',1,'Admin',1672319415,'192.168.64.1',2,15,40807,NULL,'Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01h04ciyl9rgebgs',1,'Admin',1672319415,'192.168.64.1',2,15,40808,NULL,'SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01h14ciyg9tb7hqf',1,'Admin',1672319415,'192.168.64.1',2,15,41606,NULL,'ICMP ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01h24ciyvtcz65k8',1,'Admin',1672319415,'192.168.64.1',2,15,41607,NULL,'System name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01h34ciydvg9x8hl',1,'Admin',1672319415,'192.168.64.1',2,15,41608,NULL,'Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01h44ciyy7s6s73m',1,'Admin',1672319415,'192.168.64.1',2,15,41609,NULL,'System object ID','clc93suux00004ciywh0nidxf',''),('clc93sv0x01h54ciymf5tfx8s',1,'Admin',1672319415,'192.168.64.1',2,15,41610,NULL,'System location','clc93suux00004ciywh0nidxf',''),('clc93sv0x01h64ciygqlciwdd',1,'Admin',1672319415,'192.168.64.1',2,15,41611,NULL,'ICMP loss','clc93suux00004ciywh0nidxf',''),('clc93sv0x01h74ciyn5m5p3ln',1,'Admin',1672319415,'192.168.64.1',2,15,41612,NULL,'System description','clc93suux00004ciywh0nidxf',''),('clc93sv0x01h84ciydazxtaxr',1,'Admin',1672319415,'192.168.64.1',2,15,41613,NULL,'System contact details','clc93suux00004ciywh0nidxf',''),('clc93sv0x01h94ciyd3fi2oum',1,'Admin',1672319415,'192.168.64.1',2,15,41614,NULL,'SNMP traps (fallback)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ha4ciypamm1pl3',1,'Admin',1672319415,'192.168.64.1',2,15,41615,NULL,'ICMP response time','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hb4ciyu9eq6ioy',1,'Admin',1672319415,'192.168.64.1',2,15,41616,NULL,'SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hc4ciyf8gpuyjv',1,'Admin',1672319415,'192.168.64.1',2,15,41627,NULL,'ICMP ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hd4ciynmrx5x0y',1,'Admin',1672319415,'192.168.64.1',2,15,41628,NULL,'System name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01he4ciy5izoiv5i',1,'Admin',1672319415,'192.168.64.1',2,15,41629,NULL,'Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hf4ciybctksnit',1,'Admin',1672319415,'192.168.64.1',2,15,41630,NULL,'System object ID','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hg4ciy9hrk09zq',1,'Admin',1672319415,'192.168.64.1',2,15,41631,NULL,'System location','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hh4ciyngusr737',1,'Admin',1672319415,'192.168.64.1',2,15,41632,NULL,'ICMP loss','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hi4ciyi9708t1m',1,'Admin',1672319415,'192.168.64.1',2,15,41633,NULL,'System description','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hj4ciy3ggj01v9',1,'Admin',1672319415,'192.168.64.1',2,15,41634,NULL,'System contact details','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hk4ciyh5hdy7xe',1,'Admin',1672319415,'192.168.64.1',2,15,41635,NULL,'SNMP traps (fallback)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hl4ciyedt8yd6d',1,'Admin',1672319415,'192.168.64.1',2,15,41636,NULL,'ICMP response time','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hm4ciyjsxdaxz5',1,'Admin',1672319415,'192.168.64.1',2,15,41637,NULL,'SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hn4ciycvfgskgb',1,'Admin',1672319415,'192.168.64.1',2,15,41648,NULL,'ICMP ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ho4ciy3whszc76',1,'Admin',1672319415,'192.168.64.1',2,15,41649,NULL,'System name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hp4ciymgzzlj9e',1,'Admin',1672319415,'192.168.64.1',2,15,41650,NULL,'Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hq4ciyvv44doz4',1,'Admin',1672319415,'192.168.64.1',2,15,41651,NULL,'System object ID','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hr4ciywa7ie7zu',1,'Admin',1672319415,'192.168.64.1',2,15,41652,NULL,'System location','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hs4ciy6jgaxgln',1,'Admin',1672319415,'192.168.64.1',2,15,41653,NULL,'ICMP loss','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ht4ciy1116tx42',1,'Admin',1672319415,'192.168.64.1',2,15,41654,NULL,'System description','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hu4ciyor6n6agy',1,'Admin',1672319415,'192.168.64.1',2,15,41655,NULL,'System contact details','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hv4ciy9hm790oe',1,'Admin',1672319415,'192.168.64.1',2,15,41656,NULL,'SNMP traps (fallback)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hw4ciyafskog0s',1,'Admin',1672319415,'192.168.64.1',2,15,41657,NULL,'ICMP response time','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hx4ciy7sc9bwnk',1,'Admin',1672319415,'192.168.64.1',2,15,41658,NULL,'SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hy4ciyyjwgdbhy',1,'Admin',1672319415,'192.168.64.1',2,15,41669,NULL,'ICMP ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01hz4ciywv459nzs',1,'Admin',1672319415,'192.168.64.1',2,15,41670,NULL,'System name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01i04ciykfuhgov1',1,'Admin',1672319415,'192.168.64.1',2,15,41671,NULL,'Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01i14ciyapglwbvg',1,'Admin',1672319415,'192.168.64.1',2,15,41672,NULL,'System object ID','clc93suux00004ciywh0nidxf',''),('clc93sv0x01i24ciyyzxsnthz',1,'Admin',1672319415,'192.168.64.1',2,15,41673,NULL,'System location','clc93suux00004ciywh0nidxf',''),('clc93sv0x01i34ciyn5keyluw',1,'Admin',1672319415,'192.168.64.1',2,15,41674,NULL,'ICMP loss','clc93suux00004ciywh0nidxf',''),('clc93sv0x01i44ciy7tfp7l5x',1,'Admin',1672319415,'192.168.64.1',2,15,41675,NULL,'System description','clc93suux00004ciywh0nidxf',''),('clc93sv0x01i54ciyyn9tgpyp',1,'Admin',1672319415,'192.168.64.1',2,15,41676,NULL,'System contact details','clc93suux00004ciywh0nidxf',''),('clc93sv0x01i64ciypglslehw',1,'Admin',1672319415,'192.168.64.1',2,15,41677,NULL,'SNMP traps (fallback)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01i74ciyggrsj21c',1,'Admin',1672319415,'192.168.64.1',2,15,41678,NULL,'ICMP response time','clc93suux00004ciywh0nidxf',''),('clc93sv0x01i84ciyx974tpz1',1,'Admin',1672319415,'192.168.64.1',2,15,41679,NULL,'SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01i94ciyx1fodzmz',1,'Admin',1672319415,'192.168.64.1',2,15,41690,NULL,'ICMP ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ia4ciyep8ty6k4',1,'Admin',1672319415,'192.168.64.1',2,15,41691,NULL,'System name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ib4ciyf03lgv5z',1,'Admin',1672319415,'192.168.64.1',2,15,41692,NULL,'Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ic4ciy5t3l4vpt',1,'Admin',1672319415,'192.168.64.1',2,15,41693,NULL,'System object ID','clc93suux00004ciywh0nidxf',''),('clc93sv0x01id4ciyslwnikf1',1,'Admin',1672319415,'192.168.64.1',2,15,41694,NULL,'System location','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ie4ciyhnwezbwm',1,'Admin',1672319415,'192.168.64.1',2,15,41695,NULL,'ICMP loss','clc93suux00004ciywh0nidxf',''),('clc93sv0x01if4ciy3sdtryuu',1,'Admin',1672319415,'192.168.64.1',2,15,41696,NULL,'System description','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ig4ciysaha43oa',1,'Admin',1672319415,'192.168.64.1',2,15,41697,NULL,'System contact details','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ih4ciy5petls8c',1,'Admin',1672319415,'192.168.64.1',2,15,41698,NULL,'SNMP traps (fallback)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ii4ciyh1a64uap',1,'Admin',1672319415,'192.168.64.1',2,15,41699,NULL,'ICMP response time','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ij4ciy3g87wf83',1,'Admin',1672319415,'192.168.64.1',2,15,41700,NULL,'SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ik4ciyuld9z27v',1,'Admin',1672319415,'192.168.64.1',2,15,41711,NULL,'ICMP ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01il4ciyhm768e03',1,'Admin',1672319415,'192.168.64.1',2,15,41712,NULL,'System name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01im4ciys8rponny',1,'Admin',1672319415,'192.168.64.1',2,15,41713,NULL,'Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01in4ciyxmfieo7j',1,'Admin',1672319415,'192.168.64.1',2,15,41714,NULL,'System object ID','clc93suux00004ciywh0nidxf',''),('clc93sv0x01io4ciygljjvl58',1,'Admin',1672319415,'192.168.64.1',2,15,41715,NULL,'System location','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ip4ciy2usds8kw',1,'Admin',1672319415,'192.168.64.1',2,15,41716,NULL,'ICMP loss','clc93suux00004ciywh0nidxf',''),('clc93sv0x01iq4ciyii6yg2pl',1,'Admin',1672319415,'192.168.64.1',2,15,41717,NULL,'System description','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ir4ciyr28nbtvn',1,'Admin',1672319415,'192.168.64.1',2,15,41718,NULL,'System contact details','clc93suux00004ciywh0nidxf',''),('clc93sv0x01is4ciyeem3l1qm',1,'Admin',1672319415,'192.168.64.1',2,15,41719,NULL,'SNMP traps (fallback)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01it4ciyib92gpp4',1,'Admin',1672319415,'192.168.64.1',2,15,41720,NULL,'ICMP response time','clc93suux00004ciywh0nidxf',''),('clc93sv0x01iu4ciyapb7gg77',1,'Admin',1672319415,'192.168.64.1',2,15,41721,NULL,'SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01iv4ciy61b39fwv',1,'Admin',1672319415,'192.168.64.1',2,15,41732,NULL,'ICMP ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01iw4ciyx97200lj',1,'Admin',1672319415,'192.168.64.1',2,15,41733,NULL,'System name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ix4ciy91e35p60',1,'Admin',1672319415,'192.168.64.1',2,15,41734,NULL,'Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01iy4ciyerbj259f',1,'Admin',1672319415,'192.168.64.1',2,15,41735,NULL,'System object ID','clc93suux00004ciywh0nidxf',''),('clc93sv0x01iz4ciyztgril1d',1,'Admin',1672319415,'192.168.64.1',2,15,41736,NULL,'System location','clc93suux00004ciywh0nidxf',''),('clc93sv0x01j04ciyqyjamj1w',1,'Admin',1672319415,'192.168.64.1',2,15,41737,NULL,'ICMP loss','clc93suux00004ciywh0nidxf',''),('clc93sv0x01j14ciyk1y0sjfo',1,'Admin',1672319415,'192.168.64.1',2,15,41738,NULL,'System description','clc93suux00004ciywh0nidxf',''),('clc93sv0x01j24ciy5xa6osu2',1,'Admin',1672319415,'192.168.64.1',2,15,41739,NULL,'System contact details','clc93suux00004ciywh0nidxf',''),('clc93sv0x01j34ciysz84fvj7',1,'Admin',1672319415,'192.168.64.1',2,15,41740,NULL,'SNMP traps (fallback)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01j44ciypte8ul59',1,'Admin',1672319415,'192.168.64.1',2,15,41741,NULL,'ICMP response time','clc93suux00004ciywh0nidxf',''),('clc93sv0x01j54ciyzyvpfh8v',1,'Admin',1672319415,'192.168.64.1',2,15,41742,NULL,'SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01j64ciydlhrdwoc',1,'Admin',1672319415,'192.168.64.1',2,15,41753,NULL,'ICMP ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01j74ciy7dps06cf',1,'Admin',1672319415,'192.168.64.1',2,15,41754,NULL,'System name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01j84ciy2ae7m8ne',1,'Admin',1672319415,'192.168.64.1',2,15,41755,NULL,'Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01j94ciyf9jujrjz',1,'Admin',1672319415,'192.168.64.1',2,15,41756,NULL,'System object ID','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ja4ciypzeldrpa',1,'Admin',1672319415,'192.168.64.1',2,15,41757,NULL,'System location','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jb4ciy9sw7ef4y',1,'Admin',1672319415,'192.168.64.1',2,15,41758,NULL,'ICMP loss','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jc4ciynq8u2lp4',1,'Admin',1672319415,'192.168.64.1',2,15,41759,NULL,'System description','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jd4ciy5vrkab5d',1,'Admin',1672319415,'192.168.64.1',2,15,41760,NULL,'System contact details','clc93suux00004ciywh0nidxf',''),('clc93sv0x01je4ciykoucg5os',1,'Admin',1672319415,'192.168.64.1',2,15,41761,NULL,'SNMP traps (fallback)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jf4ciy3wtrghfl',1,'Admin',1672319415,'192.168.64.1',2,15,41762,NULL,'ICMP response time','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jg4ciyai6yuq8x',1,'Admin',1672319415,'192.168.64.1',2,15,41763,NULL,'SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jh4ciy0ki46yus',1,'Admin',1672319415,'192.168.64.1',2,15,41774,NULL,'ICMP ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ji4ciyzsr27iq3',1,'Admin',1672319415,'192.168.64.1',2,15,41775,NULL,'System name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jj4ciy57hzpodp',1,'Admin',1672319415,'192.168.64.1',2,15,41776,NULL,'Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jk4ciy9a420doy',1,'Admin',1672319415,'192.168.64.1',2,15,41777,NULL,'System object ID','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jl4ciyrjmi2s01',1,'Admin',1672319415,'192.168.64.1',2,15,41778,NULL,'System location','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jm4ciysc292xr4',1,'Admin',1672319415,'192.168.64.1',2,15,41779,NULL,'ICMP loss','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jn4ciyc1dukok9',1,'Admin',1672319415,'192.168.64.1',2,15,41780,NULL,'System description','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jo4ciyv2t7bbhz',1,'Admin',1672319415,'192.168.64.1',2,15,41781,NULL,'System contact details','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jp4ciyip5nkxda',1,'Admin',1672319415,'192.168.64.1',2,15,41782,NULL,'SNMP traps (fallback)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jq4ciydir63lcc',1,'Admin',1672319415,'192.168.64.1',2,15,41783,NULL,'ICMP response time','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jr4ciyb8gyzw0b',1,'Admin',1672319415,'192.168.64.1',2,15,41784,NULL,'SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01js4ciy2x10d7di',1,'Admin',1672319415,'192.168.64.1',2,15,41795,NULL,'ICMP ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jt4ciyhvfqr40x',1,'Admin',1672319415,'192.168.64.1',2,15,41796,NULL,'System name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ju4ciyusnwda7o',1,'Admin',1672319415,'192.168.64.1',2,15,41797,NULL,'Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jv4ciy56bztw6q',1,'Admin',1672319415,'192.168.64.1',2,15,41798,NULL,'System object ID','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jw4ciycf34t7hy',1,'Admin',1672319415,'192.168.64.1',2,15,41799,NULL,'System location','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jx4ciyfyllau1k',1,'Admin',1672319415,'192.168.64.1',2,15,41800,NULL,'ICMP loss','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jy4ciyq4lwxlpg',1,'Admin',1672319415,'192.168.64.1',2,15,41801,NULL,'System description','clc93suux00004ciywh0nidxf',''),('clc93sv0x01jz4ciyzc8xk3as',1,'Admin',1672319415,'192.168.64.1',2,15,41802,NULL,'System contact details','clc93suux00004ciywh0nidxf',''),('clc93sv0x01k04ciyjdyzd0ul',1,'Admin',1672319415,'192.168.64.1',2,15,41803,NULL,'SNMP traps (fallback)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01k14ciyv3epfvpn',1,'Admin',1672319415,'192.168.64.1',2,15,41804,NULL,'ICMP response time','clc93suux00004ciywh0nidxf',''),('clc93sv0x01k24ciy48kpb6q2',1,'Admin',1672319415,'192.168.64.1',2,15,41805,NULL,'SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01k34ciyj6dup7ot',1,'Admin',1672319415,'192.168.64.1',2,15,41816,NULL,'ICMP ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01k44ciy29vpqqj1',1,'Admin',1672319415,'192.168.64.1',2,15,41817,NULL,'System name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01k54ciyw45lg1yr',1,'Admin',1672319415,'192.168.64.1',2,15,41818,NULL,'Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01k64ciymxj2kjj5',1,'Admin',1672319415,'192.168.64.1',2,15,41819,NULL,'System object ID','clc93suux00004ciywh0nidxf',''),('clc93sv0x01k74ciy53honj2v',1,'Admin',1672319415,'192.168.64.1',2,15,41820,NULL,'System location','clc93suux00004ciywh0nidxf',''),('clc93sv0x01k84ciy6fdaoom3',1,'Admin',1672319415,'192.168.64.1',2,15,41821,NULL,'ICMP loss','clc93suux00004ciywh0nidxf',''),('clc93sv0x01k94ciy5xfkedb1',1,'Admin',1672319415,'192.168.64.1',2,15,41822,NULL,'System description','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ka4ciydzrle153',1,'Admin',1672319415,'192.168.64.1',2,15,41823,NULL,'System contact details','clc93suux00004ciywh0nidxf',''),('clc93sv0x01kb4ciyriljo76v',1,'Admin',1672319415,'192.168.64.1',2,15,41824,NULL,'SNMP traps (fallback)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01kc4ciy1942aidk',1,'Admin',1672319415,'192.168.64.1',2,15,41825,NULL,'ICMP response time','clc93suux00004ciywh0nidxf',''),('clc93sv0x01kd4ciyujgv9dbv',1,'Admin',1672319415,'192.168.64.1',2,15,41826,NULL,'SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ke4ciyjzwl3g8l',1,'Admin',1672319415,'192.168.64.1',2,15,41837,NULL,'ICMP ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01kf4ciysn6bjvpu',1,'Admin',1672319415,'192.168.64.1',2,15,41838,NULL,'System name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01kg4ciyidz7va7x',1,'Admin',1672319415,'192.168.64.1',2,15,41839,NULL,'Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01kh4ciy7h2lo0ok',1,'Admin',1672319415,'192.168.64.1',2,15,41840,NULL,'System object ID','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ki4ciyjteyij6g',1,'Admin',1672319415,'192.168.64.1',2,15,41841,NULL,'System location','clc93suux00004ciywh0nidxf',''),('clc93sv0x01kj4ciykq8sx1iv',1,'Admin',1672319415,'192.168.64.1',2,15,41842,NULL,'ICMP loss','clc93suux00004ciywh0nidxf',''),('clc93sv0x01kk4ciyhzdp7e5x',1,'Admin',1672319415,'192.168.64.1',2,15,41843,NULL,'System description','clc93suux00004ciywh0nidxf',''),('clc93sv0x01kl4ciy3hfrh2eh',1,'Admin',1672319415,'192.168.64.1',2,15,41844,NULL,'System contact details','clc93suux00004ciywh0nidxf',''),('clc93sv0x01km4ciydzj230tz',1,'Admin',1672319415,'192.168.64.1',2,15,41845,NULL,'SNMP traps (fallback)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01kn4ciy7qkeahd8',1,'Admin',1672319415,'192.168.64.1',2,15,41846,NULL,'ICMP response time','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ko4ciyya21ym1a',1,'Admin',1672319415,'192.168.64.1',2,15,41847,NULL,'SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01kp4ciyx15r5iuf',1,'Admin',1672319415,'192.168.64.1',2,15,41858,NULL,'ICMP ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01kq4ciymjh01fjc',1,'Admin',1672319415,'192.168.64.1',2,15,41859,NULL,'System name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01kr4ciyp5esc20c',1,'Admin',1672319415,'192.168.64.1',2,15,41860,NULL,'Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ks4ciylnbgupi3',1,'Admin',1672319415,'192.168.64.1',2,15,41861,NULL,'System object ID','clc93suux00004ciywh0nidxf',''),('clc93sv0x01kt4ciyy8ojx78x',1,'Admin',1672319415,'192.168.64.1',2,15,41862,NULL,'System location','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ku4ciyd2z7ew56',1,'Admin',1672319415,'192.168.64.1',2,15,41863,NULL,'ICMP loss','clc93suux00004ciywh0nidxf',''),('clc93sv0x01kv4ciyu70wr1om',1,'Admin',1672319415,'192.168.64.1',2,15,41864,NULL,'System description','clc93suux00004ciywh0nidxf',''),('clc93sv0x01kw4ciyuzmpe5fw',1,'Admin',1672319415,'192.168.64.1',2,15,41865,NULL,'System contact details','clc93suux00004ciywh0nidxf',''),('clc93sv0x01kx4ciyzqjh1v7e',1,'Admin',1672319415,'192.168.64.1',2,15,41866,NULL,'SNMP traps (fallback)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ky4ciycebzo7wu',1,'Admin',1672319415,'192.168.64.1',2,15,41867,NULL,'ICMP response time','clc93suux00004ciywh0nidxf',''),('clc93sv0x01kz4ciyzqr4q66x',1,'Admin',1672319415,'192.168.64.1',2,15,41868,NULL,'SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01l04ciyeyropnob',1,'Admin',1672319415,'192.168.64.1',2,15,41879,NULL,'ICMP ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01l14ciysrroa9az',1,'Admin',1672319415,'192.168.64.1',2,15,41880,NULL,'System name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01l24ciyj82sizva',1,'Admin',1672319415,'192.168.64.1',2,15,41881,NULL,'Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01l34ciycy9dwlnu',1,'Admin',1672319415,'192.168.64.1',2,15,41882,NULL,'System object ID','clc93suux00004ciywh0nidxf',''),('clc93sv0x01l44ciy8m4idkyv',1,'Admin',1672319415,'192.168.64.1',2,15,41883,NULL,'System location','clc93suux00004ciywh0nidxf',''),('clc93sv0x01l54ciysp78upk2',1,'Admin',1672319415,'192.168.64.1',2,15,41884,NULL,'ICMP loss','clc93suux00004ciywh0nidxf',''),('clc93sv0x01l64ciyl1ablauf',1,'Admin',1672319415,'192.168.64.1',2,15,41885,NULL,'System description','clc93suux00004ciywh0nidxf',''),('clc93sv0x01l74ciyokv9th5e',1,'Admin',1672319415,'192.168.64.1',2,15,41886,NULL,'System contact details','clc93suux00004ciywh0nidxf',''),('clc93sv0x01l84ciy4m06brzd',1,'Admin',1672319415,'192.168.64.1',2,15,41887,NULL,'SNMP traps (fallback)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01l94ciyc7s87rvi',1,'Admin',1672319415,'192.168.64.1',2,15,41888,NULL,'ICMP response time','clc93suux00004ciywh0nidxf',''),('clc93sv0x01la4ciyyo3cm48h',1,'Admin',1672319415,'192.168.64.1',2,15,41889,NULL,'SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01lb4ciyqr054qv8',1,'Admin',1672319415,'192.168.64.1',2,15,42005,NULL,'ICMP ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01lc4ciyyb9mhaax',1,'Admin',1672319415,'192.168.64.1',2,15,42006,NULL,'System name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ld4ciypcu2gjdy',1,'Admin',1672319415,'192.168.64.1',2,15,42007,NULL,'Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01le4ciyw5ozufig',1,'Admin',1672319415,'192.168.64.1',2,15,42008,NULL,'System object ID','clc93suux00004ciywh0nidxf',''),('clc93sv0x01lf4ciye573x8hi',1,'Admin',1672319415,'192.168.64.1',2,15,42009,NULL,'System location','clc93suux00004ciywh0nidxf',''),('clc93sv0x01lg4ciy1lcvcbbm',1,'Admin',1672319415,'192.168.64.1',2,15,42010,NULL,'ICMP loss','clc93suux00004ciywh0nidxf',''),('clc93sv0x01lh4ciyl0lhjmkz',1,'Admin',1672319415,'192.168.64.1',2,15,42011,NULL,'System description','clc93suux00004ciywh0nidxf',''),('clc93sv0x01li4ciygp3mfcjv',1,'Admin',1672319415,'192.168.64.1',2,15,42012,NULL,'System contact details','clc93suux00004ciywh0nidxf',''),('clc93sv0x01lj4ciymhzd8d1c',1,'Admin',1672319415,'192.168.64.1',2,15,42013,NULL,'SNMP traps (fallback)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01lk4ciydndd27qz',1,'Admin',1672319415,'192.168.64.1',2,15,42014,NULL,'ICMP response time','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ll4ciy9sxe5hiu',1,'Admin',1672319415,'192.168.64.1',2,15,42015,NULL,'SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01lm4ciyjb2cpz9g',1,'Admin',1672319415,'192.168.64.1',2,15,42026,NULL,'ICMP ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ln4ciystpbxoei',1,'Admin',1672319415,'192.168.64.1',2,15,42027,NULL,'System name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01lo4ciyd44deoyq',1,'Admin',1672319415,'192.168.64.1',2,15,42028,NULL,'Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01lp4ciyvg1d18jc',1,'Admin',1672319415,'192.168.64.1',2,15,42029,NULL,'System object ID','clc93suux00004ciywh0nidxf',''),('clc93sv0x01lq4ciyel8c3gkf',1,'Admin',1672319415,'192.168.64.1',2,15,42030,NULL,'System location','clc93suux00004ciywh0nidxf',''),('clc93sv0x01lr4ciyhwnc08ll',1,'Admin',1672319415,'192.168.64.1',2,15,42031,NULL,'ICMP loss','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ls4ciykzotsk03',1,'Admin',1672319415,'192.168.64.1',2,15,42032,NULL,'System description','clc93suux00004ciywh0nidxf',''),('clc93sv0x01lt4ciynhcqjuxd',1,'Admin',1672319415,'192.168.64.1',2,15,42033,NULL,'System contact details','clc93suux00004ciywh0nidxf',''),('clc93sv0x01lu4ciymr8gu5yq',1,'Admin',1672319415,'192.168.64.1',2,15,42034,NULL,'SNMP traps (fallback)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01lv4ciyuvteufvc',1,'Admin',1672319415,'192.168.64.1',2,15,42035,NULL,'ICMP response time','clc93suux00004ciywh0nidxf',''),('clc93sv0x01lw4ciyob48h1v3',1,'Admin',1672319415,'192.168.64.1',2,15,42036,NULL,'SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01lx4ciy5dtent6p',1,'Admin',1672319415,'192.168.64.1',2,15,42047,NULL,'ICMP ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ly4ciylivwi9el',1,'Admin',1672319415,'192.168.64.1',2,15,42048,NULL,'System name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01lz4ciyadsmuikf',1,'Admin',1672319415,'192.168.64.1',2,15,42049,NULL,'Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01m04ciyvsfjsdgu',1,'Admin',1672319415,'192.168.64.1',2,15,42050,NULL,'System object ID','clc93suux00004ciywh0nidxf',''),('clc93sv0x01m14ciysjpdmwwr',1,'Admin',1672319415,'192.168.64.1',2,15,42051,NULL,'System location','clc93suux00004ciywh0nidxf',''),('clc93sv0x01m24ciy7jbeh9xx',1,'Admin',1672319415,'192.168.64.1',2,15,42052,NULL,'ICMP loss','clc93suux00004ciywh0nidxf',''),('clc93sv0x01m34ciyzavq9qnl',1,'Admin',1672319415,'192.168.64.1',2,15,42053,NULL,'System description','clc93suux00004ciywh0nidxf',''),('clc93sv0x01m44ciykmz2dqkz',1,'Admin',1672319415,'192.168.64.1',2,15,42054,NULL,'System contact details','clc93suux00004ciywh0nidxf',''),('clc93sv0x01m54ciy2wq8ym04',1,'Admin',1672319415,'192.168.64.1',2,15,42055,NULL,'SNMP traps (fallback)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01m64ciyvlxih9jb',1,'Admin',1672319415,'192.168.64.1',2,15,42056,NULL,'ICMP response time','clc93suux00004ciywh0nidxf',''),('clc93sv0x01m74ciy9l1efh30',1,'Admin',1672319415,'192.168.64.1',2,15,42057,NULL,'SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01m84ciyognpw9z5',1,'Admin',1672319415,'192.168.64.1',2,15,42089,NULL,'ICMP ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01m94ciyoiv44e62',1,'Admin',1672319415,'192.168.64.1',2,15,42090,NULL,'System name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ma4ciyybm1ojzx',1,'Admin',1672319415,'192.168.64.1',2,15,42091,NULL,'Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01mb4ciy867f8my3',1,'Admin',1672319415,'192.168.64.1',2,15,42092,NULL,'System object ID','clc93suux00004ciywh0nidxf',''),('clc93sv0x01mc4ciyq7cuj04w',1,'Admin',1672319415,'192.168.64.1',2,15,42093,NULL,'System location','clc93suux00004ciywh0nidxf',''),('clc93sv0x01md4ciyidvivctf',1,'Admin',1672319415,'192.168.64.1',2,15,42094,NULL,'ICMP loss','clc93suux00004ciywh0nidxf',''),('clc93sv0x01me4ciywj8xyc9n',1,'Admin',1672319415,'192.168.64.1',2,15,42095,NULL,'System description','clc93suux00004ciywh0nidxf',''),('clc93sv0x01mf4ciyxlvszpcf',1,'Admin',1672319415,'192.168.64.1',2,15,42096,NULL,'System contact details','clc93suux00004ciywh0nidxf',''),('clc93sv0x01mg4ciy3d1s6nll',1,'Admin',1672319415,'192.168.64.1',2,15,42097,NULL,'SNMP traps (fallback)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01mh4ciytp1910sd',1,'Admin',1672319415,'192.168.64.1',2,15,42098,NULL,'ICMP response time','clc93suux00004ciywh0nidxf',''),('clc93sv0x01mi4ciypkiv9ltm',1,'Admin',1672319415,'192.168.64.1',2,15,42099,NULL,'SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01mj4ciy1jwv5vz5',1,'Admin',1672319415,'192.168.64.1',2,15,42447,NULL,'Host name of Zabbix agent running','clc93suux00004ciywh0nidxf',''),('clc93sv0x01mk4ciymob0w31s',1,'Admin',1672319415,'192.168.64.1',2,15,42448,NULL,'Zabbix agent ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ml4ciyvr0a8xa7',1,'Admin',1672319415,'192.168.64.1',2,15,42449,NULL,'Version of Zabbix agent running','clc93suux00004ciywh0nidxf',''),('clc93sv0x01mm4ciylctgv1ei',1,'Admin',1672319415,'192.168.64.1',2,15,42450,NULL,'Zabbix agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01mn4ciybx48j677',1,'Admin',1672319415,'192.168.64.1',2,15,42609,NULL,'ICMP ping','clc93suux00004ciywh0nidxf',''),('clc93sv0x01mo4ciygj0qtfw4',1,'Admin',1672319415,'192.168.64.1',2,15,42610,NULL,'ICMP loss','clc93suux00004ciywh0nidxf',''),('clc93sv0x01mp4ciyer6bog70',1,'Admin',1672319415,'192.168.64.1',2,15,42611,NULL,'ICMP response time','clc93suux00004ciywh0nidxf',''),('clc93sv0x01mq4ciyo7jk3iuk',1,'Admin',1672319415,'192.168.64.1',2,15,42612,NULL,'SNMP traps (fallback)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01mr4ciydgqia4ir',1,'Admin',1672319415,'192.168.64.1',2,15,42613,NULL,'System contact details','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ms4ciyevgnotx6',1,'Admin',1672319415,'192.168.64.1',2,15,42614,NULL,'System description','clc93suux00004ciywh0nidxf',''),('clc93sv0x01mt4ciy5ojd2db1',1,'Admin',1672319415,'192.168.64.1',2,15,42615,NULL,'System location','clc93suux00004ciywh0nidxf',''),('clc93sv0x01mu4ciyum6c3pvp',1,'Admin',1672319415,'192.168.64.1',2,15,42616,NULL,'System name','clc93suux00004ciywh0nidxf',''),('clc93sv0x01mv4ciy2gu51510',1,'Admin',1672319415,'192.168.64.1',2,15,42617,NULL,'System object ID','clc93suux00004ciywh0nidxf',''),('clc93sv0x01mw4ciywinjs3jc',1,'Admin',1672319415,'192.168.64.1',2,15,42618,NULL,'Uptime (network)','clc93suux00004ciywh0nidxf',''),('clc93sv0x01mx4ciyyipyfm0w',1,'Admin',1672319415,'192.168.64.1',2,15,42619,NULL,'SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0x01my4ciyu2uqf39j',1,'Admin',1672319415,'192.168.64.1',2,15,42724,NULL,'Openweathermap: Get data','clc93suux00004ciywh0nidxf',''),('clc93sv0x01mz4ciy90cih6wm',1,'Admin',1672319415,'192.168.64.1',2,15,42725,NULL,'Openweathermap: Get data collection errors','clc93suux00004ciywh0nidxf',''),('clc93sv0x01n04ciyni1bmu9x',1,'Admin',1672319415,'192.168.64.1',2,15,43547,NULL,'OPNsense: DHCP server status','clc93suux00004ciywh0nidxf',''),('clc93sv0x01n14ciyrcvmks80',1,'Admin',1672319415,'192.168.64.1',2,15,43548,NULL,'OPNsense: Firewall rules count','clc93suux00004ciywh0nidxf',''),('clc93sv0x01n24ciyx4yy6kiu',1,'Admin',1672319415,'192.168.64.1',2,15,43549,NULL,'OPNsense: States table utilization in %','clc93suux00004ciywh0nidxf',''),('clc93sv0x01n34ciyxe54cvxi',1,'Admin',1672319415,'192.168.64.1',2,15,43550,NULL,'OPNsense: States table limit','clc93suux00004ciywh0nidxf',''),('clc93sv0x01n44ciy0swzvowc',1,'Admin',1672319415,'192.168.64.1',2,15,43551,NULL,'OPNsense: States table current','clc93suux00004ciywh0nidxf',''),('clc93sv0x01n54ciy0w98kpc0',1,'Admin',1672319415,'192.168.64.1',2,15,43552,NULL,'OPNsense: Source tracking table utilization in %','clc93suux00004ciywh0nidxf',''),('clc93sv0x01n64ciyv9ru71t4',1,'Admin',1672319415,'192.168.64.1',2,15,43553,NULL,'OPNsense: Source tracking table limit','clc93suux00004ciywh0nidxf',''),('clc93sv0x01n74ciy1dscffj6',1,'Admin',1672319415,'192.168.64.1',2,15,43554,NULL,'OPNsense: Source tracking table current','clc93suux00004ciywh0nidxf',''),('clc93sv0x01n84ciynvjk6sxv',1,'Admin',1672319415,'192.168.64.1',2,15,43555,NULL,'OPNsense: Packet filter running status','clc93suux00004ciywh0nidxf',''),('clc93sv0x01n94ciy1fyn9u8t',1,'Admin',1672319415,'192.168.64.1',2,15,43556,NULL,'OPNsense: DNS server status','clc93suux00004ciywh0nidxf',''),('clc93sv0x01na4ciy0zjnlbl6',1,'Admin',1672319415,'192.168.64.1',2,15,43557,NULL,'OPNsense: Short packets','clc93suux00004ciywh0nidxf',''),('clc93sv0x01nb4ciypow1flpe',1,'Admin',1672319415,'192.168.64.1',2,15,43558,NULL,'OPNsense: Normalized packets','clc93suux00004ciywh0nidxf',''),('clc93sv0x01nc4ciycfnws22a',1,'Admin',1672319415,'192.168.64.1',2,15,43559,NULL,'OPNsense: Packets dropped due to memory limitation','clc93suux00004ciywh0nidxf',''),('clc93sv0x01nd4ciycn3a41lv',1,'Admin',1672319415,'192.168.64.1',2,15,43560,NULL,'OPNsense: Packets matched a filter rule','clc93suux00004ciywh0nidxf',''),('clc93sv0x01ne4ciyv23ljn9p',1,'Admin',1672319415,'192.168.64.1',2,15,43561,NULL,'OPNsense: Fragmented packets','clc93suux00004ciywh0nidxf',''),('clc93sv0y01nf4ciyvoo766qs',1,'Admin',1672319415,'192.168.64.1',2,15,43562,NULL,'OPNsense: Packets with bad offset','clc93suux00004ciywh0nidxf',''),('clc93sv0y01ng4ciy1fhr5v3h',1,'Admin',1672319415,'192.168.64.1',2,15,43563,NULL,'OPNsense: Web server status','clc93suux00004ciywh0nidxf',''),('clc93sv0y01nh4ciymhibwlz0',1,'Admin',1672319415,'192.168.64.1',2,15,43564,NULL,'OPNsense: SNMP agent availability','clc93suux00004ciywh0nidxf',''),('clc93sv0y01ni4ciy1lvyyetb',1,'Admin',1672319415,'192.168.64.1',2,15,43787,NULL,'Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01nj4ciyy4qjjhfg',1,'Admin',1672319415,'192.168.64.1',2,15,43826,NULL,'Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01nk4ciy8lr620au',1,'Admin',1672319415,'192.168.64.1',2,15,43827,NULL,'Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01nl4ciyjikubh04',1,'Admin',1672319415,'192.168.64.1',2,15,43828,NULL,'Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01nm4ciyhqqxufiz',1,'Admin',1672319415,'192.168.64.1',2,15,43829,NULL,'Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01nn4ciyweeg3xfp',1,'Admin',1672319415,'192.168.64.1',2,15,43830,NULL,'Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01no4ciyp9zt4zec',1,'Admin',1672319415,'192.168.64.1',2,15,43831,NULL,'Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01np4ciyi85kpzsz',1,'Admin',1672319415,'192.168.64.1',2,15,43832,NULL,'Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01nq4ciyn6afr3fd',1,'Admin',1672319415,'192.168.64.1',2,15,43833,NULL,'Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01nr4ciy58y0ds1c',1,'Admin',1672319415,'192.168.64.1',2,15,43834,NULL,'Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01ns4ciyjxmu080q',1,'Admin',1672319415,'192.168.64.1',2,15,43835,NULL,'Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01nt4ciyctfplg18',1,'Admin',1672319415,'192.168.64.1',2,15,43836,NULL,'Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01nu4ciyb4f56qqp',1,'Admin',1672319415,'192.168.64.1',2,15,43837,NULL,'Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01nv4ciya7c0tyrb',1,'Admin',1672319415,'192.168.64.1',2,15,43838,NULL,'Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01nw4ciykn9ade7c',1,'Admin',1672319415,'192.168.64.1',2,15,43839,NULL,'Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01nx4ciyvhxk4j0q',1,'Admin',1672319415,'192.168.64.1',2,15,43845,NULL,'Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01ny4ciy0wb22kxn',1,'Admin',1672319415,'192.168.64.1',2,15,43846,NULL,'Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01nz4ciyseukco1y',1,'Admin',1672319415,'192.168.64.1',2,15,43847,NULL,'Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01o04ciy5y800air',1,'Admin',1672319415,'192.168.64.1',2,15,43849,NULL,'Status: Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01o14ciy5ou5qk64',1,'Admin',1672319415,'192.168.64.1',2,15,43850,NULL,'Status: Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01o24ciyxyshtrsq',1,'Admin',1672319415,'192.168.64.1',2,15,43851,NULL,'Status: Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01o34ciyxwtghrwj',1,'Admin',1672319415,'192.168.64.1',2,15,43852,NULL,'Status: Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01o44ciycywysra1',1,'Admin',1672319415,'192.168.64.1',2,15,43853,NULL,'Status: Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01o54ciymbweeztd',1,'Admin',1672319415,'192.168.64.1',2,15,43854,NULL,'Status: Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01o64ciyypcaxuqc',1,'Admin',1672319415,'192.168.64.1',2,15,43855,NULL,'Status: Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01o74ciya0ixb09a',1,'Admin',1672319415,'192.168.64.1',2,15,43856,NULL,'Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01o84ciy2zg2uetb',1,'Admin',1672319415,'192.168.64.1',2,15,43888,NULL,'Uptime (hardware)','clc93suux00004ciywh0nidxf',''),('clc93sv0y01o94ciys5c0ln9m',1,'Admin',1672319415,'192.168.64.1',2,15,44235,NULL,'OS: Get process summary','clc93suux00004ciywh0nidxf',''),('clc93sv0y01oa4ciy7u56ae2w',1,'Admin',1672319415,'192.168.64.1',2,15,44343,NULL,'Nginx: Get processes summary','clc93suux00004ciywh0nidxf',''),('clc93sv0y01ob4ciy3apwe3ra',1,'Admin',1672319415,'192.168.64.1',2,15,44351,NULL,'PHP-FPM: Get processes summary','clc93suux00004ciywh0nidxf',''),('clc93sv0y01oc4ciyqnfdnypn',1,'Admin',1672319415,'192.168.64.1',2,15,44447,NULL,'Get filesystems','clc93suux00004ciywh0nidxf',''),('clc93sv2f01od4ciyaj0betmw',1,'Admin',1672319415,'192.168.64.1',2,30,10074,NULL,'OpenBSD by Zabbix agent','clc93suux00004ciywh0nidxf',''),('clc93sv2f01oe4ciy51yfa9xi',1,'Admin',1672319415,'192.168.64.1',2,30,10098,NULL,'NNTP Service','clc93suux00004ciywh0nidxf',''),('clc93sv2f01of4ciys8jkne50',1,'Admin',1672319415,'192.168.64.1',2,30,10099,NULL,'NTP Service','clc93suux00004ciywh0nidxf',''),('clc93sv2f01og4ciyvlsj6vdx',1,'Admin',1672319415,'192.168.64.1',2,30,10100,NULL,'POP Service','clc93suux00004ciywh0nidxf',''),('clc93sv2f01oh4ciybewo6cgn',1,'Admin',1672319415,'192.168.64.1',2,30,10226,NULL,'Network Generic Device by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2f01oi4ciyfggpoc2j',1,'Admin',1672319415,'192.168.64.1',2,30,10234,NULL,'Netgear Fastpath by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2f01oj4ciyb2pi2o8u',1,'Admin',1672319415,'192.168.64.1',2,30,10266,NULL,'Nginx by Zabbix agent','clc93suux00004ciywh0nidxf',''),('clc93sv2f01ok4ciyelf0ms4v',1,'Admin',1672319415,'192.168.64.1',2,30,10267,NULL,'Nginx by HTTP','clc93suux00004ciywh0nidxf',''),('clc93sv2f01ol4ciyfyaohrx8',1,'Admin',1672319415,'192.168.64.1',2,30,10316,NULL,'MySQL by Zabbix agent','clc93suux00004ciywh0nidxf',''),('clc93sv2f01om4ciy69j47a2b',1,'Admin',1672319415,'192.168.64.1',2,30,10317,NULL,'MySQL by ODBC','clc93suux00004ciywh0nidxf',''),('clc93sv2f01on4ciyhlvlhma4',1,'Admin',1672319415,'192.168.64.1',2,30,10320,NULL,'MySQL by Zabbix agent 2','clc93suux00004ciywh0nidxf',''),('clc93sv2f01oo4ciynpefc6wi',1,'Admin',1672319415,'192.168.64.1',2,30,10327,NULL,'MSSQL by ODBC','clc93suux00004ciywh0nidxf',''),('clc93sv2f01op4ciyln24u2t3',1,'Admin',1672319415,'192.168.64.1',2,30,10328,NULL,'Oracle by ODBC','clc93suux00004ciywh0nidxf',''),('clc93sv2f01oq4ciyn376ccw3',1,'Admin',1672319415,'192.168.64.1',2,30,10330,NULL,'PHP-FPM by Zabbix agent','clc93suux00004ciywh0nidxf',''),('clc93sv2f01or4ciyu5f90sfr',1,'Admin',1672319415,'192.168.64.1',2,30,10331,NULL,'PHP-FPM by HTTP','clc93suux00004ciywh0nidxf',''),('clc93sv2f01os4ciy0gmklnfz',1,'Admin',1672319415,'192.168.64.1',2,30,10335,NULL,'Oracle by Zabbix agent 2','clc93suux00004ciywh0nidxf',''),('clc93sv2f01ot4ciy60u0n5eo',1,'Admin',1672319415,'192.168.64.1',2,30,10357,NULL,'PostgreSQL by Zabbix agent','clc93suux00004ciywh0nidxf',''),('clc93sv2f01ou4ciytojqgva8',1,'Admin',1672319415,'192.168.64.1',2,30,10371,NULL,'Morningstar ProStar MPPT by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2f01ov4ciyyji1bf9i',1,'Admin',1672319415,'192.168.64.1',2,30,10372,NULL,'Morningstar ProStar PWM by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2f01ow4ciynzqd7322',1,'Admin',1672319415,'192.168.64.1',2,30,10373,NULL,'Morningstar SunSaver MPPT by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2f01ox4ciyektgzfzn',1,'Admin',1672319415,'192.168.64.1',2,30,10374,NULL,'Morningstar SureSine by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2f01oy4ciyw2u24ug5',1,'Admin',1672319415,'192.168.64.1',2,30,10375,NULL,'Morningstar TriStar MPPT 600V by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2f01oz4ciyxdjbw85e',1,'Admin',1672319415,'192.168.64.1',2,30,10376,NULL,'Morningstar TriStar MPPT by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2f01p04ciyd0kq9ci0',1,'Admin',1672319415,'192.168.64.1',2,30,10377,NULL,'Morningstar TriStar PWM by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2f01p14ciy518godyr',1,'Admin',1672319415,'192.168.64.1',2,30,10378,NULL,'NetApp FAS3220 by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2f01p24ciy591cvio1',1,'Admin',1672319415,'192.168.64.1',2,30,10386,NULL,'MongoDB node by Zabbix agent 2','clc93suux00004ciywh0nidxf',''),('clc93sv2f01p34ciyrwtretzj',1,'Admin',1672319415,'192.168.64.1',2,30,10387,NULL,'MongoDB cluster by Zabbix agent 2','clc93suux00004ciywh0nidxf',''),('clc93sv2f01p44ciy72wf0zq8',1,'Admin',1672319415,'192.168.64.1',2,30,10396,NULL,'NetApp AFF A700 by HTTP','clc93suux00004ciywh0nidxf',''),('clc93sv2f01p54ciyncouantm',1,'Admin',1672319415,'192.168.64.1',2,30,10415,NULL,'Nginx Plus by HTTP','clc93suux00004ciywh0nidxf',''),('clc93sv2f01p64ciy64hhrnh8',1,'Admin',1672319415,'192.168.64.1',2,30,10481,NULL,'MikroTik PowerBox Pro by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2f01p74ciy0q32aph6',1,'Admin',1672319415,'192.168.64.1',2,30,10482,NULL,'MikroTik PowerBox by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2f01p84ciy21kr8ykw',1,'Admin',1672319415,'192.168.64.1',2,30,10483,NULL,'MikroTik RB1100AHx4 Dude Edition by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2g01p94ciy93kzyozf',1,'Admin',1672319415,'192.168.64.1',2,30,10484,NULL,'MikroTik RB1100AHx4 by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2g01pa4ciyt2gnpmo3',1,'Admin',1672319415,'192.168.64.1',2,30,10485,NULL,'MikroTik RB2011UiAS-IN by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2g01pb4ciy5crb08q6',1,'Admin',1672319415,'192.168.64.1',2,30,10486,NULL,'MikroTik RB2011UiAS-RM by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2g01pc4ciyulkqk4t6',1,'Admin',1672319415,'192.168.64.1',2,30,10487,NULL,'MikroTik RB2011iL-IN by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2g01pd4ciyvkvmnmmm',1,'Admin',1672319415,'192.168.64.1',2,30,10488,NULL,'MikroTik RB2011iL-RM by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2g01pe4ciye34hiy82',1,'Admin',1672319415,'192.168.64.1',2,30,10489,NULL,'MikroTik RB2011iLS-IN by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2g01pf4ciy9c4kb410',1,'Admin',1672319415,'192.168.64.1',2,30,10490,NULL,'MikroTik RB260GSP by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2g01pg4ciy2jkpb6cy',1,'Admin',1672319415,'192.168.64.1',2,30,10491,NULL,'MikroTik RB260GS by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2g01ph4ciykd4zed4v',1,'Admin',1672319415,'192.168.64.1',2,30,10492,NULL,'MikroTik RB3011UiAS-RM by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2g01pi4ciy2laabh61',1,'Admin',1672319415,'192.168.64.1',2,30,10493,NULL,'MikroTik RB4011iGSRM by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2g01pj4ciyj802scto',1,'Admin',1672319415,'192.168.64.1',2,30,10494,NULL,'MikroTik RB5009UGSIN by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2g01pk4ciy7jusivay',1,'Admin',1672319415,'192.168.64.1',2,30,10500,NULL,'MikroTik netPower 15FR by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2g01pl4ciyngf4k985',1,'Admin',1672319415,'192.168.64.1',2,30,10501,NULL,'MikroTik netPower 16P by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2g01pm4ciyya2tccco',1,'Admin',1672319415,'192.168.64.1',2,30,10502,NULL,'MikroTik netPower Lite 7R by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2g01pn4ciypcg6hrxe',1,'Admin',1672319415,'192.168.64.1',2,30,10515,NULL,'PFSense by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2g01po4ciywnayi5lu',1,'Admin',1672319415,'192.168.64.1',2,30,10516,NULL,'OpenWeatherMap by HTTP','clc93suux00004ciywh0nidxf',''),('clc93sv2g01pp4ciyb0bmfnl0',1,'Admin',1672319415,'192.168.64.1',2,30,10528,NULL,'OPNsense by SNMP','clc93suux00004ciywh0nidxf',''),('clc93sv2g01pq4ciyftukr8um',1,'Admin',1672319415,'192.168.64.1',2,30,10542,NULL,'OS processes by Zabbix agent','clc93suux00004ciywh0nidxf',''),('clc93sy0x00014xiy7ap4l4fx',1,'Admin',1672319418,'192.168.64.1',2,36,23025,NULL,'Interface {#IFNAME}: Incoming network traffic','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00024xiylkc4jzes',1,'Admin',1672319418,'192.168.64.1',2,36,23026,NULL,'Interface {#IFNAME}: Outgoing network traffic','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00034xiyzzwtwvfc',1,'Admin',1672319418,'192.168.64.1',2,36,23028,NULL,'{#FSNAME}: Free disk space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00044xiytgcwooh8',1,'Admin',1672319418,'192.168.64.1',2,36,23029,NULL,'{#FSNAME}: Free inodes, %','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00054xiy16ha02ce',1,'Admin',1672319418,'192.168.64.1',2,36,23030,NULL,'{#FSNAME}: Total disk space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00064xiy0lhlsq5i',1,'Admin',1672319418,'192.168.64.1',2,36,23031,NULL,'{#FSNAME}: Used disk space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00074xiy6m0qgr78',1,'Admin',1672319418,'192.168.64.1',2,36,23032,NULL,'{#FSNAME}: Free disk space, %','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00084xiy9hun7i1f',1,'Admin',1672319418,'192.168.64.1',2,36,28003,NULL,'#{#SNMPVALUE}: CPU utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00094xiyj8b8r0ze',1,'Admin',1672319418,'192.168.64.1',2,36,28495,NULL,'{#SENSOR_DESCR}: Temperature','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000a4xiy4nhezhg8',1,'Admin',1672319418,'192.168.64.1',2,36,28496,NULL,'{#SENSOR_DESCR}: Fan speed, %','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000b4xiytpsjad5h',1,'Admin',1672319418,'192.168.64.1',2,36,29512,NULL,'{#FSLABEL}({#FSNAME}): Used space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000c4xiyehb3ihb1',1,'Admin',1672319418,'192.168.64.1',2,36,29513,NULL,'{#FSLABEL}({#FSNAME}): Total space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000d4xiydkgk6lqt',1,'Admin',1672319418,'192.168.64.1',2,36,29514,NULL,'{#FSLABEL}({#FSNAME}): Space utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000e4xiy296vcmjv',1,'Admin',1672319418,'192.168.64.1',2,36,29720,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000f4xiykmurgktn',1,'Admin',1672319418,'192.168.64.1',2,36,29721,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages delivered','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000g4xiynk5zikpr',1,'Admin',1672319418,'192.168.64.1',2,36,29722,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages redelivered','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000h4xiyci5q4zgx',1,'Admin',1672319418,'192.168.64.1',2,36,29723,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages published per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000i4xiy3ob70igg',1,'Admin',1672319418,'192.168.64.1',2,36,29724,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages published','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000j4xiyzl1qsgut',1,'Admin',1672319418,'192.168.64.1',2,36,29725,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Sum of messages delivered per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000k4xiyqru1ugi4',1,'Admin',1672319418,'192.168.64.1',2,36,29726,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Sum of messages delivered','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000l4xiy6szperoe',1,'Admin',1672319418,'192.168.64.1',2,36,29727,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages delivered per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000m4xiy7bqukn3l',1,'Admin',1672319418,'192.168.64.1',2,36,29728,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages acknowledged per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000n4xiybctgd98n',1,'Admin',1672319418,'192.168.64.1',2,36,29729,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000o4xiy0fq5m13v',1,'Admin',1672319418,'192.168.64.1',2,36,29730,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages acknowledged','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000p4xiy9l9yn238',1,'Admin',1672319418,'192.168.64.1',2,36,29731,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages unacknowledged per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000q4xiyyeixjobo',1,'Admin',1672319418,'192.168.64.1',2,36,29732,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages unacknowledged','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000r4xiyex9iqm12',1,'Admin',1672319418,'192.168.64.1',2,36,29733,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages ready per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000s4xiym6yr275s',1,'Admin',1672319418,'192.168.64.1',2,36,29734,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages ready','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000t4xiyue0dym9e',1,'Admin',1672319418,'192.168.64.1',2,36,29735,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000u4xiyddl4ivo8',1,'Admin',1672319418,'192.168.64.1',2,36,29736,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Consumers','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000v4xiyr6fuds52',1,'Admin',1672319418,'192.168.64.1',2,36,29737,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages redelivered per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000w4xiytmpszu5z',1,'Admin',1672319418,'192.168.64.1',2,36,29787,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages acknowledged','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000x4xiydvvnmw3y',1,'Admin',1672319418,'192.168.64.1',2,36,29788,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages acknowledged per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000y4xiy564hgfzk',1,'Admin',1672319418,'192.168.64.1',2,36,29789,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages confirmed','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x000z4xiyfepjb87f',1,'Admin',1672319418,'192.168.64.1',2,36,29790,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages confirmed per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00104xiy92cqc7i6',1,'Admin',1672319418,'192.168.64.1',2,36,29791,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages delivered','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00114xiymuyc0k8m',1,'Admin',1672319418,'192.168.64.1',2,36,29792,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages delivered per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00124xiy1zna58hm',1,'Admin',1672319418,'192.168.64.1',2,36,29793,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages published','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00134xiyiwqk1n3j',1,'Admin',1672319418,'192.168.64.1',2,36,29794,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages published per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00144xiyspstuak1',1,'Admin',1672319418,'192.168.64.1',2,36,29795,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages publish_in','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00154xiyqvcqye4s',1,'Admin',1672319418,'192.168.64.1',2,36,29796,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages publish_in per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00164xiya2xkow4k',1,'Admin',1672319418,'192.168.64.1',2,36,29797,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages publish_out','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00174xiy8nsj8p5j',1,'Admin',1672319418,'192.168.64.1',2,36,29798,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages publish_out per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00184xiybitd4hjf',1,'Admin',1672319418,'192.168.64.1',2,36,29799,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages returned unroutable','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00194xiy4n7lqjpe',1,'Admin',1672319418,'192.168.64.1',2,36,29800,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages returned unroutable per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001a4xiynuccw66m',1,'Admin',1672319418,'192.168.64.1',2,36,29801,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages redelivered','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001b4xiyfhwxfz0b',1,'Admin',1672319418,'192.168.64.1',2,36,29802,NULL,'RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages redelivered per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001c4xiy1egmzww1',1,'Admin',1672319418,'192.168.64.1',2,36,29803,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001d4xiya4w133o7',1,'Admin',1672319418,'192.168.64.1',2,36,29804,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages delivered','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001e4xiyi29fe520',1,'Admin',1672319418,'192.168.64.1',2,36,29805,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages redelivered','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001f4xiyn6q0mowg',1,'Admin',1672319418,'192.168.64.1',2,36,29806,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages published per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001g4xiyriwg5zqn',1,'Admin',1672319418,'192.168.64.1',2,36,29807,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages published','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001h4xiyk4tdqq2z',1,'Admin',1672319418,'192.168.64.1',2,36,29808,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Sum of messages delivered per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001i4xiyjgxhfdxc',1,'Admin',1672319418,'192.168.64.1',2,36,29809,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Sum of messages delivered','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001j4xiya9ywzkaw',1,'Admin',1672319418,'192.168.64.1',2,36,29810,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages delivered per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001k4xiy0gqfcu7t',1,'Admin',1672319418,'192.168.64.1',2,36,29811,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages acknowledged per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001l4xiy3jolb9ia',1,'Admin',1672319418,'192.168.64.1',2,36,29812,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001m4xiyu4rt741u',1,'Admin',1672319418,'192.168.64.1',2,36,29813,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages acknowledged','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001n4xiy6x8whs13',1,'Admin',1672319418,'192.168.64.1',2,36,29814,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages unacknowledged per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001o4xiyx7kmindt',1,'Admin',1672319418,'192.168.64.1',2,36,29815,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages unacknowledged','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001p4xiygm7z7kvu',1,'Admin',1672319418,'192.168.64.1',2,36,29816,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages ready per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001q4xiy10wadfpg',1,'Admin',1672319418,'192.168.64.1',2,36,29817,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages ready','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001r4xiyxlx2d94c',1,'Admin',1672319418,'192.168.64.1',2,36,29818,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001s4xiyfqvzkz2t',1,'Admin',1672319418,'192.168.64.1',2,36,29819,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Consumers','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001t4xiyp2zhi5wv',1,'Admin',1672319418,'192.168.64.1',2,36,29820,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages redelivered per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001u4xiyxpe09ywc',1,'Admin',1672319418,'192.168.64.1',2,36,30027,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages acknowledged','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001v4xiyvheuuyrl',1,'Admin',1672319418,'192.168.64.1',2,36,30028,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages acknowledged per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001w4xiyoen0qdnk',1,'Admin',1672319418,'192.168.64.1',2,36,30029,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages confirmed','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001x4xiywvfqs9sr',1,'Admin',1672319418,'192.168.64.1',2,36,30030,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages confirmed per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001y4xiyn69shybt',1,'Admin',1672319418,'192.168.64.1',2,36,30031,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages delivered','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x001z4xiyu0rkad8o',1,'Admin',1672319418,'192.168.64.1',2,36,30032,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages delivered per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00204xiy1468i2pu',1,'Admin',1672319418,'192.168.64.1',2,36,30033,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages published','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00214xiyyxmxo5ay',1,'Admin',1672319418,'192.168.64.1',2,36,30034,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages published per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00224xiytnr4lnnr',1,'Admin',1672319418,'192.168.64.1',2,36,30035,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages publish_in','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00234xiy2e7zs1lm',1,'Admin',1672319418,'192.168.64.1',2,36,30036,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages publish_in per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00244xiyju83ggc0',1,'Admin',1672319418,'192.168.64.1',2,36,30037,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages publish_out','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00254xiy0wb3esw4',1,'Admin',1672319418,'192.168.64.1',2,36,30038,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages publish_out per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00264xiy58cwcdqe',1,'Admin',1672319418,'192.168.64.1',2,36,30039,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages returned unroutable','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00274xiya1a09bui',1,'Admin',1672319418,'192.168.64.1',2,36,30040,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages returned unroutable per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00284xiy3q9sujwj',1,'Admin',1672319418,'192.168.64.1',2,36,30041,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Messages redelivered','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00294xiyp7k78888',1,'Admin',1672319418,'192.168.64.1',2,36,30042,NULL,'RabbitMQ: Exchange {#VHOST}/{#EXCHANGE}/{#TYPE}: Messages redelivered per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002a4xiyy4brapci',1,'Admin',1672319418,'192.168.64.1',2,36,30129,NULL,'{#SNMPINDEX}: Fan status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002b4xiyoufikzo1',1,'Admin',1672319418,'192.168.64.1',2,36,30130,NULL,'{#SNMPINDEX}: Power supply status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002c4xiyd6wum20u',1,'Admin',1672319418,'192.168.64.1',2,36,30131,NULL,'#{#SNMPVALUE}: Memory utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002d4xiytfug3o7b',1,'Admin',1672319418,'192.168.64.1',2,36,30344,NULL,'Redis: CPU utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002e4xiy1mq1q84a',1,'Admin',1672319418,'192.168.64.1',2,36,30345,NULL,'Redis: Memory usage (rss)','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002f4xiywvsduik8',1,'Admin',1672319418,'192.168.64.1',2,36,30346,NULL,'Redis: Memory usage (vsize)','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002g4xiy07rlj5j7',1,'Admin',1672319418,'192.168.64.1',2,36,30347,NULL,'Redis: Number of processes running','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002h4xiy3pilgd1m',1,'Admin',1672319418,'192.168.64.1',2,36,30348,NULL,'DB {#DB}: Average TTL','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002i4xiyu409xbhf',1,'Admin',1672319418,'192.168.64.1',2,36,30349,NULL,'DB {#DB}: Expires','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002j4xiyg9uoqkgw',1,'Admin',1672319418,'192.168.64.1',2,36,30350,NULL,'DB {#DB}: Keys','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002k4xiy6e7vqytn',1,'Admin',1672319418,'192.168.64.1',2,36,30351,NULL,'Redis: Active defrag running{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002l4xiyghvg76vy',1,'Admin',1672319418,'192.168.64.1',2,36,30352,NULL,'Redis: RDB last CoW size{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002m4xiyreovc5ra',1,'Admin',1672319418,'192.168.64.1',2,36,30353,NULL,'Redis: Expired time cap reached count{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002n4xiy7zkgzobc',1,'Admin',1672319418,'192.168.64.1',2,36,30354,NULL,'Redis: Expired stale %{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002o4xiyt7yqly8o',1,'Admin',1672319418,'192.168.64.1',2,36,30355,NULL,'Redis: Active defrag misses{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002p4xiym8skbkom',1,'Admin',1672319418,'192.168.64.1',2,36,30356,NULL,'Redis: Active defrag key misses{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002q4xiydt4byubj',1,'Admin',1672319418,'192.168.64.1',2,36,30357,NULL,'Redis: Active defrag key hits{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002r4xiy5x90uqof',1,'Admin',1672319418,'192.168.64.1',2,36,30358,NULL,'Redis: Active defrag hits{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002s4xiylxw5494p',1,'Admin',1672319418,'192.168.64.1',2,36,30359,NULL,'Redis: Executable path{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002t4xiy1wpqzfhu',1,'Admin',1672319418,'192.168.64.1',2,36,30360,NULL,'Redis: Replication second offset{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002u4xiyqgoy4nuh',1,'Admin',1672319418,'192.168.64.1',2,36,30361,NULL,'Redis: AOF last CoW size{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002v4xiy742y7k5d',1,'Admin',1672319418,'192.168.64.1',2,36,30362,NULL,'Redis: Lazyfree pending objects{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002w4xiys017tn8u',1,'Admin',1672319418,'192.168.64.1',2,36,30363,NULL,'Redis: Memory used startup{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002x4xiy976r6ui6',1,'Admin',1672319418,'192.168.64.1',2,36,30364,NULL,'Redis: Memory used peak %{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002y4xiyhc4b63uy',1,'Admin',1672319418,'192.168.64.1',2,36,30365,NULL,'Redis: Memory used overhead{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x002z4xiyg944504i',1,'Admin',1672319418,'192.168.64.1',2,36,30366,NULL,'Redis: Memory used dataset{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00304xiythpcpr4p',1,'Admin',1672319418,'192.168.64.1',2,36,30367,NULL,'Redis: Memory used dataset %{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00314xiyjuk1nq95',1,'Admin',1672319418,'192.168.64.1',2,36,30368,NULL,'Redis: Total system memory{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00324xiym5uoclch',1,'Admin',1672319418,'192.168.64.1',2,36,30369,NULL,'Redis: Max memory{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00334xiyh1cen1w6',1,'Admin',1672319418,'192.168.64.1',2,36,30370,NULL,'Redis: Max memory policy{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00344xiyzx8l31by',1,'Admin',1672319418,'192.168.64.1',2,36,30371,NULL,'Redis: Slave expires tracked keys{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00354xiypzex5sj5',1,'Admin',1672319418,'192.168.64.1',2,36,30372,NULL,'Redis: Allocator active{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00364xiyal65zvbc',1,'Admin',1672319418,'192.168.64.1',2,36,30373,NULL,'Redis: Memory clients normal{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00374xiyl0kb280z',1,'Admin',1672319418,'192.168.64.1',2,36,30374,NULL,'Redis: Memory RSS overhead ratio{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00384xiy2lsueaun',1,'Admin',1672319418,'192.168.64.1',2,36,30375,NULL,'Redis: Memory RSS overhead bytes{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00394xiyugoarm1b',1,'Admin',1672319418,'192.168.64.1',2,36,30376,NULL,'Redis: Memory replication backlog{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003a4xiy62b743hz',1,'Admin',1672319418,'192.168.64.1',2,36,30377,NULL,'Redis: Memory number of cached scripts{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003b4xiyi8zug28m',1,'Admin',1672319418,'192.168.64.1',2,36,30378,NULL,'Redis: Memory not counted for evict{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003c4xiyflrdslui',1,'Admin',1672319418,'192.168.64.1',2,36,30379,NULL,'Redis: Memory clients slaves{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003d4xiyu9uunkas',1,'Admin',1672319418,'192.168.64.1',2,36,30380,NULL,'Redis: Memory AOF buffer{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003e4xiygez56t6t',1,'Admin',1672319418,'192.168.64.1',2,36,30381,NULL,'Redis: Allocator allocated{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003f4xiyogxrdl3b',1,'Admin',1672319418,'192.168.64.1',2,36,30382,NULL,'Redis: Memory fragmentation bytes{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003g4xiyz0q1p7h7',1,'Admin',1672319418,'192.168.64.1',2,36,30383,NULL,'Redis: Allocator RSS ratio{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003h4xiywk1qma53',1,'Admin',1672319418,'192.168.64.1',2,36,30384,NULL,'Redis: Allocator RSS bytes{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003i4xiy8im6e6dm',1,'Admin',1672319418,'192.168.64.1',2,36,30385,NULL,'Redis: Allocator resident{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003j4xiyert6ibn5',1,'Admin',1672319418,'192.168.64.1',2,36,30386,NULL,'Redis: Allocator fragmentation ratio{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003k4xiybs0oxejy',1,'Admin',1672319418,'192.168.64.1',2,36,30387,NULL,'Redis: Allocator fragmentation bytes{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003l4xiybk0utiha',1,'Admin',1672319418,'192.168.64.1',2,36,30388,NULL,'Redis: Memory used scripts{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003m4xiyil9nq6qw',1,'Admin',1672319418,'192.168.64.1',2,36,30389,NULL,'Redis: AOF base size{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003n4xiy3fs54xnw',1,'Admin',1672319418,'192.168.64.1',2,36,30390,NULL,'Redis: AOF buffer length{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003o4xiynf6doeld',1,'Admin',1672319418,'192.168.64.1',2,36,30391,NULL,'Redis: AOF current size{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003p4xiy15erffi6',1,'Admin',1672319418,'192.168.64.1',2,36,30392,NULL,'Redis: AOF delayed fsync{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003q4xiywvn4668i',1,'Admin',1672319418,'192.168.64.1',2,36,30393,NULL,'Redis: AOF pending background I/O fsync{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003r4xiy4v73ztrg',1,'Admin',1672319418,'192.168.64.1',2,36,30394,NULL,'Redis: AOF pending rewrite{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003s4xiy78c9juc6',1,'Admin',1672319418,'192.168.64.1',2,36,30395,NULL,'Redis: AOF rewrite buffer length{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003t4xiytd8hcaj5',1,'Admin',1672319418,'192.168.64.1',2,36,30396,NULL,'Redis slave {#SLAVE_IP}:{#SLAVE_PORT}: Replication lag in bytes','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003u4xiyd20kfrgq',1,'Admin',1672319418,'192.168.64.1',2,36,30397,NULL,'Redis: Master host{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003v4xiyszfabhxa',1,'Admin',1672319418,'192.168.64.1',2,36,30398,NULL,'Redis: Master last I/O seconds ago{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003w4xiyo71yaa2f',1,'Admin',1672319418,'192.168.64.1',2,36,30399,NULL,'Redis: Master link status{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003x4xiy1dtudun1',1,'Admin',1672319418,'192.168.64.1',2,36,30400,NULL,'Redis: Master port{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003y4xiykgxfyp8p',1,'Admin',1672319418,'192.168.64.1',2,36,30401,NULL,'Redis: Master sync in progress{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x003z4xiyudeoz2qa',1,'Admin',1672319418,'192.168.64.1',2,36,30402,NULL,'Redis: Slave priority{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00404xiy5zk552df',1,'Admin',1672319418,'192.168.64.1',2,36,30403,NULL,'Redis: Slave priority{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00414xiyes2gyxpq',1,'Admin',1672319418,'192.168.64.1',2,36,30404,NULL,'Redis: Slave replication offset{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00424xiy53id63ed',1,'Admin',1672319418,'192.168.64.1',2,36,30425,NULL,'State of service \"{#SERVICE.NAME}\" ({#SERVICE.DISPLAYNAME})','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00434xiyqsffwwbo',1,'Admin',1672319418,'192.168.64.1',2,36,31335,NULL,'DB {#DBNAME}: Database age','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00444xiymf2206mp',1,'Admin',1672319418,'192.168.64.1',2,36,31336,NULL,'DB {#DBNAME}: Database size','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00454xiyprdqzzl1',1,'Admin',1672319418,'192.168.64.1',2,36,31337,NULL,'DB {#DBNAME}: Get bloating tables','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00464xiy4cobtrs1',1,'Admin',1672319418,'192.168.64.1',2,36,31338,NULL,'DB {#DBNAME}: Tuples returned per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00474xiybzbv4aw0',1,'Admin',1672319418,'192.168.64.1',2,36,31339,NULL,'DB {#DBNAME}: Num of shareupdateexclusive locks','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00484xiyju9fypug',1,'Admin',1672319418,'192.168.64.1',2,36,31340,NULL,'DB {#DBNAME}: Num of sharerowexclusive locks','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00494xiyuglgit6h',1,'Admin',1672319418,'192.168.64.1',2,36,31341,NULL,'DB {#DBNAME}: Num of share locks','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004a4xiymav3soq3',1,'Admin',1672319418,'192.168.64.1',2,36,31342,NULL,'DB {#DBNAME}: Num of rowshare locks','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004b4xiyr4eo15pa',1,'Admin',1672319418,'192.168.64.1',2,36,31343,NULL,'DB {#DBNAME}: Num of rowexclusive locks','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004c4xiyhipt8dzz',1,'Admin',1672319418,'192.168.64.1',2,36,31344,NULL,'DB {#DBNAME}: Num of exclusive locks','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004d4xiybs6c78yp',1,'Admin',1672319418,'192.168.64.1',2,36,31345,NULL,'DB {#DBNAME}: Num of accessshare locks','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004e4xiymdpdhe65',1,'Admin',1672319418,'192.168.64.1',2,36,31346,NULL,'DB {#DBNAME}: Num of accessexclusive locks','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004f4xiynxkcyo1i',1,'Admin',1672319418,'192.168.64.1',2,36,31347,NULL,'DB {#DBNAME}: Rollbacks per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004g4xiy3xphna5r',1,'Admin',1672319418,'192.168.64.1',2,36,31348,NULL,'DB {#DBNAME}: Commits per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004h4xiydne1dfq2',1,'Admin',1672319418,'192.168.64.1',2,36,31349,NULL,'DB {#DBNAME}: Tuples updated per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004i4xiyxd0xiphh',1,'Admin',1672319418,'192.168.64.1',2,36,31350,NULL,'DB {#DBNAME}: Tuples fetched per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004j4xiy9guhi9cu',1,'Admin',1672319418,'192.168.64.1',2,36,31351,NULL,'DB {#DBNAME}: Tuples inserted per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004k4xiyp0vkow5e',1,'Admin',1672319418,'192.168.64.1',2,36,31352,NULL,'DB {#DBNAME}: Tuples deleted per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004l4xiye3geb0na',1,'Admin',1672319418,'192.168.64.1',2,36,31353,NULL,'DB {#DBNAME}: Temp_files created per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004m4xiyh8vgvmlt',1,'Admin',1672319418,'192.168.64.1',2,36,31354,NULL,'DB {#DBNAME}: Temp_bytes written per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004n4xiyyll65tf1',1,'Admin',1672319418,'192.168.64.1',2,36,31355,NULL,'DB {#DBNAME}: Backends connected','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004o4xiyho1lbm86',1,'Admin',1672319418,'192.168.64.1',2,36,31356,NULL,'DB {#DBNAME}: Detected deadlocks per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004p4xiy2hk3cpqn',1,'Admin',1672319418,'192.168.64.1',2,36,31357,NULL,'DB {#DBNAME}: Detected conflicts per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004q4xiy1o6q9unh',1,'Admin',1672319418,'192.168.64.1',2,36,31358,NULL,'DB {#DBNAME}: Checksum failures','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004r4xiysidb54vh',1,'Admin',1672319418,'192.168.64.1',2,36,31359,NULL,'DB {#DBNAME}: Disk blocks read per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004s4xiy2w3pdw4t',1,'Admin',1672319418,'192.168.64.1',2,36,31360,NULL,'DB {#DBNAME}: Blocks hit per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004t4xiywab6qokm',1,'Admin',1672319418,'192.168.64.1',2,36,31361,NULL,'DB {#DBNAME}: Disk blocks write time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004u4xiywgle6h8c',1,'Admin',1672319418,'192.168.64.1',2,36,31362,NULL,'DB {#DBNAME}: Disk blocks read time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004v4xiy1m4p4rd0',1,'Admin',1672319418,'192.168.64.1',2,36,31363,NULL,'DB {#DBNAME}: Num of total locks','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004w4xiycg2pyt44',1,'Admin',1672319418,'192.168.64.1',2,36,31433,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004x4xiyk3l57135',1,'Admin',1672319418,'192.168.64.1',2,36,31434,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004y4xiy9tw3otlv',1,'Admin',1672319418,'192.168.64.1',2,36,31435,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x004z4xiyt4sg8m6h',1,'Admin',1672319418,'192.168.64.1',2,36,31436,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00504xiyiojo9hl2',1,'Admin',1672319418,'192.168.64.1',2,36,31437,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00514xiy0kzf0a30',1,'Admin',1672319418,'192.168.64.1',2,36,31438,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00524xiyg7zupz9i',1,'Admin',1672319418,'192.168.64.1',2,36,31439,NULL,'{#DEVNAME}: Disk utilization by idle time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00534xiyzbnwttjh',1,'Admin',1672319418,'192.168.64.1',2,36,31440,NULL,'{#DEVNAME}: Disk average queue size (avgqu-sz)','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00544xiyeh4c9rcn',1,'Admin',1672319418,'192.168.64.1',2,36,31441,NULL,'{#DEVNAME}: Disk read rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00554xiyg52u3lrc',1,'Admin',1672319418,'192.168.64.1',2,36,31442,NULL,'{#DEVNAME}: Disk write rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00564xiyckn0at6i',1,'Admin',1672319418,'192.168.64.1',2,36,31453,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00574xiyn9ckpncr',1,'Admin',1672319418,'192.168.64.1',2,36,31454,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00584xiyxkv0rd89',1,'Admin',1672319418,'192.168.64.1',2,36,31455,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00594xiy3fbhzj5y',1,'Admin',1672319418,'192.168.64.1',2,36,31663,NULL,'VMware: Status of \"{#CLUSTER.NAME}\" cluster','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005a4xiyau43l623',1,'Admin',1672319418,'192.168.64.1',2,36,31664,NULL,'VMware: Average read latency of the datastore {#DATASTORE}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005b4xiy0ph2gfaf',1,'Admin',1672319418,'192.168.64.1',2,36,31665,NULL,'VMware: Free space on datastore {#DATASTORE} (percentage)','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005c4xiy863y7a21',1,'Admin',1672319418,'192.168.64.1',2,36,31666,NULL,'VMware: Total size of datastore {#DATASTORE}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005d4xiy7k79jkrc',1,'Admin',1672319418,'192.168.64.1',2,36,31667,NULL,'VMware: Average write latency of the datastore {#DATASTORE}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005e4xiyvqtnnspm',1,'Admin',1672319418,'192.168.64.1',2,36,32012,NULL,'{#FSLABEL}({#FSNAME}): Space utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005f4xiyphicd1hw',1,'Admin',1672319418,'192.168.64.1',2,36,32013,NULL,'{#FSLABEL}({#FSNAME}): Total space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005g4xiy9m6wtfes',1,'Admin',1672319418,'192.168.64.1',2,36,32014,NULL,'{#FSLABEL}({#FSNAME}): Used space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005h4xiyy4jg1jf9',1,'Admin',1672319418,'192.168.64.1',2,36,32015,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005i4xiyheqdk560',1,'Admin',1672319418,'192.168.64.1',2,36,32016,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005j4xiy28guapr1',1,'Admin',1672319418,'192.168.64.1',2,36,32017,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005k4xiyn2xtsy0p',1,'Admin',1672319418,'192.168.64.1',2,36,32018,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005l4xiy4rqcvhlw',1,'Admin',1672319418,'192.168.64.1',2,36,32019,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005m4xiyayc3khkj',1,'Admin',1672319418,'192.168.64.1',2,36,32020,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005n4xiy1p2zpxjq',1,'Admin',1672319418,'192.168.64.1',2,36,32021,NULL,'{#DEVNAME}: Disk utilization by idle time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005o4xiy4ovf34f6',1,'Admin',1672319418,'192.168.64.1',2,36,32022,NULL,'{#DEVNAME}: Disk average queue size (avgqu-sz)','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005p4xiyh9xnvs0l',1,'Admin',1672319418,'192.168.64.1',2,36,32023,NULL,'{#DEVNAME}: Disk read rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005q4xiy3nhp6gsg',1,'Admin',1672319418,'192.168.64.1',2,36,32024,NULL,'{#DEVNAME}: Disk write rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005r4xiytm05a05u',1,'Admin',1672319418,'192.168.64.1',2,36,32040,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005s4xiywcirun51',1,'Admin',1672319418,'192.168.64.1',2,36,32041,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005t4xiych7c31y5',1,'Admin',1672319418,'192.168.64.1',2,36,32042,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005u4xiyp2fhaa51',1,'Admin',1672319418,'192.168.64.1',2,36,32935,NULL,'VMware: Number of bytes received on interface {#IFDESC}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005v4xiylfj594xl',1,'Admin',1672319418,'192.168.64.1',2,36,32936,NULL,'VMware: Number of packets received on interface {#IFDESC}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005w4xiyndn720xd',1,'Admin',1672319418,'192.168.64.1',2,36,32937,NULL,'VMware: Number of bytes transmitted on interface {#IFDESC}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005x4xiy68s7g8rl',1,'Admin',1672319418,'192.168.64.1',2,36,32938,NULL,'VMware: Number of packets transmitted on interface {#IFDESC}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005y4xiydlq2u54x',1,'Admin',1672319418,'192.168.64.1',2,36,32939,NULL,'VMware: Average number of bytes read from the disk {#DISKDESC}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x005z4xiy5h5xht71',1,'Admin',1672319418,'192.168.64.1',2,36,32940,NULL,'VMware: Average number of reads from the disk {#DISKDESC}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0x00604xiy528cl394',1,'Admin',1672319418,'192.168.64.1',2,36,32941,NULL,'VMware: Average number of bytes written to the disk {#DISKDESC}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00614xiyrpgo34se',1,'Admin',1672319418,'192.168.64.1',2,36,32942,NULL,'VMware: Average number of writes to the disk {#DISKDESC}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00624xiy661penac',1,'Admin',1672319418,'192.168.64.1',2,36,32943,NULL,'VMware: Free disk space on {#FSNAME}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00634xiy58krztyz',1,'Admin',1672319418,'192.168.64.1',2,36,32944,NULL,'VMware: Free disk space on {#FSNAME} (percentage)','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00644xiymuwjrxuk',1,'Admin',1672319418,'192.168.64.1',2,36,32945,NULL,'VMware: Total disk space on {#FSNAME}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00654xiy4o9twu5z',1,'Admin',1672319418,'192.168.64.1',2,36,32946,NULL,'VMware: Used disk space on {#FSNAME}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00664xiysgj19gik',1,'Admin',1672319418,'192.168.64.1',2,36,32947,NULL,'VMware: Average read latency of the datastore {#DATASTORE}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00674xiypfuqxj5t',1,'Admin',1672319418,'192.168.64.1',2,36,32948,NULL,'VMware: Free space on datastore {#DATASTORE} (percentage)','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00684xiyyejgoqt8',1,'Admin',1672319418,'192.168.64.1',2,36,32949,NULL,'VMware: Total size of datastore {#DATASTORE}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00694xiyx84vmt8p',1,'Admin',1672319418,'192.168.64.1',2,36,32950,NULL,'VMware: Average write latency of the datastore {#DATASTORE}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006a4xiyknen96nr',1,'Admin',1672319418,'192.168.64.1',2,36,32958,NULL,'VMware: Status of \"{#CLUSTER.NAME}\" cluster','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006b4xiyq8zxhiid',1,'Admin',1672319418,'192.168.64.1',2,36,32959,NULL,'VMware: Average read latency of the datastore {#DATASTORE}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006c4xiywh6luq05',1,'Admin',1672319418,'192.168.64.1',2,36,32960,NULL,'VMware: Free space on datastore {#DATASTORE} (percentage)','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006d4xiyi24odkb0',1,'Admin',1672319418,'192.168.64.1',2,36,32961,NULL,'VMware: Total size of datastore {#DATASTORE}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006e4xiybv8anjjo',1,'Admin',1672319418,'192.168.64.1',2,36,32962,NULL,'VMware: Average write latency of the datastore {#DATASTORE}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006f4xiyhc7msbr0',1,'Admin',1672319418,'192.168.64.1',2,36,33178,NULL,'Application {#APPLICATION_NAME}: Replication flush lag','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006g4xiy3jqi1kbf',1,'Admin',1672319418,'192.168.64.1',2,36,33179,NULL,'Application {#APPLICATION_NAME}: Replication replay lag','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006h4xiy35rq03ga',1,'Admin',1672319418,'192.168.64.1',2,36,33180,NULL,'Application {#APPLICATION_NAME}: Replication write lag','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006i4xiyt28mb4z2',1,'Admin',1672319418,'192.168.64.1',2,36,33321,NULL,'{#DEVNAME}: Average disk read queue length','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006j4xiylb7er91w',1,'Admin',1672319418,'192.168.64.1',2,36,33322,NULL,'{#DEVNAME}: Disk read request avg waiting time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006k4xiy2gqetzun',1,'Admin',1672319418,'192.168.64.1',2,36,33323,NULL,'{#DEVNAME}: Disk write request avg waiting time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006l4xiyk3x020vj',1,'Admin',1672319418,'192.168.64.1',2,36,33324,NULL,'{#DEVNAME}: Average disk write queue length','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006m4xiyxpqbigjq',1,'Admin',1672319418,'192.168.64.1',2,36,33329,NULL,'{#DEVNAME}: Average disk read queue length','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006n4xiyp9avdof0',1,'Admin',1672319418,'192.168.64.1',2,36,33330,NULL,'{#DEVNAME}: Disk read request avg waiting time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006o4xiyvkm9zsq3',1,'Admin',1672319418,'192.168.64.1',2,36,33331,NULL,'{#DEVNAME}: Disk write request avg waiting time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006p4xiydmqrpm2m',1,'Admin',1672319418,'192.168.64.1',2,36,33332,NULL,'{#DEVNAME}: Average disk write queue length','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006q4xiym8xabi4k',1,'Admin',1672319418,'192.168.64.1',2,36,33650,NULL,'VMware: Network utilization on interface {#IFDESC}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006r4xiyg4ckst1x',1,'Admin',1672319418,'192.168.64.1',2,36,33651,NULL,'VMware: Average number of outstanding read requests to the disk {#DISKDESC}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006s4xiyt9y9jw9r',1,'Admin',1672319418,'192.168.64.1',2,36,33652,NULL,'VMware: Average read latency to the disk {#DISKDESC}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006t4xiynwonpixc',1,'Admin',1672319418,'192.168.64.1',2,36,33653,NULL,'VMware: Average write latency to the disk {#DISKDESC}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006u4xiy6ezyqzvx',1,'Admin',1672319418,'192.168.64.1',2,36,33654,NULL,'VMware: Average number of outstanding write requests to the disk {#DISKDESC}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006v4xiym3cj58yu',1,'Admin',1672319418,'192.168.64.1',2,36,33655,NULL,'VMware: Multipath count for datastore {#DATASTORE}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006w4xiy4be712zb',1,'Admin',1672319418,'192.168.64.1',2,36,33747,NULL,'RabbitMQ: Healthcheck: alarms in effect in the cluster{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006x4xiypxo5r95l',1,'Admin',1672319418,'192.168.64.1',2,36,33748,NULL,'RabbitMQ: Healthcheck{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006y4xiyk5bfpssr',1,'Admin',1672319418,'192.168.64.1',2,36,33749,NULL,'RabbitMQ: Healthcheck: expiration date on the certificates{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y006z4xiyfiwh8xyn',1,'Admin',1672319418,'192.168.64.1',2,36,33750,NULL,'RabbitMQ: Healthcheck: local alarms in effect on this node{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00704xiyyoyr4w7s',1,'Admin',1672319418,'192.168.64.1',2,36,33751,NULL,'RabbitMQ: Healthcheck: classic mirrored queues without synchronized mirrors online{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00714xiyti0samnw',1,'Admin',1672319418,'192.168.64.1',2,36,33752,NULL,'RabbitMQ: Healthcheck: queues with minimum online quorum{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00724xiykffatrn2',1,'Admin',1672319418,'192.168.64.1',2,36,33753,NULL,'RabbitMQ: Healthcheck: virtual hosts on this node{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00734xiyr1gbfra7',1,'Admin',1672319418,'192.168.64.1',2,36,33757,NULL,'RabbitMQ: Healthcheck: alarms in effect in the cluster{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00744xiyy4e16uz5',1,'Admin',1672319418,'192.168.64.1',2,36,33758,NULL,'RabbitMQ: Healthcheck{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00754xiy1l7kog6t',1,'Admin',1672319418,'192.168.64.1',2,36,33759,NULL,'RabbitMQ: Healthcheck: expiration date on the certificates{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00764xiynzkb0hq0',1,'Admin',1672319418,'192.168.64.1',2,36,33760,NULL,'RabbitMQ: Healthcheck: local alarms in effect on this node{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00774xiyc02gmaii',1,'Admin',1672319418,'192.168.64.1',2,36,33761,NULL,'RabbitMQ: Healthcheck: classic mirrored queues without synchronized mirrors online{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00784xiyfim6w3qx',1,'Admin',1672319418,'192.168.64.1',2,36,33762,NULL,'RabbitMQ: Healthcheck: queues with minimum online quorum{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00794xiykzwucjpw',1,'Admin',1672319418,'192.168.64.1',2,36,33763,NULL,'RabbitMQ: Healthcheck: virtual hosts on this node{#SINGLETON}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007a4xiyexth63u1',1,'Admin',1672319418,'192.168.64.1',2,36,34348,NULL,'TiDB cluster: Number of regions','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007b4xiympavzrsa',1,'Admin',1672319418,'192.168.64.1',2,36,34349,NULL,'TiDB cluster: Current peer count','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007c4xiykifmuvz8',1,'Admin',1672319418,'192.168.64.1',2,36,34350,NULL,'TiDB cluster: Storage capacity','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007d4xiy0rr0lb3t',1,'Admin',1672319418,'192.168.64.1',2,36,34351,NULL,'TiDB cluster: Storage size','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007e4xiyvth3tw2m',1,'Admin',1672319418,'192.168.64.1',2,36,34352,NULL,'TiDB cluster: Disconnect stores','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007f4xiyzgcm3fde',1,'Admin',1672319418,'192.168.64.1',2,36,34353,NULL,'TiDB cluster: Down stores','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007g4xiy4djsb17t',1,'Admin',1672319418,'192.168.64.1',2,36,34354,NULL,'TiDB cluster: Lowspace stores','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007h4xiyf938qi5r',1,'Admin',1672319418,'192.168.64.1',2,36,34355,NULL,'TiDB cluster: Offline stores','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007i4xiye3ucrtgz',1,'Admin',1672319418,'192.168.64.1',2,36,34356,NULL,'TiDB cluster: Tombstone stores','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007j4xiy5ov6xrwu',1,'Admin',1672319418,'192.168.64.1',2,36,34357,NULL,'TiDB cluster: Unhealth stores','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007k4xiybufskvt5',1,'Admin',1672319418,'192.168.64.1',2,36,34358,NULL,'TiDB cluster: Normal stores','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007l4xiy035kdhkq',1,'Admin',1672319418,'192.168.64.1',2,36,34359,NULL,'PD: GRPC Commands: {#GRPC_METHOD}, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007m4xiyocqpei71',1,'Admin',1672319418,'192.168.64.1',2,36,34360,NULL,'PD: Region heartbeat: error, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007n4xiy5pg3gmpx',1,'Admin',1672319418,'192.168.64.1',2,36,34361,NULL,'PD: Region heartbeat: active, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007o4xiyxei8cb21',1,'Admin',1672319418,'192.168.64.1',2,36,34362,NULL,'PD: Region schedule push: total, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007p4xiywp3nfpnh',1,'Admin',1672319418,'192.168.64.1',2,36,34363,NULL,'PD: Region heartbeat: total, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007q4xiy7pdpz4yt',1,'Admin',1672319418,'192.168.64.1',2,36,34364,NULL,'TiDB cluster: Regions label: {#TYPE}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007r4xiyy13yyuol',1,'Admin',1672319418,'192.168.64.1',2,36,34365,NULL,'TiDB cluster: Regions status: {#TYPE}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007s4xiy09g1plm9',1,'Admin',1672319418,'192.168.64.1',2,36,34366,NULL,'TiDB cluster: Scheduler status: {#KIND}','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007t4xiycy5p3tsa',1,'Admin',1672319418,'192.168.64.1',2,36,34405,NULL,'TiDB: KV Commands: {#TYPE}, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007u4xiy7tmu3cp6',1,'Admin',1672319418,'192.168.64.1',2,36,34406,NULL,'TiDB: Server query \"Error\": {#TYPE}, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007v4xiy63fdo9nm',1,'Admin',1672319418,'192.168.64.1',2,36,34407,NULL,'TiDB: Server query \"OK\": {#TYPE}, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007w4xiyafjbwjhg',1,'Admin',1672319418,'192.168.64.1',2,36,34408,NULL,'TiDB: SQL statements: {#TYPE}, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007x4xiyal44euz1',1,'Admin',1672319418,'192.168.64.1',2,36,34409,NULL,'TiDB: KV backoff: {#TYPE}, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007y4xiy24fgiyd4',1,'Admin',1672319418,'192.168.64.1',2,36,34410,NULL,'TiDB: GC action result: {#TYPE}, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y007z4xiykhqusegl',1,'Admin',1672319418,'192.168.64.1',2,36,34411,NULL,'TiDB: Lock resolves: {#TYPE}, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00804xiyfczejgwb',1,'Admin',1672319418,'192.168.64.1',2,36,34444,NULL,'TiKV: Coprocessor: {#REQ_TYPE} requests, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00814xiympxwswse',1,'Admin',1672319418,'192.168.64.1',2,36,34445,NULL,'TiKV: Coprocessor: {#REQ_TYPE} errors, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00824xiyymfxyiv4',1,'Admin',1672319418,'192.168.64.1',2,36,34446,NULL,'TiKV: Coprocessor: {#REQ_TYPE} RocksDB ops, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00834xiygqgpk5f7',1,'Admin',1672319418,'192.168.64.1',2,36,34447,NULL,'TiKV: Coprocessor: {#REQ_TYPE} scan keys, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00844xiypmhdrqls',1,'Admin',1672319418,'192.168.64.1',2,36,34448,NULL,'TiKV: Query: {#TYPE}, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00854xiyes5t5uxw',1,'Admin',1672319418,'192.168.64.1',2,36,34449,NULL,'TiKV: Scheduler: commands {#STAGE}, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00864xiy0bgegwfr',1,'Admin',1672319418,'192.168.64.1',2,36,34450,NULL,'TiKV: Store_id {#STORE_ID}: failure messages \"{#TYPE}\", rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00874xiyomn840fn',1,'Admin',1672319418,'192.168.64.1',2,36,34944,NULL,'WildFly deployment [{#DEPLOYMENT}]: Enabled','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00884xiybxxbiftf',1,'Admin',1672319418,'192.168.64.1',2,36,34945,NULL,'WildFly deployment [{#DEPLOYMENT}]: Managed','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00894xiy4ysnwzcw',1,'Admin',1672319418,'192.168.64.1',2,36,34946,NULL,'WildFly domain: Server {#SERVER}: Autostart','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008a4xiyb7ty7i5c',1,'Admin',1672319418,'192.168.64.1',2,36,34947,NULL,'WildFly domain: Server {#SERVER}: Server group','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008b4xiycft2zg65',1,'Admin',1672319418,'192.168.64.1',2,36,34948,NULL,'WildFly domain: Server {#SERVER}: Status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008c4xiyr6sy38hn',1,'Admin',1672319418,'192.168.64.1',2,36,34970,NULL,'WildFly deployment [{#DEPLOYMENT}]: Enabled time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008d4xiykwx3uc3e',1,'Admin',1672319418,'192.168.64.1',2,36,34971,NULL,'WildFly deployment [{#DEPLOYMENT}]: Enabled','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008e4xiyupk6ooy8',1,'Admin',1672319418,'192.168.64.1',2,36,34972,NULL,'WildFly deployment [{#DEPLOYMENT}]: Managed','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008f4xiye8onuizt',1,'Admin',1672319418,'192.168.64.1',2,36,34973,NULL,'WildFly deployment [{#DEPLOYMENT}]: Persistent','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008g4xiyhd62cm6v',1,'Admin',1672319418,'192.168.64.1',2,36,34974,NULL,'WildFly deployment [{#DEPLOYMENT}]: Status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008h4xiyskjya28q',1,'Admin',1672319418,'192.168.64.1',2,36,34975,NULL,'WildFly {#JMX_DATA_SOURCE}: Cache access, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008i4xiyzcvs8vnv',1,'Admin',1672319418,'192.168.64.1',2,36,34976,NULL,'WildFly {#JMX_DATA_SOURCE}: Cache add, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008j4xiy87rlxupp',1,'Admin',1672319418,'192.168.64.1',2,36,34977,NULL,'WildFly {#JMX_DATA_SOURCE}: Cache current size','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008k4xiy2k85kdg6',1,'Admin',1672319418,'192.168.64.1',2,36,34978,NULL,'WildFly {#JMX_DATA_SOURCE}: Cache delete, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008l4xiylm1yj1sa',1,'Admin',1672319418,'192.168.64.1',2,36,34979,NULL,'WildFly {#JMX_DATA_SOURCE}: Cache hit, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008m4xiyrxt9agny',1,'Admin',1672319418,'192.168.64.1',2,36,34980,NULL,'WildFly {#JMX_DATA_SOURCE}: Cache miss, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008n4xiyezx69vfv',1,'Admin',1672319418,'192.168.64.1',2,36,34981,NULL,'WildFly {#JMX_DATA_SOURCE}: Statistics enabled','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008o4xiyr470igy9',1,'Admin',1672319418,'192.168.64.1',2,36,34982,NULL,'WildFly {#JMX_DATA_SOURCE}: Connections: Active','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008p4xiy0n21r11n',1,'Admin',1672319418,'192.168.64.1',2,36,34983,NULL,'WildFly {#JMX_DATA_SOURCE}: XA: Commit time, avg','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008q4xiy0usihsks',1,'Admin',1672319418,'192.168.64.1',2,36,34984,NULL,'WildFly {#JMX_DATA_SOURCE}: XA: Start time, avg','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008r4xiykiv4r32o',1,'Admin',1672319418,'192.168.64.1',2,36,34985,NULL,'WildFly {#JMX_DATA_SOURCE}: XA: Rollback, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008s4xiyyphdvigr',1,'Admin',1672319418,'192.168.64.1',2,36,34986,NULL,'WildFly {#JMX_DATA_SOURCE}: XA: Rollback time, avg','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008t4xiyi3j3qqmr',1,'Admin',1672319418,'192.168.64.1',2,36,34987,NULL,'WildFly {#JMX_DATA_SOURCE}: XA: Recover, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008u4xiyv8776b8y',1,'Admin',1672319418,'192.168.64.1',2,36,34988,NULL,'WildFly {#JMX_DATA_SOURCE}: XA: Recover time, avg','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008v4xiy0apfibpe',1,'Admin',1672319418,'192.168.64.1',2,36,34989,NULL,'WildFly {#JMX_DATA_SOURCE}: XA: Prepare, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008w4xiyru31lehx',1,'Admin',1672319418,'192.168.64.1',2,36,34990,NULL,'WildFly {#JMX_DATA_SOURCE}: XA: Prepare time, avg','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008x4xiyjcw7umb8',1,'Admin',1672319418,'192.168.64.1',2,36,34991,NULL,'WildFly {#JMX_DATA_SOURCE}: XA: Forget, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008y4xiy4svr7082',1,'Admin',1672319418,'192.168.64.1',2,36,34992,NULL,'WildFly {#JMX_DATA_SOURCE}: XA: Forget time, avg','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y008z4xiyvw2jyx1h',1,'Admin',1672319418,'192.168.64.1',2,36,34993,NULL,'WildFly {#JMX_DATA_SOURCE}: XA: End, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00904xiyaeuu4btz',1,'Admin',1672319418,'192.168.64.1',2,36,34994,NULL,'WildFly {#JMX_DATA_SOURCE}: XA: End time, avg','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00914xiylsfd1iu7',1,'Admin',1672319418,'192.168.64.1',2,36,34995,NULL,'WildFly {#JMX_DATA_SOURCE}: XA: Commit, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00924xiyb9ng2ltk',1,'Admin',1672319418,'192.168.64.1',2,36,34996,NULL,'WildFly {#JMX_DATA_SOURCE}: Connections: Wait','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00934xiy09ncy000',1,'Admin',1672319418,'192.168.64.1',2,36,34997,NULL,'WildFly {#JMX_DATA_SOURCE}: Connections: Available','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00944xiyiq8wyo7h',1,'Admin',1672319418,'192.168.64.1',2,36,34998,NULL,'WildFly {#JMX_DATA_SOURCE}: Connections: Timed out, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00954xiy70hxuq5z',1,'Admin',1672319418,'192.168.64.1',2,36,34999,NULL,'WildFly {#JMX_DATA_SOURCE}: Statistics enabled','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00964xiysvydm4c2',1,'Admin',1672319418,'192.168.64.1',2,36,35000,NULL,'WildFly {#JMX_DATA_SOURCE}: Connections: Used, max','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00974xiy8psy5gfo',1,'Admin',1672319418,'192.168.64.1',2,36,35001,NULL,'WildFly {#JMX_DATA_SOURCE}: Connections: In use','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00984xiyc1blqohn',1,'Admin',1672319418,'192.168.64.1',2,36,35002,NULL,'WildFly {#JMX_DATA_SOURCE}: Connections: Idle','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00994xiyf5ab23op',1,'Admin',1672319418,'192.168.64.1',2,36,35003,NULL,'WildFly {#JMX_DATA_SOURCE}: Connections: Destroyed, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009a4xiy83lnevkc',1,'Admin',1672319418,'192.168.64.1',2,36,35004,NULL,'WildFly {#JMX_DATA_SOURCE}: Connections: Created, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009b4xiyoe5xtan3',1,'Admin',1672319418,'192.168.64.1',2,36,35005,NULL,'WildFly {#JMX_DATA_SOURCE}: Connections: Blocking failure, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009c4xiydtvoi5nm',1,'Admin',1672319418,'192.168.64.1',2,36,35006,NULL,'WildFly {#JMX_DATA_SOURCE}: Connections: Usage time, avg','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009d4xiyy39qwggq',1,'Admin',1672319418,'192.168.64.1',2,36,35007,NULL,'WildFly {#JMX_DATA_SOURCE}: Connections: Pool time, avg','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009e4xiy8khdsmv0',1,'Admin',1672319418,'192.168.64.1',2,36,35008,NULL,'WildFly {#JMX_DATA_SOURCE}: Connections: Get time, avg','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009f4xiyj86a0fhk',1,'Admin',1672319418,'192.168.64.1',2,36,35009,NULL,'WildFly {#JMX_DATA_SOURCE}: Connections: Creating time, avg','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009g4xiy5ptdskr2',1,'Admin',1672319418,'192.168.64.1',2,36,35010,NULL,'WildFly {#JMX_DATA_SOURCE}: Blocking time, avg','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009h4xiy4kbeg6q5',1,'Admin',1672319418,'192.168.64.1',2,36,35011,NULL,'WildFly {#JMX_DATA_SOURCE}: XA: Start rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009i4xiyte8etkf5',1,'Admin',1672319418,'192.168.64.1',2,36,35012,NULL,'WildFly listener {#HTTP_LISTENER}: Bytes received, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009j4xiy226m865p',1,'Admin',1672319418,'192.168.64.1',2,36,35013,NULL,'WildFly listener {#HTTP_LISTENER}: Bytes sent, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009k4xiykezpo0dr',1,'Admin',1672319418,'192.168.64.1',2,36,35014,NULL,'WildFly listener {#HTTP_LISTENER}: Errors, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009l4xiy77p0dsmi',1,'Admin',1672319418,'192.168.64.1',2,36,35015,NULL,'WildFly listener {#HTTP_LISTENER}: Requests, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009m4xiyzfc7kyzk',1,'Admin',1672319418,'192.168.64.1',2,36,35264,NULL,'{#UNIT.NAME}: Get unit info','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009n4xiy0qzhhfbh',1,'Admin',1672319418,'192.168.64.1',2,36,35265,NULL,'{#UNIT.NAME}: Get unit info','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009o4xiyargh0lmd',1,'Admin',1672319418,'192.168.64.1',2,36,35266,NULL,'{#UNIT.NAME}: Active state','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009p4xiyqlskcsz7',1,'Admin',1672319418,'192.168.64.1',2,36,35267,NULL,'{#UNIT.NAME}: Load state','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009q4xiyrg4cbf7v',1,'Admin',1672319418,'192.168.64.1',2,36,35268,NULL,'{#UNIT.NAME}: Unit file state','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009r4xiyzah5v3s0',1,'Admin',1672319418,'192.168.64.1',2,36,35269,NULL,'{#UNIT.NAME}: Active time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009s4xiy9iwyqyvt',1,'Admin',1672319418,'192.168.64.1',2,36,35270,NULL,'{#UNIT.NAME}: Connections accepted per sec','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009t4xiyaap4ybdg',1,'Admin',1672319418,'192.168.64.1',2,36,35271,NULL,'{#UNIT.NAME}: Connections connected','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009u4xiyjtklcpy1',1,'Admin',1672319418,'192.168.64.1',2,36,36782,NULL,'Travis: Repo [{#SLUG}]: Builds passed, %','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009v4xiy3gcsjqd7',1,'Admin',1672319418,'192.168.64.1',2,36,36783,NULL,'Travis: Repo [{#SLUG}]: Get builds','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009w4xiym6wx4uiw',1,'Admin',1672319418,'192.168.64.1',2,36,36784,NULL,'Travis: Repo [{#SLUG}]: Get caches','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009x4xiyv1k5cc56',1,'Admin',1672319418,'192.168.64.1',2,36,36785,NULL,'Travis: Repo [{#SLUG}]: Builds failed','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009y4xiy1rn9sl2x',1,'Admin',1672319418,'192.168.64.1',2,36,36786,NULL,'Travis: Repo [{#SLUG}]: Builds passed','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y009z4xiyw2ojrfl3',1,'Admin',1672319418,'192.168.64.1',2,36,36787,NULL,'Travis: Repo [{#SLUG}]: Builds total','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00a04xiy40mae56c',1,'Admin',1672319418,'192.168.64.1',2,36,36788,NULL,'Travis: Repo [{#SLUG}]: Cache files','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00a14xiyv8ciw4je',1,'Admin',1672319418,'192.168.64.1',2,36,36789,NULL,'Travis: Repo [{#SLUG}]: Cache size','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00a24xiyqegkhsvo',1,'Admin',1672319418,'192.168.64.1',2,36,36790,NULL,'Travis: Repo [{#SLUG}]: Description','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00a34xiydchbn6t6',1,'Admin',1672319418,'192.168.64.1',2,36,36791,NULL,'Travis: Repo [{#SLUG}]: Last build duration','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00a44xiyxye1ojxm',1,'Admin',1672319418,'192.168.64.1',2,36,36792,NULL,'Travis: Repo [{#SLUG}]: Last build id','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00a54xiy62g64dw2',1,'Admin',1672319418,'192.168.64.1',2,36,36793,NULL,'Travis: Repo [{#SLUG}]: Last build number','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00a64xiy8d96nw11',1,'Admin',1672319418,'192.168.64.1',2,36,36794,NULL,'Travis: Repo [{#SLUG}]: Last build state','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00a74xiyeelp8moi',1,'Admin',1672319418,'192.168.64.1',2,36,39754,NULL,'Edge [{#NAME}]: Activation state','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00a84xiy4nxql9o6',1,'Admin',1672319418,'192.168.64.1',2,36,39755,NULL,'Edge [{#NAME}]: Description','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00a94xiyignxb17q',1,'Admin',1672319418,'192.168.64.1',2,36,39756,NULL,'Edge [{#NAME}]: HA state','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00aa4xiyoqjv9v6o',1,'Admin',1672319418,'192.168.64.1',2,36,39757,NULL,'Edge [{#NAME}]: Model number','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ab4xiynt1qf0ns',1,'Admin',1672319418,'192.168.64.1',2,36,39758,NULL,'Edge [{#NAME}]: Service uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ac4xiyplee5lfx',1,'Admin',1672319418,'192.168.64.1',2,36,39759,NULL,'Edge [{#NAME}]: Software version','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ad4xiy0ec0wtna',1,'Admin',1672319418,'192.168.64.1',2,36,39760,NULL,'Edge [{#NAME}]: State','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ae4xiymzk6xb33',1,'Admin',1672319418,'192.168.64.1',2,36,39761,NULL,'Edge [{#NAME}]: System uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00af4xiye49bn1bc',1,'Admin',1672319418,'192.168.64.1',2,36,39762,NULL,'Gateway [{#NAME}]: Connected edges','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ag4xiy9vt8c71b',1,'Admin',1672319418,'192.168.64.1',2,36,39763,NULL,'Gateway [{#NAME}]: Description','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ah4xiypxin2g5e',1,'Admin',1672319418,'192.168.64.1',2,36,39764,NULL,'Gateway [{#NAME}]: IP address','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ai4xiyu2mqq1rw',1,'Admin',1672319418,'192.168.64.1',2,36,39765,NULL,'Gateway [{#NAME}]: Service uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00aj4xiy05jdkag7',1,'Admin',1672319418,'192.168.64.1',2,36,39766,NULL,'Gateway [{#NAME}]: State','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ak4xiy07cwmgxk',1,'Admin',1672319418,'192.168.64.1',2,36,39767,NULL,'Gateway [{#NAME}]: System uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00al4xiyr42c4wk0',1,'Admin',1672319418,'192.168.64.1',2,36,39768,NULL,'Gateway [{#NAME}]: Utilization CPU','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00am4xiypr2g1v3i',1,'Admin',1672319418,'192.168.64.1',2,36,39769,NULL,'Gateway [{#NAME}]: Utilization load','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00an4xiyx196afdt',1,'Admin',1672319418,'192.168.64.1',2,36,39770,NULL,'Gateway [{#NAME}]: Utilization memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ao4xiy3vsh9zki',1,'Admin',1672319418,'192.168.64.1',2,36,39771,NULL,'Gateway [{#NAME}]: Utilization overall','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ap4xiyqan6povk',1,'Admin',1672319418,'192.168.64.1',2,36,39772,NULL,'Link [{#NAME}]:[{#IP}]: Best loss rx, %','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00aq4xiy30w6os3u',1,'Admin',1672319418,'192.168.64.1',2,36,39773,NULL,'Link [{#NAME}]:[{#IP}]: Best loss tx, %','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ar4xiyuxtcntac',1,'Admin',1672319418,'192.168.64.1',2,36,39774,NULL,'Link [{#NAME}]:[{#IP}]: Bytes in','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00as4xiyca8qysf5',1,'Admin',1672319418,'192.168.64.1',2,36,39775,NULL,'Link [{#NAME}]:[{#IP}]: Bytes out','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00at4xiys8a49qhz',1,'Admin',1672319418,'192.168.64.1',2,36,39776,NULL,'Link [{#NAME}]:[{#IP}]: Last active','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00au4xiyjfjsz808',1,'Admin',1672319418,'192.168.64.1',2,36,39777,NULL,'Link [{#NAME}]:[{#IP}]: Packets in','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00av4xiyt56xlj85',1,'Admin',1672319418,'192.168.64.1',2,36,39778,NULL,'Link [{#NAME}]:[{#IP}]: Packets out','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00aw4xiy63axwxxx',1,'Admin',1672319418,'192.168.64.1',2,36,39779,NULL,'Link [{#NAME}]:[{#IP}]: State','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ax4xiyelt26rwn',1,'Admin',1672319418,'192.168.64.1',2,36,39780,NULL,'Link [{#NAME}]:[{#IP}]: Total bytes','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ay4xiy2ddlplwc',1,'Admin',1672319418,'192.168.64.1',2,36,39781,NULL,'Link [{#NAME}]:[{#IP}]: Total packets','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00az4xiyq1lc44qo',1,'Admin',1672319418,'192.168.64.1',2,36,39782,NULL,'Path [{#NAME}]:[{#SOURCE} => {#DESTINATION}]: Bytes in','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00b04xiya6a83hu4',1,'Admin',1672319418,'192.168.64.1',2,36,39783,NULL,'Path [{#NAME}]:[{#SOURCE} => {#DESTINATION}]: Bytes out','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00b14xiyr5yr0d0e',1,'Admin',1672319418,'192.168.64.1',2,36,39784,NULL,'Path [{#NAME}]:[{#SOURCE} => {#DESTINATION}]: Packets in','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00b24xiyd6luofzf',1,'Admin',1672319418,'192.168.64.1',2,36,39785,NULL,'Path [{#NAME}]:[{#SOURCE} => {#DESTINATION}]: Packets out','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00b34xiyz92k4ocq',1,'Admin',1672319418,'192.168.64.1',2,36,39786,NULL,'Path [{#NAME}]:[{#SOURCE} => {#DESTINATION}]: Packet Loss in','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00b44xiyort73abv',1,'Admin',1672319418,'192.168.64.1',2,36,39787,NULL,'Path [{#NAME}]:[{#SOURCE} => {#DESTINATION}]: Packet Loss out','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00b54xiyzu2mov6l',1,'Admin',1672319418,'192.168.64.1',2,36,39788,NULL,'Path [{#NAME}]:[{#SOURCE} => {#DESTINATION}]: Bytes total','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00b64xiy3q35g0eu',1,'Admin',1672319418,'192.168.64.1',2,36,39789,NULL,'Path [{#NAME}]:[{#SOURCE} => {#DESTINATION}]: Total packets','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00b74xiyryw3uwes',1,'Admin',1672319418,'192.168.64.1',2,36,39790,NULL,'SDWAN Peer [{#NAME}]:[{#TYPE}]: Dead path','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00b84xiymlybzf47',1,'Admin',1672319418,'192.168.64.1',2,36,39791,NULL,'SDWAN Peer [{#NAME}]:[{#TYPE}]: Description','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00b94xiy7c477v60',1,'Admin',1672319418,'192.168.64.1',2,36,39792,NULL,'SDWAN Peer [{#NAME}]:[{#TYPE}]: Stable path','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ba4xiyt10pr8ie',1,'Admin',1672319418,'192.168.64.1',2,36,39793,NULL,'SDWAN Peer [{#NAME}]:[{#TYPE}]: Standby path','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bb4xiyu7hgw9qi',1,'Admin',1672319418,'192.168.64.1',2,36,39794,NULL,'SDWAN Peer [{#NAME}]:[{#TYPE}]: Total path','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bc4xiy0adckkl7',1,'Admin',1672319418,'192.168.64.1',2,36,39795,NULL,'SDWAN Peer [{#NAME}]:[{#TYPE}]: Unknown path','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bd4xiy24luhbbr',1,'Admin',1672319418,'192.168.64.1',2,36,39796,NULL,'SDWAN Peer [{#NAME}]:[{#TYPE}]: Unstable path','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00be4xiy1ir3j1he',1,'Admin',1672319418,'192.168.64.1',2,36,39817,NULL,'Cluster node [{#NODE.NAME}]: Address','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bf4xiyb9ioaks4',1,'Admin',1672319418,'192.168.64.1',2,36,39818,NULL,'Cluster node [{#NODE.NAME}]: Last access age','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bg4xiy6r41tz54',1,'Admin',1672319418,'192.168.64.1',2,36,39819,NULL,'Cluster node [{#NODE.NAME}]: Last access time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bh4xiy5sz9fp1x',1,'Admin',1672319418,'192.168.64.1',2,36,39820,NULL,'Cluster node [{#NODE.NAME}]: Status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bi4xiylp7p9n59',1,'Admin',1672319418,'192.168.64.1',2,36,42123,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bj4xiyayoxk4i6',1,'Admin',1672319418,'192.168.64.1',2,36,42124,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bk4xiyx144gelf',1,'Admin',1672319418,'192.168.64.1',2,36,42125,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bl4xiyfjionqvf',1,'Admin',1672319418,'192.168.64.1',2,36,42126,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bm4xiyzf9j92wd',1,'Admin',1672319418,'192.168.64.1',2,36,42127,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bn4xiylljwdbh8',1,'Admin',1672319418,'192.168.64.1',2,36,42128,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bo4xiyskn6a6bu',1,'Admin',1672319418,'192.168.64.1',2,36,42129,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bp4xiyu7apdvqw',1,'Admin',1672319418,'192.168.64.1',2,36,42130,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bq4xiyrum2qrbg',1,'Admin',1672319418,'192.168.64.1',2,36,42131,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00br4xiyofpqgl0y',1,'Admin',1672319418,'192.168.64.1',2,36,42132,NULL,'Interface {#IFNAME}({#IFALIAS}): Duplex status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bs4xiyp1klkj3w',1,'Admin',1672319418,'192.168.64.1',2,36,42145,NULL,'Interface {#IFDESCR}: Inbound packets discarded','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bt4xiy01z2p0oj',1,'Admin',1672319418,'192.168.64.1',2,36,42146,NULL,'Interface {#IFDESCR}: Inbound packets with errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bu4xiyjku0c1da',1,'Admin',1672319418,'192.168.64.1',2,36,42147,NULL,'Interface {#IFDESCR}: Bits received','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bv4xiyld5ckqv9',1,'Admin',1672319418,'192.168.64.1',2,36,42148,NULL,'Interface {#IFDESCR}: Outbound packets discarded','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bw4xiy0d4n96ox',1,'Admin',1672319418,'192.168.64.1',2,36,42149,NULL,'Interface {#IFDESCR}: Outbound packets with errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bx4xiy4zjnpya0',1,'Admin',1672319418,'192.168.64.1',2,36,42150,NULL,'Interface {#IFDESCR}: Bits sent','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00by4xiy1kvv6c6v',1,'Admin',1672319418,'192.168.64.1',2,36,42151,NULL,'Interface {#IFDESCR}: Speed','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00bz4xiypuf7zyhr',1,'Admin',1672319418,'192.168.64.1',2,36,42152,NULL,'Interface {#IFDESCR}: Operational status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00c04xiya6sigiec',1,'Admin',1672319418,'192.168.64.1',2,36,42153,NULL,'Interface {#IFDESCR}: Interface type','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00c14xiyk09dcx2s',1,'Admin',1672319418,'192.168.64.1',2,36,42166,NULL,'Interface {#IFDESCR}: Inbound packets discarded','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00c24xiy9rzd3wms',1,'Admin',1672319418,'192.168.64.1',2,36,42167,NULL,'Interface {#IFDESCR}: Inbound packets with errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00c34xiy2sxhq5kd',1,'Admin',1672319418,'192.168.64.1',2,36,42168,NULL,'Interface {#IFDESCR}: Bits received','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00c44xiyf15t436g',1,'Admin',1672319418,'192.168.64.1',2,36,42169,NULL,'Interface {#IFDESCR}: Outbound packets discarded','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00c54xiyb8a9pv9h',1,'Admin',1672319418,'192.168.64.1',2,36,42170,NULL,'Interface {#IFDESCR}: Outbound packets with errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00c64xiyepmp6neu',1,'Admin',1672319418,'192.168.64.1',2,36,42171,NULL,'Interface {#IFDESCR}: Bits sent','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00c74xiyndlbyon0',1,'Admin',1672319418,'192.168.64.1',2,36,42172,NULL,'Interface {#IFDESCR}: Speed','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00c84xiyugh0gjn1',1,'Admin',1672319418,'192.168.64.1',2,36,42173,NULL,'Interface {#IFDESCR}: Operational status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00c94xiy287a2t1t',1,'Admin',1672319418,'192.168.64.1',2,36,42174,NULL,'Interface {#IFDESCR}: Interface type','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ca4xiys1yiuwdy',1,'Admin',1672319418,'192.168.64.1',2,36,42491,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00cb4xiyfdgv9qj2',1,'Admin',1672319418,'192.168.64.1',2,36,42492,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00cc4xiyvlky2eqj',1,'Admin',1672319418,'192.168.64.1',2,36,42493,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00cd4xiyqlf5617q',1,'Admin',1672319418,'192.168.64.1',2,36,42494,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ce4xiy3gie3fc3',1,'Admin',1672319418,'192.168.64.1',2,36,42495,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00cf4xiy96wfznxx',1,'Admin',1672319418,'192.168.64.1',2,36,42496,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00cg4xiy8jy0h7v2',1,'Admin',1672319418,'192.168.64.1',2,36,42497,NULL,'{#DEVNAME}: Disk utilization by idle time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ch4xiydx4qbwa7',1,'Admin',1672319418,'192.168.64.1',2,36,42498,NULL,'{#DEVNAME}: Average disk read queue length','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ci4xiymr5l6u8l',1,'Admin',1672319418,'192.168.64.1',2,36,42499,NULL,'{#DEVNAME}: Disk read request avg waiting time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00cj4xiyxv3eq7u7',1,'Admin',1672319418,'192.168.64.1',2,36,42500,NULL,'{#DEVNAME}: Disk write request avg waiting time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ck4xiyzcouc7ov',1,'Admin',1672319418,'192.168.64.1',2,36,42501,NULL,'{#DEVNAME}: Average disk write queue length','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00cl4xiy5r73abzh',1,'Admin',1672319418,'192.168.64.1',2,36,42502,NULL,'{#DEVNAME}: Disk average queue size (avgqu-sz)','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00cm4xiyai1v1g2x',1,'Admin',1672319418,'192.168.64.1',2,36,42503,NULL,'{#DEVNAME}: Disk read rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00cn4xiy32irq94s',1,'Admin',1672319418,'192.168.64.1',2,36,42504,NULL,'{#DEVNAME}: Disk write rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00co4xiybkes8y9h',1,'Admin',1672319418,'192.168.64.1',2,36,42505,NULL,'State of service \"{#SERVICE.NAME}\" ({#SERVICE.DISPLAYNAME})','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00cp4xiy8ghtys67',1,'Admin',1672319418,'192.168.64.1',2,36,42506,NULL,'{#FSLABEL}({#FSNAME}): Space utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00cq4xiyymfv8spc',1,'Admin',1672319418,'192.168.64.1',2,36,42507,NULL,'{#FSLABEL}({#FSNAME}): Total space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00cr4xiyfy48zq91',1,'Admin',1672319418,'192.168.64.1',2,36,42508,NULL,'{#FSLABEL}({#FSNAME}): Used space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00cs4xiyegqdklxg',1,'Admin',1672319418,'192.168.64.1',2,36,42509,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ct4xiy5q1kllpk',1,'Admin',1672319418,'192.168.64.1',2,36,42510,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00cu4xiyhrw4uxqq',1,'Admin',1672319418,'192.168.64.1',2,36,42511,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00cv4xiys0slyuit',1,'Admin',1672319418,'192.168.64.1',2,36,42547,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00cw4xiyyad858zl',1,'Admin',1672319418,'192.168.64.1',2,36,42548,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00cx4xiyu1s7ivdw',1,'Admin',1672319418,'192.168.64.1',2,36,42549,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00cy4xiy97a63x34',1,'Admin',1672319418,'192.168.64.1',2,36,42550,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00cz4xiyvdbi7tcm',1,'Admin',1672319418,'192.168.64.1',2,36,42551,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00d04xiyrp6ltl1j',1,'Admin',1672319418,'192.168.64.1',2,36,42552,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00d14xiys2a8950u',1,'Admin',1672319418,'192.168.64.1',2,36,42553,NULL,'{#DEVNAME}: Disk utilization by idle time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00d24xiymhm37go3',1,'Admin',1672319418,'192.168.64.1',2,36,42554,NULL,'{#DEVNAME}: Average disk read queue length','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00d34xiyyu620lzd',1,'Admin',1672319418,'192.168.64.1',2,36,42555,NULL,'{#DEVNAME}: Disk read request avg waiting time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00d44xiyh9rf4yfs',1,'Admin',1672319418,'192.168.64.1',2,36,42556,NULL,'{#DEVNAME}: Disk write request avg waiting time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00d54xiy2ej3sce8',1,'Admin',1672319418,'192.168.64.1',2,36,42557,NULL,'{#DEVNAME}: Average disk write queue length','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00d64xiyi2tzuu47',1,'Admin',1672319418,'192.168.64.1',2,36,42558,NULL,'{#DEVNAME}: Disk average queue size (avgqu-sz)','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00d74xiy04r1bpwh',1,'Admin',1672319418,'192.168.64.1',2,36,42559,NULL,'{#DEVNAME}: Disk read rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00d84xiylsxt0w5r',1,'Admin',1672319418,'192.168.64.1',2,36,42560,NULL,'{#DEVNAME}: Disk write rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00d94xiyypwkzu8g',1,'Admin',1672319418,'192.168.64.1',2,36,42561,NULL,'State of service \"{#SERVICE.NAME}\" ({#SERVICE.DISPLAYNAME})','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00da4xiyddqi85jg',1,'Admin',1672319418,'192.168.64.1',2,36,42562,NULL,'{#FSLABEL}({#FSNAME}): Space utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00db4xiyt8hf5utu',1,'Admin',1672319418,'192.168.64.1',2,36,42563,NULL,'{#FSLABEL}({#FSNAME}): Total space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00dc4xiy6uzs5czu',1,'Admin',1672319418,'192.168.64.1',2,36,42564,NULL,'{#FSLABEL}({#FSNAME}): Used space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00dd4xiyd8vbwj93',1,'Admin',1672319418,'192.168.64.1',2,36,42565,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00de4xiyycvz7lty',1,'Admin',1672319418,'192.168.64.1',2,36,42566,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00df4xiyvt6hf0ri',1,'Admin',1672319418,'192.168.64.1',2,36,42567,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00dg4xiy17ykujga',1,'Admin',1672319418,'192.168.64.1',2,36,42583,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00dh4xiy6bv31wg6',1,'Admin',1672319418,'192.168.64.1',2,36,42584,NULL,'Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00di4xiyvkowqifd',1,'Admin',1672319418,'192.168.64.1',2,36,42585,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits received','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00dj4xiyvxlb2q4b',1,'Admin',1672319418,'192.168.64.1',2,36,42586,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00dk4xiy6snv7wtr',1,'Admin',1672319418,'192.168.64.1',2,36,42587,NULL,'Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00dl4xiybxfw8q5n',1,'Admin',1672319418,'192.168.64.1',2,36,42588,NULL,'Interface {#IFNAME}({#IFALIAS}): Bits sent','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00dm4xiypbiqqbvc',1,'Admin',1672319418,'192.168.64.1',2,36,42589,NULL,'Interface {#IFNAME}({#IFALIAS}): Speed','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00dn4xiyklb8cx5m',1,'Admin',1672319418,'192.168.64.1',2,36,42590,NULL,'Interface {#IFNAME}({#IFALIAS}): Operational status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00do4xiyu2z3yshs',1,'Admin',1672319418,'192.168.64.1',2,36,42591,NULL,'Interface {#IFNAME}({#IFALIAS}): Interface type','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00dp4xiy6cb9akmu',1,'Admin',1672319418,'192.168.64.1',2,36,42592,NULL,'{#FSNAME}: Space utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00dq4xiytzlonmky',1,'Admin',1672319418,'192.168.64.1',2,36,42593,NULL,'{#FSNAME}: Total space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00dr4xiyxt7r9cba',1,'Admin',1672319418,'192.168.64.1',2,36,42594,NULL,'{#FSNAME}: Used space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ds4xiy84twomdt',1,'Admin',1672319418,'192.168.64.1',2,36,42595,NULL,'{#MEMNAME}: Total memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00dt4xiyq8wkf0w9',1,'Admin',1672319418,'192.168.64.1',2,36,42596,NULL,'{#MEMNAME}: Used memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00du4xiy8jx95btc',1,'Admin',1672319418,'192.168.64.1',2,36,42597,NULL,'{#MEMNAME}: Memory utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00dv4xiyubhpn5ir',1,'Admin',1672319418,'192.168.64.1',2,36,42746,NULL,'Proxmox: LXC [{#LXC.NAME}/{#LXC.NAME}]: Status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00dw4xiydmu0p27w',1,'Admin',1672319418,'192.168.64.1',2,36,42747,NULL,'Proxmox: Node [{#NODE.NAME}]: Time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00dx4xiy3hv516g8',1,'Admin',1672319418,'192.168.64.1',2,36,42748,NULL,'Proxmox: Node [{#NODE.NAME}]: Status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00dy4xiy3mil126f',1,'Admin',1672319418,'192.168.64.1',2,36,42749,NULL,'Proxmox: Node [{#NODE.NAME}]: RRD statistics','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00dz4xiyrs02t6gz',1,'Admin',1672319418,'192.168.64.1',2,36,42750,NULL,'Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME}]: Status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00e04xiyk08h7c6a',1,'Admin',1672319418,'192.168.64.1',2,36,42751,NULL,'Proxmox: Cluster [{#RESOURCE.NAME}]: Quorate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00e14xiyyigth0rz',1,'Admin',1672319418,'192.168.64.1',2,36,42752,NULL,'Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: CPU usage','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00e24xiyiwtnkx7q',1,'Admin',1672319418,'192.168.64.1',2,36,42753,NULL,'Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Disk read, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00e34xiy8ob9sj12',1,'Admin',1672319418,'192.168.64.1',2,36,42754,NULL,'Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Disk write, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00e44xiyl9hbq2kw',1,'Admin',1672319418,'192.168.64.1',2,36,42755,NULL,'Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Memory total','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00e54xiyyis8xnws',1,'Admin',1672319418,'192.168.64.1',2,36,42756,NULL,'Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Memory usage','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00e64xiyofhphiv0',1,'Admin',1672319418,'192.168.64.1',2,36,42757,NULL,'Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Incoming data, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00e74xiyf2ug93xq',1,'Admin',1672319418,'192.168.64.1',2,36,42758,NULL,'Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Outgoing data, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00e84xiyssvsy4cf',1,'Admin',1672319418,'192.168.64.1',2,36,42759,NULL,'Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00e94xiycoxcgsvp',1,'Admin',1672319418,'192.168.64.1',2,36,42760,NULL,'Proxmox: LXC [{#NODE.NAME}/{#LXC.NAME} ({#LXC.ID})]: Status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ea4xiyenpcy4y2',1,'Admin',1672319418,'192.168.64.1',2,36,42761,NULL,'Proxmox: Node [{#NODE.NAME}]: CPU, usage','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00eb4xiy9htsi4s6',1,'Admin',1672319418,'192.168.64.1',2,36,42762,NULL,'Proxmox: Node [{#NODE.NAME}]: Root filesystem, total','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ec4xiy2pa8evg5',1,'Admin',1672319418,'192.168.64.1',2,36,42763,NULL,'Proxmox: Node [{#NODE.NAME}]: Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ed4xiya5b1twx3',1,'Admin',1672319418,'192.168.64.1',2,36,42764,NULL,'Proxmox: Node [{#NODE.NAME}]: Time zone','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ee4xiyqi7rq1w9',1,'Admin',1672319418,'192.168.64.1',2,36,42765,NULL,'Proxmox: Node [{#NODE.NAME}]: Swap filesystem, used','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ef4xiymdcy5q9x',1,'Admin',1672319418,'192.168.64.1',2,36,42766,NULL,'Proxmox: Node [{#NODE.NAME}]: Swap filesystem, total','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00eg4xiyp0wmbu7z',1,'Admin',1672319418,'192.168.64.1',2,36,42767,NULL,'Proxmox: Node [{#NODE.NAME}]: Root filesystem, used','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00eh4xiyuirfzrvv',1,'Admin',1672319418,'192.168.64.1',2,36,42768,NULL,'Proxmox: Node [{#NODE.NAME}]: PVE version','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ei4xiyftn6qw2j',1,'Admin',1672319418,'192.168.64.1',2,36,42769,NULL,'Proxmox: Node [{#NODE.NAME}]: CPU, iowait','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ej4xiylbyqth1g',1,'Admin',1672319418,'192.168.64.1',2,36,42770,NULL,'Proxmox: Node [{#NODE.NAME}]: Status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ek4xiyv94fzala',1,'Admin',1672319418,'192.168.64.1',2,36,42771,NULL,'Proxmox: Node [{#NODE.NAME}]: Outgoing data, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00el4xiyyw2z4nwp',1,'Admin',1672319418,'192.168.64.1',2,36,42772,NULL,'Proxmox: Node [{#NODE.NAME}]: Incoming data, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00em4xiy57lffyko',1,'Admin',1672319418,'192.168.64.1',2,36,42773,NULL,'Proxmox: Node [{#NODE.NAME}]: Memory, used','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00en4xiyczgio2zf',1,'Admin',1672319418,'192.168.64.1',2,36,42774,NULL,'Proxmox: Node [{#NODE.NAME}]: Memory, total','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00eo4xiyf1hyg6gg',1,'Admin',1672319418,'192.168.64.1',2,36,42775,NULL,'Proxmox: Node [{#NODE.NAME}]: Localtime','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ep4xiybqsc86w7',1,'Admin',1672319418,'192.168.64.1',2,36,42776,NULL,'Proxmox: Node [{#NODE.NAME}]: CPU, loadavg','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00eq4xiyejrisazx',1,'Admin',1672319418,'192.168.64.1',2,36,42777,NULL,'Proxmox: Node [{#NODE.NAME}]: Kernel version','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00er4xiy85z8smu6',1,'Admin',1672319418,'192.168.64.1',2,36,42778,NULL,'Proxmox: Node [{#NODE.NAME}]: Time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00es4xiy6hoxyygd',1,'Admin',1672319418,'192.168.64.1',2,36,42779,NULL,'Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: CPU usage','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00et4xiy7vtkl5am',1,'Admin',1672319418,'192.168.64.1',2,36,42780,NULL,'Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: Disk read, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00eu4xiy5mvgz0gx',1,'Admin',1672319418,'192.168.64.1',2,36,42781,NULL,'Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: Disk write, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ev4xiyzdwyvde2',1,'Admin',1672319418,'192.168.64.1',2,36,42782,NULL,'Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: Memory total','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ew4xiy0rlh4uk3',1,'Admin',1672319418,'192.168.64.1',2,36,42783,NULL,'Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: Memory usage','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ex4xiy2zo64a27',1,'Admin',1672319418,'192.168.64.1',2,36,42784,NULL,'Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: Incoming data, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ey4xiy61nalhdy',1,'Admin',1672319418,'192.168.64.1',2,36,42785,NULL,'Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: Outgoing data, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ez4xiyjvfyus3h',1,'Admin',1672319418,'192.168.64.1',2,36,42786,NULL,'Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00f04xiyz8v09taj',1,'Admin',1672319418,'192.168.64.1',2,36,42787,NULL,'Proxmox: VM [{#NODE.NAME}/{#QEMU.NAME} ({#QEMU.ID})]: Status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00f14xiy3tqjmrcq',1,'Admin',1672319418,'192.168.64.1',2,36,42788,NULL,'Proxmox: Storage [{#NODE.NAME}/{#STORAGE.NAME}]: Content','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00f24xiype9rkhs3',1,'Admin',1672319418,'192.168.64.1',2,36,42789,NULL,'Proxmox: Storage [{#NODE.NAME}/{#STORAGE.NAME}]: Used','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00f34xiyejvacgkq',1,'Admin',1672319418,'192.168.64.1',2,36,42790,NULL,'Proxmox: Storage [{#NODE.NAME}/{#STORAGE.NAME}]: Size','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00f44xiy3tfkx67w',1,'Admin',1672319418,'192.168.64.1',2,36,42791,NULL,'Proxmox: Storage [{#NODE.NAME}/{#STORAGE.NAME}]: Type','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00f54xiygau1xbr1',1,'Admin',1672319418,'192.168.64.1',2,36,42841,NULL,'TrueNAS: CPU idle time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00f64xiyhu31g3ry',1,'Admin',1672319418,'192.168.64.1',2,36,42842,NULL,'TrueNAS: CPU interrupt time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00f74xiycz10binu',1,'Admin',1672319418,'192.168.64.1',2,36,42843,NULL,'TrueNAS: CPU iowait time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00f84xiyp5ui9it5',1,'Admin',1672319418,'192.168.64.1',2,36,42844,NULL,'TrueNAS: CPU nice time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00f94xiynjeei455',1,'Admin',1672319418,'192.168.64.1',2,36,42845,NULL,'TrueNAS: CPU system time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fa4xiycymkeqyq',1,'Admin',1672319418,'192.168.64.1',2,36,42846,NULL,'TrueNAS: CPU user time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fb4xiyb9z7up10',1,'Admin',1672319418,'192.168.64.1',2,36,42847,NULL,'TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: Inbound packets discarded','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fc4xiyxz92en8p',1,'Admin',1672319418,'192.168.64.1',2,36,42848,NULL,'TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: Inbound packets with errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fd4xiyy949t8n0',1,'Admin',1672319418,'192.168.64.1',2,36,42849,NULL,'TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: Bits received','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fe4xiyht341fhf',1,'Admin',1672319418,'192.168.64.1',2,36,42850,NULL,'TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: Outbound packets discarded','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ff4xiyyyenm1j7',1,'Admin',1672319418,'192.168.64.1',2,36,42851,NULL,'TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: Outbound packets with errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fg4xiyyb9wc13r',1,'Admin',1672319418,'192.168.64.1',2,36,42852,NULL,'TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: Bits sent','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fh4xiyrl3rmryy',1,'Admin',1672319418,'192.168.64.1',2,36,42853,NULL,'TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: Speed','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fi4xiytpcrrvd5',1,'Admin',1672319418,'192.168.64.1',2,36,42854,NULL,'TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: Operational status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fj4xiyof6ysjxb',1,'Admin',1672319418,'192.168.64.1',2,36,42855,NULL,'TrueNAS: Interface [{#IFNAME}({#IFALIAS})]: Interface type','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fk4xiy4sxp18ue',1,'Admin',1672319418,'192.168.64.1',2,36,42856,NULL,'TrueNAS: Disk [{#DISK_NAME}]: Temperature','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fl4xiy1oxwfxg1',1,'Admin',1672319418,'192.168.64.1',2,36,42857,NULL,'TrueNAS: Dataset [{#DATASET_NAME}]: Available space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fm4xiybqeegpyb',1,'Admin',1672319418,'192.168.64.1',2,36,42858,NULL,'TrueNAS: Dataset [{#DATASET_NAME}]: Usage in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fn4xiyes31y5u6',1,'Admin',1672319418,'192.168.64.1',2,36,42859,NULL,'TrueNAS: Dataset [{#DATASET_NAME}]: Total space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fo4xiy6hz577z1',1,'Admin',1672319418,'192.168.64.1',2,36,42860,NULL,'TrueNAS: Dataset [{#DATASET_NAME}]: Used space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fp4xiy7orjadx3',1,'Admin',1672319418,'192.168.64.1',2,36,42861,NULL,'TrueNAS: Pool [{#POOLNAME}]: Available space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fq4xiy8b1h8cc7',1,'Admin',1672319418,'192.168.64.1',2,36,42862,NULL,'TrueNAS: Pool [{#POOLNAME}]: Health','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fr4xiyaefyr2k8',1,'Admin',1672319418,'192.168.64.1',2,36,42863,NULL,'TrueNAS: Pool [{#POOLNAME}]: Usage in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fs4xiypwwsv9cf',1,'Admin',1672319418,'192.168.64.1',2,36,42864,NULL,'TrueNAS: Pool [{#POOLNAME}]: Read rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00ft4xiym3jymdf0',1,'Admin',1672319418,'192.168.64.1',2,36,42865,NULL,'TrueNAS: Pool [{#POOLNAME}]: Read operations rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fu4xiyp92cx5ht',1,'Admin',1672319418,'192.168.64.1',2,36,42866,NULL,'TrueNAS: Pool [{#POOLNAME}]: Total space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fv4xiy0an5oxfs',1,'Admin',1672319418,'192.168.64.1',2,36,42867,NULL,'TrueNAS: Pool [{#POOLNAME}]: Used space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fw4xiylvrf1hhm',1,'Admin',1672319418,'192.168.64.1',2,36,42868,NULL,'TrueNAS: Pool [{#POOLNAME}]: Write rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fx4xiya0s9i7h1',1,'Admin',1672319418,'192.168.64.1',2,36,42869,NULL,'TrueNAS: Pool [{#POOLNAME}]: Write operations rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fy4xiylxnl4ejz',1,'Admin',1672319418,'192.168.64.1',2,36,42870,NULL,'TrueNAS: ZFS volume [{#ZVOL_NAME}]: Available space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00fz4xiybvsuicyz',1,'Admin',1672319418,'192.168.64.1',2,36,42871,NULL,'TrueNAS: ZFS volume [{#ZVOL_NAME}]: Total space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00g04xiyhcxy4zo1',1,'Admin',1672319418,'192.168.64.1',2,36,42872,NULL,'TrueNAS: ZFS volume [{#ZVOL_NAME}]: Used space','clc93sy0x00004xiybc9tr37a',''),('clc93sy0y00g14xiy4igpoa7l',1,'Admin',1672319418,'192.168.64.1',2,36,42873,NULL,'TrueNAS: [{#DEVNAME}]: Disk read rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00g24xiy5hqolwy1',1,'Admin',1672319418,'192.168.64.1',2,36,42874,NULL,'TrueNAS: [{#DEVNAME}]: Disk utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00g34xiyosedw4vo',1,'Admin',1672319418,'192.168.64.1',2,36,42875,NULL,'TrueNAS: [{#DEVNAME}]: Disk write rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00g44xiylldup0eh',1,'Admin',1672319418,'192.168.64.1',2,36,42876,NULL,'TrueNAS: CPU utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00g54xiyl1j8i4ih',1,'Admin',1672319418,'192.168.64.1',2,36,42879,NULL,'VMware: Health state rollup','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00g64xiy2e3c4az2',1,'Admin',1672319418,'192.168.64.1',2,36,42881,NULL,'DB {#DBNAME}: Queries max maintenance time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00g74xiy45c0cgxb',1,'Admin',1672319418,'192.168.64.1',2,36,42882,NULL,'DB {#DBNAME}: Queries slow maintenance count','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00g84xiylwklkq2j',1,'Admin',1672319418,'192.168.64.1',2,36,42883,NULL,'DB {#DBNAME}: Queries sum maintenance time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00g94xiytoftevpz',1,'Admin',1672319418,'192.168.64.1',2,36,42884,NULL,'DB {#DBNAME}: Queries slow query count','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00ga4xiyns8lad42',1,'Admin',1672319418,'192.168.64.1',2,36,42885,NULL,'DB {#DBNAME}: Queries max query time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gb4xiy2esb75l8',1,'Admin',1672319418,'192.168.64.1',2,36,42886,NULL,'DB {#DBNAME}: Queries sum query time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gc4xiypn2l5pnb',1,'Admin',1672319418,'192.168.64.1',2,36,42887,NULL,'DB {#DBNAME}: Queries slow transaction count','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gd4xiyumopxk91',1,'Admin',1672319418,'192.168.64.1',2,36,42888,NULL,'DB {#DBNAME}: Queries max transaction time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00ge4xiy8dg3coa4',1,'Admin',1672319418,'192.168.64.1',2,36,42889,NULL,'DB {#DBNAME}: Queries sum transaction time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gf4xiy08cimfe2',1,'Admin',1672319418,'192.168.64.1',2,36,42890,NULL,'SMART [{#NAME}]: Get disk attributes','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gg4xiy011ybuvk',1,'Admin',1672319418,'192.168.64.1',2,36,42891,NULL,'SMART [{#NAME}]: Bad_Block_Rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gh4xiyabs0ii9q',1,'Admin',1672319418,'192.168.64.1',2,36,42892,NULL,'SMART [{#NAME}]: Exit status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gi4xiyxfnglcy6',1,'Admin',1672319418,'192.168.64.1',2,36,42893,NULL,'SMART [{#NAME}]: Temperature','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gj4xiy9krpl4ff',1,'Admin',1672319418,'192.168.64.1',2,36,42894,NULL,'SMART [{#NAME}]: Serial number','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gk4xiybplvcogz',1,'Admin',1672319418,'192.168.64.1',2,36,42895,NULL,'SMART [{#NAME}]: Percentage used','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gl4xiyan9hjum5',1,'Admin',1672319418,'192.168.64.1',2,36,42896,NULL,'SMART [{#NAME}]: Device model','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gm4xiya9kbcu9o',1,'Admin',1672319418,'192.168.64.1',2,36,42897,NULL,'SMART [{#NAME}]: Media errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gn4xiyq2mgb46f',1,'Admin',1672319418,'192.168.64.1',2,36,42898,NULL,'SMART [{#NAME}]: Power on hours','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00go4xiyh8uyz57x',1,'Admin',1672319418,'192.168.64.1',2,36,42899,NULL,'SMART [{#NAME}]: Smartctl error','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gp4xiyp1cyk0ow',1,'Admin',1672319418,'192.168.64.1',2,36,42900,NULL,'SMART [{#NAME}]: Power_Cycle_Count','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gq4xiyo5jhvpor',1,'Admin',1672319418,'192.168.64.1',2,36,42901,NULL,'SMART [{#NAME}]: Critical warning','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gr4xiyu04emlcg',1,'Admin',1672319418,'192.168.64.1',2,36,42902,NULL,'SMART [{#NAME}]: Start_Stop_Count','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gs4xiyc0aer6x4',1,'Admin',1672319418,'192.168.64.1',2,36,42903,NULL,'SMART [{#NAME}]: Spin_Up_Time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gt4xiy1qidbcps',1,'Admin',1672319418,'192.168.64.1',2,36,42904,NULL,'SMART [{#NAME}]: Seek_Error_Rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gu4xiy4101lo70',1,'Admin',1672319418,'192.168.64.1',2,36,42905,NULL,'SMART [{#NAME}]: Reported_Uncorrect','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gv4xiykicwp3q9',1,'Admin',1672319418,'192.168.64.1',2,36,42906,NULL,'SMART [{#NAME}]: Reallocated_Sector_Ct','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gw4xiycb3zlnv7',1,'Admin',1672319418,'192.168.64.1',2,36,42907,NULL,'SMART [{#NAME}]: Raw_Read_Error_Rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gx4xiysqnmreim',1,'Admin',1672319418,'192.168.64.1',2,36,42908,NULL,'SMART [{#NAME}]: Program_Fail_Count_Chip','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gy4xiydx7s6dft',1,'Admin',1672319418,'192.168.64.1',2,36,42909,NULL,'SMART [{#NAME}]: Self-test passed','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00gz4xiyuw47fkx9',1,'Admin',1672319418,'192.168.64.1',2,36,42910,NULL,'SMART [{#NAME}]: Get disk attributes','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00h04xiyn3ccsbhd',1,'Admin',1672319418,'192.168.64.1',2,36,42911,NULL,'SMART [{#NAME}]: Bad_Block_Rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00h14xiyyi757rng',1,'Admin',1672319418,'192.168.64.1',2,36,42912,NULL,'SMART [{#NAME}]: Exit status','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00h24xiynxsfldnp',1,'Admin',1672319418,'192.168.64.1',2,36,42913,NULL,'SMART [{#NAME}]: Temperature','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00h34xiyoybyrya5',1,'Admin',1672319418,'192.168.64.1',2,36,42914,NULL,'SMART [{#NAME}]: Serial number','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00h44xiyip550y7x',1,'Admin',1672319418,'192.168.64.1',2,36,42915,NULL,'SMART [{#NAME}]: Percentage used','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00h54xiy958dy1jo',1,'Admin',1672319418,'192.168.64.1',2,36,42916,NULL,'SMART [{#NAME}]: Device model','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00h64xiyxau3utfi',1,'Admin',1672319418,'192.168.64.1',2,36,42917,NULL,'SMART [{#NAME}]: Media errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00h74xiy7d1nspsd',1,'Admin',1672319418,'192.168.64.1',2,36,42918,NULL,'SMART [{#NAME}]: Power on hours','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00h84xiyoif68ffp',1,'Admin',1672319418,'192.168.64.1',2,36,42919,NULL,'SMART [{#NAME}]: Smartctl error','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00h94xiyfnz9yw8d',1,'Admin',1672319418,'192.168.64.1',2,36,42920,NULL,'SMART [{#NAME}]: Power_Cycle_Count','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00ha4xiyozmaxl64',1,'Admin',1672319418,'192.168.64.1',2,36,42921,NULL,'SMART [{#NAME}]: Critical warning','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hb4xiytj8773bi',1,'Admin',1672319418,'192.168.64.1',2,36,42922,NULL,'SMART [{#NAME}]: Start_Stop_Count','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hc4xiyxkz7e4oq',1,'Admin',1672319418,'192.168.64.1',2,36,42923,NULL,'SMART [{#NAME}]: Spin_Up_Time','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hd4xiyn9chbrjg',1,'Admin',1672319418,'192.168.64.1',2,36,42924,NULL,'SMART [{#NAME}]: Seek_Error_Rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00he4xiyofyp9laf',1,'Admin',1672319418,'192.168.64.1',2,36,42925,NULL,'SMART [{#NAME}]: Reported_Uncorrect','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hf4xiy7iyx4fvy',1,'Admin',1672319418,'192.168.64.1',2,36,42926,NULL,'SMART [{#NAME}]: Reallocated_Sector_Ct','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hg4xiyaus20qfp',1,'Admin',1672319418,'192.168.64.1',2,36,42927,NULL,'SMART [{#NAME}]: Raw_Read_Error_Rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hh4xiyv6dlsblo',1,'Admin',1672319418,'192.168.64.1',2,36,42928,NULL,'SMART [{#NAME}]: Program_Fail_Count_Chip','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hi4xiyphi3wl6t',1,'Admin',1672319418,'192.168.64.1',2,36,42929,NULL,'SMART [{#NAME}]: Self-test passed','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hj4xiy6mh3mict',1,'Admin',1672319418,'192.168.64.1',2,36,44083,NULL,'Proxy [{#PROXY.NAME}]: Certificate','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hk4xiylzk6nel5',1,'Admin',1672319418,'192.168.64.1',2,36,44084,NULL,'Proxy [{#PROXY.NAME}]: Compatibility','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hl4xiypwlhwhd7',1,'Admin',1672319418,'192.168.64.1',2,36,44085,NULL,'Proxy [{#PROXY.NAME}]: Compression','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hm4xiyeh014qpu',1,'Admin',1672319418,'192.168.64.1',2,36,44086,NULL,'Proxy [{#PROXY.NAME}]: Host count','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hn4xiyq59cp1ra',1,'Admin',1672319418,'192.168.64.1',2,36,44087,NULL,'Proxy [{#PROXY.NAME}]: Item count','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00ho4xiy9zp2c79f',1,'Admin',1672319418,'192.168.64.1',2,36,44088,NULL,'Proxy [{#PROXY.NAME}]: Last seen, in seconds','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hp4xiy7o62qp3m',1,'Admin',1672319418,'192.168.64.1',2,36,44089,NULL,'Proxy [{#PROXY.NAME}]: Mode','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hq4xiy36dzzaqo',1,'Admin',1672319418,'192.168.64.1',2,36,44090,NULL,'Proxy [{#PROXY.NAME}]: PSK','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hr4xiy1oyb38jt',1,'Admin',1672319418,'192.168.64.1',2,36,44091,NULL,'Proxy [{#PROXY.NAME}]: Required VPS','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hs4xiyrsts3oid',1,'Admin',1672319418,'192.168.64.1',2,36,44092,NULL,'Proxy [{#PROXY.NAME}]: Unencrypted','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00ht4xiy3bt1240v',1,'Admin',1672319418,'192.168.64.1',2,36,44093,NULL,'Proxy [{#PROXY.NAME}]: Version','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hu4xiynaxl5b4f',1,'Admin',1672319418,'192.168.64.1',2,36,44361,NULL,'RabbitMQ: CPU utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hv4xiy64oeluyr',1,'Admin',1672319418,'192.168.64.1',2,36,44362,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Get data','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hw4xiyxxkbndzo',1,'Admin',1672319418,'192.168.64.1',2,36,44363,NULL,'RabbitMQ: Get process data','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hx4xiyenpujeou',1,'Admin',1672319418,'192.168.64.1',2,36,44364,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Get data','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hy4xiy61gyroup',1,'Admin',1672319418,'192.168.64.1',2,36,44365,NULL,'RabbitMQ: Number of running processes','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00hz4xiyhrpnp1wy',1,'Admin',1672319418,'192.168.64.1',2,36,44366,NULL,'RabbitMQ: Memory usage, %','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00i04xiyk1dnzylr',1,'Admin',1672319418,'192.168.64.1',2,36,44367,NULL,'RabbitMQ: Memory usage (rss)','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00i14xiysken2qfm',1,'Admin',1672319418,'192.168.64.1',2,36,44368,NULL,'RabbitMQ: Memory usage (vsize)','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00i24xiytaje263j',1,'Admin',1672319418,'192.168.64.1',2,36,44369,NULL,'RabbitMQ: Exchange [{#VHOST}][{#EXCHANGE}][{#TYPE}]: Get data','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00i34xiyo9znk7zo',1,'Admin',1672319418,'192.168.64.1',2,36,44370,NULL,'RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Get data','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00i44xiyvuwsczbs',1,'Admin',1672319418,'192.168.64.1',2,36,44378,NULL,'{#FSLABEL}({#FSNAME}): Get filesystem data','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00i54xiy5dvr3r1y',1,'Admin',1672319418,'192.168.64.1',2,36,44380,NULL,'{#FSLABEL}({#FSNAME}): Get filesystem data','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00i64xiy7r91119y',1,'Admin',1672319418,'192.168.64.1',2,36,44422,NULL,'Edge [{#NAME}]: Raw data','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00i74xiy26j9bvai',1,'Admin',1672319418,'192.168.64.1',2,36,44423,NULL,'Gateway [{#NAME}]: Raw data','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00i84xiyue3xvnrc',1,'Admin',1672319418,'192.168.64.1',2,36,44424,NULL,'Link [{#NAME}]:[{#IP}]: Raw data','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00i94xiygy925zad',1,'Admin',1672319418,'192.168.64.1',2,36,44425,NULL,'Path [{#NAME}]:[{#SOURCE} => {#DESTINATION}]: Raw data','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00ia4xiygpnb2ael',1,'Admin',1672319418,'192.168.64.1',2,36,44426,NULL,'SDWAN Peer [{#NAME}]:[{#TYPE}]: Raw data','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00ib4xiyxs9k5lvx',1,'Admin',1672319418,'192.168.64.1',2,36,44451,NULL,'{#FSNAME}: Get filesystem data','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00ic4xiynqx6w5ja',1,'Admin',1672319418,'192.168.64.1',2,36,44452,NULL,'{#FSNAME}: Filesystem is read-only','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00id4xiyreludgl1',1,'Admin',1672319418,'192.168.64.1',2,36,44454,NULL,'{#FSLABEL}({#FSNAME}): Get filesystem data','clc93sy0x00004xiybc9tr37a',''),('clc93sy0z00ie4xiyoxhar0s6',1,'Admin',1672319418,'192.168.64.1',2,36,44456,NULL,'{#FSLABEL}({#FSNAME}): Get filesystem data','clc93sy0x00004xiybc9tr37a',''),('clc93sy1f00if4xiytc2dqev3',1,'Admin',1672319418,'192.168.64.1',2,37,10333,NULL,'{#HV.UUID}','clc93sy0x00004xiybc9tr37a',''),('clc93sy1f00ig4xiyp26pu993',1,'Admin',1672319418,'192.168.64.1',2,37,10334,NULL,'{#VM.UUID}','clc93sy0x00004xiybc9tr37a',''),('clc93sy1f00ih4xiya0q6i6kc',1,'Admin',1672319418,'192.168.64.1',2,37,10367,NULL,'{#HV.UUID}','clc93sy0x00004xiybc9tr37a',''),('clc93sy1f00ii4xiyz305ml2i',1,'Admin',1672319418,'192.168.64.1',2,37,10368,NULL,'{#VM.DNS}','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ij4xiyks31c2do',1,'Admin',1672319419,'192.168.64.1',2,15,22996,NULL,'Maximum number of processes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ik4xiyl225bod3',1,'Admin',1672319419,'192.168.64.1',2,15,22997,NULL,'Number of running processes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200il4xiyzuayy9u0',1,'Admin',1672319419,'192.168.64.1',2,15,22998,NULL,'Number of processes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200im4xiyy6siw7ml',1,'Admin',1672319419,'192.168.64.1',2,15,22999,NULL,'Host boot time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200in4xiyzv4fr3l0',1,'Admin',1672319419,'192.168.64.1',2,15,23000,NULL,'Interrupts per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200io4xiy6zgjy10v',1,'Admin',1672319419,'192.168.64.1',2,15,23001,NULL,'Processor load (15 min average per core)','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ip4xiypeotsu3a',1,'Admin',1672319419,'192.168.64.1',2,15,23002,NULL,'Processor load (1 min average per core)','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200iq4xiyk18ax6cz',1,'Admin',1672319419,'192.168.64.1',2,15,23003,NULL,'Processor load (5 min average per core)','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ir4xiydoetdpgt',1,'Admin',1672319419,'192.168.64.1',2,15,23004,NULL,'Context switches per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200is4xiypri3b4jb',1,'Admin',1672319419,'192.168.64.1',2,15,23005,NULL,'CPU idle time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200it4xiyuyu7501l',1,'Admin',1672319419,'192.168.64.1',2,15,23007,NULL,'CPU iowait time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200iu4xiy040d0ye2',1,'Admin',1672319419,'192.168.64.1',2,15,23011,NULL,'CPU system time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200iv4xiy29dz4gb9',1,'Admin',1672319419,'192.168.64.1',2,15,23012,NULL,'CPU user time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200iw4xiy7nojz29q',1,'Admin',1672319419,'192.168.64.1',2,15,23013,NULL,'Host name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ix4xiyj1v7b0pp',1,'Admin',1672319419,'192.168.64.1',2,15,23014,NULL,'Host local time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200iy4xiyjlxeuw0u',1,'Admin',1672319419,'192.168.64.1',2,15,23015,NULL,'Free swap space','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200iz4xiydbrkv4y1',1,'Admin',1672319419,'192.168.64.1',2,15,23016,NULL,'Free swap space in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200j04xiy3h8820q0',1,'Admin',1672319419,'192.168.64.1',2,15,23017,NULL,'Total swap space','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200j14xiyl6awwwq6',1,'Admin',1672319419,'192.168.64.1',2,15,23018,NULL,'System information','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200j24xiy5l1xcmw8',1,'Admin',1672319419,'192.168.64.1',2,15,23019,NULL,'System uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200j34xiy0zqfjtra',1,'Admin',1672319419,'192.168.64.1',2,15,23020,NULL,'Number of logged in users','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200j44xiyfeehm54p',1,'Admin',1672319419,'192.168.64.1',2,15,23021,NULL,'Checksum of /etc/passwd','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200j54xiymgq4e9eb',1,'Admin',1672319419,'192.168.64.1',2,15,23022,NULL,'Available memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200j64xiyqbvog7id',1,'Admin',1672319419,'192.168.64.1',2,15,23023,NULL,'Total memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200j74xiymly1uwag',1,'Admin',1672319419,'192.168.64.1',2,15,23652,NULL,'SMTP service is running','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200j84xiyst88c9nh',1,'Admin',1672319419,'192.168.64.1',2,15,23653,NULL,'SSH service is running','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200j94xiy53tgujx8',1,'Admin',1672319419,'192.168.64.1',2,15,23654,NULL,'Telnet service is running','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ja4xiybus4kjgc',1,'Admin',1672319419,'192.168.64.1',2,15,27967,NULL,'Firmware version','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jb4xiybrcd8hzh',1,'Admin',1672319419,'192.168.64.1',2,15,27968,NULL,'Hardware version(revision)','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jc4xiykuu22aa2',1,'Admin',1672319419,'192.168.64.1',2,15,27970,NULL,'Hardware serial number','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jd4xiylvg7xnw2',1,'Admin',1672319419,'192.168.64.1',2,15,27971,NULL,'Hardware model name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200je4xiykv22s8iu',1,'Admin',1672319419,'192.168.64.1',2,15,27972,NULL,'Used memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jf4xiymh6kd5st',1,'Admin',1672319419,'192.168.64.1',2,15,27973,NULL,'Total memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jg4xiyb0w0skqd',1,'Admin',1672319419,'192.168.64.1',2,15,27975,NULL,'CPU utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jh4xiy2vofp5j1',1,'Admin',1672319419,'192.168.64.1',2,15,27997,NULL,'Hardware version(revision)','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ji4xiywyn38udy',1,'Admin',1672319419,'192.168.64.1',2,15,27998,NULL,'Firmware version','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jj4xiyik6ica28',1,'Admin',1672319419,'192.168.64.1',2,15,27999,NULL,'Hardware serial number','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jk4xiycabvsq69',1,'Admin',1672319419,'192.168.64.1',2,15,28000,NULL,'Hardware model name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jl4xiysaq8gr5w',1,'Admin',1672319419,'192.168.64.1',2,15,28026,NULL,'Hardware model name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jm4xiyqp356jgy',1,'Admin',1672319419,'192.168.64.1',2,15,28027,NULL,'Firmware version','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jn4xiy3y7hv4sj',1,'Admin',1672319419,'192.168.64.1',2,15,28031,NULL,'CPU utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jo4xiy8knrsjt9',1,'Admin',1672319419,'192.168.64.1',2,15,28539,NULL,'Remote Zabbix server: Zabbix stats','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jp4xiy6ie7u1po',1,'Admin',1672319419,'192.168.64.1',2,15,28540,NULL,'Remote Zabbix server: Zabbix stats queue','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jq4xiyjr1yud5y',1,'Admin',1672319419,'192.168.64.1',2,15,28541,NULL,'Remote Zabbix server: Zabbix stats queue over 10m','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jr4xiyvdp9b6pg',1,'Admin',1672319419,'192.168.64.1',2,15,28542,NULL,'Remote Zabbix server: History index cache, % used','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200js4xiyemh9bs0l',1,'Admin',1672319419,'192.168.64.1',2,15,28543,NULL,'Remote Zabbix server: Configuration cache, % used','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jt4xiyarpnev9x',1,'Admin',1672319419,'192.168.64.1',2,15,28544,NULL,'Remote Zabbix server: Value cache, % used','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ju4xiy19bx7uo6',1,'Admin',1672319419,'192.168.64.1',2,15,28545,NULL,'Remote Zabbix server: Value cache hits','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jv4xiy6uycgekc',1,'Admin',1672319419,'192.168.64.1',2,15,28546,NULL,'Remote Zabbix server: Value cache misses','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jw4xiy2exy7ctm',1,'Admin',1672319419,'192.168.64.1',2,15,28547,NULL,'Remote Zabbix server: Value cache operating mode','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jx4xiyij1efb09',1,'Admin',1672319419,'192.168.64.1',2,15,28548,NULL,'Remote Zabbix server: VMware cache, % used','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jy4xiya3sdx3xe',1,'Admin',1672319419,'192.168.64.1',2,15,28549,NULL,'Remote Zabbix server: History write cache, % used','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200jz4xiyrh5iwryw',1,'Admin',1672319419,'192.168.64.1',2,15,28550,NULL,'Remote Zabbix server: Number of processed values per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200k04xiyqn1t9s7d',1,'Admin',1672319419,'192.168.64.1',2,15,28551,NULL,'Remote Zabbix server: Trend write cache, % used','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200k14xiy2atvfr1s',1,'Admin',1672319419,'192.168.64.1',2,15,28552,NULL,'Remote Zabbix server: Utilization of unreachable poller data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200k24xiyatkxd6yw',1,'Admin',1672319419,'192.168.64.1',2,15,28553,NULL,'Remote Zabbix server: Number of processed numeric (float) values per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200k34xiybjs7rjvs',1,'Admin',1672319419,'192.168.64.1',2,15,28554,NULL,'Remote Zabbix server: Number of processed log values per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200k44xiya7asyp38',1,'Admin',1672319419,'192.168.64.1',2,15,28555,NULL,'Remote Zabbix server: Number of processed not supported values per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200k54xiyipv7fm79',1,'Admin',1672319419,'192.168.64.1',2,15,28556,NULL,'Remote Zabbix server: Number of processed character values per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200k64xiy3kgi3ev4',1,'Admin',1672319419,'192.168.64.1',2,15,28557,NULL,'Remote Zabbix server: Number of processed text values per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200k74xiyjl36eogz',1,'Admin',1672319419,'192.168.64.1',2,15,28558,NULL,'Remote Zabbix server: Number of processed numeric (unsigned) values per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200k84xiyh8j6g50q',1,'Admin',1672319419,'192.168.64.1',2,15,28559,NULL,'Remote Zabbix server: Utilization of vmware data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200k94xiyd93gsg13',1,'Admin',1672319419,'192.168.64.1',2,15,28560,NULL,'Remote Zabbix server: Preprocessing queue','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ka4xiyyqxp0jnf',1,'Admin',1672319419,'192.168.64.1',2,15,28561,NULL,'Remote Zabbix server: Utilization of alerter internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200kb4xiyg8gctnwv',1,'Admin',1672319419,'192.168.64.1',2,15,28562,NULL,'Remote Zabbix server: Utilization of ipmi manager internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200kc4xiy3h0zdp4c',1,'Admin',1672319419,'192.168.64.1',2,15,28563,NULL,'Remote Zabbix server: Utilization of alert manager internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200kd4xiy85tctn4q',1,'Admin',1672319419,'192.168.64.1',2,15,28564,NULL,'Remote Zabbix server: Utilization of configuration syncer internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ke4xiyih25cax1',1,'Admin',1672319419,'192.168.64.1',2,15,28565,NULL,'Remote Zabbix server: Utilization of discoverer data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200kf4xiyinpavs38',1,'Admin',1672319419,'192.168.64.1',2,15,28566,NULL,'Remote Zabbix server: Utilization of escalator internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200kg4xiylizjj54b',1,'Admin',1672319419,'192.168.64.1',2,15,28567,NULL,'Remote Zabbix server: Utilization of history syncer internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200kh4xiyfeol4z1e',1,'Admin',1672319419,'192.168.64.1',2,15,28568,NULL,'Remote Zabbix server: Utilization of housekeeper internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ki4xiyipb9r0we',1,'Admin',1672319419,'192.168.64.1',2,15,28569,NULL,'Remote Zabbix server: Utilization of http poller data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200kj4xiyqk4cikta',1,'Admin',1672319419,'192.168.64.1',2,15,28570,NULL,'Remote Zabbix server: Utilization of icmp pinger data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200kk4xiypppf1t8b',1,'Admin',1672319419,'192.168.64.1',2,15,28571,NULL,'Remote Zabbix server: Utilization of ipmi poller data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200kl4xiyllbdt6g6',1,'Admin',1672319419,'192.168.64.1',2,15,28572,NULL,'Remote Zabbix server: Utilization of timer internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200km4xiyv5ptx77z',1,'Admin',1672319419,'192.168.64.1',2,15,28573,NULL,'Remote Zabbix server: Utilization of java poller data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200kn4xiywrajz924',1,'Admin',1672319419,'192.168.64.1',2,15,28574,NULL,'Remote Zabbix server: Utilization of poller data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ko4xiys8gyv3dv',1,'Admin',1672319419,'192.168.64.1',2,15,28575,NULL,'Remote Zabbix server: Utilization of preprocessing manager internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200kp4xiy1n0l4dio',1,'Admin',1672319419,'192.168.64.1',2,15,28576,NULL,'Remote Zabbix server: Utilization of preprocessing worker internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200kq4xiyxgcpnuv6',1,'Admin',1672319419,'192.168.64.1',2,15,28577,NULL,'Remote Zabbix server: Utilization of proxy poller data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200kr4xiy4jd0i572',1,'Admin',1672319419,'192.168.64.1',2,15,28578,NULL,'Remote Zabbix server: Utilization of self-monitoring internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ks4xiyfza2gn86',1,'Admin',1672319419,'192.168.64.1',2,15,28579,NULL,'Remote Zabbix server: Utilization of snmp trapper data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200kt4xiylhd4ac49',1,'Admin',1672319419,'192.168.64.1',2,15,28580,NULL,'Remote Zabbix server: Utilization of task manager internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ku4xiy4014e5s5',1,'Admin',1672319419,'192.168.64.1',2,15,28581,NULL,'Remote Zabbix server: Utilization of trapper data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200kv4xiyei2wz1hw',1,'Admin',1672319419,'192.168.64.1',2,15,28582,NULL,'Remote Zabbix server: Utilization of LLD manager internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200kw4xiy5rcacijl',1,'Admin',1672319419,'192.168.64.1',2,15,28583,NULL,'Remote Zabbix server: Utilization of LLD worker internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200kx4xiyuehjs8qd',1,'Admin',1672319419,'192.168.64.1',2,15,28584,NULL,'Remote Zabbix server: LLD queue','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ky4xiyncf4sjmi',1,'Admin',1672319419,'192.168.64.1',2,15,28585,NULL,'Remote Zabbix proxy: Zabbix stats','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200kz4xiyjhwm7s7g',1,'Admin',1672319419,'192.168.64.1',2,15,28586,NULL,'Remote Zabbix proxy: Zabbix stats queue','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200l04xiyqynzfimq',1,'Admin',1672319419,'192.168.64.1',2,15,28587,NULL,'Remote Zabbix proxy: Zabbix stats queue over 10m','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200l14xiy54zv7izo',1,'Admin',1672319419,'192.168.64.1',2,15,28588,NULL,'Remote Zabbix proxy: Utilization of vmware data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200l24xiyekxcp0gt',1,'Admin',1672319419,'192.168.64.1',2,15,28589,NULL,'Remote Zabbix proxy: Number of processed numeric (unsigned) values per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200l34xiybu32mr4y',1,'Admin',1672319419,'192.168.64.1',2,15,28590,NULL,'Remote Zabbix proxy: Number of processed text values per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200l44xiy4qvusvgm',1,'Admin',1672319419,'192.168.64.1',2,15,28591,NULL,'Remote Zabbix proxy: Number of processed character values per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200l54xiyoq5wi1rc',1,'Admin',1672319419,'192.168.64.1',2,15,28592,NULL,'Remote Zabbix proxy: Number of processed not supported values per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200l64xiyyzy81kmy',1,'Admin',1672319419,'192.168.64.1',2,15,28593,NULL,'Remote Zabbix proxy: Number of processed log values per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200l74xiyk5liey4l',1,'Admin',1672319419,'192.168.64.1',2,15,28594,NULL,'Remote Zabbix proxy: Number of processed numeric (float) values per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200l84xiyyk5o5t8g',1,'Admin',1672319419,'192.168.64.1',2,15,28595,NULL,'Remote Zabbix proxy: Number of processed values per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200l94xiyjoqzlku3',1,'Admin',1672319419,'192.168.64.1',2,15,28596,NULL,'Remote Zabbix proxy: History index cache, % used','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200la4xiygyllwge8',1,'Admin',1672319419,'192.168.64.1',2,15,28597,NULL,'Remote Zabbix proxy: History write cache, % used','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200lb4xiyk13kdttk',1,'Admin',1672319419,'192.168.64.1',2,15,28598,NULL,'Remote Zabbix proxy: VMware cache, % used','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200lc4xiyth6qurdk',1,'Admin',1672319419,'192.168.64.1',2,15,28599,NULL,'Remote Zabbix proxy: Configuration cache, % used','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ld4xiyf0ra2z0f',1,'Admin',1672319419,'192.168.64.1',2,15,28600,NULL,'Remote Zabbix proxy: Utilization of configuration syncer internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200le4xiywnh34rd8',1,'Admin',1672319419,'192.168.64.1',2,15,28601,NULL,'Remote Zabbix proxy: Utilization of data sender internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200lf4xiyr986j34y',1,'Admin',1672319419,'192.168.64.1',2,15,28602,NULL,'Remote Zabbix proxy: Utilization of trapper data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200lg4xiy1xvixixm',1,'Admin',1672319419,'192.168.64.1',2,15,28603,NULL,'Remote Zabbix proxy: Utilization of task manager internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200lh4xiy4vldjhm0',1,'Admin',1672319419,'192.168.64.1',2,15,28604,NULL,'Remote Zabbix proxy: Utilization of snmp trapper data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200li4xiyq8tkn8nn',1,'Admin',1672319419,'192.168.64.1',2,15,28605,NULL,'Remote Zabbix proxy: Utilization of self-monitoring internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200lj4xiym4lzpx6q',1,'Admin',1672319419,'192.168.64.1',2,15,28606,NULL,'Remote Zabbix proxy: Utilization of poller data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200lk4xiyu6njpwz0',1,'Admin',1672319419,'192.168.64.1',2,15,28607,NULL,'Remote Zabbix proxy: Utilization of java poller data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ll4xiysqpf5nzn',1,'Admin',1672319419,'192.168.64.1',2,15,28608,NULL,'Remote Zabbix proxy: Utilization of ipmi poller data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200lm4xiyyqfospli',1,'Admin',1672319419,'192.168.64.1',2,15,28609,NULL,'Remote Zabbix proxy: Utilization of ipmi manager internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ln4xiylq7o5jhh',1,'Admin',1672319419,'192.168.64.1',2,15,28610,NULL,'Remote Zabbix proxy: Utilization of icmp pinger data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200lo4xiys6nfja49',1,'Admin',1672319419,'192.168.64.1',2,15,28611,NULL,'Remote Zabbix proxy: Utilization of http poller data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200lp4xiybrw3437s',1,'Admin',1672319419,'192.168.64.1',2,15,28612,NULL,'Remote Zabbix proxy: Utilization of housekeeper internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200lq4xiydfowueyf',1,'Admin',1672319419,'192.168.64.1',2,15,28613,NULL,'Remote Zabbix proxy: Utilization of history syncer internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200lr4xiyzg2we7tb',1,'Admin',1672319419,'192.168.64.1',2,15,28615,NULL,'Remote Zabbix proxy: Utilization of discoverer data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ls4xiyfiemr9vi',1,'Admin',1672319419,'192.168.64.1',2,15,28616,NULL,'Remote Zabbix proxy: Utilization of unreachable poller data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200lt4xiytxw69tpq',1,'Admin',1672319419,'192.168.64.1',2,15,29454,NULL,'CPU utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200lu4xiyen5yc4jn',1,'Admin',1672319419,'192.168.64.1',2,15,29455,NULL,'CPU interrupt time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200lv4xiy2utyb0t9',1,'Admin',1672319419,'192.168.64.1',2,15,29456,NULL,'Context switches per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200lw4xiyidf6p6f9',1,'Admin',1672319419,'192.168.64.1',2,15,29457,NULL,'CPU privileged time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200lx4xiy7jsvlwk5',1,'Admin',1672319419,'192.168.64.1',2,15,29458,NULL,'CPU user time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ly4xiyievh4wj5',1,'Admin',1672319419,'192.168.64.1',2,15,29459,NULL,'CPU queue length','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200lz4xiy3zbpsg2v',1,'Admin',1672319419,'192.168.64.1',2,15,29460,NULL,'Used memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200m04xiy95449943',1,'Admin',1672319419,'192.168.64.1',2,15,29461,NULL,'Total memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200m14xiyra8j751v',1,'Admin',1672319419,'192.168.64.1',2,15,29462,NULL,'Memory utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200m24xiysamtankp',1,'Admin',1672319419,'192.168.64.1',2,15,29463,NULL,'Cache bytes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200m34xiyukj9n3t7',1,'Admin',1672319419,'192.168.64.1',2,15,29466,NULL,'Total swap space','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200m44xiym3rxp3ca',1,'Admin',1672319419,'192.168.64.1',2,15,29467,NULL,'Free system page table entries','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200m54xiypt6ra6d6',1,'Admin',1672319419,'192.168.64.1',2,15,29468,NULL,'Memory page faults per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200m64xiytel2jdh2',1,'Admin',1672319419,'192.168.64.1',2,15,29469,NULL,'Memory pages per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200m74xiyogp0zj6v',1,'Admin',1672319419,'192.168.64.1',2,15,29470,NULL,'Memory pool non-paged','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200m84xiyobme5z1j',1,'Admin',1672319419,'192.168.64.1',2,15,29472,NULL,'Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200m94xiyzoffuhxo',1,'Admin',1672319419,'192.168.64.1',2,15,29473,NULL,'System local time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ma4xiyeulyndkq',1,'Admin',1672319419,'192.168.64.1',2,15,29474,NULL,'System name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200mb4xiyvqis315v',1,'Admin',1672319419,'192.168.64.1',2,15,29475,NULL,'System description','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200mc4xiyibv50gww',1,'Admin',1672319419,'192.168.64.1',2,15,29476,NULL,'Number of processes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200md4xiyylra4171',1,'Admin',1672319419,'192.168.64.1',2,15,29477,NULL,'Number of threads','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200me4xiypqdeiv2n',1,'Admin',1672319419,'192.168.64.1',2,15,29478,NULL,'Operating system architecture','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200mf4xiytzlq7ip9',1,'Admin',1672319419,'192.168.64.1',2,15,29653,NULL,'RabbitMQ: Get node overview','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200mg4xiy0xhjn69n',1,'Admin',1672319419,'192.168.64.1',2,15,29654,NULL,'RabbitMQ: Get nodes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200mh4xiy5q9mj6yb',1,'Admin',1672319419,'192.168.64.1',2,15,29655,NULL,'RabbitMQ: Service ping','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200mi4xiy7u6p5vqx',1,'Admin',1672319419,'192.168.64.1',2,15,29660,NULL,'RabbitMQ: Service response time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200mj4xiy9mwws7c6',1,'Admin',1672319419,'192.168.64.1',2,15,29661,NULL,'RabbitMQ: Get queues','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200mk4xiyulhtkzel',1,'Admin',1672319419,'192.168.64.1',2,15,29687,NULL,'RabbitMQ: Memory used','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ml4xiyd3lyvvyi',1,'Admin',1672319419,'192.168.64.1',2,15,29688,NULL,'RabbitMQ: Disk free alarm','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200mm4xiyp1wxkkcx',1,'Admin',1672319419,'192.168.64.1',2,15,29691,NULL,'RabbitMQ: Used file descriptors','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200mn4xiyi40ogl6f',1,'Admin',1672319419,'192.168.64.1',2,15,29692,NULL,'RabbitMQ: Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200mo4xiywgn7n7t0',1,'Admin',1672319419,'192.168.64.1',2,15,29693,NULL,'RabbitMQ: Memory alarm','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200mp4xiyqss5fyvi',1,'Admin',1672319419,'192.168.64.1',2,15,29694,NULL,'RabbitMQ: Memory limit','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200mq4xiykkwqgvzz',1,'Admin',1672319419,'192.168.64.1',2,15,29695,NULL,'RabbitMQ: Is running','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200mr4xiyxn9kri85',1,'Admin',1672319419,'192.168.64.1',2,15,29696,NULL,'RabbitMQ: Number of network partitions','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ms4xiy5qyhk1hc',1,'Admin',1672319419,'192.168.64.1',2,15,29697,NULL,'RabbitMQ: Sockets available','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200mt4xiylig3gk7p',1,'Admin',1672319419,'192.168.64.1',2,15,29698,NULL,'RabbitMQ: Free disk space','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200mu4xiyxqdi1e67',1,'Admin',1672319419,'192.168.64.1',2,15,29699,NULL,'RabbitMQ: Runtime run queue','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200mv4xiyz9p01c66',1,'Admin',1672319419,'192.168.64.1',2,15,29700,NULL,'RabbitMQ: Disk free limit','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200mw4xiyh1ybdgxc',1,'Admin',1672319419,'192.168.64.1',2,15,29701,NULL,'RabbitMQ: Sockets used','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200mx4xiy2kpm4hno',1,'Admin',1672319419,'192.168.64.1',2,15,29738,NULL,'RabbitMQ: Get overview','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200my4xiy0qebzg3y',1,'Admin',1672319419,'192.168.64.1',2,15,29739,NULL,'RabbitMQ: Get exchanges','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200mz4xiyzir8fxsz',1,'Admin',1672319419,'192.168.64.1',2,15,29741,NULL,'RabbitMQ: Get nodes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200n04xiy2ei69uqc',1,'Admin',1672319419,'192.168.64.1',2,15,29742,NULL,'RabbitMQ: Service ping','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200n14xiyof26z33i',1,'Admin',1672319419,'192.168.64.1',2,15,29743,NULL,'RabbitMQ: Service response time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200n24xiykt3a0rc7',1,'Admin',1672319419,'192.168.64.1',2,15,29745,NULL,'RabbitMQ: Get queues','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200n34xiyp2q780ol',1,'Admin',1672319419,'192.168.64.1',2,15,29746,NULL,'RabbitMQ: Messages returned redeliver','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200n44xiy6vho3jy6',1,'Admin',1672319419,'192.168.64.1',2,15,29747,NULL,'RabbitMQ: Messages returned unroutable per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200n54xiyv1vnybzq',1,'Admin',1672319419,'192.168.64.1',2,15,29748,NULL,'RabbitMQ: Messages returned unroutable','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200n64xiyyiljvn4b',1,'Admin',1672319419,'192.168.64.1',2,15,29749,NULL,'RabbitMQ: Messages publish_out per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200n74xiyqdil2hok',1,'Admin',1672319419,'192.168.64.1',2,15,29750,NULL,'RabbitMQ: Messages publish_out','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200n84xiyvxa18h0i',1,'Admin',1672319419,'192.168.64.1',2,15,29751,NULL,'RabbitMQ: Messages publish_in per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200n94xiyoxwcc6kj',1,'Admin',1672319419,'192.168.64.1',2,15,29752,NULL,'RabbitMQ: Messages publish_in','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200na4xiyms7u5ho3',1,'Admin',1672319419,'192.168.64.1',2,15,29753,NULL,'RabbitMQ: Messages published per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200nb4xiy6waxpeev',1,'Admin',1672319419,'192.168.64.1',2,15,29754,NULL,'RabbitMQ: Messages published','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200nc4xiyq7mn6pse',1,'Admin',1672319419,'192.168.64.1',2,15,29755,NULL,'RabbitMQ: Messages delivered per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200nd4xiyvfrujmok',1,'Admin',1672319419,'192.168.64.1',2,15,29756,NULL,'RabbitMQ: Messages delivered','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ne4xiypxzorhpf',1,'Admin',1672319419,'192.168.64.1',2,15,29757,NULL,'RabbitMQ: Messages confirmed per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200nf4xiy85cnyloo',1,'Admin',1672319419,'192.168.64.1',2,15,29758,NULL,'RabbitMQ: Messages confirmed','clc93sy0x00004xiybc9tr37a',''),('clc93sy5200ng4xiykd6i474o',1,'Admin',1672319419,'192.168.64.1',2,15,29759,NULL,'RabbitMQ: Messages acknowledged per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300nh4xiyxhplb2op',1,'Admin',1672319419,'192.168.64.1',2,15,29760,NULL,'RabbitMQ: Messages acknowledged','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ni4xiysu64kkbd',1,'Admin',1672319419,'192.168.64.1',2,15,29761,NULL,'RabbitMQ: Messages unacknowledged','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300nj4xiya0v0dkcv',1,'Admin',1672319419,'192.168.64.1',2,15,29762,NULL,'RabbitMQ: Messages ready for delivery','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300nk4xiywt6on7iq',1,'Admin',1672319419,'192.168.64.1',2,15,29763,NULL,'RabbitMQ: Messages total','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300nl4xiywg5ejf6u',1,'Admin',1672319419,'192.168.64.1',2,15,29764,NULL,'RabbitMQ: Exchanges total','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300nm4xiy0cejkkb4',1,'Admin',1672319419,'192.168.64.1',2,15,29765,NULL,'RabbitMQ: Consumers total','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300nn4xiyskrarg9a',1,'Admin',1672319419,'192.168.64.1',2,15,29766,NULL,'RabbitMQ: Queues total','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300no4xiywa0tric7',1,'Admin',1672319419,'192.168.64.1',2,15,29767,NULL,'RabbitMQ: Channels total','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300np4xiy83hso0wg',1,'Admin',1672319419,'192.168.64.1',2,15,29768,NULL,'RabbitMQ: Connections total','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300nq4xiy2gkn3nlv',1,'Admin',1672319419,'192.168.64.1',2,15,29769,NULL,'RabbitMQ: Messages returned redeliver per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300nr4xiyte3pmeu5',1,'Admin',1672319419,'192.168.64.1',2,15,29771,NULL,'RabbitMQ: Number of network partitions','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ns4xiygo4k6kv3',1,'Admin',1672319419,'192.168.64.1',2,15,29772,NULL,'RabbitMQ: Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300nt4xiypppv61pj',1,'Admin',1672319419,'192.168.64.1',2,15,29773,NULL,'RabbitMQ: Disk free alarm','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300nu4xiyzpupl8dv',1,'Admin',1672319419,'192.168.64.1',2,15,29774,NULL,'RabbitMQ: Memory alarm','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300nv4xiydr5rj6ah',1,'Admin',1672319419,'192.168.64.1',2,15,29775,NULL,'RabbitMQ: Is running','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300nw4xiye29zsinj',1,'Admin',1672319419,'192.168.64.1',2,15,29776,NULL,'RabbitMQ: Sockets used','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300nx4xiydo8icpsy',1,'Admin',1672319419,'192.168.64.1',2,15,29777,NULL,'RabbitMQ: Sockets available','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ny4xiyu61kescw',1,'Admin',1672319419,'192.168.64.1',2,15,29779,NULL,'RabbitMQ: Runtime run queue','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300nz4xiyddrwtonx',1,'Admin',1672319419,'192.168.64.1',2,15,29780,NULL,'RabbitMQ: Memory used','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300o04xiyw0y3gp16',1,'Admin',1672319419,'192.168.64.1',2,15,29781,NULL,'RabbitMQ: Disk free limit','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300o14xiye9tweeoj',1,'Admin',1672319419,'192.168.64.1',2,15,29782,NULL,'RabbitMQ: Free disk space','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300o24xiy4y0ims57',1,'Admin',1672319419,'192.168.64.1',2,15,29783,NULL,'RabbitMQ: Used file descriptors','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300o34xiy1c9341r0',1,'Admin',1672319419,'192.168.64.1',2,15,29784,NULL,'RabbitMQ: Memory limit','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300o44xiygp3y0h4o',1,'Admin',1672319419,'192.168.64.1',2,15,29821,NULL,'Remote Zabbix server: Utilization of alert syncer internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300o54xiyfzcqq53h',1,'Admin',1672319419,'192.168.64.1',2,15,29998,NULL,'RabbitMQ: Get overview','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300o64xiy72fny405',1,'Admin',1672319419,'192.168.64.1',2,15,29999,NULL,'RabbitMQ: Get exchanges','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300o74xiy39t8to0u',1,'Admin',1672319419,'192.168.64.1',2,15,30000,NULL,'RabbitMQ: Messages returned redeliver','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300o84xiybxhsugtv',1,'Admin',1672319419,'192.168.64.1',2,15,30001,NULL,'RabbitMQ: Messages returned unroutable per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300o94xiyfqaiil7y',1,'Admin',1672319419,'192.168.64.1',2,15,30002,NULL,'RabbitMQ: Messages returned unroutable','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300oa4xiyzpanivky',1,'Admin',1672319419,'192.168.64.1',2,15,30003,NULL,'RabbitMQ: Messages publish_out per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ob4xiyctz5hdfb',1,'Admin',1672319419,'192.168.64.1',2,15,30004,NULL,'RabbitMQ: Messages publish_out','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300oc4xiydo0obwuv',1,'Admin',1672319419,'192.168.64.1',2,15,30005,NULL,'RabbitMQ: Messages publish_in per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300od4xiytv7r3hfy',1,'Admin',1672319419,'192.168.64.1',2,15,30006,NULL,'RabbitMQ: Messages publish_in','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300oe4xiyp2cza3yo',1,'Admin',1672319419,'192.168.64.1',2,15,30007,NULL,'RabbitMQ: Messages published per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300of4xiy6cj0k1ah',1,'Admin',1672319419,'192.168.64.1',2,15,30008,NULL,'RabbitMQ: Messages published','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300og4xiyn32yl9xw',1,'Admin',1672319419,'192.168.64.1',2,15,30009,NULL,'RabbitMQ: Messages delivered per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300oh4xiy5t15x3rz',1,'Admin',1672319419,'192.168.64.1',2,15,30010,NULL,'RabbitMQ: Messages delivered','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300oi4xiyvvv82lrp',1,'Admin',1672319419,'192.168.64.1',2,15,30011,NULL,'RabbitMQ: Messages confirmed per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300oj4xiyyyvnbw74',1,'Admin',1672319419,'192.168.64.1',2,15,30012,NULL,'RabbitMQ: Messages confirmed','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ok4xiyn387h8dk',1,'Admin',1672319419,'192.168.64.1',2,15,30013,NULL,'RabbitMQ: Messages acknowledged per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ol4xiy33g6hpzx',1,'Admin',1672319419,'192.168.64.1',2,15,30014,NULL,'RabbitMQ: Messages acknowledged','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300om4xiyv0aht5gw',1,'Admin',1672319419,'192.168.64.1',2,15,30015,NULL,'RabbitMQ: Messages unacknowledged','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300on4xiyrju9sub8',1,'Admin',1672319419,'192.168.64.1',2,15,30016,NULL,'RabbitMQ: Messages ready for delivery','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300oo4xiyd2hwzivn',1,'Admin',1672319419,'192.168.64.1',2,15,30017,NULL,'RabbitMQ: Messages total','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300op4xiybe0iqkjf',1,'Admin',1672319419,'192.168.64.1',2,15,30018,NULL,'RabbitMQ: Exchanges total','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300oq4xiy55jhk7o0',1,'Admin',1672319419,'192.168.64.1',2,15,30019,NULL,'RabbitMQ: Consumers total','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300or4xiyelrk5cjw',1,'Admin',1672319419,'192.168.64.1',2,15,30020,NULL,'RabbitMQ: Queues total','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300os4xiyrof33bar',1,'Admin',1672319419,'192.168.64.1',2,15,30021,NULL,'RabbitMQ: Channels total','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ot4xiyu1fxvd5d',1,'Admin',1672319419,'192.168.64.1',2,15,30022,NULL,'RabbitMQ: Connections total','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ou4xiygu6o4vwx',1,'Admin',1672319419,'192.168.64.1',2,15,30023,NULL,'RabbitMQ: Messages returned redeliver per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ov4xiyy7v63jsn',1,'Admin',1672319419,'192.168.64.1',2,15,30024,NULL,'RabbitMQ: Management plugin version','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ow4xiyesnp45zv',1,'Admin',1672319419,'192.168.64.1',2,15,30025,NULL,'RabbitMQ: RabbitMQ version','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ox4xiy054njukg',1,'Admin',1672319419,'192.168.64.1',2,15,30043,NULL,'RabbitMQ: Get node overview','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300oy4xiy4krffxk7',1,'Admin',1672319419,'192.168.64.1',2,15,30044,NULL,'RabbitMQ: Management plugin version','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300oz4xiy9w0grqzu',1,'Admin',1672319419,'192.168.64.1',2,15,30045,NULL,'RabbitMQ: RabbitMQ version','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300p04xiyqwuc80g6',1,'Admin',1672319419,'192.168.64.1',2,15,30124,NULL,'Temperature','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300p14xiyjeabtd0u',1,'Admin',1672319419,'192.168.64.1',2,15,30125,NULL,'Operating system','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300p24xiyqapie4wo',1,'Admin',1672319419,'192.168.64.1',2,15,30126,NULL,'Memory utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300p34xiy1bh44t6g',1,'Admin',1672319419,'192.168.64.1',2,15,30132,NULL,'Memory (buffers)','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300p44xiycfe6e2mj',1,'Admin',1672319419,'192.168.64.1',2,15,30133,NULL,'Memory (cached)','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300p54xiy9t11lzdy',1,'Admin',1672319419,'192.168.64.1',2,15,30134,NULL,'Free memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300p64xiytg6d87yj',1,'Admin',1672319419,'192.168.64.1',2,15,30135,NULL,'Total memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300p74xiywdct7yqx',1,'Admin',1672319419,'192.168.64.1',2,15,30136,NULL,'Memory utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300p84xiy4f10d2df',1,'Admin',1672319419,'192.168.64.1',2,15,30137,NULL,'CPU DPC time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300p94xiyc4b5htcj',1,'Admin',1672319419,'192.168.64.1',2,15,30273,NULL,'Redis: Ping','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pa4xiym1r1qhox',1,'Admin',1672319419,'192.168.64.1',2,15,30274,NULL,'Redis: Slowlog entries per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pb4xiyoq1gx3kh',1,'Admin',1672319419,'192.168.64.1',2,15,30275,NULL,'Redis: Get config','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pc4xiyrhwmhwvm',1,'Admin',1672319419,'192.168.64.1',2,15,30276,NULL,'Redis: Get info','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pd4xiy8z7vvchn',1,'Admin',1672319419,'192.168.64.1',2,15,30277,NULL,'Redis: Blocked clients','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pe4xiyl20jvrjh',1,'Admin',1672319419,'192.168.64.1',2,15,30278,NULL,'Redis: TCP port','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pf4xiyvaw9muyr',1,'Admin',1672319419,'192.168.64.1',2,15,30279,NULL,'Redis: Expired keys','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pg4xiy888l0kno',1,'Admin',1672319419,'192.168.64.1',2,15,30280,NULL,'Redis: Evicted keys','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ph4xiy6w4cx7eq',1,'Admin',1672319419,'192.168.64.1',2,15,30281,NULL,'Redis: Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pi4xiywe6kzlt1',1,'Admin',1672319419,'192.168.64.1',2,15,30282,NULL,'Redis: Redis mode','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pj4xiyibwkf7il',1,'Admin',1672319419,'192.168.64.1',2,15,30283,NULL,'Redis: Redis version','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pk4xiyrfm1sbej',1,'Admin',1672319419,'192.168.64.1',2,15,30284,NULL,'Redis: Instantaneous operations per sec','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pl4xiyhzozkgw3',1,'Admin',1672319419,'192.168.64.1',2,15,30285,NULL,'Redis: Process id','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pm4xiyu8azwt41',1,'Admin',1672319419,'192.168.64.1',2,15,30286,NULL,'Redis: Replication role','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pn4xiy3znd0ada',1,'Admin',1672319419,'192.168.64.1',2,15,30287,NULL,'Redis: Replication backlog size','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300po4xiyyaknbrqd',1,'Admin',1672319419,'192.168.64.1',2,15,30288,NULL,'Redis: Replication backlog history length','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pp4xiyi0gf9tup',1,'Admin',1672319419,'192.168.64.1',2,15,30289,NULL,'Redis: Instantaneous input bytes per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pq4xiyubgldp12',1,'Admin',1672319419,'192.168.64.1',2,15,30290,NULL,'Redis: Keyspace hits','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pr4xiy76viynyy',1,'Admin',1672319419,'192.168.64.1',2,15,30291,NULL,'Redis: Instantaneous output bytes per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ps4xiysj259lfu',1,'Admin',1672319419,'192.168.64.1',2,15,30292,NULL,'Redis: Replication backlog active','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pt4xiyt8cz5as2',1,'Admin',1672319419,'192.168.64.1',2,15,30293,NULL,'Redis: Keyspace misses','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pu4xiy0a4y9ovr',1,'Admin',1672319419,'192.168.64.1',2,15,30294,NULL,'Redis: Latest fork usec','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pv4xiy5dm1wjwl',1,'Admin',1672319419,'192.168.64.1',2,15,30295,NULL,'Redis: Migrate cached sockets','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pw4xiy2zukw4xf',1,'Admin',1672319419,'192.168.64.1',2,15,30296,NULL,'Redis: Pubsub channels','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300px4xiy57hf3aa8',1,'Admin',1672319419,'192.168.64.1',2,15,30297,NULL,'Redis: Pubsub patterns','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300py4xiyfc0xnbp2',1,'Admin',1672319419,'192.168.64.1',2,15,30298,NULL,'Redis: Rejected connections','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300pz4xiy8xfiqkf2',1,'Admin',1672319419,'192.168.64.1',2,15,30299,NULL,'Redis: Sync full','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300q04xiyyvjtj1ha',1,'Admin',1672319419,'192.168.64.1',2,15,30300,NULL,'Redis: Sync partial err','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300q14xiy8mm68o7c',1,'Admin',1672319419,'192.168.64.1',2,15,30301,NULL,'Redis: Sync partial ok','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300q24xiy9da5l39p',1,'Admin',1672319419,'192.168.64.1',2,15,30302,NULL,'Redis: Total commands processed','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300q34xiyltu5m3kn',1,'Admin',1672319419,'192.168.64.1',2,15,30303,NULL,'Redis: Total connections received','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300q44xiy66nqxgee',1,'Admin',1672319419,'192.168.64.1',2,15,30304,NULL,'Redis: Total net input bytes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300q54xiyadxm03yl',1,'Admin',1672319419,'192.168.64.1',2,15,30305,NULL,'Redis: Replication backlog first byte offset','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300q64xiyj7f16zhs',1,'Admin',1672319419,'192.168.64.1',2,15,30306,NULL,'Redis: Connected slaves','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300q74xiyzveg1h00',1,'Admin',1672319419,'192.168.64.1',2,15,30307,NULL,'Redis: Master replication offset','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300q84xiy92nrqx8b',1,'Admin',1672319419,'192.168.64.1',2,15,30308,NULL,'Redis: Memory used RSS','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300q94xiymqvkx51h',1,'Admin',1672319419,'192.168.64.1',2,15,30309,NULL,'Redis: Max input buffer','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qa4xiy8fecxjgq',1,'Admin',1672319419,'192.168.64.1',2,15,30310,NULL,'Redis: Max output buffer','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qb4xiybhhq29g2',1,'Admin',1672319419,'192.168.64.1',2,15,30311,NULL,'Redis: Cluster enabled','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qc4xiy07e0yddz',1,'Admin',1672319419,'192.168.64.1',2,15,30312,NULL,'Redis: Max clients','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qd4xiyrg04ttk7',1,'Admin',1672319419,'192.168.64.1',2,15,30313,NULL,'Redis: CPU sys','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qe4xiyme6bwijv',1,'Admin',1672319419,'192.168.64.1',2,15,30314,NULL,'Redis: CPU sys children','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qf4xiyrd3xnap2',1,'Admin',1672319419,'192.168.64.1',2,15,30315,NULL,'Redis: CPU user','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qg4xiyi9mppsox',1,'Admin',1672319419,'192.168.64.1',2,15,30316,NULL,'Redis: CPU user children','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qh4xiydxd22mmj',1,'Admin',1672319419,'192.168.64.1',2,15,30317,NULL,'Redis: Memory fragmentation ratio','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qi4xiyya7alweh',1,'Admin',1672319419,'192.168.64.1',2,15,30318,NULL,'Redis: Memory used','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qj4xiyjw6yd96n',1,'Admin',1672319419,'192.168.64.1',2,15,30319,NULL,'Redis: Memory used Lua','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qk4xiyeelw8pev',1,'Admin',1672319419,'192.168.64.1',2,15,30320,NULL,'Redis: Memory used peak','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ql4xiy024tjzr2',1,'Admin',1672319419,'192.168.64.1',2,15,30321,NULL,'Redis: AOF current rewrite time sec','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qm4xiy7e24qvt9',1,'Admin',1672319419,'192.168.64.1',2,15,30322,NULL,'Redis: Connected clients','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qn4xiyzhamz4x1',1,'Admin',1672319419,'192.168.64.1',2,15,30323,NULL,'Redis: AOF enabled','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qo4xiyjuzkxie3',1,'Admin',1672319419,'192.168.64.1',2,15,30324,NULL,'Redis: AOF last bgrewrite status','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qp4xiywvwu7ebc',1,'Admin',1672319419,'192.168.64.1',2,15,30325,NULL,'Redis: AOF last rewrite time sec','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qq4xiyhd7k5cb2',1,'Admin',1672319419,'192.168.64.1',2,15,30326,NULL,'Redis: AOF last write status','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qr4xiyfdr3ft5s',1,'Admin',1672319419,'192.168.64.1',2,15,30327,NULL,'Redis: AOF rewrite in progress','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qs4xiy802jzw3c',1,'Admin',1672319419,'192.168.64.1',2,15,30328,NULL,'Redis: AOF rewrite scheduled','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qt4xiyignwktem',1,'Admin',1672319419,'192.168.64.1',2,15,30329,NULL,'Redis: Dump loading','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qu4xiyya7bfo9d',1,'Admin',1672319419,'192.168.64.1',2,15,30330,NULL,'Redis: RDB bgsave in progress','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qv4xiyci42duoq',1,'Admin',1672319419,'192.168.64.1',2,15,30331,NULL,'Redis: RDB changes since last save','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qw4xiyvkswosmd',1,'Admin',1672319419,'192.168.64.1',2,15,30332,NULL,'Redis: RDB current bgsave time sec','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qx4xiynzdiw4se',1,'Admin',1672319419,'192.168.64.1',2,15,30333,NULL,'Redis: RDB last bgsave status','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qy4xiysf36h0d0',1,'Admin',1672319419,'192.168.64.1',2,15,30334,NULL,'Redis: RDB last bgsave time sec','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300qz4xiyu2ic9esf',1,'Admin',1672319419,'192.168.64.1',2,15,30335,NULL,'Redis: RDB last save time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300r04xiy5jdt0mg8',1,'Admin',1672319419,'192.168.64.1',2,15,30336,NULL,'Redis: Total net output bytes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300r14xiyv5jdmx12',1,'Admin',1672319419,'192.168.64.1',2,15,31052,NULL,'Remote Zabbix proxy: Version','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300r24xiy77snu5h9',1,'Admin',1672319419,'192.168.64.1',2,15,31053,NULL,'Remote Zabbix server: Version','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300r34xiy8117e2fz',1,'Admin',1672319419,'192.168.64.1',2,15,31274,NULL,'PostgreSQL: Get bgwriter','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300r44xiya9o2jm29',1,'Admin',1672319419,'192.168.64.1',2,15,31275,NULL,'Replication: Lag in bytes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300r54xiy2pie4dts',1,'Admin',1672319419,'192.168.64.1',2,15,31276,NULL,'PostgreSQL: Get connections','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300r64xiy34s12m6k',1,'Admin',1672319419,'192.168.64.1',2,15,31277,NULL,'PostgreSQL: Get dbstat sum','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300r74xiylka6dw8t',1,'Admin',1672319419,'192.168.64.1',2,15,31279,NULL,'PostgreSQL: Get dbstat','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300r84xiybpmuyvty',1,'Admin',1672319419,'192.168.64.1',2,15,31280,NULL,'PostgreSQL: Get locks','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300r94xiyzfibc82o',1,'Admin',1672319419,'192.168.64.1',2,15,31282,NULL,'PostgreSQL: Ping','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ra4xiydiam526z',1,'Admin',1672319419,'192.168.64.1',2,15,31283,NULL,'Replication: Standby count','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300rb4xiy9q8zhng8',1,'Admin',1672319419,'192.168.64.1',2,15,31284,NULL,'Replication: Lag in seconds','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300rc4xiyyqqk3pni',1,'Admin',1672319419,'192.168.64.1',2,15,31285,NULL,'Replication: Recovery role','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300rd4xiydnydq5mb',1,'Admin',1672319419,'192.168.64.1',2,15,31286,NULL,'Replication: Status','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300re4xiypub7xhpo',1,'Admin',1672319419,'192.168.64.1',2,15,31287,NULL,'PostgreSQL: Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300rf4xiybk48ntn9',1,'Admin',1672319419,'192.168.64.1',2,15,31288,NULL,'Autovacuum: Count of autovacuum workers','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300rg4xiybk9ftgb0',1,'Admin',1672319419,'192.168.64.1',2,15,31289,NULL,'PostgreSQL: Get archive','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300rh4xiyetwh8otx',1,'Admin',1672319419,'192.168.64.1',2,15,31290,NULL,'PostgreSQL: Get WAL','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ri4xiy01rcbi2h',1,'Admin',1672319419,'192.168.64.1',2,15,31291,NULL,'Dbstat: Rows fetched','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300rj4xiyqa5vedx3',1,'Admin',1672319419,'192.168.64.1',2,15,31292,NULL,'Dbstat: Backends connected','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300rk4xiy9khn7bdh',1,'Admin',1672319419,'192.168.64.1',2,15,31293,NULL,'Dbstat: Deadlocks','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300rl4xiylhzwyoqa',1,'Admin',1672319419,'192.168.64.1',2,15,31294,NULL,'Dbstat: Number temp bytes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300rm4xiybuzdg2m2',1,'Admin',1672319419,'192.168.64.1',2,15,31295,NULL,'Dbstat: Number temp bytes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300rn4xiy7balun1d',1,'Admin',1672319419,'192.168.64.1',2,15,31296,NULL,'Dbstat: Rows deleted','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ro4xiy05pot1ko',1,'Admin',1672319419,'192.168.64.1',2,15,31297,NULL,'Archive: Count of archive files','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300rp4xiyc5557fcu',1,'Admin',1672319419,'192.168.64.1',2,15,31298,NULL,'Dbstat: Rows inserted','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300rq4xiyw7do0y89',1,'Admin',1672319419,'192.168.64.1',2,15,31299,NULL,'Dbstat: Rows returned','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300rr4xiygg3f9b4y',1,'Admin',1672319419,'192.168.64.1',2,15,31300,NULL,'Dbstat: Rows updated','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300rs4xiyrqjmoogh',1,'Admin',1672319419,'192.168.64.1',2,15,31301,NULL,'Dbstat: Committed transactions','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300rt4xiyyp550f4z',1,'Admin',1672319419,'192.168.64.1',2,15,31302,NULL,'Dbstat: Roll backed transactions','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ru4xiyghq8o6n3',1,'Admin',1672319419,'192.168.64.1',2,15,31303,NULL,'Dbstat: Checksum failures','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300rv4xiytjbzm4wa',1,'Admin',1672319419,'192.168.64.1',2,15,31304,NULL,'WAL: Segments count','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300rw4xiy817uqqtv',1,'Admin',1672319419,'192.168.64.1',2,15,31305,NULL,'Dbstat: Conflicts','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300rx4xiyktd6yzcf',1,'Admin',1672319419,'192.168.64.1',2,15,31306,NULL,'Dbstat: Blocks write time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ry4xiy1cl60hy9',1,'Admin',1672319419,'192.168.64.1',2,15,31307,NULL,'Dbstat: Disk blocks read','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300rz4xiyof0k8zr6',1,'Admin',1672319419,'192.168.64.1',2,15,31309,NULL,'Archive: Count of attempts to archive files','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300s04xiymp7ebh5a',1,'Admin',1672319419,'192.168.64.1',2,15,31310,NULL,'Archive: Count of files need to archive','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300s14xiynbqeqfqv',1,'Admin',1672319419,'192.168.64.1',2,15,31311,NULL,'Bgwriter: Buffers allocated','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300s24xiy56c70e3c',1,'Admin',1672319419,'192.168.64.1',2,15,31312,NULL,'Bgwriter: Times a backend execute its own fsync','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300s34xiyi7ifboa9',1,'Admin',1672319419,'192.168.64.1',2,15,31313,NULL,'Bgwriter: Buffers written directly by a backend','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300s44xiygk84g81w',1,'Admin',1672319419,'192.168.64.1',2,15,31314,NULL,'Checkpoint: Buffers checkpoints written','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300s54xiy7vf6m36i',1,'Admin',1672319419,'192.168.64.1',2,15,31315,NULL,'Checkpoint: Buffers background written','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300s64xiyprgp1n4n',1,'Admin',1672319419,'192.168.64.1',2,15,31316,NULL,'Checkpoint: Checkpoint write time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300s74xiy0dwm9dvc',1,'Admin',1672319419,'192.168.64.1',2,15,31317,NULL,'Checkpoint: Requested','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300s84xiyhuwey0oy',1,'Admin',1672319419,'192.168.64.1',2,15,31318,NULL,'Checkpoint: By timeout','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300s94xiyw7ph8knx',1,'Admin',1672319419,'192.168.64.1',2,15,31319,NULL,'Bgwriter: Number of bgwriter stopped','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300sa4xiyp5minxef',1,'Admin',1672319419,'192.168.64.1',2,15,31320,NULL,'Connections sum: Active','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300sb4xiy0f7ijop2',1,'Admin',1672319419,'192.168.64.1',2,15,31321,NULL,'Dbstat: Hit blocks read','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300sc4xiyta9ki3gm',1,'Admin',1672319419,'192.168.64.1',2,15,31322,NULL,'Connections sum: Disabled','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300sd4xiy0yf7on21',1,'Admin',1672319419,'192.168.64.1',2,15,31323,NULL,'Connections sum: Fastpath function call','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300se4xiykmiah3r9',1,'Admin',1672319419,'192.168.64.1',2,15,31324,NULL,'Connections sum: Idle','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300sf4xiydnj754o8',1,'Admin',1672319419,'192.168.64.1',2,15,31325,NULL,'Connections sum: Idle in transaction','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300sg4xiy4wxzk9cx',1,'Admin',1672319419,'192.168.64.1',2,15,31326,NULL,'Connections sum: Idle in transaction (aborted)','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300sh4xiyp1l80qnh',1,'Admin',1672319419,'192.168.64.1',2,15,31327,NULL,'Connections sum: Prepared','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300si4xiyxd0u3hl2',1,'Admin',1672319419,'192.168.64.1',2,15,31328,NULL,'Connections sum: Total','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300sj4xiy1mwzrg9f',1,'Admin',1672319419,'192.168.64.1',2,15,31329,NULL,'Connections sum: Total %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300sk4xiyy4qvv1ya',1,'Admin',1672319419,'192.168.64.1',2,15,31330,NULL,'Connections sum: Waiting','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300sl4xiyra5d0gfo',1,'Admin',1672319419,'192.168.64.1',2,15,31331,NULL,'Dbstat: Blocks read time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300sm4xiy580puaf8',1,'Admin',1672319419,'192.168.64.1',2,15,31332,NULL,'Archive: Count of files in archive_status need to archive','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300sn4xiy30kwk79v',1,'Admin',1672319419,'192.168.64.1',2,15,31333,NULL,'WAL: Bytes written','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300so4xiyz3u3z4bp',1,'Admin',1672319419,'192.168.64.1',2,15,31419,NULL,'Number of cores','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300sp4xiy0t1mnb7b',1,'Admin',1672319419,'192.168.64.1',2,15,31420,NULL,'Used swap space in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300sq4xiyrozqklew',1,'Admin',1672319419,'192.168.64.1',2,15,31421,NULL,'Free swap space','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300sr4xiyn7dvg8b1',1,'Admin',1672319419,'192.168.64.1',2,15,31422,NULL,'Network interfaces WMI get','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ss4xiy28lhwdk5',1,'Admin',1672319419,'192.168.64.1',2,15,31427,NULL,'Free swap space in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300st4xiyr692umqn',1,'Admin',1672319419,'192.168.64.1',2,15,31612,NULL,'VMware: Event log','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300su4xiyejgfeg2b',1,'Admin',1672319419,'192.168.64.1',2,15,31613,NULL,'VMware: Full name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300sv4xiy6dtg1efv',1,'Admin',1672319419,'192.168.64.1',2,15,31614,NULL,'VMware: Version','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300sw4xiy5hjnd4dm',1,'Admin',1672319419,'192.168.64.1',2,15,31948,NULL,'CPU DPC time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300sx4xiybam7bnbi',1,'Admin',1672319419,'192.168.64.1',2,15,31949,NULL,'CPU interrupt time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300sy4xiyxb43ulu8',1,'Admin',1672319419,'192.168.64.1',2,15,31950,NULL,'CPU privileged time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300sz4xiy26i7ao87',1,'Admin',1672319419,'192.168.64.1',2,15,31951,NULL,'CPU user time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300t04xiytqzldwhr',1,'Admin',1672319419,'192.168.64.1',2,15,31952,NULL,'Context switches per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300t14xiytpuov3jg',1,'Admin',1672319419,'192.168.64.1',2,15,31953,NULL,'CPU queue length','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300t24xiypenmmqf7',1,'Admin',1672319419,'192.168.64.1',2,15,31954,NULL,'CPU utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300t34xiyk7oshhrk',1,'Admin',1672319419,'192.168.64.1',2,15,31955,NULL,'Number of cores','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300t44xiy60y8111j',1,'Admin',1672319419,'192.168.64.1',2,15,31956,NULL,'Number of threads','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300t54xiyu6gmvh0y',1,'Admin',1672319419,'192.168.64.1',2,15,31957,NULL,'Number of processes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300t64xiyr1odlffo',1,'Admin',1672319419,'192.168.64.1',2,15,31958,NULL,'System name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300t74xiyue5pb2v1',1,'Admin',1672319419,'192.168.64.1',2,15,31959,NULL,'System local time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300t84xiylt2vi6kq',1,'Admin',1672319419,'192.168.64.1',2,15,31960,NULL,'Operating system architecture','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300t94xiykpg2uav3',1,'Admin',1672319419,'192.168.64.1',2,15,31961,NULL,'System description','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ta4xiyr3m1khxm',1,'Admin',1672319419,'192.168.64.1',2,15,31962,NULL,'Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300tb4xiy5vgz8edt',1,'Admin',1672319419,'192.168.64.1',2,15,31963,NULL,'Cache bytes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300tc4xiy25dkmb77',1,'Admin',1672319419,'192.168.64.1',2,15,31964,NULL,'Free system page table entries','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300td4xiyq0qx9siy',1,'Admin',1672319419,'192.168.64.1',2,15,31965,NULL,'Memory page faults per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300te4xiyx4av74zp',1,'Admin',1672319419,'192.168.64.1',2,15,31966,NULL,'Memory pages per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300tf4xiyljht8q3s',1,'Admin',1672319419,'192.168.64.1',2,15,31967,NULL,'Memory pool non-paged','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300tg4xiy2mepy9qw',1,'Admin',1672319419,'192.168.64.1',2,15,31968,NULL,'Used swap space in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300th4xiy7anqttob',1,'Admin',1672319419,'192.168.64.1',2,15,31969,NULL,'Free swap space','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ti4xiydct0otty',1,'Admin',1672319419,'192.168.64.1',2,15,31970,NULL,'Total swap space','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300tj4xiyfje7gv7h',1,'Admin',1672319419,'192.168.64.1',2,15,31971,NULL,'Total memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300tk4xiylwrcmp0e',1,'Admin',1672319419,'192.168.64.1',2,15,31972,NULL,'Used memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300tl4xiyke3ptfff',1,'Admin',1672319419,'192.168.64.1',2,15,31973,NULL,'Memory utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300tm4xiyi6vbecru',1,'Admin',1672319419,'192.168.64.1',2,15,31974,NULL,'Network interfaces WMI get','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300tn4xiylmyalxta',1,'Admin',1672319419,'192.168.64.1',2,15,32002,NULL,'Free swap space in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300to4xiyvia19edl',1,'Admin',1672319419,'192.168.64.1',2,15,32239,NULL,'Squid: Service ping','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300tp4xiyyx6glygy',1,'Admin',1672319419,'192.168.64.1',2,15,32240,NULL,'Squid: Objects count','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300tq4xiy1iyuug7b',1,'Admin',1672319419,'192.168.64.1',2,15,32241,NULL,'Squid: ICP query service time per 5 minutes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300tr4xiyrsjafcht',1,'Admin',1672319419,'192.168.64.1',2,15,32242,NULL,'Squid: ICP query service time per hour','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ts4xiy01x087mp',1,'Admin',1672319419,'192.168.64.1',2,15,32243,NULL,'Squid: ICP reply service time per 5 minutes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300tt4xiy4s1wixnq',1,'Admin',1672319419,'192.168.64.1',2,15,32244,NULL,'Squid: ICP reply service time per hour','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300tu4xiyo3lx65uz',1,'Admin',1672319419,'192.168.64.1',2,15,32245,NULL,'Squid: IP cache hits per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300tv4xiy0xxytv8j',1,'Admin',1672319419,'192.168.64.1',2,15,32246,NULL,'Squid: IP cache misses per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300tw4xiy8kjk9604',1,'Admin',1672319419,'192.168.64.1',2,15,32247,NULL,'Squid: IP cache requests per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300tx4xiy9zfp5w20',1,'Admin',1672319419,'192.168.64.1',2,15,32248,NULL,'Squid: Memory maximum resident size','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ty4xiy97rqojdv',1,'Admin',1672319419,'192.168.64.1',2,15,32249,NULL,'Squid: Memory maximum cache size','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300tz4xiyy3phekpi',1,'Admin',1672319419,'192.168.64.1',2,15,32250,NULL,'Squid: Memory cache usage','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300u04xiy50w6xkcq',1,'Admin',1672319419,'192.168.64.1',2,15,32251,NULL,'Squid: HTTP requests received per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300u14xiytz6iabos',1,'Admin',1672319419,'192.168.64.1',2,15,32252,NULL,'Squid: ICP messages received per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300u24xiy591elc9c',1,'Admin',1672319419,'192.168.64.1',2,15,32253,NULL,'Squid: Byte hit ratio per 1 minute','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300u34xiytdutlct2',1,'Admin',1672319419,'192.168.64.1',2,15,32254,NULL,'Squid: Byte hit ratio per 5 minutes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300u44xiyj6b2lsxs',1,'Admin',1672319419,'192.168.64.1',2,15,32255,NULL,'Squid: Byte hit ratio per 1 hour','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300u54xiyjqoddmde',1,'Admin',1672319419,'192.168.64.1',2,15,32256,NULL,'Squid: Request hit ratio per 1 minute','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300u64xiy0ltm2c21',1,'Admin',1672319419,'192.168.64.1',2,15,32257,NULL,'Squid: Request hit ratio per 5 minutes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300u74xiy94ymcj3y',1,'Admin',1672319419,'192.168.64.1',2,15,32258,NULL,'Squid: Request hit ratio per 1 hour','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300u84xiy5s7j3ti3',1,'Admin',1672319419,'192.168.64.1',2,15,32259,NULL,'Squid: Cache swap high water mark','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300u94xiyfeatrk2k',1,'Admin',1672319419,'192.168.64.1',2,15,32260,NULL,'Squid: Cache swap low water mark','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ua4xiybk7bvses',1,'Admin',1672319419,'192.168.64.1',2,15,32261,NULL,'Squid: Cache swap directory size','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ub4xiy2wdtihhf',1,'Admin',1672319419,'192.168.64.1',2,15,32262,NULL,'Squid: Sys page faults per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300uc4xiyh1wmnr06',1,'Admin',1672319419,'192.168.64.1',2,15,32263,NULL,'Squid: Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ud4xiyek5tmxim',1,'Admin',1672319419,'192.168.64.1',2,15,32264,NULL,'Squid: ICP messages sent per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ue4xiyioyvoo24',1,'Admin',1672319419,'192.168.64.1',2,15,32265,NULL,'Squid: ICP traffic transmitted per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300uf4xiyti1a5mqm',1,'Admin',1672319419,'192.168.64.1',2,15,32266,NULL,'Squid: CPU usage','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ug4xiy8pm4gkpf',1,'Admin',1672319419,'192.168.64.1',2,15,32267,NULL,'Squid: FQDN cache hits per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300uh4xiy6u67yjyz',1,'Admin',1672319419,'192.168.64.1',2,15,32268,NULL,'Squid: File descriptor count - current used','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ui4xiycpejtoo1',1,'Admin',1672319419,'192.168.64.1',2,15,32269,NULL,'Squid: File descriptor count - current maximum','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300uj4xiy554g90eu',1,'Admin',1672319419,'192.168.64.1',2,15,32270,NULL,'Squid: Objects LRU expiration age','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300uk4xiy6f98l7vu',1,'Admin',1672319419,'192.168.64.1',2,15,32271,NULL,'Squid: File descriptor count - current reserved','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ul4xiyd0ykqs43',1,'Admin',1672319419,'192.168.64.1',2,15,32272,NULL,'Squid: Cache swap current size','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300um4xiy2ndnkwj0',1,'Admin',1672319419,'192.168.64.1',2,15,32273,NULL,'Squid: Objects unlinkd requests','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300un4xiyfj674m24',1,'Admin',1672319419,'192.168.64.1',2,15,32274,NULL,'Squid: File descriptor count - current available','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300uo4xiyor715t7l',1,'Admin',1672319419,'192.168.64.1',2,15,32275,NULL,'Squid: DNS server replies per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300up4xiyfeo3qrso',1,'Admin',1672319419,'192.168.64.1',2,15,32276,NULL,'Squid: DNS server requests per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300uq4xiycr3wnbhw',1,'Admin',1672319419,'192.168.64.1',2,15,32277,NULL,'Squid: DNS service time per 5 minutes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ur4xiy8kn0f7z7',1,'Admin',1672319419,'192.168.64.1',2,15,32278,NULL,'Squid: DNS service time per hour','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300us4xiyaxi4ikok',1,'Admin',1672319419,'192.168.64.1',2,15,32279,NULL,'Squid: FQDN cache misses per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ut4xiywibalhh7',1,'Admin',1672319419,'192.168.64.1',2,15,32280,NULL,'Squid: ICP traffic received per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300uu4xiy7yef93mq',1,'Admin',1672319419,'192.168.64.1',2,15,32281,NULL,'Squid: FQDN cache requests per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300uv4xiy2xpd8mpj',1,'Admin',1672319419,'192.168.64.1',2,15,32282,NULL,'Squid: HTTP all service time per 5 minutes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300uw4xiyt0qy1jks',1,'Admin',1672319419,'192.168.64.1',2,15,32283,NULL,'Squid: HTTP all service time per hour','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ux4xiyaf3tet9s',1,'Admin',1672319419,'192.168.64.1',2,15,32284,NULL,'Squid: HTTP Errors sent per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300uy4xiyk95zywie',1,'Admin',1672319419,'192.168.64.1',2,15,32285,NULL,'Squid: HTTP Hits sent from cache per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300uz4xiy0g159hn0',1,'Admin',1672319419,'192.168.64.1',2,15,32286,NULL,'Squid: HTTP hit service time per 5 minutes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300v04xiy7orapfa8',1,'Admin',1672319419,'192.168.64.1',2,15,32287,NULL,'Squid: HTTP hit service time per hour','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300v14xiytxv4moq8',1,'Admin',1672319419,'192.168.64.1',2,15,32288,NULL,'Squid: HTTP traffic received per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300v24xiyt0r6eyyf',1,'Admin',1672319419,'192.168.64.1',2,15,32289,NULL,'Squid: HTTP miss service time per 5 minutes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300v34xiyhn8utqug',1,'Admin',1672319419,'192.168.64.1',2,15,32290,NULL,'Squid: HTTP miss service time per hour','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300v44xiy0ax6e4ed',1,'Admin',1672319419,'192.168.64.1',2,15,32291,NULL,'Squid: HTTP traffic sent per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300v54xiytrnabw1a',1,'Admin',1672319419,'192.168.64.1',2,15,32292,NULL,'Squid: Version','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300v64xiyxpdwu8v9',1,'Admin',1672319419,'192.168.64.1',2,15,32890,NULL,'VMware: Cluster name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300v74xiyv0y0mw0t',1,'Admin',1672319419,'192.168.64.1',2,15,32891,NULL,'VMware: Swapped memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300v84xiyot5h928l',1,'Admin',1672319419,'192.168.64.1',2,15,32892,NULL,'VMware: Unshared storage space','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300v94xiy0jtwfdf1',1,'Admin',1672319419,'192.168.64.1',2,15,32893,NULL,'VMware: Uncommitted storage space','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300va4xiy2ci6ww18',1,'Admin',1672319419,'192.168.64.1',2,15,32894,NULL,'VMware: Committed storage space','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vb4xiy7ce0fk8s',1,'Admin',1672319419,'192.168.64.1',2,15,32895,NULL,'VMware: Power state','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vc4xiyr3dk45iq',1,'Admin',1672319419,'192.168.64.1',2,15,32896,NULL,'VMware: Memory size','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vd4xiy6xqmt9of',1,'Admin',1672319419,'192.168.64.1',2,15,32897,NULL,'VMware: Host memory usage','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ve4xiydk3teoof',1,'Admin',1672319419,'192.168.64.1',2,15,32898,NULL,'VMware: Guest memory usage','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vf4xiys1mymw0w',1,'Admin',1672319419,'192.168.64.1',2,15,32899,NULL,'VMware: Shared memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vg4xiyb3oy9ndj',1,'Admin',1672319419,'192.168.64.1',2,15,32900,NULL,'VMware: Number of virtual CPUs','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vh4xiy94dexybv',1,'Admin',1672319419,'192.168.64.1',2,15,32901,NULL,'VMware: Private memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vi4xiycr588bii',1,'Admin',1672319419,'192.168.64.1',2,15,32902,NULL,'VMware: Compressed memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vj4xiypqwbqqgj',1,'Admin',1672319419,'192.168.64.1',2,15,32903,NULL,'VMware: Ballooned memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vk4xiyb6bi8n78',1,'Admin',1672319419,'192.168.64.1',2,15,32904,NULL,'VMware: Hypervisor name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vl4xiyv77gulfa',1,'Admin',1672319419,'192.168.64.1',2,15,32905,NULL,'VMware: Datacenter name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vm4xiyfakkju6f',1,'Admin',1672319419,'192.168.64.1',2,15,32906,NULL,'VMware: CPU usage','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vn4xiywo641a1l',1,'Admin',1672319419,'192.168.64.1',2,15,32907,NULL,'VMware: CPU ready','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vo4xiy3t0tfu23',1,'Admin',1672319419,'192.168.64.1',2,15,32908,NULL,'VMware: Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vp4xiyu3g0mydq',1,'Admin',1672319419,'192.168.64.1',2,15,32909,NULL,'VMware: Hypervisor ping','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vq4xiyf93a0vfq',1,'Admin',1672319419,'192.168.64.1',2,15,32910,NULL,'VMware: Vendor','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vr4xiybn40eue1',1,'Admin',1672319419,'192.168.64.1',2,15,32911,NULL,'VMware: Version','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vs4xiy98ji52fx',1,'Admin',1672319419,'192.168.64.1',2,15,32912,NULL,'VMware: Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vt4xiyzn29brvg',1,'Admin',1672319419,'192.168.64.1',2,15,32913,NULL,'VMware: Overall status','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vu4xiyi0dzsace',1,'Admin',1672319419,'192.168.64.1',2,15,32915,NULL,'VMware: Number of bytes transmitted','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vv4xiynvgsveh4',1,'Admin',1672319419,'192.168.64.1',2,15,32916,NULL,'VMware: Number of bytes received','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vw4xiyrgwos7oe',1,'Admin',1672319419,'192.168.64.1',2,15,32917,NULL,'VMware: Used memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vx4xiyauthqz4f',1,'Admin',1672319419,'192.168.64.1',2,15,32918,NULL,'VMware: Ballooned memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vy4xiyrvlxvb24',1,'Admin',1672319419,'192.168.64.1',2,15,32919,NULL,'VMware: Bios UUID','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300vz4xiywby0kabl',1,'Admin',1672319419,'192.168.64.1',2,15,32920,NULL,'VMware: Cluster name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300w04xiy1nqf0c01',1,'Admin',1672319419,'192.168.64.1',2,15,32921,NULL,'VMware: Model','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300w14xiyn9itg2kw',1,'Admin',1672319419,'192.168.64.1',2,15,32922,NULL,'VMware: Total memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300w24xiyd5g9jeyi',1,'Admin',1672319419,'192.168.64.1',2,15,32923,NULL,'VMware: CPU threads','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300w34xiy0t8bb9b0',1,'Admin',1672319419,'192.168.64.1',2,15,32924,NULL,'VMware: CPU cores','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300w44xiyaod58r48',1,'Admin',1672319419,'192.168.64.1',2,15,32925,NULL,'VMware: CPU model','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300w54xiyezgxt8jl',1,'Admin',1672319419,'192.168.64.1',2,15,32926,NULL,'VMware: CPU frequency','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300w64xiyzef9wwxm',1,'Admin',1672319419,'192.168.64.1',2,15,32927,NULL,'VMware: Full name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300w74xiyx8nbyzkz',1,'Admin',1672319419,'192.168.64.1',2,15,32928,NULL,'VMware: Datacenter name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300w84xiy4f5qa164',1,'Admin',1672319419,'192.168.64.1',2,15,32929,NULL,'VMware: CPU usage','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300w94xiy72meyxk1',1,'Admin',1672319419,'192.168.64.1',2,15,32930,NULL,'VMware: Number of guest VMs','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wa4xiyepjcgy92',1,'Admin',1672319419,'192.168.64.1',2,15,32951,NULL,'VMware: Event log','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wb4xiyd3tlf09r',1,'Admin',1672319419,'192.168.64.1',2,15,32952,NULL,'VMware: Full name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wc4xiya24bkxs8',1,'Admin',1672319419,'192.168.64.1',2,15,32953,NULL,'VMware: Version','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wd4xiyvcwtu1t9',1,'Admin',1672319419,'192.168.64.1',2,15,33012,NULL,'Remote Zabbix proxy: Utilization of availability manager internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300we4xiy91rhesxv',1,'Admin',1672319419,'192.168.64.1',2,15,33013,NULL,'Remote Zabbix proxy: Utilization of history poller data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wf4xiyhlal5n45',1,'Admin',1672319419,'192.168.64.1',2,15,33014,NULL,'Remote Zabbix server: Trend function cache, % unique requests','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wg4xiy8hpc1ay9',1,'Admin',1672319419,'192.168.64.1',2,15,33015,NULL,'Remote Zabbix server: Trend function cache, % misses','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wh4xiy7ayx6oj2',1,'Admin',1672319419,'192.168.64.1',2,15,33016,NULL,'Remote Zabbix server: Utilization of availability manager internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wi4xiyitr3pt36',1,'Admin',1672319419,'192.168.64.1',2,15,33017,NULL,'Remote Zabbix server: Utilization of history poller data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wj4xiy3hkx6r9l',1,'Admin',1672319419,'192.168.64.1',2,15,33172,NULL,'PostgreSQL: Custom queries','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wk4xiyod5tgzbg',1,'Admin',1672319419,'192.168.64.1',2,15,33173,NULL,'PostgreSQL: Cache hit','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wl4xiylzropp9m',1,'Admin',1672319419,'192.168.64.1',2,15,33174,NULL,'PostgreSQL: Age of oldest xid','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wm4xiyi6lu4x4x',1,'Admin',1672319419,'192.168.64.1',2,15,33175,NULL,'PostgreSQL: Get replication','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wn4xiy8zavhmvy',1,'Admin',1672319419,'192.168.64.1',2,15,33176,NULL,'Checkpoint: Checkpoint sync time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wo4xiymzlzkxq5',1,'Admin',1672319419,'192.168.64.1',2,15,33638,NULL,'VMware: Host memory consumed','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wp4xiy8ta3xx27',1,'Admin',1672319419,'192.168.64.1',2,15,33639,NULL,'VMware: Host memory usage in percents','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wq4xiyx8e1qr47',1,'Admin',1672319419,'192.168.64.1',2,15,33640,NULL,'VMware: CPU latency in percents','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wr4xiykkw9vye7',1,'Admin',1672319419,'192.168.64.1',2,15,33641,NULL,'VMware: Uptime of guest OS','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ws4xiyeduzqsyp',1,'Admin',1672319419,'192.168.64.1',2,15,33642,NULL,'VMware: Guest memory swapped','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wt4xiyt0ino73g',1,'Admin',1672319419,'192.168.64.1',2,15,33643,NULL,'VMware: CPU usage in percents','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wu4xiy1nnmwu4b',1,'Admin',1672319419,'192.168.64.1',2,15,33644,NULL,'VMware: CPU swap-in latency in percents','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wv4xiy93eet2w5',1,'Admin',1672319419,'192.168.64.1',2,15,33645,NULL,'VMware: CPU readiness latency in percents','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300ww4xiykunuajfi',1,'Admin',1672319419,'192.168.64.1',2,15,33646,NULL,'VMware: Power usage','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wx4xiyqzxlh0ek',1,'Admin',1672319419,'192.168.64.1',2,15,33647,NULL,'VMware: Power usage maximum allowed','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wy4xiy5hmpgbvh',1,'Admin',1672319419,'192.168.64.1',2,15,33648,NULL,'VMware: CPU utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300wz4xiyz9oh2z0l',1,'Admin',1672319419,'192.168.64.1',2,15,33649,NULL,'VMware: CPU usage in percents','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300x04xiy7vn8g8pq',1,'Admin',1672319419,'192.168.64.1',2,15,34314,NULL,'Remote Zabbix server: Utilization of report manager internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300x14xiyt3cehnsp',1,'Admin',1672319419,'192.168.64.1',2,15,34315,NULL,'Remote Zabbix server: Utilization of report writer internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300x24xiyuurmfgth',1,'Admin',1672319419,'192.168.64.1',2,15,34336,NULL,'PD: Get instance metrics','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300x34xiy1lxi2zt7',1,'Admin',1672319419,'192.168.64.1',2,15,34337,NULL,'PD: Get instance status','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300x44xiy08bidfz7',1,'Admin',1672319419,'192.168.64.1',2,15,34338,NULL,'PD: GRPC Commands total, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300x54xiyx8o1s9l9',1,'Admin',1672319419,'192.168.64.1',2,15,34339,NULL,'PD: Status','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300x64xiy9lvxlgce',1,'Admin',1672319419,'192.168.64.1',2,15,34340,NULL,'PD: Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300x74xiyhkrj3prs',1,'Admin',1672319419,'192.168.64.1',2,15,34341,NULL,'PD: Version','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300x84xiygj9mp86t',1,'Admin',1672319419,'192.168.64.1',2,15,34367,NULL,'TiDB: Get instance status','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300x94xiyr8iz3mas',1,'Admin',1672319419,'192.168.64.1',2,15,34368,NULL,'TiDB: Get instance metrics','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300xa4xiys8f8pneo',1,'Admin',1672319419,'192.168.64.1',2,15,34369,NULL,'TiDB: CPU','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300xb4xiy3jbsae5n',1,'Admin',1672319419,'192.168.64.1',2,15,34370,NULL,'TiDB: Total server query, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300xc4xiym0wen634',1,'Admin',1672319419,'192.168.64.1',2,15,34371,NULL,'TiDB: Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300xd4xiykunpde63',1,'Admin',1672319419,'192.168.64.1',2,15,34372,NULL,'TiDB: KV commands, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300xe4xiy7ofxf38x',1,'Admin',1672319419,'192.168.64.1',2,15,34373,NULL,'TiDB: TiClient region errors, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300xf4xiy8fcxl6zl',1,'Admin',1672319419,'192.168.64.1',2,15,34374,NULL,'TiDB: Lock resolves, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5300xg4xiyingnm79k',1,'Admin',1672319419,'192.168.64.1',2,15,34375,NULL,'TiDB: KV backoff, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400xh4xiyjd91wnsu',1,'Admin',1672319419,'192.168.64.1',2,15,34376,NULL,'TiDB: Server panic, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400xi4xiy718ur9gg',1,'Admin',1672319419,'192.168.64.1',2,15,34377,NULL,'TiDB: Server critical error, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400xj4xiy1r6j7zoc',1,'Admin',1672319419,'192.168.64.1',2,15,34378,NULL,'TiDB: Server connections','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400xk4xiyzqwav82h',1,'Admin',1672319419,'192.168.64.1',2,15,34379,NULL,'TiDB: Status','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400xl4xiyas1uax1u',1,'Admin',1672319419,'192.168.64.1',2,15,34380,NULL,'TiDB: SQL statements, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400xm4xiyvdd0a50j',1,'Admin',1672319419,'192.168.64.1',2,15,34381,NULL,'TiDB: Schema lease \"outdate\" errors , rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400xn4xiyll449zk8',1,'Admin',1672319419,'192.168.64.1',2,15,34382,NULL,'TiDB: Schema lease \"change\" errors, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400xo4xiyl27puqxq',1,'Admin',1672319419,'192.168.64.1',2,15,34383,NULL,'TiDB: Total \"error\" server query, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400xp4xiy5j3i2k62',1,'Admin',1672319419,'192.168.64.1',2,15,34384,NULL,'TiDB: Total \"ok\" server query, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400xq4xiykickdrwl',1,'Admin',1672319419,'192.168.64.1',2,15,34385,NULL,'TiDB: DDL waiting jobs','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400xr4xiyt8id9bcd',1,'Admin',1672319419,'192.168.64.1',2,15,34386,NULL,'TiDB: RSS memory usage','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400xs4xiys5o3wz8k',1,'Admin',1672319419,'192.168.64.1',2,15,34387,NULL,'TiDB: Open file descriptors','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400xt4xiy57bjausk',1,'Admin',1672319419,'192.168.64.1',2,15,34388,NULL,'TiDB: Open file descriptors, max','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400xu4xiyxs32nd8f',1,'Admin',1672319419,'192.168.64.1',2,15,34389,NULL,'TiDB: PD TSO requests, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400xv4xiy3zzpnef9',1,'Admin',1672319419,'192.168.64.1',2,15,34390,NULL,'TiDB: PD TSO commands, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400xw4xiyazooi2m5',1,'Admin',1672319419,'192.168.64.1',2,15,34391,NULL,'TiDB: Time jump back, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400xx4xiy9gxn4e6d',1,'Admin',1672319419,'192.168.64.1',2,15,34392,NULL,'TiDB: Keep alive, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400xy4xiylbee25yv',1,'Admin',1672319419,'192.168.64.1',2,15,34393,NULL,'TiDB: Heap memory usage','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400xz4xiy3i7a5rgk',1,'Admin',1672319419,'192.168.64.1',2,15,34394,NULL,'TiDB: Goroutine count','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400y04xiyeejvxwza',1,'Admin',1672319419,'192.168.64.1',2,15,34395,NULL,'TiDB: Failed Query, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400y14xiy1oz5y3d2',1,'Admin',1672319419,'192.168.64.1',2,15,34396,NULL,'TiDB: Load schema total, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400y24xiyb75wbp33',1,'Admin',1672319419,'192.168.64.1',2,15,34397,NULL,'TiDB: Load schema failed, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400y34xiy8o1p9dgr',1,'Admin',1672319419,'192.168.64.1',2,15,34398,NULL,'TiDB: Version','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400y44xiyhtamhmwg',1,'Admin',1672319419,'192.168.64.1',2,15,34412,NULL,'TiKV: Get instance metrics','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400y54xiy8qey4yo1',1,'Admin',1672319419,'192.168.64.1',2,15,34413,NULL,'TiKV: Scheduler: High priority commands total, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400y64xiyrfhtexln',1,'Admin',1672319419,'192.168.64.1',2,15,34414,NULL,'TiKV: Regions, count','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400y74xiy7zbp22l9',1,'Admin',1672319419,'192.168.64.1',2,15,34415,NULL,'TiKV: Capacity size','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400y84xiywq50t7rh',1,'Admin',1672319419,'192.168.64.1',2,15,34416,NULL,'TiKV: Available size','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400y94xiy32qpj90e',1,'Admin',1672319419,'192.168.64.1',2,15,34417,NULL,'TiKV: Storage: commands total, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400ya4xiyp2zdvuh8',1,'Admin',1672319419,'192.168.64.1',2,15,34418,NULL,'TiKV: Snapshot: Sending','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yb4xiyyoxc7zd3',1,'Admin',1672319419,'192.168.64.1',2,15,34419,NULL,'TiKV: Snapshot: Receiving','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yc4xiy5drmt3zw',1,'Admin',1672319419,'192.168.64.1',2,15,34420,NULL,'TiKV: Snapshot: Applying','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yd4xiyp6j98g7p',1,'Admin',1672319419,'192.168.64.1',2,15,34421,NULL,'TiKV: Scheduler: Busy, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400ye4xiy13jaz09k',1,'Admin',1672319419,'192.168.64.1',2,15,34422,NULL,'TiKV: Snapshot: Pending tasks','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yf4xiy1nya82qx',1,'Admin',1672319419,'192.168.64.1',2,15,34423,NULL,'TiKV: Scheduler: Commands total, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yg4xiy84nxp0xt',1,'Admin',1672319419,'192.168.64.1',2,15,34424,NULL,'TiKV: RSS memory usage','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yh4xiynv75o5p3',1,'Admin',1672319419,'192.168.64.1',2,15,34425,NULL,'TiKV: Regions, leader','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yi4xiygygzd5mw',1,'Admin',1672319419,'192.168.64.1',2,15,34426,NULL,'TiKV: Server: failure messages total, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yj4xiys15oy4rz',1,'Admin',1672319419,'192.168.64.1',2,15,34427,NULL,'TiKV: Scheduler: Low priority commands total, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yk4xiyvocvsp01',1,'Admin',1672319419,'192.168.64.1',2,15,34428,NULL,'TiKV: Total query errors, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yl4xiyii5ul80k',1,'Admin',1672319419,'192.168.64.1',2,15,34429,NULL,'TiKV: Total query, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400ym4xiy9ovtjs0k',1,'Admin',1672319419,'192.168.64.1',2,15,34430,NULL,'TiKV: Store size','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yn4xiyzf4x7pny',1,'Admin',1672319419,'192.168.64.1',2,15,34431,NULL,'TiKV: Bytes write','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yo4xiymg8d19fz',1,'Admin',1672319419,'192.168.64.1',2,15,34432,NULL,'TiKV: Bytes read','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yp4xiyn3em9i90',1,'Admin',1672319419,'192.168.64.1',2,15,34433,NULL,'TiKV: CPU util','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yq4xiydjyw6k5x',1,'Admin',1672319419,'192.168.64.1',2,15,34434,NULL,'TiKV: Coprocessor: Response size, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yr4xiy26n0udl3',1,'Admin',1672319419,'192.168.64.1',2,15,34435,NULL,'TiKV: Coprocessor: RocksDB ops, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400ys4xiyunvuv2m4',1,'Admin',1672319419,'192.168.64.1',2,15,34436,NULL,'TiKV: Coprocessor: Errors, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yt4xiyui7cim5q',1,'Admin',1672319419,'192.168.64.1',2,15,34437,NULL,'TiKV: Coprocessor: Requests, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yu4xiylj0r03ty',1,'Admin',1672319419,'192.168.64.1',2,15,34438,NULL,'TiKV: Scheduler: Normal priority commands total, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yv4xiyt7wirmoc',1,'Admin',1672319419,'192.168.64.1',2,15,34439,NULL,'TiKV: Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yw4xiysbqossht',1,'Admin',1672319419,'192.168.64.1',2,15,34937,NULL,'WildFly: Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yx4xiyw7s4x7ky',1,'Admin',1672319419,'192.168.64.1',2,15,34938,NULL,'WildFly: Launch type','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yy4xiys50l45v5',1,'Admin',1672319419,'192.168.64.1',2,15,34939,NULL,'WildFly: Name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400yz4xiynzcm3ca2',1,'Admin',1672319419,'192.168.64.1',2,15,34940,NULL,'WildFly: Process type','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400z04xiyqxcz8tc4',1,'Admin',1672319419,'192.168.64.1',2,15,34941,NULL,'WildFly: Version','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400z14xiyzgvbjgw2',1,'Admin',1672319419,'192.168.64.1',2,15,34949,NULL,'WildFly: Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400z24xiy48bqguce',1,'Admin',1672319419,'192.168.64.1',2,15,34950,NULL,'WildFly: Transactions: Committed, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400z34xiy1dk8b9fk',1,'Admin',1672319419,'192.168.64.1',2,15,34951,NULL,'WildFly: Transactions: Timed out, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400z44xiy7zhadoc2',1,'Admin',1672319419,'192.168.64.1',2,15,34952,NULL,'WildFly: Transactions: System rollbacks, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400z54xiyciqunrxh',1,'Admin',1672319419,'192.168.64.1',2,15,34953,NULL,'WildFly: Transactions: ResourceRollbacks, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400z64xiy0diojiyu',1,'Admin',1672319419,'192.168.64.1',2,15,34954,NULL,'WildFly: Transactions: Nested, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400z74xiy6pc2r7ss',1,'Admin',1672319419,'192.168.64.1',2,15,34955,NULL,'WildFly: Transactions: Current','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400z84xiy8wq4zoq8',1,'Admin',1672319419,'192.168.64.1',2,15,34956,NULL,'WildFly: Transactions: Heuristics, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400z94xiylbhbzsif',1,'Admin',1672319419,'192.168.64.1',2,15,34957,NULL,'WildFly: Transactions: Application rollbacks, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400za4xiyvin02dm6',1,'Admin',1672319419,'192.168.64.1',2,15,34958,NULL,'WildFly: Launch type','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zb4xiycomk28sc',1,'Admin',1672319419,'192.168.64.1',2,15,34959,NULL,'WildFly: Transactions: Aborted, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zc4xiyewoataq1',1,'Admin',1672319419,'192.168.64.1',2,15,34960,NULL,'WildFly: Server controller state','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zd4xiyd5754azg',1,'Admin',1672319419,'192.168.64.1',2,15,34961,NULL,'WildFly: Runtime configuration state','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400ze4xiyibcweb3f',1,'Admin',1672319419,'192.168.64.1',2,15,34962,NULL,'WildFly: Version','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zf4xiycpmt16i5',1,'Admin',1672319419,'192.168.64.1',2,15,34963,NULL,'WildFly: Process type','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zg4xiy7h4ertkw',1,'Admin',1672319419,'192.168.64.1',2,15,34964,NULL,'WildFly: Name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zh4xiyj28elted',1,'Admin',1672319419,'192.168.64.1',2,15,34965,NULL,'WildFly: Transactions: Total, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zi4xiy5uxlel5o',1,'Admin',1672319419,'192.168.64.1',2,15,35064,NULL,'Cert: Get','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zj4xiy9934f4z9',1,'Admin',1672319419,'192.168.64.1',2,15,35065,NULL,'Cert: Subject alternative name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zk4xiygm8vxcvx',1,'Admin',1672319419,'192.168.64.1',2,15,35066,NULL,'Cert: Issuer','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zl4xiydmiwz9qm',1,'Admin',1672319419,'192.168.64.1',2,15,35067,NULL,'Cert: Last validation status','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zm4xiygpt82f3u',1,'Admin',1672319419,'192.168.64.1',2,15,35068,NULL,'Cert: Expires on','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zn4xiy7h4wp55o',1,'Admin',1672319419,'192.168.64.1',2,15,35069,NULL,'Cert: Valid from','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zo4xiynutqsky8',1,'Admin',1672319419,'192.168.64.1',2,15,35070,NULL,'Cert: Public key algorithm','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zp4xiynkr9zai1',1,'Admin',1672319419,'192.168.64.1',2,15,35071,NULL,'Cert: Serial number','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zq4xiyajbldiri',1,'Admin',1672319419,'192.168.64.1',2,15,35072,NULL,'Cert: Fingerprint','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zr4xiy3xc6cq7q',1,'Admin',1672319419,'192.168.64.1',2,15,35073,NULL,'Cert: Signature algorithm','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zs4xiym1gigsut',1,'Admin',1672319419,'192.168.64.1',2,15,35074,NULL,'Cert: Subject','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zt4xiy2ps3s90n',1,'Admin',1672319419,'192.168.64.1',2,15,35075,NULL,'Cert: Validation result','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zu4xiyj3i3yu0w',1,'Admin',1672319419,'192.168.64.1',2,15,35076,NULL,'Cert: Version','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zv4xiy06uined7',1,'Admin',1672319419,'192.168.64.1',2,15,35278,NULL,'Remote Zabbix server: Utilization of trigger housekeeper internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zw4xiy8v91gxnw',1,'Admin',1672319419,'192.168.64.1',2,15,35279,NULL,'Remote Zabbix server: Utilization of service manager internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zx4xiyuhptxqsb',1,'Admin',1672319419,'192.168.64.1',2,15,36772,NULL,'Travis: Get builds','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zy4xiyrgze2tlp',1,'Admin',1672319419,'192.168.64.1',2,15,36773,NULL,'Travis: Get health','clc93sy0x00004xiybc9tr37a',''),('clc93sy5400zz4xiyk1mm6tlf',1,'Admin',1672319419,'192.168.64.1',2,15,36774,NULL,'Travis: Get jobs','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401004xiy6ji0rp5a',1,'Admin',1672319419,'192.168.64.1',2,15,36775,NULL,'Travis: Get repos','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401014xiymxfesne1',1,'Admin',1672319419,'192.168.64.1',2,15,36776,NULL,'Travis: Builds duration','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401024xiyh71sokm9',1,'Admin',1672319419,'192.168.64.1',2,15,36777,NULL,'Travis: Builds','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401034xiyaauewa9p',1,'Admin',1672319419,'192.168.64.1',2,15,36778,NULL,'Travis: Jobs active','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401044xiyrwn4o360',1,'Admin',1672319419,'192.168.64.1',2,15,36779,NULL,'Travis: Jobs in queue','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401054xiy2tlxssxu',1,'Admin',1672319419,'192.168.64.1',2,15,36780,NULL,'Travis: Jobs passed','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401064xiytuv53enc',1,'Admin',1672319419,'192.168.64.1',2,15,39742,NULL,'Velocloud: System properties','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401074xiy5mfv6nei',1,'Admin',1672319419,'192.168.64.1',2,15,39743,NULL,'Velocloud: Get data','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401084xiysfgqj0h0',1,'Admin',1672319419,'192.168.64.1',2,15,39744,NULL,'Velocloud: Clear data','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401094xiy8yl7bg2a',1,'Admin',1672319419,'192.168.64.1',2,15,39745,NULL,'Velocloud: Get data collection errors','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010a4xiy519931n9',1,'Admin',1672319419,'192.168.64.1',2,15,39746,NULL,'Velocloud: Orchestrator API version','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010b4xiyhzdtaxss',1,'Admin',1672319419,'192.168.64.1',2,15,39747,NULL,'Velocloud: Orchestrator build','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010c4xiy9kwpbl7o',1,'Admin',1672319419,'192.168.64.1',2,15,39748,NULL,'Velocloud: Orchestrator version','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010d4xiymntqc48e',1,'Admin',1672319419,'192.168.64.1',2,15,39821,NULL,'WAL: Bytes received','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010e4xiy9ol1eag4',1,'Admin',1672319419,'192.168.64.1',2,15,39824,NULL,'Remote Zabbix server: Utilization of ODBC poller data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010f4xiyav6iuyo8',1,'Admin',1672319419,'192.168.64.1',2,15,39825,NULL,'Remote Zabbix proxy: Utilization of ODBC poller data collector processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010g4xiy4fhd26g5',1,'Admin',1672319419,'192.168.64.1',2,15,40185,NULL,'Remote Zabbix proxy: Required performance','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010h4xiyzh1m2ty7',1,'Admin',1672319419,'192.168.64.1',2,15,40186,NULL,'Remote Zabbix proxy: Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010i4xiy4dejmp5k',1,'Admin',1672319419,'192.168.64.1',2,15,40187,NULL,'Remote Zabbix proxy: Preprocessing queue','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010j4xiyg06s7oaa',1,'Admin',1672319419,'192.168.64.1',2,15,40188,NULL,'Remote Zabbix proxy: Utilization of preprocessing manager internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010k4xiyfddecgp5',1,'Admin',1672319419,'192.168.64.1',2,15,40189,NULL,'Remote Zabbix proxy: Utilization of preprocessing worker internal processes, in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010l4xiyug994uvf',1,'Admin',1672319419,'192.168.64.1',2,15,42110,NULL,'ICMP ping','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010m4xiy0leh7wq5',1,'Admin',1672319419,'192.168.64.1',2,15,42111,NULL,'Uptime (network)','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010n4xiyw93c93i6',1,'Admin',1672319419,'192.168.64.1',2,15,42112,NULL,'System object ID','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010o4xiyxctt7vv4',1,'Admin',1672319419,'192.168.64.1',2,15,42113,NULL,'System name','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010p4xiy7x6tl0qt',1,'Admin',1672319419,'192.168.64.1',2,15,42114,NULL,'System location','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010q4xiyl5bo7w6u',1,'Admin',1672319419,'192.168.64.1',2,15,42115,NULL,'ICMP loss','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010r4xiyq14j1poo',1,'Admin',1672319419,'192.168.64.1',2,15,42116,NULL,'System description','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010s4xiyfys5xlra',1,'Admin',1672319419,'192.168.64.1',2,15,42117,NULL,'System contact details','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010t4xiyfvvoeeed',1,'Admin',1672319419,'192.168.64.1',2,15,42118,NULL,'SNMP traps (fallback)','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010u4xiyhzicfvy6',1,'Admin',1672319419,'192.168.64.1',2,15,42119,NULL,'ICMP response time','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010v4xiym9bmzk3v',1,'Admin',1672319419,'192.168.64.1',2,15,42120,NULL,'SNMP agent availability','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010w4xiye9tsy1is',1,'Admin',1672319419,'192.168.64.1',2,15,42133,NULL,'ICMP ping','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010x4xiyay7jcj9h',1,'Admin',1672319419,'192.168.64.1',2,15,42134,NULL,'ICMP loss','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010y4xiyhuq0bsqa',1,'Admin',1672319419,'192.168.64.1',2,15,42135,NULL,'ICMP response time','clc93sy0x00004xiybc9tr37a',''),('clc93sy54010z4xiyejvvy3tg',1,'Admin',1672319419,'192.168.64.1',2,15,42136,NULL,'SNMP traps (fallback)','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401104xiyd8l62cj6',1,'Admin',1672319419,'192.168.64.1',2,15,42137,NULL,'System contact details','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401114xiyabbo7hgx',1,'Admin',1672319419,'192.168.64.1',2,15,42138,NULL,'System description','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401124xiyuyz0aqzz',1,'Admin',1672319419,'192.168.64.1',2,15,42139,NULL,'System location','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401134xiy8m4zj5es',1,'Admin',1672319419,'192.168.64.1',2,15,42140,NULL,'System name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401144xiyoqxsv3x5',1,'Admin',1672319419,'192.168.64.1',2,15,42141,NULL,'System object ID','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401154xiypwn0uo50',1,'Admin',1672319419,'192.168.64.1',2,15,42142,NULL,'Uptime (network)','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401164xiyf2yr7qec',1,'Admin',1672319419,'192.168.64.1',2,15,42143,NULL,'SNMP agent availability','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401174xiyu4svxm87',1,'Admin',1672319419,'192.168.64.1',2,15,42154,NULL,'ICMP ping','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401184xiyd7ktr998',1,'Admin',1672319419,'192.168.64.1',2,15,42155,NULL,'System name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401194xiyinlm9ias',1,'Admin',1672319419,'192.168.64.1',2,15,42156,NULL,'Uptime (network)','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011a4xiyi1gqewk2',1,'Admin',1672319419,'192.168.64.1',2,15,42157,NULL,'System object ID','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011b4xiyz1hu5quy',1,'Admin',1672319419,'192.168.64.1',2,15,42158,NULL,'System location','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011c4xiywez7vol7',1,'Admin',1672319419,'192.168.64.1',2,15,42159,NULL,'ICMP loss','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011d4xiy988z5iat',1,'Admin',1672319419,'192.168.64.1',2,15,42160,NULL,'System description','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011e4xiyzlceab8g',1,'Admin',1672319419,'192.168.64.1',2,15,42161,NULL,'System contact details','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011f4xiy1arait35',1,'Admin',1672319419,'192.168.64.1',2,15,42162,NULL,'SNMP traps (fallback)','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011g4xiypgj8d1l4',1,'Admin',1672319419,'192.168.64.1',2,15,42163,NULL,'ICMP response time','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011h4xiyzpe2fktn',1,'Admin',1672319419,'192.168.64.1',2,15,42164,NULL,'SNMP agent availability','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011i4xiy2emkvmuj',1,'Admin',1672319419,'192.168.64.1',2,15,42451,NULL,'Host name of Zabbix agent running','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011j4xiyl2pvogrd',1,'Admin',1672319419,'192.168.64.1',2,15,42452,NULL,'Zabbix agent ping','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011k4xiyvupucxjz',1,'Admin',1672319419,'192.168.64.1',2,15,42453,NULL,'Version of Zabbix agent running','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011l4xiyckva838p',1,'Admin',1672319419,'192.168.64.1',2,15,42454,NULL,'Zabbix agent availability','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011m4xiyfsaffwdt',1,'Admin',1672319419,'192.168.64.1',2,15,42455,NULL,'Host name of Zabbix agent running','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011n4xiyzmp3xfc7',1,'Admin',1672319419,'192.168.64.1',2,15,42456,NULL,'Zabbix agent ping','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011o4xiy0mgbkylc',1,'Admin',1672319419,'192.168.64.1',2,15,42457,NULL,'Number of cores','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011p4xiy5wb675w1',1,'Admin',1672319419,'192.168.64.1',2,15,42458,NULL,'Network interfaces WMI get','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011q4xiy3lm3mq5k',1,'Admin',1672319419,'192.168.64.1',2,15,42459,NULL,'Memory utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011r4xiyccj8by0a',1,'Admin',1672319419,'192.168.64.1',2,15,42460,NULL,'Used memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011s4xiybae8bcgo',1,'Admin',1672319419,'192.168.64.1',2,15,42461,NULL,'Total memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011t4xiygfauxiti',1,'Admin',1672319419,'192.168.64.1',2,15,42462,NULL,'Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011u4xiypr5elyxl',1,'Admin',1672319419,'192.168.64.1',2,15,42463,NULL,'System description','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011v4xiyzrvt9n39',1,'Admin',1672319419,'192.168.64.1',2,15,42464,NULL,'Total swap space','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011w4xiy45z1dxh3',1,'Admin',1672319419,'192.168.64.1',2,15,42465,NULL,'Free swap space','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011x4xiyzclxm2f3',1,'Admin',1672319419,'192.168.64.1',2,15,42466,NULL,'Operating system architecture','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011y4xiyi9a0e94d',1,'Admin',1672319419,'192.168.64.1',2,15,42467,NULL,'System local time','clc93sy0x00004xiybc9tr37a',''),('clc93sy54011z4xiy2l4b31fy',1,'Admin',1672319419,'192.168.64.1',2,15,42468,NULL,'System name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401204xiy3ydcan4c',1,'Admin',1672319419,'192.168.64.1',2,15,42469,NULL,'CPU utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401214xiyemko8afn',1,'Admin',1672319419,'192.168.64.1',2,15,42470,NULL,'Number of processes','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401224xiypvm4jjad',1,'Admin',1672319419,'192.168.64.1',2,15,42471,NULL,'Number of threads','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401234xiyidusf2gi',1,'Admin',1672319419,'192.168.64.1',2,15,42472,NULL,'CPU queue length','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401244xiy1k1o9ex9',1,'Admin',1672319419,'192.168.64.1',2,15,42473,NULL,'Context switches per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401254xiy46654qyb',1,'Admin',1672319419,'192.168.64.1',2,15,42474,NULL,'CPU user time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401264xiyzvgmapun',1,'Admin',1672319419,'192.168.64.1',2,15,42475,NULL,'CPU privileged time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401274xiyzgbb94tr',1,'Admin',1672319419,'192.168.64.1',2,15,42476,NULL,'CPU interrupt time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401284xiy5clj3btp',1,'Admin',1672319419,'192.168.64.1',2,15,42477,NULL,'CPU DPC time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401294xiy441sgi5n',1,'Admin',1672319419,'192.168.64.1',2,15,42478,NULL,'Used swap space in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012a4xiy2djmrhjn',1,'Admin',1672319419,'192.168.64.1',2,15,42479,NULL,'Memory pool non-paged','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012b4xiyzvi60pkf',1,'Admin',1672319419,'192.168.64.1',2,15,42480,NULL,'Memory pages per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012c4xiyy408cqz6',1,'Admin',1672319419,'192.168.64.1',2,15,42481,NULL,'Memory page faults per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012d4xiyw1sp2elq',1,'Admin',1672319419,'192.168.64.1',2,15,42482,NULL,'Free system page table entries','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012e4xiyp9nehhwp',1,'Admin',1672319419,'192.168.64.1',2,15,42483,NULL,'Cache bytes','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012f4xiyvl7mk382',1,'Admin',1672319419,'192.168.64.1',2,15,42484,NULL,'Version of Zabbix agent running','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012g4xiy76hk3i0t',1,'Admin',1672319419,'192.168.64.1',2,15,42485,NULL,'Zabbix agent availability','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012h4xiyxksenrr6',1,'Admin',1672319419,'192.168.64.1',2,15,42486,NULL,'Free swap space in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012i4xiyketp0v6f',1,'Admin',1672319419,'192.168.64.1',2,15,42512,NULL,'Host name of Zabbix agent running','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012j4xiyl58clgfp',1,'Admin',1672319419,'192.168.64.1',2,15,42513,NULL,'Number of processes','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012k4xiyxvmiw55y',1,'Admin',1672319419,'192.168.64.1',2,15,42514,NULL,'Network interfaces WMI get','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012l4xiy14iocy9o',1,'Admin',1672319419,'192.168.64.1',2,15,42515,NULL,'Memory utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012m4xiy8b7u3mnh',1,'Admin',1672319419,'192.168.64.1',2,15,42516,NULL,'Used memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012n4xiywlh7u7dt',1,'Admin',1672319419,'192.168.64.1',2,15,42517,NULL,'Total memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012o4xiyayd8mujw',1,'Admin',1672319419,'192.168.64.1',2,15,42518,NULL,'Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012p4xiymp5858sb',1,'Admin',1672319419,'192.168.64.1',2,15,42519,NULL,'System description','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012q4xiyuncwvxx1',1,'Admin',1672319419,'192.168.64.1',2,15,42520,NULL,'Total swap space','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012r4xiyagmg6l5k',1,'Admin',1672319419,'192.168.64.1',2,15,42521,NULL,'Free swap space','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012s4xiyajf7wab9',1,'Admin',1672319419,'192.168.64.1',2,15,42522,NULL,'Operating system architecture','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012t4xiyht9a7dp5',1,'Admin',1672319419,'192.168.64.1',2,15,42523,NULL,'System local time','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012u4xiy8767j78y',1,'Admin',1672319419,'192.168.64.1',2,15,42524,NULL,'System name','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012v4xiyey6hntsi',1,'Admin',1672319419,'192.168.64.1',2,15,42525,NULL,'CPU utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012w4xiykvhde4n2',1,'Admin',1672319419,'192.168.64.1',2,15,42526,NULL,'Number of threads','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012x4xiy652v6foa',1,'Admin',1672319419,'192.168.64.1',2,15,42527,NULL,'Zabbix agent ping','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012y4xiy2342xsj4',1,'Admin',1672319419,'192.168.64.1',2,15,42528,NULL,'CPU queue length','clc93sy0x00004xiybc9tr37a',''),('clc93sy54012z4xiyb1kx4h3b',1,'Admin',1672319419,'192.168.64.1',2,15,42529,NULL,'Context switches per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401304xiyqt2uw5zd',1,'Admin',1672319419,'192.168.64.1',2,15,42530,NULL,'CPU user time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401314xiyt0pu5pkr',1,'Admin',1672319419,'192.168.64.1',2,15,42531,NULL,'CPU privileged time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401324xiyy857tca0',1,'Admin',1672319419,'192.168.64.1',2,15,42532,NULL,'CPU interrupt time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401334xiy1sjylbpd',1,'Admin',1672319419,'192.168.64.1',2,15,42533,NULL,'CPU DPC time','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401344xiy8r3j6w6e',1,'Admin',1672319419,'192.168.64.1',2,15,42534,NULL,'Used swap space in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401354xiycrql18ay',1,'Admin',1672319419,'192.168.64.1',2,15,42535,NULL,'Memory pool non-paged','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401364xiyh9vouheg',1,'Admin',1672319419,'192.168.64.1',2,15,42536,NULL,'Memory pages per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401374xiysubhxgyd',1,'Admin',1672319419,'192.168.64.1',2,15,42537,NULL,'Memory page faults per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401384xiy8xqgkn40',1,'Admin',1672319419,'192.168.64.1',2,15,42538,NULL,'Free system page table entries','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401394xiyr58nzr0n',1,'Admin',1672319419,'192.168.64.1',2,15,42539,NULL,'Cache bytes','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013a4xiyaz50jymu',1,'Admin',1672319419,'192.168.64.1',2,15,42540,NULL,'Version of Zabbix agent running','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013b4xiycvhekxh9',1,'Admin',1672319419,'192.168.64.1',2,15,42541,NULL,'Number of cores','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013c4xiy2gburban',1,'Admin',1672319419,'192.168.64.1',2,15,42542,NULL,'Free swap space in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013d4xiyv29nv8gy',1,'Admin',1672319419,'192.168.64.1',2,15,42568,NULL,'ICMP ping','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013e4xiyjcnfpfnf',1,'Admin',1672319419,'192.168.64.1',2,15,42569,NULL,'ICMP loss','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013f4xiyxha714g9',1,'Admin',1672319419,'192.168.64.1',2,15,42570,NULL,'ICMP response time','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013g4xiy4ep0mxli',1,'Admin',1672319419,'192.168.64.1',2,15,42571,NULL,'SNMP traps (fallback)','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013h4xiy8f5vblfg',1,'Admin',1672319419,'192.168.64.1',2,15,42572,NULL,'System contact details','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013i4xiy00ke99pi',1,'Admin',1672319419,'192.168.64.1',2,15,42573,NULL,'CPU utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013j4xiyni9hmrvx',1,'Admin',1672319419,'192.168.64.1',2,15,42574,NULL,'System description','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013k4xiyfoh147mw',1,'Admin',1672319419,'192.168.64.1',2,15,42575,NULL,'System location','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013l4xiypr6kii86',1,'Admin',1672319419,'192.168.64.1',2,15,42576,NULL,'System name','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013m4xiyptt806qb',1,'Admin',1672319419,'192.168.64.1',2,15,42577,NULL,'System object ID','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013n4xiyhh0bq0cl',1,'Admin',1672319419,'192.168.64.1',2,15,42578,NULL,'Uptime (network)','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013o4xiyo16i768r',1,'Admin',1672319419,'192.168.64.1',2,15,42579,NULL,'SNMP agent availability','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013p4xiyj1eknkd6',1,'Admin',1672319419,'192.168.64.1',2,15,42664,NULL,'ICMP ping','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013q4xiy5mmxbmca',1,'Admin',1672319419,'192.168.64.1',2,15,42665,NULL,'ICMP loss','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013r4xiyaxdzp6x7',1,'Admin',1672319419,'192.168.64.1',2,15,42666,NULL,'ICMP response time','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013s4xiywsw3rdwd',1,'Admin',1672319419,'192.168.64.1',2,15,42667,NULL,'SNMP traps (fallback)','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013t4xiytlkndu8s',1,'Admin',1672319419,'192.168.64.1',2,15,42668,NULL,'System contact details','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013u4xiyb5p6s67p',1,'Admin',1672319419,'192.168.64.1',2,15,42669,NULL,'System description','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013v4xiycrcc6sty',1,'Admin',1672319419,'192.168.64.1',2,15,42670,NULL,'System location','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013w4xiymbrlahpp',1,'Admin',1672319419,'192.168.64.1',2,15,42671,NULL,'System name','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013x4xiyxuk1l5dc',1,'Admin',1672319419,'192.168.64.1',2,15,42672,NULL,'System object ID','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013y4xiyq0lr88wr',1,'Admin',1672319419,'192.168.64.1',2,15,42673,NULL,'Uptime (network)','clc93sy0x00004xiybc9tr37a',''),('clc93sy54013z4xiyc4ed13vw',1,'Admin',1672319419,'192.168.64.1',2,15,42674,NULL,'SNMP agent availability','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401404xiydqhu1292',1,'Admin',1672319419,'192.168.64.1',2,15,42676,NULL,'TiKV: Scheduler: Pending commands','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401414xiyrk0bmwp6',1,'Admin',1672319419,'192.168.64.1',2,15,42677,NULL,'TiKV: Coprocessor: Scan keys, rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401424xiyac1p7wcw',1,'Admin',1672319419,'192.168.64.1',2,15,42738,NULL,'Proxmox: API service status','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401434xiy063vtwso',1,'Admin',1672319419,'192.168.64.1',2,15,42739,NULL,'Proxmox: Get cluster resources','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401444xiyxy9p3503',1,'Admin',1672319419,'192.168.64.1',2,15,42740,NULL,'Proxmox: Get cluster status','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401454xiyumq24isu',1,'Admin',1672319419,'192.168.64.1',2,15,42792,NULL,'TrueNAS: ICMP ping','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401464xiykms3cv2k',1,'Admin',1672319419,'192.168.64.1',2,15,42793,NULL,'TrueNAS: L2ARC write rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401474xiy7sjkr0a3',1,'Admin',1672319419,'192.168.64.1',2,15,42794,NULL,'TrueNAS: ARC misses','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401484xiynpb19c56',1,'Admin',1672319419,'192.168.64.1',2,15,42795,NULL,'TrueNAS: ARC target size of MRU','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401494xiykwt9y4af',1,'Admin',1672319419,'192.168.64.1',2,15,42796,NULL,'TrueNAS: ARC size','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014a4xiyk70slfl9',1,'Admin',1672319419,'192.168.64.1',2,15,42797,NULL,'TrueNAS: L2ARC hits','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014b4xiyd4iuoexn',1,'Admin',1672319419,'192.168.64.1',2,15,42798,NULL,'TrueNAS: L2ARC misses','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014c4xiy055gy0rn',1,'Admin',1672319419,'192.168.64.1',2,15,42799,NULL,'TrueNAS: L2ARC read rate','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014d4xiygjuc8a0u',1,'Admin',1672319419,'192.168.64.1',2,15,42800,NULL,'TrueNAS: L2ARC size','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014e4xiyn2fjc38h',1,'Admin',1672319419,'192.168.64.1',2,15,42801,NULL,'TrueNAS: ZIL operations 1 second','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014f4xiybezujoe7',1,'Admin',1672319419,'192.168.64.1',2,15,42802,NULL,'TrueNAS: ARC metadata size','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014g4xiy63zzoa07',1,'Admin',1672319419,'192.168.64.1',2,15,42803,NULL,'TrueNAS: ZIL operations 5 seconds','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014h4xiyqbhpsuhl',1,'Admin',1672319419,'192.168.64.1',2,15,42804,NULL,'TrueNAS: ZIL operations 10 seconds','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014i4xiy39wdqjgb',1,'Admin',1672319419,'192.168.64.1',2,15,42805,NULL,'TrueNAS: Available memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014j4xiybxn8nd8o',1,'Admin',1672319419,'192.168.64.1',2,15,42806,NULL,'TrueNAS: Memory (buffers)','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014k4xiyw49k1klt',1,'Admin',1672319419,'192.168.64.1',2,15,42807,NULL,'TrueNAS: Memory (cached)','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014l4xiy9owez5gf',1,'Admin',1672319419,'192.168.64.1',2,15,42808,NULL,'TrueNAS: Free memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014m4xiy48tygomv',1,'Admin',1672319419,'192.168.64.1',2,15,42809,NULL,'TrueNAS: Total memory','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014n4xiy25crtzlu',1,'Admin',1672319419,'192.168.64.1',2,15,42810,NULL,'TrueNAS: Memory utilization','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014o4xiyzku7p4am',1,'Admin',1672319419,'192.168.64.1',2,15,42811,NULL,'TrueNAS: ARC cache miss ratio','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014p4xiygsupxn56',1,'Admin',1672319419,'192.168.64.1',2,15,42812,NULL,'TrueNAS: ARC hits','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014q4xiyld7irjrz',1,'Admin',1672319419,'192.168.64.1',2,15,42813,NULL,'TrueNAS: ICMP loss','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014r4xiylth23tzp',1,'Admin',1672319419,'192.168.64.1',2,15,42814,NULL,'TrueNAS: System description','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014s4xiyhukj8kcq',1,'Admin',1672319419,'192.168.64.1',2,15,42815,NULL,'TrueNAS: ICMP response time','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014t4xiykwi9o9ds',1,'Admin',1672319419,'192.168.64.1',2,15,42816,NULL,'TrueNAS: System contact details','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014u4xiyj11jk0oy',1,'Admin',1672319419,'192.168.64.1',2,15,42817,NULL,'TrueNAS: Interrupts per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014v4xiy08q5pwmn',1,'Admin',1672319419,'192.168.64.1',2,15,42818,NULL,'TrueNAS: Load average (1m avg)','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014w4xiy78usic7s',1,'Admin',1672319419,'192.168.64.1',2,15,42819,NULL,'TrueNAS: Load average (5m avg)','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014x4xiy2x6kho5j',1,'Admin',1672319419,'192.168.64.1',2,15,42820,NULL,'TrueNAS: Load average (15m avg)','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014y4xiy5ytbayag',1,'Admin',1672319419,'192.168.64.1',2,15,42821,NULL,'TrueNAS: Number of CPUs','clc93sy0x00004xiybc9tr37a',''),('clc93sy54014z4xiydcu2nf35',1,'Admin',1672319419,'192.168.64.1',2,15,42822,NULL,'TrueNAS: Context switches per second','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401504xiyzminsehd',1,'Admin',1672319419,'192.168.64.1',2,15,42823,NULL,'TrueNAS: System location','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401514xiym42cvlhm',1,'Admin',1672319419,'192.168.64.1',2,15,42824,NULL,'TrueNAS: ARC cache hit ratio','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401524xiy7sb3gb3k',1,'Admin',1672319419,'192.168.64.1',2,15,42825,NULL,'TrueNAS: System name','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401534xiy03wd71ka',1,'Admin',1672319419,'192.168.64.1',2,15,42826,NULL,'TrueNAS: System object ID','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401544xiyewzl4jql',1,'Admin',1672319419,'192.168.64.1',2,15,42827,NULL,'TrueNAS: Free swap space','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401554xiy83qn5qqj',1,'Admin',1672319419,'192.168.64.1',2,15,42828,NULL,'TrueNAS: Free swap space in %','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401564xiyzpqd574t',1,'Admin',1672319419,'192.168.64.1',2,15,42829,NULL,'TrueNAS: Total swap space','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401574xiy6huf8hc9',1,'Admin',1672319419,'192.168.64.1',2,15,42830,NULL,'TrueNAS: Uptime','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401584xiywjnhqkeh',1,'Admin',1672319419,'192.168.64.1',2,15,42831,NULL,'TrueNAS: ARC target size of cache','clc93sy0x00004xiybc9tr37a',''),('clc93sy5401594xiy1d1wsg4r',1,'Admin',1672319419,'192.168.64.1',2,15,42832,NULL,'TrueNAS: ARC data size','clc93sy0x00004xiybc9tr37a',''),('clc93sy54015a4xiyp75i91cu',1,'Admin',1672319419,'192.168.64.1',2,15,42833,NULL,'TrueNAS: SNMP agent availability','clc93sy0x00004xiybc9tr37a',''),('clc93sy54015b4xiyqr71dhxy',1,'Admin',1672319419,'192.168.64.1',2,15,42877,NULL,'VMware: Get sensors','clc93sy0x00004xiybc9tr37a',''),('clc93sy54015c4xiy1wmvpy19',1,'Admin',1672319419,'192.168.64.1',2,15,42880,NULL,'PostgreSQL: Get queries','clc93sy0x00004xiybc9tr37a',''),('clc93sy54015d4xiyu6hhb58h',1,'Admin',1672319419,'192.168.64.1',2,15,43080,NULL,'Active agent availability','clc93sy0x00004xiybc9tr37a',''),('clc93sy54015e4xiyxekwxcn7',1,'Admin',1672319419,'192.168.64.1',2,15,43857,NULL,'Uptime (hardware)','clc93sy0x00004xiybc9tr37a',''),('clc93sy54015f4xiy9hbxn6bk',1,'Admin',1672319419,'192.168.64.1',2,15,43858,NULL,'Uptime (hardware)','clc93sy0x00004xiybc9tr37a',''),('clc93sy54015g4xiyfy02ih1d',1,'Admin',1672319419,'192.168.64.1',2,15,43859,NULL,'Uptime (hardware)','clc93sy0x00004xiybc9tr37a',''),('clc93sy54015h4xiy99tljx1f',1,'Admin',1672319419,'192.168.64.1',2,15,43875,NULL,'Uptime (hardware)','clc93sy0x00004xiybc9tr37a',''),('clc93sy54015i4xiykh4jk15y',1,'Admin',1672319419,'192.168.64.1',2,15,44051,NULL,'Uptime (hardware)','clc93sy0x00004xiybc9tr37a',''),('clc93sy54015j4xiyilp4i7zt',1,'Admin',1672319419,'192.168.64.1',2,15,44081,NULL,'Zabbix stats proxy','clc93sy0x00004xiybc9tr37a',''),('clc93sy54015k4xiy8vc867dx',1,'Admin',1672319419,'192.168.64.1',2,15,44359,NULL,'RabbitMQ: Get processes summary','clc93sy0x00004xiybc9tr37a',''),('clc93sy54015l4xiyd6p65bac',1,'Admin',1672319419,'192.168.64.1',2,15,44377,NULL,'Get filesystems','clc93sy0x00004xiybc9tr37a',''),('clc93sy54015m4xiyk9r475dq',1,'Admin',1672319419,'192.168.64.1',2,15,44379,NULL,'Get filesystems','clc93sy0x00004xiybc9tr37a',''),('clc93sy54015n4xiydm2icesn',1,'Admin',1672319419,'192.168.64.1',2,15,44450,NULL,'Get filesystems','clc93sy0x00004xiybc9tr37a',''),('clc93sy54015o4xiy5myo1ufe',1,'Admin',1672319419,'192.168.64.1',2,15,44453,NULL,'Get filesystems','clc93sy0x00004xiybc9tr37a',''),('clc93sy54015p4xiy7ek2emfn',1,'Admin',1672319419,'192.168.64.1',2,15,44455,NULL,'Get filesystems','clc93sy0x00004xiybc9tr37a',''),('clc93sy62015q4xiyxowoibs8',1,'Admin',1672319419,'192.168.64.1',2,30,10078,NULL,'Solaris','clc93sy0x00004xiybc9tr37a',''),('clc93sy62015r4xiycn1eu1y5',1,'Admin',1672319419,'192.168.64.1',2,30,10081,NULL,'Windows by Zabbix agent','clc93sy0x00004xiybc9tr37a',''),('clc93sy62015s4xiyibaradax',1,'Admin',1672319419,'192.168.64.1',2,30,10101,NULL,'SMTP Service','clc93sy0x00004xiybc9tr37a',''),('clc93sy62015t4xiy938q9yjj',1,'Admin',1672319419,'192.168.64.1',2,30,10102,NULL,'SSH Service','clc93sy0x00004xiybc9tr37a',''),('clc93sy62015u4xiyonhmd5z9',1,'Admin',1672319419,'192.168.64.1',2,30,10103,NULL,'Telnet Service','clc93sy0x00004xiybc9tr37a',''),('clc93sy62015v4xiy8zki1cvs',1,'Admin',1672319419,'192.168.64.1',2,30,10173,NULL,'VMware','clc93sy0x00004xiybc9tr37a',''),('clc93sy62015w4xiygv3dns7f',1,'Admin',1672319419,'192.168.64.1',2,30,10174,NULL,'VMware Guest','clc93sy0x00004xiybc9tr37a',''),('clc93sy62015x4xiyvlgdgstj',1,'Admin',1672319419,'192.168.64.1',2,30,10175,NULL,'VMware Hypervisor','clc93sy0x00004xiybc9tr37a',''),('clc93sy62015y4xiyxzcmf1ja',1,'Admin',1672319419,'192.168.64.1',2,30,10235,NULL,'QTech QSW by SNMP','clc93sy0x00004xiybc9tr37a',''),('clc93sy62015z4xiyqcqtm293',1,'Admin',1672319419,'192.168.64.1',2,30,10236,NULL,'TP-LINK by SNMP','clc93sy0x00004xiybc9tr37a',''),('clc93sy6201604xiyyekk18is',1,'Admin',1672319419,'192.168.64.1',2,30,10237,NULL,'Ubiquiti AirOS by SNMP','clc93sy0x00004xiybc9tr37a',''),('clc93sy6201614xiy7375oszp',1,'Admin',1672319419,'192.168.64.1',2,30,10249,NULL,'Windows by SNMP','clc93sy0x00004xiybc9tr37a',''),('clc93sy6201624xiyo6mbvs5n',1,'Admin',1672319419,'192.168.64.1',2,30,10259,NULL,'Supermicro Aten by SNMP','clc93sy0x00004xiybc9tr37a',''),('clc93sy6201634xiykrmlw8k3',1,'Admin',1672319419,'192.168.64.1',2,30,10261,NULL,'Remote Zabbix server health','clc93sy0x00004xiybc9tr37a',''),('clc93sy6201644xiys5tsq362',1,'Admin',1672319419,'192.168.64.1',2,30,10262,NULL,'Remote Zabbix proxy health','clc93sy0x00004xiybc9tr37a',''),('clc93sy6201654xiyc22ymz3t',1,'Admin',1672319419,'192.168.64.1',2,30,10286,NULL,'Windows CPU by Zabbix agent','clc93sy0x00004xiybc9tr37a',''),('clc93sy6201664xiy16axn9ui',1,'Admin',1672319419,'192.168.64.1',2,30,10287,NULL,'Windows memory by Zabbix agent','clc93sy0x00004xiybc9tr37a',''),('clc93sy6201674xiypeferi3i',1,'Admin',1672319419,'192.168.64.1',2,30,10288,NULL,'Windows filesystems by Zabbix agent','clc93sy0x00004xiybc9tr37a',''),('clc93sy6201684xiysr9zmi1k',1,'Admin',1672319419,'192.168.64.1',2,30,10289,NULL,'Windows physical disks by Zabbix agent','clc93sy0x00004xiybc9tr37a',''),('clc93sy6201694xiy9atfnar7',1,'Admin',1672319419,'192.168.64.1',2,30,10290,NULL,'Windows generic by Zabbix agent','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016a4xiy3bd39ra7',1,'Admin',1672319419,'192.168.64.1',2,30,10291,NULL,'Windows network by Zabbix agent','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016b4xiysz7aia9g',1,'Admin',1672319419,'192.168.64.1',2,30,10300,NULL,'RabbitMQ cluster by Zabbix agent','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016c4xiyxnk0vp8n',1,'Admin',1672319419,'192.168.64.1',2,30,10301,NULL,'RabbitMQ node by Zabbix agent','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016d4xiy52dijffv',1,'Admin',1672319419,'192.168.64.1',2,30,10302,NULL,'RabbitMQ cluster by HTTP','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016e4xiya7q61hkd',1,'Admin',1672319419,'192.168.64.1',2,30,10303,NULL,'RabbitMQ node by HTTP','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016f4xiy7veehwtp',1,'Admin',1672319419,'192.168.64.1',2,30,10310,NULL,'Redis by Zabbix agent 2','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016g4xiyhkh0221e',1,'Admin',1672319419,'192.168.64.1',2,30,10314,NULL,'Windows services by Zabbix agent','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016h4xiyth5uaye2',1,'Admin',1672319419,'192.168.64.1',2,30,10329,NULL,'PostgreSQL by Zabbix agent 2','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016i4xiytk20e8tf',1,'Admin',1672319419,'192.168.64.1',2,30,10344,NULL,'Windows CPU by Zabbix agent active','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016j4xiyi8nn4hl1',1,'Admin',1672319419,'192.168.64.1',2,30,10345,NULL,'Windows filesystems by Zabbix agent active','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016k4xiy39wpm9uu',1,'Admin',1672319419,'192.168.64.1',2,30,10346,NULL,'Windows generic by Zabbix agent active','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016l4xiy5yvq3od8',1,'Admin',1672319419,'192.168.64.1',2,30,10347,NULL,'Windows memory by Zabbix agent active','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016m4xiyjmjdawu2',1,'Admin',1672319419,'192.168.64.1',2,30,10348,NULL,'Windows network by Zabbix agent active','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016n4xiyfdhtn281',1,'Admin',1672319419,'192.168.64.1',2,30,10349,NULL,'Windows physical disks by Zabbix agent active','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016o4xiy2a3wk4xs',1,'Admin',1672319419,'192.168.64.1',2,30,10351,NULL,'Windows by Zabbix agent active','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016p4xiyc36pql72',1,'Admin',1672319419,'192.168.64.1',2,30,10355,NULL,'Squid by SNMP','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016q4xiytjitkvd8',1,'Admin',1672319419,'192.168.64.1',2,30,10366,NULL,'VMware FQDN','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016r4xiy9fuczvzj',1,'Admin',1672319419,'192.168.64.1',2,30,10383,NULL,'SMART by Zabbix agent 2','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016s4xiy5eihiia1',1,'Admin',1672319419,'192.168.64.1',2,30,10384,NULL,'SMART by Zabbix agent 2 active','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016t4xiy0gtqpq6d',1,'Admin',1672319419,'192.168.64.1',2,30,10397,NULL,'TiDB PD by HTTP','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016u4xiyfsrehuoi',1,'Admin',1672319419,'192.168.64.1',2,30,10398,NULL,'TiDB by HTTP','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016v4xiy7y9v8j20',1,'Admin',1672319419,'192.168.64.1',2,30,10399,NULL,'TiDB TiKV by HTTP','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016w4xiye994tqvl',1,'Admin',1672319419,'192.168.64.1',2,30,10410,NULL,'WildFly Domain by JMX','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016x4xiyz34kmd14',1,'Admin',1672319419,'192.168.64.1',2,30,10411,NULL,'WildFly Server by JMX','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016y4xiyzgiziei5',1,'Admin',1672319419,'192.168.64.1',2,30,10413,NULL,'Website certificate by Zabbix agent 2','clc93sy0x00004xiybc9tr37a',''),('clc93sy62016z4xiylbawe4t4',1,'Admin',1672319419,'192.168.64.1',2,30,10416,NULL,'Systemd by Zabbix agent 2','clc93sy0x00004xiybc9tr37a',''),('clc93sy6201704xiys9a58nce',1,'Admin',1672319419,'192.168.64.1',2,30,10447,NULL,'Travis CI by HTTP','clc93sy0x00004xiybc9tr37a',''),('clc93sy6201714xiyqs5tlcxl',1,'Admin',1672319419,'192.168.64.1',2,30,10503,NULL,'VMWare SD-WAN VeloCloud by HTTP','clc93sy0x00004xiybc9tr37a',''),('clc93sy6201724xiyukr1uorq',1,'Admin',1672319419,'192.168.64.1',2,30,10517,NULL,'Proxmox VE by HTTP','clc93sy0x00004xiybc9tr37a',''),('clc93sy6201734xiy0yvwqb2q',1,'Admin',1672319419,'192.168.64.1',2,30,10518,NULL,'TrueNAS by SNMP','clc93sy0x00004xiybc9tr37a',''),('clc93t1nc00014ciy1w4bcpht',1,'Admin',1672319423,'192.168.64.1',2,36,32025,NULL,'State of service \"{#SERVICE.NAME}\" ({#SERVICE.DISPLAYNAME})','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00024ciy03af695x',1,'Admin',1672319423,'192.168.64.1',2,36,33000,NULL,'Zookeeper client {#TYPE} [{#CLIENT}]: Latency, avg','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00034ciylel29d95',1,'Admin',1672319423,'192.168.64.1',2,36,33001,NULL,'Zookeeper client {#TYPE} [{#CLIENT}]: Latency, max','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00044ciyk293lznx',1,'Admin',1672319423,'192.168.64.1',2,36,33002,NULL,'Zookeeper client {#TYPE} [{#CLIENT}]: Latency, min','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00054ciymnvazpzm',1,'Admin',1672319423,'192.168.64.1',2,36,33003,NULL,'Zookeeper client {#TYPE} [{#CLIENT}]: Outstanding requests','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00064ciy4okjinnf',1,'Admin',1672319423,'192.168.64.1',2,36,33004,NULL,'Zookeeper client {#TYPE} [{#CLIENT}]: Packets received per sec','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00074ciyf43ebe6l',1,'Admin',1672319423,'192.168.64.1',2,36,33005,NULL,'Zookeeper client {#TYPE} [{#CLIENT}]: Packets sent per sec','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00084ciy8k7mj7fe',1,'Admin',1672319423,'192.168.64.1',2,36,33006,NULL,'Zookeeper: Learners{#SINGLETON}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00094ciytktzov5i',1,'Admin',1672319423,'192.168.64.1',2,36,33007,NULL,'Zookeeper: Pending syncs{#SINGLETON}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000a4ciybp373z2t',1,'Admin',1672319423,'192.168.64.1',2,36,33008,NULL,'Zookeeper: Quorum size{#SINGLETON}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000b4ciy7nb8i8u0',1,'Admin',1672319423,'192.168.64.1',2,36,33009,NULL,'Zookeeper: Synced followers{#SINGLETON}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000c4ciy686k0y2p',1,'Admin',1672319423,'192.168.64.1',2,36,33010,NULL,'Zookeeper: Synced non-voting follower{#SINGLETON}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000d4ciysjhpg03j',1,'Admin',1672319423,'192.168.64.1',2,36,33011,NULL,'Zookeeper: Synced observers{#SINGLETON}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000e4ciy723kb0xd',1,'Admin',1672319423,'192.168.64.1',2,36,35546,NULL,'ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: Administrative status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000f4ciy4i0ygwxq',1,'Admin',1672319423,'192.168.64.1',2,36,35547,NULL,'ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUC attenuation','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000g4ciyptlhoz3n',1,'Admin',1672319423,'192.168.64.1',2,36,35548,NULL,'ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUC output power','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000h4ciy338na1vl',1,'Admin',1672319423,'192.168.64.1',2,36,35549,NULL,'ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUC noise margin','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000i4ciy7yaeajte',1,'Admin',1672319423,'192.168.64.1',2,36,35550,NULL,'ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUR attenuation','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000j4ciyqzp693ih',1,'Admin',1672319423,'192.168.64.1',2,36,35551,NULL,'ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUR output power','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000k4ciyq7gji3t8',1,'Admin',1672319423,'192.168.64.1',2,36,35552,NULL,'ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUR noise margin','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000l4ciyojp9t1yw',1,'Admin',1672319423,'192.168.64.1',2,36,35553,NULL,'ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: Incoming traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000m4ciyt28uvajx',1,'Admin',1672319423,'192.168.64.1',2,36,35554,NULL,'ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: Interface name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000n4ciy3e48lr5a',1,'Admin',1672319423,'192.168.64.1',2,36,35555,NULL,'ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: Operational status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000o4ciy44rpx6gv',1,'Admin',1672319423,'192.168.64.1',2,36,35556,NULL,'ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: Outgoing traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000p4ciyefxd4ffz',1,'Admin',1672319423,'192.168.64.1',2,36,35557,NULL,'ZYXEL AAM1212-51 / IES-612: Port {#ZYXEL.IF.NAME}: Administrative status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000q4ciy2b83b48z',1,'Admin',1672319423,'192.168.64.1',2,36,35558,NULL,'ZYXEL AAM1212-51 / IES-612: Port {#ZYXEL.IF.NAME}: Incoming traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000r4ciyx5l1kz0r',1,'Admin',1672319423,'192.168.64.1',2,36,35559,NULL,'ZYXEL AAM1212-51 / IES-612: Port {#ZYXEL.IF.NAME}: Interface name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000s4ciyag0e0p2x',1,'Admin',1672319423,'192.168.64.1',2,36,35560,NULL,'ZYXEL AAM1212-51 / IES-612: Port {#ZYXEL.IF.NAME}: Operational status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000t4ciybf4qavh6',1,'Admin',1672319423,'192.168.64.1',2,36,35561,NULL,'ZYXEL AAM1212-51 / IES-612: Port {#ZYXEL.IF.NAME}: Outgoing traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000u4ciyu1dszxgb',1,'Admin',1672319423,'192.168.64.1',2,36,35562,NULL,'ZYXEL AAM1212-51 / IES-612: Temperature \"{#ZYXEL.TEMP.ID}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000v4ciy2x6khno9',1,'Admin',1672319423,'192.168.64.1',2,36,35563,NULL,'ZYXEL AAM1212-51 / IES-612: Nominal \"{#ZYXEL.VOLT.NOMINAL}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000w4ciy7tqudylu',1,'Admin',1672319423,'192.168.64.1',2,36,35580,NULL,'ZYXEL ES3500-8PD: Memory \"{#ZYXEL.MEMORY.NAME}\" utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000x4ciypp94kr5w',1,'Admin',1672319423,'192.168.64.1',2,36,35581,NULL,'ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Administrative status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000y4ciy169mxbgx',1,'Admin',1672319423,'192.168.64.1',2,36,35582,NULL,'ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Interface description','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc000z4ciyoxhvrqrz',1,'Admin',1672319423,'192.168.64.1',2,36,35583,NULL,'ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Outgoing utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00104ciy41g8mnmm',1,'Admin',1672319423,'192.168.64.1',2,36,35584,NULL,'ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Outgoing unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00114ciyi42x9d5b',1,'Admin',1672319423,'192.168.64.1',2,36,35585,NULL,'ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Outgoing traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00124ciyb6vglxdl',1,'Admin',1672319423,'192.168.64.1',2,36,35586,NULL,'ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Outgoing multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00134ciyto15xt6e',1,'Admin',1672319423,'192.168.64.1',2,36,35587,NULL,'ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Outgoing broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00144ciy3sk633un',1,'Admin',1672319423,'192.168.64.1',2,36,35588,NULL,'ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Operational status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00154ciycvkrxlzq',1,'Admin',1672319423,'192.168.64.1',2,36,35589,NULL,'ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Link type','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00164ciy2fukc5ze',1,'Admin',1672319423,'192.168.64.1',2,36,35590,NULL,'ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Interface name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00174ciymizs9e21',1,'Admin',1672319423,'192.168.64.1',2,36,35591,NULL,'ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Incoming utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00184ciytbthb6zy',1,'Admin',1672319423,'192.168.64.1',2,36,35592,NULL,'ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Incoming unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00194ciy4c3mbyju',1,'Admin',1672319423,'192.168.64.1',2,36,35593,NULL,'ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Incoming traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001a4ciyhcs7pkgk',1,'Admin',1672319423,'192.168.64.1',2,36,35594,NULL,'ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Incoming multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001b4ciyd42qan97',1,'Admin',1672319423,'192.168.64.1',2,36,35595,NULL,'ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Incoming broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001c4ciysjg3vao5',1,'Admin',1672319423,'192.168.64.1',2,36,35596,NULL,'ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Link speed','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001d4ciynpgbx7cj',1,'Admin',1672319423,'192.168.64.1',2,36,35597,NULL,'ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Speed Duplex','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001e4ciycbaguydj',1,'Admin',1672319423,'192.168.64.1',2,36,35598,NULL,'ZYXEL ES3500-8PD: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001f4ciysfil6ady',1,'Admin',1672319423,'192.168.64.1',2,36,35599,NULL,'ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Date code','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001g4ciya4drcgwg',1,'Admin',1672319423,'192.168.64.1',2,36,35600,NULL,'ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Part number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001h4ciywivol92b',1,'Admin',1672319423,'192.168.64.1',2,36,35601,NULL,'ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Revision','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001i4ciy0loin5rg',1,'Admin',1672319423,'192.168.64.1',2,36,35602,NULL,'ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001j4ciyrs8pu7c0',1,'Admin',1672319423,'192.168.64.1',2,36,35603,NULL,'ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001k4ciyreu3c62p',1,'Admin',1672319423,'192.168.64.1',2,36,35604,NULL,'ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Transceiver','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001l4ciyxv9twadd',1,'Admin',1672319423,'192.168.64.1',2,36,35605,NULL,'ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Vendor','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001m4ciydcm16nlq',1,'Admin',1672319423,'192.168.64.1',2,36,35606,NULL,'ZYXEL ES3500-8PD: Temperature \"{#ZYXEL.TEMP.ID}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001n4ciyc5u4g4c5',1,'Admin',1672319423,'192.168.64.1',2,36,35607,NULL,'ZYXEL ES3500-8PD: Nominal \"{#ZYXEL.VOLT.NOMINAL}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001o4ciyhp20lbqc',1,'Admin',1672319423,'192.168.64.1',2,36,35622,NULL,'ZYXEL GS-4012F: Fan #{#SNMPINDEX}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001p4ciyafshofhl',1,'Admin',1672319423,'192.168.64.1',2,36,35623,NULL,'ZYXEL GS-4012F: Port {#SNMPINDEX}: Administrative status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001q4ciy8n06ffxa',1,'Admin',1672319423,'192.168.64.1',2,36,35624,NULL,'ZYXEL GS-4012F: Port {#SNMPINDEX}: Interface description','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001r4ciygynnqtx1',1,'Admin',1672319423,'192.168.64.1',2,36,35625,NULL,'ZYXEL GS-4012F: Port {#SNMPINDEX}: Outgoing utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001s4ciy616zoip6',1,'Admin',1672319423,'192.168.64.1',2,36,35626,NULL,'ZYXEL GS-4012F: Port {#SNMPINDEX}: Outgoing unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001t4ciyy8jafcj1',1,'Admin',1672319423,'192.168.64.1',2,36,35627,NULL,'ZYXEL GS-4012F: Port {#SNMPINDEX}: Outgoing traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001u4ciysrntvvmz',1,'Admin',1672319423,'192.168.64.1',2,36,35628,NULL,'ZYXEL GS-4012F: Port {#SNMPINDEX}: Outgoing multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001v4ciyw5xjqsmd',1,'Admin',1672319423,'192.168.64.1',2,36,35629,NULL,'ZYXEL GS-4012F: Port {#SNMPINDEX}: Outgoing broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001w4ciyt5g50m8n',1,'Admin',1672319423,'192.168.64.1',2,36,35630,NULL,'ZYXEL GS-4012F: Port {#SNMPINDEX}: Operational status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001x4ciyyzqujp0q',1,'Admin',1672319423,'192.168.64.1',2,36,35631,NULL,'ZYXEL GS-4012F: Port {#SNMPINDEX}: Link type','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001y4ciybcvx9k9b',1,'Admin',1672319423,'192.168.64.1',2,36,35632,NULL,'ZYXEL GS-4012F: Port {#SNMPINDEX}: Interface name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc001z4ciyzlxsau3y',1,'Admin',1672319423,'192.168.64.1',2,36,35633,NULL,'ZYXEL GS-4012F: Port {#SNMPINDEX}: Incoming utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00204ciyhto9rw76',1,'Admin',1672319423,'192.168.64.1',2,36,35634,NULL,'ZYXEL GS-4012F: Port {#SNMPINDEX}: Incoming unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00214ciyya8c808c',1,'Admin',1672319423,'192.168.64.1',2,36,35635,NULL,'ZYXEL GS-4012F: Port {#SNMPINDEX}: Incoming traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00224ciyn5bpc2a8',1,'Admin',1672319423,'192.168.64.1',2,36,35636,NULL,'ZYXEL GS-4012F: Port {#SNMPINDEX}: Incoming multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00234ciyi8u5k0b5',1,'Admin',1672319423,'192.168.64.1',2,36,35637,NULL,'ZYXEL GS-4012F: Port {#SNMPINDEX}: Incoming broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00244ciyor95n1p0',1,'Admin',1672319423,'192.168.64.1',2,36,35638,NULL,'ZYXEL GS-4012F: Port {#SNMPINDEX}: Link speed','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00254ciy8wyajp2u',1,'Admin',1672319423,'192.168.64.1',2,36,35639,NULL,'ZYXEL GS-4012F: Port {#SNMPINDEX}: Speed Duplex','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00264ciy194ao66n',1,'Admin',1672319423,'192.168.64.1',2,36,35640,NULL,'ZYXEL GS-4012F: Temperature \"{#ZYXEL.TEMP.ID}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00274ciysho9rwyy',1,'Admin',1672319423,'192.168.64.1',2,36,35641,NULL,'ZYXEL GS-4012F: Nominal \"{#ZYXEL.VOLT.NOMINAL}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00284ciy08hbjdho',1,'Admin',1672319423,'192.168.64.1',2,36,35658,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Packet buffer utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00294ciysdeh81t8',1,'Admin',1672319423,'192.168.64.1',2,36,35659,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: CPU utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002a4ciyzjfnpqv4',1,'Admin',1672319423,'192.168.64.1',2,36,35660,NULL,'ZYXEL IES-500x: Fan #{#SNMPINDEX}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002b4ciyb4kevr5q',1,'Admin',1672319423,'192.168.64.1',2,36,35661,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Memory utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002c4ciyzibq1ka6',1,'Admin',1672319423,'192.168.64.1',2,36,35662,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Administrative status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002d4ciy19fpqdrm',1,'Admin',1672319423,'192.168.64.1',2,36,35663,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002e4ciykdwpjyk9',1,'Admin',1672319423,'192.168.64.1',2,36,35664,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002f4ciyhg5izoio',1,'Admin',1672319423,'192.168.64.1',2,36,35665,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002g4ciyaqp8xybc',1,'Admin',1672319423,'192.168.64.1',2,36,35666,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002h4ciyfsw3g5p0',1,'Admin',1672319423,'192.168.64.1',2,36,35667,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Operational status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002i4ciyw29qhf2q',1,'Admin',1672319423,'192.168.64.1',2,36,35668,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Interface name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002j4ciy2h7valkb',1,'Admin',1672319423,'192.168.64.1',2,36,35669,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002k4ciykrto31ad',1,'Admin',1672319423,'192.168.64.1',2,36,35670,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002l4ciycs9et1pa',1,'Admin',1672319423,'192.168.64.1',2,36,35671,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC attenuation','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002m4ciyqheplwnu',1,'Admin',1672319423,'192.168.64.1',2,36,35672,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002n4ciycm4idj3j',1,'Admin',1672319423,'192.168.64.1',2,36,35673,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Interface description','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002o4ciyhqla3w3z',1,'Admin',1672319423,'192.168.64.1',2,36,35674,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR noise margin','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002p4ciyt6zs2xu8',1,'Admin',1672319423,'192.168.64.1',2,36,35675,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR output power','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002q4ciy5r49mdf6',1,'Admin',1672319423,'192.168.64.1',2,36,35676,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR attenuation','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002r4ciyv9zzzehw',1,'Admin',1672319423,'192.168.64.1',2,36,35677,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC noise margin','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002s4ciytkv87stw',1,'Admin',1672319423,'192.168.64.1',2,36,35678,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC output power','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002t4ciyt01knut3',1,'Admin',1672319423,'192.168.64.1',2,36,35679,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002u4ciyjym9xiip',1,'Admin',1672319423,'192.168.64.1',2,36,35680,NULL,'ZYXEL IES-500x: Port {#SNMPINDEX}: Administrative status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002v4ciyos0equiw',1,'Admin',1672319423,'192.168.64.1',2,36,35681,NULL,'ZYXEL IES-500x: Port {#SNMPINDEX}: Interface description','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002w4ciy6pqj8bzc',1,'Admin',1672319423,'192.168.64.1',2,36,35682,NULL,'ZYXEL IES-500x: Port {#SNMPINDEX}: Link speed','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002x4ciy6d6uztfg',1,'Admin',1672319423,'192.168.64.1',2,36,35683,NULL,'ZYXEL IES-500x: Port {#SNMPINDEX}: Incoming broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002y4ciylax2dztf',1,'Admin',1672319423,'192.168.64.1',2,36,35684,NULL,'ZYXEL IES-500x: Port {#SNMPINDEX}: Incoming multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc002z4ciykswkhn0s',1,'Admin',1672319423,'192.168.64.1',2,36,35685,NULL,'ZYXEL IES-500x: Port {#SNMPINDEX}: Incoming traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00304ciyo77ksijl',1,'Admin',1672319423,'192.168.64.1',2,36,35686,NULL,'ZYXEL IES-500x: Port {#SNMPINDEX}: Incoming unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00314ciydhnk7tuq',1,'Admin',1672319423,'192.168.64.1',2,36,35687,NULL,'ZYXEL IES-500x: Port {#SNMPINDEX}: Incoming utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00324ciy687xojnc',1,'Admin',1672319423,'192.168.64.1',2,36,35688,NULL,'ZYXEL IES-500x: Port {#SNMPINDEX}: Interface name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00334ciy6f99c86u',1,'Admin',1672319423,'192.168.64.1',2,36,35689,NULL,'ZYXEL IES-500x: Port {#SNMPINDEX}: Operational status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00344ciyx5up47fo',1,'Admin',1672319423,'192.168.64.1',2,36,35690,NULL,'ZYXEL IES-500x: Port {#SNMPINDEX}: Outgoing broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00354ciyd0k35lq8',1,'Admin',1672319423,'192.168.64.1',2,36,35691,NULL,'ZYXEL IES-500x: Port {#SNMPINDEX}: Outgoing multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00364ciy8m5nwgm5',1,'Admin',1672319423,'192.168.64.1',2,36,35692,NULL,'ZYXEL IES-500x: Port {#SNMPINDEX}: Outgoing traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00374ciypzdrt8pz',1,'Admin',1672319423,'192.168.64.1',2,36,35693,NULL,'ZYXEL IES-500x: Port {#SNMPINDEX}: Outgoing unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00384ciy84esyywz',1,'Admin',1672319423,'192.168.64.1',2,36,35694,NULL,'ZYXEL IES-500x: Port {#SNMPINDEX}: Outgoing utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nc00394ciyvqgh2ofi',1,'Admin',1672319423,'192.168.64.1',2,36,35695,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Alarm status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003a4ciymraw2tjd',1,'Admin',1672319423,'192.168.64.1',2,36,35696,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: DSL modem code version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003b4ciywsryds29',1,'Admin',1672319423,'192.168.64.1',2,36,35697,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Description','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003c4ciy4hozzp34',1,'Admin',1672319423,'192.168.64.1',2,36,35698,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Driver version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003d4ciyt8kduh4d',1,'Admin',1672319423,'192.168.64.1',2,36,35699,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Firmware version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003e4ciyjbj1tzxb',1,'Admin',1672319423,'192.168.64.1',2,36,35700,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Hardware version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003f4ciy57y4vbv2',1,'Admin',1672319423,'192.168.64.1',2,36,35701,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: MAC address 1','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003g4ciyfj6ua78n',1,'Admin',1672319423,'192.168.64.1',2,36,35702,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: MAC address 2','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003h4ciyhbrd0qpz',1,'Admin',1672319423,'192.168.64.1',2,36,35703,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003i4ciyb72zi994',1,'Admin',1672319423,'192.168.64.1',2,36,35704,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003j4ciytlr3kswn',1,'Admin',1672319423,'192.168.64.1',2,36,35705,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Type','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003k4ciytpw1twg8',1,'Admin',1672319423,'192.168.64.1',2,36,35706,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Uptime','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003l4ciyxewb8vax',1,'Admin',1672319423,'192.168.64.1',2,36,35707,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Temperature \"{#ZYXEL.TEMP.ID}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003m4ciye9j078yk',1,'Admin',1672319423,'192.168.64.1',2,36,35708,NULL,'ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Nominal \"{#ZYXEL.VOLT.NOMINAL}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003n4ciy10j9vpg5',1,'Admin',1672319423,'192.168.64.1',2,36,35725,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Packet buffer utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003o4ciy6g03dfkt',1,'Admin',1672319423,'192.168.64.1',2,36,35726,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: CPU utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003p4ciyaqt4ongr',1,'Admin',1672319423,'192.168.64.1',2,36,35727,NULL,'ZYXEL IES-6000: Fan #{#SNMPINDEX}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003q4ciyj1p9yjkx',1,'Admin',1672319423,'192.168.64.1',2,36,35728,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Memory utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003r4ciyib3q2wtl',1,'Admin',1672319423,'192.168.64.1',2,36,35729,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Administrative status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003s4ciym614uui8',1,'Admin',1672319423,'192.168.64.1',2,36,35730,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003t4ciyrwzbzqo4',1,'Admin',1672319423,'192.168.64.1',2,36,35731,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003u4ciy3455w51d',1,'Admin',1672319423,'192.168.64.1',2,36,35732,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003v4ciy5cz2s878',1,'Admin',1672319423,'192.168.64.1',2,36,35733,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003w4ciyvtw9xafx',1,'Admin',1672319423,'192.168.64.1',2,36,35734,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Operational status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003x4ciyfls8br07',1,'Admin',1672319423,'192.168.64.1',2,36,35735,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Interface name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003y4ciyg0igcls6',1,'Admin',1672319423,'192.168.64.1',2,36,35736,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd003z4ciyomuqq6ii',1,'Admin',1672319423,'192.168.64.1',2,36,35737,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00404ciyi780xhst',1,'Admin',1672319423,'192.168.64.1',2,36,35738,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC attenuation','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00414ciyofvqut7w',1,'Admin',1672319423,'192.168.64.1',2,36,35739,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00424ciy45osa869',1,'Admin',1672319423,'192.168.64.1',2,36,35740,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Interface description','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00434ciye4igsbiw',1,'Admin',1672319423,'192.168.64.1',2,36,35741,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR noise margin','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00444ciy4brnhs9c',1,'Admin',1672319423,'192.168.64.1',2,36,35742,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR output power','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00454ciyg86f2njh',1,'Admin',1672319423,'192.168.64.1',2,36,35743,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR attenuation','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00464ciyals4s8c6',1,'Admin',1672319423,'192.168.64.1',2,36,35744,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC noise margin','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00474ciyghr4nudk',1,'Admin',1672319423,'192.168.64.1',2,36,35745,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC output power','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00484ciyit8fmnsg',1,'Admin',1672319423,'192.168.64.1',2,36,35746,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00494ciyr307jro5',1,'Admin',1672319423,'192.168.64.1',2,36,35747,NULL,'ZYXEL IES-6000: Port {#SNMPINDEX}: Administrative status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004a4ciyl05j4p1w',1,'Admin',1672319423,'192.168.64.1',2,36,35748,NULL,'ZYXEL IES-6000: Port {#SNMPINDEX}: Interface description','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004b4ciyl77nnom9',1,'Admin',1672319423,'192.168.64.1',2,36,35749,NULL,'ZYXEL IES-6000: Port {#SNMPINDEX}: Link speed','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004c4ciy96mrf4te',1,'Admin',1672319423,'192.168.64.1',2,36,35750,NULL,'ZYXEL IES-6000: Port {#SNMPINDEX}: Incoming broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004d4ciyxfxcq29o',1,'Admin',1672319423,'192.168.64.1',2,36,35751,NULL,'ZYXEL IES-6000: Port {#SNMPINDEX}: Incoming multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004e4ciytap21c9e',1,'Admin',1672319423,'192.168.64.1',2,36,35752,NULL,'ZYXEL IES-6000: Port {#SNMPINDEX}: Incoming traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004f4ciy5unzasz9',1,'Admin',1672319423,'192.168.64.1',2,36,35753,NULL,'ZYXEL IES-6000: Port {#SNMPINDEX}: Incoming unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004g4ciy0q62nl67',1,'Admin',1672319423,'192.168.64.1',2,36,35754,NULL,'ZYXEL IES-6000: Port {#SNMPINDEX}: Incoming utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004h4ciyafe2pkxu',1,'Admin',1672319423,'192.168.64.1',2,36,35755,NULL,'ZYXEL IES-6000: Port {#SNMPINDEX}: Interface name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004i4ciyymwl7ot1',1,'Admin',1672319423,'192.168.64.1',2,36,35756,NULL,'ZYXEL IES-6000: Port {#SNMPINDEX}: Operational status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004j4ciyen3ieix5',1,'Admin',1672319423,'192.168.64.1',2,36,35757,NULL,'ZYXEL IES-6000: Port {#SNMPINDEX}: Outgoing broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004k4ciyj22ihbs5',1,'Admin',1672319423,'192.168.64.1',2,36,35758,NULL,'ZYXEL IES-6000: Port {#SNMPINDEX}: Outgoing multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004l4ciyynob4lp0',1,'Admin',1672319423,'192.168.64.1',2,36,35759,NULL,'ZYXEL IES-6000: Port {#SNMPINDEX}: Outgoing traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004m4ciy0pkvfzma',1,'Admin',1672319423,'192.168.64.1',2,36,35760,NULL,'ZYXEL IES-6000: Port {#SNMPINDEX}: Outgoing unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004n4ciywimavnl3',1,'Admin',1672319423,'192.168.64.1',2,36,35761,NULL,'ZYXEL IES-6000: Port {#SNMPINDEX}: Outgoing utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004o4ciyckymnb6o',1,'Admin',1672319423,'192.168.64.1',2,36,35762,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Alarm status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004p4ciyq6n4rgf5',1,'Admin',1672319423,'192.168.64.1',2,36,35763,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: DSL modem code version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004q4ciyz339fh23',1,'Admin',1672319423,'192.168.64.1',2,36,35764,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Description','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004r4ciyoljw06cg',1,'Admin',1672319423,'192.168.64.1',2,36,35765,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Driver version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004s4ciyx8vpk51o',1,'Admin',1672319423,'192.168.64.1',2,36,35766,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Firmware version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004t4ciyzp8aybzi',1,'Admin',1672319423,'192.168.64.1',2,36,35767,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Hardware version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004u4ciyzf3w64gd',1,'Admin',1672319423,'192.168.64.1',2,36,35768,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: MAC address 1','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004v4ciyko78twzh',1,'Admin',1672319423,'192.168.64.1',2,36,35769,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: MAC address 2','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004w4ciyvbc5exq4',1,'Admin',1672319423,'192.168.64.1',2,36,35770,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004x4ciynqrb4d6c',1,'Admin',1672319423,'192.168.64.1',2,36,35771,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004y4ciydque7nl4',1,'Admin',1672319423,'192.168.64.1',2,36,35772,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Type','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd004z4ciy2o1xcc6q',1,'Admin',1672319423,'192.168.64.1',2,36,35773,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Uptime','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00504ciyxovpqpte',1,'Admin',1672319423,'192.168.64.1',2,36,35774,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Temperature \"{#ZYXEL.TEMP.ID}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00514ciyqllp4wgu',1,'Admin',1672319423,'192.168.64.1',2,36,35775,NULL,'ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Nominal \"{#ZYXEL.VOLT.NOMINAL}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00524ciy24r1xyee',1,'Admin',1672319423,'192.168.64.1',2,36,35791,NULL,'ZYXEL IES1248-51: Fan #{#SNMPINDEX}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00534ciy8roiwebr',1,'Admin',1672319423,'192.168.64.1',2,36,35792,NULL,'ZYXEL IES1248-51: Port {#SNMPINDEX}: Administrative status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00544ciyde83rfz6',1,'Admin',1672319423,'192.168.64.1',2,36,35793,NULL,'ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUC attenuation','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00554ciyni7r6ym8',1,'Admin',1672319423,'192.168.64.1',2,36,35794,NULL,'ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUC output power','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00564ciyanfwknxh',1,'Admin',1672319423,'192.168.64.1',2,36,35795,NULL,'ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUC noise margin','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00574ciy0d4k0u7g',1,'Admin',1672319423,'192.168.64.1',2,36,35796,NULL,'ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUR attenuation','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00584ciyyhpdxn11',1,'Admin',1672319423,'192.168.64.1',2,36,35797,NULL,'ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUR output power','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00594ciyul3olei3',1,'Admin',1672319423,'192.168.64.1',2,36,35798,NULL,'ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUR noise margin','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005a4ciy97xjfu5w',1,'Admin',1672319423,'192.168.64.1',2,36,35799,NULL,'ZYXEL IES1248-51: Port {#SNMPINDEX}: Incoming traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005b4ciyx3sa73ao',1,'Admin',1672319423,'192.168.64.1',2,36,35800,NULL,'ZYXEL IES1248-51: Port {#SNMPINDEX}: Interface name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005c4ciyq0na201j',1,'Admin',1672319423,'192.168.64.1',2,36,35801,NULL,'ZYXEL IES1248-51: Port {#SNMPINDEX}: Operational status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005d4ciy3sfb1bxp',1,'Admin',1672319423,'192.168.64.1',2,36,35802,NULL,'ZYXEL IES1248-51: Port {#SNMPINDEX}: Outgoing traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005e4ciyg59m1koc',1,'Admin',1672319423,'192.168.64.1',2,36,35803,NULL,'ZYXEL IES1248-51: Port {#ZYXEL.IF.NAME}: Administrative status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005f4ciyb3v5qa58',1,'Admin',1672319423,'192.168.64.1',2,36,35804,NULL,'ZYXEL IES1248-51: Port {#ZYXEL.IF.NAME}: Incoming traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005g4ciyqdh0679b',1,'Admin',1672319423,'192.168.64.1',2,36,35805,NULL,'ZYXEL IES1248-51: Port {#SNMPINDEX}: Interface name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005h4ciy284k1o09',1,'Admin',1672319423,'192.168.64.1',2,36,35806,NULL,'ZYXEL IES1248-51: Port {#ZYXEL.IF.NAME}: Operational status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005i4ciy02jyfe2k',1,'Admin',1672319423,'192.168.64.1',2,36,35807,NULL,'ZYXEL IES1248-51: Port {#ZYXEL.IF.NAME}: Outgoing traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005j4ciysxedfgm3',1,'Admin',1672319423,'192.168.64.1',2,36,35808,NULL,'ZYXEL IES1248-51: Temperature \"{#ZYXEL.TEMP.ID}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005k4ciygwu7dolx',1,'Admin',1672319423,'192.168.64.1',2,36,35809,NULL,'ZYXEL IES1248-51: Nominal \"{#ZYXEL.VOLT.NOMINAL}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005l4ciyuyg24ovy',1,'Admin',1672319423,'192.168.64.1',2,36,35823,NULL,'ZYXEL MES-3528: Port {#SNMPINDEX}: Administrative status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005m4ciyijzrtrrw',1,'Admin',1672319423,'192.168.64.1',2,36,35824,NULL,'ZYXEL MES-3528: Port {#SNMPINDEX}: Interface description','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005n4ciyeacbo484',1,'Admin',1672319423,'192.168.64.1',2,36,35825,NULL,'ZYXEL MES-3528: Port {#SNMPINDEX}: Outgoing utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005o4ciys94uyl8y',1,'Admin',1672319423,'192.168.64.1',2,36,35826,NULL,'ZYXEL MES-3528: Port {#SNMPINDEX}: Outgoing unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005p4ciysp4fobev',1,'Admin',1672319423,'192.168.64.1',2,36,35827,NULL,'ZYXEL MES-3528: Port {#SNMPINDEX}: Outgoing traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005q4ciy0c136zv8',1,'Admin',1672319423,'192.168.64.1',2,36,35828,NULL,'ZYXEL MES-3528: Port {#SNMPINDEX}: Outgoing multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005r4ciyn8uzevoa',1,'Admin',1672319423,'192.168.64.1',2,36,35829,NULL,'ZYXEL MES-3528: Port {#SNMPINDEX}: Outgoing broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005s4ciybv9664j8',1,'Admin',1672319423,'192.168.64.1',2,36,35830,NULL,'ZYXEL MES-3528: Port {#SNMPINDEX}: Operational status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005t4ciyfhpnvn15',1,'Admin',1672319423,'192.168.64.1',2,36,35831,NULL,'ZYXEL MES-3528: Port {#SNMPINDEX}: Link type','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005u4ciyy2u3ku77',1,'Admin',1672319423,'192.168.64.1',2,36,35832,NULL,'ZYXEL MES-3528: Port {#SNMPINDEX}: Interface name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005v4ciyscvs0t2f',1,'Admin',1672319423,'192.168.64.1',2,36,35833,NULL,'ZYXEL MES-3528: Port {#SNMPINDEX}: Incoming utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005w4ciyy0tag78d',1,'Admin',1672319423,'192.168.64.1',2,36,35834,NULL,'ZYXEL MES-3528: Port {#SNMPINDEX}: Incoming unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005x4ciy92dztnwh',1,'Admin',1672319423,'192.168.64.1',2,36,35835,NULL,'ZYXEL MES-3528: Port {#SNMPINDEX}: Incoming traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005y4ciywhxzgxqt',1,'Admin',1672319423,'192.168.64.1',2,36,35836,NULL,'ZYXEL MES-3528: Port {#SNMPINDEX}: Incoming multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd005z4ciy3k0abr9c',1,'Admin',1672319423,'192.168.64.1',2,36,35837,NULL,'ZYXEL MES-3528: Port {#SNMPINDEX}: Incoming broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00604ciy21l9yrmm',1,'Admin',1672319423,'192.168.64.1',2,36,35838,NULL,'ZYXEL MES-3528: Port {#SNMPINDEX}: Link speed','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00614ciyqcfqn9sa',1,'Admin',1672319423,'192.168.64.1',2,36,35839,NULL,'ZYXEL MES-3528: Port {#SNMPINDEX}: Speed Duplex','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00624ciy5leg3nra',1,'Admin',1672319423,'192.168.64.1',2,36,35840,NULL,'ZYXEL MES-3528: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00634ciyfk8z3s31',1,'Admin',1672319423,'192.168.64.1',2,36,35841,NULL,'ZYXEL MES-3528: SFP {#SNMPINDEX}: Date code','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00644ciybh012cx9',1,'Admin',1672319423,'192.168.64.1',2,36,35842,NULL,'ZYXEL MES-3528: SFP {#SNMPINDEX}: Part number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00654ciyj542dbmh',1,'Admin',1672319423,'192.168.64.1',2,36,35843,NULL,'ZYXEL MES-3528: SFP {#SNMPINDEX}: Revision','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00664ciyryfqe0re',1,'Admin',1672319423,'192.168.64.1',2,36,35844,NULL,'ZYXEL MES-3528: SFP {#SNMPINDEX}: Serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00674ciyc4csxj8z',1,'Admin',1672319423,'192.168.64.1',2,36,35845,NULL,'ZYXEL MES-3528: SFP {#SNMPINDEX}: Status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00684ciylz36xhow',1,'Admin',1672319423,'192.168.64.1',2,36,35846,NULL,'ZYXEL MES-3528: SFP {#SNMPINDEX}: Transceiver','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00694ciyp0pg4y38',1,'Admin',1672319423,'192.168.64.1',2,36,35847,NULL,'ZYXEL MES-3528: SFP {#SNMPINDEX}: Vendor','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006a4ciycjfecoyw',1,'Admin',1672319423,'192.168.64.1',2,36,35864,NULL,'ZYXEL MES3500-10: Memory \"{#ZYXEL.MEMORY.NAME}\" utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006b4ciyjbtqhzbc',1,'Admin',1672319423,'192.168.64.1',2,36,35865,NULL,'ZYXEL MES3500-10: Port {#SNMPINDEX}: Administrative status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006c4ciyr1vr83ew',1,'Admin',1672319423,'192.168.64.1',2,36,35866,NULL,'ZYXEL MES3500-10: Port {#SNMPINDEX}: Interface description','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006d4ciyecr95o1w',1,'Admin',1672319423,'192.168.64.1',2,36,35867,NULL,'ZYXEL MES3500-10: Port {#SNMPINDEX}: Outgoing utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006e4ciywmn911ey',1,'Admin',1672319423,'192.168.64.1',2,36,35868,NULL,'ZYXEL MES3500-10: Port {#SNMPINDEX}: Outgoing unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006f4ciy1n3kk1oa',1,'Admin',1672319423,'192.168.64.1',2,36,35869,NULL,'ZYXEL MES3500-10: Port {#SNMPINDEX}: Outgoing traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006g4ciyxxpa9eo1',1,'Admin',1672319423,'192.168.64.1',2,36,35870,NULL,'ZYXEL MES3500-10: Port {#SNMPINDEX}: Outgoing multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006h4ciy9clrymu9',1,'Admin',1672319423,'192.168.64.1',2,36,35871,NULL,'ZYXEL MES3500-10: Port {#SNMPINDEX}: Outgoing broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006i4ciylmmcblln',1,'Admin',1672319423,'192.168.64.1',2,36,35872,NULL,'ZYXEL MES3500-10: Port {#SNMPINDEX}: Operational status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006j4ciywm8ygeqs',1,'Admin',1672319423,'192.168.64.1',2,36,35873,NULL,'ZYXEL MES3500-10: Port {#SNMPINDEX}: Link type','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006k4ciy6u16xeno',1,'Admin',1672319423,'192.168.64.1',2,36,35874,NULL,'ZYXEL MES3500-10: Port {#SNMPINDEX}: Interface name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006l4ciy60kxza96',1,'Admin',1672319423,'192.168.64.1',2,36,35875,NULL,'ZYXEL MES3500-10: Port {#SNMPINDEX}: Incoming utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006m4ciyo8v8xlnp',1,'Admin',1672319423,'192.168.64.1',2,36,35876,NULL,'ZYXEL MES3500-10: Port {#SNMPINDEX}: Incoming unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006n4ciyzz5ym6zc',1,'Admin',1672319423,'192.168.64.1',2,36,35877,NULL,'ZYXEL MES3500-10: Port {#SNMPINDEX}: Incoming traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006o4ciy52mqrxgi',1,'Admin',1672319423,'192.168.64.1',2,36,35878,NULL,'ZYXEL MES3500-10: Port {#SNMPINDEX}: Incoming multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006p4ciychgiuf95',1,'Admin',1672319423,'192.168.64.1',2,36,35879,NULL,'ZYXEL MES3500-10: Port {#SNMPINDEX}: Incoming broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006q4ciymoge4l3d',1,'Admin',1672319423,'192.168.64.1',2,36,35880,NULL,'ZYXEL MES3500-10: Port {#SNMPINDEX}: Link speed','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006r4ciyj2jjupav',1,'Admin',1672319423,'192.168.64.1',2,36,35881,NULL,'ZYXEL MES3500-10: Port {#SNMPINDEX}: Speed Duplex','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006s4ciykdf7xkk6',1,'Admin',1672319423,'192.168.64.1',2,36,35882,NULL,'ZYXEL MES3500-10: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006t4ciyyzq1hyyw',1,'Admin',1672319423,'192.168.64.1',2,36,35883,NULL,'ZYXEL MES3500-10: SFP {#SNMPINDEX}: Date code','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006u4ciyriqtv2nv',1,'Admin',1672319423,'192.168.64.1',2,36,35884,NULL,'ZYXEL MES3500-10: SFP {#SNMPINDEX}: Part number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006v4ciyw89ittoj',1,'Admin',1672319423,'192.168.64.1',2,36,35885,NULL,'ZYXEL MES3500-10: SFP {#SNMPINDEX}: Revision','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006w4ciysudq7prn',1,'Admin',1672319423,'192.168.64.1',2,36,35886,NULL,'ZYXEL MES3500-10: SFP {#SNMPINDEX}: Serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006x4ciytiv8w2d0',1,'Admin',1672319423,'192.168.64.1',2,36,35887,NULL,'ZYXEL MES3500-10: SFP {#SNMPINDEX}: Status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006y4ciyliv66q2w',1,'Admin',1672319423,'192.168.64.1',2,36,35888,NULL,'ZYXEL MES3500-10: SFP {#SNMPINDEX}: Transceiver','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd006z4ciy9m155o5q',1,'Admin',1672319423,'192.168.64.1',2,36,35889,NULL,'ZYXEL MES3500-10: SFP {#SNMPINDEX}: Vendor','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00704ciynw4eyfxu',1,'Admin',1672319423,'192.168.64.1',2,36,35890,NULL,'ZYXEL MES3500-10: Temperature \"{#ZYXEL.TEMP.ID}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00714ciyg24v585o',1,'Admin',1672319423,'192.168.64.1',2,36,35891,NULL,'ZYXEL MES3500-10: Nominal \"{#ZYXEL.VOLT.NOMINAL}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00724ciyegkgmqio',1,'Admin',1672319423,'192.168.64.1',2,36,35908,NULL,'ZYXEL MES3500-24: Memory \"{#ZYXEL.MEMORY.NAME}\" utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00734ciya885azy3',1,'Admin',1672319423,'192.168.64.1',2,36,35909,NULL,'ZYXEL MES3500-24: Port {#SNMPINDEX}: Administrative status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00744ciyq9x37zds',1,'Admin',1672319423,'192.168.64.1',2,36,35910,NULL,'ZYXEL MES3500-24: Port {#SNMPINDEX}: Interface description','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00754ciyd6xtn7s5',1,'Admin',1672319423,'192.168.64.1',2,36,35911,NULL,'ZYXEL MES3500-24: Port {#SNMPINDEX}: Outgoing utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00764ciydlgadm6x',1,'Admin',1672319423,'192.168.64.1',2,36,35912,NULL,'ZYXEL MES3500-24: Port {#SNMPINDEX}: Outgoing unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00774ciyxrqzbh7u',1,'Admin',1672319423,'192.168.64.1',2,36,35913,NULL,'ZYXEL MES3500-24: Port {#SNMPINDEX}: Outgoing traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00784ciyiwtnpuvr',1,'Admin',1672319423,'192.168.64.1',2,36,35914,NULL,'ZYXEL MES3500-24: Port {#SNMPINDEX}: Outgoing multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00794ciy29fn2pgq',1,'Admin',1672319423,'192.168.64.1',2,36,35915,NULL,'ZYXEL MES3500-24: Port {#SNMPINDEX}: Outgoing broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007a4ciybhy4p33s',1,'Admin',1672319423,'192.168.64.1',2,36,35916,NULL,'ZYXEL MES3500-24: Port {#SNMPINDEX}: Operational status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007b4ciyjbb14sxe',1,'Admin',1672319423,'192.168.64.1',2,36,35917,NULL,'ZYXEL MES3500-24: Port {#SNMPINDEX}: Link type','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007c4ciytq9w8p5r',1,'Admin',1672319423,'192.168.64.1',2,36,35918,NULL,'ZYXEL MES3500-24: Port {#SNMPINDEX}: Interface name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007d4ciyq9469fx6',1,'Admin',1672319423,'192.168.64.1',2,36,35919,NULL,'ZYXEL MES3500-24: Port {#SNMPINDEX}: Incoming utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007e4ciykxazv9ka',1,'Admin',1672319423,'192.168.64.1',2,36,35920,NULL,'ZYXEL MES3500-24: Port {#SNMPINDEX}: Incoming unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007f4ciy7damh1up',1,'Admin',1672319423,'192.168.64.1',2,36,35921,NULL,'ZYXEL MES3500-24: Port {#SNMPINDEX}: Incoming traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007g4ciyimrkmiod',1,'Admin',1672319423,'192.168.64.1',2,36,35922,NULL,'ZYXEL MES3500-24: Port {#SNMPINDEX}: Incoming multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007h4ciy1eo8o4jr',1,'Admin',1672319423,'192.168.64.1',2,36,35923,NULL,'ZYXEL MES3500-24: Port {#SNMPINDEX}: Incoming broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007i4ciyybr7muvn',1,'Admin',1672319423,'192.168.64.1',2,36,35924,NULL,'ZYXEL MES3500-24: Port {#SNMPINDEX}: Link speed','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007j4ciy6iwa5k70',1,'Admin',1672319423,'192.168.64.1',2,36,35925,NULL,'ZYXEL MES3500-24: Port {#SNMPINDEX}: Speed Duplex','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007k4ciyurao2gn3',1,'Admin',1672319423,'192.168.64.1',2,36,35926,NULL,'ZYXEL MES3500-24: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007l4ciytog5d01f',1,'Admin',1672319423,'192.168.64.1',2,36,35927,NULL,'ZYXEL MES3500-24: SFP {#SNMPINDEX}: Date code','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007m4ciy52q7awhz',1,'Admin',1672319423,'192.168.64.1',2,36,35928,NULL,'ZYXEL MES3500-24: SFP {#SNMPINDEX}: Part number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007n4ciyjh03hmzx',1,'Admin',1672319423,'192.168.64.1',2,36,35929,NULL,'ZYXEL MES3500-24: SFP {#SNMPINDEX}: Revision','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007o4ciydnv5k89t',1,'Admin',1672319423,'192.168.64.1',2,36,35930,NULL,'ZYXEL MES3500-24: SFP {#SNMPINDEX}: Serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007p4ciyzvpntnaw',1,'Admin',1672319423,'192.168.64.1',2,36,35931,NULL,'ZYXEL MES3500-24: SFP {#SNMPINDEX}: Status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007q4ciy0o9otn0w',1,'Admin',1672319423,'192.168.64.1',2,36,35932,NULL,'ZYXEL MES3500-24: SFP {#SNMPINDEX}: Transceiver','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007r4ciylbckh6rj',1,'Admin',1672319423,'192.168.64.1',2,36,35933,NULL,'ZYXEL MES3500-24: SFP {#SNMPINDEX}: Vendor','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007s4ciylmlalaxa',1,'Admin',1672319423,'192.168.64.1',2,36,35934,NULL,'ZYXEL MES3500-24: Temperature \"{#ZYXEL.TEMP.ID}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007t4ciyxo6f9mab',1,'Admin',1672319423,'192.168.64.1',2,36,35935,NULL,'ZYXEL MES3500-24: Nominal \"{#ZYXEL.VOLT.NOMINAL}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007u4ciyzbo3etot',1,'Admin',1672319423,'192.168.64.1',2,36,35952,NULL,'ZYXEL MGS-3712: Fan #{#SNMPINDEX}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007v4ciym3hqhgw0',1,'Admin',1672319423,'192.168.64.1',2,36,35953,NULL,'ZYXEL MGS-3712: Port {#SNMPINDEX}: Administrative status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007w4ciymkfvjcl0',1,'Admin',1672319423,'192.168.64.1',2,36,35954,NULL,'ZYXEL MGS-3712: Port {#SNMPINDEX}: Interface description','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007x4ciyxgffqopc',1,'Admin',1672319423,'192.168.64.1',2,36,35955,NULL,'ZYXEL MGS-3712: Port {#SNMPINDEX}: Outgoing utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007y4ciyl08updxk',1,'Admin',1672319423,'192.168.64.1',2,36,35956,NULL,'ZYXEL MGS-3712: Port {#SNMPINDEX}: Outgoing unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd007z4ciy1yapq3qu',1,'Admin',1672319423,'192.168.64.1',2,36,35957,NULL,'ZYXEL MGS-3712: Port {#SNMPINDEX}: Outgoing traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00804ciywbmzfd43',1,'Admin',1672319423,'192.168.64.1',2,36,35958,NULL,'ZYXEL MGS-3712: Port {#SNMPINDEX}: Outgoing multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00814ciyy6bnvr1a',1,'Admin',1672319423,'192.168.64.1',2,36,35959,NULL,'ZYXEL MGS-3712: Port {#SNMPINDEX}: Outgoing broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00824ciydbiac11c',1,'Admin',1672319423,'192.168.64.1',2,36,35960,NULL,'ZYXEL MGS-3712: Port {#SNMPINDEX}: Operational status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00834ciy4nvzucxk',1,'Admin',1672319423,'192.168.64.1',2,36,35961,NULL,'ZYXEL MGS-3712: Port {#SNMPINDEX}: Link type','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00844ciytnry0dms',1,'Admin',1672319423,'192.168.64.1',2,36,35962,NULL,'ZYXEL MGS-3712: Port {#SNMPINDEX}: Interface name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00854ciyw0glatmt',1,'Admin',1672319423,'192.168.64.1',2,36,35963,NULL,'ZYXEL MGS-3712: Port {#SNMPINDEX}: Incoming utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00864ciyyfc1autb',1,'Admin',1672319423,'192.168.64.1',2,36,35964,NULL,'ZYXEL MGS-3712: Port {#SNMPINDEX}: Incoming unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00874ciyx15ec96v',1,'Admin',1672319423,'192.168.64.1',2,36,35965,NULL,'ZYXEL MGS-3712: Port {#SNMPINDEX}: Incoming traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00884ciyqan5qhod',1,'Admin',1672319423,'192.168.64.1',2,36,35966,NULL,'ZYXEL MGS-3712: Port {#SNMPINDEX}: Incoming multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00894ciygkqjkbg0',1,'Admin',1672319423,'192.168.64.1',2,36,35967,NULL,'ZYXEL MGS-3712: Port {#SNMPINDEX}: Incoming broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008a4ciy9owtlojh',1,'Admin',1672319423,'192.168.64.1',2,36,35968,NULL,'ZYXEL MGS-3712: Port {#SNMPINDEX}: Link speed','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008b4ciyufric05h',1,'Admin',1672319423,'192.168.64.1',2,36,35969,NULL,'ZYXEL MGS-3712: Port {#SNMPINDEX}: Speed Duplex','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008c4ciy68i33h8a',1,'Admin',1672319423,'192.168.64.1',2,36,35970,NULL,'ZYXEL MGS-3712: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008d4ciydalcra21',1,'Admin',1672319423,'192.168.64.1',2,36,35971,NULL,'ZYXEL MGS-3712: SFP {#SNMPINDEX}: Date code','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008e4ciyv9nj9lsu',1,'Admin',1672319423,'192.168.64.1',2,36,35972,NULL,'ZYXEL MGS-3712: SFP {#SNMPINDEX}: Part number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008f4ciy3f7xbkof',1,'Admin',1672319423,'192.168.64.1',2,36,35973,NULL,'ZYXEL MGS-3712: SFP {#SNMPINDEX}: Revision','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008g4ciyley0qj83',1,'Admin',1672319423,'192.168.64.1',2,36,35974,NULL,'ZYXEL MGS-3712: SFP {#SNMPINDEX}: Serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008h4ciyqlrp5jbi',1,'Admin',1672319423,'192.168.64.1',2,36,35975,NULL,'ZYXEL MGS-3712: SFP {#SNMPINDEX}: Status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008i4ciyki7mnbtz',1,'Admin',1672319423,'192.168.64.1',2,36,35976,NULL,'ZYXEL MGS-3712: SFP {#SNMPINDEX}: Transceiver','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008j4ciy7h7gz1br',1,'Admin',1672319423,'192.168.64.1',2,36,35977,NULL,'ZYXEL MGS-3712: SFP {#SNMPINDEX}: Vendor','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008k4ciybibr65pa',1,'Admin',1672319423,'192.168.64.1',2,36,35978,NULL,'ZYXEL MGS-3712: Temperature \"{#ZYXEL.TEMP.ID}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008l4ciy8bxxn6x0',1,'Admin',1672319423,'192.168.64.1',2,36,35979,NULL,'ZYXEL MGS-3712: Nominal \"{#ZYXEL.VOLT.NOMINAL}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008m4ciy8zuwd936',1,'Admin',1672319423,'192.168.64.1',2,36,35996,NULL,'ZYXEL MGS-3712F: Fan #{#SNMPINDEX}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008n4ciyxnvbyxsf',1,'Admin',1672319423,'192.168.64.1',2,36,35997,NULL,'ZYXEL MGS-3712F: Port {#SNMPINDEX}: Administrative status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008o4ciy5buxarzh',1,'Admin',1672319423,'192.168.64.1',2,36,35998,NULL,'ZYXEL MGS-3712F: Port {#SNMPINDEX}: Interface description','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008p4ciy4f80ihid',1,'Admin',1672319423,'192.168.64.1',2,36,35999,NULL,'ZYXEL MGS-3712F: Port {#SNMPINDEX}: Outgoing utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008q4ciyrf200wkd',1,'Admin',1672319423,'192.168.64.1',2,36,36000,NULL,'ZYXEL MGS-3712F: Port {#SNMPINDEX}: Outgoing unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008r4ciysvrp2cbg',1,'Admin',1672319423,'192.168.64.1',2,36,36001,NULL,'ZYXEL MGS-3712F: Port {#SNMPINDEX}: Outgoing traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008s4ciyrs07rwox',1,'Admin',1672319423,'192.168.64.1',2,36,36002,NULL,'ZYXEL MGS-3712F: Port {#SNMPINDEX}: Outgoing multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008t4ciyel1v813h',1,'Admin',1672319423,'192.168.64.1',2,36,36003,NULL,'ZYXEL MGS-3712F: Port {#SNMPINDEX}: Outgoing broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008u4ciy9zi10y6e',1,'Admin',1672319423,'192.168.64.1',2,36,36004,NULL,'ZYXEL MGS-3712F: Port {#SNMPINDEX}: Operational status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008v4ciymvu5exsd',1,'Admin',1672319423,'192.168.64.1',2,36,36005,NULL,'ZYXEL MGS-3712F: Port {#SNMPINDEX}: Link type','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008w4ciy4x4uqbj4',1,'Admin',1672319423,'192.168.64.1',2,36,36006,NULL,'ZYXEL MGS-3712F: Port {#SNMPINDEX}: Interface name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008x4ciy2sodse0d',1,'Admin',1672319423,'192.168.64.1',2,36,36007,NULL,'ZYXEL MGS-3712F: Port {#SNMPINDEX}: Incoming utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008y4ciytgq4beyz',1,'Admin',1672319423,'192.168.64.1',2,36,36008,NULL,'ZYXEL MGS-3712F: Port {#SNMPINDEX}: Incoming unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd008z4ciyo2e3lxjf',1,'Admin',1672319423,'192.168.64.1',2,36,36009,NULL,'ZYXEL MGS-3712F: Port {#SNMPINDEX}: Incoming traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00904ciyl6wp8zrt',1,'Admin',1672319423,'192.168.64.1',2,36,36010,NULL,'ZYXEL MGS-3712F: Port {#SNMPINDEX}: Incoming multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00914ciyv0pxasma',1,'Admin',1672319423,'192.168.64.1',2,36,36011,NULL,'ZYXEL MGS-3712F: Port {#SNMPINDEX}: Incoming broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00924ciyz169fxpc',1,'Admin',1672319423,'192.168.64.1',2,36,36012,NULL,'ZYXEL MGS-3712F: Port {#SNMPINDEX}: Link speed','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00934ciymt1hnimr',1,'Admin',1672319423,'192.168.64.1',2,36,36013,NULL,'ZYXEL MGS-3712F: Port {#SNMPINDEX}: Speed Duplex','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00944ciyvekkwwru',1,'Admin',1672319423,'192.168.64.1',2,36,36014,NULL,'ZYXEL MGS-3712F: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00954ciyg2ed7nz4',1,'Admin',1672319423,'192.168.64.1',2,36,36015,NULL,'ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Date code','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00964ciysgphfr5f',1,'Admin',1672319423,'192.168.64.1',2,36,36016,NULL,'ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Part number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00974ciydh5pm0s8',1,'Admin',1672319423,'192.168.64.1',2,36,36017,NULL,'ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Revision','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00984ciy77s35o98',1,'Admin',1672319423,'192.168.64.1',2,36,36018,NULL,'ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00994ciyorqkl4hw',1,'Admin',1672319423,'192.168.64.1',2,36,36019,NULL,'ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009a4ciyeyha3na3',1,'Admin',1672319423,'192.168.64.1',2,36,36020,NULL,'ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Transceiver','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009b4ciyl0obre1i',1,'Admin',1672319423,'192.168.64.1',2,36,36021,NULL,'ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Vendor','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009c4ciyowp1xss2',1,'Admin',1672319423,'192.168.64.1',2,36,36022,NULL,'ZYXEL MGS-3712F: Temperature \"{#ZYXEL.TEMP.ID}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009d4ciy1uo0w5ob',1,'Admin',1672319423,'192.168.64.1',2,36,36023,NULL,'ZYXEL MGS-3712F: Nominal \"{#ZYXEL.VOLT.NOMINAL}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009e4ciypgfcssx3',1,'Admin',1672319423,'192.168.64.1',2,36,36041,NULL,'ZYXEL MES3500-24S: {#ZYXEL.FAN.DESCRIPTION}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009f4ciy6sajsupb',1,'Admin',1672319423,'192.168.64.1',2,36,36042,NULL,'ZYXEL MES3500-24S: Port {#SNMPINDEX}: Administrative status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009g4ciylokmkhap',1,'Admin',1672319423,'192.168.64.1',2,36,36043,NULL,'ZYXEL MES3500-24S: Port {#SNMPINDEX}: Interface description','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009h4ciya5m5wpgt',1,'Admin',1672319423,'192.168.64.1',2,36,36044,NULL,'ZYXEL MES3500-24S: Port {#SNMPINDEX}: Outgoing utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009i4ciytajnxsfq',1,'Admin',1672319423,'192.168.64.1',2,36,36045,NULL,'ZYXEL MES3500-24S: Port {#SNMPINDEX}: Outgoing unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009j4ciyx479n7i9',1,'Admin',1672319423,'192.168.64.1',2,36,36046,NULL,'ZYXEL MES3500-24S: Port {#SNMPINDEX}: Outgoing traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009k4ciy3fzi6zhy',1,'Admin',1672319423,'192.168.64.1',2,36,36047,NULL,'ZYXEL MES3500-24S: Port {#SNMPINDEX}: Outgoing multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009l4ciy7kb1yhb5',1,'Admin',1672319423,'192.168.64.1',2,36,36048,NULL,'ZYXEL MES3500-24S: Port {#SNMPINDEX}: Outgoing broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009m4ciy49pidvqz',1,'Admin',1672319423,'192.168.64.1',2,36,36049,NULL,'ZYXEL MES3500-24S: Port {#SNMPINDEX}: Operational status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009n4ciyuzdh85ih',1,'Admin',1672319423,'192.168.64.1',2,36,36050,NULL,'ZYXEL MES3500-24S: Port {#SNMPINDEX}: Link type','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009o4ciy85xpfz2a',1,'Admin',1672319423,'192.168.64.1',2,36,36051,NULL,'ZYXEL MES3500-24S: Port {#SNMPINDEX}: Interface name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009p4ciyzrma41zy',1,'Admin',1672319423,'192.168.64.1',2,36,36052,NULL,'ZYXEL MES3500-24S: Port {#SNMPINDEX}: Incoming utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009q4ciyvh8obtk2',1,'Admin',1672319423,'192.168.64.1',2,36,36053,NULL,'ZYXEL MES3500-24S: Port {#SNMPINDEX}: Incoming unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009r4ciyhy6gp33n',1,'Admin',1672319423,'192.168.64.1',2,36,36054,NULL,'ZYXEL MES3500-24S: Port {#SNMPINDEX}: Incoming traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009s4ciyv032i6c1',1,'Admin',1672319423,'192.168.64.1',2,36,36055,NULL,'ZYXEL MES3500-24S: Port {#SNMPINDEX}: Incoming multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009t4ciy8rin6w5e',1,'Admin',1672319423,'192.168.64.1',2,36,36056,NULL,'ZYXEL MES3500-24S: Port {#SNMPINDEX}: Incoming broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009u4ciy9gkvqhdl',1,'Admin',1672319423,'192.168.64.1',2,36,36057,NULL,'ZYXEL MES3500-24S: Port {#SNMPINDEX}: Link speed','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009v4ciyzxxxxbsq',1,'Admin',1672319423,'192.168.64.1',2,36,36058,NULL,'ZYXEL MES3500-24S: Port {#SNMPINDEX}: Speed Duplex','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009w4ciy9msw2c4g',1,'Admin',1672319423,'192.168.64.1',2,36,36059,NULL,'ZYXEL MES3500-24S: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009x4ciy6luwal3d',1,'Admin',1672319423,'192.168.64.1',2,36,36060,NULL,'ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Date code','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009y4ciyi01baypc',1,'Admin',1672319423,'192.168.64.1',2,36,36061,NULL,'ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Part number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd009z4ciytqs93k67',1,'Admin',1672319423,'192.168.64.1',2,36,36062,NULL,'ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Revision','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00a04ciy6lfx75zs',1,'Admin',1672319423,'192.168.64.1',2,36,36063,NULL,'ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00a14ciys6dqsj8v',1,'Admin',1672319423,'192.168.64.1',2,36,36064,NULL,'ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00a24ciyd5pfytv8',1,'Admin',1672319423,'192.168.64.1',2,36,36065,NULL,'ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Transceiver','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00a34ciyrk6zch12',1,'Admin',1672319423,'192.168.64.1',2,36,36066,NULL,'ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Vendor','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00a44ciykc7sai1r',1,'Admin',1672319423,'192.168.64.1',2,36,36067,NULL,'ZYXEL MES3500-24S: Temperature \"{#ZYXEL.TEMPDESCRIPTION}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00a54ciyx2vgfhvx',1,'Admin',1672319423,'192.168.64.1',2,36,36068,NULL,'ZYXEL MES3500-24S: Nominal \"{#ZYXEL.DESCRIPTION}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00a64ciym6jkd7pu',1,'Admin',1672319423,'192.168.64.1',2,36,36086,NULL,'ZYXEL MGS3520-28x: {#ZYXEL.FAN.DESCRIPTION}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00a74ciyp1arwhjm',1,'Admin',1672319423,'192.168.64.1',2,36,36087,NULL,'ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Administrative status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00a84ciyij7ouiiu',1,'Admin',1672319423,'192.168.64.1',2,36,36088,NULL,'ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Interface description','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00a94ciy851szswj',1,'Admin',1672319423,'192.168.64.1',2,36,36089,NULL,'ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Outgoing utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00aa4ciyr60hkyxk',1,'Admin',1672319423,'192.168.64.1',2,36,36090,NULL,'ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Outgoing unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00ab4ciyk9hbsv8q',1,'Admin',1672319423,'192.168.64.1',2,36,36091,NULL,'ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Outgoing traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00ac4ciyfghr68oz',1,'Admin',1672319423,'192.168.64.1',2,36,36092,NULL,'ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Outgoing multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00ad4ciyl46zbeyt',1,'Admin',1672319423,'192.168.64.1',2,36,36093,NULL,'ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Outgoing broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00ae4ciybk7h3uqr',1,'Admin',1672319423,'192.168.64.1',2,36,36094,NULL,'ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Operational status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00af4ciyosur41k0',1,'Admin',1672319423,'192.168.64.1',2,36,36095,NULL,'ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Link type','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00ag4ciyxh7m1ool',1,'Admin',1672319423,'192.168.64.1',2,36,36096,NULL,'ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Interface name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00ah4ciyczeyw3da',1,'Admin',1672319423,'192.168.64.1',2,36,36097,NULL,'ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Incoming utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00ai4ciyzqojbrnc',1,'Admin',1672319423,'192.168.64.1',2,36,36098,NULL,'ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Incoming unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00aj4ciykfitnwgi',1,'Admin',1672319423,'192.168.64.1',2,36,36099,NULL,'ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Incoming traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00ak4ciyjygzcxs5',1,'Admin',1672319423,'192.168.64.1',2,36,36100,NULL,'ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Incoming multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00al4ciyvttg4vfy',1,'Admin',1672319423,'192.168.64.1',2,36,36101,NULL,'ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Incoming broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00am4ciy77a8k5qi',1,'Admin',1672319423,'192.168.64.1',2,36,36102,NULL,'ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Link speed','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00an4ciy1ho6vdl1',1,'Admin',1672319423,'192.168.64.1',2,36,36103,NULL,'ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Speed Duplex','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00ao4ciysx5rl40m',1,'Admin',1672319423,'192.168.64.1',2,36,36104,NULL,'ZYXEL MGS3520-28x: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00ap4ciyg71x9osm',1,'Admin',1672319423,'192.168.64.1',2,36,36105,NULL,'ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Date code','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00aq4ciyhr9i29ay',1,'Admin',1672319423,'192.168.64.1',2,36,36106,NULL,'ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Part number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00ar4ciydz58z1vk',1,'Admin',1672319423,'192.168.64.1',2,36,36107,NULL,'ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Revision','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00as4ciybbw3m7ak',1,'Admin',1672319423,'192.168.64.1',2,36,36108,NULL,'ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00at4ciykjju903q',1,'Admin',1672319423,'192.168.64.1',2,36,36109,NULL,'ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00au4ciyh51p42h5',1,'Admin',1672319423,'192.168.64.1',2,36,36110,NULL,'ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Transceiver','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00av4ciy0exkobtd',1,'Admin',1672319423,'192.168.64.1',2,36,36111,NULL,'ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Vendor','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00aw4ciy81wh3hm9',1,'Admin',1672319423,'192.168.64.1',2,36,36112,NULL,'ZYXEL MGS3520-28x: Temperature \"{#ZYXEL.TEMPDESCRIPTION}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00ax4ciy1blvb6bs',1,'Admin',1672319423,'192.168.64.1',2,36,36113,NULL,'ZYXEL MGS3520-28x: Nominal \"{#ZYXEL.DESCRIPTION}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00ay4ciye9jjyv4n',1,'Admin',1672319423,'192.168.64.1',2,36,36131,NULL,'ZYXEL XGS-4728F: Fan #{#SNMPINDEX}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00az4ciyy3u0z25f',1,'Admin',1672319423,'192.168.64.1',2,36,36132,NULL,'ZYXEL XGS-4728F: Memory \"{#ZYXEL.MEMORY.NAME}\" utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00b04ciyd85dh5ij',1,'Admin',1672319423,'192.168.64.1',2,36,36133,NULL,'ZYXEL XGS-4728F: Port {#SNMPINDEX}: Administrative status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00b14ciynb07rwz6',1,'Admin',1672319423,'192.168.64.1',2,36,36134,NULL,'ZYXEL XGS-4728F: Port {#SNMPINDEX}: Interface description','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00b24ciy4ezppsx8',1,'Admin',1672319423,'192.168.64.1',2,36,36135,NULL,'ZYXEL XGS-4728F: Port {#SNMPINDEX}: Outgoing utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00b34ciypkq1i1ua',1,'Admin',1672319423,'192.168.64.1',2,36,36136,NULL,'ZYXEL XGS-4728F: Port {#SNMPINDEX}: Outgoing unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00b44ciy7nnfyvjj',1,'Admin',1672319423,'192.168.64.1',2,36,36137,NULL,'ZYXEL XGS-4728F: Port {#SNMPINDEX}: Outgoing traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00b54ciy46l5o8i4',1,'Admin',1672319423,'192.168.64.1',2,36,36138,NULL,'ZYXEL XGS-4728F: Port {#SNMPINDEX}: Outgoing multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00b64ciyue554ffs',1,'Admin',1672319423,'192.168.64.1',2,36,36139,NULL,'ZYXEL XGS-4728F: Port {#SNMPINDEX}: Outgoing broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00b74ciy2jk8hag7',1,'Admin',1672319423,'192.168.64.1',2,36,36140,NULL,'ZYXEL XGS-4728F: Port {#SNMPINDEX}: Operational status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00b84ciy3u0sxq5w',1,'Admin',1672319423,'192.168.64.1',2,36,36141,NULL,'ZYXEL XGS-4728F: Port {#SNMPINDEX}: Link type','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00b94ciy001resek',1,'Admin',1672319423,'192.168.64.1',2,36,36142,NULL,'ZYXEL XGS-4728F: Port {#SNMPINDEX}: Interface name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00ba4ciysnlyj26q',1,'Admin',1672319423,'192.168.64.1',2,36,36143,NULL,'ZYXEL XGS-4728F: Port {#SNMPINDEX}: Incoming utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bb4ciyp4ll04dt',1,'Admin',1672319423,'192.168.64.1',2,36,36144,NULL,'ZYXEL XGS-4728F: Port {#SNMPINDEX}: Incoming unicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bc4ciyrzs7tiqn',1,'Admin',1672319423,'192.168.64.1',2,36,36145,NULL,'ZYXEL XGS-4728F: Port {#SNMPINDEX}: Incoming traffic','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bd4ciyaonyxl91',1,'Admin',1672319423,'192.168.64.1',2,36,36146,NULL,'ZYXEL XGS-4728F: Port {#SNMPINDEX}: Incoming multicast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00be4ciyx86sk4a3',1,'Admin',1672319423,'192.168.64.1',2,36,36147,NULL,'ZYXEL XGS-4728F: Port {#SNMPINDEX}: Incoming broadcast packages','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bf4ciyyjtwb8dw',1,'Admin',1672319423,'192.168.64.1',2,36,36148,NULL,'ZYXEL XGS-4728F: Port {#SNMPINDEX}: Link speed','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bg4ciyiduxjixb',1,'Admin',1672319423,'192.168.64.1',2,36,36149,NULL,'ZYXEL XGS-4728F: Port {#SNMPINDEX}: Speed Duplex','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bh4ciyoay35208',1,'Admin',1672319423,'192.168.64.1',2,36,36150,NULL,'ZYXEL XGS-4728F: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION}','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bi4ciypledaq89',1,'Admin',1672319423,'192.168.64.1',2,36,36151,NULL,'ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Date code','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bj4ciysyifryjn',1,'Admin',1672319423,'192.168.64.1',2,36,36152,NULL,'ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Part number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bk4ciygn3js4gn',1,'Admin',1672319423,'192.168.64.1',2,36,36153,NULL,'ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Revision','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bl4ciym72ewbn2',1,'Admin',1672319423,'192.168.64.1',2,36,36154,NULL,'ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bm4ciy350ox4kf',1,'Admin',1672319423,'192.168.64.1',2,36,36155,NULL,'ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bn4ciyv1zlwlp9',1,'Admin',1672319423,'192.168.64.1',2,36,36156,NULL,'ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Transceiver','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bo4ciyqpq0qwri',1,'Admin',1672319423,'192.168.64.1',2,36,36157,NULL,'ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Vendor','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bp4ciyjzclgjtl',1,'Admin',1672319423,'192.168.64.1',2,36,36158,NULL,'ZYXEL XGS-4728F: Temperature \"{#ZYXEL.TEMP.ID}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bq4ciy0l01nltm',1,'Admin',1672319423,'192.168.64.1',2,36,36159,NULL,'ZYXEL XGS-4728F: Nominal \"{#ZYXEL.VOLT.NOMINAL}\"','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00br4ciywnwrrcca',1,'Admin',1672319423,'192.168.64.1',2,36,39808,NULL,'Cluster node [{#NODE.NAME}]: Address','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bs4ciyybbenu5x',1,'Admin',1672319423,'192.168.64.1',2,36,39809,NULL,'Cluster node [{#NODE.NAME}]: Last access age','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bt4ciytzjvtc6s',1,'Admin',1672319423,'192.168.64.1',2,36,39810,NULL,'Cluster node [{#NODE.NAME}]: Last access time','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bu4ciyy5uszgvj',1,'Admin',1672319423,'192.168.64.1',2,36,39811,NULL,'Cluster node [{#NODE.NAME}]: Status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bv4ciyt0f9b438',1,'Admin',1672319423,'192.168.64.1',2,36,44059,NULL,'Proxy [{#PROXY.NAME}]: Certificate','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bw4ciy7rimvgf0',1,'Admin',1672319423,'192.168.64.1',2,36,44060,NULL,'Proxy [{#PROXY.NAME}]: Compatibility','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bx4ciympm5dtdy',1,'Admin',1672319423,'192.168.64.1',2,36,44061,NULL,'Proxy [{#PROXY.NAME}]: Compression','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00by4ciy588fngca',1,'Admin',1672319423,'192.168.64.1',2,36,44062,NULL,'Proxy [{#PROXY.NAME}]: Host count','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00bz4ciylewd7a9h',1,'Admin',1672319423,'192.168.64.1',2,36,44063,NULL,'Proxy [{#PROXY.NAME}]: Item count','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00c04ciy3vv4dser',1,'Admin',1672319423,'192.168.64.1',2,36,44064,NULL,'Proxy [{#PROXY.NAME}]: Last seen, in seconds','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00c14ciyloeuvpdu',1,'Admin',1672319423,'192.168.64.1',2,36,44065,NULL,'Proxy [{#PROXY.NAME}]: Mode','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00c24ciy1k6fy4st',1,'Admin',1672319423,'192.168.64.1',2,36,44066,NULL,'Proxy [{#PROXY.NAME}]: PSK','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00c34ciygonpqftl',1,'Admin',1672319423,'192.168.64.1',2,36,44067,NULL,'Proxy [{#PROXY.NAME}]: Required VPS','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00c44ciykvdgni0a',1,'Admin',1672319423,'192.168.64.1',2,36,44068,NULL,'Proxy [{#PROXY.NAME}]: Unencrypted','clc93t1nc00004ciyrkno2s1d',''),('clc93t1nd00c54ciyuegf172v',1,'Admin',1672319423,'192.168.64.1',2,36,44069,NULL,'Proxy [{#PROXY.NAME}]: Version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1ox00c64ciysxtoj4uj',1,'Admin',1672319423,'192.168.64.1',2,15,10061,NULL,'Zabbix server: Number of processed numeric (float) values per second','clc93t1nc00004ciyrkno2s1d',''),('clc93t1ox00c74ciyu4b69wwh',1,'Admin',1672319423,'192.168.64.1',2,15,10062,NULL,'Zabbix server: Number of processed character values per second','clc93t1nc00004ciyrkno2s1d',''),('clc93t1ox00c84ciyum5eco74',1,'Admin',1672319423,'192.168.64.1',2,15,10063,NULL,'Zabbix server: Number of processed log values per second','clc93t1nc00004ciyrkno2s1d',''),('clc93t1ox00c94ciy9hxdici5',1,'Admin',1672319423,'192.168.64.1',2,15,10064,NULL,'Zabbix server: Number of processed numeric (unsigned) values per second','clc93t1nc00004ciyrkno2s1d',''),('clc93t1ox00ca4ciy9it6l7hu',1,'Admin',1672319423,'192.168.64.1',2,15,10065,NULL,'Zabbix server: Number of processed text values per second','clc93t1nc00004ciyrkno2s1d',''),('clc93t1ox00cb4ciybrybdvm4',1,'Admin',1672319423,'192.168.64.1',2,15,10066,NULL,'Zabbix server: Number of processed not supported values per second','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00cc4ciyc8elu61n',1,'Admin',1672319423,'192.168.64.1',2,15,10067,NULL,'Zabbix proxy: Number of processed numeric (float) values per second','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00cd4ciydsrtjqkd',1,'Admin',1672319423,'192.168.64.1',2,15,10068,NULL,'Zabbix proxy: Number of processed character values per second','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ce4ciy8294n6g8',1,'Admin',1672319423,'192.168.64.1',2,15,10069,NULL,'Zabbix proxy: Number of processed log values per second','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00cf4ciypopfd5yo',1,'Admin',1672319423,'192.168.64.1',2,15,10070,NULL,'Zabbix proxy: Number of processed numeric (unsigned) values per second','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00cg4ciyuh02nosk',1,'Admin',1672319423,'192.168.64.1',2,15,10071,NULL,'Zabbix proxy: Number of processed text values per second','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ch4ciy7dxwmpvn',1,'Admin',1672319423,'192.168.64.1',2,15,10072,NULL,'Zabbix proxy: Number of processed not supported values per second','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ci4ciyfqju7ngt',1,'Admin',1672319423,'192.168.64.1',2,15,22183,NULL,'Zabbix server: History write cache, % used','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00cj4ciysdjh1kmz',1,'Admin',1672319423,'192.168.64.1',2,15,22185,NULL,'Zabbix server: Trend write cache, % used','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ck4ciyblx3vu54',1,'Admin',1672319423,'192.168.64.1',2,15,22187,NULL,'Zabbix server: Number of processed values per second','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00cl4ciykrzym6qz',1,'Admin',1672319423,'192.168.64.1',2,15,22189,NULL,'Zabbix server: Configuration cache, % used','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00cm4ciyskhzic11',1,'Admin',1672319423,'192.168.64.1',2,15,22191,NULL,'Zabbix server: Value cache, % used','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00cn4ciywdw8kxnk',1,'Admin',1672319423,'192.168.64.1',2,15,22196,NULL,'Zabbix server: Value cache hits','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00co4ciyq79mpo5q',1,'Admin',1672319423,'192.168.64.1',2,15,22199,NULL,'Zabbix server: Value cache misses','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00cp4ciywh2jotw6',1,'Admin',1672319423,'192.168.64.1',2,15,22219,NULL,'Zabbix server: Queue over 10 minutes','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00cq4ciydv9xtof7',1,'Admin',1672319423,'192.168.64.1',2,15,22231,NULL,'Version of Zabbix agent running','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00cr4ciyfsc3uw9y',1,'Admin',1672319423,'192.168.64.1',2,15,22232,NULL,'Zabbix agent ping','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00cs4ciy73j6efl1',1,'Admin',1672319423,'192.168.64.1',2,15,22396,NULL,'Zabbix server: History index cache, % used','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ct4ciymd88cvqo',1,'Admin',1672319423,'192.168.64.1',2,15,22399,NULL,'Zabbix server: Utilization of poller data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00cu4ciy82bzpewv',1,'Admin',1672319423,'192.168.64.1',2,15,22400,NULL,'Zabbix server: Utilization of unreachable poller data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00cv4ciywl4nnlco',1,'Admin',1672319423,'192.168.64.1',2,15,22401,NULL,'Zabbix server: Utilization of vmware data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00cw4ciy79pu35x0',1,'Admin',1672319423,'192.168.64.1',2,15,22402,NULL,'Zabbix server: Utilization of http poller data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00cx4ciyrxrir645',1,'Admin',1672319423,'192.168.64.1',2,15,22404,NULL,'Zabbix server: Utilization of trapper data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00cy4ciyiyl6ayb6',1,'Admin',1672319423,'192.168.64.1',2,15,22406,NULL,'Zabbix server: Utilization of history syncer internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00cz4ciy2pimq0er',1,'Admin',1672319423,'192.168.64.1',2,15,22408,NULL,'Zabbix server: Utilization of housekeeper internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00d04ciyzny8e0y3',1,'Admin',1672319423,'192.168.64.1',2,15,22412,NULL,'Zabbix server: Utilization of configuration syncer internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00d14ciymsr9sbzy',1,'Admin',1672319423,'192.168.64.1',2,15,22414,NULL,'Zabbix server: Utilization of self-monitoring internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00d24ciypnyt7fgo',1,'Admin',1672319423,'192.168.64.1',2,15,22416,NULL,'Zabbix server: Utilization of ipmi poller data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00d34ciyg8ugj7mf',1,'Admin',1672319423,'192.168.64.1',2,15,22418,NULL,'Zabbix server: Utilization of icmp pinger data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00d44ciy2udq0jqe',1,'Admin',1672319423,'192.168.64.1',2,15,22420,NULL,'Zabbix server: Utilization of proxy poller data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00d54ciyqomgy0ap',1,'Admin',1672319423,'192.168.64.1',2,15,22422,NULL,'Zabbix server: Utilization of escalator internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00d64ciywgpdl6b4',1,'Admin',1672319423,'192.168.64.1',2,15,22424,NULL,'Zabbix server: Utilization of alerter internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00d74ciyq8zmt2s2',1,'Admin',1672319423,'192.168.64.1',2,15,22426,NULL,'Zabbix server: Utilization of timer internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00d84ciym36avz2w',1,'Admin',1672319423,'192.168.64.1',2,15,22430,NULL,'Zabbix server: Utilization of discoverer data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00d94ciymsxftmit',1,'Admin',1672319423,'192.168.64.1',2,15,22689,NULL,'Zabbix server: Utilization of java poller data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00da4ciyimvhfk24',1,'Admin',1672319423,'192.168.64.1',2,15,23171,NULL,'Zabbix server: Utilization of snmp trapper data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00db4ciyw67ykkec',1,'Admin',1672319423,'192.168.64.1',2,15,23251,NULL,'Zabbix server: Queue','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00dc4ciyp6wi91tv',1,'Admin',1672319423,'192.168.64.1',2,15,23318,NULL,'Host name of Zabbix agent running','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00dd4ciy5kc6zoww',1,'Admin',1672319423,'192.168.64.1',2,15,23340,NULL,'Zabbix proxy: Number of processed values per second','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00de4ciyx96ouxw7',1,'Admin',1672319423,'192.168.64.1',2,15,23341,NULL,'Zabbix proxy: History index cache, % used','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00df4ciy2zz2sxhf',1,'Admin',1672319423,'192.168.64.1',2,15,23342,NULL,'Zabbix proxy: History write cache, % used','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00dg4ciy1xh54qwn',1,'Admin',1672319423,'192.168.64.1',2,15,23343,NULL,'Zabbix proxy: Utilization of self-monitoring internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00dh4ciyo90qtn10',1,'Admin',1672319423,'192.168.64.1',2,15,23344,NULL,'Zabbix proxy: Utilization of snmp trapper data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00di4ciyrgjsrxz2',1,'Admin',1672319423,'192.168.64.1',2,15,23345,NULL,'Zabbix proxy: Utilization of trapper data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00dj4ciy6gpasr2r',1,'Admin',1672319423,'192.168.64.1',2,15,23346,NULL,'Zabbix proxy: Utilization of unreachable poller data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00dk4ciyqkkrmc9l',1,'Admin',1672319423,'192.168.64.1',2,15,23347,NULL,'Zabbix proxy: Utilization of configuration syncer internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00dl4ciy5qoohkyu',1,'Admin',1672319423,'192.168.64.1',2,15,23348,NULL,'Zabbix proxy: Utilization of poller data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00dm4ciy8w2fcdmq',1,'Admin',1672319423,'192.168.64.1',2,15,23349,NULL,'Zabbix proxy: Utilization of java poller data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00dn4ciygb0gwo2j',1,'Admin',1672319423,'192.168.64.1',2,15,23350,NULL,'Zabbix proxy: Utilization of history syncer internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00do4ciy9r8tr6wi',1,'Admin',1672319423,'192.168.64.1',2,15,23352,NULL,'Zabbix proxy: Utilization of discoverer data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00dp4ciyw47seueo',1,'Admin',1672319423,'192.168.64.1',2,15,23353,NULL,'Zabbix proxy: Utilization of housekeeper internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00dq4ciypk4r80y4',1,'Admin',1672319423,'192.168.64.1',2,15,23354,NULL,'Zabbix proxy: Utilization of http poller data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00dr4ciy4df9am7c',1,'Admin',1672319423,'192.168.64.1',2,15,23355,NULL,'Zabbix proxy: Utilization of ipmi poller data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ds4ciyhbgimkrm',1,'Admin',1672319423,'192.168.64.1',2,15,23356,NULL,'Zabbix proxy: Utilization of icmp pinger data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00dt4ciye7ddkx0k',1,'Admin',1672319423,'192.168.64.1',2,15,23357,NULL,'Zabbix proxy: Configuration cache, % used','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00du4ciyl2vo2od4',1,'Admin',1672319423,'192.168.64.1',2,15,23358,NULL,'Zabbix proxy: Queue','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00dv4ciyzmcp1ity',1,'Admin',1672319423,'192.168.64.1',2,15,23359,NULL,'Zabbix proxy: Queue over 10 minutes','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00dw4ciy4av2kzwg',1,'Admin',1672319423,'192.168.64.1',2,15,23360,NULL,'Zabbix proxy: Utilization of data sender internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00dx4ciyv6c8qfil',1,'Admin',1672319423,'192.168.64.1',2,15,23634,NULL,'Zabbix server: VMware cache, % used','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00dy4ciy46g05hqv',1,'Admin',1672319423,'192.168.64.1',2,15,23661,NULL,'Zabbix server: Value cache operating mode','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00dz4ciy8k8qxtp1',1,'Admin',1672319423,'192.168.64.1',2,15,23663,NULL,'Zabbix server: Utilization of task manager internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00e04ciyhda8e9ic',1,'Admin',1672319423,'192.168.64.1',2,15,25366,NULL,'Zabbix server: Utilization of ipmi manager internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00e14ciytj0iasks',1,'Admin',1672319423,'192.168.64.1',2,15,25368,NULL,'Zabbix proxy: Utilization of ipmi manager internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00e24ciybxok3lk4',1,'Admin',1672319423,'192.168.64.1',2,15,25369,NULL,'Zabbix proxy: Utilization of task manager internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00e34ciy7ehccgpz',1,'Admin',1672319423,'192.168.64.1',2,15,25370,NULL,'Zabbix server: Utilization of alert manager internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00e44ciyqr6lgnfb',1,'Admin',1672319423,'192.168.64.1',2,15,25665,NULL,'Zabbix server: Utilization of preprocessing manager internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00e54ciyycdrq4b9',1,'Admin',1672319423,'192.168.64.1',2,15,25666,NULL,'Zabbix server: Utilization of preprocessing worker internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00e64ciy5y48yxyd',1,'Admin',1672319423,'192.168.64.1',2,15,28248,NULL,'Zabbix server: Preprocessing queue','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00e74ciym75kb4n8',1,'Admin',1672319423,'192.168.64.1',2,15,28250,NULL,'Zabbix proxy: Utilization of vmware data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00e84ciy5ot5skvz',1,'Admin',1672319423,'192.168.64.1',2,15,28251,NULL,'Zabbix proxy: VMware cache, % used','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00e94ciyzh3at0j7',1,'Admin',1672319423,'192.168.64.1',2,15,28533,NULL,'Zabbix server: LLD queue','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ea4ciy6usjm6ka',1,'Admin',1672319423,'192.168.64.1',2,15,28535,NULL,'Zabbix server: Utilization of LLD manager internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00eb4ciyix2xhlop',1,'Admin',1672319423,'192.168.64.1',2,15,28537,NULL,'Zabbix server: Utilization of LLD worker internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ec4ciyc3pwinjx',1,'Admin',1672319423,'192.168.64.1',2,15,28617,NULL,'Zabbix proxy: Preprocessing queue','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ed4ciy0n3ix6fa',1,'Admin',1672319423,'192.168.64.1',2,15,28618,NULL,'Zabbix proxy: Utilization of preprocessing manager internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ee4ciy2fa7xm6d',1,'Admin',1672319423,'192.168.64.1',2,15,28619,NULL,'Zabbix proxy: Utilization of preprocessing worker internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ef4ciydabf5b2f',1,'Admin',1672319423,'192.168.64.1',2,15,29544,NULL,'Zabbix agent availability','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00eg4ciyy51w0zkj',1,'Admin',1672319423,'192.168.64.1',2,15,29545,NULL,'Version of Zabbix agent running','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00eh4ciygm5sagz8',1,'Admin',1672319423,'192.168.64.1',2,15,29546,NULL,'Host name of Zabbix agent running','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ei4ciyld2snrra',1,'Admin',1672319423,'192.168.64.1',2,15,29547,NULL,'Zabbix agent ping','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ej4ciyp071cbqi',1,'Admin',1672319423,'192.168.64.1',2,15,29822,NULL,'Zabbix server: Utilization of alert syncer internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ek4ciy9t3e3ngk',1,'Admin',1672319423,'192.168.64.1',2,15,32963,NULL,'Zookeeper: Get server metrics','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00el4ciydk4njbj0',1,'Admin',1672319423,'192.168.64.1',2,15,32964,NULL,'Zookeeper: Get connections stats','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00em4ciy51klpfmm',1,'Admin',1672319423,'192.168.64.1',2,15,32965,NULL,'Zookeeper: Approximate data size','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00en4ciynuedbbm9',1,'Admin',1672319423,'192.168.64.1',2,15,32966,NULL,'Zookeeper: Outstanding requests','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00eo4ciyxtfsc3n5',1,'Admin',1672319423,'192.168.64.1',2,15,32967,NULL,'Zookeeper: Latency, max','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ep4ciyslsja7ou',1,'Admin',1672319423,'192.168.64.1',2,15,32968,NULL,'Zookeeper: Latency, min','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00eq4ciyle9c1mtl',1,'Admin',1672319423,'192.168.64.1',2,15,32969,NULL,'Zookeeper: Alive connections','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00er4ciygod1skfi',1,'Admin',1672319423,'192.168.64.1',2,15,32970,NULL,'Zookeeper: File descriptors, open','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00es4ciyf4ptqzq5',1,'Admin',1672319423,'192.168.64.1',2,15,32971,NULL,'Zookeeper: Packets received per sec','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00et4ciye74zdb1d',1,'Admin',1672319423,'192.168.64.1',2,15,32972,NULL,'Zookeeper: Looking per sec','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00eu4ciytf551zp7',1,'Admin',1672319423,'192.168.64.1',2,15,32973,NULL,'Zookeeper: Packets sent per sec','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ev4ciyoi5ksmcv',1,'Admin',1672319423,'192.168.64.1',2,15,32974,NULL,'Zookeeper: Revalidate per sec','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ew4ciyyp48zpr0',1,'Admin',1672319423,'192.168.64.1',2,15,32975,NULL,'Zookeeper: Server mode','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ex4ciyjbckdz52',1,'Admin',1672319423,'192.168.64.1',2,15,32976,NULL,'Zookeeper: Snap syncs per sec','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ey4ciydvoeq91w',1,'Admin',1672319423,'192.168.64.1',2,15,32977,NULL,'Zookeeper: Uptime','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ez4ciy9pvlf6ax',1,'Admin',1672319423,'192.168.64.1',2,15,32978,NULL,'Zookeeper: Version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00f04ciyrbneo3xe',1,'Admin',1672319423,'192.168.64.1',2,15,32979,NULL,'Zookeeper: Watch count','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00f14ciy6ois0tpc',1,'Admin',1672319423,'192.168.64.1',2,15,32980,NULL,'Zookeeper: File descriptors, max','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00f24ciyrghkld74',1,'Admin',1672319423,'192.168.64.1',2,15,32981,NULL,'Zookeeper: Global sessions','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00f34ciykm3uv4ro',1,'Admin',1672319423,'192.168.64.1',2,15,32982,NULL,'Zookeeper: Local sessions','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00f44ciy2i6nh4h6',1,'Admin',1672319423,'192.168.64.1',2,15,32983,NULL,'Zookeeper: Election time, avg','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00f54ciyd215lfk4',1,'Admin',1672319423,'192.168.64.1',2,15,32984,NULL,'Zookeeper: Ephemeral nodes count','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00f64ciy82nfj9fq',1,'Admin',1672319423,'192.168.64.1',2,15,32985,NULL,'Zookeeper: Diff syncs per sec','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00f74ciyf0zptvla',1,'Admin',1672319423,'192.168.64.1',2,15,32986,NULL,'Zookeeper: Revalidate connections per sec','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00f84ciy0busj4xm',1,'Admin',1672319423,'192.168.64.1',2,15,32987,NULL,'Zookeeper: Rejected connections per sec','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00f94ciye84od6tp',1,'Admin',1672319423,'192.168.64.1',2,15,32988,NULL,'Zookeeper: Drop connections per sec','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fa4ciy8hh4kv6y',1,'Admin',1672319423,'192.168.64.1',2,15,32989,NULL,'Zookeeper: Commit per sec','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fb4ciy67usc0oa',1,'Admin',1672319423,'192.168.64.1',2,15,32990,NULL,'Zookeeper: Snapshot writes','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fc4ciyuy1cd5oy',1,'Admin',1672319423,'192.168.64.1',2,15,32991,NULL,'Zookeeper: Fsync','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fd4ciyh4gi6pzu',1,'Admin',1672319423,'192.168.64.1',2,15,32992,NULL,'Zookeeper: Elections','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fe4ciy26hvw2uk',1,'Admin',1672319423,'192.168.64.1',2,15,32993,NULL,'Zookeeper: Bytes received per sec','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ff4ciy04dv7a6p',1,'Admin',1672319423,'192.168.64.1',2,15,32994,NULL,'Zookeeper: Snapshot write time, avg','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fg4ciyh73d3xvk',1,'Admin',1672319423,'192.168.64.1',2,15,32995,NULL,'Zookeeper: Latency, avg','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fh4ciyidz4yq6x',1,'Admin',1672319423,'192.168.64.1',2,15,32996,NULL,'Zookeeper: Fsync time, avg','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fi4ciy4couosg6',1,'Admin',1672319423,'192.168.64.1',2,15,32997,NULL,'Zookeeper: Znode count','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fj4ciyy1s4hezo',1,'Admin',1672319423,'192.168.64.1',2,15,33018,NULL,'Zabbix proxy: Utilization of availability manager internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fk4ciy4z5i5ljf',1,'Admin',1672319423,'192.168.64.1',2,15,33019,NULL,'Zabbix proxy: Utilization of history poller data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fl4ciyw6ziph1s',1,'Admin',1672319423,'192.168.64.1',2,15,33020,NULL,'Zabbix server: Trend function cache, % unique requests','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fm4ciyc2fl5b4m',1,'Admin',1672319423,'192.168.64.1',2,15,33021,NULL,'Zabbix server: Trend function cache, % misses','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fn4ciym33vvytk',1,'Admin',1672319423,'192.168.64.1',2,15,33022,NULL,'Zabbix server: Utilization of availability manager internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fo4ciylisa3lws',1,'Admin',1672319423,'192.168.64.1',2,15,33023,NULL,'Zabbix server: Utilization of history poller data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fp4ciyim96am65',1,'Admin',1672319423,'192.168.64.1',2,15,34316,NULL,'Zabbix server: Utilization of report writer internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fq4ciykx6dhucv',1,'Admin',1672319423,'192.168.64.1',2,15,34317,NULL,'Zabbix server: Utilization of report manager internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fr4ciysvu6iiys',1,'Admin',1672319423,'192.168.64.1',2,15,35272,NULL,'Zabbix server: Utilization of trigger housekeeper internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fs4ciysdecwm30',1,'Admin',1672319423,'192.168.64.1',2,15,35273,NULL,'Zabbix server: Version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ft4ciya8x0nc01',1,'Admin',1672319423,'192.168.64.1',2,15,35274,NULL,'Zabbix server: Utilization of service manager internal processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fu4ciy1q3lsajx',1,'Admin',1672319423,'192.168.64.1',2,15,35532,NULL,'ZYXEL AAM1212-51 / IES-612: SNMP agent availability','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fv4ciyy1o2zvq0',1,'Admin',1672319423,'192.168.64.1',2,15,35533,NULL,'ZYXEL AAM1212-51 / IES-612: Contact','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fw4ciy6wvn0v85',1,'Admin',1672319423,'192.168.64.1',2,15,35534,NULL,'ZYXEL AAM1212-51 / IES-612: ZyNOS F/W Version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fx4ciyux9or8bk',1,'Admin',1672319423,'192.168.64.1',2,15,35535,NULL,'ZYXEL AAM1212-51 / IES-612: Location','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fy4ciy2j3trlks',1,'Admin',1672319423,'192.168.64.1',2,15,35536,NULL,'ZYXEL AAM1212-51 / IES-612: MAC address','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00fz4ciyl0r6xp0t',1,'Admin',1672319423,'192.168.64.1',2,15,35537,NULL,'ZYXEL AAM1212-51 / IES-612: Hardware model name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00g04ciymh31a9n9',1,'Admin',1672319423,'192.168.64.1',2,15,35538,NULL,'ZYXEL AAM1212-51 / IES-612: Host name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00g14ciylvfmb1cg',1,'Admin',1672319423,'192.168.64.1',2,15,35539,NULL,'ZYXEL AAM1212-51 / IES-612: Hardware serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00g24ciy411dqgc5',1,'Admin',1672319423,'192.168.64.1',2,15,35540,NULL,'ZYXEL AAM1212-51 / IES-612: Alarm status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00g34ciyf9yuim1j',1,'Admin',1672319423,'192.168.64.1',2,15,35541,NULL,'ZYXEL AAM1212-51 / IES-612: Uptime (network)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00g44ciyjle6hy7k',1,'Admin',1672319423,'192.168.64.1',2,15,35564,NULL,'ZYXEL ES3500-8PD: SNMP agent availability','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00g54ciykezcoidf',1,'Admin',1672319423,'192.168.64.1',2,15,35565,NULL,'ZYXEL ES3500-8PD: Contact','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00g64ciykwnor692',1,'Admin',1672319423,'192.168.64.1',2,15,35566,NULL,'ZYXEL ES3500-8PD: CPU utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00g74ciyulyuppzt',1,'Admin',1672319423,'192.168.64.1',2,15,35567,NULL,'ZYXEL ES3500-8PD: ZyNOS F/W Version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00g84ciynz0bqe6t',1,'Admin',1672319423,'192.168.64.1',2,15,35568,NULL,'ZYXEL ES3500-8PD: Location','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00g94ciy6bw613ux',1,'Admin',1672319423,'192.168.64.1',2,15,35569,NULL,'ZYXEL ES3500-8PD: MAC address','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ga4ciy37rrezn2',1,'Admin',1672319423,'192.168.64.1',2,15,35570,NULL,'ZYXEL ES3500-8PD: Hardware model name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gb4ciyxgdura6f',1,'Admin',1672319423,'192.168.64.1',2,15,35571,NULL,'ZYXEL ES3500-8PD: Host name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gc4ciyqjx0r4pu',1,'Admin',1672319423,'192.168.64.1',2,15,35572,NULL,'ZYXEL ES3500-8PD: Hardware serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gd4ciy4d6pmbzi',1,'Admin',1672319423,'192.168.64.1',2,15,35573,NULL,'ZYXEL ES3500-8PD: Uptime (network)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ge4ciym6tigz8z',1,'Admin',1672319423,'192.168.64.1',2,15,35608,NULL,'ZYXEL GS-4012F: SNMP agent availability','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gf4ciydz5pwnvh',1,'Admin',1672319423,'192.168.64.1',2,15,35609,NULL,'ZYXEL GS-4012F: Contact','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gg4ciyeillwaq3',1,'Admin',1672319423,'192.168.64.1',2,15,35610,NULL,'ZYXEL GS-4012F: CPU utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gh4ciyzs2y34o1',1,'Admin',1672319423,'192.168.64.1',2,15,35611,NULL,'ZYXEL GS-4012F: ZyNOS F/W Version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gi4ciykqwo2g3r',1,'Admin',1672319423,'192.168.64.1',2,15,35612,NULL,'ZYXEL GS-4012F: Location','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gj4ciyume3wh5h',1,'Admin',1672319423,'192.168.64.1',2,15,35613,NULL,'ZYXEL GS-4012F: MAC address','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gk4ciy9blj1jw7',1,'Admin',1672319423,'192.168.64.1',2,15,35614,NULL,'ZYXEL GS-4012F: Hardware model name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gl4ciyt23vj0zq',1,'Admin',1672319423,'192.168.64.1',2,15,35615,NULL,'ZYXEL GS-4012F: Host name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gm4ciyny9bunxp',1,'Admin',1672319423,'192.168.64.1',2,15,35616,NULL,'ZYXEL GS-4012F: Hardware serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gn4ciyj8663t7v',1,'Admin',1672319423,'192.168.64.1',2,15,35617,NULL,'ZYXEL GS-4012F: Uptime (network)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00go4ciy0zmkvmc8',1,'Admin',1672319423,'192.168.64.1',2,15,35642,NULL,'ZYXEL IES-500x: SNMP agent availability','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gp4ciybnwhjy7h',1,'Admin',1672319423,'192.168.64.1',2,15,35643,NULL,'ZYXEL IES-500x: Contact','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gq4ciygaz8vozi',1,'Admin',1672319423,'192.168.64.1',2,15,35644,NULL,'ZYXEL IES-500x: Location','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gr4ciyuwpu8vaw',1,'Admin',1672319423,'192.168.64.1',2,15,35645,NULL,'ZYXEL IES-500x: MAC address','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gs4ciyzcmtf35u',1,'Admin',1672319423,'192.168.64.1',2,15,35646,NULL,'ZYXEL IES-500x: Hardware model name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gt4ciylbnt6ha1',1,'Admin',1672319423,'192.168.64.1',2,15,35647,NULL,'ZYXEL IES-500x: Host name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gu4ciy933ktbsw',1,'Admin',1672319423,'192.168.64.1',2,15,35648,NULL,'ZYXEL IES-500x: Uptime (network)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gv4ciy83xnkd32',1,'Admin',1672319423,'192.168.64.1',2,15,35709,NULL,'ZYXEL IES-6000: SNMP agent availability','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gw4ciysnqi919p',1,'Admin',1672319423,'192.168.64.1',2,15,35710,NULL,'ZYXEL IES-6000: Contact','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gx4ciy284fkm5d',1,'Admin',1672319423,'192.168.64.1',2,15,35711,NULL,'ZYXEL IES-6000: Location','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gy4ciy7vjd8s1e',1,'Admin',1672319423,'192.168.64.1',2,15,35712,NULL,'ZYXEL IES-6000: MAC address','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00gz4ciys4a7wbaz',1,'Admin',1672319423,'192.168.64.1',2,15,35713,NULL,'ZYXEL IES-6000: Hardware model name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00h04ciyltor75b5',1,'Admin',1672319423,'192.168.64.1',2,15,35714,NULL,'ZYXEL IES-6000: Host name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00h14ciy0hwzpxss',1,'Admin',1672319423,'192.168.64.1',2,15,35715,NULL,'ZYXEL IES-6000: Uptime (network)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00h24ciyyf0fmje2',1,'Admin',1672319423,'192.168.64.1',2,15,35776,NULL,'ZYXEL IES1248-51: SNMP agent availability','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00h34ciyl2rev36i',1,'Admin',1672319423,'192.168.64.1',2,15,35777,NULL,'ZYXEL IES1248-51: Contact','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00h44ciyqb5rqsil',1,'Admin',1672319423,'192.168.64.1',2,15,35778,NULL,'ZYXEL IES1248-51: ZyNOS F/W Version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00h54ciyg2yz583d',1,'Admin',1672319423,'192.168.64.1',2,15,35779,NULL,'ZYXEL IES1248-51: Location','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00h64ciyphijpk4n',1,'Admin',1672319423,'192.168.64.1',2,15,35780,NULL,'ZYXEL IES1248-51: MAC address','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00h74ciy1qronw9k',1,'Admin',1672319423,'192.168.64.1',2,15,35781,NULL,'ZYXEL IES1248-51: Hardware model name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00h84ciy10iparjs',1,'Admin',1672319423,'192.168.64.1',2,15,35782,NULL,'ZYXEL IES1248-51: Host name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00h94ciybamiztn1',1,'Admin',1672319423,'192.168.64.1',2,15,35783,NULL,'ZYXEL IES1248-51: Hardware serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ha4ciyuzgahl20',1,'Admin',1672319423,'192.168.64.1',2,15,35784,NULL,'ZYXEL IES1248-51: Alarm status','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hb4ciy6eea89ub',1,'Admin',1672319423,'192.168.64.1',2,15,35785,NULL,'ZYXEL IES1248-51: Uptime (network)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hc4ciysyf26xmx',1,'Admin',1672319423,'192.168.64.1',2,15,35810,NULL,'ZYXEL MES-3528: SNMP agent availability','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hd4ciyci7q0ujf',1,'Admin',1672319423,'192.168.64.1',2,15,35811,NULL,'ZYXEL MES-3528: Contact','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00he4ciyiuu8n4iq',1,'Admin',1672319423,'192.168.64.1',2,15,35812,NULL,'ZYXEL MES-3528: CPU utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hf4ciysxq86v4x',1,'Admin',1672319423,'192.168.64.1',2,15,35813,NULL,'ZYXEL MES-3528: ZyNOS F/W Version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hg4ciy2foja5xl',1,'Admin',1672319423,'192.168.64.1',2,15,35814,NULL,'ZYXEL MES-3528: Location','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hh4ciy5ufkoq6d',1,'Admin',1672319423,'192.168.64.1',2,15,35815,NULL,'ZYXEL MES-3528: MAC address','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hi4ciyukfli047',1,'Admin',1672319423,'192.168.64.1',2,15,35816,NULL,'ZYXEL MES-3528: Hardware model name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hj4ciygnk8p1st',1,'Admin',1672319423,'192.168.64.1',2,15,35817,NULL,'ZYXEL MES-3528: Host name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hk4ciy8vz3vl7i',1,'Admin',1672319423,'192.168.64.1',2,15,35818,NULL,'ZYXEL MES-3528: Hardware serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hl4ciyg7tplpe2',1,'Admin',1672319423,'192.168.64.1',2,15,35819,NULL,'ZYXEL MES-3528: Uptime (network)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hm4ciy38f50p08',1,'Admin',1672319423,'192.168.64.1',2,15,35848,NULL,'ZYXEL MES3500-10: SNMP agent availability','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hn4ciye9ikj1j4',1,'Admin',1672319423,'192.168.64.1',2,15,35849,NULL,'ZYXEL MES3500-10: Contact','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ho4ciy4dcu2frn',1,'Admin',1672319423,'192.168.64.1',2,15,35850,NULL,'ZYXEL MES3500-10: CPU utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hp4ciymku7g1ev',1,'Admin',1672319423,'192.168.64.1',2,15,35851,NULL,'ZYXEL MES3500-10: ZyNOS F/W Version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hq4ciy8xglm3va',1,'Admin',1672319423,'192.168.64.1',2,15,35852,NULL,'ZYXEL MES3500-10: Location','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hr4ciyoffnwcd7',1,'Admin',1672319423,'192.168.64.1',2,15,35853,NULL,'ZYXEL MES3500-10: MAC address','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hs4ciyiq3k099i',1,'Admin',1672319423,'192.168.64.1',2,15,35854,NULL,'ZYXEL MES3500-10: Hardware model name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ht4ciymyco13ra',1,'Admin',1672319423,'192.168.64.1',2,15,35855,NULL,'ZYXEL MES3500-10: Host name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hu4ciy8p0iuoxj',1,'Admin',1672319423,'192.168.64.1',2,15,35856,NULL,'ZYXEL MES3500-10: Hardware serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hv4ciy6d1gn4px',1,'Admin',1672319423,'192.168.64.1',2,15,35857,NULL,'ZYXEL MES3500-10: Uptime (network)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hw4ciyww0ua954',1,'Admin',1672319423,'192.168.64.1',2,15,35892,NULL,'ZYXEL MES3500-24: SNMP agent availability','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hx4ciywvf4jqf3',1,'Admin',1672319423,'192.168.64.1',2,15,35893,NULL,'ZYXEL MES3500-24: Contact','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hy4ciysn8xuddg',1,'Admin',1672319423,'192.168.64.1',2,15,35894,NULL,'ZYXEL MES3500-24: CPU utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00hz4ciyli9orntk',1,'Admin',1672319423,'192.168.64.1',2,15,35895,NULL,'ZYXEL MES3500-24: ZyNOS F/W Version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00i04ciyhxmhd5dn',1,'Admin',1672319423,'192.168.64.1',2,15,35896,NULL,'ZYXEL MES3500-24: Location','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00i14ciyxcckt9cl',1,'Admin',1672319423,'192.168.64.1',2,15,35897,NULL,'ZYXEL MES3500-24: MAC address','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00i24ciyhsug7obm',1,'Admin',1672319423,'192.168.64.1',2,15,35898,NULL,'ZYXEL MES3500-24: Hardware model name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00i34ciys2qu1a8m',1,'Admin',1672319423,'192.168.64.1',2,15,35899,NULL,'ZYXEL MES3500-24: Host name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00i44ciy4xn6wnm8',1,'Admin',1672319423,'192.168.64.1',2,15,35900,NULL,'ZYXEL MES3500-24: Hardware serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00i54ciy4mlif5n5',1,'Admin',1672319423,'192.168.64.1',2,15,35901,NULL,'ZYXEL MES3500-24: Uptime (network)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00i64ciyns7cjp8k',1,'Admin',1672319423,'192.168.64.1',2,15,35936,NULL,'ZYXEL MGS-3712: SNMP agent availability','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00i74ciyt666on2l',1,'Admin',1672319423,'192.168.64.1',2,15,35937,NULL,'ZYXEL MGS-3712: Contact','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00i84ciyp2ugwc96',1,'Admin',1672319423,'192.168.64.1',2,15,35938,NULL,'ZYXEL MGS-3712: CPU utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00i94ciyc632srbo',1,'Admin',1672319423,'192.168.64.1',2,15,35939,NULL,'ZYXEL MGS-3712: ZyNOS F/W Version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ia4ciylm3m1268',1,'Admin',1672319423,'192.168.64.1',2,15,35940,NULL,'ZYXEL MGS-3712: Location','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ib4ciy41som7dt',1,'Admin',1672319423,'192.168.64.1',2,15,35941,NULL,'ZYXEL MGS-3712: MAC address','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ic4ciy5p9bs93p',1,'Admin',1672319423,'192.168.64.1',2,15,35942,NULL,'ZYXEL MGS-3712: Hardware model name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00id4ciyw7zfmjtd',1,'Admin',1672319423,'192.168.64.1',2,15,35943,NULL,'ZYXEL MGS-3712: Host name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ie4ciy3rvt4rmx',1,'Admin',1672319423,'192.168.64.1',2,15,35944,NULL,'ZYXEL MGS-3712: Hardware serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00if4ciyn1un94zp',1,'Admin',1672319423,'192.168.64.1',2,15,35945,NULL,'ZYXEL MGS-3712: Uptime (network)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ig4ciyes38ltbc',1,'Admin',1672319423,'192.168.64.1',2,15,35980,NULL,'ZYXEL MGS-3712F: SNMP agent availability','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ih4ciy2fqndmho',1,'Admin',1672319423,'192.168.64.1',2,15,35981,NULL,'ZYXEL MGS-3712F: Contact','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ii4ciyl3s5vq73',1,'Admin',1672319423,'192.168.64.1',2,15,35982,NULL,'ZYXEL MGS-3712F: CPU utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ij4ciywgvcig1i',1,'Admin',1672319423,'192.168.64.1',2,15,35983,NULL,'ZYXEL MGS-3712F: ZyNOS F/W Version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ik4ciyaf5nvhnk',1,'Admin',1672319423,'192.168.64.1',2,15,35984,NULL,'ZYXEL MGS-3712F: Location','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00il4ciyft5s2son',1,'Admin',1672319423,'192.168.64.1',2,15,35985,NULL,'ZYXEL MGS-3712F: MAC address','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00im4ciyod4vj5zz',1,'Admin',1672319423,'192.168.64.1',2,15,35986,NULL,'ZYXEL MGS-3712F: Hardware model name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00in4ciyeql66owi',1,'Admin',1672319423,'192.168.64.1',2,15,35987,NULL,'ZYXEL MGS-3712F: Host name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00io4ciy6zkljgkz',1,'Admin',1672319423,'192.168.64.1',2,15,35988,NULL,'ZYXEL MGS-3712F: Hardware serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ip4ciyv4m082gp',1,'Admin',1672319423,'192.168.64.1',2,15,35989,NULL,'ZYXEL MGS-3712F: Uptime (network)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00iq4ciyh9wcr12h',1,'Admin',1672319423,'192.168.64.1',2,15,36024,NULL,'ZYXEL MES3500-24S: SNMP agent availability','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ir4ciyffk54x70',1,'Admin',1672319423,'192.168.64.1',2,15,36025,NULL,'ZYXEL MES3500-24S: Contact','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00is4ciy2rvhc6r0',1,'Admin',1672319423,'192.168.64.1',2,15,36026,NULL,'ZYXEL MES3500-24S: CPU utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00it4ciy8qpahayn',1,'Admin',1672319423,'192.168.64.1',2,15,36027,NULL,'ZYXEL MES3500-24S: ZyNOS F/W Version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00iu4ciygdrnad43',1,'Admin',1672319423,'192.168.64.1',2,15,36028,NULL,'ZYXEL MES3500-24S: Location','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00iv4ciy0gkhpql8',1,'Admin',1672319423,'192.168.64.1',2,15,36029,NULL,'ZYXEL MES3500-24S: MAC address','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00iw4ciynns9m8vx',1,'Admin',1672319423,'192.168.64.1',2,15,36030,NULL,'ZYXEL MES3500-24S: Memory utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ix4ciyt6n6u6f4',1,'Admin',1672319423,'192.168.64.1',2,15,36031,NULL,'ZYXEL MES3500-24S: Hardware model name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00iy4ciy31inc9bo',1,'Admin',1672319423,'192.168.64.1',2,15,36032,NULL,'ZYXEL MES3500-24S: Host name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00iz4ciy6a7e2mke',1,'Admin',1672319423,'192.168.64.1',2,15,36033,NULL,'ZYXEL MES3500-24S: Hardware serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00j04ciygdwomyh0',1,'Admin',1672319423,'192.168.64.1',2,15,36034,NULL,'ZYXEL ES3500-8PD: Uptime (network)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00j14ciygk8bjip6',1,'Admin',1672319423,'192.168.64.1',2,15,36069,NULL,'ZYXEL MGS3520-28x: SNMP agent availability','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00j24ciygb7ptbes',1,'Admin',1672319423,'192.168.64.1',2,15,36070,NULL,'ZYXEL MGS3520-28x: Contact','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00j34ciywjeeq2qq',1,'Admin',1672319423,'192.168.64.1',2,15,36071,NULL,'ZYXEL MGS3520-28x: CPU utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00j44ciyflomq4ks',1,'Admin',1672319423,'192.168.64.1',2,15,36072,NULL,'ZYXEL MGS3520-28x: ZyNOS F/W Version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00j54ciyy19aburx',1,'Admin',1672319423,'192.168.64.1',2,15,36073,NULL,'ZYXEL MGS3520-28x: Location','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00j64ciyyzrwv2g3',1,'Admin',1672319423,'192.168.64.1',2,15,36074,NULL,'ZYXEL MGS3520-28x: MAC address','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00j74ciy4zlu5myo',1,'Admin',1672319423,'192.168.64.1',2,15,36075,NULL,'ZYXEL MGS3520-28x: Memory utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00j84ciy6m24r0mm',1,'Admin',1672319423,'192.168.64.1',2,15,36076,NULL,'ZYXEL MGS3520-28x: Hardware model name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00j94ciyo16exc3l',1,'Admin',1672319423,'192.168.64.1',2,15,36077,NULL,'ZYXEL MGS3520-28x: Host name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ja4ciywshi6r0i',1,'Admin',1672319423,'192.168.64.1',2,15,36078,NULL,'ZYXEL MGS3520-28x: Hardware serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jb4ciy3pq6d66f',1,'Admin',1672319423,'192.168.64.1',2,15,36079,NULL,'ZYXEL MGS3520-28x: Uptime (network)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jc4ciy0ev9q7r0',1,'Admin',1672319423,'192.168.64.1',2,15,36114,NULL,'ZYXEL XGS-4728F: SNMP agent availability','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jd4ciy07yeault',1,'Admin',1672319423,'192.168.64.1',2,15,36115,NULL,'ZYXEL XGS-4728F: Contact','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00je4ciy0wke80jc',1,'Admin',1672319423,'192.168.64.1',2,15,36116,NULL,'ZYXEL XGS-4728F: CPU utilization','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jf4ciyuwhc42gs',1,'Admin',1672319423,'192.168.64.1',2,15,36117,NULL,'ZYXEL XGS-4728F: ZyNOS F/W Version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jg4ciy22lt2cjy',1,'Admin',1672319423,'192.168.64.1',2,15,36118,NULL,'ZYXEL XGS-4728F: Location','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jh4ciy2ucgtwq7',1,'Admin',1672319423,'192.168.64.1',2,15,36119,NULL,'ZYXEL XGS-4728F: MAC address','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ji4ciyqaupe22u',1,'Admin',1672319423,'192.168.64.1',2,15,36120,NULL,'ZYXEL XGS-4728F: Hardware model name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jj4ciyn2eipof5',1,'Admin',1672319423,'192.168.64.1',2,15,36121,NULL,'ZYXEL XGS-4728F: Host name','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jk4ciyx073x158',1,'Admin',1672319423,'192.168.64.1',2,15,36122,NULL,'ZYXEL XGS-4728F: Hardware serial number','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jl4ciyo0nj41cc',1,'Admin',1672319423,'192.168.64.1',2,15,36123,NULL,'ZYXEL XGS-4728F: Uptime (network)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jm4ciyc8ggpvr0',1,'Admin',1672319423,'192.168.64.1',2,15,39804,NULL,'Zabbix stats cluster','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jn4ciy2vniqgfw',1,'Admin',1672319423,'192.168.64.1',2,15,39822,NULL,'Zabbix server: Utilization of ODBC poller data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jo4ciyok9wxawx',1,'Admin',1672319423,'192.168.64.1',2,15,39826,NULL,'Zabbix proxy: Utilization of ODBC poller data collector processes, in %','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jp4ciyewja93k3',1,'Admin',1672319423,'192.168.64.1',2,15,40181,NULL,'Zabbix proxy: Version','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jq4ciyntszygum',1,'Admin',1672319423,'192.168.64.1',2,15,40182,NULL,'Zabbix proxy: Values waiting to be sent','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jr4ciyu0xncq8o',1,'Admin',1672319423,'192.168.64.1',2,15,40183,NULL,'Zabbix proxy: Required performance','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00js4ciyz1u570dx',1,'Admin',1672319423,'192.168.64.1',2,15,40184,NULL,'Zabbix proxy: Uptime','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jt4ciylp6h31pp',1,'Admin',1672319423,'192.168.64.1',2,15,43173,NULL,'Active agent availability','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00ju4ciyht11k2dj',1,'Admin',1672319423,'192.168.64.1',2,15,43860,NULL,'ZYXEL AAM1212-51 / IES-612: Uptime (hardware)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jv4ciy5dr5riir',1,'Admin',1672319423,'192.168.64.1',2,15,43861,NULL,'ZYXEL ES3500-8PD: Uptime (hardware)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jw4ciyc79hqyvi',1,'Admin',1672319423,'192.168.64.1',2,15,43862,NULL,'ZYXEL GS-4012F: Uptime (hardware)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jx4ciyhuk3p1i2',1,'Admin',1672319423,'192.168.64.1',2,15,43863,NULL,'ZYXEL IES-500x: Uptime (hardware)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jy4ciybbzcv8zz',1,'Admin',1672319423,'192.168.64.1',2,15,43864,NULL,'ZYXEL IES-6000: Uptime (hardware)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00jz4ciy0l8ktal0',1,'Admin',1672319423,'192.168.64.1',2,15,43865,NULL,'ZYXEL IES1248-51: Uptime (hardware)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00k04ciyqiwey3er',1,'Admin',1672319423,'192.168.64.1',2,15,43866,NULL,'ZYXEL MES-3528: Uptime (hardware)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00k14ciyh9g1lvld',1,'Admin',1672319423,'192.168.64.1',2,15,43867,NULL,'ZYXEL MES3500-10: Uptime (hardware)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00k24ciyxai80i7e',1,'Admin',1672319423,'192.168.64.1',2,15,43868,NULL,'ZYXEL MES3500-24: Uptime (hardware)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00k34ciypwvntdta',1,'Admin',1672319423,'192.168.64.1',2,15,43869,NULL,'ZYXEL MGS-3712: Uptime (hardware)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00k44ciyyrvk038u',1,'Admin',1672319423,'192.168.64.1',2,15,43870,NULL,'ZYXEL MGS-3712F: Uptime (hardware)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00k54ciycig7h51u',1,'Admin',1672319423,'192.168.64.1',2,15,43871,NULL,'ZYXEL ES3500-8PD: Uptime (hardware)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00k64ciykrf4q5wd',1,'Admin',1672319423,'192.168.64.1',2,15,43872,NULL,'ZYXEL MGS3520-28x: Uptime (hardware)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00k74ciyuw2nzwnc',1,'Admin',1672319423,'192.168.64.1',2,15,43873,NULL,'ZYXEL XGS-4728F: Uptime (hardware)','clc93t1nc00004ciyrkno2s1d',''),('clc93t1oy00k84ciy5e9ai35e',1,'Admin',1672319423,'192.168.64.1',2,15,44055,NULL,'Zabbix stats proxy','clc93t1nc00004ciyrkno2s1d',''),('clc93t1pb00k94ciyx5fhuhik',1,'Admin',1672319423,'192.168.64.1',2,30,10047,NULL,'Zabbix server health','clc93t1nc00004ciyrkno2s1d',''),('clc93t1pb00ka4ciykpz3wdkq',1,'Admin',1672319423,'192.168.64.1',2,30,10048,NULL,'Zabbix proxy health','clc93t1nc00004ciyrkno2s1d',''),('clc93t1pb00kb4ciy76gqic5z',1,'Admin',1672319423,'192.168.64.1',2,30,10050,NULL,'Zabbix agent','clc93t1nc00004ciyrkno2s1d',''),('clc93t1pb00kc4ciytt8tr7rh',1,'Admin',1672319423,'192.168.64.1',2,30,10292,NULL,'Zabbix agent active','clc93t1nc00004ciyrkno2s1d',''),('clc93t1pb00kd4ciyp82f2tr1',1,'Admin',1672319423,'192.168.64.1',2,30,10350,NULL,'Windows services by Zabbix agent active','clc93t1nc00004ciyrkno2s1d',''),('clc93t1pb00ke4ciyu4ymrkp0',1,'Admin',1672319423,'192.168.64.1',2,30,10369,NULL,'Zookeeper by HTTP','clc93t1nc00004ciyrkno2s1d',''),('clc93t1pb00kf4ciymbf57iz0',1,'Admin',1672319423,'192.168.64.1',2,30,10420,NULL,'ZYXEL AAM1212-51 IES-612 by SNMP','clc93t1nc00004ciyrkno2s1d',''),('clc93t1pb00kg4ciyiczdiuqn',1,'Admin',1672319423,'192.168.64.1',2,30,10421,NULL,'ZYXEL ES3500-8PD by SNMP','clc93t1nc00004ciyrkno2s1d',''),('clc93t1pb00kh4ciyarp0vtvg',1,'Admin',1672319423,'192.168.64.1',2,30,10422,NULL,'ZYXEL GS-4012F by SNMP','clc93t1nc00004ciyrkno2s1d',''),('clc93t1pb00ki4ciyatywm819',1,'Admin',1672319423,'192.168.64.1',2,30,10423,NULL,'ZYXEL IES-500x by SNMP','clc93t1nc00004ciyrkno2s1d',''),('clc93t1pb00kj4ciytooeran3',1,'Admin',1672319423,'192.168.64.1',2,30,10424,NULL,'ZYXEL IES-6000 by SNMP','clc93t1nc00004ciyrkno2s1d',''),('clc93t1pb00kk4ciy697indat',1,'Admin',1672319423,'192.168.64.1',2,30,10425,NULL,'ZYXEL IES1248-51 by SNMP','clc93t1nc00004ciyrkno2s1d',''),('clc93t1pb00kl4ciycjna0t4s',1,'Admin',1672319423,'192.168.64.1',2,30,10426,NULL,'ZYXEL MES-3528 by SNMP','clc93t1nc00004ciyrkno2s1d',''),('clc93t1pb00km4ciyo88mcvs7',1,'Admin',1672319423,'192.168.64.1',2,30,10427,NULL,'ZYXEL MES3500-10 by SNMP','clc93t1nc00004ciyrkno2s1d',''),('clc93t1pb00kn4ciyfh0bdcd1',1,'Admin',1672319423,'192.168.64.1',2,30,10428,NULL,'ZYXEL MES3500-24 by SNMP','clc93t1nc00004ciyrkno2s1d',''),('clc93t1pb00ko4ciyfwem0lgx',1,'Admin',1672319423,'192.168.64.1',2,30,10429,NULL,'ZYXEL MGS-3712 by SNMP','clc93t1nc00004ciyrkno2s1d',''),('clc93t1pb00kp4ciyq1zurwor',1,'Admin',1672319423,'192.168.64.1',2,30,10430,NULL,'ZYXEL MGS-3712F by SNMP','clc93t1nc00004ciyrkno2s1d',''),('clc93t1pb00kq4ciyxejxdb5k',1,'Admin',1672319423,'192.168.64.1',2,30,10431,NULL,'ZYXEL MES3500-24S by SNMP','clc93t1nc00004ciyrkno2s1d',''),('clc93t1pb00kr4ciyloimj289',1,'Admin',1672319423,'192.168.64.1',2,30,10432,NULL,'ZYXEL MGS3520-28x by SNMP','clc93t1nc00004ciyrkno2s1d',''),('clc93t1pb00ks4ciybr5v3rtb',1,'Admin',1672319423,'192.168.64.1',2,30,10433,NULL,'ZYXEL XGS-4728F by SNMP','clc93t1nc00004ciyrkno2s1d',''),('clc9kj5n800014xiygeux5139',2,'guest',1672347515,'192.168.64.1',9,0,2,NULL,'','clc9kj5n800004xiyh0m828n4',''),('clc9kj67700014ciyes78orob',2,'guest',1672347516,'192.168.64.1',9,0,2,NULL,'','clc9kj67700004ciyz6u6oz3l',''),('clc9kj7bc00017kiygw9dh8o2',2,'guest',1672347517,'192.168.64.1',9,0,2,NULL,'','clc9kj7bc00007kiycovzpmtj',''),('clc9kj7dn00027kiyfibpxn7f',1,'Admin',1672347517,'192.168.64.1',8,0,1,NULL,'','clc9kj7bc00007kiycovzpmtj',''),('clc9kjfms00014ciy1uwz7y37',1,'Admin',1672347528,'192.168.64.1',0,4,1,NULL,'h','clc9kjfms00004ciypsxdhqvx',''),('clc9kjmt200017kiyinnxup6q',1,'Admin',1672347537,'192.168.64.1',0,30,2,NULL,'f','clc9kjmt200007kiyf1vb2sda','{\"template.host\":[\"add\",\"f\"],\"template.name\":[\"add\",\"f\"],\"template.groups[2]\":[\"add\"],\"template.groups[2].groupid\":[\"add\",\"1\"],\"template.groups[2].hostgroupid\":[\"add\",\"2\"],\"template.uuid\":[\"add\",\"f5f6c997fe0946a29ece8d99d6c67493\"],\"template.templateid\":[\"add\",\"2\"]}'),('clc9kjt8b00014ciykbglm86v',1,'Admin',1672347546,'192.168.64.1',0,30,3,NULL,'a','clc9kjt8a00004ciy1zcbugnh','{\"template.host\":[\"add\",\"a\"],\"template.name\":[\"add\",\"a\"],\"template.groups[3]\":[\"add\"],\"template.groups[3].groupid\":[\"add\",\"1\"],\"template.groups[3].hostgroupid\":[\"add\",\"3\"],\"template.uuid\":[\"add\",\"24aeffbfe4c7492390616c9ac6762fcd\"],\"template.templateid\":[\"add\",\"3\"]}'),('clc9kk7fg00014ciyz3vidmhi',1,'Admin',1672347564,'192.168.64.1',1,30,3,NULL,'a','clc9kk7ff00004ciyrxlrc4xs','{\"template.tags[1]\":[\"add\"],\"template.tags[2]\":[\"add\"],\"template.tags[1].tag\":[\"add\",\"a1\"],\"template.tags[1].value\":[\"add\",\"aa\"],\"template.tags[1].hosttagid\":[\"add\",\"1\"],\"template.tags[2].tag\":[\"add\",\"a2\"],\"template.tags[2].value\":[\"add\",\"aaa\"],\"template.tags[2].hosttagid\":[\"add\",\"2\"]}'),('clc9kkk9e00014xiy4fzzypig',1,'Admin',1672347581,'192.168.64.1',1,30,2,NULL,'f','clc9kkk9d00004xiyuq1lx91d','{\"template.templates[1]\":[\"add\"],\"template.tags[3]\":[\"add\"],\"template.tags[4]\":[\"add\"],\"template.templates[1].templateid\":[\"add\",\"3\"],\"template.templates[1].hosttemplateid\":[\"add\",\"1\"],\"template.tags[3].tag\":[\"add\",\"f1\"],\"template.tags[3].value\":[\"add\",\"ff\"],\"template.tags[3].hosttagid\":[\"add\",\"3\"],\"template.tags[4].tag\":[\"add\",\"f2\"],\"template.tags[4].value\":[\"add\",\"ff\"],\"template.tags[4].hosttagid\":[\"add\",\"4\"]}'),('clc9kkofi00014ciyw7h18kji',1,'Admin',1672347586,'192.168.64.1',1,30,2,NULL,'f','clc9kkofi00004ciywvelxjoq','{\"template.tags[4]\":[\"delete\"],\"template.tags[5]\":[\"add\"],\"template.tags[5].tag\":[\"add\",\"f2\"],\"template.tags[5].value\":[\"add\",\"ff2\"],\"template.tags[5].hosttagid\":[\"add\",\"5\"]}'),('clc9kmbvh00017kiyf4oao8dy',1,'Admin',1672347663,'192.168.64.1',0,15,1,NULL,'i1','clc9kmbvh00007kiy8883cmbv','{\"item.hostid\":[\"add\",\"1\"],\"item.name\":[\"add\",\"i1\"],\"item.key_\":[\"add\",\"agent.ping\"],\"item.value_type\":[\"add\",\"3\"],\"item.interfaceid\":[\"add\",\"1\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"1\"]}'),('clc9knq0600014xiy63t1auto',1,'Admin',1672347728,'192.168.64.1',0,13,23095,NULL,'t','clc9knq0600004xiy50g6j3lj',''),('clc9ko7e300017kiy9vum1up4',1,'Admin',1672347751,'192.168.64.1',1,13,23095,NULL,'t','clc9ko7e300007kiyrtab6bq6','{\"trigger.expression\":[\"update\",\"last(\\/h\\/agent.ping)<>0\",\"last(\\/h\\/agent.ping)=0\"]}'),('clca6rxkc00014ciyi6632qfo',1,'Admin',1672384876,'192.168.64.1',0,15,2,NULL,'e','clca6rxkc00004ciy9tgl4jw8','{\"item.hostid\":[\"add\",\"3\"],\"item.name\":[\"add\",\"e\"],\"item.key_\":[\"add\",\"agent.variant\"],\"item.value_type\":[\"add\",\"3\"],\"item.delay\":[\"add\",\"1m\"],\"item.uuid\":[\"add\",\"eacb3ab22899418bb71c52639642e604\"],\"item.itemid\":[\"add\",\"2\"]}'),('clca6rxki00024ciyiorvimk2',1,'Admin',1672384876,'192.168.64.1',0,15,3,NULL,'e','clca6rxkc00004ciy9tgl4jw8','{\"item.hostid\":[\"add\",\"2\"],\"item.templateid\":[\"add\",\"2\"],\"item.name\":[\"add\",\"e\"],\"item.key_\":[\"add\",\"agent.variant\"],\"item.value_type\":[\"add\",\"3\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"3\"]}'),('clca6rxkl00034ciyktph2azo',1,'Admin',1672384876,'192.168.64.1',0,15,4,NULL,'e','clca6rxkc00004ciy9tgl4jw8','{\"item.hostid\":[\"add\",\"1\"],\"item.templateid\":[\"add\",\"3\"],\"item.name\":[\"add\",\"e\"],\"item.key_\":[\"add\",\"agent.variant\"],\"item.value_type\":[\"add\",\"3\"],\"item.delay\":[\"add\",\"1m\"],\"item.interfaceid\":[\"add\",\"1\"],\"item.itemid\":[\"add\",\"4\"]}'),('clca75xt300014ciy11utygd4',1,'Admin',1672385530,'192.168.64.1',2,15,4,NULL,'e','clca75xt300004ciyg98wlzvf',''),('clca75xt300024ciys86sdbhy',1,'Admin',1672385530,'192.168.64.1',2,15,3,NULL,'e','clca75xt300004ciyg98wlzvf',''),('clca75xte00034ciy0mprpee6',1,'Admin',1672385530,'192.168.64.1',2,15,2,NULL,'e','clca75xt300004ciyg98wlzvf',''),('clca75xtm00044ciyisesh7pt',1,'Admin',1672385530,'192.168.64.1',2,30,2,NULL,'f','clca75xt300004ciyg98wlzvf',''),('clca75xtm00054ciym61ld0dr',1,'Admin',1672385530,'192.168.64.1',2,30,3,NULL,'a','clca75xt300004ciyg98wlzvf',''),('clca7635k00017kiyjyitcm2v',1,'Admin',1672385537,'192.168.64.1',2,15,1,NULL,'i1','clca7635k00007kiy4n0vlpuu',''),('clca7635p00027kiynchnpn07',1,'Admin',1672385537,'192.168.64.1',2,4,1,NULL,'h','clca7635k00007kiy4n0vlpuu',''),('clca76bee00014xiye9hrpqnl',1,'Admin',1672385547,'192.168.64.1',0,4,4,NULL,'h','clca76bee00004xiy9q0oq7p1',''),('clca76iwp00017kiym2yk5yhz',1,'Admin',1672385557,'192.168.64.1',0,4,5,NULL,'h2','clca76iwp00007kiyeh8zysbv',''),('clca78hl900014ciyvxt0lbyp',1,'Admin',1672385649,'192.168.64.1',0,30,6,NULL,'t1','clca78hl900004ciy3swc154g','{\"template.host\":[\"add\",\"t1\"],\"template.name\":[\"add\",\"t1\"],\"template.groups[6]\":[\"add\"],\"template.groups[6].groupid\":[\"add\",\"1\"],\"template.groups[6].hostgroupid\":[\"add\",\"6\"],\"template.uuid\":[\"add\",\"7d58d4d4ba004ccfa7d78dfd97d6c1f1\"],\"template.templateid\":[\"add\",\"6\"]}'),('clca78m9k00017kiyuoa0rlj7',1,'Admin',1672385655,'192.168.64.1',0,30,7,NULL,'t2','clca78m9k00007kiy56wziqst','{\"template.host\":[\"add\",\"t2\"],\"template.name\":[\"add\",\"t2\"],\"template.groups[7]\":[\"add\"],\"template.groups[7].groupid\":[\"add\",\"1\"],\"template.groups[7].hostgroupid\":[\"add\",\"7\"],\"template.uuid\":[\"add\",\"01ef5965ec84463fb8e7cfa5c2ecf284\"],\"template.templateid\":[\"add\",\"7\"]}'),('clca78qnq00014xiy7sgaczjm',1,'Admin',1672385660,'192.168.64.1',0,30,8,NULL,'t3','clca78qnq00004xiyak4rpsl6','{\"template.host\":[\"add\",\"t3\"],\"template.name\":[\"add\",\"t3\"],\"template.groups[8]\":[\"add\"],\"template.groups[8].groupid\":[\"add\",\"1\"],\"template.groups[8].hostgroupid\":[\"add\",\"8\"],\"template.uuid\":[\"add\",\"c13ca0808758460187e1ca282838f9a9\"],\"template.templateid\":[\"add\",\"8\"]}'),('clca78ukq00014xiyg5f78i86',1,'Admin',1672385665,'192.168.64.1',0,30,9,NULL,'t4','clca78ukq00004xiyaotnqrgm','{\"template.host\":[\"add\",\"t4\"],\"template.name\":[\"add\",\"t4\"],\"template.groups[9]\":[\"add\"],\"template.groups[9].groupid\":[\"add\",\"1\"],\"template.groups[9].hostgroupid\":[\"add\",\"9\"],\"template.uuid\":[\"add\",\"d34313cb8d7648e9b3dae4c83ab7f082\"],\"template.templateid\":[\"add\",\"9\"]}'),('clca790qe00017kiy7vnr2dqr',1,'Admin',1672385673,'192.168.64.1',0,30,10,NULL,'t5','clca790qe00007kiy79ndw70i','{\"template.host\":[\"add\",\"t5\"],\"template.name\":[\"add\",\"t5\"],\"template.groups[10]\":[\"add\"],\"template.groups[10].groupid\":[\"add\",\"1\"],\"template.groups[10].hostgroupid\":[\"add\",\"10\"],\"template.uuid\":[\"add\",\"200847e3e71e4549b74000b8d24a4b7a\"],\"template.templateid\":[\"add\",\"10\"]}'),('clca7aeio00014ciy4dzrpg66',1,'Admin',1672385738,'192.168.64.1',0,30,11,NULL,'t6','clca7aeio00004ciywa670b6c','{\"template.host\":[\"add\",\"t6\"],\"template.name\":[\"add\",\"t6\"],\"template.groups[11]\":[\"add\"],\"template.groups[11].groupid\":[\"add\",\"1\"],\"template.groups[11].hostgroupid\":[\"add\",\"11\"],\"template.uuid\":[\"add\",\"a1f09b64a1c24fb4ab4b580bbb4f7422\"],\"template.templateid\":[\"add\",\"11\"]}'),('clca7ak6500017kiy381kswhb',1,'Admin',1672385745,'192.168.64.1',0,30,12,NULL,'t7','clca7ak6500007kiyvtp68e1z','{\"template.host\":[\"add\",\"t7\"],\"template.name\":[\"add\",\"t7\"],\"template.groups[12]\":[\"add\"],\"template.groups[12].groupid\":[\"add\",\"1\"],\"template.groups[12].hostgroupid\":[\"add\",\"12\"],\"template.uuid\":[\"add\",\"9fde7b6034a9497983f30da19a249308\"],\"template.templateid\":[\"add\",\"12\"]}'),('clca7apcz00014ciy3jw4pk3w',1,'Admin',1672385752,'192.168.64.1',0,30,13,NULL,'t8','clca7apcz00004ciyxgbif05v','{\"template.host\":[\"add\",\"t8\"],\"template.name\":[\"add\",\"t8\"],\"template.groups[13]\":[\"add\"],\"template.groups[13].groupid\":[\"add\",\"1\"],\"template.groups[13].hostgroupid\":[\"add\",\"13\"],\"template.uuid\":[\"add\",\"f7cc6223463545898129a4b10eac9fdd\"],\"template.templateid\":[\"add\",\"13\"]}'),('clca7au8w00014ciydn2e77jo',1,'Admin',1672385758,'192.168.64.1',0,30,14,NULL,'t9','clca7au8w00004ciyfmg35j6i','{\"template.host\":[\"add\",\"t9\"],\"template.name\":[\"add\",\"t9\"],\"template.groups[14]\":[\"add\"],\"template.groups[14].groupid\":[\"add\",\"1\"],\"template.groups[14].hostgroupid\":[\"add\",\"14\"],\"template.uuid\":[\"add\",\"16cc006f3e8b47c4be0238ed75fc766a\"],\"template.templateid\":[\"add\",\"14\"]}'),('clca7b2k300014xiyswoclc0s',1,'Admin',1672385769,'192.168.64.1',1,30,6,NULL,'t1','clca7b2k300004xiyxwwfzzod','{\"template.templates[3]\":[\"add\"],\"template.templates[3].templateid\":[\"add\",\"9\"],\"template.templates[3].hosttemplateid\":[\"add\",\"3\"]}'),('clca7bg5900014ciyfy5hkkk2',1,'Admin',1672385787,'192.168.64.1',1,30,6,NULL,'t1','clca7bg5900004ciylyqatdni','{\"template.templates[3]\":[\"delete\"],\"template.templates[4]\":[\"add\"],\"template.templates_clear[3]\":[\"delete\"],\"template.templates[4].templateid\":[\"add\",\"10\"],\"template.templates[4].hosttemplateid\":[\"add\",\"4\"]}'),('clca7djvz00014ciydsxhrjx5',1,'Admin',1672385885,'192.168.64.1',1,30,7,NULL,'t2','clca7djvz00004ciyqgp2cy4c','{\"template.templates[5]\":[\"add\"],\"template.templates[5].templateid\":[\"add\",\"9\"],\"template.templates[5].hosttemplateid\":[\"add\",\"5\"]}'),('clca7e75t00014ciyklmtjs11',1,'Admin',1672385915,'192.168.64.1',1,30,9,NULL,'t4','clca7e75t00004ciy8s7kmzxq','{\"template.templates[6]\":[\"add\"],\"template.templates[7]\":[\"add\"],\"template.templates[6].templateid\":[\"add\",\"12\"],\"template.templates[6].hosttemplateid\":[\"add\",\"6\"],\"template.templates[7].templateid\":[\"add\",\"13\"],\"template.templates[7].hosttemplateid\":[\"add\",\"7\"]}'),('clca7ee4b00014xiydofgcuyg',1,'Admin',1672385924,'192.168.64.1',1,30,12,NULL,'t7','clca7ee4a00004xiyqwjujgrp','{\"template.templates[8]\":[\"add\"],\"template.templates[8].templateid\":[\"add\",\"14\"],\"template.templates[8].hosttemplateid\":[\"add\",\"8\"]}'),('clca7el7q00017kiy0qvfuu6s',1,'Admin',1672385933,'192.168.64.1',1,30,8,NULL,'t3','clca7el7q00007kiyicagrgni','{\"template.templates[9]\":[\"add\"],\"template.templates[9].templateid\":[\"add\",\"11\"],\"template.templates[9].hosttemplateid\":[\"add\",\"9\"]}'),('clca7ikr100014ciy0l606o11',1,'Admin',1672386119,'192.168.64.1',0,30,15,NULL,'t10','clca7ikr100004ciyqct2y9n2','{\"template.host\":[\"add\",\"t10\"],\"template.name\":[\"add\",\"t10\"],\"template.groups[15]\":[\"add\"],\"template.groups[15].groupid\":[\"add\",\"1\"],\"template.groups[15].hostgroupid\":[\"add\",\"15\"],\"template.uuid\":[\"add\",\"2b4fa2906104419b87d9f2a62be402bb\"],\"template.templateid\":[\"add\",\"15\"]}'),('clca7iwgw00017kiycif4q9hr',1,'Admin',1672386135,'192.168.64.1',1,30,7,NULL,'t2','clca7iwgw00007kiyxkla8aa8','{\"template.templates[14]\":[\"add\"],\"template.templates[14].templateid\":[\"add\",\"15\"],\"template.templates[14].hosttemplateid\":[\"add\",\"14\"]}'),('clca7l62x00014ciyf1z4m8jj',1,'Admin',1672386240,'192.168.64.1',0,15,5,NULL,'t1','clca7l62w00004ciyrt7u57d4','{\"item.hostid\":[\"add\",\"6\"],\"item.name\":[\"add\",\"t1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.uuid\":[\"add\",\"dc1b4fa2709c4cc58898bb2e68295e83\"],\"item.itemid\":[\"add\",\"5\"]}'),('clca7l63000024ciyo7v3ysc0',1,'Admin',1672386240,'192.168.64.1',0,15,6,NULL,'t1','clca7l62w00004ciyrt7u57d4','{\"item.hostid\":[\"add\",\"4\"],\"item.templateid\":[\"add\",\"5\"],\"item.name\":[\"add\",\"t1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"6\"]}'),('clca7ljqt00014xiyjraj2bvy',1,'Admin',1672386258,'192.168.64.1',0,15,7,NULL,'t1_2','clca7ljqt00004xiypouafjzp','{\"item.hostid\":[\"add\",\"6\"],\"item.name\":[\"add\",\"t1_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.uuid\":[\"add\",\"d66aa6f8e11e42f7b0e29e941b0060dc\"],\"item.itemid\":[\"add\",\"7\"]}'),('clca7ljqx00024xiyy0wop8xd',1,'Admin',1672386258,'192.168.64.1',0,15,8,NULL,'t1_2','clca7ljqt00004xiypouafjzp','{\"item.hostid\":[\"add\",\"4\"],\"item.templateid\":[\"add\",\"7\"],\"item.name\":[\"add\",\"t1_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"8\"]}'),('clca7lmwd00014ciy2k8q2kkc',1,'Admin',1672386262,'192.168.64.1',1,15,5,NULL,'t1','clca7lmwd00004ciyyuhdwskp','{\"item.name\":[\"update\",\"t1_1\",\"t1\"]}'),('clca7lmwf00024ciyzppb22k3',1,'Admin',1672386262,'192.168.64.1',1,15,6,NULL,'t1','clca7lmwd00004ciyyuhdwskp','{\"item.name\":[\"update\",\"t1_1\",\"t1\"]}'),('clca7p82f00014xiykdjqeelz',1,'Admin',1672386429,'192.168.64.1',0,15,9,NULL,'t2_1','clca7p82f00004xiykrnx9gor','{\"item.hostid\":[\"add\",\"7\"],\"item.name\":[\"add\",\"t2_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t2_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.uuid\":[\"add\",\"bae2afdc1a344b209ce878c40e416926\"],\"item.itemid\":[\"add\",\"9\"]}'),('clca7p82j00024xiyth5j2n4m',1,'Admin',1672386429,'192.168.64.1',0,15,10,NULL,'t2_1','clca7p82f00004xiykrnx9gor','{\"item.hostid\":[\"add\",\"4\"],\"item.templateid\":[\"add\",\"9\"],\"item.name\":[\"add\",\"t2_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t2_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"10\"]}'),('clca7p82j00034xiydvvoq54a',1,'Admin',1672386429,'192.168.64.1',0,15,11,NULL,'t2_1','clca7p82f00004xiykrnx9gor','{\"item.hostid\":[\"add\",\"5\"],\"item.templateid\":[\"add\",\"9\"],\"item.name\":[\"add\",\"t2_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t2_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"11\"]}'),('clca7pesf00014ciyxgx9wb0x',1,'Admin',1672386438,'192.168.64.1',0,15,12,NULL,'t2_2','clca7pesf00004ciy5g8xz5eb','{\"item.hostid\":[\"add\",\"7\"],\"item.name\":[\"add\",\"t2_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t2_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.uuid\":[\"add\",\"05731eb66c154968a70f1b6cf7466141\"],\"item.itemid\":[\"add\",\"12\"]}'),('clca7pesi00024ciy69qzwwk8',1,'Admin',1672386438,'192.168.64.1',0,15,13,NULL,'t2_2','clca7pesf00004ciy5g8xz5eb','{\"item.hostid\":[\"add\",\"4\"],\"item.templateid\":[\"add\",\"12\"],\"item.name\":[\"add\",\"t2_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t2_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"13\"]}'),('clca7pesi00034ciyb4ku85ix',1,'Admin',1672386438,'192.168.64.1',0,15,14,NULL,'t2_2','clca7pesf00004ciy5g8xz5eb','{\"item.hostid\":[\"add\",\"5\"],\"item.templateid\":[\"add\",\"12\"],\"item.name\":[\"add\",\"t2_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t2_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"14\"]}'),('clca7plzl00014ciyxuxdf5f9',1,'Admin',1672386448,'192.168.64.1',1,15,5,NULL,'t1_1','clca7plzl00004ciyeeg93tgo','{\"item.key_\":[\"update\",\"vfs.file.get[t1_1]\",\"vfs.file.get[t1]\"]}'),('clca7plzp00024ciyzvq447r5',1,'Admin',1672386448,'192.168.64.1',1,15,6,NULL,'t1_1','clca7plzl00004ciyeeg93tgo','{\"item.key_\":[\"update\",\"vfs.file.get[t1_1]\",\"vfs.file.get[t1]\"]}'),('clca7ptdr00014ciyhjarqr4i',1,'Admin',1672386457,'192.168.64.1',1,15,7,NULL,'t1_2','clca7ptdr00004ciylzxnxyyw','{\"item.key_\":[\"update\",\"vfs.file.get[t1_2]\",\"vfs.file.get[t2]\"]}'),('clca7ptdv00024ciyrg4b9t1k',1,'Admin',1672386457,'192.168.64.1',1,15,8,NULL,'t1_2','clca7ptdr00004ciylzxnxyyw','{\"item.key_\":[\"update\",\"vfs.file.get[t1_2]\",\"vfs.file.get[t2]\"]}'),('clca7tjsy00014ciyvwvnphp7',1,'Admin',1672386631,'192.168.64.1',0,15,15,NULL,'vfs.file.get[t3_1]','clca7tjsx00004ciywr15qsh5','{\"item.hostid\":[\"add\",\"8\"],\"item.name\":[\"add\",\"vfs.file.get[t3_1]\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t3_2]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.uuid\":[\"add\",\"683c4115a31f4f90b0dd7b6b1ffc74b8\"],\"item.itemid\":[\"add\",\"15\"]}'),('clca7tjt100024ciyfhupn5t7',1,'Admin',1672386631,'192.168.64.1',0,15,16,NULL,'vfs.file.get[t3_1]','clca7tjsx00004ciywr15qsh5','{\"item.hostid\":[\"add\",\"5\"],\"item.templateid\":[\"add\",\"15\"],\"item.name\":[\"add\",\"vfs.file.get[t3_1]\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t3_2]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"16\"]}'),('clca7tuv100014ciyhkmpkyap',1,'Admin',1672386646,'192.168.64.1',1,15,15,NULL,'vfs.file.get[t3_1]','clca7tuv000004ciy4u1y48sv','{\"item.key_\":[\"update\",\"vfs.file.get[t3_1]\",\"vfs.file.get[t3_2]\"]}'),('clca7tuv600024ciymj5ged14',1,'Admin',1672386646,'192.168.64.1',1,15,16,NULL,'vfs.file.get[t3_1]','clca7tuv000004ciy4u1y48sv','{\"item.key_\":[\"update\",\"vfs.file.get[t3_1]\",\"vfs.file.get[t3_2]\"]}'),('clca7u0fp00014xiyl913dl2d',1,'Admin',1672386653,'192.168.64.1',0,15,17,NULL,'vfs.file.get[t3_2]','clca7u0fp00004xiyjhuptx6k','{\"item.hostid\":[\"add\",\"8\"],\"item.name\":[\"add\",\"vfs.file.get[t3_2]\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t3_2]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.uuid\":[\"add\",\"147dd4fa591a4f938e2f96b3f97ca554\"],\"item.itemid\":[\"add\",\"17\"]}'),('clca7u0fs00024xiylxg71yay',1,'Admin',1672386653,'192.168.64.1',0,15,18,NULL,'vfs.file.get[t3_2]','clca7u0fp00004xiyjhuptx6k','{\"item.hostid\":[\"add\",\"5\"],\"item.templateid\":[\"add\",\"17\"],\"item.name\":[\"add\",\"vfs.file.get[t3_2]\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t3_2]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"18\"]}'),('clca7uggt00014ciyxrcqlm0a',1,'Admin',1672386674,'192.168.64.1',0,15,19,NULL,'vfs.file.get[t4_1]','clca7uggt00004ciywv9odn0x','{\"item.hostid\":[\"add\",\"9\"],\"item.name\":[\"add\",\"vfs.file.get[t4_1]\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t4_2]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.uuid\":[\"add\",\"5b2d1458c39b4cd9873905650d355989\"],\"item.itemid\":[\"add\",\"19\"]}'),('clca7uggy00024ciywpikax0l',1,'Admin',1672386674,'192.168.64.1',0,15,20,NULL,'vfs.file.get[t4_1]','clca7uggt00004ciywv9odn0x','{\"item.hostid\":[\"add\",\"7\"],\"item.templateid\":[\"add\",\"19\"],\"item.name\":[\"add\",\"vfs.file.get[t4_1]\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t4_2]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"20\"]}'),('clca7ugh100034ciyjolr5vo9',1,'Admin',1672386674,'192.168.64.1',0,15,21,NULL,'vfs.file.get[t4_1]','clca7uggt00004ciywv9odn0x','{\"item.hostid\":[\"add\",\"4\"],\"item.templateid\":[\"add\",\"20\"],\"item.name\":[\"add\",\"vfs.file.get[t4_1]\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t4_2]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"21\"]}'),('clca7ugh100044ciyvcqv96lh',1,'Admin',1672386674,'192.168.64.1',0,15,22,NULL,'vfs.file.get[t4_1]','clca7uggt00004ciywv9odn0x','{\"item.hostid\":[\"add\",\"5\"],\"item.templateid\":[\"add\",\"20\"],\"item.name\":[\"add\",\"vfs.file.get[t4_1]\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t4_2]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"22\"]}'),('clca7ukp500014xiyd2rfy431',1,'Admin',1672386679,'192.168.64.1',1,15,19,NULL,'vfs.file.get[t4_1]','clca7ukp500004xiy0vyuclmo','{\"item.key_\":[\"update\",\"vfs.file.get[t4_1]\",\"vfs.file.get[t4_2]\"]}'),('clca7ukp900024xiygjhsji0b',1,'Admin',1672386679,'192.168.64.1',1,15,20,NULL,'vfs.file.get[t4_1]','clca7ukp500004xiy0vyuclmo','{\"item.key_\":[\"update\",\"vfs.file.get[t4_1]\",\"vfs.file.get[t4_2]\"]}'),('clca7ukpd00034xiym0gffii7',1,'Admin',1672386679,'192.168.64.1',1,15,21,NULL,'vfs.file.get[t4_1]','clca7ukp500004xiy0vyuclmo','{\"item.key_\":[\"update\",\"vfs.file.get[t4_1]\",\"vfs.file.get[t4_2]\"]}'),('clca7ukpd00044xiy83o7ivsm',1,'Admin',1672386679,'192.168.64.1',1,15,22,NULL,'vfs.file.get[t4_1]','clca7ukp500004xiy0vyuclmo','{\"item.key_\":[\"update\",\"vfs.file.get[t4_1]\",\"vfs.file.get[t4_2]\"]}'),('clca7uqjh00014xiyaby7bexo',1,'Admin',1672386687,'192.168.64.1',0,15,23,NULL,'vfs.file.get[t4_2]','clca7uqjh00004xiy6sipm6lu','{\"item.hostid\":[\"add\",\"9\"],\"item.name\":[\"add\",\"vfs.file.get[t4_2]\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t4_2]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.uuid\":[\"add\",\"b2e3ae435e974aebacfa7ba266f43f6e\"],\"item.itemid\":[\"add\",\"23\"]}'),('clca7uqji00024xiysro2uyih',1,'Admin',1672386687,'192.168.64.1',0,15,24,NULL,'vfs.file.get[t4_2]','clca7uqjh00004xiy6sipm6lu','{\"item.hostid\":[\"add\",\"7\"],\"item.templateid\":[\"add\",\"23\"],\"item.name\":[\"add\",\"vfs.file.get[t4_2]\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t4_2]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"24\"]}'),('clca7uqjl00034xiyeuohzhq1',1,'Admin',1672386687,'192.168.64.1',0,15,25,NULL,'vfs.file.get[t4_2]','clca7uqjh00004xiy6sipm6lu','{\"item.hostid\":[\"add\",\"4\"],\"item.templateid\":[\"add\",\"24\"],\"item.name\":[\"add\",\"vfs.file.get[t4_2]\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t4_2]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"25\"]}'),('clca7uqjl00044xiy4dm3q9tq',1,'Admin',1672386687,'192.168.64.1',0,15,26,NULL,'vfs.file.get[t4_2]','clca7uqjh00004xiy6sipm6lu','{\"item.hostid\":[\"add\",\"5\"],\"item.templateid\":[\"add\",\"24\"],\"item.name\":[\"add\",\"vfs.file.get[t4_2]\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t4_2]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"26\"]}'),('clca7v4it00014ciy5o3v4ypm',1,'Admin',1672386705,'192.168.64.1',0,15,27,NULL,'vfs.file.get[t5_1]','clca7v4it00004ciy1s9kmp2s','{\"item.hostid\":[\"add\",\"10\"],\"item.name\":[\"add\",\"vfs.file.get[t5_1]\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t5_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.uuid\":[\"add\",\"e284da7c4e6b4626bd15c87e40f633f4\"],\"item.itemid\":[\"add\",\"27\"]}'),('clca7v4iv00024ciyx7i10nly',1,'Admin',1672386705,'192.168.64.1',0,15,28,NULL,'vfs.file.get[t5_1]','clca7v4it00004ciy1s9kmp2s','{\"item.hostid\":[\"add\",\"6\"],\"item.templateid\":[\"add\",\"27\"],\"item.name\":[\"add\",\"vfs.file.get[t5_1]\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t5_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"28\"]}'),('clca7v4ix00034ciywkphospi',1,'Admin',1672386705,'192.168.64.1',0,15,29,NULL,'vfs.file.get[t5_1]','clca7v4it00004ciy1s9kmp2s','{\"item.hostid\":[\"add\",\"4\"],\"item.templateid\":[\"add\",\"28\"],\"item.name\":[\"add\",\"vfs.file.get[t5_1]\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t5_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"29\"]}'),('clca7vb7900014xiyc9b7cvml',1,'Admin',1672386713,'192.168.64.1',0,15,30,NULL,'vfs.file.get[t5_2]','clca7vb7900004xiyawxsriki','{\"item.hostid\":[\"add\",\"10\"],\"item.name\":[\"add\",\"vfs.file.get[t5_2]\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t5_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.uuid\":[\"add\",\"8ce0e55cd88b4439915f335eab6a8058\"],\"item.itemid\":[\"add\",\"30\"]}'),('clca7vb7d00024xiyijly5xvq',1,'Admin',1672386713,'192.168.64.1',0,15,31,NULL,'vfs.file.get[t5_2]','clca7vb7900004xiyawxsriki','{\"item.hostid\":[\"add\",\"6\"],\"item.templateid\":[\"add\",\"30\"],\"item.name\":[\"add\",\"vfs.file.get[t5_2]\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t5_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"31\"]}'),('clca7vb7g00034xiyvun003jc',1,'Admin',1672386713,'192.168.64.1',0,15,32,NULL,'vfs.file.get[t5_2]','clca7vb7900004xiyawxsriki','{\"item.hostid\":[\"add\",\"4\"],\"item.templateid\":[\"add\",\"31\"],\"item.name\":[\"add\",\"vfs.file.get[t5_2]\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t5_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"32\"]}'),('clca7ymbu00014xiy4l6uixmv',1,'Admin',1672386868,'192.168.64.1',0,15,33,NULL,'t6_1','clca7ymbu00004xiykxm8yr89','{\"item.hostid\":[\"add\",\"11\"],\"item.name\":[\"add\",\"t6_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t16_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.uuid\":[\"add\",\"61af20104ed542c7901760a38cb6c1ec\"],\"item.itemid\":[\"add\",\"33\"]}'),('clca7ymbw00024xiyre3uoupc',1,'Admin',1672386868,'192.168.64.1',0,15,34,NULL,'t6_1','clca7ymbu00004xiykxm8yr89','{\"item.hostid\":[\"add\",\"8\"],\"item.templateid\":[\"add\",\"33\"],\"item.name\":[\"add\",\"t6_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t16_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"34\"]}'),('clca7ymby00034xiyumt2anu7',1,'Admin',1672386868,'192.168.64.1',0,15,35,NULL,'t6_1','clca7ymbu00004xiykxm8yr89','{\"item.hostid\":[\"add\",\"5\"],\"item.templateid\":[\"add\",\"34\"],\"item.name\":[\"add\",\"t6_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t16_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"35\"]}'),('clca7yt7g00014ciyajifrgx6',1,'Admin',1672386877,'192.168.64.1',0,15,36,NULL,'t6_2','clca7yt7g00004ciyfoqau102','{\"item.hostid\":[\"add\",\"11\"],\"item.name\":[\"add\",\"t6_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t16_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.uuid\":[\"add\",\"27bd0c280e3b4b81b2134b758997b648\"],\"item.itemid\":[\"add\",\"36\"]}'),('clca7yt7i00024ciy35bvm50f',1,'Admin',1672386877,'192.168.64.1',0,15,37,NULL,'t6_2','clca7yt7g00004ciyfoqau102','{\"item.hostid\":[\"add\",\"8\"],\"item.templateid\":[\"add\",\"36\"],\"item.name\":[\"add\",\"t6_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t16_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"37\"]}'),('clca7yt7l00034ciyrz7agq24',1,'Admin',1672386877,'192.168.64.1',0,15,38,NULL,'t6_2','clca7yt7g00004ciyfoqau102','{\"item.hostid\":[\"add\",\"5\"],\"item.templateid\":[\"add\",\"37\"],\"item.name\":[\"add\",\"t6_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t16_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"38\"]}'),('clca7z3ip00014xiyxykzwyyf',1,'Admin',1672386890,'192.168.64.1',1,15,27,NULL,'vfs.file.get[t5_1]','clca7z3ip00004xiyizrmj8sa','{\"item.name\":[\"update\",\"t5_1\",\"vfs.file.get[t5_1]\"]}'),('clca7z3it00024xiyakb8adtf',1,'Admin',1672386890,'192.168.64.1',1,15,28,NULL,'vfs.file.get[t5_1]','clca7z3ip00004xiyizrmj8sa','{\"item.name\":[\"update\",\"t5_1\",\"vfs.file.get[t5_1]\"]}'),('clca7z3iy00034xiyar4xo95p',1,'Admin',1672386890,'192.168.64.1',1,15,29,NULL,'vfs.file.get[t5_1]','clca7z3ip00004xiyizrmj8sa','{\"item.name\":[\"update\",\"t5_1\",\"vfs.file.get[t5_1]\"]}'),('clca7z9y000014xiyvv90qhsr',1,'Admin',1672386898,'192.168.64.1',1,15,30,NULL,'vfs.file.get[t5_2]','clca7z9y000004xiy74k9fy1d','{\"item.name\":[\"update\",\"t5_2\",\"vfs.file.get[t5_2]\"]}'),('clca7z9y200024xiyxix090vi',1,'Admin',1672386898,'192.168.64.1',1,15,31,NULL,'vfs.file.get[t5_2]','clca7z9y000004xiy74k9fy1d','{\"item.name\":[\"update\",\"t5_2\",\"vfs.file.get[t5_2]\"]}'),('clca7z9y500034xiy9rz1nkpp',1,'Admin',1672386898,'192.168.64.1',1,15,32,NULL,'vfs.file.get[t5_2]','clca7z9y000004xiy74k9fy1d','{\"item.name\":[\"update\",\"t5_2\",\"vfs.file.get[t5_2]\"]}'),('clca7zm4q00014ciy2fsst6h0',1,'Admin',1672386914,'192.168.64.1',1,15,19,NULL,'vfs.file.get[t4_1]','clca7zm4q00004ciy2qxsqsw5','{\"item.name\":[\"update\",\"t4_1\",\"vfs.file.get[t4_1]\"],\"item.key_\":[\"update\",\"t4_1\",\"vfs.file.get[t4_1]\"]}'),('clca7zm4t00024ciyrl9h59jp',1,'Admin',1672386914,'192.168.64.1',1,15,20,NULL,'vfs.file.get[t4_1]','clca7zm4q00004ciy2qxsqsw5','{\"item.name\":[\"update\",\"t4_1\",\"vfs.file.get[t4_1]\"],\"item.key_\":[\"update\",\"t4_1\",\"vfs.file.get[t4_1]\"]}'),('clca7zm4x00034ciyflb7t2rq',1,'Admin',1672386914,'192.168.64.1',1,15,21,NULL,'vfs.file.get[t4_1]','clca7zm4q00004ciy2qxsqsw5','{\"item.name\":[\"update\",\"t4_1\",\"vfs.file.get[t4_1]\"],\"item.key_\":[\"update\",\"t4_1\",\"vfs.file.get[t4_1]\"]}'),('clca7zm4x00044ciy2iryx9u0',1,'Admin',1672386914,'192.168.64.1',1,15,22,NULL,'vfs.file.get[t4_1]','clca7zm4q00004ciy2qxsqsw5','{\"item.name\":[\"update\",\"t4_1\",\"vfs.file.get[t4_1]\"],\"item.key_\":[\"update\",\"t4_1\",\"vfs.file.get[t4_1]\"]}'),('clca7zrgy00014xiyqk76ayau',1,'Admin',1672386921,'192.168.64.1',1,15,23,NULL,'vfs.file.get[t4_2]','clca7zrgx00004xiy15mq1rn4','{\"item.name\":[\"update\",\"t4_2\",\"vfs.file.get[t4_2]\"]}'),('clca7zrh100024xiygvovz3mu',1,'Admin',1672386921,'192.168.64.1',1,15,24,NULL,'vfs.file.get[t4_2]','clca7zrgx00004xiy15mq1rn4','{\"item.name\":[\"update\",\"t4_2\",\"vfs.file.get[t4_2]\"]}'),('clca7zrh500034xiy32o2v35f',1,'Admin',1672386921,'192.168.64.1',1,15,25,NULL,'vfs.file.get[t4_2]','clca7zrgx00004xiy15mq1rn4','{\"item.name\":[\"update\",\"t4_2\",\"vfs.file.get[t4_2]\"]}'),('clca7zrh500044xiyle2d3j5g',1,'Admin',1672386921,'192.168.64.1',1,15,26,NULL,'vfs.file.get[t4_2]','clca7zrgx00004xiy15mq1rn4','{\"item.name\":[\"update\",\"t4_2\",\"vfs.file.get[t4_2]\"]}'),('clca7zzft00017kiy1ga1syaq',1,'Admin',1672386932,'192.168.64.1',1,15,15,NULL,'vfs.file.get[t3_1]','clca7zzft00007kiypxqal33a','{\"item.name\":[\"update\",\"t3_1\",\"vfs.file.get[t3_1]\"]}'),('clca7zzfv00027kiynkbh9qrr',1,'Admin',1672386932,'192.168.64.1',1,15,16,NULL,'vfs.file.get[t3_1]','clca7zzft00007kiypxqal33a','{\"item.name\":[\"update\",\"t3_1\",\"vfs.file.get[t3_1]\"]}'),('clca8041900014ciyj1ys7i5i',1,'Admin',1672386937,'192.168.64.1',1,15,17,NULL,'vfs.file.get[t3_2]','clca8041900004ciyuiel3s0y','{\"item.name\":[\"update\",\"t3_2\",\"vfs.file.get[t3_2]\"]}'),('clca8041b00024ciyd1x0kxk3',1,'Admin',1672386937,'192.168.64.1',1,15,18,NULL,'vfs.file.get[t3_2]','clca8041900004ciyuiel3s0y','{\"item.name\":[\"update\",\"t3_2\",\"vfs.file.get[t3_2]\"]}'),('clca80s8000017kiybekem0l3',1,'Admin',1672386969,'192.168.64.1',1,15,19,NULL,'t4_1','clca80s8000007kiy2vgl57cv','{\"item.key_\":[\"update\",\"vfs.file.get[t14_1]\",\"t4_1\"]}'),('clca80s8400027kiymc4iuxw9',1,'Admin',1672386969,'192.168.64.1',1,15,20,NULL,'t4_1','clca80s8000007kiy2vgl57cv','{\"item.key_\":[\"update\",\"vfs.file.get[t14_1]\",\"t4_1\"]}'),('clca80s8900037kiyjoum8hy7',1,'Admin',1672386969,'192.168.64.1',1,15,21,NULL,'t4_1','clca80s8000007kiy2vgl57cv','{\"item.key_\":[\"update\",\"vfs.file.get[t14_1]\",\"t4_1\"]}'),('clca80s8900047kiyh1wkp5nt',1,'Admin',1672386969,'192.168.64.1',1,15,22,NULL,'t4_1','clca80s8000007kiy2vgl57cv','{\"item.key_\":[\"update\",\"vfs.file.get[t14_1]\",\"t4_1\"]}'),('clca80zoa00017kiyocvo9qe8',1,'Admin',1672386978,'192.168.64.1',1,15,19,NULL,'t4_1','clca80zoa00007kiyw5mlkorr','{\"item.key_\":[\"update\",\"vfs.file.get[t4_1]\",\"vfs.file.get[t14_1]\"]}'),('clca80zoc00027kiy3ceje0kz',1,'Admin',1672386978,'192.168.64.1',1,15,20,NULL,'t4_1','clca80zoa00007kiyw5mlkorr','{\"item.key_\":[\"update\",\"vfs.file.get[t4_1]\",\"vfs.file.get[t14_1]\"]}'),('clca80zoe00037kiya3u49vl8',1,'Admin',1672386978,'192.168.64.1',1,15,21,NULL,'t4_1','clca80zoa00007kiyw5mlkorr','{\"item.key_\":[\"update\",\"vfs.file.get[t4_1]\",\"vfs.file.get[t14_1]\"]}'),('clca80zoe00047kiyb30ry6vv',1,'Admin',1672386978,'192.168.64.1',1,15,22,NULL,'t4_1','clca80zoa00007kiyw5mlkorr','{\"item.key_\":[\"update\",\"vfs.file.get[t4_1]\",\"vfs.file.get[t14_1]\"]}'),('clca81dhn00014xiybpgntne6',1,'Admin',1672386996,'192.168.64.1',1,15,33,NULL,'t6_1','clca81dhn00004xiyyzmqs59j','{\"item.key_\":[\"update\",\"vfs.file.get[t6_1]\",\"vfs.file.get[t16_1]\"]}'),('clca81dhq00024xiy1k1zsps1',1,'Admin',1672386996,'192.168.64.1',1,15,34,NULL,'t6_1','clca81dhn00004xiyyzmqs59j','{\"item.key_\":[\"update\",\"vfs.file.get[t6_1]\",\"vfs.file.get[t16_1]\"]}'),('clca81dht00034xiyk4zngt9u',1,'Admin',1672386996,'192.168.64.1',1,15,35,NULL,'t6_1','clca81dhn00004xiyyzmqs59j','{\"item.key_\":[\"update\",\"vfs.file.get[t6_1]\",\"vfs.file.get[t16_1]\"]}'),('clca81gq000017kiya0w2nkyq',1,'Admin',1672387001,'192.168.64.1',1,15,36,NULL,'t6_2','clca81gq000007kiywk29la5c','{\"item.key_\":[\"update\",\"vfs.file.get[t6_2]\",\"vfs.file.get[t16_2]\"]}'),('clca81gq300027kiyhnxzsh5b',1,'Admin',1672387001,'192.168.64.1',1,15,37,NULL,'t6_2','clca81gq000007kiywk29la5c','{\"item.key_\":[\"update\",\"vfs.file.get[t6_2]\",\"vfs.file.get[t16_2]\"]}'),('clca81gq700037kiyifrldrsb',1,'Admin',1672387001,'192.168.64.1',1,15,38,NULL,'t6_2','clca81gq000007kiywk29la5c','{\"item.key_\":[\"update\",\"vfs.file.get[t6_2]\",\"vfs.file.get[t16_2]\"]}'),('clca82d3g00014ciy9jfj4e56',1,'Admin',1672387043,'192.168.64.1',0,15,39,NULL,'t7_1','clca82d3f00004ciyhxyuo255','{\"item.hostid\":[\"add\",\"12\"],\"item.name\":[\"add\",\"t7_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t7_1]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.uuid\":[\"add\",\"426023a408294842adbeb4c2782ef75e\"],\"item.itemid\":[\"add\",\"39\"]}'),('clca82d3i00024ciyfp9zc06p',1,'Admin',1672387043,'192.168.64.1',0,15,40,NULL,'t7_1','clca82d3f00004ciyhxyuo255','{\"item.hostid\":[\"add\",\"9\"],\"item.templateid\":[\"add\",\"39\"],\"item.name\":[\"add\",\"t7_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t7_1]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"40\"]}'),('clca82d3l00034ciy0u9kc2y8',1,'Admin',1672387043,'192.168.64.1',0,15,41,NULL,'t7_1','clca82d3f00004ciyhxyuo255','{\"item.hostid\":[\"add\",\"7\"],\"item.templateid\":[\"add\",\"40\"],\"item.name\":[\"add\",\"t7_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t7_1]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"41\"]}'),('clca82d3p00044ciy0blw6hrz',1,'Admin',1672387043,'192.168.64.1',0,15,42,NULL,'t7_1','clca82d3f00004ciyhxyuo255','{\"item.hostid\":[\"add\",\"4\"],\"item.templateid\":[\"add\",\"41\"],\"item.name\":[\"add\",\"t7_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t7_1]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"42\"]}'),('clca82d3p00054ciyih5rwb8s',1,'Admin',1672387043,'192.168.64.1',0,15,43,NULL,'t7_1','clca82d3f00004ciyhxyuo255','{\"item.hostid\":[\"add\",\"5\"],\"item.templateid\":[\"add\",\"41\"],\"item.name\":[\"add\",\"t7_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t7_1]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"43\"]}'),('clca84w1n00014xiyg3xsi6h8',1,'Admin',1672387160,'192.168.64.1',0,15,44,NULL,'t7_2','clca84w1n00004xiy5jhdkims','{\"item.hostid\":[\"add\",\"12\"],\"item.name\":[\"add\",\"t7_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t7_2]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.uuid\":[\"add\",\"5ce4939c51604e2faf307a7435e596d9\"],\"item.itemid\":[\"add\",\"44\"]}'),('clca84w1p00024xiy4112oh4h',1,'Admin',1672387160,'192.168.64.1',0,15,45,NULL,'t7_2','clca84w1n00004xiy5jhdkims','{\"item.hostid\":[\"add\",\"9\"],\"item.templateid\":[\"add\",\"44\"],\"item.name\":[\"add\",\"t7_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t7_2]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"45\"]}'),('clca84w1r00034xiy7i645411',1,'Admin',1672387160,'192.168.64.1',0,15,46,NULL,'t7_2','clca84w1n00004xiy5jhdkims','{\"item.hostid\":[\"add\",\"7\"],\"item.templateid\":[\"add\",\"45\"],\"item.name\":[\"add\",\"t7_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t7_2]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"46\"]}'),('clca84w1t00044xiy1npeax1v',1,'Admin',1672387160,'192.168.64.1',0,15,47,NULL,'t7_2','clca84w1n00004xiy5jhdkims','{\"item.hostid\":[\"add\",\"4\"],\"item.templateid\":[\"add\",\"46\"],\"item.name\":[\"add\",\"t7_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t7_2]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"47\"]}'),('clca84w1t00054xiy5nj0rlf3',1,'Admin',1672387160,'192.168.64.1',0,15,48,NULL,'t7_2','clca84w1n00004xiy5jhdkims','{\"item.hostid\":[\"add\",\"5\"],\"item.templateid\":[\"add\",\"46\"],\"item.name\":[\"add\",\"t7_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t7_2]\"],\"item.value_type\":[\"add\",\"3\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"48\"]}'),('clca8598f00014xiyde06m9uv',1,'Admin',1672387177,'192.168.64.1',0,15,49,NULL,'t8_1','clca8598f00004xiy8jaijug4','{\"item.hostid\":[\"add\",\"13\"],\"item.name\":[\"add\",\"t8_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t8_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.uuid\":[\"add\",\"dc86b8b779844ea6b74aa221d9973215\"],\"item.itemid\":[\"add\",\"49\"]}'),('clca8598j00024xiyaq074en5',1,'Admin',1672387177,'192.168.64.1',0,15,50,NULL,'t8_1','clca8598f00004xiy8jaijug4','{\"item.hostid\":[\"add\",\"9\"],\"item.templateid\":[\"add\",\"49\"],\"item.name\":[\"add\",\"t8_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t8_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"50\"]}'),('clca8598l00034xiy0ecexj5u',1,'Admin',1672387177,'192.168.64.1',0,15,51,NULL,'t8_1','clca8598f00004xiy8jaijug4','{\"item.hostid\":[\"add\",\"7\"],\"item.templateid\":[\"add\",\"50\"],\"item.name\":[\"add\",\"t8_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t8_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"51\"]}'),('clca8598o00044xiy2sjf2cci',1,'Admin',1672387177,'192.168.64.1',0,15,52,NULL,'t8_1','clca8598f00004xiy8jaijug4','{\"item.hostid\":[\"add\",\"4\"],\"item.templateid\":[\"add\",\"51\"],\"item.name\":[\"add\",\"t8_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t8_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"52\"]}'),('clca8598o00054xiyb75e4ang',1,'Admin',1672387177,'192.168.64.1',0,15,53,NULL,'t8_1','clca8598f00004xiy8jaijug4','{\"item.hostid\":[\"add\",\"5\"],\"item.templateid\":[\"add\",\"51\"],\"item.name\":[\"add\",\"t8_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t8_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"53\"]}'),('clca85dss00014ciy7p0w934u',1,'Admin',1672387183,'192.168.64.1',0,15,54,NULL,'t8_2','clca85dss00004ciynwjyxte1','{\"item.hostid\":[\"add\",\"13\"],\"item.name\":[\"add\",\"t8_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t8_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.uuid\":[\"add\",\"f5a24a50be524aa0b31b33402b048824\"],\"item.itemid\":[\"add\",\"54\"]}'),('clca85dsv00024ciy8if5hh0i',1,'Admin',1672387183,'192.168.64.1',0,15,55,NULL,'t8_2','clca85dss00004ciynwjyxte1','{\"item.hostid\":[\"add\",\"9\"],\"item.templateid\":[\"add\",\"54\"],\"item.name\":[\"add\",\"t8_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t8_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"55\"]}'),('clca85dsx00034ciydcj2drds',1,'Admin',1672387183,'192.168.64.1',0,15,56,NULL,'t8_2','clca85dss00004ciynwjyxte1','{\"item.hostid\":[\"add\",\"7\"],\"item.templateid\":[\"add\",\"55\"],\"item.name\":[\"add\",\"t8_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t8_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"56\"]}'),('clca85dt200044ciysfsumw5d',1,'Admin',1672387183,'192.168.64.1',0,15,57,NULL,'t8_2','clca85dss00004ciynwjyxte1','{\"item.hostid\":[\"add\",\"4\"],\"item.templateid\":[\"add\",\"56\"],\"item.name\":[\"add\",\"t8_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t8_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"57\"]}'),('clca85dt200054ciysopnjwo6',1,'Admin',1672387183,'192.168.64.1',0,15,58,NULL,'t8_2','clca85dss00004ciynwjyxte1','{\"item.hostid\":[\"add\",\"5\"],\"item.templateid\":[\"add\",\"56\"],\"item.name\":[\"add\",\"t8_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t8_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"58\"]}'),('clca86t8m00014xiym1i9w6s4',1,'Admin',1672387250,'192.168.64.1',0,15,59,NULL,'t9_1','clca86t8m00004xiyt4vh4zqz','{\"item.hostid\":[\"add\",\"14\"],\"item.name\":[\"add\",\"t9_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t9_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.uuid\":[\"add\",\"a425bb7f45e64ab489b11788d9aa2932\"],\"item.itemid\":[\"add\",\"59\"]}'),('clca86t8o00024xiyovrxpmw8',1,'Admin',1672387250,'192.168.64.1',0,15,60,NULL,'t9_1','clca86t8m00004xiyt4vh4zqz','{\"item.hostid\":[\"add\",\"12\"],\"item.templateid\":[\"add\",\"59\"],\"item.name\":[\"add\",\"t9_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t9_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"60\"]}'),('clca86t8p00034xiyo9r8chuo',1,'Admin',1672387250,'192.168.64.1',0,15,61,NULL,'t9_1','clca86t8m00004xiyt4vh4zqz','{\"item.hostid\":[\"add\",\"9\"],\"item.templateid\":[\"add\",\"60\"],\"item.name\":[\"add\",\"t9_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t9_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"61\"]}'),('clca86t8s00044xiyzfo5h5q5',1,'Admin',1672387250,'192.168.64.1',0,15,62,NULL,'t9_1','clca86t8m00004xiyt4vh4zqz','{\"item.hostid\":[\"add\",\"7\"],\"item.templateid\":[\"add\",\"61\"],\"item.name\":[\"add\",\"t9_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t9_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"62\"]}'),('clca86t8v00054xiy6intsjcs',1,'Admin',1672387250,'192.168.64.1',0,15,63,NULL,'t9_1','clca86t8m00004xiyt4vh4zqz','{\"item.hostid\":[\"add\",\"4\"],\"item.templateid\":[\"add\",\"62\"],\"item.name\":[\"add\",\"t9_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t9_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"63\"]}'),('clca86t8v00064xiys9bjqjp0',1,'Admin',1672387250,'192.168.64.1',0,15,64,NULL,'t9_1','clca86t8m00004xiyt4vh4zqz','{\"item.hostid\":[\"add\",\"5\"],\"item.templateid\":[\"add\",\"62\"],\"item.name\":[\"add\",\"t9_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t9_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"64\"]}'),('clca86yui00014ciyqoak1j4g',1,'Admin',1672387257,'192.168.64.1',0,15,65,NULL,'t9_2','clca86yui00004ciywv35ncxa','{\"item.hostid\":[\"add\",\"14\"],\"item.name\":[\"add\",\"t9_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t9_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.uuid\":[\"add\",\"e76d8c1122bc426998b38133bccd73e1\"],\"item.itemid\":[\"add\",\"65\"]}'),('clca86yuk00024ciy53bhwzcg',1,'Admin',1672387257,'192.168.64.1',0,15,66,NULL,'t9_2','clca86yui00004ciywv35ncxa','{\"item.hostid\":[\"add\",\"12\"],\"item.templateid\":[\"add\",\"65\"],\"item.name\":[\"add\",\"t9_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t9_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"66\"]}'),('clca86yum00034ciyty86pj3p',1,'Admin',1672387257,'192.168.64.1',0,15,67,NULL,'t9_2','clca86yui00004ciywv35ncxa','{\"item.hostid\":[\"add\",\"9\"],\"item.templateid\":[\"add\",\"66\"],\"item.name\":[\"add\",\"t9_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t9_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"67\"]}'),('clca86yup00044ciydc39ln89',1,'Admin',1672387257,'192.168.64.1',0,15,68,NULL,'t9_2','clca86yui00004ciywv35ncxa','{\"item.hostid\":[\"add\",\"7\"],\"item.templateid\":[\"add\",\"67\"],\"item.name\":[\"add\",\"t9_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t9_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"68\"]}'),('clca86yur00054ciyxs41x2hp',1,'Admin',1672387257,'192.168.64.1',0,15,69,NULL,'t9_2','clca86yui00004ciywv35ncxa','{\"item.hostid\":[\"add\",\"4\"],\"item.templateid\":[\"add\",\"68\"],\"item.name\":[\"add\",\"t9_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t9_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"69\"]}'),('clca86yur00064ciytyn2a5oz',1,'Admin',1672387257,'192.168.64.1',0,15,70,NULL,'t9_2','clca86yui00004ciywv35ncxa','{\"item.hostid\":[\"add\",\"5\"],\"item.templateid\":[\"add\",\"68\"],\"item.name\":[\"add\",\"t9_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t9_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"70\"]}'),('clca88k3b00014ciydn1ygmeu',1,'Admin',1672387332,'192.168.64.1',0,15,71,NULL,'t10_1','clca88k3a00004ciy04iyxd6i','{\"item.hostid\":[\"add\",\"15\"],\"item.name\":[\"add\",\"t10_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t10_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.uuid\":[\"add\",\"3c7f55a554664797b4ba4e1fb9fcd53c\"],\"item.itemid\":[\"add\",\"71\"]}'),('clca88k3c00024ciybjyh57c7',1,'Admin',1672387332,'192.168.64.1',0,15,72,NULL,'t10_1','clca88k3a00004ciy04iyxd6i','{\"item.hostid\":[\"add\",\"7\"],\"item.templateid\":[\"add\",\"71\"],\"item.name\":[\"add\",\"t10_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t10_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"72\"]}'),('clca88k3f00034ciy4qdhi30u',1,'Admin',1672387332,'192.168.64.1',0,15,73,NULL,'t10_1','clca88k3a00004ciy04iyxd6i','{\"item.hostid\":[\"add\",\"4\"],\"item.templateid\":[\"add\",\"72\"],\"item.name\":[\"add\",\"t10_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t10_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"73\"]}'),('clca88k3f00044ciyp6sar4l2',1,'Admin',1672387332,'192.168.64.1',0,15,74,NULL,'t10_1','clca88k3a00004ciy04iyxd6i','{\"item.hostid\":[\"add\",\"5\"],\"item.templateid\":[\"add\",\"72\"],\"item.name\":[\"add\",\"t10_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t10_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"74\"]}'),('clca88pwh00014ciygk3g30yw',1,'Admin',1672387339,'192.168.64.1',0,15,75,NULL,'t10_2','clca88pwg00004ciygof2yrv1','{\"item.hostid\":[\"add\",\"15\"],\"item.name\":[\"add\",\"t10_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t10_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.uuid\":[\"add\",\"2ac606b4204d4cad861af01888fbaf6a\"],\"item.itemid\":[\"add\",\"75\"]}'),('clca88pwj00024ciyo7otva13',1,'Admin',1672387339,'192.168.64.1',0,15,76,NULL,'t10_2','clca88pwg00004ciygof2yrv1','{\"item.hostid\":[\"add\",\"7\"],\"item.templateid\":[\"add\",\"75\"],\"item.name\":[\"add\",\"t10_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t10_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"76\"]}'),('clca88pwn00034ciy5s4m0zjz',1,'Admin',1672387339,'192.168.64.1',0,15,77,NULL,'t10_2','clca88pwg00004ciygof2yrv1','{\"item.hostid\":[\"add\",\"4\"],\"item.templateid\":[\"add\",\"76\"],\"item.name\":[\"add\",\"t10_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t10_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"77\"]}'),('clca88pwn00044ciy92h6o2qd',1,'Admin',1672387339,'192.168.64.1',0,15,78,NULL,'t10_2','clca88pwg00004ciygof2yrv1','{\"item.hostid\":[\"add\",\"5\"],\"item.templateid\":[\"add\",\"76\"],\"item.name\":[\"add\",\"t10_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t10_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.trends\":[\"add\",\"0\"],\"item.itemid\":[\"add\",\"78\"]}'),('clca8edfu00017kiyeve6z2lh',1,'Admin',1672387603,'192.168.64.1',0,13,23096,NULL,'tr1','clca8edfu00007kiysuek1dfn',''),('clca8evfw00014ciyajgtt3gc',1,'Admin',1672387626,'192.168.64.1',0,13,23098,NULL,'tr2','clca8evfw00004ciysaz2n82t',''),('clca8gbrh00017kiy90219srs',1,'Admin',1672387694,'192.168.64.1',0,13,23100,NULL,'tr5_1','clca8gbrh00007kiydy03z07t',''),('clca8gkfo00017kiydfxg3rlr',1,'Admin',1672387705,'192.168.64.1',1,13,23098,NULL,'tr2','clca8gkfo00007kiy5da0v83g','{\"trigger.description\":[\"update\",\"tr1_2\",\"tr2\"]}'),('clca8gnvl00017kiyys9btt49',1,'Admin',1672387710,'192.168.64.1',1,13,23096,NULL,'tr1','clca8gnvl00007kiy5w5pceo1','{\"trigger.description\":[\"update\",\"tr1_1\",\"tr1\"]}'),('clca8hd8b00014xiy73qpyvx9',1,'Admin',1672387743,'192.168.64.1',0,13,23103,NULL,'tr6_1','clca8hd8b00004xiyy76g8x5c',''),('clca8j94600014xiy9vfti4do',1,'Admin',1672387831,'192.168.64.1',0,15,79,NULL,'t6_1','clca8j94600004xiy62oj5pwi','{\"item.hostid\":[\"add\",\"10\"],\"item.templateid\":[\"add\",\"33\"],\"item.name\":[\"add\",\"t6_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t6_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.trends\":[\"add\",\"0\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"79\"]}'),('clca8j94600024xiysjzyadnk',1,'Admin',1672387831,'192.168.64.1',0,15,80,NULL,'t6_2','clca8j94600004xiy62oj5pwi','{\"item.hostid\":[\"add\",\"10\"],\"item.templateid\":[\"add\",\"36\"],\"item.name\":[\"add\",\"t6_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t6_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.trends\":[\"add\",\"0\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"80\"]}'),('clca8j94900034xiyv4qb0r7j',1,'Admin',1672387831,'192.168.64.1',0,15,81,NULL,'t6_1','clca8j94600004xiy62oj5pwi','{\"item.hostid\":[\"add\",\"6\"],\"item.templateid\":[\"add\",\"79\"],\"item.name\":[\"add\",\"t6_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t6_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.trends\":[\"add\",\"0\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"81\"]}'),('clca8j94900044xiyjl0uedqy',1,'Admin',1672387831,'192.168.64.1',0,15,82,NULL,'t6_2','clca8j94600004xiy62oj5pwi','{\"item.hostid\":[\"add\",\"6\"],\"item.templateid\":[\"add\",\"80\"],\"item.name\":[\"add\",\"t6_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t6_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.trends\":[\"add\",\"0\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"82\"]}'),('clca8j94c00054xiyexw9kaz0',1,'Admin',1672387831,'192.168.64.1',0,15,83,NULL,'t6_1','clca8j94600004xiy62oj5pwi','{\"item.hostid\":[\"add\",\"4\"],\"item.templateid\":[\"add\",\"81\"],\"item.name\":[\"add\",\"t6_1\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t6_1]\"],\"item.value_type\":[\"add\",\"4\"],\"item.trends\":[\"add\",\"0\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"83\"]}'),('clca8j94c00064xiyiophvsqi',1,'Admin',1672387831,'192.168.64.1',0,15,84,NULL,'t6_2','clca8j94600004xiy62oj5pwi','{\"item.hostid\":[\"add\",\"4\"],\"item.templateid\":[\"add\",\"82\"],\"item.name\":[\"add\",\"t6_2\"],\"item.type\":[\"add\",\"3\"],\"item.key_\":[\"add\",\"vfs.file.get[t6_2]\"],\"item.value_type\":[\"add\",\"4\"],\"item.trends\":[\"add\",\"0\"],\"item.password\":[\"add\",\"******\"],\"item.delay\":[\"add\",\"1m\"],\"item.itemid\":[\"add\",\"84\"]}'),('clca8j94v00074xiy8rkcoxzd',1,'Admin',1672387831,'192.168.64.1',1,30,10,NULL,'t5','clca8j94600004xiy62oj5pwi','{\"template.templates[15]\":[\"add\"],\"template.templates[15].templateid\":[\"add\",\"11\"],\"template.templates[15].hosttemplateid\":[\"add\",\"15\"]}'),('clca8jw9y00014ciyht5ixnh5',1,'Admin',1672387861,'192.168.64.1',0,13,23109,NULL,'tr5_2','clca8jw9y00004ciy0e7ymcqm',''),('clca8sjgr00014xiyohex013s',1,'Admin',1672388264,'192.168.64.1',0,13,23112,NULL,'tr_9','clca8sjgr00004xiycg9gm3uk',''),('clca8t5ov00017kiym54m9rnd',1,'Admin',1672388293,'192.168.64.1',0,13,23118,NULL,'tr7_1','clca8t5ov00007kiy033bgcgd',''),('clca8tv5500014ciyw6p100xh',1,'Admin',1672388326,'192.168.64.1',0,13,23123,NULL,'tr7_2','clca8tv5500004ciyocsb2o6d',''),('clca8u6io00014xiyg8aa2rx0',1,'Admin',1672388340,'192.168.64.1',0,13,23128,NULL,'tr_8','clca8u6io00004xiy3ytcllv5',''),('clca8uxki00017kiyu6bhwi8u',1,'Admin',1672388375,'192.168.64.1',1,13,23128,NULL,'tr_8','clca8uxki00007kiyeqgd5m2i','{\"trigger.description\":[\"update\",\"tr8_1\",\"tr_8\"]}'),('clca8v7j800017kiybrp0l82n',1,'Admin',1672388388,'192.168.64.1',1,13,23112,NULL,'tr_9','clca8v7j800007kiyxxl2ycna','{\"trigger.description\":[\"update\",\"tr9_1\",\"tr_9\"]}'),('clca8w82900014xiy0735zi8v',1,'Admin',1672388436,'192.168.64.1',0,13,23133,NULL,'tr4_1','clca8w82900004xiynqnckrsr',''),('clca8wy1q00014xiybq48gs1q',1,'Admin',1672388469,'192.168.64.1',0,13,23137,NULL,'tr4_2','clca8wy1q00004xiyfz8k56pk',''),('clca8y32100014xiyinvd45mp',1,'Admin',1672388523,'192.168.64.1',0,13,23141,NULL,'tr10_1','clca8y32000004xiy2aebk7zl',''),('clca8ysmy00014xiyubdzb6qt',1,'Admin',1672388556,'192.168.64.1',0,13,23145,NULL,'tr2_1','clca8ysmx00004xiydnt9yftt',''),('clca8zoao00014ciy3rbwyuyh',1,'Admin',1672388597,'192.168.64.1',0,13,23148,NULL,'tr2_2','clca8zoao00004ciyemdai713',''),('clca96qhf00014ciy0bmjjh5c',1,'Admin',1672388926,'192.168.64.1',1,15,75,NULL,'t10_2','clca96qhf00004ciyglqlpq49','{\"item.value_type\":[\"update\",\"3\",\"4\"],\"item.trends\":[\"update\",\"365d\",\"0\"]}'),('clca96qhj00024ciywd0klh4r',1,'Admin',1672388926,'192.168.64.1',1,15,76,NULL,'t10_2','clca96qhf00004ciyglqlpq49','{\"item.value_type\":[\"update\",\"3\",\"4\"],\"item.trends\":[\"update\",\"365d\",\"0\"]}'),('clca96qhm00034ciysqu9wgbe',1,'Admin',1672388926,'192.168.64.1',1,15,77,NULL,'t10_2','clca96qhf00004ciyglqlpq49','{\"item.value_type\":[\"update\",\"3\",\"4\"],\"item.trends\":[\"update\",\"365d\",\"0\"]}'),('clca96qhm00044ciyb9ruvm6i',1,'Admin',1672388926,'192.168.64.1',1,15,78,NULL,'t10_2','clca96qhf00004ciyglqlpq49','{\"item.value_type\":[\"update\",\"3\",\"4\"],\"item.trends\":[\"update\",\"365d\",\"0\"]}'),('clca971fo00014ciype4elswn',1,'Admin',1672388940,'192.168.64.1',0,6,1,NULL,'g10_1','clca971fo00004ciyns5ym63h',''),('clca97c6k00014xiyjrdkgzjf',1,'Admin',1672388954,'192.168.64.1',1,15,5,NULL,'t1_1','clca97c6j00004xiyl51p1d8f','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca97c6k00024xiya9asa8oo',1,'Admin',1672388954,'192.168.64.1',1,15,7,NULL,'t1_2','clca97c6j00004xiyl51p1d8f','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca97c6n00034xiyb5vccdv6',1,'Admin',1672388954,'192.168.64.1',1,15,6,NULL,'t1_1','clca97c6j00004xiyl51p1d8f','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca97c6n00044xiy7q8nlnpm',1,'Admin',1672388954,'192.168.64.1',1,15,8,NULL,'t1_2','clca97c6j00004xiyl51p1d8f','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca97kxl00014ciy7tkropys',1,'Admin',1672388966,'192.168.64.1',1,15,9,NULL,'t2_1','clca97kxl00004ciyv1tjfubl','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca97kxl00024ciyc6tgutdu',1,'Admin',1672388966,'192.168.64.1',1,15,12,NULL,'t2_2','clca97kxl00004ciyv1tjfubl','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca97kxq00034ciy2xqsa77a',1,'Admin',1672388966,'192.168.64.1',1,15,10,NULL,'t2_1','clca97kxl00004ciyv1tjfubl','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca97kxq00044ciyy34eboe5',1,'Admin',1672388966,'192.168.64.1',1,15,11,NULL,'t2_1','clca97kxl00004ciyv1tjfubl','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca97kxq00054ciyezaedy84',1,'Admin',1672388966,'192.168.64.1',1,15,13,NULL,'t2_2','clca97kxl00004ciyv1tjfubl','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca97kxq00064ciyhdad8m1y',1,'Admin',1672388966,'192.168.64.1',1,15,14,NULL,'t2_2','clca97kxl00004ciyv1tjfubl','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca9871300014xiy3v30jg1l',1,'Admin',1672388994,'192.168.64.1',1,15,27,NULL,'t5_1','clca9871300004xiy8bb9hf95','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca9871300024xiymd22ol45',1,'Admin',1672388994,'192.168.64.1',1,15,30,NULL,'t5_2','clca9871300004xiy8bb9hf95','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca9871500034xiyaclbc27g',1,'Admin',1672388994,'192.168.64.1',1,15,28,NULL,'t5_1','clca9871300004xiy8bb9hf95','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca9871500044xiyhclg66ak',1,'Admin',1672388994,'192.168.64.1',1,15,31,NULL,'t5_2','clca9871300004xiy8bb9hf95','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca9871800054xiylzvh7set',1,'Admin',1672388994,'192.168.64.1',1,15,29,NULL,'t5_1','clca9871300004xiy8bb9hf95','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca9871800064xiyzprumfym',1,'Admin',1672388994,'192.168.64.1',1,15,32,NULL,'t5_2','clca9871300004xiy8bb9hf95','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98end00014ciyu7bgfsg7',1,'Admin',1672389004,'192.168.64.1',1,15,33,NULL,'t6_1','clca98end00004ciycqq82zp8','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98end00024ciygvtd2ayo',1,'Admin',1672389004,'192.168.64.1',1,15,36,NULL,'t6_2','clca98end00004ciycqq82zp8','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98enh00034ciyv1e00qj4',1,'Admin',1672389004,'192.168.64.1',1,15,34,NULL,'t6_1','clca98end00004ciycqq82zp8','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98enh00044ciy3ge72zsh',1,'Admin',1672389004,'192.168.64.1',1,15,37,NULL,'t6_2','clca98end00004ciycqq82zp8','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98enh00054ciy0z09cew5',1,'Admin',1672389004,'192.168.64.1',1,15,79,NULL,'t6_1','clca98end00004ciycqq82zp8','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98enh00064ciygfr01dgu',1,'Admin',1672389004,'192.168.64.1',1,15,80,NULL,'t6_2','clca98end00004ciycqq82zp8','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98enm00074ciy2e9s1052',1,'Admin',1672389004,'192.168.64.1',1,15,35,NULL,'t6_1','clca98end00004ciycqq82zp8','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98enm00084ciyee6kqlef',1,'Admin',1672389004,'192.168.64.1',1,15,38,NULL,'t6_2','clca98end00004ciycqq82zp8','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98enm00094ciy29vt5mdo',1,'Admin',1672389004,'192.168.64.1',1,15,81,NULL,'t6_1','clca98end00004ciycqq82zp8','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98enm000a4ciyxsgw6450',1,'Admin',1672389004,'192.168.64.1',1,15,82,NULL,'t6_2','clca98end00004ciycqq82zp8','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98enp000b4ciyfhsrxsas',1,'Admin',1672389004,'192.168.64.1',1,15,83,NULL,'t6_1','clca98end00004ciycqq82zp8','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98enp000c4ciy41qrize2',1,'Admin',1672389004,'192.168.64.1',1,15,84,NULL,'t6_2','clca98end00004ciycqq82zp8','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98w2900014xiyi964uhtl',1,'Admin',1672389027,'192.168.64.1',1,15,49,NULL,'t8_1','clca98w2900004xiygj7vhorm','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98w2900024xiy2z7addp3',1,'Admin',1672389027,'192.168.64.1',1,15,54,NULL,'t8_2','clca98w2900004xiygj7vhorm','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98w2b00034xiy26m5rhbh',1,'Admin',1672389027,'192.168.64.1',1,15,50,NULL,'t8_1','clca98w2900004xiygj7vhorm','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98w2b00044xiy55evew9k',1,'Admin',1672389027,'192.168.64.1',1,15,55,NULL,'t8_2','clca98w2900004xiygj7vhorm','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98w2e00054xiy81a32j3e',1,'Admin',1672389027,'192.168.64.1',1,15,51,NULL,'t8_1','clca98w2900004xiygj7vhorm','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98w2e00064xiywh6mrugs',1,'Admin',1672389027,'192.168.64.1',1,15,56,NULL,'t8_2','clca98w2900004xiygj7vhorm','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98w2j00074xiybgoxpj2y',1,'Admin',1672389027,'192.168.64.1',1,15,52,NULL,'t8_1','clca98w2900004xiygj7vhorm','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98w2j00084xiy8wwd4syp',1,'Admin',1672389027,'192.168.64.1',1,15,53,NULL,'t8_1','clca98w2900004xiygj7vhorm','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98w2j00094xiypan1t0ry',1,'Admin',1672389027,'192.168.64.1',1,15,57,NULL,'t8_2','clca98w2900004xiygj7vhorm','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca98w2j000a4xiy8lp2u9hx',1,'Admin',1672389027,'192.168.64.1',1,15,58,NULL,'t8_2','clca98w2900004xiygj7vhorm','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca992mo00014xiyl50239zt',1,'Admin',1672389035,'192.168.64.1',1,15,59,NULL,'t9_1','clca992mn00004xiym3u8madi','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca992mo00024xiy3cuoabta',1,'Admin',1672389035,'192.168.64.1',1,15,65,NULL,'t9_2','clca992mn00004xiym3u8madi','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca992mp00034xiyp0s1tmkw',1,'Admin',1672389035,'192.168.64.1',1,15,60,NULL,'t9_1','clca992mn00004xiym3u8madi','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca992mp00044xiymv3g0aal',1,'Admin',1672389035,'192.168.64.1',1,15,66,NULL,'t9_2','clca992mn00004xiym3u8madi','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca992mt00054xiy89ghm3sw',1,'Admin',1672389035,'192.168.64.1',1,15,61,NULL,'t9_1','clca992mn00004xiym3u8madi','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca992mt00064xiy1ks3yddf',1,'Admin',1672389035,'192.168.64.1',1,15,67,NULL,'t9_2','clca992mn00004xiym3u8madi','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca992mw00074xiyfhiwkge8',1,'Admin',1672389035,'192.168.64.1',1,15,62,NULL,'t9_1','clca992mn00004xiym3u8madi','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca992mw00084xiyo6k4hxqi',1,'Admin',1672389035,'192.168.64.1',1,15,68,NULL,'t9_2','clca992mn00004xiym3u8madi','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca992n100094xiytpmp24lh',1,'Admin',1672389035,'192.168.64.1',1,15,63,NULL,'t9_1','clca992mn00004xiym3u8madi','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca992n1000a4xiyg13uxspp',1,'Admin',1672389035,'192.168.64.1',1,15,64,NULL,'t9_1','clca992mn00004xiym3u8madi','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca992n1000b4xiym893zwm2',1,'Admin',1672389035,'192.168.64.1',1,15,69,NULL,'t9_2','clca992mn00004xiym3u8madi','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca992n1000c4xiy3ivmr6t1',1,'Admin',1672389035,'192.168.64.1',1,15,70,NULL,'t9_2','clca992mn00004xiym3u8madi','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca99a0b00014ciyiovus5sn',1,'Admin',1672389045,'192.168.64.1',1,15,71,NULL,'t10_1','clca99a0b00004ciytpeecps2','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca99a0e00024ciy56fyroft',1,'Admin',1672389045,'192.168.64.1',1,15,72,NULL,'t10_1','clca99a0b00004ciytpeecps2','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca99a0h00034ciyinlqxucw',1,'Admin',1672389045,'192.168.64.1',1,15,73,NULL,'t10_1','clca99a0b00004ciytpeecps2','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca99a0h00044ciyr5astq1y',1,'Admin',1672389045,'192.168.64.1',1,15,74,NULL,'t10_1','clca99a0b00004ciytpeecps2','{\"item.value_type\":[\"update\",\"3\",\"4\"]}'),('clca9f93900014ciyv9a7tall',1,'Admin',1672389323,'192.168.64.1',0,6,5,NULL,'g9_1','clca9f93900004ciydtdn7bc2',''),('clca9fjc700017kiyfea9r1z9',1,'Admin',1672389337,'192.168.64.1',1,6,1,NULL,'g10_1','clca9fjc700007kiy91xwa2xy','{\"graph.ymin_itemid\":[\"update\",null,\"0\"],\"graph.ymax_itemid\":[\"update\",null,\"0\"]}'),('clca9fzbl00017kiyfhfzzcz1',1,'Admin',1672389357,'192.168.64.1',0,6,11,NULL,'g8_1','clca9fzbl00007kiy9n8ebum2',''),('clca9g94c00017kiyuj0bja5g',1,'Admin',1672389370,'192.168.64.1',0,6,16,NULL,'g6_1','clca9g94c00007kiyftuvz9r0',''),('clca9grz400017kiy6mrjzoxp',1,'Admin',1672389395,'192.168.64.1',0,6,22,NULL,'g1','clca9grz400007kiyypj5rrms',''),('clca9h36y00017kiyln38zfq9',1,'Admin',1672389409,'192.168.64.1',1,6,22,NULL,'g1','clca9h36y00007kiyhxxlfst5','{\"graph.name\":[\"update\",\"g1_1\",\"g1\"],\"graph.ymin_itemid\":[\"update\",null,\"0\"],\"graph.ymax_itemid\":[\"update\",null,\"0\"]}'),('clca9hfoq00017kiy357ezcy9',1,'Admin',1672389425,'192.168.64.1',0,6,24,NULL,'g2_1','clca9hfoq00007kiy4qvu4smz',''),('clca9htr400017kiyyt1nnar6',1,'Admin',1672389444,'192.168.64.1',0,6,27,NULL,'g3_1','clca9htr400007kiy98uw20ix',''),('clca9i78w00014xiyjj9qygb7',1,'Admin',1672389461,'192.168.64.1',0,6,29,NULL,'g4_1','clca9i78w00004xiyh4p2us8c',''),('clca9le7b00017kiy0uxschil',1,'Admin',1672389610,'192.168.64.1',0,6,33,NULL,'g5_1','clca9le7b00007kiy78rl9f33',''),('clca9lnii00017kiynecvcf91',1,'Admin',1672389622,'192.168.64.1',1,6,16,NULL,'g6_1','clca9lnii00007kiycm5xjg7c','{\"graph.ymin_itemid\":[\"update\",null,\"0\"],\"graph.ymax_itemid\":[\"update\",null,\"0\"]}'),('clca9lx9t00014ciytn9ftzvf',1,'Admin',1672389635,'192.168.64.1',0,6,36,NULL,'g7_1','clca9lx9t00004ciymi4ytexg',''),('clca9skff00014ciyjqergwlm',1,'Admin',1672389945,'192.168.64.1',2,15,79,NULL,'t6_1','clca9skff00004ciyuo65e18a',''),('clca9skff00024ciyvv9tdk46',1,'Admin',1672389945,'192.168.64.1',2,15,80,NULL,'t6_2','clca9skff00004ciyuo65e18a',''),('clca9skff00034ciy0ndfne47',1,'Admin',1672389945,'192.168.64.1',2,15,81,NULL,'t6_1','clca9skff00004ciyuo65e18a',''),('clca9skff00044ciyvymyeekx',1,'Admin',1672389945,'192.168.64.1',2,15,82,NULL,'t6_2','clca9skff00004ciyuo65e18a',''),('clca9skff00054ciywi2c413f',1,'Admin',1672389945,'192.168.64.1',2,15,83,NULL,'t6_1','clca9skff00004ciyuo65e18a',''),('clca9skff00064ciyfydbso2l',1,'Admin',1672389945,'192.168.64.1',2,15,84,NULL,'t6_2','clca9skff00004ciyuo65e18a',''),('clca9skfh00074ciy2x9pwp1p',1,'Admin',1672389945,'192.168.64.1',1,30,10,NULL,'t5','clca9skff00004ciyuo65e18a','{\"template.templates[15]\":[\"delete\"],\"template.templates_clear[15]\":[\"delete\"]}'),('clcehiabg00017kiybic76a0s',2,'guest',1672644767,'192.168.64.1',9,0,2,NULL,'','clcehiabg00007kiyul4kakpc',''),('clcehibh900014xiyyexnewlh',2,'guest',1672644768,'192.168.64.1',9,0,2,NULL,'','clcehibh900004xiyrryotba6',''),('clcehibjg00024xiy1pdzrlgv',1,'Admin',1672644768,'192.168.64.1',8,0,1,NULL,'','clcehibh900004xiyrryotba6',''),('clcehl81m00014ciya6wfx0z4',1,'Admin',1672644904,'192.168.64.1',0,43,58,NULL,'t1_1','clcehl81l00004ciyy1uc6xjg','{\"templatedashboard.name\":[\"add\",\"t1_1\"],\"templatedashboard.pages[58]\":[\"add\"],\"templatedashboard.pages[58].widgets[401]\":[\"add\"],\"templatedashboard.pages[58].widgets[401].x\":[\"add\",\"5\"],\"templatedashboard.pages[58].widgets[401].y\":[\"add\",\"1\"],\"templatedashboard.pages[58].widgets[401].width\":[\"add\",\"4\"],\"templatedashboard.pages[58].widgets[401].height\":[\"add\",\"3\"],\"templatedashboard.pages[58].widgets[401].type\":[\"add\",\"item\"],\"templatedashboard.pages[58].widgets[401].fields[1180]\":[\"add\"],\"templatedashboard.pages[58].widgets[401].fields[1180].type\":[\"add\",\"4\"],\"templatedashboard.pages[58].widgets[401].fields[1180].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[58].widgets[401].fields[1180].value\":[\"add\",\"5\"],\"templatedashboard.pages[58].widgets[401].fields[1180].widget_fieldid\":[\"add\",\"1180\"],\"templatedashboard.pages[58].widgets[401].widgetid\":[\"add\",\"401\"],\"templatedashboard.pages[58].widgets[402]\":[\"add\"],\"templatedashboard.pages[58].widgets[402].x\":[\"add\",\"16\"],\"templatedashboard.pages[58].widgets[402].y\":[\"add\",\"2\"],\"templatedashboard.pages[58].widgets[402].width\":[\"add\",\"4\"],\"templatedashboard.pages[58].widgets[402].height\":[\"add\",\"3\"],\"templatedashboard.pages[58].widgets[402].type\":[\"add\",\"item\"],\"templatedashboard.pages[58].widgets[402].fields[1181]\":[\"add\"],\"templatedashboard.pages[58].widgets[402].fields[1181].type\":[\"add\",\"4\"],\"templatedashboard.pages[58].widgets[402].fields[1181].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[58].widgets[402].fields[1181].value\":[\"add\",\"7\"],\"templatedashboard.pages[58].widgets[402].fields[1181].widget_fieldid\":[\"add\",\"1181\"],\"templatedashboard.pages[58].widgets[402].widgetid\":[\"add\",\"402\"],\"templatedashboard.pages[58].widgets[403]\":[\"add\"],\"templatedashboard.pages[58].widgets[403].x\":[\"add\",\"12\"],\"templatedashboard.pages[58].widgets[403].type\":[\"add\",\"item\"],\"templatedashboard.pages[58].widgets[403].fields[1182]\":[\"add\"],\"templatedashboard.pages[58].widgets[403].fields[1182].type\":[\"add\",\"4\"],\"templatedashboard.pages[58].widgets[403].fields[1182].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[58].widgets[403].fields[1182].value\":[\"add\",\"28\"],\"templatedashboard.pages[58].widgets[403].fields[1182].widget_fieldid\":[\"add\",\"1182\"],\"templatedashboard.pages[58].widgets[403].widgetid\":[\"add\",\"403\"],\"templatedashboard.pages[58].widgets[404]\":[\"add\"],\"templatedashboard.pages[58].widgets[404].x\":[\"add\",\"10\"],\"templatedashboard.pages[58].widgets[404].y\":[\"add\",\"4\"],\"templatedashboard.pages[58].widgets[404].width\":[\"add\",\"4\"],\"templatedashboard.pages[58].widgets[404].height\":[\"add\",\"3\"],\"templatedashboard.pages[58].widgets[404].type\":[\"add\",\"item\"],\"templatedashboard.pages[58].widgets[404].name\":[\"add\",\"s\"],\"templatedashboard.pages[58].widgets[404].fields[1183]\":[\"add\"],\"templatedashboard.pages[58].widgets[404].fields[1183].type\":[\"add\",\"4\"],\"templatedashboard.pages[58].widgets[404].fields[1183].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[58].widgets[404].fields[1183].value\":[\"add\",\"31\"],\"templatedashboard.pages[58].widgets[404].fields[1183].widget_fieldid\":[\"add\",\"1183\"],\"templatedashboard.pages[58].widgets[404].fields[1184]\":[\"add\"],\"templatedashboard.pages[58].widgets[404].fields[1184].name\":[\"add\",\"adv_conf\"],\"templatedashboard.pages[58].widgets[404].fields[1184].value\":[\"add\",\"1\"],\"templatedashboard.pages[58].widgets[404].fields[1184].widget_fieldid\":[\"add\",\"1184\"],\"templatedashboard.pages[58].widgets[404].fields[1185]\":[\"add\"],\"templatedashboard.pages[58].widgets[404].fields[1185].type\":[\"add\",\"1\"],\"templatedashboard.pages[58].widgets[404].fields[1185].name\":[\"add\",\"description\"],\"templatedashboard.pages[58].widgets[404].fields[1185].value\":[\"add\",\"{ITEM.NAME}cdc\"],\"templatedashboard.pages[58].widgets[404].fields[1185].widget_fieldid\":[\"add\",\"1185\"],\"templatedashboard.pages[58].widgets[404].widgetid\":[\"add\",\"404\"],\"templatedashboard.pages[58].widgets[405]\":[\"add\"],\"templatedashboard.pages[58].widgets[405].x\":[\"add\",\"5\"],\"templatedashboard.pages[58].widgets[405].y\":[\"add\",\"5\"],\"templatedashboard.pages[58].widgets[405].width\":[\"add\",\"4\"],\"templatedashboard.pages[58].widgets[405].height\":[\"add\",\"3\"],\"templatedashboard.pages[58].widgets[405].type\":[\"add\",\"item\"],\"templatedashboard.pages[58].widgets[405].fields[1186]\":[\"add\"],\"templatedashboard.pages[58].widgets[405].fields[1186].type\":[\"add\",\"4\"],\"templatedashboard.pages[58].widgets[405].fields[1186].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[58].widgets[405].fields[1186].value\":[\"add\",\"5\"],\"templatedashboard.pages[58].widgets[405].fields[1186].widget_fieldid\":[\"add\",\"1186\"],\"templatedashboard.pages[58].widgets[405].widgetid\":[\"add\",\"405\"],\"templatedashboard.pages[58].widgets[406]\":[\"add\"],\"templatedashboard.pages[58].widgets[406].x\":[\"add\",\"10\"],\"templatedashboard.pages[58].widgets[406].y\":[\"add\",\"9\"],\"templatedashboard.pages[58].widgets[406].type\":[\"add\",\"item\"],\"templatedashboard.pages[58].widgets[406].fields[1187]\":[\"add\"],\"templatedashboard.pages[58].widgets[406].fields[1187].type\":[\"add\",\"4\"],\"templatedashboard.pages[58].widgets[406].fields[1187].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[58].widgets[406].fields[1187].value\":[\"add\",\"5\"],\"templatedashboard.pages[58].widgets[406].fields[1187].widget_fieldid\":[\"add\",\"1187\"],\"templatedashboard.pages[58].widgets[406].widgetid\":[\"add\",\"406\"],\"templatedashboard.pages[58].dashboard_pageid\":[\"add\",\"58\"],\"templatedashboard.templateid\":[\"add\",\"6\"],\"templatedashboard.uuid\":[\"add\",\"ca1874005633420fb7a102de7dc2ffe7\"],\"templatedashboard.dashboardid\":[\"add\",\"58\"]}'),('clcehmfi900014xiy279977h6',1,'Admin',1672644960,'192.168.64.1',0,43,59,NULL,'t1_2','clcehmfi900004xiyfnp4hp4d','{\"templatedashboard.name\":[\"add\",\"t1_2\"],\"templatedashboard.pages[59]\":[\"add\"],\"templatedashboard.pages[59].widgets[407]\":[\"add\"],\"templatedashboard.pages[59].widgets[407].x\":[\"add\",\"4\"],\"templatedashboard.pages[59].widgets[407].y\":[\"add\",\"1\"],\"templatedashboard.pages[59].widgets[407].width\":[\"add\",\"4\"],\"templatedashboard.pages[59].widgets[407].height\":[\"add\",\"3\"],\"templatedashboard.pages[59].widgets[407].type\":[\"add\",\"item\"],\"templatedashboard.pages[59].widgets[407].fields[1188]\":[\"add\"],\"templatedashboard.pages[59].widgets[407].fields[1188].type\":[\"add\",\"4\"],\"templatedashboard.pages[59].widgets[407].fields[1188].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[59].widgets[407].fields[1188].value\":[\"add\",\"5\"],\"templatedashboard.pages[59].widgets[407].fields[1188].widget_fieldid\":[\"add\",\"1188\"],\"templatedashboard.pages[59].widgets[407].widgetid\":[\"add\",\"407\"],\"templatedashboard.pages[59].widgets[408]\":[\"add\"],\"templatedashboard.pages[59].widgets[408].x\":[\"add\",\"11\"],\"templatedashboard.pages[59].widgets[408].y\":[\"add\",\"1\"],\"templatedashboard.pages[59].widgets[408].type\":[\"add\",\"item\"],\"templatedashboard.pages[59].widgets[408].fields[1189]\":[\"add\"],\"templatedashboard.pages[59].widgets[408].fields[1189].type\":[\"add\",\"4\"],\"templatedashboard.pages[59].widgets[408].fields[1189].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[59].widgets[408].fields[1189].value\":[\"add\",\"5\"],\"templatedashboard.pages[59].widgets[408].fields[1189].widget_fieldid\":[\"add\",\"1189\"],\"templatedashboard.pages[59].widgets[408].widgetid\":[\"add\",\"408\"],\"templatedashboard.pages[59].widgets[409]\":[\"add\"],\"templatedashboard.pages[59].widgets[409].x\":[\"add\",\"15\"],\"templatedashboard.pages[59].widgets[409].y\":[\"add\",\"1\"],\"templatedashboard.pages[59].widgets[409].width\":[\"add\",\"4\"],\"templatedashboard.pages[59].widgets[409].height\":[\"add\",\"3\"],\"templatedashboard.pages[59].widgets[409].type\":[\"add\",\"item\"],\"templatedashboard.pages[59].widgets[409].fields[1190]\":[\"add\"],\"templatedashboard.pages[59].widgets[409].fields[1190].type\":[\"add\",\"4\"],\"templatedashboard.pages[59].widgets[409].fields[1190].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[59].widgets[409].fields[1190].value\":[\"add\",\"5\"],\"templatedashboard.pages[59].widgets[409].fields[1190].widget_fieldid\":[\"add\",\"1190\"],\"templatedashboard.pages[59].widgets[409].widgetid\":[\"add\",\"409\"],\"templatedashboard.pages[59].widgets[410]\":[\"add\"],\"templatedashboard.pages[59].widgets[410].x\":[\"add\",\"10\"],\"templatedashboard.pages[59].widgets[410].y\":[\"add\",\"5\"],\"templatedashboard.pages[59].widgets[410].width\":[\"add\",\"4\"],\"templatedashboard.pages[59].widgets[410].height\":[\"add\",\"3\"],\"templatedashboard.pages[59].widgets[410].type\":[\"add\",\"item\"],\"templatedashboard.pages[59].widgets[410].fields[1191]\":[\"add\"],\"templatedashboard.pages[59].widgets[410].fields[1191].type\":[\"add\",\"4\"],\"templatedashboard.pages[59].widgets[410].fields[1191].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[59].widgets[410].fields[1191].value\":[\"add\",\"7\"],\"templatedashboard.pages[59].widgets[410].fields[1191].widget_fieldid\":[\"add\",\"1191\"],\"templatedashboard.pages[59].widgets[410].widgetid\":[\"add\",\"410\"],\"templatedashboard.pages[59].widgets[411]\":[\"add\"],\"templatedashboard.pages[59].widgets[411].x\":[\"add\",\"3\"],\"templatedashboard.pages[59].widgets[411].y\":[\"add\",\"5\"],\"templatedashboard.pages[59].widgets[411].width\":[\"add\",\"4\"],\"templatedashboard.pages[59].widgets[411].height\":[\"add\",\"3\"],\"templatedashboard.pages[59].widgets[411].type\":[\"add\",\"item\"],\"templatedashboard.pages[59].widgets[411].fields[1192]\":[\"add\"],\"templatedashboard.pages[59].widgets[411].fields[1192].type\":[\"add\",\"4\"],\"templatedashboard.pages[59].widgets[411].fields[1192].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[59].widgets[411].fields[1192].value\":[\"add\",\"28\"],\"templatedashboard.pages[59].widgets[411].fields[1192].widget_fieldid\":[\"add\",\"1192\"],\"templatedashboard.pages[59].widgets[411].widgetid\":[\"add\",\"411\"],\"templatedashboard.pages[59].widgets[412]\":[\"add\"],\"templatedashboard.pages[59].widgets[412].x\":[\"add\",\"17\"],\"templatedashboard.pages[59].widgets[412].y\":[\"add\",\"4\"],\"templatedashboard.pages[59].widgets[412].type\":[\"add\",\"item\"],\"templatedashboard.pages[59].widgets[412].fields[1193]\":[\"add\"],\"templatedashboard.pages[59].widgets[412].fields[1193].type\":[\"add\",\"4\"],\"templatedashboard.pages[59].widgets[412].fields[1193].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[59].widgets[412].fields[1193].value\":[\"add\",\"31\"],\"templatedashboard.pages[59].widgets[412].fields[1193].widget_fieldid\":[\"add\",\"1193\"],\"templatedashboard.pages[59].widgets[412].widgetid\":[\"add\",\"412\"],\"templatedashboard.pages[59].dashboard_pageid\":[\"add\",\"59\"],\"templatedashboard.templateid\":[\"add\",\"6\"],\"templatedashboard.uuid\":[\"add\",\"c9fa84fe474b4631908ecc39b9b8b983\"],\"templatedashboard.dashboardid\":[\"add\",\"59\"]}'),('clcehms990001fqiyelv1glew',1,'Admin',1672644977,'192.168.64.1',0,43,60,NULL,'New dashboard','clcehms990000fqiyjo7anvx9','{\"templatedashboard.name\":[\"add\",\"New dashboard\"],\"templatedashboard.pages[60]\":[\"add\"],\"templatedashboard.pages[60].dashboard_pageid\":[\"add\",\"60\"],\"templatedashboard.templateid\":[\"add\",\"6\"],\"templatedashboard.uuid\":[\"add\",\"007152ae172d409c844b456c7711a24d\"],\"templatedashboard.dashboardid\":[\"add\",\"60\"]}'),('clcehod0l0001fqiytth2kxq7',1,'Admin',1672645050,'192.168.64.1',0,43,61,NULL,'t2_1','clcehod0k0000fqiyi5wrd0p0','{\"templatedashboard.name\":[\"add\",\"t2_1\"],\"templatedashboard.pages[61]\":[\"add\"],\"templatedashboard.pages[61].widgets[413]\":[\"add\"],\"templatedashboard.pages[61].widgets[413].x\":[\"add\",\"3\"],\"templatedashboard.pages[61].widgets[413].width\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[413].height\":[\"add\",\"3\"],\"templatedashboard.pages[61].widgets[413].type\":[\"add\",\"item\"],\"templatedashboard.pages[61].widgets[413].fields[1194]\":[\"add\"],\"templatedashboard.pages[61].widgets[413].fields[1194].type\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[413].fields[1194].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[61].widgets[413].fields[1194].value\":[\"add\",\"9\"],\"templatedashboard.pages[61].widgets[413].fields[1194].widget_fieldid\":[\"add\",\"1194\"],\"templatedashboard.pages[61].widgets[413].widgetid\":[\"add\",\"413\"],\"templatedashboard.pages[61].widgets[414]\":[\"add\"],\"templatedashboard.pages[61].widgets[414].x\":[\"add\",\"8\"],\"templatedashboard.pages[61].widgets[414].y\":[\"add\",\"1\"],\"templatedashboard.pages[61].widgets[414].width\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[414].height\":[\"add\",\"3\"],\"templatedashboard.pages[61].widgets[414].type\":[\"add\",\"item\"],\"templatedashboard.pages[61].widgets[414].fields[1195]\":[\"add\"],\"templatedashboard.pages[61].widgets[414].fields[1195].type\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[414].fields[1195].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[61].widgets[414].fields[1195].value\":[\"add\",\"9\"],\"templatedashboard.pages[61].widgets[414].fields[1195].widget_fieldid\":[\"add\",\"1195\"],\"templatedashboard.pages[61].widgets[414].widgetid\":[\"add\",\"414\"],\"templatedashboard.pages[61].widgets[415]\":[\"add\"],\"templatedashboard.pages[61].widgets[415].x\":[\"add\",\"14\"],\"templatedashboard.pages[61].widgets[415].y\":[\"add\",\"1\"],\"templatedashboard.pages[61].widgets[415].width\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[415].height\":[\"add\",\"3\"],\"templatedashboard.pages[61].widgets[415].type\":[\"add\",\"item\"],\"templatedashboard.pages[61].widgets[415].fields[1196]\":[\"add\"],\"templatedashboard.pages[61].widgets[415].fields[1196].type\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[415].fields[1196].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[61].widgets[415].fields[1196].value\":[\"add\",\"9\"],\"templatedashboard.pages[61].widgets[415].fields[1196].widget_fieldid\":[\"add\",\"1196\"],\"templatedashboard.pages[61].widgets[415].widgetid\":[\"add\",\"415\"],\"templatedashboard.pages[61].widgets[416]\":[\"add\"],\"templatedashboard.pages[61].widgets[416].x\":[\"add\",\"5\"],\"templatedashboard.pages[61].widgets[416].y\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[416].width\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[416].height\":[\"add\",\"3\"],\"templatedashboard.pages[61].widgets[416].type\":[\"add\",\"item\"],\"templatedashboard.pages[61].widgets[416].fields[1197]\":[\"add\"],\"templatedashboard.pages[61].widgets[416].fields[1197].type\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[416].fields[1197].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[61].widgets[416].fields[1197].value\":[\"add\",\"12\"],\"templatedashboard.pages[61].widgets[416].fields[1197].widget_fieldid\":[\"add\",\"1197\"],\"templatedashboard.pages[61].widgets[416].widgetid\":[\"add\",\"416\"],\"templatedashboard.pages[61].widgets[417]\":[\"add\"],\"templatedashboard.pages[61].widgets[417].x\":[\"add\",\"9\"],\"templatedashboard.pages[61].widgets[417].y\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[417].width\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[417].height\":[\"add\",\"3\"],\"templatedashboard.pages[61].widgets[417].type\":[\"add\",\"item\"],\"templatedashboard.pages[61].widgets[417].fields[1198]\":[\"add\"],\"templatedashboard.pages[61].widgets[417].fields[1198].type\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[417].fields[1198].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[61].widgets[417].fields[1198].value\":[\"add\",\"20\"],\"templatedashboard.pages[61].widgets[417].fields[1198].widget_fieldid\":[\"add\",\"1198\"],\"templatedashboard.pages[61].widgets[417].widgetid\":[\"add\",\"417\"],\"templatedashboard.pages[61].widgets[418]\":[\"add\"],\"templatedashboard.pages[61].widgets[418].x\":[\"add\",\"14\"],\"templatedashboard.pages[61].widgets[418].y\":[\"add\",\"6\"],\"templatedashboard.pages[61].widgets[418].width\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[418].height\":[\"add\",\"3\"],\"templatedashboard.pages[61].widgets[418].type\":[\"add\",\"item\"],\"templatedashboard.pages[61].widgets[418].fields[1199]\":[\"add\"],\"templatedashboard.pages[61].widgets[418].fields[1199].type\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[418].fields[1199].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[61].widgets[418].fields[1199].value\":[\"add\",\"24\"],\"templatedashboard.pages[61].widgets[418].fields[1199].widget_fieldid\":[\"add\",\"1199\"],\"templatedashboard.pages[61].widgets[418].widgetid\":[\"add\",\"418\"],\"templatedashboard.pages[61].widgets[419]\":[\"add\"],\"templatedashboard.pages[61].widgets[419].x\":[\"add\",\"18\"],\"templatedashboard.pages[61].widgets[419].y\":[\"add\",\"5\"],\"templatedashboard.pages[61].widgets[419].width\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[419].height\":[\"add\",\"3\"],\"templatedashboard.pages[61].widgets[419].type\":[\"add\",\"item\"],\"templatedashboard.pages[61].widgets[419].fields[1200]\":[\"add\"],\"templatedashboard.pages[61].widgets[419].fields[1200].type\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[419].fields[1200].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[61].widgets[419].fields[1200].value\":[\"add\",\"41\"],\"templatedashboard.pages[61].widgets[419].fields[1200].widget_fieldid\":[\"add\",\"1200\"],\"templatedashboard.pages[61].widgets[419].widgetid\":[\"add\",\"419\"],\"templatedashboard.pages[61].widgets[420]\":[\"add\"],\"templatedashboard.pages[61].widgets[420].x\":[\"add\",\"3\"],\"templatedashboard.pages[61].widgets[420].y\":[\"add\",\"9\"],\"templatedashboard.pages[61].widgets[420].width\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[420].height\":[\"add\",\"3\"],\"templatedashboard.pages[61].widgets[420].type\":[\"add\",\"item\"],\"templatedashboard.pages[61].widgets[420].fields[1201]\":[\"add\"],\"templatedashboard.pages[61].widgets[420].fields[1201].type\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[420].fields[1201].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[61].widgets[420].fields[1201].value\":[\"add\",\"46\"],\"templatedashboard.pages[61].widgets[420].fields[1201].widget_fieldid\":[\"add\",\"1201\"],\"templatedashboard.pages[61].widgets[420].widgetid\":[\"add\",\"420\"],\"templatedashboard.pages[61].widgets[421]\":[\"add\"],\"templatedashboard.pages[61].widgets[421].x\":[\"add\",\"7\"],\"templatedashboard.pages[61].widgets[421].y\":[\"add\",\"8\"],\"templatedashboard.pages[61].widgets[421].width\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[421].height\":[\"add\",\"3\"],\"templatedashboard.pages[61].widgets[421].type\":[\"add\",\"item\"],\"templatedashboard.pages[61].widgets[421].fields[1202]\":[\"add\"],\"templatedashboard.pages[61].widgets[421].fields[1202].type\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[421].fields[1202].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[61].widgets[421].fields[1202].value\":[\"add\",\"51\"],\"templatedashboard.pages[61].widgets[421].fields[1202].widget_fieldid\":[\"add\",\"1202\"],\"templatedashboard.pages[61].widgets[421].widgetid\":[\"add\",\"421\"],\"templatedashboard.pages[61].widgets[422]\":[\"add\"],\"templatedashboard.pages[61].widgets[422].x\":[\"add\",\"11\"],\"templatedashboard.pages[61].widgets[422].y\":[\"add\",\"9\"],\"templatedashboard.pages[61].widgets[422].width\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[422].height\":[\"add\",\"3\"],\"templatedashboard.pages[61].widgets[422].type\":[\"add\",\"item\"],\"templatedashboard.pages[61].widgets[422].fields[1203]\":[\"add\"],\"templatedashboard.pages[61].widgets[422].fields[1203].type\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[422].fields[1203].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[61].widgets[422].fields[1203].value\":[\"add\",\"56\"],\"templatedashboard.pages[61].widgets[422].fields[1203].widget_fieldid\":[\"add\",\"1203\"],\"templatedashboard.pages[61].widgets[422].widgetid\":[\"add\",\"422\"],\"templatedashboard.pages[61].widgets[423]\":[\"add\"],\"templatedashboard.pages[61].widgets[423].x\":[\"add\",\"16\"],\"templatedashboard.pages[61].widgets[423].y\":[\"add\",\"10\"],\"templatedashboard.pages[61].widgets[423].width\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[423].height\":[\"add\",\"3\"],\"templatedashboard.pages[61].widgets[423].type\":[\"add\",\"item\"],\"templatedashboard.pages[61].widgets[423].fields[1204]\":[\"add\"],\"templatedashboard.pages[61].widgets[423].fields[1204].type\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[423].fields[1204].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[61].widgets[423].fields[1204].value\":[\"add\",\"62\"],\"templatedashboard.pages[61].widgets[423].fields[1204].widget_fieldid\":[\"add\",\"1204\"],\"templatedashboard.pages[61].widgets[423].widgetid\":[\"add\",\"423\"],\"templatedashboard.pages[61].widgets[424]\":[\"add\"],\"templatedashboard.pages[61].widgets[424].x\":[\"add\",\"18\"],\"templatedashboard.pages[61].widgets[424].y\":[\"add\",\"8\"],\"templatedashboard.pages[61].widgets[424].width\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[424].type\":[\"add\",\"item\"],\"templatedashboard.pages[61].widgets[424].fields[1205]\":[\"add\"],\"templatedashboard.pages[61].widgets[424].fields[1205].type\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[424].fields[1205].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[61].widgets[424].fields[1205].value\":[\"add\",\"72\"],\"templatedashboard.pages[61].widgets[424].fields[1205].widget_fieldid\":[\"add\",\"1205\"],\"templatedashboard.pages[61].widgets[424].widgetid\":[\"add\",\"424\"],\"templatedashboard.pages[61].widgets[425]\":[\"add\"],\"templatedashboard.pages[61].widgets[425].x\":[\"add\",\"1\"],\"templatedashboard.pages[61].widgets[425].y\":[\"add\",\"6\"],\"templatedashboard.pages[61].widgets[425].width\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[425].height\":[\"add\",\"3\"],\"templatedashboard.pages[61].widgets[425].type\":[\"add\",\"item\"],\"templatedashboard.pages[61].widgets[425].fields[1206]\":[\"add\"],\"templatedashboard.pages[61].widgets[425].fields[1206].type\":[\"add\",\"4\"],\"templatedashboard.pages[61].widgets[425].fields[1206].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[61].widgets[425].fields[1206].value\":[\"add\",\"76\"],\"templatedashboard.pages[61].widgets[425].fields[1206].widget_fieldid\":[\"add\",\"1206\"],\"templatedashboard.pages[61].widgets[425].widgetid\":[\"add\",\"425\"],\"templatedashboard.pages[61].dashboard_pageid\":[\"add\",\"61\"],\"templatedashboard.templateid\":[\"add\",\"7\"],\"templatedashboard.uuid\":[\"add\",\"823cab9175314ab388318190c4529a9c\"],\"templatedashboard.dashboardid\":[\"add\",\"61\"]}'),('clcehql3b00014ciy1dowkwm9',1,'Admin',1672645154,'192.168.64.1',0,43,62,NULL,'t2_2','clcehql3a00004ciyyqzq0wco','{\"templatedashboard.name\":[\"add\",\"t2_2\"],\"templatedashboard.pages[62]\":[\"add\"],\"templatedashboard.pages[62].widgets[426]\":[\"add\"],\"templatedashboard.pages[62].widgets[426].width\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[426].height\":[\"add\",\"3\"],\"templatedashboard.pages[62].widgets[426].type\":[\"add\",\"item\"],\"templatedashboard.pages[62].widgets[426].fields[1207]\":[\"add\"],\"templatedashboard.pages[62].widgets[426].fields[1207].type\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[426].fields[1207].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[62].widgets[426].fields[1207].value\":[\"add\",\"9\"],\"templatedashboard.pages[62].widgets[426].fields[1207].widget_fieldid\":[\"add\",\"1207\"],\"templatedashboard.pages[62].widgets[426].widgetid\":[\"add\",\"426\"],\"templatedashboard.pages[62].widgets[427]\":[\"add\"],\"templatedashboard.pages[62].widgets[427].x\":[\"add\",\"5\"],\"templatedashboard.pages[62].widgets[427].width\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[427].height\":[\"add\",\"3\"],\"templatedashboard.pages[62].widgets[427].type\":[\"add\",\"item\"],\"templatedashboard.pages[62].widgets[427].fields[1208]\":[\"add\"],\"templatedashboard.pages[62].widgets[427].fields[1208].type\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[427].fields[1208].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[62].widgets[427].fields[1208].value\":[\"add\",\"12\"],\"templatedashboard.pages[62].widgets[427].fields[1208].widget_fieldid\":[\"add\",\"1208\"],\"templatedashboard.pages[62].widgets[427].widgetid\":[\"add\",\"427\"],\"templatedashboard.pages[62].widgets[428]\":[\"add\"],\"templatedashboard.pages[62].widgets[428].x\":[\"add\",\"10\"],\"templatedashboard.pages[62].widgets[428].y\":[\"add\",\"1\"],\"templatedashboard.pages[62].widgets[428].width\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[428].height\":[\"add\",\"3\"],\"templatedashboard.pages[62].widgets[428].type\":[\"add\",\"item\"],\"templatedashboard.pages[62].widgets[428].fields[1209]\":[\"add\"],\"templatedashboard.pages[62].widgets[428].fields[1209].type\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[428].fields[1209].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[62].widgets[428].fields[1209].value\":[\"add\",\"9\"],\"templatedashboard.pages[62].widgets[428].fields[1209].widget_fieldid\":[\"add\",\"1209\"],\"templatedashboard.pages[62].widgets[428].widgetid\":[\"add\",\"428\"],\"templatedashboard.pages[62].widgets[429]\":[\"add\"],\"templatedashboard.pages[62].widgets[429].x\":[\"add\",\"14\"],\"templatedashboard.pages[62].widgets[429].y\":[\"add\",\"1\"],\"templatedashboard.pages[62].widgets[429].width\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[429].height\":[\"add\",\"3\"],\"templatedashboard.pages[62].widgets[429].type\":[\"add\",\"item\"],\"templatedashboard.pages[62].widgets[429].fields[1210]\":[\"add\"],\"templatedashboard.pages[62].widgets[429].fields[1210].type\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[429].fields[1210].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[62].widgets[429].fields[1210].value\":[\"add\",\"12\"],\"templatedashboard.pages[62].widgets[429].fields[1210].widget_fieldid\":[\"add\",\"1210\"],\"templatedashboard.pages[62].widgets[429].widgetid\":[\"add\",\"429\"],\"templatedashboard.pages[62].widgets[430]\":[\"add\"],\"templatedashboard.pages[62].widgets[430].x\":[\"add\",\"19\"],\"templatedashboard.pages[62].widgets[430].y\":[\"add\",\"1\"],\"templatedashboard.pages[62].widgets[430].width\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[430].height\":[\"add\",\"3\"],\"templatedashboard.pages[62].widgets[430].type\":[\"add\",\"item\"],\"templatedashboard.pages[62].widgets[430].fields[1211]\":[\"add\"],\"templatedashboard.pages[62].widgets[430].fields[1211].type\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[430].fields[1211].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[62].widgets[430].fields[1211].value\":[\"add\",\"20\"],\"templatedashboard.pages[62].widgets[430].fields[1211].widget_fieldid\":[\"add\",\"1211\"],\"templatedashboard.pages[62].widgets[430].widgetid\":[\"add\",\"430\"],\"templatedashboard.pages[62].widgets[431]\":[\"add\"],\"templatedashboard.pages[62].widgets[431].x\":[\"add\",\"2\"],\"templatedashboard.pages[62].widgets[431].y\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[431].type\":[\"add\",\"item\"],\"templatedashboard.pages[62].widgets[431].fields[1212]\":[\"add\"],\"templatedashboard.pages[62].widgets[431].fields[1212].type\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[431].fields[1212].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[62].widgets[431].fields[1212].value\":[\"add\",\"24\"],\"templatedashboard.pages[62].widgets[431].fields[1212].widget_fieldid\":[\"add\",\"1212\"],\"templatedashboard.pages[62].widgets[431].widgetid\":[\"add\",\"431\"],\"templatedashboard.pages[62].widgets[432]\":[\"add\"],\"templatedashboard.pages[62].widgets[432].x\":[\"add\",\"5\"],\"templatedashboard.pages[62].widgets[432].y\":[\"add\",\"3\"],\"templatedashboard.pages[62].widgets[432].width\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[432].height\":[\"add\",\"3\"],\"templatedashboard.pages[62].widgets[432].type\":[\"add\",\"item\"],\"templatedashboard.pages[62].widgets[432].fields[1213]\":[\"add\"],\"templatedashboard.pages[62].widgets[432].fields[1213].type\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[432].fields[1213].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[62].widgets[432].fields[1213].value\":[\"add\",\"41\"],\"templatedashboard.pages[62].widgets[432].fields[1213].widget_fieldid\":[\"add\",\"1213\"],\"templatedashboard.pages[62].widgets[432].widgetid\":[\"add\",\"432\"],\"templatedashboard.pages[62].widgets[433]\":[\"add\"],\"templatedashboard.pages[62].widgets[433].x\":[\"add\",\"9\"],\"templatedashboard.pages[62].widgets[433].y\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[433].width\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[433].height\":[\"add\",\"3\"],\"templatedashboard.pages[62].widgets[433].type\":[\"add\",\"item\"],\"templatedashboard.pages[62].widgets[433].fields[1214]\":[\"add\"],\"templatedashboard.pages[62].widgets[433].fields[1214].type\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[433].fields[1214].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[62].widgets[433].fields[1214].value\":[\"add\",\"46\"],\"templatedashboard.pages[62].widgets[433].fields[1214].widget_fieldid\":[\"add\",\"1214\"],\"templatedashboard.pages[62].widgets[433].widgetid\":[\"add\",\"433\"],\"templatedashboard.pages[62].widgets[434]\":[\"add\"],\"templatedashboard.pages[62].widgets[434].x\":[\"add\",\"13\"],\"templatedashboard.pages[62].widgets[434].y\":[\"add\",\"5\"],\"templatedashboard.pages[62].widgets[434].width\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[434].height\":[\"add\",\"3\"],\"templatedashboard.pages[62].widgets[434].type\":[\"add\",\"item\"],\"templatedashboard.pages[62].widgets[434].fields[1215]\":[\"add\"],\"templatedashboard.pages[62].widgets[434].fields[1215].type\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[434].fields[1215].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[62].widgets[434].fields[1215].value\":[\"add\",\"51\"],\"templatedashboard.pages[62].widgets[434].fields[1215].widget_fieldid\":[\"add\",\"1215\"],\"templatedashboard.pages[62].widgets[434].widgetid\":[\"add\",\"434\"],\"templatedashboard.pages[62].widgets[435]\":[\"add\"],\"templatedashboard.pages[62].widgets[435].x\":[\"add\",\"17\"],\"templatedashboard.pages[62].widgets[435].y\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[435].width\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[435].height\":[\"add\",\"3\"],\"templatedashboard.pages[62].widgets[435].type\":[\"add\",\"item\"],\"templatedashboard.pages[62].widgets[435].fields[1216]\":[\"add\"],\"templatedashboard.pages[62].widgets[435].fields[1216].type\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[435].fields[1216].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[62].widgets[435].fields[1216].value\":[\"add\",\"56\"],\"templatedashboard.pages[62].widgets[435].fields[1216].widget_fieldid\":[\"add\",\"1216\"],\"templatedashboard.pages[62].widgets[435].widgetid\":[\"add\",\"435\"],\"templatedashboard.pages[62].widgets[436]\":[\"add\"],\"templatedashboard.pages[62].widgets[436].x\":[\"add\",\"1\"],\"templatedashboard.pages[62].widgets[436].y\":[\"add\",\"8\"],\"templatedashboard.pages[62].widgets[436].width\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[436].height\":[\"add\",\"3\"],\"templatedashboard.pages[62].widgets[436].type\":[\"add\",\"item\"],\"templatedashboard.pages[62].widgets[436].fields[1217]\":[\"add\"],\"templatedashboard.pages[62].widgets[436].fields[1217].type\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[436].fields[1217].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[62].widgets[436].fields[1217].value\":[\"add\",\"62\"],\"templatedashboard.pages[62].widgets[436].fields[1217].widget_fieldid\":[\"add\",\"1217\"],\"templatedashboard.pages[62].widgets[436].widgetid\":[\"add\",\"436\"],\"templatedashboard.pages[62].widgets[437]\":[\"add\"],\"templatedashboard.pages[62].widgets[437].x\":[\"add\",\"6\"],\"templatedashboard.pages[62].widgets[437].y\":[\"add\",\"8\"],\"templatedashboard.pages[62].widgets[437].width\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[437].height\":[\"add\",\"3\"],\"templatedashboard.pages[62].widgets[437].type\":[\"add\",\"item\"],\"templatedashboard.pages[62].widgets[437].fields[1218]\":[\"add\"],\"templatedashboard.pages[62].widgets[437].fields[1218].type\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[437].fields[1218].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[62].widgets[437].fields[1218].value\":[\"add\",\"68\"],\"templatedashboard.pages[62].widgets[437].fields[1218].widget_fieldid\":[\"add\",\"1218\"],\"templatedashboard.pages[62].widgets[437].widgetid\":[\"add\",\"437\"],\"templatedashboard.pages[62].widgets[438]\":[\"add\"],\"templatedashboard.pages[62].widgets[438].x\":[\"add\",\"10\"],\"templatedashboard.pages[62].widgets[438].y\":[\"add\",\"8\"],\"templatedashboard.pages[62].widgets[438].width\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[438].height\":[\"add\",\"3\"],\"templatedashboard.pages[62].widgets[438].type\":[\"add\",\"item\"],\"templatedashboard.pages[62].widgets[438].fields[1219]\":[\"add\"],\"templatedashboard.pages[62].widgets[438].fields[1219].type\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[438].fields[1219].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[62].widgets[438].fields[1219].value\":[\"add\",\"72\"],\"templatedashboard.pages[62].widgets[438].fields[1219].widget_fieldid\":[\"add\",\"1219\"],\"templatedashboard.pages[62].widgets[438].widgetid\":[\"add\",\"438\"],\"templatedashboard.pages[62].widgets[439]\":[\"add\"],\"templatedashboard.pages[62].widgets[439].x\":[\"add\",\"14\"],\"templatedashboard.pages[62].widgets[439].y\":[\"add\",\"9\"],\"templatedashboard.pages[62].widgets[439].width\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[439].height\":[\"add\",\"3\"],\"templatedashboard.pages[62].widgets[439].type\":[\"add\",\"item\"],\"templatedashboard.pages[62].widgets[439].fields[1220]\":[\"add\"],\"templatedashboard.pages[62].widgets[439].fields[1220].type\":[\"add\",\"4\"],\"templatedashboard.pages[62].widgets[439].fields[1220].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[62].widgets[439].fields[1220].value\":[\"add\",\"76\"],\"templatedashboard.pages[62].widgets[439].fields[1220].widget_fieldid\":[\"add\",\"1220\"],\"templatedashboard.pages[62].widgets[439].widgetid\":[\"add\",\"439\"],\"templatedashboard.pages[62].dashboard_pageid\":[\"add\",\"62\"],\"templatedashboard.templateid\":[\"add\",\"7\"],\"templatedashboard.uuid\":[\"add\",\"8c80f2b035d047869021272fa547ee1a\"],\"templatedashboard.dashboardid\":[\"add\",\"62\"]}'),('clcehque70001fqiys95xlviq',1,'Admin',1672645166,'192.168.64.1',0,43,63,NULL,'t2_3','clcehque70000fqiy4x9c5kl2','{\"templatedashboard.name\":[\"add\",\"t2_3\"],\"templatedashboard.pages[63]\":[\"add\"],\"templatedashboard.pages[63].dashboard_pageid\":[\"add\",\"63\"],\"templatedashboard.templateid\":[\"add\",\"7\"],\"templatedashboard.uuid\":[\"add\",\"58feed816e7648bdb23cc59b4353f3a4\"],\"templatedashboard.dashboardid\":[\"add\",\"63\"]}'),('clcehrb2f00014ciy8s324rbc',1,'Admin',1672645188,'192.168.64.1',1,43,60,NULL,'New dashboard','clcehrb2f00004ciymyz9c3ol','{\"templatedashboard.name\":[\"update\",\"t1_3\",\"New dashboard\"]}'),('clcehspw200014xiyn07ywfeo',1,'Admin',1672645253,'192.168.64.1',0,43,64,NULL,'t3_1','clcehspw200004xiya4t37dto','{\"templatedashboard.name\":[\"add\",\"t3_1\"],\"templatedashboard.pages[64]\":[\"add\"],\"templatedashboard.pages[64].widgets[440]\":[\"add\"],\"templatedashboard.pages[64].widgets[440].x\":[\"add\",\"3\"],\"templatedashboard.pages[64].widgets[440].y\":[\"add\",\"1\"],\"templatedashboard.pages[64].widgets[440].width\":[\"add\",\"4\"],\"templatedashboard.pages[64].widgets[440].height\":[\"add\",\"3\"],\"templatedashboard.pages[64].widgets[440].type\":[\"add\",\"item\"],\"templatedashboard.pages[64].widgets[440].fields[1221]\":[\"add\"],\"templatedashboard.pages[64].widgets[440].fields[1221].type\":[\"add\",\"4\"],\"templatedashboard.pages[64].widgets[440].fields[1221].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[64].widgets[440].fields[1221].value\":[\"add\",\"15\"],\"templatedashboard.pages[64].widgets[440].fields[1221].widget_fieldid\":[\"add\",\"1221\"],\"templatedashboard.pages[64].widgets[440].widgetid\":[\"add\",\"440\"],\"templatedashboard.pages[64].widgets[441]\":[\"add\"],\"templatedashboard.pages[64].widgets[441].x\":[\"add\",\"8\"],\"templatedashboard.pages[64].widgets[441].y\":[\"add\",\"1\"],\"templatedashboard.pages[64].widgets[441].width\":[\"add\",\"4\"],\"templatedashboard.pages[64].widgets[441].height\":[\"add\",\"3\"],\"templatedashboard.pages[64].widgets[441].type\":[\"add\",\"item\"],\"templatedashboard.pages[64].widgets[441].fields[1222]\":[\"add\"],\"templatedashboard.pages[64].widgets[441].fields[1222].type\":[\"add\",\"4\"],\"templatedashboard.pages[64].widgets[441].fields[1222].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[64].widgets[441].fields[1222].value\":[\"add\",\"15\"],\"templatedashboard.pages[64].widgets[441].fields[1222].widget_fieldid\":[\"add\",\"1222\"],\"templatedashboard.pages[64].widgets[441].widgetid\":[\"add\",\"441\"],\"templatedashboard.pages[64].widgets[442]\":[\"add\"],\"templatedashboard.pages[64].widgets[442].x\":[\"add\",\"12\"],\"templatedashboard.pages[64].widgets[442].y\":[\"add\",\"1\"],\"templatedashboard.pages[64].widgets[442].width\":[\"add\",\"4\"],\"templatedashboard.pages[64].widgets[442].height\":[\"add\",\"3\"],\"templatedashboard.pages[64].widgets[442].type\":[\"add\",\"item\"],\"templatedashboard.pages[64].widgets[442].fields[1223]\":[\"add\"],\"templatedashboard.pages[64].widgets[442].fields[1223].type\":[\"add\",\"4\"],\"templatedashboard.pages[64].widgets[442].fields[1223].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[64].widgets[442].fields[1223].value\":[\"add\",\"15\"],\"templatedashboard.pages[64].widgets[442].fields[1223].widget_fieldid\":[\"add\",\"1223\"],\"templatedashboard.pages[64].widgets[442].widgetid\":[\"add\",\"442\"],\"templatedashboard.pages[64].widgets[443]\":[\"add\"],\"templatedashboard.pages[64].widgets[443].x\":[\"add\",\"16\"],\"templatedashboard.pages[64].widgets[443].y\":[\"add\",\"1\"],\"templatedashboard.pages[64].widgets[443].width\":[\"add\",\"4\"],\"templatedashboard.pages[64].widgets[443].height\":[\"add\",\"3\"],\"templatedashboard.pages[64].widgets[443].type\":[\"add\",\"item\"],\"templatedashboard.pages[64].widgets[443].fields[1224]\":[\"add\"],\"templatedashboard.pages[64].widgets[443].fields[1224].type\":[\"add\",\"4\"],\"templatedashboard.pages[64].widgets[443].fields[1224].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[64].widgets[443].fields[1224].value\":[\"add\",\"17\"],\"templatedashboard.pages[64].widgets[443].fields[1224].widget_fieldid\":[\"add\",\"1224\"],\"templatedashboard.pages[64].widgets[443].widgetid\":[\"add\",\"443\"],\"templatedashboard.pages[64].widgets[444]\":[\"add\"],\"templatedashboard.pages[64].widgets[444].x\":[\"add\",\"20\"],\"templatedashboard.pages[64].widgets[444].y\":[\"add\",\"1\"],\"templatedashboard.pages[64].widgets[444].type\":[\"add\",\"item\"],\"templatedashboard.pages[64].widgets[444].fields[1225]\":[\"add\"],\"templatedashboard.pages[64].widgets[444].fields[1225].type\":[\"add\",\"4\"],\"templatedashboard.pages[64].widgets[444].fields[1225].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[64].widgets[444].fields[1225].value\":[\"add\",\"34\"],\"templatedashboard.pages[64].widgets[444].fields[1225].widget_fieldid\":[\"add\",\"1225\"],\"templatedashboard.pages[64].widgets[444].widgetid\":[\"add\",\"444\"],\"templatedashboard.pages[64].widgets[445]\":[\"add\"],\"templatedashboard.pages[64].widgets[445].x\":[\"add\",\"6\"],\"templatedashboard.pages[64].widgets[445].y\":[\"add\",\"5\"],\"templatedashboard.pages[64].widgets[445].width\":[\"add\",\"4\"],\"templatedashboard.pages[64].widgets[445].height\":[\"add\",\"3\"],\"templatedashboard.pages[64].widgets[445].type\":[\"add\",\"item\"],\"templatedashboard.pages[64].widgets[445].fields[1226]\":[\"add\"],\"templatedashboard.pages[64].widgets[445].fields[1226].type\":[\"add\",\"4\"],\"templatedashboard.pages[64].widgets[445].fields[1226].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[64].widgets[445].fields[1226].value\":[\"add\",\"37\"],\"templatedashboard.pages[64].widgets[445].fields[1226].widget_fieldid\":[\"add\",\"1226\"],\"templatedashboard.pages[64].widgets[445].widgetid\":[\"add\",\"445\"],\"templatedashboard.pages[64].dashboard_pageid\":[\"add\",\"64\"],\"templatedashboard.templateid\":[\"add\",\"8\"],\"templatedashboard.uuid\":[\"add\",\"fd4515aade0144acba62d3b36d53da6b\"],\"templatedashboard.dashboardid\":[\"add\",\"64\"]}'),('clcehtjgv00014ciymg5wl6n4',1,'Admin',1672645292,'192.168.64.1',0,43,65,NULL,'t3_2','clcehtjgv00004ciywl0qndeo','{\"templatedashboard.name\":[\"add\",\"t3_2\"],\"templatedashboard.pages[65]\":[\"add\"],\"templatedashboard.pages[65].widgets[446]\":[\"add\"],\"templatedashboard.pages[65].widgets[446].x\":[\"add\",\"1\"],\"templatedashboard.pages[65].widgets[446].y\":[\"add\",\"1\"],\"templatedashboard.pages[65].widgets[446].type\":[\"add\",\"item\"],\"templatedashboard.pages[65].widgets[446].fields[1227]\":[\"add\"],\"templatedashboard.pages[65].widgets[446].fields[1227].type\":[\"add\",\"4\"],\"templatedashboard.pages[65].widgets[446].fields[1227].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[65].widgets[446].fields[1227].value\":[\"add\",\"15\"],\"templatedashboard.pages[65].widgets[446].fields[1227].widget_fieldid\":[\"add\",\"1227\"],\"templatedashboard.pages[65].widgets[446].widgetid\":[\"add\",\"446\"],\"templatedashboard.pages[65].widgets[447]\":[\"add\"],\"templatedashboard.pages[65].widgets[447].x\":[\"add\",\"3\"],\"templatedashboard.pages[65].widgets[447].y\":[\"add\",\"1\"],\"templatedashboard.pages[65].widgets[447].width\":[\"add\",\"4\"],\"templatedashboard.pages[65].widgets[447].height\":[\"add\",\"3\"],\"templatedashboard.pages[65].widgets[447].type\":[\"add\",\"item\"],\"templatedashboard.pages[65].widgets[447].fields[1228]\":[\"add\"],\"templatedashboard.pages[65].widgets[447].fields[1228].type\":[\"add\",\"4\"],\"templatedashboard.pages[65].widgets[447].fields[1228].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[65].widgets[447].fields[1228].value\":[\"add\",\"15\"],\"templatedashboard.pages[65].widgets[447].fields[1228].widget_fieldid\":[\"add\",\"1228\"],\"templatedashboard.pages[65].widgets[447].widgetid\":[\"add\",\"447\"],\"templatedashboard.pages[65].widgets[448]\":[\"add\"],\"templatedashboard.pages[65].widgets[448].x\":[\"add\",\"9\"],\"templatedashboard.pages[65].widgets[448].y\":[\"add\",\"1\"],\"templatedashboard.pages[65].widgets[448].width\":[\"add\",\"4\"],\"templatedashboard.pages[65].widgets[448].height\":[\"add\",\"3\"],\"templatedashboard.pages[65].widgets[448].type\":[\"add\",\"item\"],\"templatedashboard.pages[65].widgets[448].fields[1229]\":[\"add\"],\"templatedashboard.pages[65].widgets[448].fields[1229].type\":[\"add\",\"4\"],\"templatedashboard.pages[65].widgets[448].fields[1229].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[65].widgets[448].fields[1229].value\":[\"add\",\"15\"],\"templatedashboard.pages[65].widgets[448].fields[1229].widget_fieldid\":[\"add\",\"1229\"],\"templatedashboard.pages[65].widgets[448].widgetid\":[\"add\",\"448\"],\"templatedashboard.pages[65].widgets[449]\":[\"add\"],\"templatedashboard.pages[65].widgets[449].x\":[\"add\",\"14\"],\"templatedashboard.pages[65].widgets[449].y\":[\"add\",\"2\"],\"templatedashboard.pages[65].widgets[449].width\":[\"add\",\"4\"],\"templatedashboard.pages[65].widgets[449].height\":[\"add\",\"3\"],\"templatedashboard.pages[65].widgets[449].type\":[\"add\",\"item\"],\"templatedashboard.pages[65].widgets[449].fields[1230]\":[\"add\"],\"templatedashboard.pages[65].widgets[449].fields[1230].type\":[\"add\",\"4\"],\"templatedashboard.pages[65].widgets[449].fields[1230].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[65].widgets[449].fields[1230].value\":[\"add\",\"17\"],\"templatedashboard.pages[65].widgets[449].fields[1230].widget_fieldid\":[\"add\",\"1230\"],\"templatedashboard.pages[65].widgets[449].widgetid\":[\"add\",\"449\"],\"templatedashboard.pages[65].widgets[450]\":[\"add\"],\"templatedashboard.pages[65].widgets[450].x\":[\"add\",\"18\"],\"templatedashboard.pages[65].widgets[450].y\":[\"add\",\"2\"],\"templatedashboard.pages[65].widgets[450].width\":[\"add\",\"4\"],\"templatedashboard.pages[65].widgets[450].height\":[\"add\",\"3\"],\"templatedashboard.pages[65].widgets[450].type\":[\"add\",\"item\"],\"templatedashboard.pages[65].widgets[450].fields[1231]\":[\"add\"],\"templatedashboard.pages[65].widgets[450].fields[1231].type\":[\"add\",\"4\"],\"templatedashboard.pages[65].widgets[450].fields[1231].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[65].widgets[450].fields[1231].value\":[\"add\",\"34\"],\"templatedashboard.pages[65].widgets[450].fields[1231].widget_fieldid\":[\"add\",\"1231\"],\"templatedashboard.pages[65].widgets[450].widgetid\":[\"add\",\"450\"],\"templatedashboard.pages[65].widgets[451]\":[\"add\"],\"templatedashboard.pages[65].widgets[451].x\":[\"add\",\"22\"],\"templatedashboard.pages[65].widgets[451].y\":[\"add\",\"2\"],\"templatedashboard.pages[65].widgets[451].width\":[\"add\",\"2\"],\"templatedashboard.pages[65].widgets[451].height\":[\"add\",\"3\"],\"templatedashboard.pages[65].widgets[451].type\":[\"add\",\"item\"],\"templatedashboard.pages[65].widgets[451].fields[1232]\":[\"add\"],\"templatedashboard.pages[65].widgets[451].fields[1232].type\":[\"add\",\"4\"],\"templatedashboard.pages[65].widgets[451].fields[1232].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[65].widgets[451].fields[1232].value\":[\"add\",\"37\"],\"templatedashboard.pages[65].widgets[451].fields[1232].widget_fieldid\":[\"add\",\"1232\"],\"templatedashboard.pages[65].widgets[451].widgetid\":[\"add\",\"451\"],\"templatedashboard.pages[65].dashboard_pageid\":[\"add\",\"65\"],\"templatedashboard.templateid\":[\"add\",\"8\"],\"templatedashboard.uuid\":[\"add\",\"24d94fbc340c445eb83a436f76dbcfe0\"],\"templatedashboard.dashboardid\":[\"add\",\"65\"]}'),('clcehtqmv00014ciy59hf695g',1,'Admin',1672645301,'192.168.64.1',0,43,66,NULL,'t3_3','clcehtqmv00004ciy1ocdbtv3','{\"templatedashboard.name\":[\"add\",\"t3_3\"],\"templatedashboard.pages[66]\":[\"add\"],\"templatedashboard.pages[66].dashboard_pageid\":[\"add\",\"66\"],\"templatedashboard.templateid\":[\"add\",\"8\"],\"templatedashboard.uuid\":[\"add\",\"bffd5541610e433e90e10c35e56cd3dc\"],\"templatedashboard.dashboardid\":[\"add\",\"66\"]}'),('clcehwfq200014ciy09lqqrat',1,'Admin',1672645427,'192.168.64.1',0,43,67,NULL,'t4_1','clcehwfq100004ciyoltnmbtn','{\"templatedashboard.name\":[\"add\",\"t4_1\"],\"templatedashboard.pages[67]\":[\"add\"],\"templatedashboard.pages[67].widgets[452]\":[\"add\"],\"templatedashboard.pages[67].widgets[452].x\":[\"add\",\"1\"],\"templatedashboard.pages[67].widgets[452].width\":[\"add\",\"4\"],\"templatedashboard.pages[67].widgets[452].height\":[\"add\",\"3\"],\"templatedashboard.pages[67].widgets[452].type\":[\"add\",\"item\"],\"templatedashboard.pages[67].widgets[452].fields[1233]\":[\"add\"],\"templatedashboard.pages[67].widgets[452].fields[1233].type\":[\"add\",\"4\"],\"templatedashboard.pages[67].widgets[452].fields[1233].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[67].widgets[452].fields[1233].value\":[\"add\",\"19\"],\"templatedashboard.pages[67].widgets[452].fields[1233].widget_fieldid\":[\"add\",\"1233\"],\"templatedashboard.pages[67].widgets[452].widgetid\":[\"add\",\"452\"],\"templatedashboard.pages[67].widgets[453]\":[\"add\"],\"templatedashboard.pages[67].widgets[453].x\":[\"add\",\"6\"],\"templatedashboard.pages[67].widgets[453].width\":[\"add\",\"4\"],\"templatedashboard.pages[67].widgets[453].height\":[\"add\",\"3\"],\"templatedashboard.pages[67].widgets[453].type\":[\"add\",\"item\"],\"templatedashboard.pages[67].widgets[453].fields[1234]\":[\"add\"],\"templatedashboard.pages[67].widgets[453].fields[1234].type\":[\"add\",\"4\"],\"templatedashboard.pages[67].widgets[453].fields[1234].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[67].widgets[453].fields[1234].value\":[\"add\",\"19\"],\"templatedashboard.pages[67].widgets[453].fields[1234].widget_fieldid\":[\"add\",\"1234\"],\"templatedashboard.pages[67].widgets[453].widgetid\":[\"add\",\"453\"],\"templatedashboard.pages[67].widgets[454]\":[\"add\"],\"templatedashboard.pages[67].widgets[454].x\":[\"add\",\"11\"],\"templatedashboard.pages[67].widgets[454].type\":[\"add\",\"item\"],\"templatedashboard.pages[67].widgets[454].fields[1235]\":[\"add\"],\"templatedashboard.pages[67].widgets[454].fields[1235].type\":[\"add\",\"4\"],\"templatedashboard.pages[67].widgets[454].fields[1235].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[67].widgets[454].fields[1235].value\":[\"add\",\"19\"],\"templatedashboard.pages[67].widgets[454].fields[1235].widget_fieldid\":[\"add\",\"1235\"],\"templatedashboard.pages[67].widgets[454].widgetid\":[\"add\",\"454\"],\"templatedashboard.pages[67].widgets[455]\":[\"add\"],\"templatedashboard.pages[67].widgets[455].x\":[\"add\",\"13\"],\"templatedashboard.pages[67].widgets[455].width\":[\"add\",\"4\"],\"templatedashboard.pages[67].widgets[455].height\":[\"add\",\"3\"],\"templatedashboard.pages[67].widgets[455].type\":[\"add\",\"item\"],\"templatedashboard.pages[67].widgets[455].fields[1236]\":[\"add\"],\"templatedashboard.pages[67].widgets[455].fields[1236].type\":[\"add\",\"4\"],\"templatedashboard.pages[67].widgets[455].fields[1236].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[67].widgets[455].fields[1236].value\":[\"add\",\"23\"],\"templatedashboard.pages[67].widgets[455].fields[1236].widget_fieldid\":[\"add\",\"1236\"],\"templatedashboard.pages[67].widgets[455].widgetid\":[\"add\",\"455\"],\"templatedashboard.pages[67].widgets[456]\":[\"add\"],\"templatedashboard.pages[67].widgets[456].x\":[\"add\",\"17\"],\"templatedashboard.pages[67].widgets[456].y\":[\"add\",\"1\"],\"templatedashboard.pages[67].widgets[456].width\":[\"add\",\"4\"],\"templatedashboard.pages[67].widgets[456].height\":[\"add\",\"3\"],\"templatedashboard.pages[67].widgets[456].type\":[\"add\",\"item\"],\"templatedashboard.pages[67].widgets[456].fields[1237]\":[\"add\"],\"templatedashboard.pages[67].widgets[456].fields[1237].type\":[\"add\",\"4\"],\"templatedashboard.pages[67].widgets[456].fields[1237].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[67].widgets[456].fields[1237].value\":[\"add\",\"40\"],\"templatedashboard.pages[67].widgets[456].fields[1237].widget_fieldid\":[\"add\",\"1237\"],\"templatedashboard.pages[67].widgets[456].widgetid\":[\"add\",\"456\"],\"templatedashboard.pages[67].widgets[457]\":[\"add\"],\"templatedashboard.pages[67].widgets[457].x\":[\"add\",\"21\"],\"templatedashboard.pages[67].widgets[457].y\":[\"add\",\"1\"],\"templatedashboard.pages[67].widgets[457].width\":[\"add\",\"3\"],\"templatedashboard.pages[67].widgets[457].height\":[\"add\",\"3\"],\"templatedashboard.pages[67].widgets[457].type\":[\"add\",\"item\"],\"templatedashboard.pages[67].widgets[457].fields[1238]\":[\"add\"],\"templatedashboard.pages[67].widgets[457].fields[1238].type\":[\"add\",\"4\"],\"templatedashboard.pages[67].widgets[457].fields[1238].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[67].widgets[457].fields[1238].value\":[\"add\",\"45\"],\"templatedashboard.pages[67].widgets[457].fields[1238].widget_fieldid\":[\"add\",\"1238\"],\"templatedashboard.pages[67].widgets[457].widgetid\":[\"add\",\"457\"],\"templatedashboard.pages[67].widgets[458]\":[\"add\"],\"templatedashboard.pages[67].widgets[458].x\":[\"add\",\"1\"],\"templatedashboard.pages[67].widgets[458].y\":[\"add\",\"3\"],\"templatedashboard.pages[67].widgets[458].type\":[\"add\",\"item\"],\"templatedashboard.pages[67].widgets[458].fields[1239]\":[\"add\"],\"templatedashboard.pages[67].widgets[458].fields[1239].type\":[\"add\",\"4\"],\"templatedashboard.pages[67].widgets[458].fields[1239].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[67].widgets[458].fields[1239].value\":[\"add\",\"50\"],\"templatedashboard.pages[67].widgets[458].fields[1239].widget_fieldid\":[\"add\",\"1239\"],\"templatedashboard.pages[67].widgets[458].widgetid\":[\"add\",\"458\"],\"templatedashboard.pages[67].widgets[459]\":[\"add\"],\"templatedashboard.pages[67].widgets[459].x\":[\"add\",\"2\"],\"templatedashboard.pages[67].widgets[459].y\":[\"add\",\"3\"],\"templatedashboard.pages[67].widgets[459].width\":[\"add\",\"4\"],\"templatedashboard.pages[67].widgets[459].height\":[\"add\",\"3\"],\"templatedashboard.pages[67].widgets[459].type\":[\"add\",\"item\"],\"templatedashboard.pages[67].widgets[459].fields[1240]\":[\"add\"],\"templatedashboard.pages[67].widgets[459].fields[1240].type\":[\"add\",\"4\"],\"templatedashboard.pages[67].widgets[459].fields[1240].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[67].widgets[459].fields[1240].value\":[\"add\",\"55\"],\"templatedashboard.pages[67].widgets[459].fields[1240].widget_fieldid\":[\"add\",\"1240\"],\"templatedashboard.pages[67].widgets[459].widgetid\":[\"add\",\"459\"],\"templatedashboard.pages[67].widgets[460]\":[\"add\"],\"templatedashboard.pages[67].widgets[460].x\":[\"add\",\"7\"],\"templatedashboard.pages[67].widgets[460].y\":[\"add\",\"3\"],\"templatedashboard.pages[67].widgets[460].type\":[\"add\",\"item\"],\"templatedashboard.pages[67].widgets[460].fields[1241]\":[\"add\"],\"templatedashboard.pages[67].widgets[460].fields[1241].type\":[\"add\",\"4\"],\"templatedashboard.pages[67].widgets[460].fields[1241].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[67].widgets[460].fields[1241].value\":[\"add\",\"61\"],\"templatedashboard.pages[67].widgets[460].fields[1241].widget_fieldid\":[\"add\",\"1241\"],\"templatedashboard.pages[67].widgets[460].widgetid\":[\"add\",\"460\"],\"templatedashboard.pages[67].widgets[461]\":[\"add\"],\"templatedashboard.pages[67].widgets[461].x\":[\"add\",\"9\"],\"templatedashboard.pages[67].widgets[461].y\":[\"add\",\"3\"],\"templatedashboard.pages[67].widgets[461].type\":[\"add\",\"item\"],\"templatedashboard.pages[67].widgets[461].fields[1242]\":[\"add\"],\"templatedashboard.pages[67].widgets[461].fields[1242].type\":[\"add\",\"4\"],\"templatedashboard.pages[67].widgets[461].fields[1242].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[67].widgets[461].fields[1242].value\":[\"add\",\"67\"],\"templatedashboard.pages[67].widgets[461].fields[1242].widget_fieldid\":[\"add\",\"1242\"],\"templatedashboard.pages[67].widgets[461].widgetid\":[\"add\",\"461\"],\"templatedashboard.pages[67].dashboard_pageid\":[\"add\",\"67\"],\"templatedashboard.templateid\":[\"add\",\"9\"],\"templatedashboard.uuid\":[\"add\",\"3224835a9cbf40d7a077d1cc9433ad65\"],\"templatedashboard.dashboardid\":[\"add\",\"67\"]}'),('clcehxmj200014ciy2nlgqr0a',1,'Admin',1672645482,'192.168.64.1',0,43,68,NULL,'t4_2','clcehxmj100004ciy7qi9cppu','{\"templatedashboard.name\":[\"add\",\"t4_2\"],\"templatedashboard.pages[68]\":[\"add\"],\"templatedashboard.pages[68].widgets[462]\":[\"add\"],\"templatedashboard.pages[68].widgets[462].x\":[\"add\",\"1\"],\"templatedashboard.pages[68].widgets[462].y\":[\"add\",\"1\"],\"templatedashboard.pages[68].widgets[462].width\":[\"add\",\"4\"],\"templatedashboard.pages[68].widgets[462].height\":[\"add\",\"3\"],\"templatedashboard.pages[68].widgets[462].type\":[\"add\",\"item\"],\"templatedashboard.pages[68].widgets[462].fields[1243]\":[\"add\"],\"templatedashboard.pages[68].widgets[462].fields[1243].type\":[\"add\",\"4\"],\"templatedashboard.pages[68].widgets[462].fields[1243].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[68].widgets[462].fields[1243].value\":[\"add\",\"19\"],\"templatedashboard.pages[68].widgets[462].fields[1243].widget_fieldid\":[\"add\",\"1243\"],\"templatedashboard.pages[68].widgets[462].widgetid\":[\"add\",\"462\"],\"templatedashboard.pages[68].widgets[463]\":[\"add\"],\"templatedashboard.pages[68].widgets[463].x\":[\"add\",\"5\"],\"templatedashboard.pages[68].widgets[463].y\":[\"add\",\"2\"],\"templatedashboard.pages[68].widgets[463].width\":[\"add\",\"4\"],\"templatedashboard.pages[68].widgets[463].height\":[\"add\",\"3\"],\"templatedashboard.pages[68].widgets[463].type\":[\"add\",\"item\"],\"templatedashboard.pages[68].widgets[463].fields[1244]\":[\"add\"],\"templatedashboard.pages[68].widgets[463].fields[1244].type\":[\"add\",\"4\"],\"templatedashboard.pages[68].widgets[463].fields[1244].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[68].widgets[463].fields[1244].value\":[\"add\",\"19\"],\"templatedashboard.pages[68].widgets[463].fields[1244].widget_fieldid\":[\"add\",\"1244\"],\"templatedashboard.pages[68].widgets[463].widgetid\":[\"add\",\"463\"],\"templatedashboard.pages[68].widgets[464]\":[\"add\"],\"templatedashboard.pages[68].widgets[464].x\":[\"add\",\"9\"],\"templatedashboard.pages[68].widgets[464].y\":[\"add\",\"1\"],\"templatedashboard.pages[68].widgets[464].width\":[\"add\",\"4\"],\"templatedashboard.pages[68].widgets[464].height\":[\"add\",\"3\"],\"templatedashboard.pages[68].widgets[464].type\":[\"add\",\"item\"],\"templatedashboard.pages[68].widgets[464].fields[1245]\":[\"add\"],\"templatedashboard.pages[68].widgets[464].fields[1245].type\":[\"add\",\"4\"],\"templatedashboard.pages[68].widgets[464].fields[1245].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[68].widgets[464].fields[1245].value\":[\"add\",\"19\"],\"templatedashboard.pages[68].widgets[464].fields[1245].widget_fieldid\":[\"add\",\"1245\"],\"templatedashboard.pages[68].widgets[464].widgetid\":[\"add\",\"464\"],\"templatedashboard.pages[68].widgets[465]\":[\"add\"],\"templatedashboard.pages[68].widgets[465].x\":[\"add\",\"13\"],\"templatedashboard.pages[68].widgets[465].y\":[\"add\",\"1\"],\"templatedashboard.pages[68].widgets[465].width\":[\"add\",\"4\"],\"templatedashboard.pages[68].widgets[465].height\":[\"add\",\"3\"],\"templatedashboard.pages[68].widgets[465].type\":[\"add\",\"item\"],\"templatedashboard.pages[68].widgets[465].fields[1246]\":[\"add\"],\"templatedashboard.pages[68].widgets[465].fields[1246].type\":[\"add\",\"4\"],\"templatedashboard.pages[68].widgets[465].fields[1246].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[68].widgets[465].fields[1246].value\":[\"add\",\"23\"],\"templatedashboard.pages[68].widgets[465].fields[1246].widget_fieldid\":[\"add\",\"1246\"],\"templatedashboard.pages[68].widgets[465].widgetid\":[\"add\",\"465\"],\"templatedashboard.pages[68].widgets[466]\":[\"add\"],\"templatedashboard.pages[68].widgets[466].x\":[\"add\",\"17\"],\"templatedashboard.pages[68].widgets[466].y\":[\"add\",\"1\"],\"templatedashboard.pages[68].widgets[466].width\":[\"add\",\"4\"],\"templatedashboard.pages[68].widgets[466].height\":[\"add\",\"3\"],\"templatedashboard.pages[68].widgets[466].type\":[\"add\",\"item\"],\"templatedashboard.pages[68].widgets[466].fields[1247]\":[\"add\"],\"templatedashboard.pages[68].widgets[466].fields[1247].type\":[\"add\",\"4\"],\"templatedashboard.pages[68].widgets[466].fields[1247].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[68].widgets[466].fields[1247].value\":[\"add\",\"40\"],\"templatedashboard.pages[68].widgets[466].fields[1247].widget_fieldid\":[\"add\",\"1247\"],\"templatedashboard.pages[68].widgets[466].widgetid\":[\"add\",\"466\"],\"templatedashboard.pages[68].widgets[467]\":[\"add\"],\"templatedashboard.pages[68].widgets[467].x\":[\"add\",\"21\"],\"templatedashboard.pages[68].widgets[467].y\":[\"add\",\"2\"],\"templatedashboard.pages[68].widgets[467].type\":[\"add\",\"item\"],\"templatedashboard.pages[68].widgets[467].fields[1248]\":[\"add\"],\"templatedashboard.pages[68].widgets[467].fields[1248].type\":[\"add\",\"4\"],\"templatedashboard.pages[68].widgets[467].fields[1248].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[68].widgets[467].fields[1248].value\":[\"add\",\"45\"],\"templatedashboard.pages[68].widgets[467].fields[1248].widget_fieldid\":[\"add\",\"1248\"],\"templatedashboard.pages[68].widgets[467].widgetid\":[\"add\",\"467\"],\"templatedashboard.pages[68].widgets[468]\":[\"add\"],\"templatedashboard.pages[68].widgets[468].x\":[\"add\",\"3\"],\"templatedashboard.pages[68].widgets[468].y\":[\"add\",\"6\"],\"templatedashboard.pages[68].widgets[468].width\":[\"add\",\"4\"],\"templatedashboard.pages[68].widgets[468].height\":[\"add\",\"3\"],\"templatedashboard.pages[68].widgets[468].type\":[\"add\",\"item\"],\"templatedashboard.pages[68].widgets[468].fields[1249]\":[\"add\"],\"templatedashboard.pages[68].widgets[468].fields[1249].type\":[\"add\",\"4\"],\"templatedashboard.pages[68].widgets[468].fields[1249].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[68].widgets[468].fields[1249].value\":[\"add\",\"50\"],\"templatedashboard.pages[68].widgets[468].fields[1249].widget_fieldid\":[\"add\",\"1249\"],\"templatedashboard.pages[68].widgets[468].widgetid\":[\"add\",\"468\"],\"templatedashboard.pages[68].widgets[469]\":[\"add\"],\"templatedashboard.pages[68].widgets[469].x\":[\"add\",\"9\"],\"templatedashboard.pages[68].widgets[469].y\":[\"add\",\"5\"],\"templatedashboard.pages[68].widgets[469].width\":[\"add\",\"4\"],\"templatedashboard.pages[68].widgets[469].height\":[\"add\",\"3\"],\"templatedashboard.pages[68].widgets[469].type\":[\"add\",\"item\"],\"templatedashboard.pages[68].widgets[469].fields[1250]\":[\"add\"],\"templatedashboard.pages[68].widgets[469].fields[1250].type\":[\"add\",\"4\"],\"templatedashboard.pages[68].widgets[469].fields[1250].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[68].widgets[469].fields[1250].value\":[\"add\",\"55\"],\"templatedashboard.pages[68].widgets[469].fields[1250].widget_fieldid\":[\"add\",\"1250\"],\"templatedashboard.pages[68].widgets[469].widgetid\":[\"add\",\"469\"],\"templatedashboard.pages[68].widgets[470]\":[\"add\"],\"templatedashboard.pages[68].widgets[470].x\":[\"add\",\"14\"],\"templatedashboard.pages[68].widgets[470].y\":[\"add\",\"5\"],\"templatedashboard.pages[68].widgets[470].width\":[\"add\",\"4\"],\"templatedashboard.pages[68].widgets[470].height\":[\"add\",\"3\"],\"templatedashboard.pages[68].widgets[470].type\":[\"add\",\"item\"],\"templatedashboard.pages[68].widgets[470].fields[1251]\":[\"add\"],\"templatedashboard.pages[68].widgets[470].fields[1251].type\":[\"add\",\"4\"],\"templatedashboard.pages[68].widgets[470].fields[1251].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[68].widgets[470].fields[1251].value\":[\"add\",\"61\"],\"templatedashboard.pages[68].widgets[470].fields[1251].widget_fieldid\":[\"add\",\"1251\"],\"templatedashboard.pages[68].widgets[470].widgetid\":[\"add\",\"470\"],\"templatedashboard.pages[68].widgets[471]\":[\"add\"],\"templatedashboard.pages[68].widgets[471].x\":[\"add\",\"19\"],\"templatedashboard.pages[68].widgets[471].y\":[\"add\",\"5\"],\"templatedashboard.pages[68].widgets[471].type\":[\"add\",\"item\"],\"templatedashboard.pages[68].widgets[471].fields[1252]\":[\"add\"],\"templatedashboard.pages[68].widgets[471].fields[1252].type\":[\"add\",\"4\"],\"templatedashboard.pages[68].widgets[471].fields[1252].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[68].widgets[471].fields[1252].value\":[\"add\",\"67\"],\"templatedashboard.pages[68].widgets[471].fields[1252].widget_fieldid\":[\"add\",\"1252\"],\"templatedashboard.pages[68].widgets[471].widgetid\":[\"add\",\"471\"],\"templatedashboard.pages[68].dashboard_pageid\":[\"add\",\"68\"],\"templatedashboard.templateid\":[\"add\",\"9\"],\"templatedashboard.uuid\":[\"add\",\"2a813c3bad4a48f9b778890cbdf6fb17\"],\"templatedashboard.dashboardid\":[\"add\",\"68\"]}'),('clcei02id0001fqiy689l6pgk',1,'Admin',1672645596,'192.168.64.1',0,43,69,NULL,'t4_3','clcei02ic0000fqiyzualp3uk','{\"templatedashboard.name\":[\"add\",\"t4_3\"],\"templatedashboard.pages[69]\":[\"add\"],\"templatedashboard.pages[69].dashboard_pageid\":[\"add\",\"69\"],\"templatedashboard.templateid\":[\"add\",\"9\"],\"templatedashboard.uuid\":[\"add\",\"6e7734bb107249c2b46a4ca3245c88c6\"],\"templatedashboard.dashboardid\":[\"add\",\"69\"]}'),('clcei10cw0001fqiyjwq718zw',1,'Admin',1672645640,'192.168.64.1',0,43,70,NULL,'t5_1','clcei10cv0000fqiy1x5nqpue','{\"templatedashboard.name\":[\"add\",\"t5_1\"],\"templatedashboard.pages[70]\":[\"add\"],\"templatedashboard.pages[70].widgets[472]\":[\"add\"],\"templatedashboard.pages[70].widgets[472].width\":[\"add\",\"4\"],\"templatedashboard.pages[70].widgets[472].height\":[\"add\",\"3\"],\"templatedashboard.pages[70].widgets[472].type\":[\"add\",\"item\"],\"templatedashboard.pages[70].widgets[472].fields[1253]\":[\"add\"],\"templatedashboard.pages[70].widgets[472].fields[1253].type\":[\"add\",\"4\"],\"templatedashboard.pages[70].widgets[472].fields[1253].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[70].widgets[472].fields[1253].value\":[\"add\",\"27\"],\"templatedashboard.pages[70].widgets[472].fields[1253].widget_fieldid\":[\"add\",\"1253\"],\"templatedashboard.pages[70].widgets[472].widgetid\":[\"add\",\"472\"],\"templatedashboard.pages[70].widgets[473]\":[\"add\"],\"templatedashboard.pages[70].widgets[473].x\":[\"add\",\"5\"],\"templatedashboard.pages[70].widgets[473].width\":[\"add\",\"4\"],\"templatedashboard.pages[70].widgets[473].height\":[\"add\",\"3\"],\"templatedashboard.pages[70].widgets[473].type\":[\"add\",\"item\"],\"templatedashboard.pages[70].widgets[473].fields[1254]\":[\"add\"],\"templatedashboard.pages[70].widgets[473].fields[1254].type\":[\"add\",\"4\"],\"templatedashboard.pages[70].widgets[473].fields[1254].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[70].widgets[473].fields[1254].value\":[\"add\",\"27\"],\"templatedashboard.pages[70].widgets[473].fields[1254].widget_fieldid\":[\"add\",\"1254\"],\"templatedashboard.pages[70].widgets[473].widgetid\":[\"add\",\"473\"],\"templatedashboard.pages[70].widgets[474]\":[\"add\"],\"templatedashboard.pages[70].widgets[474].x\":[\"add\",\"11\"],\"templatedashboard.pages[70].widgets[474].type\":[\"add\",\"item\"],\"templatedashboard.pages[70].widgets[474].fields[1255]\":[\"add\"],\"templatedashboard.pages[70].widgets[474].fields[1255].type\":[\"add\",\"4\"],\"templatedashboard.pages[70].widgets[474].fields[1255].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[70].widgets[474].fields[1255].value\":[\"add\",\"27\"],\"templatedashboard.pages[70].widgets[474].fields[1255].widget_fieldid\":[\"add\",\"1255\"],\"templatedashboard.pages[70].widgets[474].widgetid\":[\"add\",\"474\"],\"templatedashboard.pages[70].widgets[475]\":[\"add\"],\"templatedashboard.pages[70].widgets[475].x\":[\"add\",\"13\"],\"templatedashboard.pages[70].widgets[475].width\":[\"add\",\"4\"],\"templatedashboard.pages[70].widgets[475].height\":[\"add\",\"3\"],\"templatedashboard.pages[70].widgets[475].type\":[\"add\",\"item\"],\"templatedashboard.pages[70].widgets[475].fields[1256]\":[\"add\"],\"templatedashboard.pages[70].widgets[475].fields[1256].type\":[\"add\",\"4\"],\"templatedashboard.pages[70].widgets[475].fields[1256].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[70].widgets[475].fields[1256].value\":[\"add\",\"30\"],\"templatedashboard.pages[70].widgets[475].fields[1256].widget_fieldid\":[\"add\",\"1256\"],\"templatedashboard.pages[70].widgets[475].widgetid\":[\"add\",\"475\"],\"templatedashboard.pages[70].dashboard_pageid\":[\"add\",\"70\"],\"templatedashboard.templateid\":[\"add\",\"10\"],\"templatedashboard.uuid\":[\"add\",\"156b22e22e2a46bb99a5cf1d4f7c3e07\"],\"templatedashboard.dashboardid\":[\"add\",\"70\"]}'),('clcei1jyj00014xiyrktv8h35',1,'Admin',1672645666,'192.168.64.1',0,43,71,NULL,'t5_2','clcei1jyj00004xiytm904mrx','{\"templatedashboard.name\":[\"add\",\"t5_2\"],\"templatedashboard.pages[71]\":[\"add\"],\"templatedashboard.pages[71].widgets[476]\":[\"add\"],\"templatedashboard.pages[71].widgets[476].x\":[\"add\",\"2\"],\"templatedashboard.pages[71].widgets[476].width\":[\"add\",\"4\"],\"templatedashboard.pages[71].widgets[476].height\":[\"add\",\"3\"],\"templatedashboard.pages[71].widgets[476].type\":[\"add\",\"item\"],\"templatedashboard.pages[71].widgets[476].fields[1257]\":[\"add\"],\"templatedashboard.pages[71].widgets[476].fields[1257].type\":[\"add\",\"4\"],\"templatedashboard.pages[71].widgets[476].fields[1257].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[71].widgets[476].fields[1257].value\":[\"add\",\"27\"],\"templatedashboard.pages[71].widgets[476].fields[1257].widget_fieldid\":[\"add\",\"1257\"],\"templatedashboard.pages[71].widgets[476].widgetid\":[\"add\",\"476\"],\"templatedashboard.pages[71].widgets[477]\":[\"add\"],\"templatedashboard.pages[71].widgets[477].x\":[\"add\",\"7\"],\"templatedashboard.pages[71].widgets[477].y\":[\"add\",\"1\"],\"templatedashboard.pages[71].widgets[477].width\":[\"add\",\"4\"],\"templatedashboard.pages[71].widgets[477].height\":[\"add\",\"3\"],\"templatedashboard.pages[71].widgets[477].type\":[\"add\",\"item\"],\"templatedashboard.pages[71].widgets[477].fields[1258]\":[\"add\"],\"templatedashboard.pages[71].widgets[477].fields[1258].type\":[\"add\",\"4\"],\"templatedashboard.pages[71].widgets[477].fields[1258].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[71].widgets[477].fields[1258].value\":[\"add\",\"27\"],\"templatedashboard.pages[71].widgets[477].fields[1258].widget_fieldid\":[\"add\",\"1258\"],\"templatedashboard.pages[71].widgets[477].widgetid\":[\"add\",\"477\"],\"templatedashboard.pages[71].widgets[478]\":[\"add\"],\"templatedashboard.pages[71].widgets[478].x\":[\"add\",\"12\"],\"templatedashboard.pages[71].widgets[478].y\":[\"add\",\"1\"],\"templatedashboard.pages[71].widgets[478].width\":[\"add\",\"4\"],\"templatedashboard.pages[71].widgets[478].height\":[\"add\",\"3\"],\"templatedashboard.pages[71].widgets[478].type\":[\"add\",\"item\"],\"templatedashboard.pages[71].widgets[478].fields[1259]\":[\"add\"],\"templatedashboard.pages[71].widgets[478].fields[1259].type\":[\"add\",\"4\"],\"templatedashboard.pages[71].widgets[478].fields[1259].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[71].widgets[478].fields[1259].value\":[\"add\",\"27\"],\"templatedashboard.pages[71].widgets[478].fields[1259].widget_fieldid\":[\"add\",\"1259\"],\"templatedashboard.pages[71].widgets[478].widgetid\":[\"add\",\"478\"],\"templatedashboard.pages[71].widgets[479]\":[\"add\"],\"templatedashboard.pages[71].widgets[479].x\":[\"add\",\"16\"],\"templatedashboard.pages[71].widgets[479].y\":[\"add\",\"1\"],\"templatedashboard.pages[71].widgets[479].width\":[\"add\",\"4\"],\"templatedashboard.pages[71].widgets[479].height\":[\"add\",\"3\"],\"templatedashboard.pages[71].widgets[479].type\":[\"add\",\"item\"],\"templatedashboard.pages[71].widgets[479].fields[1260]\":[\"add\"],\"templatedashboard.pages[71].widgets[479].fields[1260].type\":[\"add\",\"4\"],\"templatedashboard.pages[71].widgets[479].fields[1260].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[71].widgets[479].fields[1260].value\":[\"add\",\"30\"],\"templatedashboard.pages[71].widgets[479].fields[1260].widget_fieldid\":[\"add\",\"1260\"],\"templatedashboard.pages[71].widgets[479].widgetid\":[\"add\",\"479\"],\"templatedashboard.pages[71].dashboard_pageid\":[\"add\",\"71\"],\"templatedashboard.templateid\":[\"add\",\"10\"],\"templatedashboard.uuid\":[\"add\",\"484b8022e817474e8b555cbd4eed6d30\"],\"templatedashboard.dashboardid\":[\"add\",\"71\"]}'),('clcei1qz20001fqiyvfh1cpqt',1,'Admin',1672645675,'192.168.64.1',0,43,72,NULL,'t5_3','clcei1qz20000fqiygj0zfygw','{\"templatedashboard.name\":[\"add\",\"t5_3\"],\"templatedashboard.pages[72]\":[\"add\"],\"templatedashboard.pages[72].dashboard_pageid\":[\"add\",\"72\"],\"templatedashboard.templateid\":[\"add\",\"10\"],\"templatedashboard.uuid\":[\"add\",\"c1957d2208f44561abe0350081d7182a\"],\"templatedashboard.dashboardid\":[\"add\",\"72\"]}'),('clcei3htw00014ciyvkfk658j',1,'Admin',1672645756,'192.168.64.1',0,43,73,NULL,'t6_1','clcei3htw00004ciy0w0jn2pr','{\"templatedashboard.name\":[\"add\",\"t6_1\"],\"templatedashboard.pages[73]\":[\"add\"],\"templatedashboard.pages[73].widgets[480]\":[\"add\"],\"templatedashboard.pages[73].widgets[480].width\":[\"add\",\"4\"],\"templatedashboard.pages[73].widgets[480].height\":[\"add\",\"3\"],\"templatedashboard.pages[73].widgets[480].type\":[\"add\",\"item\"],\"templatedashboard.pages[73].widgets[480].fields[1261]\":[\"add\"],\"templatedashboard.pages[73].widgets[480].fields[1261].type\":[\"add\",\"4\"],\"templatedashboard.pages[73].widgets[480].fields[1261].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[73].widgets[480].fields[1261].value\":[\"add\",\"33\"],\"templatedashboard.pages[73].widgets[480].fields[1261].widget_fieldid\":[\"add\",\"1261\"],\"templatedashboard.pages[73].widgets[480].widgetid\":[\"add\",\"480\"],\"templatedashboard.pages[73].widgets[481]\":[\"add\"],\"templatedashboard.pages[73].widgets[481].x\":[\"add\",\"4\"],\"templatedashboard.pages[73].widgets[481].y\":[\"add\",\"1\"],\"templatedashboard.pages[73].widgets[481].width\":[\"add\",\"4\"],\"templatedashboard.pages[73].widgets[481].height\":[\"add\",\"3\"],\"templatedashboard.pages[73].widgets[481].type\":[\"add\",\"item\"],\"templatedashboard.pages[73].widgets[481].fields[1262]\":[\"add\"],\"templatedashboard.pages[73].widgets[481].fields[1262].type\":[\"add\",\"4\"],\"templatedashboard.pages[73].widgets[481].fields[1262].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[73].widgets[481].fields[1262].value\":[\"add\",\"33\"],\"templatedashboard.pages[73].widgets[481].fields[1262].widget_fieldid\":[\"add\",\"1262\"],\"templatedashboard.pages[73].widgets[481].widgetid\":[\"add\",\"481\"],\"templatedashboard.pages[73].widgets[482]\":[\"add\"],\"templatedashboard.pages[73].widgets[482].x\":[\"add\",\"9\"],\"templatedashboard.pages[73].widgets[482].y\":[\"add\",\"1\"],\"templatedashboard.pages[73].widgets[482].width\":[\"add\",\"4\"],\"templatedashboard.pages[73].widgets[482].height\":[\"add\",\"3\"],\"templatedashboard.pages[73].widgets[482].type\":[\"add\",\"item\"],\"templatedashboard.pages[73].widgets[482].fields[1263]\":[\"add\"],\"templatedashboard.pages[73].widgets[482].fields[1263].type\":[\"add\",\"4\"],\"templatedashboard.pages[73].widgets[482].fields[1263].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[73].widgets[482].fields[1263].value\":[\"add\",\"33\"],\"templatedashboard.pages[73].widgets[482].fields[1263].widget_fieldid\":[\"add\",\"1263\"],\"templatedashboard.pages[73].widgets[482].widgetid\":[\"add\",\"482\"],\"templatedashboard.pages[73].widgets[483]\":[\"add\"],\"templatedashboard.pages[73].widgets[483].x\":[\"add\",\"13\"],\"templatedashboard.pages[73].widgets[483].y\":[\"add\",\"2\"],\"templatedashboard.pages[73].widgets[483].width\":[\"add\",\"4\"],\"templatedashboard.pages[73].widgets[483].height\":[\"add\",\"3\"],\"templatedashboard.pages[73].widgets[483].type\":[\"add\",\"item\"],\"templatedashboard.pages[73].widgets[483].fields[1264]\":[\"add\"],\"templatedashboard.pages[73].widgets[483].fields[1264].type\":[\"add\",\"4\"],\"templatedashboard.pages[73].widgets[483].fields[1264].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[73].widgets[483].fields[1264].value\":[\"add\",\"36\"],\"templatedashboard.pages[73].widgets[483].fields[1264].widget_fieldid\":[\"add\",\"1264\"],\"templatedashboard.pages[73].widgets[483].widgetid\":[\"add\",\"483\"],\"templatedashboard.pages[73].dashboard_pageid\":[\"add\",\"73\"],\"templatedashboard.templateid\":[\"add\",\"11\"],\"templatedashboard.uuid\":[\"add\",\"f6bb49da3a8d48bdb3c79dceb3202b6d\"],\"templatedashboard.dashboardid\":[\"add\",\"73\"]}'),('clcei3yvx0001fqiytzv6770b',1,'Admin',1672645778,'192.168.64.1',0,43,74,NULL,'t6_2','clcei3yvw0000fqiyihuehbvi','{\"templatedashboard.name\":[\"add\",\"t6_2\"],\"templatedashboard.pages[74]\":[\"add\"],\"templatedashboard.pages[74].widgets[484]\":[\"add\"],\"templatedashboard.pages[74].widgets[484].width\":[\"add\",\"4\"],\"templatedashboard.pages[74].widgets[484].height\":[\"add\",\"3\"],\"templatedashboard.pages[74].widgets[484].type\":[\"add\",\"item\"],\"templatedashboard.pages[74].widgets[484].fields[1265]\":[\"add\"],\"templatedashboard.pages[74].widgets[484].fields[1265].type\":[\"add\",\"4\"],\"templatedashboard.pages[74].widgets[484].fields[1265].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[74].widgets[484].fields[1265].value\":[\"add\",\"33\"],\"templatedashboard.pages[74].widgets[484].fields[1265].widget_fieldid\":[\"add\",\"1265\"],\"templatedashboard.pages[74].widgets[484].widgetid\":[\"add\",\"484\"],\"templatedashboard.pages[74].widgets[485]\":[\"add\"],\"templatedashboard.pages[74].widgets[485].x\":[\"add\",\"5\"],\"templatedashboard.pages[74].widgets[485].type\":[\"add\",\"item\"],\"templatedashboard.pages[74].widgets[485].fields[1266]\":[\"add\"],\"templatedashboard.pages[74].widgets[485].fields[1266].type\":[\"add\",\"4\"],\"templatedashboard.pages[74].widgets[485].fields[1266].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[74].widgets[485].fields[1266].value\":[\"add\",\"33\"],\"templatedashboard.pages[74].widgets[485].fields[1266].widget_fieldid\":[\"add\",\"1266\"],\"templatedashboard.pages[74].widgets[485].widgetid\":[\"add\",\"485\"],\"templatedashboard.pages[74].widgets[486]\":[\"add\"],\"templatedashboard.pages[74].widgets[486].x\":[\"add\",\"8\"],\"templatedashboard.pages[74].widgets[486].width\":[\"add\",\"4\"],\"templatedashboard.pages[74].widgets[486].height\":[\"add\",\"3\"],\"templatedashboard.pages[74].widgets[486].type\":[\"add\",\"item\"],\"templatedashboard.pages[74].widgets[486].fields[1267]\":[\"add\"],\"templatedashboard.pages[74].widgets[486].fields[1267].type\":[\"add\",\"4\"],\"templatedashboard.pages[74].widgets[486].fields[1267].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[74].widgets[486].fields[1267].value\":[\"add\",\"33\"],\"templatedashboard.pages[74].widgets[486].fields[1267].widget_fieldid\":[\"add\",\"1267\"],\"templatedashboard.pages[74].widgets[486].widgetid\":[\"add\",\"486\"],\"templatedashboard.pages[74].widgets[487]\":[\"add\"],\"templatedashboard.pages[74].widgets[487].x\":[\"add\",\"13\"],\"templatedashboard.pages[74].widgets[487].y\":[\"add\",\"1\"],\"templatedashboard.pages[74].widgets[487].width\":[\"add\",\"4\"],\"templatedashboard.pages[74].widgets[487].height\":[\"add\",\"3\"],\"templatedashboard.pages[74].widgets[487].type\":[\"add\",\"item\"],\"templatedashboard.pages[74].widgets[487].fields[1268]\":[\"add\"],\"templatedashboard.pages[74].widgets[487].fields[1268].type\":[\"add\",\"4\"],\"templatedashboard.pages[74].widgets[487].fields[1268].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[74].widgets[487].fields[1268].value\":[\"add\",\"36\"],\"templatedashboard.pages[74].widgets[487].fields[1268].widget_fieldid\":[\"add\",\"1268\"],\"templatedashboard.pages[74].widgets[487].widgetid\":[\"add\",\"487\"],\"templatedashboard.pages[74].dashboard_pageid\":[\"add\",\"74\"],\"templatedashboard.templateid\":[\"add\",\"11\"],\"templatedashboard.uuid\":[\"add\",\"63ea7334f9aa43c0a6b3572a7da908de\"],\"templatedashboard.dashboardid\":[\"add\",\"74\"]}'),('clcei453600014xiyhm6jbupk',1,'Admin',1672645786,'192.168.64.1',0,43,75,NULL,'t6_3','clcei453600004xiy37elhhrk','{\"templatedashboard.name\":[\"add\",\"t6_3\"],\"templatedashboard.pages[75]\":[\"add\"],\"templatedashboard.pages[75].dashboard_pageid\":[\"add\",\"75\"],\"templatedashboard.templateid\":[\"add\",\"11\"],\"templatedashboard.uuid\":[\"add\",\"ef5995be4ddb4877bf37bd5aa4e4e148\"],\"templatedashboard.dashboardid\":[\"add\",\"75\"]}'),('clcei4wvi00014xiyeu6xzzwp',1,'Admin',1672645822,'192.168.64.1',0,43,76,NULL,'t7_1','clcei4wvi00004xiyxmqc8dki','{\"templatedashboard.name\":[\"add\",\"t7_1\"],\"templatedashboard.pages[76]\":[\"add\"],\"templatedashboard.pages[76].widgets[488]\":[\"add\"],\"templatedashboard.pages[76].widgets[488].x\":[\"add\",\"1\"],\"templatedashboard.pages[76].widgets[488].width\":[\"add\",\"4\"],\"templatedashboard.pages[76].widgets[488].height\":[\"add\",\"3\"],\"templatedashboard.pages[76].widgets[488].type\":[\"add\",\"item\"],\"templatedashboard.pages[76].widgets[488].fields[1269]\":[\"add\"],\"templatedashboard.pages[76].widgets[488].fields[1269].type\":[\"add\",\"4\"],\"templatedashboard.pages[76].widgets[488].fields[1269].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[76].widgets[488].fields[1269].value\":[\"add\",\"39\"],\"templatedashboard.pages[76].widgets[488].fields[1269].widget_fieldid\":[\"add\",\"1269\"],\"templatedashboard.pages[76].widgets[488].widgetid\":[\"add\",\"488\"],\"templatedashboard.pages[76].widgets[489]\":[\"add\"],\"templatedashboard.pages[76].widgets[489].x\":[\"add\",\"5\"],\"templatedashboard.pages[76].widgets[489].y\":[\"add\",\"1\"],\"templatedashboard.pages[76].widgets[489].width\":[\"add\",\"4\"],\"templatedashboard.pages[76].widgets[489].height\":[\"add\",\"3\"],\"templatedashboard.pages[76].widgets[489].type\":[\"add\",\"item\"],\"templatedashboard.pages[76].widgets[489].fields[1270]\":[\"add\"],\"templatedashboard.pages[76].widgets[489].fields[1270].type\":[\"add\",\"4\"],\"templatedashboard.pages[76].widgets[489].fields[1270].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[76].widgets[489].fields[1270].value\":[\"add\",\"39\"],\"templatedashboard.pages[76].widgets[489].fields[1270].widget_fieldid\":[\"add\",\"1270\"],\"templatedashboard.pages[76].widgets[489].widgetid\":[\"add\",\"489\"],\"templatedashboard.pages[76].widgets[490]\":[\"add\"],\"templatedashboard.pages[76].widgets[490].x\":[\"add\",\"10\"],\"templatedashboard.pages[76].widgets[490].y\":[\"add\",\"1\"],\"templatedashboard.pages[76].widgets[490].width\":[\"add\",\"4\"],\"templatedashboard.pages[76].widgets[490].height\":[\"add\",\"3\"],\"templatedashboard.pages[76].widgets[490].type\":[\"add\",\"item\"],\"templatedashboard.pages[76].widgets[490].fields[1271]\":[\"add\"],\"templatedashboard.pages[76].widgets[490].fields[1271].type\":[\"add\",\"4\"],\"templatedashboard.pages[76].widgets[490].fields[1271].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[76].widgets[490].fields[1271].value\":[\"add\",\"39\"],\"templatedashboard.pages[76].widgets[490].fields[1271].widget_fieldid\":[\"add\",\"1271\"],\"templatedashboard.pages[76].widgets[490].widgetid\":[\"add\",\"490\"],\"templatedashboard.pages[76].widgets[491]\":[\"add\"],\"templatedashboard.pages[76].widgets[491].x\":[\"add\",\"14\"],\"templatedashboard.pages[76].widgets[491].y\":[\"add\",\"1\"],\"templatedashboard.pages[76].widgets[491].width\":[\"add\",\"4\"],\"templatedashboard.pages[76].widgets[491].height\":[\"add\",\"3\"],\"templatedashboard.pages[76].widgets[491].type\":[\"add\",\"item\"],\"templatedashboard.pages[76].widgets[491].fields[1272]\":[\"add\"],\"templatedashboard.pages[76].widgets[491].fields[1272].type\":[\"add\",\"4\"],\"templatedashboard.pages[76].widgets[491].fields[1272].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[76].widgets[491].fields[1272].value\":[\"add\",\"44\"],\"templatedashboard.pages[76].widgets[491].fields[1272].widget_fieldid\":[\"add\",\"1272\"],\"templatedashboard.pages[76].widgets[491].widgetid\":[\"add\",\"491\"],\"templatedashboard.pages[76].widgets[492]\":[\"add\"],\"templatedashboard.pages[76].widgets[492].x\":[\"add\",\"18\"],\"templatedashboard.pages[76].widgets[492].y\":[\"add\",\"1\"],\"templatedashboard.pages[76].widgets[492].width\":[\"add\",\"4\"],\"templatedashboard.pages[76].widgets[492].height\":[\"add\",\"3\"],\"templatedashboard.pages[76].widgets[492].type\":[\"add\",\"item\"],\"templatedashboard.pages[76].widgets[492].fields[1273]\":[\"add\"],\"templatedashboard.pages[76].widgets[492].fields[1273].type\":[\"add\",\"4\"],\"templatedashboard.pages[76].widgets[492].fields[1273].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[76].widgets[492].fields[1273].value\":[\"add\",\"60\"],\"templatedashboard.pages[76].widgets[492].fields[1273].widget_fieldid\":[\"add\",\"1273\"],\"templatedashboard.pages[76].widgets[492].widgetid\":[\"add\",\"492\"],\"templatedashboard.pages[76].widgets[493]\":[\"add\"],\"templatedashboard.pages[76].widgets[493].x\":[\"add\",\"2\"],\"templatedashboard.pages[76].widgets[493].y\":[\"add\",\"4\"],\"templatedashboard.pages[76].widgets[493].type\":[\"add\",\"item\"],\"templatedashboard.pages[76].widgets[493].fields[1274]\":[\"add\"],\"templatedashboard.pages[76].widgets[493].fields[1274].type\":[\"add\",\"4\"],\"templatedashboard.pages[76].widgets[493].fields[1274].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[76].widgets[493].fields[1274].value\":[\"add\",\"66\"],\"templatedashboard.pages[76].widgets[493].fields[1274].widget_fieldid\":[\"add\",\"1274\"],\"templatedashboard.pages[76].widgets[493].widgetid\":[\"add\",\"493\"],\"templatedashboard.pages[76].dashboard_pageid\":[\"add\",\"76\"],\"templatedashboard.templateid\":[\"add\",\"12\"],\"templatedashboard.uuid\":[\"add\",\"13e50f68bd4b41e5afe44aac517ff989\"],\"templatedashboard.dashboardid\":[\"add\",\"76\"]}'),('clcei5jf40001fqiyav889ea9',1,'Admin',1672645852,'192.168.64.1',0,43,77,NULL,'t7_2','clcei5jf40000fqiyelr6z4y8','{\"templatedashboard.name\":[\"add\",\"t7_2\"],\"templatedashboard.pages[77]\":[\"add\"],\"templatedashboard.pages[77].widgets[494]\":[\"add\"],\"templatedashboard.pages[77].widgets[494].x\":[\"add\",\"1\"],\"templatedashboard.pages[77].widgets[494].type\":[\"add\",\"item\"],\"templatedashboard.pages[77].widgets[494].fields[1275]\":[\"add\"],\"templatedashboard.pages[77].widgets[494].fields[1275].type\":[\"add\",\"4\"],\"templatedashboard.pages[77].widgets[494].fields[1275].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[77].widgets[494].fields[1275].value\":[\"add\",\"39\"],\"templatedashboard.pages[77].widgets[494].fields[1275].widget_fieldid\":[\"add\",\"1275\"],\"templatedashboard.pages[77].widgets[494].widgetid\":[\"add\",\"494\"],\"templatedashboard.pages[77].widgets[495]\":[\"add\"],\"templatedashboard.pages[77].widgets[495].x\":[\"add\",\"4\"],\"templatedashboard.pages[77].widgets[495].width\":[\"add\",\"4\"],\"templatedashboard.pages[77].widgets[495].height\":[\"add\",\"3\"],\"templatedashboard.pages[77].widgets[495].type\":[\"add\",\"item\"],\"templatedashboard.pages[77].widgets[495].fields[1276]\":[\"add\"],\"templatedashboard.pages[77].widgets[495].fields[1276].type\":[\"add\",\"4\"],\"templatedashboard.pages[77].widgets[495].fields[1276].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[77].widgets[495].fields[1276].value\":[\"add\",\"39\"],\"templatedashboard.pages[77].widgets[495].fields[1276].widget_fieldid\":[\"add\",\"1276\"],\"templatedashboard.pages[77].widgets[495].widgetid\":[\"add\",\"495\"],\"templatedashboard.pages[77].widgets[496]\":[\"add\"],\"templatedashboard.pages[77].widgets[496].x\":[\"add\",\"9\"],\"templatedashboard.pages[77].widgets[496].type\":[\"add\",\"item\"],\"templatedashboard.pages[77].widgets[496].fields[1277]\":[\"add\"],\"templatedashboard.pages[77].widgets[496].fields[1277].type\":[\"add\",\"4\"],\"templatedashboard.pages[77].widgets[496].fields[1277].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[77].widgets[496].fields[1277].value\":[\"add\",\"39\"],\"templatedashboard.pages[77].widgets[496].fields[1277].widget_fieldid\":[\"add\",\"1277\"],\"templatedashboard.pages[77].widgets[496].widgetid\":[\"add\",\"496\"],\"templatedashboard.pages[77].widgets[497]\":[\"add\"],\"templatedashboard.pages[77].widgets[497].x\":[\"add\",\"11\"],\"templatedashboard.pages[77].widgets[497].type\":[\"add\",\"item\"],\"templatedashboard.pages[77].widgets[497].fields[1278]\":[\"add\"],\"templatedashboard.pages[77].widgets[497].fields[1278].type\":[\"add\",\"4\"],\"templatedashboard.pages[77].widgets[497].fields[1278].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[77].widgets[497].fields[1278].value\":[\"add\",\"44\"],\"templatedashboard.pages[77].widgets[497].fields[1278].widget_fieldid\":[\"add\",\"1278\"],\"templatedashboard.pages[77].widgets[497].widgetid\":[\"add\",\"497\"],\"templatedashboard.pages[77].widgets[498]\":[\"add\"],\"templatedashboard.pages[77].widgets[498].x\":[\"add\",\"12\"],\"templatedashboard.pages[77].widgets[498].type\":[\"add\",\"item\"],\"templatedashboard.pages[77].widgets[498].fields[1279]\":[\"add\"],\"templatedashboard.pages[77].widgets[498].fields[1279].type\":[\"add\",\"4\"],\"templatedashboard.pages[77].widgets[498].fields[1279].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[77].widgets[498].fields[1279].value\":[\"add\",\"60\"],\"templatedashboard.pages[77].widgets[498].fields[1279].widget_fieldid\":[\"add\",\"1279\"],\"templatedashboard.pages[77].widgets[498].widgetid\":[\"add\",\"498\"],\"templatedashboard.pages[77].widgets[499]\":[\"add\"],\"templatedashboard.pages[77].widgets[499].x\":[\"add\",\"15\"],\"templatedashboard.pages[77].widgets[499].y\":[\"add\",\"1\"],\"templatedashboard.pages[77].widgets[499].width\":[\"add\",\"4\"],\"templatedashboard.pages[77].widgets[499].height\":[\"add\",\"3\"],\"templatedashboard.pages[77].widgets[499].type\":[\"add\",\"item\"],\"templatedashboard.pages[77].widgets[499].fields[1280]\":[\"add\"],\"templatedashboard.pages[77].widgets[499].fields[1280].type\":[\"add\",\"4\"],\"templatedashboard.pages[77].widgets[499].fields[1280].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[77].widgets[499].fields[1280].value\":[\"add\",\"66\"],\"templatedashboard.pages[77].widgets[499].fields[1280].widget_fieldid\":[\"add\",\"1280\"],\"templatedashboard.pages[77].widgets[499].widgetid\":[\"add\",\"499\"],\"templatedashboard.pages[77].dashboard_pageid\":[\"add\",\"77\"],\"templatedashboard.templateid\":[\"add\",\"12\"],\"templatedashboard.uuid\":[\"add\",\"1088bd2ca08845478aeeac3813e17a2b\"],\"templatedashboard.dashboardid\":[\"add\",\"77\"]}'),('clcei5ynk0001fqiya0po03l4',1,'Admin',1672645871,'192.168.64.1',0,43,78,NULL,'t7_3','clcei5ynk0000fqiyrkqk5zaw','{\"templatedashboard.name\":[\"add\",\"t7_3\"],\"templatedashboard.pages[78]\":[\"add\"],\"templatedashboard.pages[78].dashboard_pageid\":[\"add\",\"78\"],\"templatedashboard.templateid\":[\"add\",\"12\"],\"templatedashboard.uuid\":[\"add\",\"797249a0beeb4f99a549aeb4bcd92e48\"],\"templatedashboard.dashboardid\":[\"add\",\"78\"]}'),('clceijnv000014xiynmc5wwsv',1,'Admin',1672646510,'192.168.64.1',0,43,79,NULL,'t8_1','clceijnuz00004xiy8n8g7tt4','{\"templatedashboard.name\":[\"add\",\"t8_1\"],\"templatedashboard.pages[79]\":[\"add\"],\"templatedashboard.pages[79].widgets[500]\":[\"add\"],\"templatedashboard.pages[79].widgets[500].x\":[\"add\",\"1\"],\"templatedashboard.pages[79].widgets[500].width\":[\"add\",\"4\"],\"templatedashboard.pages[79].widgets[500].height\":[\"add\",\"3\"],\"templatedashboard.pages[79].widgets[500].type\":[\"add\",\"item\"],\"templatedashboard.pages[79].widgets[500].fields[1281]\":[\"add\"],\"templatedashboard.pages[79].widgets[500].fields[1281].type\":[\"add\",\"4\"],\"templatedashboard.pages[79].widgets[500].fields[1281].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[79].widgets[500].fields[1281].value\":[\"add\",\"49\"],\"templatedashboard.pages[79].widgets[500].fields[1281].widget_fieldid\":[\"add\",\"1281\"],\"templatedashboard.pages[79].widgets[500].widgetid\":[\"add\",\"500\"],\"templatedashboard.pages[79].widgets[501]\":[\"add\"],\"templatedashboard.pages[79].widgets[501].x\":[\"add\",\"5\"],\"templatedashboard.pages[79].widgets[501].width\":[\"add\",\"4\"],\"templatedashboard.pages[79].widgets[501].height\":[\"add\",\"3\"],\"templatedashboard.pages[79].widgets[501].type\":[\"add\",\"item\"],\"templatedashboard.pages[79].widgets[501].fields[1282]\":[\"add\"],\"templatedashboard.pages[79].widgets[501].fields[1282].type\":[\"add\",\"4\"],\"templatedashboard.pages[79].widgets[501].fields[1282].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[79].widgets[501].fields[1282].value\":[\"add\",\"49\"],\"templatedashboard.pages[79].widgets[501].fields[1282].widget_fieldid\":[\"add\",\"1282\"],\"templatedashboard.pages[79].widgets[501].widgetid\":[\"add\",\"501\"],\"templatedashboard.pages[79].widgets[502]\":[\"add\"],\"templatedashboard.pages[79].widgets[502].x\":[\"add\",\"11\"],\"templatedashboard.pages[79].widgets[502].width\":[\"add\",\"4\"],\"templatedashboard.pages[79].widgets[502].height\":[\"add\",\"3\"],\"templatedashboard.pages[79].widgets[502].type\":[\"add\",\"item\"],\"templatedashboard.pages[79].widgets[502].fields[1283]\":[\"add\"],\"templatedashboard.pages[79].widgets[502].fields[1283].type\":[\"add\",\"4\"],\"templatedashboard.pages[79].widgets[502].fields[1283].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[79].widgets[502].fields[1283].value\":[\"add\",\"49\"],\"templatedashboard.pages[79].widgets[502].fields[1283].widget_fieldid\":[\"add\",\"1283\"],\"templatedashboard.pages[79].widgets[502].widgetid\":[\"add\",\"502\"],\"templatedashboard.pages[79].widgets[503]\":[\"add\"],\"templatedashboard.pages[79].widgets[503].x\":[\"add\",\"16\"],\"templatedashboard.pages[79].widgets[503].y\":[\"add\",\"1\"],\"templatedashboard.pages[79].widgets[503].type\":[\"add\",\"item\"],\"templatedashboard.pages[79].widgets[503].fields[1284]\":[\"add\"],\"templatedashboard.pages[79].widgets[503].fields[1284].type\":[\"add\",\"4\"],\"templatedashboard.pages[79].widgets[503].fields[1284].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[79].widgets[503].fields[1284].value\":[\"add\",\"54\"],\"templatedashboard.pages[79].widgets[503].fields[1284].widget_fieldid\":[\"add\",\"1284\"],\"templatedashboard.pages[79].widgets[503].widgetid\":[\"add\",\"503\"],\"templatedashboard.pages[79].dashboard_pageid\":[\"add\",\"79\"],\"templatedashboard.templateid\":[\"add\",\"13\"],\"templatedashboard.uuid\":[\"add\",\"343c6e486b3a4ff79a6050ffe9e8b23c\"],\"templatedashboard.dashboardid\":[\"add\",\"79\"]}'),('clceik66e0001fqiyibgqdj1c',1,'Admin',1672646534,'192.168.64.1',0,43,80,NULL,'t8_2','clceik66d0000fqiy0onsqnc7','{\"templatedashboard.name\":[\"add\",\"t8_2\"],\"templatedashboard.pages[80]\":[\"add\"],\"templatedashboard.pages[80].widgets[504]\":[\"add\"],\"templatedashboard.pages[80].widgets[504].x\":[\"add\",\"1\"],\"templatedashboard.pages[80].widgets[504].y\":[\"add\",\"1\"],\"templatedashboard.pages[80].widgets[504].type\":[\"add\",\"item\"],\"templatedashboard.pages[80].widgets[504].fields[1285]\":[\"add\"],\"templatedashboard.pages[80].widgets[504].fields[1285].type\":[\"add\",\"4\"],\"templatedashboard.pages[80].widgets[504].fields[1285].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[80].widgets[504].fields[1285].value\":[\"add\",\"49\"],\"templatedashboard.pages[80].widgets[504].fields[1285].widget_fieldid\":[\"add\",\"1285\"],\"templatedashboard.pages[80].widgets[504].widgetid\":[\"add\",\"504\"],\"templatedashboard.pages[80].widgets[505]\":[\"add\"],\"templatedashboard.pages[80].widgets[505].x\":[\"add\",\"3\"],\"templatedashboard.pages[80].widgets[505].width\":[\"add\",\"4\"],\"templatedashboard.pages[80].widgets[505].height\":[\"add\",\"3\"],\"templatedashboard.pages[80].widgets[505].type\":[\"add\",\"item\"],\"templatedashboard.pages[80].widgets[505].fields[1286]\":[\"add\"],\"templatedashboard.pages[80].widgets[505].fields[1286].type\":[\"add\",\"4\"],\"templatedashboard.pages[80].widgets[505].fields[1286].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[80].widgets[505].fields[1286].value\":[\"add\",\"49\"],\"templatedashboard.pages[80].widgets[505].fields[1286].widget_fieldid\":[\"add\",\"1286\"],\"templatedashboard.pages[80].widgets[505].widgetid\":[\"add\",\"505\"],\"templatedashboard.pages[80].widgets[506]\":[\"add\"],\"templatedashboard.pages[80].widgets[506].x\":[\"add\",\"7\"],\"templatedashboard.pages[80].widgets[506].type\":[\"add\",\"item\"],\"templatedashboard.pages[80].widgets[506].fields[1287]\":[\"add\"],\"templatedashboard.pages[80].widgets[506].fields[1287].type\":[\"add\",\"4\"],\"templatedashboard.pages[80].widgets[506].fields[1287].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[80].widgets[506].fields[1287].value\":[\"add\",\"49\"],\"templatedashboard.pages[80].widgets[506].fields[1287].widget_fieldid\":[\"add\",\"1287\"],\"templatedashboard.pages[80].widgets[506].widgetid\":[\"add\",\"506\"],\"templatedashboard.pages[80].widgets[507]\":[\"add\"],\"templatedashboard.pages[80].widgets[507].x\":[\"add\",\"9\"],\"templatedashboard.pages[80].widgets[507].width\":[\"add\",\"4\"],\"templatedashboard.pages[80].widgets[507].height\":[\"add\",\"3\"],\"templatedashboard.pages[80].widgets[507].type\":[\"add\",\"item\"],\"templatedashboard.pages[80].widgets[507].fields[1288]\":[\"add\"],\"templatedashboard.pages[80].widgets[507].fields[1288].type\":[\"add\",\"4\"],\"templatedashboard.pages[80].widgets[507].fields[1288].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[80].widgets[507].fields[1288].value\":[\"add\",\"54\"],\"templatedashboard.pages[80].widgets[507].fields[1288].widget_fieldid\":[\"add\",\"1288\"],\"templatedashboard.pages[80].widgets[507].widgetid\":[\"add\",\"507\"],\"templatedashboard.pages[80].dashboard_pageid\":[\"add\",\"80\"],\"templatedashboard.templateid\":[\"add\",\"13\"],\"templatedashboard.uuid\":[\"add\",\"b0595596f2044d9caeba93dbd355f489\"],\"templatedashboard.dashboardid\":[\"add\",\"80\"]}'),('clceikco500014ciyloo7f29y',1,'Admin',1672646543,'192.168.64.1',0,43,81,NULL,'t8_3','clceikco400004ciyvbfy11yb','{\"templatedashboard.name\":[\"add\",\"t8_3\"],\"templatedashboard.pages[81]\":[\"add\"],\"templatedashboard.pages[81].dashboard_pageid\":[\"add\",\"81\"],\"templatedashboard.templateid\":[\"add\",\"13\"],\"templatedashboard.uuid\":[\"add\",\"742afc18887247ed8fdd5eb8f33b8f56\"],\"templatedashboard.dashboardid\":[\"add\",\"81\"]}'),('clceil72s0001fqiywot8f9hv',1,'Admin',1672646582,'192.168.64.1',0,43,82,NULL,'t9_1','clceil72s0000fqiyfgkh4mhi','{\"templatedashboard.name\":[\"add\",\"t9_1\"],\"templatedashboard.pages[82]\":[\"add\"],\"templatedashboard.pages[82].widgets[508]\":[\"add\"],\"templatedashboard.pages[82].widgets[508].width\":[\"add\",\"4\"],\"templatedashboard.pages[82].widgets[508].height\":[\"add\",\"3\"],\"templatedashboard.pages[82].widgets[508].type\":[\"add\",\"item\"],\"templatedashboard.pages[82].widgets[508].fields[1289]\":[\"add\"],\"templatedashboard.pages[82].widgets[508].fields[1289].type\":[\"add\",\"4\"],\"templatedashboard.pages[82].widgets[508].fields[1289].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[82].widgets[508].fields[1289].value\":[\"add\",\"59\"],\"templatedashboard.pages[82].widgets[508].fields[1289].widget_fieldid\":[\"add\",\"1289\"],\"templatedashboard.pages[82].widgets[508].widgetid\":[\"add\",\"508\"],\"templatedashboard.pages[82].widgets[509]\":[\"add\"],\"templatedashboard.pages[82].widgets[509].x\":[\"add\",\"6\"],\"templatedashboard.pages[82].widgets[509].type\":[\"add\",\"item\"],\"templatedashboard.pages[82].widgets[509].fields[1290]\":[\"add\"],\"templatedashboard.pages[82].widgets[509].fields[1290].type\":[\"add\",\"4\"],\"templatedashboard.pages[82].widgets[509].fields[1290].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[82].widgets[509].fields[1290].value\":[\"add\",\"59\"],\"templatedashboard.pages[82].widgets[509].fields[1290].widget_fieldid\":[\"add\",\"1290\"],\"templatedashboard.pages[82].widgets[509].widgetid\":[\"add\",\"509\"],\"templatedashboard.pages[82].widgets[510]\":[\"add\"],\"templatedashboard.pages[82].widgets[510].x\":[\"add\",\"7\"],\"templatedashboard.pages[82].widgets[510].width\":[\"add\",\"4\"],\"templatedashboard.pages[82].widgets[510].height\":[\"add\",\"3\"],\"templatedashboard.pages[82].widgets[510].type\":[\"add\",\"item\"],\"templatedashboard.pages[82].widgets[510].fields[1291]\":[\"add\"],\"templatedashboard.pages[82].widgets[510].fields[1291].type\":[\"add\",\"4\"],\"templatedashboard.pages[82].widgets[510].fields[1291].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[82].widgets[510].fields[1291].value\":[\"add\",\"59\"],\"templatedashboard.pages[82].widgets[510].fields[1291].widget_fieldid\":[\"add\",\"1291\"],\"templatedashboard.pages[82].widgets[510].widgetid\":[\"add\",\"510\"],\"templatedashboard.pages[82].widgets[511]\":[\"add\"],\"templatedashboard.pages[82].widgets[511].x\":[\"add\",\"12\"],\"templatedashboard.pages[82].widgets[511].y\":[\"add\",\"1\"],\"templatedashboard.pages[82].widgets[511].width\":[\"add\",\"4\"],\"templatedashboard.pages[82].widgets[511].height\":[\"add\",\"3\"],\"templatedashboard.pages[82].widgets[511].type\":[\"add\",\"item\"],\"templatedashboard.pages[82].widgets[511].fields[1292]\":[\"add\"],\"templatedashboard.pages[82].widgets[511].fields[1292].type\":[\"add\",\"4\"],\"templatedashboard.pages[82].widgets[511].fields[1292].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[82].widgets[511].fields[1292].value\":[\"add\",\"65\"],\"templatedashboard.pages[82].widgets[511].fields[1292].widget_fieldid\":[\"add\",\"1292\"],\"templatedashboard.pages[82].widgets[511].widgetid\":[\"add\",\"511\"],\"templatedashboard.pages[82].dashboard_pageid\":[\"add\",\"82\"],\"templatedashboard.templateid\":[\"add\",\"14\"],\"templatedashboard.uuid\":[\"add\",\"b1c077d19c194124b46fedffbc3ad29a\"],\"templatedashboard.dashboardid\":[\"add\",\"82\"]}'),('clceilojx00014xiy7yxxzp58',1,'Admin',1672646605,'192.168.64.1',0,43,83,NULL,'t9_2','clceilojw00004xiy4jdifw7t','{\"templatedashboard.name\":[\"add\",\"t9_2\"],\"templatedashboard.pages[83]\":[\"add\"],\"templatedashboard.pages[83].widgets[512]\":[\"add\"],\"templatedashboard.pages[83].widgets[512].x\":[\"add\",\"1\"],\"templatedashboard.pages[83].widgets[512].y\":[\"add\",\"1\"],\"templatedashboard.pages[83].widgets[512].width\":[\"add\",\"4\"],\"templatedashboard.pages[83].widgets[512].height\":[\"add\",\"3\"],\"templatedashboard.pages[83].widgets[512].type\":[\"add\",\"item\"],\"templatedashboard.pages[83].widgets[512].fields[1293]\":[\"add\"],\"templatedashboard.pages[83].widgets[512].fields[1293].type\":[\"add\",\"4\"],\"templatedashboard.pages[83].widgets[512].fields[1293].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[83].widgets[512].fields[1293].value\":[\"add\",\"59\"],\"templatedashboard.pages[83].widgets[512].fields[1293].widget_fieldid\":[\"add\",\"1293\"],\"templatedashboard.pages[83].widgets[512].widgetid\":[\"add\",\"512\"],\"templatedashboard.pages[83].widgets[513]\":[\"add\"],\"templatedashboard.pages[83].widgets[513].x\":[\"add\",\"5\"],\"templatedashboard.pages[83].widgets[513].y\":[\"add\",\"1\"],\"templatedashboard.pages[83].widgets[513].width\":[\"add\",\"4\"],\"templatedashboard.pages[83].widgets[513].height\":[\"add\",\"3\"],\"templatedashboard.pages[83].widgets[513].type\":[\"add\",\"item\"],\"templatedashboard.pages[83].widgets[513].fields[1294]\":[\"add\"],\"templatedashboard.pages[83].widgets[513].fields[1294].type\":[\"add\",\"4\"],\"templatedashboard.pages[83].widgets[513].fields[1294].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[83].widgets[513].fields[1294].value\":[\"add\",\"59\"],\"templatedashboard.pages[83].widgets[513].fields[1294].widget_fieldid\":[\"add\",\"1294\"],\"templatedashboard.pages[83].widgets[513].widgetid\":[\"add\",\"513\"],\"templatedashboard.pages[83].widgets[514]\":[\"add\"],\"templatedashboard.pages[83].widgets[514].x\":[\"add\",\"11\"],\"templatedashboard.pages[83].widgets[514].y\":[\"add\",\"1\"],\"templatedashboard.pages[83].widgets[514].type\":[\"add\",\"item\"],\"templatedashboard.pages[83].widgets[514].fields[1295]\":[\"add\"],\"templatedashboard.pages[83].widgets[514].fields[1295].type\":[\"add\",\"4\"],\"templatedashboard.pages[83].widgets[514].fields[1295].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[83].widgets[514].fields[1295].value\":[\"add\",\"59\"],\"templatedashboard.pages[83].widgets[514].fields[1295].widget_fieldid\":[\"add\",\"1295\"],\"templatedashboard.pages[83].widgets[514].widgetid\":[\"add\",\"514\"],\"templatedashboard.pages[83].widgets[515]\":[\"add\"],\"templatedashboard.pages[83].widgets[515].x\":[\"add\",\"13\"],\"templatedashboard.pages[83].widgets[515].y\":[\"add\",\"1\"],\"templatedashboard.pages[83].widgets[515].width\":[\"add\",\"4\"],\"templatedashboard.pages[83].widgets[515].height\":[\"add\",\"3\"],\"templatedashboard.pages[83].widgets[515].type\":[\"add\",\"item\"],\"templatedashboard.pages[83].widgets[515].fields[1296]\":[\"add\"],\"templatedashboard.pages[83].widgets[515].fields[1296].type\":[\"add\",\"4\"],\"templatedashboard.pages[83].widgets[515].fields[1296].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[83].widgets[515].fields[1296].value\":[\"add\",\"65\"],\"templatedashboard.pages[83].widgets[515].fields[1296].widget_fieldid\":[\"add\",\"1296\"],\"templatedashboard.pages[83].widgets[515].widgetid\":[\"add\",\"515\"],\"templatedashboard.pages[83].dashboard_pageid\":[\"add\",\"83\"],\"templatedashboard.templateid\":[\"add\",\"14\"],\"templatedashboard.uuid\":[\"add\",\"c802a70b8f3e4b8f91e0f1ccc379beea\"],\"templatedashboard.dashboardid\":[\"add\",\"83\"]}'),('clceilu8q00014ciykbv5hvjn',1,'Admin',1672646612,'192.168.64.1',0,43,84,NULL,'t9_3','clceilu8q00004ciyvvpj0ndh','{\"templatedashboard.name\":[\"add\",\"t9_3\"],\"templatedashboard.pages[84]\":[\"add\"],\"templatedashboard.pages[84].dashboard_pageid\":[\"add\",\"84\"],\"templatedashboard.templateid\":[\"add\",\"14\"],\"templatedashboard.uuid\":[\"add\",\"c99367ebae2c4ad28766ee579df51952\"],\"templatedashboard.dashboardid\":[\"add\",\"84\"]}'),('clceimfnm00014ciy333xbd6e',1,'Admin',1672646640,'192.168.64.1',0,43,85,NULL,'t10_1','clceimfnm00004ciy7wvw9nay','{\"templatedashboard.name\":[\"add\",\"t10_1\"],\"templatedashboard.pages[85]\":[\"add\"],\"templatedashboard.pages[85].widgets[516]\":[\"add\"],\"templatedashboard.pages[85].widgets[516].x\":[\"add\",\"1\"],\"templatedashboard.pages[85].widgets[516].width\":[\"add\",\"4\"],\"templatedashboard.pages[85].widgets[516].height\":[\"add\",\"3\"],\"templatedashboard.pages[85].widgets[516].type\":[\"add\",\"item\"],\"templatedashboard.pages[85].widgets[516].fields[1297]\":[\"add\"],\"templatedashboard.pages[85].widgets[516].fields[1297].type\":[\"add\",\"4\"],\"templatedashboard.pages[85].widgets[516].fields[1297].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[85].widgets[516].fields[1297].value\":[\"add\",\"71\"],\"templatedashboard.pages[85].widgets[516].fields[1297].widget_fieldid\":[\"add\",\"1297\"],\"templatedashboard.pages[85].widgets[516].widgetid\":[\"add\",\"516\"],\"templatedashboard.pages[85].widgets[517]\":[\"add\"],\"templatedashboard.pages[85].widgets[517].x\":[\"add\",\"6\"],\"templatedashboard.pages[85].widgets[517].width\":[\"add\",\"4\"],\"templatedashboard.pages[85].widgets[517].height\":[\"add\",\"3\"],\"templatedashboard.pages[85].widgets[517].type\":[\"add\",\"item\"],\"templatedashboard.pages[85].widgets[517].fields[1298]\":[\"add\"],\"templatedashboard.pages[85].widgets[517].fields[1298].type\":[\"add\",\"4\"],\"templatedashboard.pages[85].widgets[517].fields[1298].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[85].widgets[517].fields[1298].value\":[\"add\",\"71\"],\"templatedashboard.pages[85].widgets[517].fields[1298].widget_fieldid\":[\"add\",\"1298\"],\"templatedashboard.pages[85].widgets[517].widgetid\":[\"add\",\"517\"],\"templatedashboard.pages[85].widgets[518]\":[\"add\"],\"templatedashboard.pages[85].widgets[518].x\":[\"add\",\"11\"],\"templatedashboard.pages[85].widgets[518].y\":[\"add\",\"1\"],\"templatedashboard.pages[85].widgets[518].width\":[\"add\",\"4\"],\"templatedashboard.pages[85].widgets[518].height\":[\"add\",\"3\"],\"templatedashboard.pages[85].widgets[518].type\":[\"add\",\"item\"],\"templatedashboard.pages[85].widgets[518].fields[1299]\":[\"add\"],\"templatedashboard.pages[85].widgets[518].fields[1299].type\":[\"add\",\"4\"],\"templatedashboard.pages[85].widgets[518].fields[1299].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[85].widgets[518].fields[1299].value\":[\"add\",\"71\"],\"templatedashboard.pages[85].widgets[518].fields[1299].widget_fieldid\":[\"add\",\"1299\"],\"templatedashboard.pages[85].widgets[518].widgetid\":[\"add\",\"518\"],\"templatedashboard.pages[85].widgets[519]\":[\"add\"],\"templatedashboard.pages[85].widgets[519].x\":[\"add\",\"15\"],\"templatedashboard.pages[85].widgets[519].y\":[\"add\",\"1\"],\"templatedashboard.pages[85].widgets[519].width\":[\"add\",\"4\"],\"templatedashboard.pages[85].widgets[519].height\":[\"add\",\"3\"],\"templatedashboard.pages[85].widgets[519].type\":[\"add\",\"item\"],\"templatedashboard.pages[85].widgets[519].fields[1300]\":[\"add\"],\"templatedashboard.pages[85].widgets[519].fields[1300].type\":[\"add\",\"4\"],\"templatedashboard.pages[85].widgets[519].fields[1300].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[85].widgets[519].fields[1300].value\":[\"add\",\"75\"],\"templatedashboard.pages[85].widgets[519].fields[1300].widget_fieldid\":[\"add\",\"1300\"],\"templatedashboard.pages[85].widgets[519].widgetid\":[\"add\",\"519\"],\"templatedashboard.pages[85].dashboard_pageid\":[\"add\",\"85\"],\"templatedashboard.templateid\":[\"add\",\"15\"],\"templatedashboard.uuid\":[\"add\",\"8feb14ec4c664a19b289cbd091706943\"],\"templatedashboard.dashboardid\":[\"add\",\"85\"]}'),('clceimves0001fqiyhkkhn2bi',1,'Admin',1672646660,'192.168.64.1',0,43,86,NULL,'t10_2','clceimves0000fqiyjeucmbwg','{\"templatedashboard.name\":[\"add\",\"t10_2\"],\"templatedashboard.pages[86]\":[\"add\"],\"templatedashboard.pages[86].widgets[520]\":[\"add\"],\"templatedashboard.pages[86].widgets[520].width\":[\"add\",\"4\"],\"templatedashboard.pages[86].widgets[520].height\":[\"add\",\"3\"],\"templatedashboard.pages[86].widgets[520].type\":[\"add\",\"item\"],\"templatedashboard.pages[86].widgets[520].fields[1301]\":[\"add\"],\"templatedashboard.pages[86].widgets[520].fields[1301].type\":[\"add\",\"4\"],\"templatedashboard.pages[86].widgets[520].fields[1301].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[86].widgets[520].fields[1301].value\":[\"add\",\"71\"],\"templatedashboard.pages[86].widgets[520].fields[1301].widget_fieldid\":[\"add\",\"1301\"],\"templatedashboard.pages[86].widgets[520].widgetid\":[\"add\",\"520\"],\"templatedashboard.pages[86].widgets[521]\":[\"add\"],\"templatedashboard.pages[86].widgets[521].x\":[\"add\",\"5\"],\"templatedashboard.pages[86].widgets[521].type\":[\"add\",\"item\"],\"templatedashboard.pages[86].widgets[521].fields[1302]\":[\"add\"],\"templatedashboard.pages[86].widgets[521].fields[1302].type\":[\"add\",\"4\"],\"templatedashboard.pages[86].widgets[521].fields[1302].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[86].widgets[521].fields[1302].value\":[\"add\",\"71\"],\"templatedashboard.pages[86].widgets[521].fields[1302].widget_fieldid\":[\"add\",\"1302\"],\"templatedashboard.pages[86].widgets[521].widgetid\":[\"add\",\"521\"],\"templatedashboard.pages[86].widgets[522]\":[\"add\"],\"templatedashboard.pages[86].widgets[522].x\":[\"add\",\"8\"],\"templatedashboard.pages[86].widgets[522].type\":[\"add\",\"item\"],\"templatedashboard.pages[86].widgets[522].fields[1303]\":[\"add\"],\"templatedashboard.pages[86].widgets[522].fields[1303].type\":[\"add\",\"4\"],\"templatedashboard.pages[86].widgets[522].fields[1303].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[86].widgets[522].fields[1303].value\":[\"add\",\"71\"],\"templatedashboard.pages[86].widgets[522].fields[1303].widget_fieldid\":[\"add\",\"1303\"],\"templatedashboard.pages[86].widgets[522].widgetid\":[\"add\",\"522\"],\"templatedashboard.pages[86].widgets[523]\":[\"add\"],\"templatedashboard.pages[86].widgets[523].x\":[\"add\",\"12\"],\"templatedashboard.pages[86].widgets[523].type\":[\"add\",\"item\"],\"templatedashboard.pages[86].widgets[523].fields[1304]\":[\"add\"],\"templatedashboard.pages[86].widgets[523].fields[1304].type\":[\"add\",\"4\"],\"templatedashboard.pages[86].widgets[523].fields[1304].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[86].widgets[523].fields[1304].value\":[\"add\",\"75\"],\"templatedashboard.pages[86].widgets[523].fields[1304].widget_fieldid\":[\"add\",\"1304\"],\"templatedashboard.pages[86].widgets[523].widgetid\":[\"add\",\"523\"],\"templatedashboard.pages[86].dashboard_pageid\":[\"add\",\"86\"],\"templatedashboard.templateid\":[\"add\",\"15\"],\"templatedashboard.uuid\":[\"add\",\"babb87dae7b4483bb638f6c751438cef\"],\"templatedashboard.dashboardid\":[\"add\",\"86\"]}'),('clcein1ba00014xiy1lt5mjy2',1,'Admin',1672646668,'192.168.64.1',0,43,87,NULL,'t10_3','clcein1ba00004xiyr3kjub84','{\"templatedashboard.name\":[\"add\",\"t10_3\"],\"templatedashboard.pages[87]\":[\"add\"],\"templatedashboard.pages[87].dashboard_pageid\":[\"add\",\"87\"],\"templatedashboard.templateid\":[\"add\",\"15\"],\"templatedashboard.uuid\":[\"add\",\"70a54fc51ff44060bb0959f24e66f5da\"],\"templatedashboard.dashboardid\":[\"add\",\"87\"]}'),('clceio4nr00014ciy3fsok66y',1,'Admin',1672646719,'192.168.64.1',1,43,58,NULL,'t1_1','clceio4nq00004ciy4izgp9sm','{\"templatedashboard.pages[88]\":[\"add\"],\"templatedashboard.pages[88].widgets[524]\":[\"add\"],\"templatedashboard.pages[88].widgets[524].fields[1305]\":[\"add\"],\"templatedashboard.pages[88].name\":[\"add\",\"p2\"],\"templatedashboard.pages[88].widgets[524].x\":[\"add\",\"3\"],\"templatedashboard.pages[88].widgets[524].y\":[\"add\",\"1\"],\"templatedashboard.pages[88].widgets[524].width\":[\"add\",\"4\"],\"templatedashboard.pages[88].widgets[524].height\":[\"add\",\"3\"],\"templatedashboard.pages[88].widgets[524].type\":[\"add\",\"item\"],\"templatedashboard.pages[88].widgets[524].fields[1305].type\":[\"add\",\"4\"],\"templatedashboard.pages[88].widgets[524].fields[1305].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[88].widgets[524].fields[1305].value\":[\"add\",\"31\"],\"templatedashboard.pages[88].widgets[524].fields[1305].widget_fieldid\":[\"add\",\"1305\"],\"templatedashboard.pages[88].widgets[524].widgetid\":[\"add\",\"524\"],\"templatedashboard.pages[88].dashboard_pageid\":[\"add\",\"88\"]}'),('clceioekf00014ciypbd4uyef',1,'Admin',1672646732,'192.168.64.1',1,43,59,NULL,'t1_2','clceioekf00004ciygz5a4am7','{\"templatedashboard.pages[89]\":[\"add\"],\"templatedashboard.pages[89].widgets[525]\":[\"add\"],\"templatedashboard.pages[89].widgets[525].fields[1306]\":[\"add\"],\"templatedashboard.pages[89].name\":[\"add\",\"p2\"],\"templatedashboard.pages[89].widgets[525].x\":[\"add\",\"1\"],\"templatedashboard.pages[89].widgets[525].width\":[\"add\",\"4\"],\"templatedashboard.pages[89].widgets[525].height\":[\"add\",\"3\"],\"templatedashboard.pages[89].widgets[525].type\":[\"add\",\"item\"],\"templatedashboard.pages[89].widgets[525].fields[1306].type\":[\"add\",\"4\"],\"templatedashboard.pages[89].widgets[525].fields[1306].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[89].widgets[525].fields[1306].value\":[\"add\",\"31\"],\"templatedashboard.pages[89].widgets[525].fields[1306].widget_fieldid\":[\"add\",\"1306\"],\"templatedashboard.pages[89].widgets[525].widgetid\":[\"add\",\"525\"],\"templatedashboard.pages[89].dashboard_pageid\":[\"add\",\"89\"]}'),('clceiq83y00014xiy2hbibmhu',1,'Admin',1672646817,'192.168.64.1',1,43,61,NULL,'t2_1','clceiq83x00004xiybd3kt192','{\"templatedashboard.pages[90]\":[\"add\"],\"templatedashboard.pages[90].widgets[526]\":[\"add\"],\"templatedashboard.pages[90].widgets[526].fields[1307]\":[\"add\"],\"templatedashboard.pages[90].name\":[\"add\",\"p2\"],\"templatedashboard.pages[90].widgets[526].x\":[\"add\",\"3\"],\"templatedashboard.pages[90].widgets[526].y\":[\"add\",\"1\"],\"templatedashboard.pages[90].widgets[526].width\":[\"add\",\"4\"],\"templatedashboard.pages[90].widgets[526].height\":[\"add\",\"3\"],\"templatedashboard.pages[90].widgets[526].type\":[\"add\",\"item\"],\"templatedashboard.pages[90].widgets[526].fields[1307].type\":[\"add\",\"4\"],\"templatedashboard.pages[90].widgets[526].fields[1307].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[90].widgets[526].fields[1307].value\":[\"add\",\"76\"],\"templatedashboard.pages[90].widgets[526].fields[1307].widget_fieldid\":[\"add\",\"1307\"],\"templatedashboard.pages[90].widgets[526].widgetid\":[\"add\",\"526\"],\"templatedashboard.pages[90].dashboard_pageid\":[\"add\",\"90\"]}'),('clceiqlpb0001fqiydmsulfbg',1,'Admin',1672646834,'192.168.64.1',1,43,62,NULL,'t2_2','clceiqlpb0000fqiyojwh4pfy','{\"templatedashboard.pages[91]\":[\"add\"],\"templatedashboard.pages[91].widgets[527]\":[\"add\"],\"templatedashboard.pages[91].widgets[527].fields[1308]\":[\"add\"],\"templatedashboard.pages[91].name\":[\"add\",\"p2\"],\"templatedashboard.pages[91].widgets[527].x\":[\"add\",\"3\"],\"templatedashboard.pages[91].widgets[527].y\":[\"add\",\"1\"],\"templatedashboard.pages[91].widgets[527].type\":[\"add\",\"item\"],\"templatedashboard.pages[91].widgets[527].fields[1308].type\":[\"add\",\"4\"],\"templatedashboard.pages[91].widgets[527].fields[1308].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[91].widgets[527].fields[1308].value\":[\"add\",\"76\"],\"templatedashboard.pages[91].widgets[527].fields[1308].widget_fieldid\":[\"add\",\"1308\"],\"templatedashboard.pages[91].widgets[527].widgetid\":[\"add\",\"527\"],\"templatedashboard.pages[91].dashboard_pageid\":[\"add\",\"91\"]}'),('clceis6yw00014xiyzh77rdla',1,'Admin',1672646908,'192.168.64.1',1,43,67,NULL,'t4_1','clceis6yw00004xiy3suabmto','{\"templatedashboard.pages[92]\":[\"add\"],\"templatedashboard.pages[92].widgets[528]\":[\"add\"],\"templatedashboard.pages[92].widgets[528].fields[1309]\":[\"add\"],\"templatedashboard.pages[92].name\":[\"add\",\"p2\"],\"templatedashboard.pages[92].widgets[528].x\":[\"add\",\"3\"],\"templatedashboard.pages[92].widgets[528].type\":[\"add\",\"item\"],\"templatedashboard.pages[92].widgets[528].fields[1309].type\":[\"add\",\"4\"],\"templatedashboard.pages[92].widgets[528].fields[1309].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[92].widgets[528].fields[1309].value\":[\"add\",\"67\"],\"templatedashboard.pages[92].widgets[528].fields[1309].widget_fieldid\":[\"add\",\"1309\"],\"templatedashboard.pages[92].widgets[528].widgetid\":[\"add\",\"528\"],\"templatedashboard.pages[92].dashboard_pageid\":[\"add\",\"92\"]}'),('clceishhg00014xiy1jgccpyz',1,'Admin',1672646922,'192.168.64.1',1,43,68,NULL,'t4_2','clceishhf00004xiytze7vwhk','{\"templatedashboard.pages[93]\":[\"add\"],\"templatedashboard.pages[93].widgets[529]\":[\"add\"],\"templatedashboard.pages[93].widgets[529].fields[1310]\":[\"add\"],\"templatedashboard.pages[93].name\":[\"add\",\"p2\"],\"templatedashboard.pages[93].widgets[529].x\":[\"add\",\"4\"],\"templatedashboard.pages[93].widgets[529].y\":[\"add\",\"1\"],\"templatedashboard.pages[93].widgets[529].width\":[\"add\",\"4\"],\"templatedashboard.pages[93].widgets[529].height\":[\"add\",\"3\"],\"templatedashboard.pages[93].widgets[529].type\":[\"add\",\"item\"],\"templatedashboard.pages[93].widgets[529].fields[1310].type\":[\"add\",\"4\"],\"templatedashboard.pages[93].widgets[529].fields[1310].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[93].widgets[529].fields[1310].value\":[\"add\",\"67\"],\"templatedashboard.pages[93].widgets[529].fields[1310].widget_fieldid\":[\"add\",\"1310\"],\"templatedashboard.pages[93].widgets[529].widgetid\":[\"add\",\"529\"],\"templatedashboard.pages[93].dashboard_pageid\":[\"add\",\"93\"]}'),('clceit58s00014ciyz349ni1k',1,'Admin',1672646953,'192.168.64.1',1,43,70,NULL,'t5_1','clceit58s00004ciyuxtr8dcz','{\"templatedashboard.pages[94]\":[\"add\"],\"templatedashboard.pages[94].widgets[530]\":[\"add\"],\"templatedashboard.pages[94].widgets[530].fields[1311]\":[\"add\"],\"templatedashboard.pages[94].name\":[\"add\",\"p2\"],\"templatedashboard.pages[94].widgets[530].x\":[\"add\",\"2\"],\"templatedashboard.pages[94].widgets[530].type\":[\"add\",\"item\"],\"templatedashboard.pages[94].widgets[530].fields[1311].type\":[\"add\",\"4\"],\"templatedashboard.pages[94].widgets[530].fields[1311].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[94].widgets[530].fields[1311].value\":[\"add\",\"30\"],\"templatedashboard.pages[94].widgets[530].fields[1311].widget_fieldid\":[\"add\",\"1311\"],\"templatedashboard.pages[94].widgets[530].widgetid\":[\"add\",\"530\"],\"templatedashboard.pages[94].dashboard_pageid\":[\"add\",\"94\"]}'),('clceitbzv00014ciybkdtdwo3',1,'Admin',1672646962,'192.168.64.1',1,43,71,NULL,'t5_2','clceitbzv00004ciy5vtl13bi','{\"templatedashboard.pages[95]\":[\"add\"],\"templatedashboard.pages[95].name\":[\"add\",\"p2\"],\"templatedashboard.pages[95].dashboard_pageid\":[\"add\",\"95\"]}'),('clceitxec0001fqiy53odqeh6',1,'Admin',1672646989,'192.168.64.1',1,43,73,NULL,'t6_1','clceitxec0000fqiyzfpir9oc','{\"templatedashboard.pages[96]\":[\"add\"],\"templatedashboard.pages[96].widgets[531]\":[\"add\"],\"templatedashboard.pages[96].widgets[531].fields[1312]\":[\"add\"],\"templatedashboard.pages[96].name\":[\"add\",\"p2\"],\"templatedashboard.pages[96].widgets[531].x\":[\"add\",\"2\"],\"templatedashboard.pages[96].widgets[531].y\":[\"add\",\"1\"],\"templatedashboard.pages[96].widgets[531].width\":[\"add\",\"4\"],\"templatedashboard.pages[96].widgets[531].height\":[\"add\",\"3\"],\"templatedashboard.pages[96].widgets[531].type\":[\"add\",\"item\"],\"templatedashboard.pages[96].widgets[531].fields[1312].type\":[\"add\",\"4\"],\"templatedashboard.pages[96].widgets[531].fields[1312].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[96].widgets[531].fields[1312].value\":[\"add\",\"36\"],\"templatedashboard.pages[96].widgets[531].fields[1312].widget_fieldid\":[\"add\",\"1312\"],\"templatedashboard.pages[96].widgets[531].widgetid\":[\"add\",\"531\"],\"templatedashboard.pages[96].dashboard_pageid\":[\"add\",\"96\"]}'),('clceiu4m10001fqiy9rtkalml',1,'Admin',1672646999,'192.168.64.1',1,43,74,NULL,'t6_2','clceiu4m10000fqiyw341c0oo','{\"templatedashboard.pages[97]\":[\"add\"],\"templatedashboard.pages[97].name\":[\"add\",\"p2\"],\"templatedashboard.pages[97].dashboard_pageid\":[\"add\",\"97\"]}'),('clceiuqly0001fqiy57hf4nx3',1,'Admin',1672647027,'192.168.64.1',1,43,76,NULL,'t7_1','clceiuqlx0000fqiyau5oc2rz','{\"templatedashboard.pages[98]\":[\"add\"],\"templatedashboard.pages[98].widgets[532]\":[\"add\"],\"templatedashboard.pages[98].widgets[532].fields[1313]\":[\"add\"],\"templatedashboard.pages[98].name\":[\"add\",\"p2\"],\"templatedashboard.pages[98].widgets[532].x\":[\"add\",\"2\"],\"templatedashboard.pages[98].widgets[532].y\":[\"add\",\"1\"],\"templatedashboard.pages[98].widgets[532].type\":[\"add\",\"item\"],\"templatedashboard.pages[98].widgets[532].fields[1313].type\":[\"add\",\"4\"],\"templatedashboard.pages[98].widgets[532].fields[1313].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[98].widgets[532].fields[1313].value\":[\"add\",\"66\"],\"templatedashboard.pages[98].widgets[532].fields[1313].widget_fieldid\":[\"add\",\"1313\"],\"templatedashboard.pages[98].widgets[532].widgetid\":[\"add\",\"532\"],\"templatedashboard.pages[98].dashboard_pageid\":[\"add\",\"98\"]}'),('clceiuwwv00014ciyl15dxwbv',1,'Admin',1672647035,'192.168.64.1',1,43,77,NULL,'t7_2','clceiuwwv00004ciyyh1r8apq','{\"templatedashboard.pages[99]\":[\"add\"],\"templatedashboard.pages[99].name\":[\"add\",\"p2\"],\"templatedashboard.pages[99].dashboard_pageid\":[\"add\",\"99\"]}'),('clceiv26k00014xiyyk5mxx15',1,'Admin',1672647042,'192.168.64.1',1,43,77,NULL,'t7_2','clceiv26j00004xiyylhxibko','{\"templatedashboard.pages[99].widgets[533]\":[\"add\"],\"templatedashboard.pages[99].widgets[533].fields[1314]\":[\"add\"],\"templatedashboard.pages[99].widgets[533].width\":[\"add\",\"4\"],\"templatedashboard.pages[99].widgets[533].height\":[\"add\",\"3\"],\"templatedashboard.pages[99].widgets[533].type\":[\"add\",\"item\"],\"templatedashboard.pages[99].widgets[533].fields[1314].type\":[\"add\",\"4\"],\"templatedashboard.pages[99].widgets[533].fields[1314].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[99].widgets[533].fields[1314].value\":[\"add\",\"66\"],\"templatedashboard.pages[99].widgets[533].fields[1314].widget_fieldid\":[\"add\",\"1314\"],\"templatedashboard.pages[99].widgets[533].widgetid\":[\"add\",\"533\"]}'),('clceivnq30001fqiytc9w5exn',1,'Admin',1672647070,'192.168.64.1',1,43,79,NULL,'t8_1','clceivnq20000fqiynloffzwk','{\"templatedashboard.pages[100]\":[\"add\"],\"templatedashboard.pages[100].widgets[534]\":[\"add\"],\"templatedashboard.pages[100].widgets[534].fields[1315]\":[\"add\"],\"templatedashboard.pages[100].name\":[\"add\",\"p2\"],\"templatedashboard.pages[100].widgets[534].x\":[\"add\",\"2\"],\"templatedashboard.pages[100].widgets[534].y\":[\"add\",\"1\"],\"templatedashboard.pages[100].widgets[534].width\":[\"add\",\"4\"],\"templatedashboard.pages[100].widgets[534].height\":[\"add\",\"3\"],\"templatedashboard.pages[100].widgets[534].type\":[\"add\",\"item\"],\"templatedashboard.pages[100].widgets[534].fields[1315].type\":[\"add\",\"4\"],\"templatedashboard.pages[100].widgets[534].fields[1315].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[100].widgets[534].fields[1315].value\":[\"add\",\"54\"],\"templatedashboard.pages[100].widgets[534].fields[1315].widget_fieldid\":[\"add\",\"1315\"],\"templatedashboard.pages[100].widgets[534].widgetid\":[\"add\",\"534\"],\"templatedashboard.pages[100].dashboard_pageid\":[\"add\",\"100\"]}'),('clceivzg700014ciyi2f2cfa5',1,'Admin',1672647085,'192.168.64.1',1,43,80,NULL,'t8_2','clceivzg600004ciyghag6th4','{\"templatedashboard.pages[101]\":[\"add\"],\"templatedashboard.pages[101].widgets[535]\":[\"add\"],\"templatedashboard.pages[101].widgets[535].fields[1316]\":[\"add\"],\"templatedashboard.pages[101].name\":[\"add\",\"p2\"],\"templatedashboard.pages[101].widgets[535].x\":[\"add\",\"4\"],\"templatedashboard.pages[101].widgets[535].y\":[\"add\",\"2\"],\"templatedashboard.pages[101].widgets[535].width\":[\"add\",\"4\"],\"templatedashboard.pages[101].widgets[535].height\":[\"add\",\"3\"],\"templatedashboard.pages[101].widgets[535].type\":[\"add\",\"item\"],\"templatedashboard.pages[101].widgets[535].fields[1316].type\":[\"add\",\"4\"],\"templatedashboard.pages[101].widgets[535].fields[1316].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[101].widgets[535].fields[1316].value\":[\"add\",\"54\"],\"templatedashboard.pages[101].widgets[535].fields[1316].widget_fieldid\":[\"add\",\"1316\"],\"templatedashboard.pages[101].widgets[535].widgetid\":[\"add\",\"535\"],\"templatedashboard.pages[101].dashboard_pageid\":[\"add\",\"101\"]}'),('clceiwlsb00014ciyulrvf2lj',1,'Admin',1672647114,'192.168.64.1',1,43,82,NULL,'t9_1','clceiwlsb00004ciynmyi22n4','{\"templatedashboard.pages[102]\":[\"add\"],\"templatedashboard.pages[102].widgets[536]\":[\"add\"],\"templatedashboard.pages[102].widgets[536].fields[1317]\":[\"add\"],\"templatedashboard.pages[102].name\":[\"add\",\"p2\"],\"templatedashboard.pages[102].widgets[536].x\":[\"add\",\"2\"],\"templatedashboard.pages[102].widgets[536].width\":[\"add\",\"4\"],\"templatedashboard.pages[102].widgets[536].height\":[\"add\",\"3\"],\"templatedashboard.pages[102].widgets[536].type\":[\"add\",\"item\"],\"templatedashboard.pages[102].widgets[536].fields[1317].type\":[\"add\",\"4\"],\"templatedashboard.pages[102].widgets[536].fields[1317].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[102].widgets[536].fields[1317].value\":[\"add\",\"65\"],\"templatedashboard.pages[102].widgets[536].fields[1317].widget_fieldid\":[\"add\",\"1317\"],\"templatedashboard.pages[102].widgets[536].widgetid\":[\"add\",\"536\"],\"templatedashboard.pages[102].dashboard_pageid\":[\"add\",\"102\"]}'),('clceixqe200014xiyvabg4fbl',1,'Admin',1672647167,'192.168.64.1',1,43,83,NULL,'t9_2','clceixqe200004xiyns1fx2df','{\"templatedashboard.pages[103]\":[\"add\"],\"templatedashboard.pages[103].name\":[\"add\",\"p2\"],\"templatedashboard.pages[103].dashboard_pageid\":[\"add\",\"103\"]}'),('clceixwcw0001fqiyw5ofmogf',1,'Admin',1672647175,'192.168.64.1',1,43,83,NULL,'t9_2','clceixwcw0000fqiyt6o848pr','{\"templatedashboard.pages[103].widgets[537]\":[\"add\"],\"templatedashboard.pages[103].widgets[537].fields[1318]\":[\"add\"],\"templatedashboard.pages[103].widgets[537].x\":[\"add\",\"1\"],\"templatedashboard.pages[103].widgets[537].y\":[\"add\",\"1\"],\"templatedashboard.pages[103].widgets[537].type\":[\"add\",\"item\"],\"templatedashboard.pages[103].widgets[537].fields[1318].type\":[\"add\",\"4\"],\"templatedashboard.pages[103].widgets[537].fields[1318].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[103].widgets[537].fields[1318].value\":[\"add\",\"65\"],\"templatedashboard.pages[103].widgets[537].fields[1318].widget_fieldid\":[\"add\",\"1318\"],\"templatedashboard.pages[103].widgets[537].widgetid\":[\"add\",\"537\"]}'),('clceiyr3j0001fqiyvxrztnqw',1,'Admin',1672647215,'192.168.64.1',1,43,85,NULL,'t10_1','clceiyr3i0000fqiyb7q3who3','{\"templatedashboard.pages[104]\":[\"add\"],\"templatedashboard.pages[104].widgets[538]\":[\"add\"],\"templatedashboard.pages[104].widgets[538].fields[1319]\":[\"add\"],\"templatedashboard.pages[104].name\":[\"add\",\"p2\"],\"templatedashboard.pages[104].widgets[538].x\":[\"add\",\"3\"],\"templatedashboard.pages[104].widgets[538].y\":[\"add\",\"2\"],\"templatedashboard.pages[104].widgets[538].width\":[\"add\",\"4\"],\"templatedashboard.pages[104].widgets[538].height\":[\"add\",\"3\"],\"templatedashboard.pages[104].widgets[538].type\":[\"add\",\"item\"],\"templatedashboard.pages[104].widgets[538].fields[1319].type\":[\"add\",\"4\"],\"templatedashboard.pages[104].widgets[538].fields[1319].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[104].widgets[538].fields[1319].value\":[\"add\",\"75\"],\"templatedashboard.pages[104].widgets[538].fields[1319].widget_fieldid\":[\"add\",\"1319\"],\"templatedashboard.pages[104].widgets[538].widgetid\":[\"add\",\"538\"],\"templatedashboard.pages[104].dashboard_pageid\":[\"add\",\"104\"]}'),('clceiyyy600014xiy3tjp9v91',1,'Admin',1672647225,'192.168.64.1',1,43,86,NULL,'t10_2','clceiyyy500004xiy0jt6plta','{\"templatedashboard.pages[105]\":[\"add\"],\"templatedashboard.pages[105].widgets[539]\":[\"add\"],\"templatedashboard.pages[105].widgets[539].fields[1320]\":[\"add\"],\"templatedashboard.pages[105].name\":[\"add\",\"p2\"],\"templatedashboard.pages[105].widgets[539].x\":[\"add\",\"2\"],\"templatedashboard.pages[105].widgets[539].y\":[\"add\",\"1\"],\"templatedashboard.pages[105].widgets[539].width\":[\"add\",\"4\"],\"templatedashboard.pages[105].widgets[539].height\":[\"add\",\"3\"],\"templatedashboard.pages[105].widgets[539].type\":[\"add\",\"item\"],\"templatedashboard.pages[105].widgets[539].fields[1320].type\":[\"add\",\"4\"],\"templatedashboard.pages[105].widgets[539].fields[1320].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[105].widgets[539].fields[1320].value\":[\"add\",\"75\"],\"templatedashboard.pages[105].widgets[539].fields[1320].widget_fieldid\":[\"add\",\"1320\"],\"templatedashboard.pages[105].widgets[539].widgetid\":[\"add\",\"539\"],\"templatedashboard.pages[105].dashboard_pageid\":[\"add\",\"105\"]}'),('clceizh3x0001fqiy3ddpg5ox',1,'Admin',1672647248,'192.168.64.1',1,43,58,NULL,'t1_1','clceizh3w0000fqiyyfffd6l3','{\"templatedashboard.pages[106]\":[\"add\"],\"templatedashboard.pages[106].name\":[\"add\",\"p3\"],\"templatedashboard.pages[106].dashboard_pageid\":[\"add\",\"106\"]}'),('clceizngo00014xiyon2bcm2a',1,'Admin',1672647256,'192.168.64.1',1,43,59,NULL,'t1_2','clceizngn00004xiydx2vz77x','{\"templatedashboard.pages[107]\":[\"add\"],\"templatedashboard.pages[107].name\":[\"add\",\"p3\"],\"templatedashboard.pages[107].dashboard_pageid\":[\"add\",\"107\"]}'),('clcej003q0001fqiyrnt6nqvi',1,'Admin',1672647273,'192.168.64.1',1,43,61,NULL,'t2_1','clcej003p0000fqiy2auj6oab','{\"templatedashboard.pages[108]\":[\"add\"],\"templatedashboard.pages[108].name\":[\"add\",\"p3\"],\"templatedashboard.pages[108].dashboard_pageid\":[\"add\",\"108\"]}'),('clcej06wp00014xiyq97buzue',1,'Admin',1672647282,'192.168.64.1',1,43,62,NULL,'t2_2','clcej06wp00004xiyrlkclkc2','{\"templatedashboard.pages[109]\":[\"add\"],\"templatedashboard.pages[109].name\":[\"add\",\"p3\"],\"templatedashboard.pages[109].dashboard_pageid\":[\"add\",\"109\"]}'),('clcej0t6v00014ciygwa94e0b',1,'Admin',1672647311,'192.168.64.1',1,43,64,NULL,'t3_1','clcej0t6v00004ciyvxd61tw8','{\"templatedashboard.pages[110]\":[\"add\"],\"templatedashboard.pages[110].widgets[540]\":[\"add\"],\"templatedashboard.pages[110].widgets[540].fields[1321]\":[\"add\"],\"templatedashboard.pages[110].name\":[\"add\",\"p2\"],\"templatedashboard.pages[110].widgets[540].x\":[\"add\",\"3\"],\"templatedashboard.pages[110].widgets[540].y\":[\"add\",\"1\"],\"templatedashboard.pages[110].widgets[540].width\":[\"add\",\"4\"],\"templatedashboard.pages[110].widgets[540].height\":[\"add\",\"3\"],\"templatedashboard.pages[110].widgets[540].type\":[\"add\",\"item\"],\"templatedashboard.pages[110].widgets[540].fields[1321].type\":[\"add\",\"4\"],\"templatedashboard.pages[110].widgets[540].fields[1321].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[110].widgets[540].fields[1321].value\":[\"add\",\"15\"],\"templatedashboard.pages[110].widgets[540].fields[1321].widget_fieldid\":[\"add\",\"1321\"],\"templatedashboard.pages[110].widgets[540].widgetid\":[\"add\",\"540\"],\"templatedashboard.pages[110].dashboard_pageid\":[\"add\",\"110\"]}'),('clcej0yr00001fqiyomh20kuk',1,'Admin',1672647318,'192.168.64.1',1,43,64,NULL,'t3_1','clcej0yqz0000fqiy9agj06ip','{\"templatedashboard.pages[111]\":[\"add\"],\"templatedashboard.pages[111].name\":[\"add\",\"p3\"],\"templatedashboard.pages[111].dashboard_pageid\":[\"add\",\"111\"]}'),('clcej19cn00014xiyfi55aiqa',1,'Admin',1672647331,'192.168.64.1',1,43,65,NULL,'t3_2','clcej19cn00004xiyptw9wk6y','{\"templatedashboard.pages[112]\":[\"add\"],\"templatedashboard.pages[112].widgets[541]\":[\"add\"],\"templatedashboard.pages[112].widgets[541].fields[1322]\":[\"add\"],\"templatedashboard.pages[112].name\":[\"add\",\"p2\"],\"templatedashboard.pages[112].widgets[541].x\":[\"add\",\"2\"],\"templatedashboard.pages[112].widgets[541].type\":[\"add\",\"item\"],\"templatedashboard.pages[112].widgets[541].fields[1322].type\":[\"add\",\"4\"],\"templatedashboard.pages[112].widgets[541].fields[1322].name\":[\"add\",\"itemid\"],\"templatedashboard.pages[112].widgets[541].fields[1322].value\":[\"add\",\"15\"],\"templatedashboard.pages[112].widgets[541].fields[1322].widget_fieldid\":[\"add\",\"1322\"],\"templatedashboard.pages[112].widgets[541].widgetid\":[\"add\",\"541\"],\"templatedashboard.pages[112].dashboard_pageid\":[\"add\",\"112\"]}'),('clcej1j5n0001briyk48k5uj8',1,'Admin',1672647344,'192.168.64.1',1,43,65,NULL,'t3_2','clcej1j5m0000briyjg1ozw0m','{\"templatedashboard.pages[113]\":[\"add\"],\"templatedashboard.pages[113].name\":[\"add\",\"p3\"],\"templatedashboard.pages[113].dashboard_pageid\":[\"add\",\"113\"]}'),('clcej2d280001briyy4ku0rgu',1,'Admin',1672647383,'192.168.64.1',1,43,67,NULL,'t4_1','clcej2d280000briy5rlhsxv8','{\"templatedashboard.pages[114]\":[\"add\"],\"templatedashboard.pages[114].name\":[\"add\",\"p3\"],\"templatedashboard.pages[114].dashboard_pageid\":[\"add\",\"114\"]}'),('clcej2iuf0001fqiy5dxcujtd',1,'Admin',1672647390,'192.168.64.1',1,43,68,NULL,'t4_2','clcej2iue0000fqiyw500gfa1','{\"templatedashboard.pages[115]\":[\"add\"],\"templatedashboard.pages[115].name\":[\"add\",\"p3\"],\"templatedashboard.pages[115].dashboard_pageid\":[\"add\",\"115\"]}'),('clcej3c3z0001briy2zsqg9db',1,'Admin',1672647428,'192.168.64.1',1,43,70,NULL,'t5_1','clcej3c3y0000briy285ylij1','{\"templatedashboard.pages[116]\":[\"add\"],\"templatedashboard.pages[116].name\":[\"add\",\"p3\"],\"templatedashboard.pages[116].dashboard_pageid\":[\"add\",\"116\"]}'),('clcej3iez0001fqiyfftevkll',1,'Admin',1672647437,'192.168.64.1',1,43,71,NULL,'t5_2','clcej3iey0000fqiy6ijzxr3o','{\"templatedashboard.pages[117]\":[\"add\"],\"templatedashboard.pages[117].name\":[\"add\",\"p3\"],\"templatedashboard.pages[117].dashboard_pageid\":[\"add\",\"117\"]}'),('clcej3r210001fqiymc5fweqy',1,'Admin',1672647448,'192.168.64.1',1,43,73,NULL,'t6_1','clcej3r210000fqiyk482ex8k','{\"templatedashboard.pages[118]\":[\"add\"],\"templatedashboard.pages[118].name\":[\"add\",\"p3\"],\"templatedashboard.pages[118].dashboard_pageid\":[\"add\",\"118\"]}'),('clcej3wkj0001briydeaif35r',1,'Admin',1672647455,'192.168.64.1',1,43,74,NULL,'t6_2','clcej3wkj0000briym9p8x39n','{\"templatedashboard.pages[119]\":[\"add\"],\"templatedashboard.pages[119].name\":[\"add\",\"p3\"],\"templatedashboard.pages[119].dashboard_pageid\":[\"add\",\"119\"]}'),('clcej48t20001briykijbqizd',1,'Admin',1672647471,'192.168.64.1',1,43,76,NULL,'t7_1','clcej48t20000briy967iz8k5','{\"templatedashboard.pages[120]\":[\"add\"],\"templatedashboard.pages[120].name\":[\"add\",\"p3\"],\"templatedashboard.pages[120].dashboard_pageid\":[\"add\",\"120\"]}'),('clcej4eax0001briyg5xg1wke',1,'Admin',1672647478,'192.168.64.1',1,43,77,NULL,'t7_2','clcej4eax0000briy8kg11umb','{\"templatedashboard.pages[121]\":[\"add\"],\"templatedashboard.pages[121].name\":[\"add\",\"p3\"],\"templatedashboard.pages[121].dashboard_pageid\":[\"add\",\"121\"]}'),('clcej4nkc0001briyz1i59r9m',1,'Admin',1672647490,'192.168.64.1',1,43,79,NULL,'t8_1','clcej4nkc0000briy8aon9yc6','{\"templatedashboard.pages[122]\":[\"add\"],\"templatedashboard.pages[122].name\":[\"add\",\"p3\"],\"templatedashboard.pages[122].dashboard_pageid\":[\"add\",\"122\"]}'),('clcej4t3n0001briy5xmtgcbe',1,'Admin',1672647497,'192.168.64.1',1,43,80,NULL,'t8_2','clcej4t3n0000briypirkqckr','{\"templatedashboard.pages[123]\":[\"add\"],\"templatedashboard.pages[123].name\":[\"add\",\"p3\"],\"templatedashboard.pages[123].dashboard_pageid\":[\"add\",\"123\"]}'),('clcej52ot0001briyny3i4wsf',1,'Admin',1672647509,'192.168.64.1',1,43,82,NULL,'t9_1','clcej52os0000briycjrorxvv','{\"templatedashboard.pages[124]\":[\"add\"],\"templatedashboard.pages[124].name\":[\"add\",\"p3\"],\"templatedashboard.pages[124].dashboard_pageid\":[\"add\",\"124\"]}'),('clcej57qk0001fqiyykgrdsyx',1,'Admin',1672647516,'192.168.64.1',1,43,83,NULL,'t9_2','clcej57qk0000fqiypz521f4j','{\"templatedashboard.pages[125]\":[\"add\"],\"templatedashboard.pages[125].name\":[\"add\",\"p3\"],\"templatedashboard.pages[125].dashboard_pageid\":[\"add\",\"125\"]}'),('clcej5k520001fqiynf47oiq3',1,'Admin',1672647532,'192.168.64.1',1,43,85,NULL,'t10_1','clcej5k520000fqiyxm0q87yj','{\"templatedashboard.pages[126]\":[\"add\"],\"templatedashboard.pages[126].name\":[\"add\",\"p3\"],\"templatedashboard.pages[126].dashboard_pageid\":[\"add\",\"126\"]}'),('clcej5phz0001fqiyzux8zaeq',1,'Admin',1672647539,'192.168.64.1',1,43,86,NULL,'t10_2','clcej5phz0000fqiy76nz8b6a','{\"templatedashboard.pages[127]\":[\"add\"],\"templatedashboard.pages[127].name\":[\"add\",\"p3\"],\"templatedashboard.pages[127].dashboard_pageid\":[\"add\",\"127\"]}'); /*!40000 ALTER TABLE `auditlog` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `autoreg_host` -- DROP TABLE IF EXISTS `autoreg_host`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `autoreg_host` ( `autoreg_hostid` bigint unsigned NOT NULL, `proxy_hostid` bigint unsigned DEFAULT NULL, `host` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `listen_ip` varchar(39) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `listen_port` int NOT NULL DEFAULT '0', `listen_dns` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `host_metadata` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `flags` int NOT NULL DEFAULT '0', `tls_accepted` int NOT NULL DEFAULT '1', PRIMARY KEY (`autoreg_hostid`), KEY `autoreg_host_1` (`host`), KEY `autoreg_host_2` (`proxy_hostid`), CONSTRAINT `c_autoreg_host_1` FOREIGN KEY (`proxy_hostid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `autoreg_host` -- LOCK TABLES `autoreg_host` WRITE; /*!40000 ALTER TABLE `autoreg_host` DISABLE KEYS */; /*!40000 ALTER TABLE `autoreg_host` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `changelog` -- DROP TABLE IF EXISTS `changelog`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `changelog` ( `changelogid` bigint unsigned NOT NULL AUTO_INCREMENT, `object` int NOT NULL DEFAULT '0', `objectid` bigint unsigned NOT NULL, `operation` int NOT NULL DEFAULT '0', `clock` int NOT NULL DEFAULT '0', PRIMARY KEY (`changelogid`), KEY `changelog_1` (`clock`) ) ENGINE=InnoDB AUTO_INCREMENT=147746 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `changelog` -- LOCK TABLES `changelog` WRITE; /*!40000 ALTER TABLE `changelog` DISABLE KEYS */; INSERT INTO `changelog` VALUES (71285,7,28244,3,1672318938),(71286,7,28245,3,1672318938),(71287,7,30995,3,1672318938),(71288,7,30996,3,1672318938),(71289,7,30997,3,1672318938),(71290,7,30998,3,1672318938),(71291,7,30999,3,1672318938),(71292,7,30657,3,1672318938),(71293,7,30658,3,1672318938),(71294,7,30659,3,1672318938),(71295,7,30660,3,1672318938),(71296,7,30661,3,1672318938),(71297,7,30662,3,1672318938),(71298,7,30663,3,1672318938),(71299,7,30664,3,1672318938),(71300,7,30665,3,1672318938),(71301,7,31367,3,1672318938),(71302,7,31368,3,1672318938),(71303,7,31369,3,1672318938),(71304,7,31370,3,1672318938),(71305,7,31371,3,1672318938),(71306,7,31372,3,1672318938),(71307,7,31373,3,1672318938),(71308,7,31374,3,1672318938),(71309,7,30674,3,1672318938),(71310,7,30675,3,1672318938),(71311,7,31006,3,1672318938),(71312,7,31007,3,1672318938),(71313,7,31008,3,1672318938),(71314,7,32528,3,1672318938),(71315,7,32529,3,1672318938),(71316,7,32530,3,1672318938),(71317,7,32676,3,1672318938),(71318,7,32677,3,1672318938),(71319,6,625,3,1672318938),(71320,6,5268,3,1672318938),(71321,6,5269,3,1672318938),(71322,6,5270,3,1672318938),(71323,6,5271,3,1672318938),(71324,6,5272,3,1672318938),(71325,6,5273,3,1672318938),(71326,6,5274,3,1672318938),(71327,6,5275,3,1672318938),(71328,6,5276,3,1672318938),(71329,6,5277,3,1672318938),(71330,6,5278,3,1672318938),(71331,6,5279,3,1672318938),(71332,6,5280,3,1672318938),(71333,6,6851,3,1672318938),(71334,6,7326,3,1672318938),(71335,6,7327,3,1672318938),(71336,6,7328,3,1672318938),(71337,6,7447,3,1672318938),(71338,6,7448,3,1672318938),(71339,5,21195,2,1672318938),(71340,5,22404,2,1672318938),(71341,5,22405,2,1672318938),(71342,5,22406,2,1672318938),(71343,5,22407,2,1672318938),(71344,5,22408,2,1672318938),(71345,5,22409,2,1672318938),(71346,5,22410,2,1672318938),(71347,5,22411,2,1672318938),(71348,5,22560,2,1672318938),(71349,5,22988,2,1672318938),(71350,5,22989,2,1672318938),(71351,5,22990,2,1672318938),(71352,5,23091,2,1672318938),(71353,5,21195,3,1672318938),(71354,5,22404,3,1672318938),(71355,5,22405,3,1672318938),(71356,5,22406,3,1672318938),(71357,5,22407,3,1672318938),(71358,5,22408,3,1672318938),(71359,5,22409,3,1672318938),(71360,5,22410,3,1672318938),(71361,5,22411,3,1672318938),(71362,5,22560,3,1672318938),(71363,5,22988,3,1672318938),(71364,5,22989,3,1672318938),(71365,5,22990,3,1672318938),(71366,5,23091,3,1672318938),(71367,8,87798,3,1672318938),(71368,8,87799,3,1672318938),(71369,8,87800,3,1672318938),(71370,8,87801,3,1672318938),(71371,8,87802,3,1672318938),(71372,8,87803,3,1672318938),(71373,8,89648,3,1672318938),(71374,8,89649,3,1672318938),(71375,8,89650,3,1672318938),(71376,8,89651,3,1672318938),(71377,8,89652,3,1672318938),(71378,8,89653,3,1672318938),(71379,8,89654,3,1672318938),(71380,8,89655,3,1672318938),(71381,8,89656,3,1672318938),(71382,8,89657,3,1672318938),(71383,8,89658,3,1672318938),(71384,8,93020,3,1672318938),(71385,8,93021,3,1672318938),(71386,8,93022,3,1672318938),(71387,8,93023,3,1672318938),(71388,8,89675,3,1672318938),(71389,8,89676,3,1672318938),(71390,8,89677,3,1672318938),(71391,8,89678,3,1672318938),(71392,8,89679,3,1672318938),(71393,8,89680,3,1672318938),(71394,8,89681,3,1672318938),(71395,8,89682,3,1672318938),(71396,8,89683,3,1672318938),(71397,8,89684,3,1672318938),(71398,8,89685,3,1672318938),(71399,8,89686,3,1672318938),(71400,8,89687,3,1672318938),(71401,8,89688,3,1672318938),(71402,8,89689,3,1672318938),(71403,8,89690,3,1672318938),(71404,8,89926,3,1672318938),(71405,8,89927,3,1672318938),(71406,8,92559,3,1672318938),(71407,8,92560,3,1672318938),(71408,8,92561,3,1672318938),(71409,8,92562,3,1672318938),(71410,8,92563,3,1672318938),(71411,8,92564,3,1672318938),(71412,8,92565,3,1672318938),(71413,8,92566,3,1672318938),(71414,8,92567,3,1672318938),(71415,8,92568,3,1672318938),(71416,8,92569,3,1672318938),(71417,8,92570,3,1672318938),(71418,8,92571,3,1672318938),(71419,8,92572,3,1672318938),(71420,8,92573,3,1672318938),(71421,8,92574,3,1672318938),(71422,8,92575,3,1672318938),(71423,8,92576,3,1672318938),(71424,8,92577,3,1672318938),(71425,8,92578,3,1672318938),(71426,8,92579,3,1672318938),(71427,8,92580,3,1672318938),(71428,8,92581,3,1672318938),(71429,8,92582,3,1672318938),(71430,8,92583,3,1672318938),(71431,8,92584,3,1672318938),(71432,8,93015,3,1672318938),(71433,8,93026,3,1672318938),(71434,8,93027,3,1672318938),(71435,4,18008,3,1672318938),(71436,4,18009,3,1672318938),(71437,4,18010,3,1672318938),(71438,4,18011,3,1672318938),(71439,4,18012,3,1672318938),(71440,4,18013,3,1672318938),(71441,4,18014,3,1672318938),(71442,4,18015,3,1672318938),(71443,4,18016,3,1672318938),(71444,4,18017,3,1672318938),(71445,4,18018,3,1672318938),(71446,4,18019,3,1672318938),(71447,4,29615,3,1672318938),(71448,4,29617,3,1672318938),(71449,4,29618,3,1672318938),(71450,4,29620,3,1672318938),(71451,4,29621,3,1672318938),(71452,4,29623,3,1672318938),(71453,4,29624,3,1672318938),(71454,4,29626,3,1672318938),(71455,4,29627,3,1672318938),(71456,4,29629,3,1672318938),(71457,4,29630,3,1672318938),(71458,4,29632,3,1672318938),(71459,4,29633,3,1672318938),(71460,4,29635,3,1672318938),(71461,4,29636,3,1672318938),(71462,4,29638,3,1672318938),(71463,4,29639,3,1672318938),(71464,4,29640,3,1672318938),(71465,4,29641,3,1672318938),(71466,4,29642,3,1672318938),(71467,4,29643,3,1672318938),(71468,4,29644,3,1672318938),(71469,4,29645,3,1672318938),(71470,4,29646,3,1672318938),(71471,4,29647,3,1672318938),(71472,4,29648,3,1672318938),(71473,4,29649,3,1672318938),(71474,4,29650,3,1672318938),(71475,4,29651,3,1672318938),(71476,4,29676,3,1672318938),(71477,4,29677,3,1672318938),(71478,4,29678,3,1672318938),(71479,4,29679,3,1672318938),(71480,4,29680,3,1672318938),(71481,4,29681,3,1672318938),(71482,4,29682,3,1672318938),(71483,4,29683,3,1672318938),(71484,4,29684,3,1672318938),(71485,4,29685,3,1672318938),(71486,4,29686,3,1672318938),(71487,4,29687,3,1672318938),(71488,4,32766,3,1672318938),(71489,4,32767,3,1672318938),(71490,4,35249,3,1672318938),(71491,4,35250,3,1672318938),(71492,4,35251,3,1672318938),(71493,4,35252,3,1672318938),(71494,4,35253,3,1672318938),(71495,4,35254,3,1672318938),(71496,4,35255,3,1672318938),(71497,4,35256,3,1672318938),(71498,4,35257,3,1672318938),(71499,4,35258,3,1672318938),(71500,4,35259,3,1672318938),(71501,4,35260,3,1672318938),(71502,4,35261,3,1672318938),(71503,4,35262,3,1672318938),(71504,4,35263,3,1672318938),(71505,4,35264,3,1672318938),(71506,4,35265,3,1672318938),(71507,4,35266,3,1672318938),(71508,4,35267,3,1672318938),(71509,4,35268,3,1672318938),(71510,4,35269,3,1672318938),(71511,4,35270,3,1672318938),(71512,4,35808,3,1672318938),(71513,4,35809,3,1672318938),(71514,4,35810,3,1672318938),(71515,4,35813,3,1672318938),(71516,4,35814,3,1672318938),(71517,3,39812,2,1672318938),(71518,3,39813,2,1672318938),(71519,3,39814,2,1672318938),(71520,3,39815,2,1672318938),(71521,3,42292,2,1672318938),(71522,3,42293,2,1672318938),(71523,3,42294,2,1672318938),(71524,3,42295,2,1672318938),(71525,3,42296,2,1672318938),(71526,3,42297,2,1672318938),(71527,3,42298,2,1672318938),(71528,3,42299,2,1672318938),(71529,3,42300,2,1672318938),(71530,3,42301,2,1672318938),(71531,3,42302,2,1672318938),(71532,3,42303,2,1672318938),(71533,3,42304,2,1672318938),(71534,3,42305,2,1672318938),(71535,3,42306,2,1672318938),(71536,3,42313,2,1672318938),(71537,3,42314,2,1672318938),(71538,3,42315,2,1672318938),(71539,3,42316,2,1672318938),(71540,3,42317,2,1672318938),(71541,3,42318,2,1672318938),(71542,3,42681,2,1672318938),(71543,3,44070,2,1672318938),(71544,3,44071,2,1672318938),(71545,3,44072,2,1672318938),(71546,3,44073,2,1672318938),(71547,3,44074,2,1672318938),(71548,3,44075,2,1672318938),(71549,3,44076,2,1672318938),(71550,3,44077,2,1672318938),(71551,3,44078,2,1672318938),(71552,3,44079,2,1672318938),(71553,3,44080,2,1672318938),(71554,3,44439,2,1672318938),(71555,3,44441,2,1672318938),(71556,3,39812,3,1672318938),(71557,3,39813,3,1672318938),(71558,3,39814,3,1672318938),(71559,3,39815,3,1672318938),(71560,3,42292,3,1672318938),(71561,3,42293,3,1672318938),(71562,3,42294,3,1672318938),(71563,3,42295,3,1672318938),(71564,3,42296,3,1672318938),(71565,3,42297,3,1672318938),(71566,3,42298,3,1672318938),(71567,3,42299,3,1672318938),(71568,3,42300,3,1672318938),(71569,3,42301,3,1672318938),(71570,3,42302,3,1672318938),(71571,3,42303,3,1672318938),(71572,3,42304,3,1672318938),(71573,3,42305,3,1672318938),(71574,3,42306,3,1672318938),(71575,3,42313,3,1672318938),(71576,3,42314,3,1672318938),(71577,3,42315,3,1672318938),(71578,3,42316,3,1672318938),(71579,3,42317,3,1672318938),(71580,3,42318,3,1672318938),(71581,3,42681,3,1672318938),(71582,3,44070,3,1672318938),(71583,3,44071,3,1672318938),(71584,3,44072,3,1672318938),(71585,3,44073,3,1672318938),(71586,3,44074,3,1672318938),(71587,3,44075,3,1672318938),(71588,3,44076,3,1672318938),(71589,3,44077,3,1672318938),(71590,3,44078,3,1672318938),(71591,3,44079,3,1672318938),(71592,3,44080,3,1672318938),(71593,3,44439,3,1672318938),(71594,3,44441,3,1672318938),(71595,8,89636,3,1672318938),(71596,3,39807,2,1672318938),(71597,3,42274,2,1672318938),(71598,3,42275,2,1672318938),(71599,3,42276,2,1672318938),(71600,3,44058,2,1672318938),(71601,3,39807,3,1672318938),(71602,3,42274,3,1672318938),(71603,3,42275,3,1672318938),(71604,3,42276,3,1672318938),(71605,3,44058,3,1672318938),(71606,7,12648,3,1672318938),(71607,7,13205,3,1672318938),(71608,7,13165,3,1672318938),(71609,7,13171,3,1672318938),(71610,7,13173,3,1672318938),(71611,7,13175,3,1672318938),(71612,7,13177,3,1672318938),(71613,7,23301,3,1672318938),(71614,7,13181,3,1672318938),(71615,7,13183,3,1672318938),(71616,7,13185,3,1672318938),(71617,7,13187,3,1672318938),(71618,7,13189,3,1672318938),(71619,7,13191,3,1672318938),(71620,7,23302,3,1672318938),(71621,7,13195,3,1672318938),(71622,7,13199,3,1672318938),(71623,7,13201,3,1672318938),(71624,7,13203,3,1672318938),(71625,7,12895,3,1672318938),(71626,7,12896,3,1672318938),(71627,7,12897,3,1672318938),(71628,7,12898,3,1672318938),(71629,7,12899,3,1672318938),(71630,7,12966,3,1672318938),(71631,7,13161,3,1672318938),(71632,7,13197,3,1672318938),(71633,7,13223,3,1672318938),(71634,7,13227,3,1672318938),(71635,7,13230,3,1672318938),(71636,7,13231,3,1672318938),(71637,7,18077,3,1672318938),(71638,7,18079,3,1672318938),(71639,7,18736,3,1672318938),(71640,7,20767,3,1672318938),(71641,7,20768,3,1672318938),(71642,7,22369,3,1672318938),(71643,7,22370,3,1672318938),(71644,7,23308,3,1672318938),(71645,7,23309,3,1672318938),(71646,7,23310,3,1672318938),(71647,7,23311,3,1672318938),(71648,7,23312,3,1672318938),(71649,7,28254,3,1672318938),(71650,7,30605,3,1672318938),(71651,7,30606,3,1672318938),(71652,7,30607,3,1672318938),(71653,7,30608,3,1672318938),(71654,7,30609,3,1672318938),(71655,7,30610,3,1672318938),(71656,7,30611,3,1672318938),(71657,7,30612,3,1672318938),(71658,7,30613,3,1672318938),(71659,7,30614,3,1672318938),(71660,7,30615,3,1672318938),(71661,7,30616,3,1672318938),(71662,7,30617,3,1672318938),(71663,7,30618,3,1672318938),(71664,7,30619,3,1672318938),(71665,7,30620,3,1672318938),(71666,7,30621,3,1672318938),(71667,7,30955,3,1672318938),(71668,7,30956,3,1672318938),(71669,7,30957,3,1672318938),(71670,7,30958,3,1672318938),(71671,7,30626,3,1672318938),(71672,7,30627,3,1672318938),(71673,7,30628,3,1672318938),(71674,7,30629,3,1672318938),(71675,6,611,3,1672318938),(71676,6,612,3,1672318938),(71677,6,607,3,1672318938),(71678,6,575,3,1672318938),(71679,6,579,3,1672318938),(71680,6,580,3,1672318938),(71681,6,581,3,1672318938),(71682,6,583,3,1672318938),(71683,6,584,3,1672318938),(71684,6,585,3,1672318938),(71685,6,586,3,1672318938),(71686,6,588,3,1672318938),(71687,6,589,3,1672318938),(71688,6,593,3,1672318938),(71689,6,596,3,1672318938),(71690,6,599,3,1672318938),(71691,6,601,3,1672318938),(71692,6,603,3,1672318938),(71693,6,604,3,1672318938),(71694,6,606,3,1672318938),(71695,6,608,3,1672318938),(71696,6,609,3,1672318938),(71697,6,610,3,1672318938),(71698,6,618,3,1672318938),(71699,6,619,3,1672318938),(71700,6,620,3,1672318938),(71701,6,621,3,1672318938),(71702,6,622,3,1672318938),(71703,6,623,3,1672318938),(71704,6,616,3,1672318938),(71705,6,617,3,1672318938),(71706,6,613,3,1672318938),(71707,6,614,3,1672318938),(71708,6,602,3,1672318938),(71709,6,587,3,1672318938),(71710,6,576,3,1672318938),(71711,6,594,3,1672318938),(71712,6,595,3,1672318938),(71713,6,590,3,1672318938),(71714,6,591,3,1672318938),(71715,6,577,3,1672318938),(71716,6,578,3,1672318938),(71717,6,582,3,1672318938),(71718,6,597,3,1672318938),(71719,6,598,3,1672318938),(71720,6,600,3,1672318938),(71721,6,605,3,1672318938),(71722,6,615,3,1672318938),(71723,6,592,3,1672318938),(71724,6,5223,3,1672318938),(71725,6,5224,3,1672318938),(71726,6,5225,3,1672318938),(71727,6,5226,3,1672318938),(71728,6,5227,3,1672318938),(71729,6,5228,3,1672318938),(71730,6,5229,3,1672318938),(71731,6,5230,3,1672318938),(71732,6,5231,3,1672318938),(71733,6,5232,3,1672318938),(71734,6,5233,3,1672318938),(71735,6,5234,3,1672318938),(71736,6,5235,3,1672318938),(71737,6,5236,3,1672318938),(71738,6,5237,3,1672318938),(71739,6,5238,3,1672318938),(71740,6,5239,3,1672318938),(71741,6,5240,3,1672318938),(71742,6,5241,3,1672318938),(71743,5,13075,2,1672318938),(71744,5,13436,2,1672318938),(71745,5,13467,2,1672318938),(71746,5,13468,2,1672318938),(71747,5,13470,2,1672318938),(71748,5,13471,2,1672318938),(71749,5,13472,2,1672318938),(71750,5,13473,2,1672318938),(71751,5,13474,2,1672318938),(71752,5,13475,2,1672318938),(71753,5,13476,2,1672318938),(71754,5,13477,2,1672318938),(71755,5,13479,2,1672318938),(71756,5,13480,2,1672318938),(71757,5,13481,2,1672318938),(71758,5,13482,2,1672318938),(71759,5,13483,2,1672318938),(71760,5,13484,2,1672318938),(71761,5,13485,2,1672318938),(71762,5,13486,2,1672318938),(71763,5,13487,2,1672318938),(71764,5,13488,2,1672318938),(71765,5,13489,2,1672318938),(71766,5,13490,2,1672318938),(71767,5,13537,2,1672318938),(71768,5,13558,2,1672318938),(71769,5,13560,2,1672318938),(71770,5,13563,2,1672318938),(71771,5,13567,2,1672318938),(71772,5,13570,2,1672318938),(71773,5,13571,2,1672318938),(71774,5,15854,2,1672318938),(71775,5,15856,2,1672318938),(71776,5,16274,2,1672318938),(71777,5,17537,2,1672318938),(71778,5,17538,2,1672318938),(71779,5,18532,2,1672318938),(71780,5,18533,2,1672318938),(71781,5,18981,2,1672318938),(71782,5,18982,2,1672318938),(71783,5,18983,2,1672318938),(71784,5,21198,2,1672318938),(71785,5,22382,2,1672318938),(71786,5,22383,2,1672318938),(71787,5,22384,2,1672318938),(71788,5,22385,2,1672318938),(71789,5,22386,2,1672318938),(71790,5,22387,2,1672318938),(71791,5,22388,2,1672318938),(71792,5,22389,2,1672318938),(71793,5,22390,2,1672318938),(71794,5,22391,2,1672318938),(71795,5,22392,2,1672318938),(71796,5,22393,2,1672318938),(71797,5,22394,2,1672318938),(71798,5,22395,2,1672318938),(71799,5,13075,3,1672318938),(71800,5,13436,3,1672318938),(71801,5,13467,3,1672318938),(71802,5,13468,3,1672318938),(71803,5,13470,3,1672318938),(71804,5,13471,3,1672318938),(71805,5,13472,3,1672318938),(71806,5,13473,3,1672318938),(71807,5,13474,3,1672318938),(71808,5,13475,3,1672318938),(71809,5,13476,3,1672318938),(71810,5,13477,3,1672318938),(71811,5,13479,3,1672318938),(71812,5,13480,3,1672318938),(71813,5,13481,3,1672318938),(71814,5,13482,3,1672318938),(71815,5,13483,3,1672318938),(71816,5,13484,3,1672318938),(71817,5,13485,3,1672318938),(71818,5,13486,3,1672318938),(71819,5,13487,3,1672318938),(71820,5,13488,3,1672318938),(71821,5,13489,3,1672318938),(71822,5,13490,3,1672318938),(71823,5,13537,3,1672318938),(71824,5,13558,3,1672318938),(71825,5,13560,3,1672318938),(71826,5,13563,3,1672318938),(71827,5,13567,3,1672318938),(71828,5,13570,3,1672318938),(71829,5,13571,3,1672318938),(71830,5,15854,3,1672318938),(71831,5,15856,3,1672318938),(71832,5,16274,3,1672318938),(71833,5,17537,3,1672318938),(71834,5,17538,3,1672318938),(71835,5,18532,3,1672318938),(71836,5,18533,3,1672318938),(71837,5,18981,3,1672318938),(71838,5,18982,3,1672318938),(71839,5,18983,3,1672318938),(71840,5,21198,3,1672318938),(71841,5,22382,3,1672318938),(71842,5,22383,3,1672318938),(71843,5,22384,3,1672318938),(71844,5,22385,3,1672318938),(71845,5,22386,3,1672318938),(71846,5,22387,3,1672318938),(71847,5,22388,3,1672318938),(71848,5,22389,3,1672318938),(71849,5,22390,3,1672318938),(71850,5,22391,3,1672318938),(71851,5,22392,3,1672318938),(71852,5,22393,3,1672318938),(71853,5,22394,3,1672318938),(71854,5,22395,3,1672318938),(71855,8,78878,3,1672318938),(71856,8,78879,3,1672318938),(71857,8,78880,3,1672318938),(71858,8,78881,3,1672318938),(71859,8,78882,3,1672318938),(71860,8,78883,3,1672318938),(71861,8,78884,3,1672318938),(71862,8,78885,3,1672318938),(71863,8,78886,3,1672318938),(71864,8,84290,3,1672318938),(71865,8,89617,3,1672318938),(71866,8,89618,3,1672318938),(71867,8,89619,3,1672318938),(71868,8,89620,3,1672318938),(71869,8,89621,3,1672318938),(71870,8,89622,3,1672318938),(71871,8,89623,3,1672318938),(71872,8,89624,3,1672318938),(71873,8,89625,3,1672318938),(71874,8,89626,3,1672318938),(71875,8,89627,3,1672318938),(71876,8,89628,3,1672318938),(71877,8,89629,3,1672318938),(71878,8,89630,3,1672318938),(71879,8,89633,3,1672318938),(71880,8,89634,3,1672318938),(71881,4,17939,3,1672318938),(71882,4,17940,3,1672318938),(71883,4,17941,3,1672318938),(71884,4,17942,3,1672318938),(71885,4,17943,3,1672318938),(71886,4,17944,3,1672318938),(71887,4,17945,3,1672318938),(71888,4,17946,3,1672318938),(71889,4,17947,3,1672318938),(71890,4,17948,3,1672318938),(71891,4,17949,3,1672318938),(71892,4,17950,3,1672318938),(71893,4,17951,3,1672318938),(71894,4,17952,3,1672318938),(71895,4,17953,3,1672318938),(71896,4,17954,3,1672318938),(71897,4,17955,3,1672318938),(71898,4,17956,3,1672318938),(71899,4,17957,3,1672318938),(71900,4,17958,3,1672318938),(71901,4,17959,3,1672318938),(71902,4,17960,3,1672318938),(71903,4,17961,3,1672318938),(71904,4,17962,3,1672318938),(71905,4,17963,3,1672318938),(71906,4,17964,3,1672318938),(71907,4,17965,3,1672318938),(71908,4,17966,3,1672318938),(71909,4,17967,3,1672318938),(71910,4,17968,3,1672318938),(71911,4,17969,3,1672318938),(71912,4,17970,3,1672318938),(71913,4,17971,3,1672318938),(71914,4,17972,3,1672318938),(71915,4,17973,3,1672318938),(71916,4,17974,3,1672318938),(71917,4,17975,3,1672318938),(71918,4,17976,3,1672318938),(71919,4,17977,3,1672318938),(71920,4,17978,3,1672318938),(71921,4,17979,3,1672318938),(71922,4,17980,3,1672318938),(71923,4,17981,3,1672318938),(71924,4,17982,3,1672318938),(71925,4,17983,3,1672318938),(71926,4,17984,3,1672318938),(71927,4,17985,3,1672318938),(71928,4,17986,3,1672318938),(71929,4,17987,3,1672318938),(71930,4,17988,3,1672318938),(71931,4,17989,3,1672318938),(71932,4,17990,3,1672318938),(71933,4,17991,3,1672318938),(71934,4,17992,3,1672318938),(71935,4,17993,3,1672318938),(71936,4,17994,3,1672318938),(71937,4,17995,3,1672318938),(71938,4,29492,3,1672318938),(71939,4,29493,3,1672318938),(71940,4,29494,3,1672318938),(71941,4,29495,3,1672318938),(71942,4,29496,3,1672318938),(71943,4,29497,3,1672318938),(71944,4,29498,3,1672318938),(71945,4,29499,3,1672318938),(71946,4,29500,3,1672318938),(71947,4,29501,3,1672318938),(71948,4,29502,3,1672318938),(71949,4,29503,3,1672318938),(71950,4,29504,3,1672318938),(71951,4,29505,3,1672318938),(71952,4,29506,3,1672318938),(71953,4,29507,3,1672318938),(71954,4,29508,3,1672318938),(71955,4,29509,3,1672318938),(71956,4,35223,3,1672318938),(71957,4,29511,3,1672318938),(71958,4,29512,3,1672318938),(71959,4,29513,3,1672318938),(71960,4,29514,3,1672318938),(71961,4,29515,3,1672318938),(71962,4,29516,3,1672318938),(71963,4,29517,3,1672318938),(71964,4,29518,3,1672318938),(71965,4,29519,3,1672318938),(71966,4,29520,3,1672318938),(71967,4,29521,3,1672318938),(71968,4,29522,3,1672318938),(71969,4,29523,3,1672318938),(71970,4,29524,3,1672318938),(71971,4,29525,3,1672318938),(71972,4,29526,3,1672318938),(71973,4,29527,3,1672318938),(71974,4,29528,3,1672318938),(71975,4,29529,3,1672318938),(71976,4,29530,3,1672318938),(71977,4,29531,3,1672318938),(71978,4,29532,3,1672318938),(71979,4,29533,3,1672318938),(71980,4,29534,3,1672318938),(71981,4,29539,3,1672318938),(71982,4,29540,3,1672318938),(71983,4,35226,3,1672318938),(71984,4,35804,3,1672318938),(71985,3,10073,2,1672318938),(71986,3,10074,2,1672318938),(71987,3,10075,2,1672318938),(71988,3,10076,2,1672318938),(71989,3,10077,2,1672318938),(71990,3,10078,2,1672318938),(71991,3,23252,2,1672318938),(71992,3,23253,2,1672318938),(71993,3,23255,2,1672318938),(71994,3,23256,2,1672318938),(71995,3,23257,2,1672318938),(71996,3,23258,2,1672318938),(71997,3,23259,2,1672318938),(71998,3,23260,2,1672318938),(71999,3,23261,2,1672318938),(72000,3,23262,2,1672318938),(72001,3,23264,2,1672318938),(72002,3,23265,2,1672318938),(72003,3,23266,2,1672318938),(72004,3,23267,2,1672318938),(72005,3,23268,2,1672318938),(72006,3,23269,2,1672318938),(72007,3,23270,2,1672318938),(72008,3,23271,2,1672318938),(72009,3,23272,2,1672318938),(72010,3,23273,2,1672318938),(72011,3,23274,2,1672318938),(72012,3,23275,2,1672318938),(72013,3,23276,2,1672318938),(72014,3,23277,2,1672318938),(72015,3,23328,2,1672318938),(72016,3,23620,2,1672318938),(72017,3,23625,2,1672318938),(72018,3,23628,2,1672318938),(72019,3,23635,2,1672318938),(72020,3,23662,2,1672318938),(72021,3,23664,2,1672318938),(72022,3,25367,2,1672318938),(72023,3,25371,2,1672318938),(72024,3,25667,2,1672318938),(72025,3,25668,2,1672318938),(72026,3,28249,2,1672318938),(72027,3,28534,2,1672318938),(72028,3,28536,2,1672318938),(72029,3,28538,2,1672318938),(72030,3,29823,2,1672318938),(72031,3,33024,2,1672318938),(72032,3,33025,2,1672318938),(72033,3,33026,2,1672318938),(72034,3,33027,2,1672318938),(72035,3,34318,2,1672318938),(72036,3,34319,2,1672318938),(72037,3,35275,2,1672318938),(72038,3,35276,2,1672318938),(72039,3,35277,2,1672318938),(72040,3,39805,2,1672318938),(72041,3,39823,2,1672318938),(72042,3,42227,2,1672318938),(72043,3,42228,2,1672318938),(72044,3,42229,2,1672318938),(72045,3,42230,2,1672318938),(72046,3,42231,2,1672318938),(72047,3,42232,2,1672318938),(72048,3,42233,2,1672318938),(72049,3,42234,2,1672318938),(72050,3,42235,2,1672318938),(72051,3,42236,2,1672318938),(72052,3,42237,2,1672318938),(72053,3,42238,2,1672318938),(72054,3,42239,2,1672318938),(72055,3,42240,2,1672318938),(72056,3,42241,2,1672318938),(72057,3,42242,2,1672318938),(72058,3,42243,2,1672318938),(72059,3,42244,2,1672318938),(72060,3,42245,2,1672318938),(72061,3,42246,2,1672318938),(72062,3,42247,2,1672318938),(72063,3,42248,2,1672318938),(72064,3,42249,2,1672318938),(72065,3,42250,2,1672318938),(72066,3,42251,2,1672318938),(72067,3,42252,2,1672318938),(72068,3,42253,2,1672318938),(72069,3,42254,2,1672318938),(72070,3,42255,2,1672318938),(72071,3,42256,2,1672318938),(72072,3,42257,2,1672318938),(72073,3,42258,2,1672318938),(72074,3,42259,2,1672318938),(72075,3,42260,2,1672318938),(72076,3,42261,2,1672318938),(72077,3,42262,2,1672318938),(72078,3,42263,2,1672318938),(72079,3,42264,2,1672318938),(72080,3,42265,2,1672318938),(72081,3,42266,2,1672318938),(72082,3,42269,2,1672318938),(72083,3,42270,2,1672318938),(72084,3,44056,2,1672318938),(72085,3,44437,2,1672318938),(72086,3,10073,3,1672318938),(72087,3,10074,3,1672318938),(72088,3,10075,3,1672318938),(72089,3,10076,3,1672318938),(72090,3,10077,3,1672318938),(72091,3,10078,3,1672318938),(72092,3,23252,3,1672318938),(72093,3,23253,3,1672318938),(72094,3,23255,3,1672318938),(72095,3,23256,3,1672318938),(72096,3,23257,3,1672318938),(72097,3,23258,3,1672318938),(72098,3,23259,3,1672318938),(72099,3,23260,3,1672318938),(72100,3,23261,3,1672318938),(72101,3,23262,3,1672318938),(72102,3,23264,3,1672318938),(72103,3,23265,3,1672318938),(72104,3,23266,3,1672318938),(72105,3,23267,3,1672318938),(72106,3,23268,3,1672318938),(72107,3,23269,3,1672318938),(72108,3,23270,3,1672318938),(72109,3,23271,3,1672318938),(72110,3,23272,3,1672318938),(72111,3,23273,3,1672318938),(72112,3,23274,3,1672318938),(72113,3,23275,3,1672318938),(72114,3,23276,3,1672318938),(72115,3,23277,3,1672318938),(72116,3,23328,3,1672318938),(72117,3,23620,3,1672318938),(72118,3,23625,3,1672318938),(72119,3,23628,3,1672318938),(72120,3,23635,3,1672318938),(72121,3,23662,3,1672318938),(72122,3,23664,3,1672318938),(72123,3,25367,3,1672318938),(72124,3,25371,3,1672318938),(72125,3,25667,3,1672318938),(72126,3,25668,3,1672318938),(72127,3,28249,3,1672318938),(72128,3,28534,3,1672318938),(72129,3,28536,3,1672318938),(72130,3,28538,3,1672318938),(72131,3,29823,3,1672318938),(72132,3,33024,3,1672318938),(72133,3,33025,3,1672318938),(72134,3,33026,3,1672318938),(72135,3,33027,3,1672318938),(72136,3,34318,3,1672318938),(72137,3,34319,3,1672318938),(72138,3,35275,3,1672318938),(72139,3,35276,3,1672318938),(72140,3,35277,3,1672318938),(72141,3,39805,3,1672318938),(72142,3,39823,3,1672318938),(72143,3,42227,3,1672318938),(72144,3,42228,3,1672318938),(72145,3,42229,3,1672318938),(72146,3,42230,3,1672318938),(72147,3,42231,3,1672318938),(72148,3,42232,3,1672318938),(72149,3,42233,3,1672318938),(72150,3,42234,3,1672318938),(72151,3,42235,3,1672318938),(72152,3,42236,3,1672318938),(72153,3,42237,3,1672318938),(72154,3,42238,3,1672318938),(72155,3,42239,3,1672318938),(72156,3,42240,3,1672318938),(72157,3,42241,3,1672318938),(72158,3,42242,3,1672318938),(72159,3,42243,3,1672318938),(72160,3,42244,3,1672318938),(72161,3,42245,3,1672318938),(72162,3,42246,3,1672318938),(72163,3,42247,3,1672318938),(72164,3,42248,3,1672318938),(72165,3,42249,3,1672318938),(72166,3,42250,3,1672318938),(72167,3,42251,3,1672318938),(72168,3,42252,3,1672318938),(72169,3,42253,3,1672318938),(72170,3,42254,3,1672318938),(72171,3,42255,3,1672318938),(72172,3,42256,3,1672318938),(72173,3,42257,3,1672318938),(72174,3,42258,3,1672318938),(72175,3,42259,3,1672318938),(72176,3,42260,3,1672318938),(72177,3,42261,3,1672318938),(72178,3,42262,3,1672318938),(72179,3,42263,3,1672318938),(72180,3,42264,3,1672318938),(72181,3,42265,3,1672318938),(72182,3,42266,3,1672318938),(72183,3,42269,3,1672318938),(72184,3,42270,3,1672318938),(72185,3,44056,3,1672318938),(72186,3,44437,3,1672318938),(72187,1,10084,3,1672318938),(72189,2,1,3,1672318982),(72190,2,2,3,1672318982),(72191,2,3,3,1672318982),(72192,2,5,3,1672318982),(72193,2,6,3,1672318982),(72194,2,7,3,1672318982),(72195,2,8,3,1672318982),(72196,2,9,3,1672318982),(72197,2,10,3,1672318982),(72198,2,11,3,1672318982),(72199,2,12,3,1672318982),(72200,2,13,3,1672318982),(72201,2,15,3,1672318982),(72202,2,16,3,1672318982),(72203,2,17,3,1672318982),(72204,2,18,3,1672318982),(72205,2,19,3,1672318982),(72206,2,20,3,1672318982),(72207,2,21,3,1672318982),(72208,2,22,3,1672318982),(72209,2,23,3,1672318982),(72210,2,24,3,1672318982),(72211,2,25,3,1672318982),(72212,2,26,3,1672318982),(72213,2,27,3,1672318982),(72214,2,28,3,1672318982),(72215,2,29,3,1672318982),(72216,2,30,3,1672318982),(72217,2,31,3,1672318982),(72218,2,32,3,1672318982),(72219,2,33,3,1672318982),(72220,2,35,3,1672318982),(72221,2,36,3,1672318982),(72222,2,37,3,1672318982),(72223,2,38,3,1672318982),(72224,2,39,3,1672318982),(72225,2,40,3,1672318982),(72226,2,41,3,1672318982),(72227,2,42,3,1672318982),(72228,2,43,3,1672318982),(72229,2,44,3,1672318982),(72230,2,45,3,1672318982),(72231,2,46,3,1672318982),(72232,2,47,3,1672318982),(72233,2,48,3,1672318982),(72234,2,49,3,1672318982),(72235,2,50,3,1672318982),(72236,2,51,3,1672318982),(72237,2,52,3,1672318982),(72238,2,53,3,1672318982),(72239,2,54,3,1672318982),(72240,2,55,3,1672318982),(72241,2,56,3,1672318982),(72242,2,57,3,1672318982),(72243,2,58,3,1672318982),(72244,2,59,3,1672318982),(72245,2,60,3,1672318982),(72246,2,61,3,1672318982),(72247,2,62,3,1672318982),(72248,2,63,3,1672318982),(72249,2,64,3,1672318982),(72250,2,65,3,1672318982),(72251,2,66,3,1672318982),(72252,2,67,3,1672318982),(72253,2,68,3,1672318982),(72254,2,69,3,1672318982),(72255,2,70,3,1672318982),(72256,2,71,3,1672318982),(72257,2,72,3,1672318982),(72258,2,73,3,1672318982),(72259,2,74,3,1672318982),(72260,2,75,3,1672318982),(72261,2,76,3,1672318982),(72262,2,77,3,1672318982),(72263,2,78,3,1672318982),(72264,2,79,3,1672318982),(72265,2,80,3,1672318982),(72266,2,81,3,1672318982),(72267,2,82,3,1672318982),(72268,2,83,3,1672318982),(72269,2,84,3,1672318982),(72270,2,85,3,1672318982),(72271,2,86,3,1672318982),(72272,2,87,3,1672318982),(72273,2,88,3,1672318982),(72274,2,89,3,1672318982),(72275,2,90,3,1672318982),(72276,2,91,3,1672318982),(72277,2,92,3,1672318982),(72278,2,93,3,1672318982),(72279,2,94,3,1672318982),(72280,2,95,3,1672318982),(72281,2,96,3,1672318982),(72282,2,97,3,1672318982),(72283,2,98,3,1672318982),(72284,2,99,3,1672318982),(72285,2,100,3,1672318982),(72286,2,101,3,1672318982),(72287,2,102,3,1672318982),(72288,2,103,3,1672318982),(72289,2,104,3,1672318982),(72290,2,105,3,1672318982),(72291,2,106,3,1672318982),(72292,2,107,3,1672318982),(72293,2,108,3,1672318982),(72294,2,109,3,1672318982),(72295,2,110,3,1672318982),(72296,2,111,3,1672318982),(72297,2,112,3,1672318982),(72298,2,113,3,1672318982),(72299,2,114,3,1672318982),(72300,2,115,3,1672318982),(72301,2,116,3,1672318982),(72302,2,117,3,1672318982),(72303,2,121,3,1672318982),(72304,2,122,3,1672318982),(72305,2,123,3,1672318982),(72306,2,124,3,1672318982),(72307,2,125,3,1672318982),(72308,2,126,3,1672318982),(72309,2,127,3,1672318982),(72310,2,129,3,1672318982),(72311,2,130,3,1672318982),(72312,2,131,3,1672318982),(72313,2,132,3,1672318982),(72314,2,133,3,1672318982),(72315,2,134,3,1672318982),(72316,2,135,3,1672318982),(72317,2,136,3,1672318982),(72318,2,137,3,1672318982),(72319,2,138,3,1672318982),(72320,2,139,3,1672318982),(72321,2,140,3,1672318982),(72322,2,141,3,1672318982),(72323,2,142,3,1672318982),(72324,2,143,3,1672318982),(72325,2,144,3,1672318982),(72326,2,145,3,1672318982),(72327,2,146,3,1672318982),(72328,2,147,3,1672318982),(72329,2,148,3,1672318982),(72330,2,149,3,1672318982),(72331,2,150,3,1672318982),(72332,2,151,3,1672318982),(72333,2,152,3,1672318982),(72334,2,153,3,1672318982),(72335,2,154,3,1672318982),(72336,2,155,3,1672318982),(72337,2,156,3,1672318982),(72338,2,157,3,1672318982),(72339,2,158,3,1672318982),(72340,2,159,3,1672318982),(72341,2,160,3,1672318982),(72342,2,161,3,1672318982),(72343,2,162,3,1672318982),(72344,2,163,3,1672318982),(72345,2,164,3,1672318982),(72346,2,165,3,1672318982),(72347,2,166,3,1672318982),(72348,2,167,3,1672318982),(72349,2,168,3,1672318982),(72350,2,169,3,1672318982),(72351,2,170,3,1672318982),(72352,2,171,3,1672318982),(72353,2,172,3,1672318982),(72354,2,173,3,1672318982),(72355,2,174,3,1672318982),(72356,2,175,3,1672318982),(72357,2,176,3,1672318982),(72358,2,177,3,1672318982),(72359,2,178,3,1672318982),(72360,2,179,3,1672318982),(72361,2,180,3,1672318982),(72362,2,181,3,1672318982),(72363,2,182,3,1672318982),(72364,2,183,3,1672318982),(72365,2,184,3,1672318982),(72366,2,185,3,1672318982),(72367,2,186,3,1672318982),(72368,2,187,3,1672318982),(72369,2,188,3,1672318982),(72370,2,189,3,1672318982),(72371,2,190,3,1672318982),(72372,2,191,3,1672318982),(72373,2,192,3,1672318982),(72374,2,193,3,1672318982),(72375,2,194,3,1672318982),(72376,2,195,3,1672318982),(72377,2,196,3,1672318982),(72378,2,197,3,1672318982),(72379,2,198,3,1672318982),(72380,2,199,3,1672318982),(72381,2,200,3,1672318982),(72382,2,201,3,1672318982),(72383,2,202,3,1672318982),(72384,2,203,3,1672318982),(72385,2,204,3,1672318982),(72386,2,205,3,1672318982),(72387,2,206,3,1672318982),(72388,2,207,3,1672318982),(72389,2,208,3,1672318982),(72390,2,209,3,1672318982),(72391,2,210,3,1672318982),(72392,2,211,3,1672318982),(72393,2,212,3,1672318982),(72394,2,213,3,1672318982),(72395,2,214,3,1672318982),(72396,2,215,3,1672318982),(72397,2,216,3,1672318982),(72398,2,217,3,1672318982),(72399,2,218,3,1672318982),(72400,2,219,3,1672318982),(72401,2,220,3,1672318982),(72402,2,221,3,1672318982),(72403,2,222,3,1672318982),(72404,2,223,3,1672318982),(72405,2,224,3,1672318982),(72406,2,225,3,1672318982),(72407,2,226,3,1672318982),(72408,2,227,3,1672318982),(72409,2,228,3,1672318982),(72410,2,229,3,1672318982),(72411,2,230,3,1672318982),(72412,2,231,3,1672318982),(72413,2,232,3,1672318982),(72414,2,233,3,1672318982),(72415,2,234,3,1672318982),(72416,2,235,3,1672318982),(72417,2,236,3,1672318982),(72418,2,237,3,1672318982),(72419,2,238,3,1672318982),(72420,2,239,3,1672318982),(72421,2,240,3,1672318982),(72422,2,241,3,1672318982),(72423,2,242,3,1672318982),(72424,2,243,3,1672318982),(72425,2,244,3,1672318982),(72426,2,245,3,1672318982),(72427,2,246,3,1672318982),(72428,2,247,3,1672318982),(72429,2,248,3,1672318982),(72430,2,249,3,1672318982),(72431,2,250,3,1672318982),(72432,2,251,3,1672318982),(72433,2,252,3,1672318982),(72434,2,253,3,1672318982),(72435,2,254,3,1672318982),(72436,2,255,3,1672318982),(72437,2,256,3,1672318982),(72438,2,257,3,1672318982),(72439,2,258,3,1672318982),(72440,2,259,3,1672318982),(72441,2,260,3,1672318982),(72442,2,261,3,1672318982),(72443,2,262,3,1672318982),(72444,2,263,3,1672318982),(72445,2,264,3,1672318982),(72446,2,265,3,1672318982),(72447,2,266,3,1672318982),(72448,2,267,3,1672318982),(72449,2,268,3,1672318982),(72450,2,269,3,1672318982),(72451,2,270,3,1672318982),(72452,2,271,3,1672318982),(72453,2,272,3,1672318982),(72454,2,273,3,1672318982),(72455,2,274,3,1672318982),(72456,2,275,3,1672318982),(72457,2,276,3,1672318982),(72458,2,277,3,1672318982),(72459,2,278,3,1672318982),(72460,2,279,3,1672318982),(72461,2,280,3,1672318982),(72462,2,281,3,1672318982),(72463,2,282,3,1672318982),(72464,2,283,3,1672318982),(72465,2,284,3,1672318982),(72466,2,285,3,1672318982),(72467,2,286,3,1672318982),(72468,2,287,3,1672318982),(72469,2,288,3,1672318982),(72470,2,289,3,1672318982),(72471,2,290,3,1672318982),(72472,2,291,3,1672318982),(72473,2,292,3,1672318982),(72474,2,293,3,1672318982),(72475,2,294,3,1672318982),(72476,2,295,3,1672318982),(72477,2,296,3,1672318982),(72478,2,297,3,1672318982),(72479,2,298,3,1672318982),(72480,2,299,3,1672318982),(72481,2,300,3,1672318982),(72482,2,301,3,1672318982),(72483,2,302,3,1672318982),(72484,2,303,3,1672318982),(72485,2,304,3,1672318982),(72486,2,305,3,1672318982),(72487,2,306,3,1672318982),(72488,2,307,3,1672318982),(72489,2,308,3,1672318982),(72490,2,309,3,1672318982),(72491,2,310,3,1672318982),(72492,2,311,3,1672318982),(72493,2,312,3,1672318982),(72494,2,313,3,1672318982),(72495,2,314,3,1672318982),(72496,2,315,3,1672318982),(72497,2,316,3,1672318982),(72498,2,317,3,1672318982),(72499,2,318,3,1672318982),(72500,2,319,3,1672318982),(72501,2,320,3,1672318982),(72502,2,321,3,1672318982),(72503,2,322,3,1672318982),(72504,2,323,3,1672318982),(72505,2,324,3,1672318982),(72506,2,325,3,1672318982),(72507,2,326,3,1672318982),(72508,2,327,3,1672318982),(72509,2,328,3,1672318982),(72510,2,329,3,1672318982),(72511,2,330,3,1672318982),(72512,2,331,3,1672318982),(72513,2,332,3,1672318982),(72514,2,333,3,1672318982),(72515,2,334,3,1672318982),(72516,2,335,3,1672318982),(72517,2,336,3,1672318982),(72518,2,337,3,1672318982),(72519,2,338,3,1672318982),(72520,2,339,3,1672318982),(72521,2,340,3,1672318982),(72522,2,341,3,1672318982),(72523,2,342,3,1672318982),(72524,2,343,3,1672318982),(72525,2,344,3,1672318982),(72526,2,345,3,1672318982),(72527,2,346,3,1672318982),(72528,2,347,3,1672318982),(72529,2,348,3,1672318982),(72530,2,349,3,1672318982),(72531,2,350,3,1672318982),(72532,2,351,3,1672318982),(72533,2,352,3,1672318982),(72534,2,353,3,1672318982),(72535,2,354,3,1672318982),(72536,2,355,3,1672318982),(72537,2,356,3,1672318982),(72538,2,357,3,1672318982),(72539,2,358,3,1672318982),(72540,2,359,3,1672318982),(72541,2,360,3,1672318982),(72542,2,361,3,1672318982),(72543,2,362,3,1672318982),(72544,2,363,3,1672318982),(72545,2,364,3,1672318982),(72546,2,365,3,1672318982),(72547,2,366,3,1672318982),(72548,2,367,3,1672318982),(72549,2,368,3,1672318982),(72550,2,369,3,1672318982),(72551,2,370,3,1672318982),(72552,2,371,3,1672318982),(72553,2,372,3,1672318982),(72554,2,373,3,1672318982),(72555,2,374,3,1672318982),(72556,2,375,3,1672318982),(72557,2,376,3,1672318982),(72558,2,377,3,1672318982),(72559,2,378,3,1672318982),(72560,2,379,3,1672318982),(72561,2,380,3,1672318982),(72562,2,381,3,1672318982),(72563,2,382,3,1672318982),(72564,2,383,3,1672318982),(72565,2,384,3,1672318982),(72566,2,385,3,1672318982),(72567,2,386,3,1672318982),(72568,2,387,3,1672318982),(72569,2,388,3,1672318982),(72570,2,389,3,1672318982),(72571,2,390,3,1672318982),(72572,2,391,3,1672318982),(72573,2,392,3,1672318982),(72574,2,393,3,1672318982),(72575,2,394,3,1672318982),(72576,2,395,3,1672318982),(72577,2,396,3,1672318982),(72578,2,397,3,1672318982),(72579,2,398,3,1672318982),(72580,2,399,3,1672318982),(72581,2,400,3,1672318982),(72582,2,401,3,1672318982),(72583,2,402,3,1672318982),(72584,2,403,3,1672318982),(72585,2,404,3,1672318982),(72586,2,405,3,1672318982),(72587,2,406,3,1672318982),(72588,2,407,3,1672318982),(72589,2,408,3,1672318982),(72590,2,409,3,1672318982),(72591,2,410,3,1672318982),(72592,2,411,3,1672318982),(72593,2,412,3,1672318982),(72594,2,413,3,1672318982),(72595,2,414,3,1672318982),(72596,2,415,3,1672318982),(72597,2,416,3,1672318982),(72598,2,417,3,1672318982),(72599,2,418,3,1672318982),(72600,2,419,3,1672318982),(72601,2,420,3,1672318982),(72602,2,421,3,1672318982),(72603,2,422,3,1672318982),(72604,2,423,3,1672318982),(72605,2,424,3,1672318982),(72606,2,425,3,1672318982),(72607,2,426,3,1672318982),(72608,2,427,3,1672318982),(72609,2,428,3,1672318982),(72610,2,429,3,1672318982),(72611,2,430,3,1672318982),(72612,2,431,3,1672318982),(72613,2,432,3,1672318982),(72614,2,433,3,1672318982),(72615,2,434,3,1672318982),(72616,2,435,3,1672318982),(72617,2,436,3,1672318982),(72618,2,437,3,1672318982),(72619,2,438,3,1672318982),(72620,2,439,3,1672318982),(72621,2,440,3,1672318982),(72622,2,441,3,1672318982),(72623,2,442,3,1672318982),(72624,2,443,3,1672318982),(72625,2,444,3,1672318982),(72626,2,445,3,1672318982),(72627,2,446,3,1672318982),(72628,2,447,3,1672318982),(72629,2,448,3,1672318982),(72630,2,449,3,1672318982),(72631,2,450,3,1672318982),(72632,2,451,3,1672318982),(72633,2,452,3,1672318982),(72634,2,453,3,1672318982),(72635,2,454,3,1672318982),(72636,2,455,3,1672318982),(72637,2,456,3,1672318982),(72638,2,457,3,1672318982),(72639,2,458,3,1672318982),(72640,2,459,3,1672318982),(72641,2,460,3,1672318982),(72642,2,461,3,1672318982),(72643,2,462,3,1672318982),(72644,2,463,3,1672318982),(72645,2,464,3,1672318982),(72646,2,465,3,1672318982),(72647,2,466,3,1672318982),(72648,2,467,3,1672318982),(72649,2,468,3,1672318982),(72650,2,469,3,1672318982),(72651,2,470,3,1672318982),(72652,2,471,3,1672318982),(72653,2,472,3,1672318982),(72654,2,473,3,1672318982),(72655,2,474,3,1672318982),(72656,2,475,3,1672318982),(72657,2,476,3,1672318982),(72658,2,477,3,1672318982),(72659,2,478,3,1672318982),(72660,2,479,3,1672318982),(72661,2,480,3,1672318982),(72662,2,481,3,1672318982),(72663,2,482,3,1672318982),(72664,2,483,3,1672318982),(72665,2,484,3,1672318982),(72666,2,485,3,1672318982),(72667,2,486,3,1672318982),(72668,2,487,3,1672318982),(72669,2,488,3,1672318982),(72670,2,489,3,1672318982),(72671,2,490,3,1672318982),(72672,2,491,3,1672318982),(72673,2,492,3,1672318982),(72674,2,493,3,1672318982),(72675,2,494,3,1672318982),(72676,2,495,3,1672318982),(72677,2,496,3,1672318982),(72678,2,497,3,1672318982),(72679,2,498,3,1672318982),(72680,2,499,3,1672318982),(72681,2,500,3,1672318982),(72682,2,501,3,1672318982),(72683,2,502,3,1672318982),(72684,2,503,3,1672318982),(72685,2,504,3,1672318982),(72686,2,505,3,1672318982),(72687,2,506,3,1672318982),(72688,2,507,3,1672318982),(72689,2,508,3,1672318982),(72690,2,509,3,1672318982),(72691,2,510,3,1672318982),(72692,2,511,3,1672318982),(72693,2,512,3,1672318982),(72694,2,513,3,1672318982),(72695,2,514,3,1672318982),(72696,2,515,3,1672318982),(72697,2,516,3,1672318982),(72698,2,517,3,1672318982),(72699,2,518,3,1672318982),(72700,2,519,3,1672318982),(72701,2,520,3,1672318982),(72702,2,521,3,1672318982),(72703,2,522,3,1672318982),(72704,2,523,3,1672318982),(72705,2,524,3,1672318982),(72706,2,525,3,1672318982),(72707,2,526,3,1672318982),(72708,2,527,3,1672318982),(72709,2,528,3,1672318982),(72710,2,529,3,1672318982),(72711,2,530,3,1672318982),(72712,2,531,3,1672318982),(72713,2,532,3,1672318982),(72714,2,533,3,1672318982),(72715,2,534,3,1672318982),(72716,2,535,3,1672318982),(72717,2,536,3,1672318982),(72718,2,537,3,1672318982),(72719,2,538,3,1672318982),(72720,2,539,3,1672318982),(72721,2,540,3,1672318982),(72722,2,541,3,1672318982),(72723,2,542,3,1672318982),(72724,2,543,3,1672318982),(72725,2,544,3,1672318982),(72726,2,545,3,1672318982),(72727,2,546,3,1672318982),(72728,2,547,3,1672318982),(72729,2,548,3,1672318982),(72730,2,549,3,1672318982),(72731,2,550,3,1672318982),(72732,2,551,3,1672318982),(72733,2,552,3,1672318982),(72734,2,553,3,1672318982),(72735,2,554,3,1672318982),(72736,2,555,3,1672318982),(72737,2,556,3,1672318982),(72738,2,557,3,1672318982),(72739,2,558,3,1672318982),(72740,2,559,3,1672318982),(72741,2,560,3,1672318982),(72742,2,561,3,1672318982),(72743,2,562,3,1672318982),(72744,2,563,3,1672318982),(72745,2,564,3,1672318982),(72746,2,565,3,1672318982),(72747,2,566,3,1672318982),(72748,2,567,3,1672318982),(72749,2,568,3,1672318982),(72750,2,569,3,1672318982),(72751,2,570,3,1672318982),(72752,2,571,3,1672318982),(72753,2,572,3,1672318982),(72754,2,573,3,1672318982),(72755,2,574,3,1672318982),(72756,2,575,3,1672318982),(72757,2,576,3,1672318982),(72758,2,577,3,1672318982),(72759,2,578,3,1672318982),(72760,2,579,3,1672318982),(72761,2,580,3,1672318982),(72762,2,581,3,1672318982),(72763,2,582,3,1672318982),(72764,2,583,3,1672318982),(72765,2,584,3,1672318982),(72766,2,585,3,1672318982),(72767,2,586,3,1672318982),(72768,2,587,3,1672318982),(72769,2,588,3,1672318982),(72770,2,589,3,1672318982),(72771,2,590,3,1672318982),(72772,2,591,3,1672318982),(72773,2,592,3,1672318982),(72774,2,593,3,1672318982),(72775,2,594,3,1672318982),(72776,2,595,3,1672318982),(72777,2,596,3,1672318982),(72778,2,597,3,1672318982),(72779,2,598,3,1672318982),(72780,2,599,3,1672318982),(72781,2,600,3,1672318982),(72782,2,601,3,1672318982),(72783,2,602,3,1672318982),(72784,2,603,3,1672318982),(72785,2,604,3,1672318982),(72786,2,605,3,1672318982),(72787,2,606,3,1672318982),(72788,2,607,3,1672318982),(72789,2,608,3,1672318982),(72790,2,609,3,1672318982),(72791,2,610,3,1672318982),(72792,2,611,3,1672318982),(72793,2,612,3,1672318982),(72794,2,613,3,1672318982),(72795,2,614,3,1672318982),(72796,2,615,3,1672318982),(72797,2,616,3,1672318982),(72798,2,617,3,1672318982),(72799,2,618,3,1672318982),(72800,2,619,3,1672318982),(72801,2,620,3,1672318982),(72802,2,621,3,1672318982),(72803,2,622,3,1672318982),(72804,2,623,3,1672318982),(72805,2,624,3,1672318982),(72806,2,625,3,1672318982),(72807,2,626,3,1672318982),(72808,2,627,3,1672318982),(72809,2,628,3,1672318982),(72810,2,629,3,1672318982),(72811,2,630,3,1672318982),(72812,2,631,3,1672318982),(72813,2,632,3,1672318982),(72814,2,633,3,1672318982),(72815,2,634,3,1672318982),(72816,2,635,3,1672318982),(72817,2,636,3,1672318982),(72818,2,637,3,1672318982),(72819,2,638,3,1672318982),(72820,2,639,3,1672318982),(72821,2,640,3,1672318982),(72822,2,641,3,1672318982),(72823,2,642,3,1672318982),(72824,2,643,3,1672318982),(72825,2,644,3,1672318982),(72826,2,645,3,1672318982),(72827,2,646,3,1672318982),(72828,2,647,3,1672318982),(72829,2,648,3,1672318982),(72830,2,649,3,1672318982),(72831,2,650,3,1672318982),(72832,2,651,3,1672318982),(72833,2,652,3,1672318982),(72834,2,653,3,1672318982),(72835,2,654,3,1672318982),(72836,2,655,3,1672318982),(72837,2,656,3,1672318982),(72838,2,657,3,1672318982),(72839,2,658,3,1672318982),(72840,2,659,3,1672318982),(72841,2,660,3,1672318982),(72842,2,661,3,1672318982),(72843,2,662,3,1672318982),(72844,2,663,3,1672318982),(72845,2,664,3,1672318982),(72846,2,665,3,1672318982),(72847,2,666,3,1672318982),(72848,2,667,3,1672318982),(72849,2,668,3,1672318982),(72850,2,669,3,1672318982),(72851,2,670,3,1672318982),(72852,2,671,3,1672318982),(72853,2,672,3,1672318982),(72854,2,673,3,1672318982),(72855,2,674,3,1672318982),(72856,2,675,3,1672318982),(72857,2,676,3,1672318982),(72858,2,677,3,1672318982),(72859,2,678,3,1672318982),(72860,2,679,3,1672318982),(72861,2,680,3,1672318982),(72862,2,681,3,1672318982),(72863,2,682,3,1672318982),(72864,2,683,3,1672318982),(72865,2,684,3,1672318982),(72866,2,685,3,1672318982),(72867,2,686,3,1672318982),(72868,2,687,3,1672318982),(72869,2,688,3,1672318982),(72870,2,689,3,1672318982),(72871,2,690,3,1672318982),(72872,2,691,3,1672318982),(72873,2,692,3,1672318982),(72874,2,693,3,1672318982),(72875,2,694,3,1672318982),(72876,2,695,3,1672318982),(72877,2,696,3,1672318982),(72878,2,697,3,1672318982),(72879,2,698,3,1672318982),(72880,2,699,3,1672318982),(72881,2,700,3,1672318982),(72882,2,701,3,1672318982),(72883,2,702,3,1672318982),(72884,2,703,3,1672318982),(72885,2,704,3,1672318982),(72886,2,705,3,1672318982),(72887,2,706,3,1672318982),(72888,2,707,3,1672318982),(72889,2,708,3,1672318982),(72890,2,709,3,1672318982),(72891,2,710,3,1672318982),(72892,2,711,3,1672318982),(72893,2,712,3,1672318982),(72894,2,713,3,1672318982),(72895,2,714,3,1672318982),(72896,2,715,3,1672318982),(72897,2,716,3,1672318982),(72898,2,717,3,1672318982),(72899,2,718,3,1672318982),(72900,2,719,3,1672318982),(72904,8,77559,3,1672319005),(72905,8,77560,3,1672319005),(72906,8,77561,3,1672319005),(72907,8,77562,3,1672319005),(72908,8,77563,3,1672319005),(72909,8,77564,3,1672319005),(72910,8,77565,3,1672319005),(72911,8,77566,3,1672319005),(72912,8,77567,3,1672319005),(72913,8,77568,3,1672319005),(72914,8,77569,3,1672319005),(72915,8,77570,3,1672319005),(72916,8,77571,3,1672319005),(72917,8,77572,3,1672319005),(72918,8,77573,3,1672319005),(72919,8,77574,3,1672319005),(72920,8,77575,3,1672319005),(72921,8,77576,3,1672319005),(72922,8,77577,3,1672319005),(72923,8,77578,3,1672319005),(72924,8,77579,3,1672319005),(72925,8,77580,3,1672319005),(72926,8,77581,3,1672319005),(72927,8,77582,3,1672319005),(72928,8,77583,3,1672319005),(72929,8,77584,3,1672319005),(72930,8,77585,3,1672319005),(72931,8,77586,3,1672319005),(72932,8,77587,3,1672319005),(72933,8,77588,3,1672319005),(72934,8,77589,3,1672319005),(72935,8,77590,3,1672319005),(72936,8,77591,3,1672319005),(72937,8,77592,3,1672319005),(72938,8,77593,3,1672319005),(72939,8,77594,3,1672319005),(72940,8,77595,3,1672319005),(72941,8,77596,3,1672319005),(72942,8,77597,3,1672319005),(72943,8,77598,3,1672319005),(72944,8,77599,3,1672319005),(72945,8,77600,3,1672319005),(72946,8,77601,3,1672319005),(72947,8,77602,3,1672319005),(72948,8,77603,3,1672319005),(72949,8,77604,3,1672319005),(72950,8,77605,3,1672319005),(72951,8,77606,3,1672319005),(72952,8,77607,3,1672319005),(72953,8,77608,3,1672319005),(72954,8,77609,3,1672319005),(72955,8,77610,3,1672319005),(72956,8,77611,3,1672319005),(72957,8,77612,3,1672319005),(72958,8,77613,3,1672319005),(72959,8,77614,3,1672319005),(72960,8,77615,3,1672319005),(72961,8,77616,3,1672319005),(72962,8,77617,3,1672319005),(72963,8,77618,3,1672319005),(72964,8,77619,3,1672319005),(72965,8,77620,3,1672319005),(72966,8,77621,3,1672319005),(72967,8,77622,3,1672319005),(72968,8,77623,3,1672319005),(72969,8,77624,3,1672319005),(72970,8,77625,3,1672319005),(72971,8,77626,3,1672319005),(72972,8,77627,3,1672319005),(72973,8,77628,3,1672319005),(72974,8,77629,3,1672319005),(72975,8,77630,3,1672319005),(72976,8,77631,3,1672319005),(72977,8,77632,3,1672319005),(72978,8,77633,3,1672319005),(72979,8,77634,3,1672319005),(72980,8,77635,3,1672319005),(72981,8,77636,3,1672319005),(72982,8,77637,3,1672319005),(72983,8,77638,3,1672319005),(72984,8,77639,3,1672319005),(72985,8,77640,3,1672319005),(72986,8,77641,3,1672319005),(72987,8,77642,3,1672319005),(72988,8,77643,3,1672319005),(72989,8,77644,3,1672319005),(72990,8,77645,3,1672319005),(72991,8,77646,3,1672319005),(72992,8,77647,3,1672319005),(72993,8,77648,3,1672319005),(72994,8,77649,3,1672319005),(72995,8,77650,3,1672319005),(72996,8,77651,3,1672319005),(72997,8,77652,3,1672319005),(72998,8,77653,3,1672319005),(72999,8,77654,3,1672319005),(73000,8,77655,3,1672319005),(73001,8,77656,3,1672319005),(73002,8,77657,3,1672319005),(73003,8,77658,3,1672319005),(73004,8,77659,3,1672319005),(73005,8,77660,3,1672319005),(73006,8,77661,3,1672319005),(73007,8,77662,3,1672319005),(73008,8,77663,3,1672319005),(73009,8,77664,3,1672319005),(73010,8,77665,3,1672319005),(73011,8,77666,3,1672319005),(73012,8,77667,3,1672319005),(73013,8,77668,3,1672319005),(73014,8,77669,3,1672319005),(73015,8,77670,3,1672319005),(73016,8,77671,3,1672319005),(73017,8,77672,3,1672319005),(73018,8,77673,3,1672319005),(73019,8,77674,3,1672319005),(73020,8,77675,3,1672319005),(73021,8,77676,3,1672319005),(73022,8,77677,3,1672319005),(73023,8,77678,3,1672319005),(73024,8,77679,3,1672319005),(73025,8,77680,3,1672319005),(73026,8,77681,3,1672319005),(73027,8,77682,3,1672319005),(73028,8,77683,3,1672319005),(73029,8,77684,3,1672319005),(73030,8,77685,3,1672319005),(73031,8,77686,3,1672319005),(73032,8,77687,3,1672319005),(73033,8,77688,3,1672319005),(73034,8,77689,3,1672319005),(73035,8,77690,3,1672319005),(73036,8,77691,3,1672319005),(73037,8,77692,3,1672319005),(73038,8,77693,3,1672319005),(73039,8,77694,3,1672319005),(73040,8,77708,3,1672319005),(73041,8,77709,3,1672319005),(73042,8,77710,3,1672319005),(73043,8,77711,3,1672319005),(73044,8,77712,3,1672319005),(73045,8,77713,3,1672319005),(73046,8,77714,3,1672319005),(73047,8,77715,3,1672319005),(73048,8,77716,3,1672319005),(73049,8,77717,3,1672319005),(73050,8,77718,3,1672319005),(73051,8,77719,3,1672319005),(73052,8,77720,3,1672319005),(73053,8,77721,3,1672319005),(73054,8,77722,3,1672319005),(73055,8,77723,3,1672319005),(73056,8,77724,3,1672319005),(73057,8,77725,3,1672319005),(73058,8,77726,3,1672319005),(73059,8,77727,3,1672319005),(73060,8,77728,3,1672319005),(73061,8,77729,3,1672319005),(73062,8,77730,3,1672319005),(73063,8,77731,3,1672319005),(73064,8,77732,3,1672319005),(73065,8,77733,3,1672319005),(73066,8,77734,3,1672319005),(73067,8,77735,3,1672319005),(73068,8,77736,3,1672319005),(73069,8,77737,3,1672319005),(73070,8,77738,3,1672319005),(73071,8,77739,3,1672319005),(73072,8,77740,3,1672319005),(73073,8,77741,3,1672319005),(73074,8,77742,3,1672319005),(73075,8,77743,3,1672319005),(73076,8,77744,3,1672319005),(73077,8,77745,3,1672319005),(73078,8,77746,3,1672319005),(73079,8,77747,3,1672319005),(73080,8,77748,3,1672319005),(73081,8,77749,3,1672319005),(73082,8,77750,3,1672319005),(73083,8,77751,3,1672319005),(73084,8,77752,3,1672319005),(73085,8,77753,3,1672319005),(73086,8,77754,3,1672319005),(73087,8,77755,3,1672319005),(73088,8,77756,3,1672319005),(73089,8,77757,3,1672319005),(73090,8,77758,3,1672319005),(73091,8,77759,3,1672319005),(73092,8,77760,3,1672319005),(73093,8,77761,3,1672319005),(73094,8,77762,3,1672319005),(73095,8,77763,3,1672319005),(73096,8,77764,3,1672319005),(73097,8,77765,3,1672319005),(73098,8,77766,3,1672319005),(73099,8,77767,3,1672319005),(73100,8,77768,3,1672319005),(73101,8,77769,3,1672319005),(73102,8,77770,3,1672319005),(73103,8,77771,3,1672319005),(73104,8,77772,3,1672319005),(73105,8,77773,3,1672319005),(73106,8,77774,3,1672319005),(73107,8,77775,3,1672319005),(73108,8,77776,3,1672319005),(73109,8,77777,3,1672319005),(73110,8,77778,3,1672319005),(73111,8,77779,3,1672319005),(73112,8,77780,3,1672319005),(73113,8,77781,3,1672319005),(73114,8,77782,3,1672319005),(73115,8,77783,3,1672319005),(73116,8,77784,3,1672319005),(73117,8,77785,3,1672319005),(73118,8,77786,3,1672319005),(73119,8,77787,3,1672319005),(73120,8,77788,3,1672319005),(73121,8,77789,3,1672319005),(73122,8,77790,3,1672319005),(73123,8,77791,3,1672319005),(73124,8,77792,3,1672319005),(73125,8,77793,3,1672319005),(73126,8,77794,3,1672319005),(73127,8,77795,3,1672319005),(73128,8,77796,3,1672319005),(73129,8,77797,3,1672319005),(73130,8,77798,3,1672319005),(73131,8,77799,3,1672319005),(73132,8,77800,3,1672319005),(73133,8,77801,3,1672319005),(73134,8,77802,3,1672319005),(73135,8,77803,3,1672319005),(73136,8,77804,3,1672319005),(73137,8,77805,3,1672319005),(73138,8,77806,3,1672319005),(73139,8,77807,3,1672319005),(73140,8,77808,3,1672319005),(73141,8,77809,3,1672319005),(73142,8,77810,3,1672319005),(73143,8,77811,3,1672319005),(73144,8,77812,3,1672319005),(73145,8,77813,3,1672319005),(73146,8,77814,3,1672319005),(73147,8,77815,3,1672319005),(73148,8,77816,3,1672319005),(73149,8,77817,3,1672319005),(73150,8,77818,3,1672319005),(73151,8,77819,3,1672319005),(73152,8,77820,3,1672319005),(73153,8,77821,3,1672319005),(73154,8,77822,3,1672319005),(73155,8,77823,3,1672319005),(73156,8,77824,3,1672319005),(73157,8,77825,3,1672319005),(73158,8,77826,3,1672319005),(73159,8,77827,3,1672319005),(73160,8,77828,3,1672319005),(73161,8,77829,3,1672319005),(73162,8,77830,3,1672319005),(73163,8,77831,3,1672319005),(73164,8,77832,3,1672319005),(73165,8,77833,3,1672319005),(73166,8,77834,3,1672319005),(73167,8,77835,3,1672319005),(73168,8,77836,3,1672319005),(73169,8,77837,3,1672319005),(73170,8,77838,3,1672319005),(73171,8,77839,3,1672319005),(73172,8,77840,3,1672319005),(73173,8,77841,3,1672319005),(73174,8,77842,3,1672319005),(73175,8,77843,3,1672319005),(73176,8,77844,3,1672319005),(73177,8,77845,3,1672319005),(73178,8,77846,3,1672319005),(73179,8,77847,3,1672319005),(73180,8,77848,3,1672319005),(73181,8,77849,3,1672319005),(73182,8,77850,3,1672319005),(73183,8,77851,3,1672319005),(73184,8,77852,3,1672319005),(73185,8,77853,3,1672319005),(73186,8,77854,3,1672319005),(73187,8,77855,3,1672319005),(73188,8,77856,3,1672319005),(73189,8,77857,3,1672319005),(73190,8,77858,3,1672319005),(73191,8,77859,3,1672319005),(73192,8,77860,3,1672319005),(73193,8,77861,3,1672319005),(73194,8,77862,3,1672319005),(73195,8,77863,3,1672319005),(73196,8,77864,3,1672319005),(73197,8,77865,3,1672319005),(73198,8,77866,3,1672319005),(73199,8,77867,3,1672319005),(73200,8,77868,3,1672319005),(73201,8,77869,3,1672319005),(73202,8,77870,3,1672319005),(73203,8,77871,3,1672319005),(73204,8,77872,3,1672319005),(73205,8,77873,3,1672319005),(73206,8,77874,3,1672319005),(73207,8,77875,3,1672319005),(73208,8,77876,3,1672319005),(73209,8,77877,3,1672319005),(73210,8,77878,3,1672319005),(73211,8,77879,3,1672319005),(73212,8,77880,3,1672319005),(73213,8,77881,3,1672319005),(73214,8,77882,3,1672319005),(73215,8,77883,3,1672319005),(73216,8,77884,3,1672319005),(73217,8,77885,3,1672319005),(73218,8,77886,3,1672319005),(73219,8,77887,3,1672319005),(73220,8,77888,3,1672319005),(73221,8,77889,3,1672319005),(73222,8,77890,3,1672319005),(73223,8,77891,3,1672319005),(73224,8,77892,3,1672319005),(73225,8,77893,3,1672319005),(73226,8,77894,3,1672319005),(73227,8,77895,3,1672319005),(73228,8,77896,3,1672319005),(73229,8,77897,3,1672319005),(73230,8,77898,3,1672319005),(73231,8,77899,3,1672319005),(73232,8,77900,3,1672319005),(73233,8,77901,3,1672319005),(73234,8,77902,3,1672319005),(73235,8,77903,3,1672319005),(73236,8,77904,3,1672319005),(73237,8,77905,3,1672319005),(73238,8,77906,3,1672319005),(73239,8,77907,3,1672319005),(73240,8,77908,3,1672319005),(73241,8,77909,3,1672319005),(73242,8,77910,3,1672319005),(73243,8,77911,3,1672319005),(73244,8,77912,3,1672319005),(73245,8,77913,3,1672319005),(73246,8,77914,3,1672319005),(73247,8,77915,3,1672319005),(73248,8,77916,3,1672319005),(73249,8,77917,3,1672319005),(73250,8,77918,3,1672319005),(73251,8,77919,3,1672319005),(73252,8,77920,3,1672319005),(73253,8,77921,3,1672319005),(73254,8,77922,3,1672319005),(73255,8,77923,3,1672319005),(73256,8,77924,3,1672319005),(73257,8,77925,3,1672319005),(73258,8,77926,3,1672319005),(73259,8,77927,3,1672319005),(73260,8,77928,3,1672319005),(73261,8,77929,3,1672319005),(73262,8,77930,3,1672319005),(73263,8,77931,3,1672319005),(73264,8,77932,3,1672319005),(73265,8,77933,3,1672319005),(73266,8,77934,3,1672319005),(73267,8,77935,3,1672319005),(73268,8,77936,3,1672319005),(73269,8,77937,3,1672319005),(73270,8,77938,3,1672319005),(73271,8,77939,3,1672319005),(73272,8,77940,3,1672319005),(73273,8,77941,3,1672319005),(73274,8,77942,3,1672319005),(73275,8,77943,3,1672319005),(73276,8,77944,3,1672319005),(73277,8,77945,3,1672319005),(73278,8,77946,3,1672319005),(73279,8,77947,3,1672319005),(73280,8,77948,3,1672319005),(73281,8,77949,3,1672319005),(73282,8,77950,3,1672319005),(73283,8,77951,3,1672319005),(73284,8,77952,3,1672319005),(73285,8,77953,3,1672319005),(73286,8,77954,3,1672319005),(73287,8,77955,3,1672319005),(73288,8,77956,3,1672319005),(73289,8,77957,3,1672319005),(73290,8,77958,3,1672319005),(73291,8,77959,3,1672319005),(73292,8,77960,3,1672319005),(73293,8,77961,3,1672319005),(73294,8,77962,3,1672319005),(73295,8,77963,3,1672319005),(73296,8,77964,3,1672319005),(73297,8,77965,3,1672319005),(73298,8,77966,3,1672319005),(73299,8,77967,3,1672319005),(73300,8,77968,3,1672319005),(73301,8,77969,3,1672319005),(73302,8,77970,3,1672319005),(73303,8,77971,3,1672319005),(73304,8,77972,3,1672319005),(73305,8,77973,3,1672319005),(73306,8,77974,3,1672319005),(73307,8,77975,3,1672319005),(73308,8,77976,3,1672319005),(73309,8,77977,3,1672319005),(73310,8,77978,3,1672319005),(73311,8,77979,3,1672319005),(73312,8,77980,3,1672319005),(73313,8,77981,3,1672319005),(73314,8,77982,3,1672319005),(73315,8,77983,3,1672319005),(73316,8,77984,3,1672319005),(73317,8,77985,3,1672319005),(73318,8,77986,3,1672319005),(73319,8,77987,3,1672319005),(73320,8,77988,3,1672319005),(73321,8,77989,3,1672319005),(73322,8,77990,3,1672319005),(73323,8,77991,3,1672319005),(73324,8,77992,3,1672319005),(73325,8,77993,3,1672319005),(73326,8,77994,3,1672319005),(73327,8,77995,3,1672319005),(73328,8,77996,3,1672319005),(73329,8,77997,3,1672319005),(73330,8,77998,3,1672319005),(73331,8,77999,3,1672319005),(73332,8,78000,3,1672319005),(73333,8,78001,3,1672319005),(73334,8,78002,3,1672319005),(73335,8,78003,3,1672319005),(73336,8,78004,3,1672319005),(73337,8,78005,3,1672319005),(73338,8,78006,3,1672319005),(73339,8,78007,3,1672319005),(73340,8,78008,3,1672319005),(73341,8,78009,3,1672319005),(73342,8,78010,3,1672319005),(73343,8,78011,3,1672319005),(73344,8,78012,3,1672319005),(73345,8,78013,3,1672319005),(73346,8,78014,3,1672319005),(73347,8,78015,3,1672319005),(73348,8,78016,3,1672319005),(73349,8,78017,3,1672319005),(73350,8,78018,3,1672319005),(73351,8,78019,3,1672319005),(73352,8,78020,3,1672319005),(73353,8,78021,3,1672319005),(73354,8,78022,3,1672319005),(73355,8,78023,3,1672319005),(73356,8,78024,3,1672319005),(73357,8,78025,3,1672319005),(73358,8,78026,3,1672319005),(73359,8,78027,3,1672319005),(73360,8,78028,3,1672319005),(73361,8,78029,3,1672319005),(73362,8,78030,3,1672319005),(73363,8,78031,3,1672319005),(73364,8,78032,3,1672319005),(73365,8,78033,3,1672319005),(73366,8,78034,3,1672319005),(73367,8,78035,3,1672319005),(73368,8,78036,3,1672319005),(73369,8,78037,3,1672319005),(73370,8,78038,3,1672319005),(73371,8,78039,3,1672319005),(73372,8,78040,3,1672319005),(73373,8,78041,3,1672319005),(73374,8,78042,3,1672319005),(73375,8,78043,3,1672319005),(73376,8,78044,3,1672319005),(73377,8,78045,3,1672319005),(73378,8,78046,3,1672319005),(73379,8,78047,3,1672319005),(73380,8,78048,3,1672319005),(73381,8,78049,3,1672319005),(73382,8,78050,3,1672319005),(73383,8,78056,3,1672319005),(73384,8,78057,3,1672319005),(73385,8,78058,3,1672319005),(73386,8,78059,3,1672319005),(73387,8,78060,3,1672319005),(73388,8,78061,3,1672319005),(73389,8,78063,3,1672319005),(73390,8,78065,3,1672319005),(73391,8,78066,3,1672319005),(73392,8,78067,3,1672319005),(73393,8,78068,3,1672319005),(73394,8,78086,3,1672319005),(73395,8,78087,3,1672319005),(73396,8,78088,3,1672319005),(73397,8,78089,3,1672319005),(73398,8,78090,3,1672319005),(73399,8,78091,3,1672319005),(73400,8,78093,3,1672319005),(73401,8,78094,3,1672319005),(73402,8,78095,3,1672319005),(73403,8,78096,3,1672319005),(73404,8,78097,3,1672319005),(73405,8,78098,3,1672319005),(73406,8,78099,3,1672319005),(73407,8,78100,3,1672319005),(73408,8,78101,3,1672319005),(73409,8,78102,3,1672319005),(73410,8,78103,3,1672319005),(73411,8,78104,3,1672319005),(73412,8,78105,3,1672319005),(73413,8,78106,3,1672319005),(73414,8,78107,3,1672319005),(73415,8,78108,3,1672319005),(73416,8,78109,3,1672319005),(73417,8,78110,3,1672319005),(73418,8,78111,3,1672319005),(73419,8,78113,3,1672319005),(73420,8,78114,3,1672319005),(73421,8,78115,3,1672319005),(73422,8,78116,3,1672319005),(73423,8,78117,3,1672319005),(73424,8,78118,3,1672319005),(73425,8,78119,3,1672319005),(73426,8,78120,3,1672319005),(73427,8,78121,3,1672319005),(73428,8,78122,3,1672319005),(73429,8,78123,3,1672319005),(73430,8,78124,3,1672319005),(73431,8,78125,3,1672319005),(73432,8,78126,3,1672319005),(73433,8,78127,3,1672319005),(73434,8,78128,3,1672319005),(73435,8,78129,3,1672319005),(73436,8,78130,3,1672319005),(73437,8,78131,3,1672319005),(73438,8,78132,3,1672319005),(73439,8,78133,3,1672319005),(73440,8,78134,3,1672319005),(73441,8,78135,3,1672319005),(73442,8,78136,3,1672319005),(73443,8,78137,3,1672319005),(73444,8,78138,3,1672319005),(73445,8,78139,3,1672319005),(73446,8,78140,3,1672319005),(73447,8,78141,3,1672319005),(73448,8,78142,3,1672319005),(73449,8,78143,3,1672319005),(73450,8,78144,3,1672319005),(73451,8,78145,3,1672319005),(73452,8,78146,3,1672319005),(73453,8,78147,3,1672319005),(73454,8,78148,3,1672319005),(73455,8,78149,3,1672319005),(73456,8,78150,3,1672319005),(73457,8,78151,3,1672319005),(73458,8,78152,3,1672319005),(73459,8,78153,3,1672319005),(73460,8,78154,3,1672319005),(73461,8,78155,3,1672319005),(73462,8,78156,3,1672319005),(73463,8,78157,3,1672319005),(73464,8,78158,3,1672319005),(73465,8,78160,3,1672319005),(73466,8,78161,3,1672319005),(73467,8,78162,3,1672319005),(73468,8,78163,3,1672319005),(73469,8,78215,3,1672319005),(73470,8,78216,3,1672319005),(73471,8,78217,3,1672319005),(73472,8,78218,3,1672319005),(73473,8,78219,3,1672319005),(73474,8,78220,3,1672319005),(73475,8,78221,3,1672319005),(73476,8,78222,3,1672319005),(73477,8,78223,3,1672319005),(73478,8,78224,3,1672319005),(73479,8,78225,3,1672319005),(73480,8,78226,3,1672319005),(73481,8,78227,3,1672319005),(73482,8,78228,3,1672319005),(73483,8,78229,3,1672319005),(73484,8,78230,3,1672319005),(73485,8,78231,3,1672319005),(73486,8,78232,3,1672319005),(73487,8,78233,3,1672319005),(73488,8,78235,3,1672319005),(73489,8,78236,3,1672319005),(73490,8,78237,3,1672319005),(73491,8,78238,3,1672319005),(73492,8,78239,3,1672319005),(73493,8,78240,3,1672319005),(73494,8,78241,3,1672319005),(73495,8,78242,3,1672319005),(73496,8,78243,3,1672319005),(73497,8,78244,3,1672319005),(73498,8,78245,3,1672319005),(73499,8,78246,3,1672319005),(73500,8,78247,3,1672319005),(73501,8,78248,3,1672319005),(73502,8,78249,3,1672319005),(73503,8,78250,3,1672319005),(73504,8,78251,3,1672319005),(73505,8,78252,3,1672319005),(73506,8,78253,3,1672319005),(73507,8,78254,3,1672319005),(73508,8,78255,3,1672319005),(73509,8,78256,3,1672319005),(73510,8,78257,3,1672319005),(73511,8,78258,3,1672319005),(73512,8,78259,3,1672319005),(73513,8,78260,3,1672319005),(73514,8,78261,3,1672319005),(73515,8,78262,3,1672319005),(73516,8,78263,3,1672319005),(73517,8,78264,3,1672319005),(73518,8,78265,3,1672319005),(73519,8,78266,3,1672319005),(73520,8,78267,3,1672319005),(73521,8,78268,3,1672319005),(73522,8,78269,3,1672319005),(73523,8,78270,3,1672319005),(73524,8,78271,3,1672319005),(73525,8,78272,3,1672319005),(73526,8,78273,3,1672319005),(73527,8,78274,3,1672319005),(73528,8,78275,3,1672319005),(73529,8,78276,3,1672319005),(73530,8,78277,3,1672319005),(73531,8,78278,3,1672319005),(73532,8,78279,3,1672319005),(73533,8,78280,3,1672319005),(73534,8,78282,3,1672319005),(73535,8,78283,3,1672319005),(73536,8,78284,3,1672319005),(73537,8,78285,3,1672319005),(73538,8,78337,3,1672319005),(73539,8,78338,3,1672319005),(73540,8,78339,3,1672319005),(73541,8,78340,3,1672319005),(73542,8,78341,3,1672319005),(73543,8,78342,3,1672319005),(73544,8,78343,3,1672319005),(73545,8,78344,3,1672319005),(73546,8,78345,3,1672319005),(73547,8,78346,3,1672319005),(73548,8,78347,3,1672319005),(73549,8,78348,3,1672319005),(73550,8,78349,3,1672319005),(73551,8,78350,3,1672319005),(73552,8,78351,3,1672319005),(73553,8,78352,3,1672319005),(73554,8,78353,3,1672319005),(73555,8,78354,3,1672319005),(73556,8,78355,3,1672319005),(73557,8,78356,3,1672319005),(73558,8,78357,3,1672319005),(73559,8,78358,3,1672319005),(73560,8,78359,3,1672319005),(73561,8,78360,3,1672319005),(73562,8,78361,3,1672319005),(73563,8,78362,3,1672319005),(73564,8,78363,3,1672319005),(73565,8,78364,3,1672319005),(73566,8,78365,3,1672319005),(73567,8,78366,3,1672319005),(73568,8,78367,3,1672319005),(73569,8,78368,3,1672319005),(73570,8,78369,3,1672319005),(73571,8,78370,3,1672319005),(73572,8,78371,3,1672319005),(73573,8,78372,3,1672319005),(73574,8,78373,3,1672319005),(73575,8,78374,3,1672319005),(73576,8,78375,3,1672319005),(73577,8,78376,3,1672319005),(73578,8,78377,3,1672319005),(73579,8,78378,3,1672319005),(73580,8,78379,3,1672319005),(73581,8,78380,3,1672319005),(73582,8,78381,3,1672319005),(73583,8,78382,3,1672319005),(73584,8,78383,3,1672319005),(73585,8,78384,3,1672319005),(73586,8,78385,3,1672319005),(73587,8,78386,3,1672319005),(73588,8,78387,3,1672319005),(73589,8,78388,3,1672319005),(73590,8,78389,3,1672319005),(73591,8,78390,3,1672319005),(73592,8,78391,3,1672319005),(73593,8,78392,3,1672319005),(73594,8,78393,3,1672319005),(73595,8,78394,3,1672319005),(73596,8,78395,3,1672319005),(73597,8,78396,3,1672319005),(73598,8,78397,3,1672319005),(73599,8,78398,3,1672319005),(73600,8,78399,3,1672319005),(73601,8,78400,3,1672319005),(73602,8,78401,3,1672319005),(73603,8,78402,3,1672319005),(73604,8,78403,3,1672319005),(73605,8,78404,3,1672319005),(73606,8,78405,3,1672319005),(73607,8,78406,3,1672319005),(73608,8,78407,3,1672319005),(73609,8,78408,3,1672319005),(73610,8,78409,3,1672319005),(73611,8,78410,3,1672319005),(73612,8,78411,3,1672319005),(73613,8,78412,3,1672319005),(73614,8,78413,3,1672319005),(73615,8,78414,3,1672319005),(73616,8,78415,3,1672319005),(73617,8,78416,3,1672319005),(73618,8,78417,3,1672319005),(73619,8,78418,3,1672319005),(73620,8,78419,3,1672319005),(73621,8,78420,3,1672319005),(73622,8,78421,3,1672319005),(73623,8,78422,3,1672319005),(73624,8,78423,3,1672319005),(73625,8,78424,3,1672319005),(73626,8,78425,3,1672319005),(73627,8,78426,3,1672319005),(73628,8,78427,3,1672319005),(73629,8,78428,3,1672319005),(73630,8,78429,3,1672319005),(73631,8,78430,3,1672319005),(73632,8,78431,3,1672319005),(73633,8,78432,3,1672319005),(73634,8,78433,3,1672319005),(73635,8,78434,3,1672319005),(73636,8,78435,3,1672319005),(73637,8,78436,3,1672319005),(73638,8,78437,3,1672319005),(73639,8,78438,3,1672319005),(73640,8,78439,3,1672319005),(73641,8,78440,3,1672319005),(73642,8,78441,3,1672319005),(73643,8,78442,3,1672319005),(73644,8,78443,3,1672319005),(73645,8,78444,3,1672319005),(73646,8,78445,3,1672319005),(73647,8,78446,3,1672319005),(73648,8,78447,3,1672319005),(73649,8,78448,3,1672319005),(73650,8,78449,3,1672319005),(73651,8,78450,3,1672319005),(73652,8,78451,3,1672319005),(73653,8,78452,3,1672319005),(73654,8,78453,3,1672319005),(73655,8,78454,3,1672319005),(73656,8,78455,3,1672319005),(73657,8,78456,3,1672319005),(73658,8,78457,3,1672319005),(73659,8,78458,3,1672319005),(73660,8,78459,3,1672319005),(73661,8,78460,3,1672319005),(73662,8,78461,3,1672319005),(73663,8,78462,3,1672319005),(73664,8,78463,3,1672319005),(73665,8,78464,3,1672319005),(73666,8,78465,3,1672319005),(73667,8,78466,3,1672319005),(73668,8,78467,3,1672319005),(73669,8,78468,3,1672319005),(73670,8,78469,3,1672319005),(73671,8,78470,3,1672319005),(73672,8,78471,3,1672319005),(73673,8,78472,3,1672319005),(73674,8,78473,3,1672319005),(73675,8,78474,3,1672319005),(73676,8,78475,3,1672319005),(73677,8,78476,3,1672319005),(73678,8,78477,3,1672319005),(73679,8,78478,3,1672319005),(73680,8,78479,3,1672319005),(73681,8,78480,3,1672319005),(73682,8,78481,3,1672319005),(73683,8,78482,3,1672319005),(73684,8,78483,3,1672319005),(73685,8,78484,3,1672319005),(73686,8,78485,3,1672319005),(73687,8,78486,3,1672319005),(73688,8,78487,3,1672319005),(73689,8,78488,3,1672319005),(73690,8,78489,3,1672319005),(73691,8,78490,3,1672319005),(73692,8,78491,3,1672319005),(73693,8,78492,3,1672319005),(73694,8,78493,3,1672319005),(73695,8,78494,3,1672319005),(73696,8,78495,3,1672319005),(73697,8,78496,3,1672319005),(73698,8,78497,3,1672319005),(73699,8,78498,3,1672319005),(73700,8,78499,3,1672319005),(73701,8,78500,3,1672319005),(73702,8,78501,3,1672319005),(73703,8,78502,3,1672319005),(73704,8,78503,3,1672319005),(73705,8,78504,3,1672319005),(73706,8,78505,3,1672319005),(73707,8,78506,3,1672319005),(73708,8,78507,3,1672319005),(73709,8,78508,3,1672319005),(73710,8,78509,3,1672319005),(73711,8,78510,3,1672319005),(73712,8,78511,3,1672319005),(73713,8,78512,3,1672319005),(73714,8,78513,3,1672319005),(73715,8,78514,3,1672319005),(73716,8,78515,3,1672319005),(73717,8,78516,3,1672319005),(73718,8,78517,3,1672319005),(73719,8,78518,3,1672319005),(73720,8,78519,3,1672319005),(73721,8,78520,3,1672319005),(73722,8,78521,3,1672319005),(73723,8,78522,3,1672319005),(73724,8,78523,3,1672319005),(73725,8,78524,3,1672319005),(73726,8,78528,3,1672319005),(73727,8,78529,3,1672319005),(73728,8,78530,3,1672319005),(73729,8,78531,3,1672319005),(73730,8,78532,3,1672319005),(73731,8,78533,3,1672319005),(73732,8,78534,3,1672319005),(73733,8,78535,3,1672319005),(73734,8,78536,3,1672319005),(73735,8,78537,3,1672319005),(73736,8,78538,3,1672319005),(73737,8,78539,3,1672319005),(73738,8,78540,3,1672319005),(73739,8,78541,3,1672319005),(73740,8,78542,3,1672319005),(73741,8,78543,3,1672319005),(73742,8,78544,3,1672319005),(73743,8,78545,3,1672319005),(73744,8,78546,3,1672319005),(73745,8,78547,3,1672319005),(73746,8,78548,3,1672319005),(73747,8,78549,3,1672319005),(73748,8,78550,3,1672319005),(73749,8,78551,3,1672319005),(73750,8,78552,3,1672319005),(73751,8,78553,3,1672319005),(73752,8,78554,3,1672319005),(73753,8,78555,3,1672319005),(73754,8,78556,3,1672319005),(73755,8,78557,3,1672319005),(73756,8,78558,3,1672319005),(73757,8,78559,3,1672319005),(73758,8,78560,3,1672319005),(73759,8,78561,3,1672319005),(73760,8,78562,3,1672319005),(73761,8,78563,3,1672319005),(73762,8,78564,3,1672319005),(73763,8,78565,3,1672319005),(73764,8,78566,3,1672319005),(73765,8,78567,3,1672319005),(73766,8,78568,3,1672319005),(73767,8,78569,3,1672319005),(73768,8,78570,3,1672319005),(73769,8,78571,3,1672319005),(73770,8,78572,3,1672319005),(73771,8,78573,3,1672319005),(73772,8,78574,3,1672319005),(73773,8,78575,3,1672319005),(73774,8,78576,3,1672319005),(73775,8,78577,3,1672319005),(73776,8,78578,3,1672319005),(73777,8,78579,3,1672319005),(73778,8,78580,3,1672319005),(73779,8,78581,3,1672319005),(73780,8,78582,3,1672319005),(73781,8,78583,3,1672319005),(73782,8,78584,3,1672319005),(73783,8,78585,3,1672319005),(73784,8,78586,3,1672319005),(73785,8,78587,3,1672319005),(73786,8,78588,3,1672319005),(73787,8,78589,3,1672319005),(73788,8,78590,3,1672319005),(73789,8,78591,3,1672319005),(73790,8,78592,3,1672319005),(73791,8,78593,3,1672319005),(73792,8,78594,3,1672319005),(73793,8,78595,3,1672319005),(73794,8,78596,3,1672319005),(73795,8,78597,3,1672319005),(73796,8,78598,3,1672319005),(73797,8,78599,3,1672319005),(73798,8,78600,3,1672319005),(73799,8,78601,3,1672319005),(73800,8,78602,3,1672319005),(73801,8,78603,3,1672319005),(73802,8,78604,3,1672319005),(73803,8,78605,3,1672319005),(73804,8,78606,3,1672319005),(73805,8,78607,3,1672319005),(73806,8,78608,3,1672319005),(73807,8,78609,3,1672319005),(73808,8,78610,3,1672319005),(73809,8,78613,3,1672319005),(73810,8,78614,3,1672319005),(73811,8,78615,3,1672319005),(73812,8,78616,3,1672319005),(73813,8,78617,3,1672319005),(73814,8,78618,3,1672319005),(73815,8,78619,3,1672319005),(73816,8,78620,3,1672319005),(73817,8,78621,3,1672319005),(73818,8,78622,3,1672319005),(73819,8,78623,3,1672319005),(73820,8,78624,3,1672319005),(73821,8,78625,3,1672319005),(73822,8,78626,3,1672319005),(73823,8,78627,3,1672319005),(73824,8,78628,3,1672319005),(73825,8,78629,3,1672319005),(73826,8,78630,3,1672319005),(73827,8,78631,3,1672319005),(73828,8,78632,3,1672319005),(73829,8,78633,3,1672319005),(73830,8,78634,3,1672319005),(73831,8,78635,3,1672319005),(73832,8,78636,3,1672319005),(73833,8,78637,3,1672319005),(73834,8,78638,3,1672319005),(73835,8,78639,3,1672319005),(73836,8,78640,3,1672319005),(73837,8,78641,3,1672319005),(73838,8,78642,3,1672319005),(73839,8,78643,3,1672319005),(73840,8,78644,3,1672319005),(73841,8,78645,3,1672319005),(73842,8,78646,3,1672319005),(73843,8,78647,3,1672319005),(73844,8,78648,3,1672319005),(73845,8,78649,3,1672319005),(73846,8,78650,3,1672319005),(73847,8,78651,3,1672319005),(73848,8,78652,3,1672319005),(73849,8,78653,3,1672319005),(73850,8,78654,3,1672319005),(73851,8,78655,3,1672319005),(73852,8,78656,3,1672319005),(73853,8,78657,3,1672319005),(73854,8,78658,3,1672319005),(73855,8,78659,3,1672319005),(73856,8,78660,3,1672319005),(73857,8,78661,3,1672319005),(73858,8,78662,3,1672319005),(73859,8,78663,3,1672319005),(73860,8,78664,3,1672319005),(73861,8,78665,3,1672319005),(73862,8,78666,3,1672319005),(73863,8,78667,3,1672319005),(73864,8,78668,3,1672319005),(73865,8,78669,3,1672319005),(73866,8,78670,3,1672319005),(73867,8,78671,3,1672319005),(73868,8,78672,3,1672319005),(73869,8,78673,3,1672319005),(73870,8,78674,3,1672319005),(73871,8,78675,3,1672319005),(73872,8,78676,3,1672319005),(73873,8,78677,3,1672319005),(73874,8,78678,3,1672319005),(73875,8,78679,3,1672319005),(73876,8,78680,3,1672319005),(73877,8,78681,3,1672319005),(73878,8,78682,3,1672319005),(73879,8,78683,3,1672319005),(73880,8,78684,3,1672319005),(73881,8,78685,3,1672319005),(73882,8,78686,3,1672319005),(73883,8,78687,3,1672319005),(73884,8,78688,3,1672319005),(73885,8,78689,3,1672319005),(73886,8,78690,3,1672319005),(73887,8,78691,3,1672319005),(73888,8,78692,3,1672319005),(73889,8,78693,3,1672319005),(73890,8,78694,3,1672319005),(73891,8,78695,3,1672319005),(73892,8,78696,3,1672319005),(73893,8,78697,3,1672319005),(73894,8,78698,3,1672319005),(73895,8,78699,3,1672319005),(73896,8,78700,3,1672319005),(73897,8,78701,3,1672319005),(73898,8,78702,3,1672319005),(73899,8,78703,3,1672319005),(73900,8,78704,3,1672319005),(73901,8,78705,3,1672319005),(73902,8,78706,3,1672319005),(73903,8,78707,3,1672319005),(73904,8,78708,3,1672319005),(73905,8,78709,3,1672319005),(73906,8,78710,3,1672319005),(73907,8,78711,3,1672319005),(73908,8,78712,3,1672319005),(73909,8,78713,3,1672319005),(73910,8,78715,3,1672319005),(73911,8,78716,3,1672319005),(73912,8,78717,3,1672319005),(73913,8,78718,3,1672319005),(73914,8,78719,3,1672319005),(73915,8,78720,3,1672319005),(73916,8,78721,3,1672319005),(73917,8,78722,3,1672319005),(73918,8,78723,3,1672319005),(73919,8,78724,3,1672319005),(73920,8,78725,3,1672319005),(73921,8,78726,3,1672319005),(73922,8,78727,3,1672319005),(73923,8,78728,3,1672319005),(73924,8,78729,3,1672319005),(73925,8,78730,3,1672319005),(73926,8,78731,3,1672319005),(73927,8,78732,3,1672319005),(73928,8,78733,3,1672319005),(73929,8,78734,3,1672319005),(73930,8,78735,3,1672319005),(73931,8,78736,3,1672319005),(73932,8,78737,3,1672319005),(73933,8,78765,3,1672319005),(73934,8,78766,3,1672319005),(73935,8,78767,3,1672319005),(73936,8,78768,3,1672319005),(73937,8,78769,3,1672319005),(73938,8,78770,3,1672319005),(73939,8,78771,3,1672319005),(73940,8,78772,3,1672319005),(73941,8,78773,3,1672319005),(73942,8,78774,3,1672319005),(73943,8,78775,3,1672319005),(73944,8,78776,3,1672319005),(73945,8,78777,3,1672319005),(73946,8,78778,3,1672319005),(73947,8,78779,3,1672319005),(73948,8,78780,3,1672319005),(73949,8,78781,3,1672319005),(73950,8,78782,3,1672319005),(73951,8,78783,3,1672319005),(73952,8,78784,3,1672319005),(73953,8,78785,3,1672319005),(73954,8,78786,3,1672319005),(73955,8,78787,3,1672319005),(73956,8,78788,3,1672319005),(73957,8,78789,3,1672319005),(73958,8,78790,3,1672319005),(73959,8,78791,3,1672319005),(73960,8,78792,3,1672319005),(73961,8,78793,3,1672319005),(73962,8,78794,3,1672319005),(73963,8,78795,3,1672319005),(73964,8,78796,3,1672319005),(73965,8,78797,3,1672319005),(73966,8,78798,3,1672319005),(73967,8,78799,3,1672319005),(73968,8,78801,3,1672319005),(73969,8,78802,3,1672319005),(73970,8,78803,3,1672319005),(73971,8,78804,3,1672319005),(73972,8,78805,3,1672319005),(73973,8,78806,3,1672319005),(73974,8,78807,3,1672319005),(73975,8,78808,3,1672319005),(73976,8,78809,3,1672319005),(73977,8,78810,3,1672319005),(73978,8,78811,3,1672319005),(73979,8,78812,3,1672319005),(73980,8,78813,3,1672319005),(73981,8,78814,3,1672319005),(73982,8,78815,3,1672319005),(73983,8,78816,3,1672319005),(73984,8,78817,3,1672319005),(73985,8,78818,3,1672319005),(73986,8,78819,3,1672319005),(73987,8,78820,3,1672319005),(73988,8,78821,3,1672319005),(73989,8,78822,3,1672319005),(73990,8,78823,3,1672319005),(73991,8,78824,3,1672319005),(73992,8,78825,3,1672319005),(73993,8,78826,3,1672319005),(73994,8,78827,3,1672319005),(73995,8,78828,3,1672319005),(73996,8,78829,3,1672319005),(73997,8,78830,3,1672319005),(73998,8,78831,3,1672319005),(73999,8,78832,3,1672319005),(74000,8,78833,3,1672319005),(74001,8,78834,3,1672319005),(74002,8,78835,3,1672319005),(74003,8,78836,3,1672319005),(74004,8,78837,3,1672319005),(74005,8,78838,3,1672319005),(74006,8,78839,3,1672319005),(74007,8,78840,3,1672319005),(74008,8,78841,3,1672319005),(74009,8,78842,3,1672319005),(74010,8,78843,3,1672319005),(74011,8,78844,3,1672319005),(74012,8,78845,3,1672319005),(74013,8,78846,3,1672319005),(74014,8,78847,3,1672319005),(74015,8,78848,3,1672319005),(74016,8,78849,3,1672319005),(74017,8,78850,3,1672319005),(74018,8,78851,3,1672319005),(74019,8,78852,3,1672319005),(74020,8,78853,3,1672319005),(74021,8,78854,3,1672319005),(74022,8,78855,3,1672319005),(74023,8,78856,3,1672319005),(74024,8,78857,3,1672319005),(74025,8,78858,3,1672319005),(74026,8,78859,3,1672319005),(74027,8,78860,3,1672319005),(74028,8,78861,3,1672319005),(74029,8,78862,3,1672319005),(74030,8,78863,3,1672319005),(74031,8,78864,3,1672319005),(74032,8,78865,3,1672319005),(74033,8,78866,3,1672319005),(74034,8,78867,3,1672319005),(74035,8,78868,3,1672319005),(74036,8,78869,3,1672319005),(74037,8,78870,3,1672319005),(74038,8,78871,3,1672319005),(74039,8,78872,3,1672319005),(74040,8,78873,3,1672319005),(74041,8,78874,3,1672319005),(74042,8,78875,3,1672319005),(74043,8,78876,3,1672319005),(74044,8,78877,3,1672319005),(74045,8,78887,3,1672319005),(74046,8,78888,3,1672319005),(74047,8,78889,3,1672319005),(74048,8,78890,3,1672319005),(74049,8,78891,3,1672319005),(74050,8,78892,3,1672319005),(74051,8,78893,3,1672319005),(74052,8,78894,3,1672319005),(74053,8,78895,3,1672319005),(74054,8,78896,3,1672319005),(74055,8,78897,3,1672319005),(74056,8,78898,3,1672319005),(74057,8,78899,3,1672319005),(74058,8,78900,3,1672319005),(74059,8,78901,3,1672319005),(74060,8,78902,3,1672319005),(74061,8,78903,3,1672319005),(74062,8,78904,3,1672319005),(74063,8,78905,3,1672319005),(74064,8,78906,3,1672319005),(74065,8,78907,3,1672319005),(74066,8,78908,3,1672319005),(74067,8,78909,3,1672319005),(74068,8,78910,3,1672319005),(74069,8,78911,3,1672319005),(74070,8,78912,3,1672319005),(74071,8,78913,3,1672319005),(74072,8,78914,3,1672319005),(74073,8,78915,3,1672319005),(74074,8,78916,3,1672319005),(74075,8,78917,3,1672319005),(74076,8,78918,3,1672319005),(74077,8,78919,3,1672319005),(74078,8,78920,3,1672319005),(74079,8,78921,3,1672319005),(74080,8,78922,3,1672319005),(74081,8,78923,3,1672319005),(74082,8,78924,3,1672319005),(74083,8,78925,3,1672319005),(74084,8,78926,3,1672319005),(74085,8,78927,3,1672319005),(74086,8,78928,3,1672319005),(74087,8,78929,3,1672319005),(74088,8,78930,3,1672319005),(74089,8,78931,3,1672319005),(74090,8,78932,3,1672319005),(74091,8,78933,3,1672319005),(74092,8,78934,3,1672319005),(74093,8,78935,3,1672319005),(74094,8,78936,3,1672319005),(74095,8,78937,3,1672319005),(74096,8,78938,3,1672319005),(74097,8,78939,3,1672319005),(74098,8,78940,3,1672319005),(74099,8,78941,3,1672319005),(74100,8,78942,3,1672319005),(74101,8,78943,3,1672319005),(74102,8,78946,3,1672319005),(74103,8,78947,3,1672319005),(74104,8,78948,3,1672319005),(74105,8,78949,3,1672319005),(74106,8,78950,3,1672319005),(74107,8,78951,3,1672319005),(74108,8,78952,3,1672319005),(74109,8,78953,3,1672319005),(74110,8,78954,3,1672319005),(74111,8,78955,3,1672319005),(74112,8,78956,3,1672319005),(74113,8,78957,3,1672319005),(74114,8,78958,3,1672319005),(74115,8,78959,3,1672319005),(74116,8,78960,3,1672319005),(74117,8,78961,3,1672319005),(74118,8,78962,3,1672319005),(74119,8,78963,3,1672319005),(74120,8,78964,3,1672319005),(74121,8,78965,3,1672319005),(74122,8,78966,3,1672319005),(74123,8,78967,3,1672319005),(74124,8,78968,3,1672319005),(74125,8,78969,3,1672319005),(74126,8,78970,3,1672319005),(74127,8,78971,3,1672319005),(74128,8,78972,3,1672319005),(74129,8,78973,3,1672319005),(74130,8,78974,3,1672319005),(74131,8,78975,3,1672319005),(74132,8,78976,3,1672319005),(74133,8,78977,3,1672319005),(74134,8,78978,3,1672319005),(74135,8,78979,3,1672319005),(74136,8,78980,3,1672319005),(74137,8,78981,3,1672319005),(74138,8,78982,3,1672319005),(74139,8,78983,3,1672319005),(74140,8,78984,3,1672319005),(74141,8,78985,3,1672319005),(74142,8,78986,3,1672319005),(74143,8,78987,3,1672319005),(74144,8,78988,3,1672319005),(74145,8,78989,3,1672319005),(74146,8,78990,3,1672319005),(74147,8,78991,3,1672319005),(74148,8,78992,3,1672319005),(74149,8,78993,3,1672319005),(74150,8,78994,3,1672319005),(74151,8,78995,3,1672319005),(74152,8,78996,3,1672319005),(74153,8,78997,3,1672319005),(74154,8,78998,3,1672319005),(74155,8,78999,3,1672319005),(74156,8,79000,3,1672319005),(74157,8,79001,3,1672319005),(74158,8,79002,3,1672319005),(74159,8,79003,3,1672319005),(74160,8,79004,3,1672319005),(74161,8,79005,3,1672319005),(74162,8,79006,3,1672319005),(74163,8,79007,3,1672319005),(74164,8,79008,3,1672319005),(74165,8,79009,3,1672319005),(74166,8,79010,3,1672319005),(74167,8,79011,3,1672319005),(74168,8,79012,3,1672319005),(74169,8,79013,3,1672319005),(74170,8,79014,3,1672319005),(74171,8,79015,3,1672319005),(74172,8,79016,3,1672319005),(74173,8,79017,3,1672319005),(74174,8,79018,3,1672319005),(74175,8,79019,3,1672319005),(74176,8,79020,3,1672319005),(74177,8,79021,3,1672319005),(74178,8,79022,3,1672319005),(74179,8,79023,3,1672319005),(74180,8,79024,3,1672319005),(74181,8,79025,3,1672319005),(74182,8,79026,3,1672319005),(74183,8,79027,3,1672319005),(74184,8,79028,3,1672319005),(74185,8,79029,3,1672319005),(74186,8,79030,3,1672319005),(74187,8,79031,3,1672319005),(74188,8,79032,3,1672319005),(74189,8,79033,3,1672319005),(74190,8,79034,3,1672319005),(74191,8,79035,3,1672319005),(74192,8,79036,3,1672319005),(74193,8,79037,3,1672319005),(74194,8,79038,3,1672319005),(74195,8,79039,3,1672319005),(74196,8,79040,3,1672319005),(74197,8,79041,3,1672319005),(74198,8,79042,3,1672319005),(74199,8,79043,3,1672319005),(74200,8,79044,3,1672319005),(74201,8,79045,3,1672319005),(74202,8,79046,3,1672319005),(74203,8,79047,3,1672319005),(74204,8,79048,3,1672319005),(74205,8,79049,3,1672319005),(74206,8,79050,3,1672319005),(74207,8,79051,3,1672319005),(74208,8,79052,3,1672319005),(74209,8,79053,3,1672319005),(74210,8,79054,3,1672319005),(74211,8,79055,3,1672319005),(74212,8,79056,3,1672319005),(74213,8,79057,3,1672319005),(74214,8,79058,3,1672319005),(74215,8,79059,3,1672319005),(74216,8,79060,3,1672319005),(74217,8,79061,3,1672319005),(74218,8,79062,3,1672319005),(74219,8,79063,3,1672319005),(74220,8,79064,3,1672319005),(74221,8,79065,3,1672319005),(74222,8,79066,3,1672319005),(74223,8,79067,3,1672319005),(74224,8,79068,3,1672319005),(74225,8,79069,3,1672319005),(74226,8,79070,3,1672319005),(74227,8,79071,3,1672319005),(74228,8,79072,3,1672319005),(74229,8,79073,3,1672319005),(74230,8,79074,3,1672319005),(74231,8,79075,3,1672319005),(74232,8,79076,3,1672319005),(74233,8,79077,3,1672319005),(74234,8,79078,3,1672319005),(74235,8,79079,3,1672319005),(74236,8,79080,3,1672319005),(74237,8,79081,3,1672319005),(74238,8,79082,3,1672319005),(74239,8,79083,3,1672319005),(74240,8,79084,3,1672319005),(74241,8,79085,3,1672319005),(74242,8,79086,3,1672319005),(74243,8,79087,3,1672319005),(74244,8,79088,3,1672319005),(74245,8,79089,3,1672319005),(74246,8,79090,3,1672319005),(74247,8,79091,3,1672319005),(74248,8,79092,3,1672319005),(74249,8,79093,3,1672319005),(74250,8,79094,3,1672319005),(74251,8,79095,3,1672319005),(74252,8,79096,3,1672319005),(74253,8,79097,3,1672319005),(74254,8,79098,3,1672319005),(74255,8,79099,3,1672319005),(74256,8,79100,3,1672319005),(74257,8,79101,3,1672319005),(74258,8,79102,3,1672319005),(74259,8,79103,3,1672319005),(74260,8,79104,3,1672319005),(74261,8,79105,3,1672319005),(74262,8,79106,3,1672319005),(74263,8,79107,3,1672319005),(74264,8,79108,3,1672319005),(74265,8,79109,3,1672319005),(74266,8,79110,3,1672319005),(74267,8,79111,3,1672319005),(74268,8,79112,3,1672319005),(74269,8,79113,3,1672319005),(74270,8,79114,3,1672319005),(74271,8,79115,3,1672319005),(74272,8,79116,3,1672319005),(74273,8,79117,3,1672319005),(74274,8,79118,3,1672319005),(74275,8,79119,3,1672319005),(74276,8,79120,3,1672319005),(74277,8,79121,3,1672319005),(74278,8,79122,3,1672319005),(74279,8,79123,3,1672319005),(74280,8,79124,3,1672319005),(74281,8,79125,3,1672319005),(74282,8,79126,3,1672319005),(74283,8,79127,3,1672319005),(74284,8,79128,3,1672319005),(74285,8,79129,3,1672319005),(74286,8,79130,3,1672319005),(74287,8,79131,3,1672319005),(74288,8,79132,3,1672319005),(74289,8,79133,3,1672319005),(74290,8,79134,3,1672319005),(74291,8,79135,3,1672319005),(74292,8,79136,3,1672319005),(74293,8,79137,3,1672319005),(74294,8,79138,3,1672319005),(74295,8,79139,3,1672319005),(74296,8,79140,3,1672319005),(74297,8,79141,3,1672319005),(74298,8,79142,3,1672319005),(74299,8,79143,3,1672319005),(74300,8,79144,3,1672319005),(74301,8,79145,3,1672319005),(74302,8,79146,3,1672319005),(74303,8,79147,3,1672319005),(74304,8,79148,3,1672319005),(74305,8,79149,3,1672319005),(74306,8,79150,3,1672319005),(74307,8,79151,3,1672319005),(74308,8,79152,3,1672319005),(74309,8,79153,3,1672319005),(74310,8,79154,3,1672319005),(74311,8,79155,3,1672319005),(74312,8,79156,3,1672319005),(74313,8,79157,3,1672319005),(74314,8,79158,3,1672319005),(74315,8,79159,3,1672319005),(74316,8,79160,3,1672319005),(74317,8,79161,3,1672319005),(74318,8,79162,3,1672319005),(74319,8,79163,3,1672319005),(74320,8,79164,3,1672319005),(74321,8,79165,3,1672319005),(74322,8,79166,3,1672319005),(74323,8,79167,3,1672319005),(74324,8,79168,3,1672319005),(74325,8,79169,3,1672319005),(74326,8,79170,3,1672319005),(74327,8,79177,3,1672319005),(74328,8,79178,3,1672319005),(74329,8,79179,3,1672319005),(74330,8,79180,3,1672319005),(74331,8,79181,3,1672319005),(74332,8,79182,3,1672319005),(74333,8,79183,3,1672319005),(74334,8,79184,3,1672319005),(74335,8,79185,3,1672319005),(74336,8,79186,3,1672319005),(74337,8,79187,3,1672319005),(74338,8,79188,3,1672319005),(74339,8,79189,3,1672319005),(74340,8,79190,3,1672319005),(74341,8,79191,3,1672319005),(74342,8,79192,3,1672319005),(74343,8,79193,3,1672319005),(74344,8,79194,3,1672319005),(74345,8,79195,3,1672319005),(74346,8,79196,3,1672319005),(74347,8,79197,3,1672319005),(74348,8,79198,3,1672319005),(74349,8,79199,3,1672319005),(74350,8,79200,3,1672319005),(74351,8,79201,3,1672319005),(74352,8,79202,3,1672319005),(74353,8,79203,3,1672319005),(74354,8,79204,3,1672319005),(74355,8,79205,3,1672319005),(74356,8,79206,3,1672319005),(74357,8,79207,3,1672319005),(74358,8,79208,3,1672319005),(74359,8,79209,3,1672319005),(74360,8,79210,3,1672319005),(74361,8,79211,3,1672319005),(74362,8,79212,3,1672319005),(74363,8,79213,3,1672319005),(74364,8,79214,3,1672319005),(74365,8,79215,3,1672319005),(74366,8,79216,3,1672319005),(74367,8,79217,3,1672319005),(74368,8,79218,3,1672319005),(74369,8,79219,3,1672319005),(74370,8,79220,3,1672319005),(74371,8,79221,3,1672319005),(74372,8,79222,3,1672319005),(74373,8,79223,3,1672319005),(74374,8,79224,3,1672319005),(74375,8,79225,3,1672319005),(74376,8,79226,3,1672319005),(74377,8,79227,3,1672319005),(74378,8,79228,3,1672319005),(74379,8,79229,3,1672319005),(74380,8,79230,3,1672319005),(74381,8,79231,3,1672319005),(74382,8,79232,3,1672319005),(74383,8,79233,3,1672319005),(74384,8,79234,3,1672319005),(74385,8,79235,3,1672319005),(74386,8,79236,3,1672319005),(74387,8,79237,3,1672319005),(74388,8,79238,3,1672319005),(74389,8,79239,3,1672319005),(74390,8,79240,3,1672319005),(74391,8,79241,3,1672319005),(74392,8,79242,3,1672319005),(74393,8,79243,3,1672319005),(74394,8,79244,3,1672319005),(74395,8,79245,3,1672319005),(74396,8,79246,3,1672319005),(74397,8,79247,3,1672319005),(74398,8,79248,3,1672319005),(74399,8,79249,3,1672319005),(74400,8,79250,3,1672319005),(74401,8,79251,3,1672319005),(74402,8,79252,3,1672319005),(74403,8,79253,3,1672319005),(74404,8,79254,3,1672319005),(74405,8,79255,3,1672319005),(74406,8,79256,3,1672319005),(74407,8,79257,3,1672319005),(74408,8,79258,3,1672319005),(74409,8,79259,3,1672319005),(74410,8,79260,3,1672319005),(74411,8,79261,3,1672319005),(74412,8,79262,3,1672319005),(74413,8,79263,3,1672319005),(74414,8,79264,3,1672319005),(74415,8,79265,3,1672319005),(74416,8,79266,3,1672319005),(74417,8,79267,3,1672319005),(74418,8,79268,3,1672319005),(74419,8,79269,3,1672319005),(74420,8,79270,3,1672319005),(74421,8,79271,3,1672319005),(74422,8,79272,3,1672319005),(74423,8,79273,3,1672319005),(74424,8,79274,3,1672319005),(74425,8,79275,3,1672319005),(74426,8,79276,3,1672319005),(74427,8,79277,3,1672319005),(74428,8,79278,3,1672319005),(74429,8,79279,3,1672319005),(74430,8,79280,3,1672319005),(74431,8,79281,3,1672319005),(74432,8,79282,3,1672319005),(74433,8,79283,3,1672319005),(74434,8,79284,3,1672319005),(74435,8,79285,3,1672319005),(74436,8,79286,3,1672319005),(74437,8,79287,3,1672319005),(74438,8,79288,3,1672319005),(74439,8,79289,3,1672319005),(74440,8,79290,3,1672319005),(74441,8,79291,3,1672319005),(74442,8,79292,3,1672319005),(74443,8,79293,3,1672319005),(74444,8,79294,3,1672319005),(74445,8,79295,3,1672319005),(74446,8,79296,3,1672319005),(74447,8,79297,3,1672319005),(74448,8,79298,3,1672319005),(74449,8,79299,3,1672319005),(74450,8,79300,3,1672319005),(74451,8,79301,3,1672319005),(74452,8,79302,3,1672319005),(74453,8,79303,3,1672319005),(74454,8,79304,3,1672319005),(74455,8,79305,3,1672319005),(74456,8,79306,3,1672319005),(74457,8,79307,3,1672319005),(74458,8,79308,3,1672319005),(74459,8,79309,3,1672319005),(74460,8,79310,3,1672319005),(74461,8,79311,3,1672319005),(74462,8,79312,3,1672319005),(74463,8,79313,3,1672319005),(74464,8,79314,3,1672319005),(74465,8,79315,3,1672319005),(74466,8,79316,3,1672319005),(74467,8,79317,3,1672319005),(74468,8,79318,3,1672319005),(74469,8,79319,3,1672319005),(74470,8,79320,3,1672319005),(74471,8,79321,3,1672319005),(74472,8,79322,3,1672319005),(74473,8,79323,3,1672319005),(74474,8,79324,3,1672319005),(74475,8,79325,3,1672319005),(74476,8,79326,3,1672319005),(74477,8,79327,3,1672319005),(74478,8,79328,3,1672319005),(74479,8,79329,3,1672319005),(74480,8,79330,3,1672319005),(74481,8,79331,3,1672319005),(74482,8,79332,3,1672319005),(74483,8,79333,3,1672319005),(74484,8,79334,3,1672319005),(74485,8,79335,3,1672319005),(74486,8,79336,3,1672319005),(74487,8,79337,3,1672319005),(74488,8,79338,3,1672319005),(74489,8,79339,3,1672319005),(74490,8,79340,3,1672319005),(74491,8,79341,3,1672319005),(74492,8,79342,3,1672319005),(74493,8,79343,3,1672319005),(74494,8,79344,3,1672319005),(74495,8,79345,3,1672319005),(74496,8,79346,3,1672319005),(74497,8,79347,3,1672319005),(74498,8,79348,3,1672319005),(74499,8,79349,3,1672319005),(74500,8,79350,3,1672319005),(74501,8,79351,3,1672319005),(74502,8,79352,3,1672319005),(74503,8,79353,3,1672319005),(74504,8,79354,3,1672319005),(74505,8,79355,3,1672319005),(74506,8,79356,3,1672319005),(74507,8,79357,3,1672319005),(74508,8,79358,3,1672319005),(74509,8,79359,3,1672319005),(74510,8,79360,3,1672319005),(74511,8,79361,3,1672319005),(74512,8,79362,3,1672319005),(74513,8,79363,3,1672319005),(74514,8,79364,3,1672319005),(74515,8,79365,3,1672319005),(74516,8,79366,3,1672319005),(74517,8,79367,3,1672319005),(74518,8,79368,3,1672319005),(74519,8,79369,3,1672319005),(74520,8,79370,3,1672319005),(74521,8,79371,3,1672319005),(74522,8,79372,3,1672319005),(74523,8,79373,3,1672319005),(74524,8,79374,3,1672319005),(74525,8,79375,3,1672319005),(74526,8,79376,3,1672319005),(74527,8,79377,3,1672319005),(74528,8,79378,3,1672319005),(74529,8,79379,3,1672319005),(74530,8,79380,3,1672319005),(74531,8,79381,3,1672319005),(74532,8,79382,3,1672319005),(74533,8,79383,3,1672319005),(74534,8,79384,3,1672319005),(74535,8,79385,3,1672319005),(74536,8,79386,3,1672319005),(74537,8,79387,3,1672319005),(74538,8,79388,3,1672319005),(74539,8,79389,3,1672319005),(74540,8,79390,3,1672319005),(74541,8,79391,3,1672319005),(74542,8,79392,3,1672319005),(74543,8,79393,3,1672319005),(74544,8,79394,3,1672319005),(74545,8,79395,3,1672319005),(74546,8,79396,3,1672319005),(74547,8,79397,3,1672319005),(74548,8,79398,3,1672319005),(74549,8,79399,3,1672319005),(74550,8,79400,3,1672319005),(74551,8,79401,3,1672319005),(74552,8,79402,3,1672319005),(74553,8,79403,3,1672319005),(74554,8,79404,3,1672319005),(74555,8,79405,3,1672319005),(74556,8,79406,3,1672319005),(74557,8,79407,3,1672319005),(74558,8,79408,3,1672319005),(74559,8,79409,3,1672319005),(74560,8,79410,3,1672319005),(74561,8,79411,3,1672319005),(74562,8,79412,3,1672319005),(74563,8,79413,3,1672319005),(74564,8,79414,3,1672319005),(74565,8,79415,3,1672319005),(74566,8,79416,3,1672319005),(74567,8,79417,3,1672319005),(74568,8,79418,3,1672319005),(74569,8,79419,3,1672319005),(74570,8,79420,3,1672319005),(74571,8,79421,3,1672319005),(74572,8,79422,3,1672319005),(74573,8,79423,3,1672319005),(74574,8,79424,3,1672319005),(74575,8,79425,3,1672319005),(74576,8,79426,3,1672319005),(74577,8,79427,3,1672319005),(74578,8,79428,3,1672319005),(74579,8,79429,3,1672319005),(74580,8,79430,3,1672319005),(74581,8,79431,3,1672319005),(74582,8,79432,3,1672319005),(74583,8,79433,3,1672319005),(74584,8,79434,3,1672319005),(74585,8,79435,3,1672319005),(74586,8,79436,3,1672319005),(74587,8,79437,3,1672319005),(74588,8,79438,3,1672319005),(74589,8,79439,3,1672319005),(74590,8,79440,3,1672319005),(74591,8,79441,3,1672319005),(74592,8,79442,3,1672319005),(74593,8,79443,3,1672319005),(74594,8,79444,3,1672319005),(74595,8,79445,3,1672319005),(74596,8,79446,3,1672319005),(74597,8,79447,3,1672319005),(74598,8,79448,3,1672319005),(74599,8,79449,3,1672319005),(74600,8,79450,3,1672319005),(74601,8,79451,3,1672319005),(74602,8,79452,3,1672319005),(74603,8,79453,3,1672319005),(74604,8,79454,3,1672319005),(74605,8,79455,3,1672319005),(74606,8,79456,3,1672319005),(74607,8,79457,3,1672319005),(74608,8,79458,3,1672319005),(74609,8,79459,3,1672319005),(74610,8,79460,3,1672319005),(74611,8,79461,3,1672319005),(74612,8,79462,3,1672319005),(74613,8,79463,3,1672319005),(74614,8,79464,3,1672319005),(74615,8,79465,3,1672319005),(74616,8,79466,3,1672319005),(74617,8,79467,3,1672319005),(74618,8,79468,3,1672319005),(74619,8,79469,3,1672319005),(74620,8,79470,3,1672319005),(74621,8,79471,3,1672319005),(74622,8,79472,3,1672319005),(74623,8,79473,3,1672319005),(74624,8,79474,3,1672319005),(74625,8,79475,3,1672319005),(74626,8,79476,3,1672319005),(74627,8,79477,3,1672319005),(74628,8,79478,3,1672319005),(74629,8,79479,3,1672319005),(74630,8,79480,3,1672319005),(74631,8,79481,3,1672319005),(74632,8,79482,3,1672319005),(74633,8,79483,3,1672319005),(74634,8,79484,3,1672319005),(74635,8,79485,3,1672319005),(74636,8,79486,3,1672319005),(74637,8,79487,3,1672319005),(74638,8,79488,3,1672319005),(74639,8,79489,3,1672319005),(74640,8,79490,3,1672319005),(74641,8,79491,3,1672319005),(74642,8,79492,3,1672319005),(74643,8,79493,3,1672319005),(74644,8,79494,3,1672319005),(74645,8,79495,3,1672319005),(74646,8,79496,3,1672319005),(74647,8,79497,3,1672319005),(74648,8,79498,3,1672319005),(74649,8,79499,3,1672319005),(74650,8,79500,3,1672319005),(74651,8,79501,3,1672319005),(74652,8,79502,3,1672319005),(74653,8,79503,3,1672319005),(74654,8,79504,3,1672319005),(74655,8,79505,3,1672319005),(74656,8,79506,3,1672319005),(74657,8,79507,3,1672319005),(74658,8,79508,3,1672319005),(74659,8,79509,3,1672319005),(74660,8,79510,3,1672319005),(74661,8,79511,3,1672319005),(74662,8,79512,3,1672319005),(74663,8,79513,3,1672319005),(74664,8,79514,3,1672319005),(74665,8,79515,3,1672319005),(74666,8,79516,3,1672319005),(74667,8,79517,3,1672319005),(74668,8,79518,3,1672319005),(74669,8,79519,3,1672319005),(74670,8,79520,3,1672319005),(74671,8,79521,3,1672319005),(74672,8,79522,3,1672319005),(74673,8,79523,3,1672319005),(74674,8,79524,3,1672319005),(74675,8,79525,3,1672319005),(74676,8,79526,3,1672319005),(74677,8,79527,3,1672319005),(74678,8,79528,3,1672319005),(74679,8,79529,3,1672319005),(74680,8,79530,3,1672319005),(74681,8,79531,3,1672319005),(74682,8,79532,3,1672319005),(74683,8,79533,3,1672319005),(74684,8,79534,3,1672319005),(74685,8,79535,3,1672319005),(74686,8,79536,3,1672319005),(74687,8,79537,3,1672319005),(74688,8,79538,3,1672319005),(74689,8,79539,3,1672319005),(74690,8,79540,3,1672319005),(74691,8,79541,3,1672319005),(74692,8,79542,3,1672319005),(74693,8,79543,3,1672319005),(74694,8,79544,3,1672319005),(74695,8,79545,3,1672319005),(74696,8,79546,3,1672319005),(74697,8,79547,3,1672319005),(74698,8,79548,3,1672319005),(74699,8,79549,3,1672319005),(74700,8,79550,3,1672319005),(74701,8,79551,3,1672319005),(74702,8,79552,3,1672319005),(74703,8,79553,3,1672319005),(74704,8,79554,3,1672319005),(74705,8,79555,3,1672319005),(74706,8,79556,3,1672319005),(74707,8,79557,3,1672319005),(74708,8,79558,3,1672319005),(74709,8,79559,3,1672319005),(74710,8,79560,3,1672319005),(74711,8,79561,3,1672319005),(74712,8,79562,3,1672319005),(74713,8,79563,3,1672319005),(74714,8,79564,3,1672319005),(74715,8,79565,3,1672319005),(74716,8,79566,3,1672319005),(74717,8,79567,3,1672319005),(74718,8,79568,3,1672319005),(74719,8,79569,3,1672319005),(74720,8,79570,3,1672319005),(74721,8,79571,3,1672319005),(74722,8,79572,3,1672319005),(74723,8,79573,3,1672319005),(74724,8,79574,3,1672319005),(74725,8,79575,3,1672319005),(74726,8,79576,3,1672319005),(74727,8,79577,3,1672319005),(74728,8,79578,3,1672319005),(74729,8,79579,3,1672319005),(74730,8,79580,3,1672319005),(74731,8,79581,3,1672319005),(74732,8,79582,3,1672319005),(74733,8,79583,3,1672319005),(74734,8,79584,3,1672319005),(74735,8,79585,3,1672319005),(74736,8,79586,3,1672319005),(74737,8,79587,3,1672319005),(74738,8,79588,3,1672319005),(74739,8,79589,3,1672319005),(74740,8,79590,3,1672319005),(74741,8,79591,3,1672319005),(74742,8,79592,3,1672319005),(74743,8,79593,3,1672319005),(74744,8,79594,3,1672319005),(74745,8,79595,3,1672319005),(74746,8,79596,3,1672319005),(74747,8,79597,3,1672319005),(74748,8,79598,3,1672319005),(74749,8,79599,3,1672319005),(74750,8,79600,3,1672319005),(74751,8,79601,3,1672319005),(74752,8,79602,3,1672319005),(74753,8,79603,3,1672319005),(74754,8,79604,3,1672319005),(74755,8,79605,3,1672319005),(74756,8,79606,3,1672319005),(74757,8,79607,3,1672319005),(74758,8,79608,3,1672319005),(74759,8,79609,3,1672319005),(74760,8,79610,3,1672319005),(74761,8,79611,3,1672319005),(74762,8,79612,3,1672319005),(74763,8,79613,3,1672319005),(74764,8,79614,3,1672319005),(74765,8,79615,3,1672319005),(74766,8,79616,3,1672319005),(74767,8,79617,3,1672319005),(74768,8,79618,3,1672319005),(74769,8,79619,3,1672319005),(74770,8,79620,3,1672319005),(74771,8,79621,3,1672319005),(74772,8,79622,3,1672319005),(74773,8,79623,3,1672319005),(74774,8,79624,3,1672319005),(74775,8,79625,3,1672319005),(74776,8,79626,3,1672319005),(74777,8,79627,3,1672319005),(74778,8,79628,3,1672319005),(74779,8,79629,3,1672319005),(74780,8,79630,3,1672319005),(74781,8,79631,3,1672319005),(74782,8,79632,3,1672319005),(74783,8,79633,3,1672319005),(74784,8,79634,3,1672319005),(74785,8,79635,3,1672319005),(74786,8,79636,3,1672319005),(74787,8,79637,3,1672319005),(74788,8,79638,3,1672319005),(74789,8,79639,3,1672319005),(74790,8,79640,3,1672319005),(74791,8,79641,3,1672319005),(74792,8,79642,3,1672319005),(74793,8,79643,3,1672319005),(74794,8,79644,3,1672319005),(74795,8,79645,3,1672319005),(74796,8,79646,3,1672319005),(74797,8,79647,3,1672319005),(74798,8,79648,3,1672319005),(74799,8,79649,3,1672319005),(74800,8,79650,3,1672319005),(74801,8,79651,3,1672319005),(74802,8,79652,3,1672319005),(74803,8,79653,3,1672319005),(74804,8,79654,3,1672319005),(74805,8,79655,3,1672319005),(74806,8,79656,3,1672319005),(74807,8,79657,3,1672319005),(74808,8,79658,3,1672319005),(74809,8,79659,3,1672319005),(74810,8,79660,3,1672319005),(74811,8,79661,3,1672319005),(74812,8,79662,3,1672319005),(74813,8,79663,3,1672319005),(74814,8,79664,3,1672319005),(74815,8,79665,3,1672319005),(74816,8,79666,3,1672319005),(74817,8,79667,3,1672319005),(74818,8,79668,3,1672319005),(74819,8,79669,3,1672319005),(74820,8,79670,3,1672319005),(74821,8,79671,3,1672319005),(74822,8,79672,3,1672319005),(74823,8,79673,3,1672319005),(74824,8,79674,3,1672319005),(74825,8,79675,3,1672319005),(74826,8,79676,3,1672319005),(74827,8,79677,3,1672319005),(74828,8,79678,3,1672319005),(74829,8,79679,3,1672319005),(74830,8,79680,3,1672319005),(74831,8,79681,3,1672319005),(74832,8,79682,3,1672319005),(74833,8,79683,3,1672319005),(74834,8,79684,3,1672319005),(74835,8,79685,3,1672319005),(74836,8,79686,3,1672319005),(74837,8,79687,3,1672319005),(74838,8,79688,3,1672319005),(74839,8,79689,3,1672319005),(74840,8,79690,3,1672319005),(74841,8,79691,3,1672319005),(74842,8,79692,3,1672319005),(74843,8,79693,3,1672319005),(74844,8,79694,3,1672319005),(74845,8,79695,3,1672319005),(74846,8,79696,3,1672319005),(74847,8,79697,3,1672319005),(74848,8,79698,3,1672319005),(74849,8,79699,3,1672319005),(74850,8,79700,3,1672319005),(74851,8,79701,3,1672319005),(74852,8,79702,3,1672319005),(74853,8,79703,3,1672319005),(74854,8,79704,3,1672319005),(74855,8,79705,3,1672319005),(74856,8,79706,3,1672319005),(74857,8,79707,3,1672319005),(74858,8,79708,3,1672319005),(74859,8,79709,3,1672319005),(74860,8,79710,3,1672319005),(74861,8,79711,3,1672319005),(74862,8,79712,3,1672319005),(74863,8,79713,3,1672319005),(74864,8,79714,3,1672319005),(74865,8,79715,3,1672319005),(74866,8,79716,3,1672319005),(74867,8,79717,3,1672319005),(74868,8,79718,3,1672319005),(74869,8,79719,3,1672319005),(74870,8,79720,3,1672319005),(74871,8,79721,3,1672319005),(74872,8,79725,3,1672319005),(74873,8,79726,3,1672319005),(74874,8,79727,3,1672319005),(74875,8,79728,3,1672319005),(74876,8,79729,3,1672319005),(74877,8,79730,3,1672319005),(74878,8,79731,3,1672319005),(74879,8,79732,3,1672319005),(74880,8,79733,3,1672319005),(74881,8,79734,3,1672319005),(74882,8,79735,3,1672319005),(74883,8,79736,3,1672319005),(74884,8,79737,3,1672319005),(74885,8,79738,3,1672319005),(74886,8,79739,3,1672319005),(74887,8,79740,3,1672319005),(74888,8,79741,3,1672319005),(74889,8,79742,3,1672319005),(74890,8,79743,3,1672319005),(74891,8,79744,3,1672319005),(74892,8,79745,3,1672319005),(74893,8,79746,3,1672319005),(74894,8,79747,3,1672319005),(74895,8,79748,3,1672319005),(74896,8,79749,3,1672319005),(74897,8,79750,3,1672319005),(74898,8,79751,3,1672319005),(74899,8,79752,3,1672319005),(74900,8,79753,3,1672319005),(74901,8,79754,3,1672319005),(74902,8,79755,3,1672319005),(74903,8,79756,3,1672319005),(74904,8,79757,3,1672319005),(74905,8,79758,3,1672319005),(74906,8,79759,3,1672319005),(74907,8,79760,3,1672319005),(74908,8,79761,3,1672319005),(74909,8,79762,3,1672319005),(74910,8,79763,3,1672319005),(74911,8,79764,3,1672319005),(74912,8,79765,3,1672319005),(74913,8,79766,3,1672319005),(74914,8,79767,3,1672319005),(74915,8,79768,3,1672319005),(74916,8,79769,3,1672319005),(74917,8,79770,3,1672319005),(74918,8,79771,3,1672319005),(74919,8,79772,3,1672319005),(74920,8,79773,3,1672319005),(74921,8,79774,3,1672319005),(74922,8,79775,3,1672319005),(74923,8,79776,3,1672319005),(74924,8,79777,3,1672319005),(74925,8,79778,3,1672319005),(74926,8,79779,3,1672319005),(74927,8,79780,3,1672319005),(74928,8,79781,3,1672319005),(74929,8,79782,3,1672319005),(74930,8,79783,3,1672319005),(74931,8,79784,3,1672319005),(74932,8,79785,3,1672319005),(74933,8,79786,3,1672319005),(74934,8,79787,3,1672319005),(74935,8,79788,3,1672319005),(74936,8,79789,3,1672319005),(74937,8,79790,3,1672319005),(74938,8,79791,3,1672319005),(74939,8,79792,3,1672319005),(74940,8,79793,3,1672319005),(74941,8,79794,3,1672319005),(74942,8,79795,3,1672319005),(74943,8,79797,3,1672319005),(74944,8,79798,3,1672319005),(74945,8,79799,3,1672319005),(74946,8,79800,3,1672319005),(74947,8,79801,3,1672319005),(74948,8,79802,3,1672319005),(74949,8,79803,3,1672319005),(74950,8,79804,3,1672319005),(74951,8,79805,3,1672319005),(74952,8,79806,3,1672319005),(74953,8,79807,3,1672319005),(74954,8,79808,3,1672319005),(74955,8,79809,3,1672319005),(74956,8,79810,3,1672319005),(74957,8,79811,3,1672319005),(74958,8,79812,3,1672319005),(74959,8,79813,3,1672319005),(74960,8,79814,3,1672319005),(74961,8,79815,3,1672319005),(74962,8,79816,3,1672319005),(74963,8,79817,3,1672319005),(74964,8,79818,3,1672319005),(74965,8,79819,3,1672319005),(74966,8,79820,3,1672319005),(74967,8,79821,3,1672319005),(74968,8,79822,3,1672319005),(74969,8,79823,3,1672319005),(74970,8,79824,3,1672319005),(74971,8,79825,3,1672319005),(74972,8,79826,3,1672319005),(74973,8,79827,3,1672319005),(74974,8,79828,3,1672319005),(74975,8,79829,3,1672319005),(74976,8,79830,3,1672319005),(74977,8,79831,3,1672319005),(74978,8,79832,3,1672319005),(74979,8,79833,3,1672319005),(74980,8,79834,3,1672319005),(74981,8,79835,3,1672319005),(74982,8,79836,3,1672319005),(74983,8,79837,3,1672319005),(74984,8,79838,3,1672319005),(74985,8,79839,3,1672319005),(74986,8,79840,3,1672319005),(74987,8,79841,3,1672319005),(74988,8,79842,3,1672319005),(74989,8,79843,3,1672319005),(74990,8,79844,3,1672319005),(74991,8,79845,3,1672319005),(74992,8,79846,3,1672319005),(74993,8,79847,3,1672319005),(74994,8,79848,3,1672319005),(74995,8,79849,3,1672319005),(74996,8,79850,3,1672319005),(74997,8,79851,3,1672319005),(74998,8,79852,3,1672319005),(74999,8,79853,3,1672319005),(75000,8,79854,3,1672319005),(75001,8,79855,3,1672319005),(75002,8,79856,3,1672319005),(75003,8,79857,3,1672319005),(75004,8,79858,3,1672319005),(75005,8,79859,3,1672319005),(75006,8,79860,3,1672319005),(75007,8,79861,3,1672319005),(75008,8,79862,3,1672319005),(75009,8,79863,3,1672319005),(75010,8,79864,3,1672319005),(75011,8,79865,3,1672319005),(75012,8,79866,3,1672319005),(75013,8,79867,3,1672319005),(75014,8,79868,3,1672319005),(75015,8,79869,3,1672319005),(75016,8,79870,3,1672319005),(75017,8,79871,3,1672319005),(75018,8,79872,3,1672319005),(75019,8,79873,3,1672319005),(75020,8,79874,3,1672319005),(75021,8,79875,3,1672319005),(75022,8,79876,3,1672319005),(75023,8,79877,3,1672319005),(75024,8,79878,3,1672319005),(75025,8,79879,3,1672319005),(75026,8,79880,3,1672319005),(75027,8,79881,3,1672319005),(75028,8,79882,3,1672319005),(75029,8,79883,3,1672319005),(75030,8,79884,3,1672319005),(75031,8,79885,3,1672319005),(75032,8,79886,3,1672319005),(75033,8,79887,3,1672319005),(75034,8,79888,3,1672319005),(75035,8,79889,3,1672319005),(75036,8,79890,3,1672319005),(75037,8,79891,3,1672319005),(75038,8,79892,3,1672319005),(75039,8,79893,3,1672319005),(75040,8,79894,3,1672319005),(75041,8,79895,3,1672319005),(75042,8,79896,3,1672319005),(75043,8,79897,3,1672319005),(75044,8,79898,3,1672319005),(75045,8,79899,3,1672319005),(75046,8,79900,3,1672319005),(75047,8,79901,3,1672319005),(75048,8,79902,3,1672319005),(75049,8,79903,3,1672319005),(75050,8,79904,3,1672319005),(75051,8,79905,3,1672319005),(75052,8,79906,3,1672319005),(75053,8,79907,3,1672319005),(75054,8,79908,3,1672319005),(75055,8,79909,3,1672319005),(75056,8,79910,3,1672319005),(75057,8,79911,3,1672319005),(75058,8,79912,3,1672319005),(75059,8,79913,3,1672319005),(75060,8,79914,3,1672319005),(75061,8,79915,3,1672319005),(75062,8,79916,3,1672319005),(75063,8,79917,3,1672319005),(75064,8,79918,3,1672319005),(75065,8,79919,3,1672319005),(75066,8,79920,3,1672319005),(75067,8,79921,3,1672319005),(75068,8,79922,3,1672319005),(75069,8,79923,3,1672319005),(75070,8,79924,3,1672319005),(75071,8,79925,3,1672319005),(75072,8,79926,3,1672319005),(75073,8,79927,3,1672319005),(75074,8,79928,3,1672319005),(75075,8,79929,3,1672319005),(75076,8,79930,3,1672319005),(75077,8,79931,3,1672319005),(75078,8,79932,3,1672319005),(75079,8,79933,3,1672319005),(75080,8,79934,3,1672319005),(75081,8,79935,3,1672319005),(75082,8,79936,3,1672319005),(75083,8,79937,3,1672319005),(75084,8,79938,3,1672319005),(75085,8,79939,3,1672319005),(75086,8,79940,3,1672319005),(75087,8,79941,3,1672319005),(75088,8,79942,3,1672319005),(75089,8,79943,3,1672319005),(75090,8,79944,3,1672319005),(75091,8,79945,3,1672319005),(75092,8,79946,3,1672319005),(75093,8,79947,3,1672319005),(75094,8,79948,3,1672319005),(75095,8,79949,3,1672319005),(75096,8,79950,3,1672319005),(75097,8,79951,3,1672319005),(75098,8,79952,3,1672319005),(75099,8,79953,3,1672319005),(75100,8,79954,3,1672319005),(75101,8,79955,3,1672319005),(75102,8,79956,3,1672319005),(75103,8,79957,3,1672319005),(75104,8,79958,3,1672319005),(75105,8,79959,3,1672319005),(75106,8,79960,3,1672319005),(75107,8,79961,3,1672319005),(75108,8,79962,3,1672319005),(75109,8,79963,3,1672319005),(75110,8,80150,3,1672319005),(75111,8,80155,3,1672319005),(75112,8,80156,3,1672319005),(75113,8,80157,3,1672319005),(75114,8,80158,3,1672319005),(75115,8,80175,3,1672319005),(75116,8,80176,3,1672319005),(75117,8,80177,3,1672319005),(75118,8,80178,3,1672319005),(75119,8,80179,3,1672319005),(75120,8,80180,3,1672319005),(75121,8,80181,3,1672319005),(75122,8,80182,3,1672319005),(75123,8,80183,3,1672319005),(75124,8,80211,3,1672319005),(75125,8,80212,3,1672319005),(75126,8,80213,3,1672319005),(75127,8,80214,3,1672319005),(75128,8,80215,3,1672319005),(75129,8,80216,3,1672319005),(75130,8,80217,3,1672319005),(75131,8,80218,3,1672319005),(75132,8,80219,3,1672319005),(75133,8,80220,3,1672319005),(75134,8,80221,3,1672319005),(75135,8,80453,3,1672319005),(75136,8,80454,3,1672319005),(75137,8,80455,3,1672319005),(75138,8,80456,3,1672319005),(75139,8,80457,3,1672319005),(75140,8,80458,3,1672319005),(75141,8,80459,3,1672319005),(75142,8,80460,3,1672319005),(75143,8,80461,3,1672319005),(75144,8,80462,3,1672319005),(75145,8,80463,3,1672319005),(75146,8,80475,3,1672319005),(75147,8,80476,3,1672319005),(75148,8,80477,3,1672319005),(75149,8,80478,3,1672319005),(75150,8,80501,3,1672319005),(75151,8,80502,3,1672319005),(75152,8,80503,3,1672319005),(75153,8,80504,3,1672319005),(75154,8,80505,3,1672319005),(75155,8,80506,3,1672319005),(75156,8,80507,3,1672319005),(75157,8,80508,3,1672319005),(75158,8,80509,3,1672319005),(75159,8,80510,3,1672319005),(75160,8,80511,3,1672319005),(75161,8,80512,3,1672319005),(75162,8,80513,3,1672319005),(75163,8,80514,3,1672319005),(75164,8,80515,3,1672319005),(75165,8,80516,3,1672319005),(75166,8,80517,3,1672319005),(75167,8,80518,3,1672319005),(75168,8,80519,3,1672319005),(75169,8,80520,3,1672319005),(75170,8,80521,3,1672319005),(75171,8,80522,3,1672319005),(75172,8,80523,3,1672319005),(75173,8,80524,3,1672319005),(75174,8,80537,3,1672319005),(75175,8,80541,3,1672319005),(75176,8,80542,3,1672319005),(75177,8,80543,3,1672319005),(75178,8,80544,3,1672319005),(75179,8,80545,3,1672319005),(75180,8,80546,3,1672319005),(75181,8,80547,3,1672319005),(75182,8,80548,3,1672319005),(75183,8,80549,3,1672319005),(75184,8,80550,3,1672319005),(75185,8,80551,3,1672319005),(75186,8,80552,3,1672319005),(75187,8,80553,3,1672319005),(75188,8,80554,3,1672319005),(75189,8,80555,3,1672319005),(75190,8,80556,3,1672319005),(75191,8,80557,3,1672319005),(75192,8,80558,3,1672319005),(75193,8,80559,3,1672319005),(75194,8,80560,3,1672319005),(75195,8,80561,3,1672319005),(75196,8,80562,3,1672319005),(75197,8,80563,3,1672319005),(75198,8,80564,3,1672319005),(75199,8,80565,3,1672319005),(75200,8,80566,3,1672319005),(75201,8,80567,3,1672319005),(75202,8,80568,3,1672319005),(75203,8,80569,3,1672319005),(75204,8,80570,3,1672319005),(75205,8,80571,3,1672319005),(75206,8,80572,3,1672319005),(75207,8,80573,3,1672319005),(75208,8,80574,3,1672319005),(75209,8,80575,3,1672319005),(75210,8,80576,3,1672319005),(75211,8,80577,3,1672319005),(75212,8,80578,3,1672319005),(75213,8,80579,3,1672319005),(75214,8,80580,3,1672319005),(75215,8,80581,3,1672319005),(75216,8,80582,3,1672319005),(75217,8,80583,3,1672319005),(75218,8,80584,3,1672319005),(75219,8,80585,3,1672319005),(75220,8,80586,3,1672319005),(75221,8,80587,3,1672319005),(75222,8,80588,3,1672319005),(75223,8,80589,3,1672319005),(75224,8,80590,3,1672319005),(75225,8,80591,3,1672319005),(75226,8,80592,3,1672319005),(75227,8,80593,3,1672319005),(75228,8,80594,3,1672319005),(75229,8,80595,3,1672319005),(75230,8,80596,3,1672319005),(75231,8,80597,3,1672319005),(75232,8,80598,3,1672319005),(75233,8,80599,3,1672319005),(75234,8,80600,3,1672319005),(75235,8,80601,3,1672319005),(75236,8,80602,3,1672319005),(75237,8,80603,3,1672319005),(75238,8,80604,3,1672319005),(75239,8,80605,3,1672319005),(75240,8,80606,3,1672319005),(75241,8,80607,3,1672319005),(75242,8,80608,3,1672319005),(75243,8,80609,3,1672319005),(75244,8,80610,3,1672319005),(75245,8,80611,3,1672319005),(75246,8,80612,3,1672319005),(75247,8,80613,3,1672319005),(75248,8,80614,3,1672319005),(75249,8,80615,3,1672319005),(75250,8,80616,3,1672319005),(75251,8,80617,3,1672319005),(75252,8,80618,3,1672319005),(75253,8,80619,3,1672319005),(75254,8,80620,3,1672319005),(75255,8,80621,3,1672319005),(75256,8,80622,3,1672319005),(75257,8,80623,3,1672319005),(75258,8,80624,3,1672319005),(75259,8,80625,3,1672319005),(75260,8,80626,3,1672319005),(75261,8,80627,3,1672319005),(75262,8,80628,3,1672319005),(75263,8,80629,3,1672319005),(75264,8,80630,3,1672319005),(75265,8,80655,3,1672319005),(75266,8,80656,3,1672319005),(75267,8,80661,3,1672319005),(75268,8,80664,3,1672319005),(75269,8,80665,3,1672319005),(75270,8,80666,3,1672319005),(75271,8,80667,3,1672319005),(75272,8,80668,3,1672319005),(75273,8,80669,3,1672319005),(75274,8,80670,3,1672319005),(75275,8,80671,3,1672319005),(75276,8,80672,3,1672319005),(75277,8,80673,3,1672319005),(75278,8,80674,3,1672319005),(75279,8,80697,3,1672319005),(75280,8,80698,3,1672319005),(75281,8,80699,3,1672319005),(75282,8,80700,3,1672319005),(75283,8,80701,3,1672319005),(75284,8,80702,3,1672319005),(75285,8,80703,3,1672319005),(75286,8,80704,3,1672319005),(75287,8,80705,3,1672319005),(75288,8,80706,3,1672319005),(75289,8,80707,3,1672319005),(75290,8,80708,3,1672319005),(75291,8,80709,3,1672319005),(75292,8,80710,3,1672319005),(75293,8,80711,3,1672319005),(75294,8,80712,3,1672319005),(75295,8,80745,3,1672319005),(75296,8,80746,3,1672319005),(75297,8,80747,3,1672319005),(75298,8,80748,3,1672319005),(75299,8,80749,3,1672319005),(75300,8,80750,3,1672319005),(75301,8,80751,3,1672319005),(75302,8,80752,3,1672319005),(75303,8,80753,3,1672319005),(75304,8,80754,3,1672319005),(75305,8,80755,3,1672319005),(75306,8,80756,3,1672319005),(75307,8,80769,3,1672319005),(75308,8,80770,3,1672319005),(75309,8,80773,3,1672319005),(75310,8,80775,3,1672319005),(75311,8,80776,3,1672319005),(75312,8,80777,3,1672319005),(75313,8,80778,3,1672319005),(75314,8,80779,3,1672319005),(75315,8,80780,3,1672319005),(75316,8,80781,3,1672319005),(75317,8,80782,3,1672319005),(75318,8,80783,3,1672319005),(75319,8,80784,3,1672319005),(75320,8,80785,3,1672319005),(75321,8,80797,3,1672319005),(75322,8,80798,3,1672319005),(75323,8,80799,3,1672319005),(75324,8,80800,3,1672319005),(75325,8,80801,3,1672319005),(75326,8,80802,3,1672319005),(75327,8,80803,3,1672319005),(75328,8,80804,3,1672319005),(75329,8,80805,3,1672319005),(75330,8,80806,3,1672319005),(75331,8,80807,3,1672319005),(75332,8,80808,3,1672319005),(75333,8,80809,3,1672319005),(75334,8,80810,3,1672319005),(75335,8,80811,3,1672319005),(75336,8,80812,3,1672319005),(75337,8,80829,3,1672319005),(75338,8,80830,3,1672319005),(75339,8,80831,3,1672319005),(75340,8,80832,3,1672319005),(75341,8,80833,3,1672319005),(75342,8,80834,3,1672319005),(75343,8,80835,3,1672319005),(75344,8,80836,3,1672319005),(75345,8,80837,3,1672319005),(75346,8,80838,3,1672319005),(75347,8,80839,3,1672319005),(75348,8,80840,3,1672319005),(75349,8,80841,3,1672319005),(75350,8,80842,3,1672319005),(75351,8,80843,3,1672319005),(75352,8,80844,3,1672319005),(75353,8,80845,3,1672319005),(75354,8,80846,3,1672319005),(75355,8,80847,3,1672319005),(75356,8,80848,3,1672319005),(75357,8,80849,3,1672319005),(75358,8,80850,3,1672319005),(75359,8,80851,3,1672319005),(75360,8,80852,3,1672319005),(75361,8,80853,3,1672319005),(75362,8,80854,3,1672319005),(75363,8,80855,3,1672319005),(75364,8,80856,3,1672319005),(75365,8,80857,3,1672319005),(75366,8,80858,3,1672319005),(75367,8,80859,3,1672319005),(75368,8,80860,3,1672319005),(75369,8,80861,3,1672319005),(75370,8,80862,3,1672319005),(75371,8,80863,3,1672319005),(75372,8,80864,3,1672319005),(75373,8,80865,3,1672319005),(75374,8,80866,3,1672319005),(75375,8,80867,3,1672319005),(75376,8,80868,3,1672319005),(75377,8,80869,3,1672319005),(75378,8,80870,3,1672319005),(75379,8,80871,3,1672319005),(75380,8,80872,3,1672319005),(75381,8,80873,3,1672319005),(75382,8,80874,3,1672319005),(75383,8,80875,3,1672319005),(75384,8,80876,3,1672319005),(75385,8,80877,3,1672319005),(75386,8,80878,3,1672319005),(75387,8,80879,3,1672319005),(75388,8,80880,3,1672319005),(75389,8,80881,3,1672319005),(75390,8,80882,3,1672319005),(75391,8,80883,3,1672319005),(75392,8,80884,3,1672319005),(75393,8,80885,3,1672319005),(75394,8,80886,3,1672319005),(75395,8,80887,3,1672319005),(75396,8,80888,3,1672319005),(75397,8,80889,3,1672319005),(75398,8,80890,3,1672319005),(75399,8,80891,3,1672319005),(75400,8,80892,3,1672319005),(75401,8,80893,3,1672319005),(75402,8,80894,3,1672319005),(75403,8,80895,3,1672319005),(75404,8,80896,3,1672319005),(75405,8,80897,3,1672319005),(75406,8,80898,3,1672319005),(75407,8,80899,3,1672319005),(75408,8,80900,3,1672319005),(75409,8,80901,3,1672319005),(75410,8,80902,3,1672319005),(75411,8,80903,3,1672319005),(75412,8,80904,3,1672319005),(75413,8,80905,3,1672319005),(75414,8,80906,3,1672319005),(75415,8,80907,3,1672319005),(75416,8,80908,3,1672319005),(75417,8,80909,3,1672319005),(75418,8,80910,3,1672319005),(75419,8,80911,3,1672319005),(75420,8,80912,3,1672319005),(75421,8,80913,3,1672319005),(75422,8,80914,3,1672319005),(75423,8,80915,3,1672319005),(75424,8,80916,3,1672319005),(75425,8,80917,3,1672319005),(75426,8,80918,3,1672319005),(75427,8,80919,3,1672319005),(75428,8,80920,3,1672319005),(75429,8,80921,3,1672319005),(75430,8,80922,3,1672319005),(75431,8,80923,3,1672319005),(75432,8,80924,3,1672319005),(75433,8,80925,3,1672319005),(75434,8,80926,3,1672319005),(75435,8,80927,3,1672319005),(75436,8,80928,3,1672319005),(75437,8,80929,3,1672319005),(75438,8,80930,3,1672319005),(75439,8,80931,3,1672319005),(75440,8,80932,3,1672319005),(75441,8,80933,3,1672319005),(75442,8,80934,3,1672319005),(75443,8,80935,3,1672319005),(75444,8,80936,3,1672319005),(75445,8,80937,3,1672319005),(75446,8,80938,3,1672319005),(75447,8,80939,3,1672319005),(75448,8,80940,3,1672319005),(75449,8,80941,3,1672319005),(75450,8,80942,3,1672319005),(75451,8,80943,3,1672319005),(75452,8,80944,3,1672319005),(75453,8,80945,3,1672319005),(75454,8,80946,3,1672319005),(75455,8,80947,3,1672319005),(75456,8,80957,3,1672319005),(75457,8,80959,3,1672319005),(75458,8,80960,3,1672319005),(75459,8,80961,3,1672319005),(75460,8,80962,3,1672319005),(75461,8,80963,3,1672319005),(75462,8,80964,3,1672319005),(75463,8,80965,3,1672319005),(75464,8,80966,3,1672319005),(75465,8,80967,3,1672319005),(75466,8,80968,3,1672319005),(75467,8,80969,3,1672319005),(75468,8,80970,3,1672319005),(75469,8,80971,3,1672319005),(75470,8,80972,3,1672319005),(75471,8,80973,3,1672319005),(75472,8,80974,3,1672319005),(75473,8,80975,3,1672319005),(75474,8,80976,3,1672319005),(75475,8,80977,3,1672319005),(75476,8,80978,3,1672319005),(75477,8,80979,3,1672319005),(75478,8,80980,3,1672319005),(75479,8,80981,3,1672319005),(75480,8,80982,3,1672319005),(75481,8,80983,3,1672319005),(75482,8,81009,3,1672319005),(75483,8,81011,3,1672319005),(75484,8,81012,3,1672319005),(75485,8,81013,3,1672319005),(75486,8,81017,3,1672319005),(75487,8,81019,3,1672319005),(75488,8,81020,3,1672319005),(75489,8,81021,3,1672319005),(75490,8,81025,3,1672319005),(75491,8,81026,3,1672319005),(75492,8,81027,3,1672319005),(75493,8,81028,3,1672319005),(75494,8,81029,3,1672319005),(75495,8,81030,3,1672319005),(75496,8,81031,3,1672319005),(75497,8,81032,3,1672319005),(75498,8,81041,3,1672319005),(75499,8,81042,3,1672319005),(75500,8,81043,3,1672319005),(75501,8,81044,3,1672319005),(75502,8,81049,3,1672319005),(75503,8,81050,3,1672319005),(75504,8,81051,3,1672319005),(75505,8,81055,3,1672319005),(75506,8,81057,3,1672319005),(75507,8,81058,3,1672319005),(75508,8,81059,3,1672319005),(75509,8,81063,3,1672319005),(75510,8,81064,3,1672319005),(75511,8,81065,3,1672319005),(75512,8,81066,3,1672319005),(75513,8,81067,3,1672319005),(75514,8,81068,3,1672319005),(75515,8,81069,3,1672319005),(75516,8,81070,3,1672319005),(75517,8,81079,3,1672319005),(75518,8,81080,3,1672319005),(75519,8,81081,3,1672319005),(75520,8,81082,3,1672319005),(75521,8,81087,3,1672319005),(75522,8,81088,3,1672319005),(75523,8,81089,3,1672319005),(75524,8,81090,3,1672319005),(75525,8,81091,3,1672319005),(75526,8,81092,3,1672319005),(75527,8,81093,3,1672319005),(75528,8,81094,3,1672319005),(75529,8,81095,3,1672319005),(75530,8,81096,3,1672319005),(75531,8,81097,3,1672319005),(75532,8,81098,3,1672319005),(75533,8,81099,3,1672319005),(75534,8,81100,3,1672319005),(75535,8,81101,3,1672319005),(75536,8,81102,3,1672319005),(75537,8,81103,3,1672319005),(75538,8,81104,3,1672319005),(75539,8,81105,3,1672319005),(75540,8,81106,3,1672319005),(75541,8,81107,3,1672319005),(75542,8,81108,3,1672319005),(75543,8,81109,3,1672319005),(75544,8,81110,3,1672319005),(75545,8,81111,3,1672319005),(75546,8,81112,3,1672319005),(75547,8,81113,3,1672319005),(75548,8,81114,3,1672319005),(75549,8,81115,3,1672319005),(75550,8,81116,3,1672319005),(75551,8,81117,3,1672319005),(75552,8,81118,3,1672319005),(75553,8,81119,3,1672319005),(75554,8,81120,3,1672319005),(75555,8,81121,3,1672319005),(75556,8,81122,3,1672319005),(75557,8,81123,3,1672319005),(75558,8,81124,3,1672319005),(75559,8,81125,3,1672319005),(75560,8,81126,3,1672319005),(75561,8,81127,3,1672319005),(75562,8,81128,3,1672319005),(75563,8,81129,3,1672319005),(75564,8,81130,3,1672319005),(75565,8,81131,3,1672319005),(75566,8,81132,3,1672319005),(75567,8,81133,3,1672319005),(75568,8,81134,3,1672319005),(75569,8,81135,3,1672319005),(75570,8,81136,3,1672319005),(75571,8,81137,3,1672319005),(75572,8,81138,3,1672319005),(75573,8,81139,3,1672319005),(75574,8,81140,3,1672319005),(75575,8,81141,3,1672319005),(75576,8,81142,3,1672319005),(75577,8,81143,3,1672319005),(75578,8,81144,3,1672319005),(75579,8,81145,3,1672319005),(75580,8,81146,3,1672319005),(75581,8,81147,3,1672319005),(75582,8,81148,3,1672319005),(75583,8,81149,3,1672319005),(75584,8,81150,3,1672319005),(75585,8,81151,3,1672319005),(75586,8,81152,3,1672319005),(75587,8,81153,3,1672319005),(75588,8,81154,3,1672319005),(75589,8,81155,3,1672319005),(75590,8,81156,3,1672319005),(75591,8,81157,3,1672319005),(75592,8,81158,3,1672319005),(75593,8,81159,3,1672319005),(75594,8,81160,3,1672319005),(75595,8,81161,3,1672319005),(75596,8,81162,3,1672319005),(75597,8,81163,3,1672319005),(75598,8,81164,3,1672319005),(75599,8,81165,3,1672319005),(75600,8,81166,3,1672319005),(75601,8,81167,3,1672319005),(75602,8,81168,3,1672319005),(75603,8,81169,3,1672319005),(75604,8,81170,3,1672319005),(75605,8,81171,3,1672319005),(75606,8,81172,3,1672319005),(75607,8,81173,3,1672319005),(75608,8,81174,3,1672319005),(75609,8,81175,3,1672319005),(75610,8,81176,3,1672319005),(75611,8,81177,3,1672319005),(75612,8,81178,3,1672319005),(75613,8,81179,3,1672319005),(75614,8,81180,3,1672319005),(75615,8,81181,3,1672319005),(75616,8,81182,3,1672319005),(75617,8,81183,3,1672319005),(75618,8,81184,3,1672319005),(75619,8,81185,3,1672319005),(75620,8,81186,3,1672319005),(75621,8,81187,3,1672319005),(75622,8,81188,3,1672319005),(75623,8,81189,3,1672319005),(75624,8,81190,3,1672319005),(75625,8,81191,3,1672319005),(75626,8,81192,3,1672319005),(75627,8,81193,3,1672319005),(75628,8,81194,3,1672319005),(75629,8,81195,3,1672319005),(75630,8,81196,3,1672319005),(75631,8,81197,3,1672319005),(75632,8,81198,3,1672319005),(75633,8,81199,3,1672319005),(75634,8,81200,3,1672319005),(75635,8,81201,3,1672319005),(75636,8,81202,3,1672319005),(75637,8,81203,3,1672319005),(75638,8,81204,3,1672319005),(75639,8,81205,3,1672319005),(75640,8,81206,3,1672319005),(75641,8,81207,3,1672319005),(75642,8,81208,3,1672319005),(75643,8,81209,3,1672319005),(75644,8,81210,3,1672319005),(75645,8,81211,3,1672319005),(75646,8,81212,3,1672319005),(75647,8,81213,3,1672319005),(75648,8,81214,3,1672319005),(75649,8,81215,3,1672319005),(75650,8,81216,3,1672319005),(75651,8,81217,3,1672319005),(75652,8,81218,3,1672319005),(75653,8,81219,3,1672319005),(75654,8,81220,3,1672319005),(75655,8,81221,3,1672319005),(75656,8,81222,3,1672319005),(75657,8,81223,3,1672319005),(75658,8,81224,3,1672319005),(75659,8,81225,3,1672319005),(75660,8,81226,3,1672319005),(75661,8,81227,3,1672319005),(75662,8,81228,3,1672319005),(75663,8,81229,3,1672319005),(75664,8,81230,3,1672319005),(75665,8,81231,3,1672319005),(75666,8,81232,3,1672319005),(75667,8,81233,3,1672319005),(75668,8,81234,3,1672319005),(75669,8,81235,3,1672319005),(75670,8,81236,3,1672319005),(75671,8,81237,3,1672319005),(75672,8,81238,3,1672319005),(75673,8,81239,3,1672319005),(75674,8,81240,3,1672319005),(75675,8,81241,3,1672319005),(75676,8,81242,3,1672319005),(75677,8,81243,3,1672319005),(75678,8,81244,3,1672319005),(75679,8,81245,3,1672319005),(75680,8,81246,3,1672319005),(75681,8,81247,3,1672319005),(75682,8,81248,3,1672319005),(75683,8,81249,3,1672319005),(75684,8,81250,3,1672319005),(75685,8,81251,3,1672319005),(75686,8,81252,3,1672319005),(75687,8,81253,3,1672319005),(75688,8,81254,3,1672319005),(75689,8,81255,3,1672319005),(75690,8,81256,3,1672319005),(75691,8,81257,3,1672319005),(75692,8,81258,3,1672319005),(75693,8,81259,3,1672319005),(75694,8,81260,3,1672319005),(75695,8,81261,3,1672319005),(75696,8,81262,3,1672319005),(75697,8,81263,3,1672319005),(75698,8,81264,3,1672319005),(75699,8,81265,3,1672319005),(75700,8,81266,3,1672319005),(75701,8,81267,3,1672319005),(75702,8,81268,3,1672319005),(75703,8,81269,3,1672319005),(75704,8,81270,3,1672319005),(75705,8,81271,3,1672319005),(75706,8,81272,3,1672319005),(75707,8,81273,3,1672319005),(75708,8,81274,3,1672319005),(75709,8,81275,3,1672319005),(75710,8,81276,3,1672319005),(75711,8,81277,3,1672319005),(75712,8,81278,3,1672319005),(75713,8,81279,3,1672319005),(75714,8,81280,3,1672319005),(75715,8,81281,3,1672319005),(75716,8,81282,3,1672319005),(75717,8,81283,3,1672319005),(75718,8,81284,3,1672319005),(75719,8,81285,3,1672319005),(75720,8,81286,3,1672319005),(75721,8,81287,3,1672319005),(75722,8,81288,3,1672319005),(75723,8,81289,3,1672319005),(75724,8,81290,3,1672319005),(75725,8,81291,3,1672319005),(75726,8,81292,3,1672319005),(75727,8,81293,3,1672319005),(75728,8,81294,3,1672319005),(75729,8,81295,3,1672319005),(75730,8,81296,3,1672319005),(75731,8,81297,3,1672319005),(75732,8,81298,3,1672319005),(75733,8,81299,3,1672319005),(75734,8,81300,3,1672319005),(75735,8,81301,3,1672319005),(75736,8,81302,3,1672319005),(75737,8,81303,3,1672319005),(75738,8,81304,3,1672319005),(75739,8,81305,3,1672319005),(75740,8,81306,3,1672319005),(75741,8,81307,3,1672319005),(75742,8,81308,3,1672319005),(75743,8,81309,3,1672319005),(75744,8,81310,3,1672319005),(75745,8,81311,3,1672319005),(75746,8,81312,3,1672319005),(75747,8,81313,3,1672319005),(75748,8,81314,3,1672319005),(75749,8,81315,3,1672319005),(75750,8,81316,3,1672319005),(75751,8,81317,3,1672319005),(75752,8,81318,3,1672319005),(75753,8,81319,3,1672319005),(75754,8,81320,3,1672319005),(75755,8,81321,3,1672319005),(75756,8,81322,3,1672319005),(75757,8,81323,3,1672319005),(75758,8,81324,3,1672319005),(75759,8,81325,3,1672319005),(75760,8,81326,3,1672319005),(75761,8,81327,3,1672319005),(75762,8,81328,3,1672319005),(75763,8,81329,3,1672319005),(75764,8,81330,3,1672319005),(75765,8,81331,3,1672319005),(75766,8,81332,3,1672319005),(75767,8,81333,3,1672319005),(75768,8,81334,3,1672319005),(75769,8,81335,3,1672319005),(75770,8,81336,3,1672319005),(75771,8,81337,3,1672319005),(75772,8,81338,3,1672319005),(75773,8,81339,3,1672319005),(75774,8,81340,3,1672319005),(75775,8,81341,3,1672319005),(75776,8,81342,3,1672319005),(75777,8,81343,3,1672319005),(75778,8,81344,3,1672319005),(75779,8,81345,3,1672319005),(75780,8,81346,3,1672319005),(75781,8,81347,3,1672319005),(75782,8,81348,3,1672319005),(75783,8,81349,3,1672319005),(75784,8,81350,3,1672319005),(75785,8,81351,3,1672319005),(75786,8,81352,3,1672319005),(75787,8,81353,3,1672319005),(75788,8,81354,3,1672319005),(75789,8,81355,3,1672319005),(75790,8,81356,3,1672319005),(75791,8,81357,3,1672319005),(75792,8,81358,3,1672319005),(75793,8,81359,3,1672319005),(75794,8,81360,3,1672319005),(75795,8,81361,3,1672319005),(75796,8,81362,3,1672319005),(75797,8,81363,3,1672319005),(75798,8,81364,3,1672319005),(75799,8,81365,3,1672319005),(75800,8,81366,3,1672319005),(75801,8,81367,3,1672319005),(75802,8,81368,3,1672319005),(75803,8,81369,3,1672319005),(75804,8,81370,3,1672319005),(75805,8,81371,3,1672319005),(75806,8,81372,3,1672319005),(75807,8,81373,3,1672319005),(75808,8,81374,3,1672319005),(75809,8,81375,3,1672319005),(75810,8,81376,3,1672319005),(75811,8,81377,3,1672319005),(75812,8,81378,3,1672319005),(75813,8,81379,3,1672319005),(75814,8,81380,3,1672319005),(75815,8,81381,3,1672319005),(75816,8,81382,3,1672319005),(75817,8,81383,3,1672319005),(75818,8,81384,3,1672319005),(75819,8,81385,3,1672319005),(75820,8,81386,3,1672319005),(75821,8,81387,3,1672319005),(75822,8,81388,3,1672319005),(75823,8,81389,3,1672319005),(75824,8,81390,3,1672319005),(75825,8,81391,3,1672319005),(75826,8,81392,3,1672319005),(75827,8,81393,3,1672319005),(75828,8,81394,3,1672319005),(75829,8,81395,3,1672319005),(75830,8,81396,3,1672319005),(75831,8,81397,3,1672319005),(75832,8,81398,3,1672319005),(75833,8,81399,3,1672319005),(75834,8,81400,3,1672319005),(75835,8,81401,3,1672319005),(75836,8,81402,3,1672319005),(75837,8,81403,3,1672319005),(75838,8,81404,3,1672319005),(75839,8,81405,3,1672319005),(75840,8,81406,3,1672319005),(75841,8,81407,3,1672319005),(75842,8,81408,3,1672319005),(75843,8,81409,3,1672319005),(75844,8,81410,3,1672319005),(75845,8,81411,3,1672319005),(75846,8,81412,3,1672319005),(75847,8,81413,3,1672319005),(75848,8,81414,3,1672319005),(75849,8,81415,3,1672319005),(75850,8,81416,3,1672319005),(75851,8,81417,3,1672319005),(75852,8,81418,3,1672319005),(75853,8,81419,3,1672319005),(75854,8,81420,3,1672319005),(75855,8,81421,3,1672319005),(75856,8,81422,3,1672319005),(75857,8,81423,3,1672319005),(75858,8,81424,3,1672319005),(75859,8,81425,3,1672319005),(75860,8,81426,3,1672319005),(75861,8,81427,3,1672319005),(75862,8,81428,3,1672319005),(75863,8,81429,3,1672319005),(75864,8,81430,3,1672319005),(75865,8,81431,3,1672319005),(75866,8,81432,3,1672319005),(75867,8,81433,3,1672319005),(75868,8,81434,3,1672319005),(75869,8,81435,3,1672319005),(75870,8,81436,3,1672319005),(75871,8,81437,3,1672319005),(75872,8,81438,3,1672319005),(75873,8,81439,3,1672319005),(75874,8,81440,3,1672319005),(75875,8,81441,3,1672319005),(75876,8,81442,3,1672319005),(75877,8,81443,3,1672319005),(75878,8,81444,3,1672319005),(75879,8,81445,3,1672319005),(75880,8,81446,3,1672319005),(75881,8,81447,3,1672319005),(75882,8,81448,3,1672319005),(75883,8,81449,3,1672319005),(75884,8,81450,3,1672319005),(75885,8,81451,3,1672319005),(75886,8,81452,3,1672319005),(75887,8,81453,3,1672319005),(75888,8,81454,3,1672319005),(75889,8,81455,3,1672319005),(75890,8,81456,3,1672319005),(75891,8,81457,3,1672319005),(75892,8,81458,3,1672319005),(75893,8,81459,3,1672319005),(75894,8,81460,3,1672319005),(75895,8,81461,3,1672319005),(75896,8,81462,3,1672319005),(75897,8,81463,3,1672319005),(75898,8,81464,3,1672319005),(75899,8,81465,3,1672319005),(75900,8,81466,3,1672319005),(75901,8,81467,3,1672319005),(75902,8,81468,3,1672319005),(75903,8,81469,3,1672319005),(75904,8,81470,3,1672319005),(75905,8,81471,3,1672319005),(75906,8,81472,3,1672319005),(75907,8,81473,3,1672319005),(75908,8,81474,3,1672319005),(75909,8,81475,3,1672319005),(75910,8,81476,3,1672319005),(75911,8,81477,3,1672319005),(75912,8,81478,3,1672319005),(75913,8,81479,3,1672319005),(75914,8,81480,3,1672319005),(75915,8,81481,3,1672319005),(75916,8,81482,3,1672319005),(75917,8,81483,3,1672319005),(75918,8,81484,3,1672319005),(75919,8,81485,3,1672319005),(75920,8,81486,3,1672319005),(75921,8,81487,3,1672319005),(75922,8,81488,3,1672319005),(75923,8,81489,3,1672319005),(75924,8,81490,3,1672319005),(75925,8,81491,3,1672319005),(75926,8,81492,3,1672319005),(75927,8,81493,3,1672319005),(75928,8,81494,3,1672319005),(75929,8,81495,3,1672319005),(75930,8,81496,3,1672319005),(75931,8,81497,3,1672319005),(75932,8,81498,3,1672319005),(75933,8,81499,3,1672319005),(75934,8,81500,3,1672319005),(75935,8,81501,3,1672319005),(75936,8,81502,3,1672319005),(75937,8,81503,3,1672319005),(75938,8,81504,3,1672319005),(75939,8,81505,3,1672319005),(75940,8,81506,3,1672319005),(75941,8,81507,3,1672319005),(75942,8,81508,3,1672319005),(75943,8,81509,3,1672319005),(75944,8,81510,3,1672319005),(75945,8,81511,3,1672319005),(75946,8,81512,3,1672319005),(75947,8,81513,3,1672319005),(75948,8,81514,3,1672319005),(75949,8,81515,3,1672319005),(75950,8,81516,3,1672319005),(75951,8,81517,3,1672319005),(75952,8,81518,3,1672319005),(75953,8,81519,3,1672319005),(75954,8,81520,3,1672319005),(75955,8,81521,3,1672319005),(75956,8,81522,3,1672319005),(75957,8,81523,3,1672319005),(75958,8,81524,3,1672319005),(75959,8,81525,3,1672319005),(75960,8,81526,3,1672319005),(75961,8,81527,3,1672319005),(75962,8,81528,3,1672319005),(75963,8,81529,3,1672319005),(75964,8,81530,3,1672319005),(75965,8,81531,3,1672319005),(75966,8,81532,3,1672319005),(75967,8,81533,3,1672319005),(75968,8,81534,3,1672319005),(75969,8,81535,3,1672319005),(75970,8,81536,3,1672319005),(75971,8,81537,3,1672319005),(75972,8,81538,3,1672319005),(75973,8,81539,3,1672319005),(75974,8,81540,3,1672319005),(75975,8,81541,3,1672319005),(75976,8,81542,3,1672319005),(75977,8,81543,3,1672319005),(75978,8,81544,3,1672319005),(75979,8,81545,3,1672319005),(75980,8,81546,3,1672319005),(75981,8,81547,3,1672319005),(75982,8,81548,3,1672319005),(75983,8,81549,3,1672319005),(75984,8,81550,3,1672319005),(75985,8,81551,3,1672319005),(75986,8,81552,3,1672319005),(75987,8,81553,3,1672319005),(75988,8,81554,3,1672319005),(75989,8,81555,3,1672319005),(75990,8,81556,3,1672319005),(75991,8,81557,3,1672319005),(75992,8,81558,3,1672319005),(75993,8,81559,3,1672319005),(75994,8,81560,3,1672319005),(75995,8,81561,3,1672319005),(75996,8,81562,3,1672319005),(75997,8,81563,3,1672319005),(75998,8,81564,3,1672319005),(75999,8,81565,3,1672319005),(76000,8,81566,3,1672319005),(76001,8,81567,3,1672319005),(76002,8,81568,3,1672319005),(76003,8,81569,3,1672319005),(76004,8,81570,3,1672319005),(76005,8,81571,3,1672319005),(76006,8,81572,3,1672319005),(76007,8,81573,3,1672319005),(76008,8,81574,3,1672319005),(76009,8,81575,3,1672319005),(76010,8,81576,3,1672319005),(76011,8,81577,3,1672319005),(76012,8,81578,3,1672319005),(76013,8,81579,3,1672319005),(76014,8,81580,3,1672319005),(76015,8,81581,3,1672319005),(76016,8,81582,3,1672319005),(76017,8,81583,3,1672319005),(76018,8,81584,3,1672319005),(76019,8,81585,3,1672319005),(76020,8,81586,3,1672319005),(76021,8,81587,3,1672319005),(76022,8,81588,3,1672319005),(76023,8,81589,3,1672319005),(76024,8,81590,3,1672319005),(76025,8,81591,3,1672319005),(76026,8,81592,3,1672319005),(76027,8,81593,3,1672319005),(76028,8,81594,3,1672319005),(76029,8,81595,3,1672319005),(76030,8,81596,3,1672319005),(76031,8,81597,3,1672319005),(76032,8,81598,3,1672319005),(76033,8,81599,3,1672319005),(76034,8,81600,3,1672319005),(76035,8,81601,3,1672319005),(76036,8,81602,3,1672319005),(76037,8,81603,3,1672319005),(76038,8,81604,3,1672319005),(76039,8,81605,3,1672319005),(76040,8,81606,3,1672319005),(76041,8,81607,3,1672319005),(76042,8,81608,3,1672319005),(76043,8,81609,3,1672319005),(76044,8,81610,3,1672319005),(76045,8,81611,3,1672319005),(76046,8,81612,3,1672319005),(76047,8,81613,3,1672319005),(76048,8,81614,3,1672319005),(76049,8,81615,3,1672319005),(76050,8,81616,3,1672319005),(76051,8,81617,3,1672319005),(76052,8,81618,3,1672319005),(76053,8,81619,3,1672319005),(76054,8,81620,3,1672319005),(76055,8,81621,3,1672319005),(76056,8,81622,3,1672319005),(76057,8,81623,3,1672319005),(76058,8,81624,3,1672319005),(76059,8,81625,3,1672319005),(76060,8,81626,3,1672319005),(76061,8,81627,3,1672319005),(76062,8,81628,3,1672319005),(76063,8,81629,3,1672319005),(76064,8,81630,3,1672319005),(76065,8,81631,3,1672319005),(76066,8,81632,3,1672319005),(76067,8,81633,3,1672319005),(76068,8,81634,3,1672319005),(76069,8,81635,3,1672319005),(76070,8,81636,3,1672319005),(76071,8,81637,3,1672319005),(76072,8,81638,3,1672319005),(76073,8,81639,3,1672319005),(76074,8,81640,3,1672319005),(76075,8,81641,3,1672319005),(76076,8,81642,3,1672319005),(76077,8,81643,3,1672319005),(76078,8,81644,3,1672319005),(76079,8,81645,3,1672319005),(76080,8,81646,3,1672319005),(76081,8,81647,3,1672319005),(76082,8,81648,3,1672319005),(76083,8,81649,3,1672319005),(76084,8,81650,3,1672319005),(76085,8,81651,3,1672319005),(76086,8,81652,3,1672319005),(76087,8,81653,3,1672319005),(76088,8,81654,3,1672319005),(76089,8,81655,3,1672319005),(76090,8,81656,3,1672319005),(76091,8,81657,3,1672319005),(76092,8,81658,3,1672319005),(76093,8,81659,3,1672319005),(76094,8,81660,3,1672319005),(76095,8,81661,3,1672319005),(76096,8,81662,3,1672319005),(76097,8,81663,3,1672319005),(76098,8,81664,3,1672319005),(76099,8,81665,3,1672319005),(76100,8,81666,3,1672319005),(76101,8,81667,3,1672319005),(76102,8,81668,3,1672319005),(76103,8,81669,3,1672319005),(76104,8,81670,3,1672319005),(76105,8,81671,3,1672319005),(76106,8,81672,3,1672319005),(76107,8,81673,3,1672319005),(76108,8,81674,3,1672319005),(76109,8,81675,3,1672319005),(76110,8,81676,3,1672319005),(76111,8,81677,3,1672319005),(76112,8,81678,3,1672319005),(76113,8,81679,3,1672319005),(76114,8,81680,3,1672319005),(76115,8,81681,3,1672319005),(76116,8,81682,3,1672319005),(76117,8,81683,3,1672319005),(76118,8,81684,3,1672319005),(76119,8,81685,3,1672319005),(76120,8,81686,3,1672319005),(76121,8,81687,3,1672319005),(76122,8,81688,3,1672319005),(76123,8,81689,3,1672319005),(76124,8,81690,3,1672319005),(76125,8,81691,3,1672319005),(76126,8,81692,3,1672319005),(76127,8,81693,3,1672319005),(76128,8,81694,3,1672319005),(76129,8,81695,3,1672319005),(76130,8,81696,3,1672319005),(76131,8,81697,3,1672319005),(76132,8,81698,3,1672319005),(76133,8,81699,3,1672319005),(76134,8,81700,3,1672319005),(76135,8,81701,3,1672319005),(76136,8,81702,3,1672319005),(76137,8,81703,3,1672319005),(76138,8,81704,3,1672319005),(76139,8,81705,3,1672319005),(76140,8,81706,3,1672319005),(76141,8,81707,3,1672319005),(76142,8,81708,3,1672319005),(76143,8,81709,3,1672319005),(76144,8,81710,3,1672319005),(76145,8,81711,3,1672319005),(76146,8,81712,3,1672319005),(76147,8,81713,3,1672319005),(76148,8,81714,3,1672319005),(76149,8,81715,3,1672319005),(76150,8,81716,3,1672319005),(76151,8,81717,3,1672319005),(76152,8,81718,3,1672319005),(76153,8,81719,3,1672319005),(76154,8,81720,3,1672319005),(76155,8,81721,3,1672319005),(76156,8,81722,3,1672319005),(76157,8,81723,3,1672319005),(76158,8,81724,3,1672319005),(76159,8,81725,3,1672319005),(76160,8,81726,3,1672319005),(76161,8,81727,3,1672319005),(76162,8,81728,3,1672319005),(76163,8,81729,3,1672319005),(76164,8,81730,3,1672319005),(76165,8,81731,3,1672319005),(76166,8,81732,3,1672319005),(76167,8,81733,3,1672319005),(76168,8,81734,3,1672319005),(76169,8,81735,3,1672319005),(76170,8,81736,3,1672319005),(76171,8,81737,3,1672319005),(76172,8,81738,3,1672319005),(76173,8,81739,3,1672319005),(76174,8,81740,3,1672319005),(76175,8,81741,3,1672319005),(76176,8,81742,3,1672319005),(76177,8,81743,3,1672319005),(76178,8,81744,3,1672319005),(76179,8,81745,3,1672319005),(76180,8,81746,3,1672319005),(76181,8,81747,3,1672319005),(76182,8,81748,3,1672319005),(76183,8,81749,3,1672319005),(76184,8,81750,3,1672319005),(76185,8,81751,3,1672319005),(76186,8,81752,3,1672319005),(76187,8,81753,3,1672319005),(76188,8,81754,3,1672319005),(76189,8,81755,3,1672319005),(76190,8,81756,3,1672319005),(76191,8,81757,3,1672319005),(76192,8,81758,3,1672319005),(76193,8,81759,3,1672319005),(76194,8,81760,3,1672319005),(76195,8,81761,3,1672319005),(76196,8,81762,3,1672319005),(76197,8,81763,3,1672319005),(76198,8,81764,3,1672319005),(76199,8,81765,3,1672319005),(76200,8,81766,3,1672319005),(76201,8,81767,3,1672319005),(76202,8,81768,3,1672319005),(76203,8,81769,3,1672319005),(76204,8,81770,3,1672319005),(76205,8,81771,3,1672319005),(76206,8,81772,3,1672319005),(76207,8,81773,3,1672319005),(76208,8,81774,3,1672319005),(76209,8,81775,3,1672319005),(76210,8,81776,3,1672319005),(76211,8,81777,3,1672319005),(76212,8,81778,3,1672319005),(76213,8,81779,3,1672319005),(76214,8,81780,3,1672319005),(76215,8,81794,3,1672319005),(76216,8,81795,3,1672319005),(76217,8,81796,3,1672319005),(76218,8,81797,3,1672319005),(76219,8,81798,3,1672319005),(76220,8,81799,3,1672319005),(76221,8,81800,3,1672319005),(76222,8,81801,3,1672319005),(76223,8,81802,3,1672319005),(76224,8,81803,3,1672319005),(76225,8,81804,3,1672319005),(76226,8,81805,3,1672319005),(76227,8,81806,3,1672319005),(76228,8,81807,3,1672319005),(76229,8,81808,3,1672319005),(76230,8,81809,3,1672319005),(76231,8,81810,3,1672319005),(76232,8,81811,3,1672319005),(76233,8,81812,3,1672319005),(76234,8,81813,3,1672319005),(76235,8,81814,3,1672319005),(76236,8,81815,3,1672319005),(76237,8,81816,3,1672319005),(76238,8,81817,3,1672319005),(76239,8,81818,3,1672319005),(76240,8,81819,3,1672319005),(76241,8,81820,3,1672319005),(76242,8,81821,3,1672319005),(76243,8,81822,3,1672319005),(76244,8,81823,3,1672319005),(76245,8,81824,3,1672319005),(76246,8,81825,3,1672319005),(76247,8,81826,3,1672319005),(76248,8,81827,3,1672319005),(76249,8,81828,3,1672319005),(76250,8,81829,3,1672319005),(76251,8,81830,3,1672319005),(76252,8,81831,3,1672319005),(76253,8,81832,3,1672319005),(76254,8,81833,3,1672319005),(76255,8,81834,3,1672319005),(76256,8,81835,3,1672319005),(76257,8,81836,3,1672319005),(76258,8,81837,3,1672319005),(76259,8,81838,3,1672319005),(76260,8,81839,3,1672319005),(76261,8,81840,3,1672319005),(76262,8,81841,3,1672319005),(76263,8,81842,3,1672319005),(76264,8,81843,3,1672319005),(76265,8,81844,3,1672319005),(76266,8,81845,3,1672319005),(76267,8,81846,3,1672319005),(76268,8,81847,3,1672319005),(76269,8,81848,3,1672319005),(76270,8,81849,3,1672319005),(76271,8,81850,3,1672319005),(76272,8,81851,3,1672319005),(76273,8,81852,3,1672319005),(76274,8,81853,3,1672319005),(76275,8,81854,3,1672319005),(76276,8,81855,3,1672319005),(76277,8,81856,3,1672319005),(76278,8,81857,3,1672319005),(76279,8,81858,3,1672319005),(76280,8,81859,3,1672319005),(76281,8,81860,3,1672319005),(76282,8,81861,3,1672319005),(76283,8,81862,3,1672319005),(76284,8,81863,3,1672319005),(76285,8,81864,3,1672319005),(76286,8,81865,3,1672319005),(76287,8,81866,3,1672319005),(76288,8,81867,3,1672319005),(76289,8,81868,3,1672319005),(76290,8,81869,3,1672319005),(76291,8,81870,3,1672319005),(76292,8,81871,3,1672319005),(76293,8,81872,3,1672319005),(76294,8,81873,3,1672319005),(76295,8,81874,3,1672319005),(76296,8,81875,3,1672319005),(76297,8,81876,3,1672319005),(76298,8,81877,3,1672319005),(76299,8,81878,3,1672319005),(76300,8,81879,3,1672319005),(76301,8,81880,3,1672319005),(76302,8,81881,3,1672319005),(76303,8,81882,3,1672319005),(76304,8,81883,3,1672319005),(76305,8,81884,3,1672319005),(76306,8,81885,3,1672319005),(76307,8,81886,3,1672319005),(76308,8,81887,3,1672319005),(76309,8,81888,3,1672319005),(76310,8,81889,3,1672319005),(76311,8,81890,3,1672319005),(76312,8,81891,3,1672319005),(76313,8,81892,3,1672319005),(76314,8,81893,3,1672319005),(76315,8,81894,3,1672319005),(76316,8,81895,3,1672319005),(76317,8,81896,3,1672319005),(76318,8,81897,3,1672319005),(76319,8,81898,3,1672319005),(76320,8,81899,3,1672319005),(76321,8,81900,3,1672319005),(76322,8,81901,3,1672319005),(76323,8,81902,3,1672319005),(76324,8,81903,3,1672319005),(76325,8,81904,3,1672319005),(76326,8,81905,3,1672319005),(76327,8,81906,3,1672319005),(76328,8,81907,3,1672319005),(76329,8,81908,3,1672319005),(76330,8,81909,3,1672319005),(76331,8,81910,3,1672319005),(76332,8,81911,3,1672319005),(76333,8,81912,3,1672319005),(76334,8,81913,3,1672319005),(76335,8,81914,3,1672319005),(76336,8,81915,3,1672319005),(76337,8,81916,3,1672319005),(76338,8,81917,3,1672319005),(76339,8,81918,3,1672319005),(76340,8,81919,3,1672319005),(76341,8,81920,3,1672319005),(76342,8,81921,3,1672319005),(76343,8,81922,3,1672319005),(76344,8,81923,3,1672319005),(76345,8,81924,3,1672319005),(76346,8,81925,3,1672319005),(76347,8,81926,3,1672319005),(76348,8,81927,3,1672319005),(76349,8,81928,3,1672319005),(76350,8,81929,3,1672319005),(76351,8,81930,3,1672319005),(76352,8,81931,3,1672319005),(76353,8,81932,3,1672319005),(76354,8,81933,3,1672319005),(76355,8,81937,3,1672319005),(76356,8,81938,3,1672319005),(76357,8,81939,3,1672319005),(76358,8,81949,3,1672319005),(76359,8,81950,3,1672319005),(76360,8,81951,3,1672319005),(76361,8,81952,3,1672319005),(76362,8,81953,3,1672319005),(76363,8,81954,3,1672319005),(76364,8,81955,3,1672319005),(76365,8,81956,3,1672319005),(76366,8,81957,3,1672319005),(76367,8,81958,3,1672319005),(76368,8,81959,3,1672319005),(76369,8,81960,3,1672319005),(76370,8,81961,3,1672319005),(76371,8,81962,3,1672319005),(76372,8,81963,3,1672319005),(76373,8,81964,3,1672319005),(76374,8,81965,3,1672319005),(76375,8,81966,3,1672319005),(76376,8,81967,3,1672319005),(76377,8,81968,3,1672319005),(76378,8,81969,3,1672319005),(76379,8,81970,3,1672319005),(76380,8,81971,3,1672319005),(76381,8,81972,3,1672319005),(76382,8,81973,3,1672319005),(76383,8,81974,3,1672319005),(76384,8,81975,3,1672319005),(76385,8,81976,3,1672319005),(76386,8,81977,3,1672319005),(76387,8,81978,3,1672319005),(76388,8,81979,3,1672319005),(76389,8,81980,3,1672319005),(76390,8,81981,3,1672319005),(76391,8,81982,3,1672319005),(76392,8,81983,3,1672319005),(76393,8,81984,3,1672319005),(76394,8,81985,3,1672319005),(76395,8,81986,3,1672319005),(76396,8,81987,3,1672319005),(76397,8,81988,3,1672319005),(76398,8,81989,3,1672319005),(76399,8,81990,3,1672319005),(76400,8,81991,3,1672319005),(76401,8,81992,3,1672319005),(76402,8,81993,3,1672319005),(76403,8,81994,3,1672319005),(76404,8,81995,3,1672319005),(76405,8,81996,3,1672319005),(76406,8,81997,3,1672319005),(76407,8,81998,3,1672319005),(76408,8,81999,3,1672319005),(76409,8,82000,3,1672319005),(76410,8,82001,3,1672319005),(76411,8,82002,3,1672319005),(76412,8,82003,3,1672319005),(76413,8,82004,3,1672319005),(76414,8,82005,3,1672319005),(76415,8,82006,3,1672319005),(76416,8,82007,3,1672319005),(76417,8,82008,3,1672319005),(76418,8,82009,3,1672319005),(76419,8,82010,3,1672319005),(76420,8,82011,3,1672319005),(76421,8,82012,3,1672319005),(76422,8,82013,3,1672319005),(76423,8,82014,3,1672319005),(76424,8,82015,3,1672319005),(76425,8,82016,3,1672319005),(76426,8,82017,3,1672319005),(76427,8,82018,3,1672319005),(76428,8,82019,3,1672319005),(76429,8,82020,3,1672319005),(76430,8,82021,3,1672319005),(76431,8,82022,3,1672319005),(76432,8,82023,3,1672319005),(76433,8,82024,3,1672319005),(76434,8,82025,3,1672319005),(76435,8,82026,3,1672319005),(76436,8,82027,3,1672319005),(76437,8,82028,3,1672319005),(76438,8,82029,3,1672319005),(76439,8,82030,3,1672319005),(76440,8,82031,3,1672319005),(76441,8,82032,3,1672319005),(76442,8,82033,3,1672319005),(76443,8,82034,3,1672319005),(76444,8,82035,3,1672319005),(76445,8,82036,3,1672319005),(76446,8,82037,3,1672319005),(76447,8,82038,3,1672319005),(76448,8,82039,3,1672319005),(76449,8,82040,3,1672319005),(76450,8,82041,3,1672319005),(76451,8,82042,3,1672319005),(76452,8,82043,3,1672319005),(76453,8,82044,3,1672319005),(76454,8,82045,3,1672319005),(76455,8,82046,3,1672319005),(76456,8,82047,3,1672319005),(76457,8,82048,3,1672319005),(76458,8,82049,3,1672319005),(76459,8,82050,3,1672319005),(76460,8,82051,3,1672319005),(76461,8,82052,3,1672319005),(76462,8,82053,3,1672319005),(76463,8,82054,3,1672319005),(76464,8,82055,3,1672319005),(76465,8,82056,3,1672319005),(76466,8,82057,3,1672319005),(76467,8,82058,3,1672319005),(76468,8,82059,3,1672319005),(76469,8,82060,3,1672319005),(76470,8,82061,3,1672319005),(76471,8,82062,3,1672319005),(76472,8,82063,3,1672319005),(76473,8,82064,3,1672319005),(76474,8,82065,3,1672319005),(76475,8,82066,3,1672319005),(76476,8,82067,3,1672319005),(76477,8,82068,3,1672319005),(76478,8,82069,3,1672319005),(76479,8,82070,3,1672319005),(76480,8,82071,3,1672319005),(76481,8,82072,3,1672319005),(76482,8,82073,3,1672319005),(76483,8,82074,3,1672319005),(76484,8,82075,3,1672319005),(76485,8,82076,3,1672319005),(76486,8,82077,3,1672319005),(76487,8,82078,3,1672319005),(76488,8,82079,3,1672319005),(76489,8,82080,3,1672319005),(76490,8,82081,3,1672319005),(76491,8,82082,3,1672319005),(76492,8,82083,3,1672319005),(76493,8,82084,3,1672319005),(76494,8,82085,3,1672319005),(76495,8,82086,3,1672319005),(76496,8,82087,3,1672319005),(76497,8,82088,3,1672319005),(76498,8,82089,3,1672319005),(76499,8,82090,3,1672319005),(76500,8,82091,3,1672319005),(76501,8,82092,3,1672319005),(76502,8,82093,3,1672319005),(76503,8,82094,3,1672319005),(76504,8,82095,3,1672319005),(76505,8,82096,3,1672319005),(76506,8,82097,3,1672319005),(76507,8,82098,3,1672319005),(76508,8,82099,3,1672319005),(76509,8,82100,3,1672319005),(76510,8,82101,3,1672319005),(76511,8,82102,3,1672319005),(76512,8,82103,3,1672319005),(76513,8,82104,3,1672319005),(76514,8,82105,3,1672319005),(76515,8,82106,3,1672319005),(76516,8,82107,3,1672319005),(76517,8,82108,3,1672319005),(76518,8,82109,3,1672319005),(76519,8,82110,3,1672319005),(76520,8,82111,3,1672319005),(76521,8,82112,3,1672319005),(76522,8,82113,3,1672319005),(76523,8,82114,3,1672319005),(76524,8,82115,3,1672319005),(76525,8,82116,3,1672319005),(76526,8,82117,3,1672319005),(76527,8,82118,3,1672319005),(76528,8,82119,3,1672319005),(76529,8,82120,3,1672319005),(76530,8,82121,3,1672319005),(76531,8,82122,3,1672319005),(76532,8,82123,3,1672319005),(76533,8,82124,3,1672319005),(76534,8,82125,3,1672319005),(76535,8,82126,3,1672319005),(76536,8,82127,3,1672319005),(76537,8,82128,3,1672319005),(76538,8,82129,3,1672319005),(76539,8,82130,3,1672319005),(76540,8,82131,3,1672319005),(76541,8,82132,3,1672319005),(76542,8,82133,3,1672319005),(76543,8,82134,3,1672319005),(76544,8,82135,3,1672319005),(76545,8,82136,3,1672319005),(76546,8,82137,3,1672319005),(76547,8,82138,3,1672319005),(76548,8,82139,3,1672319005),(76549,8,82140,3,1672319005),(76550,8,82141,3,1672319005),(76551,8,82142,3,1672319005),(76552,8,82143,3,1672319005),(76553,8,82144,3,1672319005),(76554,8,82145,3,1672319005),(76555,8,82146,3,1672319005),(76556,8,82147,3,1672319005),(76557,8,82148,3,1672319005),(76558,8,82149,3,1672319005),(76559,8,82150,3,1672319005),(76560,8,82151,3,1672319005),(76561,8,82152,3,1672319005),(76562,8,82153,3,1672319005),(76563,8,82154,3,1672319005),(76564,8,82155,3,1672319005),(76565,8,82156,3,1672319005),(76566,8,82157,3,1672319005),(76567,8,82158,3,1672319005),(76568,8,82159,3,1672319005),(76569,8,82160,3,1672319005),(76570,8,82161,3,1672319005),(76571,8,82162,3,1672319005),(76572,8,82163,3,1672319005),(76573,8,82164,3,1672319005),(76574,8,82165,3,1672319005),(76575,8,82166,3,1672319005),(76576,8,82167,3,1672319005),(76577,8,82168,3,1672319005),(76578,8,82169,3,1672319005),(76579,8,82170,3,1672319005),(76580,8,82171,3,1672319005),(76581,8,82172,3,1672319005),(76582,8,82173,3,1672319005),(76583,8,82174,3,1672319005),(76584,8,82175,3,1672319005),(76585,8,82176,3,1672319005),(76586,8,82177,3,1672319005),(76587,8,82178,3,1672319005),(76588,8,82179,3,1672319005),(76589,8,82180,3,1672319005),(76590,8,82181,3,1672319005),(76591,8,82182,3,1672319005),(76592,8,82183,3,1672319005),(76593,8,82184,3,1672319005),(76594,8,82185,3,1672319005),(76595,8,82186,3,1672319005),(76596,8,82187,3,1672319005),(76597,8,82188,3,1672319005),(76598,8,82189,3,1672319005),(76599,8,82190,3,1672319005),(76600,8,82191,3,1672319005),(76601,8,82192,3,1672319005),(76602,8,82193,3,1672319005),(76603,8,82194,3,1672319005),(76604,8,82195,3,1672319005),(76605,8,82196,3,1672319005),(76606,8,82197,3,1672319005),(76607,8,82198,3,1672319005),(76608,8,82199,3,1672319005),(76609,8,82200,3,1672319005),(76610,8,82201,3,1672319005),(76611,8,82202,3,1672319005),(76612,8,82203,3,1672319005),(76613,8,82204,3,1672319005),(76614,8,82205,3,1672319005),(76615,8,82206,3,1672319005),(76616,8,82207,3,1672319005),(76617,8,82208,3,1672319005),(76618,8,82209,3,1672319005),(76619,8,82210,3,1672319005),(76620,8,82211,3,1672319005),(76621,8,82212,3,1672319005),(76622,8,82213,3,1672319005),(76623,8,82214,3,1672319005),(76624,8,82215,3,1672319005),(76625,8,82216,3,1672319005),(76626,8,82217,3,1672319005),(76627,8,82218,3,1672319005),(76628,8,82219,3,1672319005),(76629,8,82220,3,1672319005),(76630,8,82221,3,1672319005),(76631,8,82222,3,1672319005),(76632,8,82223,3,1672319005),(76633,8,82224,3,1672319005),(76634,8,82225,3,1672319005),(76635,8,82226,3,1672319005),(76636,8,82227,3,1672319005),(76637,8,82228,3,1672319005),(76638,8,82229,3,1672319005),(76639,8,82230,3,1672319005),(76640,8,82231,3,1672319005),(76641,8,82232,3,1672319005),(76642,8,82233,3,1672319005),(76643,8,82234,3,1672319005),(76644,8,82235,3,1672319005),(76645,8,82236,3,1672319005),(76646,8,82237,3,1672319005),(76647,8,82238,3,1672319005),(76648,8,82239,3,1672319005),(76649,8,82240,3,1672319005),(76650,8,82241,3,1672319005),(76651,8,82242,3,1672319005),(76652,8,82243,3,1672319005),(76653,8,82244,3,1672319005),(76654,8,82245,3,1672319005),(76655,8,82246,3,1672319005),(76656,8,82247,3,1672319005),(76657,8,82248,3,1672319005),(76658,8,82249,3,1672319005),(76659,8,82250,3,1672319005),(76660,8,82251,3,1672319005),(76661,8,82252,3,1672319005),(76662,8,82253,3,1672319005),(76663,8,82254,3,1672319005),(76664,8,82255,3,1672319005),(76665,8,82256,3,1672319005),(76666,8,82257,3,1672319005),(76667,8,82258,3,1672319005),(76668,8,82259,3,1672319005),(76669,8,82260,3,1672319005),(76670,8,82261,3,1672319005),(76671,8,82262,3,1672319005),(76672,8,82263,3,1672319005),(76673,8,82264,3,1672319005),(76674,8,82265,3,1672319005),(76675,8,82266,3,1672319005),(76676,8,82267,3,1672319005),(76677,8,82268,3,1672319005),(76678,8,82269,3,1672319005),(76679,8,82270,3,1672319005),(76680,8,82271,3,1672319005),(76681,8,82272,3,1672319005),(76682,8,82273,3,1672319005),(76683,8,82274,3,1672319005),(76684,8,82275,3,1672319005),(76685,8,82276,3,1672319005),(76686,8,82277,3,1672319005),(76687,8,82278,3,1672319005),(76688,8,82279,3,1672319005),(76689,8,82280,3,1672319005),(76690,8,82281,3,1672319005),(76691,8,82282,3,1672319005),(76692,8,82283,3,1672319005),(76693,8,82284,3,1672319005),(76694,8,82285,3,1672319005),(76695,8,82286,3,1672319005),(76696,8,82287,3,1672319005),(76697,8,82288,3,1672319005),(76698,8,82289,3,1672319005),(76699,8,82290,3,1672319005),(76700,8,82291,3,1672319005),(76701,8,82292,3,1672319005),(76702,8,82293,3,1672319005),(76703,8,82294,3,1672319005),(76704,8,82295,3,1672319005),(76705,8,82296,3,1672319005),(76706,8,82298,3,1672319005),(76707,8,82299,3,1672319005),(76708,8,82300,3,1672319005),(76709,8,82301,3,1672319005),(76710,8,82302,3,1672319005),(76711,8,82303,3,1672319005),(76712,8,82304,3,1672319005),(76713,8,82305,3,1672319005),(76714,8,82306,3,1672319005),(76715,8,82307,3,1672319005),(76716,8,82308,3,1672319005),(76717,8,82309,3,1672319005),(76718,8,82310,3,1672319005),(76719,8,82312,3,1672319005),(76720,8,82313,3,1672319005),(76721,8,82314,3,1672319005),(76722,8,82315,3,1672319005),(76723,8,82316,3,1672319005),(76724,8,82317,3,1672319005),(76725,8,82318,3,1672319005),(76726,8,82319,3,1672319005),(76727,8,82320,3,1672319005),(76728,8,82321,3,1672319005),(76729,8,82322,3,1672319005),(76730,8,82323,3,1672319005),(76731,8,82324,3,1672319005),(76732,8,82325,3,1672319005),(76733,8,82326,3,1672319005),(76734,8,82327,3,1672319005),(76735,8,82328,3,1672319005),(76736,8,82329,3,1672319005),(76737,8,82330,3,1672319005),(76738,8,82331,3,1672319005),(76739,8,82332,3,1672319005),(76740,8,82333,3,1672319005),(76741,8,82334,3,1672319005),(76742,8,82335,3,1672319005),(76743,8,82336,3,1672319005),(76744,8,82337,3,1672319005),(76745,8,82338,3,1672319005),(76746,8,82339,3,1672319005),(76747,8,82340,3,1672319005),(76748,8,82341,3,1672319005),(76749,8,82342,3,1672319005),(76750,8,82343,3,1672319005),(76751,8,82344,3,1672319005),(76752,8,82345,3,1672319005),(76753,8,82346,3,1672319005),(76754,8,82347,3,1672319005),(76755,8,82348,3,1672319005),(76756,8,82349,3,1672319005),(76757,8,82350,3,1672319005),(76758,8,82351,3,1672319005),(76759,8,82352,3,1672319005),(76760,8,82353,3,1672319005),(76761,8,82354,3,1672319005),(76762,8,82355,3,1672319005),(76763,8,82356,3,1672319005),(76764,8,82357,3,1672319005),(76765,8,82358,3,1672319005),(76766,8,82359,3,1672319005),(76767,8,82360,3,1672319005),(76768,8,82361,3,1672319005),(76769,8,82362,3,1672319005),(76770,8,82363,3,1672319005),(76771,8,82364,3,1672319005),(76772,8,82365,3,1672319005),(76773,8,82366,3,1672319005),(76774,8,82367,3,1672319005),(76775,8,82368,3,1672319005),(76776,8,82369,3,1672319005),(76777,8,82370,3,1672319005),(76778,8,82371,3,1672319005),(76779,8,82372,3,1672319005),(76780,8,82373,3,1672319005),(76781,8,82374,3,1672319005),(76782,8,82375,3,1672319005),(76783,8,82416,3,1672319005),(76784,8,82417,3,1672319005),(76785,8,82418,3,1672319005),(76786,8,82419,3,1672319005),(76787,8,82420,3,1672319005),(76788,8,82421,3,1672319005),(76789,8,82422,3,1672319005),(76790,8,82423,3,1672319005),(76791,8,82424,3,1672319005),(76792,8,82425,3,1672319005),(76793,8,82426,3,1672319005),(76794,8,82427,3,1672319005),(76795,8,82428,3,1672319005),(76796,8,82429,3,1672319005),(76797,8,82430,3,1672319005),(76798,8,82431,3,1672319005),(76799,8,82432,3,1672319005),(76800,8,82433,3,1672319005),(76801,8,82434,3,1672319005),(76802,8,82435,3,1672319005),(76803,8,82436,3,1672319005),(76804,8,82437,3,1672319005),(76805,8,82438,3,1672319005),(76806,8,82439,3,1672319005),(76807,8,82440,3,1672319005),(76808,8,82441,3,1672319005),(76809,8,82442,3,1672319005),(76810,8,82443,3,1672319005),(76811,8,82444,3,1672319005),(76812,8,82445,3,1672319005),(76813,8,82446,3,1672319005),(76814,8,82447,3,1672319005),(76815,8,82448,3,1672319005),(76816,8,82449,3,1672319005),(76817,8,82450,3,1672319005),(76818,8,82451,3,1672319005),(76819,8,82452,3,1672319005),(76820,8,82453,3,1672319005),(76821,8,82454,3,1672319005),(76822,8,82455,3,1672319005),(76823,8,82456,3,1672319005),(76824,8,82457,3,1672319005),(76825,8,82458,3,1672319005),(76826,8,82459,3,1672319005),(76827,8,82460,3,1672319005),(76828,8,82461,3,1672319005),(76829,8,82462,3,1672319005),(76830,8,82463,3,1672319005),(76831,8,82464,3,1672319005),(76832,8,82465,3,1672319005),(76833,8,82466,3,1672319005),(76834,8,82467,3,1672319005),(76835,8,82468,3,1672319005),(76836,8,82469,3,1672319005),(76837,8,82470,3,1672319005),(76838,8,82471,3,1672319005),(76839,8,82472,3,1672319005),(76840,8,82473,3,1672319005),(76841,8,82474,3,1672319005),(76842,8,82475,3,1672319005),(76843,8,82476,3,1672319005),(76844,8,82477,3,1672319005),(76845,8,82478,3,1672319005),(76846,8,82479,3,1672319005),(76847,8,82480,3,1672319005),(76848,8,82481,3,1672319005),(76849,8,82482,3,1672319005),(76850,8,82483,3,1672319005),(76851,8,82484,3,1672319005),(76852,8,82485,3,1672319005),(76853,8,82486,3,1672319005),(76854,8,82487,3,1672319005),(76855,8,82488,3,1672319005),(76856,8,82489,3,1672319005),(76857,8,82490,3,1672319005),(76858,8,82491,3,1672319005),(76859,8,82492,3,1672319005),(76860,8,82493,3,1672319005),(76861,8,82494,3,1672319005),(76862,8,82495,3,1672319005),(76863,8,82496,3,1672319005),(76864,8,82497,3,1672319005),(76865,8,82498,3,1672319005),(76866,8,82499,3,1672319005),(76867,8,82500,3,1672319005),(76868,8,82501,3,1672319005),(76869,8,82502,3,1672319005),(76870,8,82503,3,1672319005),(76871,8,82504,3,1672319005),(76872,8,82505,3,1672319005),(76873,8,82506,3,1672319005),(76874,8,82507,3,1672319005),(76875,8,82508,3,1672319005),(76876,8,82509,3,1672319005),(76877,8,82510,3,1672319005),(76878,8,82511,3,1672319005),(76879,8,82512,3,1672319005),(76880,8,82513,3,1672319005),(76881,8,82514,3,1672319005),(76882,8,82515,3,1672319005),(76883,8,82516,3,1672319005),(76884,8,82517,3,1672319005),(76885,8,82518,3,1672319005),(76886,8,82519,3,1672319005),(76887,8,82520,3,1672319005),(76888,8,82521,3,1672319005),(76889,8,82522,3,1672319005),(76890,8,82523,3,1672319005),(76891,8,82524,3,1672319005),(76892,8,82525,3,1672319005),(76893,8,82526,3,1672319005),(76894,8,82527,3,1672319005),(76895,8,82528,3,1672319005),(76896,8,82529,3,1672319005),(76897,8,82530,3,1672319005),(76898,8,82531,3,1672319005),(76899,8,82532,3,1672319005),(76900,8,82533,3,1672319005),(76901,8,82534,3,1672319005),(76902,8,82535,3,1672319005),(76903,8,82536,3,1672319005),(76904,8,82537,3,1672319005),(76905,8,82538,3,1672319005),(76906,8,82539,3,1672319005),(76907,8,82540,3,1672319005),(76908,8,82541,3,1672319005),(76909,8,82542,3,1672319005),(76910,8,82543,3,1672319005),(76911,8,82544,3,1672319005),(76912,8,82545,3,1672319005),(76913,8,82546,3,1672319005),(76914,8,82547,3,1672319005),(76915,8,82548,3,1672319005),(76916,8,82549,3,1672319005),(76917,8,82550,3,1672319005),(76918,8,82551,3,1672319005),(76919,8,82552,3,1672319005),(76920,8,82553,3,1672319005),(76921,8,82554,3,1672319005),(76922,8,82555,3,1672319005),(76923,8,82556,3,1672319005),(76924,8,82557,3,1672319005),(76925,8,82558,3,1672319005),(76926,8,82559,3,1672319005),(76927,8,82560,3,1672319005),(76928,8,82561,3,1672319005),(76929,8,82562,3,1672319005),(76930,8,82563,3,1672319005),(76931,8,82564,3,1672319005),(76932,8,82565,3,1672319005),(76933,8,82566,3,1672319005),(76934,8,82567,3,1672319005),(76935,8,82568,3,1672319005),(76936,8,82569,3,1672319005),(76937,8,82570,3,1672319005),(76938,8,82571,3,1672319005),(76939,8,82572,3,1672319005),(76940,8,82573,3,1672319005),(76941,8,82574,3,1672319005),(76942,8,82575,3,1672319005),(76943,8,82576,3,1672319005),(76944,8,82577,3,1672319005),(76945,8,82578,3,1672319005),(76946,8,82579,3,1672319005),(76947,8,82580,3,1672319005),(76948,8,82581,3,1672319005),(76949,8,82582,3,1672319005),(76950,8,82583,3,1672319005),(76951,8,82584,3,1672319005),(76952,8,82585,3,1672319005),(76953,8,82586,3,1672319005),(76954,8,82587,3,1672319005),(76955,8,82588,3,1672319005),(76956,8,82589,3,1672319005),(76957,8,82590,3,1672319005),(76958,8,82591,3,1672319005),(76959,8,82592,3,1672319005),(76960,8,82593,3,1672319005),(76961,8,82594,3,1672319005),(76962,8,82595,3,1672319005),(76963,8,82596,3,1672319005),(76964,8,82597,3,1672319005),(76965,8,82598,3,1672319005),(76966,8,82599,3,1672319005),(76967,8,82600,3,1672319005),(76968,8,82601,3,1672319005),(76969,8,82602,3,1672319005),(76970,8,82603,3,1672319005),(76971,8,82604,3,1672319005),(76972,8,82605,3,1672319005),(76973,8,82606,3,1672319005),(76974,8,82607,3,1672319005),(76975,8,82608,3,1672319005),(76976,8,82609,3,1672319005),(76977,8,82610,3,1672319005),(76978,8,82611,3,1672319005),(76979,8,82612,3,1672319005),(76980,8,82613,3,1672319005),(76981,8,82614,3,1672319005),(76982,8,82615,3,1672319005),(76983,8,82616,3,1672319005),(76984,8,82617,3,1672319005),(76985,8,82618,3,1672319005),(76986,8,82619,3,1672319005),(76987,8,82620,3,1672319005),(76988,8,82621,3,1672319005),(76989,8,82622,3,1672319005),(76990,8,82623,3,1672319005),(76991,8,82624,3,1672319005),(76992,8,82625,3,1672319005),(76993,8,82626,3,1672319005),(76994,8,82627,3,1672319005),(76995,8,82628,3,1672319005),(76996,8,82629,3,1672319005),(76997,8,82630,3,1672319005),(76998,8,82631,3,1672319005),(76999,8,82632,3,1672319005),(77000,8,82633,3,1672319005),(77001,8,82634,3,1672319005),(77002,8,82635,3,1672319005),(77003,8,82636,3,1672319005),(77004,8,82637,3,1672319005),(77005,8,82638,3,1672319005),(77006,8,82639,3,1672319005),(77007,8,82640,3,1672319005),(77008,8,82641,3,1672319005),(77009,8,82642,3,1672319005),(77010,8,82643,3,1672319005),(77011,8,82644,3,1672319005),(77012,8,82645,3,1672319005),(77013,8,82646,3,1672319005),(77014,8,82647,3,1672319005),(77015,8,82648,3,1672319005),(77016,8,82649,3,1672319005),(77017,8,82650,3,1672319005),(77018,8,82651,3,1672319005),(77019,8,82652,3,1672319005),(77020,8,82653,3,1672319005),(77021,8,82654,3,1672319005),(77022,8,82655,3,1672319005),(77023,8,82656,3,1672319005),(77024,8,82657,3,1672319005),(77025,8,82658,3,1672319005),(77026,8,82659,3,1672319005),(77027,8,82660,3,1672319005),(77028,8,82661,3,1672319005),(77029,8,82662,3,1672319005),(77030,8,82663,3,1672319005),(77031,8,82664,3,1672319005),(77032,8,82665,3,1672319005),(77033,8,82666,3,1672319005),(77034,8,82667,3,1672319005),(77035,8,82668,3,1672319005),(77036,8,82669,3,1672319005),(77037,8,82670,3,1672319005),(77038,8,82671,3,1672319005),(77039,8,82672,3,1672319005),(77040,8,82673,3,1672319005),(77041,8,82674,3,1672319005),(77042,8,82675,3,1672319005),(77043,8,82676,3,1672319005),(77044,8,82677,3,1672319005),(77045,8,82678,3,1672319005),(77046,8,82679,3,1672319005),(77047,8,82680,3,1672319005),(77048,8,82681,3,1672319005),(77049,8,82682,3,1672319005),(77050,8,82683,3,1672319005),(77051,8,82685,3,1672319005),(77052,8,82686,3,1672319005),(77053,8,82687,3,1672319005),(77054,8,82688,3,1672319005),(77055,8,82689,3,1672319005),(77056,8,82690,3,1672319005),(77057,8,82691,3,1672319005),(77058,8,82692,3,1672319005),(77059,8,82693,3,1672319005),(77060,8,82694,3,1672319005),(77061,8,82695,3,1672319005),(77062,8,82696,3,1672319005),(77063,8,82697,3,1672319005),(77064,8,82698,3,1672319005),(77065,8,82699,3,1672319005),(77066,8,82700,3,1672319005),(77067,8,82701,3,1672319005),(77068,8,82702,3,1672319005),(77069,8,82703,3,1672319005),(77070,8,82704,3,1672319005),(77071,8,82705,3,1672319005),(77072,8,82706,3,1672319005),(77073,8,82707,3,1672319005),(77074,8,82708,3,1672319005),(77075,8,82709,3,1672319005),(77076,8,82710,3,1672319005),(77077,8,82711,3,1672319005),(77078,8,82712,3,1672319005),(77079,8,82713,3,1672319005),(77080,8,82714,3,1672319005),(77081,8,82715,3,1672319005),(77082,8,82716,3,1672319005),(77083,8,82717,3,1672319005),(77084,8,82718,3,1672319005),(77085,8,82719,3,1672319005),(77086,8,82720,3,1672319005),(77087,8,82721,3,1672319005),(77088,8,82722,3,1672319005),(77089,8,82723,3,1672319005),(77090,8,82724,3,1672319005),(77091,8,82725,3,1672319005),(77092,8,82726,3,1672319005),(77093,8,82727,3,1672319005),(77094,8,82728,3,1672319005),(77095,8,82729,3,1672319005),(77096,8,82730,3,1672319005),(77097,8,82731,3,1672319005),(77098,8,82732,3,1672319005),(77099,8,82733,3,1672319005),(77100,8,82734,3,1672319005),(77101,8,82735,3,1672319005),(77102,8,82736,3,1672319005),(77103,8,82737,3,1672319005),(77104,8,82738,3,1672319005),(77105,8,82739,3,1672319005),(77106,8,82740,3,1672319005),(77107,8,82741,3,1672319005),(77108,8,82742,3,1672319005),(77109,8,82743,3,1672319005),(77110,8,82744,3,1672319005),(77111,8,82745,3,1672319005),(77112,8,82746,3,1672319005),(77113,8,82747,3,1672319005),(77114,8,82748,3,1672319005),(77115,8,82749,3,1672319005),(77116,8,82750,3,1672319005),(77117,8,82751,3,1672319005),(77118,8,82752,3,1672319005),(77119,8,82753,3,1672319005),(77120,8,82754,3,1672319005),(77121,8,82755,3,1672319005),(77122,8,82756,3,1672319005),(77123,8,82757,3,1672319005),(77124,8,82758,3,1672319005),(77125,8,82759,3,1672319005),(77126,8,82760,3,1672319005),(77127,8,82761,3,1672319005),(77128,8,82762,3,1672319005),(77129,8,82763,3,1672319005),(77130,8,82764,3,1672319005),(77131,8,82765,3,1672319005),(77132,8,82766,3,1672319005),(77133,8,82767,3,1672319005),(77134,8,82768,3,1672319005),(77135,8,82769,3,1672319005),(77136,8,82770,3,1672319005),(77137,8,82771,3,1672319005),(77138,8,82772,3,1672319005),(77139,8,82773,3,1672319005),(77140,8,82774,3,1672319005),(77141,8,82775,3,1672319005),(77142,8,82776,3,1672319005),(77143,8,82777,3,1672319005),(77144,8,82778,3,1672319005),(77145,8,82779,3,1672319005),(77146,8,82780,3,1672319005),(77147,8,82781,3,1672319005),(77148,8,82782,3,1672319005),(77149,8,82783,3,1672319005),(77150,8,82784,3,1672319005),(77151,8,82785,3,1672319005),(77152,8,82786,3,1672319005),(77153,8,82787,3,1672319005),(77154,8,82788,3,1672319005),(77155,8,82789,3,1672319005),(77156,8,82790,3,1672319005),(77157,8,82791,3,1672319005),(77158,8,82792,3,1672319005),(77159,8,82793,3,1672319005),(77160,8,82794,3,1672319005),(77161,8,82795,3,1672319005),(77162,8,82796,3,1672319005),(77163,8,82797,3,1672319005),(77164,8,82798,3,1672319005),(77165,8,82799,3,1672319005),(77166,8,82800,3,1672319005),(77167,8,82801,3,1672319005),(77168,8,82802,3,1672319005),(77169,8,82803,3,1672319005),(77170,8,82804,3,1672319005),(77171,8,82805,3,1672319005),(77172,8,82806,3,1672319005),(77173,8,82807,3,1672319005),(77174,8,82808,3,1672319005),(77175,8,82809,3,1672319005),(77176,8,82810,3,1672319005),(77177,8,82811,3,1672319005),(77178,8,82812,3,1672319005),(77179,8,82813,3,1672319005),(77180,8,82814,3,1672319005),(77181,8,82815,3,1672319005),(77182,8,82816,3,1672319005),(77183,8,82817,3,1672319005),(77184,8,82818,3,1672319005),(77185,8,82819,3,1672319005),(77186,8,82820,3,1672319005),(77187,8,82821,3,1672319005),(77188,8,82822,3,1672319005),(77189,8,82823,3,1672319005),(77190,8,82824,3,1672319005),(77191,8,82825,3,1672319005),(77192,8,82826,3,1672319005),(77193,8,82827,3,1672319005),(77194,8,82828,3,1672319005),(77195,8,82829,3,1672319005),(77196,8,82830,3,1672319005),(77197,8,82831,3,1672319005),(77198,8,82832,3,1672319005),(77199,8,82833,3,1672319005),(77200,8,82834,3,1672319005),(77201,8,82835,3,1672319005),(77202,8,82836,3,1672319005),(77203,8,82837,3,1672319005),(77204,8,82838,3,1672319005),(77205,8,82839,3,1672319005),(77206,8,82840,3,1672319005),(77207,8,82841,3,1672319005),(77208,8,82842,3,1672319005),(77209,8,82843,3,1672319005),(77210,8,82844,3,1672319005),(77211,8,82845,3,1672319005),(77212,8,82846,3,1672319005),(77213,8,82847,3,1672319005),(77214,8,82848,3,1672319005),(77215,8,82849,3,1672319005),(77216,8,82850,3,1672319005),(77217,8,82851,3,1672319005),(77218,8,82852,3,1672319005),(77219,8,82853,3,1672319005),(77220,8,82854,3,1672319005),(77221,8,82855,3,1672319005),(77222,8,82856,3,1672319005),(77223,8,82857,3,1672319005),(77224,8,82858,3,1672319005),(77225,8,82859,3,1672319005),(77226,8,82860,3,1672319005),(77227,8,82861,3,1672319005),(77228,8,82862,3,1672319005),(77229,8,82863,3,1672319005),(77230,8,82864,3,1672319005),(77231,8,82865,3,1672319005),(77232,8,82866,3,1672319005),(77233,8,82867,3,1672319005),(77234,8,82868,3,1672319005),(77235,8,82869,3,1672319005),(77236,8,82870,3,1672319005),(77237,8,82871,3,1672319005),(77238,8,82872,3,1672319005),(77239,8,82873,3,1672319005),(77240,8,82874,3,1672319005),(77241,8,82875,3,1672319005),(77242,8,82876,3,1672319005),(77243,8,82877,3,1672319005),(77244,8,82878,3,1672319005),(77245,8,82879,3,1672319005),(77246,8,82880,3,1672319005),(77247,8,82881,3,1672319005),(77248,8,82882,3,1672319005),(77249,8,82883,3,1672319005),(77250,8,82884,3,1672319005),(77251,8,82885,3,1672319005),(77252,8,82886,3,1672319005),(77253,8,82887,3,1672319005),(77254,8,82888,3,1672319005),(77255,8,82889,3,1672319005),(77256,8,82890,3,1672319005),(77257,8,82891,3,1672319005),(77258,8,82892,3,1672319005),(77259,8,82893,3,1672319005),(77260,8,82894,3,1672319005),(77261,8,82895,3,1672319005),(77262,8,82896,3,1672319005),(77263,8,82897,3,1672319005),(77264,8,82898,3,1672319005),(77265,8,82900,3,1672319005),(77266,8,82901,3,1672319005),(77267,8,82902,3,1672319005),(77268,8,82903,3,1672319005),(77269,8,82904,3,1672319005),(77270,8,82906,3,1672319005),(77271,8,82907,3,1672319005),(77272,8,82908,3,1672319005),(77273,8,82909,3,1672319005),(77274,8,82910,3,1672319005),(77275,8,82911,3,1672319005),(77276,8,82912,3,1672319005),(77277,8,82913,3,1672319005),(77278,8,82914,3,1672319005),(77279,8,82915,3,1672319005),(77280,8,82916,3,1672319005),(77281,8,82917,3,1672319005),(77282,8,82918,3,1672319005),(77283,8,82919,3,1672319005),(77284,8,82920,3,1672319005),(77285,8,82921,3,1672319005),(77286,8,82922,3,1672319005),(77287,8,82923,3,1672319005),(77288,8,82924,3,1672319005),(77289,8,82925,3,1672319005),(77290,8,82926,3,1672319005),(77291,8,82927,3,1672319005),(77292,8,82928,3,1672319005),(77293,8,82929,3,1672319005),(77294,8,82930,3,1672319005),(77295,8,82931,3,1672319005),(77296,8,82932,3,1672319005),(77297,8,82933,3,1672319005),(77298,8,82934,3,1672319005),(77299,8,82935,3,1672319005),(77300,8,82936,3,1672319005),(77301,8,82937,3,1672319005),(77302,8,82938,3,1672319005),(77303,8,82939,3,1672319005),(77304,8,82940,3,1672319005),(77305,8,82941,3,1672319005),(77306,8,82942,3,1672319005),(77307,8,82943,3,1672319005),(77308,8,82944,3,1672319005),(77309,8,82945,3,1672319005),(77310,8,82946,3,1672319005),(77311,8,82947,3,1672319005),(77312,8,82948,3,1672319005),(77313,8,82949,3,1672319005),(77314,8,82950,3,1672319005),(77315,8,82951,3,1672319005),(77316,8,82952,3,1672319005),(77317,8,82953,3,1672319005),(77318,8,82954,3,1672319005),(77319,8,82955,3,1672319005),(77320,8,82956,3,1672319005),(77321,8,82957,3,1672319005),(77322,8,82958,3,1672319005),(77323,8,82959,3,1672319005),(77324,8,82960,3,1672319005),(77325,8,82961,3,1672319005),(77326,8,82962,3,1672319005),(77327,8,82963,3,1672319005),(77328,8,82964,3,1672319005),(77329,8,82965,3,1672319005),(77330,8,82966,3,1672319005),(77331,8,82967,3,1672319005),(77332,8,82968,3,1672319005),(77333,8,82969,3,1672319005),(77334,8,82970,3,1672319005),(77335,8,82971,3,1672319005),(77336,8,82972,3,1672319005),(77337,8,82973,3,1672319005),(77338,8,82974,3,1672319005),(77339,8,82975,3,1672319005),(77340,8,82976,3,1672319005),(77341,8,82977,3,1672319005),(77342,8,82978,3,1672319005),(77343,8,82979,3,1672319005),(77344,8,82980,3,1672319005),(77345,8,82981,3,1672319005),(77346,8,82982,3,1672319005),(77347,8,82983,3,1672319005),(77348,8,82984,3,1672319005),(77349,8,82985,3,1672319005),(77350,8,82986,3,1672319005),(77351,8,82987,3,1672319005),(77352,8,82988,3,1672319005),(77353,8,82989,3,1672319005),(77354,8,82990,3,1672319005),(77355,8,82991,3,1672319005),(77356,8,82992,3,1672319005),(77357,8,82993,3,1672319005),(77358,8,82994,3,1672319005),(77359,8,82995,3,1672319005),(77360,8,82996,3,1672319005),(77361,8,82997,3,1672319005),(77362,8,82998,3,1672319005),(77363,8,82999,3,1672319005),(77364,8,83000,3,1672319005),(77365,8,83001,3,1672319005),(77366,8,83002,3,1672319005),(77367,8,83003,3,1672319005),(77368,8,83004,3,1672319005),(77369,8,83005,3,1672319005),(77370,8,83006,3,1672319005),(77371,8,83007,3,1672319005),(77372,8,83008,3,1672319005),(77373,8,83009,3,1672319005),(77374,8,83010,3,1672319005),(77375,8,83011,3,1672319005),(77376,8,83012,3,1672319005),(77377,8,83013,3,1672319005),(77378,8,83014,3,1672319005),(77379,8,83015,3,1672319005),(77380,8,83016,3,1672319005),(77381,8,83017,3,1672319005),(77382,8,83018,3,1672319005),(77383,8,83019,3,1672319005),(77384,8,83020,3,1672319005),(77385,8,83021,3,1672319005),(77386,8,83022,3,1672319005),(77387,8,83023,3,1672319005),(77388,8,83024,3,1672319005),(77389,8,83025,3,1672319005),(77390,8,83026,3,1672319005),(77391,8,83027,3,1672319005),(77392,8,83028,3,1672319005),(77393,8,83029,3,1672319005),(77394,8,83030,3,1672319005),(77395,8,83031,3,1672319005),(77396,8,83032,3,1672319005),(77397,8,83033,3,1672319005),(77398,8,83034,3,1672319005),(77399,8,83035,3,1672319005),(77400,8,83036,3,1672319005),(77401,8,83037,3,1672319005),(77402,8,83038,3,1672319005),(77403,8,83039,3,1672319005),(77404,8,83040,3,1672319005),(77405,8,83041,3,1672319005),(77406,8,83042,3,1672319005),(77407,8,83043,3,1672319005),(77408,8,83044,3,1672319005),(77409,8,83045,3,1672319005),(77410,8,83046,3,1672319005),(77411,8,83047,3,1672319005),(77412,8,83048,3,1672319005),(77413,8,83049,3,1672319005),(77414,8,83050,3,1672319005),(77415,8,83051,3,1672319005),(77416,8,83052,3,1672319005),(77417,8,83053,3,1672319005),(77418,8,83054,3,1672319005),(77419,8,83055,3,1672319005),(77420,8,83056,3,1672319005),(77421,8,83057,3,1672319005),(77422,8,83058,3,1672319005),(77423,8,83059,3,1672319005),(77424,8,83060,3,1672319005),(77425,8,83061,3,1672319005),(77426,8,83062,3,1672319005),(77427,8,83063,3,1672319005),(77428,8,83064,3,1672319005),(77429,8,83065,3,1672319005),(77430,8,83066,3,1672319005),(77431,8,83067,3,1672319005),(77432,8,83068,3,1672319005),(77433,8,83069,3,1672319005),(77434,8,83070,3,1672319005),(77435,8,83071,3,1672319005),(77436,8,83072,3,1672319005),(77437,8,83073,3,1672319005),(77438,8,83074,3,1672319005),(77439,8,83075,3,1672319005),(77440,8,83076,3,1672319005),(77441,8,83077,3,1672319005),(77442,8,83078,3,1672319005),(77443,8,83079,3,1672319005),(77444,8,83080,3,1672319005),(77445,8,83081,3,1672319005),(77446,8,83082,3,1672319005),(77447,8,83083,3,1672319005),(77448,8,83084,3,1672319005),(77449,8,83085,3,1672319005),(77450,8,83086,3,1672319005),(77451,8,83087,3,1672319005),(77452,8,83088,3,1672319005),(77453,8,83089,3,1672319005),(77454,8,83090,3,1672319005),(77455,8,83091,3,1672319005),(77456,8,83092,3,1672319005),(77457,8,83093,3,1672319005),(77458,8,83094,3,1672319005),(77459,8,83095,3,1672319005),(77460,8,83096,3,1672319005),(77461,8,83097,3,1672319005),(77462,8,83098,3,1672319005),(77463,8,83099,3,1672319005),(77464,8,83100,3,1672319005),(77465,8,83101,3,1672319005),(77466,8,83102,3,1672319005),(77467,8,83103,3,1672319005),(77468,8,83104,3,1672319005),(77469,8,83105,3,1672319005),(77470,8,83106,3,1672319005),(77471,8,83107,3,1672319005),(77472,8,83108,3,1672319005),(77473,8,83109,3,1672319005),(77474,8,83110,3,1672319005),(77475,8,83111,3,1672319005),(77476,8,83112,3,1672319005),(77477,8,83113,3,1672319005),(77478,8,83114,3,1672319005),(77479,8,83115,3,1672319005),(77480,8,83116,3,1672319005),(77481,8,83117,3,1672319005),(77482,8,83118,3,1672319005),(77483,8,83119,3,1672319005),(77484,8,83120,3,1672319005),(77485,8,83121,3,1672319005),(77486,8,83122,3,1672319005),(77487,8,83123,3,1672319005),(77488,8,83124,3,1672319005),(77489,8,83125,3,1672319005),(77490,8,83126,3,1672319005),(77491,8,83127,3,1672319005),(77492,8,83128,3,1672319005),(77493,8,83129,3,1672319005),(77494,8,83130,3,1672319005),(77495,8,83131,3,1672319005),(77496,8,83132,3,1672319005),(77497,8,83133,3,1672319005),(77498,8,83134,3,1672319005),(77499,8,83135,3,1672319005),(77500,8,83136,3,1672319005),(77501,8,83137,3,1672319005),(77502,8,83138,3,1672319005),(77503,8,83139,3,1672319005),(77504,8,83140,3,1672319005),(77505,8,83141,3,1672319005),(77506,8,83142,3,1672319005),(77507,8,83143,3,1672319005),(77508,8,83144,3,1672319005),(77509,8,83145,3,1672319005),(77510,8,83146,3,1672319005),(77511,8,83147,3,1672319005),(77512,8,83148,3,1672319005),(77513,8,83149,3,1672319005),(77514,8,83150,3,1672319005),(77515,8,83151,3,1672319005),(77516,8,83152,3,1672319005),(77517,8,83153,3,1672319005),(77518,8,83154,3,1672319005),(77519,8,83155,3,1672319005),(77520,8,83156,3,1672319005),(77521,8,83157,3,1672319005),(77522,8,83158,3,1672319005),(77523,8,83159,3,1672319005),(77524,8,83160,3,1672319005),(77525,8,83161,3,1672319005),(77526,8,83162,3,1672319005),(77527,8,83163,3,1672319005),(77528,8,83164,3,1672319005),(77529,8,83165,3,1672319005),(77530,8,83166,3,1672319005),(77531,8,83167,3,1672319005),(77532,8,83168,3,1672319005),(77533,8,83169,3,1672319005),(77534,8,83170,3,1672319005),(77535,8,83171,3,1672319005),(77536,8,83172,3,1672319005),(77537,8,83173,3,1672319005),(77538,8,83174,3,1672319005),(77539,8,83175,3,1672319005),(77540,8,83176,3,1672319005),(77541,8,83177,3,1672319005),(77542,8,83178,3,1672319005),(77543,8,83179,3,1672319005),(77544,8,83180,3,1672319005),(77545,8,83181,3,1672319005),(77546,8,83182,3,1672319005),(77547,8,83183,3,1672319005),(77548,8,83184,3,1672319005),(77549,8,83185,3,1672319005),(77550,8,83186,3,1672319005),(77551,8,83187,3,1672319005),(77552,8,83188,3,1672319005),(77553,8,83189,3,1672319005),(77554,8,83190,3,1672319005),(77555,8,83191,3,1672319005),(77556,8,83192,3,1672319005),(77557,8,83193,3,1672319005),(77558,8,83194,3,1672319005),(77559,8,83195,3,1672319005),(77560,8,83196,3,1672319005),(77561,8,83197,3,1672319005),(77562,8,83198,3,1672319005),(77563,8,83199,3,1672319005),(77564,8,83200,3,1672319005),(77565,8,83201,3,1672319005),(77566,8,83202,3,1672319005),(77567,8,83203,3,1672319005),(77568,8,83204,3,1672319005),(77569,8,83205,3,1672319005),(77570,8,83206,3,1672319005),(77571,8,83207,3,1672319005),(77572,8,83208,3,1672319005),(77573,8,83209,3,1672319005),(77574,8,83210,3,1672319005),(77575,8,83211,3,1672319005),(77576,8,83212,3,1672319005),(77577,8,83213,3,1672319005),(77578,8,83214,3,1672319005),(77579,8,83215,3,1672319005),(77580,8,83216,3,1672319005),(77581,8,83217,3,1672319005),(77582,8,83218,3,1672319005),(77583,8,83219,3,1672319005),(77584,8,83220,3,1672319005),(77585,8,83221,3,1672319005),(77586,8,83222,3,1672319005),(77587,8,83223,3,1672319005),(77588,8,83224,3,1672319005),(77589,8,83225,3,1672319005),(77590,8,83226,3,1672319005),(77591,8,83227,3,1672319005),(77592,8,83228,3,1672319005),(77593,8,83229,3,1672319005),(77594,8,83230,3,1672319005),(77595,8,83231,3,1672319005),(77596,8,83232,3,1672319005),(77597,8,83233,3,1672319005),(77598,8,83234,3,1672319005),(77599,8,83235,3,1672319005),(77600,8,83236,3,1672319005),(77601,8,83237,3,1672319005),(77602,8,83238,3,1672319005),(77603,8,83239,3,1672319005),(77604,8,83240,3,1672319005),(77605,8,83241,3,1672319005),(77606,8,83242,3,1672319005),(77607,8,83243,3,1672319005),(77608,8,83244,3,1672319005),(77609,8,83245,3,1672319005),(77610,8,83246,3,1672319005),(77611,8,83247,3,1672319005),(77612,8,83248,3,1672319005),(77613,8,83249,3,1672319005),(77614,8,83250,3,1672319005),(77615,8,83251,3,1672319005),(77616,8,83252,3,1672319005),(77617,8,83253,3,1672319005),(77618,8,83254,3,1672319005),(77619,8,83255,3,1672319005),(77620,8,83256,3,1672319005),(77621,8,83257,3,1672319005),(77622,8,83258,3,1672319005),(77623,8,83259,3,1672319005),(77624,8,83260,3,1672319005),(77625,8,83261,3,1672319005),(77626,8,83262,3,1672319005),(77627,8,83263,3,1672319005),(77628,8,83264,3,1672319005),(77629,8,83265,3,1672319005),(77630,8,83266,3,1672319005),(77631,8,83267,3,1672319005),(77632,8,83268,3,1672319005),(77633,8,83269,3,1672319005),(77634,8,83270,3,1672319005),(77635,8,83271,3,1672319005),(77636,8,83272,3,1672319005),(77637,8,83273,3,1672319005),(77638,8,83274,3,1672319005),(77639,8,83275,3,1672319005),(77640,8,83276,3,1672319005),(77641,8,83277,3,1672319005),(77642,8,83278,3,1672319005),(77643,8,83279,3,1672319005),(77644,8,83280,3,1672319005),(77645,8,83281,3,1672319005),(77646,8,83282,3,1672319005),(77647,8,83283,3,1672319005),(77648,8,83284,3,1672319005),(77649,8,83285,3,1672319005),(77650,8,83286,3,1672319005),(77651,8,83287,3,1672319005),(77652,8,83288,3,1672319005),(77653,8,83289,3,1672319005),(77654,8,83290,3,1672319005),(77655,8,83291,3,1672319005),(77656,8,83292,3,1672319005),(77657,8,83293,3,1672319005),(77658,8,83294,3,1672319005),(77659,8,83295,3,1672319005),(77660,8,83296,3,1672319005),(77661,8,83297,3,1672319005),(77662,8,83298,3,1672319005),(77663,8,83299,3,1672319005),(77664,8,83300,3,1672319005),(77665,8,83301,3,1672319005),(77666,8,83302,3,1672319005),(77667,8,83303,3,1672319005),(77668,8,83304,3,1672319005),(77669,8,83305,3,1672319005),(77670,8,83306,3,1672319005),(77671,8,83307,3,1672319005),(77672,8,83308,3,1672319005),(77673,8,83309,3,1672319005),(77674,8,83310,3,1672319005),(77675,8,83311,3,1672319005),(77676,8,83312,3,1672319005),(77677,8,83313,3,1672319005),(77678,8,83314,3,1672319005),(77679,8,83315,3,1672319005),(77680,8,83316,3,1672319005),(77681,8,83317,3,1672319005),(77682,8,83318,3,1672319005),(77683,8,83319,3,1672319005),(77684,8,83320,3,1672319005),(77685,8,83321,3,1672319005),(77686,8,83322,3,1672319005),(77687,8,83323,3,1672319005),(77688,8,83324,3,1672319005),(77689,8,83325,3,1672319005),(77690,8,83326,3,1672319005),(77691,8,83327,3,1672319005),(77692,8,83328,3,1672319005),(77693,8,83329,3,1672319005),(77694,8,83330,3,1672319005),(77695,8,83331,3,1672319005),(77696,8,83332,3,1672319005),(77697,8,83333,3,1672319005),(77698,8,83334,3,1672319005),(77699,8,83335,3,1672319005),(77700,8,83336,3,1672319005),(77701,8,83337,3,1672319005),(77702,8,83338,3,1672319005),(77703,8,83339,3,1672319005),(77704,8,83340,3,1672319005),(77705,8,83341,3,1672319005),(77706,8,83342,3,1672319005),(77707,8,83343,3,1672319005),(77708,8,83344,3,1672319005),(77709,8,83345,3,1672319005),(77710,8,83346,3,1672319005),(77711,8,83347,3,1672319005),(77712,8,83348,3,1672319005),(77713,8,83349,3,1672319005),(77714,8,83350,3,1672319005),(77715,8,83351,3,1672319005),(77716,8,83352,3,1672319005),(77717,8,83353,3,1672319005),(77718,8,83354,3,1672319005),(77719,8,83355,3,1672319005),(77720,8,83356,3,1672319005),(77721,8,83357,3,1672319005),(77722,8,83358,3,1672319005),(77723,8,83359,3,1672319005),(77724,8,83360,3,1672319005),(77725,8,83361,3,1672319005),(77726,8,83362,3,1672319005),(77727,8,83363,3,1672319005),(77728,8,83364,3,1672319005),(77729,8,83365,3,1672319005),(77730,8,83366,3,1672319005),(77731,8,83367,3,1672319005),(77732,8,83368,3,1672319005),(77733,8,83369,3,1672319005),(77734,8,83370,3,1672319005),(77735,8,83371,3,1672319005),(77736,8,83372,3,1672319005),(77737,8,83373,3,1672319005),(77738,8,83374,3,1672319005),(77739,8,83375,3,1672319005),(77740,8,83376,3,1672319005),(77741,8,83377,3,1672319005),(77742,8,83378,3,1672319005),(77743,8,83379,3,1672319005),(77744,8,83380,3,1672319005),(77745,8,83381,3,1672319005),(77746,8,83382,3,1672319005),(77747,8,83383,3,1672319005),(77748,8,83384,3,1672319005),(77749,8,83385,3,1672319005),(77750,8,83386,3,1672319005),(77751,8,83387,3,1672319005),(77752,8,83388,3,1672319005),(77753,8,83389,3,1672319005),(77754,8,83390,3,1672319005),(77755,8,83391,3,1672319005),(77756,8,83392,3,1672319005),(77757,8,83393,3,1672319005),(77758,8,83394,3,1672319005),(77759,8,83395,3,1672319005),(77760,8,83396,3,1672319005),(77761,8,83397,3,1672319005),(77762,8,83398,3,1672319005),(77763,8,83399,3,1672319005),(77764,8,83400,3,1672319005),(77765,8,83401,3,1672319005),(77766,8,83402,3,1672319005),(77767,8,83403,3,1672319005),(77768,8,83404,3,1672319005),(77769,8,83405,3,1672319005),(77770,8,83406,3,1672319005),(77771,8,83407,3,1672319005),(77772,8,83408,3,1672319005),(77773,8,83409,3,1672319005),(77774,8,83410,3,1672319005),(77775,8,83411,3,1672319005),(77776,8,83412,3,1672319005),(77777,8,83413,3,1672319005),(77778,8,83414,3,1672319005),(77779,8,83415,3,1672319005),(77780,8,83416,3,1672319005),(77781,8,83417,3,1672319005),(77782,8,83418,3,1672319005),(77783,8,83419,3,1672319005),(77784,8,83420,3,1672319005),(77785,8,83421,3,1672319005),(77786,8,83422,3,1672319005),(77787,8,83423,3,1672319005),(77788,8,83424,3,1672319005),(77789,8,83425,3,1672319005),(77790,8,83426,3,1672319005),(77791,8,83427,3,1672319005),(77792,8,83428,3,1672319005),(77793,8,83429,3,1672319005),(77794,8,83430,3,1672319005),(77795,8,83431,3,1672319005),(77796,8,83432,3,1672319005),(77797,8,83433,3,1672319005),(77798,8,83434,3,1672319005),(77799,8,83435,3,1672319005),(77800,8,83436,3,1672319005),(77801,8,83437,3,1672319005),(77802,8,83438,3,1672319005),(77803,8,83439,3,1672319005),(77804,8,83440,3,1672319005),(77805,8,83441,3,1672319005),(77806,8,83442,3,1672319005),(77807,8,83443,3,1672319005),(77808,8,83444,3,1672319005),(77809,8,83445,3,1672319005),(77810,8,83446,3,1672319005),(77811,8,83447,3,1672319005),(77812,8,83448,3,1672319005),(77813,8,83449,3,1672319005),(77814,8,83450,3,1672319005),(77815,8,83451,3,1672319005),(77816,8,83452,3,1672319005),(77817,8,83453,3,1672319005),(77818,8,83454,3,1672319005),(77819,8,83455,3,1672319005),(77820,8,83456,3,1672319005),(77821,8,83457,3,1672319005),(77822,8,83458,3,1672319005),(77823,8,83459,3,1672319005),(77824,8,83460,3,1672319005),(77825,8,83461,3,1672319005),(77826,8,83462,3,1672319005),(77827,8,83463,3,1672319005),(77828,8,83464,3,1672319005),(77829,8,83465,3,1672319005),(77830,8,83466,3,1672319005),(77831,8,83467,3,1672319005),(77832,8,83468,3,1672319005),(77833,8,83469,3,1672319005),(77834,8,83470,3,1672319005),(77835,8,83471,3,1672319005),(77836,8,83472,3,1672319005),(77837,8,83473,3,1672319005),(77838,8,83474,3,1672319005),(77839,8,83475,3,1672319005),(77840,8,83476,3,1672319005),(77841,8,83477,3,1672319005),(77842,8,83478,3,1672319005),(77843,8,83479,3,1672319005),(77844,8,83480,3,1672319005),(77845,8,83481,3,1672319005),(77846,8,83482,3,1672319005),(77847,8,83483,3,1672319005),(77848,8,83484,3,1672319005),(77849,8,83485,3,1672319005),(77850,8,83486,3,1672319005),(77851,8,83487,3,1672319005),(77852,8,83488,3,1672319005),(77853,8,83489,3,1672319005),(77854,8,83490,3,1672319005),(77855,8,83491,3,1672319005),(77856,8,83492,3,1672319005),(77857,8,83493,3,1672319005),(77858,8,83494,3,1672319005),(77859,8,83495,3,1672319005),(77860,8,83496,3,1672319005),(77861,8,83497,3,1672319005),(77862,8,83498,3,1672319005),(77863,8,83499,3,1672319005),(77864,8,83500,3,1672319005),(77865,8,83501,3,1672319005),(77866,8,83502,3,1672319005),(77867,8,83503,3,1672319005),(77868,8,83504,3,1672319005),(77869,8,83505,3,1672319005),(77870,8,83506,3,1672319005),(77871,8,83507,3,1672319005),(77872,8,83508,3,1672319005),(77873,8,83509,3,1672319005),(77874,8,83510,3,1672319005),(77875,8,83511,3,1672319005),(77876,8,83512,3,1672319005),(77877,8,83513,3,1672319005),(77878,8,83514,3,1672319005),(77879,8,83515,3,1672319005),(77880,8,83516,3,1672319005),(77881,8,83517,3,1672319005),(77882,8,83518,3,1672319005),(77883,8,83519,3,1672319005),(77884,8,83520,3,1672319005),(77885,8,83521,3,1672319005),(77886,8,83522,3,1672319005),(77887,8,83523,3,1672319005),(77888,8,83524,3,1672319005),(77889,8,83525,3,1672319005),(77890,8,83526,3,1672319005),(77891,8,83527,3,1672319005),(77892,8,83528,3,1672319005),(77893,8,83529,3,1672319005),(77894,8,83530,3,1672319005),(77895,8,83531,3,1672319005),(77896,8,83532,3,1672319005),(77897,8,83533,3,1672319005),(77898,8,83534,3,1672319005),(77899,8,83535,3,1672319005),(77900,8,83536,3,1672319005),(77901,8,83537,3,1672319005),(77902,8,83538,3,1672319005),(77903,8,83539,3,1672319005),(77904,8,83540,3,1672319005),(77905,8,83541,3,1672319005),(77906,8,83542,3,1672319005),(77907,8,83543,3,1672319005),(77908,8,83544,3,1672319005),(77909,8,83545,3,1672319005),(77910,8,83546,3,1672319005),(77911,8,83547,3,1672319005),(77912,8,83548,3,1672319005),(77913,8,83549,3,1672319005),(77914,8,83550,3,1672319005),(77915,8,83551,3,1672319005),(77916,8,83552,3,1672319005),(77917,8,83553,3,1672319005),(77918,8,83554,3,1672319005),(77919,8,83555,3,1672319005),(77920,8,83556,3,1672319005),(77921,8,83557,3,1672319005),(77922,8,83558,3,1672319005),(77923,8,83559,3,1672319005),(77924,8,83560,3,1672319005),(77925,8,83561,3,1672319005),(77926,8,83562,3,1672319005),(77927,8,83563,3,1672319005),(77928,8,83564,3,1672319005),(77929,8,83565,3,1672319005),(77930,8,83566,3,1672319005),(77931,8,83567,3,1672319005),(77932,8,83568,3,1672319005),(77933,8,83569,3,1672319005),(77934,8,83623,3,1672319005),(77935,8,83624,3,1672319005),(77936,8,83625,3,1672319005),(77937,8,83626,3,1672319005),(77938,8,83627,3,1672319005),(77939,8,83628,3,1672319005),(77940,8,83629,3,1672319005),(77941,8,83630,3,1672319005),(77942,8,83631,3,1672319005),(77943,8,83632,3,1672319005),(77944,8,83633,3,1672319005),(77945,8,83634,3,1672319005),(77946,8,83635,3,1672319005),(77947,8,83636,3,1672319005),(77948,8,83637,3,1672319005),(77949,8,83638,3,1672319005),(77950,8,83639,3,1672319005),(77951,8,83640,3,1672319005),(77952,8,83641,3,1672319005),(77953,8,83642,3,1672319005),(77954,8,83643,3,1672319005),(77955,8,83644,3,1672319005),(77956,8,83645,3,1672319005),(77957,8,83646,3,1672319005),(77958,8,83647,3,1672319005),(77959,8,83648,3,1672319005),(77960,8,83649,3,1672319005),(77961,8,83650,3,1672319005),(77962,8,83651,3,1672319005),(77963,8,83652,3,1672319005),(77964,8,83653,3,1672319005),(77965,8,83654,3,1672319005),(77966,8,83655,3,1672319005),(77967,8,83656,3,1672319005),(77968,8,83657,3,1672319005),(77969,8,83658,3,1672319005),(77970,8,83659,3,1672319005),(77971,8,83660,3,1672319005),(77972,8,83661,3,1672319005),(77973,8,83662,3,1672319005),(77974,8,83663,3,1672319005),(77975,8,83664,3,1672319005),(77976,8,83665,3,1672319005),(77977,8,83666,3,1672319005),(77978,8,83667,3,1672319005),(77979,8,83668,3,1672319005),(77980,8,83669,3,1672319005),(77981,8,83670,3,1672319005),(77982,8,83671,3,1672319005),(77983,8,83672,3,1672319005),(77984,8,83673,3,1672319005),(77985,8,83674,3,1672319005),(77986,8,83675,3,1672319005),(77987,8,83676,3,1672319005),(77988,8,83677,3,1672319005),(77989,8,83678,3,1672319005),(77990,8,83679,3,1672319005),(77991,8,83680,3,1672319005),(77992,8,83681,3,1672319005),(77993,8,83682,3,1672319005),(77994,8,83683,3,1672319005),(77995,8,83684,3,1672319005),(77996,8,83685,3,1672319005),(77997,8,83686,3,1672319005),(77998,8,83687,3,1672319005),(77999,8,83688,3,1672319005),(78000,8,83689,3,1672319005),(78001,8,83690,3,1672319005),(78002,8,83691,3,1672319005),(78003,8,83692,3,1672319005),(78004,8,83693,3,1672319005),(78005,8,83694,3,1672319005),(78006,8,83695,3,1672319005),(78007,8,83696,3,1672319005),(78008,8,83697,3,1672319005),(78009,8,83698,3,1672319005),(78010,8,83699,3,1672319005),(78011,8,83700,3,1672319005),(78012,8,83701,3,1672319005),(78013,8,83702,3,1672319005),(78014,8,83703,3,1672319005),(78015,8,83704,3,1672319005),(78016,8,83705,3,1672319005),(78017,8,83706,3,1672319005),(78018,8,83707,3,1672319005),(78019,8,83708,3,1672319005),(78020,8,83709,3,1672319005),(78021,8,83710,3,1672319005),(78022,8,83711,3,1672319005),(78023,8,83712,3,1672319005),(78024,8,83713,3,1672319005),(78025,8,83714,3,1672319005),(78026,8,83715,3,1672319005),(78027,8,83716,3,1672319005),(78028,8,83717,3,1672319005),(78029,8,83718,3,1672319005),(78030,8,83719,3,1672319005),(78031,8,83720,3,1672319005),(78032,8,83721,3,1672319005),(78033,8,83722,3,1672319005),(78034,8,83723,3,1672319005),(78035,8,83724,3,1672319005),(78036,8,83725,3,1672319005),(78037,8,83726,3,1672319005),(78038,8,83727,3,1672319005),(78039,8,83728,3,1672319005),(78040,8,83729,3,1672319005),(78041,8,83730,3,1672319005),(78042,8,83731,3,1672319005),(78043,8,83732,3,1672319005),(78044,8,83733,3,1672319005),(78045,8,83734,3,1672319005),(78046,8,83735,3,1672319005),(78047,8,83736,3,1672319005),(78048,8,83737,3,1672319005),(78049,8,83738,3,1672319005),(78050,8,83739,3,1672319005),(78051,8,83740,3,1672319005),(78052,8,83741,3,1672319005),(78053,8,83742,3,1672319005),(78054,8,83743,3,1672319005),(78055,8,83744,3,1672319005),(78056,8,83745,3,1672319005),(78057,8,83746,3,1672319005),(78058,8,83747,3,1672319005),(78059,8,83748,3,1672319005),(78060,8,83749,3,1672319005),(78061,8,83750,3,1672319005),(78062,8,83751,3,1672319005),(78063,8,83752,3,1672319005),(78064,8,83753,3,1672319005),(78065,8,83754,3,1672319005),(78066,8,83755,3,1672319005),(78067,8,83756,3,1672319005),(78068,8,83757,3,1672319005),(78069,8,83758,3,1672319005),(78070,8,83759,3,1672319005),(78071,8,83760,3,1672319005),(78072,8,83761,3,1672319005),(78073,8,83762,3,1672319005),(78074,8,83763,3,1672319005),(78075,8,83764,3,1672319005),(78076,8,83765,3,1672319005),(78077,8,83766,3,1672319005),(78078,8,83767,3,1672319005),(78079,8,83768,3,1672319005),(78080,8,83769,3,1672319005),(78081,8,83770,3,1672319005),(78082,8,83771,3,1672319005),(78083,8,83772,3,1672319005),(78084,8,83773,3,1672319005),(78085,8,83774,3,1672319005),(78086,8,83775,3,1672319005),(78087,8,83776,3,1672319005),(78088,8,83777,3,1672319005),(78089,8,83778,3,1672319005),(78090,8,83779,3,1672319005),(78091,8,83780,3,1672319005),(78092,8,83781,3,1672319005),(78093,8,83782,3,1672319005),(78094,8,83783,3,1672319005),(78095,8,83784,3,1672319005),(78096,8,83785,3,1672319005),(78097,8,83786,3,1672319005),(78098,8,83787,3,1672319005),(78099,8,83788,3,1672319005),(78100,8,83789,3,1672319005),(78101,8,83790,3,1672319005),(78102,8,83791,3,1672319005),(78103,8,83792,3,1672319005),(78104,8,83793,3,1672319005),(78105,8,83794,3,1672319005),(78106,8,83795,3,1672319005),(78107,8,83796,3,1672319005),(78108,8,83797,3,1672319005),(78109,8,83798,3,1672319005),(78110,8,83799,3,1672319005),(78111,8,83800,3,1672319005),(78112,8,83801,3,1672319005),(78113,8,83802,3,1672319005),(78114,8,83803,3,1672319005),(78115,8,83804,3,1672319005),(78116,8,83805,3,1672319005),(78117,8,83806,3,1672319005),(78118,8,83807,3,1672319005),(78119,8,83808,3,1672319005),(78120,8,83809,3,1672319005),(78121,8,83810,3,1672319005),(78122,8,83811,3,1672319005),(78123,8,83812,3,1672319005),(78124,8,83813,3,1672319005),(78125,8,83814,3,1672319005),(78126,8,83815,3,1672319005),(78127,8,83816,3,1672319005),(78128,8,83817,3,1672319005),(78129,8,83818,3,1672319005),(78130,8,83819,3,1672319005),(78131,8,83820,3,1672319005),(78132,8,83821,3,1672319005),(78133,8,83822,3,1672319005),(78134,8,83823,3,1672319005),(78135,8,83824,3,1672319005),(78136,8,83825,3,1672319005),(78137,8,83826,3,1672319005),(78138,8,83827,3,1672319005),(78139,8,83828,3,1672319005),(78140,8,83829,3,1672319005),(78141,8,83830,3,1672319005),(78142,8,83831,3,1672319005),(78143,8,83832,3,1672319005),(78144,8,83833,3,1672319005),(78145,8,83834,3,1672319005),(78146,8,83835,3,1672319005),(78147,8,83836,3,1672319005),(78148,8,83837,3,1672319005),(78149,8,83838,3,1672319005),(78150,8,83839,3,1672319005),(78151,8,83840,3,1672319005),(78152,8,83841,3,1672319005),(78153,8,83842,3,1672319005),(78154,8,83843,3,1672319005),(78155,8,83844,3,1672319005),(78156,8,83845,3,1672319005),(78157,8,83846,3,1672319005),(78158,8,83847,3,1672319005),(78159,8,83848,3,1672319005),(78160,8,83849,3,1672319005),(78161,8,83850,3,1672319005),(78162,8,83851,3,1672319005),(78163,8,83852,3,1672319005),(78164,8,83853,3,1672319005),(78165,8,83854,3,1672319005),(78166,8,83855,3,1672319005),(78167,8,83856,3,1672319005),(78168,8,83857,3,1672319005),(78169,8,83858,3,1672319005),(78170,8,83859,3,1672319005),(78171,8,83860,3,1672319005),(78172,8,83861,3,1672319005),(78173,8,83862,3,1672319005),(78174,8,83863,3,1672319005),(78175,8,83864,3,1672319005),(78176,8,83865,3,1672319005),(78177,8,83866,3,1672319005),(78178,8,83867,3,1672319005),(78179,8,83868,3,1672319005),(78180,8,83869,3,1672319005),(78181,8,83870,3,1672319005),(78182,8,83871,3,1672319005),(78183,8,83872,3,1672319005),(78184,8,83873,3,1672319005),(78185,8,83874,3,1672319005),(78186,8,83875,3,1672319005),(78187,8,83876,3,1672319005),(78188,8,83877,3,1672319005),(78189,8,83878,3,1672319005),(78190,8,83879,3,1672319005),(78191,8,83880,3,1672319005),(78192,8,83881,3,1672319005),(78193,8,83882,3,1672319005),(78194,8,83883,3,1672319005),(78195,8,83884,3,1672319005),(78196,8,83885,3,1672319005),(78197,8,83886,3,1672319005),(78198,8,83887,3,1672319005),(78199,8,83888,3,1672319005),(78200,8,83889,3,1672319005),(78201,8,83890,3,1672319005),(78202,8,83891,3,1672319005),(78203,8,83892,3,1672319005),(78204,8,83893,3,1672319005),(78205,8,83894,3,1672319005),(78206,8,83895,3,1672319005),(78207,8,83896,3,1672319005),(78208,8,83897,3,1672319005),(78209,8,83898,3,1672319005),(78210,8,83899,3,1672319005),(78211,8,83900,3,1672319005),(78212,8,83901,3,1672319005),(78213,8,83902,3,1672319005),(78214,8,83903,3,1672319005),(78215,8,83904,3,1672319005),(78216,8,83905,3,1672319005),(78217,8,83906,3,1672319005),(78218,8,83907,3,1672319005),(78219,8,83908,3,1672319005),(78220,8,83909,3,1672319005),(78221,8,83910,3,1672319005),(78222,8,83911,3,1672319005),(78223,8,83912,3,1672319005),(78224,8,83913,3,1672319005),(78225,8,83914,3,1672319005),(78226,8,83915,3,1672319005),(78227,8,83916,3,1672319005),(78228,8,83917,3,1672319005),(78229,8,83918,3,1672319005),(78230,8,83919,3,1672319005),(78231,8,83920,3,1672319005),(78232,8,83921,3,1672319005),(78233,8,83922,3,1672319005),(78234,8,83923,3,1672319005),(78235,8,83924,3,1672319005),(78236,8,83925,3,1672319005),(78237,8,83926,3,1672319005),(78238,8,83927,3,1672319005),(78239,8,83928,3,1672319005),(78240,8,83929,3,1672319005),(78241,8,83930,3,1672319005),(78242,8,83931,3,1672319005),(78243,8,83932,3,1672319005),(78244,8,83933,3,1672319005),(78245,8,83934,3,1672319005),(78246,8,83935,3,1672319005),(78247,8,83936,3,1672319005),(78248,8,83937,3,1672319005),(78249,8,83938,3,1672319005),(78250,8,83939,3,1672319005),(78251,8,83940,3,1672319005),(78252,8,83941,3,1672319005),(78253,8,83942,3,1672319005),(78254,8,83943,3,1672319005),(78255,8,83944,3,1672319005),(78256,8,83945,3,1672319005),(78257,8,83946,3,1672319005),(78258,8,83947,3,1672319005),(78259,8,83948,3,1672319005),(78260,8,83949,3,1672319005),(78261,8,83950,3,1672319005),(78262,8,83951,3,1672319005),(78263,8,83952,3,1672319005),(78264,8,83953,3,1672319005),(78265,8,83954,3,1672319005),(78266,8,83955,3,1672319005),(78267,8,83956,3,1672319005),(78268,8,83957,3,1672319005),(78269,8,83958,3,1672319005),(78270,8,83959,3,1672319005),(78271,8,83960,3,1672319005),(78272,8,83961,3,1672319005),(78273,8,83962,3,1672319005),(78274,8,83963,3,1672319005),(78275,8,83964,3,1672319005),(78276,8,83965,3,1672319005),(78277,8,83966,3,1672319005),(78278,8,83967,3,1672319005),(78279,8,83968,3,1672319005),(78280,8,83969,3,1672319005),(78281,8,83970,3,1672319005),(78282,8,83971,3,1672319005),(78283,8,83972,3,1672319005),(78284,8,83973,3,1672319005),(78285,8,83974,3,1672319005),(78286,8,83975,3,1672319005),(78287,8,83976,3,1672319005),(78288,8,83977,3,1672319005),(78289,8,83978,3,1672319005),(78290,8,83979,3,1672319005),(78291,8,83980,3,1672319005),(78292,8,83981,3,1672319005),(78293,8,83982,3,1672319005),(78294,8,83983,3,1672319005),(78295,8,83984,3,1672319005),(78296,8,83985,3,1672319005),(78297,8,83986,3,1672319005),(78298,8,83987,3,1672319005),(78299,8,83988,3,1672319005),(78300,8,83989,3,1672319005),(78301,8,83990,3,1672319005),(78302,8,83991,3,1672319005),(78303,8,83992,3,1672319005),(78304,8,83993,3,1672319005),(78305,8,83994,3,1672319005),(78306,8,83995,3,1672319005),(78307,8,83996,3,1672319005),(78308,8,83997,3,1672319005),(78309,8,83998,3,1672319005),(78310,8,83999,3,1672319005),(78311,8,84000,3,1672319005),(78312,8,84001,3,1672319005),(78313,8,84002,3,1672319005),(78314,8,84003,3,1672319005),(78315,8,84004,3,1672319005),(78316,8,84005,3,1672319005),(78317,8,84006,3,1672319005),(78318,8,84007,3,1672319005),(78319,8,84008,3,1672319005),(78320,8,84009,3,1672319005),(78321,8,84010,3,1672319005),(78322,8,84011,3,1672319005),(78323,8,84012,3,1672319005),(78324,8,84013,3,1672319005),(78325,8,84014,3,1672319005),(78326,8,84015,3,1672319005),(78327,8,84016,3,1672319005),(78328,8,84017,3,1672319005),(78329,8,84018,3,1672319005),(78330,8,84019,3,1672319005),(78331,8,84020,3,1672319005),(78332,8,84021,3,1672319005),(78333,8,84022,3,1672319005),(78334,8,84023,3,1672319005),(78335,8,84024,3,1672319005),(78336,8,84025,3,1672319005),(78337,8,84026,3,1672319005),(78338,8,84027,3,1672319005),(78339,8,84028,3,1672319005),(78340,8,84029,3,1672319005),(78341,8,84030,3,1672319005),(78342,8,84031,3,1672319005),(78343,8,84032,3,1672319005),(78344,8,84033,3,1672319005),(78345,8,84034,3,1672319005),(78346,8,84035,3,1672319005),(78347,8,84036,3,1672319005),(78348,8,84037,3,1672319005),(78349,8,84038,3,1672319005),(78350,8,84039,3,1672319005),(78351,8,84040,3,1672319005),(78352,8,84041,3,1672319005),(78353,8,84042,3,1672319005),(78354,8,84043,3,1672319005),(78355,8,84044,3,1672319005),(78356,8,84045,3,1672319005),(78357,8,84046,3,1672319005),(78358,8,84047,3,1672319005),(78359,8,84048,3,1672319005),(78360,8,84049,3,1672319005),(78361,8,84050,3,1672319005),(78362,8,84051,3,1672319005),(78363,8,84052,3,1672319005),(78364,8,84053,3,1672319005),(78365,8,84054,3,1672319005),(78366,8,84055,3,1672319005),(78367,8,84056,3,1672319005),(78368,8,84057,3,1672319005),(78369,8,84058,3,1672319005),(78370,8,84059,3,1672319005),(78371,8,84060,3,1672319005),(78372,8,84061,3,1672319005),(78373,8,84062,3,1672319005),(78374,8,84063,3,1672319005),(78375,8,84064,3,1672319005),(78376,8,84065,3,1672319005),(78377,8,84066,3,1672319005),(78378,8,84067,3,1672319005),(78379,8,84068,3,1672319005),(78380,8,84069,3,1672319005),(78381,8,84070,3,1672319005),(78382,8,84071,3,1672319005),(78383,8,84072,3,1672319005),(78384,8,84073,3,1672319005),(78385,8,84074,3,1672319005),(78386,8,84075,3,1672319005),(78387,8,84076,3,1672319005),(78388,8,84077,3,1672319005),(78389,8,84078,3,1672319005),(78390,8,84079,3,1672319005),(78391,8,84080,3,1672319005),(78392,8,84081,3,1672319005),(78393,8,84082,3,1672319005),(78394,8,84083,3,1672319005),(78395,8,84084,3,1672319005),(78396,8,84085,3,1672319005),(78397,8,84086,3,1672319005),(78398,8,84087,3,1672319005),(78399,8,84088,3,1672319005),(78400,8,84089,3,1672319005),(78401,8,84090,3,1672319005),(78402,8,84091,3,1672319005),(78403,8,84092,3,1672319005),(78404,8,84093,3,1672319005),(78405,8,84094,3,1672319005),(78406,8,84095,3,1672319005),(78407,8,84096,3,1672319005),(78408,8,84097,3,1672319005),(78409,8,84098,3,1672319005),(78410,8,84099,3,1672319005),(78411,8,84100,3,1672319005),(78412,8,84101,3,1672319005),(78413,8,84102,3,1672319005),(78414,8,84103,3,1672319005),(78415,8,84104,3,1672319005),(78416,8,84105,3,1672319005),(78417,8,84106,3,1672319005),(78418,8,84107,3,1672319005),(78419,8,84108,3,1672319005),(78420,8,84109,3,1672319005),(78421,8,84110,3,1672319005),(78422,8,84111,3,1672319005),(78423,8,84112,3,1672319005),(78424,8,84113,3,1672319005),(78425,8,84114,3,1672319005),(78426,8,84115,3,1672319005),(78427,8,84116,3,1672319005),(78428,8,84117,3,1672319005),(78429,8,84118,3,1672319005),(78430,8,84119,3,1672319005),(78431,8,84120,3,1672319005),(78432,8,84121,3,1672319005),(78433,8,84122,3,1672319005),(78434,8,84123,3,1672319005),(78435,8,84124,3,1672319005),(78436,8,84125,3,1672319005),(78437,8,84126,3,1672319005),(78438,8,84127,3,1672319005),(78439,8,84128,3,1672319005),(78440,8,84129,3,1672319005),(78441,8,84130,3,1672319005),(78442,8,84131,3,1672319005),(78443,8,84132,3,1672319005),(78444,8,84133,3,1672319005),(78445,8,84134,3,1672319005),(78446,8,84135,3,1672319005),(78447,8,84136,3,1672319005),(78448,8,84137,3,1672319005),(78449,8,84138,3,1672319005),(78450,8,84139,3,1672319005),(78451,8,84140,3,1672319005),(78452,8,84141,3,1672319005),(78453,8,84142,3,1672319005),(78454,8,84143,3,1672319005),(78455,8,84144,3,1672319005),(78456,8,84145,3,1672319005),(78457,8,84146,3,1672319005),(78458,8,84147,3,1672319005),(78459,8,84148,3,1672319005),(78460,8,84149,3,1672319005),(78461,8,84150,3,1672319005),(78462,8,84151,3,1672319005),(78463,8,84152,3,1672319005),(78464,8,84153,3,1672319005),(78465,8,84154,3,1672319005),(78466,8,84155,3,1672319005),(78467,8,84156,3,1672319005),(78468,8,84157,3,1672319005),(78469,8,84158,3,1672319005),(78470,8,84159,3,1672319005),(78471,8,84160,3,1672319005),(78472,8,84161,3,1672319005),(78473,8,84162,3,1672319005),(78474,8,84163,3,1672319005),(78475,8,84164,3,1672319005),(78476,8,84165,3,1672319005),(78477,8,84166,3,1672319005),(78478,8,84167,3,1672319005),(78479,8,84168,3,1672319005),(78480,8,84169,3,1672319005),(78481,8,84170,3,1672319005),(78482,8,84171,3,1672319005),(78483,8,84172,3,1672319005),(78484,8,84173,3,1672319005),(78485,8,84174,3,1672319005),(78486,8,84175,3,1672319005),(78487,8,84176,3,1672319005),(78488,8,84177,3,1672319005),(78489,8,84178,3,1672319005),(78490,8,84179,3,1672319005),(78491,8,84180,3,1672319005),(78492,8,84181,3,1672319005),(78493,8,84182,3,1672319005),(78494,8,84183,3,1672319005),(78495,8,84184,3,1672319005),(78496,8,84185,3,1672319005),(78497,8,84186,3,1672319005),(78498,8,84187,3,1672319005),(78499,8,84188,3,1672319005),(78500,8,84189,3,1672319005),(78501,8,84190,3,1672319005),(78502,8,84191,3,1672319005),(78503,8,84192,3,1672319005),(78504,8,84193,3,1672319005),(78505,8,84194,3,1672319005),(78506,8,84195,3,1672319005),(78507,8,84196,3,1672319005),(78508,8,84197,3,1672319005),(78509,8,84198,3,1672319005),(78510,8,84199,3,1672319005),(78511,8,84200,3,1672319005),(78512,8,84201,3,1672319005),(78513,8,84202,3,1672319005),(78514,8,84203,3,1672319005),(78515,8,84204,3,1672319005),(78516,8,84205,3,1672319005),(78517,8,84206,3,1672319005),(78518,8,84207,3,1672319005),(78519,8,84208,3,1672319005),(78520,8,84209,3,1672319005),(78521,8,84210,3,1672319005),(78522,8,84211,3,1672319005),(78523,8,84212,3,1672319005),(78524,8,84213,3,1672319005),(78525,8,84214,3,1672319005),(78526,8,84215,3,1672319005),(78527,8,84216,3,1672319005),(78528,8,84217,3,1672319005),(78529,8,84218,3,1672319005),(78530,8,84219,3,1672319005),(78531,8,84220,3,1672319005),(78532,8,84221,3,1672319005),(78533,8,84222,3,1672319005),(78534,8,84223,3,1672319005),(78535,8,84224,3,1672319005),(78536,8,84225,3,1672319005),(78537,8,84226,3,1672319005),(78538,8,84227,3,1672319005),(78539,8,84228,3,1672319005),(78540,8,84229,3,1672319005),(78541,8,84230,3,1672319005),(78542,8,84231,3,1672319005),(78543,8,84232,3,1672319005),(78544,8,84233,3,1672319005),(78545,8,84234,3,1672319005),(78546,8,84235,3,1672319005),(78547,8,84236,3,1672319005),(78548,8,84237,3,1672319005),(78549,8,84238,3,1672319005),(78550,8,84239,3,1672319005),(78551,8,84240,3,1672319005),(78552,8,84241,3,1672319005),(78553,8,84242,3,1672319005),(78554,8,84243,3,1672319005),(78555,8,84244,3,1672319005),(78556,8,84245,3,1672319005),(78557,8,84246,3,1672319005),(78558,8,84247,3,1672319005),(78559,8,84248,3,1672319005),(78560,8,84249,3,1672319005),(78561,8,84250,3,1672319005),(78562,8,84251,3,1672319005),(78563,8,84252,3,1672319005),(78564,8,84253,3,1672319005),(78565,8,84254,3,1672319005),(78566,8,84255,3,1672319005),(78567,8,84256,3,1672319005),(78568,8,84257,3,1672319005),(78569,8,84258,3,1672319005),(78570,8,84259,3,1672319005),(78571,8,84260,3,1672319005),(78572,8,84261,3,1672319005),(78573,8,84262,3,1672319005),(78574,8,84263,3,1672319005),(78575,8,84264,3,1672319005),(78576,8,84265,3,1672319005),(78577,8,84266,3,1672319005),(78578,8,84267,3,1672319005),(78579,8,84268,3,1672319005),(78580,8,84269,3,1672319005),(78581,8,84270,3,1672319005),(78582,8,84271,3,1672319005),(78583,8,84272,3,1672319005),(78584,8,84273,3,1672319005),(78585,8,84274,3,1672319005),(78586,8,84275,3,1672319005),(78587,8,84276,3,1672319005),(78588,8,84277,3,1672319005),(78589,8,84278,3,1672319005),(78590,8,84279,3,1672319005),(78591,8,84280,3,1672319005),(78592,8,84281,3,1672319005),(78593,8,84282,3,1672319005),(78594,8,84283,3,1672319005),(78595,8,84284,3,1672319005),(78596,8,84285,3,1672319005),(78597,8,84286,3,1672319005),(78598,8,84287,3,1672319005),(78599,8,84288,3,1672319005),(78600,8,84289,3,1672319005),(78601,8,84291,3,1672319005),(78602,8,84292,3,1672319005),(78603,8,84293,3,1672319005),(78604,8,84294,3,1672319005),(78605,8,84295,3,1672319005),(78606,8,84296,3,1672319005),(78607,8,84297,3,1672319005),(78608,8,84298,3,1672319005),(78609,8,84299,3,1672319005),(78610,8,84300,3,1672319005),(78611,8,84301,3,1672319005),(78612,8,84302,3,1672319005),(78613,8,84303,3,1672319005),(78614,8,84304,3,1672319005),(78615,8,84305,3,1672319005),(78616,8,84306,3,1672319005),(78617,8,84307,3,1672319005),(78618,8,84308,3,1672319005),(78619,8,84309,3,1672319005),(78620,8,84310,3,1672319005),(78621,8,84311,3,1672319005),(78622,8,84312,3,1672319005),(78623,8,84313,3,1672319005),(78624,8,84314,3,1672319005),(78625,8,84315,3,1672319005),(78626,8,84316,3,1672319005),(78627,8,84317,3,1672319005),(78628,8,84318,3,1672319005),(78629,8,84319,3,1672319005),(78630,8,84320,3,1672319005),(78631,8,84321,3,1672319005),(78632,8,84322,3,1672319005),(78633,8,84323,3,1672319005),(78634,8,84324,3,1672319005),(78635,8,84325,3,1672319005),(78636,8,84326,3,1672319005),(78637,8,84327,3,1672319005),(78638,8,84328,3,1672319005),(78639,8,84329,3,1672319005),(78640,8,84330,3,1672319005),(78641,8,84331,3,1672319005),(78642,8,84332,3,1672319005),(78643,8,84333,3,1672319005),(78644,8,84334,3,1672319005),(78645,8,84335,3,1672319005),(78646,8,84336,3,1672319005),(78647,8,84337,3,1672319005),(78648,8,84338,3,1672319005),(78649,8,84339,3,1672319005),(78650,8,84340,3,1672319005),(78651,8,84341,3,1672319005),(78652,8,84342,3,1672319005),(78653,8,84343,3,1672319005),(78654,8,84344,3,1672319005),(78655,8,84345,3,1672319005),(78656,8,84346,3,1672319005),(78657,8,84347,3,1672319005),(78658,8,84348,3,1672319005),(78659,8,84349,3,1672319005),(78660,8,84350,3,1672319005),(78661,8,84351,3,1672319005),(78662,8,84352,3,1672319005),(78663,8,84353,3,1672319005),(78664,8,84354,3,1672319005),(78665,8,84355,3,1672319005),(78666,8,84356,3,1672319005),(78667,8,84357,3,1672319005),(78668,8,84358,3,1672319005),(78669,8,84359,3,1672319005),(78670,8,84360,3,1672319005),(78671,8,84361,3,1672319005),(78672,8,84362,3,1672319005),(78673,8,84363,3,1672319005),(78674,8,84364,3,1672319005),(78675,8,84365,3,1672319005),(78676,8,84366,3,1672319005),(78677,8,84367,3,1672319005),(78678,8,84368,3,1672319005),(78679,8,84369,3,1672319005),(78680,8,84370,3,1672319005),(78681,8,84371,3,1672319005),(78682,8,84372,3,1672319005),(78683,8,84373,3,1672319005),(78684,8,84374,3,1672319005),(78685,8,84375,3,1672319005),(78686,8,84376,3,1672319005),(78687,8,84377,3,1672319005),(78688,8,84378,3,1672319005),(78689,8,84379,3,1672319005),(78690,8,84380,3,1672319005),(78691,8,84381,3,1672319005),(78692,8,84382,3,1672319005),(78693,8,84383,3,1672319005),(78694,8,84384,3,1672319005),(78695,8,84385,3,1672319005),(78696,8,84386,3,1672319005),(78697,8,84387,3,1672319005),(78698,8,84388,3,1672319005),(78699,8,84389,3,1672319005),(78700,8,84390,3,1672319005),(78701,8,84391,3,1672319005),(78702,8,84392,3,1672319005),(78703,8,84394,3,1672319005),(78704,8,84395,3,1672319005),(78705,8,84396,3,1672319005),(78706,8,84397,3,1672319005),(78707,8,84398,3,1672319005),(78708,8,84399,3,1672319005),(78709,8,84400,3,1672319005),(78710,8,84401,3,1672319005),(78711,8,84402,3,1672319005),(78712,8,84403,3,1672319005),(78713,8,84404,3,1672319005),(78714,8,84405,3,1672319005),(78715,8,84406,3,1672319005),(78716,8,84407,3,1672319005),(78717,8,84408,3,1672319005),(78718,8,84409,3,1672319005),(78719,8,84411,3,1672319005),(78720,8,84412,3,1672319005),(78721,8,84413,3,1672319005),(78722,8,84414,3,1672319005),(78723,8,84415,3,1672319005),(78724,8,84416,3,1672319005),(78725,8,84417,3,1672319005),(78726,8,84423,3,1672319005),(78727,8,84426,3,1672319005),(78728,8,84427,3,1672319005),(78729,8,84428,3,1672319005),(78730,8,84429,3,1672319005),(78731,8,84430,3,1672319005),(78732,8,84431,3,1672319005),(78733,8,84432,3,1672319005),(78734,8,84433,3,1672319005),(78735,8,84434,3,1672319005),(78736,8,84435,3,1672319005),(78737,8,84436,3,1672319005),(78738,8,84437,3,1672319005),(78739,8,84438,3,1672319005),(78740,8,84439,3,1672319005),(78741,8,84440,3,1672319005),(78742,8,84441,3,1672319005),(78743,8,84442,3,1672319005),(78744,8,84443,3,1672319005),(78745,8,84444,3,1672319005),(78746,8,84445,3,1672319005),(78747,8,84446,3,1672319005),(78748,8,84447,3,1672319005),(78749,8,84448,3,1672319005),(78750,8,84449,3,1672319005),(78751,8,84450,3,1672319005),(78752,8,84451,3,1672319005),(78753,8,84452,3,1672319005),(78754,8,84453,3,1672319005),(78755,8,84454,3,1672319005),(78756,8,84455,3,1672319005),(78757,8,84456,3,1672319005),(78758,8,84457,3,1672319005),(78759,8,84458,3,1672319005),(78760,8,84459,3,1672319005),(78761,8,84460,3,1672319005),(78762,8,84461,3,1672319005),(78763,8,84462,3,1672319005),(78764,8,84463,3,1672319005),(78765,8,84464,3,1672319005),(78766,8,84465,3,1672319005),(78767,8,84466,3,1672319005),(78768,8,84467,3,1672319005),(78769,8,84468,3,1672319005),(78770,8,84469,3,1672319005),(78771,8,84470,3,1672319005),(78772,8,84471,3,1672319005),(78773,8,84472,3,1672319005),(78774,8,84473,3,1672319005),(78775,8,84474,3,1672319005),(78776,8,84475,3,1672319005),(78777,8,84476,3,1672319005),(78778,8,84477,3,1672319005),(78779,8,84478,3,1672319005),(78780,8,84479,3,1672319005),(78781,8,84480,3,1672319005),(78782,8,84481,3,1672319005),(78783,8,84482,3,1672319005),(78784,8,84483,3,1672319005),(78785,8,84484,3,1672319005),(78786,8,84485,3,1672319005),(78787,8,84486,3,1672319005),(78788,8,84487,3,1672319005),(78789,8,84488,3,1672319005),(78790,8,84489,3,1672319005),(78791,8,84490,3,1672319005),(78792,8,84491,3,1672319005),(78793,8,84492,3,1672319005),(78794,8,84493,3,1672319005),(78795,8,84494,3,1672319005),(78796,8,84495,3,1672319005),(78797,8,84496,3,1672319005),(78798,8,84497,3,1672319005),(78799,8,84498,3,1672319005),(78800,8,84499,3,1672319005),(78801,8,84500,3,1672319005),(78802,8,84501,3,1672319005),(78803,8,84502,3,1672319005),(78804,8,84503,3,1672319005),(78805,8,84504,3,1672319005),(78806,8,84505,3,1672319005),(78807,8,84506,3,1672319005),(78808,8,84507,3,1672319005),(78809,8,84508,3,1672319005),(78810,8,84509,3,1672319005),(78811,8,84510,3,1672319005),(78812,8,84511,3,1672319005),(78813,8,84512,3,1672319005),(78814,8,84513,3,1672319005),(78815,8,84514,3,1672319005),(78816,8,84515,3,1672319005),(78817,8,84516,3,1672319005),(78818,8,84517,3,1672319005),(78819,8,84518,3,1672319005),(78820,8,84519,3,1672319005),(78821,8,84520,3,1672319005),(78822,8,84521,3,1672319005),(78823,8,84522,3,1672319005),(78824,8,84523,3,1672319005),(78825,8,84524,3,1672319005),(78826,8,84525,3,1672319005),(78827,8,84526,3,1672319005),(78828,8,84527,3,1672319005),(78829,8,84528,3,1672319005),(78830,8,84529,3,1672319005),(78831,8,84530,3,1672319005),(78832,8,84531,3,1672319005),(78833,8,84532,3,1672319005),(78834,8,84533,3,1672319005),(78835,8,84534,3,1672319005),(78836,8,84535,3,1672319005),(78837,8,84536,3,1672319005),(78838,8,84537,3,1672319005),(78839,8,84538,3,1672319005),(78840,8,84539,3,1672319005),(78841,8,84540,3,1672319005),(78842,8,84541,3,1672319005),(78843,8,84542,3,1672319005),(78844,8,84543,3,1672319005),(78845,8,84544,3,1672319005),(78846,8,84545,3,1672319005),(78847,8,84546,3,1672319005),(78848,8,84547,3,1672319005),(78849,8,84548,3,1672319005),(78850,8,84549,3,1672319005),(78851,8,84550,3,1672319005),(78852,8,84551,3,1672319005),(78853,8,84552,3,1672319005),(78854,8,84553,3,1672319005),(78855,8,84554,3,1672319005),(78856,8,84555,3,1672319005),(78857,8,84556,3,1672319005),(78858,8,84557,3,1672319005),(78859,8,84558,3,1672319005),(78860,8,84559,3,1672319005),(78861,8,84560,3,1672319005),(78862,8,84561,3,1672319005),(78863,8,84562,3,1672319005),(78864,8,84563,3,1672319005),(78865,8,84564,3,1672319005),(78866,8,84565,3,1672319005),(78867,8,84566,3,1672319005),(78868,8,84567,3,1672319005),(78869,8,84568,3,1672319005),(78870,8,84569,3,1672319005),(78871,8,84570,3,1672319005),(78872,8,84571,3,1672319005),(78873,8,84572,3,1672319005),(78874,8,84573,3,1672319005),(78875,8,84574,3,1672319005),(78876,8,84575,3,1672319005),(78877,8,84576,3,1672319005),(78878,8,84577,3,1672319005),(78879,8,84578,3,1672319005),(78880,8,84579,3,1672319005),(78881,8,84580,3,1672319005),(78882,8,84581,3,1672319005),(78883,8,84582,3,1672319005),(78884,8,84583,3,1672319005),(78885,8,84584,3,1672319005),(78886,8,84585,3,1672319005),(78887,8,84586,3,1672319005),(78888,8,84587,3,1672319005),(78889,8,84588,3,1672319005),(78890,8,84589,3,1672319005),(78891,8,84590,3,1672319005),(78892,8,84591,3,1672319005),(78893,8,84592,3,1672319005),(78894,8,84593,3,1672319005),(78895,8,84594,3,1672319005),(78896,8,84595,3,1672319005),(78897,8,84596,3,1672319005),(78898,8,84597,3,1672319005),(78899,8,84598,3,1672319005),(78900,8,84599,3,1672319005),(78901,8,84600,3,1672319005),(78902,8,84601,3,1672319005),(78903,8,84602,3,1672319005),(78904,8,84603,3,1672319005),(78905,8,84604,3,1672319005),(78906,8,84605,3,1672319005),(78907,8,84606,3,1672319005),(78908,8,84607,3,1672319005),(78909,8,84608,3,1672319005),(78910,8,84609,3,1672319005),(78911,8,84610,3,1672319005),(78912,8,84611,3,1672319005),(78913,8,84612,3,1672319005),(78914,8,84613,3,1672319005),(78915,8,84614,3,1672319005),(78916,8,84615,3,1672319005),(78917,8,84616,3,1672319005),(78918,8,84617,3,1672319005),(78919,8,84618,3,1672319005),(78920,8,84619,3,1672319005),(78921,8,84620,3,1672319005),(78922,8,84621,3,1672319005),(78923,8,84622,3,1672319005),(78924,8,84623,3,1672319005),(78925,8,84624,3,1672319005),(78926,8,84625,3,1672319005),(78927,8,84626,3,1672319005),(78928,8,84627,3,1672319005),(78929,8,84628,3,1672319005),(78930,8,84629,3,1672319005),(78931,8,84630,3,1672319005),(78932,8,84631,3,1672319005),(78933,8,84632,3,1672319005),(78934,8,84633,3,1672319005),(78935,8,84634,3,1672319005),(78936,8,84635,3,1672319005),(78937,8,84636,3,1672319005),(78938,8,84637,3,1672319005),(78939,8,84638,3,1672319005),(78940,8,84639,3,1672319005),(78941,8,84640,3,1672319005),(78942,8,84641,3,1672319005),(78943,8,84642,3,1672319005),(78944,8,84643,3,1672319005),(78945,8,84644,3,1672319005),(78946,8,84645,3,1672319005),(78947,8,84646,3,1672319005),(78948,8,84647,3,1672319005),(78949,8,84648,3,1672319005),(78950,8,84649,3,1672319005),(78951,8,84650,3,1672319005),(78952,8,84651,3,1672319005),(78953,8,84652,3,1672319005),(78954,8,84653,3,1672319005),(78955,8,84654,3,1672319005),(78956,8,84655,3,1672319005),(78957,8,84656,3,1672319005),(78958,8,84657,3,1672319005),(78959,8,84658,3,1672319005),(78960,8,84659,3,1672319005),(78961,8,84660,3,1672319005),(78962,8,84661,3,1672319005),(78963,8,84662,3,1672319005),(78964,8,84663,3,1672319005),(78965,8,84664,3,1672319005),(78966,8,84665,3,1672319005),(78967,8,84666,3,1672319005),(78968,8,84667,3,1672319005),(78969,8,84668,3,1672319005),(78970,8,84669,3,1672319005),(78971,8,84670,3,1672319005),(78972,8,84671,3,1672319005),(78973,8,84672,3,1672319005),(78974,8,84673,3,1672319005),(78975,8,84674,3,1672319005),(78976,8,84675,3,1672319005),(78977,8,84676,3,1672319005),(78978,8,84677,3,1672319005),(78979,8,84678,3,1672319005),(78980,8,84679,3,1672319005),(78981,8,84680,3,1672319005),(78982,8,84681,3,1672319005),(78983,8,84682,3,1672319005),(78984,8,84683,3,1672319005),(78985,8,84684,3,1672319005),(78986,8,84685,3,1672319005),(78987,8,84686,3,1672319005),(78988,8,84687,3,1672319005),(78989,8,84688,3,1672319005),(78990,8,84689,3,1672319005),(78991,8,84690,3,1672319005),(78992,8,84691,3,1672319005),(78993,8,84692,3,1672319005),(78994,8,84693,3,1672319005),(78995,8,84694,3,1672319005),(78996,8,84695,3,1672319005),(78997,8,84696,3,1672319005),(78998,8,84697,3,1672319005),(78999,8,84698,3,1672319005),(79000,8,84699,3,1672319005),(79001,8,84700,3,1672319005),(79002,8,84701,3,1672319005),(79003,8,84702,3,1672319005),(79004,8,84703,3,1672319005),(79005,8,84704,3,1672319005),(79006,8,84705,3,1672319005),(79007,8,84706,3,1672319005),(79008,8,84707,3,1672319005),(79009,8,84708,3,1672319005),(79010,8,84709,3,1672319005),(79011,8,84710,3,1672319005),(79012,8,84711,3,1672319005),(79013,8,84712,3,1672319005),(79014,8,84713,3,1672319005),(79015,8,84714,3,1672319005),(79016,8,84715,3,1672319005),(79017,8,84716,3,1672319005),(79018,8,84717,3,1672319005),(79019,8,84718,3,1672319005),(79020,8,84719,3,1672319005),(79021,8,84720,3,1672319005),(79022,8,84721,3,1672319005),(79023,8,84722,3,1672319005),(79024,8,84723,3,1672319005),(79025,8,84724,3,1672319005),(79026,8,84725,3,1672319005),(79027,8,84726,3,1672319005),(79028,8,84727,3,1672319005),(79029,8,84728,3,1672319005),(79030,8,84729,3,1672319005),(79031,8,84730,3,1672319005),(79032,8,84731,3,1672319005),(79033,8,84732,3,1672319005),(79034,8,84733,3,1672319005),(79035,8,84734,3,1672319005),(79036,8,84735,3,1672319005),(79037,8,84736,3,1672319005),(79038,8,84737,3,1672319005),(79039,8,84738,3,1672319005),(79040,8,84739,3,1672319005),(79041,8,84740,3,1672319005),(79042,8,84741,3,1672319005),(79043,8,84742,3,1672319005),(79044,8,84743,3,1672319005),(79045,8,84744,3,1672319005),(79046,8,84745,3,1672319005),(79047,8,84746,3,1672319005),(79048,8,84747,3,1672319005),(79049,8,84748,3,1672319005),(79050,8,84749,3,1672319005),(79051,8,84750,3,1672319005),(79052,8,84751,3,1672319005),(79053,8,84752,3,1672319005),(79054,8,84753,3,1672319005),(79055,8,84754,3,1672319005),(79056,8,84755,3,1672319005),(79057,8,84756,3,1672319005),(79058,8,84757,3,1672319005),(79059,8,84758,3,1672319005),(79060,8,84759,3,1672319005),(79061,8,84760,3,1672319005),(79062,8,84761,3,1672319005),(79063,8,84762,3,1672319005),(79064,8,84763,3,1672319005),(79065,8,84764,3,1672319005),(79066,8,84765,3,1672319005),(79067,8,84766,3,1672319005),(79068,8,84767,3,1672319005),(79069,8,84768,3,1672319005),(79070,8,84769,3,1672319005),(79071,8,84770,3,1672319005),(79072,8,84771,3,1672319005),(79073,8,84772,3,1672319005),(79074,8,84773,3,1672319005),(79075,8,84774,3,1672319005),(79076,8,84775,3,1672319005),(79077,8,84776,3,1672319005),(79078,8,84777,3,1672319005),(79079,8,84778,3,1672319005),(79080,8,84779,3,1672319005),(79081,8,84780,3,1672319005),(79082,8,84781,3,1672319005),(79083,8,84782,3,1672319005),(79084,8,84783,3,1672319005),(79085,8,84784,3,1672319005),(79086,8,84785,3,1672319005),(79087,8,84786,3,1672319005),(79088,8,84787,3,1672319005),(79089,8,84788,3,1672319005),(79090,8,84789,3,1672319005),(79091,8,84790,3,1672319005),(79092,8,84791,3,1672319005),(79093,8,84792,3,1672319005),(79094,8,84793,3,1672319005),(79095,8,84794,3,1672319005),(79096,8,84795,3,1672319005),(79097,8,84796,3,1672319005),(79098,8,84797,3,1672319005),(79099,8,84798,3,1672319005),(79100,8,84799,3,1672319005),(79101,8,84800,3,1672319005),(79102,8,84801,3,1672319005),(79103,8,84802,3,1672319005),(79104,8,84803,3,1672319005),(79105,8,84804,3,1672319005),(79106,8,84805,3,1672319005),(79107,8,84806,3,1672319005),(79108,8,84807,3,1672319005),(79109,8,84808,3,1672319005),(79110,8,84809,3,1672319005),(79111,8,84810,3,1672319005),(79112,8,84811,3,1672319005),(79113,8,84812,3,1672319005),(79114,8,84813,3,1672319005),(79115,8,84814,3,1672319005),(79116,8,84815,3,1672319005),(79117,8,84816,3,1672319005),(79118,8,84817,3,1672319005),(79119,8,84818,3,1672319005),(79120,8,84819,3,1672319005),(79121,8,84820,3,1672319005),(79122,8,84821,3,1672319005),(79123,8,84822,3,1672319005),(79124,8,84823,3,1672319005),(79125,8,84824,3,1672319005),(79126,8,84825,3,1672319005),(79127,8,84826,3,1672319005),(79128,8,84827,3,1672319005),(79129,8,84828,3,1672319005),(79130,8,84829,3,1672319005),(79131,8,84830,3,1672319005),(79132,8,84831,3,1672319005),(79133,8,84832,3,1672319005),(79134,8,84833,3,1672319005),(79135,8,84834,3,1672319005),(79136,8,84835,3,1672319005),(79137,8,84836,3,1672319005),(79138,8,84837,3,1672319005),(79139,8,84838,3,1672319005),(79140,8,84839,3,1672319005),(79141,8,84840,3,1672319005),(79142,8,84841,3,1672319005),(79143,8,84842,3,1672319005),(79144,8,84843,3,1672319005),(79145,8,84844,3,1672319005),(79146,8,84845,3,1672319005),(79147,8,84846,3,1672319005),(79148,8,84847,3,1672319005),(79149,8,84848,3,1672319005),(79150,8,84849,3,1672319005),(79151,8,84850,3,1672319005),(79152,8,84851,3,1672319005),(79153,8,84852,3,1672319005),(79154,8,84853,3,1672319005),(79155,8,84854,3,1672319005),(79156,8,84855,3,1672319005),(79157,8,84856,3,1672319005),(79158,8,84857,3,1672319005),(79159,8,84858,3,1672319005),(79160,8,84859,3,1672319005),(79161,8,84860,3,1672319005),(79162,8,84861,3,1672319005),(79163,8,84862,3,1672319005),(79164,8,84863,3,1672319005),(79165,8,84864,3,1672319005),(79166,8,84865,3,1672319005),(79167,8,84866,3,1672319005),(79168,8,84867,3,1672319005),(79169,8,84868,3,1672319005),(79170,8,84869,3,1672319005),(79171,8,84870,3,1672319005),(79172,8,84871,3,1672319005),(79173,8,84872,3,1672319005),(79174,8,84873,3,1672319005),(79175,8,84874,3,1672319005),(79176,8,84875,3,1672319005),(79177,8,84876,3,1672319005),(79178,8,84877,3,1672319005),(79179,8,84878,3,1672319005),(79180,8,84879,3,1672319005),(79181,8,84880,3,1672319005),(79182,8,84881,3,1672319005),(79183,8,84882,3,1672319005),(79184,8,84883,3,1672319005),(79185,8,84884,3,1672319005),(79186,8,84885,3,1672319005),(79187,8,84886,3,1672319005),(79188,8,84887,3,1672319005),(79189,8,84888,3,1672319005),(79190,8,84889,3,1672319005),(79191,8,84890,3,1672319005),(79192,8,84891,3,1672319005),(79193,8,84892,3,1672319005),(79194,8,84893,3,1672319005),(79195,8,84894,3,1672319005),(79196,8,84895,3,1672319005),(79197,8,84896,3,1672319005),(79198,8,84897,3,1672319005),(79199,8,84898,3,1672319005),(79200,8,84899,3,1672319005),(79201,8,84900,3,1672319005),(79202,8,84901,3,1672319005),(79203,8,84902,3,1672319005),(79204,8,84903,3,1672319005),(79205,8,84904,3,1672319005),(79206,8,84905,3,1672319005),(79207,8,84906,3,1672319005),(79208,8,84907,3,1672319005),(79209,8,84908,3,1672319005),(79210,8,84909,3,1672319005),(79211,8,84910,3,1672319005),(79212,8,84911,3,1672319005),(79213,8,84912,3,1672319005),(79214,8,84913,3,1672319005),(79215,8,84914,3,1672319005),(79216,8,84915,3,1672319005),(79217,8,84916,3,1672319005),(79218,8,84917,3,1672319005),(79219,8,84918,3,1672319005),(79220,8,84919,3,1672319005),(79221,8,84920,3,1672319005),(79222,8,84921,3,1672319005),(79223,8,84922,3,1672319005),(79224,8,84923,3,1672319005),(79225,8,84924,3,1672319005),(79226,8,84925,3,1672319005),(79227,8,84926,3,1672319005),(79228,8,84927,3,1672319005),(79229,8,84928,3,1672319005),(79230,8,84929,3,1672319005),(79231,8,84930,3,1672319005),(79232,8,84931,3,1672319005),(79233,8,84932,3,1672319005),(79234,8,84933,3,1672319005),(79235,8,84934,3,1672319005),(79236,8,84935,3,1672319005),(79237,8,84936,3,1672319005),(79238,8,84937,3,1672319005),(79239,8,84938,3,1672319005),(79240,8,84939,3,1672319005),(79241,8,84940,3,1672319005),(79242,8,84941,3,1672319005),(79243,8,84942,3,1672319005),(79244,8,84943,3,1672319005),(79245,8,84944,3,1672319005),(79246,8,84945,3,1672319005),(79247,8,84946,3,1672319005),(79248,8,84947,3,1672319005),(79249,8,84948,3,1672319005),(79250,8,84949,3,1672319005),(79251,8,84950,3,1672319005),(79252,8,84951,3,1672319005),(79253,8,84952,3,1672319005),(79254,8,84953,3,1672319005),(79255,8,84954,3,1672319005),(79256,8,84955,3,1672319005),(79257,8,84956,3,1672319005),(79258,8,84957,3,1672319005),(79259,8,84958,3,1672319005),(79260,8,84959,3,1672319005),(79261,8,84960,3,1672319005),(79262,8,84961,3,1672319005),(79263,8,84962,3,1672319005),(79264,8,84963,3,1672319005),(79265,8,84964,3,1672319005),(79266,8,84965,3,1672319005),(79267,8,84966,3,1672319005),(79268,8,84967,3,1672319005),(79269,8,84968,3,1672319005),(79270,8,84969,3,1672319005),(79271,8,84970,3,1672319005),(79272,8,84971,3,1672319005),(79273,8,84972,3,1672319005),(79274,8,84973,3,1672319005),(79275,8,84974,3,1672319005),(79276,8,84975,3,1672319005),(79277,8,84976,3,1672319005),(79278,8,84977,3,1672319005),(79279,8,84978,3,1672319005),(79280,8,84979,3,1672319005),(79281,8,84980,3,1672319005),(79282,8,84981,3,1672319005),(79283,8,84982,3,1672319005),(79284,8,84983,3,1672319005),(79285,8,84984,3,1672319005),(79286,8,84985,3,1672319005),(79287,8,84986,3,1672319005),(79288,8,84987,3,1672319005),(79289,8,84988,3,1672319005),(79290,8,84989,3,1672319005),(79291,8,84990,3,1672319005),(79292,8,84991,3,1672319005),(79293,8,84992,3,1672319005),(79294,8,84993,3,1672319005),(79295,8,84994,3,1672319005),(79296,8,84995,3,1672319005),(79297,8,84996,3,1672319005),(79298,8,84997,3,1672319005),(79299,8,84998,3,1672319005),(79300,8,84999,3,1672319005),(79301,8,85000,3,1672319005),(79302,8,85001,3,1672319005),(79303,8,85002,3,1672319005),(79304,8,85003,3,1672319005),(79305,8,85004,3,1672319005),(79306,8,85005,3,1672319005),(79307,8,85006,3,1672319005),(79308,8,85007,3,1672319005),(79309,8,85008,3,1672319005),(79310,8,85009,3,1672319005),(79311,8,85010,3,1672319005),(79312,8,85011,3,1672319005),(79313,8,85012,3,1672319005),(79314,8,85013,3,1672319005),(79315,8,85014,3,1672319005),(79316,8,85015,3,1672319005),(79317,8,85016,3,1672319005),(79318,8,85017,3,1672319005),(79319,8,85018,3,1672319005),(79320,8,85019,3,1672319005),(79321,8,85020,3,1672319005),(79322,8,85021,3,1672319005),(79323,8,85022,3,1672319005),(79324,8,85023,3,1672319005),(79325,8,85024,3,1672319005),(79326,8,85025,3,1672319005),(79327,8,85026,3,1672319005),(79328,8,85027,3,1672319005),(79329,8,85028,3,1672319005),(79330,8,85029,3,1672319005),(79331,8,85030,3,1672319005),(79332,8,85031,3,1672319005),(79333,8,85032,3,1672319005),(79334,8,85033,3,1672319005),(79335,8,85034,3,1672319005),(79336,8,85035,3,1672319005),(79337,8,85036,3,1672319005),(79338,8,85037,3,1672319005),(79339,8,85038,3,1672319005),(79340,8,85039,3,1672319005),(79341,8,85040,3,1672319005),(79342,8,85041,3,1672319005),(79343,8,85042,3,1672319005),(79344,8,85043,3,1672319005),(79345,8,85044,3,1672319005),(79346,8,85045,3,1672319005),(79347,8,85046,3,1672319005),(79348,8,85047,3,1672319005),(79349,8,85048,3,1672319005),(79350,8,85049,3,1672319005),(79351,8,85050,3,1672319005),(79352,8,85051,3,1672319005),(79353,8,85052,3,1672319005),(79354,8,85053,3,1672319005),(79355,8,85054,3,1672319005),(79356,8,85055,3,1672319005),(79357,8,85056,3,1672319005),(79358,8,85057,3,1672319005),(79359,8,85058,3,1672319005),(79360,8,85059,3,1672319005),(79361,8,85060,3,1672319005),(79362,8,85061,3,1672319005),(79363,8,85062,3,1672319005),(79364,8,85063,3,1672319005),(79365,8,85064,3,1672319005),(79366,8,85065,3,1672319005),(79367,8,85066,3,1672319005),(79368,8,85067,3,1672319005),(79369,8,85068,3,1672319005),(79370,8,85069,3,1672319005),(79371,8,85070,3,1672319005),(79372,8,85071,3,1672319005),(79373,8,85072,3,1672319005),(79374,8,85073,3,1672319005),(79375,8,85074,3,1672319005),(79376,8,85075,3,1672319005),(79377,8,85076,3,1672319005),(79378,8,85077,3,1672319005),(79379,8,85078,3,1672319005),(79380,8,85079,3,1672319005),(79381,8,85080,3,1672319005),(79382,8,85081,3,1672319005),(79383,8,85082,3,1672319005),(79384,8,85083,3,1672319005),(79385,8,85084,3,1672319005),(79386,8,85085,3,1672319005),(79387,8,85086,3,1672319005),(79388,8,85087,3,1672319005),(79389,8,85088,3,1672319005),(79390,8,85089,3,1672319005),(79391,8,85090,3,1672319005),(79392,8,85091,3,1672319005),(79393,8,85092,3,1672319005),(79394,8,85093,3,1672319005),(79395,8,85094,3,1672319005),(79396,8,85095,3,1672319005),(79397,8,85096,3,1672319005),(79398,8,85097,3,1672319005),(79399,8,85098,3,1672319005),(79400,8,85099,3,1672319005),(79401,8,85100,3,1672319005),(79402,8,85101,3,1672319005),(79403,8,85102,3,1672319005),(79404,8,85103,3,1672319005),(79405,8,85104,3,1672319005),(79406,8,85105,3,1672319005),(79407,8,85106,3,1672319005),(79408,8,85107,3,1672319005),(79409,8,85108,3,1672319005),(79410,8,85109,3,1672319005),(79411,8,85110,3,1672319005),(79412,8,85111,3,1672319005),(79413,8,85112,3,1672319005),(79414,8,85113,3,1672319005),(79415,8,85114,3,1672319005),(79416,8,85115,3,1672319005),(79417,8,85116,3,1672319005),(79418,8,85117,3,1672319005),(79419,8,85118,3,1672319005),(79420,8,85119,3,1672319005),(79421,8,85120,3,1672319005),(79422,8,85121,3,1672319005),(79423,8,85122,3,1672319005),(79424,8,85123,3,1672319005),(79425,8,85124,3,1672319005),(79426,8,85125,3,1672319005),(79427,8,85126,3,1672319005),(79428,8,85127,3,1672319005),(79429,8,85128,3,1672319005),(79430,8,85129,3,1672319005),(79431,8,85130,3,1672319005),(79432,8,85131,3,1672319005),(79433,8,85132,3,1672319005),(79434,8,85133,3,1672319005),(79435,8,85134,3,1672319005),(79436,8,85135,3,1672319005),(79437,8,85136,3,1672319005),(79438,8,85137,3,1672319005),(79439,8,85138,3,1672319005),(79440,8,85139,3,1672319005),(79441,8,85140,3,1672319005),(79442,8,85141,3,1672319005),(79443,8,85142,3,1672319005),(79444,8,85143,3,1672319005),(79445,8,85144,3,1672319005),(79446,8,85145,3,1672319005),(79447,8,85146,3,1672319005),(79448,8,85147,3,1672319005),(79449,8,85148,3,1672319005),(79450,8,85149,3,1672319005),(79451,8,85150,3,1672319005),(79452,8,85151,3,1672319005),(79453,8,85152,3,1672319005),(79454,8,85153,3,1672319005),(79455,8,85154,3,1672319005),(79456,8,85155,3,1672319005),(79457,8,85156,3,1672319005),(79458,8,85157,3,1672319005),(79459,8,85158,3,1672319005),(79460,8,85159,3,1672319005),(79461,8,85160,3,1672319005),(79462,8,85161,3,1672319005),(79463,8,85162,3,1672319005),(79464,8,85163,3,1672319005),(79465,8,85164,3,1672319005),(79466,8,85165,3,1672319005),(79467,8,85166,3,1672319005),(79468,8,85167,3,1672319005),(79469,8,85168,3,1672319005),(79470,8,85169,3,1672319005),(79471,8,85170,3,1672319005),(79472,8,85171,3,1672319005),(79473,8,85172,3,1672319005),(79474,8,85173,3,1672319005),(79475,8,85174,3,1672319005),(79476,8,85175,3,1672319005),(79477,8,85176,3,1672319005),(79478,8,85177,3,1672319005),(79479,8,85178,3,1672319005),(79480,8,85179,3,1672319005),(79481,8,85180,3,1672319005),(79482,8,85181,3,1672319005),(79483,8,85182,3,1672319005),(79484,8,85183,3,1672319005),(79485,8,85184,3,1672319005),(79486,8,85185,3,1672319005),(79487,8,85186,3,1672319005),(79488,8,85187,3,1672319005),(79489,8,85188,3,1672319005),(79490,8,85189,3,1672319005),(79491,8,85190,3,1672319005),(79492,8,85192,3,1672319005),(79493,8,85194,3,1672319005),(79494,8,85195,3,1672319005),(79495,8,85196,3,1672319005),(79496,8,85197,3,1672319005),(79497,8,85198,3,1672319005),(79498,8,85199,3,1672319005),(79499,8,85200,3,1672319005),(79500,8,85201,3,1672319005),(79501,8,85202,3,1672319005),(79502,8,85203,3,1672319005),(79503,8,85204,3,1672319005),(79504,8,85205,3,1672319005),(79505,8,85206,3,1672319005),(79506,8,85207,3,1672319005),(79507,8,85208,3,1672319005),(79508,8,85209,3,1672319005),(79509,8,85210,3,1672319005),(79510,8,85211,3,1672319005),(79511,8,85212,3,1672319005),(79512,8,85213,3,1672319005),(79513,8,85214,3,1672319005),(79514,8,85215,3,1672319005),(79515,8,85216,3,1672319005),(79516,8,85217,3,1672319005),(79517,8,85218,3,1672319005),(79518,8,85219,3,1672319005),(79519,8,85220,3,1672319005),(79520,8,85221,3,1672319005),(79521,8,85222,3,1672319005),(79522,8,85223,3,1672319005),(79523,8,85224,3,1672319005),(79524,8,85225,3,1672319005),(79525,8,85226,3,1672319005),(79526,8,85227,3,1672319005),(79527,8,85228,3,1672319005),(79528,8,85229,3,1672319005),(79529,8,85230,3,1672319005),(79530,8,85231,3,1672319005),(79531,8,85232,3,1672319005),(79532,8,85233,3,1672319005),(79533,8,85234,3,1672319005),(79534,8,85235,3,1672319005),(79535,8,85236,3,1672319005),(79536,8,85237,3,1672319005),(79537,8,85238,3,1672319005),(79538,8,85239,3,1672319005),(79539,8,85240,3,1672319005),(79540,8,85241,3,1672319005),(79541,8,85242,3,1672319005),(79542,8,85243,3,1672319005),(79543,8,85244,3,1672319005),(79544,8,85245,3,1672319005),(79545,8,85246,3,1672319005),(79546,8,85247,3,1672319005),(79547,8,85248,3,1672319005),(79548,8,85249,3,1672319005),(79549,8,85250,3,1672319005),(79550,8,85251,3,1672319005),(79551,8,85252,3,1672319005),(79552,8,85253,3,1672319005),(79553,8,85254,3,1672319005),(79554,8,85255,3,1672319005),(79555,8,85256,3,1672319005),(79556,8,85257,3,1672319005),(79557,8,85258,3,1672319005),(79558,8,85259,3,1672319005),(79559,8,85260,3,1672319005),(79560,8,85261,3,1672319005),(79561,8,85262,3,1672319005),(79562,8,85263,3,1672319005),(79563,8,85264,3,1672319005),(79564,8,85265,3,1672319005),(79565,8,85266,3,1672319005),(79566,8,85267,3,1672319005),(79567,8,85268,3,1672319005),(79568,8,85269,3,1672319005),(79569,8,85270,3,1672319005),(79570,8,85271,3,1672319005),(79571,8,85272,3,1672319005),(79572,8,85273,3,1672319005),(79573,8,85274,3,1672319005),(79574,8,85275,3,1672319005),(79575,8,85276,3,1672319005),(79576,8,85277,3,1672319005),(79577,8,85278,3,1672319005),(79578,8,85279,3,1672319005),(79579,8,85280,3,1672319005),(79580,8,85281,3,1672319005),(79581,8,85282,3,1672319005),(79582,8,85283,3,1672319005),(79583,8,85284,3,1672319005),(79584,8,85285,3,1672319005),(79585,8,85286,3,1672319005),(79586,8,85287,3,1672319005),(79587,8,85288,3,1672319005),(79588,8,85289,3,1672319005),(79589,8,85290,3,1672319005),(79590,8,85291,3,1672319005),(79591,8,85292,3,1672319005),(79592,8,85293,3,1672319005),(79593,8,85294,3,1672319005),(79594,8,85295,3,1672319005),(79595,8,85296,3,1672319005),(79596,8,85297,3,1672319005),(79597,8,85298,3,1672319005),(79598,8,85299,3,1672319005),(79599,8,85300,3,1672319005),(79600,8,85301,3,1672319005),(79601,8,85302,3,1672319005),(79602,8,85303,3,1672319005),(79603,8,85304,3,1672319005),(79604,8,85305,3,1672319005),(79605,8,85306,3,1672319005),(79606,8,85307,3,1672319005),(79607,8,85308,3,1672319005),(79608,8,85309,3,1672319005),(79609,8,85310,3,1672319005),(79610,8,85311,3,1672319005),(79611,8,85312,3,1672319005),(79612,8,85313,3,1672319005),(79613,8,85314,3,1672319005),(79614,8,85315,3,1672319005),(79615,8,85316,3,1672319005),(79616,8,85317,3,1672319005),(79617,8,85318,3,1672319005),(79618,8,85319,3,1672319005),(79619,8,85320,3,1672319005),(79620,8,85321,3,1672319005),(79621,8,85322,3,1672319005),(79622,8,85323,3,1672319005),(79623,8,85324,3,1672319005),(79624,8,85325,3,1672319005),(79625,8,85326,3,1672319005),(79626,8,85327,3,1672319005),(79627,8,85328,3,1672319005),(79628,8,85329,3,1672319005),(79629,8,85330,3,1672319005),(79630,8,85331,3,1672319005),(79631,8,85332,3,1672319005),(79632,8,85333,3,1672319005),(79633,8,85334,3,1672319005),(79634,8,85335,3,1672319005),(79635,8,85336,3,1672319005),(79636,8,85337,3,1672319005),(79637,8,85338,3,1672319005),(79638,8,85339,3,1672319005),(79639,8,85340,3,1672319005),(79640,8,85341,3,1672319005),(79641,8,85342,3,1672319005),(79642,8,85343,3,1672319005),(79643,8,85344,3,1672319005),(79644,8,85345,3,1672319005),(79645,8,85346,3,1672319005),(79646,8,85347,3,1672319005),(79647,8,85348,3,1672319005),(79648,8,85349,3,1672319005),(79649,8,85350,3,1672319005),(79650,8,85351,3,1672319005),(79651,8,85352,3,1672319005),(79652,8,85353,3,1672319005),(79653,8,85354,3,1672319005),(79654,8,85355,3,1672319005),(79655,8,85356,3,1672319005),(79656,8,85357,3,1672319005),(79657,8,85358,3,1672319005),(79658,8,85359,3,1672319005),(79659,8,85360,3,1672319005),(79660,8,85361,3,1672319005),(79661,8,85362,3,1672319005),(79662,8,85363,3,1672319005),(79663,8,85364,3,1672319005),(79664,8,85365,3,1672319005),(79665,8,85366,3,1672319005),(79666,8,85367,3,1672319005),(79667,8,85368,3,1672319005),(79668,8,85369,3,1672319005),(79669,8,85370,3,1672319005),(79670,8,85371,3,1672319005),(79671,8,85372,3,1672319005),(79672,8,85373,3,1672319005),(79673,8,85374,3,1672319005),(79674,8,85375,3,1672319005),(79675,8,85376,3,1672319005),(79676,8,85377,3,1672319005),(79677,8,85378,3,1672319005),(79678,8,85379,3,1672319005),(79679,8,85380,3,1672319005),(79680,8,85381,3,1672319005),(79681,8,85382,3,1672319005),(79682,8,85383,3,1672319005),(79683,8,85384,3,1672319005),(79684,8,85385,3,1672319005),(79685,8,85386,3,1672319005),(79686,8,85387,3,1672319005),(79687,8,85388,3,1672319005),(79688,8,85389,3,1672319005),(79689,8,85390,3,1672319005),(79690,8,85391,3,1672319005),(79691,8,85392,3,1672319005),(79692,8,85393,3,1672319005),(79693,8,85394,3,1672319005),(79694,8,85395,3,1672319005),(79695,8,85396,3,1672319005),(79696,8,85397,3,1672319005),(79697,8,85398,3,1672319005),(79698,8,85399,3,1672319005),(79699,8,85400,3,1672319005),(79700,8,85401,3,1672319005),(79701,8,85402,3,1672319005),(79702,8,85403,3,1672319005),(79703,8,85404,3,1672319005),(79704,8,85405,3,1672319005),(79705,8,85406,3,1672319005),(79706,8,85407,3,1672319005),(79707,8,85408,3,1672319005),(79708,8,85409,3,1672319005),(79709,8,85410,3,1672319005),(79710,8,85411,3,1672319005),(79711,8,85412,3,1672319005),(79712,8,85413,3,1672319005),(79713,8,85414,3,1672319005),(79714,8,85415,3,1672319005),(79715,8,85416,3,1672319005),(79716,8,85417,3,1672319005),(79717,8,85418,3,1672319005),(79718,8,85419,3,1672319005),(79719,8,85420,3,1672319005),(79720,8,85421,3,1672319005),(79721,8,85422,3,1672319005),(79722,8,85423,3,1672319005),(79723,8,85424,3,1672319005),(79724,8,85425,3,1672319005),(79725,8,85426,3,1672319005),(79726,8,85427,3,1672319005),(79727,8,85428,3,1672319005),(79728,8,85429,3,1672319005),(79729,8,85430,3,1672319005),(79730,8,85431,3,1672319005),(79731,8,85432,3,1672319005),(79732,8,85433,3,1672319005),(79733,8,85434,3,1672319005),(79734,8,85435,3,1672319005),(79735,8,85436,3,1672319005),(79736,8,85437,3,1672319005),(79737,8,85438,3,1672319005),(79738,8,85439,3,1672319005),(79739,8,85440,3,1672319005),(79740,8,85441,3,1672319005),(79741,8,85442,3,1672319005),(79742,8,85443,3,1672319005),(79743,8,85444,3,1672319005),(79744,8,85445,3,1672319005),(79745,8,85446,3,1672319005),(79746,8,85447,3,1672319005),(79747,8,85448,3,1672319005),(79748,8,85449,3,1672319005),(79749,8,85450,3,1672319005),(79750,8,85451,3,1672319005),(79751,8,85452,3,1672319005),(79752,8,85453,3,1672319005),(79753,8,85454,3,1672319005),(79754,8,85455,3,1672319005),(79755,8,85456,3,1672319005),(79756,8,85457,3,1672319005),(79757,8,85458,3,1672319005),(79758,8,85459,3,1672319005),(79759,8,85460,3,1672319005),(79760,8,85461,3,1672319005),(79761,8,85462,3,1672319005),(79762,8,85463,3,1672319005),(79763,8,85464,3,1672319005),(79764,8,85465,3,1672319005),(79765,8,85466,3,1672319005),(79766,8,85467,3,1672319005),(79767,8,85468,3,1672319005),(79768,8,85469,3,1672319005),(79769,8,85470,3,1672319005),(79770,8,85471,3,1672319005),(79771,8,85472,3,1672319005),(79772,8,85473,3,1672319005),(79773,8,85474,3,1672319005),(79774,8,85475,3,1672319005),(79775,8,85476,3,1672319005),(79776,8,85477,3,1672319005),(79777,8,85478,3,1672319005),(79778,8,85479,3,1672319005),(79779,8,85480,3,1672319005),(79780,8,85481,3,1672319005),(79781,8,85482,3,1672319005),(79782,8,85483,3,1672319005),(79783,8,85484,3,1672319005),(79784,8,85485,3,1672319005),(79785,8,85486,3,1672319005),(79786,8,85487,3,1672319005),(79787,8,85488,3,1672319005),(79788,8,85489,3,1672319005),(79789,8,85490,3,1672319005),(79790,8,85491,3,1672319005),(79791,8,85492,3,1672319005),(79792,8,85493,3,1672319005),(79793,8,85494,3,1672319005),(79794,8,85495,3,1672319005),(79795,8,85496,3,1672319005),(79796,8,85497,3,1672319005),(79797,8,85498,3,1672319005),(79798,8,85499,3,1672319005),(79799,8,85500,3,1672319005),(79800,8,85501,3,1672319005),(79801,8,85502,3,1672319005),(79802,8,85503,3,1672319005),(79803,8,85504,3,1672319005),(79804,8,85505,3,1672319005),(79805,8,85506,3,1672319005),(79806,8,85507,3,1672319005),(79807,8,85508,3,1672319005),(79808,8,85509,3,1672319005),(79809,8,85510,3,1672319005),(79810,8,85511,3,1672319005),(79811,8,85512,3,1672319005),(79812,8,85513,3,1672319005),(79813,8,85514,3,1672319005),(79814,8,85515,3,1672319005),(79815,8,85516,3,1672319005),(79816,8,85517,3,1672319005),(79817,8,85518,3,1672319005),(79818,8,85519,3,1672319005),(79819,8,85520,3,1672319005),(79820,8,85521,3,1672319005),(79821,8,85522,3,1672319005),(79822,8,85523,3,1672319005),(79823,8,85524,3,1672319005),(79824,8,85525,3,1672319005),(79825,8,85526,3,1672319005),(79826,8,85527,3,1672319005),(79827,8,85528,3,1672319005),(79828,8,85529,3,1672319005),(79829,8,85530,3,1672319005),(79830,8,85531,3,1672319005),(79831,8,85532,3,1672319005),(79832,8,85533,3,1672319005),(79833,8,85534,3,1672319005),(79834,8,85535,3,1672319005),(79835,8,85536,3,1672319005),(79836,8,85537,3,1672319005),(79837,8,85538,3,1672319005),(79838,8,85539,3,1672319005),(79839,8,85540,3,1672319005),(79840,8,85541,3,1672319005),(79841,8,85542,3,1672319005),(79842,8,85543,3,1672319005),(79843,8,85544,3,1672319005),(79844,8,85545,3,1672319005),(79845,8,85546,3,1672319005),(79846,8,85547,3,1672319005),(79847,8,85548,3,1672319005),(79848,8,85549,3,1672319005),(79849,8,85550,3,1672319005),(79850,8,85551,3,1672319005),(79851,8,85552,3,1672319005),(79852,8,85553,3,1672319005),(79853,8,85554,3,1672319005),(79854,8,85555,3,1672319005),(79855,8,85556,3,1672319005),(79856,8,85557,3,1672319005),(79857,8,85558,3,1672319005),(79858,8,85559,3,1672319005),(79859,8,85560,3,1672319005),(79860,8,85561,3,1672319005),(79861,8,85562,3,1672319005),(79862,8,85563,3,1672319005),(79863,8,85564,3,1672319005),(79864,8,85565,3,1672319005),(79865,8,85566,3,1672319005),(79866,8,85567,3,1672319005),(79867,8,85568,3,1672319005),(79868,8,85569,3,1672319005),(79869,8,85570,3,1672319005),(79870,8,85571,3,1672319005),(79871,8,85572,3,1672319005),(79872,8,85573,3,1672319005),(79873,8,85574,3,1672319005),(79874,8,85575,3,1672319005),(79875,8,85576,3,1672319005),(79876,8,85577,3,1672319005),(79877,8,85578,3,1672319005),(79878,8,85579,3,1672319005),(79879,8,85580,3,1672319005),(79880,8,85581,3,1672319005),(79881,8,85582,3,1672319005),(79882,8,85583,3,1672319005),(79883,8,85584,3,1672319005),(79884,8,85585,3,1672319005),(79885,8,85586,3,1672319005),(79886,8,85587,3,1672319005),(79887,8,85588,3,1672319005),(79888,8,85589,3,1672319005),(79889,8,85590,3,1672319005),(79890,8,85591,3,1672319005),(79891,8,85592,3,1672319005),(79892,8,85593,3,1672319005),(79893,8,85594,3,1672319005),(79894,8,85595,3,1672319005),(79895,8,85596,3,1672319005),(79896,8,85597,3,1672319005),(79897,8,85598,3,1672319005),(79898,8,85599,3,1672319005),(79899,8,85600,3,1672319005),(79900,8,85601,3,1672319005),(79901,8,85602,3,1672319005),(79902,8,85603,3,1672319005),(79903,8,85604,3,1672319005),(79904,8,85605,3,1672319005),(79905,8,85606,3,1672319005),(79906,8,85607,3,1672319005),(79907,8,85608,3,1672319005),(79908,8,85609,3,1672319005),(79909,8,85610,3,1672319005),(79910,8,85611,3,1672319005),(79911,8,85612,3,1672319005),(79912,8,85613,3,1672319005),(79913,8,85614,3,1672319005),(79914,8,85615,3,1672319005),(79915,8,85616,3,1672319005),(79916,8,85617,3,1672319005),(79917,8,85618,3,1672319005),(79918,8,85619,3,1672319005),(79919,8,85620,3,1672319005),(79920,8,85621,3,1672319005),(79921,8,85622,3,1672319005),(79922,8,85623,3,1672319005),(79923,8,85624,3,1672319005),(79924,8,85625,3,1672319005),(79925,8,85626,3,1672319005),(79926,8,85627,3,1672319005),(79927,8,85628,3,1672319005),(79928,8,85629,3,1672319005),(79929,8,85630,3,1672319005),(79930,8,85631,3,1672319005),(79931,8,85632,3,1672319005),(79932,8,85633,3,1672319005),(79933,8,85634,3,1672319005),(79934,8,85635,3,1672319005),(79935,8,85636,3,1672319005),(79936,8,85637,3,1672319005),(79937,8,85638,3,1672319005),(79938,8,85639,3,1672319005),(79939,8,85640,3,1672319005),(79940,8,85641,3,1672319005),(79941,8,85642,3,1672319005),(79942,8,85643,3,1672319005),(79943,8,85644,3,1672319005),(79944,8,85645,3,1672319005),(79945,8,85646,3,1672319005),(79946,8,85647,3,1672319005),(79947,8,85648,3,1672319005),(79948,8,85649,3,1672319005),(79949,8,85650,3,1672319005),(79950,8,85651,3,1672319005),(79951,8,85652,3,1672319005),(79952,8,85653,3,1672319005),(79953,8,85654,3,1672319005),(79954,8,85655,3,1672319005),(79955,8,85656,3,1672319005),(79956,8,85657,3,1672319005),(79957,8,85658,3,1672319005),(79958,8,85659,3,1672319005),(79959,8,85660,3,1672319005),(79960,8,85661,3,1672319005),(79961,8,85662,3,1672319005),(79962,8,85663,3,1672319005),(79963,8,85664,3,1672319005),(79964,8,85665,3,1672319005),(79965,8,85666,3,1672319005),(79966,8,85667,3,1672319005),(79967,8,85668,3,1672319005),(79968,8,85669,3,1672319005),(79969,8,85670,3,1672319005),(79970,8,85671,3,1672319005),(79971,8,85672,3,1672319005),(79972,8,85673,3,1672319005),(79973,8,85674,3,1672319005),(79974,8,85675,3,1672319005),(79975,8,85676,3,1672319005),(79976,8,85677,3,1672319005),(79977,8,85678,3,1672319005),(79978,8,85679,3,1672319005),(79979,8,85680,3,1672319005),(79980,8,85681,3,1672319005),(79981,8,85682,3,1672319005),(79982,8,85683,3,1672319005),(79983,8,85684,3,1672319005),(79984,8,85685,3,1672319005),(79985,8,85686,3,1672319005),(79986,8,85687,3,1672319005),(79987,8,85688,3,1672319005),(79988,8,85689,3,1672319005),(79989,8,85690,3,1672319005),(79990,8,85691,3,1672319005),(79991,8,85692,3,1672319005),(79992,8,85693,3,1672319005),(79993,8,85694,3,1672319005),(79994,8,85695,3,1672319005),(79995,8,85696,3,1672319005),(79996,8,85697,3,1672319005),(79997,8,85698,3,1672319005),(79998,8,85699,3,1672319005),(79999,8,85700,3,1672319005),(80000,8,85701,3,1672319005),(80001,8,85702,3,1672319005),(80002,8,85703,3,1672319005),(80003,8,85704,3,1672319005),(80004,8,85705,3,1672319005),(80005,8,85706,3,1672319005),(80006,8,85707,3,1672319005),(80007,8,85708,3,1672319005),(80008,8,85709,3,1672319005),(80009,8,85710,3,1672319005),(80010,8,85711,3,1672319005),(80011,8,85712,3,1672319005),(80012,8,85713,3,1672319005),(80013,8,85714,3,1672319005),(80014,8,85715,3,1672319005),(80015,8,85716,3,1672319005),(80016,8,85717,3,1672319005),(80017,8,85718,3,1672319005),(80018,8,85719,3,1672319005),(80019,8,85720,3,1672319005),(80020,8,85721,3,1672319005),(80021,8,85722,3,1672319005),(80022,8,85723,3,1672319005),(80023,8,85724,3,1672319005),(80024,8,85725,3,1672319005),(80025,8,85726,3,1672319005),(80026,8,85727,3,1672319005),(80027,8,85728,3,1672319005),(80028,8,85729,3,1672319005),(80029,8,85730,3,1672319005),(80030,8,85731,3,1672319005),(80031,8,85732,3,1672319005),(80032,8,85733,3,1672319005),(80033,8,85734,3,1672319005),(80034,8,85735,3,1672319005),(80035,8,85736,3,1672319005),(80036,8,85737,3,1672319005),(80037,8,85738,3,1672319005),(80038,8,85739,3,1672319005),(80039,8,85740,3,1672319005),(80040,8,85741,3,1672319005),(80041,8,85742,3,1672319005),(80042,8,85743,3,1672319005),(80043,8,85744,3,1672319005),(80044,8,85745,3,1672319005),(80045,8,85746,3,1672319005),(80046,8,85747,3,1672319005),(80047,8,85748,3,1672319005),(80048,8,85749,3,1672319005),(80049,8,85750,3,1672319005),(80050,8,85751,3,1672319005),(80051,8,85752,3,1672319005),(80052,8,85753,3,1672319005),(80053,8,85754,3,1672319005),(80054,8,85755,3,1672319005),(80055,8,85756,3,1672319005),(80056,8,85757,3,1672319005),(80057,8,85758,3,1672319005),(80058,8,85759,3,1672319005),(80059,8,85760,3,1672319005),(80060,8,85761,3,1672319005),(80061,8,85762,3,1672319005),(80062,8,85763,3,1672319005),(80063,8,85764,3,1672319005),(80064,8,85765,3,1672319005),(80065,8,85766,3,1672319005),(80066,8,85767,3,1672319005),(80067,8,85768,3,1672319005),(80068,8,85769,3,1672319005),(80069,8,85770,3,1672319005),(80070,8,85771,3,1672319005),(80071,8,85772,3,1672319005),(80072,8,85773,3,1672319005),(80073,8,85774,3,1672319005),(80074,8,85775,3,1672319005),(80075,8,85776,3,1672319005),(80076,8,85777,3,1672319005),(80077,8,85778,3,1672319005),(80078,8,85779,3,1672319005),(80079,8,85780,3,1672319005),(80080,8,85781,3,1672319005),(80081,8,85782,3,1672319005),(80082,8,85783,3,1672319005),(80083,8,85784,3,1672319005),(80084,8,85785,3,1672319005),(80085,8,85786,3,1672319005),(80086,8,85787,3,1672319005),(80087,8,85788,3,1672319005),(80088,8,85789,3,1672319005),(80089,8,85790,3,1672319005),(80090,8,85791,3,1672319005),(80091,8,85792,3,1672319005),(80092,8,85793,3,1672319005),(80093,8,85794,3,1672319005),(80094,8,85795,3,1672319005),(80095,8,85796,3,1672319005),(80096,8,85797,3,1672319005),(80097,8,85798,3,1672319005),(80098,8,85799,3,1672319005),(80099,8,85800,3,1672319005),(80100,8,85801,3,1672319005),(80101,8,85802,3,1672319005),(80102,8,85803,3,1672319005),(80103,8,85804,3,1672319005),(80104,8,85805,3,1672319005),(80105,8,85806,3,1672319005),(80106,8,85807,3,1672319005),(80107,8,85808,3,1672319005),(80108,8,85809,3,1672319005),(80109,8,85810,3,1672319005),(80110,8,85811,3,1672319005),(80111,8,85812,3,1672319005),(80112,8,85813,3,1672319005),(80113,8,85814,3,1672319005),(80114,8,85815,3,1672319005),(80115,8,85816,3,1672319005),(80116,8,85817,3,1672319005),(80117,8,85818,3,1672319005),(80118,8,85819,3,1672319005),(80119,8,85820,3,1672319005),(80120,8,85821,3,1672319005),(80121,8,85822,3,1672319005),(80122,8,85823,3,1672319005),(80123,8,85824,3,1672319005),(80124,8,85825,3,1672319005),(80125,8,85826,3,1672319005),(80126,8,85827,3,1672319005),(80127,8,85828,3,1672319005),(80128,8,85829,3,1672319005),(80129,8,85830,3,1672319005),(80130,8,85831,3,1672319005),(80131,8,85832,3,1672319005),(80132,8,85833,3,1672319005),(80133,8,85834,3,1672319005),(80134,8,85835,3,1672319005),(80135,8,85836,3,1672319005),(80136,8,85837,3,1672319005),(80137,8,85838,3,1672319005),(80138,8,85839,3,1672319005),(80139,8,85840,3,1672319005),(80140,8,85841,3,1672319005),(80141,8,85842,3,1672319005),(80142,8,85843,3,1672319005),(80143,8,85844,3,1672319005),(80144,8,85845,3,1672319005),(80145,8,85846,3,1672319005),(80146,8,85847,3,1672319005),(80147,8,85848,3,1672319005),(80148,8,85849,3,1672319005),(80149,8,85850,3,1672319005),(80150,8,85851,3,1672319005),(80151,8,85852,3,1672319005),(80152,8,85853,3,1672319005),(80153,8,85854,3,1672319005),(80154,8,85855,3,1672319005),(80155,8,85856,3,1672319005),(80156,8,85857,3,1672319005),(80157,8,85858,3,1672319005),(80158,8,85859,3,1672319005),(80159,8,85860,3,1672319005),(80160,8,85861,3,1672319005),(80161,8,85862,3,1672319005),(80162,8,85863,3,1672319005),(80163,8,85864,3,1672319005),(80164,8,85865,3,1672319005),(80165,8,85866,3,1672319005),(80166,8,85867,3,1672319005),(80167,8,85868,3,1672319005),(80168,8,85869,3,1672319005),(80169,8,85870,3,1672319005),(80170,8,85871,3,1672319005),(80171,8,85872,3,1672319005),(80172,8,85873,3,1672319005),(80173,8,85874,3,1672319005),(80174,8,85875,3,1672319005),(80175,8,85876,3,1672319005),(80176,8,85877,3,1672319005),(80177,8,85878,3,1672319005),(80178,8,85879,3,1672319005),(80179,8,85880,3,1672319005),(80180,8,85881,3,1672319005),(80181,8,85882,3,1672319005),(80182,8,85883,3,1672319005),(80183,8,85884,3,1672319005),(80184,8,85885,3,1672319005),(80185,8,85886,3,1672319005),(80186,8,85887,3,1672319005),(80187,8,85888,3,1672319005),(80188,8,85889,3,1672319005),(80189,8,85890,3,1672319005),(80190,8,85891,3,1672319005),(80191,8,85892,3,1672319005),(80192,8,85893,3,1672319005),(80193,8,85894,3,1672319005),(80194,8,85895,3,1672319005),(80195,8,85896,3,1672319005),(80196,8,85897,3,1672319005),(80197,8,85898,3,1672319005),(80198,8,85899,3,1672319005),(80199,8,85900,3,1672319005),(80200,8,85901,3,1672319005),(80201,8,85902,3,1672319005),(80202,8,85903,3,1672319005),(80203,8,85904,3,1672319005),(80204,8,85905,3,1672319005),(80205,8,85906,3,1672319005),(80206,8,85907,3,1672319005),(80207,8,85908,3,1672319005),(80208,8,85909,3,1672319005),(80209,8,85910,3,1672319005),(80210,8,85911,3,1672319005),(80211,8,85912,3,1672319005),(80212,8,85913,3,1672319005),(80213,8,85914,3,1672319005),(80214,8,85915,3,1672319005),(80215,8,85916,3,1672319005),(80216,8,85917,3,1672319005),(80217,8,85918,3,1672319005),(80218,8,85919,3,1672319005),(80219,8,85920,3,1672319005),(80220,8,85921,3,1672319005),(80221,8,85922,3,1672319005),(80222,8,85923,3,1672319005),(80223,8,85924,3,1672319005),(80224,8,85925,3,1672319005),(80225,8,85926,3,1672319005),(80226,8,85927,3,1672319005),(80227,8,85928,3,1672319005),(80228,8,85929,3,1672319005),(80229,8,85930,3,1672319005),(80230,8,85931,3,1672319005),(80231,8,85932,3,1672319005),(80232,8,85933,3,1672319005),(80233,8,85934,3,1672319005),(80234,8,85935,3,1672319005),(80235,8,85936,3,1672319005),(80236,8,85937,3,1672319005),(80237,8,85938,3,1672319005),(80238,8,85939,3,1672319005),(80239,8,85940,3,1672319005),(80240,8,85941,3,1672319005),(80241,8,85942,3,1672319005),(80242,8,85943,3,1672319005),(80243,8,85944,3,1672319005),(80244,8,85945,3,1672319005),(80245,8,85946,3,1672319005),(80246,8,85947,3,1672319005),(80247,8,85948,3,1672319005),(80248,8,85949,3,1672319005),(80249,8,85950,3,1672319005),(80250,8,85951,3,1672319005),(80251,8,85952,3,1672319005),(80252,8,85953,3,1672319005),(80253,8,85954,3,1672319005),(80254,8,85955,3,1672319005),(80255,8,85956,3,1672319005),(80256,8,85957,3,1672319005),(80257,8,85958,3,1672319005),(80258,8,85959,3,1672319005),(80259,8,85960,3,1672319005),(80260,8,85961,3,1672319005),(80261,8,85962,3,1672319005),(80262,8,85963,3,1672319005),(80263,8,85964,3,1672319005),(80264,8,85965,3,1672319005),(80265,8,85966,3,1672319005),(80266,8,85967,3,1672319005),(80267,8,85968,3,1672319005),(80268,8,85975,3,1672319005),(80269,8,85976,3,1672319005),(80270,8,85994,3,1672319005),(80271,8,85995,3,1672319005),(80272,8,85996,3,1672319005),(80273,8,85997,3,1672319005),(80274,8,85998,3,1672319005),(80275,8,85999,3,1672319005),(80276,8,86000,3,1672319005),(80277,8,86001,3,1672319005),(80278,8,86002,3,1672319005),(80279,8,86003,3,1672319005),(80280,8,86004,3,1672319005),(80281,8,86005,3,1672319005),(80282,8,86006,3,1672319005),(80283,8,86007,3,1672319005),(80284,8,86008,3,1672319005),(80285,8,86026,3,1672319005),(80286,8,86027,3,1672319005),(80287,8,86028,3,1672319005),(80288,8,86029,3,1672319005),(80289,8,86030,3,1672319005),(80290,8,86031,3,1672319005),(80291,8,86032,3,1672319005),(80292,8,86033,3,1672319005),(80293,8,86034,3,1672319005),(80294,8,86035,3,1672319005),(80295,8,86036,3,1672319005),(80296,8,86037,3,1672319005),(80297,8,86038,3,1672319005),(80298,8,86039,3,1672319005),(80299,8,86040,3,1672319005),(80300,8,86058,3,1672319005),(80301,8,86059,3,1672319005),(80302,8,86060,3,1672319005),(80303,8,86061,3,1672319005),(80304,8,86062,3,1672319005),(80305,8,86063,3,1672319005),(80306,8,86064,3,1672319005),(80307,8,86065,3,1672319005),(80308,8,86066,3,1672319005),(80309,8,86067,3,1672319005),(80310,8,86068,3,1672319005),(80311,8,86069,3,1672319005),(80312,8,86070,3,1672319005),(80313,8,86071,3,1672319005),(80314,8,86072,3,1672319005),(80315,8,86090,3,1672319005),(80316,8,86091,3,1672319005),(80317,8,86092,3,1672319005),(80318,8,86093,3,1672319005),(80319,8,86094,3,1672319005),(80320,8,86095,3,1672319005),(80321,8,86096,3,1672319005),(80322,8,86097,3,1672319005),(80323,8,86098,3,1672319005),(80324,8,86099,3,1672319005),(80325,8,86100,3,1672319005),(80326,8,86101,3,1672319005),(80327,8,86102,3,1672319005),(80328,8,86103,3,1672319005),(80329,8,86104,3,1672319005),(80330,8,86122,3,1672319005),(80331,8,86123,3,1672319005),(80332,8,86124,3,1672319005),(80333,8,86125,3,1672319005),(80334,8,86126,3,1672319005),(80335,8,86127,3,1672319005),(80336,8,86128,3,1672319005),(80337,8,86129,3,1672319005),(80338,8,86130,3,1672319005),(80339,8,86131,3,1672319005),(80340,8,86132,3,1672319005),(80341,8,86133,3,1672319005),(80342,8,86134,3,1672319005),(80343,8,86135,3,1672319005),(80344,8,86136,3,1672319005),(80345,8,86154,3,1672319005),(80346,8,86155,3,1672319005),(80347,8,86156,3,1672319005),(80348,8,86157,3,1672319005),(80349,8,86158,3,1672319005),(80350,8,86159,3,1672319005),(80351,8,86160,3,1672319005),(80352,8,86161,3,1672319005),(80353,8,86162,3,1672319005),(80354,8,86163,3,1672319005),(80355,8,86164,3,1672319005),(80356,8,86165,3,1672319005),(80357,8,86166,3,1672319005),(80358,8,86167,3,1672319005),(80359,8,86168,3,1672319005),(80360,8,86186,3,1672319005),(80361,8,86187,3,1672319005),(80362,8,86188,3,1672319005),(80363,8,86189,3,1672319005),(80364,8,86190,3,1672319005),(80365,8,86191,3,1672319005),(80366,8,86192,3,1672319005),(80367,8,86193,3,1672319005),(80368,8,86194,3,1672319005),(80369,8,86195,3,1672319005),(80370,8,86196,3,1672319005),(80371,8,86197,3,1672319005),(80372,8,86198,3,1672319005),(80373,8,86199,3,1672319005),(80374,8,86200,3,1672319005),(80375,8,86218,3,1672319005),(80376,8,86219,3,1672319005),(80377,8,86220,3,1672319005),(80378,8,86221,3,1672319005),(80379,8,86222,3,1672319005),(80380,8,86223,3,1672319005),(80381,8,86224,3,1672319005),(80382,8,86225,3,1672319005),(80383,8,86226,3,1672319005),(80384,8,86227,3,1672319005),(80385,8,86228,3,1672319005),(80386,8,86229,3,1672319005),(80387,8,86230,3,1672319005),(80388,8,86231,3,1672319005),(80389,8,86232,3,1672319005),(80390,8,86250,3,1672319005),(80391,8,86251,3,1672319005),(80392,8,86252,3,1672319005),(80393,8,86253,3,1672319005),(80394,8,86254,3,1672319005),(80395,8,86255,3,1672319005),(80396,8,86256,3,1672319005),(80397,8,86257,3,1672319005),(80398,8,86258,3,1672319005),(80399,8,86259,3,1672319005),(80400,8,86260,3,1672319005),(80401,8,86261,3,1672319005),(80402,8,86262,3,1672319005),(80403,8,86263,3,1672319005),(80404,8,86264,3,1672319005),(80405,8,86282,3,1672319005),(80406,8,86283,3,1672319005),(80407,8,86284,3,1672319005),(80408,8,86285,3,1672319005),(80409,8,86286,3,1672319005),(80410,8,86287,3,1672319005),(80411,8,86288,3,1672319005),(80412,8,86289,3,1672319005),(80413,8,86290,3,1672319005),(80414,8,86291,3,1672319005),(80415,8,86292,3,1672319005),(80416,8,86293,3,1672319005),(80417,8,86294,3,1672319005),(80418,8,86295,3,1672319005),(80419,8,86296,3,1672319005),(80420,8,86314,3,1672319005),(80421,8,86315,3,1672319005),(80422,8,86316,3,1672319005),(80423,8,86317,3,1672319005),(80424,8,86318,3,1672319005),(80425,8,86319,3,1672319005),(80426,8,86320,3,1672319005),(80427,8,86321,3,1672319005),(80428,8,86322,3,1672319005),(80429,8,86323,3,1672319005),(80430,8,86324,3,1672319005),(80431,8,86325,3,1672319005),(80432,8,86326,3,1672319005),(80433,8,86327,3,1672319005),(80434,8,86328,3,1672319005),(80435,8,86346,3,1672319005),(80436,8,86347,3,1672319005),(80437,8,86348,3,1672319005),(80438,8,86349,3,1672319005),(80439,8,86350,3,1672319005),(80440,8,86351,3,1672319005),(80441,8,86352,3,1672319005),(80442,8,86353,3,1672319005),(80443,8,86354,3,1672319005),(80444,8,86355,3,1672319005),(80445,8,86356,3,1672319005),(80446,8,86357,3,1672319005),(80447,8,86358,3,1672319005),(80448,8,86359,3,1672319005),(80449,8,86360,3,1672319005),(80450,8,86378,3,1672319005),(80451,8,86379,3,1672319005),(80452,8,86380,3,1672319005),(80453,8,86381,3,1672319005),(80454,8,86382,3,1672319005),(80455,8,86383,3,1672319005),(80456,8,86384,3,1672319005),(80457,8,86385,3,1672319005),(80458,8,86386,3,1672319005),(80459,8,86387,3,1672319005),(80460,8,86388,3,1672319005),(80461,8,86389,3,1672319005),(80462,8,86390,3,1672319005),(80463,8,86391,3,1672319005),(80464,8,86392,3,1672319005),(80465,8,86410,3,1672319005),(80466,8,86411,3,1672319005),(80467,8,86412,3,1672319005),(80468,8,86413,3,1672319005),(80469,8,86414,3,1672319005),(80470,8,86415,3,1672319005),(80471,8,86416,3,1672319005),(80472,8,86417,3,1672319005),(80473,8,86418,3,1672319005),(80474,8,86419,3,1672319005),(80475,8,86420,3,1672319005),(80476,8,86421,3,1672319005),(80477,8,86422,3,1672319005),(80478,8,86423,3,1672319005),(80479,8,86424,3,1672319005),(80480,8,86442,3,1672319005),(80481,8,86443,3,1672319005),(80482,8,86444,3,1672319005),(80483,8,86445,3,1672319005),(80484,8,86446,3,1672319005),(80485,8,86447,3,1672319005),(80486,8,86448,3,1672319005),(80487,8,86449,3,1672319005),(80488,8,86450,3,1672319005),(80489,8,86451,3,1672319005),(80490,8,86452,3,1672319005),(80491,8,86453,3,1672319005),(80492,8,86454,3,1672319005),(80493,8,86455,3,1672319005),(80494,8,86456,3,1672319005),(80495,8,86474,3,1672319005),(80496,8,86475,3,1672319005),(80497,8,86476,3,1672319005),(80498,8,86477,3,1672319005),(80499,8,86478,3,1672319005),(80500,8,86479,3,1672319005),(80501,8,86480,3,1672319005),(80502,8,86481,3,1672319005),(80503,8,86482,3,1672319005),(80504,8,86483,3,1672319005),(80505,8,86484,3,1672319005),(80506,8,86485,3,1672319005),(80507,8,86486,3,1672319005),(80508,8,86487,3,1672319005),(80509,8,86488,3,1672319005),(80510,8,86506,3,1672319005),(80511,8,86507,3,1672319005),(80512,8,86508,3,1672319005),(80513,8,86509,3,1672319005),(80514,8,86510,3,1672319005),(80515,8,86511,3,1672319005),(80516,8,86512,3,1672319005),(80517,8,86513,3,1672319005),(80518,8,86514,3,1672319005),(80519,8,86515,3,1672319005),(80520,8,86516,3,1672319005),(80521,8,86517,3,1672319005),(80522,8,86518,3,1672319005),(80523,8,86519,3,1672319005),(80524,8,86520,3,1672319005),(80525,8,86538,3,1672319005),(80526,8,86539,3,1672319005),(80527,8,86540,3,1672319005),(80528,8,86541,3,1672319005),(80529,8,86542,3,1672319005),(80530,8,86543,3,1672319005),(80531,8,86544,3,1672319005),(80532,8,86545,3,1672319005),(80533,8,86546,3,1672319005),(80534,8,86547,3,1672319005),(80535,8,86548,3,1672319005),(80536,8,86549,3,1672319005),(80537,8,86550,3,1672319005),(80538,8,86551,3,1672319005),(80539,8,86552,3,1672319005),(80540,8,86570,3,1672319005),(80541,8,86571,3,1672319005),(80542,8,86572,3,1672319005),(80543,8,86573,3,1672319005),(80544,8,86574,3,1672319005),(80545,8,86575,3,1672319005),(80546,8,86576,3,1672319005),(80547,8,86577,3,1672319005),(80548,8,86578,3,1672319005),(80549,8,86579,3,1672319005),(80550,8,86580,3,1672319005),(80551,8,86581,3,1672319005),(80552,8,86582,3,1672319005),(80553,8,86583,3,1672319005),(80554,8,86584,3,1672319005),(80555,8,86602,3,1672319005),(80556,8,86603,3,1672319005),(80557,8,86604,3,1672319005),(80558,8,86605,3,1672319005),(80559,8,86606,3,1672319005),(80560,8,86607,3,1672319005),(80561,8,86608,3,1672319005),(80562,8,86609,3,1672319005),(80563,8,86610,3,1672319005),(80564,8,86611,3,1672319005),(80565,8,86612,3,1672319005),(80566,8,86613,3,1672319005),(80567,8,86614,3,1672319005),(80568,8,86615,3,1672319005),(80569,8,86616,3,1672319005),(80570,8,86634,3,1672319005),(80571,8,86635,3,1672319005),(80572,8,86636,3,1672319005),(80573,8,86637,3,1672319005),(80574,8,86638,3,1672319005),(80575,8,86639,3,1672319005),(80576,8,86640,3,1672319005),(80577,8,86641,3,1672319005),(80578,8,86642,3,1672319005),(80579,8,86643,3,1672319005),(80580,8,86644,3,1672319005),(80581,8,86645,3,1672319005),(80582,8,86646,3,1672319005),(80583,8,86647,3,1672319005),(80584,8,86648,3,1672319005),(80585,8,86666,3,1672319005),(80586,8,86667,3,1672319005),(80587,8,86668,3,1672319005),(80588,8,86669,3,1672319005),(80589,8,86670,3,1672319005),(80590,8,86671,3,1672319005),(80591,8,86672,3,1672319005),(80592,8,86673,3,1672319005),(80593,8,86674,3,1672319005),(80594,8,86675,3,1672319005),(80595,8,86676,3,1672319005),(80596,8,86677,3,1672319005),(80597,8,86678,3,1672319005),(80598,8,86679,3,1672319005),(80599,8,86680,3,1672319005),(80600,8,86698,3,1672319005),(80601,8,86699,3,1672319005),(80602,8,86700,3,1672319005),(80603,8,86701,3,1672319005),(80604,8,86702,3,1672319005),(80605,8,86703,3,1672319005),(80606,8,86704,3,1672319005),(80607,8,86705,3,1672319005),(80608,8,86706,3,1672319005),(80609,8,86707,3,1672319005),(80610,8,86708,3,1672319005),(80611,8,86709,3,1672319005),(80612,8,86710,3,1672319005),(80613,8,86711,3,1672319005),(80614,8,86712,3,1672319005),(80615,8,86730,3,1672319005),(80616,8,86731,3,1672319005),(80617,8,86732,3,1672319005),(80618,8,86733,3,1672319005),(80619,8,86734,3,1672319005),(80620,8,86735,3,1672319005),(80621,8,86736,3,1672319005),(80622,8,86737,3,1672319005),(80623,8,86738,3,1672319005),(80624,8,86739,3,1672319005),(80625,8,86740,3,1672319005),(80626,8,86741,3,1672319005),(80627,8,86742,3,1672319005),(80628,8,86743,3,1672319005),(80629,8,86744,3,1672319005),(80630,8,86762,3,1672319005),(80631,8,86763,3,1672319005),(80632,8,86764,3,1672319005),(80633,8,86765,3,1672319005),(80634,8,86766,3,1672319005),(80635,8,86767,3,1672319005),(80636,8,86768,3,1672319005),(80637,8,86769,3,1672319005),(80638,8,86770,3,1672319005),(80639,8,86771,3,1672319005),(80640,8,86772,3,1672319005),(80641,8,86773,3,1672319005),(80642,8,86774,3,1672319005),(80643,8,86775,3,1672319005),(80644,8,86776,3,1672319005),(80645,8,86794,3,1672319005),(80646,8,86795,3,1672319005),(80647,8,86796,3,1672319005),(80648,8,86797,3,1672319005),(80649,8,86798,3,1672319005),(80650,8,86799,3,1672319005),(80651,8,86800,3,1672319005),(80652,8,86801,3,1672319005),(80653,8,86802,3,1672319005),(80654,8,86803,3,1672319005),(80655,8,86804,3,1672319005),(80656,8,86805,3,1672319005),(80657,8,86806,3,1672319005),(80658,8,86807,3,1672319005),(80659,8,86808,3,1672319005),(80660,8,86826,3,1672319005),(80661,8,86827,3,1672319005),(80662,8,86828,3,1672319005),(80663,8,86829,3,1672319005),(80664,8,86830,3,1672319005),(80665,8,86831,3,1672319005),(80666,8,86832,3,1672319005),(80667,8,86833,3,1672319005),(80668,8,86834,3,1672319005),(80669,8,86835,3,1672319005),(80670,8,86836,3,1672319005),(80671,8,86837,3,1672319005),(80672,8,86838,3,1672319005),(80673,8,86839,3,1672319005),(80674,8,86840,3,1672319005),(80675,8,86858,3,1672319005),(80676,8,86859,3,1672319005),(80677,8,86860,3,1672319005),(80678,8,86861,3,1672319005),(80679,8,86862,3,1672319005),(80680,8,86863,3,1672319005),(80681,8,86864,3,1672319005),(80682,8,86865,3,1672319005),(80683,8,86866,3,1672319005),(80684,8,86867,3,1672319005),(80685,8,86868,3,1672319005),(80686,8,86869,3,1672319005),(80687,8,86870,3,1672319005),(80688,8,86871,3,1672319005),(80689,8,86872,3,1672319005),(80690,8,86890,3,1672319005),(80691,8,86891,3,1672319005),(80692,8,86892,3,1672319005),(80693,8,86893,3,1672319005),(80694,8,86894,3,1672319005),(80695,8,86895,3,1672319005),(80696,8,86896,3,1672319005),(80697,8,86897,3,1672319005),(80698,8,86898,3,1672319005),(80699,8,86899,3,1672319005),(80700,8,86900,3,1672319005),(80701,8,86901,3,1672319005),(80702,8,86902,3,1672319005),(80703,8,86903,3,1672319005),(80704,8,86904,3,1672319005),(80705,8,86922,3,1672319005),(80706,8,86923,3,1672319005),(80707,8,86924,3,1672319005),(80708,8,86925,3,1672319005),(80709,8,86926,3,1672319005),(80710,8,86927,3,1672319005),(80711,8,86928,3,1672319005),(80712,8,86929,3,1672319005),(80713,8,86930,3,1672319005),(80714,8,86931,3,1672319005),(80715,8,86932,3,1672319005),(80716,8,86933,3,1672319005),(80717,8,86934,3,1672319005),(80718,8,86935,3,1672319005),(80719,8,86936,3,1672319005),(80720,8,86954,3,1672319005),(80721,8,86955,3,1672319005),(80722,8,86956,3,1672319005),(80723,8,86957,3,1672319005),(80724,8,86958,3,1672319005),(80725,8,86959,3,1672319005),(80726,8,86960,3,1672319005),(80727,8,86961,3,1672319005),(80728,8,86962,3,1672319005),(80729,8,86963,3,1672319005),(80730,8,86964,3,1672319005),(80731,8,86965,3,1672319005),(80732,8,86966,3,1672319005),(80733,8,86967,3,1672319005),(80734,8,86968,3,1672319005),(80735,8,86986,3,1672319005),(80736,8,86987,3,1672319005),(80737,8,86988,3,1672319005),(80738,8,86989,3,1672319005),(80739,8,86990,3,1672319005),(80740,8,86991,3,1672319005),(80741,8,86992,3,1672319005),(80742,8,86993,3,1672319005),(80743,8,86994,3,1672319005),(80744,8,86995,3,1672319005),(80745,8,86996,3,1672319005),(80746,8,86997,3,1672319005),(80747,8,86998,3,1672319005),(80748,8,86999,3,1672319005),(80749,8,87000,3,1672319005),(80750,8,87018,3,1672319005),(80751,8,87019,3,1672319005),(80752,8,87020,3,1672319005),(80753,8,87021,3,1672319005),(80754,8,87022,3,1672319005),(80755,8,87023,3,1672319005),(80756,8,87024,3,1672319005),(80757,8,87025,3,1672319005),(80758,8,87026,3,1672319005),(80759,8,87027,3,1672319005),(80760,8,87028,3,1672319005),(80761,8,87029,3,1672319005),(80762,8,87030,3,1672319005),(80763,8,87031,3,1672319005),(80764,8,87032,3,1672319005),(80765,8,87050,3,1672319005),(80766,8,87051,3,1672319005),(80767,8,87052,3,1672319005),(80768,8,87053,3,1672319005),(80769,8,87054,3,1672319005),(80770,8,87055,3,1672319005),(80771,8,87056,3,1672319005),(80772,8,87057,3,1672319005),(80773,8,87058,3,1672319005),(80774,8,87059,3,1672319005),(80775,8,87060,3,1672319005),(80776,8,87061,3,1672319005),(80777,8,87062,3,1672319005),(80778,8,87063,3,1672319005),(80779,8,87064,3,1672319005),(80780,8,87082,3,1672319005),(80781,8,87083,3,1672319005),(80782,8,87084,3,1672319005),(80783,8,87085,3,1672319005),(80784,8,87086,3,1672319005),(80785,8,87087,3,1672319005),(80786,8,87088,3,1672319005),(80787,8,87089,3,1672319005),(80788,8,87090,3,1672319005),(80789,8,87091,3,1672319005),(80790,8,87092,3,1672319005),(80791,8,87093,3,1672319005),(80792,8,87094,3,1672319005),(80793,8,87095,3,1672319005),(80794,8,87096,3,1672319005),(80795,8,87114,3,1672319005),(80796,8,87115,3,1672319005),(80797,8,87116,3,1672319005),(80798,8,87117,3,1672319005),(80799,8,87118,3,1672319005),(80800,8,87119,3,1672319005),(80801,8,87120,3,1672319005),(80802,8,87121,3,1672319005),(80803,8,87122,3,1672319005),(80804,8,87123,3,1672319005),(80805,8,87124,3,1672319005),(80806,8,87125,3,1672319005),(80807,8,87126,3,1672319005),(80808,8,87127,3,1672319005),(80809,8,87128,3,1672319005),(80810,8,87146,3,1672319005),(80811,8,87147,3,1672319005),(80812,8,87148,3,1672319005),(80813,8,87149,3,1672319005),(80814,8,87150,3,1672319005),(80815,8,87151,3,1672319005),(80816,8,87152,3,1672319005),(80817,8,87153,3,1672319005),(80818,8,87154,3,1672319005),(80819,8,87155,3,1672319005),(80820,8,87156,3,1672319005),(80821,8,87157,3,1672319005),(80822,8,87158,3,1672319005),(80823,8,87159,3,1672319005),(80824,8,87160,3,1672319005),(80825,8,87178,3,1672319005),(80826,8,87179,3,1672319005),(80827,8,87180,3,1672319005),(80828,8,87181,3,1672319005),(80829,8,87182,3,1672319005),(80830,8,87183,3,1672319005),(80831,8,87184,3,1672319005),(80832,8,87185,3,1672319005),(80833,8,87186,3,1672319005),(80834,8,87187,3,1672319005),(80835,8,87188,3,1672319005),(80836,8,87189,3,1672319005),(80837,8,87190,3,1672319005),(80838,8,87191,3,1672319005),(80839,8,87192,3,1672319005),(80840,8,87210,3,1672319005),(80841,8,87211,3,1672319005),(80842,8,87212,3,1672319005),(80843,8,87213,3,1672319005),(80844,8,87214,3,1672319005),(80845,8,87215,3,1672319005),(80846,8,87216,3,1672319005),(80847,8,87217,3,1672319005),(80848,8,87218,3,1672319005),(80849,8,87219,3,1672319005),(80850,8,87220,3,1672319005),(80851,8,87221,3,1672319005),(80852,8,87222,3,1672319005),(80853,8,87223,3,1672319005),(80854,8,87224,3,1672319005),(80855,8,87242,3,1672319005),(80856,8,87243,3,1672319005),(80857,8,87244,3,1672319005),(80858,8,87245,3,1672319005),(80859,8,87246,3,1672319005),(80860,8,87247,3,1672319005),(80861,8,87248,3,1672319005),(80862,8,87249,3,1672319005),(80863,8,87250,3,1672319005),(80864,8,87251,3,1672319005),(80865,8,87252,3,1672319005),(80866,8,87253,3,1672319005),(80867,8,87254,3,1672319005),(80868,8,87255,3,1672319005),(80869,8,87256,3,1672319005),(80870,8,87274,3,1672319005),(80871,8,87275,3,1672319005),(80872,8,87276,3,1672319005),(80873,8,87277,3,1672319005),(80874,8,87278,3,1672319005),(80875,8,87279,3,1672319005),(80876,8,87280,3,1672319005),(80877,8,87281,3,1672319005),(80878,8,87282,3,1672319005),(80879,8,87283,3,1672319005),(80880,8,87284,3,1672319005),(80881,8,87285,3,1672319005),(80882,8,87286,3,1672319005),(80883,8,87287,3,1672319005),(80884,8,87288,3,1672319005),(80885,8,87306,3,1672319005),(80886,8,87307,3,1672319005),(80887,8,87308,3,1672319005),(80888,8,87309,3,1672319005),(80889,8,87310,3,1672319005),(80890,8,87311,3,1672319005),(80891,8,87312,3,1672319005),(80892,8,87313,3,1672319005),(80893,8,87314,3,1672319005),(80894,8,87315,3,1672319005),(80895,8,87316,3,1672319005),(80896,8,87317,3,1672319005),(80897,8,87318,3,1672319005),(80898,8,87319,3,1672319005),(80899,8,87320,3,1672319005),(80900,8,87338,3,1672319005),(80901,8,87339,3,1672319005),(80902,8,87340,3,1672319005),(80903,8,87341,3,1672319005),(80904,8,87342,3,1672319005),(80905,8,87343,3,1672319005),(80906,8,87344,3,1672319005),(80907,8,87345,3,1672319005),(80908,8,87346,3,1672319005),(80909,8,87347,3,1672319005),(80910,8,87348,3,1672319005),(80911,8,87349,3,1672319005),(80912,8,87350,3,1672319005),(80913,8,87351,3,1672319005),(80914,8,87352,3,1672319005),(80915,8,87370,3,1672319005),(80916,8,87371,3,1672319005),(80917,8,87372,3,1672319005),(80918,8,87373,3,1672319005),(80919,8,87374,3,1672319005),(80920,8,87375,3,1672319005),(80921,8,87376,3,1672319005),(80922,8,87377,3,1672319005),(80923,8,87378,3,1672319005),(80924,8,87379,3,1672319005),(80925,8,87380,3,1672319005),(80926,8,87381,3,1672319005),(80927,8,87382,3,1672319005),(80928,8,87383,3,1672319005),(80929,8,87384,3,1672319005),(80930,8,87402,3,1672319005),(80931,8,87403,3,1672319005),(80932,8,87404,3,1672319005),(80933,8,87405,3,1672319005),(80934,8,87406,3,1672319005),(80935,8,87407,3,1672319005),(80936,8,87408,3,1672319005),(80937,8,87409,3,1672319005),(80938,8,87410,3,1672319005),(80939,8,87411,3,1672319005),(80940,8,87412,3,1672319005),(80941,8,87413,3,1672319005),(80942,8,87414,3,1672319005),(80943,8,87415,3,1672319005),(80944,8,87416,3,1672319005),(80945,8,87434,3,1672319005),(80946,8,87435,3,1672319005),(80947,8,87436,3,1672319005),(80948,8,87437,3,1672319005),(80949,8,87438,3,1672319005),(80950,8,87439,3,1672319005),(80951,8,87440,3,1672319005),(80952,8,87441,3,1672319005),(80953,8,87442,3,1672319005),(80954,8,87443,3,1672319005),(80955,8,87444,3,1672319005),(80956,8,87445,3,1672319005),(80957,8,87446,3,1672319005),(80958,8,87447,3,1672319005),(80959,8,87448,3,1672319005),(80960,8,87466,3,1672319005),(80961,8,87467,3,1672319005),(80962,8,87468,3,1672319005),(80963,8,87469,3,1672319005),(80964,8,87470,3,1672319005),(80965,8,87471,3,1672319005),(80966,8,87472,3,1672319005),(80967,8,87473,3,1672319005),(80968,8,87474,3,1672319005),(80969,8,87475,3,1672319005),(80970,8,87476,3,1672319005),(80971,8,87477,3,1672319005),(80972,8,87478,3,1672319005),(80973,8,87479,3,1672319005),(80974,8,87480,3,1672319005),(80975,8,87498,3,1672319005),(80976,8,87499,3,1672319005),(80977,8,87500,3,1672319005),(80978,8,87501,3,1672319005),(80979,8,87502,3,1672319005),(80980,8,87503,3,1672319005),(80981,8,87504,3,1672319005),(80982,8,87505,3,1672319005),(80983,8,87506,3,1672319005),(80984,8,87507,3,1672319005),(80985,8,87508,3,1672319005),(80986,8,87509,3,1672319005),(80987,8,87510,3,1672319005),(80988,8,87511,3,1672319005),(80989,8,87512,3,1672319005),(80990,8,87530,3,1672319005),(80991,8,87531,3,1672319005),(80992,8,87532,3,1672319005),(80993,8,87533,3,1672319005),(80994,8,87534,3,1672319005),(80995,8,87535,3,1672319005),(80996,8,87536,3,1672319005),(80997,8,87537,3,1672319005),(80998,8,87538,3,1672319005),(80999,8,87539,3,1672319005),(81000,8,87540,3,1672319005),(81001,8,87541,3,1672319005),(81002,8,87542,3,1672319005),(81003,8,87543,3,1672319005),(81004,8,87544,3,1672319005),(81005,8,87562,3,1672319005),(81006,8,87563,3,1672319005),(81007,8,87564,3,1672319005),(81008,8,87565,3,1672319005),(81009,8,87566,3,1672319005),(81010,8,87567,3,1672319005),(81011,8,87568,3,1672319005),(81012,8,87569,3,1672319005),(81013,8,87570,3,1672319005),(81014,8,87571,3,1672319005),(81015,8,87572,3,1672319005),(81016,8,87573,3,1672319005),(81017,8,87574,3,1672319005),(81018,8,87575,3,1672319005),(81019,8,87576,3,1672319005),(81020,8,87594,3,1672319005),(81021,8,87595,3,1672319005),(81022,8,87596,3,1672319005),(81023,8,87597,3,1672319005),(81024,8,87598,3,1672319005),(81025,8,87599,3,1672319005),(81026,8,87600,3,1672319005),(81027,8,87601,3,1672319005),(81028,8,87602,3,1672319005),(81029,8,87603,3,1672319005),(81030,8,87604,3,1672319005),(81031,8,87605,3,1672319005),(81032,8,87606,3,1672319005),(81033,8,87607,3,1672319005),(81034,8,87608,3,1672319005),(81035,8,87626,3,1672319005),(81036,8,87627,3,1672319005),(81037,8,87628,3,1672319005),(81038,8,87629,3,1672319005),(81039,8,87630,3,1672319005),(81040,8,87631,3,1672319005),(81041,8,87632,3,1672319005),(81042,8,87633,3,1672319005),(81043,8,87634,3,1672319005),(81044,8,87635,3,1672319005),(81045,8,87636,3,1672319005),(81046,8,87637,3,1672319005),(81047,8,87638,3,1672319005),(81048,8,87639,3,1672319005),(81049,8,87640,3,1672319005),(81050,8,87658,3,1672319005),(81051,8,87659,3,1672319005),(81052,8,87660,3,1672319005),(81053,8,87661,3,1672319005),(81054,8,87662,3,1672319005),(81055,8,87663,3,1672319005),(81056,8,87664,3,1672319005),(81057,8,87665,3,1672319005),(81058,8,87666,3,1672319005),(81059,8,87667,3,1672319005),(81060,8,87668,3,1672319005),(81061,8,87669,3,1672319005),(81062,8,87670,3,1672319005),(81063,8,87671,3,1672319005),(81064,8,87672,3,1672319005),(81065,8,87690,3,1672319005),(81066,8,87691,3,1672319005),(81067,8,87692,3,1672319005),(81068,8,87693,3,1672319005),(81069,8,87694,3,1672319005),(81070,8,87695,3,1672319005),(81071,8,87696,3,1672319005),(81072,8,87697,3,1672319005),(81073,8,87698,3,1672319005),(81074,8,87699,3,1672319005),(81075,8,87700,3,1672319005),(81076,8,87701,3,1672319005),(81077,8,87702,3,1672319005),(81078,8,87703,3,1672319005),(81079,8,87704,3,1672319005),(81080,8,87705,3,1672319005),(81081,8,87706,3,1672319005),(81082,8,87707,3,1672319005),(81083,8,87708,3,1672319005),(81084,8,87709,3,1672319005),(81085,8,87710,3,1672319005),(81086,8,87711,3,1672319005),(81087,8,87712,3,1672319005),(81088,8,87713,3,1672319005),(81089,8,87714,3,1672319005),(81090,8,87715,3,1672319005),(81091,8,87716,3,1672319005),(81092,8,87717,3,1672319005),(81093,8,87718,3,1672319005),(81094,8,87719,3,1672319005),(81095,8,87720,3,1672319005),(81096,8,87721,3,1672319005),(81097,8,87722,3,1672319005),(81098,8,87723,3,1672319005),(81099,8,87724,3,1672319005),(81100,8,87725,3,1672319005),(81101,8,87726,3,1672319005),(81102,8,87727,3,1672319005),(81103,8,87728,3,1672319005),(81104,8,87729,3,1672319005),(81105,8,87730,3,1672319005),(81106,8,87731,3,1672319005),(81107,8,87732,3,1672319005),(81108,8,87733,3,1672319005),(81109,8,87734,3,1672319005),(81110,8,87735,3,1672319005),(81111,8,87736,3,1672319005),(81112,8,87737,3,1672319005),(81113,8,87738,3,1672319005),(81114,8,87739,3,1672319005),(81115,8,87740,3,1672319005),(81116,8,87741,3,1672319005),(81117,8,87742,3,1672319005),(81118,8,87743,3,1672319005),(81119,8,87744,3,1672319005),(81120,8,87745,3,1672319005),(81121,8,87746,3,1672319005),(81122,8,87747,3,1672319005),(81123,8,87748,3,1672319005),(81124,8,87749,3,1672319005),(81125,8,87750,3,1672319005),(81126,8,87751,3,1672319005),(81127,8,87752,3,1672319005),(81128,8,87753,3,1672319005),(81129,8,87754,3,1672319005),(81130,8,87755,3,1672319005),(81131,8,87756,3,1672319005),(81132,8,87757,3,1672319005),(81133,8,87758,3,1672319005),(81134,8,87759,3,1672319005),(81135,8,87760,3,1672319005),(81136,8,87761,3,1672319005),(81137,8,87762,3,1672319005),(81138,8,87763,3,1672319005),(81139,8,87764,3,1672319005),(81140,8,87765,3,1672319005),(81141,8,87766,3,1672319005),(81142,8,87767,3,1672319005),(81143,8,87768,3,1672319005),(81144,8,87769,3,1672319005),(81145,8,87770,3,1672319005),(81146,8,87771,3,1672319005),(81147,8,87772,3,1672319005),(81148,8,87773,3,1672319005),(81149,8,87774,3,1672319005),(81150,8,87775,3,1672319005),(81151,8,87776,3,1672319005),(81152,8,87777,3,1672319005),(81153,8,87778,3,1672319005),(81154,8,87779,3,1672319005),(81155,8,87780,3,1672319005),(81156,8,87781,3,1672319005),(81157,8,87782,3,1672319005),(81158,8,87783,3,1672319005),(81159,8,87784,3,1672319005),(81160,8,87785,3,1672319005),(81161,8,87786,3,1672319005),(81162,8,87791,3,1672319005),(81163,8,87792,3,1672319005),(81164,8,87793,3,1672319005),(81165,8,87794,3,1672319005),(81166,8,87795,3,1672319005),(81167,8,87796,3,1672319005),(81168,8,87797,3,1672319005),(81169,8,87804,3,1672319005),(81170,8,87805,3,1672319005),(81171,8,87806,3,1672319005),(81172,8,87807,3,1672319005),(81173,8,87808,3,1672319005),(81174,8,87809,3,1672319005),(81175,8,87810,3,1672319005),(81176,8,87811,3,1672319005),(81177,8,87813,3,1672319005),(81178,8,87815,3,1672319005),(81179,8,87816,3,1672319005),(81180,8,87817,3,1672319005),(81181,8,87818,3,1672319005),(81182,8,87819,3,1672319005),(81183,8,87820,3,1672319005),(81184,8,87821,3,1672319005),(81185,8,87822,3,1672319005),(81186,8,87823,3,1672319005),(81187,8,87824,3,1672319005),(81188,8,87825,3,1672319005),(81189,8,87826,3,1672319005),(81190,8,87827,3,1672319005),(81191,8,87828,3,1672319005),(81192,8,87829,3,1672319005),(81193,8,87830,3,1672319005),(81194,8,87831,3,1672319005),(81195,8,87832,3,1672319005),(81196,8,87833,3,1672319005),(81197,8,87834,3,1672319005),(81198,8,87835,3,1672319005),(81199,8,87836,3,1672319005),(81200,8,87837,3,1672319005),(81201,8,87838,3,1672319005),(81202,8,87839,3,1672319005),(81203,8,87840,3,1672319005),(81204,8,87841,3,1672319005),(81205,8,87842,3,1672319005),(81206,8,87843,3,1672319005),(81207,8,87844,3,1672319005),(81208,8,87845,3,1672319005),(81209,8,87846,3,1672319005),(81210,8,87847,3,1672319005),(81211,8,87848,3,1672319005),(81212,8,87849,3,1672319005),(81213,8,87850,3,1672319005),(81214,8,87851,3,1672319005),(81215,8,87852,3,1672319005),(81216,8,87853,3,1672319005),(81217,8,87854,3,1672319005),(81218,8,87855,3,1672319005),(81219,8,87856,3,1672319005),(81220,8,87857,3,1672319005),(81221,8,87858,3,1672319005),(81222,8,87859,3,1672319005),(81223,8,87860,3,1672319005),(81224,8,87861,3,1672319005),(81225,8,87862,3,1672319005),(81226,8,87863,3,1672319005),(81227,8,87864,3,1672319005),(81228,8,87865,3,1672319005),(81229,8,87866,3,1672319005),(81230,8,87867,3,1672319005),(81231,8,87868,3,1672319005),(81232,8,87869,3,1672319005),(81233,8,87870,3,1672319005),(81234,8,87871,3,1672319005),(81235,8,87872,3,1672319005),(81236,8,87873,3,1672319005),(81237,8,87874,3,1672319005),(81238,8,87875,3,1672319005),(81239,8,87876,3,1672319005),(81240,8,87877,3,1672319005),(81241,8,87878,3,1672319005),(81242,8,87879,3,1672319005),(81243,8,87880,3,1672319005),(81244,8,87881,3,1672319005),(81245,8,87882,3,1672319005),(81246,8,87883,3,1672319005),(81247,8,87884,3,1672319005),(81248,8,87885,3,1672319005),(81249,8,87886,3,1672319005),(81250,8,87887,3,1672319005),(81251,8,87888,3,1672319005),(81252,8,87889,3,1672319005),(81253,8,87890,3,1672319005),(81254,8,87891,3,1672319005),(81255,8,87892,3,1672319005),(81256,8,87893,3,1672319005),(81257,8,87894,3,1672319005),(81258,8,87895,3,1672319005),(81259,8,87896,3,1672319005),(81260,8,87897,3,1672319005),(81261,8,87898,3,1672319005),(81262,8,87899,3,1672319005),(81263,8,87900,3,1672319005),(81264,8,87901,3,1672319005),(81265,8,87902,3,1672319005),(81266,8,87903,3,1672319005),(81267,8,87904,3,1672319005),(81268,8,87905,3,1672319005),(81269,8,87906,3,1672319005),(81270,8,87907,3,1672319005),(81271,8,87908,3,1672319005),(81272,8,87909,3,1672319005),(81273,8,87910,3,1672319005),(81274,8,87911,3,1672319005),(81275,8,87912,3,1672319005),(81276,8,87913,3,1672319005),(81277,8,87914,3,1672319005),(81278,8,87915,3,1672319005),(81279,8,87916,3,1672319005),(81280,8,87917,3,1672319005),(81281,8,87918,3,1672319005),(81282,8,87919,3,1672319005),(81283,8,87920,3,1672319005),(81284,8,87921,3,1672319005),(81285,8,87922,3,1672319005),(81286,8,87923,3,1672319005),(81287,8,87924,3,1672319005),(81288,8,87925,3,1672319005),(81289,8,87926,3,1672319005),(81290,8,87927,3,1672319005),(81291,8,87928,3,1672319005),(81292,8,87929,3,1672319005),(81293,8,87930,3,1672319005),(81294,8,87931,3,1672319005),(81295,8,87932,3,1672319005),(81296,8,87933,3,1672319005),(81297,8,87934,3,1672319005),(81298,8,87935,3,1672319005),(81299,8,87936,3,1672319005),(81300,8,87937,3,1672319005),(81301,8,87938,3,1672319005),(81302,8,87939,3,1672319005),(81303,8,87940,3,1672319005),(81304,8,87941,3,1672319005),(81305,8,87942,3,1672319005),(81306,8,87943,3,1672319005),(81307,8,87944,3,1672319005),(81308,8,87945,3,1672319005),(81309,8,87946,3,1672319005),(81310,8,87947,3,1672319005),(81311,8,87948,3,1672319005),(81312,8,87949,3,1672319005),(81313,8,87950,3,1672319005),(81314,8,87951,3,1672319005),(81315,8,87952,3,1672319005),(81316,8,87953,3,1672319005),(81317,8,87954,3,1672319005),(81318,8,87955,3,1672319005),(81319,8,87956,3,1672319005),(81320,8,87957,3,1672319005),(81321,8,87958,3,1672319005),(81322,8,87959,3,1672319005),(81323,8,87960,3,1672319005),(81324,8,87961,3,1672319005),(81325,8,87962,3,1672319005),(81326,8,87963,3,1672319005),(81327,8,87964,3,1672319005),(81328,8,87965,3,1672319005),(81329,8,87966,3,1672319005),(81330,8,87967,3,1672319005),(81331,8,87968,3,1672319005),(81332,8,87969,3,1672319005),(81333,8,87970,3,1672319005),(81334,8,87971,3,1672319005),(81335,8,87972,3,1672319005),(81336,8,87973,3,1672319005),(81337,8,87974,3,1672319005),(81338,8,87975,3,1672319005),(81339,8,87976,3,1672319005),(81340,8,87977,3,1672319005),(81341,8,87978,3,1672319005),(81342,8,87979,3,1672319005),(81343,8,87980,3,1672319005),(81344,8,87981,3,1672319005),(81345,8,87982,3,1672319005),(81346,8,87983,3,1672319005),(81347,8,87984,3,1672319005),(81348,8,87985,3,1672319005),(81349,8,87986,3,1672319005),(81350,8,87987,3,1672319005),(81351,8,87988,3,1672319005),(81352,8,87989,3,1672319005),(81353,8,87990,3,1672319005),(81354,8,87991,3,1672319005),(81355,8,87992,3,1672319005),(81356,8,87993,3,1672319005),(81357,8,87994,3,1672319005),(81358,8,87995,3,1672319005),(81359,8,87996,3,1672319005),(81360,8,87997,3,1672319005),(81361,8,87998,3,1672319005),(81362,8,87999,3,1672319005),(81363,8,88000,3,1672319005),(81364,8,88001,3,1672319005),(81365,8,88002,3,1672319005),(81366,8,88003,3,1672319005),(81367,8,88004,3,1672319005),(81368,8,88005,3,1672319005),(81369,8,88006,3,1672319005),(81370,8,88007,3,1672319005),(81371,8,88008,3,1672319005),(81372,8,88009,3,1672319005),(81373,8,88010,3,1672319005),(81374,8,88011,3,1672319005),(81375,8,88012,3,1672319005),(81376,8,88013,3,1672319005),(81377,8,88014,3,1672319005),(81378,8,88015,3,1672319005),(81379,8,88016,3,1672319005),(81380,8,88017,3,1672319005),(81381,8,88018,3,1672319005),(81382,8,88019,3,1672319005),(81383,8,88020,3,1672319005),(81384,8,88021,3,1672319005),(81385,8,88022,3,1672319005),(81386,8,88023,3,1672319005),(81387,8,88024,3,1672319005),(81388,8,88025,3,1672319005),(81389,8,88026,3,1672319005),(81390,8,88027,3,1672319005),(81391,8,88028,3,1672319005),(81392,8,88029,3,1672319005),(81393,8,88030,3,1672319005),(81394,8,88031,3,1672319005),(81395,8,88032,3,1672319005),(81396,8,88033,3,1672319005),(81397,8,88034,3,1672319005),(81398,8,88035,3,1672319005),(81399,8,88036,3,1672319005),(81400,8,88037,3,1672319005),(81401,8,88038,3,1672319005),(81402,8,88039,3,1672319005),(81403,8,88040,3,1672319005),(81404,8,88041,3,1672319005),(81405,8,88042,3,1672319005),(81406,8,88043,3,1672319005),(81407,8,88044,3,1672319005),(81408,8,88045,3,1672319005),(81409,8,88046,3,1672319005),(81410,8,88047,3,1672319005),(81411,8,88048,3,1672319005),(81412,8,88049,3,1672319005),(81413,8,88050,3,1672319005),(81414,8,88051,3,1672319005),(81415,8,88052,3,1672319005),(81416,8,88053,3,1672319005),(81417,8,88054,3,1672319005),(81418,8,88055,3,1672319005),(81419,8,88056,3,1672319005),(81420,8,88057,3,1672319005),(81421,8,88058,3,1672319005),(81422,8,88059,3,1672319005),(81423,8,88060,3,1672319005),(81424,8,88061,3,1672319005),(81425,8,88062,3,1672319005),(81426,8,88063,3,1672319005),(81427,8,88064,3,1672319005),(81428,8,88065,3,1672319005),(81429,8,88066,3,1672319005),(81430,8,88067,3,1672319005),(81431,8,88068,3,1672319005),(81432,8,88069,3,1672319005),(81433,8,88070,3,1672319005),(81434,8,88071,3,1672319005),(81435,8,88072,3,1672319005),(81436,8,88073,3,1672319005),(81437,8,88074,3,1672319005),(81438,8,88075,3,1672319005),(81439,8,88076,3,1672319005),(81440,8,88077,3,1672319005),(81441,8,88078,3,1672319005),(81442,8,88079,3,1672319005),(81443,8,88080,3,1672319005),(81444,8,88081,3,1672319005),(81445,8,88082,3,1672319005),(81446,8,88083,3,1672319005),(81447,8,88084,3,1672319005),(81448,8,88085,3,1672319005),(81449,8,88086,3,1672319005),(81450,8,88087,3,1672319005),(81451,8,88088,3,1672319005),(81452,8,88089,3,1672319005),(81453,8,88090,3,1672319005),(81454,8,88091,3,1672319005),(81455,8,88092,3,1672319005),(81456,8,88093,3,1672319005),(81457,8,88094,3,1672319005),(81458,8,88095,3,1672319005),(81459,8,88096,3,1672319005),(81460,8,88097,3,1672319005),(81461,8,88098,3,1672319005),(81462,8,88099,3,1672319005),(81463,8,88100,3,1672319005),(81464,8,88101,3,1672319005),(81465,8,88102,3,1672319005),(81466,8,88103,3,1672319005),(81467,8,88104,3,1672319005),(81468,8,88105,3,1672319005),(81469,8,88106,3,1672319005),(81470,8,88107,3,1672319005),(81471,8,88108,3,1672319005),(81472,8,88109,3,1672319005),(81473,8,88110,3,1672319005),(81474,8,88111,3,1672319005),(81475,8,88112,3,1672319005),(81476,8,88113,3,1672319005),(81477,8,88114,3,1672319005),(81478,8,88115,3,1672319005),(81479,8,88116,3,1672319005),(81480,8,88117,3,1672319005),(81481,8,88118,3,1672319005),(81482,8,88119,3,1672319005),(81483,8,88120,3,1672319005),(81484,8,88121,3,1672319005),(81485,8,88122,3,1672319005),(81486,8,88123,3,1672319005),(81487,8,88125,3,1672319005),(81488,8,88126,3,1672319005),(81489,8,88127,3,1672319005),(81490,8,88128,3,1672319005),(81491,8,88129,3,1672319005),(81492,8,88130,3,1672319005),(81493,8,88131,3,1672319005),(81494,8,88132,3,1672319005),(81495,8,88133,3,1672319005),(81496,8,88134,3,1672319005),(81497,8,88135,3,1672319005),(81498,8,88136,3,1672319005),(81499,8,88137,3,1672319005),(81500,8,88138,3,1672319005),(81501,8,88139,3,1672319005),(81502,8,88140,3,1672319005),(81503,8,88141,3,1672319005),(81504,8,88142,3,1672319005),(81505,8,88143,3,1672319005),(81506,8,88144,3,1672319005),(81507,8,88145,3,1672319005),(81508,8,88146,3,1672319005),(81509,8,88147,3,1672319005),(81510,8,88148,3,1672319005),(81511,8,88149,3,1672319005),(81512,8,88150,3,1672319005),(81513,8,88151,3,1672319005),(81514,8,88152,3,1672319005),(81515,8,88153,3,1672319005),(81516,8,88154,3,1672319005),(81517,8,88155,3,1672319005),(81518,8,88156,3,1672319005),(81519,8,88157,3,1672319005),(81520,8,88158,3,1672319005),(81521,8,88159,3,1672319005),(81522,8,88160,3,1672319005),(81523,8,88161,3,1672319005),(81524,8,88162,3,1672319005),(81525,8,88163,3,1672319005),(81526,8,88164,3,1672319005),(81527,8,88165,3,1672319005),(81528,8,88166,3,1672319005),(81529,8,88167,3,1672319005),(81530,8,88182,3,1672319005),(81531,8,88183,3,1672319005),(81532,8,88184,3,1672319005),(81533,8,88185,3,1672319005),(81534,8,88186,3,1672319005),(81535,8,88187,3,1672319005),(81536,8,88188,3,1672319005),(81537,8,88189,3,1672319005),(81538,8,88190,3,1672319005),(81539,8,88203,3,1672319005),(81540,8,88204,3,1672319005),(81541,8,88205,3,1672319005),(81542,8,88206,3,1672319005),(81543,8,88207,3,1672319005),(81544,8,88208,3,1672319005),(81545,8,88209,3,1672319005),(81546,8,88210,3,1672319005),(81547,8,88211,3,1672319005),(81548,8,88212,3,1672319005),(81549,8,88213,3,1672319005),(81550,8,88214,3,1672319005),(81551,8,88215,3,1672319005),(81552,8,88216,3,1672319005),(81553,8,88217,3,1672319005),(81554,8,88218,3,1672319005),(81555,8,88219,3,1672319005),(81556,8,88220,3,1672319005),(81557,8,88221,3,1672319005),(81558,8,88222,3,1672319005),(81559,8,88223,3,1672319005),(81560,8,88224,3,1672319005),(81561,8,88225,3,1672319005),(81562,8,88226,3,1672319005),(81563,8,88227,3,1672319005),(81564,8,88228,3,1672319005),(81565,8,88229,3,1672319005),(81566,8,88230,3,1672319005),(81567,8,88231,3,1672319005),(81568,8,88232,3,1672319005),(81569,8,88233,3,1672319005),(81570,8,88234,3,1672319005),(81571,8,88235,3,1672319005),(81572,8,88236,3,1672319005),(81573,8,88237,3,1672319005),(81574,8,88238,3,1672319005),(81575,8,88245,3,1672319005),(81576,8,88246,3,1672319005),(81577,8,88247,3,1672319005),(81578,8,88248,3,1672319005),(81579,8,88249,3,1672319005),(81580,8,88250,3,1672319005),(81581,8,88251,3,1672319005),(81582,8,88252,3,1672319005),(81583,8,88255,3,1672319005),(81584,8,88256,3,1672319005),(81585,8,88257,3,1672319005),(81586,8,88258,3,1672319005),(81587,8,88267,3,1672319005),(81588,8,88268,3,1672319005),(81589,8,88269,3,1672319005),(81590,8,88270,3,1672319005),(81591,8,88271,3,1672319005),(81592,8,88272,3,1672319005),(81593,8,88273,3,1672319005),(81594,8,88274,3,1672319005),(81595,8,88275,3,1672319005),(81596,8,88276,3,1672319005),(81597,8,88277,3,1672319005),(81598,8,88278,3,1672319005),(81599,8,88279,3,1672319005),(81600,8,88280,3,1672319005),(81601,8,88281,3,1672319005),(81602,8,88282,3,1672319005),(81603,8,88283,3,1672319005),(81604,8,88284,3,1672319005),(81605,8,88285,3,1672319005),(81606,8,88286,3,1672319005),(81607,8,88287,3,1672319005),(81608,8,88288,3,1672319005),(81609,8,88289,3,1672319005),(81610,8,88290,3,1672319005),(81611,8,88291,3,1672319005),(81612,8,88292,3,1672319005),(81613,8,88293,3,1672319005),(81614,8,88294,3,1672319005),(81615,8,88295,3,1672319005),(81616,8,88296,3,1672319005),(81617,8,88297,3,1672319005),(81618,8,88298,3,1672319005),(81619,8,88299,3,1672319005),(81620,8,88300,3,1672319005),(81621,8,88301,3,1672319005),(81622,8,88302,3,1672319005),(81623,8,88303,3,1672319005),(81624,8,88304,3,1672319005),(81625,8,88305,3,1672319005),(81626,8,88306,3,1672319005),(81627,8,88307,3,1672319005),(81628,8,88308,3,1672319005),(81629,8,88309,3,1672319005),(81630,8,88310,3,1672319005),(81631,8,88311,3,1672319005),(81632,8,88312,3,1672319005),(81633,8,88313,3,1672319005),(81634,8,88314,3,1672319005),(81635,8,88315,3,1672319005),(81636,8,88316,3,1672319005),(81637,8,88317,3,1672319005),(81638,8,88318,3,1672319005),(81639,8,88319,3,1672319005),(81640,8,88320,3,1672319005),(81641,8,88321,3,1672319005),(81642,8,88322,3,1672319005),(81643,8,88323,3,1672319005),(81644,8,88324,3,1672319005),(81645,8,88325,3,1672319005),(81646,8,88326,3,1672319005),(81647,8,88327,3,1672319005),(81648,8,88328,3,1672319005),(81649,8,88329,3,1672319005),(81650,8,88330,3,1672319005),(81651,8,88331,3,1672319005),(81652,8,88332,3,1672319005),(81653,8,88333,3,1672319005),(81654,8,88334,3,1672319005),(81655,8,88335,3,1672319005),(81656,8,88336,3,1672319005),(81657,8,88337,3,1672319005),(81658,8,88338,3,1672319005),(81659,8,88339,3,1672319005),(81660,8,88340,3,1672319005),(81661,8,88341,3,1672319005),(81662,8,88342,3,1672319005),(81663,8,88343,3,1672319005),(81664,8,88344,3,1672319005),(81665,8,88345,3,1672319005),(81666,8,88346,3,1672319005),(81667,8,88347,3,1672319005),(81668,8,88348,3,1672319005),(81669,8,88349,3,1672319005),(81670,8,88350,3,1672319005),(81671,8,88351,3,1672319005),(81672,8,88352,3,1672319005),(81673,8,88353,3,1672319005),(81674,8,88354,3,1672319005),(81675,8,88355,3,1672319005),(81676,8,88356,3,1672319005),(81677,8,88357,3,1672319005),(81678,8,88358,3,1672319005),(81679,8,88359,3,1672319005),(81680,8,88360,3,1672319005),(81681,8,88361,3,1672319005),(81682,8,88362,3,1672319005),(81683,8,88363,3,1672319005),(81684,8,88364,3,1672319005),(81685,8,88365,3,1672319005),(81686,8,88366,3,1672319005),(81687,8,88367,3,1672319005),(81688,8,88368,3,1672319005),(81689,8,88369,3,1672319005),(81690,8,88370,3,1672319005),(81691,8,88371,3,1672319005),(81692,8,88372,3,1672319005),(81693,8,88373,3,1672319005),(81694,8,88374,3,1672319005),(81695,8,88375,3,1672319005),(81696,8,88376,3,1672319005),(81697,8,88377,3,1672319005),(81698,8,88378,3,1672319005),(81699,8,88379,3,1672319005),(81700,8,88380,3,1672319005),(81701,8,88381,3,1672319005),(81702,8,88382,3,1672319005),(81703,8,88383,3,1672319005),(81704,8,88384,3,1672319005),(81705,8,88385,3,1672319005),(81706,8,88386,3,1672319005),(81707,8,88387,3,1672319005),(81708,8,88388,3,1672319005),(81709,8,88389,3,1672319005),(81710,8,88390,3,1672319005),(81711,8,88391,3,1672319005),(81712,8,88392,3,1672319005),(81713,8,88393,3,1672319005),(81714,8,88394,3,1672319005),(81715,8,88395,3,1672319005),(81716,8,88396,3,1672319005),(81717,8,88397,3,1672319005),(81718,8,88398,3,1672319005),(81719,8,88399,3,1672319005),(81720,8,88400,3,1672319005),(81721,8,88401,3,1672319005),(81722,8,88402,3,1672319005),(81723,8,88403,3,1672319005),(81724,8,88404,3,1672319005),(81725,8,88405,3,1672319005),(81726,8,88406,3,1672319005),(81727,8,88407,3,1672319005),(81728,8,88408,3,1672319005),(81729,8,88409,3,1672319005),(81730,8,88410,3,1672319005),(81731,8,88411,3,1672319005),(81732,8,88412,3,1672319005),(81733,8,88413,3,1672319005),(81734,8,88414,3,1672319005),(81735,8,88415,3,1672319005),(81736,8,88416,3,1672319005),(81737,8,88417,3,1672319005),(81738,8,88418,3,1672319005),(81739,8,88419,3,1672319005),(81740,8,88420,3,1672319005),(81741,8,88421,3,1672319005),(81742,8,88422,3,1672319005),(81743,8,88423,3,1672319005),(81744,8,88424,3,1672319005),(81745,8,88425,3,1672319005),(81746,8,88426,3,1672319005),(81747,8,88427,3,1672319005),(81748,8,88428,3,1672319005),(81749,8,88429,3,1672319005),(81750,8,88430,3,1672319005),(81751,8,88431,3,1672319005),(81752,8,88432,3,1672319005),(81753,8,88433,3,1672319005),(81754,8,88434,3,1672319005),(81755,8,88435,3,1672319005),(81756,8,88436,3,1672319005),(81757,8,88437,3,1672319005),(81758,8,88438,3,1672319005),(81759,8,88439,3,1672319005),(81760,8,88440,3,1672319005),(81761,8,88441,3,1672319005),(81762,8,88442,3,1672319005),(81763,8,88443,3,1672319005),(81764,8,88444,3,1672319005),(81765,8,88445,3,1672319005),(81766,8,88446,3,1672319005),(81767,8,88447,3,1672319005),(81768,8,88448,3,1672319005),(81769,8,88449,3,1672319005),(81770,8,88450,3,1672319005),(81771,8,88451,3,1672319005),(81772,8,88452,3,1672319005),(81773,8,88453,3,1672319005),(81774,8,88454,3,1672319005),(81775,8,88455,3,1672319005),(81776,8,88456,3,1672319005),(81777,8,88457,3,1672319005),(81778,8,88458,3,1672319005),(81779,8,88459,3,1672319005),(81780,8,88460,3,1672319005),(81781,8,88461,3,1672319005),(81782,8,88462,3,1672319005),(81783,8,88463,3,1672319005),(81784,8,88464,3,1672319005),(81785,8,88465,3,1672319005),(81786,8,88466,3,1672319005),(81787,8,88467,3,1672319005),(81788,8,88468,3,1672319005),(81789,8,88469,3,1672319005),(81790,8,88470,3,1672319005),(81791,8,88471,3,1672319005),(81792,8,88472,3,1672319005),(81793,8,88473,3,1672319005),(81794,8,88474,3,1672319005),(81795,8,88475,3,1672319005),(81796,8,88476,3,1672319005),(81797,8,88477,3,1672319005),(81798,8,88478,3,1672319005),(81799,8,88479,3,1672319005),(81800,8,88480,3,1672319005),(81801,8,88481,3,1672319005),(81802,8,88482,3,1672319005),(81803,8,88483,3,1672319005),(81804,8,88484,3,1672319005),(81805,8,88485,3,1672319005),(81806,8,88486,3,1672319005),(81807,8,88487,3,1672319005),(81808,8,88488,3,1672319005),(81809,8,88489,3,1672319005),(81810,8,88490,3,1672319005),(81811,8,88491,3,1672319005),(81812,8,88492,3,1672319005),(81813,8,88493,3,1672319005),(81814,8,88494,3,1672319005),(81815,8,88495,3,1672319005),(81816,8,88496,3,1672319005),(81817,8,88497,3,1672319005),(81818,8,88498,3,1672319005),(81819,8,88499,3,1672319005),(81820,8,88500,3,1672319005),(81821,8,88501,3,1672319005),(81822,8,88502,3,1672319005),(81823,8,88503,3,1672319005),(81824,8,88504,3,1672319005),(81825,8,88505,3,1672319005),(81826,8,88506,3,1672319005),(81827,8,88507,3,1672319005),(81828,8,88508,3,1672319005),(81829,8,88509,3,1672319005),(81830,8,88510,3,1672319005),(81831,8,88511,3,1672319005),(81832,8,88512,3,1672319005),(81833,8,88513,3,1672319005),(81834,8,88514,3,1672319005),(81835,8,88515,3,1672319005),(81836,8,88516,3,1672319005),(81837,8,88517,3,1672319005),(81838,8,88518,3,1672319005),(81839,8,88519,3,1672319005),(81840,8,88520,3,1672319005),(81841,8,88521,3,1672319005),(81842,8,88522,3,1672319005),(81843,8,88523,3,1672319005),(81844,8,88524,3,1672319005),(81845,8,88525,3,1672319005),(81846,8,88526,3,1672319005),(81847,8,88527,3,1672319005),(81848,8,88528,3,1672319005),(81849,8,88529,3,1672319005),(81850,8,88530,3,1672319005),(81851,8,88531,3,1672319005),(81852,8,88532,3,1672319005),(81853,8,88533,3,1672319005),(81854,8,88534,3,1672319005),(81855,8,88535,3,1672319005),(81856,8,88536,3,1672319005),(81857,8,88537,3,1672319005),(81858,8,88538,3,1672319005),(81859,8,88539,3,1672319005),(81860,8,88540,3,1672319005),(81861,8,88541,3,1672319005),(81862,8,88542,3,1672319005),(81863,8,88543,3,1672319005),(81864,8,88544,3,1672319005),(81865,8,88545,3,1672319005),(81866,8,88546,3,1672319005),(81867,8,88547,3,1672319005),(81868,8,88548,3,1672319005),(81869,8,88549,3,1672319005),(81870,8,88550,3,1672319005),(81871,8,88551,3,1672319005),(81872,8,88552,3,1672319005),(81873,8,88553,3,1672319005),(81874,8,88554,3,1672319005),(81875,8,88555,3,1672319005),(81876,8,88556,3,1672319005),(81877,8,88557,3,1672319005),(81878,8,88558,3,1672319005),(81879,8,88559,3,1672319005),(81880,8,88560,3,1672319005),(81881,8,88561,3,1672319005),(81882,8,88562,3,1672319005),(81883,8,88563,3,1672319005),(81884,8,88564,3,1672319005),(81885,8,88565,3,1672319005),(81886,8,88566,3,1672319005),(81887,8,88567,3,1672319005),(81888,8,88568,3,1672319005),(81889,8,88569,3,1672319005),(81890,8,88570,3,1672319005),(81891,8,88571,3,1672319005),(81892,8,88572,3,1672319005),(81893,8,88573,3,1672319005),(81894,8,88574,3,1672319005),(81895,8,88575,3,1672319005),(81896,8,88576,3,1672319005),(81897,8,88577,3,1672319005),(81898,8,88578,3,1672319005),(81899,8,88579,3,1672319005),(81900,8,88580,3,1672319005),(81901,8,88581,3,1672319005),(81902,8,88582,3,1672319005),(81903,8,88583,3,1672319005),(81904,8,88584,3,1672319005),(81905,8,88585,3,1672319005),(81906,8,88586,3,1672319005),(81907,8,88587,3,1672319005),(81908,8,88588,3,1672319005),(81909,8,88589,3,1672319005),(81910,8,88590,3,1672319005),(81911,8,88591,3,1672319005),(81912,8,88592,3,1672319005),(81913,8,88593,3,1672319005),(81914,8,88594,3,1672319005),(81915,8,88595,3,1672319005),(81916,8,88596,3,1672319005),(81917,8,88597,3,1672319005),(81918,8,88598,3,1672319005),(81919,8,88599,3,1672319005),(81920,8,88600,3,1672319005),(81921,8,88601,3,1672319005),(81922,8,88602,3,1672319005),(81923,8,88603,3,1672319005),(81924,8,88604,3,1672319005),(81925,8,88605,3,1672319005),(81926,8,88606,3,1672319005),(81927,8,88607,3,1672319005),(81928,8,88608,3,1672319005),(81929,8,88609,3,1672319005),(81930,8,88610,3,1672319005),(81931,8,88611,3,1672319005),(81932,8,88612,3,1672319005),(81933,8,88613,3,1672319005),(81934,8,88614,3,1672319005),(81935,8,88615,3,1672319005),(81936,8,88616,3,1672319005),(81937,8,88617,3,1672319005),(81938,8,88618,3,1672319005),(81939,8,88619,3,1672319005),(81940,8,88620,3,1672319005),(81941,8,88621,3,1672319005),(81942,8,88622,3,1672319005),(81943,8,88623,3,1672319005),(81944,8,88624,3,1672319005),(81945,8,88625,3,1672319005),(81946,8,88626,3,1672319005),(81947,8,88627,3,1672319005),(81948,8,88628,3,1672319005),(81949,8,88629,3,1672319005),(81950,8,88630,3,1672319005),(81951,8,88631,3,1672319005),(81952,8,88632,3,1672319005),(81953,8,88633,3,1672319005),(81954,8,88634,3,1672319005),(81955,8,88635,3,1672319005),(81956,8,88636,3,1672319005),(81957,8,88637,3,1672319005),(81958,8,88638,3,1672319005),(81959,8,88639,3,1672319005),(81960,8,88640,3,1672319005),(81961,8,88641,3,1672319005),(81962,8,88642,3,1672319005),(81963,8,88643,3,1672319005),(81964,8,88644,3,1672319005),(81965,8,88645,3,1672319005),(81966,8,88646,3,1672319005),(81967,8,88647,3,1672319005),(81968,8,88648,3,1672319005),(81969,8,88649,3,1672319005),(81970,8,88650,3,1672319005),(81971,8,88651,3,1672319005),(81972,8,88652,3,1672319005),(81973,8,88653,3,1672319005),(81974,8,88654,3,1672319005),(81975,8,88655,3,1672319005),(81976,8,88656,3,1672319005),(81977,8,88657,3,1672319005),(81978,8,88658,3,1672319005),(81979,8,88659,3,1672319005),(81980,8,88660,3,1672319005),(81981,8,88661,3,1672319005),(81982,8,88662,3,1672319005),(81983,8,88663,3,1672319005),(81984,8,88664,3,1672319005),(81985,8,88665,3,1672319005),(81986,8,88666,3,1672319005),(81987,8,88667,3,1672319005),(81988,8,88668,3,1672319005),(81989,8,88669,3,1672319005),(81990,8,88670,3,1672319005),(81991,8,88671,3,1672319005),(81992,8,88672,3,1672319005),(81993,8,88673,3,1672319005),(81994,8,88674,3,1672319005),(81995,8,88675,3,1672319005),(81996,8,88676,3,1672319005),(81997,8,88677,3,1672319005),(81998,8,88678,3,1672319005),(81999,8,88679,3,1672319005),(82000,8,88680,3,1672319005),(82001,8,88681,3,1672319005),(82002,8,88682,3,1672319005),(82003,8,88683,3,1672319005),(82004,8,88684,3,1672319005),(82005,8,88685,3,1672319005),(82006,8,88686,3,1672319005),(82007,8,88687,3,1672319005),(82008,8,88688,3,1672319005),(82009,8,88689,3,1672319005),(82010,8,88690,3,1672319005),(82011,8,88691,3,1672319005),(82012,8,88692,3,1672319005),(82013,8,88693,3,1672319005),(82014,8,88694,3,1672319005),(82015,8,88695,3,1672319005),(82016,8,88696,3,1672319005),(82017,8,88697,3,1672319005),(82018,8,88698,3,1672319005),(82019,8,88699,3,1672319005),(82020,8,88700,3,1672319005),(82021,8,88701,3,1672319005),(82022,8,88702,3,1672319005),(82023,8,88703,3,1672319005),(82024,8,88704,3,1672319005),(82025,8,88705,3,1672319005),(82026,8,88706,3,1672319005),(82027,8,88707,3,1672319005),(82028,8,88708,3,1672319005),(82029,8,88709,3,1672319005),(82030,8,88710,3,1672319005),(82031,8,88711,3,1672319005),(82032,8,88712,3,1672319005),(82033,8,88713,3,1672319005),(82034,8,88714,3,1672319005),(82035,8,88715,3,1672319005),(82036,8,88716,3,1672319005),(82037,8,88717,3,1672319005),(82038,8,88718,3,1672319005),(82039,8,88719,3,1672319005),(82040,8,88720,3,1672319005),(82041,8,88721,3,1672319005),(82042,8,88722,3,1672319005),(82043,8,88723,3,1672319005),(82044,8,88724,3,1672319005),(82045,8,88725,3,1672319005),(82046,8,88726,3,1672319005),(82047,8,88727,3,1672319005),(82048,8,88728,3,1672319005),(82049,8,88729,3,1672319005),(82050,8,88730,3,1672319005),(82051,8,88731,3,1672319005),(82052,8,88732,3,1672319005),(82053,8,88733,3,1672319005),(82054,8,88734,3,1672319005),(82055,8,88735,3,1672319005),(82056,8,88736,3,1672319005),(82057,8,88737,3,1672319005),(82058,8,88738,3,1672319005),(82059,8,88739,3,1672319005),(82060,8,88740,3,1672319005),(82061,8,88741,3,1672319005),(82062,8,88742,3,1672319005),(82063,8,88743,3,1672319005),(82064,8,88744,3,1672319005),(82065,8,88745,3,1672319005),(82066,8,88746,3,1672319005),(82067,8,88747,3,1672319005),(82068,8,88748,3,1672319005),(82069,8,88749,3,1672319005),(82070,8,88750,3,1672319005),(82071,8,88751,3,1672319005),(82072,8,88752,3,1672319005),(82073,8,88753,3,1672319005),(82074,8,88754,3,1672319005),(82075,8,88755,3,1672319005),(82076,8,88756,3,1672319005),(82077,8,88757,3,1672319005),(82078,8,88758,3,1672319005),(82079,8,88759,3,1672319005),(82080,8,88760,3,1672319005),(82081,8,88761,3,1672319005),(82082,8,88762,3,1672319005),(82083,8,88763,3,1672319005),(82084,8,88764,3,1672319005),(82085,8,88765,3,1672319005),(82086,8,88766,3,1672319005),(82087,8,88767,3,1672319005),(82088,8,88768,3,1672319005),(82089,8,88769,3,1672319005),(82090,8,88770,3,1672319005),(82091,8,88771,3,1672319005),(82092,8,88772,3,1672319005),(82093,8,88773,3,1672319005),(82094,8,88774,3,1672319005),(82095,8,88775,3,1672319005),(82096,8,88776,3,1672319005),(82097,8,88777,3,1672319005),(82098,8,88778,3,1672319005),(82099,8,88779,3,1672319005),(82100,8,88780,3,1672319005),(82101,8,88781,3,1672319005),(82102,8,88782,3,1672319005),(82103,8,88783,3,1672319005),(82104,8,88784,3,1672319005),(82105,8,88785,3,1672319005),(82106,8,88786,3,1672319005),(82107,8,88787,3,1672319005),(82108,8,88788,3,1672319005),(82109,8,88789,3,1672319005),(82110,8,88790,3,1672319005),(82111,8,88791,3,1672319005),(82112,8,88792,3,1672319005),(82113,8,88793,3,1672319005),(82114,8,88794,3,1672319005),(82115,8,88795,3,1672319005),(82116,8,88796,3,1672319005),(82117,8,88797,3,1672319005),(82118,8,88798,3,1672319005),(82119,8,88799,3,1672319005),(82120,8,88800,3,1672319005),(82121,8,88801,3,1672319005),(82122,8,88802,3,1672319005),(82123,8,88803,3,1672319005),(82124,8,88804,3,1672319005),(82125,8,88805,3,1672319005),(82126,8,88806,3,1672319005),(82127,8,88807,3,1672319005),(82128,8,88808,3,1672319005),(82129,8,88809,3,1672319005),(82130,8,88810,3,1672319005),(82131,8,88811,3,1672319005),(82132,8,88812,3,1672319005),(82133,8,88813,3,1672319005),(82134,8,88814,3,1672319005),(82135,8,88815,3,1672319005),(82136,8,88816,3,1672319005),(82137,8,88817,3,1672319005),(82138,8,88818,3,1672319005),(82139,8,88819,3,1672319005),(82140,8,88820,3,1672319005),(82141,8,88821,3,1672319005),(82142,8,88822,3,1672319005),(82143,8,88823,3,1672319005),(82144,8,88824,3,1672319005),(82145,8,88825,3,1672319005),(82146,8,88826,3,1672319005),(82147,8,88827,3,1672319005),(82148,8,88828,3,1672319005),(82149,8,88829,3,1672319005),(82150,8,88830,3,1672319005),(82151,8,88831,3,1672319005),(82152,8,88832,3,1672319005),(82153,8,88833,3,1672319005),(82154,8,88834,3,1672319005),(82155,8,88835,3,1672319005),(82156,8,88836,3,1672319005),(82157,8,88837,3,1672319005),(82158,8,88838,3,1672319005),(82159,8,88839,3,1672319005),(82160,8,88840,3,1672319005),(82161,8,88841,3,1672319005),(82162,8,88842,3,1672319005),(82163,8,88843,3,1672319005),(82164,8,88844,3,1672319005),(82165,8,88845,3,1672319005),(82166,8,88846,3,1672319005),(82167,8,88847,3,1672319005),(82168,8,88848,3,1672319005),(82169,8,88849,3,1672319005),(82170,8,88850,3,1672319005),(82171,8,88851,3,1672319005),(82172,8,88852,3,1672319005),(82173,8,88853,3,1672319005),(82174,8,88854,3,1672319005),(82175,8,88855,3,1672319005),(82176,8,88856,3,1672319005),(82177,8,88857,3,1672319005),(82178,8,88858,3,1672319005),(82179,8,88859,3,1672319005),(82180,8,88860,3,1672319005),(82181,8,88861,3,1672319005),(82182,8,88862,3,1672319005),(82183,8,88863,3,1672319005),(82184,8,88864,3,1672319005),(82185,8,88865,3,1672319005),(82186,8,88866,3,1672319005),(82187,8,88867,3,1672319005),(82188,8,88868,3,1672319005),(82189,8,88869,3,1672319005),(82190,8,88870,3,1672319005),(82191,8,88871,3,1672319005),(82192,8,88872,3,1672319005),(82193,8,88873,3,1672319005),(82194,8,88874,3,1672319005),(82195,8,88875,3,1672319005),(82196,8,88876,3,1672319005),(82197,8,88877,3,1672319005),(82198,8,88878,3,1672319005),(82199,8,88879,3,1672319005),(82200,8,88880,3,1672319005),(82201,8,88881,3,1672319005),(82202,8,88882,3,1672319005),(82203,8,88883,3,1672319005),(82204,8,88884,3,1672319005),(82205,8,88885,3,1672319005),(82206,8,88886,3,1672319005),(82207,8,88887,3,1672319005),(82208,8,88888,3,1672319005),(82209,8,88889,3,1672319005),(82210,8,88890,3,1672319005),(82211,8,88891,3,1672319005),(82212,8,88892,3,1672319005),(82213,8,88893,3,1672319005),(82214,8,88894,3,1672319005),(82215,8,88895,3,1672319005),(82216,8,88896,3,1672319005),(82217,8,88897,3,1672319005),(82218,8,88898,3,1672319005),(82219,8,88899,3,1672319005),(82220,8,88900,3,1672319005),(82221,8,88901,3,1672319005),(82222,8,88902,3,1672319005),(82223,8,88903,3,1672319005),(82224,8,88904,3,1672319005),(82225,8,88905,3,1672319005),(82226,8,88906,3,1672319005),(82227,8,88907,3,1672319005),(82228,8,88908,3,1672319005),(82229,8,88909,3,1672319005),(82230,8,88910,3,1672319005),(82231,8,88911,3,1672319005),(82232,8,88912,3,1672319005),(82233,8,88913,3,1672319005),(82234,8,88914,3,1672319005),(82235,8,88915,3,1672319005),(82236,8,88916,3,1672319005),(82237,8,88917,3,1672319005),(82238,8,88918,3,1672319005),(82239,8,88919,3,1672319005),(82240,8,88920,3,1672319005),(82241,8,88921,3,1672319005),(82242,8,88922,3,1672319005),(82243,8,88923,3,1672319005),(82244,8,88924,3,1672319005),(82245,8,88925,3,1672319005),(82246,8,88926,3,1672319005),(82247,8,88927,3,1672319005),(82248,8,88928,3,1672319005),(82249,8,88929,3,1672319005),(82250,8,88930,3,1672319005),(82251,8,88931,3,1672319005),(82252,8,88932,3,1672319005),(82253,8,88933,3,1672319005),(82254,8,88934,3,1672319005),(82255,8,88935,3,1672319005),(82256,8,88936,3,1672319005),(82257,8,88937,3,1672319005),(82258,8,88938,3,1672319005),(82259,8,88939,3,1672319005),(82260,8,88940,3,1672319005),(82261,8,88941,3,1672319005),(82262,8,88942,3,1672319005),(82263,8,88943,3,1672319005),(82264,8,88944,3,1672319005),(82265,8,88945,3,1672319005),(82266,8,88946,3,1672319005),(82267,8,88947,3,1672319005),(82268,8,88948,3,1672319005),(82269,8,88949,3,1672319005),(82270,8,88950,3,1672319005),(82271,8,88951,3,1672319005),(82272,8,88952,3,1672319005),(82273,8,88953,3,1672319005),(82274,8,88954,3,1672319005),(82275,8,88955,3,1672319005),(82276,8,88956,3,1672319005),(82277,8,88957,3,1672319005),(82278,8,88958,3,1672319005),(82279,8,88959,3,1672319005),(82280,8,88960,3,1672319005),(82281,8,88961,3,1672319005),(82282,8,88962,3,1672319005),(82283,8,88963,3,1672319005),(82284,8,88964,3,1672319005),(82285,8,88965,3,1672319005),(82286,8,88966,3,1672319005),(82287,8,88967,3,1672319005),(82288,8,88968,3,1672319005),(82289,8,88969,3,1672319005),(82290,8,88970,3,1672319005),(82291,8,88971,3,1672319005),(82292,8,88972,3,1672319005),(82293,8,88973,3,1672319005),(82294,8,88974,3,1672319005),(82295,8,88975,3,1672319005),(82296,8,88976,3,1672319005),(82297,8,88977,3,1672319005),(82298,8,88978,3,1672319005),(82299,8,88979,3,1672319005),(82300,8,88980,3,1672319005),(82301,8,88981,3,1672319005),(82302,8,88982,3,1672319005),(82303,8,88983,3,1672319005),(82304,8,88984,3,1672319005),(82305,8,88985,3,1672319005),(82306,8,88986,3,1672319005),(82307,8,88987,3,1672319005),(82308,8,88988,3,1672319005),(82309,8,88989,3,1672319005),(82310,8,88990,3,1672319005),(82311,8,88991,3,1672319005),(82312,8,88992,3,1672319005),(82313,8,88993,3,1672319005),(82314,8,88994,3,1672319005),(82315,8,88995,3,1672319005),(82316,8,88996,3,1672319005),(82317,8,88997,3,1672319005),(82318,8,88998,3,1672319005),(82319,8,88999,3,1672319005),(82320,8,89000,3,1672319005),(82321,8,89001,3,1672319005),(82322,8,89002,3,1672319005),(82323,8,89003,3,1672319005),(82324,8,89004,3,1672319005),(82325,8,89005,3,1672319005),(82326,8,89006,3,1672319005),(82327,8,89007,3,1672319005),(82328,8,89008,3,1672319005),(82329,8,89009,3,1672319005),(82330,8,89010,3,1672319005),(82331,8,89011,3,1672319005),(82332,8,89012,3,1672319005),(82333,8,89013,3,1672319005),(82334,8,89014,3,1672319005),(82335,8,89015,3,1672319005),(82336,8,89016,3,1672319005),(82337,8,89017,3,1672319005),(82338,8,89018,3,1672319005),(82339,8,89019,3,1672319005),(82340,8,89020,3,1672319005),(82341,8,89021,3,1672319005),(82342,8,89022,3,1672319005),(82343,8,89023,3,1672319005),(82344,8,89024,3,1672319005),(82345,8,89025,3,1672319005),(82346,8,89026,3,1672319005),(82347,8,89027,3,1672319005),(82348,8,89028,3,1672319005),(82349,8,89029,3,1672319005),(82350,8,89030,3,1672319005),(82351,8,89031,3,1672319005),(82352,8,89032,3,1672319005),(82353,8,89033,3,1672319005),(82354,8,89034,3,1672319005),(82355,8,89035,3,1672319005),(82356,8,89036,3,1672319005),(82357,8,89037,3,1672319005),(82358,8,89038,3,1672319005),(82359,8,89039,3,1672319005),(82360,8,89040,3,1672319005),(82361,8,89041,3,1672319005),(82362,8,89042,3,1672319005),(82363,8,89043,3,1672319005),(82364,8,89044,3,1672319005),(82365,8,89045,3,1672319005),(82366,8,89046,3,1672319005),(82367,8,89047,3,1672319005),(82368,8,89048,3,1672319005),(82369,8,89049,3,1672319005),(82370,8,89050,3,1672319005),(82371,8,89051,3,1672319005),(82372,8,89052,3,1672319005),(82373,8,89053,3,1672319005),(82374,8,89054,3,1672319005),(82375,8,89055,3,1672319005),(82376,8,89056,3,1672319005),(82377,8,89057,3,1672319005),(82378,8,89058,3,1672319005),(82379,8,89059,3,1672319005),(82380,8,89060,3,1672319005),(82381,8,89061,3,1672319005),(82382,8,89062,3,1672319005),(82383,8,89063,3,1672319005),(82384,8,89064,3,1672319005),(82385,8,89065,3,1672319005),(82386,8,89066,3,1672319005),(82387,8,89067,3,1672319005),(82388,8,89068,3,1672319005),(82389,8,89069,3,1672319005),(82390,8,89070,3,1672319005),(82391,8,89071,3,1672319005),(82392,8,89072,3,1672319005),(82393,8,89073,3,1672319005),(82394,8,89074,3,1672319005),(82395,8,89075,3,1672319005),(82396,8,89076,3,1672319005),(82397,8,89077,3,1672319005),(82398,8,89078,3,1672319005),(82399,8,89079,3,1672319005),(82400,8,89080,3,1672319005),(82401,8,89081,3,1672319005),(82402,8,89082,3,1672319005),(82403,8,89083,3,1672319005),(82404,8,89084,3,1672319005),(82405,8,89085,3,1672319005),(82406,8,89086,3,1672319005),(82407,8,89087,3,1672319005),(82408,8,89088,3,1672319005),(82409,8,89089,3,1672319005),(82410,8,89090,3,1672319005),(82411,8,89091,3,1672319005),(82412,8,89092,3,1672319005),(82413,8,89093,3,1672319005),(82414,8,89094,3,1672319005),(82415,8,89095,3,1672319005),(82416,8,89096,3,1672319005),(82417,8,89097,3,1672319005),(82418,8,89098,3,1672319005),(82419,8,89099,3,1672319005),(82420,8,89100,3,1672319005),(82421,8,89101,3,1672319005),(82422,8,89102,3,1672319005),(82423,8,89103,3,1672319005),(82424,8,89104,3,1672319005),(82425,8,89105,3,1672319005),(82426,8,89106,3,1672319005),(82427,8,89107,3,1672319005),(82428,8,89108,3,1672319005),(82429,8,89109,3,1672319005),(82430,8,89110,3,1672319005),(82431,8,89111,3,1672319005),(82432,8,89112,3,1672319005),(82433,8,89113,3,1672319005),(82434,8,89114,3,1672319005),(82435,8,89115,3,1672319005),(82436,8,89116,3,1672319005),(82437,8,89117,3,1672319005),(82438,8,89118,3,1672319005),(82439,8,89119,3,1672319005),(82440,8,89120,3,1672319005),(82441,8,89121,3,1672319005),(82442,8,89122,3,1672319005),(82443,8,89123,3,1672319005),(82444,8,89124,3,1672319005),(82445,8,89125,3,1672319005),(82446,8,89126,3,1672319005),(82447,8,89127,3,1672319005),(82448,8,89128,3,1672319005),(82449,8,89129,3,1672319005),(82450,8,89130,3,1672319005),(82451,8,89131,3,1672319005),(82452,8,89132,3,1672319005),(82453,8,89133,3,1672319005),(82454,8,89134,3,1672319005),(82455,8,89135,3,1672319005),(82456,8,89136,3,1672319005),(82457,8,89137,3,1672319005),(82458,8,89138,3,1672319005),(82459,8,89139,3,1672319005),(82460,8,89140,3,1672319005),(82461,8,89141,3,1672319005),(82462,8,89142,3,1672319005),(82463,8,89143,3,1672319005),(82464,8,89144,3,1672319005),(82465,8,89145,3,1672319005),(82466,8,89146,3,1672319005),(82467,8,89147,3,1672319005),(82468,8,89148,3,1672319005),(82469,8,89149,3,1672319005),(82470,8,89150,3,1672319005),(82471,8,89151,3,1672319005),(82472,8,89152,3,1672319005),(82473,8,89153,3,1672319005),(82474,8,89154,3,1672319005),(82475,8,89155,3,1672319005),(82476,8,89156,3,1672319005),(82477,8,89157,3,1672319005),(82478,8,89158,3,1672319005),(82479,8,89159,3,1672319005),(82480,8,89160,3,1672319005),(82481,8,89161,3,1672319005),(82482,8,89162,3,1672319005),(82483,8,89163,3,1672319005),(82484,8,89164,3,1672319005),(82485,8,89165,3,1672319005),(82486,8,89166,3,1672319005),(82487,8,89167,3,1672319005),(82488,8,89168,3,1672319005),(82489,8,89169,3,1672319005),(82490,8,89170,3,1672319005),(82491,8,89171,3,1672319005),(82492,8,89172,3,1672319005),(82493,8,89173,3,1672319005),(82494,8,89174,3,1672319005),(82495,8,89175,3,1672319005),(82496,8,89176,3,1672319005),(82497,8,89177,3,1672319005),(82498,8,89178,3,1672319005),(82499,8,89179,3,1672319005),(82500,8,89180,3,1672319005),(82501,8,89181,3,1672319005),(82502,8,89182,3,1672319005),(82503,8,89183,3,1672319005),(82504,8,89184,3,1672319005),(82505,8,89185,3,1672319005),(82506,8,89186,3,1672319005),(82507,8,89187,3,1672319005),(82508,8,89188,3,1672319005),(82509,8,89189,3,1672319005),(82510,8,89190,3,1672319005),(82511,8,89191,3,1672319005),(82512,8,89192,3,1672319005),(82513,8,89193,3,1672319005),(82514,8,89194,3,1672319005),(82515,8,89195,3,1672319005),(82516,8,89196,3,1672319005),(82517,8,89197,3,1672319005),(82518,8,89198,3,1672319005),(82519,8,89199,3,1672319005),(82520,8,89200,3,1672319005),(82521,8,89201,3,1672319005),(82522,8,89202,3,1672319005),(82523,8,89203,3,1672319005),(82524,8,89204,3,1672319005),(82525,8,89205,3,1672319005),(82526,8,89206,3,1672319005),(82527,8,89207,3,1672319005),(82528,8,89208,3,1672319005),(82529,8,89209,3,1672319005),(82530,8,89210,3,1672319005),(82531,8,89211,3,1672319005),(82532,8,89212,3,1672319005),(82533,8,89213,3,1672319005),(82534,8,89214,3,1672319005),(82535,8,89215,3,1672319005),(82536,8,89216,3,1672319005),(82537,8,89217,3,1672319005),(82538,8,89218,3,1672319005),(82539,8,89219,3,1672319005),(82540,8,89220,3,1672319005),(82541,8,89221,3,1672319005),(82542,8,89222,3,1672319005),(82543,8,89223,3,1672319005),(82544,8,89224,3,1672319005),(82545,8,89225,3,1672319005),(82546,8,89226,3,1672319005),(82547,8,89227,3,1672319005),(82548,8,89228,3,1672319005),(82549,8,89229,3,1672319005),(82550,8,89230,3,1672319005),(82551,8,89231,3,1672319005),(82552,8,89232,3,1672319005),(82553,8,89233,3,1672319005),(82554,8,89234,3,1672319005),(82555,8,89235,3,1672319005),(82556,8,89236,3,1672319005),(82557,8,89237,3,1672319005),(82558,8,89238,3,1672319005),(82559,8,89239,3,1672319005),(82560,8,89240,3,1672319005),(82561,8,89241,3,1672319005),(82562,8,89242,3,1672319005),(82563,8,89243,3,1672319005),(82564,8,89244,3,1672319005),(82565,8,89245,3,1672319005),(82566,8,89246,3,1672319005),(82567,8,89247,3,1672319005),(82568,8,89248,3,1672319005),(82569,8,89249,3,1672319005),(82570,8,89250,3,1672319005),(82571,8,89251,3,1672319005),(82572,8,89252,3,1672319005),(82573,8,89253,3,1672319005),(82574,8,89254,3,1672319005),(82575,8,89255,3,1672319005),(82576,8,89256,3,1672319005),(82577,8,89257,3,1672319005),(82578,8,89258,3,1672319005),(82579,8,89259,3,1672319005),(82580,8,89260,3,1672319005),(82581,8,89261,3,1672319005),(82582,8,89262,3,1672319005),(82583,8,89263,3,1672319005),(82584,8,89264,3,1672319005),(82585,8,89265,3,1672319005),(82586,8,89266,3,1672319005),(82587,8,89267,3,1672319005),(82588,8,89268,3,1672319005),(82589,8,89269,3,1672319005),(82590,8,89270,3,1672319005),(82591,8,89271,3,1672319005),(82592,8,89272,3,1672319005),(82593,8,89273,3,1672319005),(82594,8,89274,3,1672319005),(82595,8,89275,3,1672319005),(82596,8,89276,3,1672319005),(82597,8,89277,3,1672319005),(82598,8,89278,3,1672319005),(82599,8,89279,3,1672319005),(82600,8,89280,3,1672319005),(82601,8,89281,3,1672319005),(82602,8,89282,3,1672319005),(82603,8,89283,3,1672319005),(82604,8,89284,3,1672319005),(82605,8,89285,3,1672319005),(82606,8,89286,3,1672319005),(82607,8,89287,3,1672319005),(82608,8,89288,3,1672319005),(82609,8,89289,3,1672319005),(82610,8,89290,3,1672319005),(82611,8,89291,3,1672319005),(82612,8,89292,3,1672319005),(82613,8,89293,3,1672319005),(82614,8,89294,3,1672319005),(82615,8,89295,3,1672319005),(82616,8,89296,3,1672319005),(82617,8,89297,3,1672319005),(82618,8,89298,3,1672319005),(82619,8,89299,3,1672319005),(82620,8,89300,3,1672319005),(82621,8,89301,3,1672319005),(82622,8,89302,3,1672319005),(82623,8,89303,3,1672319005),(82624,8,89304,3,1672319005),(82625,8,89305,3,1672319005),(82626,8,89306,3,1672319005),(82627,8,89307,3,1672319005),(82628,8,89308,3,1672319005),(82629,8,89309,3,1672319005),(82630,8,89310,3,1672319005),(82631,8,89311,3,1672319005),(82632,8,89312,3,1672319005),(82633,8,89313,3,1672319005),(82634,8,89314,3,1672319005),(82635,8,89315,3,1672319005),(82636,8,89316,3,1672319005),(82637,8,89317,3,1672319005),(82638,8,89318,3,1672319005),(82639,8,89319,3,1672319005),(82640,8,89320,3,1672319005),(82641,8,89321,3,1672319005),(82642,8,89322,3,1672319005),(82643,8,89323,3,1672319005),(82644,8,89324,3,1672319005),(82645,8,89325,3,1672319005),(82646,8,89326,3,1672319005),(82647,8,89327,3,1672319005),(82648,8,89328,3,1672319005),(82649,8,89329,3,1672319005),(82650,8,89330,3,1672319005),(82651,8,89331,3,1672319005),(82652,8,89332,3,1672319005),(82653,8,89333,3,1672319005),(82654,8,89334,3,1672319005),(82655,8,89335,3,1672319005),(82656,8,89336,3,1672319005),(82657,8,89337,3,1672319005),(82658,8,89338,3,1672319005),(82659,8,89339,3,1672319005),(82660,8,89340,3,1672319005),(82661,8,89341,3,1672319005),(82662,8,89342,3,1672319005),(82663,8,89343,3,1672319005),(82664,8,89344,3,1672319005),(82665,8,89345,3,1672319005),(82666,8,89346,3,1672319005),(82667,8,89347,3,1672319005),(82668,8,89348,3,1672319005),(82669,8,89349,3,1672319005),(82670,8,89350,3,1672319005),(82671,8,89351,3,1672319005),(82672,8,89352,3,1672319005),(82673,8,89353,3,1672319005),(82674,8,89354,3,1672319005),(82675,8,89355,3,1672319005),(82676,8,89356,3,1672319005),(82677,8,89357,3,1672319005),(82678,8,89358,3,1672319005),(82679,8,89359,3,1672319005),(82680,8,89360,3,1672319005),(82681,8,89361,3,1672319005),(82682,8,89362,3,1672319005),(82683,8,89363,3,1672319005),(82684,8,89364,3,1672319005),(82685,8,89365,3,1672319005),(82686,8,89366,3,1672319005),(82687,8,89367,3,1672319005),(82688,8,89368,3,1672319005),(82689,8,89369,3,1672319005),(82690,8,89370,3,1672319005),(82691,8,89371,3,1672319005),(82692,8,89372,3,1672319005),(82693,8,89373,3,1672319005),(82694,8,89374,3,1672319005),(82695,8,89375,3,1672319005),(82696,8,89376,3,1672319005),(82697,8,89377,3,1672319005),(82698,8,89378,3,1672319005),(82699,8,89379,3,1672319005),(82700,8,89380,3,1672319005),(82701,8,89381,3,1672319005),(82702,8,89382,3,1672319005),(82703,8,89383,3,1672319005),(82704,8,89384,3,1672319005),(82705,8,89385,3,1672319005),(82706,8,89386,3,1672319005),(82707,8,89387,3,1672319005),(82708,8,89388,3,1672319005),(82709,8,89389,3,1672319005),(82710,8,89390,3,1672319005),(82711,8,89391,3,1672319005),(82712,8,89392,3,1672319005),(82713,8,89393,3,1672319005),(82714,8,89394,3,1672319005),(82715,8,89395,3,1672319005),(82716,8,89396,3,1672319005),(82717,8,89397,3,1672319005),(82718,8,89398,3,1672319005),(82719,8,89399,3,1672319005),(82720,8,89400,3,1672319005),(82721,8,89401,3,1672319005),(82722,8,89402,3,1672319005),(82723,8,89403,3,1672319005),(82724,8,89404,3,1672319005),(82725,8,89405,3,1672319005),(82726,8,89406,3,1672319005),(82727,8,89407,3,1672319005),(82728,8,89408,3,1672319005),(82729,8,89409,3,1672319005),(82730,8,89410,3,1672319005),(82731,8,89411,3,1672319005),(82732,8,89412,3,1672319005),(82733,8,89413,3,1672319005),(82734,8,89414,3,1672319005),(82735,8,89415,3,1672319005),(82736,8,89416,3,1672319005),(82737,8,89417,3,1672319005),(82738,8,89418,3,1672319005),(82739,8,89419,3,1672319005),(82740,8,89420,3,1672319005),(82741,8,89421,3,1672319005),(82742,8,89422,3,1672319005),(82743,8,89423,3,1672319005),(82744,8,89424,3,1672319005),(82745,8,89425,3,1672319005),(82746,8,89426,3,1672319005),(82747,8,89427,3,1672319005),(82748,8,89428,3,1672319005),(82749,8,89429,3,1672319005),(82750,8,89430,3,1672319005),(82751,8,89431,3,1672319005),(82752,8,89432,3,1672319005),(82753,8,89433,3,1672319005),(82754,8,89434,3,1672319005),(82755,8,89435,3,1672319005),(82756,8,89436,3,1672319005),(82757,8,89437,3,1672319005),(82758,8,89438,3,1672319005),(82759,8,89439,3,1672319005),(82760,8,89440,3,1672319005),(82761,8,89441,3,1672319005),(82762,8,89442,3,1672319005),(82763,8,89443,3,1672319005),(82764,8,89444,3,1672319005),(82765,8,89445,3,1672319005),(82766,8,89446,3,1672319005),(82767,8,89447,3,1672319005),(82768,8,89448,3,1672319005),(82769,8,89449,3,1672319005),(82770,8,89450,3,1672319005),(82771,8,89451,3,1672319005),(82772,8,89452,3,1672319005),(82773,8,89453,3,1672319005),(82774,8,89454,3,1672319005),(82775,8,89455,3,1672319005),(82776,8,89456,3,1672319005),(82777,8,89457,3,1672319005),(82778,8,89458,3,1672319005),(82779,8,89459,3,1672319005),(82780,8,89460,3,1672319005),(82781,8,89461,3,1672319005),(82782,8,89462,3,1672319005),(82783,8,89463,3,1672319005),(82784,8,89464,3,1672319005),(82785,8,89465,3,1672319005),(82786,8,89466,3,1672319005),(82787,8,89467,3,1672319005),(82788,8,89468,3,1672319005),(82789,8,89469,3,1672319005),(82790,8,89470,3,1672319005),(82791,8,89471,3,1672319005),(82792,8,89472,3,1672319005),(82793,8,89473,3,1672319005),(82794,8,89474,3,1672319005),(82795,8,89475,3,1672319005),(82796,8,89476,3,1672319005),(82797,8,89477,3,1672319005),(82798,8,89478,3,1672319005),(82799,8,89479,3,1672319005),(82800,8,89480,3,1672319005),(82801,8,89481,3,1672319005),(82802,8,89482,3,1672319005),(82803,8,89483,3,1672319005),(82804,8,89484,3,1672319005),(82805,8,89485,3,1672319005),(82806,8,89486,3,1672319005),(82807,8,89487,3,1672319005),(82808,8,89488,3,1672319005),(82809,8,89489,3,1672319005),(82810,8,89490,3,1672319005),(82811,8,89491,3,1672319005),(82812,8,89492,3,1672319005),(82813,8,89493,3,1672319005),(82814,8,89494,3,1672319005),(82815,8,89495,3,1672319005),(82816,8,89496,3,1672319005),(82817,8,89497,3,1672319005),(82818,8,89498,3,1672319005),(82819,8,89499,3,1672319005),(82820,8,89500,3,1672319005),(82821,8,89501,3,1672319005),(82822,8,89502,3,1672319005),(82823,8,89503,3,1672319005),(82824,8,89504,3,1672319005),(82825,8,89505,3,1672319005),(82826,8,89506,3,1672319005),(82827,8,89507,3,1672319005),(82828,8,89508,3,1672319005),(82829,8,89509,3,1672319005),(82830,8,89510,3,1672319005),(82831,8,89511,3,1672319005),(82832,8,89512,3,1672319005),(82833,8,89513,3,1672319005),(82834,8,89514,3,1672319005),(82835,8,89515,3,1672319005),(82836,8,89516,3,1672319005),(82837,8,89517,3,1672319005),(82838,8,89518,3,1672319005),(82839,8,89519,3,1672319005),(82840,8,89520,3,1672319005),(82841,8,89521,3,1672319005),(82842,8,89522,3,1672319005),(82843,8,89523,3,1672319005),(82844,8,89524,3,1672319005),(82845,8,89525,3,1672319005),(82846,8,89526,3,1672319005),(82847,8,89527,3,1672319005),(82848,8,89528,3,1672319005),(82849,8,89529,3,1672319005),(82850,8,89530,3,1672319005),(82851,8,89531,3,1672319005),(82852,8,89532,3,1672319005),(82853,8,89533,3,1672319005),(82854,8,89534,3,1672319005),(82855,8,89535,3,1672319005),(82856,8,89536,3,1672319005),(82857,8,89537,3,1672319005),(82858,8,89538,3,1672319005),(82859,8,89539,3,1672319005),(82860,8,89540,3,1672319005),(82861,8,89541,3,1672319005),(82862,8,89542,3,1672319005),(82863,8,89543,3,1672319005),(82864,8,89544,3,1672319005),(82865,8,89545,3,1672319005),(82866,8,89546,3,1672319005),(82867,8,89547,3,1672319005),(82868,8,89548,3,1672319005),(82869,8,89549,3,1672319005),(82870,8,89550,3,1672319005),(82871,8,89551,3,1672319005),(82872,8,89552,3,1672319005),(82873,8,89553,3,1672319005),(82874,8,89554,3,1672319005),(82875,8,89555,3,1672319005),(82876,8,89556,3,1672319005),(82877,8,89557,3,1672319005),(82878,8,89558,3,1672319005),(82879,8,89559,3,1672319005),(82880,8,89560,3,1672319005),(82881,8,89561,3,1672319005),(82882,8,89562,3,1672319005),(82883,8,89563,3,1672319005),(82884,8,89564,3,1672319005),(82885,8,89565,3,1672319005),(82886,8,89566,3,1672319005),(82887,8,89567,3,1672319005),(82888,8,89568,3,1672319005),(82889,8,89569,3,1672319005),(82890,8,89570,3,1672319005),(82891,8,89571,3,1672319005),(82892,8,89572,3,1672319005),(82893,8,89573,3,1672319005),(82894,8,89574,3,1672319005),(82895,8,89575,3,1672319005),(82896,8,89576,3,1672319005),(82897,8,89577,3,1672319005),(82898,8,89578,3,1672319005),(82899,8,89579,3,1672319005),(82900,8,89580,3,1672319005),(82901,8,89581,3,1672319005),(82902,8,89582,3,1672319005),(82903,8,89583,3,1672319005),(82904,8,89584,3,1672319005),(82905,8,89585,3,1672319005),(82906,8,89586,3,1672319005),(82907,8,89587,3,1672319005),(82908,8,89588,3,1672319005),(82909,8,89589,3,1672319005),(82910,8,89590,3,1672319005),(82911,8,89591,3,1672319005),(82912,8,89592,3,1672319005),(82913,8,89593,3,1672319005),(82914,8,89594,3,1672319005),(82915,8,89595,3,1672319005),(82916,8,89596,3,1672319005),(82917,8,89597,3,1672319005),(82918,8,89598,3,1672319005),(82919,8,89599,3,1672319005),(82920,8,89600,3,1672319005),(82921,8,89601,3,1672319005),(82922,8,89602,3,1672319005),(82923,8,89603,3,1672319005),(82924,8,89604,3,1672319005),(82925,8,89605,3,1672319005),(82926,8,89606,3,1672319005),(82927,8,89607,3,1672319005),(82928,8,89608,3,1672319005),(82929,8,89609,3,1672319005),(82930,8,89610,3,1672319005),(82931,8,89611,3,1672319005),(82932,8,89612,3,1672319005),(82933,8,89613,3,1672319005),(82934,8,89614,3,1672319005),(82935,8,89615,3,1672319005),(82936,8,89616,3,1672319005),(82937,8,89631,3,1672319005),(82938,8,89632,3,1672319005),(82939,8,89635,3,1672319005),(82940,8,89637,3,1672319005),(82941,8,89638,3,1672319005),(82942,8,89639,3,1672319005),(82943,8,89640,3,1672319005),(82944,8,89641,3,1672319005),(82945,8,89642,3,1672319005),(82946,8,89643,3,1672319005),(82947,8,89644,3,1672319005),(82948,8,89645,3,1672319005),(82949,8,89646,3,1672319005),(82950,8,89647,3,1672319005),(82951,8,89659,3,1672319005),(82952,8,89660,3,1672319005),(82953,8,89661,3,1672319005),(82954,8,89662,3,1672319005),(82955,8,89663,3,1672319005),(82956,8,89664,3,1672319005),(82957,8,89665,3,1672319005),(82958,8,89666,3,1672319005),(82959,8,89667,3,1672319005),(82960,8,89668,3,1672319005),(82961,8,89669,3,1672319005),(82962,8,89670,3,1672319005),(82963,8,89671,3,1672319005),(82964,8,89672,3,1672319005),(82965,8,89673,3,1672319005),(82966,8,89674,3,1672319005),(82967,8,89691,3,1672319005),(82968,8,89692,3,1672319005),(82969,8,89693,3,1672319005),(82970,8,89694,3,1672319005),(82971,8,89695,3,1672319005),(82972,8,89696,3,1672319005),(82973,8,89697,3,1672319005),(82974,8,89698,3,1672319005),(82975,8,89699,3,1672319005),(82976,8,89700,3,1672319005),(82977,8,89701,3,1672319005),(82978,8,89702,3,1672319005),(82979,8,89703,3,1672319005),(82980,8,89704,3,1672319005),(82981,8,89705,3,1672319005),(82982,8,89706,3,1672319005),(82983,8,89707,3,1672319005),(82984,8,89708,3,1672319005),(82985,8,89709,3,1672319005),(82986,8,89710,3,1672319005),(82987,8,89711,3,1672319005),(82988,8,89712,3,1672319005),(82989,8,89713,3,1672319005),(82990,8,89714,3,1672319005),(82991,8,89715,3,1672319005),(82992,8,89716,3,1672319005),(82993,8,89717,3,1672319005),(82994,8,89718,3,1672319005),(82995,8,89719,3,1672319005),(82996,8,89720,3,1672319005),(82997,8,89721,3,1672319005),(82998,8,89722,3,1672319005),(82999,8,89723,3,1672319005),(83000,8,89724,3,1672319005),(83001,8,89725,3,1672319005),(83002,8,89726,3,1672319005),(83003,8,89727,3,1672319005),(83004,8,89728,3,1672319005),(83005,8,89729,3,1672319005),(83006,8,89730,3,1672319005),(83007,8,89731,3,1672319005),(83008,8,89732,3,1672319005),(83009,8,89733,3,1672319005),(83010,8,89734,3,1672319005),(83011,8,89735,3,1672319005),(83012,8,89736,3,1672319005),(83013,8,89737,3,1672319005),(83014,8,89738,3,1672319005),(83015,8,89739,3,1672319005),(83016,8,89740,3,1672319005),(83017,8,89741,3,1672319005),(83018,8,89742,3,1672319005),(83019,8,89743,3,1672319005),(83020,8,89744,3,1672319005),(83021,8,89745,3,1672319005),(83022,8,89746,3,1672319005),(83023,8,89747,3,1672319005),(83024,8,89748,3,1672319005),(83025,8,89749,3,1672319005),(83026,8,89750,3,1672319005),(83027,8,89751,3,1672319005),(83028,8,89752,3,1672319005),(83029,8,89753,3,1672319005),(83030,8,89754,3,1672319005),(83031,8,89755,3,1672319005),(83032,8,89756,3,1672319005),(83033,8,89757,3,1672319005),(83034,8,89758,3,1672319005),(83035,8,89759,3,1672319005),(83036,8,89760,3,1672319005),(83037,8,89761,3,1672319005),(83038,8,89762,3,1672319005),(83039,8,89763,3,1672319005),(83040,8,89764,3,1672319005),(83041,8,89765,3,1672319005),(83042,8,89766,3,1672319005),(83043,8,89767,3,1672319005),(83044,8,89768,3,1672319005),(83045,8,89769,3,1672319005),(83046,8,89770,3,1672319005),(83047,8,89771,3,1672319005),(83048,8,89772,3,1672319005),(83049,8,89773,3,1672319005),(83050,8,89774,3,1672319005),(83051,8,89775,3,1672319005),(83052,8,89776,3,1672319005),(83053,8,89777,3,1672319005),(83054,8,89778,3,1672319005),(83055,8,89779,3,1672319005),(83056,8,89780,3,1672319005),(83057,8,89781,3,1672319005),(83058,8,89782,3,1672319005),(83059,8,89783,3,1672319005),(83060,8,89784,3,1672319005),(83061,8,89785,3,1672319005),(83062,8,89786,3,1672319005),(83063,8,89787,3,1672319005),(83064,8,89788,3,1672319005),(83065,8,89789,3,1672319005),(83066,8,89790,3,1672319005),(83067,8,89791,3,1672319005),(83068,8,89792,3,1672319005),(83069,8,89793,3,1672319005),(83070,8,89794,3,1672319005),(83071,8,89795,3,1672319005),(83072,8,89796,3,1672319005),(83073,8,89797,3,1672319005),(83074,8,89798,3,1672319005),(83075,8,89799,3,1672319005),(83076,8,89800,3,1672319005),(83077,8,89801,3,1672319005),(83078,8,89802,3,1672319005),(83079,8,89803,3,1672319005),(83080,8,89804,3,1672319005),(83081,8,89805,3,1672319005),(83082,8,89806,3,1672319005),(83083,8,89807,3,1672319005),(83084,8,89808,3,1672319005),(83085,8,89809,3,1672319005),(83086,8,89810,3,1672319005),(83087,8,89811,3,1672319005),(83088,8,89812,3,1672319005),(83089,8,89813,3,1672319005),(83090,8,89814,3,1672319005),(83091,8,89815,3,1672319005),(83092,8,89816,3,1672319005),(83093,8,89817,3,1672319005),(83094,8,89818,3,1672319005),(83095,8,89819,3,1672319005),(83096,8,89820,3,1672319005),(83097,8,89821,3,1672319005),(83098,8,89822,3,1672319005),(83099,8,89823,3,1672319005),(83100,8,89824,3,1672319005),(83101,8,89825,3,1672319005),(83102,8,89826,3,1672319005),(83103,8,89827,3,1672319005),(83104,8,89828,3,1672319005),(83105,8,89829,3,1672319005),(83106,8,89830,3,1672319005),(83107,8,89831,3,1672319005),(83108,8,89832,3,1672319005),(83109,8,89833,3,1672319005),(83110,8,89834,3,1672319005),(83111,8,89835,3,1672319005),(83112,8,89836,3,1672319005),(83113,8,89837,3,1672319005),(83114,8,89838,3,1672319005),(83115,8,89839,3,1672319005),(83116,8,89840,3,1672319005),(83117,8,89841,3,1672319005),(83118,8,89842,3,1672319005),(83119,8,89843,3,1672319005),(83120,8,89844,3,1672319005),(83121,8,89845,3,1672319005),(83122,8,89846,3,1672319005),(83123,8,89847,3,1672319005),(83124,8,89848,3,1672319005),(83125,8,89849,3,1672319005),(83126,8,89850,3,1672319005),(83127,8,89851,3,1672319005),(83128,8,89852,3,1672319005),(83129,8,89853,3,1672319005),(83130,8,89854,3,1672319005),(83131,8,89855,3,1672319005),(83132,8,89856,3,1672319005),(83133,8,89857,3,1672319005),(83134,8,89858,3,1672319005),(83135,8,89859,3,1672319005),(83136,8,89860,3,1672319005),(83137,8,89861,3,1672319005),(83138,8,89862,3,1672319005),(83139,8,89863,3,1672319005),(83140,8,89864,3,1672319005),(83141,8,89865,3,1672319005),(83142,8,89866,3,1672319005),(83143,8,89867,3,1672319005),(83144,8,89868,3,1672319005),(83145,8,89869,3,1672319005),(83146,8,89870,3,1672319005),(83147,8,89871,3,1672319005),(83148,8,89872,3,1672319005),(83149,8,89873,3,1672319005),(83150,8,89874,3,1672319005),(83151,8,89875,3,1672319005),(83152,8,89876,3,1672319005),(83153,8,89877,3,1672319005),(83154,8,89878,3,1672319005),(83155,8,89879,3,1672319005),(83156,8,89880,3,1672319005),(83157,8,89881,3,1672319005),(83158,8,89882,3,1672319005),(83159,8,89883,3,1672319005),(83160,8,89884,3,1672319005),(83161,8,89885,3,1672319005),(83162,8,89886,3,1672319005),(83163,8,89887,3,1672319005),(83164,8,89888,3,1672319005),(83165,8,89889,3,1672319005),(83166,8,89890,3,1672319005),(83167,8,89891,3,1672319005),(83168,8,89892,3,1672319005),(83169,8,89893,3,1672319005),(83170,8,89894,3,1672319005),(83171,8,89895,3,1672319005),(83172,8,89896,3,1672319005),(83173,8,89897,3,1672319005),(83174,8,89898,3,1672319005),(83175,8,89899,3,1672319005),(83176,8,89900,3,1672319005),(83177,8,89901,3,1672319005),(83178,8,89902,3,1672319005),(83179,8,89903,3,1672319005),(83180,8,89904,3,1672319005),(83181,8,89905,3,1672319005),(83182,8,89906,3,1672319005),(83183,8,89907,3,1672319005),(83184,8,89908,3,1672319005),(83185,8,89909,3,1672319005),(83186,8,89910,3,1672319005),(83187,8,89911,3,1672319005),(83188,8,89912,3,1672319005),(83189,8,89913,3,1672319005),(83190,8,89914,3,1672319005),(83191,8,89915,3,1672319005),(83192,8,89916,3,1672319005),(83193,8,89917,3,1672319005),(83194,8,89918,3,1672319005),(83195,8,89919,3,1672319005),(83196,8,89920,3,1672319005),(83197,8,89922,3,1672319005),(83198,8,89923,3,1672319005),(83199,8,89924,3,1672319005),(83200,8,89925,3,1672319005),(83201,8,89928,3,1672319005),(83202,8,89929,3,1672319005),(83203,8,89930,3,1672319005),(83204,8,89931,3,1672319005),(83205,8,89932,3,1672319005),(83206,8,89933,3,1672319005),(83207,8,89934,3,1672319005),(83208,8,89935,3,1672319005),(83209,8,89936,3,1672319005),(83210,8,89937,3,1672319005),(83211,8,89938,3,1672319005),(83212,8,89939,3,1672319005),(83213,8,89940,3,1672319005),(83214,8,89941,3,1672319005),(83215,8,89942,3,1672319005),(83216,8,89943,3,1672319005),(83217,8,89944,3,1672319005),(83218,8,89945,3,1672319005),(83219,8,89946,3,1672319005),(83220,8,89947,3,1672319005),(83221,8,89948,3,1672319005),(83222,8,89949,3,1672319005),(83223,8,89950,3,1672319005),(83224,8,89951,3,1672319005),(83225,8,89952,3,1672319005),(83226,8,89953,3,1672319005),(83227,8,89954,3,1672319005),(83228,8,89955,3,1672319005),(83229,8,89956,3,1672319005),(83230,8,89957,3,1672319005),(83231,8,89958,3,1672319005),(83232,8,89959,3,1672319005),(83233,8,89960,3,1672319005),(83234,8,89961,3,1672319005),(83235,8,89962,3,1672319005),(83236,8,89963,3,1672319005),(83237,8,89964,3,1672319005),(83238,8,89965,3,1672319005),(83239,8,89966,3,1672319005),(83240,8,89967,3,1672319005),(83241,8,89968,3,1672319005),(83242,8,89969,3,1672319005),(83243,8,89970,3,1672319005),(83244,8,89971,3,1672319005),(83245,8,89972,3,1672319005),(83246,8,89973,3,1672319005),(83247,8,89974,3,1672319005),(83248,8,89975,3,1672319005),(83249,8,89976,3,1672319005),(83250,8,89977,3,1672319005),(83251,8,89978,3,1672319005),(83252,8,89979,3,1672319005),(83253,8,89980,3,1672319005),(83254,8,89981,3,1672319005),(83255,8,89982,3,1672319005),(83256,8,89983,3,1672319005),(83257,8,89984,3,1672319005),(83258,8,89985,3,1672319005),(83259,8,89986,3,1672319005),(83260,8,89987,3,1672319005),(83261,8,89988,3,1672319005),(83262,8,89989,3,1672319005),(83263,8,89990,3,1672319005),(83264,8,89991,3,1672319005),(83265,8,89992,3,1672319005),(83266,8,89993,3,1672319005),(83267,8,89994,3,1672319005),(83268,8,89995,3,1672319005),(83269,8,89996,3,1672319005),(83270,8,89997,3,1672319005),(83271,8,89998,3,1672319005),(83272,8,89999,3,1672319005),(83273,8,90000,3,1672319005),(83274,8,90001,3,1672319005),(83275,8,90002,3,1672319005),(83276,8,90003,3,1672319005),(83277,8,90004,3,1672319005),(83278,8,90005,3,1672319005),(83279,8,90006,3,1672319005),(83280,8,90007,3,1672319005),(83281,8,90008,3,1672319005),(83282,8,90009,3,1672319005),(83283,8,90010,3,1672319005),(83284,8,90011,3,1672319005),(83285,8,90012,3,1672319005),(83286,8,90013,3,1672319005),(83287,8,90014,3,1672319005),(83288,8,90015,3,1672319005),(83289,8,90016,3,1672319005),(83290,8,90017,3,1672319005),(83291,8,90018,3,1672319005),(83292,8,90019,3,1672319005),(83293,8,90020,3,1672319005),(83294,8,90021,3,1672319005),(83295,8,90022,3,1672319005),(83296,8,90023,3,1672319005),(83297,8,90024,3,1672319005),(83298,8,90025,3,1672319005),(83299,8,90026,3,1672319005),(83300,8,90027,3,1672319005),(83301,8,90028,3,1672319005),(83302,8,90029,3,1672319005),(83303,8,90030,3,1672319005),(83304,8,90031,3,1672319005),(83305,8,90032,3,1672319005),(83306,8,90033,3,1672319005),(83307,8,90034,3,1672319005),(83308,8,90035,3,1672319005),(83309,8,90036,3,1672319005),(83310,8,90037,3,1672319005),(83311,8,90038,3,1672319005),(83312,8,90039,3,1672319005),(83313,8,90040,3,1672319005),(83314,8,90041,3,1672319005),(83315,8,90042,3,1672319005),(83316,8,90043,3,1672319005),(83317,8,90044,3,1672319005),(83318,8,90045,3,1672319005),(83319,8,90046,3,1672319005),(83320,8,90047,3,1672319005),(83321,8,90048,3,1672319005),(83322,8,90049,3,1672319005),(83323,8,90050,3,1672319005),(83324,8,90051,3,1672319005),(83325,8,90052,3,1672319005),(83326,8,90053,3,1672319005),(83327,8,90054,3,1672319005),(83328,8,90055,3,1672319005),(83329,8,90056,3,1672319005),(83330,8,90057,3,1672319005),(83331,8,90058,3,1672319005),(83332,8,90059,3,1672319005),(83333,8,90060,3,1672319005),(83334,8,90061,3,1672319005),(83335,8,90062,3,1672319005),(83336,8,90063,3,1672319005),(83337,8,90064,3,1672319005),(83338,8,90065,3,1672319005),(83339,8,90066,3,1672319005),(83340,8,90067,3,1672319005),(83341,8,90068,3,1672319005),(83342,8,90069,3,1672319005),(83343,8,90070,3,1672319005),(83344,8,90071,3,1672319005),(83345,8,90072,3,1672319005),(83346,8,90073,3,1672319005),(83347,8,90074,3,1672319005),(83348,8,90075,3,1672319005),(83349,8,90076,3,1672319005),(83350,8,90077,3,1672319005),(83351,8,90078,3,1672319005),(83352,8,90079,3,1672319005),(83353,8,90080,3,1672319005),(83354,8,90081,3,1672319005),(83355,8,90082,3,1672319005),(83356,8,90083,3,1672319005),(83357,8,90084,3,1672319005),(83358,8,90085,3,1672319005),(83359,8,90086,3,1672319005),(83360,8,90087,3,1672319005),(83361,8,90088,3,1672319005),(83362,8,90089,3,1672319005),(83363,8,90090,3,1672319005),(83364,8,90091,3,1672319005),(83365,8,90092,3,1672319005),(83366,8,90093,3,1672319005),(83367,8,90094,3,1672319005),(83368,8,90095,3,1672319005),(83369,8,90096,3,1672319005),(83370,8,90097,3,1672319005),(83371,8,90098,3,1672319005),(83372,8,90099,3,1672319005),(83373,8,90100,3,1672319005),(83374,8,90101,3,1672319005),(83375,8,90102,3,1672319005),(83376,8,90103,3,1672319005),(83377,8,90104,3,1672319005),(83378,8,90105,3,1672319005),(83379,8,90106,3,1672319005),(83380,8,90107,3,1672319005),(83381,8,90108,3,1672319005),(83382,8,90109,3,1672319005),(83383,8,90110,3,1672319005),(83384,8,90111,3,1672319005),(83385,8,90112,3,1672319005),(83386,8,90113,3,1672319005),(83387,8,90114,3,1672319005),(83388,8,90115,3,1672319005),(83389,8,90116,3,1672319005),(83390,8,90117,3,1672319005),(83391,8,90118,3,1672319005),(83392,8,90119,3,1672319005),(83393,8,90120,3,1672319005),(83394,8,90121,3,1672319005),(83395,8,90122,3,1672319005),(83396,8,90123,3,1672319005),(83397,8,90124,3,1672319005),(83398,8,90125,3,1672319005),(83399,8,90126,3,1672319005),(83400,8,90127,3,1672319005),(83401,8,90128,3,1672319005),(83402,8,90129,3,1672319005),(83403,8,90130,3,1672319005),(83404,8,90131,3,1672319005),(83405,8,90132,3,1672319005),(83406,8,90133,3,1672319005),(83407,8,90134,3,1672319005),(83408,8,90135,3,1672319005),(83409,8,90136,3,1672319005),(83410,8,90137,3,1672319005),(83411,8,90138,3,1672319005),(83412,8,90139,3,1672319005),(83413,8,90140,3,1672319005),(83414,8,90141,3,1672319005),(83415,8,90142,3,1672319005),(83416,8,90143,3,1672319005),(83417,8,90144,3,1672319005),(83418,8,90145,3,1672319005),(83419,8,90146,3,1672319005),(83420,8,90147,3,1672319005),(83421,8,90148,3,1672319005),(83422,8,90149,3,1672319005),(83423,8,90150,3,1672319005),(83424,8,90151,3,1672319005),(83425,8,90152,3,1672319005),(83426,8,90153,3,1672319005),(83427,8,90154,3,1672319005),(83428,8,90155,3,1672319005),(83429,8,90156,3,1672319005),(83430,8,90157,3,1672319005),(83431,8,90158,3,1672319005),(83432,8,90159,3,1672319005),(83433,8,90160,3,1672319005),(83434,8,90161,3,1672319005),(83435,8,90162,3,1672319005),(83436,8,90163,3,1672319005),(83437,8,90164,3,1672319005),(83438,8,90165,3,1672319005),(83439,8,90166,3,1672319005),(83440,8,90167,3,1672319005),(83441,8,90168,3,1672319005),(83442,8,90169,3,1672319005),(83443,8,90170,3,1672319005),(83444,8,90171,3,1672319005),(83445,8,90172,3,1672319005),(83446,8,90173,3,1672319005),(83447,8,90174,3,1672319005),(83448,8,90175,3,1672319005),(83449,8,90176,3,1672319005),(83450,8,90177,3,1672319005),(83451,8,90178,3,1672319005),(83452,8,90179,3,1672319005),(83453,8,90180,3,1672319005),(83454,8,90181,3,1672319005),(83455,8,90182,3,1672319005),(83456,8,90183,3,1672319005),(83457,8,90184,3,1672319005),(83458,8,90185,3,1672319005),(83459,8,90186,3,1672319005),(83460,8,90187,3,1672319005),(83461,8,90188,3,1672319005),(83462,8,90189,3,1672319005),(83463,8,90190,3,1672319005),(83464,8,90191,3,1672319005),(83465,8,90192,3,1672319005),(83466,8,90193,3,1672319005),(83467,8,90194,3,1672319005),(83468,8,90195,3,1672319005),(83469,8,90196,3,1672319005),(83470,8,90197,3,1672319005),(83471,8,90198,3,1672319005),(83472,8,90199,3,1672319005),(83473,8,90200,3,1672319005),(83474,8,90201,3,1672319005),(83475,8,90202,3,1672319005),(83476,8,90203,3,1672319005),(83477,8,90204,3,1672319005),(83478,8,90205,3,1672319005),(83479,8,90206,3,1672319005),(83480,8,90207,3,1672319005),(83481,8,90208,3,1672319005),(83482,8,90209,3,1672319005),(83483,8,90210,3,1672319005),(83484,8,90211,3,1672319005),(83485,8,90212,3,1672319005),(83486,8,90213,3,1672319005),(83487,8,90214,3,1672319005),(83488,8,90215,3,1672319005),(83489,8,90216,3,1672319005),(83490,8,90217,3,1672319005),(83491,8,90218,3,1672319005),(83492,8,90219,3,1672319005),(83493,8,90220,3,1672319005),(83494,8,90221,3,1672319005),(83495,8,90222,3,1672319005),(83496,8,90223,3,1672319005),(83497,8,90224,3,1672319005),(83498,8,90225,3,1672319005),(83499,8,90226,3,1672319005),(83500,8,90227,3,1672319005),(83501,8,90228,3,1672319005),(83502,8,90229,3,1672319005),(83503,8,90230,3,1672319005),(83504,8,90231,3,1672319005),(83505,8,90232,3,1672319005),(83506,8,90233,3,1672319005),(83507,8,90234,3,1672319005),(83508,8,90235,3,1672319005),(83509,8,90236,3,1672319005),(83510,8,90237,3,1672319005),(83511,8,90238,3,1672319005),(83512,8,90239,3,1672319005),(83513,8,90240,3,1672319005),(83514,8,90241,3,1672319005),(83515,8,90242,3,1672319005),(83516,8,90243,3,1672319005),(83517,8,90244,3,1672319005),(83518,8,90245,3,1672319005),(83519,8,90246,3,1672319005),(83520,8,90247,3,1672319005),(83521,8,90248,3,1672319005),(83522,8,90249,3,1672319005),(83523,8,90250,3,1672319005),(83524,8,90251,3,1672319005),(83525,8,90252,3,1672319005),(83526,8,90253,3,1672319005),(83527,8,90254,3,1672319005),(83528,8,90255,3,1672319005),(83529,8,90256,3,1672319005),(83530,8,90257,3,1672319005),(83531,8,90258,3,1672319005),(83532,8,90259,3,1672319005),(83533,8,90260,3,1672319005),(83534,8,90261,3,1672319005),(83535,8,90262,3,1672319005),(83536,8,90263,3,1672319005),(83537,8,90264,3,1672319005),(83538,8,90265,3,1672319005),(83539,8,90266,3,1672319005),(83540,8,90267,3,1672319005),(83541,8,90268,3,1672319005),(83542,8,90269,3,1672319005),(83543,8,90270,3,1672319005),(83544,8,90271,3,1672319005),(83545,8,90272,3,1672319005),(83546,8,90273,3,1672319005),(83547,8,90274,3,1672319005),(83548,8,90275,3,1672319005),(83549,8,90276,3,1672319005),(83550,8,90277,3,1672319005),(83551,8,90278,3,1672319005),(83552,8,90279,3,1672319005),(83553,8,90280,3,1672319005),(83554,8,90281,3,1672319005),(83555,8,90282,3,1672319005),(83556,8,90283,3,1672319005),(83557,8,90284,3,1672319005),(83558,8,90285,3,1672319005),(83559,8,90286,3,1672319005),(83560,8,90287,3,1672319005),(83561,8,90288,3,1672319005),(83562,8,90289,3,1672319005),(83563,8,90290,3,1672319005),(83564,8,90291,3,1672319005),(83565,8,90292,3,1672319005),(83566,8,90293,3,1672319005),(83567,8,90294,3,1672319005),(83568,8,90295,3,1672319005),(83569,8,90296,3,1672319005),(83570,8,90297,3,1672319005),(83571,8,90298,3,1672319005),(83572,8,90299,3,1672319005),(83573,8,90300,3,1672319005),(83574,8,90301,3,1672319005),(83575,8,90302,3,1672319005),(83576,8,90303,3,1672319005),(83577,8,90304,3,1672319005),(83578,8,90305,3,1672319005),(83579,8,90306,3,1672319005),(83580,8,90307,3,1672319005),(83581,8,90308,3,1672319005),(83582,8,90309,3,1672319005),(83583,8,90310,3,1672319005),(83584,8,90311,3,1672319005),(83585,8,90312,3,1672319005),(83586,8,90313,3,1672319005),(83587,8,90314,3,1672319005),(83588,8,90315,3,1672319005),(83589,8,90316,3,1672319005),(83590,8,90317,3,1672319005),(83591,8,90318,3,1672319005),(83592,8,90319,3,1672319005),(83593,8,90320,3,1672319005),(83594,8,90321,3,1672319005),(83595,8,90322,3,1672319005),(83596,8,90323,3,1672319005),(83597,8,90324,3,1672319005),(83598,8,90325,3,1672319005),(83599,8,90326,3,1672319005),(83600,8,90327,3,1672319005),(83601,8,90328,3,1672319005),(83602,8,90329,3,1672319005),(83603,8,90330,3,1672319005),(83604,8,90331,3,1672319005),(83605,8,90332,3,1672319005),(83606,8,90333,3,1672319005),(83607,8,90334,3,1672319005),(83608,8,90335,3,1672319005),(83609,8,90336,3,1672319005),(83610,8,90337,3,1672319005),(83611,8,90338,3,1672319005),(83612,8,90339,3,1672319005),(83613,8,90340,3,1672319005),(83614,8,90341,3,1672319005),(83615,8,90342,3,1672319005),(83616,8,90343,3,1672319005),(83617,8,90344,3,1672319005),(83618,8,90345,3,1672319005),(83619,8,90346,3,1672319005),(83620,8,90347,3,1672319005),(83621,8,90348,3,1672319005),(83622,8,90349,3,1672319005),(83623,8,90350,3,1672319005),(83624,8,90351,3,1672319005),(83625,8,90352,3,1672319005),(83626,8,90353,3,1672319005),(83627,8,90354,3,1672319005),(83628,8,90355,3,1672319005),(83629,8,90356,3,1672319005),(83630,8,90357,3,1672319005),(83631,8,90358,3,1672319005),(83632,8,90359,3,1672319005),(83633,8,90360,3,1672319005),(83634,8,90361,3,1672319005),(83635,8,90362,3,1672319005),(83636,8,90363,3,1672319005),(83637,8,90364,3,1672319005),(83638,8,90365,3,1672319005),(83639,8,90366,3,1672319005),(83640,8,90367,3,1672319005),(83641,8,90368,3,1672319005),(83642,8,90369,3,1672319005),(83643,8,90370,3,1672319005),(83644,8,90371,3,1672319005),(83645,8,90372,3,1672319005),(83646,8,90373,3,1672319005),(83647,8,90374,3,1672319005),(83648,8,90375,3,1672319005),(83649,8,90376,3,1672319005),(83650,8,90377,3,1672319005),(83651,8,90378,3,1672319005),(83652,8,90379,3,1672319005),(83653,8,90380,3,1672319005),(83654,8,90381,3,1672319005),(83655,8,90382,3,1672319005),(83656,8,90383,3,1672319005),(83657,8,90384,3,1672319005),(83658,8,90385,3,1672319005),(83659,8,90386,3,1672319005),(83660,8,90387,3,1672319005),(83661,8,90388,3,1672319005),(83662,8,90389,3,1672319005),(83663,8,90390,3,1672319005),(83664,8,90391,3,1672319005),(83665,8,90392,3,1672319005),(83666,8,90393,3,1672319005),(83667,8,90394,3,1672319005),(83668,8,90395,3,1672319005),(83669,8,90396,3,1672319005),(83670,8,90397,3,1672319005),(83671,8,90398,3,1672319005),(83672,8,90399,3,1672319005),(83673,8,90400,3,1672319005),(83674,8,90401,3,1672319005),(83675,8,90402,3,1672319005),(83676,8,90403,3,1672319005),(83677,8,90404,3,1672319005),(83678,8,90405,3,1672319005),(83679,8,90406,3,1672319005),(83680,8,90407,3,1672319005),(83681,8,90408,3,1672319005),(83682,8,90409,3,1672319005),(83683,8,90410,3,1672319005),(83684,8,90411,3,1672319005),(83685,8,90412,3,1672319005),(83686,8,90413,3,1672319005),(83687,8,90414,3,1672319005),(83688,8,90415,3,1672319005),(83689,8,90416,3,1672319005),(83690,8,90417,3,1672319005),(83691,8,90418,3,1672319005),(83692,8,90419,3,1672319005),(83693,8,90420,3,1672319005),(83694,8,90421,3,1672319005),(83695,8,90422,3,1672319005),(83696,8,90423,3,1672319005),(83697,8,90424,3,1672319005),(83698,8,90425,3,1672319005),(83699,8,90426,3,1672319005),(83700,8,90427,3,1672319005),(83701,8,90428,3,1672319005),(83702,8,90429,3,1672319005),(83703,8,90430,3,1672319005),(83704,8,90431,3,1672319005),(83705,8,90432,3,1672319005),(83706,8,90433,3,1672319005),(83707,8,90434,3,1672319005),(83708,8,90435,3,1672319005),(83709,8,90436,3,1672319005),(83710,8,90437,3,1672319005),(83711,8,90438,3,1672319005),(83712,8,90439,3,1672319005),(83713,8,90440,3,1672319005),(83714,8,90441,3,1672319005),(83715,8,90442,3,1672319005),(83716,8,90443,3,1672319005),(83717,8,90444,3,1672319005),(83718,8,90445,3,1672319005),(83719,8,90446,3,1672319005),(83720,8,90447,3,1672319005),(83721,8,90448,3,1672319005),(83722,8,90449,3,1672319005),(83723,8,90450,3,1672319005),(83724,8,90451,3,1672319005),(83725,8,90452,3,1672319005),(83726,8,90453,3,1672319005),(83727,8,90454,3,1672319005),(83728,8,90455,3,1672319005),(83729,8,90456,3,1672319005),(83730,8,90457,3,1672319005),(83731,8,90458,3,1672319005),(83732,8,90459,3,1672319005),(83733,8,90460,3,1672319005),(83734,8,90461,3,1672319005),(83735,8,90462,3,1672319005),(83736,8,90463,3,1672319005),(83737,8,90464,3,1672319005),(83738,8,90465,3,1672319005),(83739,8,90466,3,1672319005),(83740,8,90467,3,1672319005),(83741,8,90468,3,1672319005),(83742,8,90469,3,1672319005),(83743,8,90470,3,1672319005),(83744,8,90471,3,1672319005),(83745,8,90472,3,1672319005),(83746,8,90473,3,1672319005),(83747,8,90474,3,1672319005),(83748,8,90475,3,1672319005),(83749,8,90476,3,1672319005),(83750,8,90477,3,1672319005),(83751,8,90478,3,1672319005),(83752,8,90479,3,1672319005),(83753,8,90480,3,1672319005),(83754,8,90481,3,1672319005),(83755,8,90482,3,1672319005),(83756,8,90483,3,1672319005),(83757,8,90484,3,1672319005),(83758,8,90485,3,1672319005),(83759,8,90486,3,1672319005),(83760,8,90487,3,1672319005),(83761,8,90488,3,1672319005),(83762,8,90489,3,1672319005),(83763,8,90490,3,1672319005),(83764,8,90491,3,1672319005),(83765,8,90492,3,1672319005),(83766,8,90493,3,1672319005),(83767,8,90494,3,1672319005),(83768,8,90495,3,1672319005),(83769,8,90496,3,1672319005),(83770,8,90497,3,1672319005),(83771,8,90498,3,1672319005),(83772,8,90499,3,1672319005),(83773,8,90500,3,1672319005),(83774,8,90501,3,1672319005),(83775,8,90502,3,1672319005),(83776,8,90503,3,1672319005),(83777,8,90504,3,1672319005),(83778,8,90505,3,1672319005),(83779,8,90506,3,1672319005),(83780,8,90507,3,1672319005),(83781,8,90508,3,1672319005),(83782,8,90509,3,1672319005),(83783,8,90510,3,1672319005),(83784,8,90511,3,1672319005),(83785,8,90512,3,1672319005),(83786,8,90513,3,1672319005),(83787,8,90514,3,1672319005),(83788,8,90515,3,1672319005),(83789,8,90516,3,1672319005),(83790,8,90517,3,1672319005),(83791,8,90518,3,1672319005),(83792,8,90519,3,1672319005),(83793,8,90520,3,1672319005),(83794,8,90521,3,1672319005),(83795,8,90522,3,1672319005),(83796,8,90523,3,1672319005),(83797,8,90524,3,1672319005),(83798,8,90525,3,1672319005),(83799,8,90526,3,1672319005),(83800,8,90527,3,1672319005),(83801,8,90528,3,1672319005),(83802,8,90529,3,1672319005),(83803,8,90530,3,1672319005),(83804,8,90531,3,1672319005),(83805,8,90532,3,1672319005),(83806,8,90533,3,1672319005),(83807,8,90534,3,1672319005),(83808,8,90535,3,1672319005),(83809,8,90536,3,1672319005),(83810,8,90537,3,1672319005),(83811,8,90538,3,1672319005),(83812,8,90539,3,1672319005),(83813,8,90540,3,1672319005),(83814,8,90541,3,1672319005),(83815,8,90542,3,1672319005),(83816,8,90543,3,1672319005),(83817,8,90544,3,1672319005),(83818,8,90545,3,1672319005),(83819,8,90546,3,1672319005),(83820,8,90547,3,1672319005),(83821,8,90548,3,1672319005),(83822,8,90549,3,1672319005),(83823,8,90550,3,1672319005),(83824,8,90551,3,1672319005),(83825,8,90552,3,1672319005),(83826,8,90553,3,1672319005),(83827,8,90554,3,1672319005),(83828,8,90555,3,1672319005),(83829,8,90556,3,1672319005),(83830,8,90557,3,1672319005),(83831,8,90558,3,1672319005),(83832,8,90559,3,1672319005),(83833,8,90560,3,1672319005),(83834,8,90561,3,1672319005),(83835,8,90562,3,1672319005),(83836,8,90563,3,1672319005),(83837,8,90564,3,1672319005),(83838,8,90565,3,1672319005),(83839,8,90566,3,1672319005),(83840,8,90567,3,1672319005),(83841,8,90568,3,1672319005),(83842,8,90569,3,1672319005),(83843,8,90570,3,1672319005),(83844,8,90571,3,1672319005),(83845,8,90572,3,1672319005),(83846,8,90573,3,1672319005),(83847,8,90574,3,1672319005),(83848,8,90575,3,1672319005),(83849,8,90576,3,1672319005),(83850,8,90577,3,1672319005),(83851,8,90578,3,1672319005),(83852,8,90579,3,1672319005),(83853,8,90580,3,1672319005),(83854,8,90581,3,1672319005),(83855,8,90582,3,1672319005),(83856,8,90583,3,1672319005),(83857,8,90584,3,1672319005),(83858,8,90585,3,1672319005),(83859,8,90586,3,1672319005),(83860,8,90587,3,1672319005),(83861,8,90588,3,1672319005),(83862,8,90589,3,1672319005),(83863,8,90590,3,1672319005),(83864,8,90591,3,1672319005),(83865,8,90592,3,1672319005),(83866,8,90593,3,1672319005),(83867,8,90594,3,1672319005),(83868,8,90595,3,1672319005),(83869,8,90596,3,1672319005),(83870,8,90597,3,1672319005),(83871,8,90598,3,1672319005),(83872,8,90599,3,1672319005),(83873,8,90600,3,1672319005),(83874,8,90601,3,1672319005),(83875,8,90602,3,1672319005),(83876,8,90603,3,1672319005),(83877,8,90604,3,1672319005),(83878,8,90605,3,1672319005),(83879,8,90606,3,1672319005),(83880,8,90607,3,1672319005),(83881,8,90608,3,1672319005),(83882,8,90609,3,1672319005),(83883,8,90610,3,1672319005),(83884,8,90611,3,1672319005),(83885,8,90612,3,1672319005),(83886,8,90613,3,1672319005),(83887,8,90614,3,1672319005),(83888,8,90615,3,1672319005),(83889,8,90616,3,1672319005),(83890,8,90617,3,1672319005),(83891,8,90618,3,1672319005),(83892,8,90619,3,1672319005),(83893,8,90620,3,1672319005),(83894,8,90621,3,1672319005),(83895,8,90622,3,1672319005),(83896,8,90623,3,1672319005),(83897,8,90624,3,1672319005),(83898,8,90625,3,1672319005),(83899,8,90626,3,1672319005),(83900,8,90627,3,1672319005),(83901,8,90628,3,1672319005),(83902,8,90629,3,1672319005),(83903,8,90630,3,1672319005),(83904,8,90631,3,1672319005),(83905,8,90632,3,1672319005),(83906,8,90633,3,1672319005),(83907,8,90634,3,1672319005),(83908,8,90635,3,1672319005),(83909,8,90636,3,1672319005),(83910,8,90637,3,1672319005),(83911,8,90638,3,1672319005),(83912,8,90639,3,1672319005),(83913,8,90640,3,1672319005),(83914,8,90641,3,1672319005),(83915,8,90642,3,1672319005),(83916,8,90643,3,1672319005),(83917,8,90644,3,1672319005),(83918,8,90645,3,1672319005),(83919,8,90646,3,1672319005),(83920,8,90647,3,1672319005),(83921,8,90648,3,1672319005),(83922,8,90649,3,1672319005),(83923,8,90650,3,1672319005),(83924,8,90651,3,1672319005),(83925,8,90652,3,1672319005),(83926,8,90653,3,1672319005),(83927,8,90654,3,1672319005),(83928,8,90655,3,1672319005),(83929,8,90656,3,1672319005),(83930,8,90657,3,1672319005),(83931,8,90658,3,1672319005),(83932,8,90659,3,1672319005),(83933,8,90660,3,1672319005),(83934,8,90661,3,1672319005),(83935,8,90662,3,1672319005),(83936,8,90663,3,1672319005),(83937,8,90664,3,1672319005),(83938,8,90665,3,1672319005),(83939,8,90666,3,1672319005),(83940,8,90667,3,1672319005),(83941,8,90668,3,1672319005),(83942,8,90669,3,1672319005),(83943,8,90670,3,1672319005),(83944,8,90671,3,1672319005),(83945,8,90672,3,1672319005),(83946,8,90673,3,1672319005),(83947,8,90674,3,1672319005),(83948,8,90675,3,1672319005),(83949,8,90676,3,1672319005),(83950,8,90677,3,1672319005),(83951,8,90678,3,1672319005),(83952,8,90679,3,1672319005),(83953,8,90680,3,1672319005),(83954,8,90681,3,1672319005),(83955,8,90682,3,1672319005),(83956,8,90683,3,1672319005),(83957,8,90684,3,1672319005),(83958,8,90685,3,1672319005),(83959,8,90686,3,1672319005),(83960,8,90687,3,1672319005),(83961,8,90688,3,1672319005),(83962,8,90689,3,1672319005),(83963,8,90690,3,1672319005),(83964,8,90691,3,1672319005),(83965,8,90692,3,1672319005),(83966,8,90693,3,1672319005),(83967,8,90694,3,1672319005),(83968,8,90695,3,1672319005),(83969,8,90696,3,1672319005),(83970,8,90717,3,1672319005),(83971,8,90718,3,1672319005),(83972,8,90719,3,1672319005),(83973,8,90720,3,1672319005),(83974,8,90721,3,1672319005),(83975,8,90722,3,1672319005),(83976,8,90723,3,1672319005),(83977,8,90724,3,1672319005),(83978,8,90725,3,1672319005),(83979,8,90726,3,1672319005),(83980,8,90727,3,1672319005),(83981,8,90728,3,1672319005),(83982,8,90729,3,1672319005),(83983,8,90730,3,1672319005),(83984,8,90731,3,1672319005),(83985,8,90732,3,1672319005),(83986,8,90733,3,1672319005),(83987,8,90734,3,1672319005),(83988,8,90735,3,1672319005),(83989,8,90736,3,1672319005),(83990,8,90737,3,1672319005),(83991,8,90738,3,1672319005),(83992,8,90739,3,1672319005),(83993,8,90740,3,1672319005),(83994,8,90741,3,1672319005),(83995,8,90742,3,1672319005),(83996,8,90743,3,1672319005),(83997,8,90744,3,1672319005),(83998,8,90745,3,1672319005),(83999,8,90746,3,1672319005),(84000,8,90747,3,1672319005),(84001,8,90748,3,1672319005),(84002,8,90749,3,1672319005),(84003,8,90750,3,1672319005),(84004,8,90751,3,1672319005),(84005,8,90752,3,1672319005),(84006,8,90753,3,1672319005),(84007,8,90754,3,1672319005),(84008,8,90755,3,1672319005),(84009,8,90756,3,1672319005),(84010,8,90757,3,1672319005),(84011,8,90758,3,1672319005),(84012,8,90759,3,1672319005),(84013,8,90760,3,1672319005),(84014,8,90761,3,1672319005),(84015,8,90762,3,1672319005),(84016,8,90763,3,1672319005),(84017,8,90764,3,1672319005),(84018,8,90765,3,1672319005),(84019,8,90766,3,1672319005),(84020,8,90767,3,1672319005),(84021,8,90768,3,1672319005),(84022,8,90769,3,1672319005),(84023,8,90770,3,1672319005),(84024,8,90771,3,1672319005),(84025,8,90772,3,1672319005),(84026,8,90773,3,1672319005),(84027,8,90774,3,1672319005),(84028,8,90775,3,1672319005),(84029,8,90776,3,1672319005),(84030,8,90777,3,1672319005),(84031,8,90778,3,1672319005),(84032,8,90779,3,1672319005),(84033,8,90780,3,1672319005),(84034,8,90781,3,1672319005),(84035,8,90782,3,1672319005),(84036,8,90783,3,1672319005),(84037,8,90784,3,1672319005),(84038,8,90785,3,1672319005),(84039,8,90786,3,1672319005),(84040,8,90787,3,1672319005),(84041,8,90788,3,1672319005),(84042,8,90789,3,1672319005),(84043,8,90790,3,1672319005),(84044,8,90791,3,1672319005),(84045,8,90792,3,1672319005),(84046,8,90793,3,1672319005),(84047,8,90794,3,1672319005),(84048,8,90795,3,1672319005),(84049,8,90796,3,1672319005),(84050,8,90797,3,1672319005),(84051,8,90798,3,1672319005),(84052,8,90799,3,1672319005),(84053,8,90800,3,1672319005),(84054,8,90801,3,1672319005),(84055,8,90802,3,1672319005),(84056,8,90803,3,1672319005),(84057,8,90804,3,1672319005),(84058,8,90805,3,1672319005),(84059,8,90806,3,1672319005),(84060,8,90807,3,1672319005),(84061,8,90808,3,1672319005),(84062,8,90809,3,1672319005),(84063,8,90810,3,1672319005),(84064,8,90811,3,1672319005),(84065,8,90812,3,1672319005),(84066,8,90813,3,1672319005),(84067,8,90814,3,1672319005),(84068,8,90815,3,1672319005),(84069,8,90816,3,1672319005),(84070,8,90817,3,1672319005),(84071,8,90818,3,1672319005),(84072,8,90819,3,1672319005),(84073,8,90820,3,1672319005),(84074,8,90821,3,1672319005),(84075,8,90822,3,1672319005),(84076,8,90823,3,1672319005),(84077,8,90824,3,1672319005),(84078,8,90825,3,1672319005),(84079,8,90826,3,1672319005),(84080,8,90827,3,1672319005),(84081,8,90828,3,1672319005),(84082,8,90829,3,1672319005),(84083,8,90830,3,1672319005),(84084,8,90831,3,1672319005),(84085,8,90832,3,1672319005),(84086,8,90833,3,1672319005),(84087,8,90834,3,1672319005),(84088,8,90835,3,1672319005),(84089,8,90836,3,1672319005),(84090,8,90837,3,1672319005),(84091,8,90838,3,1672319005),(84092,8,90839,3,1672319005),(84093,8,90840,3,1672319005),(84094,8,90841,3,1672319005),(84095,8,90842,3,1672319005),(84096,8,90843,3,1672319005),(84097,8,90844,3,1672319005),(84098,8,90845,3,1672319005),(84099,8,90846,3,1672319005),(84100,8,90847,3,1672319005),(84101,8,90848,3,1672319005),(84102,8,90849,3,1672319005),(84103,8,90850,3,1672319005),(84104,8,90851,3,1672319005),(84105,8,90852,3,1672319005),(84106,8,90853,3,1672319005),(84107,8,90854,3,1672319005),(84108,8,90855,3,1672319005),(84109,8,90856,3,1672319005),(84110,8,90857,3,1672319005),(84111,8,90858,3,1672319005),(84112,8,90859,3,1672319005),(84113,8,90860,3,1672319005),(84114,8,90861,3,1672319005),(84115,8,90862,3,1672319005),(84116,8,90863,3,1672319005),(84117,8,90864,3,1672319005),(84118,8,90865,3,1672319005),(84119,8,90866,3,1672319005),(84120,8,90867,3,1672319005),(84121,8,90868,3,1672319005),(84122,8,90869,3,1672319005),(84123,8,90870,3,1672319005),(84124,8,90871,3,1672319005),(84125,8,90872,3,1672319005),(84126,8,90873,3,1672319005),(84127,8,90874,3,1672319005),(84128,8,90875,3,1672319005),(84129,8,90876,3,1672319005),(84130,8,90877,3,1672319005),(84131,8,90878,3,1672319005),(84132,8,90879,3,1672319005),(84133,8,90880,3,1672319005),(84134,8,90881,3,1672319005),(84135,8,90882,3,1672319005),(84136,8,90883,3,1672319005),(84137,8,90884,3,1672319005),(84138,8,90885,3,1672319005),(84139,8,90886,3,1672319005),(84140,8,90887,3,1672319005),(84141,8,90888,3,1672319005),(84142,8,90889,3,1672319005),(84143,8,90890,3,1672319005),(84144,8,90891,3,1672319005),(84145,8,90892,3,1672319005),(84146,8,90893,3,1672319005),(84147,8,90894,3,1672319005),(84148,8,90895,3,1672319005),(84149,8,90896,3,1672319005),(84150,8,90897,3,1672319005),(84151,8,90898,3,1672319005),(84152,8,90899,3,1672319005),(84153,8,90900,3,1672319005),(84154,8,90901,3,1672319005),(84155,8,90902,3,1672319005),(84156,8,90903,3,1672319005),(84157,8,90924,3,1672319005),(84158,8,90925,3,1672319005),(84159,8,90926,3,1672319005),(84160,8,90927,3,1672319005),(84161,8,90928,3,1672319005),(84162,8,90929,3,1672319005),(84163,8,90930,3,1672319005),(84164,8,90931,3,1672319005),(84165,8,90932,3,1672319005),(84166,8,90933,3,1672319005),(84167,8,90934,3,1672319005),(84168,8,90935,3,1672319005),(84169,8,90936,3,1672319005),(84170,8,90937,3,1672319005),(84171,8,90938,3,1672319005),(84172,8,90939,3,1672319005),(84173,8,90940,3,1672319005),(84174,8,90941,3,1672319005),(84175,8,90942,3,1672319005),(84176,8,90943,3,1672319005),(84177,8,90944,3,1672319005),(84178,8,90945,3,1672319005),(84179,8,90946,3,1672319005),(84180,8,90947,3,1672319005),(84181,8,90948,3,1672319005),(84182,8,90949,3,1672319005),(84183,8,90950,3,1672319005),(84184,8,90951,3,1672319005),(84185,8,90952,3,1672319005),(84186,8,90953,3,1672319005),(84187,8,90954,3,1672319005),(84188,8,90955,3,1672319005),(84189,8,90956,3,1672319005),(84190,8,90957,3,1672319005),(84191,8,90958,3,1672319005),(84192,8,90959,3,1672319005),(84193,8,90960,3,1672319005),(84194,8,90961,3,1672319005),(84195,8,90962,3,1672319005),(84196,8,90963,3,1672319005),(84197,8,90964,3,1672319005),(84198,8,90965,3,1672319005),(84199,8,90966,3,1672319005),(84200,8,90967,3,1672319005),(84201,8,90968,3,1672319005),(84202,8,90969,3,1672319005),(84203,8,90970,3,1672319005),(84204,8,90971,3,1672319005),(84205,8,90972,3,1672319005),(84206,8,90973,3,1672319005),(84207,8,90974,3,1672319005),(84208,8,90975,3,1672319005),(84209,8,90976,3,1672319005),(84210,8,90977,3,1672319005),(84211,8,90978,3,1672319005),(84212,8,90979,3,1672319005),(84213,8,90980,3,1672319005),(84214,8,90981,3,1672319005),(84215,8,90982,3,1672319005),(84216,8,90983,3,1672319005),(84217,8,90984,3,1672319005),(84218,8,90985,3,1672319005),(84219,8,90986,3,1672319005),(84220,8,90987,3,1672319005),(84221,8,90988,3,1672319005),(84222,8,90989,3,1672319005),(84223,8,90990,3,1672319005),(84224,8,90991,3,1672319005),(84225,8,90992,3,1672319005),(84226,8,90993,3,1672319005),(84227,8,90994,3,1672319005),(84228,8,90995,3,1672319005),(84229,8,90996,3,1672319005),(84230,8,90997,3,1672319005),(84231,8,90998,3,1672319005),(84232,8,90999,3,1672319005),(84233,8,91000,3,1672319005),(84234,8,91001,3,1672319005),(84235,8,91002,3,1672319005),(84236,8,91003,3,1672319005),(84237,8,91004,3,1672319005),(84238,8,91005,3,1672319005),(84239,8,91006,3,1672319005),(84240,8,91007,3,1672319005),(84241,8,91008,3,1672319005),(84242,8,91009,3,1672319005),(84243,8,91010,3,1672319005),(84244,8,91011,3,1672319005),(84245,8,91012,3,1672319005),(84246,8,91013,3,1672319005),(84247,8,91014,3,1672319005),(84248,8,91015,3,1672319005),(84249,8,91016,3,1672319005),(84250,8,91017,3,1672319005),(84251,8,91018,3,1672319005),(84252,8,91019,3,1672319005),(84253,8,91020,3,1672319005),(84254,8,91021,3,1672319005),(84255,8,91022,3,1672319005),(84256,8,91023,3,1672319005),(84257,8,91024,3,1672319005),(84258,8,91025,3,1672319005),(84259,8,91026,3,1672319005),(84260,8,91027,3,1672319005),(84261,8,91028,3,1672319005),(84262,8,91029,3,1672319005),(84263,8,91030,3,1672319005),(84264,8,91031,3,1672319005),(84265,8,91032,3,1672319005),(84266,8,91033,3,1672319005),(84267,8,91034,3,1672319005),(84268,8,91035,3,1672319005),(84269,8,91036,3,1672319005),(84270,8,91037,3,1672319005),(84271,8,91038,3,1672319005),(84272,8,91039,3,1672319005),(84273,8,91040,3,1672319005),(84274,8,91041,3,1672319005),(84275,8,91042,3,1672319005),(84276,8,91043,3,1672319005),(84277,8,91044,3,1672319005),(84278,8,91045,3,1672319005),(84279,8,91046,3,1672319005),(84280,8,91047,3,1672319005),(84281,8,91048,3,1672319005),(84282,8,91049,3,1672319005),(84283,8,91050,3,1672319005),(84284,8,91051,3,1672319005),(84285,8,91052,3,1672319005),(84286,8,91053,3,1672319005),(84287,8,91054,3,1672319005),(84288,8,91055,3,1672319005),(84289,8,91056,3,1672319005),(84290,8,91057,3,1672319005),(84291,8,91058,3,1672319005),(84292,8,91059,3,1672319005),(84293,8,91060,3,1672319005),(84294,8,91061,3,1672319005),(84295,8,91062,3,1672319005),(84296,8,91063,3,1672319005),(84297,8,91064,3,1672319005),(84298,8,91065,3,1672319005),(84299,8,91066,3,1672319005),(84300,8,91067,3,1672319005),(84301,8,91068,3,1672319005),(84302,8,91069,3,1672319005),(84303,8,91070,3,1672319005),(84304,8,91071,3,1672319005),(84305,8,91072,3,1672319005),(84306,8,91073,3,1672319005),(84307,8,91074,3,1672319005),(84308,8,91075,3,1672319005),(84309,8,91076,3,1672319005),(84310,8,91077,3,1672319005),(84311,8,91078,3,1672319005),(84312,8,91079,3,1672319005),(84313,8,91080,3,1672319005),(84314,8,91081,3,1672319005),(84315,8,91082,3,1672319005),(84316,8,91083,3,1672319005),(84317,8,91084,3,1672319005),(84318,8,91085,3,1672319005),(84319,8,91086,3,1672319005),(84320,8,91087,3,1672319005),(84321,8,91088,3,1672319005),(84322,8,91089,3,1672319005),(84323,8,91090,3,1672319005),(84324,8,91091,3,1672319005),(84325,8,91092,3,1672319005),(84326,8,91093,3,1672319005),(84327,8,91094,3,1672319005),(84328,8,91095,3,1672319005),(84329,8,91096,3,1672319005),(84330,8,91097,3,1672319005),(84331,8,91098,3,1672319005),(84332,8,91099,3,1672319005),(84333,8,91100,3,1672319005),(84334,8,91101,3,1672319005),(84335,8,91102,3,1672319005),(84336,8,91103,3,1672319005),(84337,8,91104,3,1672319005),(84338,8,91105,3,1672319005),(84339,8,91106,3,1672319005),(84340,8,91107,3,1672319005),(84341,8,91108,3,1672319005),(84342,8,91109,3,1672319005),(84343,8,91110,3,1672319005),(84344,8,91111,3,1672319005),(84345,8,91112,3,1672319005),(84346,8,91113,3,1672319005),(84347,8,91114,3,1672319005),(84348,8,91115,3,1672319005),(84349,8,91116,3,1672319005),(84350,8,91117,3,1672319005),(84351,8,91118,3,1672319005),(84352,8,91119,3,1672319005),(84353,8,91120,3,1672319005),(84354,8,91121,3,1672319005),(84355,8,91122,3,1672319005),(84356,8,91123,3,1672319005),(84357,8,91124,3,1672319005),(84358,8,91125,3,1672319005),(84359,8,91126,3,1672319005),(84360,8,91127,3,1672319005),(84361,8,91128,3,1672319005),(84362,8,91129,3,1672319005),(84363,8,91130,3,1672319005),(84364,8,91131,3,1672319005),(84365,8,91132,3,1672319005),(84366,8,91133,3,1672319005),(84367,8,91134,3,1672319005),(84368,8,91135,3,1672319005),(84369,8,91136,3,1672319005),(84370,8,91137,3,1672319005),(84371,8,91138,3,1672319005),(84372,8,91139,3,1672319005),(84373,8,91140,3,1672319005),(84374,8,91141,3,1672319005),(84375,8,91142,3,1672319005),(84376,8,91143,3,1672319005),(84377,8,91144,3,1672319005),(84378,8,91146,3,1672319005),(84379,8,91147,3,1672319005),(84380,8,91148,3,1672319005),(84381,8,91149,3,1672319005),(84382,8,91150,3,1672319005),(84383,8,91151,3,1672319005),(84384,8,91152,3,1672319005),(84385,8,91153,3,1672319005),(84386,8,91154,3,1672319005),(84387,8,91155,3,1672319005),(84388,8,91156,3,1672319005),(84389,8,91157,3,1672319005),(84390,8,91158,3,1672319005),(84391,8,91159,3,1672319005),(84392,8,91160,3,1672319005),(84393,8,91161,3,1672319005),(84394,8,91162,3,1672319005),(84395,8,91163,3,1672319005),(84396,8,91164,3,1672319005),(84397,8,91165,3,1672319005),(84398,8,91166,3,1672319005),(84399,8,91167,3,1672319005),(84400,8,91168,3,1672319005),(84401,8,91169,3,1672319005),(84402,8,91170,3,1672319005),(84403,8,91171,3,1672319005),(84404,8,91172,3,1672319005),(84405,8,91173,3,1672319005),(84406,8,91174,3,1672319005),(84407,8,91175,3,1672319005),(84408,8,91176,3,1672319005),(84409,8,91177,3,1672319005),(84410,8,91178,3,1672319005),(84411,8,91179,3,1672319005),(84412,8,91180,3,1672319005),(84413,8,91181,3,1672319005),(84414,8,91182,3,1672319005),(84415,8,91183,3,1672319005),(84416,8,91184,3,1672319005),(84417,8,91185,3,1672319005),(84418,8,91186,3,1672319005),(84419,8,91187,3,1672319005),(84420,8,91188,3,1672319005),(84421,8,91189,3,1672319005),(84422,8,91190,3,1672319005),(84423,8,91191,3,1672319005),(84424,8,91192,3,1672319005),(84425,8,91193,3,1672319005),(84426,8,91194,3,1672319005),(84427,8,91195,3,1672319005),(84428,8,91196,3,1672319005),(84429,8,91197,3,1672319005),(84430,8,91198,3,1672319005),(84431,8,91199,3,1672319005),(84432,8,91200,3,1672319005),(84433,8,91201,3,1672319005),(84434,8,91202,3,1672319005),(84435,8,91203,3,1672319005),(84436,8,91204,3,1672319005),(84437,8,91205,3,1672319005),(84438,8,91206,3,1672319005),(84439,8,91207,3,1672319005),(84440,8,91208,3,1672319005),(84441,8,91209,3,1672319005),(84442,8,91210,3,1672319005),(84443,8,91211,3,1672319005),(84444,8,91212,3,1672319005),(84445,8,91213,3,1672319005),(84446,8,91214,3,1672319005),(84447,8,91215,3,1672319005),(84448,8,91216,3,1672319005),(84449,8,91217,3,1672319005),(84450,8,91218,3,1672319005),(84451,8,91219,3,1672319005),(84452,8,91220,3,1672319005),(84453,8,91221,3,1672319005),(84454,8,91222,3,1672319005),(84455,8,91223,3,1672319005),(84456,8,91224,3,1672319005),(84457,8,91225,3,1672319005),(84458,8,91226,3,1672319005),(84459,8,91227,3,1672319005),(84460,8,91228,3,1672319005),(84461,8,91229,3,1672319005),(84462,8,91230,3,1672319005),(84463,8,91231,3,1672319005),(84464,8,91232,3,1672319005),(84465,8,91233,3,1672319005),(84466,8,91234,3,1672319005),(84467,8,91235,3,1672319005),(84468,8,91236,3,1672319005),(84469,8,91237,3,1672319005),(84470,8,91238,3,1672319005),(84471,8,91239,3,1672319005),(84472,8,91240,3,1672319005),(84473,8,91241,3,1672319005),(84474,8,91242,3,1672319005),(84475,8,91243,3,1672319005),(84476,8,91244,3,1672319005),(84477,8,91245,3,1672319005),(84478,8,91246,3,1672319005),(84479,8,91247,3,1672319005),(84480,8,91248,3,1672319005),(84481,8,91249,3,1672319005),(84482,8,91250,3,1672319005),(84483,8,91251,3,1672319005),(84484,8,91252,3,1672319005),(84485,8,91253,3,1672319005),(84486,8,91254,3,1672319005),(84487,8,91255,3,1672319005),(84488,8,91256,3,1672319005),(84489,8,91257,3,1672319005),(84490,8,91258,3,1672319005),(84491,8,91259,3,1672319005),(84492,8,91260,3,1672319005),(84493,8,91261,3,1672319005),(84494,8,91262,3,1672319005),(84495,8,91263,3,1672319005),(84496,8,91264,3,1672319005),(84497,8,91265,3,1672319005),(84498,8,91266,3,1672319005),(84499,8,91267,3,1672319005),(84500,8,91268,3,1672319005),(84501,8,91269,3,1672319005),(84502,8,91270,3,1672319005),(84503,8,91271,3,1672319005),(84504,8,91272,3,1672319005),(84505,8,91273,3,1672319005),(84506,8,91274,3,1672319005),(84507,8,91275,3,1672319005),(84508,8,91276,3,1672319005),(84509,8,91277,3,1672319005),(84510,8,91278,3,1672319005),(84511,8,91279,3,1672319005),(84512,8,91280,3,1672319005),(84513,8,91281,3,1672319005),(84514,8,91282,3,1672319005),(84515,8,91283,3,1672319005),(84516,8,91284,3,1672319005),(84517,8,91285,3,1672319005),(84518,8,91286,3,1672319005),(84519,8,91287,3,1672319005),(84520,8,91288,3,1672319005),(84521,8,91289,3,1672319005),(84522,8,91290,3,1672319005),(84523,8,91291,3,1672319005),(84524,8,91292,3,1672319005),(84525,8,91293,3,1672319005),(84526,8,91294,3,1672319005),(84527,8,91295,3,1672319005),(84528,8,91296,3,1672319005),(84529,8,91297,3,1672319005),(84530,8,91298,3,1672319005),(84531,8,91299,3,1672319005),(84532,8,91300,3,1672319005),(84533,8,91301,3,1672319005),(84534,8,91302,3,1672319005),(84535,8,91303,3,1672319005),(84536,8,91304,3,1672319005),(84537,8,91305,3,1672319005),(84538,8,91306,3,1672319005),(84539,8,91307,3,1672319005),(84540,8,91308,3,1672319005),(84541,8,91309,3,1672319005),(84542,8,91310,3,1672319005),(84543,8,91311,3,1672319005),(84544,8,91312,3,1672319005),(84545,8,91313,3,1672319005),(84546,8,91314,3,1672319005),(84547,8,91315,3,1672319005),(84548,8,91316,3,1672319005),(84549,8,91317,3,1672319005),(84550,8,91318,3,1672319005),(84551,8,91319,3,1672319005),(84552,8,91320,3,1672319005),(84553,8,91321,3,1672319005),(84554,8,91322,3,1672319005),(84555,8,91323,3,1672319005),(84556,8,91324,3,1672319005),(84557,8,91325,3,1672319005),(84558,8,91326,3,1672319005),(84559,8,91327,3,1672319005),(84560,8,91328,3,1672319005),(84561,8,91329,3,1672319005),(84562,8,91330,3,1672319005),(84563,8,91331,3,1672319005),(84564,8,91332,3,1672319005),(84565,8,91333,3,1672319005),(84566,8,91334,3,1672319005),(84567,8,91335,3,1672319005),(84568,8,91336,3,1672319005),(84569,8,91337,3,1672319005),(84570,8,91338,3,1672319005),(84571,8,91339,3,1672319005),(84572,8,91340,3,1672319005),(84573,8,91341,3,1672319005),(84574,8,91342,3,1672319005),(84575,8,91343,3,1672319005),(84576,8,91344,3,1672319005),(84577,8,91345,3,1672319005),(84578,8,91346,3,1672319005),(84579,8,91347,3,1672319005),(84580,8,91348,3,1672319005),(84581,8,91349,3,1672319005),(84582,8,91350,3,1672319005),(84583,8,91351,3,1672319005),(84584,8,91352,3,1672319005),(84585,8,91353,3,1672319005),(84586,8,91354,3,1672319005),(84587,8,91355,3,1672319005),(84588,8,91356,3,1672319005),(84589,8,91357,3,1672319005),(84590,8,91358,3,1672319005),(84591,8,91359,3,1672319005),(84592,8,91360,3,1672319005),(84593,8,91361,3,1672319005),(84594,8,91362,3,1672319005),(84595,8,91363,3,1672319005),(84596,8,91364,3,1672319005),(84597,8,91365,3,1672319005),(84598,8,91366,3,1672319005),(84599,8,91367,3,1672319005),(84600,8,91368,3,1672319005),(84601,8,91369,3,1672319005),(84602,8,91370,3,1672319005),(84603,8,91371,3,1672319005),(84604,8,91372,3,1672319005),(84605,8,91373,3,1672319005),(84606,8,91374,3,1672319005),(84607,8,91375,3,1672319005),(84608,8,91376,3,1672319005),(84609,8,91377,3,1672319005),(84610,8,91378,3,1672319005),(84611,8,91379,3,1672319005),(84612,8,91380,3,1672319005),(84613,8,91381,3,1672319005),(84614,8,91382,3,1672319005),(84615,8,91383,3,1672319005),(84616,8,91384,3,1672319005),(84617,8,91385,3,1672319005),(84618,8,91386,3,1672319005),(84619,8,91387,3,1672319005),(84620,8,91388,3,1672319005),(84621,8,91389,3,1672319005),(84622,8,91390,3,1672319005),(84623,8,91391,3,1672319005),(84624,8,91392,3,1672319005),(84625,8,91393,3,1672319005),(84626,8,91394,3,1672319005),(84627,8,91395,3,1672319005),(84628,8,91396,3,1672319005),(84629,8,91397,3,1672319005),(84630,8,91398,3,1672319005),(84631,8,91399,3,1672319005),(84632,8,91400,3,1672319005),(84633,8,91401,3,1672319005),(84634,8,91402,3,1672319005),(84635,8,91403,3,1672319005),(84636,8,91404,3,1672319005),(84637,8,91405,3,1672319005),(84638,8,91406,3,1672319005),(84639,8,91407,3,1672319005),(84640,8,91408,3,1672319005),(84641,8,91409,3,1672319005),(84642,8,91410,3,1672319005),(84643,8,91411,3,1672319005),(84644,8,91412,3,1672319005),(84645,8,91413,3,1672319005),(84646,8,91414,3,1672319005),(84647,8,91415,3,1672319005),(84648,8,91416,3,1672319005),(84649,8,91417,3,1672319005),(84650,8,91418,3,1672319005),(84651,8,91419,3,1672319005),(84652,8,91420,3,1672319005),(84653,8,91421,3,1672319005),(84654,8,91422,3,1672319005),(84655,8,91423,3,1672319005),(84656,8,91424,3,1672319005),(84657,8,91425,3,1672319005),(84658,8,91426,3,1672319005),(84659,8,91427,3,1672319005),(84660,8,91428,3,1672319005),(84661,8,91429,3,1672319005),(84662,8,91430,3,1672319005),(84663,8,91431,3,1672319005),(84664,8,91432,3,1672319005),(84665,8,91433,3,1672319005),(84666,8,91434,3,1672319005),(84667,8,91435,3,1672319005),(84668,8,91436,3,1672319005),(84669,8,91437,3,1672319005),(84670,8,91438,3,1672319005),(84671,8,91439,3,1672319005),(84672,8,91440,3,1672319005),(84673,8,91441,3,1672319005),(84674,8,91442,3,1672319005),(84675,8,91443,3,1672319005),(84676,8,91444,3,1672319005),(84677,8,91445,3,1672319005),(84678,8,91446,3,1672319005),(84679,8,91447,3,1672319005),(84680,8,91448,3,1672319005),(84681,8,91449,3,1672319005),(84682,8,91450,3,1672319005),(84683,8,91451,3,1672319005),(84684,8,91452,3,1672319005),(84685,8,91453,3,1672319005),(84686,8,91454,3,1672319005),(84687,8,91455,3,1672319005),(84688,8,91456,3,1672319005),(84689,8,91457,3,1672319005),(84690,8,91458,3,1672319005),(84691,8,91459,3,1672319005),(84692,8,91460,3,1672319005),(84693,8,91461,3,1672319005),(84694,8,91462,3,1672319005),(84695,8,91463,3,1672319005),(84696,8,91464,3,1672319005),(84697,8,91465,3,1672319005),(84698,8,91466,3,1672319005),(84699,8,91467,3,1672319005),(84700,8,91468,3,1672319005),(84701,8,91469,3,1672319005),(84702,8,91470,3,1672319005),(84703,8,91471,3,1672319005),(84704,8,91472,3,1672319005),(84705,8,91473,3,1672319005),(84706,8,91474,3,1672319005),(84707,8,91475,3,1672319005),(84708,8,91476,3,1672319005),(84709,8,91477,3,1672319005),(84710,8,91478,3,1672319005),(84711,8,91479,3,1672319005),(84712,8,91480,3,1672319005),(84713,8,91481,3,1672319005),(84714,8,91482,3,1672319005),(84715,8,91483,3,1672319005),(84716,8,91484,3,1672319005),(84717,8,91485,3,1672319005),(84718,8,91486,3,1672319005),(84719,8,91487,3,1672319005),(84720,8,91488,3,1672319005),(84721,8,91489,3,1672319005),(84722,8,91490,3,1672319005),(84723,8,91491,3,1672319005),(84724,8,91492,3,1672319005),(84725,8,91493,3,1672319005),(84726,8,91494,3,1672319005),(84727,8,91495,3,1672319005),(84728,8,91496,3,1672319005),(84729,8,91497,3,1672319005),(84730,8,91498,3,1672319005),(84731,8,91499,3,1672319005),(84732,8,91500,3,1672319005),(84733,8,91501,3,1672319005),(84734,8,91502,3,1672319005),(84735,8,91503,3,1672319005),(84736,8,91504,3,1672319005),(84737,8,91505,3,1672319005),(84738,8,91506,3,1672319005),(84739,8,91507,3,1672319005),(84740,8,91508,3,1672319005),(84741,8,91509,3,1672319005),(84742,8,91510,3,1672319005),(84743,8,91511,3,1672319005),(84744,8,91512,3,1672319005),(84745,8,91513,3,1672319005),(84746,8,91514,3,1672319005),(84747,8,91515,3,1672319005),(84748,8,91516,3,1672319005),(84749,8,91517,3,1672319005),(84750,8,91518,3,1672319005),(84751,8,91519,3,1672319005),(84752,8,91520,3,1672319005),(84753,8,91521,3,1672319005),(84754,8,91522,3,1672319005),(84755,8,91523,3,1672319005),(84756,8,91524,3,1672319005),(84757,8,91525,3,1672319005),(84758,8,91526,3,1672319005),(84759,8,91527,3,1672319005),(84760,8,91528,3,1672319005),(84761,8,91529,3,1672319005),(84762,8,91530,3,1672319005),(84763,8,91531,3,1672319005),(84764,8,91532,3,1672319005),(84765,8,91533,3,1672319005),(84766,8,91534,3,1672319005),(84767,8,91535,3,1672319005),(84768,8,91536,3,1672319005),(84769,8,91537,3,1672319005),(84770,8,91538,3,1672319005),(84771,8,91539,3,1672319005),(84772,8,91540,3,1672319005),(84773,8,91541,3,1672319005),(84774,8,91542,3,1672319005),(84775,8,91543,3,1672319005),(84776,8,91544,3,1672319005),(84777,8,91545,3,1672319005),(84778,8,91546,3,1672319005),(84779,8,91547,3,1672319005),(84780,8,91548,3,1672319005),(84781,8,91549,3,1672319005),(84782,8,91550,3,1672319005),(84783,8,91551,3,1672319005),(84784,8,91552,3,1672319005),(84785,8,91553,3,1672319005),(84786,8,91554,3,1672319005),(84787,8,91555,3,1672319005),(84788,8,91556,3,1672319005),(84789,8,91557,3,1672319005),(84790,8,91558,3,1672319005),(84791,8,91559,3,1672319005),(84792,8,91560,3,1672319005),(84793,8,91561,3,1672319005),(84794,8,91562,3,1672319005),(84795,8,91563,3,1672319005),(84796,8,91564,3,1672319005),(84797,8,91565,3,1672319005),(84798,8,91566,3,1672319005),(84799,8,91567,3,1672319005),(84800,8,91568,3,1672319005),(84801,8,91569,3,1672319005),(84802,8,91570,3,1672319005),(84803,8,91571,3,1672319005),(84804,8,91572,3,1672319005),(84805,8,91573,3,1672319005),(84806,8,91574,3,1672319005),(84807,8,91575,3,1672319005),(84808,8,91576,3,1672319005),(84809,8,91577,3,1672319005),(84810,8,91578,3,1672319005),(84811,8,91579,3,1672319005),(84812,8,91580,3,1672319005),(84813,8,91581,3,1672319005),(84814,8,91582,3,1672319005),(84815,8,91583,3,1672319005),(84816,8,91584,3,1672319005),(84817,8,91585,3,1672319005),(84818,8,91586,3,1672319005),(84819,8,91587,3,1672319005),(84820,8,91588,3,1672319005),(84821,8,91589,3,1672319005),(84822,8,91590,3,1672319005),(84823,8,91591,3,1672319005),(84824,8,91592,3,1672319005),(84825,8,91593,3,1672319005),(84826,8,91594,3,1672319005),(84827,8,91595,3,1672319005),(84828,8,91596,3,1672319005),(84829,8,91597,3,1672319005),(84830,8,91598,3,1672319005),(84831,8,91599,3,1672319005),(84832,8,91600,3,1672319005),(84833,8,91601,3,1672319005),(84834,8,91602,3,1672319005),(84835,8,91603,3,1672319005),(84836,8,91604,3,1672319005),(84837,8,91605,3,1672319005),(84838,8,91606,3,1672319005),(84839,8,91607,3,1672319005),(84840,8,91608,3,1672319005),(84841,8,91609,3,1672319005),(84842,8,91610,3,1672319005),(84843,8,91611,3,1672319005),(84844,8,91612,3,1672319005),(84845,8,91613,3,1672319005),(84846,8,91614,3,1672319005),(84847,8,91615,3,1672319005),(84848,8,91616,3,1672319005),(84849,8,91617,3,1672319005),(84850,8,91618,3,1672319005),(84851,8,91619,3,1672319005),(84852,8,91620,3,1672319005),(84853,8,91621,3,1672319005),(84854,8,91622,3,1672319005),(84855,8,91623,3,1672319005),(84856,8,91624,3,1672319005),(84857,8,91625,3,1672319005),(84858,8,91626,3,1672319005),(84859,8,91627,3,1672319005),(84860,8,91628,3,1672319005),(84861,8,91629,3,1672319005),(84862,8,91630,3,1672319005),(84863,8,91631,3,1672319005),(84864,8,91632,3,1672319005),(84865,8,91633,3,1672319005),(84866,8,91634,3,1672319005),(84867,8,91635,3,1672319005),(84868,8,91636,3,1672319005),(84869,8,91637,3,1672319005),(84870,8,91638,3,1672319005),(84871,8,91639,3,1672319005),(84872,8,91640,3,1672319005),(84873,8,91641,3,1672319005),(84874,8,91642,3,1672319005),(84875,8,91643,3,1672319005),(84876,8,91644,3,1672319005),(84877,8,91645,3,1672319005),(84878,8,91646,3,1672319005),(84879,8,91647,3,1672319005),(84880,8,91648,3,1672319005),(84881,8,91649,3,1672319005),(84882,8,91650,3,1672319005),(84883,8,91651,3,1672319005),(84884,8,91652,3,1672319005),(84885,8,91653,3,1672319005),(84886,8,91654,3,1672319005),(84887,8,91655,3,1672319005),(84888,8,91656,3,1672319005),(84889,8,91657,3,1672319005),(84890,8,91658,3,1672319005),(84891,8,91659,3,1672319005),(84892,8,91660,3,1672319005),(84893,8,91661,3,1672319005),(84894,8,91662,3,1672319005),(84895,8,91663,3,1672319005),(84896,8,91664,3,1672319005),(84897,8,91665,3,1672319005),(84898,8,91666,3,1672319005),(84899,8,91667,3,1672319005),(84900,8,91668,3,1672319005),(84901,8,91669,3,1672319005),(84902,8,91670,3,1672319005),(84903,8,91671,3,1672319005),(84904,8,91672,3,1672319005),(84905,8,91673,3,1672319005),(84906,8,91674,3,1672319005),(84907,8,91675,3,1672319005),(84908,8,91676,3,1672319005),(84909,8,91677,3,1672319005),(84910,8,91678,3,1672319005),(84911,8,91679,3,1672319005),(84912,8,91680,3,1672319005),(84913,8,91681,3,1672319005),(84914,8,91682,3,1672319005),(84915,8,91683,3,1672319005),(84916,8,91684,3,1672319005),(84917,8,91685,3,1672319005),(84918,8,91686,3,1672319005),(84919,8,91687,3,1672319005),(84920,8,91688,3,1672319005),(84921,8,91689,3,1672319005),(84922,8,91690,3,1672319005),(84923,8,91691,3,1672319005),(84924,8,91692,3,1672319005),(84925,8,91693,3,1672319005),(84926,8,91694,3,1672319005),(84927,8,91695,3,1672319005),(84928,8,91696,3,1672319005),(84929,8,91697,3,1672319005),(84930,8,91698,3,1672319005),(84931,8,91699,3,1672319005),(84932,8,91700,3,1672319005),(84933,8,91701,3,1672319005),(84934,8,91702,3,1672319005),(84935,8,91703,3,1672319005),(84936,8,91704,3,1672319005),(84937,8,91705,3,1672319005),(84938,8,91706,3,1672319005),(84939,8,91707,3,1672319005),(84940,8,91708,3,1672319005),(84941,8,91709,3,1672319005),(84942,8,91710,3,1672319005),(84943,8,91711,3,1672319005),(84944,8,91712,3,1672319005),(84945,8,91713,3,1672319005),(84946,8,91714,3,1672319005),(84947,8,91715,3,1672319005),(84948,8,91716,3,1672319005),(84949,8,91717,3,1672319005),(84950,8,91718,3,1672319005),(84951,8,91719,3,1672319005),(84952,8,91720,3,1672319005),(84953,8,91721,3,1672319005),(84954,8,91722,3,1672319005),(84955,8,91723,3,1672319005),(84956,8,91724,3,1672319005),(84957,8,91725,3,1672319005),(84958,8,91726,3,1672319005),(84959,8,91727,3,1672319005),(84960,8,91728,3,1672319005),(84961,8,91729,3,1672319005),(84962,8,91730,3,1672319005),(84963,8,91731,3,1672319005),(84964,8,91732,3,1672319005),(84965,8,91733,3,1672319005),(84966,8,91734,3,1672319005),(84967,8,91735,3,1672319005),(84968,8,91736,3,1672319005),(84969,8,91737,3,1672319005),(84970,8,91738,3,1672319005),(84971,8,91739,3,1672319005),(84972,8,91740,3,1672319005),(84973,8,91741,3,1672319005),(84974,8,91742,3,1672319005),(84975,8,91743,3,1672319005),(84976,8,91744,3,1672319005),(84977,8,91745,3,1672319005),(84978,8,91746,3,1672319005),(84979,8,91747,3,1672319005),(84980,8,91748,3,1672319005),(84981,8,91749,3,1672319005),(84982,8,91750,3,1672319005),(84983,8,91751,3,1672319005),(84984,8,91752,3,1672319005),(84985,8,91753,3,1672319005),(84986,8,91754,3,1672319005),(84987,8,91755,3,1672319005),(84988,8,91756,3,1672319005),(84989,8,91757,3,1672319005),(84990,8,91758,3,1672319005),(84991,8,91759,3,1672319005),(84992,8,91760,3,1672319005),(84993,8,91761,3,1672319005),(84994,8,91762,3,1672319005),(84995,8,91763,3,1672319005),(84996,8,91764,3,1672319005),(84997,8,91765,3,1672319005),(84998,8,91766,3,1672319005),(84999,8,91767,3,1672319005),(85000,8,91768,3,1672319005),(85001,8,91769,3,1672319005),(85002,8,91770,3,1672319005),(85003,8,91771,3,1672319005),(85004,8,91772,3,1672319005),(85005,8,91773,3,1672319005),(85006,8,91774,3,1672319005),(85007,8,91775,3,1672319005),(85008,8,91776,3,1672319005),(85009,8,91777,3,1672319005),(85010,8,91778,3,1672319005),(85011,8,91779,3,1672319005),(85012,8,91780,3,1672319005),(85013,8,91781,3,1672319005),(85014,8,91782,3,1672319005),(85015,8,91783,3,1672319005),(85016,8,91784,3,1672319005),(85017,8,91785,3,1672319005),(85018,8,91786,3,1672319005),(85019,8,91787,3,1672319005),(85020,8,91788,3,1672319005),(85021,8,91789,3,1672319005),(85022,8,91790,3,1672319005),(85023,8,91791,3,1672319005),(85024,8,91792,3,1672319005),(85025,8,91793,3,1672319005),(85026,8,91794,3,1672319005),(85027,8,91795,3,1672319005),(85028,8,91796,3,1672319005),(85029,8,91797,3,1672319005),(85030,8,91798,3,1672319005),(85031,8,91799,3,1672319005),(85032,8,91800,3,1672319005),(85033,8,91801,3,1672319005),(85034,8,91802,3,1672319005),(85035,8,91803,3,1672319005),(85036,8,91804,3,1672319005),(85037,8,91805,3,1672319005),(85038,8,91806,3,1672319005),(85039,8,91807,3,1672319005),(85040,8,91808,3,1672319005),(85041,8,91809,3,1672319005),(85042,8,91810,3,1672319005),(85043,8,91811,3,1672319005),(85044,8,91812,3,1672319005),(85045,8,91813,3,1672319005),(85046,8,91814,3,1672319005),(85047,8,91815,3,1672319005),(85048,8,91816,3,1672319005),(85049,8,91817,3,1672319005),(85050,8,91818,3,1672319005),(85051,8,91819,3,1672319005),(85052,8,91820,3,1672319005),(85053,8,91821,3,1672319005),(85054,8,91822,3,1672319005),(85055,8,91823,3,1672319005),(85056,8,91824,3,1672319005),(85057,8,91825,3,1672319005),(85058,8,91826,3,1672319005),(85059,8,91827,3,1672319005),(85060,8,91828,3,1672319005),(85061,8,91829,3,1672319005),(85062,8,91830,3,1672319005),(85063,8,91831,3,1672319005),(85064,8,91832,3,1672319005),(85065,8,91833,3,1672319005),(85066,8,91834,3,1672319005),(85067,8,91835,3,1672319005),(85068,8,91836,3,1672319005),(85069,8,91837,3,1672319005),(85070,8,91838,3,1672319005),(85071,8,91839,3,1672319005),(85072,8,91840,3,1672319005),(85073,8,91841,3,1672319005),(85074,8,91842,3,1672319005),(85075,8,91843,3,1672319005),(85076,8,91844,3,1672319005),(85077,8,91845,3,1672319005),(85078,8,91846,3,1672319005),(85079,8,91847,3,1672319005),(85080,8,91848,3,1672319005),(85081,8,91849,3,1672319005),(85082,8,91850,3,1672319005),(85083,8,91851,3,1672319005),(85084,8,91852,3,1672319005),(85085,8,91853,3,1672319005),(85086,8,91854,3,1672319005),(85087,8,91855,3,1672319005),(85088,8,91856,3,1672319005),(85089,8,91857,3,1672319005),(85090,8,91858,3,1672319005),(85091,8,91859,3,1672319005),(85092,8,91860,3,1672319005),(85093,8,91861,3,1672319005),(85094,8,91862,3,1672319005),(85095,8,91863,3,1672319005),(85096,8,91864,3,1672319005),(85097,8,91865,3,1672319005),(85098,8,91866,3,1672319005),(85099,8,91867,3,1672319005),(85100,8,91868,3,1672319005),(85101,8,91869,3,1672319005),(85102,8,91870,3,1672319005),(85103,8,91871,3,1672319005),(85104,8,91872,3,1672319005),(85105,8,91873,3,1672319005),(85106,8,91874,3,1672319005),(85107,8,91875,3,1672319005),(85108,8,91876,3,1672319005),(85109,8,91877,3,1672319005),(85110,8,91878,3,1672319005),(85111,8,91879,3,1672319005),(85112,8,91880,3,1672319005),(85113,8,91881,3,1672319005),(85114,8,91882,3,1672319005),(85115,8,91883,3,1672319005),(85116,8,91884,3,1672319005),(85117,8,91885,3,1672319005),(85118,8,91886,3,1672319005),(85119,8,91887,3,1672319005),(85120,8,91888,3,1672319005),(85121,8,91889,3,1672319005),(85122,8,91890,3,1672319005),(85123,8,91891,3,1672319005),(85124,8,91892,3,1672319005),(85125,8,91893,3,1672319005),(85126,8,91894,3,1672319005),(85127,8,91895,3,1672319005),(85128,8,91896,3,1672319005),(85129,8,91897,3,1672319005),(85130,8,91898,3,1672319005),(85131,8,91899,3,1672319005),(85132,8,91900,3,1672319005),(85133,8,91901,3,1672319005),(85134,8,91902,3,1672319005),(85135,8,91903,3,1672319005),(85136,8,91904,3,1672319005),(85137,8,91905,3,1672319005),(85138,8,91906,3,1672319005),(85139,8,91907,3,1672319005),(85140,8,91908,3,1672319005),(85141,8,91909,3,1672319005),(85142,8,91910,3,1672319005),(85143,8,91911,3,1672319005),(85144,8,91912,3,1672319005),(85145,8,91913,3,1672319005),(85146,8,91914,3,1672319005),(85147,8,91915,3,1672319005),(85148,8,91916,3,1672319005),(85149,8,91917,3,1672319005),(85150,8,91918,3,1672319005),(85151,8,91919,3,1672319005),(85152,8,91920,3,1672319005),(85153,8,91921,3,1672319005),(85154,8,91922,3,1672319005),(85155,8,91923,3,1672319005),(85156,8,91924,3,1672319005),(85157,8,91925,3,1672319005),(85158,8,91926,3,1672319005),(85159,8,91927,3,1672319005),(85160,8,91928,3,1672319005),(85161,8,91929,3,1672319005),(85162,8,91930,3,1672319005),(85163,8,91931,3,1672319005),(85164,8,91932,3,1672319005),(85165,8,91933,3,1672319005),(85166,8,91934,3,1672319005),(85167,8,91935,3,1672319005),(85168,8,91936,3,1672319005),(85169,8,91937,3,1672319005),(85170,8,91938,3,1672319005),(85171,8,91939,3,1672319005),(85172,8,91940,3,1672319005),(85173,8,91941,3,1672319005),(85174,8,91942,3,1672319005),(85175,8,91943,3,1672319005),(85176,8,91944,3,1672319005),(85177,8,91945,3,1672319005),(85178,8,91946,3,1672319005),(85179,8,91947,3,1672319005),(85180,8,91948,3,1672319005),(85181,8,91949,3,1672319005),(85182,8,91950,3,1672319005),(85183,8,91951,3,1672319005),(85184,8,91952,3,1672319005),(85185,8,91953,3,1672319005),(85186,8,91954,3,1672319005),(85187,8,91955,3,1672319005),(85188,8,91956,3,1672319005),(85189,8,91957,3,1672319005),(85190,8,91958,3,1672319005),(85191,8,91959,3,1672319005),(85192,8,91960,3,1672319005),(85193,8,91961,3,1672319005),(85194,8,91962,3,1672319005),(85195,8,91963,3,1672319005),(85196,8,91964,3,1672319005),(85197,8,91965,3,1672319005),(85198,8,91966,3,1672319005),(85199,8,91967,3,1672319005),(85200,8,91968,3,1672319005),(85201,8,91969,3,1672319005),(85202,8,91970,3,1672319005),(85203,8,91971,3,1672319005),(85204,8,91972,3,1672319005),(85205,8,91973,3,1672319005),(85206,8,91974,3,1672319005),(85207,8,91975,3,1672319005),(85208,8,91976,3,1672319005),(85209,8,91977,3,1672319005),(85210,8,91978,3,1672319005),(85211,8,91979,3,1672319005),(85212,8,91980,3,1672319005),(85213,8,91981,3,1672319005),(85214,8,91982,3,1672319005),(85215,8,91983,3,1672319005),(85216,8,91984,3,1672319005),(85217,8,91985,3,1672319005),(85218,8,91986,3,1672319005),(85219,8,91987,3,1672319005),(85220,8,91988,3,1672319005),(85221,8,91989,3,1672319005),(85222,8,91990,3,1672319005),(85223,8,91991,3,1672319005),(85224,8,91992,3,1672319005),(85225,8,91993,3,1672319005),(85226,8,91994,3,1672319005),(85227,8,91995,3,1672319005),(85228,8,91996,3,1672319005),(85229,8,91997,3,1672319005),(85230,8,91998,3,1672319005),(85231,8,91999,3,1672319005),(85232,8,92000,3,1672319005),(85233,8,92001,3,1672319005),(85234,8,92002,3,1672319005),(85235,8,92003,3,1672319005),(85236,8,92004,3,1672319005),(85237,8,92005,3,1672319005),(85238,8,92006,3,1672319005),(85239,8,92007,3,1672319005),(85240,8,92008,3,1672319005),(85241,8,92009,3,1672319005),(85242,8,92010,3,1672319005),(85243,8,92011,3,1672319005),(85244,8,92012,3,1672319005),(85245,8,92013,3,1672319005),(85246,8,92014,3,1672319005),(85247,8,92015,3,1672319005),(85248,8,92016,3,1672319005),(85249,8,92017,3,1672319005),(85250,8,92018,3,1672319005),(85251,8,92019,3,1672319005),(85252,8,92020,3,1672319005),(85253,8,92021,3,1672319005),(85254,8,92022,3,1672319005),(85255,8,92023,3,1672319005),(85256,8,92024,3,1672319005),(85257,8,92025,3,1672319005),(85258,8,92026,3,1672319005),(85259,8,92027,3,1672319005),(85260,8,92028,3,1672319005),(85261,8,92029,3,1672319005),(85262,8,92030,3,1672319005),(85263,8,92031,3,1672319005),(85264,8,92032,3,1672319005),(85265,8,92033,3,1672319005),(85266,8,92034,3,1672319005),(85267,8,92035,3,1672319005),(85268,8,92036,3,1672319005),(85269,8,92037,3,1672319005),(85270,8,92038,3,1672319005),(85271,8,92039,3,1672319005),(85272,8,92040,3,1672319005),(85273,8,92041,3,1672319005),(85274,8,92042,3,1672319005),(85275,8,92043,3,1672319005),(85276,8,92044,3,1672319005),(85277,8,92045,3,1672319005),(85278,8,92046,3,1672319005),(85279,8,92047,3,1672319005),(85280,8,92048,3,1672319005),(85281,8,92049,3,1672319005),(85282,8,92050,3,1672319005),(85283,8,92051,3,1672319005),(85284,8,92052,3,1672319005),(85285,8,92053,3,1672319005),(85286,8,92054,3,1672319005),(85287,8,92055,3,1672319005),(85288,8,92056,3,1672319005),(85289,8,92057,3,1672319005),(85290,8,92058,3,1672319005),(85291,8,92059,3,1672319005),(85292,8,92060,3,1672319005),(85293,8,92061,3,1672319005),(85294,8,92062,3,1672319005),(85295,8,92063,3,1672319005),(85296,8,92064,3,1672319005),(85297,8,92065,3,1672319005),(85298,8,92066,3,1672319005),(85299,8,92067,3,1672319005),(85300,8,92068,3,1672319005),(85301,8,92069,3,1672319005),(85302,8,92070,3,1672319005),(85303,8,92071,3,1672319005),(85304,8,92072,3,1672319005),(85305,8,92073,3,1672319005),(85306,8,92074,3,1672319005),(85307,8,92075,3,1672319005),(85308,8,92076,3,1672319005),(85309,8,92077,3,1672319005),(85310,8,92078,3,1672319005),(85311,8,92079,3,1672319005),(85312,8,92080,3,1672319005),(85313,8,92081,3,1672319005),(85314,8,92082,3,1672319005),(85315,8,92083,3,1672319005),(85316,8,92084,3,1672319005),(85317,8,92085,3,1672319005),(85318,8,92086,3,1672319005),(85319,8,92087,3,1672319005),(85320,8,92088,3,1672319005),(85321,8,92089,3,1672319005),(85322,8,92090,3,1672319005),(85323,8,92091,3,1672319005),(85324,8,92092,3,1672319005),(85325,8,92093,3,1672319005),(85326,8,92094,3,1672319005),(85327,8,92095,3,1672319005),(85328,8,92096,3,1672319005),(85329,8,92097,3,1672319005),(85330,8,92098,3,1672319005),(85331,8,92099,3,1672319005),(85332,8,92100,3,1672319005),(85333,8,92101,3,1672319005),(85334,8,92102,3,1672319005),(85335,8,92103,3,1672319005),(85336,8,92104,3,1672319005),(85337,8,92105,3,1672319005),(85338,8,92106,3,1672319005),(85339,8,92107,3,1672319005),(85340,8,92108,3,1672319005),(85341,8,92109,3,1672319005),(85342,8,92110,3,1672319005),(85343,8,92111,3,1672319005),(85344,8,92112,3,1672319005),(85345,8,92113,3,1672319005),(85346,8,92114,3,1672319005),(85347,8,92115,3,1672319005),(85348,8,92116,3,1672319005),(85349,8,92117,3,1672319005),(85350,8,92118,3,1672319005),(85351,8,92119,3,1672319005),(85352,8,92120,3,1672319005),(85353,8,92121,3,1672319005),(85354,8,92122,3,1672319005),(85355,8,92123,3,1672319005),(85356,8,92124,3,1672319005),(85357,8,92125,3,1672319005),(85358,8,92126,3,1672319005),(85359,8,92127,3,1672319005),(85360,8,92128,3,1672319005),(85361,8,92129,3,1672319005),(85362,8,92130,3,1672319005),(85363,8,92131,3,1672319005),(85364,8,92132,3,1672319005),(85365,8,92133,3,1672319005),(85366,8,92134,3,1672319005),(85367,8,92135,3,1672319005),(85368,8,92136,3,1672319005),(85369,8,92137,3,1672319005),(85370,8,92138,3,1672319005),(85371,8,92139,3,1672319005),(85372,8,92140,3,1672319005),(85373,8,92141,3,1672319005),(85374,8,92142,3,1672319005),(85375,8,92143,3,1672319005),(85376,8,92144,3,1672319005),(85377,8,92145,3,1672319005),(85378,8,92146,3,1672319005),(85379,8,92147,3,1672319005),(85380,8,92148,3,1672319005),(85381,8,92149,3,1672319005),(85382,8,92150,3,1672319005),(85383,8,92151,3,1672319005),(85384,8,92152,3,1672319005),(85385,8,92153,3,1672319005),(85386,8,92154,3,1672319005),(85387,8,92155,3,1672319005),(85388,8,92156,3,1672319005),(85389,8,92157,3,1672319005),(85390,8,92158,3,1672319005),(85391,8,92159,3,1672319005),(85392,8,92160,3,1672319005),(85393,8,92161,3,1672319005),(85394,8,92162,3,1672319005),(85395,8,92163,3,1672319005),(85396,8,92164,3,1672319005),(85397,8,92165,3,1672319005),(85398,8,92166,3,1672319005),(85399,8,92167,3,1672319005),(85400,8,92168,3,1672319005),(85401,8,92169,3,1672319005),(85402,8,92170,3,1672319005),(85403,8,92171,3,1672319005),(85404,8,92172,3,1672319005),(85405,8,92173,3,1672319005),(85406,8,92174,3,1672319005),(85407,8,92175,3,1672319005),(85408,8,92176,3,1672319005),(85409,8,92177,3,1672319005),(85410,8,92178,3,1672319005),(85411,8,92179,3,1672319005),(85412,8,92180,3,1672319005),(85413,8,92181,3,1672319005),(85414,8,92182,3,1672319005),(85415,8,92183,3,1672319005),(85416,8,92184,3,1672319005),(85417,8,92185,3,1672319005),(85418,8,92186,3,1672319005),(85419,8,92187,3,1672319005),(85420,8,92188,3,1672319005),(85421,8,92189,3,1672319005),(85422,8,92190,3,1672319005),(85423,8,92191,3,1672319005),(85424,8,92192,3,1672319005),(85425,8,92193,3,1672319005),(85426,8,92194,3,1672319005),(85427,8,92195,3,1672319005),(85428,8,92196,3,1672319005),(85429,8,92197,3,1672319005),(85430,8,92198,3,1672319005),(85431,8,92199,3,1672319005),(85432,8,92200,3,1672319005),(85433,8,92201,3,1672319005),(85434,8,92202,3,1672319005),(85435,8,92203,3,1672319005),(85436,8,92204,3,1672319005),(85437,8,92205,3,1672319005),(85438,8,92206,3,1672319005),(85439,8,92207,3,1672319005),(85440,8,92208,3,1672319005),(85441,8,92209,3,1672319005),(85442,8,92210,3,1672319005),(85443,8,92211,3,1672319005),(85444,8,92212,3,1672319005),(85445,8,92213,3,1672319005),(85446,8,92214,3,1672319005),(85447,8,92215,3,1672319005),(85448,8,92216,3,1672319005),(85449,8,92217,3,1672319005),(85450,8,92218,3,1672319005),(85451,8,92219,3,1672319005),(85452,8,92220,3,1672319005),(85453,8,92221,3,1672319005),(85454,8,92222,3,1672319005),(85455,8,92223,3,1672319005),(85456,8,92224,3,1672319005),(85457,8,92225,3,1672319005),(85458,8,92226,3,1672319005),(85459,8,92227,3,1672319005),(85460,8,92228,3,1672319005),(85461,8,92229,3,1672319005),(85462,8,92230,3,1672319005),(85463,8,92231,3,1672319005),(85464,8,92232,3,1672319005),(85465,8,92233,3,1672319005),(85466,8,92234,3,1672319005),(85467,8,92235,3,1672319005),(85468,8,92236,3,1672319005),(85469,8,92237,3,1672319005),(85470,8,92238,3,1672319005),(85471,8,92239,3,1672319005),(85472,8,92240,3,1672319005),(85473,8,92241,3,1672319005),(85474,8,92242,3,1672319005),(85475,8,92243,3,1672319005),(85476,8,92244,3,1672319005),(85477,8,92245,3,1672319005),(85478,8,92246,3,1672319005),(85479,8,92247,3,1672319005),(85480,8,92248,3,1672319005),(85481,8,92249,3,1672319005),(85482,8,92250,3,1672319005),(85483,8,92251,3,1672319005),(85484,8,92252,3,1672319005),(85485,8,92253,3,1672319005),(85486,8,92254,3,1672319005),(85487,8,92255,3,1672319005),(85488,8,92256,3,1672319005),(85489,8,92257,3,1672319005),(85490,8,92258,3,1672319005),(85491,8,92259,3,1672319005),(85492,8,92260,3,1672319005),(85493,8,92261,3,1672319005),(85494,8,92262,3,1672319005),(85495,8,92263,3,1672319005),(85496,8,92264,3,1672319005),(85497,8,92265,3,1672319005),(85498,8,92266,3,1672319005),(85499,8,92267,3,1672319005),(85500,8,92268,3,1672319005),(85501,8,92269,3,1672319005),(85502,8,92270,3,1672319005),(85503,8,92271,3,1672319005),(85504,8,92272,3,1672319005),(85505,8,92273,3,1672319005),(85506,8,92274,3,1672319005),(85507,8,92275,3,1672319005),(85508,8,92276,3,1672319005),(85509,8,92277,3,1672319005),(85510,8,92278,3,1672319005),(85511,8,92279,3,1672319005),(85512,8,92280,3,1672319005),(85513,8,92281,3,1672319005),(85514,8,92282,3,1672319005),(85515,8,92283,3,1672319005),(85516,8,92284,3,1672319005),(85517,8,92285,3,1672319005),(85518,8,92286,3,1672319005),(85519,8,92287,3,1672319005),(85520,8,92288,3,1672319005),(85521,8,92289,3,1672319005),(85522,8,92290,3,1672319005),(85523,8,92291,3,1672319005),(85524,8,92292,3,1672319005),(85525,8,92293,3,1672319005),(85526,8,92294,3,1672319005),(85527,8,92295,3,1672319005),(85528,8,92296,3,1672319005),(85529,8,92297,3,1672319005),(85530,8,92298,3,1672319005),(85531,8,92299,3,1672319005),(85532,8,92300,3,1672319005),(85533,8,92301,3,1672319005),(85534,8,92302,3,1672319005),(85535,8,92303,3,1672319005),(85536,8,92304,3,1672319005),(85537,8,92305,3,1672319005),(85538,8,92306,3,1672319005),(85539,8,92307,3,1672319005),(85540,8,92308,3,1672319005),(85541,8,92309,3,1672319005),(85542,8,92310,3,1672319005),(85543,8,92311,3,1672319005),(85544,8,92312,3,1672319005),(85545,8,92313,3,1672319005),(85546,8,92314,3,1672319005),(85547,8,92315,3,1672319005),(85548,8,92316,3,1672319005),(85549,8,92317,3,1672319005),(85550,8,92318,3,1672319005),(85551,8,92319,3,1672319005),(85552,8,92320,3,1672319005),(85553,8,92321,3,1672319005),(85554,8,92322,3,1672319005),(85555,8,92323,3,1672319005),(85556,8,92324,3,1672319005),(85557,8,92325,3,1672319005),(85558,8,92326,3,1672319005),(85559,8,92327,3,1672319005),(85560,8,92328,3,1672319005),(85561,8,92329,3,1672319005),(85562,8,92330,3,1672319005),(85563,8,92331,3,1672319005),(85564,8,92332,3,1672319005),(85565,8,92333,3,1672319005),(85566,8,92334,3,1672319005),(85567,8,92335,3,1672319005),(85568,8,92336,3,1672319005),(85569,8,92337,3,1672319005),(85570,8,92338,3,1672319005),(85571,8,92339,3,1672319005),(85572,8,92340,3,1672319005),(85573,8,92341,3,1672319005),(85574,8,92342,3,1672319005),(85575,8,92343,3,1672319005),(85576,8,92344,3,1672319005),(85577,8,92345,3,1672319005),(85578,8,92346,3,1672319005),(85579,8,92347,3,1672319005),(85580,8,92348,3,1672319005),(85581,8,92349,3,1672319005),(85582,8,92350,3,1672319005),(85583,8,92351,3,1672319005),(85584,8,92352,3,1672319005),(85585,8,92353,3,1672319005),(85586,8,92354,3,1672319005),(85587,8,92355,3,1672319005),(85588,8,92356,3,1672319005),(85589,8,92357,3,1672319005),(85590,8,92358,3,1672319005),(85591,8,92359,3,1672319005),(85592,8,92360,3,1672319005),(85593,8,92361,3,1672319005),(85594,8,92362,3,1672319005),(85595,8,92363,3,1672319005),(85596,8,92364,3,1672319005),(85597,8,92365,3,1672319005),(85598,8,92366,3,1672319005),(85599,8,92367,3,1672319005),(85600,8,92368,3,1672319005),(85601,8,92369,3,1672319005),(85602,8,92370,3,1672319005),(85603,8,92371,3,1672319005),(85604,8,92372,3,1672319005),(85605,8,92373,3,1672319005),(85606,8,92374,3,1672319005),(85607,8,92375,3,1672319005),(85608,8,92376,3,1672319005),(85609,8,92377,3,1672319005),(85610,8,92378,3,1672319005),(85611,8,92379,3,1672319005),(85612,8,92380,3,1672319005),(85613,8,92381,3,1672319005),(85614,8,92382,3,1672319005),(85615,8,92383,3,1672319005),(85616,8,92384,3,1672319005),(85617,8,92385,3,1672319005),(85618,8,92386,3,1672319005),(85619,8,92387,3,1672319005),(85620,8,92388,3,1672319005),(85621,8,92389,3,1672319005),(85622,8,92390,3,1672319005),(85623,8,92391,3,1672319005),(85624,8,92392,3,1672319005),(85625,8,92393,3,1672319005),(85626,8,92394,3,1672319005),(85627,8,92395,3,1672319005),(85628,8,92396,3,1672319005),(85629,8,92397,3,1672319005),(85630,8,92398,3,1672319005),(85631,8,92399,3,1672319005),(85632,8,92400,3,1672319005),(85633,8,92401,3,1672319005),(85634,8,92402,3,1672319005),(85635,8,92403,3,1672319005),(85636,8,92404,3,1672319005),(85637,8,92405,3,1672319005),(85638,8,92406,3,1672319005),(85639,8,92407,3,1672319005),(85640,8,92408,3,1672319005),(85641,8,92409,3,1672319005),(85642,8,92410,3,1672319005),(85643,8,92411,3,1672319005),(85644,8,92412,3,1672319005),(85645,8,92413,3,1672319005),(85646,8,92414,3,1672319005),(85647,8,92415,3,1672319005),(85648,8,92416,3,1672319005),(85649,8,92417,3,1672319005),(85650,8,92418,3,1672319005),(85651,8,92419,3,1672319005),(85652,8,92420,3,1672319005),(85653,8,92421,3,1672319005),(85654,8,92422,3,1672319005),(85655,8,92423,3,1672319005),(85656,8,92424,3,1672319005),(85657,8,92425,3,1672319005),(85658,8,92426,3,1672319005),(85659,8,92427,3,1672319005),(85660,8,92428,3,1672319005),(85661,8,92429,3,1672319005),(85662,8,92430,3,1672319005),(85663,8,92431,3,1672319005),(85664,8,92432,3,1672319005),(85665,8,92433,3,1672319005),(85666,8,92434,3,1672319005),(85667,8,92435,3,1672319005),(85668,8,92436,3,1672319005),(85669,8,92437,3,1672319005),(85670,8,92438,3,1672319005),(85671,8,92439,3,1672319005),(85672,8,92440,3,1672319005),(85673,8,92441,3,1672319005),(85674,8,92442,3,1672319005),(85675,8,92443,3,1672319005),(85676,8,92444,3,1672319005),(85677,8,92445,3,1672319005),(85678,8,92446,3,1672319005),(85679,8,92447,3,1672319005),(85680,8,92448,3,1672319005),(85681,8,92449,3,1672319005),(85682,8,92450,3,1672319005),(85683,8,92451,3,1672319005),(85684,8,92452,3,1672319005),(85685,8,92453,3,1672319005),(85686,8,92454,3,1672319005),(85687,8,92455,3,1672319005),(85688,8,92456,3,1672319005),(85689,8,92457,3,1672319005),(85690,8,92458,3,1672319005),(85691,8,92459,3,1672319005),(85692,8,92460,3,1672319005),(85693,8,92461,3,1672319005),(85694,8,92462,3,1672319005),(85695,8,92463,3,1672319005),(85696,8,92464,3,1672319005),(85697,8,92465,3,1672319005),(85698,8,92466,3,1672319005),(85699,8,92467,3,1672319005),(85700,8,92468,3,1672319005),(85701,8,92469,3,1672319005),(85702,8,92470,3,1672319005),(85703,8,92471,3,1672319005),(85704,8,92472,3,1672319005),(85705,8,92473,3,1672319005),(85706,8,92474,3,1672319005),(85707,8,92475,3,1672319005),(85708,8,92476,3,1672319005),(85709,8,92477,3,1672319005),(85710,8,92478,3,1672319005),(85711,8,92479,3,1672319005),(85712,8,92480,3,1672319005),(85713,8,92481,3,1672319005),(85714,8,92482,3,1672319005),(85715,8,92483,3,1672319005),(85716,8,92484,3,1672319005),(85717,8,92485,3,1672319005),(85718,8,92486,3,1672319005),(85719,8,92487,3,1672319005),(85720,8,92488,3,1672319005),(85721,8,92489,3,1672319005),(85722,8,92490,3,1672319005),(85723,8,92491,3,1672319005),(85724,8,92492,3,1672319005),(85725,8,92493,3,1672319005),(85726,8,92494,3,1672319005),(85727,8,92495,3,1672319005),(85728,8,92496,3,1672319005),(85729,8,92497,3,1672319005),(85730,8,92498,3,1672319005),(85731,8,92499,3,1672319005),(85732,8,92500,3,1672319005),(85733,8,92501,3,1672319005),(85734,8,92502,3,1672319005),(85735,8,92503,3,1672319005),(85736,8,92504,3,1672319005),(85737,8,92505,3,1672319005),(85738,8,92506,3,1672319005),(85739,8,92507,3,1672319005),(85740,8,92508,3,1672319005),(85741,8,92509,3,1672319005),(85742,8,92510,3,1672319005),(85743,8,92511,3,1672319005),(85744,8,92512,3,1672319005),(85745,8,92513,3,1672319005),(85746,8,92514,3,1672319005),(85747,8,92515,3,1672319005),(85748,8,92516,3,1672319005),(85749,8,92517,3,1672319005),(85750,8,92518,3,1672319005),(85751,8,92519,3,1672319005),(85752,8,92520,3,1672319005),(85753,8,92521,3,1672319005),(85754,8,92522,3,1672319005),(85755,8,92523,3,1672319005),(85756,8,92524,3,1672319005),(85757,8,92525,3,1672319005),(85758,8,92526,3,1672319005),(85759,8,92527,3,1672319005),(85760,8,92528,3,1672319005),(85761,8,92529,3,1672319005),(85762,8,92530,3,1672319005),(85763,8,92531,3,1672319005),(85764,8,92532,3,1672319005),(85765,8,92533,3,1672319005),(85766,8,92534,3,1672319005),(85767,8,92535,3,1672319005),(85768,8,92536,3,1672319005),(85769,8,92537,3,1672319005),(85770,8,92538,3,1672319005),(85771,8,92539,3,1672319005),(85772,8,92540,3,1672319005),(85773,8,92541,3,1672319005),(85774,8,92542,3,1672319005),(85775,8,92543,3,1672319005),(85776,8,92544,3,1672319005),(85777,8,92545,3,1672319005),(85778,8,92546,3,1672319005),(85779,8,92547,3,1672319005),(85780,8,92548,3,1672319005),(85781,8,92549,3,1672319005),(85782,8,92550,3,1672319005),(85783,8,92551,3,1672319005),(85784,8,92552,3,1672319005),(85785,8,92553,3,1672319005),(85786,8,92554,3,1672319005),(85787,8,92555,3,1672319005),(85788,8,92556,3,1672319005),(85789,8,92557,3,1672319005),(85790,8,92558,3,1672319005),(85791,8,92585,3,1672319005),(85792,8,92586,3,1672319005),(85793,8,92587,3,1672319005),(85794,8,92588,3,1672319005),(85795,8,92589,3,1672319005),(85796,8,92590,3,1672319005),(85797,8,92591,3,1672319005),(85798,8,92592,3,1672319005),(85799,8,92593,3,1672319005),(85800,8,92594,3,1672319005),(85801,8,92595,3,1672319005),(85802,8,92596,3,1672319005),(85803,8,92597,3,1672319005),(85804,8,92598,3,1672319005),(85805,8,92599,3,1672319005),(85806,8,92600,3,1672319005),(85807,8,92601,3,1672319005),(85808,8,92602,3,1672319005),(85809,8,92603,3,1672319005),(85810,8,92604,3,1672319005),(85811,8,92605,3,1672319005),(85812,8,92606,3,1672319005),(85813,8,92607,3,1672319005),(85814,8,92608,3,1672319005),(85815,8,92609,3,1672319005),(85816,8,92610,3,1672319005),(85817,8,92611,3,1672319005),(85818,8,92612,3,1672319005),(85819,8,92613,3,1672319005),(85820,8,92614,3,1672319005),(85821,8,92615,3,1672319005),(85822,8,92616,3,1672319005),(85823,8,92617,3,1672319005),(85824,8,92618,3,1672319005),(85825,8,92619,3,1672319005),(85826,8,92620,3,1672319005),(85827,8,92621,3,1672319005),(85828,8,92622,3,1672319005),(85829,8,92623,3,1672319005),(85830,8,92624,3,1672319005),(85831,8,92625,3,1672319005),(85832,8,92626,3,1672319005),(85833,8,92627,3,1672319005),(85834,8,92628,3,1672319005),(85835,8,92629,3,1672319005),(85836,8,92630,3,1672319005),(85837,8,92631,3,1672319005),(85838,8,92632,3,1672319005),(85839,8,92633,3,1672319005),(85840,8,92634,3,1672319005),(85841,8,92635,3,1672319005),(85842,8,92636,3,1672319005),(85843,8,92637,3,1672319005),(85844,8,92638,3,1672319005),(85845,8,92639,3,1672319005),(85846,8,92640,3,1672319005),(85847,8,92641,3,1672319005),(85848,8,92642,3,1672319005),(85849,8,92643,3,1672319005),(85850,8,92644,3,1672319005),(85851,8,92645,3,1672319005),(85852,8,92646,3,1672319005),(85853,8,92647,3,1672319005),(85854,8,92648,3,1672319005),(85855,8,92649,3,1672319005),(85856,8,92650,3,1672319005),(85857,8,92651,3,1672319005),(85858,8,92652,3,1672319005),(85859,8,92653,3,1672319005),(85860,8,92654,3,1672319005),(85861,8,92655,3,1672319005),(85862,8,92656,3,1672319005),(85863,8,92657,3,1672319005),(85864,8,92658,3,1672319005),(85865,8,92659,3,1672319005),(85866,8,92660,3,1672319005),(85867,8,92661,3,1672319005),(85868,8,92662,3,1672319005),(85869,8,92663,3,1672319005),(85870,8,92664,3,1672319005),(85871,8,92665,3,1672319005),(85872,8,92666,3,1672319005),(85873,8,92667,3,1672319005),(85874,8,92668,3,1672319005),(85875,8,92669,3,1672319005),(85876,8,92670,3,1672319005),(85877,8,92671,3,1672319005),(85878,8,92672,3,1672319005),(85879,8,92673,3,1672319005),(85880,8,92674,3,1672319005),(85881,8,92675,3,1672319005),(85882,8,92676,3,1672319005),(85883,8,92677,3,1672319005),(85884,8,92678,3,1672319005),(85885,8,92679,3,1672319005),(85886,8,92680,3,1672319005),(85887,8,92681,3,1672319005),(85888,8,92682,3,1672319005),(85889,8,92683,3,1672319005),(85890,8,92684,3,1672319005),(85891,8,92685,3,1672319005),(85892,8,92686,3,1672319005),(85893,8,92687,3,1672319005),(85894,8,92688,3,1672319005),(85895,8,92689,3,1672319005),(85896,8,92690,3,1672319005),(85897,8,92691,3,1672319005),(85898,8,92692,3,1672319005),(85899,8,92693,3,1672319005),(85900,8,92694,3,1672319005),(85901,8,92695,3,1672319005),(85902,8,92696,3,1672319005),(85903,8,92697,3,1672319005),(85904,8,92698,3,1672319005),(85905,8,92699,3,1672319005),(85906,8,92700,3,1672319005),(85907,8,92701,3,1672319005),(85908,8,92702,3,1672319005),(85909,8,92703,3,1672319005),(85910,8,92704,3,1672319005),(85911,8,92705,3,1672319005),(85912,8,92706,3,1672319005),(85913,8,92707,3,1672319005),(85914,8,92708,3,1672319005),(85915,8,92709,3,1672319005),(85916,8,92710,3,1672319005),(85917,8,92711,3,1672319005),(85918,8,92712,3,1672319005),(85919,8,92713,3,1672319005),(85920,8,92714,3,1672319005),(85921,8,92715,3,1672319005),(85922,8,92716,3,1672319005),(85923,8,92717,3,1672319005),(85924,8,92718,3,1672319005),(85925,8,92719,3,1672319005),(85926,8,92720,3,1672319005),(85927,8,92721,3,1672319005),(85928,8,92722,3,1672319005),(85929,8,92723,3,1672319005),(85930,8,92724,3,1672319005),(85931,8,92725,3,1672319005),(85932,8,92726,3,1672319005),(85933,8,92727,3,1672319005),(85934,8,92728,3,1672319005),(85935,8,92729,3,1672319005),(85936,8,92730,3,1672319005),(85937,8,92731,3,1672319005),(85938,8,92732,3,1672319005),(85939,8,92733,3,1672319005),(85940,8,92734,3,1672319005),(85941,8,92735,3,1672319005),(85942,8,92736,3,1672319005),(85943,8,92737,3,1672319005),(85944,8,92738,3,1672319005),(85945,8,92739,3,1672319005),(85946,8,92740,3,1672319005),(85947,8,92741,3,1672319005),(85948,8,92742,3,1672319005),(85949,8,92743,3,1672319005),(85950,8,92744,3,1672319005),(85951,8,92745,3,1672319005),(85952,8,92746,3,1672319005),(85953,8,92747,3,1672319005),(85954,8,92748,3,1672319005),(85955,8,92749,3,1672319005),(85956,8,92750,3,1672319005),(85957,8,92751,3,1672319005),(85958,8,92752,3,1672319005),(85959,8,92753,3,1672319005),(85960,8,92754,3,1672319005),(85961,8,92755,3,1672319005),(85962,8,92756,3,1672319005),(85963,8,92757,3,1672319005),(85964,8,92758,3,1672319005),(85965,8,92759,3,1672319005),(85966,8,92760,3,1672319005),(85967,8,92761,3,1672319005),(85968,8,92762,3,1672319005),(85969,8,92763,3,1672319005),(85970,8,92764,3,1672319005),(85971,8,92765,3,1672319005),(85972,8,92766,3,1672319005),(85973,8,92767,3,1672319005),(85974,8,92768,3,1672319005),(85975,8,92769,3,1672319005),(85976,8,92770,3,1672319005),(85977,8,92771,3,1672319005),(85978,8,92772,3,1672319005),(85979,8,92773,3,1672319005),(85980,8,92774,3,1672319005),(85981,8,92775,3,1672319005),(85982,8,92776,3,1672319005),(85983,8,92777,3,1672319005),(85984,8,92778,3,1672319005),(85985,8,92779,3,1672319005),(85986,8,92780,3,1672319005),(85987,8,92781,3,1672319005),(85988,8,92782,3,1672319005),(85989,8,92783,3,1672319005),(85990,8,92784,3,1672319005),(85991,8,92785,3,1672319005),(85992,8,92786,3,1672319005),(85993,8,92787,3,1672319005),(85994,8,92788,3,1672319005),(85995,8,92789,3,1672319005),(85996,8,92790,3,1672319005),(85997,8,92791,3,1672319005),(85998,8,92792,3,1672319005),(85999,8,92793,3,1672319005),(86000,8,92794,3,1672319005),(86001,8,92795,3,1672319005),(86002,8,92796,3,1672319005),(86003,8,92797,3,1672319005),(86004,8,92798,3,1672319005),(86005,8,92799,3,1672319005),(86006,8,92800,3,1672319005),(86007,8,92801,3,1672319005),(86008,8,92802,3,1672319005),(86009,8,92803,3,1672319005),(86010,8,92804,3,1672319005),(86011,8,92805,3,1672319005),(86012,8,92806,3,1672319005),(86013,8,92807,3,1672319005),(86014,8,92808,3,1672319005),(86015,8,92809,3,1672319005),(86016,8,92810,3,1672319005),(86017,8,92811,3,1672319005),(86018,8,92812,3,1672319005),(86019,8,92813,3,1672319005),(86020,8,92814,3,1672319005),(86021,8,92815,3,1672319005),(86022,8,92816,3,1672319005),(86023,8,92817,3,1672319005),(86024,8,92818,3,1672319005),(86025,8,92819,3,1672319005),(86026,8,92820,3,1672319005),(86027,8,92821,3,1672319005),(86028,8,92822,3,1672319005),(86029,8,92823,3,1672319005),(86030,8,92824,3,1672319005),(86031,8,92825,3,1672319005),(86032,8,92826,3,1672319005),(86033,8,92827,3,1672319005),(86034,8,92828,3,1672319005),(86035,8,92829,3,1672319005),(86036,8,92830,3,1672319005),(86037,8,92831,3,1672319005),(86038,8,92832,3,1672319005),(86039,8,92833,3,1672319005),(86040,8,92834,3,1672319005),(86041,8,92835,3,1672319005),(86042,8,92836,3,1672319005),(86043,8,92837,3,1672319005),(86044,8,92838,3,1672319005),(86045,8,92839,3,1672319005),(86046,8,92840,3,1672319005),(86047,8,92841,3,1672319005),(86048,8,92842,3,1672319005),(86049,8,92843,3,1672319005),(86050,8,92844,3,1672319005),(86051,8,92845,3,1672319005),(86052,8,92846,3,1672319005),(86053,8,92847,3,1672319005),(86054,8,92848,3,1672319005),(86055,8,92849,3,1672319005),(86056,8,92850,3,1672319005),(86057,8,92851,3,1672319005),(86058,8,92852,3,1672319005),(86059,8,92853,3,1672319005),(86060,8,92854,3,1672319005),(86061,8,92855,3,1672319005),(86062,8,92856,3,1672319005),(86063,8,92857,3,1672319005),(86064,8,92858,3,1672319005),(86065,8,92859,3,1672319005),(86066,8,92860,3,1672319005),(86067,8,92861,3,1672319005),(86068,8,92862,3,1672319005),(86069,8,92863,3,1672319005),(86070,8,92864,3,1672319005),(86071,8,92865,3,1672319005),(86072,8,92866,3,1672319005),(86073,8,92867,3,1672319005),(86074,8,92868,3,1672319005),(86075,8,92869,3,1672319005),(86076,8,92870,3,1672319005),(86077,8,92871,3,1672319005),(86078,8,92872,3,1672319005),(86079,8,92873,3,1672319005),(86080,8,92874,3,1672319005),(86081,8,92875,3,1672319005),(86082,8,92876,3,1672319005),(86083,8,92877,3,1672319005),(86084,8,92879,3,1672319005),(86085,8,92881,3,1672319005),(86086,8,92882,3,1672319005),(86087,8,92883,3,1672319005),(86088,8,92884,3,1672319005),(86089,8,92885,3,1672319005),(86090,8,92886,3,1672319005),(86091,8,92887,3,1672319005),(86092,8,92888,3,1672319005),(86093,8,92889,3,1672319005),(86094,8,92890,3,1672319005),(86095,8,92891,3,1672319005),(86096,8,92892,3,1672319005),(86097,8,92893,3,1672319005),(86098,8,92894,3,1672319005),(86099,8,92895,3,1672319005),(86100,8,92896,3,1672319005),(86101,8,92897,3,1672319005),(86102,8,92898,3,1672319005),(86103,8,92899,3,1672319005),(86104,8,92900,3,1672319005),(86105,8,92901,3,1672319005),(86106,8,92902,3,1672319005),(86107,8,92903,3,1672319005),(86108,8,92904,3,1672319005),(86109,8,92905,3,1672319005),(86110,8,92906,3,1672319005),(86111,8,92907,3,1672319005),(86112,8,92908,3,1672319005),(86113,8,92909,3,1672319005),(86114,8,92910,3,1672319005),(86115,8,92911,3,1672319005),(86116,8,92912,3,1672319005),(86117,8,92913,3,1672319005),(86118,8,92914,3,1672319005),(86119,8,92915,3,1672319005),(86120,8,92916,3,1672319005),(86121,8,92917,3,1672319005),(86122,8,92918,3,1672319005),(86123,8,92919,3,1672319005),(86124,8,92920,3,1672319005),(86125,8,92921,3,1672319005),(86126,8,92922,3,1672319005),(86127,8,92923,3,1672319005),(86128,8,92924,3,1672319005),(86129,8,92925,3,1672319005),(86130,8,92926,3,1672319005),(86131,8,92927,3,1672319005),(86132,8,92928,3,1672319005),(86133,8,92929,3,1672319005),(86134,8,92930,3,1672319005),(86135,8,92931,3,1672319005),(86136,8,92932,3,1672319005),(86137,8,92933,3,1672319005),(86138,8,92934,3,1672319005),(86139,8,92935,3,1672319005),(86140,8,92936,3,1672319005),(86141,8,92937,3,1672319005),(86142,8,92938,3,1672319005),(86143,8,92939,3,1672319005),(86144,8,92940,3,1672319005),(86145,8,92941,3,1672319005),(86146,8,92942,3,1672319005),(86147,8,92943,3,1672319005),(86148,8,92944,3,1672319005),(86149,8,92945,3,1672319005),(86150,8,92946,3,1672319005),(86151,8,92947,3,1672319005),(86152,8,92948,3,1672319005),(86153,8,92949,3,1672319005),(86154,8,92950,3,1672319005),(86155,8,92951,3,1672319005),(86156,8,92952,3,1672319005),(86157,8,92953,3,1672319005),(86158,8,92954,3,1672319005),(86159,8,92955,3,1672319005),(86160,8,92956,3,1672319005),(86161,8,92957,3,1672319005),(86162,8,92958,3,1672319005),(86163,8,92959,3,1672319005),(86164,8,92960,3,1672319005),(86165,8,92961,3,1672319005),(86166,8,92962,3,1672319005),(86167,8,92963,3,1672319005),(86168,8,92964,3,1672319005),(86169,8,92965,3,1672319005),(86170,8,92966,3,1672319005),(86171,8,92967,3,1672319005),(86172,8,92968,3,1672319005),(86173,8,92969,3,1672319005),(86174,8,92970,3,1672319005),(86175,8,92971,3,1672319005),(86176,8,92972,3,1672319005),(86177,8,92973,3,1672319005),(86178,8,92974,3,1672319005),(86179,8,92975,3,1672319005),(86180,8,92976,3,1672319005),(86181,8,92977,3,1672319005),(86182,8,92978,3,1672319005),(86183,8,92979,3,1672319005),(86184,8,92980,3,1672319005),(86185,8,92981,3,1672319005),(86186,8,92982,3,1672319005),(86187,8,92983,3,1672319005),(86188,8,92984,3,1672319005),(86189,8,92985,3,1672319005),(86190,8,92986,3,1672319005),(86191,8,92987,3,1672319005),(86192,8,92988,3,1672319005),(86193,8,92989,3,1672319005),(86194,8,92990,3,1672319005),(86195,8,92991,3,1672319005),(86196,8,92992,3,1672319005),(86197,8,92993,3,1672319005),(86198,8,92994,3,1672319005),(86199,8,92995,3,1672319005),(86200,8,92996,3,1672319005),(86201,8,92997,3,1672319005),(86202,8,92998,3,1672319005),(86203,8,92999,3,1672319005),(86204,8,93000,3,1672319005),(86205,8,93001,3,1672319005),(86206,8,93002,3,1672319005),(86207,8,93003,3,1672319005),(86208,8,93004,3,1672319005),(86209,8,93005,3,1672319005),(86210,8,93006,3,1672319005),(86211,8,93007,3,1672319005),(86212,8,93008,3,1672319005),(86213,8,93009,3,1672319005),(86214,8,93010,3,1672319005),(86215,8,93011,3,1672319005),(86216,8,93012,3,1672319005),(86217,8,93013,3,1672319005),(86218,8,93014,3,1672319005),(86219,8,93016,3,1672319005),(86220,8,93017,3,1672319005),(86221,8,93018,3,1672319005),(86222,8,93019,3,1672319005),(86223,8,93024,3,1672319005),(86224,8,93025,3,1672319005),(86225,8,93028,3,1672319005),(86226,8,93029,3,1672319005),(86227,8,93030,3,1672319005),(86228,8,93031,3,1672319005),(86229,8,93032,3,1672319005),(86230,8,93033,3,1672319005),(86231,8,93034,3,1672319005),(86232,8,93035,3,1672319005),(86233,8,93036,3,1672319005),(86234,8,93037,3,1672319005),(86235,8,93038,3,1672319005),(86236,8,93039,3,1672319005),(86237,8,93040,3,1672319005),(86238,8,93041,3,1672319005),(86239,8,93042,3,1672319005),(86240,8,93043,3,1672319005),(86241,8,93044,3,1672319005),(86242,8,93045,3,1672319005),(86243,8,93046,3,1672319005),(86244,8,93047,3,1672319005),(86245,8,93048,3,1672319005),(86246,8,93049,3,1672319005),(86247,8,93050,3,1672319005),(86248,8,93051,3,1672319005),(86249,8,93052,3,1672319005),(86250,8,93053,3,1672319005),(86251,8,93054,3,1672319005),(86252,8,93055,3,1672319005),(86253,8,93056,3,1672319005),(86254,8,93057,3,1672319005),(86255,8,93058,3,1672319005),(86256,8,93059,3,1672319005),(86257,8,93060,3,1672319005),(86258,8,93061,3,1672319005),(86259,8,93062,3,1672319005),(86260,8,93063,3,1672319005),(86261,8,93064,3,1672319005),(86264,4,6439,3,1672319027),(86265,4,6444,3,1672319027),(86266,4,6449,3,1672319027),(86267,4,6454,3,1672319027),(86268,4,6459,3,1672319027),(86269,4,6464,3,1672319027),(86270,4,6469,3,1672319027),(86271,4,6474,3,1672319027),(86272,4,6479,3,1672319027),(86273,4,6484,3,1672319027),(86274,4,6489,3,1672319027),(86275,4,6494,3,1672319027),(86276,4,6499,3,1672319027),(86277,4,6504,3,1672319027),(86278,4,6509,3,1672319027),(86279,4,6514,3,1672319027),(86280,4,6519,3,1672319027),(86281,4,6524,3,1672319027),(86282,4,6529,3,1672319027),(86283,4,6534,3,1672319027),(86284,4,6539,3,1672319027),(86285,4,6544,3,1672319027),(86286,4,6549,3,1672319027),(86287,4,6609,3,1672319027),(86288,4,6614,3,1672319027),(86289,4,6619,3,1672319027),(86290,4,6624,3,1672319027),(86291,4,6629,3,1672319027),(86292,4,6634,3,1672319027),(86293,4,6639,3,1672319027),(86294,4,6644,3,1672319027),(86295,4,6649,3,1672319027),(86296,4,6654,3,1672319027),(86297,4,6659,3,1672319027),(86298,4,6664,3,1672319027),(86299,4,6754,3,1672319027),(86300,4,6759,3,1672319027),(86301,4,6764,3,1672319027),(86302,4,6769,3,1672319027),(86303,4,6774,3,1672319027),(86304,4,6779,3,1672319027),(86305,4,6784,3,1672319027),(86306,4,6789,3,1672319027),(86307,4,6794,3,1672319027),(86308,4,6799,3,1672319027),(86309,4,6804,3,1672319027),(86310,4,6809,3,1672319027),(86311,4,6814,3,1672319027),(86312,4,6819,3,1672319027),(86313,4,6824,3,1672319027),(86314,4,6829,3,1672319027),(86315,4,6834,3,1672319027),(86316,4,6839,3,1672319027),(86317,4,6844,3,1672319027),(86318,4,6849,3,1672319027),(86319,4,6854,3,1672319027),(86320,4,6859,3,1672319027),(86321,4,6864,3,1672319027),(86322,4,6924,3,1672319027),(86323,4,6929,3,1672319027),(86324,4,6934,3,1672319027),(86325,4,6939,3,1672319027),(86326,4,6944,3,1672319027),(86327,4,6949,3,1672319027),(86328,4,6954,3,1672319027),(86329,4,6959,3,1672319027),(86330,4,6964,3,1672319027),(86331,4,6969,3,1672319027),(86332,4,6974,3,1672319027),(86333,4,6979,3,1672319027),(86334,4,8507,3,1672319027),(86335,4,8512,3,1672319027),(86336,4,8517,3,1672319027),(86337,4,8522,3,1672319027),(86338,4,8527,3,1672319027),(86339,4,8532,3,1672319027),(86340,4,11054,3,1672319027),(86341,4,11055,3,1672319027),(86342,4,11057,3,1672319027),(86343,4,11061,3,1672319027),(86344,4,11062,3,1672319027),(86345,4,11064,3,1672319027),(86346,4,11068,3,1672319027),(86347,4,11069,3,1672319027),(86348,4,11071,3,1672319027),(86349,4,11075,3,1672319027),(86350,4,11076,3,1672319027),(86351,4,11078,3,1672319027),(86352,4,11082,3,1672319027),(86353,4,11083,3,1672319027),(86354,4,11085,3,1672319027),(86355,4,11089,3,1672319027),(86356,4,11090,3,1672319027),(86357,4,11092,3,1672319027),(86358,4,11096,3,1672319027),(86359,4,11097,3,1672319027),(86360,4,11099,3,1672319027),(86361,4,11103,3,1672319027),(86362,4,11104,3,1672319027),(86363,4,11106,3,1672319027),(86364,4,11110,3,1672319027),(86365,4,11111,3,1672319027),(86366,4,11113,3,1672319027),(86367,4,11117,3,1672319027),(86368,4,11118,3,1672319027),(86369,4,11120,3,1672319027),(86370,4,11124,3,1672319027),(86371,4,11125,3,1672319027),(86372,4,11127,3,1672319027),(86373,4,11131,3,1672319027),(86374,4,11132,3,1672319027),(86375,4,11134,3,1672319027),(86376,4,11138,3,1672319027),(86377,4,11139,3,1672319027),(86378,4,11141,3,1672319027),(86379,4,11145,3,1672319027),(86380,4,11146,3,1672319027),(86381,4,11148,3,1672319027),(86382,4,11152,3,1672319027),(86383,4,11153,3,1672319027),(86384,4,11155,3,1672319027),(86385,4,11159,3,1672319027),(86386,4,11160,3,1672319027),(86387,4,11162,3,1672319027),(86388,4,11166,3,1672319027),(86389,4,11167,3,1672319027),(86390,4,11169,3,1672319027),(86391,4,11173,3,1672319027),(86392,4,11174,3,1672319027),(86393,4,11176,3,1672319027),(86394,4,11180,3,1672319027),(86395,4,11181,3,1672319027),(86396,4,11182,3,1672319027),(86397,4,11187,3,1672319027),(86398,4,11188,3,1672319027),(86399,4,11189,3,1672319027),(86400,4,11194,3,1672319027),(86401,4,11195,3,1672319027),(86402,4,11196,3,1672319027),(86403,4,11201,3,1672319027),(86404,4,11202,3,1672319027),(86405,4,11203,3,1672319027),(86406,4,11208,3,1672319027),(86407,4,11209,3,1672319027),(86408,4,11210,3,1672319027),(86409,4,11215,3,1672319027),(86410,4,11216,3,1672319027),(86411,4,11217,3,1672319027),(86412,4,11222,3,1672319027),(86413,4,11223,3,1672319027),(86414,4,11224,3,1672319027),(86415,4,11229,3,1672319027),(86416,4,11230,3,1672319027),(86417,4,11231,3,1672319027),(86418,4,11236,3,1672319027),(86419,4,11237,3,1672319027),(86420,4,11238,3,1672319027),(86421,4,11243,3,1672319027),(86422,4,11244,3,1672319027),(86423,4,11245,3,1672319027),(86424,4,11250,3,1672319027),(86425,4,11255,3,1672319027),(86426,4,11260,3,1672319027),(86427,4,11265,3,1672319027),(86428,4,11270,3,1672319027),(86429,4,11275,3,1672319027),(86430,4,11280,3,1672319027),(86431,4,11285,3,1672319027),(86432,4,11290,3,1672319027),(86433,4,11291,3,1672319027),(86434,4,11296,3,1672319027),(86435,4,11297,3,1672319027),(86436,4,11302,3,1672319027),(86437,4,11303,3,1672319027),(86438,4,11308,3,1672319027),(86439,4,11309,3,1672319027),(86440,4,11314,3,1672319027),(86441,4,11315,3,1672319027),(86442,4,11320,3,1672319027),(86443,4,11321,3,1672319027),(86444,4,11326,3,1672319027),(86445,4,11327,3,1672319027),(86446,4,11783,3,1672319027),(86447,4,11785,3,1672319027),(86448,4,11786,3,1672319027),(86449,4,11787,3,1672319027),(86450,4,11789,3,1672319027),(86451,4,11791,3,1672319027),(86452,4,11793,3,1672319027),(86453,4,11794,3,1672319027),(86454,4,11795,3,1672319027),(86455,4,11796,3,1672319027),(86456,4,11797,3,1672319027),(86457,4,11798,3,1672319027),(86458,4,11799,3,1672319027),(86459,4,11800,3,1672319027),(86460,4,11801,3,1672319027),(86461,4,11802,3,1672319027),(86462,4,11803,3,1672319027),(86463,4,11804,3,1672319027),(86464,4,11805,3,1672319027),(86465,4,11806,3,1672319027),(86466,4,11808,3,1672319027),(86467,4,11810,3,1672319027),(86468,4,11812,3,1672319027),(86469,4,11814,3,1672319027),(86470,4,11816,3,1672319027),(86471,4,11817,3,1672319027),(86472,4,11818,3,1672319027),(86473,4,11819,3,1672319027),(86474,4,11820,3,1672319027),(86475,4,11821,3,1672319027),(86476,4,11822,3,1672319027),(86477,4,11823,3,1672319027),(86478,4,11824,3,1672319027),(86479,4,11825,3,1672319027),(86480,4,11826,3,1672319027),(86481,4,11827,3,1672319027),(86482,4,11828,3,1672319027),(86483,4,11829,3,1672319027),(86484,4,11830,3,1672319027),(86485,4,11831,3,1672319027),(86486,4,11832,3,1672319027),(86487,4,11833,3,1672319027),(86488,4,11834,3,1672319027),(86489,4,11835,3,1672319027),(86490,4,11836,3,1672319027),(86491,4,11837,3,1672319027),(86492,4,11838,3,1672319027),(86493,4,11839,3,1672319027),(86494,4,11840,3,1672319027),(86495,4,11841,3,1672319027),(86496,4,11842,3,1672319027),(86497,4,11843,3,1672319027),(86498,4,11844,3,1672319027),(86499,4,11845,3,1672319027),(86500,4,11846,3,1672319027),(86501,4,11847,3,1672319027),(86502,4,11848,3,1672319027),(86503,4,11850,3,1672319027),(86504,4,11852,3,1672319027),(86505,4,11854,3,1672319027),(86506,4,11856,3,1672319027),(86507,4,11857,3,1672319027),(86508,4,11858,3,1672319027),(86509,4,11859,3,1672319027),(86510,4,11860,3,1672319027),(86511,4,11861,3,1672319027),(86512,4,11862,3,1672319027),(86513,4,11863,3,1672319027),(86514,4,11864,3,1672319027),(86515,4,11865,3,1672319027),(86516,4,11866,3,1672319027),(86517,4,11867,3,1672319027),(86518,4,11868,3,1672319027),(86519,4,11869,3,1672319027),(86520,4,11870,3,1672319027),(86521,4,11871,3,1672319027),(86522,4,11872,3,1672319027),(86523,4,11873,3,1672319027),(86524,4,11874,3,1672319027),(86525,4,11875,3,1672319027),(86526,4,11876,3,1672319027),(86527,4,11877,3,1672319027),(86528,4,11878,3,1672319027),(86529,4,11879,3,1672319027),(86530,4,11880,3,1672319027),(86531,4,11881,3,1672319027),(86532,4,11882,3,1672319027),(86533,4,11883,3,1672319027),(86534,4,11884,3,1672319027),(86535,4,11885,3,1672319027),(86536,4,11886,3,1672319027),(86537,4,11887,3,1672319027),(86538,4,11888,3,1672319027),(86539,4,11889,3,1672319027),(86540,4,11890,3,1672319027),(86541,4,11891,3,1672319027),(86542,4,11892,3,1672319027),(86543,4,11893,3,1672319027),(86544,4,11894,3,1672319027),(86545,4,11895,3,1672319027),(86546,4,11896,3,1672319027),(86547,4,11897,3,1672319027),(86548,4,11898,3,1672319027),(86549,4,11899,3,1672319027),(86550,4,11900,3,1672319027),(86551,4,11901,3,1672319027),(86552,4,11902,3,1672319027),(86553,4,11903,3,1672319027),(86554,4,11904,3,1672319027),(86555,4,11905,3,1672319027),(86556,4,11906,3,1672319027),(86557,4,11907,3,1672319027),(86558,4,11908,3,1672319027),(86559,4,11909,3,1672319027),(86560,4,11910,3,1672319027),(86561,4,11911,3,1672319027),(86562,4,11912,3,1672319027),(86563,4,11913,3,1672319027),(86564,4,11914,3,1672319027),(86565,4,11915,3,1672319027),(86566,4,11916,3,1672319027),(86567,4,11917,3,1672319027),(86568,4,11918,3,1672319027),(86569,4,11919,3,1672319027),(86570,4,11920,3,1672319027),(86571,4,11921,3,1672319027),(86572,4,11922,3,1672319027),(86573,4,11923,3,1672319027),(86574,4,11924,3,1672319027),(86575,4,11925,3,1672319027),(86576,4,11926,3,1672319027),(86577,4,11927,3,1672319027),(86578,4,11928,3,1672319027),(86579,4,11929,3,1672319027),(86580,4,11930,3,1672319027),(86581,4,11931,3,1672319027),(86582,4,11932,3,1672319027),(86583,4,11933,3,1672319027),(86584,4,11934,3,1672319027),(86585,4,11935,3,1672319027),(86586,4,11936,3,1672319027),(86587,4,11937,3,1672319027),(86588,4,11938,3,1672319027),(86589,4,11939,3,1672319027),(86590,4,11940,3,1672319027),(86591,4,11941,3,1672319027),(86592,4,11942,3,1672319027),(86593,4,11943,3,1672319027),(86594,4,11944,3,1672319027),(86595,4,11945,3,1672319027),(86596,4,11946,3,1672319027),(86597,4,11947,3,1672319027),(86598,4,11948,3,1672319027),(86599,4,11949,3,1672319027),(86600,4,11950,3,1672319027),(86601,4,11951,3,1672319027),(86602,4,11952,3,1672319027),(86603,4,11953,3,1672319027),(86604,4,11954,3,1672319027),(86605,4,11955,3,1672319027),(86606,4,11956,3,1672319027),(86607,4,11957,3,1672319027),(86608,4,11958,3,1672319027),(86609,4,11959,3,1672319027),(86610,4,11960,3,1672319027),(86611,4,11961,3,1672319027),(86612,4,11962,3,1672319027),(86613,4,11963,3,1672319027),(86614,4,11964,3,1672319027),(86615,4,11965,3,1672319027),(86616,4,11966,3,1672319027),(86617,4,11967,3,1672319027),(86618,4,11968,3,1672319027),(86619,4,11969,3,1672319027),(86620,4,11970,3,1672319027),(86621,4,11971,3,1672319027),(86622,4,11972,3,1672319027),(86623,4,11973,3,1672319027),(86624,4,11974,3,1672319027),(86625,4,11975,3,1672319027),(86626,4,11976,3,1672319027),(86627,4,11977,3,1672319027),(86628,4,11978,3,1672319027),(86629,4,11979,3,1672319027),(86630,4,11980,3,1672319027),(86631,4,11981,3,1672319027),(86632,4,11982,3,1672319027),(86633,4,11983,3,1672319027),(86634,4,11984,3,1672319027),(86635,4,11985,3,1672319027),(86636,4,11986,3,1672319027),(86637,4,11987,3,1672319027),(86638,4,11988,3,1672319027),(86639,4,11989,3,1672319027),(86640,4,11990,3,1672319027),(86641,4,11991,3,1672319027),(86642,4,11992,3,1672319027),(86643,4,11993,3,1672319027),(86644,4,11994,3,1672319027),(86645,4,11995,3,1672319027),(86646,4,11996,3,1672319027),(86647,4,11997,3,1672319027),(86648,4,11998,3,1672319027),(86649,4,11999,3,1672319027),(86650,4,12000,3,1672319027),(86651,4,12001,3,1672319027),(86652,4,12002,3,1672319027),(86653,4,12003,3,1672319027),(86654,4,12004,3,1672319027),(86655,4,12005,3,1672319027),(86656,4,12006,3,1672319027),(86657,4,12007,3,1672319027),(86658,4,12008,3,1672319027),(86659,4,12009,3,1672319027),(86660,4,12010,3,1672319027),(86661,4,12011,3,1672319027),(86662,4,12012,3,1672319027),(86663,4,12013,3,1672319027),(86664,4,12014,3,1672319027),(86665,4,12015,3,1672319027),(86666,4,12016,3,1672319027),(86667,4,12017,3,1672319027),(86668,4,12018,3,1672319027),(86669,4,12019,3,1672319027),(86670,4,12020,3,1672319027),(86671,4,12021,3,1672319027),(86672,4,12022,3,1672319027),(86673,4,12023,3,1672319027),(86674,4,12024,3,1672319027),(86675,4,12025,3,1672319027),(86676,4,12026,3,1672319027),(86677,4,12027,3,1672319027),(86678,4,12028,3,1672319027),(86679,4,12029,3,1672319027),(86680,4,12030,3,1672319027),(86681,4,12032,3,1672319027),(86682,4,12040,3,1672319027),(86683,4,12042,3,1672319027),(86684,4,12043,3,1672319027),(86685,4,12045,3,1672319027),(86686,4,12046,3,1672319027),(86687,4,12048,3,1672319027),(86688,4,12049,3,1672319027),(86689,4,12050,3,1672319027),(86690,4,12051,3,1672319027),(86691,4,12052,3,1672319027),(86692,4,12053,3,1672319027),(86693,4,12054,3,1672319027),(86694,4,12055,3,1672319027),(86695,4,12057,3,1672319027),(86696,4,12058,3,1672319027),(86697,4,12059,3,1672319027),(86698,4,12060,3,1672319027),(86699,4,12061,3,1672319027),(86700,4,12062,3,1672319027),(86701,4,12063,3,1672319027),(86702,4,12064,3,1672319027),(86703,4,12065,3,1672319027),(86704,4,12066,3,1672319027),(86705,4,12067,3,1672319027),(86706,4,12068,3,1672319027),(86707,4,12069,3,1672319027),(86708,4,12070,3,1672319027),(86709,4,12071,3,1672319027),(86710,4,12072,3,1672319027),(86711,4,12073,3,1672319027),(86712,4,12074,3,1672319027),(86713,4,12075,3,1672319027),(86714,4,12076,3,1672319027),(86715,4,12077,3,1672319027),(86716,4,12078,3,1672319027),(86717,4,12079,3,1672319027),(86718,4,12080,3,1672319027),(86719,4,12081,3,1672319027),(86720,4,12082,3,1672319027),(86721,4,12083,3,1672319027),(86722,4,12084,3,1672319027),(86723,4,12085,3,1672319027),(86724,4,12086,3,1672319027),(86725,4,12087,3,1672319027),(86726,4,12088,3,1672319027),(86727,4,12089,3,1672319027),(86728,4,12090,3,1672319027),(86729,4,12091,3,1672319027),(86730,4,12092,3,1672319027),(86731,4,12093,3,1672319027),(86732,4,12094,3,1672319027),(86733,4,12095,3,1672319027),(86734,4,12096,3,1672319027),(86735,4,12097,3,1672319027),(86736,4,12098,3,1672319027),(86737,4,12099,3,1672319027),(86738,4,12100,3,1672319027),(86739,4,12101,3,1672319027),(86740,4,12102,3,1672319027),(86741,4,12103,3,1672319027),(86742,4,12104,3,1672319027),(86743,4,12105,3,1672319027),(86744,4,12106,3,1672319027),(86745,4,12107,3,1672319027),(86746,4,12108,3,1672319027),(86747,4,12109,3,1672319027),(86748,4,12110,3,1672319027),(86749,4,12111,3,1672319027),(86750,4,12112,3,1672319027),(86751,4,12113,3,1672319027),(86752,4,12114,3,1672319027),(86753,4,12115,3,1672319027),(86754,4,12116,3,1672319027),(86755,4,12117,3,1672319027),(86756,4,12118,3,1672319027),(86757,4,12119,3,1672319027),(86758,4,12120,3,1672319027),(86759,4,12121,3,1672319027),(86760,4,12122,3,1672319027),(86761,4,12123,3,1672319027),(86762,4,12124,3,1672319027),(86763,4,12125,3,1672319027),(86764,4,12126,3,1672319027),(86765,4,12127,3,1672319027),(86766,4,12128,3,1672319027),(86767,4,12129,3,1672319027),(86768,4,12130,3,1672319027),(86769,4,12131,3,1672319027),(86770,4,12132,3,1672319027),(86771,4,12133,3,1672319027),(86772,4,12134,3,1672319027),(86773,4,12135,3,1672319027),(86774,4,12136,3,1672319027),(86775,4,12137,3,1672319027),(86776,4,12138,3,1672319027),(86777,4,12139,3,1672319027),(86778,4,12140,3,1672319027),(86779,4,12141,3,1672319027),(86780,4,12142,3,1672319027),(86781,4,12143,3,1672319027),(86782,4,12144,3,1672319027),(86783,4,12145,3,1672319027),(86784,4,12146,3,1672319027),(86785,4,12147,3,1672319027),(86786,4,12148,3,1672319027),(86787,4,12149,3,1672319027),(86788,4,12150,3,1672319027),(86789,4,12151,3,1672319027),(86790,4,12152,3,1672319027),(86791,4,12153,3,1672319027),(86792,4,12154,3,1672319027),(86793,4,12155,3,1672319027),(86794,4,12156,3,1672319027),(86795,4,12157,3,1672319027),(86796,4,12158,3,1672319027),(86797,4,12159,3,1672319027),(86798,4,12160,3,1672319027),(86799,4,12161,3,1672319027),(86800,4,12162,3,1672319027),(86801,4,12163,3,1672319027),(86802,4,12164,3,1672319027),(86803,4,12165,3,1672319027),(86804,4,12166,3,1672319027),(86805,4,12167,3,1672319027),(86806,4,12168,3,1672319027),(86807,4,12169,3,1672319027),(86808,4,12170,3,1672319027),(86809,4,12171,3,1672319027),(86810,4,12172,3,1672319027),(86811,4,12173,3,1672319027),(86812,4,12174,3,1672319027),(86813,4,12175,3,1672319027),(86814,4,12176,3,1672319027),(86815,4,12177,3,1672319027),(86816,4,12178,3,1672319027),(86817,4,12179,3,1672319027),(86818,4,12180,3,1672319027),(86819,4,12181,3,1672319027),(86820,4,12182,3,1672319027),(86821,4,12183,3,1672319027),(86822,4,12184,3,1672319027),(86823,4,12185,3,1672319027),(86824,4,12186,3,1672319027),(86825,4,12187,3,1672319027),(86826,4,12188,3,1672319027),(86827,4,12189,3,1672319027),(86828,4,12190,3,1672319027),(86829,4,12191,3,1672319027),(86830,4,12192,3,1672319027),(86831,4,12193,3,1672319027),(86832,4,12194,3,1672319027),(86833,4,12195,3,1672319027),(86834,4,12196,3,1672319027),(86835,4,12197,3,1672319027),(86836,4,12198,3,1672319027),(86837,4,12200,3,1672319027),(86838,4,12201,3,1672319027),(86839,4,12202,3,1672319027),(86840,4,12203,3,1672319027),(86841,4,12204,3,1672319027),(86842,4,12205,3,1672319027),(86843,4,12206,3,1672319027),(86844,4,12207,3,1672319027),(86845,4,12208,3,1672319027),(86846,4,12209,3,1672319027),(86847,4,12210,3,1672319027),(86848,4,12211,3,1672319027),(86849,4,12212,3,1672319027),(86850,4,12213,3,1672319027),(86851,4,12214,3,1672319027),(86852,4,12215,3,1672319027),(86853,4,12216,3,1672319027),(86854,4,12217,3,1672319027),(86855,4,12218,3,1672319027),(86856,4,12219,3,1672319027),(86857,4,12220,3,1672319027),(86858,4,12221,3,1672319027),(86859,4,12222,3,1672319027),(86860,4,12223,3,1672319027),(86861,4,12224,3,1672319027),(86862,4,12225,3,1672319027),(86863,4,12226,3,1672319027),(86864,4,12227,3,1672319027),(86865,4,12228,3,1672319027),(86866,4,12229,3,1672319027),(86867,4,12230,3,1672319027),(86868,4,12231,3,1672319027),(86869,4,14962,3,1672319027),(86870,4,14963,3,1672319027),(86871,4,14964,3,1672319027),(86872,4,14965,3,1672319027),(86873,4,14966,3,1672319027),(86874,4,14967,3,1672319027),(86875,4,14968,3,1672319027),(86876,4,14969,3,1672319027),(86877,4,14970,3,1672319027),(86878,4,14971,3,1672319027),(86879,4,14972,3,1672319027),(86880,4,14973,3,1672319027),(86881,4,14974,3,1672319027),(86882,4,14975,3,1672319027),(86883,4,14976,3,1672319027),(86884,4,14977,3,1672319027),(86885,4,14978,3,1672319027),(86886,4,14979,3,1672319027),(86887,4,14980,3,1672319027),(86888,4,14981,3,1672319027),(86889,4,14982,3,1672319027),(86890,4,14983,3,1672319027),(86891,4,14984,3,1672319027),(86892,4,14989,3,1672319027),(86893,4,14990,3,1672319027),(86894,4,14991,3,1672319027),(86895,4,14992,3,1672319027),(86896,4,14993,3,1672319027),(86897,4,14994,3,1672319027),(86898,4,14995,3,1672319027),(86899,4,14996,3,1672319027),(86900,4,14997,3,1672319027),(86901,4,14998,3,1672319027),(86902,4,14999,3,1672319027),(86903,4,15000,3,1672319027),(86904,4,15001,3,1672319027),(86905,4,15002,3,1672319027),(86906,4,15003,3,1672319027),(86907,4,15004,3,1672319027),(86908,4,15005,3,1672319027),(86909,4,15006,3,1672319027),(86910,4,15007,3,1672319027),(86911,4,15008,3,1672319027),(86912,4,15009,3,1672319027),(86913,4,15010,3,1672319027),(86914,4,15011,3,1672319027),(86915,4,15012,3,1672319027),(86916,4,15013,3,1672319027),(86917,4,15014,3,1672319027),(86918,4,15015,3,1672319027),(86919,4,15016,3,1672319027),(86920,4,15017,3,1672319027),(86921,4,15018,3,1672319027),(86922,4,15019,3,1672319027),(86923,4,15020,3,1672319027),(86924,4,15021,3,1672319027),(86925,4,15022,3,1672319027),(86926,4,15023,3,1672319027),(86927,4,15024,3,1672319027),(86928,4,15025,3,1672319027),(86929,4,15026,3,1672319027),(86930,4,15027,3,1672319027),(86931,4,15028,3,1672319027),(86932,4,15029,3,1672319027),(86933,4,15030,3,1672319027),(86934,4,15031,3,1672319027),(86935,4,15032,3,1672319027),(86936,4,15033,3,1672319027),(86937,4,15034,3,1672319027),(86938,4,15035,3,1672319027),(86939,4,15036,3,1672319027),(86940,4,15037,3,1672319027),(86941,4,15038,3,1672319027),(86942,4,15039,3,1672319027),(86943,4,15040,3,1672319027),(86944,4,15041,3,1672319027),(86945,4,15042,3,1672319027),(86946,4,15043,3,1672319027),(86947,4,15044,3,1672319027),(86948,4,15045,3,1672319027),(86949,4,15046,3,1672319027),(86950,4,15047,3,1672319027),(86951,4,15048,3,1672319027),(86952,4,15049,3,1672319027),(86953,4,15050,3,1672319027),(86954,4,15051,3,1672319027),(86955,4,15052,3,1672319027),(86956,4,15053,3,1672319027),(86957,4,15054,3,1672319027),(86958,4,15055,3,1672319027),(86959,4,15056,3,1672319027),(86960,4,15057,3,1672319027),(86961,4,15058,3,1672319027),(86962,4,15059,3,1672319027),(86963,4,15060,3,1672319027),(86964,4,15061,3,1672319027),(86965,4,15062,3,1672319027),(86966,4,15063,3,1672319027),(86967,4,15064,3,1672319027),(86968,4,15065,3,1672319027),(86969,4,15066,3,1672319027),(86970,4,15067,3,1672319027),(86971,4,15068,3,1672319027),(86972,4,15069,3,1672319027),(86973,4,15070,3,1672319027),(86974,4,15071,3,1672319027),(86975,4,15072,3,1672319027),(86976,4,15073,3,1672319027),(86977,4,15074,3,1672319027),(86978,4,15075,3,1672319027),(86979,4,15076,3,1672319027),(86980,4,15077,3,1672319027),(86981,4,15078,3,1672319027),(86982,4,15079,3,1672319027),(86983,4,15080,3,1672319027),(86984,4,15081,3,1672319027),(86985,4,15082,3,1672319027),(86986,4,15083,3,1672319027),(86987,4,15084,3,1672319027),(86988,4,15085,3,1672319027),(86989,4,15086,3,1672319027),(86990,4,15087,3,1672319027),(86991,4,15088,3,1672319027),(86992,4,15089,3,1672319027),(86993,4,15090,3,1672319027),(86994,4,15091,3,1672319027),(86995,4,15092,3,1672319027),(86996,4,15093,3,1672319027),(86997,4,15094,3,1672319027),(86998,4,15095,3,1672319027),(86999,4,15096,3,1672319027),(87000,4,15097,3,1672319027),(87001,4,15098,3,1672319027),(87002,4,15099,3,1672319027),(87003,4,15100,3,1672319027),(87004,4,15101,3,1672319027),(87005,4,15102,3,1672319027),(87006,4,15103,3,1672319027),(87007,4,15104,3,1672319027),(87008,4,15105,3,1672319027),(87009,4,15106,3,1672319027),(87010,4,15107,3,1672319027),(87011,4,15108,3,1672319027),(87012,4,15109,3,1672319027),(87013,4,15110,3,1672319027),(87014,4,15111,3,1672319027),(87015,4,15112,3,1672319027),(87016,4,15113,3,1672319027),(87017,4,15114,3,1672319027),(87018,4,15115,3,1672319027),(87019,4,15116,3,1672319027),(87020,4,15117,3,1672319027),(87021,4,15118,3,1672319027),(87022,4,15119,3,1672319027),(87023,4,15120,3,1672319027),(87024,4,15121,3,1672319027),(87025,4,15122,3,1672319027),(87026,4,15123,3,1672319027),(87027,4,15124,3,1672319027),(87028,4,15125,3,1672319027),(87029,4,15126,3,1672319027),(87030,4,15127,3,1672319027),(87031,4,15128,3,1672319027),(87032,4,15129,3,1672319027),(87033,4,15130,3,1672319027),(87034,4,15131,3,1672319027),(87035,4,15132,3,1672319027),(87036,4,15133,3,1672319027),(87037,4,15134,3,1672319027),(87038,4,15135,3,1672319027),(87039,4,15136,3,1672319027),(87040,4,15137,3,1672319027),(87041,4,15138,3,1672319027),(87042,4,15139,3,1672319027),(87043,4,15140,3,1672319027),(87044,4,15141,3,1672319027),(87045,4,15142,3,1672319027),(87046,4,15143,3,1672319027),(87047,4,15144,3,1672319027),(87048,4,15145,3,1672319027),(87049,4,15146,3,1672319027),(87050,4,15147,3,1672319027),(87051,4,15148,3,1672319027),(87052,4,15149,3,1672319027),(87053,4,15150,3,1672319027),(87054,4,15151,3,1672319027),(87055,4,15152,3,1672319027),(87056,4,15153,3,1672319027),(87057,4,15154,3,1672319027),(87058,4,15155,3,1672319027),(87059,4,15156,3,1672319027),(87060,4,15157,3,1672319027),(87061,4,15158,3,1672319027),(87062,4,15159,3,1672319027),(87063,4,15160,3,1672319027),(87064,4,15161,3,1672319027),(87065,4,15162,3,1672319027),(87066,4,15163,3,1672319027),(87067,4,15164,3,1672319027),(87068,4,15165,3,1672319027),(87069,4,15166,3,1672319027),(87070,4,15167,3,1672319027),(87071,4,15168,3,1672319027),(87072,4,15169,3,1672319027),(87073,4,15170,3,1672319027),(87074,4,15171,3,1672319027),(87075,4,15172,3,1672319027),(87076,4,15173,3,1672319027),(87077,4,15174,3,1672319027),(87078,4,15175,3,1672319027),(87079,4,15176,3,1672319027),(87080,4,15177,3,1672319027),(87081,4,15178,3,1672319027),(87082,4,15179,3,1672319027),(87083,4,15180,3,1672319027),(87084,4,15181,3,1672319027),(87085,4,15182,3,1672319027),(87086,4,15183,3,1672319027),(87087,4,15184,3,1672319027),(87088,4,15185,3,1672319027),(87089,4,15186,3,1672319027),(87090,4,15187,3,1672319027),(87091,4,15188,3,1672319027),(87092,4,15189,3,1672319027),(87093,4,15190,3,1672319027),(87094,4,15191,3,1672319027),(87095,4,15192,3,1672319027),(87096,4,15193,3,1672319027),(87097,4,15194,3,1672319027),(87098,4,15195,3,1672319027),(87099,4,15196,3,1672319027),(87100,4,15197,3,1672319027),(87101,4,15198,3,1672319027),(87102,4,15199,3,1672319027),(87103,4,15200,3,1672319027),(87104,4,15201,3,1672319027),(87105,4,15202,3,1672319027),(87106,4,15203,3,1672319027),(87107,4,15204,3,1672319027),(87108,4,15205,3,1672319027),(87109,4,15206,3,1672319027),(87110,4,15207,3,1672319027),(87111,4,15208,3,1672319027),(87112,4,15209,3,1672319027),(87113,4,15210,3,1672319027),(87114,4,15211,3,1672319027),(87115,4,15212,3,1672319027),(87116,4,15213,3,1672319027),(87117,4,15214,3,1672319027),(87118,4,15215,3,1672319027),(87119,4,15216,3,1672319027),(87120,4,15217,3,1672319027),(87121,4,15218,3,1672319027),(87122,4,15219,3,1672319027),(87123,4,15220,3,1672319027),(87124,4,15221,3,1672319027),(87125,4,15222,3,1672319027),(87126,4,15223,3,1672319027),(87127,4,15224,3,1672319027),(87128,4,15225,3,1672319027),(87129,4,15226,3,1672319027),(87130,4,15227,3,1672319027),(87131,4,15228,3,1672319027),(87132,4,15229,3,1672319027),(87133,4,15230,3,1672319027),(87134,4,15231,3,1672319027),(87135,4,15232,3,1672319027),(87136,4,15233,3,1672319027),(87137,4,15234,3,1672319027),(87138,4,15235,3,1672319027),(87139,4,15236,3,1672319027),(87140,4,15237,3,1672319027),(87141,4,15238,3,1672319027),(87142,4,15239,3,1672319027),(87143,4,15240,3,1672319027),(87144,4,15241,3,1672319027),(87145,4,15242,3,1672319027),(87146,4,15243,3,1672319027),(87147,4,15244,3,1672319027),(87148,4,15245,3,1672319027),(87149,4,15246,3,1672319027),(87150,4,15247,3,1672319027),(87151,4,15248,3,1672319027),(87152,4,15249,3,1672319027),(87153,4,15250,3,1672319027),(87154,4,15251,3,1672319027),(87155,4,15252,3,1672319027),(87156,4,15253,3,1672319027),(87157,4,15254,3,1672319027),(87158,4,15255,3,1672319027),(87159,4,15256,3,1672319027),(87160,4,15257,3,1672319027),(87161,4,15258,3,1672319027),(87162,4,15259,3,1672319027),(87163,4,15260,3,1672319027),(87164,4,15261,3,1672319027),(87165,4,15262,3,1672319027),(87166,4,15263,3,1672319027),(87167,4,15264,3,1672319027),(87168,4,15265,3,1672319027),(87169,4,15266,3,1672319027),(87170,4,15267,3,1672319027),(87171,4,15268,3,1672319027),(87172,4,15269,3,1672319027),(87173,4,15270,3,1672319027),(87174,4,15271,3,1672319027),(87175,4,15272,3,1672319027),(87176,4,15273,3,1672319027),(87177,4,15274,3,1672319027),(87178,4,15275,3,1672319027),(87179,4,15276,3,1672319027),(87180,4,15277,3,1672319027),(87181,4,15278,3,1672319027),(87182,4,15279,3,1672319027),(87183,4,15280,3,1672319027),(87184,4,15281,3,1672319027),(87185,4,15282,3,1672319027),(87186,4,15283,3,1672319027),(87187,4,15284,3,1672319027),(87188,4,15285,3,1672319027),(87189,4,15286,3,1672319027),(87190,4,15287,3,1672319027),(87191,4,15288,3,1672319027),(87192,4,15289,3,1672319027),(87193,4,15290,3,1672319027),(87194,4,15291,3,1672319027),(87195,4,15292,3,1672319027),(87196,4,15293,3,1672319027),(87197,4,15294,3,1672319027),(87198,4,15295,3,1672319027),(87199,4,15296,3,1672319027),(87200,4,15297,3,1672319027),(87201,4,15298,3,1672319027),(87202,4,15299,3,1672319027),(87203,4,15300,3,1672319027),(87204,4,15301,3,1672319027),(87205,4,15302,3,1672319027),(87206,4,15303,3,1672319027),(87207,4,15304,3,1672319027),(87208,4,15305,3,1672319027),(87209,4,15306,3,1672319027),(87210,4,15307,3,1672319027),(87211,4,15308,3,1672319027),(87212,4,15309,3,1672319027),(87213,4,15310,3,1672319027),(87214,4,15311,3,1672319027),(87215,4,15312,3,1672319027),(87216,4,15313,3,1672319027),(87217,4,15314,3,1672319027),(87218,4,15315,3,1672319027),(87219,4,15316,3,1672319027),(87220,4,15317,3,1672319027),(87221,4,15318,3,1672319027),(87222,4,15319,3,1672319027),(87223,4,15320,3,1672319027),(87224,4,15321,3,1672319027),(87225,4,15322,3,1672319027),(87226,4,15323,3,1672319027),(87227,4,15324,3,1672319027),(87228,4,15325,3,1672319027),(87229,4,15326,3,1672319027),(87230,4,15327,3,1672319027),(87231,4,15328,3,1672319027),(87232,4,15329,3,1672319027),(87233,4,15330,3,1672319027),(87234,4,15331,3,1672319027),(87235,4,15332,3,1672319027),(87236,4,15333,3,1672319027),(87237,4,15334,3,1672319027),(87238,4,15335,3,1672319027),(87239,4,15336,3,1672319027),(87240,4,15337,3,1672319027),(87241,4,15338,3,1672319027),(87242,4,15339,3,1672319027),(87243,4,15340,3,1672319027),(87244,4,15341,3,1672319027),(87245,4,15342,3,1672319027),(87246,4,15343,3,1672319027),(87247,4,15344,3,1672319027),(87248,4,15345,3,1672319027),(87249,4,15346,3,1672319027),(87250,4,15347,3,1672319027),(87251,4,15348,3,1672319027),(87252,4,15349,3,1672319027),(87253,4,15350,3,1672319027),(87254,4,15351,3,1672319027),(87255,4,15352,3,1672319027),(87256,4,15353,3,1672319027),(87257,4,15354,3,1672319027),(87258,4,15355,3,1672319027),(87259,4,15356,3,1672319027),(87260,4,15357,3,1672319027),(87261,4,15358,3,1672319027),(87262,4,15359,3,1672319027),(87263,4,15360,3,1672319027),(87264,4,15361,3,1672319027),(87265,4,15362,3,1672319027),(87266,4,15363,3,1672319027),(87267,4,15364,3,1672319027),(87268,4,15365,3,1672319027),(87269,4,15366,3,1672319027),(87270,4,15367,3,1672319027),(87271,4,15368,3,1672319027),(87272,4,15369,3,1672319027),(87273,4,15370,3,1672319027),(87274,4,15371,3,1672319027),(87275,4,15372,3,1672319027),(87276,4,15373,3,1672319027),(87277,4,15374,3,1672319027),(87278,4,15375,3,1672319027),(87279,4,15376,3,1672319027),(87280,4,15377,3,1672319027),(87281,4,15378,3,1672319027),(87282,4,15379,3,1672319027),(87283,4,15380,3,1672319027),(87284,4,15381,3,1672319027),(87285,4,15382,3,1672319027),(87286,4,15383,3,1672319027),(87287,4,15384,3,1672319027),(87288,4,15385,3,1672319027),(87289,4,15386,3,1672319027),(87290,4,15387,3,1672319027),(87291,4,15388,3,1672319027),(87292,4,15389,3,1672319027),(87293,4,15390,3,1672319027),(87294,4,15391,3,1672319027),(87295,4,15392,3,1672319027),(87296,4,15393,3,1672319027),(87297,4,15394,3,1672319027),(87298,4,15395,3,1672319027),(87299,4,15396,3,1672319027),(87300,4,15397,3,1672319027),(87301,4,15398,3,1672319027),(87302,4,15399,3,1672319027),(87303,4,15400,3,1672319027),(87304,4,15401,3,1672319027),(87305,4,15402,3,1672319027),(87306,4,15403,3,1672319027),(87307,4,15404,3,1672319027),(87308,4,15405,3,1672319027),(87309,4,15406,3,1672319027),(87310,4,15407,3,1672319027),(87311,4,15408,3,1672319027),(87312,4,15409,3,1672319027),(87313,4,15410,3,1672319027),(87314,4,15411,3,1672319027),(87315,4,15412,3,1672319027),(87316,4,15413,3,1672319027),(87317,4,15414,3,1672319027),(87318,4,15415,3,1672319027),(87319,4,15416,3,1672319027),(87320,4,15417,3,1672319027),(87321,4,15418,3,1672319027),(87322,4,15419,3,1672319027),(87323,4,15420,3,1672319027),(87324,4,15421,3,1672319027),(87325,4,15422,3,1672319027),(87326,4,15423,3,1672319027),(87327,4,15424,3,1672319027),(87328,4,15425,3,1672319027),(87329,4,15426,3,1672319027),(87330,4,15427,3,1672319027),(87331,4,15428,3,1672319027),(87332,4,15429,3,1672319027),(87333,4,15430,3,1672319027),(87334,4,15431,3,1672319027),(87335,4,15432,3,1672319027),(87336,4,15433,3,1672319027),(87337,4,15434,3,1672319027),(87338,4,15435,3,1672319027),(87339,4,15436,3,1672319027),(87340,4,15437,3,1672319027),(87341,4,15438,3,1672319027),(87342,4,15439,3,1672319027),(87343,4,15440,3,1672319027),(87344,4,15441,3,1672319027),(87345,4,15442,3,1672319027),(87346,4,15443,3,1672319027),(87347,4,15444,3,1672319027),(87348,4,15445,3,1672319027),(87349,4,15446,3,1672319027),(87350,4,15447,3,1672319027),(87351,4,15448,3,1672319027),(87352,4,15449,3,1672319027),(87353,4,15450,3,1672319027),(87354,4,15451,3,1672319027),(87355,4,15452,3,1672319027),(87356,4,15453,3,1672319027),(87357,4,15454,3,1672319027),(87358,4,15455,3,1672319027),(87359,4,15456,3,1672319027),(87360,4,15457,3,1672319027),(87361,4,15458,3,1672319027),(87362,4,15459,3,1672319027),(87363,4,15460,3,1672319027),(87364,4,15461,3,1672319027),(87365,4,15462,3,1672319027),(87366,4,15463,3,1672319027),(87367,4,15464,3,1672319027),(87368,4,15465,3,1672319027),(87369,4,15466,3,1672319027),(87370,4,15467,3,1672319027),(87371,4,15468,3,1672319027),(87372,4,15469,3,1672319027),(87373,4,15470,3,1672319027),(87374,4,15471,3,1672319027),(87375,4,15472,3,1672319027),(87376,4,15473,3,1672319027),(87377,4,15474,3,1672319027),(87378,4,15475,3,1672319027),(87379,4,15476,3,1672319027),(87380,4,15477,3,1672319027),(87381,4,15478,3,1672319027),(87382,4,15479,3,1672319027),(87383,4,15480,3,1672319027),(87384,4,15481,3,1672319027),(87385,4,15482,3,1672319027),(87386,4,15483,3,1672319027),(87387,4,15484,3,1672319027),(87388,4,15485,3,1672319027),(87389,4,15486,3,1672319027),(87390,4,15487,3,1672319027),(87391,4,15488,3,1672319027),(87392,4,15489,3,1672319027),(87393,4,15490,3,1672319027),(87394,4,15491,3,1672319027),(87395,4,15492,3,1672319027),(87396,4,15493,3,1672319027),(87397,4,15494,3,1672319027),(87398,4,15495,3,1672319027),(87399,4,15496,3,1672319027),(87400,4,15497,3,1672319027),(87401,4,15498,3,1672319027),(87402,4,15499,3,1672319027),(87403,4,15500,3,1672319027),(87404,4,15501,3,1672319027),(87405,4,15502,3,1672319027),(87406,4,15503,3,1672319027),(87407,4,15504,3,1672319027),(87408,4,15505,3,1672319027),(87409,4,15506,3,1672319027),(87410,4,15507,3,1672319027),(87411,4,15508,3,1672319027),(87412,4,15509,3,1672319027),(87413,4,15510,3,1672319027),(87414,4,15511,3,1672319027),(87415,4,15512,3,1672319027),(87416,4,15513,3,1672319027),(87417,4,15514,3,1672319027),(87418,4,15515,3,1672319027),(87419,4,15516,3,1672319027),(87420,4,15517,3,1672319027),(87421,4,15518,3,1672319027),(87422,4,15519,3,1672319027),(87423,4,15520,3,1672319027),(87424,4,15521,3,1672319027),(87425,4,15522,3,1672319027),(87426,4,15523,3,1672319027),(87427,4,15524,3,1672319027),(87428,4,15525,3,1672319027),(87429,4,15526,3,1672319027),(87430,4,15527,3,1672319027),(87431,4,15528,3,1672319027),(87432,4,15529,3,1672319027),(87433,4,15530,3,1672319027),(87434,4,15531,3,1672319027),(87435,4,15532,3,1672319027),(87436,4,15533,3,1672319027),(87437,4,15534,3,1672319027),(87438,4,15535,3,1672319027),(87439,4,15536,3,1672319027),(87440,4,15537,3,1672319027),(87441,4,15538,3,1672319027),(87442,4,15539,3,1672319027),(87443,4,15540,3,1672319027),(87444,4,15541,3,1672319027),(87445,4,15542,3,1672319027),(87446,4,15543,3,1672319027),(87447,4,15544,3,1672319027),(87448,4,15545,3,1672319027),(87449,4,15546,3,1672319027),(87450,4,15547,3,1672319027),(87451,4,15548,3,1672319027),(87452,4,15549,3,1672319027),(87453,4,15550,3,1672319027),(87454,4,15551,3,1672319027),(87455,4,15552,3,1672319027),(87456,4,15553,3,1672319027),(87457,4,15554,3,1672319027),(87458,4,15555,3,1672319027),(87459,4,15556,3,1672319027),(87460,4,15557,3,1672319027),(87461,4,15558,3,1672319027),(87462,4,15559,3,1672319027),(87463,4,15560,3,1672319027),(87464,4,15561,3,1672319027),(87465,4,15562,3,1672319027),(87466,4,15563,3,1672319027),(87467,4,15564,3,1672319027),(87468,4,15565,3,1672319027),(87469,4,15566,3,1672319027),(87470,4,15567,3,1672319027),(87471,4,15568,3,1672319027),(87472,4,15569,3,1672319027),(87473,4,15570,3,1672319027),(87474,4,15571,3,1672319027),(87475,4,15572,3,1672319027),(87476,4,15573,3,1672319027),(87477,4,15574,3,1672319027),(87478,4,15575,3,1672319027),(87479,4,15576,3,1672319027),(87480,4,15577,3,1672319027),(87481,4,15578,3,1672319027),(87482,4,15579,3,1672319027),(87483,4,15580,3,1672319027),(87484,4,15581,3,1672319027),(87485,4,15582,3,1672319027),(87486,4,15583,3,1672319027),(87487,4,15584,3,1672319027),(87488,4,15585,3,1672319027),(87489,4,15586,3,1672319027),(87490,4,15587,3,1672319027),(87491,4,15588,3,1672319027),(87492,4,15589,3,1672319027),(87493,4,15590,3,1672319027),(87494,4,15591,3,1672319027),(87495,4,15592,3,1672319027),(87496,4,15593,3,1672319027),(87497,4,15594,3,1672319027),(87498,4,15595,3,1672319027),(87499,4,15596,3,1672319027),(87500,4,15597,3,1672319027),(87501,4,15598,3,1672319027),(87502,4,15599,3,1672319027),(87503,4,15600,3,1672319027),(87504,4,15601,3,1672319027),(87505,4,15602,3,1672319027),(87506,4,15603,3,1672319027),(87507,4,15604,3,1672319027),(87508,4,15605,3,1672319027),(87509,4,15606,3,1672319027),(87510,4,15607,3,1672319027),(87511,4,15608,3,1672319027),(87512,4,15609,3,1672319027),(87513,4,15610,3,1672319027),(87514,4,15611,3,1672319027),(87515,4,15628,3,1672319027),(87516,4,15629,3,1672319027),(87517,4,15630,3,1672319027),(87518,4,15631,3,1672319027),(87519,4,15632,3,1672319027),(87520,4,15633,3,1672319027),(87521,4,15634,3,1672319027),(87522,4,15635,3,1672319027),(87523,4,15636,3,1672319027),(87524,4,15639,3,1672319027),(87525,4,15641,3,1672319027),(87526,4,15642,3,1672319027),(87527,4,15643,3,1672319027),(87528,4,15656,3,1672319027),(87529,4,15657,3,1672319027),(87530,4,15658,3,1672319027),(87531,4,15659,3,1672319027),(87532,4,15660,3,1672319027),(87533,4,15661,3,1672319027),(87534,4,15662,3,1672319027),(87535,4,15665,3,1672319027),(87536,4,15666,3,1672319027),(87537,4,15667,3,1672319027),(87538,4,15668,3,1672319027),(87539,4,15669,3,1672319027),(87540,4,15670,3,1672319027),(87541,4,15671,3,1672319027),(87542,4,15672,3,1672319027),(87543,4,15673,3,1672319027),(87544,4,15674,3,1672319027),(87545,4,15675,3,1672319027),(87546,4,15676,3,1672319027),(87547,4,15677,3,1672319027),(87548,4,15678,3,1672319027),(87549,4,15679,3,1672319027),(87550,4,15680,3,1672319027),(87551,4,15681,3,1672319027),(87552,4,15682,3,1672319027),(87553,4,15683,3,1672319027),(87554,4,15684,3,1672319027),(87555,4,15685,3,1672319027),(87556,4,15686,3,1672319027),(87557,4,15687,3,1672319027),(87558,4,15688,3,1672319027),(87559,4,15689,3,1672319027),(87560,4,15690,3,1672319027),(87561,4,15691,3,1672319027),(87562,4,15692,3,1672319027),(87563,4,15693,3,1672319027),(87564,4,15694,3,1672319027),(87565,4,15695,3,1672319027),(87566,4,15696,3,1672319027),(87567,4,15697,3,1672319027),(87568,4,15698,3,1672319027),(87569,4,15699,3,1672319027),(87570,4,15700,3,1672319027),(87571,4,15701,3,1672319027),(87572,4,15702,3,1672319027),(87573,4,15703,3,1672319027),(87574,4,15704,3,1672319027),(87575,4,15705,3,1672319027),(87576,4,15706,3,1672319027),(87577,4,15707,3,1672319027),(87578,4,15708,3,1672319027),(87579,4,15709,3,1672319027),(87580,4,15710,3,1672319027),(87581,4,15711,3,1672319027),(87582,4,15712,3,1672319027),(87583,4,15713,3,1672319027),(87584,4,15714,3,1672319027),(87585,4,15715,3,1672319027),(87586,4,15716,3,1672319027),(87587,4,15717,3,1672319027),(87588,4,15718,3,1672319027),(87589,4,15719,3,1672319027),(87590,4,15720,3,1672319027),(87591,4,15721,3,1672319027),(87592,4,15722,3,1672319027),(87593,4,15723,3,1672319027),(87594,4,15724,3,1672319027),(87595,4,15725,3,1672319027),(87596,4,15726,3,1672319027),(87597,4,15727,3,1672319027),(87598,4,15728,3,1672319027),(87599,4,15729,3,1672319027),(87600,4,15730,3,1672319027),(87601,4,15731,3,1672319027),(87602,4,15732,3,1672319027),(87603,4,15733,3,1672319027),(87604,4,15734,3,1672319027),(87605,4,15735,3,1672319027),(87606,4,15736,3,1672319027),(87607,4,15737,3,1672319027),(87608,4,15738,3,1672319027),(87609,4,15739,3,1672319027),(87610,4,15740,3,1672319027),(87611,4,15741,3,1672319027),(87612,4,15742,3,1672319027),(87613,4,15743,3,1672319027),(87614,4,15744,3,1672319027),(87615,4,15745,3,1672319027),(87616,4,15746,3,1672319027),(87617,4,15747,3,1672319027),(87618,4,15748,3,1672319027),(87619,4,15749,3,1672319027),(87620,4,15750,3,1672319027),(87621,4,15751,3,1672319027),(87622,4,15752,3,1672319027),(87623,4,15753,3,1672319027),(87624,4,15754,3,1672319027),(87625,4,15755,3,1672319027),(87626,4,15756,3,1672319027),(87627,4,15757,3,1672319027),(87628,4,15758,3,1672319027),(87629,4,15759,3,1672319027),(87630,4,15760,3,1672319027),(87631,4,15761,3,1672319027),(87632,4,15762,3,1672319027),(87633,4,15763,3,1672319027),(87634,4,15764,3,1672319027),(87635,4,15765,3,1672319027),(87636,4,15766,3,1672319027),(87637,4,15767,3,1672319027),(87638,4,15768,3,1672319027),(87639,4,15769,3,1672319027),(87640,4,15770,3,1672319027),(87641,4,15771,3,1672319027),(87642,4,15772,3,1672319027),(87643,4,15773,3,1672319027),(87644,4,15774,3,1672319027),(87645,4,15775,3,1672319027),(87646,4,15776,3,1672319027),(87647,4,15777,3,1672319027),(87648,4,15778,3,1672319027),(87649,4,15779,3,1672319027),(87650,4,15780,3,1672319027),(87651,4,15781,3,1672319027),(87652,4,15782,3,1672319027),(87653,4,15783,3,1672319027),(87654,4,15784,3,1672319027),(87655,4,15785,3,1672319027),(87656,4,15786,3,1672319027),(87657,4,15787,3,1672319027),(87658,4,15788,3,1672319027),(87659,4,15789,3,1672319027),(87660,4,15790,3,1672319027),(87661,4,15791,3,1672319027),(87662,4,15792,3,1672319027),(87663,4,15793,3,1672319027),(87664,4,15794,3,1672319027),(87665,4,15795,3,1672319027),(87666,4,15796,3,1672319027),(87667,4,15797,3,1672319027),(87668,4,15798,3,1672319027),(87669,4,15799,3,1672319027),(87670,4,15800,3,1672319027),(87671,4,15801,3,1672319027),(87672,4,15802,3,1672319027),(87673,4,15803,3,1672319027),(87674,4,15804,3,1672319027),(87675,4,15805,3,1672319027),(87676,4,15806,3,1672319027),(87677,4,15807,3,1672319027),(87678,4,15808,3,1672319027),(87679,4,15809,3,1672319027),(87680,4,15810,3,1672319027),(87681,4,15811,3,1672319027),(87682,4,15812,3,1672319027),(87683,4,15813,3,1672319027),(87684,4,15814,3,1672319027),(87685,4,15815,3,1672319027),(87686,4,15816,3,1672319027),(87687,4,15817,3,1672319027),(87688,4,15818,3,1672319027),(87689,4,15819,3,1672319027),(87690,4,15820,3,1672319027),(87691,4,15821,3,1672319027),(87692,4,15822,3,1672319027),(87693,4,15823,3,1672319027),(87694,4,15824,3,1672319027),(87695,4,15825,3,1672319027),(87696,4,15826,3,1672319027),(87697,4,15827,3,1672319027),(87698,4,15828,3,1672319027),(87699,4,15829,3,1672319027),(87700,4,15830,3,1672319027),(87701,4,15831,3,1672319027),(87702,4,15832,3,1672319027),(87703,4,15833,3,1672319027),(87704,4,15834,3,1672319027),(87705,4,15835,3,1672319027),(87706,4,15836,3,1672319027),(87707,4,15837,3,1672319027),(87708,4,15838,3,1672319027),(87709,4,15839,3,1672319027),(87710,4,15840,3,1672319027),(87711,4,15841,3,1672319027),(87712,4,15842,3,1672319027),(87713,4,15843,3,1672319027),(87714,4,15844,3,1672319027),(87715,4,15845,3,1672319027),(87716,4,15846,3,1672319027),(87717,4,15847,3,1672319027),(87718,4,15848,3,1672319027),(87719,4,15849,3,1672319027),(87720,4,15850,3,1672319027),(87721,4,15851,3,1672319027),(87722,4,15852,3,1672319027),(87723,4,15853,3,1672319027),(87724,4,15854,3,1672319027),(87725,4,15855,3,1672319027),(87726,4,15856,3,1672319027),(87727,4,15857,3,1672319027),(87728,4,15858,3,1672319027),(87729,4,15859,3,1672319027),(87730,4,15860,3,1672319027),(87731,4,15861,3,1672319027),(87732,4,15862,3,1672319027),(87733,4,15863,3,1672319027),(87734,4,15864,3,1672319027),(87735,4,15865,3,1672319027),(87736,4,15866,3,1672319027),(87737,4,15867,3,1672319027),(87738,4,15868,3,1672319027),(87739,4,15869,3,1672319027),(87740,4,15870,3,1672319027),(87741,4,15871,3,1672319027),(87742,4,15872,3,1672319027),(87743,4,15873,3,1672319027),(87744,4,15874,3,1672319027),(87745,4,15875,3,1672319027),(87746,4,15876,3,1672319027),(87747,4,15877,3,1672319027),(87748,4,15878,3,1672319027),(87749,4,15879,3,1672319027),(87750,4,15880,3,1672319027),(87751,4,15881,3,1672319027),(87752,4,15882,3,1672319027),(87753,4,15883,3,1672319027),(87754,4,15884,3,1672319027),(87755,4,15885,3,1672319027),(87756,4,15886,3,1672319027),(87757,4,15887,3,1672319027),(87758,4,15888,3,1672319027),(87759,4,15889,3,1672319027),(87760,4,15890,3,1672319027),(87761,4,15891,3,1672319027),(87762,4,15892,3,1672319027),(87763,4,15893,3,1672319027),(87764,4,15894,3,1672319027),(87765,4,15895,3,1672319027),(87766,4,15896,3,1672319027),(87767,4,15897,3,1672319027),(87768,4,15898,3,1672319027),(87769,4,15899,3,1672319027),(87770,4,15900,3,1672319027),(87771,4,15901,3,1672319027),(87772,4,15902,3,1672319027),(87773,4,15903,3,1672319027),(87774,4,15904,3,1672319027),(87775,4,15905,3,1672319027),(87776,4,15906,3,1672319027),(87777,4,15907,3,1672319027),(87778,4,15908,3,1672319027),(87779,4,15909,3,1672319027),(87780,4,15910,3,1672319027),(87781,4,15911,3,1672319027),(87782,4,15912,3,1672319027),(87783,4,15913,3,1672319027),(87784,4,15914,3,1672319027),(87785,4,15915,3,1672319027),(87786,4,15916,3,1672319027),(87787,4,15917,3,1672319027),(87788,4,15918,3,1672319027),(87789,4,15919,3,1672319027),(87790,4,15920,3,1672319027),(87791,4,15921,3,1672319027),(87792,4,15922,3,1672319027),(87793,4,15923,3,1672319027),(87794,4,15924,3,1672319027),(87795,4,15925,3,1672319027),(87796,4,15926,3,1672319027),(87797,4,15927,3,1672319027),(87798,4,15928,3,1672319027),(87799,4,15929,3,1672319027),(87800,4,15930,3,1672319027),(87801,4,15931,3,1672319027),(87802,4,15932,3,1672319027),(87803,4,15933,3,1672319027),(87804,4,15934,3,1672319027),(87805,4,15935,3,1672319027),(87806,4,15936,3,1672319027),(87807,4,15937,3,1672319027),(87808,4,15938,3,1672319027),(87809,4,15939,3,1672319027),(87810,4,15940,3,1672319027),(87811,4,15941,3,1672319027),(87812,4,15942,3,1672319027),(87813,4,15943,3,1672319027),(87814,4,15944,3,1672319027),(87815,4,15945,3,1672319027),(87816,4,15946,3,1672319027),(87817,4,15947,3,1672319027),(87818,4,15948,3,1672319027),(87819,4,15949,3,1672319027),(87820,4,15950,3,1672319027),(87821,4,15951,3,1672319027),(87822,4,15952,3,1672319027),(87823,4,15953,3,1672319027),(87824,4,15954,3,1672319027),(87825,4,15955,3,1672319027),(87826,4,15956,3,1672319027),(87827,4,15957,3,1672319027),(87828,4,15958,3,1672319027),(87829,4,15959,3,1672319027),(87830,4,15960,3,1672319027),(87831,4,15961,3,1672319027),(87832,4,15962,3,1672319027),(87833,4,15963,3,1672319027),(87834,4,15964,3,1672319027),(87835,4,15965,3,1672319027),(87836,4,15966,3,1672319027),(87837,4,15967,3,1672319027),(87838,4,15968,3,1672319027),(87839,4,15969,3,1672319027),(87840,4,15970,3,1672319027),(87841,4,15971,3,1672319027),(87842,4,15972,3,1672319027),(87843,4,15973,3,1672319027),(87844,4,15974,3,1672319027),(87845,4,15975,3,1672319027),(87846,4,15976,3,1672319027),(87847,4,15977,3,1672319027),(87848,4,15978,3,1672319027),(87849,4,15979,3,1672319027),(87850,4,15980,3,1672319027),(87851,4,15981,3,1672319027),(87852,4,15982,3,1672319027),(87853,4,15983,3,1672319027),(87854,4,15984,3,1672319027),(87855,4,15985,3,1672319027),(87856,4,15986,3,1672319027),(87857,4,15987,3,1672319027),(87858,4,15988,3,1672319027),(87859,4,15989,3,1672319027),(87860,4,15990,3,1672319027),(87861,4,15991,3,1672319027),(87862,4,15992,3,1672319027),(87863,4,15993,3,1672319027),(87864,4,15994,3,1672319027),(87865,4,15995,3,1672319027),(87866,4,15996,3,1672319027),(87867,4,15997,3,1672319027),(87868,4,15998,3,1672319027),(87869,4,15999,3,1672319027),(87870,4,16000,3,1672319027),(87871,4,16001,3,1672319027),(87872,4,16002,3,1672319027),(87873,4,16003,3,1672319027),(87874,4,16004,3,1672319027),(87875,4,16005,3,1672319027),(87876,4,16006,3,1672319027),(87877,4,16007,3,1672319027),(87878,4,16008,3,1672319027),(87879,4,16009,3,1672319027),(87880,4,16010,3,1672319027),(87881,4,16011,3,1672319027),(87882,4,16012,3,1672319027),(87883,4,16013,3,1672319027),(87884,4,16014,3,1672319027),(87885,4,16015,3,1672319027),(87886,4,16016,3,1672319027),(87887,4,16017,3,1672319027),(87888,4,16018,3,1672319027),(87889,4,16019,3,1672319027),(87890,4,16020,3,1672319027),(87891,4,16021,3,1672319027),(87892,4,16022,3,1672319027),(87893,4,16023,3,1672319027),(87894,4,16024,3,1672319027),(87895,4,16025,3,1672319027),(87896,4,16026,3,1672319027),(87897,4,16027,3,1672319027),(87898,4,16028,3,1672319027),(87899,4,16029,3,1672319027),(87900,4,16030,3,1672319027),(87901,4,16031,3,1672319027),(87902,4,16032,3,1672319027),(87903,4,16033,3,1672319027),(87904,4,16034,3,1672319027),(87905,4,16035,3,1672319027),(87906,4,16036,3,1672319027),(87907,4,16037,3,1672319027),(87908,4,16038,3,1672319027),(87909,4,16039,3,1672319027),(87910,4,16040,3,1672319027),(87911,4,16041,3,1672319027),(87912,4,16042,3,1672319027),(87913,4,16043,3,1672319027),(87914,4,16044,3,1672319027),(87915,4,16045,3,1672319027),(87916,4,16046,3,1672319027),(87917,4,16047,3,1672319027),(87918,4,16048,3,1672319027),(87919,4,16049,3,1672319027),(87920,4,16050,3,1672319027),(87921,4,16051,3,1672319027),(87922,4,16052,3,1672319027),(87923,4,16053,3,1672319027),(87924,4,16054,3,1672319027),(87925,4,16055,3,1672319027),(87926,4,16056,3,1672319027),(87927,4,16057,3,1672319027),(87928,4,16058,3,1672319027),(87929,4,16059,3,1672319027),(87930,4,16060,3,1672319027),(87931,4,16061,3,1672319027),(87932,4,16062,3,1672319027),(87933,4,16063,3,1672319027),(87934,4,16064,3,1672319027),(87935,4,16065,3,1672319027),(87936,4,16066,3,1672319027),(87937,4,16067,3,1672319027),(87938,4,16068,3,1672319027),(87939,4,16069,3,1672319027),(87940,4,16070,3,1672319027),(87941,4,16071,3,1672319027),(87942,4,16072,3,1672319027),(87943,4,16073,3,1672319027),(87944,4,16074,3,1672319027),(87945,4,16075,3,1672319027),(87946,4,16076,3,1672319027),(87947,4,16077,3,1672319027),(87948,4,16078,3,1672319027),(87949,4,16079,3,1672319027),(87950,4,16080,3,1672319027),(87951,4,16081,3,1672319027),(87952,4,16082,3,1672319027),(87953,4,16083,3,1672319027),(87954,4,16084,3,1672319027),(87955,4,16085,3,1672319027),(87956,4,16086,3,1672319027),(87957,4,16087,3,1672319027),(87958,4,16088,3,1672319027),(87959,4,16089,3,1672319027),(87960,4,16090,3,1672319027),(87961,4,16091,3,1672319027),(87962,4,16092,3,1672319027),(87963,4,16093,3,1672319027),(87964,4,16094,3,1672319027),(87965,4,16095,3,1672319027),(87966,4,16096,3,1672319027),(87967,4,16097,3,1672319027),(87968,4,16098,3,1672319027),(87969,4,16099,3,1672319027),(87970,4,16100,3,1672319027),(87971,4,16101,3,1672319027),(87972,4,16102,3,1672319027),(87973,4,16103,3,1672319027),(87974,4,16104,3,1672319027),(87975,4,16105,3,1672319027),(87976,4,16106,3,1672319027),(87977,4,16107,3,1672319027),(87978,4,16108,3,1672319027),(87979,4,16109,3,1672319027),(87980,4,16110,3,1672319027),(87981,4,16111,3,1672319027),(87982,4,16112,3,1672319027),(87983,4,16113,3,1672319027),(87984,4,16114,3,1672319027),(87985,4,16115,3,1672319027),(87986,4,16116,3,1672319027),(87987,4,16117,3,1672319027),(87988,4,16118,3,1672319027),(87989,4,16119,3,1672319027),(87990,4,16120,3,1672319027),(87991,4,16121,3,1672319027),(87992,4,16122,3,1672319027),(87993,4,16123,3,1672319027),(87994,4,16124,3,1672319027),(87995,4,16125,3,1672319027),(87996,4,16126,3,1672319027),(87997,4,16127,3,1672319027),(87998,4,16128,3,1672319027),(87999,4,16129,3,1672319027),(88000,4,16130,3,1672319027),(88001,4,16131,3,1672319027),(88002,4,16132,3,1672319027),(88003,4,16133,3,1672319027),(88004,4,16134,3,1672319027),(88005,4,16135,3,1672319027),(88006,4,16136,3,1672319027),(88007,4,16137,3,1672319027),(88008,4,16138,3,1672319027),(88009,4,16139,3,1672319027),(88010,4,16140,3,1672319027),(88011,4,16141,3,1672319027),(88012,4,16142,3,1672319027),(88013,4,16143,3,1672319027),(88014,4,16144,3,1672319027),(88015,4,16145,3,1672319027),(88016,4,16146,3,1672319027),(88017,4,16147,3,1672319027),(88018,4,16148,3,1672319027),(88019,4,16149,3,1672319027),(88020,4,16150,3,1672319027),(88021,4,16151,3,1672319027),(88022,4,16152,3,1672319027),(88023,4,16153,3,1672319027),(88024,4,16154,3,1672319027),(88025,4,16155,3,1672319027),(88026,4,16156,3,1672319027),(88027,4,16157,3,1672319027),(88028,4,16158,3,1672319027),(88029,4,16159,3,1672319027),(88030,4,16160,3,1672319027),(88031,4,16161,3,1672319027),(88032,4,16162,3,1672319027),(88033,4,16163,3,1672319027),(88034,4,16164,3,1672319027),(88035,4,16165,3,1672319027),(88036,4,16166,3,1672319027),(88037,4,16167,3,1672319027),(88038,4,16168,3,1672319027),(88039,4,16169,3,1672319027),(88040,4,16170,3,1672319027),(88041,4,16171,3,1672319027),(88042,4,16172,3,1672319027),(88043,4,16173,3,1672319027),(88044,4,16174,3,1672319027),(88045,4,16175,3,1672319027),(88046,4,16176,3,1672319027),(88047,4,16177,3,1672319027),(88048,4,16178,3,1672319027),(88049,4,16179,3,1672319027),(88050,4,16180,3,1672319027),(88051,4,16181,3,1672319027),(88052,4,16182,3,1672319027),(88053,4,16183,3,1672319027),(88054,4,16184,3,1672319027),(88055,4,16185,3,1672319027),(88056,4,16186,3,1672319027),(88057,4,16187,3,1672319027),(88058,4,16188,3,1672319027),(88059,4,16189,3,1672319027),(88060,4,16190,3,1672319027),(88061,4,16191,3,1672319027),(88062,4,16192,3,1672319027),(88063,4,16193,3,1672319027),(88064,4,16194,3,1672319027),(88065,4,16195,3,1672319027),(88066,4,16196,3,1672319027),(88067,4,16197,3,1672319027),(88068,4,16198,3,1672319027),(88069,4,16199,3,1672319027),(88070,4,16200,3,1672319027),(88071,4,16201,3,1672319027),(88072,4,16202,3,1672319027),(88073,4,16203,3,1672319027),(88074,4,16204,3,1672319027),(88075,4,16205,3,1672319027),(88076,4,16206,3,1672319027),(88077,4,16207,3,1672319027),(88078,4,16208,3,1672319027),(88079,4,16209,3,1672319027),(88080,4,16210,3,1672319027),(88081,4,16211,3,1672319027),(88082,4,16212,3,1672319027),(88083,4,16213,3,1672319027),(88084,4,16214,3,1672319027),(88085,4,16215,3,1672319027),(88086,4,16216,3,1672319027),(88087,4,16217,3,1672319027),(88088,4,16218,3,1672319027),(88089,4,16219,3,1672319027),(88090,4,16220,3,1672319027),(88091,4,16221,3,1672319027),(88092,4,16222,3,1672319027),(88093,4,16223,3,1672319027),(88094,4,16224,3,1672319027),(88095,4,16225,3,1672319027),(88096,4,16226,3,1672319027),(88097,4,16227,3,1672319027),(88098,4,16228,3,1672319027),(88099,4,16229,3,1672319027),(88100,4,16230,3,1672319027),(88101,4,16231,3,1672319027),(88102,4,16232,3,1672319027),(88103,4,16233,3,1672319027),(88104,4,16234,3,1672319027),(88105,4,16235,3,1672319027),(88106,4,16236,3,1672319027),(88107,4,16237,3,1672319027),(88108,4,16238,3,1672319027),(88109,4,16239,3,1672319027),(88110,4,16240,3,1672319027),(88111,4,16241,3,1672319027),(88112,4,16242,3,1672319027),(88113,4,16243,3,1672319027),(88114,4,16244,3,1672319027),(88115,4,16245,3,1672319027),(88116,4,16246,3,1672319027),(88117,4,16247,3,1672319027),(88118,4,16248,3,1672319027),(88119,4,16249,3,1672319027),(88120,4,16250,3,1672319027),(88121,4,16251,3,1672319027),(88122,4,16252,3,1672319027),(88123,4,16253,3,1672319027),(88124,4,16254,3,1672319027),(88125,4,16255,3,1672319027),(88126,4,16256,3,1672319027),(88127,4,16257,3,1672319027),(88128,4,16258,3,1672319027),(88129,4,16259,3,1672319027),(88130,4,16260,3,1672319027),(88131,4,16261,3,1672319027),(88132,4,16262,3,1672319027),(88133,4,16263,3,1672319027),(88134,4,16264,3,1672319027),(88135,4,16265,3,1672319027),(88136,4,16266,3,1672319027),(88137,4,16267,3,1672319027),(88138,4,16268,3,1672319027),(88139,4,16269,3,1672319027),(88140,4,16270,3,1672319027),(88141,4,16271,3,1672319027),(88142,4,16272,3,1672319027),(88143,4,16273,3,1672319027),(88144,4,16274,3,1672319027),(88145,4,16275,3,1672319027),(88146,4,16276,3,1672319027),(88147,4,16277,3,1672319027),(88148,4,16278,3,1672319027),(88149,4,16279,3,1672319027),(88150,4,16280,3,1672319027),(88151,4,16281,3,1672319027),(88152,4,16282,3,1672319027),(88153,4,16283,3,1672319027),(88154,4,16284,3,1672319027),(88155,4,16285,3,1672319027),(88156,4,16286,3,1672319027),(88157,4,16287,3,1672319027),(88158,4,16288,3,1672319027),(88159,4,16289,3,1672319027),(88160,4,16290,3,1672319027),(88161,4,16291,3,1672319027),(88162,4,16292,3,1672319027),(88163,4,16293,3,1672319027),(88164,4,16294,3,1672319027),(88165,4,16295,3,1672319027),(88166,4,16296,3,1672319027),(88167,4,16297,3,1672319027),(88168,4,16298,3,1672319027),(88169,4,16299,3,1672319027),(88170,4,16300,3,1672319027),(88171,4,16301,3,1672319027),(88172,4,16302,3,1672319027),(88173,4,16303,3,1672319027),(88174,4,16304,3,1672319027),(88175,4,16305,3,1672319027),(88176,4,16306,3,1672319027),(88177,4,16307,3,1672319027),(88178,4,16308,3,1672319027),(88179,4,16309,3,1672319027),(88180,4,16310,3,1672319027),(88181,4,16311,3,1672319027),(88182,4,16312,3,1672319027),(88183,4,16313,3,1672319027),(88184,4,16314,3,1672319027),(88185,4,16315,3,1672319027),(88186,4,16316,3,1672319027),(88187,4,16317,3,1672319027),(88188,4,16318,3,1672319027),(88189,4,16319,3,1672319027),(88190,4,16320,3,1672319027),(88191,4,16321,3,1672319027),(88192,4,16322,3,1672319027),(88193,4,16323,3,1672319027),(88194,4,16324,3,1672319027),(88195,4,16325,3,1672319027),(88196,4,16326,3,1672319027),(88197,4,16327,3,1672319027),(88198,4,16328,3,1672319027),(88199,4,16329,3,1672319027),(88200,4,16330,3,1672319027),(88201,4,16331,3,1672319027),(88202,4,16332,3,1672319027),(88203,4,16333,3,1672319027),(88204,4,16334,3,1672319027),(88205,4,16335,3,1672319027),(88206,4,16336,3,1672319027),(88207,4,16337,3,1672319027),(88208,4,16338,3,1672319027),(88209,4,16339,3,1672319027),(88210,4,16340,3,1672319027),(88211,4,16341,3,1672319027),(88212,4,16342,3,1672319027),(88213,4,16343,3,1672319027),(88214,4,16344,3,1672319027),(88215,4,16345,3,1672319027),(88216,4,16346,3,1672319027),(88217,4,16347,3,1672319027),(88218,4,16348,3,1672319027),(88219,4,16349,3,1672319027),(88220,4,16350,3,1672319027),(88221,4,16351,3,1672319027),(88222,4,16352,3,1672319027),(88223,4,16353,3,1672319027),(88224,4,16354,3,1672319027),(88225,4,16355,3,1672319027),(88226,4,16356,3,1672319027),(88227,4,16357,3,1672319027),(88228,4,16358,3,1672319027),(88229,4,16359,3,1672319027),(88230,4,16360,3,1672319027),(88231,4,16361,3,1672319027),(88232,4,16362,3,1672319027),(88233,4,16363,3,1672319027),(88234,4,16364,3,1672319027),(88235,4,16365,3,1672319027),(88236,4,16366,3,1672319027),(88237,4,16367,3,1672319027),(88238,4,16368,3,1672319027),(88239,4,16369,3,1672319027),(88240,4,16370,3,1672319027),(88241,4,16371,3,1672319027),(88242,4,16372,3,1672319027),(88243,4,16373,3,1672319027),(88244,4,16374,3,1672319027),(88245,4,16375,3,1672319027),(88246,4,16380,3,1672319027),(88247,4,16381,3,1672319027),(88248,4,16382,3,1672319027),(88249,4,16383,3,1672319027),(88250,4,16384,3,1672319027),(88251,4,16385,3,1672319027),(88252,4,16386,3,1672319027),(88253,4,16387,3,1672319027),(88254,4,16388,3,1672319027),(88255,4,16389,3,1672319027),(88256,4,16390,3,1672319027),(88257,4,16391,3,1672319027),(88258,4,16392,3,1672319027),(88259,4,16393,3,1672319027),(88260,4,16394,3,1672319027),(88261,4,16395,3,1672319027),(88262,4,16396,3,1672319027),(88263,4,16397,3,1672319027),(88264,4,16398,3,1672319027),(88265,4,16399,3,1672319027),(88266,4,16400,3,1672319027),(88267,4,16401,3,1672319027),(88268,4,16402,3,1672319027),(88269,4,16403,3,1672319027),(88270,4,16404,3,1672319027),(88271,4,16405,3,1672319027),(88272,4,16406,3,1672319027),(88273,4,16407,3,1672319027),(88274,4,16408,3,1672319027),(88275,4,16409,3,1672319027),(88276,4,16410,3,1672319027),(88277,4,16411,3,1672319027),(88278,4,16412,3,1672319027),(88279,4,16413,3,1672319027),(88280,4,16414,3,1672319027),(88281,4,16415,3,1672319027),(88282,4,16416,3,1672319027),(88283,4,16417,3,1672319027),(88284,4,16418,3,1672319027),(88285,4,16419,3,1672319027),(88286,4,16420,3,1672319027),(88287,4,16421,3,1672319027),(88288,4,16422,3,1672319027),(88289,4,16423,3,1672319027),(88290,4,16424,3,1672319027),(88291,4,16425,3,1672319027),(88292,4,16426,3,1672319027),(88293,4,16427,3,1672319027),(88294,4,16428,3,1672319027),(88295,4,16429,3,1672319027),(88296,4,16430,3,1672319027),(88297,4,16431,3,1672319027),(88298,4,16432,3,1672319027),(88299,4,16433,3,1672319027),(88300,4,16434,3,1672319027),(88301,4,16435,3,1672319027),(88302,4,16436,3,1672319027),(88303,4,16437,3,1672319027),(88304,4,16438,3,1672319027),(88305,4,16439,3,1672319027),(88306,4,16440,3,1672319027),(88307,4,16441,3,1672319027),(88308,4,16442,3,1672319027),(88309,4,16443,3,1672319027),(88310,4,16444,3,1672319027),(88311,4,16445,3,1672319027),(88312,4,16446,3,1672319027),(88313,4,16447,3,1672319027),(88314,4,16448,3,1672319027),(88315,4,16449,3,1672319027),(88316,4,16450,3,1672319027),(88317,4,16451,3,1672319027),(88318,4,16452,3,1672319027),(88319,4,16453,3,1672319027),(88320,4,16454,3,1672319027),(88321,4,16455,3,1672319027),(88322,4,16456,3,1672319027),(88323,4,16457,3,1672319027),(88324,4,16458,3,1672319027),(88325,4,16459,3,1672319027),(88326,4,16460,3,1672319027),(88327,4,16461,3,1672319027),(88328,4,16462,3,1672319027),(88329,4,16463,3,1672319027),(88330,4,16464,3,1672319027),(88331,4,16465,3,1672319027),(88332,4,16466,3,1672319027),(88333,4,16467,3,1672319027),(88334,4,16468,3,1672319027),(88335,4,16469,3,1672319027),(88336,4,16470,3,1672319027),(88337,4,16471,3,1672319027),(88338,4,16472,3,1672319027),(88339,4,16473,3,1672319027),(88340,4,16474,3,1672319027),(88341,4,16475,3,1672319027),(88342,4,16476,3,1672319027),(88343,4,16477,3,1672319027),(88344,4,16478,3,1672319027),(88345,4,16479,3,1672319027),(88346,4,16480,3,1672319027),(88347,4,16481,3,1672319027),(88348,4,16482,3,1672319027),(88349,4,16483,3,1672319027),(88350,4,16484,3,1672319027),(88351,4,16485,3,1672319027),(88352,4,16486,3,1672319027),(88353,4,16487,3,1672319027),(88354,4,16488,3,1672319027),(88355,4,16489,3,1672319027),(88356,4,16490,3,1672319027),(88357,4,16491,3,1672319027),(88358,4,16492,3,1672319027),(88359,4,16493,3,1672319027),(88360,4,16494,3,1672319027),(88361,4,16495,3,1672319027),(88362,4,16496,3,1672319027),(88363,4,16497,3,1672319027),(88364,4,16498,3,1672319027),(88365,4,16499,3,1672319027),(88366,4,16500,3,1672319027),(88367,4,16501,3,1672319027),(88368,4,16502,3,1672319027),(88369,4,16503,3,1672319027),(88370,4,16504,3,1672319027),(88371,4,16505,3,1672319027),(88372,4,16506,3,1672319027),(88373,4,16507,3,1672319027),(88374,4,16508,3,1672319027),(88375,4,16509,3,1672319027),(88376,4,16510,3,1672319027),(88377,4,16511,3,1672319027),(88378,4,16512,3,1672319027),(88379,4,16513,3,1672319027),(88380,4,16514,3,1672319027),(88381,4,16515,3,1672319027),(88382,4,16516,3,1672319027),(88383,4,16517,3,1672319027),(88384,4,16518,3,1672319027),(88385,4,16519,3,1672319027),(88386,4,16520,3,1672319027),(88387,4,16521,3,1672319027),(88388,4,16522,3,1672319027),(88389,4,16523,3,1672319027),(88390,4,16524,3,1672319027),(88391,4,16525,3,1672319027),(88392,4,16526,3,1672319027),(88393,4,16527,3,1672319027),(88394,4,16528,3,1672319027),(88395,4,16529,3,1672319027),(88396,4,16530,3,1672319027),(88397,4,16531,3,1672319027),(88398,4,16532,3,1672319027),(88399,4,16533,3,1672319027),(88400,4,16534,3,1672319027),(88401,4,16535,3,1672319027),(88402,4,16536,3,1672319027),(88403,4,16537,3,1672319027),(88404,4,16538,3,1672319027),(88405,4,16539,3,1672319027),(88406,4,16540,3,1672319027),(88407,4,16541,3,1672319027),(88408,4,16542,3,1672319027),(88409,4,16543,3,1672319027),(88410,4,16544,3,1672319027),(88411,4,16545,3,1672319027),(88412,4,16546,3,1672319027),(88413,4,16547,3,1672319027),(88414,4,16548,3,1672319027),(88415,4,16549,3,1672319027),(88416,4,16550,3,1672319027),(88417,4,16551,3,1672319027),(88418,4,16552,3,1672319027),(88419,4,16553,3,1672319027),(88420,4,16554,3,1672319027),(88421,4,16555,3,1672319027),(88422,4,16556,3,1672319027),(88423,4,16557,3,1672319027),(88424,4,16558,3,1672319027),(88425,4,16559,3,1672319027),(88426,4,16560,3,1672319027),(88427,4,16561,3,1672319027),(88428,4,16562,3,1672319027),(88429,4,16563,3,1672319027),(88430,4,16564,3,1672319027),(88431,4,16565,3,1672319027),(88432,4,16566,3,1672319027),(88433,4,16567,3,1672319027),(88434,4,16568,3,1672319027),(88435,4,16569,3,1672319027),(88436,4,16570,3,1672319027),(88437,4,16571,3,1672319027),(88438,4,16572,3,1672319027),(88439,4,16573,3,1672319027),(88440,4,16574,3,1672319027),(88441,4,16575,3,1672319027),(88442,4,16576,3,1672319027),(88443,4,16577,3,1672319027),(88444,4,16578,3,1672319027),(88445,4,16579,3,1672319027),(88446,4,16580,3,1672319027),(88447,4,16581,3,1672319027),(88448,4,16582,3,1672319027),(88449,4,16583,3,1672319027),(88450,4,16584,3,1672319027),(88451,4,16585,3,1672319027),(88452,4,16586,3,1672319027),(88453,4,16587,3,1672319027),(88454,4,16588,3,1672319027),(88455,4,16589,3,1672319027),(88456,4,16590,3,1672319027),(88457,4,16591,3,1672319027),(88458,4,16592,3,1672319027),(88459,4,16593,3,1672319027),(88460,4,16594,3,1672319027),(88461,4,16595,3,1672319027),(88462,4,16596,3,1672319027),(88463,4,16597,3,1672319027),(88464,4,16598,3,1672319027),(88465,4,16599,3,1672319027),(88466,4,16600,3,1672319027),(88467,4,16601,3,1672319027),(88468,4,16602,3,1672319027),(88469,4,16603,3,1672319027),(88470,4,16604,3,1672319027),(88471,4,16605,3,1672319027),(88472,4,16606,3,1672319027),(88473,4,16607,3,1672319027),(88474,4,16608,3,1672319027),(88475,4,16609,3,1672319027),(88476,4,16610,3,1672319027),(88477,4,16611,3,1672319027),(88478,4,16612,3,1672319027),(88479,4,16613,3,1672319027),(88480,4,16614,3,1672319027),(88481,4,16615,3,1672319027),(88482,4,16616,3,1672319027),(88483,4,16617,3,1672319027),(88484,4,16618,3,1672319027),(88485,4,16619,3,1672319027),(88486,4,16620,3,1672319027),(88487,4,16621,3,1672319027),(88488,4,16622,3,1672319027),(88489,4,16623,3,1672319027),(88490,4,16624,3,1672319027),(88491,4,16625,3,1672319027),(88492,4,16626,3,1672319027),(88493,4,16627,3,1672319027),(88494,4,16628,3,1672319027),(88495,4,16629,3,1672319027),(88496,4,16657,3,1672319027),(88497,4,16660,3,1672319027),(88498,4,16661,3,1672319027),(88499,4,16662,3,1672319027),(88500,4,16663,3,1672319027),(88501,4,16664,3,1672319027),(88502,4,16665,3,1672319027),(88503,4,16666,3,1672319027),(88504,4,16667,3,1672319027),(88505,4,16669,3,1672319027),(88506,4,16670,3,1672319027),(88507,4,16671,3,1672319027),(88508,4,16672,3,1672319027),(88509,4,16673,3,1672319027),(88510,4,16674,3,1672319027),(88511,4,16675,3,1672319027),(88512,4,16676,3,1672319027),(88513,4,16677,3,1672319027),(88514,4,16678,3,1672319027),(88515,4,16679,3,1672319027),(88516,4,16686,3,1672319027),(88517,4,16687,3,1672319027),(88518,4,16688,3,1672319027),(88519,4,16689,3,1672319027),(88520,4,16690,3,1672319027),(88521,4,16691,3,1672319027),(88522,4,16692,3,1672319027),(88523,4,16693,3,1672319027),(88524,4,16694,3,1672319027),(88525,4,16695,3,1672319027),(88526,4,16696,3,1672319027),(88527,4,16697,3,1672319027),(88528,4,16698,3,1672319027),(88529,4,16699,3,1672319027),(88530,4,16700,3,1672319027),(88531,4,16701,3,1672319027),(88532,4,16702,3,1672319027),(88533,4,16703,3,1672319027),(88534,4,16704,3,1672319027),(88535,4,16705,3,1672319027),(88536,4,16706,3,1672319027),(88537,4,16707,3,1672319027),(88538,4,16708,3,1672319027),(88539,4,16709,3,1672319027),(88540,4,16710,3,1672319027),(88541,4,16711,3,1672319027),(88542,4,16712,3,1672319027),(88543,4,16713,3,1672319027),(88544,4,16714,3,1672319027),(88545,4,16715,3,1672319027),(88546,4,16716,3,1672319027),(88547,4,16717,3,1672319027),(88548,4,16718,3,1672319027),(88549,4,16719,3,1672319027),(88550,4,16720,3,1672319027),(88551,4,16721,3,1672319027),(88552,4,16722,3,1672319027),(88553,4,16723,3,1672319027),(88554,4,16724,3,1672319027),(88555,4,16725,3,1672319027),(88556,4,16726,3,1672319027),(88557,4,16727,3,1672319027),(88558,4,16728,3,1672319027),(88559,4,16729,3,1672319027),(88560,4,16730,3,1672319027),(88561,4,16731,3,1672319027),(88562,4,16732,3,1672319027),(88563,4,16733,3,1672319027),(88564,4,16734,3,1672319027),(88565,4,16735,3,1672319027),(88566,4,16736,3,1672319027),(88567,4,16737,3,1672319027),(88568,4,16738,3,1672319027),(88569,4,16739,3,1672319027),(88570,4,16740,3,1672319027),(88571,4,16741,3,1672319027),(88572,4,16742,3,1672319027),(88573,4,16743,3,1672319027),(88574,4,16744,3,1672319027),(88575,4,16745,3,1672319027),(88576,4,16746,3,1672319027),(88577,4,16747,3,1672319027),(88578,4,16748,3,1672319027),(88579,4,16749,3,1672319027),(88580,4,16750,3,1672319027),(88581,4,16751,3,1672319027),(88582,4,16752,3,1672319027),(88583,4,16753,3,1672319027),(88584,4,16754,3,1672319027),(88585,4,16755,3,1672319027),(88586,4,16756,3,1672319027),(88587,4,16757,3,1672319027),(88588,4,16758,3,1672319027),(88589,4,16759,3,1672319027),(88590,4,16760,3,1672319027),(88591,4,16761,3,1672319027),(88592,4,16762,3,1672319027),(88593,4,16763,3,1672319027),(88594,4,16764,3,1672319027),(88595,4,16765,3,1672319027),(88596,4,16766,3,1672319027),(88597,4,16767,3,1672319027),(88598,4,16768,3,1672319027),(88599,4,16769,3,1672319027),(88600,4,16770,3,1672319027),(88601,4,16771,3,1672319027),(88602,4,16772,3,1672319027),(88603,4,16773,3,1672319027),(88604,4,16774,3,1672319027),(88605,4,16775,3,1672319027),(88606,4,16776,3,1672319027),(88607,4,16777,3,1672319027),(88608,4,16778,3,1672319027),(88609,4,16779,3,1672319027),(88610,4,16780,3,1672319027),(88611,4,16792,3,1672319027),(88612,4,16793,3,1672319027),(88613,4,16795,3,1672319027),(88614,4,16799,3,1672319027),(88615,4,16800,3,1672319027),(88616,4,16801,3,1672319027),(88617,4,16802,3,1672319027),(88618,4,16803,3,1672319027),(88619,4,16804,3,1672319027),(88620,4,16805,3,1672319027),(88621,4,16806,3,1672319027),(88622,4,16807,3,1672319027),(88623,4,16808,3,1672319027),(88624,4,16809,3,1672319027),(88625,4,16810,3,1672319027),(88626,4,16811,3,1672319027),(88627,4,16812,3,1672319027),(88628,4,16813,3,1672319027),(88629,4,16814,3,1672319027),(88630,4,16815,3,1672319027),(88631,4,16816,3,1672319027),(88632,4,16817,3,1672319027),(88633,4,16818,3,1672319027),(88634,4,16819,3,1672319027),(88635,4,16820,3,1672319027),(88636,4,16821,3,1672319027),(88637,4,16822,3,1672319027),(88638,4,16823,3,1672319027),(88639,4,16824,3,1672319027),(88640,4,16825,3,1672319027),(88641,4,16826,3,1672319027),(88642,4,16827,3,1672319027),(88643,4,16828,3,1672319027),(88644,4,16829,3,1672319027),(88645,4,16830,3,1672319027),(88646,4,16831,3,1672319027),(88647,4,16832,3,1672319027),(88648,4,16833,3,1672319027),(88649,4,16834,3,1672319027),(88650,4,16835,3,1672319027),(88651,4,16836,3,1672319027),(88652,4,16837,3,1672319027),(88653,4,16838,3,1672319027),(88654,4,16843,3,1672319027),(88655,4,16844,3,1672319027),(88656,4,16845,3,1672319027),(88657,4,16846,3,1672319027),(88658,4,16847,3,1672319027),(88659,4,16848,3,1672319027),(88660,4,16849,3,1672319027),(88661,4,16850,3,1672319027),(88662,4,16851,3,1672319027),(88663,4,16852,3,1672319027),(88664,4,16853,3,1672319027),(88665,4,16854,3,1672319027),(88666,4,16855,3,1672319027),(88667,4,16856,3,1672319027),(88668,4,16857,3,1672319027),(88669,4,16858,3,1672319027),(88670,4,16859,3,1672319027),(88671,4,16860,3,1672319027),(88672,4,16861,3,1672319027),(88673,4,16862,3,1672319027),(88674,4,16863,3,1672319027),(88675,4,16864,3,1672319027),(88676,4,16865,3,1672319027),(88677,4,16866,3,1672319027),(88678,4,16867,3,1672319027),(88679,4,16868,3,1672319027),(88680,4,16869,3,1672319027),(88681,4,16870,3,1672319027),(88682,4,16871,3,1672319027),(88683,4,16872,3,1672319027),(88684,4,16873,3,1672319027),(88685,4,16874,3,1672319027),(88686,4,16875,3,1672319027),(88687,4,16876,3,1672319027),(88688,4,16877,3,1672319027),(88689,4,16878,3,1672319027),(88690,4,16879,3,1672319027),(88691,4,16880,3,1672319027),(88692,4,16881,3,1672319027),(88693,4,16882,3,1672319027),(88694,4,16883,3,1672319027),(88695,4,16884,3,1672319027),(88696,4,16885,3,1672319027),(88697,4,16886,3,1672319027),(88698,4,16887,3,1672319027),(88699,4,16888,3,1672319027),(88700,4,16889,3,1672319027),(88701,4,16890,3,1672319027),(88702,4,16891,3,1672319027),(88703,4,16892,3,1672319027),(88704,4,16893,3,1672319027),(88705,4,16894,3,1672319027),(88706,4,16895,3,1672319027),(88707,4,16896,3,1672319027),(88708,4,16897,3,1672319027),(88709,4,16898,3,1672319027),(88710,4,16899,3,1672319027),(88711,4,16900,3,1672319027),(88712,4,16901,3,1672319027),(88713,4,16902,3,1672319027),(88714,4,16903,3,1672319027),(88715,4,16904,3,1672319027),(88716,4,16905,3,1672319027),(88717,4,16906,3,1672319027),(88718,4,16907,3,1672319027),(88719,4,16908,3,1672319027),(88720,4,16909,3,1672319027),(88721,4,16910,3,1672319027),(88722,4,16911,3,1672319027),(88723,4,16912,3,1672319027),(88724,4,16913,3,1672319027),(88725,4,16914,3,1672319027),(88726,4,16915,3,1672319027),(88727,4,16916,3,1672319027),(88728,4,16917,3,1672319027),(88729,4,16918,3,1672319027),(88730,4,16919,3,1672319027),(88731,4,16920,3,1672319027),(88732,4,16921,3,1672319027),(88733,4,16922,3,1672319027),(88734,4,16923,3,1672319027),(88735,4,16924,3,1672319027),(88736,4,16925,3,1672319027),(88737,4,16926,3,1672319027),(88738,4,16927,3,1672319027),(88739,4,16928,3,1672319027),(88740,4,16929,3,1672319027),(88741,4,16930,3,1672319027),(88742,4,16931,3,1672319027),(88743,4,16932,3,1672319027),(88744,4,16933,3,1672319027),(88745,4,16934,3,1672319027),(88746,4,16935,3,1672319027),(88747,4,16936,3,1672319027),(88748,4,16937,3,1672319027),(88749,4,16938,3,1672319027),(88750,4,16939,3,1672319027),(88751,4,16940,3,1672319027),(88752,4,16941,3,1672319027),(88753,4,16942,3,1672319027),(88754,4,16943,3,1672319027),(88755,4,16944,3,1672319027),(88756,4,16945,3,1672319027),(88757,4,16946,3,1672319027),(88758,4,16947,3,1672319027),(88759,4,16948,3,1672319027),(88760,4,16949,3,1672319027),(88761,4,16950,3,1672319027),(88762,4,16951,3,1672319027),(88763,4,16952,3,1672319027),(88764,4,16953,3,1672319027),(88765,4,16954,3,1672319027),(88766,4,16955,3,1672319027),(88767,4,16956,3,1672319027),(88768,4,16957,3,1672319027),(88769,4,16958,3,1672319027),(88770,4,16959,3,1672319027),(88771,4,16960,3,1672319027),(88772,4,16961,3,1672319027),(88773,4,16962,3,1672319027),(88774,4,16963,3,1672319027),(88775,4,16964,3,1672319027),(88776,4,16965,3,1672319027),(88777,4,16966,3,1672319027),(88778,4,16967,3,1672319027),(88779,4,16968,3,1672319027),(88780,4,16969,3,1672319027),(88781,4,16970,3,1672319027),(88782,4,16971,3,1672319027),(88783,4,16972,3,1672319027),(88784,4,16973,3,1672319027),(88785,4,16974,3,1672319027),(88786,4,16975,3,1672319027),(88787,4,16976,3,1672319027),(88788,4,16977,3,1672319027),(88789,4,16978,3,1672319027),(88790,4,16979,3,1672319027),(88791,4,16980,3,1672319027),(88792,4,16981,3,1672319027),(88793,4,16982,3,1672319027),(88794,4,16983,3,1672319027),(88795,4,16984,3,1672319027),(88796,4,16985,3,1672319027),(88797,4,16986,3,1672319027),(88798,4,16987,3,1672319027),(88799,4,16988,3,1672319027),(88800,4,16989,3,1672319027),(88801,4,16990,3,1672319027),(88802,4,16991,3,1672319027),(88803,4,16992,3,1672319027),(88804,4,16993,3,1672319027),(88805,4,16994,3,1672319027),(88806,4,16995,3,1672319027),(88807,4,16996,3,1672319027),(88808,4,16997,3,1672319027),(88809,4,16998,3,1672319027),(88810,4,16999,3,1672319027),(88811,4,17000,3,1672319027),(88812,4,17001,3,1672319027),(88813,4,17002,3,1672319027),(88814,4,17003,3,1672319027),(88815,4,17004,3,1672319027),(88816,4,17005,3,1672319027),(88817,4,17006,3,1672319027),(88818,4,17007,3,1672319027),(88819,4,17008,3,1672319027),(88820,4,17009,3,1672319027),(88821,4,17010,3,1672319027),(88822,4,17011,3,1672319027),(88823,4,17012,3,1672319027),(88824,4,17013,3,1672319027),(88825,4,17014,3,1672319027),(88826,4,17015,3,1672319027),(88827,4,17016,3,1672319027),(88828,4,17017,3,1672319027),(88829,4,17018,3,1672319027),(88830,4,17019,3,1672319027),(88831,4,17020,3,1672319027),(88832,4,17021,3,1672319027),(88833,4,17022,3,1672319027),(88834,4,17023,3,1672319027),(88835,4,17024,3,1672319027),(88836,4,17025,3,1672319027),(88837,4,17026,3,1672319027),(88838,4,17027,3,1672319027),(88839,4,17028,3,1672319027),(88840,4,17029,3,1672319027),(88841,4,17030,3,1672319027),(88842,4,17031,3,1672319027),(88843,4,17032,3,1672319027),(88844,4,17033,3,1672319027),(88845,4,17034,3,1672319027),(88846,4,17035,3,1672319027),(88847,4,17036,3,1672319027),(88848,4,17037,3,1672319027),(88849,4,17038,3,1672319027),(88850,4,17039,3,1672319027),(88851,4,17040,3,1672319027),(88852,4,17041,3,1672319027),(88853,4,17042,3,1672319027),(88854,4,17043,3,1672319027),(88855,4,17044,3,1672319027),(88856,4,17045,3,1672319027),(88857,4,17046,3,1672319027),(88858,4,17047,3,1672319027),(88859,4,17048,3,1672319027),(88860,4,17049,3,1672319027),(88861,4,17050,3,1672319027),(88862,4,17051,3,1672319027),(88863,4,17052,3,1672319027),(88864,4,17053,3,1672319027),(88865,4,17054,3,1672319027),(88866,4,17055,3,1672319027),(88867,4,17056,3,1672319027),(88868,4,17057,3,1672319027),(88869,4,17058,3,1672319027),(88870,4,17059,3,1672319027),(88871,4,17060,3,1672319027),(88872,4,17061,3,1672319027),(88873,4,17062,3,1672319027),(88874,4,17063,3,1672319027),(88875,4,17064,3,1672319027),(88876,4,17065,3,1672319027),(88877,4,17066,3,1672319027),(88878,4,17067,3,1672319027),(88879,4,17068,3,1672319027),(88880,4,17069,3,1672319027),(88881,4,17070,3,1672319027),(88882,4,17071,3,1672319027),(88883,4,17072,3,1672319027),(88884,4,17073,3,1672319027),(88885,4,17074,3,1672319027),(88886,4,17075,3,1672319027),(88887,4,17076,3,1672319027),(88888,4,17077,3,1672319027),(88889,4,17078,3,1672319027),(88890,4,17079,3,1672319027),(88891,4,17080,3,1672319027),(88892,4,17081,3,1672319027),(88893,4,17082,3,1672319027),(88894,4,17083,3,1672319027),(88895,4,17084,3,1672319027),(88896,4,17085,3,1672319027),(88897,4,17086,3,1672319027),(88898,4,17087,3,1672319027),(88899,4,17088,3,1672319027),(88900,4,17089,3,1672319027),(88901,4,17090,3,1672319027),(88902,4,17091,3,1672319027),(88903,4,17092,3,1672319027),(88904,4,17093,3,1672319027),(88905,4,17094,3,1672319027),(88906,4,17095,3,1672319027),(88907,4,17096,3,1672319027),(88908,4,17097,3,1672319027),(88909,4,17098,3,1672319027),(88910,4,17099,3,1672319027),(88911,4,17100,3,1672319027),(88912,4,17101,3,1672319027),(88913,4,17102,3,1672319027),(88914,4,17103,3,1672319027),(88915,4,17104,3,1672319027),(88916,4,17105,3,1672319027),(88917,4,17106,3,1672319027),(88918,4,17107,3,1672319027),(88919,4,17108,3,1672319027),(88920,4,17109,3,1672319027),(88921,4,17110,3,1672319027),(88922,4,17111,3,1672319027),(88923,4,17112,3,1672319027),(88924,4,17113,3,1672319027),(88925,4,17114,3,1672319027),(88926,4,17115,3,1672319027),(88927,4,17116,3,1672319027),(88928,4,17117,3,1672319027),(88929,4,17118,3,1672319027),(88930,4,17119,3,1672319027),(88931,4,17120,3,1672319027),(88932,4,17121,3,1672319027),(88933,4,17122,3,1672319027),(88934,4,17123,3,1672319027),(88935,4,17124,3,1672319027),(88936,4,17125,3,1672319027),(88937,4,17126,3,1672319027),(88938,4,17127,3,1672319027),(88939,4,17128,3,1672319027),(88940,4,17129,3,1672319027),(88941,4,17130,3,1672319027),(88942,4,17131,3,1672319027),(88943,4,17132,3,1672319027),(88944,4,17133,3,1672319027),(88945,4,17134,3,1672319027),(88946,4,17135,3,1672319027),(88947,4,17136,3,1672319027),(88948,4,17137,3,1672319027),(88949,4,17138,3,1672319027),(88950,4,17139,3,1672319027),(88951,4,17140,3,1672319027),(88952,4,17141,3,1672319027),(88953,4,17142,3,1672319027),(88954,4,17143,3,1672319027),(88955,4,17144,3,1672319027),(88956,4,17145,3,1672319027),(88957,4,17146,3,1672319027),(88958,4,17147,3,1672319027),(88959,4,17148,3,1672319027),(88960,4,17149,3,1672319027),(88961,4,17150,3,1672319027),(88962,4,17151,3,1672319027),(88963,4,17152,3,1672319027),(88964,4,17153,3,1672319027),(88965,4,17154,3,1672319027),(88966,4,17155,3,1672319027),(88967,4,17156,3,1672319027),(88968,4,17157,3,1672319027),(88969,4,17158,3,1672319027),(88970,4,17159,3,1672319027),(88971,4,17160,3,1672319027),(88972,4,17161,3,1672319027),(88973,4,17162,3,1672319027),(88974,4,17163,3,1672319027),(88975,4,17164,3,1672319027),(88976,4,17165,3,1672319027),(88977,4,17166,3,1672319027),(88978,4,17167,3,1672319027),(88979,4,17168,3,1672319027),(88980,4,17169,3,1672319027),(88981,4,17170,3,1672319027),(88982,4,17171,3,1672319027),(88983,4,17172,3,1672319027),(88984,4,17173,3,1672319027),(88985,4,17174,3,1672319027),(88986,4,17175,3,1672319027),(88987,4,17176,3,1672319027),(88988,4,17177,3,1672319027),(88989,4,17178,3,1672319027),(88990,4,17179,3,1672319027),(88991,4,17180,3,1672319027),(88992,4,17181,3,1672319027),(88993,4,17182,3,1672319027),(88994,4,17183,3,1672319027),(88995,4,17184,3,1672319027),(88996,4,17185,3,1672319027),(88997,4,17186,3,1672319027),(88998,4,17187,3,1672319027),(88999,4,17188,3,1672319027),(89000,4,17189,3,1672319027),(89001,4,17190,3,1672319027),(89002,4,17191,3,1672319027),(89003,4,17192,3,1672319027),(89004,4,17193,3,1672319027),(89005,4,17194,3,1672319027),(89006,4,17195,3,1672319027),(89007,4,17196,3,1672319027),(89008,4,17197,3,1672319027),(89009,4,17198,3,1672319027),(89010,4,17199,3,1672319027),(89011,4,17200,3,1672319027),(89012,4,17201,3,1672319027),(89013,4,17202,3,1672319027),(89014,4,17203,3,1672319027),(89015,4,17204,3,1672319027),(89016,4,17205,3,1672319027),(89017,4,17206,3,1672319027),(89018,4,17207,3,1672319027),(89019,4,17208,3,1672319027),(89020,4,17209,3,1672319027),(89021,4,17210,3,1672319027),(89022,4,17211,3,1672319027),(89023,4,17212,3,1672319027),(89024,4,17213,3,1672319027),(89025,4,17214,3,1672319027),(89026,4,17215,3,1672319027),(89027,4,17216,3,1672319027),(89028,4,17217,3,1672319027),(89029,4,17218,3,1672319027),(89030,4,17219,3,1672319027),(89031,4,17220,3,1672319027),(89032,4,17221,3,1672319027),(89033,4,17222,3,1672319027),(89034,4,17223,3,1672319027),(89035,4,17224,3,1672319027),(89036,4,17225,3,1672319027),(89037,4,17226,3,1672319027),(89038,4,17227,3,1672319027),(89039,4,17228,3,1672319027),(89040,4,17229,3,1672319027),(89041,4,17230,3,1672319027),(89042,4,17231,3,1672319027),(89043,4,17232,3,1672319027),(89044,4,17233,3,1672319027),(89045,4,17234,3,1672319027),(89046,4,17235,3,1672319027),(89047,4,17236,3,1672319027),(89048,4,17237,3,1672319027),(89049,4,17238,3,1672319027),(89050,4,17239,3,1672319027),(89051,4,17240,3,1672319027),(89052,4,17241,3,1672319027),(89053,4,17242,3,1672319027),(89054,4,17243,3,1672319027),(89055,4,17244,3,1672319027),(89056,4,17245,3,1672319027),(89057,4,17246,3,1672319027),(89058,4,17247,3,1672319027),(89059,4,17248,3,1672319027),(89060,4,17249,3,1672319027),(89061,4,17250,3,1672319027),(89062,4,17251,3,1672319027),(89063,4,17252,3,1672319027),(89064,4,17253,3,1672319027),(89065,4,17254,3,1672319027),(89066,4,17255,3,1672319027),(89067,4,17256,3,1672319027),(89068,4,17257,3,1672319027),(89069,4,17258,3,1672319027),(89070,4,17259,3,1672319027),(89071,4,17260,3,1672319027),(89072,4,17261,3,1672319027),(89073,4,17262,3,1672319027),(89074,4,17263,3,1672319027),(89075,4,17264,3,1672319027),(89076,4,17265,3,1672319027),(89077,4,17266,3,1672319027),(89078,4,17267,3,1672319027),(89079,4,17268,3,1672319027),(89080,4,17269,3,1672319027),(89081,4,17270,3,1672319027),(89082,4,17271,3,1672319027),(89083,4,17272,3,1672319027),(89084,4,17273,3,1672319027),(89085,4,17274,3,1672319027),(89086,4,17275,3,1672319027),(89087,4,17276,3,1672319027),(89088,4,17277,3,1672319027),(89089,4,17278,3,1672319027),(89090,4,17279,3,1672319027),(89091,4,17280,3,1672319027),(89092,4,17281,3,1672319027),(89093,4,17282,3,1672319027),(89094,4,17283,3,1672319027),(89095,4,17284,3,1672319027),(89096,4,17285,3,1672319027),(89097,4,17286,3,1672319027),(89098,4,17287,3,1672319027),(89099,4,17288,3,1672319027),(89100,4,17289,3,1672319027),(89101,4,17290,3,1672319027),(89102,4,17291,3,1672319027),(89103,4,17292,3,1672319027),(89104,4,17293,3,1672319027),(89105,4,17294,3,1672319027),(89106,4,17295,3,1672319027),(89107,4,17296,3,1672319027),(89108,4,17297,3,1672319027),(89109,4,17298,3,1672319027),(89110,4,17299,3,1672319027),(89111,4,17300,3,1672319027),(89112,4,17301,3,1672319027),(89113,4,17302,3,1672319027),(89114,4,17303,3,1672319027),(89115,4,17304,3,1672319027),(89116,4,17305,3,1672319027),(89117,4,17306,3,1672319027),(89118,4,17307,3,1672319027),(89119,4,17308,3,1672319027),(89120,4,17309,3,1672319027),(89121,4,17310,3,1672319027),(89122,4,17311,3,1672319027),(89123,4,17312,3,1672319027),(89124,4,17313,3,1672319027),(89125,4,17314,3,1672319027),(89126,4,17315,3,1672319027),(89127,4,17316,3,1672319027),(89128,4,17317,3,1672319027),(89129,4,17318,3,1672319027),(89130,4,17319,3,1672319027),(89131,4,17320,3,1672319027),(89132,4,17321,3,1672319027),(89133,4,17322,3,1672319027),(89134,4,17323,3,1672319027),(89135,4,17324,3,1672319027),(89136,4,17325,3,1672319027),(89137,4,17326,3,1672319027),(89138,4,17327,3,1672319027),(89139,4,17328,3,1672319027),(89140,4,17329,3,1672319027),(89141,4,17330,3,1672319027),(89142,4,17331,3,1672319027),(89143,4,17332,3,1672319027),(89144,4,17333,3,1672319027),(89145,4,17334,3,1672319027),(89146,4,17335,3,1672319027),(89147,4,17336,3,1672319027),(89148,4,17337,3,1672319027),(89149,4,17338,3,1672319027),(89150,4,17339,3,1672319027),(89151,4,17340,3,1672319027),(89152,4,17341,3,1672319027),(89153,4,17342,3,1672319027),(89154,4,17343,3,1672319027),(89155,4,17344,3,1672319027),(89156,4,17345,3,1672319027),(89157,4,17346,3,1672319027),(89158,4,17347,3,1672319027),(89159,4,17348,3,1672319027),(89160,4,17349,3,1672319027),(89161,4,17350,3,1672319027),(89162,4,17351,3,1672319027),(89163,4,17352,3,1672319027),(89164,4,17353,3,1672319027),(89165,4,17354,3,1672319027),(89166,4,17355,3,1672319027),(89167,4,17356,3,1672319027),(89168,4,17357,3,1672319027),(89169,4,17358,3,1672319027),(89170,4,17359,3,1672319027),(89171,4,17360,3,1672319027),(89172,4,17361,3,1672319027),(89173,4,17362,3,1672319027),(89174,4,17363,3,1672319027),(89175,4,17364,3,1672319027),(89176,4,17365,3,1672319027),(89177,4,17366,3,1672319027),(89178,4,17367,3,1672319027),(89179,4,17368,3,1672319027),(89180,4,17369,3,1672319027),(89181,4,17370,3,1672319027),(89182,4,17371,3,1672319027),(89183,4,17372,3,1672319027),(89184,4,17373,3,1672319027),(89185,4,17374,3,1672319027),(89186,4,17375,3,1672319027),(89187,4,17376,3,1672319027),(89188,4,17377,3,1672319027),(89189,4,17378,3,1672319027),(89190,4,17379,3,1672319027),(89191,4,17380,3,1672319027),(89192,4,17381,3,1672319027),(89193,4,17382,3,1672319027),(89194,4,17383,3,1672319027),(89195,4,17384,3,1672319027),(89196,4,17385,3,1672319027),(89197,4,17386,3,1672319027),(89198,4,17387,3,1672319027),(89199,4,17388,3,1672319027),(89200,4,17389,3,1672319027),(89201,4,17390,3,1672319027),(89202,4,17391,3,1672319027),(89203,4,17392,3,1672319027),(89204,4,17393,3,1672319027),(89205,4,17394,3,1672319027),(89206,4,17395,3,1672319027),(89207,4,17396,3,1672319027),(89208,4,17397,3,1672319027),(89209,4,17398,3,1672319027),(89210,4,17399,3,1672319027),(89211,4,17400,3,1672319027),(89212,4,17401,3,1672319027),(89213,4,17402,3,1672319027),(89214,4,17403,3,1672319027),(89215,4,17404,3,1672319027),(89216,4,17405,3,1672319027),(89217,4,17406,3,1672319027),(89218,4,17407,3,1672319027),(89219,4,17408,3,1672319027),(89220,4,17409,3,1672319027),(89221,4,17410,3,1672319027),(89222,4,17411,3,1672319027),(89223,4,17412,3,1672319027),(89224,4,17413,3,1672319027),(89225,4,17414,3,1672319027),(89226,4,17415,3,1672319027),(89227,4,17416,3,1672319027),(89228,4,17417,3,1672319027),(89229,4,17418,3,1672319027),(89230,4,17419,3,1672319027),(89231,4,17420,3,1672319027),(89232,4,17421,3,1672319027),(89233,4,17422,3,1672319027),(89234,4,17423,3,1672319027),(89235,4,17424,3,1672319027),(89236,4,17425,3,1672319027),(89237,4,17426,3,1672319027),(89238,4,17427,3,1672319027),(89239,4,17428,3,1672319027),(89240,4,17429,3,1672319027),(89241,4,17430,3,1672319027),(89242,4,17431,3,1672319027),(89243,4,17432,3,1672319027),(89244,4,17433,3,1672319027),(89245,4,17434,3,1672319027),(89246,4,17435,3,1672319027),(89247,4,17436,3,1672319027),(89248,4,17437,3,1672319027),(89249,4,17438,3,1672319027),(89250,4,17439,3,1672319027),(89251,4,17440,3,1672319027),(89252,4,17441,3,1672319027),(89253,4,17442,3,1672319027),(89254,4,17443,3,1672319027),(89255,4,17444,3,1672319027),(89256,4,17445,3,1672319027),(89257,4,17446,3,1672319027),(89258,4,17447,3,1672319027),(89259,4,17448,3,1672319027),(89260,4,17449,3,1672319027),(89261,4,17450,3,1672319027),(89262,4,17451,3,1672319027),(89263,4,17452,3,1672319027),(89264,4,17453,3,1672319027),(89265,4,17454,3,1672319027),(89266,4,17455,3,1672319027),(89267,4,17456,3,1672319027),(89268,4,17457,3,1672319027),(89269,4,17458,3,1672319027),(89270,4,17459,3,1672319027),(89271,4,17460,3,1672319027),(89272,4,17461,3,1672319027),(89273,4,17462,3,1672319027),(89274,4,17463,3,1672319027),(89275,4,17464,3,1672319027),(89276,4,17465,3,1672319027),(89277,4,17466,3,1672319027),(89278,4,17467,3,1672319027),(89279,4,17468,3,1672319027),(89280,4,17469,3,1672319027),(89281,4,17470,3,1672319027),(89282,4,17471,3,1672319027),(89283,4,17472,3,1672319027),(89284,4,17473,3,1672319027),(89285,4,17474,3,1672319027),(89286,4,17475,3,1672319027),(89287,4,17476,3,1672319027),(89288,4,17477,3,1672319027),(89289,4,17478,3,1672319027),(89290,4,17479,3,1672319027),(89291,4,17480,3,1672319027),(89292,4,17481,3,1672319027),(89293,4,17482,3,1672319027),(89294,4,17483,3,1672319027),(89295,4,17484,3,1672319027),(89296,4,17485,3,1672319027),(89297,4,17486,3,1672319027),(89298,4,17487,3,1672319027),(89299,4,17488,3,1672319027),(89300,4,17489,3,1672319027),(89301,4,17490,3,1672319027),(89302,4,17491,3,1672319027),(89303,4,17492,3,1672319027),(89304,4,17493,3,1672319027),(89305,4,17494,3,1672319027),(89306,4,17495,3,1672319027),(89307,4,17496,3,1672319027),(89308,4,17497,3,1672319027),(89309,4,17498,3,1672319027),(89310,4,17499,3,1672319027),(89311,4,17500,3,1672319027),(89312,4,17501,3,1672319027),(89313,4,17502,3,1672319027),(89314,4,17503,3,1672319027),(89315,4,17504,3,1672319027),(89316,4,17505,3,1672319027),(89317,4,17506,3,1672319027),(89318,4,17507,3,1672319027),(89319,4,17508,3,1672319027),(89320,4,17509,3,1672319027),(89321,4,17510,3,1672319027),(89322,4,17511,3,1672319027),(89323,4,17512,3,1672319027),(89324,4,17513,3,1672319027),(89325,4,17514,3,1672319027),(89326,4,17515,3,1672319027),(89327,4,17516,3,1672319027),(89328,4,17517,3,1672319027),(89329,4,17518,3,1672319027),(89330,4,17519,3,1672319027),(89331,4,17520,3,1672319027),(89332,4,17521,3,1672319027),(89333,4,17522,3,1672319027),(89334,4,17523,3,1672319027),(89335,4,17524,3,1672319027),(89336,4,17525,3,1672319027),(89337,4,17526,3,1672319027),(89338,4,17527,3,1672319027),(89339,4,17528,3,1672319027),(89340,4,17529,3,1672319027),(89341,4,17530,3,1672319027),(89342,4,17531,3,1672319027),(89343,4,17532,3,1672319027),(89344,4,17533,3,1672319027),(89345,4,17534,3,1672319027),(89346,4,17535,3,1672319027),(89347,4,17536,3,1672319027),(89348,4,17537,3,1672319027),(89349,4,17539,3,1672319027),(89350,4,17540,3,1672319027),(89351,4,17541,3,1672319027),(89352,4,17542,3,1672319027),(89353,4,17543,3,1672319027),(89354,4,17544,3,1672319027),(89355,4,17545,3,1672319027),(89356,4,17546,3,1672319027),(89357,4,17547,3,1672319027),(89358,4,17548,3,1672319027),(89359,4,17549,3,1672319027),(89360,4,17550,3,1672319027),(89361,4,17551,3,1672319027),(89362,4,17552,3,1672319027),(89363,4,17553,3,1672319027),(89364,4,17554,3,1672319027),(89365,4,17555,3,1672319027),(89366,4,17556,3,1672319027),(89367,4,17557,3,1672319027),(89368,4,17558,3,1672319027),(89369,4,17559,3,1672319027),(89370,4,17560,3,1672319027),(89371,4,17561,3,1672319027),(89372,4,17562,3,1672319027),(89373,4,17563,3,1672319027),(89374,4,17564,3,1672319027),(89375,4,17565,3,1672319027),(89376,4,17566,3,1672319027),(89377,4,17567,3,1672319027),(89378,4,17568,3,1672319027),(89379,4,17569,3,1672319027),(89380,4,17570,3,1672319027),(89381,4,17571,3,1672319027),(89382,4,17572,3,1672319027),(89383,4,17573,3,1672319027),(89384,4,17574,3,1672319027),(89385,4,17575,3,1672319027),(89386,4,17576,3,1672319027),(89387,4,17577,3,1672319027),(89388,4,17578,3,1672319027),(89389,4,17579,3,1672319027),(89390,4,17580,3,1672319027),(89391,4,17581,3,1672319027),(89392,4,17582,3,1672319027),(89393,4,17583,3,1672319027),(89394,4,17584,3,1672319027),(89395,4,17585,3,1672319027),(89396,4,17586,3,1672319027),(89397,4,17587,3,1672319027),(89398,4,17588,3,1672319027),(89399,4,17589,3,1672319027),(89400,4,17590,3,1672319027),(89401,4,17591,3,1672319027),(89402,4,17592,3,1672319027),(89403,4,17593,3,1672319027),(89404,4,17594,3,1672319027),(89405,4,17595,3,1672319027),(89406,4,17596,3,1672319027),(89407,4,17597,3,1672319027),(89408,4,17598,3,1672319027),(89409,4,17599,3,1672319027),(89410,4,17600,3,1672319027),(89411,4,17601,3,1672319027),(89412,4,17602,3,1672319027),(89413,4,17603,3,1672319027),(89414,4,17604,3,1672319027),(89415,4,17605,3,1672319027),(89416,4,17606,3,1672319027),(89417,4,17607,3,1672319027),(89418,4,17608,3,1672319027),(89419,4,17609,3,1672319027),(89420,4,17610,3,1672319027),(89421,4,17611,3,1672319027),(89422,4,17612,3,1672319027),(89423,4,17613,3,1672319027),(89424,4,17614,3,1672319027),(89425,4,17615,3,1672319027),(89426,4,17616,3,1672319027),(89427,4,17617,3,1672319027),(89428,4,17618,3,1672319027),(89429,4,17619,3,1672319027),(89430,4,17620,3,1672319027),(89431,4,17621,3,1672319027),(89432,4,17622,3,1672319027),(89433,4,17623,3,1672319027),(89434,4,17624,3,1672319027),(89435,4,17625,3,1672319027),(89436,4,17626,3,1672319027),(89437,4,17627,3,1672319027),(89438,4,17628,3,1672319027),(89439,4,17629,3,1672319027),(89440,4,17630,3,1672319027),(89441,4,17631,3,1672319027),(89442,4,17632,3,1672319027),(89443,4,17633,3,1672319027),(89444,4,17634,3,1672319027),(89445,4,17635,3,1672319027),(89446,4,17636,3,1672319027),(89447,4,17637,3,1672319027),(89448,4,17638,3,1672319027),(89449,4,17639,3,1672319027),(89450,4,17640,3,1672319027),(89451,4,17641,3,1672319027),(89452,4,17642,3,1672319027),(89453,4,17643,3,1672319027),(89454,4,17644,3,1672319027),(89455,4,17645,3,1672319027),(89456,4,17646,3,1672319027),(89457,4,17647,3,1672319027),(89458,4,17648,3,1672319027),(89459,4,17649,3,1672319027),(89460,4,17650,3,1672319027),(89461,4,17651,3,1672319027),(89462,4,17652,3,1672319027),(89463,4,17653,3,1672319027),(89464,4,17654,3,1672319027),(89465,4,17655,3,1672319027),(89466,4,17656,3,1672319027),(89467,4,17657,3,1672319027),(89468,4,17658,3,1672319027),(89469,4,17659,3,1672319027),(89470,4,17660,3,1672319027),(89471,4,17661,3,1672319027),(89472,4,17662,3,1672319027),(89473,4,17663,3,1672319027),(89474,4,17664,3,1672319027),(89475,4,17665,3,1672319027),(89476,4,17666,3,1672319027),(89477,4,17667,3,1672319027),(89478,4,17668,3,1672319027),(89479,4,17669,3,1672319027),(89480,4,17670,3,1672319027),(89481,4,17671,3,1672319027),(89482,4,17672,3,1672319027),(89483,4,17673,3,1672319027),(89484,4,17674,3,1672319027),(89485,4,17675,3,1672319027),(89486,4,17676,3,1672319027),(89487,4,17677,3,1672319027),(89488,4,17678,3,1672319027),(89489,4,17679,3,1672319027),(89490,4,17680,3,1672319027),(89491,4,17681,3,1672319027),(89492,4,17682,3,1672319027),(89493,4,17683,3,1672319027),(89494,4,17684,3,1672319027),(89495,4,17685,3,1672319027),(89496,4,17686,3,1672319027),(89497,4,17687,3,1672319027),(89498,4,17688,3,1672319027),(89499,4,17689,3,1672319027),(89500,4,17690,3,1672319027),(89501,4,17691,3,1672319027),(89502,4,17692,3,1672319027),(89503,4,17693,3,1672319027),(89504,4,17694,3,1672319027),(89505,4,17695,3,1672319027),(89506,4,17696,3,1672319027),(89507,4,17697,3,1672319027),(89508,4,17698,3,1672319027),(89509,4,17699,3,1672319027),(89510,4,17700,3,1672319027),(89511,4,17701,3,1672319027),(89512,4,17702,3,1672319027),(89513,4,17703,3,1672319027),(89514,4,17704,3,1672319027),(89515,4,17705,3,1672319027),(89516,4,17706,3,1672319027),(89517,4,17707,3,1672319027),(89518,4,17708,3,1672319027),(89519,4,17709,3,1672319027),(89520,4,17710,3,1672319027),(89521,4,17711,3,1672319027),(89522,4,17712,3,1672319027),(89523,4,17713,3,1672319027),(89524,4,17714,3,1672319027),(89525,4,17715,3,1672319027),(89526,4,17716,3,1672319027),(89527,4,17717,3,1672319027),(89528,4,17718,3,1672319027),(89529,4,17719,3,1672319027),(89530,4,17720,3,1672319027),(89531,4,17721,3,1672319027),(89532,4,17722,3,1672319027),(89533,4,17723,3,1672319027),(89534,4,17724,3,1672319027),(89535,4,17725,3,1672319027),(89536,4,17726,3,1672319027),(89537,4,17727,3,1672319027),(89538,4,17728,3,1672319027),(89539,4,17729,3,1672319027),(89540,4,17730,3,1672319027),(89541,4,17731,3,1672319027),(89542,4,17732,3,1672319027),(89543,4,17733,3,1672319027),(89544,4,17734,3,1672319027),(89545,4,17735,3,1672319027),(89546,4,17736,3,1672319027),(89547,4,17737,3,1672319027),(89548,4,17738,3,1672319027),(89549,4,17739,3,1672319027),(89550,4,17740,3,1672319027),(89551,4,17741,3,1672319027),(89552,4,17742,3,1672319027),(89553,4,17743,3,1672319027),(89554,4,17744,3,1672319027),(89555,4,17745,3,1672319027),(89556,4,17746,3,1672319027),(89557,4,17747,3,1672319027),(89558,4,17748,3,1672319027),(89559,4,17749,3,1672319027),(89560,4,17750,3,1672319027),(89561,4,17751,3,1672319027),(89562,4,17752,3,1672319027),(89563,4,17753,3,1672319027),(89564,4,17754,3,1672319027),(89565,4,17755,3,1672319027),(89566,4,17756,3,1672319027),(89567,4,17757,3,1672319027),(89568,4,17758,3,1672319027),(89569,4,17759,3,1672319027),(89570,4,17760,3,1672319027),(89571,4,17761,3,1672319027),(89572,4,17762,3,1672319027),(89573,4,17763,3,1672319027),(89574,4,17764,3,1672319027),(89575,4,17765,3,1672319027),(89576,4,17766,3,1672319027),(89577,4,17767,3,1672319027),(89578,4,17768,3,1672319027),(89579,4,17769,3,1672319027),(89580,4,17770,3,1672319027),(89581,4,17771,3,1672319027),(89582,4,17772,3,1672319027),(89583,4,17773,3,1672319027),(89584,4,17774,3,1672319027),(89585,4,17775,3,1672319027),(89586,4,17776,3,1672319027),(89587,4,17777,3,1672319027),(89588,4,17778,3,1672319027),(89589,4,17779,3,1672319027),(89590,4,17780,3,1672319027),(89591,4,17781,3,1672319027),(89592,4,17782,3,1672319027),(89593,4,17783,3,1672319027),(89594,4,17784,3,1672319027),(89595,4,17785,3,1672319027),(89596,4,17786,3,1672319027),(89597,4,17787,3,1672319027),(89598,4,17788,3,1672319027),(89599,4,17789,3,1672319027),(89600,4,17790,3,1672319027),(89601,4,17791,3,1672319027),(89602,4,17792,3,1672319027),(89603,4,17793,3,1672319027),(89604,4,17794,3,1672319027),(89605,4,17795,3,1672319027),(89606,4,17796,3,1672319027),(89607,4,17797,3,1672319027),(89608,4,17798,3,1672319027),(89609,4,17799,3,1672319027),(89610,4,17800,3,1672319027),(89611,4,17801,3,1672319027),(89612,4,17802,3,1672319027),(89613,4,17803,3,1672319027),(89614,4,17804,3,1672319027),(89615,4,17805,3,1672319027),(89616,4,17806,3,1672319027),(89617,4,17807,3,1672319027),(89618,4,17808,3,1672319027),(89619,4,17809,3,1672319027),(89620,4,17810,3,1672319027),(89621,4,17811,3,1672319027),(89622,4,17812,3,1672319027),(89623,4,17813,3,1672319027),(89624,4,17814,3,1672319027),(89625,4,17815,3,1672319027),(89626,4,17816,3,1672319027),(89627,4,17818,3,1672319027),(89628,4,17819,3,1672319027),(89629,4,17820,3,1672319027),(89630,4,17821,3,1672319027),(89631,4,17822,3,1672319027),(89632,4,17823,3,1672319027),(89633,4,17824,3,1672319027),(89634,4,17825,3,1672319027),(89635,4,17826,3,1672319027),(89636,4,17827,3,1672319027),(89637,4,17828,3,1672319027),(89638,4,17829,3,1672319027),(89639,4,17830,3,1672319027),(89640,4,17831,3,1672319027),(89641,4,17832,3,1672319027),(89642,4,17833,3,1672319027),(89643,4,17834,3,1672319027),(89644,4,17835,3,1672319027),(89645,4,17836,3,1672319027),(89646,4,17837,3,1672319027),(89647,4,17838,3,1672319027),(89648,4,17839,3,1672319027),(89649,4,17840,3,1672319027),(89650,4,17882,3,1672319027),(89651,4,17883,3,1672319027),(89652,4,17884,3,1672319027),(89653,4,17885,3,1672319027),(89654,4,17886,3,1672319027),(89655,4,17887,3,1672319027),(89656,4,17888,3,1672319027),(89657,4,17889,3,1672319027),(89658,4,17890,3,1672319027),(89659,4,17891,3,1672319027),(89660,4,17892,3,1672319027),(89661,4,17893,3,1672319027),(89662,4,17894,3,1672319027),(89663,4,17895,3,1672319027),(89664,4,17896,3,1672319027),(89665,4,17897,3,1672319027),(89666,4,17898,3,1672319027),(89667,4,17899,3,1672319027),(89668,4,17900,3,1672319027),(89669,4,17901,3,1672319027),(89670,4,17902,3,1672319027),(89671,4,17903,3,1672319027),(89672,4,17904,3,1672319027),(89673,4,17905,3,1672319027),(89674,4,17906,3,1672319027),(89675,4,17907,3,1672319027),(89676,4,17908,3,1672319027),(89677,4,17909,3,1672319027),(89678,4,17910,3,1672319027),(89679,4,17911,3,1672319027),(89680,4,17912,3,1672319027),(89681,4,17913,3,1672319027),(89682,4,17914,3,1672319027),(89683,4,17915,3,1672319027),(89684,4,17916,3,1672319027),(89685,4,17917,3,1672319027),(89686,4,17918,3,1672319027),(89687,4,17919,3,1672319027),(89688,4,17920,3,1672319027),(89689,4,17921,3,1672319027),(89690,4,17922,3,1672319027),(89691,4,17923,3,1672319027),(89692,4,17924,3,1672319027),(89693,4,17925,3,1672319027),(89694,4,17926,3,1672319027),(89695,4,17927,3,1672319027),(89696,4,17928,3,1672319027),(89697,4,17929,3,1672319027),(89698,4,17930,3,1672319027),(89699,4,17931,3,1672319027),(89700,4,17932,3,1672319027),(89701,4,17933,3,1672319027),(89702,4,17934,3,1672319027),(89703,4,17935,3,1672319027),(89704,4,17936,3,1672319027),(89705,4,17937,3,1672319027),(89706,4,17938,3,1672319027),(89707,4,17996,3,1672319027),(89708,4,17997,3,1672319027),(89709,4,17998,3,1672319027),(89710,4,17999,3,1672319027),(89711,4,18000,3,1672319027),(89712,4,18001,3,1672319027),(89713,4,18002,3,1672319027),(89714,4,18003,3,1672319027),(89715,4,18004,3,1672319027),(89716,4,18005,3,1672319027),(89717,4,18006,3,1672319027),(89718,4,18007,3,1672319027),(89719,4,18020,3,1672319027),(89720,4,18021,3,1672319027),(89721,4,18022,3,1672319027),(89722,4,18023,3,1672319027),(89723,4,18024,3,1672319027),(89724,4,18025,3,1672319027),(89725,4,18026,3,1672319027),(89726,4,18027,3,1672319027),(89727,4,18028,3,1672319027),(89728,4,18029,3,1672319027),(89729,4,18030,3,1672319027),(89730,4,18031,3,1672319027),(89731,4,18032,3,1672319027),(89732,4,18033,3,1672319027),(89733,4,18034,3,1672319027),(89734,4,18035,3,1672319027),(89735,4,18036,3,1672319027),(89736,4,18037,3,1672319027),(89737,4,18038,3,1672319027),(89738,4,18039,3,1672319027),(89739,4,18040,3,1672319027),(89740,4,18041,3,1672319027),(89741,4,18042,3,1672319027),(89742,4,18043,3,1672319027),(89743,4,18044,3,1672319027),(89744,4,18045,3,1672319027),(89745,4,18046,3,1672319027),(89746,4,18047,3,1672319027),(89747,4,18048,3,1672319027),(89748,4,18049,3,1672319027),(89749,4,18050,3,1672319027),(89750,4,18051,3,1672319027),(89751,4,18052,3,1672319027),(89752,4,18053,3,1672319027),(89753,4,18054,3,1672319027),(89754,4,18055,3,1672319027),(89755,4,18056,3,1672319027),(89756,4,18057,3,1672319027),(89757,4,18058,3,1672319027),(89758,4,18059,3,1672319027),(89759,4,18060,3,1672319027),(89760,4,18061,3,1672319027),(89761,4,18062,3,1672319027),(89762,4,18063,3,1672319027),(89763,4,18064,3,1672319027),(89764,4,18065,3,1672319027),(89765,4,18066,3,1672319027),(89766,4,18067,3,1672319027),(89767,4,18068,3,1672319027),(89768,4,18069,3,1672319027),(89769,4,18070,3,1672319027),(89770,4,18071,3,1672319027),(89771,4,18072,3,1672319027),(89772,4,18073,3,1672319027),(89773,4,18074,3,1672319027),(89774,4,18075,3,1672319027),(89775,4,18076,3,1672319027),(89776,4,18077,3,1672319027),(89777,4,18078,3,1672319027),(89778,4,18079,3,1672319027),(89779,4,18080,3,1672319027),(89780,4,18081,3,1672319027),(89781,4,18082,3,1672319027),(89782,4,18083,3,1672319027),(89783,4,18084,3,1672319027),(89784,4,18085,3,1672319027),(89785,4,18086,3,1672319027),(89786,4,18087,3,1672319027),(89787,4,18088,3,1672319027),(89788,4,18089,3,1672319027),(89789,4,18090,3,1672319027),(89790,4,18091,3,1672319027),(89791,4,18092,3,1672319027),(89792,4,18093,3,1672319027),(89793,4,18094,3,1672319027),(89794,4,18095,3,1672319027),(89795,4,18096,3,1672319027),(89796,4,18097,3,1672319027),(89797,4,18098,3,1672319027),(89798,4,18099,3,1672319027),(89799,4,18100,3,1672319027),(89800,4,18101,3,1672319027),(89801,4,18102,3,1672319027),(89802,4,18103,3,1672319027),(89803,4,18104,3,1672319027),(89804,4,18105,3,1672319027),(89805,4,18106,3,1672319027),(89806,4,18107,3,1672319027),(89807,4,18108,3,1672319027),(89808,4,18109,3,1672319027),(89809,4,18110,3,1672319027),(89810,4,18111,3,1672319027),(89811,4,18112,3,1672319027),(89812,4,18113,3,1672319027),(89813,4,18114,3,1672319027),(89814,4,18115,3,1672319027),(89815,4,18116,3,1672319027),(89816,4,18117,3,1672319027),(89817,4,18118,3,1672319027),(89818,4,18119,3,1672319027),(89819,4,18120,3,1672319027),(89820,4,18121,3,1672319027),(89821,4,18122,3,1672319027),(89822,4,18123,3,1672319027),(89823,4,18124,3,1672319027),(89824,4,18125,3,1672319027),(89825,4,18126,3,1672319027),(89826,4,18127,3,1672319027),(89827,4,18128,3,1672319027),(89828,4,18129,3,1672319027),(89829,4,18130,3,1672319027),(89830,4,18131,3,1672319027),(89831,4,18132,3,1672319027),(89832,4,18133,3,1672319027),(89833,4,18134,3,1672319027),(89834,4,18135,3,1672319027),(89835,4,18136,3,1672319027),(89836,4,18137,3,1672319027),(89837,4,18138,3,1672319027),(89838,4,18139,3,1672319027),(89839,4,18140,3,1672319027),(89840,4,18141,3,1672319027),(89841,4,18142,3,1672319027),(89842,4,18143,3,1672319027),(89843,4,18144,3,1672319027),(89844,4,18145,3,1672319027),(89845,4,18146,3,1672319027),(89846,4,18147,3,1672319027),(89847,4,18148,3,1672319027),(89848,4,18149,3,1672319027),(89849,4,18150,3,1672319027),(89850,4,18151,3,1672319027),(89851,4,18152,3,1672319027),(89852,4,18153,3,1672319027),(89853,4,18154,3,1672319027),(89854,4,18155,3,1672319027),(89855,4,18156,3,1672319027),(89856,4,18157,3,1672319027),(89857,4,18158,3,1672319027),(89858,4,18159,3,1672319027),(89859,4,18160,3,1672319027),(89860,4,18161,3,1672319027),(89861,4,18162,3,1672319027),(89862,4,18163,3,1672319027),(89863,4,18164,3,1672319027),(89864,4,18165,3,1672319027),(89865,4,18166,3,1672319027),(89866,4,18167,3,1672319027),(89867,4,18168,3,1672319027),(89868,4,18169,3,1672319027),(89869,4,18170,3,1672319027),(89870,4,18171,3,1672319027),(89871,4,18172,3,1672319027),(89872,4,18173,3,1672319027),(89873,4,18174,3,1672319027),(89874,4,18175,3,1672319027),(89875,4,18176,3,1672319027),(89876,4,18177,3,1672319027),(89877,4,18178,3,1672319027),(89878,4,18179,3,1672319027),(89879,4,18180,3,1672319027),(89880,4,18181,3,1672319027),(89881,4,18182,3,1672319027),(89882,4,18183,3,1672319027),(89883,4,18184,3,1672319027),(89884,4,18185,3,1672319027),(89885,4,18186,3,1672319027),(89886,4,18187,3,1672319027),(89887,4,18188,3,1672319027),(89888,4,18189,3,1672319027),(89889,4,18190,3,1672319027),(89890,4,18191,3,1672319027),(89891,4,18192,3,1672319027),(89892,4,18193,3,1672319027),(89893,4,18194,3,1672319027),(89894,4,18195,3,1672319027),(89895,4,18196,3,1672319027),(89896,4,18197,3,1672319027),(89897,4,18198,3,1672319027),(89898,4,18199,3,1672319027),(89899,4,18200,3,1672319027),(89900,4,18201,3,1672319027),(89901,4,18202,3,1672319027),(89902,4,18203,3,1672319027),(89903,4,18204,3,1672319027),(89904,4,18205,3,1672319027),(89905,4,18206,3,1672319027),(89906,4,18207,3,1672319027),(89907,4,18208,3,1672319027),(89908,4,18209,3,1672319027),(89909,4,18210,3,1672319027),(89910,4,18211,3,1672319027),(89911,4,18212,3,1672319027),(89912,4,18213,3,1672319027),(89913,4,18214,3,1672319027),(89914,4,18215,3,1672319027),(89915,4,18216,3,1672319027),(89916,4,18217,3,1672319027),(89917,4,18218,3,1672319027),(89918,4,18219,3,1672319027),(89919,4,18220,3,1672319027),(89920,4,18221,3,1672319027),(89921,4,18222,3,1672319027),(89922,4,18223,3,1672319027),(89923,4,18224,3,1672319027),(89924,4,18225,3,1672319027),(89925,4,18226,3,1672319027),(89926,4,18227,3,1672319027),(89927,4,18228,3,1672319027),(89928,4,18229,3,1672319027),(89929,4,18230,3,1672319027),(89930,4,18231,3,1672319027),(89931,4,18232,3,1672319027),(89932,4,18233,3,1672319027),(89933,4,18234,3,1672319027),(89934,4,18235,3,1672319027),(89935,4,18236,3,1672319027),(89936,4,18237,3,1672319027),(89937,4,18238,3,1672319027),(89938,4,18239,3,1672319027),(89939,4,18240,3,1672319027),(89940,4,18241,3,1672319027),(89941,4,18242,3,1672319027),(89942,4,18243,3,1672319027),(89943,4,18244,3,1672319027),(89944,4,18245,3,1672319027),(89945,4,18246,3,1672319027),(89946,4,18247,3,1672319027),(89947,4,18248,3,1672319027),(89948,4,18249,3,1672319027),(89949,4,18250,3,1672319027),(89950,4,18251,3,1672319027),(89951,4,18252,3,1672319027),(89952,4,18253,3,1672319027),(89953,4,18254,3,1672319027),(89954,4,18255,3,1672319027),(89955,4,18256,3,1672319027),(89956,4,18257,3,1672319027),(89957,4,18258,3,1672319027),(89958,4,18259,3,1672319027),(89959,4,18260,3,1672319027),(89960,4,18261,3,1672319027),(89961,4,18262,3,1672319027),(89962,4,18263,3,1672319027),(89963,4,18264,3,1672319027),(89964,4,18265,3,1672319027),(89965,4,18266,3,1672319027),(89966,4,18267,3,1672319027),(89967,4,18268,3,1672319027),(89968,4,18269,3,1672319027),(89969,4,18270,3,1672319027),(89970,4,18271,3,1672319027),(89971,4,18272,3,1672319027),(89972,4,18273,3,1672319027),(89973,4,18274,3,1672319027),(89974,4,18275,3,1672319027),(89975,4,18276,3,1672319027),(89976,4,18277,3,1672319027),(89977,4,18278,3,1672319027),(89978,4,18279,3,1672319027),(89979,4,18280,3,1672319027),(89980,4,18281,3,1672319027),(89981,4,18282,3,1672319027),(89982,4,18283,3,1672319027),(89983,4,18284,3,1672319027),(89984,4,18285,3,1672319027),(89985,4,18286,3,1672319027),(89986,4,18287,3,1672319027),(89987,4,18288,3,1672319027),(89988,4,18289,3,1672319027),(89989,4,18290,3,1672319027),(89990,4,18291,3,1672319027),(89991,4,18292,3,1672319027),(89992,4,18293,3,1672319027),(89993,4,18294,3,1672319027),(89994,4,18295,3,1672319027),(89995,4,18296,3,1672319027),(89996,4,18297,3,1672319027),(89997,4,18298,3,1672319027),(89998,4,18299,3,1672319027),(89999,4,18300,3,1672319027),(90000,4,18301,3,1672319027),(90001,4,18302,3,1672319027),(90002,4,18303,3,1672319027),(90003,4,18304,3,1672319027),(90004,4,18305,3,1672319027),(90005,4,18306,3,1672319027),(90006,4,18307,3,1672319027),(90007,4,18308,3,1672319027),(90008,4,18309,3,1672319027),(90009,4,18310,3,1672319027),(90010,4,18311,3,1672319027),(90011,4,18312,3,1672319027),(90012,4,18313,3,1672319027),(90013,4,18314,3,1672319027),(90014,4,18315,3,1672319027),(90015,4,18316,3,1672319027),(90016,4,18317,3,1672319027),(90017,4,18318,3,1672319027),(90018,4,18319,3,1672319027),(90019,4,18320,3,1672319027),(90020,4,18321,3,1672319027),(90021,4,18322,3,1672319027),(90022,4,18323,3,1672319027),(90023,4,18324,3,1672319027),(90024,4,18325,3,1672319027),(90025,4,18326,3,1672319027),(90026,4,18327,3,1672319027),(90027,4,18328,3,1672319027),(90028,4,18329,3,1672319027),(90029,4,18330,3,1672319027),(90030,4,18331,3,1672319027),(90031,4,18332,3,1672319027),(90032,4,18333,3,1672319027),(90033,4,18334,3,1672319027),(90034,4,18335,3,1672319027),(90035,4,18336,3,1672319027),(90036,4,18337,3,1672319027),(90037,4,18338,3,1672319027),(90038,4,18339,3,1672319027),(90039,4,18340,3,1672319027),(90040,4,18341,3,1672319027),(90041,4,18342,3,1672319027),(90042,4,18343,3,1672319027),(90043,4,18344,3,1672319027),(90044,4,18345,3,1672319027),(90045,4,18346,3,1672319027),(90046,4,18347,3,1672319027),(90047,4,18348,3,1672319027),(90048,4,18349,3,1672319027),(90049,4,18350,3,1672319027),(90050,4,18351,3,1672319027),(90051,4,18352,3,1672319027),(90052,4,18353,3,1672319027),(90053,4,18354,3,1672319027),(90054,4,18355,3,1672319027),(90055,4,18356,3,1672319027),(90056,4,18357,3,1672319027),(90057,4,18358,3,1672319027),(90058,4,18359,3,1672319027),(90059,4,18360,3,1672319027),(90060,4,18361,3,1672319027),(90061,4,18362,3,1672319027),(90062,4,18363,3,1672319027),(90063,4,18364,3,1672319027),(90064,4,18365,3,1672319027),(90065,4,18366,3,1672319027),(90066,4,18367,3,1672319027),(90067,4,18368,3,1672319027),(90068,4,18369,3,1672319027),(90069,4,18370,3,1672319027),(90070,4,18371,3,1672319027),(90071,4,18372,3,1672319027),(90072,4,18373,3,1672319027),(90073,4,18374,3,1672319027),(90074,4,18375,3,1672319027),(90075,4,18376,3,1672319027),(90076,4,18377,3,1672319027),(90077,4,18378,3,1672319027),(90078,4,18379,3,1672319027),(90079,4,18380,3,1672319027),(90080,4,18381,3,1672319027),(90081,4,18382,3,1672319027),(90082,4,18383,3,1672319027),(90083,4,18384,3,1672319027),(90084,4,18385,3,1672319027),(90085,4,18386,3,1672319027),(90086,4,18387,3,1672319027),(90087,4,18388,3,1672319027),(90088,4,18389,3,1672319027),(90089,4,18390,3,1672319027),(90090,4,18391,3,1672319027),(90091,4,18392,3,1672319027),(90092,4,18393,3,1672319027),(90093,4,18394,3,1672319027),(90094,4,18395,3,1672319027),(90095,4,18396,3,1672319027),(90096,4,18397,3,1672319027),(90097,4,18398,3,1672319027),(90098,4,18399,3,1672319027),(90099,4,18400,3,1672319027),(90100,4,18401,3,1672319027),(90101,4,18402,3,1672319027),(90102,4,18403,3,1672319027),(90103,4,18405,3,1672319027),(90104,4,18406,3,1672319027),(90105,4,18407,3,1672319027),(90106,4,18408,3,1672319027),(90107,4,18413,3,1672319027),(90108,4,18414,3,1672319027),(90109,4,18415,3,1672319027),(90110,4,18416,3,1672319027),(90111,4,18417,3,1672319027),(90112,4,18418,3,1672319027),(90113,4,18419,3,1672319027),(90114,4,18420,3,1672319027),(90115,4,18421,3,1672319027),(90116,4,18422,3,1672319027),(90117,4,18423,3,1672319027),(90118,4,18424,3,1672319027),(90119,4,18425,3,1672319027),(90120,4,18426,3,1672319027),(90121,4,18427,3,1672319027),(90122,4,18428,3,1672319027),(90123,4,18429,3,1672319027),(90124,4,18430,3,1672319027),(90125,4,18431,3,1672319027),(90126,4,18432,3,1672319027),(90127,4,18433,3,1672319027),(90128,4,18434,3,1672319027),(90129,4,18435,3,1672319027),(90130,4,18436,3,1672319027),(90131,4,18437,3,1672319027),(90132,4,18438,3,1672319027),(90133,4,18439,3,1672319027),(90134,4,18442,3,1672319027),(90135,4,18443,3,1672319027),(90136,4,18444,3,1672319027),(90137,4,18445,3,1672319027),(90138,4,18446,3,1672319027),(90139,4,18447,3,1672319027),(90140,4,18448,3,1672319027),(90141,4,18449,3,1672319027),(90142,4,18450,3,1672319027),(90143,4,18451,3,1672319027),(90144,4,18452,3,1672319027),(90145,4,18453,3,1672319027),(90146,4,18454,3,1672319027),(90147,4,18455,3,1672319027),(90148,4,18456,3,1672319027),(90149,4,18457,3,1672319027),(90150,4,18458,3,1672319027),(90151,4,18459,3,1672319027),(90152,4,18460,3,1672319027),(90153,4,18461,3,1672319027),(90154,4,18462,3,1672319027),(90155,4,18463,3,1672319027),(90156,4,18464,3,1672319027),(90157,4,18465,3,1672319027),(90158,4,18466,3,1672319027),(90159,4,18467,3,1672319027),(90160,4,18468,3,1672319027),(90161,4,18469,3,1672319027),(90162,4,18470,3,1672319027),(90163,4,18471,3,1672319027),(90164,4,18472,3,1672319027),(90165,4,18473,3,1672319027),(90166,4,18474,3,1672319027),(90167,4,18475,3,1672319027),(90168,4,18476,3,1672319027),(90169,4,18477,3,1672319027),(90170,4,18478,3,1672319027),(90171,4,18479,3,1672319027),(90172,4,18480,3,1672319027),(90173,4,18481,3,1672319027),(90174,4,18482,3,1672319027),(90175,4,18483,3,1672319027),(90176,4,18484,3,1672319027),(90177,4,18485,3,1672319027),(90178,4,18486,3,1672319027),(90179,4,18487,3,1672319027),(90180,4,18488,3,1672319027),(90181,4,18489,3,1672319027),(90182,4,18490,3,1672319027),(90183,4,18491,3,1672319027),(90184,4,18492,3,1672319027),(90185,4,18493,3,1672319027),(90186,4,18494,3,1672319027),(90187,4,18495,3,1672319027),(90188,4,18496,3,1672319027),(90189,4,18497,3,1672319027),(90190,4,18498,3,1672319027),(90191,4,18499,3,1672319027),(90192,4,18500,3,1672319027),(90193,4,18501,3,1672319027),(90194,4,18502,3,1672319027),(90195,4,18503,3,1672319027),(90196,4,18504,3,1672319027),(90197,4,18505,3,1672319027),(90198,4,18506,3,1672319027),(90199,4,18507,3,1672319027),(90200,4,18508,3,1672319027),(90201,4,18509,3,1672319027),(90202,4,18510,3,1672319027),(90203,4,18511,3,1672319027),(90204,4,18512,3,1672319027),(90205,4,18513,3,1672319027),(90206,4,18514,3,1672319027),(90207,4,18515,3,1672319027),(90208,4,18516,3,1672319027),(90209,4,18517,3,1672319027),(90210,4,18518,3,1672319027),(90211,4,18519,3,1672319027),(90212,4,18520,3,1672319027),(90213,4,18521,3,1672319027),(90214,4,18522,3,1672319027),(90215,4,18523,3,1672319027),(90216,4,18524,3,1672319027),(90217,4,18525,3,1672319027),(90218,4,18526,3,1672319027),(90219,4,18527,3,1672319027),(90220,4,18528,3,1672319027),(90221,4,18529,3,1672319027),(90222,4,18530,3,1672319027),(90223,4,18531,3,1672319027),(90224,4,18532,3,1672319027),(90225,4,18533,3,1672319027),(90226,4,18534,3,1672319027),(90227,4,18535,3,1672319027),(90228,4,18536,3,1672319027),(90229,4,18537,3,1672319027),(90230,4,18538,3,1672319027),(90231,4,18539,3,1672319027),(90232,4,18540,3,1672319027),(90233,4,18541,3,1672319027),(90234,4,18542,3,1672319027),(90235,4,18543,3,1672319027),(90236,4,18544,3,1672319027),(90237,4,18545,3,1672319027),(90238,4,18546,3,1672319027),(90239,4,18547,3,1672319027),(90240,4,18548,3,1672319027),(90241,4,18549,3,1672319027),(90242,4,18550,3,1672319027),(90243,4,18551,3,1672319027),(90244,4,18552,3,1672319027),(90245,4,18553,3,1672319027),(90246,4,18554,3,1672319027),(90247,4,18555,3,1672319027),(90248,4,18556,3,1672319027),(90249,4,18557,3,1672319027),(90250,4,18558,3,1672319027),(90251,4,18559,3,1672319027),(90252,4,18560,3,1672319027),(90253,4,18561,3,1672319027),(90254,4,18562,3,1672319027),(90255,4,18563,3,1672319027),(90256,4,18564,3,1672319027),(90257,4,18565,3,1672319027),(90258,4,18566,3,1672319027),(90259,4,18567,3,1672319027),(90260,4,18568,3,1672319027),(90261,4,18569,3,1672319027),(90262,4,18570,3,1672319027),(90263,4,18571,3,1672319027),(90264,4,18572,3,1672319027),(90265,4,18573,3,1672319027),(90266,4,18574,3,1672319027),(90267,4,18575,3,1672319027),(90268,4,18576,3,1672319027),(90269,4,18577,3,1672319027),(90270,4,18578,3,1672319027),(90271,4,18579,3,1672319027),(90272,4,18580,3,1672319027),(90273,4,18581,3,1672319027),(90274,4,18582,3,1672319027),(90275,4,18583,3,1672319027),(90276,4,18584,3,1672319027),(90277,4,18585,3,1672319027),(90278,4,18586,3,1672319027),(90279,4,18587,3,1672319027),(90280,4,18588,3,1672319027),(90281,4,18589,3,1672319027),(90282,4,18590,3,1672319027),(90283,4,18591,3,1672319027),(90284,4,18592,3,1672319027),(90285,4,18593,3,1672319027),(90286,4,18594,3,1672319027),(90287,4,18595,3,1672319027),(90288,4,18596,3,1672319027),(90289,4,18597,3,1672319027),(90290,4,18598,3,1672319027),(90291,4,18599,3,1672319027),(90292,4,18600,3,1672319027),(90293,4,18601,3,1672319027),(90294,4,18602,3,1672319027),(90295,4,18603,3,1672319027),(90296,4,18604,3,1672319027),(90297,4,18605,3,1672319027),(90298,4,18606,3,1672319027),(90299,4,18607,3,1672319027),(90300,4,18608,3,1672319027),(90301,4,18609,3,1672319027),(90302,4,18610,3,1672319027),(90303,4,18611,3,1672319027),(90304,4,18612,3,1672319027),(90305,4,18613,3,1672319027),(90306,4,18614,3,1672319027),(90307,4,18615,3,1672319027),(90308,4,18616,3,1672319027),(90309,4,18617,3,1672319027),(90310,4,18618,3,1672319027),(90311,4,18619,3,1672319027),(90312,4,18620,3,1672319027),(90313,4,18621,3,1672319027),(90314,4,18622,3,1672319027),(90315,4,18623,3,1672319027),(90316,4,18624,3,1672319027),(90317,4,18625,3,1672319027),(90318,4,18626,3,1672319027),(90319,4,18627,3,1672319027),(90320,4,18628,3,1672319027),(90321,4,18629,3,1672319027),(90322,4,18630,3,1672319027),(90323,4,18631,3,1672319027),(90324,4,18632,3,1672319027),(90325,4,18633,3,1672319027),(90326,4,18634,3,1672319027),(90327,4,18635,3,1672319027),(90328,4,18636,3,1672319027),(90329,4,18637,3,1672319027),(90330,4,18638,3,1672319027),(90331,4,18639,3,1672319027),(90332,4,18640,3,1672319027),(90333,4,18641,3,1672319027),(90334,4,18642,3,1672319027),(90335,4,18643,3,1672319027),(90336,4,18644,3,1672319027),(90337,4,18645,3,1672319027),(90338,4,18646,3,1672319027),(90339,4,18647,3,1672319027),(90340,4,18648,3,1672319027),(90341,4,18649,3,1672319027),(90342,4,18650,3,1672319027),(90343,4,18651,3,1672319027),(90344,4,18652,3,1672319027),(90345,4,18653,3,1672319027),(90346,4,18654,3,1672319027),(90347,4,18655,3,1672319027),(90348,4,18656,3,1672319027),(90349,4,18657,3,1672319027),(90350,4,18658,3,1672319027),(90351,4,18659,3,1672319027),(90352,4,18660,3,1672319027),(90353,4,18661,3,1672319027),(90354,4,18662,3,1672319027),(90355,4,18663,3,1672319027),(90356,4,18664,3,1672319027),(90357,4,18665,3,1672319027),(90358,4,18666,3,1672319027),(90359,4,18667,3,1672319027),(90360,4,18668,3,1672319027),(90361,4,18669,3,1672319027),(90362,4,18670,3,1672319027),(90363,4,18671,3,1672319027),(90364,4,18672,3,1672319027),(90365,4,18673,3,1672319027),(90366,4,18674,3,1672319027),(90367,4,18675,3,1672319027),(90368,4,18676,3,1672319027),(90369,4,18677,3,1672319027),(90370,4,18678,3,1672319027),(90371,4,18679,3,1672319027),(90372,4,18680,3,1672319027),(90373,4,18681,3,1672319027),(90374,4,18682,3,1672319027),(90375,4,18683,3,1672319027),(90376,4,18684,3,1672319027),(90377,4,18685,3,1672319027),(90378,4,18686,3,1672319027),(90379,4,18687,3,1672319027),(90380,4,18688,3,1672319027),(90381,4,18689,3,1672319027),(90382,4,18690,3,1672319027),(90383,4,18691,3,1672319027),(90384,4,18692,3,1672319027),(90385,4,18693,3,1672319027),(90386,4,18694,3,1672319027),(90387,4,18695,3,1672319027),(90388,4,18696,3,1672319027),(90389,4,18697,3,1672319027),(90390,4,18698,3,1672319027),(90391,4,18699,3,1672319027),(90392,4,18700,3,1672319027),(90393,4,18701,3,1672319027),(90394,4,18702,3,1672319027),(90395,4,18703,3,1672319027),(90396,4,18704,3,1672319027),(90397,4,18705,3,1672319027),(90398,4,18706,3,1672319027),(90399,4,18707,3,1672319027),(90400,4,18708,3,1672319027),(90401,4,18709,3,1672319027),(90402,4,18710,3,1672319027),(90403,4,18711,3,1672319027),(90404,4,18712,3,1672319027),(90405,4,18713,3,1672319027),(90406,4,18714,3,1672319027),(90407,4,18715,3,1672319027),(90408,4,18716,3,1672319027),(90409,4,18717,3,1672319027),(90410,4,18718,3,1672319027),(90411,4,18719,3,1672319027),(90412,4,18720,3,1672319027),(90413,4,18721,3,1672319027),(90414,4,18722,3,1672319027),(90415,4,18723,3,1672319027),(90416,4,18724,3,1672319027),(90417,4,18725,3,1672319027),(90418,4,18726,3,1672319027),(90419,4,18727,3,1672319027),(90420,4,18728,3,1672319027),(90421,4,18729,3,1672319027),(90422,4,18730,3,1672319027),(90423,4,18731,3,1672319027),(90424,4,18732,3,1672319027),(90425,4,18733,3,1672319027),(90426,4,18734,3,1672319027),(90427,4,18735,3,1672319027),(90428,4,18736,3,1672319027),(90429,4,18737,3,1672319027),(90430,4,18738,3,1672319027),(90431,4,18739,3,1672319027),(90432,4,18740,3,1672319027),(90433,4,18741,3,1672319027),(90434,4,18742,3,1672319027),(90435,4,18743,3,1672319027),(90436,4,18744,3,1672319027),(90437,4,18745,3,1672319027),(90438,4,18746,3,1672319027),(90439,4,18747,3,1672319027),(90440,4,18748,3,1672319027),(90441,4,18749,3,1672319027),(90442,4,18750,3,1672319027),(90443,4,18751,3,1672319027),(90444,4,18752,3,1672319027),(90445,4,18753,3,1672319027),(90446,4,18754,3,1672319027),(90447,4,18755,3,1672319027),(90448,4,18756,3,1672319027),(90449,4,18757,3,1672319027),(90450,4,18758,3,1672319027),(90451,4,18759,3,1672319027),(90452,4,18760,3,1672319027),(90453,4,18761,3,1672319027),(90454,4,18762,3,1672319027),(90455,4,18763,3,1672319027),(90456,4,18764,3,1672319027),(90457,4,18765,3,1672319027),(90458,4,18766,3,1672319027),(90459,4,18767,3,1672319027),(90460,4,18768,3,1672319027),(90461,4,18769,3,1672319027),(90462,4,18770,3,1672319027),(90463,4,18771,3,1672319027),(90464,4,18772,3,1672319027),(90465,4,18773,3,1672319027),(90466,4,18774,3,1672319027),(90467,4,18775,3,1672319027),(90468,4,18776,3,1672319027),(90469,4,18777,3,1672319027),(90470,4,18778,3,1672319027),(90471,4,18779,3,1672319027),(90472,4,18780,3,1672319027),(90473,4,18781,3,1672319027),(90474,4,18782,3,1672319027),(90475,4,18783,3,1672319027),(90476,4,18784,3,1672319027),(90477,4,18785,3,1672319027),(90478,4,18786,3,1672319027),(90479,4,18788,3,1672319027),(90480,4,18789,3,1672319027),(90481,4,18790,3,1672319027),(90482,4,18791,3,1672319027),(90483,4,18792,3,1672319027),(90484,4,18793,3,1672319027),(90485,4,18794,3,1672319027),(90486,4,18795,3,1672319027),(90487,4,18796,3,1672319027),(90488,4,18797,3,1672319027),(90489,4,18798,3,1672319027),(90490,4,18799,3,1672319027),(90491,4,18800,3,1672319027),(90492,4,18801,3,1672319027),(90493,4,18802,3,1672319027),(90494,4,18803,3,1672319027),(90495,4,18804,3,1672319027),(90496,4,18805,3,1672319027),(90497,4,18806,3,1672319027),(90498,4,18807,3,1672319027),(90499,4,18808,3,1672319027),(90500,4,18809,3,1672319027),(90501,4,18810,3,1672319027),(90502,4,18811,3,1672319027),(90503,4,18812,3,1672319027),(90504,4,18813,3,1672319027),(90505,4,18814,3,1672319027),(90506,4,18815,3,1672319027),(90507,4,18816,3,1672319027),(90508,4,18817,3,1672319027),(90509,4,18818,3,1672319027),(90510,4,18820,3,1672319027),(90511,4,18821,3,1672319027),(90512,4,18822,3,1672319027),(90513,4,18823,3,1672319027),(90514,4,18824,3,1672319027),(90515,4,18825,3,1672319027),(90516,4,18826,3,1672319027),(90517,4,18827,3,1672319027),(90518,4,18828,3,1672319027),(90519,4,18829,3,1672319027),(90520,4,18830,3,1672319027),(90521,4,18831,3,1672319027),(90522,4,18832,3,1672319027),(90523,4,18833,3,1672319027),(90524,4,18834,3,1672319027),(90525,4,18835,3,1672319027),(90526,4,18836,3,1672319027),(90527,4,18837,3,1672319027),(90528,4,18838,3,1672319027),(90529,4,18839,3,1672319027),(90530,4,18840,3,1672319027),(90531,4,18841,3,1672319027),(90532,4,18842,3,1672319027),(90533,4,18843,3,1672319027),(90534,4,18844,3,1672319027),(90535,4,18845,3,1672319027),(90536,4,18846,3,1672319027),(90537,4,18847,3,1672319027),(90538,4,18848,3,1672319027),(90539,4,18849,3,1672319027),(90540,4,18850,3,1672319027),(90541,4,18851,3,1672319027),(90542,4,18852,3,1672319027),(90543,4,18853,3,1672319027),(90544,4,18854,3,1672319027),(90545,4,18855,3,1672319027),(90546,4,18856,3,1672319027),(90547,4,18857,3,1672319027),(90548,4,18858,3,1672319027),(90549,4,18859,3,1672319027),(90550,4,18860,3,1672319027),(90551,4,18861,3,1672319027),(90552,4,18862,3,1672319027),(90553,4,18863,3,1672319027),(90554,4,18864,3,1672319027),(90555,4,18865,3,1672319027),(90556,4,18866,3,1672319027),(90557,4,18867,3,1672319027),(90558,4,18868,3,1672319027),(90559,4,18869,3,1672319027),(90560,4,18870,3,1672319027),(90561,4,18871,3,1672319027),(90562,4,18872,3,1672319027),(90563,4,18873,3,1672319027),(90564,4,18874,3,1672319027),(90565,4,18875,3,1672319027),(90566,4,18876,3,1672319027),(90567,4,18877,3,1672319027),(90568,4,18878,3,1672319027),(90569,4,18879,3,1672319027),(90570,4,18880,3,1672319027),(90571,4,18881,3,1672319027),(90572,4,18882,3,1672319027),(90573,4,18883,3,1672319027),(90574,4,18884,3,1672319027),(90575,4,18885,3,1672319027),(90576,4,18886,3,1672319027),(90577,4,18887,3,1672319027),(90578,4,18888,3,1672319027),(90579,4,18889,3,1672319027),(90580,4,18890,3,1672319027),(90581,4,18891,3,1672319027),(90582,4,18892,3,1672319027),(90583,4,18893,3,1672319027),(90584,4,18894,3,1672319027),(90585,4,18895,3,1672319027),(90586,4,18896,3,1672319027),(90587,4,18897,3,1672319027),(90588,4,18898,3,1672319027),(90589,4,18899,3,1672319027),(90590,4,18900,3,1672319027),(90591,4,18901,3,1672319027),(90592,4,18902,3,1672319027),(90593,4,18903,3,1672319027),(90594,4,18904,3,1672319027),(90595,4,18905,3,1672319027),(90596,4,18906,3,1672319027),(90597,4,18907,3,1672319027),(90598,4,18908,3,1672319027),(90599,4,18909,3,1672319027),(90600,4,18910,3,1672319027),(90601,4,18911,3,1672319027),(90602,4,18912,3,1672319027),(90603,4,18913,3,1672319027),(90604,4,18914,3,1672319027),(90605,4,18915,3,1672319027),(90606,4,18916,3,1672319027),(90607,4,18917,3,1672319027),(90608,4,18918,3,1672319027),(90609,4,18919,3,1672319027),(90610,4,18920,3,1672319027),(90611,4,18921,3,1672319027),(90612,4,18922,3,1672319027),(90613,4,18923,3,1672319027),(90614,4,18924,3,1672319027),(90615,4,18925,3,1672319027),(90616,4,18926,3,1672319027),(90617,4,18927,3,1672319027),(90618,4,18928,3,1672319027),(90619,4,18929,3,1672319027),(90620,4,18930,3,1672319027),(90621,4,18931,3,1672319027),(90622,4,18932,3,1672319027),(90623,4,18933,3,1672319027),(90624,4,18934,3,1672319027),(90625,4,18935,3,1672319027),(90626,4,18936,3,1672319027),(90627,4,18937,3,1672319027),(90628,4,18938,3,1672319027),(90629,4,18939,3,1672319027),(90630,4,18940,3,1672319027),(90631,4,18941,3,1672319027),(90632,4,18942,3,1672319027),(90633,4,18943,3,1672319027),(90634,4,18944,3,1672319027),(90635,4,18945,3,1672319027),(90636,4,18946,3,1672319027),(90637,4,18947,3,1672319027),(90638,4,18948,3,1672319027),(90639,4,18949,3,1672319027),(90640,4,18950,3,1672319027),(90641,4,18951,3,1672319027),(90642,4,18952,3,1672319027),(90643,4,18953,3,1672319027),(90644,4,18954,3,1672319027),(90645,4,18955,3,1672319027),(90646,4,18956,3,1672319027),(90647,4,18957,3,1672319027),(90648,4,18958,3,1672319027),(90649,4,18959,3,1672319027),(90650,4,18960,3,1672319027),(90651,4,18961,3,1672319027),(90652,4,18962,3,1672319027),(90653,4,18963,3,1672319027),(90654,4,18964,3,1672319027),(90655,4,18965,3,1672319027),(90656,4,18966,3,1672319027),(90657,4,18967,3,1672319027),(90658,4,18968,3,1672319027),(90659,4,18969,3,1672319027),(90660,4,18970,3,1672319027),(90661,4,18971,3,1672319027),(90662,4,18972,3,1672319027),(90663,4,18973,3,1672319027),(90664,4,18974,3,1672319027),(90665,4,18975,3,1672319027),(90666,4,18976,3,1672319027),(90667,4,18977,3,1672319027),(90668,4,18978,3,1672319027),(90669,4,18979,3,1672319027),(90670,4,18980,3,1672319027),(90671,4,18981,3,1672319027),(90672,4,18982,3,1672319027),(90673,4,18983,3,1672319027),(90674,4,18984,3,1672319027),(90675,4,18985,3,1672319027),(90676,4,18986,3,1672319027),(90677,4,18987,3,1672319027),(90678,4,18988,3,1672319027),(90679,4,18989,3,1672319027),(90680,4,18990,3,1672319027),(90681,4,18991,3,1672319027),(90682,4,18992,3,1672319027),(90683,4,18993,3,1672319027),(90684,4,18994,3,1672319027),(90685,4,18995,3,1672319027),(90686,4,18996,3,1672319027),(90687,4,18997,3,1672319027),(90688,4,18998,3,1672319027),(90689,4,18999,3,1672319027),(90690,4,19000,3,1672319027),(90691,4,19001,3,1672319027),(90692,4,19002,3,1672319027),(90693,4,19003,3,1672319027),(90694,4,19004,3,1672319027),(90695,4,19005,3,1672319027),(90696,4,19006,3,1672319027),(90697,4,19007,3,1672319027),(90698,4,19008,3,1672319027),(90699,4,19009,3,1672319027),(90700,4,19010,3,1672319027),(90701,4,19011,3,1672319027),(90702,4,19012,3,1672319027),(90703,4,19013,3,1672319027),(90704,4,19014,3,1672319027),(90705,4,19015,3,1672319027),(90706,4,19016,3,1672319027),(90707,4,19017,3,1672319027),(90708,4,19018,3,1672319027),(90709,4,19019,3,1672319027),(90710,4,19020,3,1672319027),(90711,4,19021,3,1672319027),(90712,4,19022,3,1672319027),(90713,4,19023,3,1672319027),(90714,4,19024,3,1672319027),(90715,4,19025,3,1672319027),(90716,4,19026,3,1672319027),(90717,4,19027,3,1672319027),(90718,4,19028,3,1672319027),(90719,4,19029,3,1672319027),(90720,4,19030,3,1672319027),(90721,4,19031,3,1672319027),(90722,4,19032,3,1672319027),(90723,4,19033,3,1672319027),(90724,4,19034,3,1672319027),(90725,4,19035,3,1672319027),(90726,4,19036,3,1672319027),(90727,4,19037,3,1672319027),(90728,4,19038,3,1672319027),(90729,4,19039,3,1672319027),(90730,4,19040,3,1672319027),(90731,4,19041,3,1672319027),(90732,4,19042,3,1672319027),(90733,4,19043,3,1672319027),(90734,4,19044,3,1672319027),(90735,4,19045,3,1672319027),(90736,4,19046,3,1672319027),(90737,4,19047,3,1672319027),(90738,4,19048,3,1672319027),(90739,4,19049,3,1672319027),(90740,4,19050,3,1672319027),(90741,4,19051,3,1672319027),(90742,4,19052,3,1672319027),(90743,4,19053,3,1672319027),(90744,4,19054,3,1672319027),(90745,4,19055,3,1672319027),(90746,4,19056,3,1672319027),(90747,4,19057,3,1672319027),(90748,4,19058,3,1672319027),(90749,4,19059,3,1672319027),(90750,4,19060,3,1672319027),(90751,4,19061,3,1672319027),(90752,4,19062,3,1672319027),(90753,4,19063,3,1672319027),(90754,4,19064,3,1672319027),(90755,4,19065,3,1672319027),(90756,4,19066,3,1672319027),(90757,4,19067,3,1672319027),(90758,4,19068,3,1672319027),(90759,4,19069,3,1672319027),(90760,4,19070,3,1672319027),(90761,4,19071,3,1672319027),(90762,4,19072,3,1672319027),(90763,4,19073,3,1672319027),(90764,4,19074,3,1672319027),(90765,4,19075,3,1672319027),(90766,4,19076,3,1672319027),(90767,4,19077,3,1672319027),(90768,4,19078,3,1672319027),(90769,4,19079,3,1672319027),(90770,4,19080,3,1672319027),(90771,4,19081,3,1672319027),(90772,4,19082,3,1672319027),(90773,4,19083,3,1672319027),(90774,4,19084,3,1672319027),(90775,4,19085,3,1672319027),(90776,4,19086,3,1672319027),(90777,4,19087,3,1672319027),(90778,4,19088,3,1672319027),(90779,4,19089,3,1672319027),(90780,4,19090,3,1672319027),(90781,4,19091,3,1672319027),(90782,4,19092,3,1672319027),(90783,4,19093,3,1672319027),(90784,4,19094,3,1672319027),(90785,4,19095,3,1672319027),(90786,4,19096,3,1672319027),(90787,4,19097,3,1672319027),(90788,4,19098,3,1672319027),(90789,4,19099,3,1672319027),(90790,4,19100,3,1672319027),(90791,4,19101,3,1672319027),(90792,4,19102,3,1672319027),(90793,4,19103,3,1672319027),(90794,4,19104,3,1672319027),(90795,4,19105,3,1672319027),(90796,4,19106,3,1672319027),(90797,4,19107,3,1672319027),(90798,4,19108,3,1672319027),(90799,4,19109,3,1672319027),(90800,4,19110,3,1672319027),(90801,4,19111,3,1672319027),(90802,4,19112,3,1672319027),(90803,4,19113,3,1672319027),(90804,4,19114,3,1672319027),(90805,4,19115,3,1672319027),(90806,4,19116,3,1672319027),(90807,4,19117,3,1672319027),(90808,4,19118,3,1672319027),(90809,4,19119,3,1672319027),(90810,4,19120,3,1672319027),(90811,4,19121,3,1672319027),(90812,4,19122,3,1672319027),(90813,4,19123,3,1672319027),(90814,4,19124,3,1672319027),(90815,4,19125,3,1672319027),(90816,4,19126,3,1672319027),(90817,4,19127,3,1672319027),(90818,4,19128,3,1672319027),(90819,4,19129,3,1672319027),(90820,4,19130,3,1672319027),(90821,4,19131,3,1672319027),(90822,4,19132,3,1672319027),(90823,4,19133,3,1672319027),(90824,4,19134,3,1672319027),(90825,4,19135,3,1672319027),(90826,4,19136,3,1672319027),(90827,4,19137,3,1672319027),(90828,4,19138,3,1672319027),(90829,4,19139,3,1672319027),(90830,4,19140,3,1672319027),(90831,4,19141,3,1672319027),(90832,4,19142,3,1672319027),(90833,4,19143,3,1672319027),(90834,4,19144,3,1672319027),(90835,4,19145,3,1672319027),(90836,4,19146,3,1672319027),(90837,4,19147,3,1672319027),(90838,4,19148,3,1672319027),(90839,4,19149,3,1672319027),(90840,4,19150,3,1672319027),(90841,4,19151,3,1672319027),(90842,4,19152,3,1672319027),(90843,4,19153,3,1672319027),(90844,4,19154,3,1672319027),(90845,4,19155,3,1672319027),(90846,4,19156,3,1672319027),(90847,4,19157,3,1672319027),(90848,4,19158,3,1672319027),(90849,4,19159,3,1672319027),(90850,4,19160,3,1672319027),(90851,4,19161,3,1672319027),(90852,4,19162,3,1672319027),(90853,4,19163,3,1672319027),(90854,4,19164,3,1672319027),(90855,4,19165,3,1672319027),(90856,4,19166,3,1672319027),(90857,4,19167,3,1672319027),(90858,4,19168,3,1672319027),(90859,4,19169,3,1672319027),(90860,4,19170,3,1672319027),(90861,4,19171,3,1672319027),(90862,4,19172,3,1672319027),(90863,4,19173,3,1672319027),(90864,4,19174,3,1672319027),(90865,4,19175,3,1672319027),(90866,4,19176,3,1672319027),(90867,4,19177,3,1672319027),(90868,4,19178,3,1672319027),(90869,4,19179,3,1672319027),(90870,4,19180,3,1672319027),(90871,4,19181,3,1672319027),(90872,4,19182,3,1672319027),(90873,4,19183,3,1672319027),(90874,4,19184,3,1672319027),(90875,4,19185,3,1672319027),(90876,4,19186,3,1672319027),(90877,4,19187,3,1672319027),(90878,4,19188,3,1672319027),(90879,4,19189,3,1672319027),(90880,4,19190,3,1672319027),(90881,4,19191,3,1672319027),(90882,4,19192,3,1672319027),(90883,4,19193,3,1672319027),(90884,4,19194,3,1672319027),(90885,4,19195,3,1672319027),(90886,4,19196,3,1672319027),(90887,4,19197,3,1672319027),(90888,4,19198,3,1672319027),(90889,4,19199,3,1672319027),(90890,4,19200,3,1672319027),(90891,4,19201,3,1672319027),(90892,4,19202,3,1672319027),(90893,4,19203,3,1672319027),(90894,4,19204,3,1672319027),(90895,4,19205,3,1672319027),(90896,4,19206,3,1672319027),(90897,4,19207,3,1672319027),(90898,4,19208,3,1672319027),(90899,4,19209,3,1672319027),(90900,4,19210,3,1672319027),(90901,4,19211,3,1672319027),(90902,4,19212,3,1672319027),(90903,4,19213,3,1672319027),(90904,4,19214,3,1672319027),(90905,4,19215,3,1672319027),(90906,4,19216,3,1672319027),(90907,4,19217,3,1672319027),(90908,4,19218,3,1672319027),(90909,4,19219,3,1672319027),(90910,4,19220,3,1672319027),(90911,4,19221,3,1672319027),(90912,4,19222,3,1672319027),(90913,4,19223,3,1672319027),(90914,4,19224,3,1672319027),(90915,4,19225,3,1672319027),(90916,4,19226,3,1672319027),(90917,4,19227,3,1672319027),(90918,4,19228,3,1672319027),(90919,4,19229,3,1672319027),(90920,4,19230,3,1672319027),(90921,4,19231,3,1672319027),(90922,4,19232,3,1672319027),(90923,4,19233,3,1672319027),(90924,4,19234,3,1672319027),(90925,4,19235,3,1672319027),(90926,4,19236,3,1672319027),(90927,4,19237,3,1672319027),(90928,4,19238,3,1672319027),(90929,4,19239,3,1672319027),(90930,4,19240,3,1672319027),(90931,4,19241,3,1672319027),(90932,4,19242,3,1672319027),(90933,4,19243,3,1672319027),(90934,4,19244,3,1672319027),(90935,4,19245,3,1672319027),(90936,4,19246,3,1672319027),(90937,4,19247,3,1672319027),(90938,4,19248,3,1672319027),(90939,4,19249,3,1672319027),(90940,4,19250,3,1672319027),(90941,4,19251,3,1672319027),(90942,4,19252,3,1672319027),(90943,4,19253,3,1672319027),(90944,4,19254,3,1672319027),(90945,4,19255,3,1672319027),(90946,4,19256,3,1672319027),(90947,4,19257,3,1672319027),(90948,4,19258,3,1672319027),(90949,4,19259,3,1672319027),(90950,4,19260,3,1672319027),(90951,4,19261,3,1672319027),(90952,4,19262,3,1672319027),(90953,4,19263,3,1672319027),(90954,4,19264,3,1672319027),(90955,4,19265,3,1672319027),(90956,4,19266,3,1672319027),(90957,4,19267,3,1672319027),(90958,4,19268,3,1672319027),(90959,4,19269,3,1672319027),(90960,4,19270,3,1672319027),(90961,4,19271,3,1672319027),(90962,4,19272,3,1672319027),(90963,4,19273,3,1672319027),(90964,4,19274,3,1672319027),(90965,4,19275,3,1672319027),(90966,4,19276,3,1672319027),(90967,4,19277,3,1672319027),(90968,4,19278,3,1672319027),(90969,4,19279,3,1672319027),(90970,4,19280,3,1672319027),(90971,4,19281,3,1672319027),(90972,4,19282,3,1672319027),(90973,4,19283,3,1672319027),(90974,4,19284,3,1672319027),(90975,4,19285,3,1672319027),(90976,4,19286,3,1672319027),(90977,4,19287,3,1672319027),(90978,4,19288,3,1672319027),(90979,4,19289,3,1672319027),(90980,4,19290,3,1672319027),(90981,4,19291,3,1672319027),(90982,4,19292,3,1672319027),(90983,4,19293,3,1672319027),(90984,4,19294,3,1672319027),(90985,4,19295,3,1672319027),(90986,4,19296,3,1672319027),(90987,4,19297,3,1672319027),(90988,4,19298,3,1672319027),(90989,4,19299,3,1672319027),(90990,4,19300,3,1672319027),(90991,4,19301,3,1672319027),(90992,4,19302,3,1672319027),(90993,4,19303,3,1672319027),(90994,4,19304,3,1672319027),(90995,4,19305,3,1672319027),(90996,4,19306,3,1672319027),(90997,4,19307,3,1672319027),(90998,4,19308,3,1672319027),(90999,4,19309,3,1672319027),(91000,4,19310,3,1672319027),(91001,4,19311,3,1672319027),(91002,4,19312,3,1672319027),(91003,4,19313,3,1672319027),(91004,4,19314,3,1672319027),(91005,4,19315,3,1672319027),(91006,4,19316,3,1672319027),(91007,4,19317,3,1672319027),(91008,4,19318,3,1672319027),(91009,4,19319,3,1672319027),(91010,4,19320,3,1672319027),(91011,4,19321,3,1672319027),(91012,4,19322,3,1672319027),(91013,4,19323,3,1672319027),(91014,4,19324,3,1672319027),(91015,4,19325,3,1672319027),(91016,4,19326,3,1672319027),(91017,4,19327,3,1672319027),(91018,4,19328,3,1672319027),(91019,4,19329,3,1672319027),(91020,4,19330,3,1672319027),(91021,4,19331,3,1672319027),(91022,4,19332,3,1672319027),(91023,4,19333,3,1672319027),(91024,4,19334,3,1672319027),(91025,4,19335,3,1672319027),(91026,4,19336,3,1672319027),(91027,4,19337,3,1672319027),(91028,4,19338,3,1672319027),(91029,4,19339,3,1672319027),(91030,4,19340,3,1672319027),(91031,4,19341,3,1672319027),(91032,4,19342,3,1672319027),(91033,4,19343,3,1672319027),(91034,4,19344,3,1672319027),(91035,4,19345,3,1672319027),(91036,4,19346,3,1672319027),(91037,4,19347,3,1672319027),(91038,4,19348,3,1672319027),(91039,4,19349,3,1672319027),(91040,4,19350,3,1672319027),(91041,4,19351,3,1672319027),(91042,4,19352,3,1672319027),(91043,4,19353,3,1672319027),(91044,4,19354,3,1672319027),(91045,4,19355,3,1672319027),(91046,4,19356,3,1672319027),(91047,4,19357,3,1672319027),(91048,4,19358,3,1672319027),(91049,4,19359,3,1672319027),(91050,4,19360,3,1672319027),(91051,4,19361,3,1672319027),(91052,4,19362,3,1672319027),(91053,4,19363,3,1672319027),(91054,4,19364,3,1672319027),(91055,4,19365,3,1672319027),(91056,4,19366,3,1672319027),(91057,4,19367,3,1672319027),(91058,4,19368,3,1672319027),(91059,4,19369,3,1672319027),(91060,4,19370,3,1672319027),(91061,4,19371,3,1672319027),(91062,4,19372,3,1672319027),(91063,4,19373,3,1672319027),(91064,4,19374,3,1672319027),(91065,4,19375,3,1672319027),(91066,4,19376,3,1672319027),(91067,4,19377,3,1672319027),(91068,4,19378,3,1672319027),(91069,4,19379,3,1672319027),(91070,4,19380,3,1672319027),(91071,4,19381,3,1672319027),(91072,4,19382,3,1672319027),(91073,4,19383,3,1672319027),(91074,4,19384,3,1672319027),(91075,4,19385,3,1672319027),(91076,4,19386,3,1672319027),(91077,4,19387,3,1672319027),(91078,4,19388,3,1672319027),(91079,4,19389,3,1672319027),(91080,4,19390,3,1672319027),(91081,4,19391,3,1672319027),(91082,4,19392,3,1672319027),(91083,4,19393,3,1672319027),(91084,4,19394,3,1672319027),(91085,4,19395,3,1672319027),(91086,4,19396,3,1672319027),(91087,4,19397,3,1672319027),(91088,4,19398,3,1672319027),(91089,4,19399,3,1672319027),(91090,4,19400,3,1672319027),(91091,4,19401,3,1672319027),(91092,4,19402,3,1672319027),(91093,4,19403,3,1672319027),(91094,4,19404,3,1672319027),(91095,4,19405,3,1672319027),(91096,4,19406,3,1672319027),(91097,4,19407,3,1672319027),(91098,4,19408,3,1672319027),(91099,4,19409,3,1672319027),(91100,4,19410,3,1672319027),(91101,4,19411,3,1672319027),(91102,4,19412,3,1672319027),(91103,4,19413,3,1672319027),(91104,4,19414,3,1672319027),(91105,4,19415,3,1672319027),(91106,4,19416,3,1672319027),(91107,4,19417,3,1672319027),(91108,4,19418,3,1672319027),(91109,4,19419,3,1672319027),(91110,4,19420,3,1672319027),(91111,4,19421,3,1672319027),(91112,4,19422,3,1672319027),(91113,4,19423,3,1672319027),(91114,4,19424,3,1672319027),(91115,4,19425,3,1672319027),(91116,4,19426,3,1672319027),(91117,4,19427,3,1672319027),(91118,4,19428,3,1672319027),(91119,4,19429,3,1672319027),(91120,4,19430,3,1672319027),(91121,4,19431,3,1672319027),(91122,4,19432,3,1672319027),(91123,4,19433,3,1672319027),(91124,4,19434,3,1672319027),(91125,4,19435,3,1672319027),(91126,4,19436,3,1672319027),(91127,4,19437,3,1672319027),(91128,4,19438,3,1672319027),(91129,4,19439,3,1672319027),(91130,4,19440,3,1672319027),(91131,4,19441,3,1672319027),(91132,4,19442,3,1672319027),(91133,4,19443,3,1672319027),(91134,4,19444,3,1672319027),(91135,4,19445,3,1672319027),(91136,4,19446,3,1672319027),(91137,4,19447,3,1672319027),(91138,4,19448,3,1672319027),(91139,4,19449,3,1672319027),(91140,4,19450,3,1672319027),(91141,4,19451,3,1672319027),(91142,4,19452,3,1672319027),(91143,4,19453,3,1672319027),(91144,4,19454,3,1672319027),(91145,4,19455,3,1672319027),(91146,4,19456,3,1672319027),(91147,4,19457,3,1672319027),(91148,4,19458,3,1672319027),(91149,4,19459,3,1672319027),(91150,4,19460,3,1672319027),(91151,4,19461,3,1672319027),(91152,4,19462,3,1672319027),(91153,4,19463,3,1672319027),(91154,4,19464,3,1672319027),(91155,4,19465,3,1672319027),(91156,4,19466,3,1672319027),(91157,4,19467,3,1672319027),(91158,4,19468,3,1672319027),(91159,4,19469,3,1672319027),(91160,4,19470,3,1672319027),(91161,4,19471,3,1672319027),(91162,4,19472,3,1672319027),(91163,4,19473,3,1672319027),(91164,4,19474,3,1672319027),(91165,4,19475,3,1672319027),(91166,4,19476,3,1672319027),(91167,4,19477,3,1672319027),(91168,4,19478,3,1672319027),(91169,4,19479,3,1672319027),(91170,4,19480,3,1672319027),(91171,4,19481,3,1672319027),(91172,4,19482,3,1672319027),(91173,4,19483,3,1672319027),(91174,4,19484,3,1672319027),(91175,4,19485,3,1672319027),(91176,4,19486,3,1672319027),(91177,4,19487,3,1672319027),(91178,4,19488,3,1672319027),(91179,4,19489,3,1672319027),(91180,4,19490,3,1672319027),(91181,4,19491,3,1672319027),(91182,4,19492,3,1672319027),(91183,4,19493,3,1672319027),(91184,4,19494,3,1672319027),(91185,4,19495,3,1672319027),(91186,4,19496,3,1672319027),(91187,4,19497,3,1672319027),(91188,4,19498,3,1672319027),(91189,4,19499,3,1672319027),(91190,4,19500,3,1672319027),(91191,4,19501,3,1672319027),(91192,4,19502,3,1672319027),(91193,4,19503,3,1672319027),(91194,4,19504,3,1672319027),(91195,4,19505,3,1672319027),(91196,4,19506,3,1672319027),(91197,4,19507,3,1672319027),(91198,4,19508,3,1672319027),(91199,4,19509,3,1672319027),(91200,4,19510,3,1672319027),(91201,4,19511,3,1672319027),(91202,4,19512,3,1672319027),(91203,4,19513,3,1672319027),(91204,4,19514,3,1672319027),(91205,4,19515,3,1672319027),(91206,4,19516,3,1672319027),(91207,4,19517,3,1672319027),(91208,4,19518,3,1672319027),(91209,4,19519,3,1672319027),(91210,4,19520,3,1672319027),(91211,4,19521,3,1672319027),(91212,4,19522,3,1672319027),(91213,4,19523,3,1672319027),(91214,4,19524,3,1672319027),(91215,4,19525,3,1672319027),(91216,4,19526,3,1672319027),(91217,4,19527,3,1672319027),(91218,4,19528,3,1672319027),(91219,4,19529,3,1672319027),(91220,4,19530,3,1672319027),(91221,4,19531,3,1672319027),(91222,4,19532,3,1672319027),(91223,4,19533,3,1672319027),(91224,4,19534,3,1672319027),(91225,4,19535,3,1672319027),(91226,4,19536,3,1672319027),(91227,4,19537,3,1672319027),(91228,4,19538,3,1672319027),(91229,4,19539,3,1672319027),(91230,4,19540,3,1672319027),(91231,4,19541,3,1672319027),(91232,4,19542,3,1672319027),(91233,4,19543,3,1672319027),(91234,4,19544,3,1672319027),(91235,4,19545,3,1672319027),(91236,4,19546,3,1672319027),(91237,4,19547,3,1672319027),(91238,4,19548,3,1672319027),(91239,4,19549,3,1672319027),(91240,4,19550,3,1672319027),(91241,4,19551,3,1672319027),(91242,4,19552,3,1672319027),(91243,4,19553,3,1672319027),(91244,4,19554,3,1672319027),(91245,4,19555,3,1672319027),(91246,4,19556,3,1672319027),(91247,4,19557,3,1672319027),(91248,4,19558,3,1672319027),(91249,4,19559,3,1672319027),(91250,4,19560,3,1672319027),(91251,4,19561,3,1672319027),(91252,4,19562,3,1672319027),(91253,4,19563,3,1672319027),(91254,4,19564,3,1672319027),(91255,4,19565,3,1672319027),(91256,4,19566,3,1672319027),(91257,4,19567,3,1672319027),(91258,4,19568,3,1672319027),(91259,4,19569,3,1672319027),(91260,4,19570,3,1672319027),(91261,4,19571,3,1672319027),(91262,4,19572,3,1672319027),(91263,4,19573,3,1672319027),(91264,4,19574,3,1672319027),(91265,4,19575,3,1672319027),(91266,4,19576,3,1672319027),(91267,4,19577,3,1672319027),(91268,4,19578,3,1672319027),(91269,4,19579,3,1672319027),(91270,4,19580,3,1672319027),(91271,4,19581,3,1672319027),(91272,4,19582,3,1672319027),(91273,4,19583,3,1672319027),(91274,4,19584,3,1672319027),(91275,4,19585,3,1672319027),(91276,4,19586,3,1672319027),(91277,4,19587,3,1672319027),(91278,4,19588,3,1672319027),(91279,4,19589,3,1672319027),(91280,4,19590,3,1672319027),(91281,4,19591,3,1672319027),(91282,4,19592,3,1672319027),(91283,4,19593,3,1672319027),(91284,4,19594,3,1672319027),(91285,4,19595,3,1672319027),(91286,4,19596,3,1672319027),(91287,4,19597,3,1672319027),(91288,4,19598,3,1672319027),(91289,4,19599,3,1672319027),(91290,4,19600,3,1672319027),(91291,4,19601,3,1672319027),(91292,4,19602,3,1672319027),(91293,4,19603,3,1672319027),(91294,4,19604,3,1672319027),(91295,4,19605,3,1672319027),(91296,4,19606,3,1672319027),(91297,4,19607,3,1672319027),(91298,4,19608,3,1672319027),(91299,4,19609,3,1672319027),(91300,4,19610,3,1672319027),(91301,4,19611,3,1672319027),(91302,4,19612,3,1672319027),(91303,4,19613,3,1672319027),(91304,4,19614,3,1672319027),(91305,4,19615,3,1672319027),(91306,4,19616,3,1672319027),(91307,4,19617,3,1672319027),(91308,4,19618,3,1672319027),(91309,4,19619,3,1672319027),(91310,4,19620,3,1672319027),(91311,4,19621,3,1672319027),(91312,4,19622,3,1672319027),(91313,4,19623,3,1672319027),(91314,4,19624,3,1672319027),(91315,4,19625,3,1672319027),(91316,4,19626,3,1672319027),(91317,4,19627,3,1672319027),(91318,4,19628,3,1672319027),(91319,4,19629,3,1672319027),(91320,4,19630,3,1672319027),(91321,4,19631,3,1672319027),(91322,4,19632,3,1672319027),(91323,4,19633,3,1672319027),(91324,4,19634,3,1672319027),(91325,4,19635,3,1672319027),(91326,4,19636,3,1672319027),(91327,4,19637,3,1672319027),(91328,4,19638,3,1672319027),(91329,4,19639,3,1672319027),(91330,4,19640,3,1672319027),(91331,4,19641,3,1672319027),(91332,4,19642,3,1672319027),(91333,4,19643,3,1672319027),(91334,4,19644,3,1672319027),(91335,4,19645,3,1672319027),(91336,4,19646,3,1672319027),(91337,4,19647,3,1672319027),(91338,4,19648,3,1672319027),(91339,4,19649,3,1672319027),(91340,4,19650,3,1672319027),(91341,4,19651,3,1672319027),(91342,4,19652,3,1672319027),(91343,4,19653,3,1672319027),(91344,4,19654,3,1672319027),(91345,4,19655,3,1672319027),(91346,4,19656,3,1672319027),(91347,4,19657,3,1672319027),(91348,4,19658,3,1672319027),(91349,4,19659,3,1672319027),(91350,4,19660,3,1672319027),(91351,4,19661,3,1672319027),(91352,4,19662,3,1672319027),(91353,4,19663,3,1672319027),(91354,4,19664,3,1672319027),(91355,4,19665,3,1672319027),(91356,4,19666,3,1672319027),(91357,4,19667,3,1672319027),(91358,4,19668,3,1672319027),(91359,4,19669,3,1672319027),(91360,4,19670,3,1672319027),(91361,4,19671,3,1672319027),(91362,4,19672,3,1672319027),(91363,4,19673,3,1672319027),(91364,4,19674,3,1672319027),(91365,4,19675,3,1672319027),(91366,4,19676,3,1672319027),(91367,4,19677,3,1672319027),(91368,4,19678,3,1672319027),(91369,4,19679,3,1672319027),(91370,4,19680,3,1672319027),(91371,4,19681,3,1672319027),(91372,4,19682,3,1672319027),(91373,4,19683,3,1672319027),(91374,4,19684,3,1672319027),(91375,4,19685,3,1672319027),(91376,4,19686,3,1672319027),(91377,4,19687,3,1672319027),(91378,4,19688,3,1672319027),(91379,4,19689,3,1672319027),(91380,4,19690,3,1672319027),(91381,4,19691,3,1672319027),(91382,4,19692,3,1672319027),(91383,4,19693,3,1672319027),(91384,4,19694,3,1672319027),(91385,4,19695,3,1672319027),(91386,4,19696,3,1672319027),(91387,4,19697,3,1672319027),(91388,4,19698,3,1672319027),(91389,4,19699,3,1672319027),(91390,4,19700,3,1672319027),(91391,4,19701,3,1672319027),(91392,4,19702,3,1672319027),(91393,4,19703,3,1672319027),(91394,4,19704,3,1672319027),(91395,4,19705,3,1672319027),(91396,4,19706,3,1672319027),(91397,4,19707,3,1672319027),(91398,4,19708,3,1672319027),(91399,4,19709,3,1672319027),(91400,4,19710,3,1672319027),(91401,4,19711,3,1672319027),(91402,4,19712,3,1672319027),(91403,4,19713,3,1672319027),(91404,4,19714,3,1672319027),(91405,4,19715,3,1672319027),(91406,4,19716,3,1672319027),(91407,4,19717,3,1672319027),(91408,4,19718,3,1672319027),(91409,4,19719,3,1672319027),(91410,4,19720,3,1672319027),(91411,4,19721,3,1672319027),(91412,4,19722,3,1672319027),(91413,4,19723,3,1672319027),(91414,4,19724,3,1672319027),(91415,4,19725,3,1672319027),(91416,4,19726,3,1672319027),(91417,4,19727,3,1672319027),(91418,4,19728,3,1672319027),(91419,4,19729,3,1672319027),(91420,4,19730,3,1672319027),(91421,4,19731,3,1672319027),(91422,4,19732,3,1672319027),(91423,4,19733,3,1672319027),(91424,4,19734,3,1672319027),(91425,4,19735,3,1672319027),(91426,4,19736,3,1672319027),(91427,4,19737,3,1672319027),(91428,4,19738,3,1672319027),(91429,4,19739,3,1672319027),(91430,4,19740,3,1672319027),(91431,4,19741,3,1672319027),(91432,4,19742,3,1672319027),(91433,4,19743,3,1672319027),(91434,4,19744,3,1672319027),(91435,4,19745,3,1672319027),(91436,4,19746,3,1672319027),(91437,4,19747,3,1672319027),(91438,4,19748,3,1672319027),(91439,4,19749,3,1672319027),(91440,4,19750,3,1672319027),(91441,4,19751,3,1672319027),(91442,4,19752,3,1672319027),(91443,4,19753,3,1672319027),(91444,4,19754,3,1672319027),(91445,4,19755,3,1672319027),(91446,4,19756,3,1672319027),(91447,4,19757,3,1672319027),(91448,4,19758,3,1672319027),(91449,4,19759,3,1672319027),(91450,4,19760,3,1672319027),(91451,4,19761,3,1672319027),(91452,4,19762,3,1672319027),(91453,4,19763,3,1672319027),(91454,4,19764,3,1672319027),(91455,4,19765,3,1672319027),(91456,4,19766,3,1672319027),(91457,4,19767,3,1672319027),(91458,4,19768,3,1672319027),(91459,4,19769,3,1672319027),(91460,4,19770,3,1672319027),(91461,4,19771,3,1672319027),(91462,4,19772,3,1672319027),(91463,4,19773,3,1672319027),(91464,4,19774,3,1672319027),(91465,4,19775,3,1672319027),(91466,4,19776,3,1672319027),(91467,4,19777,3,1672319027),(91468,4,19778,3,1672319027),(91469,4,19779,3,1672319027),(91470,4,19780,3,1672319027),(91471,4,19781,3,1672319027),(91472,4,19782,3,1672319027),(91473,4,19783,3,1672319027),(91474,4,19784,3,1672319027),(91475,4,19785,3,1672319027),(91476,4,19786,3,1672319027),(91477,4,19787,3,1672319027),(91478,4,19788,3,1672319027),(91479,4,19789,3,1672319027),(91480,4,19790,3,1672319027),(91481,4,19791,3,1672319027),(91482,4,19792,3,1672319027),(91483,4,19793,3,1672319027),(91484,4,19794,3,1672319027),(91485,4,19795,3,1672319027),(91486,4,19796,3,1672319027),(91487,4,19797,3,1672319027),(91488,4,19798,3,1672319027),(91489,4,19799,3,1672319027),(91490,4,19800,3,1672319027),(91491,4,19801,3,1672319027),(91492,4,19802,3,1672319027),(91493,4,19803,3,1672319027),(91494,4,19804,3,1672319027),(91495,4,19805,3,1672319027),(91496,4,19806,3,1672319027),(91497,4,19807,3,1672319027),(91498,4,19808,3,1672319027),(91499,4,19809,3,1672319027),(91500,4,19810,3,1672319027),(91501,4,19811,3,1672319027),(91502,4,19812,3,1672319027),(91503,4,19813,3,1672319027),(91504,4,19814,3,1672319027),(91505,4,19815,3,1672319027),(91506,4,19816,3,1672319027),(91507,4,19817,3,1672319027),(91508,4,19818,3,1672319027),(91509,4,19819,3,1672319027),(91510,4,19820,3,1672319027),(91511,4,19821,3,1672319027),(91512,4,19822,3,1672319027),(91513,4,19823,3,1672319027),(91514,4,19824,3,1672319027),(91515,4,19825,3,1672319027),(91516,4,19826,3,1672319027),(91517,4,19827,3,1672319027),(91518,4,19828,3,1672319027),(91519,4,19829,3,1672319027),(91520,4,19830,3,1672319027),(91521,4,19831,3,1672319027),(91522,4,19832,3,1672319027),(91523,4,19833,3,1672319027),(91524,4,19834,3,1672319027),(91525,4,19835,3,1672319027),(91526,4,19836,3,1672319027),(91527,4,19837,3,1672319027),(91528,4,19838,3,1672319027),(91529,4,19839,3,1672319027),(91530,4,19840,3,1672319027),(91531,4,19841,3,1672319027),(91532,4,19842,3,1672319027),(91533,4,19843,3,1672319027),(91534,4,19844,3,1672319027),(91535,4,19845,3,1672319027),(91536,4,19846,3,1672319027),(91537,4,19847,3,1672319027),(91538,4,19848,3,1672319027),(91539,4,19849,3,1672319027),(91540,4,19850,3,1672319027),(91541,4,19851,3,1672319027),(91542,4,19852,3,1672319027),(91543,4,19853,3,1672319027),(91544,4,19854,3,1672319027),(91545,4,19855,3,1672319027),(91546,4,19856,3,1672319027),(91547,4,19857,3,1672319027),(91548,4,19858,3,1672319027),(91549,4,19859,3,1672319027),(91550,4,19860,3,1672319027),(91551,4,19861,3,1672319027),(91552,4,19862,3,1672319027),(91553,4,19863,3,1672319027),(91554,4,19864,3,1672319027),(91555,4,19865,3,1672319027),(91556,4,19866,3,1672319027),(91557,4,19867,3,1672319027),(91558,4,19868,3,1672319027),(91559,4,19869,3,1672319027),(91560,4,19870,3,1672319027),(91561,4,19871,3,1672319027),(91562,4,19872,3,1672319027),(91563,4,19873,3,1672319027),(91564,4,19874,3,1672319027),(91565,4,19875,3,1672319027),(91566,4,19876,3,1672319027),(91567,4,19877,3,1672319027),(91568,4,19878,3,1672319027),(91569,4,19879,3,1672319027),(91570,4,19880,3,1672319027),(91571,4,19881,3,1672319027),(91572,4,19882,3,1672319027),(91573,4,19883,3,1672319027),(91574,4,19884,3,1672319027),(91575,4,19885,3,1672319027),(91576,4,19886,3,1672319027),(91577,4,19887,3,1672319027),(91578,4,19888,3,1672319027),(91579,4,19889,3,1672319027),(91580,4,19890,3,1672319027),(91581,4,19891,3,1672319027),(91582,4,19892,3,1672319027),(91583,4,19893,3,1672319027),(91584,4,19894,3,1672319027),(91585,4,19895,3,1672319027),(91586,4,19896,3,1672319027),(91587,4,19897,3,1672319027),(91588,4,19898,3,1672319027),(91589,4,19899,3,1672319027),(91590,4,19900,3,1672319027),(91591,4,19901,3,1672319027),(91592,4,19902,3,1672319027),(91593,4,19903,3,1672319027),(91594,4,19904,3,1672319027),(91595,4,19905,3,1672319027),(91596,4,19906,3,1672319027),(91597,4,19907,3,1672319027),(91598,4,19908,3,1672319027),(91599,4,19909,3,1672319027),(91600,4,19910,3,1672319027),(91601,4,19911,3,1672319027),(91602,4,19912,3,1672319027),(91603,4,19913,3,1672319027),(91604,4,19914,3,1672319027),(91605,4,19915,3,1672319027),(91606,4,19916,3,1672319027),(91607,4,19917,3,1672319027),(91608,4,19918,3,1672319027),(91609,4,19919,3,1672319027),(91610,4,19920,3,1672319027),(91611,4,19921,3,1672319027),(91612,4,19922,3,1672319027),(91613,4,19923,3,1672319027),(91614,4,19924,3,1672319027),(91615,4,19925,3,1672319027),(91616,4,19926,3,1672319027),(91617,4,19927,3,1672319027),(91618,4,19928,3,1672319027),(91619,4,19929,3,1672319027),(91620,4,19930,3,1672319027),(91621,4,19931,3,1672319027),(91622,4,19932,3,1672319027),(91623,4,19933,3,1672319027),(91624,4,19934,3,1672319027),(91625,4,19935,3,1672319027),(91626,4,19936,3,1672319027),(91627,4,19937,3,1672319027),(91628,4,19938,3,1672319027),(91629,4,19939,3,1672319027),(91630,4,19940,3,1672319027),(91631,4,19941,3,1672319027),(91632,4,19942,3,1672319027),(91633,4,19943,3,1672319027),(91634,4,19944,3,1672319027),(91635,4,19945,3,1672319027),(91636,4,19946,3,1672319027),(91637,4,19947,3,1672319027),(91638,4,19948,3,1672319027),(91639,4,19949,3,1672319027),(91640,4,19950,3,1672319027),(91641,4,19951,3,1672319027),(91642,4,19952,3,1672319027),(91643,4,19953,3,1672319027),(91644,4,19954,3,1672319027),(91645,4,19955,3,1672319027),(91646,4,19956,3,1672319027),(91647,4,19957,3,1672319027),(91648,4,19958,3,1672319027),(91649,4,19959,3,1672319027),(91650,4,19960,3,1672319027),(91651,4,19961,3,1672319027),(91652,4,19962,3,1672319027),(91653,4,19963,3,1672319027),(91654,4,19964,3,1672319027),(91655,4,19965,3,1672319027),(91656,4,19966,3,1672319027),(91657,4,19967,3,1672319027),(91658,4,19968,3,1672319027),(91659,4,19969,3,1672319027),(91660,4,19970,3,1672319027),(91661,4,19971,3,1672319027),(91662,4,19972,3,1672319027),(91663,4,19973,3,1672319027),(91664,4,19974,3,1672319027),(91665,4,19975,3,1672319027),(91666,4,19976,3,1672319027),(91667,4,19977,3,1672319027),(91668,4,19978,3,1672319027),(91669,4,19979,3,1672319027),(91670,4,19980,3,1672319027),(91671,4,19981,3,1672319027),(91672,4,19982,3,1672319027),(91673,4,19983,3,1672319027),(91674,4,19984,3,1672319027),(91675,4,19985,3,1672319027),(91676,4,19986,3,1672319027),(91677,4,19987,3,1672319027),(91678,4,19988,3,1672319027),(91679,4,19989,3,1672319027),(91680,4,19990,3,1672319027),(91681,4,19991,3,1672319027),(91682,4,19992,3,1672319027),(91683,4,19993,3,1672319027),(91684,4,19994,3,1672319027),(91685,4,19995,3,1672319027),(91686,4,19996,3,1672319027),(91687,4,19997,3,1672319027),(91688,4,19998,3,1672319027),(91689,4,19999,3,1672319027),(91690,4,20000,3,1672319027),(91691,4,20001,3,1672319027),(91692,4,20002,3,1672319027),(91693,4,20003,3,1672319027),(91694,4,20004,3,1672319027),(91695,4,20005,3,1672319027),(91696,4,20006,3,1672319027),(91697,4,20007,3,1672319027),(91698,4,20008,3,1672319027),(91699,4,20009,3,1672319027),(91700,4,20010,3,1672319027),(91701,4,20011,3,1672319027),(91702,4,20012,3,1672319027),(91703,4,20013,3,1672319027),(91704,4,20014,3,1672319027),(91705,4,20015,3,1672319027),(91706,4,20016,3,1672319027),(91707,4,20017,3,1672319027),(91708,4,20018,3,1672319027),(91709,4,20019,3,1672319027),(91710,4,20020,3,1672319027),(91711,4,20021,3,1672319027),(91712,4,20022,3,1672319027),(91713,4,20023,3,1672319027),(91714,4,20024,3,1672319027),(91715,4,20025,3,1672319027),(91716,4,20026,3,1672319027),(91717,4,20027,3,1672319027),(91718,4,20028,3,1672319027),(91719,4,20029,3,1672319027),(91720,4,20030,3,1672319027),(91721,4,20031,3,1672319027),(91722,4,20032,3,1672319027),(91723,4,20033,3,1672319027),(91724,4,20034,3,1672319027),(91725,4,20035,3,1672319027),(91726,4,20036,3,1672319027),(91727,4,20037,3,1672319027),(91728,4,20038,3,1672319027),(91729,4,20039,3,1672319027),(91730,4,20040,3,1672319027),(91731,4,20041,3,1672319027),(91732,4,20042,3,1672319027),(91733,4,20043,3,1672319027),(91734,4,20044,3,1672319027),(91735,4,20045,3,1672319027),(91736,4,20046,3,1672319027),(91737,4,20047,3,1672319027),(91738,4,20048,3,1672319027),(91739,4,20049,3,1672319027),(91740,4,20050,3,1672319027),(91741,4,20051,3,1672319027),(91742,4,20052,3,1672319027),(91743,4,20053,3,1672319027),(91744,4,20054,3,1672319027),(91745,4,20055,3,1672319027),(91746,4,20056,3,1672319027),(91747,4,20057,3,1672319027),(91748,4,20058,3,1672319027),(91749,4,20059,3,1672319027),(91750,4,20060,3,1672319027),(91751,4,20061,3,1672319027),(91752,4,20062,3,1672319027),(91753,4,20063,3,1672319027),(91754,4,20064,3,1672319027),(91755,4,20065,3,1672319027),(91756,4,20066,3,1672319027),(91757,4,20067,3,1672319027),(91758,4,20068,3,1672319027),(91759,4,20069,3,1672319027),(91760,4,20070,3,1672319027),(91761,4,20071,3,1672319027),(91762,4,20072,3,1672319027),(91763,4,20073,3,1672319027),(91764,4,20074,3,1672319027),(91765,4,20075,3,1672319027),(91766,4,20076,3,1672319027),(91767,4,20077,3,1672319027),(91768,4,20078,3,1672319027),(91769,4,20079,3,1672319027),(91770,4,20080,3,1672319027),(91771,4,20081,3,1672319027),(91772,4,20082,3,1672319027),(91773,4,20083,3,1672319027),(91774,4,20084,3,1672319027),(91775,4,20085,3,1672319027),(91776,4,20086,3,1672319027),(91777,4,20087,3,1672319027),(91778,4,20088,3,1672319027),(91779,4,20089,3,1672319027),(91780,4,20090,3,1672319027),(91781,4,20091,3,1672319027),(91782,4,20092,3,1672319027),(91783,4,20093,3,1672319027),(91784,4,20094,3,1672319027),(91785,4,20095,3,1672319027),(91786,4,20096,3,1672319027),(91787,4,20097,3,1672319027),(91788,4,20098,3,1672319027),(91789,4,20099,3,1672319027),(91790,4,20100,3,1672319027),(91791,4,20101,3,1672319027),(91792,4,20102,3,1672319027),(91793,4,20103,3,1672319027),(91794,4,20104,3,1672319027),(91795,4,20105,3,1672319027),(91796,4,20106,3,1672319027),(91797,4,20107,3,1672319027),(91798,4,20108,3,1672319027),(91799,4,20109,3,1672319027),(91800,4,20110,3,1672319027),(91801,4,20111,3,1672319027),(91802,4,20112,3,1672319027),(91803,4,20113,3,1672319027),(91804,4,20114,3,1672319027),(91805,4,20115,3,1672319027),(91806,4,20116,3,1672319027),(91807,4,20117,3,1672319027),(91808,4,20118,3,1672319027),(91809,4,20119,3,1672319027),(91810,4,20120,3,1672319027),(91811,4,20121,3,1672319027),(91812,4,20122,3,1672319027),(91813,4,20123,3,1672319027),(91814,4,20124,3,1672319027),(91815,4,20125,3,1672319027),(91816,4,20126,3,1672319027),(91817,4,20127,3,1672319027),(91818,4,20128,3,1672319027),(91819,4,20129,3,1672319027),(91820,4,20130,3,1672319027),(91821,4,20131,3,1672319027),(91822,4,20132,3,1672319027),(91823,4,20133,3,1672319027),(91824,4,20134,3,1672319027),(91825,4,20135,3,1672319027),(91826,4,20136,3,1672319027),(91827,4,20137,3,1672319027),(91828,4,20138,3,1672319027),(91829,4,20139,3,1672319027),(91830,4,20140,3,1672319027),(91831,4,20141,3,1672319027),(91832,4,20142,3,1672319027),(91833,4,20143,3,1672319027),(91834,4,20144,3,1672319027),(91835,4,20145,3,1672319027),(91836,4,20146,3,1672319027),(91837,4,20147,3,1672319027),(91838,4,20148,3,1672319027),(91839,4,20149,3,1672319027),(91840,4,20150,3,1672319027),(91841,4,20151,3,1672319027),(91842,4,20152,3,1672319027),(91843,4,20153,3,1672319027),(91844,4,20154,3,1672319027),(91845,4,20155,3,1672319027),(91846,4,20156,3,1672319027),(91847,4,20157,3,1672319027),(91848,4,20158,3,1672319027),(91849,4,20159,3,1672319027),(91850,4,20160,3,1672319027),(91851,4,20161,3,1672319027),(91852,4,20162,3,1672319027),(91853,4,20163,3,1672319027),(91854,4,20164,3,1672319027),(91855,4,20165,3,1672319027),(91856,4,20166,3,1672319027),(91857,4,20167,3,1672319027),(91858,4,20168,3,1672319027),(91859,4,20169,3,1672319027),(91860,4,20170,3,1672319027),(91861,4,20171,3,1672319027),(91862,4,20172,3,1672319027),(91863,4,20173,3,1672319027),(91864,4,20174,3,1672319027),(91865,4,20175,3,1672319027),(91866,4,20176,3,1672319027),(91867,4,20177,3,1672319027),(91868,4,20178,3,1672319027),(91869,4,20179,3,1672319027),(91870,4,20180,3,1672319027),(91871,4,20181,3,1672319027),(91872,4,20182,3,1672319027),(91873,4,20183,3,1672319027),(91874,4,20184,3,1672319027),(91875,4,20185,3,1672319027),(91876,4,20186,3,1672319027),(91877,4,20187,3,1672319027),(91878,4,20188,3,1672319027),(91879,4,20189,3,1672319027),(91880,4,20190,3,1672319027),(91881,4,20191,3,1672319027),(91882,4,20192,3,1672319027),(91883,4,20193,3,1672319027),(91884,4,20194,3,1672319027),(91885,4,20195,3,1672319027),(91886,4,20196,3,1672319027),(91887,4,20197,3,1672319027),(91888,4,20198,3,1672319027),(91889,4,20199,3,1672319027),(91890,4,20200,3,1672319027),(91891,4,20201,3,1672319027),(91892,4,20202,3,1672319027),(91893,4,20203,3,1672319027),(91894,4,20204,3,1672319027),(91895,4,20205,3,1672319027),(91896,4,20206,3,1672319027),(91897,4,20207,3,1672319027),(91898,4,20208,3,1672319027),(91899,4,20209,3,1672319027),(91900,4,20210,3,1672319027),(91901,4,20211,3,1672319027),(91902,4,20212,3,1672319027),(91903,4,20213,3,1672319027),(91904,4,20214,3,1672319027),(91905,4,20215,3,1672319027),(91906,4,20216,3,1672319027),(91907,4,20217,3,1672319027),(91908,4,20218,3,1672319027),(91909,4,20219,3,1672319027),(91910,4,20220,3,1672319027),(91911,4,20221,3,1672319027),(91912,4,20222,3,1672319027),(91913,4,20223,3,1672319027),(91914,4,20224,3,1672319027),(91915,4,20225,3,1672319027),(91916,4,20226,3,1672319027),(91917,4,20227,3,1672319027),(91918,4,20228,3,1672319027),(91919,4,20229,3,1672319027),(91920,4,20230,3,1672319027),(91921,4,20231,3,1672319027),(91922,4,20232,3,1672319027),(91923,4,20233,3,1672319027),(91924,4,20234,3,1672319027),(91925,4,20235,3,1672319027),(91926,4,20236,3,1672319027),(91927,4,20237,3,1672319027),(91928,4,20238,3,1672319027),(91929,4,20239,3,1672319027),(91930,4,20240,3,1672319027),(91931,4,20241,3,1672319027),(91932,4,20242,3,1672319027),(91933,4,20243,3,1672319027),(91934,4,20244,3,1672319027),(91935,4,20245,3,1672319027),(91936,4,20246,3,1672319027),(91937,4,20247,3,1672319027),(91938,4,20248,3,1672319027),(91939,4,20249,3,1672319027),(91940,4,20250,3,1672319027),(91941,4,20251,3,1672319027),(91942,4,20252,3,1672319027),(91943,4,20253,3,1672319027),(91944,4,20254,3,1672319027),(91945,4,20255,3,1672319027),(91946,4,20256,3,1672319027),(91947,4,20257,3,1672319027),(91948,4,20258,3,1672319027),(91949,4,20259,3,1672319027),(91950,4,20260,3,1672319027),(91951,4,20261,3,1672319027),(91952,4,20262,3,1672319027),(91953,4,20263,3,1672319027),(91954,4,20264,3,1672319027),(91955,4,20265,3,1672319027),(91956,4,20266,3,1672319027),(91957,4,20267,3,1672319027),(91958,4,20268,3,1672319027),(91959,4,20269,3,1672319027),(91960,4,20270,3,1672319027),(91961,4,20271,3,1672319027),(91962,4,20272,3,1672319027),(91963,4,20273,3,1672319027),(91964,4,20274,3,1672319027),(91965,4,20275,3,1672319027),(91966,4,20276,3,1672319027),(91967,4,20277,3,1672319027),(91968,4,20278,3,1672319027),(91969,4,20279,3,1672319027),(91970,4,20280,3,1672319027),(91971,4,20281,3,1672319027),(91972,4,20282,3,1672319027),(91973,4,20283,3,1672319027),(91974,4,20284,3,1672319027),(91975,4,20285,3,1672319027),(91976,4,20286,3,1672319027),(91977,4,20287,3,1672319027),(91978,4,20288,3,1672319027),(91979,4,20289,3,1672319027),(91980,4,20290,3,1672319027),(91981,4,20291,3,1672319027),(91982,4,20292,3,1672319027),(91983,4,20293,3,1672319027),(91984,4,20294,3,1672319027),(91985,4,20295,3,1672319027),(91986,4,20296,3,1672319027),(91987,4,20297,3,1672319027),(91988,4,20298,3,1672319027),(91989,4,20299,3,1672319027),(91990,4,20300,3,1672319027),(91991,4,20301,3,1672319027),(91992,4,20302,3,1672319027),(91993,4,20303,3,1672319027),(91994,4,20304,3,1672319027),(91995,4,20305,3,1672319027),(91996,4,20306,3,1672319027),(91997,4,20307,3,1672319027),(91998,4,20308,3,1672319027),(91999,4,20309,3,1672319027),(92000,4,20310,3,1672319027),(92001,4,20311,3,1672319027),(92002,4,20312,3,1672319027),(92003,4,20313,3,1672319027),(92004,4,20314,3,1672319027),(92005,4,20315,3,1672319027),(92006,4,20316,3,1672319027),(92007,4,20317,3,1672319027),(92008,4,20318,3,1672319027),(92009,4,20319,3,1672319027),(92010,4,20320,3,1672319027),(92011,4,20321,3,1672319027),(92012,4,20322,3,1672319027),(92013,4,20323,3,1672319027),(92014,4,20324,3,1672319027),(92015,4,20325,3,1672319027),(92016,4,20326,3,1672319027),(92017,4,20327,3,1672319027),(92018,4,20328,3,1672319027),(92019,4,20329,3,1672319027),(92020,4,20330,3,1672319027),(92021,4,20331,3,1672319027),(92022,4,20332,3,1672319027),(92023,4,20333,3,1672319027),(92024,4,20334,3,1672319027),(92025,4,20335,3,1672319027),(92026,4,20336,3,1672319027),(92027,4,20337,3,1672319027),(92028,4,20338,3,1672319027),(92029,4,20339,3,1672319027),(92030,4,20340,3,1672319027),(92031,4,20341,3,1672319027),(92032,4,20342,3,1672319027),(92033,4,20343,3,1672319027),(92034,4,20344,3,1672319027),(92035,4,20345,3,1672319027),(92036,4,20346,3,1672319027),(92037,4,20347,3,1672319027),(92038,4,20348,3,1672319027),(92039,4,20349,3,1672319027),(92040,4,20350,3,1672319027),(92041,4,20351,3,1672319027),(92042,4,20352,3,1672319027),(92043,4,20353,3,1672319027),(92044,4,20354,3,1672319027),(92045,4,20355,3,1672319027),(92046,4,20356,3,1672319027),(92047,4,20357,3,1672319027),(92048,4,20358,3,1672319027),(92049,4,20359,3,1672319027),(92050,4,20360,3,1672319027),(92051,4,20361,3,1672319027),(92052,4,20362,3,1672319027),(92053,4,20363,3,1672319027),(92054,4,20364,3,1672319027),(92055,4,20365,3,1672319027),(92056,4,20366,3,1672319027),(92057,4,20367,3,1672319027),(92058,4,20368,3,1672319027),(92059,4,20369,3,1672319027),(92060,4,20370,3,1672319027),(92061,4,20371,3,1672319027),(92062,4,20372,3,1672319027),(92063,4,20373,3,1672319027),(92064,4,20374,3,1672319027),(92065,4,20375,3,1672319027),(92066,4,20376,3,1672319027),(92067,4,20377,3,1672319027),(92068,4,20378,3,1672319027),(92069,4,20379,3,1672319027),(92070,4,20380,3,1672319027),(92071,4,20381,3,1672319027),(92072,4,20382,3,1672319027),(92073,4,20383,3,1672319027),(92074,4,20384,3,1672319027),(92075,4,20385,3,1672319027),(92076,4,20386,3,1672319027),(92077,4,20387,3,1672319027),(92078,4,20388,3,1672319027),(92079,4,20389,3,1672319027),(92080,4,20390,3,1672319027),(92081,4,20391,3,1672319027),(92082,4,20392,3,1672319027),(92083,4,20393,3,1672319027),(92084,4,20394,3,1672319027),(92085,4,20395,3,1672319027),(92086,4,20396,3,1672319027),(92087,4,20397,3,1672319027),(92088,4,20398,3,1672319027),(92089,4,20399,3,1672319027),(92090,4,20400,3,1672319027),(92091,4,20401,3,1672319027),(92092,4,20402,3,1672319027),(92093,4,20403,3,1672319027),(92094,4,20404,3,1672319027),(92095,4,20405,3,1672319027),(92096,4,20406,3,1672319027),(92097,4,20407,3,1672319027),(92098,4,20408,3,1672319027),(92099,4,20409,3,1672319027),(92100,4,20410,3,1672319027),(92101,4,20411,3,1672319027),(92102,4,20412,3,1672319027),(92103,4,20477,3,1672319027),(92104,4,20478,3,1672319027),(92105,4,20479,3,1672319027),(92106,4,20480,3,1672319027),(92107,4,20481,3,1672319027),(92108,4,20482,3,1672319027),(92109,4,20483,3,1672319027),(92110,4,20484,3,1672319027),(92111,4,20485,3,1672319027),(92112,4,20486,3,1672319027),(92113,4,20487,3,1672319027),(92114,4,20488,3,1672319027),(92115,4,20489,3,1672319027),(92116,4,20490,3,1672319027),(92117,4,20491,3,1672319027),(92118,4,20492,3,1672319027),(92119,4,20493,3,1672319027),(92120,4,20494,3,1672319027),(92121,4,20495,3,1672319027),(92122,4,20496,3,1672319027),(92123,4,20497,3,1672319027),(92124,4,20498,3,1672319027),(92125,4,20499,3,1672319027),(92126,4,20500,3,1672319027),(92127,4,20501,3,1672319027),(92128,4,20502,3,1672319027),(92129,4,20503,3,1672319027),(92130,4,20504,3,1672319027),(92131,4,20505,3,1672319027),(92132,4,20506,3,1672319027),(92133,4,20507,3,1672319027),(92134,4,20508,3,1672319027),(92135,4,20509,3,1672319027),(92136,4,20510,3,1672319027),(92137,4,20511,3,1672319027),(92138,4,20512,3,1672319027),(92139,4,20513,3,1672319027),(92140,4,20514,3,1672319027),(92141,4,20515,3,1672319027),(92142,4,20516,3,1672319027),(92143,4,20517,3,1672319027),(92144,4,20518,3,1672319027),(92145,4,20519,3,1672319027),(92146,4,20520,3,1672319027),(92147,4,20521,3,1672319027),(92148,4,20522,3,1672319027),(92149,4,20523,3,1672319027),(92150,4,20524,3,1672319027),(92151,4,20525,3,1672319027),(92152,4,20526,3,1672319027),(92153,4,20527,3,1672319027),(92154,4,20528,3,1672319027),(92155,4,20529,3,1672319027),(92156,4,20530,3,1672319027),(92157,4,20531,3,1672319027),(92158,4,20532,3,1672319027),(92159,4,20533,3,1672319027),(92160,4,20534,3,1672319027),(92161,4,20535,3,1672319027),(92162,4,20536,3,1672319027),(92163,4,20537,3,1672319027),(92164,4,20538,3,1672319027),(92165,4,20539,3,1672319027),(92166,4,20540,3,1672319027),(92167,4,20541,3,1672319027),(92168,4,20542,3,1672319027),(92169,4,20543,3,1672319027),(92170,4,20544,3,1672319027),(92171,4,20545,3,1672319027),(92172,4,20546,3,1672319027),(92173,4,20547,3,1672319027),(92174,4,20548,3,1672319027),(92175,4,20549,3,1672319027),(92176,4,20550,3,1672319027),(92177,4,20551,3,1672319027),(92178,4,20552,3,1672319027),(92179,4,20553,3,1672319027),(92180,4,20554,3,1672319027),(92181,4,20555,3,1672319027),(92182,4,20556,3,1672319027),(92183,4,20557,3,1672319027),(92184,4,20558,3,1672319027),(92185,4,20559,3,1672319027),(92186,4,20560,3,1672319027),(92187,4,20561,3,1672319027),(92188,4,20562,3,1672319027),(92189,4,20563,3,1672319027),(92190,4,20564,3,1672319027),(92191,4,20565,3,1672319027),(92192,4,20566,3,1672319027),(92193,4,20567,3,1672319027),(92194,4,20568,3,1672319027),(92195,4,20569,3,1672319027),(92196,4,20570,3,1672319027),(92197,4,20571,3,1672319027),(92198,4,20572,3,1672319027),(92199,4,20573,3,1672319027),(92200,4,20574,3,1672319027),(92201,4,20575,3,1672319027),(92202,4,20576,3,1672319027),(92203,4,20577,3,1672319027),(92204,4,20578,3,1672319027),(92205,4,20579,3,1672319027),(92206,4,20580,3,1672319027),(92207,4,20581,3,1672319027),(92208,4,20582,3,1672319027),(92209,4,20583,3,1672319027),(92210,4,20584,3,1672319027),(92211,4,20585,3,1672319027),(92212,4,20586,3,1672319027),(92213,4,20587,3,1672319027),(92214,4,20588,3,1672319027),(92215,4,20589,3,1672319027),(92216,4,20590,3,1672319027),(92217,4,20591,3,1672319027),(92218,4,20592,3,1672319027),(92219,4,20593,3,1672319027),(92220,4,20594,3,1672319027),(92221,4,20595,3,1672319027),(92222,4,20596,3,1672319027),(92223,4,20597,3,1672319027),(92224,4,20598,3,1672319027),(92225,4,20599,3,1672319027),(92226,4,20600,3,1672319027),(92227,4,20601,3,1672319027),(92228,4,20602,3,1672319027),(92229,4,20603,3,1672319027),(92230,4,20604,3,1672319027),(92231,4,20605,3,1672319027),(92232,4,20606,3,1672319027),(92233,4,20607,3,1672319027),(92234,4,20608,3,1672319027),(92235,4,20609,3,1672319027),(92236,4,20610,3,1672319027),(92237,4,20611,3,1672319027),(92238,4,20612,3,1672319027),(92239,4,20613,3,1672319027),(92240,4,20614,3,1672319027),(92241,4,20615,3,1672319027),(92242,4,20616,3,1672319027),(92243,4,20617,3,1672319027),(92244,4,20618,3,1672319027),(92245,4,20619,3,1672319027),(92246,4,20620,3,1672319027),(92247,4,20621,3,1672319027),(92248,4,20622,3,1672319027),(92249,4,20623,3,1672319027),(92250,4,20624,3,1672319027),(92251,4,20625,3,1672319027),(92252,4,20626,3,1672319027),(92253,4,20627,3,1672319027),(92254,4,20628,3,1672319027),(92255,4,20629,3,1672319027),(92256,4,20630,3,1672319027),(92257,4,20631,3,1672319027),(92258,4,20632,3,1672319027),(92259,4,20633,3,1672319027),(92260,4,20634,3,1672319027),(92261,4,20635,3,1672319027),(92262,4,20636,3,1672319027),(92263,4,20637,3,1672319027),(92264,4,20638,3,1672319027),(92265,4,20639,3,1672319027),(92266,4,20640,3,1672319027),(92267,4,20641,3,1672319027),(92268,4,20642,3,1672319027),(92269,4,20643,3,1672319027),(92270,4,20644,3,1672319027),(92271,4,20645,3,1672319027),(92272,4,20646,3,1672319027),(92273,4,20647,3,1672319027),(92274,4,20648,3,1672319027),(92275,4,20649,3,1672319027),(92276,4,20650,3,1672319027),(92277,4,20651,3,1672319027),(92278,4,20652,3,1672319027),(92279,4,20653,3,1672319027),(92280,4,20654,3,1672319027),(92281,4,20655,3,1672319027),(92282,4,20656,3,1672319027),(92283,4,20657,3,1672319027),(92284,4,20658,3,1672319027),(92285,4,20659,3,1672319027),(92286,4,20660,3,1672319027),(92287,4,20661,3,1672319027),(92288,4,20662,3,1672319027),(92289,4,20663,3,1672319027),(92290,4,20664,3,1672319027),(92291,4,20665,3,1672319027),(92292,4,20666,3,1672319027),(92293,4,20667,3,1672319027),(92294,4,20668,3,1672319027),(92295,4,20669,3,1672319027),(92296,4,20670,3,1672319027),(92297,4,20671,3,1672319027),(92298,4,20672,3,1672319027),(92299,4,20673,3,1672319027),(92300,4,20674,3,1672319027),(92301,4,20675,3,1672319027),(92302,4,20676,3,1672319027),(92303,4,20677,3,1672319027),(92304,4,20678,3,1672319027),(92305,4,20679,3,1672319027),(92306,4,20680,3,1672319027),(92307,4,20681,3,1672319027),(92308,4,20682,3,1672319027),(92309,4,20683,3,1672319027),(92310,4,20684,3,1672319027),(92311,4,20685,3,1672319027),(92312,4,20686,3,1672319027),(92313,4,20687,3,1672319027),(92314,4,20688,3,1672319027),(92315,4,20689,3,1672319027),(92316,4,20690,3,1672319027),(92317,4,20691,3,1672319027),(92318,4,20692,3,1672319027),(92319,4,20693,3,1672319027),(92320,4,20694,3,1672319027),(92321,4,20695,3,1672319027),(92322,4,20696,3,1672319027),(92323,4,20697,3,1672319027),(92324,4,20698,3,1672319027),(92325,4,20699,3,1672319027),(92326,4,20700,3,1672319027),(92327,4,20701,3,1672319027),(92328,4,20702,3,1672319027),(92329,4,20703,3,1672319027),(92330,4,20704,3,1672319027),(92331,4,20705,3,1672319027),(92332,4,20706,3,1672319027),(92333,4,20707,3,1672319027),(92334,4,20708,3,1672319027),(92335,4,20709,3,1672319027),(92336,4,20710,3,1672319027),(92337,4,20711,3,1672319027),(92338,4,20712,3,1672319027),(92339,4,20713,3,1672319027),(92340,4,20714,3,1672319027),(92341,4,20715,3,1672319027),(92342,4,20716,3,1672319027),(92343,4,20717,3,1672319027),(92344,4,20718,3,1672319027),(92345,4,20719,3,1672319027),(92346,4,20720,3,1672319027),(92347,4,20721,3,1672319027),(92348,4,20722,3,1672319027),(92349,4,20723,3,1672319027),(92350,4,20724,3,1672319027),(92351,4,20725,3,1672319027),(92352,4,20726,3,1672319027),(92353,4,20727,3,1672319027),(92354,4,20728,3,1672319027),(92355,4,20729,3,1672319027),(92356,4,20730,3,1672319027),(92357,4,20731,3,1672319027),(92358,4,20732,3,1672319027),(92359,4,20733,3,1672319027),(92360,4,20734,3,1672319027),(92361,4,20735,3,1672319027),(92362,4,20736,3,1672319027),(92363,4,20737,3,1672319027),(92364,4,20738,3,1672319027),(92365,4,20739,3,1672319027),(92366,4,20740,3,1672319027),(92367,4,20741,3,1672319027),(92368,4,20742,3,1672319027),(92369,4,20743,3,1672319027),(92370,4,20744,3,1672319027),(92371,4,20745,3,1672319027),(92372,4,20746,3,1672319027),(92373,4,20747,3,1672319027),(92374,4,20748,3,1672319027),(92375,4,20749,3,1672319027),(92376,4,20750,3,1672319027),(92377,4,20751,3,1672319027),(92378,4,20752,3,1672319027),(92379,4,20753,3,1672319027),(92380,4,20754,3,1672319027),(92381,4,20755,3,1672319027),(92382,4,20756,3,1672319027),(92383,4,20757,3,1672319027),(92384,4,20758,3,1672319027),(92385,4,20759,3,1672319027),(92386,4,20760,3,1672319027),(92387,4,20761,3,1672319027),(92388,4,20762,3,1672319027),(92389,4,20763,3,1672319027),(92390,4,20764,3,1672319027),(92391,4,20765,3,1672319027),(92392,4,20766,3,1672319027),(92393,4,20767,3,1672319027),(92394,4,20768,3,1672319027),(92395,4,20769,3,1672319027),(92396,4,20770,3,1672319027),(92397,4,20771,3,1672319027),(92398,4,20772,3,1672319027),(92399,4,20773,3,1672319027),(92400,4,20774,3,1672319027),(92401,4,20775,3,1672319027),(92402,4,20776,3,1672319027),(92403,4,20777,3,1672319027),(92404,4,20778,3,1672319027),(92405,4,20779,3,1672319027),(92406,4,20780,3,1672319027),(92407,4,20781,3,1672319027),(92408,4,20782,3,1672319027),(92409,4,20783,3,1672319027),(92410,4,20784,3,1672319027),(92411,4,20785,3,1672319027),(92412,4,20786,3,1672319027),(92413,4,20787,3,1672319027),(92414,4,20788,3,1672319027),(92415,4,20789,3,1672319027),(92416,4,20790,3,1672319027),(92417,4,20791,3,1672319027),(92418,4,20792,3,1672319027),(92419,4,20793,3,1672319027),(92420,4,20794,3,1672319027),(92421,4,20795,3,1672319027),(92422,4,20796,3,1672319027),(92423,4,20797,3,1672319027),(92424,4,20798,3,1672319027),(92425,4,20799,3,1672319027),(92426,4,20800,3,1672319027),(92427,4,20801,3,1672319027),(92428,4,20802,3,1672319027),(92429,4,20803,3,1672319027),(92430,4,20804,3,1672319027),(92431,4,20805,3,1672319027),(92432,4,20806,3,1672319027),(92433,4,20807,3,1672319027),(92434,4,20808,3,1672319027),(92435,4,20809,3,1672319027),(92436,4,20810,3,1672319027),(92437,4,20811,3,1672319027),(92438,4,20812,3,1672319027),(92439,4,20813,3,1672319027),(92440,4,20814,3,1672319027),(92441,4,20815,3,1672319027),(92442,4,20816,3,1672319027),(92443,4,20817,3,1672319027),(92444,4,20818,3,1672319027),(92445,4,20819,3,1672319027),(92446,4,20820,3,1672319027),(92447,4,20821,3,1672319027),(92448,4,20822,3,1672319027),(92449,4,20823,3,1672319027),(92450,4,20824,3,1672319027),(92451,4,20825,3,1672319027),(92452,4,20826,3,1672319027),(92453,4,20827,3,1672319027),(92454,4,20828,3,1672319027),(92455,4,20829,3,1672319027),(92456,4,20830,3,1672319027),(92457,4,20831,3,1672319027),(92458,4,20832,3,1672319027),(92459,4,20833,3,1672319027),(92460,4,20834,3,1672319027),(92461,4,20835,3,1672319027),(92462,4,20836,3,1672319027),(92463,4,20837,3,1672319027),(92464,4,20838,3,1672319027),(92465,4,20839,3,1672319027),(92466,4,20840,3,1672319027),(92467,4,20841,3,1672319027),(92468,4,20842,3,1672319027),(92469,4,20843,3,1672319027),(92470,4,20844,3,1672319027),(92471,4,20845,3,1672319027),(92472,4,20846,3,1672319027),(92473,4,20847,3,1672319027),(92474,4,20848,3,1672319027),(92475,4,20849,3,1672319027),(92476,4,20850,3,1672319027),(92477,4,20851,3,1672319027),(92478,4,20852,3,1672319027),(92479,4,20853,3,1672319027),(92480,4,20854,3,1672319027),(92481,4,20855,3,1672319027),(92482,4,20856,3,1672319027),(92483,4,20857,3,1672319027),(92484,4,20858,3,1672319027),(92485,4,20859,3,1672319027),(92486,4,20860,3,1672319027),(92487,4,20861,3,1672319027),(92488,4,20862,3,1672319027),(92489,4,20863,3,1672319027),(92490,4,20864,3,1672319027),(92491,4,20865,3,1672319027),(92492,4,20866,3,1672319027),(92493,4,20867,3,1672319027),(92494,4,20868,3,1672319027),(92495,4,20869,3,1672319027),(92496,4,20870,3,1672319027),(92497,4,20871,3,1672319027),(92498,4,20872,3,1672319027),(92499,4,20873,3,1672319027),(92500,4,20874,3,1672319027),(92501,4,20875,3,1672319027),(92502,4,20876,3,1672319027),(92503,4,20877,3,1672319027),(92504,4,20878,3,1672319027),(92505,4,20879,3,1672319027),(92506,4,20880,3,1672319027),(92507,4,20881,3,1672319027),(92508,4,20882,3,1672319027),(92509,4,20883,3,1672319027),(92510,4,20884,3,1672319027),(92511,4,20885,3,1672319027),(92512,4,20886,3,1672319027),(92513,4,20887,3,1672319027),(92514,4,20888,3,1672319027),(92515,4,20889,3,1672319027),(92516,4,20890,3,1672319027),(92517,4,20891,3,1672319027),(92518,4,20892,3,1672319027),(92519,4,20893,3,1672319027),(92520,4,20894,3,1672319027),(92521,4,20895,3,1672319027),(92522,4,20896,3,1672319027),(92523,4,20897,3,1672319027),(92524,4,20898,3,1672319027),(92525,4,20899,3,1672319027),(92526,4,20900,3,1672319027),(92527,4,20901,3,1672319027),(92528,4,20902,3,1672319027),(92529,4,20903,3,1672319027),(92530,4,20904,3,1672319027),(92531,4,20905,3,1672319027),(92532,4,20906,3,1672319027),(92533,4,20907,3,1672319027),(92534,4,20908,3,1672319027),(92535,4,20909,3,1672319027),(92536,4,20910,3,1672319027),(92537,4,20911,3,1672319027),(92538,4,20912,3,1672319027),(92539,4,20913,3,1672319027),(92540,4,20914,3,1672319027),(92541,4,20915,3,1672319027),(92542,4,20916,3,1672319027),(92543,4,20917,3,1672319027),(92544,4,20918,3,1672319027),(92545,4,20919,3,1672319027),(92546,4,20920,3,1672319027),(92547,4,20921,3,1672319027),(92548,4,20922,3,1672319027),(92549,4,20923,3,1672319027),(92550,4,20924,3,1672319027),(92551,4,20925,3,1672319027),(92552,4,20926,3,1672319027),(92553,4,20927,3,1672319027),(92554,4,20928,3,1672319027),(92555,4,20929,3,1672319027),(92556,4,20930,3,1672319027),(92557,4,20931,3,1672319027),(92558,4,20932,3,1672319027),(92559,4,20933,3,1672319027),(92560,4,20934,3,1672319027),(92561,4,20935,3,1672319027),(92562,4,20936,3,1672319027),(92563,4,20937,3,1672319027),(92564,4,20938,3,1672319027),(92565,4,20939,3,1672319027),(92566,4,20940,3,1672319027),(92567,4,20941,3,1672319027),(92568,4,20942,3,1672319027),(92569,4,20943,3,1672319027),(92570,4,20944,3,1672319027),(92571,4,20945,3,1672319027),(92572,4,20946,3,1672319027),(92573,4,20947,3,1672319027),(92574,4,20948,3,1672319027),(92575,4,20949,3,1672319027),(92576,4,20950,3,1672319027),(92577,4,20951,3,1672319027),(92578,4,20952,3,1672319027),(92579,4,20953,3,1672319027),(92580,4,20954,3,1672319027),(92581,4,20955,3,1672319027),(92582,4,20956,3,1672319027),(92583,4,20957,3,1672319027),(92584,4,20958,3,1672319027),(92585,4,20959,3,1672319027),(92586,4,20960,3,1672319027),(92587,4,20961,3,1672319027),(92588,4,20962,3,1672319027),(92589,4,20963,3,1672319027),(92590,4,20964,3,1672319027),(92591,4,20965,3,1672319027),(92592,4,20966,3,1672319027),(92593,4,20967,3,1672319027),(92594,4,20968,3,1672319027),(92595,4,20969,3,1672319027),(92596,4,20970,3,1672319027),(92597,4,20971,3,1672319027),(92598,4,20972,3,1672319027),(92599,4,20973,3,1672319027),(92600,4,20974,3,1672319027),(92601,4,20975,3,1672319027),(92602,4,20976,3,1672319027),(92603,4,20977,3,1672319027),(92604,4,20978,3,1672319027),(92605,4,20979,3,1672319027),(92606,4,20980,3,1672319027),(92607,4,20981,3,1672319027),(92608,4,20982,3,1672319027),(92609,4,20983,3,1672319027),(92610,4,20984,3,1672319027),(92611,4,20985,3,1672319027),(92612,4,20986,3,1672319027),(92613,4,20987,3,1672319027),(92614,4,20988,3,1672319027),(92615,4,20989,3,1672319027),(92616,4,20990,3,1672319027),(92617,4,20991,3,1672319027),(92618,4,20992,3,1672319027),(92619,4,20993,3,1672319027),(92620,4,20994,3,1672319027),(92621,4,20995,3,1672319027),(92622,4,20996,3,1672319027),(92623,4,20997,3,1672319027),(92624,4,20998,3,1672319027),(92625,4,20999,3,1672319027),(92626,4,21000,3,1672319027),(92627,4,21001,3,1672319027),(92628,4,21002,3,1672319027),(92629,4,21003,3,1672319027),(92630,4,21004,3,1672319027),(92631,4,21005,3,1672319027),(92632,4,21006,3,1672319027),(92633,4,21007,3,1672319027),(92634,4,21008,3,1672319027),(92635,4,21009,3,1672319027),(92636,4,21010,3,1672319027),(92637,4,21011,3,1672319027),(92638,4,21012,3,1672319027),(92639,4,21013,3,1672319027),(92640,4,21014,3,1672319027),(92641,4,21015,3,1672319027),(92642,4,21016,3,1672319027),(92643,4,21017,3,1672319027),(92644,4,21018,3,1672319027),(92645,4,21019,3,1672319027),(92646,4,21020,3,1672319027),(92647,4,21021,3,1672319027),(92648,4,21022,3,1672319027),(92649,4,21023,3,1672319027),(92650,4,21024,3,1672319027),(92651,4,21025,3,1672319027),(92652,4,21026,3,1672319027),(92653,4,21027,3,1672319027),(92654,4,21028,3,1672319027),(92655,4,21029,3,1672319027),(92656,4,21030,3,1672319027),(92657,4,21031,3,1672319027),(92658,4,21032,3,1672319027),(92659,4,21033,3,1672319027),(92660,4,21034,3,1672319027),(92661,4,21035,3,1672319027),(92662,4,21036,3,1672319027),(92663,4,21037,3,1672319027),(92664,4,21038,3,1672319027),(92665,4,21039,3,1672319027),(92666,4,21040,3,1672319027),(92667,4,21041,3,1672319027),(92668,4,21042,3,1672319027),(92669,4,21043,3,1672319027),(92670,4,21044,3,1672319027),(92671,4,21045,3,1672319027),(92672,4,21046,3,1672319027),(92673,4,21047,3,1672319027),(92674,4,21048,3,1672319027),(92675,4,21049,3,1672319027),(92676,4,21050,3,1672319027),(92677,4,21051,3,1672319027),(92678,4,21052,3,1672319027),(92679,4,21053,3,1672319027),(92680,4,21054,3,1672319027),(92681,4,21055,3,1672319027),(92682,4,21056,3,1672319027),(92683,4,21057,3,1672319027),(92684,4,21058,3,1672319027),(92685,4,21059,3,1672319027),(92686,4,21060,3,1672319027),(92687,4,21061,3,1672319027),(92688,4,21062,3,1672319027),(92689,4,21063,3,1672319027),(92690,4,21064,3,1672319027),(92691,4,21065,3,1672319027),(92692,4,21066,3,1672319027),(92693,4,21067,3,1672319027),(92694,4,21068,3,1672319027),(92695,4,21069,3,1672319027),(92696,4,21070,3,1672319027),(92697,4,21071,3,1672319027),(92698,4,21072,3,1672319027),(92699,4,21073,3,1672319027),(92700,4,21074,3,1672319027),(92701,4,21075,3,1672319027),(92702,4,21076,3,1672319027),(92703,4,21077,3,1672319027),(92704,4,21078,3,1672319027),(92705,4,21079,3,1672319027),(92706,4,21080,3,1672319027),(92707,4,21081,3,1672319027),(92708,4,21082,3,1672319027),(92709,4,21083,3,1672319027),(92710,4,21084,3,1672319027),(92711,4,21085,3,1672319027),(92712,4,21086,3,1672319027),(92713,4,21087,3,1672319027),(92714,4,21088,3,1672319027),(92715,4,21089,3,1672319027),(92716,4,21090,3,1672319027),(92717,4,21091,3,1672319027),(92718,4,21092,3,1672319027),(92719,4,21093,3,1672319027),(92720,4,21094,3,1672319027),(92721,4,21095,3,1672319027),(92722,4,21096,3,1672319027),(92723,4,21097,3,1672319027),(92724,4,21098,3,1672319027),(92725,4,21099,3,1672319027),(92726,4,21100,3,1672319027),(92727,4,21101,3,1672319027),(92728,4,21102,3,1672319027),(92729,4,21103,3,1672319027),(92730,4,21104,3,1672319027),(92731,4,21105,3,1672319027),(92732,4,21106,3,1672319027),(92733,4,21107,3,1672319027),(92734,4,21108,3,1672319027),(92735,4,21109,3,1672319027),(92736,4,21110,3,1672319027),(92737,4,21111,3,1672319027),(92738,4,21112,3,1672319027),(92739,4,21113,3,1672319027),(92740,4,21114,3,1672319027),(92741,4,21115,3,1672319027),(92742,4,21116,3,1672319027),(92743,4,21117,3,1672319027),(92744,4,21118,3,1672319027),(92745,4,21119,3,1672319027),(92746,4,21120,3,1672319027),(92747,4,21121,3,1672319027),(92748,4,21122,3,1672319027),(92749,4,21123,3,1672319027),(92750,4,21124,3,1672319027),(92751,4,21125,3,1672319027),(92752,4,21126,3,1672319027),(92753,4,21127,3,1672319027),(92754,4,21128,3,1672319027),(92755,4,21129,3,1672319027),(92756,4,21130,3,1672319027),(92757,4,21131,3,1672319027),(92758,4,21132,3,1672319027),(92759,4,21133,3,1672319027),(92760,4,21134,3,1672319027),(92761,4,21135,3,1672319027),(92762,4,21136,3,1672319027),(92763,4,21137,3,1672319027),(92764,4,21138,3,1672319027),(92765,4,21139,3,1672319027),(92766,4,21140,3,1672319027),(92767,4,21141,3,1672319027),(92768,4,21142,3,1672319027),(92769,4,21143,3,1672319027),(92770,4,21144,3,1672319027),(92771,4,21145,3,1672319027),(92772,4,21146,3,1672319027),(92773,4,21147,3,1672319027),(92774,4,21148,3,1672319027),(92775,4,21149,3,1672319027),(92776,4,21150,3,1672319027),(92777,4,21151,3,1672319027),(92778,4,21152,3,1672319027),(92779,4,21153,3,1672319027),(92780,4,21154,3,1672319027),(92781,4,21155,3,1672319027),(92782,4,21156,3,1672319027),(92783,4,21157,3,1672319027),(92784,4,21158,3,1672319027),(92785,4,21159,3,1672319027),(92786,4,21160,3,1672319027),(92787,4,21161,3,1672319027),(92788,4,21162,3,1672319027),(92789,4,21163,3,1672319027),(92790,4,21164,3,1672319027),(92791,4,21165,3,1672319027),(92792,4,21166,3,1672319027),(92793,4,21167,3,1672319027),(92794,4,21168,3,1672319027),(92795,4,21169,3,1672319027),(92796,4,21170,3,1672319027),(92797,4,21171,3,1672319027),(92798,4,21172,3,1672319027),(92799,4,21173,3,1672319027),(92800,4,21174,3,1672319027),(92801,4,21175,3,1672319027),(92802,4,21176,3,1672319027),(92803,4,21177,3,1672319027),(92804,4,21178,3,1672319027),(92805,4,21179,3,1672319027),(92806,4,21180,3,1672319027),(92807,4,21181,3,1672319027),(92808,4,21182,3,1672319027),(92809,4,21183,3,1672319027),(92810,4,21184,3,1672319027),(92811,4,21185,3,1672319027),(92812,4,21186,3,1672319027),(92813,4,21187,3,1672319027),(92814,4,21188,3,1672319027),(92815,4,21189,3,1672319027),(92816,4,21190,3,1672319027),(92817,4,21191,3,1672319027),(92818,4,21192,3,1672319027),(92819,4,21193,3,1672319027),(92820,4,21194,3,1672319027),(92821,4,21195,3,1672319027),(92822,4,21196,3,1672319027),(92823,4,21197,3,1672319027),(92824,4,21198,3,1672319027),(92825,4,21199,3,1672319027),(92826,4,21200,3,1672319027),(92827,4,21201,3,1672319027),(92828,4,21202,3,1672319027),(92829,4,21203,3,1672319027),(92830,4,21204,3,1672319027),(92831,4,21205,3,1672319027),(92832,4,21206,3,1672319027),(92833,4,21207,3,1672319027),(92834,4,21208,3,1672319027),(92835,4,21209,3,1672319027),(92836,4,21210,3,1672319027),(92837,4,21211,3,1672319027),(92838,4,21212,3,1672319027),(92839,4,21213,3,1672319027),(92840,4,21214,3,1672319027),(92841,4,21215,3,1672319027),(92842,4,21216,3,1672319027),(92843,4,21217,3,1672319027),(92844,4,21218,3,1672319027),(92845,4,21219,3,1672319027),(92846,4,21220,3,1672319027),(92847,4,21221,3,1672319027),(92848,4,21222,3,1672319027),(92849,4,21223,3,1672319027),(92850,4,21224,3,1672319027),(92851,4,21225,3,1672319027),(92852,4,21226,3,1672319027),(92853,4,21227,3,1672319027),(92854,4,21228,3,1672319027),(92855,4,21229,3,1672319027),(92856,4,21230,3,1672319027),(92857,4,21231,3,1672319027),(92858,4,21232,3,1672319027),(92859,4,21233,3,1672319027),(92860,4,21234,3,1672319027),(92861,4,21235,3,1672319027),(92862,4,21236,3,1672319027),(92863,4,21237,3,1672319027),(92864,4,21238,3,1672319027),(92865,4,21239,3,1672319027),(92866,4,21240,3,1672319027),(92867,4,21241,3,1672319027),(92868,4,21242,3,1672319027),(92869,4,21243,3,1672319027),(92870,4,21244,3,1672319027),(92871,4,21245,3,1672319027),(92872,4,21246,3,1672319027),(92873,4,21247,3,1672319027),(92874,4,21248,3,1672319027),(92875,4,21249,3,1672319027),(92876,4,21250,3,1672319027),(92877,4,21251,3,1672319027),(92878,4,21252,3,1672319027),(92879,4,21253,3,1672319027),(92880,4,21254,3,1672319027),(92881,4,21255,3,1672319027),(92882,4,21256,3,1672319027),(92883,4,21257,3,1672319027),(92884,4,21258,3,1672319027),(92885,4,21259,3,1672319027),(92886,4,21260,3,1672319027),(92887,4,21261,3,1672319027),(92888,4,21262,3,1672319027),(92889,4,21263,3,1672319027),(92890,4,21264,3,1672319027),(92891,4,21265,3,1672319027),(92892,4,21266,3,1672319027),(92893,4,21267,3,1672319027),(92894,4,21268,3,1672319027),(92895,4,21269,3,1672319027),(92896,4,21270,3,1672319027),(92897,4,21271,3,1672319027),(92898,4,21272,3,1672319027),(92899,4,21273,3,1672319027),(92900,4,21274,3,1672319027),(92901,4,21275,3,1672319027),(92902,4,21276,3,1672319027),(92903,4,21277,3,1672319027),(92904,4,21278,3,1672319027),(92905,4,21279,3,1672319027),(92906,4,21280,3,1672319027),(92907,4,21281,3,1672319027),(92908,4,21282,3,1672319027),(92909,4,21283,3,1672319027),(92910,4,21284,3,1672319027),(92911,4,21285,3,1672319027),(92912,4,21286,3,1672319027),(92913,4,21287,3,1672319027),(92914,4,21288,3,1672319027),(92915,4,21289,3,1672319027),(92916,4,21290,3,1672319027),(92917,4,21291,3,1672319027),(92918,4,21292,3,1672319027),(92919,4,21293,3,1672319027),(92920,4,21294,3,1672319027),(92921,4,21295,3,1672319027),(92922,4,21296,3,1672319027),(92923,4,21297,3,1672319027),(92924,4,21298,3,1672319027),(92925,4,21299,3,1672319027),(92926,4,21300,3,1672319027),(92927,4,21301,3,1672319027),(92928,4,21302,3,1672319027),(92929,4,21303,3,1672319027),(92930,4,21304,3,1672319027),(92931,4,21305,3,1672319027),(92932,4,21306,3,1672319027),(92933,4,21307,3,1672319027),(92934,4,21308,3,1672319027),(92935,4,21309,3,1672319027),(92936,4,21310,3,1672319027),(92937,4,21311,3,1672319027),(92938,4,21312,3,1672319027),(92939,4,21313,3,1672319027),(92940,4,21314,3,1672319027),(92941,4,21315,3,1672319027),(92942,4,21316,3,1672319027),(92943,4,21317,3,1672319027),(92944,4,21318,3,1672319027),(92945,4,21319,3,1672319027),(92946,4,21320,3,1672319027),(92947,4,21321,3,1672319027),(92948,4,21322,3,1672319027),(92949,4,21323,3,1672319027),(92950,4,21324,3,1672319027),(92951,4,21325,3,1672319027),(92952,4,21326,3,1672319027),(92953,4,21327,3,1672319027),(92954,4,21328,3,1672319027),(92955,4,21329,3,1672319027),(92956,4,21330,3,1672319027),(92957,4,21331,3,1672319027),(92958,4,21332,3,1672319027),(92959,4,21333,3,1672319027),(92960,4,21334,3,1672319027),(92961,4,21335,3,1672319027),(92962,4,21336,3,1672319027),(92963,4,21337,3,1672319027),(92964,4,21338,3,1672319027),(92965,4,21339,3,1672319027),(92966,4,21340,3,1672319027),(92967,4,21341,3,1672319027),(92968,4,21342,3,1672319027),(92969,4,21343,3,1672319027),(92970,4,21344,3,1672319027),(92971,4,21345,3,1672319027),(92972,4,21346,3,1672319027),(92973,4,21347,3,1672319027),(92974,4,21348,3,1672319027),(92975,4,21349,3,1672319027),(92976,4,21350,3,1672319027),(92977,4,21351,3,1672319027),(92978,4,21352,3,1672319027),(92979,4,21353,3,1672319027),(92980,4,21354,3,1672319027),(92981,4,21355,3,1672319027),(92982,4,21356,3,1672319027),(92983,4,21357,3,1672319027),(92984,4,21358,3,1672319027),(92985,4,21359,3,1672319027),(92986,4,21360,3,1672319027),(92987,4,21361,3,1672319027),(92988,4,21362,3,1672319027),(92989,4,21363,3,1672319027),(92990,4,21364,3,1672319027),(92991,4,21365,3,1672319027),(92992,4,21366,3,1672319027),(92993,4,21367,3,1672319027),(92994,4,21368,3,1672319027),(92995,4,21369,3,1672319027),(92996,4,21370,3,1672319027),(92997,4,21371,3,1672319027),(92998,4,21372,3,1672319027),(92999,4,21373,3,1672319027),(93000,4,21374,3,1672319027),(93001,4,21375,3,1672319027),(93002,4,21376,3,1672319027),(93003,4,21377,3,1672319027),(93004,4,21378,3,1672319027),(93005,4,21379,3,1672319027),(93006,4,21380,3,1672319027),(93007,4,21381,3,1672319027),(93008,4,21382,3,1672319027),(93009,4,21383,3,1672319027),(93010,4,21384,3,1672319027),(93011,4,21385,3,1672319027),(93012,4,21386,3,1672319027),(93013,4,21387,3,1672319027),(93014,4,21388,3,1672319027),(93015,4,21389,3,1672319027),(93016,4,21390,3,1672319027),(93017,4,21391,3,1672319027),(93018,4,21392,3,1672319027),(93019,4,21393,3,1672319027),(93020,4,21394,3,1672319027),(93021,4,21395,3,1672319027),(93022,4,21396,3,1672319027),(93023,4,21397,3,1672319027),(93024,4,21398,3,1672319027),(93025,4,21399,3,1672319027),(93026,4,21400,3,1672319027),(93027,4,21401,3,1672319027),(93028,4,21402,3,1672319027),(93029,4,21403,3,1672319027),(93030,4,21404,3,1672319027),(93031,4,21405,3,1672319027),(93032,4,21406,3,1672319027),(93033,4,21407,3,1672319027),(93034,4,21408,3,1672319027),(93035,4,21409,3,1672319027),(93036,4,21410,3,1672319027),(93037,4,21411,3,1672319027),(93038,4,21412,3,1672319027),(93039,4,21413,3,1672319027),(93040,4,21414,3,1672319027),(93041,4,21415,3,1672319027),(93042,4,21416,3,1672319027),(93043,4,21417,3,1672319027),(93044,4,21418,3,1672319027),(93045,4,21419,3,1672319027),(93046,4,21420,3,1672319027),(93047,4,21421,3,1672319027),(93048,4,21422,3,1672319027),(93049,4,21423,3,1672319027),(93050,4,21424,3,1672319027),(93051,4,21425,3,1672319027),(93052,4,21426,3,1672319027),(93053,4,21427,3,1672319027),(93054,4,21428,3,1672319027),(93055,4,21429,3,1672319027),(93056,4,21430,3,1672319027),(93057,4,21431,3,1672319027),(93058,4,21432,3,1672319027),(93059,4,21433,3,1672319027),(93060,4,21434,3,1672319027),(93061,4,21435,3,1672319027),(93062,4,21436,3,1672319027),(93063,4,21437,3,1672319027),(93064,4,21438,3,1672319027),(93065,4,21439,3,1672319027),(93066,4,21440,3,1672319027),(93067,4,21441,3,1672319027),(93068,4,21442,3,1672319027),(93069,4,21443,3,1672319027),(93070,4,21444,3,1672319027),(93071,4,21445,3,1672319027),(93072,4,21446,3,1672319027),(93073,4,21447,3,1672319027),(93074,4,21448,3,1672319027),(93075,4,21449,3,1672319027),(93076,4,21450,3,1672319027),(93077,4,21451,3,1672319027),(93078,4,21452,3,1672319027),(93079,4,21453,3,1672319027),(93080,4,21454,3,1672319027),(93081,4,21455,3,1672319027),(93082,4,21456,3,1672319027),(93083,4,21457,3,1672319027),(93084,4,21458,3,1672319027),(93085,4,21459,3,1672319027),(93086,4,21460,3,1672319027),(93087,4,21461,3,1672319027),(93088,4,21462,3,1672319027),(93089,4,21463,3,1672319027),(93090,4,21464,3,1672319027),(93091,4,21465,3,1672319027),(93092,4,21466,3,1672319027),(93093,4,21467,3,1672319027),(93094,4,21468,3,1672319027),(93095,4,21469,3,1672319027),(93096,4,21470,3,1672319027),(93097,4,21471,3,1672319027),(93098,4,21472,3,1672319027),(93099,4,21473,3,1672319027),(93100,4,21474,3,1672319027),(93101,4,21475,3,1672319027),(93102,4,21476,3,1672319027),(93103,4,21477,3,1672319027),(93104,4,21478,3,1672319027),(93105,4,21479,3,1672319027),(93106,4,21480,3,1672319027),(93107,4,21481,3,1672319027),(93108,4,21482,3,1672319027),(93109,4,21483,3,1672319027),(93110,4,21484,3,1672319027),(93111,4,21485,3,1672319027),(93112,4,21486,3,1672319027),(93113,4,21487,3,1672319027),(93114,4,21488,3,1672319027),(93115,4,21489,3,1672319027),(93116,4,21490,3,1672319027),(93117,4,21491,3,1672319027),(93118,4,21492,3,1672319027),(93119,4,21493,3,1672319027),(93120,4,21494,3,1672319027),(93121,4,21495,3,1672319027),(93122,4,21496,3,1672319027),(93123,4,21497,3,1672319027),(93124,4,21498,3,1672319027),(93125,4,21499,3,1672319027),(93126,4,21500,3,1672319027),(93127,4,21501,3,1672319027),(93128,4,21502,3,1672319027),(93129,4,21503,3,1672319027),(93130,4,21504,3,1672319027),(93131,4,21505,3,1672319027),(93132,4,21506,3,1672319027),(93133,4,21507,3,1672319027),(93134,4,21508,3,1672319027),(93135,4,21509,3,1672319027),(93136,4,21510,3,1672319027),(93137,4,21511,3,1672319027),(93138,4,21512,3,1672319027),(93139,4,21513,3,1672319027),(93140,4,21514,3,1672319027),(93141,4,21515,3,1672319027),(93142,4,21516,3,1672319027),(93143,4,21517,3,1672319027),(93144,4,21518,3,1672319027),(93145,4,21519,3,1672319027),(93146,4,21520,3,1672319027),(93147,4,21521,3,1672319027),(93148,4,21522,3,1672319027),(93149,4,21523,3,1672319027),(93150,4,21524,3,1672319027),(93151,4,21525,3,1672319027),(93152,4,21526,3,1672319027),(93153,4,21527,3,1672319027),(93154,4,21528,3,1672319027),(93155,4,21529,3,1672319027),(93156,4,21530,3,1672319027),(93157,4,21531,3,1672319027),(93158,4,21532,3,1672319027),(93159,4,21533,3,1672319027),(93160,4,21534,3,1672319027),(93161,4,21535,3,1672319027),(93162,4,21536,3,1672319027),(93163,4,21537,3,1672319027),(93164,4,21538,3,1672319027),(93165,4,21539,3,1672319027),(93166,4,21540,3,1672319027),(93167,4,21541,3,1672319027),(93168,4,21542,3,1672319027),(93169,4,21543,3,1672319027),(93170,4,21544,3,1672319027),(93171,4,21545,3,1672319027),(93172,4,21546,3,1672319027),(93173,4,21547,3,1672319027),(93174,4,21548,3,1672319027),(93175,4,21549,3,1672319027),(93176,4,21550,3,1672319027),(93177,4,21551,3,1672319027),(93178,4,21552,3,1672319027),(93179,4,21553,3,1672319027),(93180,4,21554,3,1672319027),(93181,4,21555,3,1672319027),(93182,4,21556,3,1672319027),(93183,4,21557,3,1672319027),(93184,4,21558,3,1672319027),(93185,4,21559,3,1672319027),(93186,4,21560,3,1672319027),(93187,4,21561,3,1672319027),(93188,4,21562,3,1672319027),(93189,4,21563,3,1672319027),(93190,4,21564,3,1672319027),(93191,4,21565,3,1672319027),(93192,4,21566,3,1672319027),(93193,4,21567,3,1672319027),(93194,4,21568,3,1672319027),(93195,4,21569,3,1672319027),(93196,4,21570,3,1672319027),(93197,4,21571,3,1672319027),(93198,4,21572,3,1672319027),(93199,4,21573,3,1672319027),(93200,4,21574,3,1672319027),(93201,4,21575,3,1672319027),(93202,4,21576,3,1672319027),(93203,4,21577,3,1672319027),(93204,4,21578,3,1672319027),(93205,4,21579,3,1672319027),(93206,4,21580,3,1672319027),(93207,4,21581,3,1672319027),(93208,4,21582,3,1672319027),(93209,4,21583,3,1672319027),(93210,4,21584,3,1672319027),(93211,4,21585,3,1672319027),(93212,4,21586,3,1672319027),(93213,4,21587,3,1672319027),(93214,4,21588,3,1672319027),(93215,4,21589,3,1672319027),(93216,4,21590,3,1672319027),(93217,4,21591,3,1672319027),(93218,4,21592,3,1672319027),(93219,4,21593,3,1672319027),(93220,4,21594,3,1672319027),(93221,4,21595,3,1672319027),(93222,4,21596,3,1672319027),(93223,4,21597,3,1672319027),(93224,4,21598,3,1672319027),(93225,4,21599,3,1672319027),(93226,4,21600,3,1672319027),(93227,4,21601,3,1672319027),(93228,4,21602,3,1672319027),(93229,4,21603,3,1672319027),(93230,4,21604,3,1672319027),(93231,4,21605,3,1672319027),(93232,4,21606,3,1672319027),(93233,4,21607,3,1672319027),(93234,4,21608,3,1672319027),(93235,4,21609,3,1672319027),(93236,4,21610,3,1672319027),(93237,4,21611,3,1672319027),(93238,4,21612,3,1672319027),(93239,4,21613,3,1672319027),(93240,4,21614,3,1672319027),(93241,4,21615,3,1672319027),(93242,4,21616,3,1672319027),(93243,4,21617,3,1672319027),(93244,4,21618,3,1672319027),(93245,4,21619,3,1672319027),(93246,4,21620,3,1672319027),(93247,4,21621,3,1672319027),(93248,4,21622,3,1672319027),(93249,4,21623,3,1672319027),(93250,4,21624,3,1672319027),(93251,4,21625,3,1672319027),(93252,4,21626,3,1672319027),(93253,4,21627,3,1672319027),(93254,4,21628,3,1672319027),(93255,4,21629,3,1672319027),(93256,4,21630,3,1672319027),(93257,4,21631,3,1672319027),(93258,4,21632,3,1672319027),(93259,4,21633,3,1672319027),(93260,4,21634,3,1672319027),(93261,4,21635,3,1672319027),(93262,4,21636,3,1672319027),(93263,4,21637,3,1672319027),(93264,4,21638,3,1672319027),(93265,4,21639,3,1672319027),(93266,4,21640,3,1672319027),(93267,4,21641,3,1672319027),(93268,4,21642,3,1672319027),(93269,4,21643,3,1672319027),(93270,4,21644,3,1672319027),(93271,4,21645,3,1672319027),(93272,4,21646,3,1672319027),(93273,4,21647,3,1672319027),(93274,4,21648,3,1672319027),(93275,4,21649,3,1672319027),(93276,4,21650,3,1672319027),(93277,4,21651,3,1672319027),(93278,4,21652,3,1672319027),(93279,4,21653,3,1672319027),(93280,4,21654,3,1672319027),(93281,4,21655,3,1672319027),(93282,4,21656,3,1672319027),(93283,4,21657,3,1672319027),(93284,4,21658,3,1672319027),(93285,4,21659,3,1672319027),(93286,4,21660,3,1672319027),(93287,4,21661,3,1672319027),(93288,4,21662,3,1672319027),(93289,4,21663,3,1672319027),(93290,4,21664,3,1672319027),(93291,4,21665,3,1672319027),(93292,4,21666,3,1672319027),(93293,4,21667,3,1672319027),(93294,4,21668,3,1672319027),(93295,4,21669,3,1672319027),(93296,4,21670,3,1672319027),(93297,4,21671,3,1672319027),(93298,4,21672,3,1672319027),(93299,4,21673,3,1672319027),(93300,4,21674,3,1672319027),(93301,4,21675,3,1672319027),(93302,4,21676,3,1672319027),(93303,4,21677,3,1672319027),(93304,4,21678,3,1672319027),(93305,4,21679,3,1672319027),(93306,4,21680,3,1672319027),(93307,4,21681,3,1672319027),(93308,4,21682,3,1672319027),(93309,4,21683,3,1672319027),(93310,4,21684,3,1672319027),(93311,4,21685,3,1672319027),(93312,4,21686,3,1672319027),(93313,4,21687,3,1672319027),(93314,4,21688,3,1672319027),(93315,4,21689,3,1672319027),(93316,4,21690,3,1672319027),(93317,4,21691,3,1672319027),(93318,4,21692,3,1672319027),(93319,4,21693,3,1672319027),(93320,4,21694,3,1672319027),(93321,4,21695,3,1672319027),(93322,4,21696,3,1672319027),(93323,4,21697,3,1672319027),(93324,4,21698,3,1672319027),(93325,4,21699,3,1672319027),(93326,4,21700,3,1672319027),(93327,4,21701,3,1672319027),(93328,4,21702,3,1672319027),(93329,4,21703,3,1672319027),(93330,4,21704,3,1672319027),(93331,4,21705,3,1672319027),(93332,4,21706,3,1672319027),(93333,4,21707,3,1672319027),(93334,4,21708,3,1672319027),(93335,4,21709,3,1672319027),(93336,4,21710,3,1672319027),(93337,4,21711,3,1672319027),(93338,4,21712,3,1672319027),(93339,4,21713,3,1672319027),(93340,4,21714,3,1672319027),(93341,4,21715,3,1672319027),(93342,4,21716,3,1672319027),(93343,4,21717,3,1672319027),(93344,4,21718,3,1672319027),(93345,4,21719,3,1672319027),(93346,4,21720,3,1672319027),(93347,4,21721,3,1672319027),(93348,4,21722,3,1672319027),(93349,4,21723,3,1672319027),(93350,4,21724,3,1672319027),(93351,4,21725,3,1672319027),(93352,4,21726,3,1672319027),(93353,4,21727,3,1672319027),(93354,4,21728,3,1672319027),(93355,4,21729,3,1672319027),(93356,4,21730,3,1672319027),(93357,4,21731,3,1672319027),(93358,4,21732,3,1672319027),(93359,4,21733,3,1672319027),(93360,4,21734,3,1672319027),(93361,4,21735,3,1672319027),(93362,4,21736,3,1672319027),(93363,4,21737,3,1672319027),(93364,4,21738,3,1672319027),(93365,4,21739,3,1672319027),(93366,4,21740,3,1672319027),(93367,4,21741,3,1672319027),(93368,4,21742,3,1672319027),(93369,4,21743,3,1672319027),(93370,4,21744,3,1672319027),(93371,4,21745,3,1672319027),(93372,4,21746,3,1672319027),(93373,4,21747,3,1672319027),(93374,4,21748,3,1672319027),(93375,4,21749,3,1672319027),(93376,4,21750,3,1672319027),(93377,4,21751,3,1672319027),(93378,4,21752,3,1672319027),(93379,4,21753,3,1672319027),(93380,4,21754,3,1672319027),(93381,4,21755,3,1672319027),(93382,4,21756,3,1672319027),(93383,4,21757,3,1672319027),(93384,4,21758,3,1672319027),(93385,4,21759,3,1672319027),(93386,4,21760,3,1672319027),(93387,4,21761,3,1672319027),(93388,4,21762,3,1672319027),(93389,4,21763,3,1672319027),(93390,4,21764,3,1672319027),(93391,4,21765,3,1672319027),(93392,4,21766,3,1672319027),(93393,4,21767,3,1672319027),(93394,4,21768,3,1672319027),(93395,4,21769,3,1672319027),(93396,4,21770,3,1672319027),(93397,4,21771,3,1672319027),(93398,4,21772,3,1672319027),(93399,4,21773,3,1672319027),(93400,4,21774,3,1672319027),(93401,4,21775,3,1672319027),(93402,4,21776,3,1672319027),(93403,4,21777,3,1672319027),(93404,4,21778,3,1672319027),(93405,4,21779,3,1672319027),(93406,4,21780,3,1672319027),(93407,4,21781,3,1672319027),(93408,4,21782,3,1672319027),(93409,4,21783,3,1672319027),(93410,4,21784,3,1672319027),(93411,4,21785,3,1672319027),(93412,4,21786,3,1672319027),(93413,4,21787,3,1672319027),(93414,4,21788,3,1672319027),(93415,4,21789,3,1672319027),(93416,4,21790,3,1672319027),(93417,4,21791,3,1672319027),(93418,4,21792,3,1672319027),(93419,4,21793,3,1672319027),(93420,4,21794,3,1672319027),(93421,4,21795,3,1672319027),(93422,4,21796,3,1672319027),(93423,4,21797,3,1672319027),(93424,4,21798,3,1672319027),(93425,4,21799,3,1672319027),(93426,4,21800,3,1672319027),(93427,4,21801,3,1672319027),(93428,4,21802,3,1672319027),(93429,4,21803,3,1672319027),(93430,4,21804,3,1672319027),(93431,4,21805,3,1672319027),(93432,4,21806,3,1672319027),(93433,4,21807,3,1672319027),(93434,4,21808,3,1672319027),(93435,4,21809,3,1672319027),(93436,4,21810,3,1672319027),(93437,4,21811,3,1672319027),(93438,4,21812,3,1672319027),(93439,4,21813,3,1672319027),(93440,4,21814,3,1672319027),(93441,4,21815,3,1672319027),(93442,4,21816,3,1672319027),(93443,4,21817,3,1672319027),(93444,4,21818,3,1672319027),(93445,4,21819,3,1672319027),(93446,4,21820,3,1672319027),(93447,4,21821,3,1672319027),(93448,4,21822,3,1672319027),(93449,4,21823,3,1672319027),(93450,4,21824,3,1672319027),(93451,4,21825,3,1672319027),(93452,4,21826,3,1672319027),(93453,4,21827,3,1672319027),(93454,4,21828,3,1672319027),(93455,4,21829,3,1672319027),(93456,4,21830,3,1672319027),(93457,4,21831,3,1672319027),(93458,4,21832,3,1672319027),(93459,4,21833,3,1672319027),(93460,4,21834,3,1672319027),(93461,4,21835,3,1672319027),(93462,4,21836,3,1672319027),(93463,4,21837,3,1672319027),(93464,4,21838,3,1672319027),(93465,4,21839,3,1672319027),(93466,4,21840,3,1672319027),(93467,4,21841,3,1672319027),(93468,4,21842,3,1672319027),(93469,4,21843,3,1672319027),(93470,4,21844,3,1672319027),(93471,4,21845,3,1672319027),(93472,4,21846,3,1672319027),(93473,4,21847,3,1672319027),(93474,4,21848,3,1672319027),(93475,4,21849,3,1672319027),(93476,4,21850,3,1672319027),(93477,4,21851,3,1672319027),(93478,4,21852,3,1672319027),(93479,4,21853,3,1672319027),(93480,4,21854,3,1672319027),(93481,4,21855,3,1672319027),(93482,4,21856,3,1672319027),(93483,4,21857,3,1672319027),(93484,4,21858,3,1672319027),(93485,4,21859,3,1672319027),(93486,4,21860,3,1672319027),(93487,4,21861,3,1672319027),(93488,4,21862,3,1672319027),(93489,4,21863,3,1672319027),(93490,4,21864,3,1672319027),(93491,4,21865,3,1672319027),(93492,4,21866,3,1672319027),(93493,4,21867,3,1672319027),(93494,4,21868,3,1672319027),(93495,4,21869,3,1672319027),(93496,4,21870,3,1672319027),(93497,4,21871,3,1672319027),(93498,4,21872,3,1672319027),(93499,4,21873,3,1672319027),(93500,4,21874,3,1672319027),(93501,4,21875,3,1672319027),(93502,4,21876,3,1672319027),(93503,4,21877,3,1672319027),(93504,4,21878,3,1672319027),(93505,4,21879,3,1672319027),(93506,4,21880,3,1672319027),(93507,4,21881,3,1672319027),(93508,4,21882,3,1672319027),(93509,4,21883,3,1672319027),(93510,4,21884,3,1672319027),(93511,4,21885,3,1672319027),(93512,4,21886,3,1672319027),(93513,4,21887,3,1672319027),(93514,4,21888,3,1672319027),(93515,4,21889,3,1672319027),(93516,4,21890,3,1672319027),(93517,4,21891,3,1672319027),(93518,4,21892,3,1672319027),(93519,4,21893,3,1672319027),(93520,4,21894,3,1672319027),(93521,4,21895,3,1672319027),(93522,4,21896,3,1672319027),(93523,4,21897,3,1672319027),(93524,4,21898,3,1672319027),(93525,4,21899,3,1672319027),(93526,4,21900,3,1672319027),(93527,4,21901,3,1672319027),(93528,4,21902,3,1672319027),(93529,4,21903,3,1672319027),(93530,4,21904,3,1672319027),(93531,4,21905,3,1672319027),(93532,4,21906,3,1672319027),(93533,4,21907,3,1672319027),(93534,4,21908,3,1672319027),(93535,4,21909,3,1672319027),(93536,4,21910,3,1672319027),(93537,4,21911,3,1672319027),(93538,4,21912,3,1672319027),(93539,4,21913,3,1672319027),(93540,4,21914,3,1672319027),(93541,4,21915,3,1672319027),(93542,4,21916,3,1672319027),(93543,4,21917,3,1672319027),(93544,4,21918,3,1672319027),(93545,4,21919,3,1672319027),(93546,4,21920,3,1672319027),(93547,4,21921,3,1672319027),(93548,4,21922,3,1672319027),(93549,4,21923,3,1672319027),(93550,4,21924,3,1672319027),(93551,4,21925,3,1672319027),(93552,4,21926,3,1672319027),(93553,4,21927,3,1672319027),(93554,4,21928,3,1672319027),(93555,4,21929,3,1672319027),(93556,4,21930,3,1672319027),(93557,4,21931,3,1672319027),(93558,4,21932,3,1672319027),(93559,4,21933,3,1672319027),(93560,4,21934,3,1672319027),(93561,4,21935,3,1672319027),(93562,4,21936,3,1672319027),(93563,4,21937,3,1672319027),(93564,4,21938,3,1672319027),(93565,4,21939,3,1672319027),(93566,4,21940,3,1672319027),(93567,4,21941,3,1672319027),(93568,4,21942,3,1672319027),(93569,4,21943,3,1672319027),(93570,4,21944,3,1672319027),(93571,4,21945,3,1672319027),(93572,4,21946,3,1672319027),(93573,4,21947,3,1672319027),(93574,4,21948,3,1672319027),(93575,4,21949,3,1672319027),(93576,4,21950,3,1672319027),(93577,4,21951,3,1672319027),(93578,4,21952,3,1672319027),(93579,4,21953,3,1672319027),(93580,4,21954,3,1672319027),(93581,4,21955,3,1672319027),(93582,4,21956,3,1672319027),(93583,4,21957,3,1672319027),(93584,4,21958,3,1672319027),(93585,4,21959,3,1672319027),(93586,4,21960,3,1672319027),(93587,4,21961,3,1672319027),(93588,4,21962,3,1672319027),(93589,4,21963,3,1672319027),(93590,4,21964,3,1672319027),(93591,4,21965,3,1672319027),(93592,4,21966,3,1672319027),(93593,4,21967,3,1672319027),(93594,4,21968,3,1672319027),(93595,4,21969,3,1672319027),(93596,4,21970,3,1672319027),(93597,4,21971,3,1672319027),(93598,4,21972,3,1672319027),(93599,4,21973,3,1672319027),(93600,4,21974,3,1672319027),(93601,4,21975,3,1672319027),(93602,4,21976,3,1672319027),(93603,4,21977,3,1672319027),(93604,4,21978,3,1672319027),(93605,4,21979,3,1672319027),(93606,4,21980,3,1672319027),(93607,4,21981,3,1672319027),(93608,4,21982,3,1672319027),(93609,4,21983,3,1672319027),(93610,4,21984,3,1672319027),(93611,4,21985,3,1672319027),(93612,4,21986,3,1672319027),(93613,4,21987,3,1672319027),(93614,4,21988,3,1672319027),(93615,4,21989,3,1672319027),(93616,4,21990,3,1672319027),(93617,4,21991,3,1672319027),(93618,4,21992,3,1672319027),(93619,4,21993,3,1672319027),(93620,4,21994,3,1672319027),(93621,4,21995,3,1672319027),(93622,4,21996,3,1672319027),(93623,4,21997,3,1672319027),(93624,4,21998,3,1672319027),(93625,4,21999,3,1672319027),(93626,4,22000,3,1672319027),(93627,4,22001,3,1672319027),(93628,4,22002,3,1672319027),(93629,4,22003,3,1672319027),(93630,4,22004,3,1672319027),(93631,4,22005,3,1672319027),(93632,4,22006,3,1672319027),(93633,4,22007,3,1672319027),(93634,4,22008,3,1672319027),(93635,4,22009,3,1672319027),(93636,4,22010,3,1672319027),(93637,4,22011,3,1672319027),(93638,4,22012,3,1672319027),(93639,4,22013,3,1672319027),(93640,4,22014,3,1672319027),(93641,4,22015,3,1672319027),(93642,4,22016,3,1672319027),(93643,4,22017,3,1672319027),(93644,4,22018,3,1672319027),(93645,4,22019,3,1672319027),(93646,4,22020,3,1672319027),(93647,4,22021,3,1672319027),(93648,4,22022,3,1672319027),(93649,4,22023,3,1672319027),(93650,4,22024,3,1672319027),(93651,4,22025,3,1672319027),(93652,4,22026,3,1672319027),(93653,4,22027,3,1672319027),(93654,4,22028,3,1672319027),(93655,4,22029,3,1672319027),(93656,4,22030,3,1672319027),(93657,4,22031,3,1672319027),(93658,4,22032,3,1672319027),(93659,4,22033,3,1672319027),(93660,4,22034,3,1672319027),(93661,4,22035,3,1672319027),(93662,4,22036,3,1672319027),(93663,4,22037,3,1672319027),(93664,4,22038,3,1672319027),(93665,4,22039,3,1672319027),(93666,4,22040,3,1672319027),(93667,4,22041,3,1672319027),(93668,4,22042,3,1672319027),(93669,4,22043,3,1672319027),(93670,4,22044,3,1672319027),(93671,4,22045,3,1672319027),(93672,4,22046,3,1672319027),(93673,4,22047,3,1672319027),(93674,4,22048,3,1672319027),(93675,4,22049,3,1672319027),(93676,4,22050,3,1672319027),(93677,4,22051,3,1672319027),(93678,4,22052,3,1672319027),(93679,4,22053,3,1672319027),(93680,4,22054,3,1672319027),(93681,4,22055,3,1672319027),(93682,4,22056,3,1672319027),(93683,4,22057,3,1672319027),(93684,4,22058,3,1672319027),(93685,4,22059,3,1672319027),(93686,4,22060,3,1672319027),(93687,4,22061,3,1672319027),(93688,4,22062,3,1672319027),(93689,4,22063,3,1672319027),(93690,4,22064,3,1672319027),(93691,4,22065,3,1672319027),(93692,4,22066,3,1672319027),(93693,4,22067,3,1672319027),(93694,4,22068,3,1672319027),(93695,4,22069,3,1672319027),(93696,4,22070,3,1672319027),(93697,4,22071,3,1672319027),(93698,4,22072,3,1672319027),(93699,4,22073,3,1672319027),(93700,4,22074,3,1672319027),(93701,4,22075,3,1672319027),(93702,4,22076,3,1672319027),(93703,4,22077,3,1672319027),(93704,4,22078,3,1672319027),(93705,4,22079,3,1672319027),(93706,4,22080,3,1672319027),(93707,4,22081,3,1672319027),(93708,4,22082,3,1672319027),(93709,4,22083,3,1672319027),(93710,4,22084,3,1672319027),(93711,4,22085,3,1672319027),(93712,4,22086,3,1672319027),(93713,4,22087,3,1672319027),(93714,4,22088,3,1672319027),(93715,4,22089,3,1672319027),(93716,4,22090,3,1672319027),(93717,4,22091,3,1672319027),(93718,4,22092,3,1672319027),(93719,4,22093,3,1672319027),(93720,4,22094,3,1672319027),(93721,4,22095,3,1672319027),(93722,4,22096,3,1672319027),(93723,4,22097,3,1672319027),(93724,4,22098,3,1672319027),(93725,4,22099,3,1672319027),(93726,4,22100,3,1672319027),(93727,4,22101,3,1672319027),(93728,4,22102,3,1672319027),(93729,4,22103,3,1672319027),(93730,4,22104,3,1672319027),(93731,4,22105,3,1672319027),(93732,4,22106,3,1672319027),(93733,4,22107,3,1672319027),(93734,4,22108,3,1672319027),(93735,4,22109,3,1672319027),(93736,4,22110,3,1672319027),(93737,4,22111,3,1672319027),(93738,4,22112,3,1672319027),(93739,4,22113,3,1672319027),(93740,4,22114,3,1672319027),(93741,4,22115,3,1672319027),(93742,4,22116,3,1672319027),(93743,4,22117,3,1672319027),(93744,4,22118,3,1672319027),(93745,4,22119,3,1672319027),(93746,4,22120,3,1672319027),(93747,4,22121,3,1672319027),(93748,4,22122,3,1672319027),(93749,4,22123,3,1672319027),(93750,4,22124,3,1672319027),(93751,4,22125,3,1672319027),(93752,4,22126,3,1672319027),(93753,4,22127,3,1672319027),(93754,4,22128,3,1672319027),(93755,4,22129,3,1672319027),(93756,4,22130,3,1672319027),(93757,4,22131,3,1672319027),(93758,4,22132,3,1672319027),(93759,4,22133,3,1672319027),(93760,4,22134,3,1672319027),(93761,4,22135,3,1672319027),(93762,4,22136,3,1672319027),(93763,4,22137,3,1672319027),(93764,4,22138,3,1672319027),(93765,4,22139,3,1672319027),(93766,4,22140,3,1672319027),(93767,4,22141,3,1672319027),(93768,4,22142,3,1672319027),(93769,4,22143,3,1672319027),(93770,4,22144,3,1672319027),(93771,4,22145,3,1672319027),(93772,4,22146,3,1672319027),(93773,4,22147,3,1672319027),(93774,4,22148,3,1672319027),(93775,4,22149,3,1672319027),(93776,4,22150,3,1672319027),(93777,4,22151,3,1672319027),(93778,4,22152,3,1672319027),(93779,4,22153,3,1672319027),(93780,4,22154,3,1672319027),(93781,4,22155,3,1672319027),(93782,4,22156,3,1672319027),(93783,4,22157,3,1672319027),(93784,4,22158,3,1672319027),(93785,4,22159,3,1672319027),(93786,4,22160,3,1672319027),(93787,4,22161,3,1672319027),(93788,4,22162,3,1672319027),(93789,4,22163,3,1672319027),(93790,4,22164,3,1672319027),(93791,4,22165,3,1672319027),(93792,4,22166,3,1672319027),(93793,4,22167,3,1672319027),(93794,4,22168,3,1672319027),(93795,4,22169,3,1672319027),(93796,4,22170,3,1672319027),(93797,4,22171,3,1672319027),(93798,4,22172,3,1672319027),(93799,4,22173,3,1672319027),(93800,4,22174,3,1672319027),(93801,4,22175,3,1672319027),(93802,4,22176,3,1672319027),(93803,4,22177,3,1672319027),(93804,4,22178,3,1672319027),(93805,4,22179,3,1672319027),(93806,4,22180,3,1672319027),(93807,4,22181,3,1672319027),(93808,4,22182,3,1672319027),(93809,4,22183,3,1672319027),(93810,4,22184,3,1672319027),(93811,4,22185,3,1672319027),(93812,4,22186,3,1672319027),(93813,4,22187,3,1672319027),(93814,4,22188,3,1672319027),(93815,4,22189,3,1672319027),(93816,4,22190,3,1672319027),(93817,4,22191,3,1672319027),(93818,4,22192,3,1672319027),(93819,4,22193,3,1672319027),(93820,4,22194,3,1672319027),(93821,4,22195,3,1672319027),(93822,4,22196,3,1672319027),(93823,4,22197,3,1672319027),(93824,4,22198,3,1672319027),(93825,4,22199,3,1672319027),(93826,4,22200,3,1672319027),(93827,4,22201,3,1672319027),(93828,4,22202,3,1672319027),(93829,4,22203,3,1672319027),(93830,4,22204,3,1672319027),(93831,4,22205,3,1672319027),(93832,4,22206,3,1672319027),(93833,4,22207,3,1672319027),(93834,4,22208,3,1672319027),(93835,4,22209,3,1672319027),(93836,4,22210,3,1672319027),(93837,4,22211,3,1672319027),(93838,4,22212,3,1672319027),(93839,4,22213,3,1672319027),(93840,4,22214,3,1672319027),(93841,4,22215,3,1672319027),(93842,4,22216,3,1672319027),(93843,4,22217,3,1672319027),(93844,4,22218,3,1672319027),(93845,4,22219,3,1672319027),(93846,4,22220,3,1672319027),(93847,4,22221,3,1672319027),(93848,4,22222,3,1672319027),(93849,4,22223,3,1672319027),(93850,4,22224,3,1672319027),(93851,4,22225,3,1672319027),(93852,4,22226,3,1672319027),(93853,4,22227,3,1672319027),(93854,4,22228,3,1672319027),(93855,4,22229,3,1672319027),(93856,4,22230,3,1672319027),(93857,4,22231,3,1672319027),(93858,4,22232,3,1672319027),(93859,4,22233,3,1672319027),(93860,4,22234,3,1672319027),(93861,4,22235,3,1672319027),(93862,4,22236,3,1672319027),(93863,4,22237,3,1672319027),(93864,4,22238,3,1672319027),(93865,4,22239,3,1672319027),(93866,4,22240,3,1672319027),(93867,4,22241,3,1672319027),(93868,4,22242,3,1672319027),(93869,4,22243,3,1672319027),(93870,4,22244,3,1672319027),(93871,4,22245,3,1672319027),(93872,4,22246,3,1672319027),(93873,4,22247,3,1672319027),(93874,4,22248,3,1672319027),(93875,4,22249,3,1672319027),(93876,4,22250,3,1672319027),(93877,4,22251,3,1672319027),(93878,4,22252,3,1672319027),(93879,4,22253,3,1672319027),(93880,4,22254,3,1672319027),(93881,4,22255,3,1672319027),(93882,4,22256,3,1672319027),(93883,4,22257,3,1672319027),(93884,4,22258,3,1672319027),(93885,4,22259,3,1672319027),(93886,4,22260,3,1672319027),(93887,4,22261,3,1672319027),(93888,4,22262,3,1672319027),(93889,4,22263,3,1672319027),(93890,4,22264,3,1672319027),(93891,4,22265,3,1672319027),(93892,4,22266,3,1672319027),(93893,4,22267,3,1672319027),(93894,4,22268,3,1672319027),(93895,4,22269,3,1672319027),(93896,4,22270,3,1672319027),(93897,4,22271,3,1672319027),(93898,4,22272,3,1672319027),(93899,4,22273,3,1672319027),(93900,4,22274,3,1672319027),(93901,4,22275,3,1672319027),(93902,4,22276,3,1672319027),(93903,4,22277,3,1672319027),(93904,4,22278,3,1672319027),(93905,4,22279,3,1672319027),(93906,4,22280,3,1672319027),(93907,4,22281,3,1672319027),(93908,4,22282,3,1672319027),(93909,4,22283,3,1672319027),(93910,4,22284,3,1672319027),(93911,4,22285,3,1672319027),(93912,4,22286,3,1672319027),(93913,4,22287,3,1672319027),(93914,4,22288,3,1672319027),(93915,4,22289,3,1672319027),(93916,4,22290,3,1672319027),(93917,4,22291,3,1672319027),(93918,4,22292,3,1672319027),(93919,4,22293,3,1672319027),(93920,4,22294,3,1672319027),(93921,4,22295,3,1672319027),(93922,4,22296,3,1672319027),(93923,4,22297,3,1672319027),(93924,4,22298,3,1672319027),(93925,4,22299,3,1672319027),(93926,4,22300,3,1672319027),(93927,4,22301,3,1672319027),(93928,4,22302,3,1672319027),(93929,4,22303,3,1672319027),(93930,4,22304,3,1672319027),(93931,4,22305,3,1672319027),(93932,4,22306,3,1672319027),(93933,4,22307,3,1672319027),(93934,4,22308,3,1672319027),(93935,4,22309,3,1672319027),(93936,4,22310,3,1672319027),(93937,4,22311,3,1672319027),(93938,4,22312,3,1672319027),(93939,4,22313,3,1672319027),(93940,4,22314,3,1672319027),(93941,4,22315,3,1672319027),(93942,4,22316,3,1672319027),(93943,4,22317,3,1672319027),(93944,4,22318,3,1672319027),(93945,4,22319,3,1672319027),(93946,4,22320,3,1672319027),(93947,4,22321,3,1672319027),(93948,4,22322,3,1672319027),(93949,4,22323,3,1672319027),(93950,4,22324,3,1672319027),(93951,4,22325,3,1672319027),(93952,4,22326,3,1672319027),(93953,4,22327,3,1672319027),(93954,4,22328,3,1672319027),(93955,4,22329,3,1672319027),(93956,4,22330,3,1672319027),(93957,4,22331,3,1672319027),(93958,4,22332,3,1672319027),(93959,4,22333,3,1672319027),(93960,4,22334,3,1672319027),(93961,4,22335,3,1672319027),(93962,4,22336,3,1672319027),(93963,4,22337,3,1672319027),(93964,4,22338,3,1672319027),(93965,4,22339,3,1672319027),(93966,4,22340,3,1672319027),(93967,4,22341,3,1672319027),(93968,4,22342,3,1672319027),(93969,4,22343,3,1672319027),(93970,4,22344,3,1672319027),(93971,4,22345,3,1672319027),(93972,4,22346,3,1672319027),(93973,4,22347,3,1672319027),(93974,4,22348,3,1672319027),(93975,4,22349,3,1672319027),(93976,4,22350,3,1672319027),(93977,4,22351,3,1672319027),(93978,4,22352,3,1672319027),(93979,4,22353,3,1672319027),(93980,4,22354,3,1672319027),(93981,4,22355,3,1672319027),(93982,4,22356,3,1672319027),(93983,4,22357,3,1672319027),(93984,4,22358,3,1672319027),(93985,4,22359,3,1672319027),(93986,4,22360,3,1672319027),(93987,4,22361,3,1672319027),(93988,4,22362,3,1672319027),(93989,4,22363,3,1672319027),(93990,4,22364,3,1672319027),(93991,4,22365,3,1672319027),(93992,4,22366,3,1672319027),(93993,4,22367,3,1672319027),(93994,4,22368,3,1672319027),(93995,4,22369,3,1672319027),(93996,4,22370,3,1672319027),(93997,4,22371,3,1672319027),(93998,4,22372,3,1672319027),(93999,4,22373,3,1672319027),(94000,4,22374,3,1672319027),(94001,4,22375,3,1672319027),(94002,4,22376,3,1672319027),(94003,4,22377,3,1672319027),(94004,4,22378,3,1672319027),(94005,4,22379,3,1672319027),(94006,4,22380,3,1672319027),(94007,4,22381,3,1672319027),(94008,4,22382,3,1672319027),(94009,4,22383,3,1672319027),(94010,4,22384,3,1672319027),(94011,4,22385,3,1672319027),(94012,4,22386,3,1672319027),(94013,4,22387,3,1672319027),(94014,4,22388,3,1672319027),(94015,4,22389,3,1672319027),(94016,4,22390,3,1672319027),(94017,4,22391,3,1672319027),(94018,4,22392,3,1672319027),(94019,4,22393,3,1672319027),(94020,4,22394,3,1672319027),(94021,4,22395,3,1672319027),(94022,4,22396,3,1672319027),(94023,4,22397,3,1672319027),(94024,4,22398,3,1672319027),(94025,4,22399,3,1672319027),(94026,4,22400,3,1672319027),(94027,4,22401,3,1672319027),(94028,4,22402,3,1672319027),(94029,4,22403,3,1672319027),(94030,4,22404,3,1672319027),(94031,4,22405,3,1672319027),(94032,4,22406,3,1672319027),(94033,4,22407,3,1672319027),(94034,4,22408,3,1672319027),(94035,4,22409,3,1672319027),(94036,4,22410,3,1672319027),(94037,4,22411,3,1672319027),(94038,4,22412,3,1672319027),(94039,4,22413,3,1672319027),(94040,4,22414,3,1672319027),(94041,4,22415,3,1672319027),(94042,4,22416,3,1672319027),(94043,4,22417,3,1672319027),(94044,4,22418,3,1672319027),(94045,4,22419,3,1672319027),(94046,4,22420,3,1672319027),(94047,4,22421,3,1672319027),(94048,4,22422,3,1672319027),(94049,4,22423,3,1672319027),(94050,4,22424,3,1672319027),(94051,4,22425,3,1672319027),(94052,4,22426,3,1672319027),(94053,4,22427,3,1672319027),(94054,4,22428,3,1672319027),(94055,4,22429,3,1672319027),(94056,4,22430,3,1672319027),(94057,4,22431,3,1672319027),(94058,4,22432,3,1672319027),(94059,4,22433,3,1672319027),(94060,4,22434,3,1672319027),(94061,4,22435,3,1672319027),(94062,4,22436,3,1672319027),(94063,4,22437,3,1672319027),(94064,4,22438,3,1672319027),(94065,4,22439,3,1672319027),(94066,4,22440,3,1672319027),(94067,4,22441,3,1672319027),(94068,4,22442,3,1672319027),(94069,4,22443,3,1672319027),(94070,4,22444,3,1672319027),(94071,4,22445,3,1672319027),(94072,4,22446,3,1672319027),(94073,4,22447,3,1672319027),(94074,4,22448,3,1672319027),(94075,4,22449,3,1672319027),(94076,4,22450,3,1672319027),(94077,4,22451,3,1672319027),(94078,4,22452,3,1672319027),(94079,4,22453,3,1672319027),(94080,4,22454,3,1672319027),(94081,4,22455,3,1672319027),(94082,4,22456,3,1672319027),(94083,4,22457,3,1672319027),(94084,4,22458,3,1672319027),(94085,4,22459,3,1672319027),(94086,4,22460,3,1672319027),(94087,4,22461,3,1672319027),(94088,4,22462,3,1672319027),(94089,4,22463,3,1672319027),(94090,4,22464,3,1672319027),(94091,4,22465,3,1672319027),(94092,4,22466,3,1672319027),(94093,4,22467,3,1672319027),(94094,4,22468,3,1672319027),(94095,4,22469,3,1672319027),(94096,4,22470,3,1672319027),(94097,4,22471,3,1672319027),(94098,4,22472,3,1672319027),(94099,4,22473,3,1672319027),(94100,4,22474,3,1672319027),(94101,4,22475,3,1672319027),(94102,4,22476,3,1672319027),(94103,4,22477,3,1672319027),(94104,4,22478,3,1672319027),(94105,4,22479,3,1672319027),(94106,4,22480,3,1672319027),(94107,4,22481,3,1672319027),(94108,4,22482,3,1672319027),(94109,4,22483,3,1672319027),(94110,4,22484,3,1672319027),(94111,4,22485,3,1672319027),(94112,4,22486,3,1672319027),(94113,4,22487,3,1672319027),(94114,4,22488,3,1672319027),(94115,4,22489,3,1672319027),(94116,4,22490,3,1672319027),(94117,4,22491,3,1672319027),(94118,4,22492,3,1672319027),(94119,4,22493,3,1672319027),(94120,4,22494,3,1672319027),(94121,4,22495,3,1672319027),(94122,4,22496,3,1672319027),(94123,4,22497,3,1672319027),(94124,4,22498,3,1672319027),(94125,4,22499,3,1672319027),(94126,4,22500,3,1672319027),(94127,4,22501,3,1672319027),(94128,4,22502,3,1672319027),(94129,4,22503,3,1672319027),(94130,4,22504,3,1672319027),(94131,4,22505,3,1672319027),(94132,4,22506,3,1672319027),(94133,4,22507,3,1672319027),(94134,4,22508,3,1672319027),(94135,4,22509,3,1672319027),(94136,4,22510,3,1672319027),(94137,4,22511,3,1672319027),(94138,4,22512,3,1672319027),(94139,4,22513,3,1672319027),(94140,4,22514,3,1672319027),(94141,4,22515,3,1672319027),(94142,4,22516,3,1672319027),(94143,4,22517,3,1672319027),(94144,4,22518,3,1672319027),(94145,4,22519,3,1672319027),(94146,4,22520,3,1672319027),(94147,4,22521,3,1672319027),(94148,4,22522,3,1672319027),(94149,4,22523,3,1672319027),(94150,4,22524,3,1672319027),(94151,4,22525,3,1672319027),(94152,4,22526,3,1672319027),(94153,4,22527,3,1672319027),(94154,4,22528,3,1672319027),(94155,4,22529,3,1672319027),(94156,4,22530,3,1672319027),(94157,4,22531,3,1672319027),(94158,4,22532,3,1672319027),(94159,4,22533,3,1672319027),(94160,4,22534,3,1672319027),(94161,4,22535,3,1672319027),(94162,4,22536,3,1672319027),(94163,4,22537,3,1672319027),(94164,4,22538,3,1672319027),(94165,4,22539,3,1672319027),(94166,4,22540,3,1672319027),(94167,4,22541,3,1672319027),(94168,4,22542,3,1672319027),(94169,4,22543,3,1672319027),(94170,4,22544,3,1672319027),(94171,4,22545,3,1672319027),(94172,4,22546,3,1672319027),(94173,4,22547,3,1672319027),(94174,4,22548,3,1672319027),(94175,4,22549,3,1672319027),(94176,4,22550,3,1672319027),(94177,4,22551,3,1672319027),(94178,4,22552,3,1672319027),(94179,4,22553,3,1672319027),(94180,4,22554,3,1672319027),(94181,4,22555,3,1672319027),(94182,4,22556,3,1672319027),(94183,4,22557,3,1672319027),(94184,4,22558,3,1672319027),(94185,4,22559,3,1672319027),(94186,4,22560,3,1672319027),(94187,4,22561,3,1672319027),(94188,4,22562,3,1672319027),(94189,4,22563,3,1672319027),(94190,4,22564,3,1672319027),(94191,4,22565,3,1672319027),(94192,4,22566,3,1672319027),(94193,4,22567,3,1672319027),(94194,4,22568,3,1672319027),(94195,4,22569,3,1672319027),(94196,4,22570,3,1672319027),(94197,4,22571,3,1672319027),(94198,4,22572,3,1672319027),(94199,4,22573,3,1672319027),(94200,4,22574,3,1672319027),(94201,4,22575,3,1672319027),(94202,4,22576,3,1672319027),(94203,4,22577,3,1672319027),(94204,4,22578,3,1672319027),(94205,4,22579,3,1672319027),(94206,4,22580,3,1672319027),(94207,4,22581,3,1672319027),(94208,4,22582,3,1672319027),(94209,4,22583,3,1672319027),(94210,4,22584,3,1672319027),(94211,4,22585,3,1672319027),(94212,4,22586,3,1672319027),(94213,4,22587,3,1672319027),(94214,4,22588,3,1672319027),(94215,4,22589,3,1672319027),(94216,4,22590,3,1672319027),(94217,4,22591,3,1672319027),(94218,4,22592,3,1672319027),(94219,4,22593,3,1672319027),(94220,4,22594,3,1672319027),(94221,4,22595,3,1672319027),(94222,4,22596,3,1672319027),(94223,4,22597,3,1672319027),(94224,4,22598,3,1672319027),(94225,4,22599,3,1672319027),(94226,4,22600,3,1672319027),(94227,4,22601,3,1672319027),(94228,4,22602,3,1672319027),(94229,4,22603,3,1672319027),(94230,4,22604,3,1672319027),(94231,4,22605,3,1672319027),(94232,4,22606,3,1672319027),(94233,4,22607,3,1672319027),(94234,4,22608,3,1672319027),(94235,4,22609,3,1672319027),(94236,4,22610,3,1672319027),(94237,4,22611,3,1672319027),(94238,4,22612,3,1672319027),(94239,4,22613,3,1672319027),(94240,4,22614,3,1672319027),(94241,4,22615,3,1672319027),(94242,4,22616,3,1672319027),(94243,4,22617,3,1672319027),(94244,4,22618,3,1672319027),(94245,4,22619,3,1672319027),(94246,4,22620,3,1672319027),(94247,4,22621,3,1672319027),(94248,4,22622,3,1672319027),(94249,4,22623,3,1672319027),(94250,4,22624,3,1672319027),(94251,4,22625,3,1672319027),(94252,4,22626,3,1672319027),(94253,4,22627,3,1672319027),(94254,4,22628,3,1672319027),(94255,4,22629,3,1672319027),(94256,4,22630,3,1672319027),(94257,4,22631,3,1672319027),(94258,4,22632,3,1672319027),(94259,4,22633,3,1672319027),(94260,4,22634,3,1672319027),(94261,4,22635,3,1672319027),(94262,4,22636,3,1672319027),(94263,4,22637,3,1672319027),(94264,4,22638,3,1672319027),(94265,4,22639,3,1672319027),(94266,4,22640,3,1672319027),(94267,4,22641,3,1672319027),(94268,4,22642,3,1672319027),(94269,4,22643,3,1672319027),(94270,4,22644,3,1672319027),(94271,4,22645,3,1672319027),(94272,4,22646,3,1672319027),(94273,4,22647,3,1672319027),(94274,4,22648,3,1672319027),(94275,4,22649,3,1672319027),(94276,4,22650,3,1672319027),(94277,4,22651,3,1672319027),(94278,4,22652,3,1672319027),(94279,4,22653,3,1672319027),(94280,4,22654,3,1672319027),(94281,4,22655,3,1672319027),(94282,4,22656,3,1672319027),(94283,4,22657,3,1672319027),(94284,4,22658,3,1672319027),(94285,4,22659,3,1672319027),(94286,4,22660,3,1672319027),(94287,4,22661,3,1672319027),(94288,4,22662,3,1672319027),(94289,4,22663,3,1672319027),(94290,4,22664,3,1672319027),(94291,4,22665,3,1672319027),(94292,4,22666,3,1672319027),(94293,4,22667,3,1672319027),(94294,4,22668,3,1672319027),(94295,4,22669,3,1672319027),(94296,4,22670,3,1672319027),(94297,4,22671,3,1672319027),(94298,4,22672,3,1672319027),(94299,4,22673,3,1672319027),(94300,4,22674,3,1672319027),(94301,4,22675,3,1672319027),(94302,4,22676,3,1672319027),(94303,4,22677,3,1672319027),(94304,4,22678,3,1672319027),(94305,4,22679,3,1672319027),(94306,4,22680,3,1672319027),(94307,4,22681,3,1672319027),(94308,4,22682,3,1672319027),(94309,4,22683,3,1672319027),(94310,4,22684,3,1672319027),(94311,4,22685,3,1672319027),(94312,4,22686,3,1672319027),(94313,4,22687,3,1672319027),(94314,4,22688,3,1672319027),(94315,4,22689,3,1672319027),(94316,4,22690,3,1672319027),(94317,4,22691,3,1672319027),(94318,4,22692,3,1672319027),(94319,4,22693,3,1672319027),(94320,4,22694,3,1672319027),(94321,4,22695,3,1672319027),(94322,4,22696,3,1672319027),(94323,4,22697,3,1672319027),(94324,4,22698,3,1672319027),(94325,4,22699,3,1672319027),(94326,4,22700,3,1672319027),(94327,4,22701,3,1672319027),(94328,4,22702,3,1672319027),(94329,4,22703,3,1672319027),(94330,4,22704,3,1672319027),(94331,4,22705,3,1672319027),(94332,4,22706,3,1672319027),(94333,4,22707,3,1672319027),(94334,4,22708,3,1672319027),(94335,4,22709,3,1672319027),(94336,4,22710,3,1672319027),(94337,4,22711,3,1672319027),(94338,4,22712,3,1672319027),(94339,4,22713,3,1672319027),(94340,4,22714,3,1672319027),(94341,4,22715,3,1672319027),(94342,4,22716,3,1672319027),(94343,4,22717,3,1672319027),(94344,4,22718,3,1672319027),(94345,4,22719,3,1672319027),(94346,4,22720,3,1672319027),(94347,4,22721,3,1672319027),(94348,4,22722,3,1672319027),(94349,4,22723,3,1672319027),(94350,4,22724,3,1672319027),(94351,4,22725,3,1672319027),(94352,4,22726,3,1672319027),(94353,4,22727,3,1672319027),(94354,4,22728,3,1672319027),(94355,4,22729,3,1672319027),(94356,4,22730,3,1672319027),(94357,4,22731,3,1672319027),(94358,4,22732,3,1672319027),(94359,4,22733,3,1672319027),(94360,4,22734,3,1672319027),(94361,4,22735,3,1672319027),(94362,4,22736,3,1672319027),(94363,4,22737,3,1672319027),(94364,4,22738,3,1672319027),(94365,4,22739,3,1672319027),(94366,4,22740,3,1672319027),(94367,4,22741,3,1672319027),(94368,4,22742,3,1672319027),(94369,4,22743,3,1672319027),(94370,4,22744,3,1672319027),(94371,4,22745,3,1672319027),(94372,4,22746,3,1672319027),(94373,4,22747,3,1672319027),(94374,4,22748,3,1672319027),(94375,4,22749,3,1672319027),(94376,4,22750,3,1672319027),(94377,4,22751,3,1672319027),(94378,4,22752,3,1672319027),(94379,4,22753,3,1672319027),(94380,4,22754,3,1672319027),(94381,4,22755,3,1672319027),(94382,4,22756,3,1672319027),(94383,4,22757,3,1672319027),(94384,4,22758,3,1672319027),(94385,4,22759,3,1672319027),(94386,4,22760,3,1672319027),(94387,4,22761,3,1672319027),(94388,4,22762,3,1672319027),(94389,4,22763,3,1672319027),(94390,4,22764,3,1672319027),(94391,4,22765,3,1672319027),(94392,4,22766,3,1672319027),(94393,4,22767,3,1672319027),(94394,4,22768,3,1672319027),(94395,4,22769,3,1672319027),(94396,4,22770,3,1672319027),(94397,4,22771,3,1672319027),(94398,4,22772,3,1672319027),(94399,4,22773,3,1672319027),(94400,4,22774,3,1672319027),(94401,4,22775,3,1672319027),(94402,4,22776,3,1672319027),(94403,4,22777,3,1672319027),(94404,4,22778,3,1672319027),(94405,4,22779,3,1672319027),(94406,4,22780,3,1672319027),(94407,4,22781,3,1672319027),(94408,4,22782,3,1672319027),(94409,4,22783,3,1672319027),(94410,4,22784,3,1672319027),(94411,4,22785,3,1672319027),(94412,4,22786,3,1672319027),(94413,4,22787,3,1672319027),(94414,4,22788,3,1672319027),(94415,4,22789,3,1672319027),(94416,4,22790,3,1672319027),(94417,4,22791,3,1672319027),(94418,4,22792,3,1672319027),(94419,4,22793,3,1672319027),(94420,4,22794,3,1672319027),(94421,4,22795,3,1672319027),(94422,4,22796,3,1672319027),(94423,4,22797,3,1672319027),(94424,4,22798,3,1672319027),(94425,4,22799,3,1672319027),(94426,4,22800,3,1672319027),(94427,4,22801,3,1672319027),(94428,4,22802,3,1672319027),(94429,4,22803,3,1672319027),(94430,4,22804,3,1672319027),(94431,4,22805,3,1672319027),(94432,4,22806,3,1672319027),(94433,4,22807,3,1672319027),(94434,4,22808,3,1672319027),(94435,4,22809,3,1672319027),(94436,4,22810,3,1672319027),(94437,4,22811,3,1672319027),(94438,4,22812,3,1672319027),(94439,4,22813,3,1672319027),(94440,4,22814,3,1672319027),(94441,4,22815,3,1672319027),(94442,4,22816,3,1672319027),(94443,4,22817,3,1672319027),(94444,4,22818,3,1672319027),(94445,4,22819,3,1672319027),(94446,4,22820,3,1672319027),(94447,4,22821,3,1672319027),(94448,4,22822,3,1672319027),(94449,4,22823,3,1672319027),(94450,4,22824,3,1672319027),(94451,4,22825,3,1672319027),(94452,4,22826,3,1672319027),(94453,4,22827,3,1672319027),(94454,4,22828,3,1672319027),(94455,4,22829,3,1672319027),(94456,4,22830,3,1672319027),(94457,4,22831,3,1672319027),(94458,4,22832,3,1672319027),(94459,4,22833,3,1672319027),(94460,4,22834,3,1672319027),(94461,4,22835,3,1672319027),(94462,4,22836,3,1672319027),(94463,4,22837,3,1672319027),(94464,4,22838,3,1672319027),(94465,4,22839,3,1672319027),(94466,4,22840,3,1672319027),(94467,4,22841,3,1672319027),(94468,4,22842,3,1672319027),(94469,4,22843,3,1672319027),(94470,4,22844,3,1672319027),(94471,4,22845,3,1672319027),(94472,4,22846,3,1672319027),(94473,4,22847,3,1672319027),(94474,4,22848,3,1672319027),(94475,4,22849,3,1672319027),(94476,4,22850,3,1672319027),(94477,4,22851,3,1672319027),(94478,4,22852,3,1672319027),(94479,4,22853,3,1672319027),(94480,4,22854,3,1672319027),(94481,4,22855,3,1672319027),(94482,4,22856,3,1672319027),(94483,4,22857,3,1672319027),(94484,4,22858,3,1672319027),(94485,4,22859,3,1672319027),(94486,4,22860,3,1672319027),(94487,4,22861,3,1672319027),(94488,4,22862,3,1672319027),(94489,4,22863,3,1672319027),(94490,4,22864,3,1672319027),(94491,4,22865,3,1672319027),(94492,4,22866,3,1672319027),(94493,4,22867,3,1672319027),(94494,4,22868,3,1672319027),(94495,4,22869,3,1672319027),(94496,4,22870,3,1672319027),(94497,4,22871,3,1672319027),(94498,4,22872,3,1672319027),(94499,4,22873,3,1672319027),(94500,4,22874,3,1672319027),(94501,4,22875,3,1672319027),(94502,4,22876,3,1672319027),(94503,4,22877,3,1672319027),(94504,4,22878,3,1672319027),(94505,4,22879,3,1672319027),(94506,4,22880,3,1672319027),(94507,4,22881,3,1672319027),(94508,4,22882,3,1672319027),(94509,4,22883,3,1672319027),(94510,4,22884,3,1672319027),(94511,4,22885,3,1672319027),(94512,4,22886,3,1672319027),(94513,4,22887,3,1672319027),(94514,4,22888,3,1672319027),(94515,4,22889,3,1672319027),(94516,4,22890,3,1672319027),(94517,4,22891,3,1672319027),(94518,4,22892,3,1672319027),(94519,4,22893,3,1672319027),(94520,4,22894,3,1672319027),(94521,4,22895,3,1672319027),(94522,4,22896,3,1672319027),(94523,4,22897,3,1672319027),(94524,4,22898,3,1672319027),(94525,4,22899,3,1672319027),(94526,4,22900,3,1672319027),(94527,4,22901,3,1672319027),(94528,4,22902,3,1672319027),(94529,4,22903,3,1672319027),(94530,4,22904,3,1672319027),(94531,4,22905,3,1672319027),(94532,4,22906,3,1672319027),(94533,4,22907,3,1672319027),(94534,4,22908,3,1672319027),(94535,4,22909,3,1672319027),(94536,4,22910,3,1672319027),(94537,4,22911,3,1672319027),(94538,4,22912,3,1672319027),(94539,4,22913,3,1672319027),(94540,4,22914,3,1672319027),(94541,4,22915,3,1672319027),(94542,4,22916,3,1672319027),(94543,4,22917,3,1672319027),(94544,4,22918,3,1672319027),(94545,4,22919,3,1672319027),(94546,4,22920,3,1672319027),(94547,4,22921,3,1672319027),(94548,4,22922,3,1672319027),(94549,4,22923,3,1672319027),(94550,4,22924,3,1672319027),(94551,4,22925,3,1672319027),(94552,4,22926,3,1672319027),(94553,4,22927,3,1672319027),(94554,4,22928,3,1672319027),(94555,4,22929,3,1672319027),(94556,4,22930,3,1672319027),(94557,4,22931,3,1672319027),(94558,4,22932,3,1672319027),(94559,4,22933,3,1672319027),(94560,4,22934,3,1672319027),(94561,4,22935,3,1672319027),(94562,4,22936,3,1672319027),(94563,4,22937,3,1672319027),(94564,4,22938,3,1672319027),(94565,4,22939,3,1672319027),(94566,4,22940,3,1672319027),(94567,4,22941,3,1672319027),(94568,4,22942,3,1672319027),(94569,4,22943,3,1672319027),(94570,4,22944,3,1672319027),(94571,4,22945,3,1672319027),(94572,4,22946,3,1672319027),(94573,4,22947,3,1672319027),(94574,4,22948,3,1672319027),(94575,4,22949,3,1672319027),(94576,4,22950,3,1672319027),(94577,4,22951,3,1672319027),(94578,4,22952,3,1672319027),(94579,4,22953,3,1672319027),(94580,4,22954,3,1672319027),(94581,4,22955,3,1672319027),(94582,4,22956,3,1672319027),(94583,4,22957,3,1672319027),(94584,4,22958,3,1672319027),(94585,4,22959,3,1672319027),(94586,4,22960,3,1672319027),(94587,4,22961,3,1672319027),(94588,4,22962,3,1672319027),(94589,4,22963,3,1672319027),(94590,4,22964,3,1672319027),(94591,4,22965,3,1672319027),(94592,4,22966,3,1672319027),(94593,4,22967,3,1672319027),(94594,4,22968,3,1672319027),(94595,4,22969,3,1672319027),(94596,4,22970,3,1672319027),(94597,4,22971,3,1672319027),(94598,4,22972,3,1672319027),(94599,4,22973,3,1672319027),(94600,4,22974,3,1672319027),(94601,4,22975,3,1672319027),(94602,4,22976,3,1672319027),(94603,4,22977,3,1672319027),(94604,4,22978,3,1672319027),(94605,4,22979,3,1672319027),(94606,4,22980,3,1672319027),(94607,4,22981,3,1672319027),(94608,4,22982,3,1672319027),(94609,4,22983,3,1672319027),(94610,4,22984,3,1672319027),(94611,4,22985,3,1672319027),(94612,4,22986,3,1672319027),(94613,4,22987,3,1672319027),(94614,4,22988,3,1672319027),(94615,4,22989,3,1672319027),(94616,4,22990,3,1672319027),(94617,4,22991,3,1672319027),(94618,4,22992,3,1672319027),(94619,4,22993,3,1672319027),(94620,4,22994,3,1672319027),(94621,4,22995,3,1672319027),(94622,4,22996,3,1672319027),(94623,4,22997,3,1672319027),(94624,4,22998,3,1672319027),(94625,4,22999,3,1672319027),(94626,4,23000,3,1672319027),(94627,4,23001,3,1672319027),(94628,4,23002,3,1672319027),(94629,4,23003,3,1672319027),(94630,4,23004,3,1672319027),(94631,4,23005,3,1672319027),(94632,4,23006,3,1672319027),(94633,4,23007,3,1672319027),(94634,4,23008,3,1672319027),(94635,4,23009,3,1672319027),(94636,4,23010,3,1672319027),(94637,4,23011,3,1672319027),(94638,4,23012,3,1672319027),(94639,4,23013,3,1672319027),(94640,4,23014,3,1672319027),(94641,4,23015,3,1672319027),(94642,4,23016,3,1672319027),(94643,4,23017,3,1672319027),(94644,4,23018,3,1672319027),(94645,4,23019,3,1672319027),(94646,4,23020,3,1672319027),(94647,4,23021,3,1672319027),(94648,4,23022,3,1672319027),(94649,4,23023,3,1672319027),(94650,4,23024,3,1672319027),(94651,4,23025,3,1672319027),(94652,4,23026,3,1672319027),(94653,4,23027,3,1672319027),(94654,4,23028,3,1672319027),(94655,4,23029,3,1672319027),(94656,4,23030,3,1672319027),(94657,4,23031,3,1672319027),(94658,4,23032,3,1672319027),(94659,4,23033,3,1672319027),(94660,4,23034,3,1672319027),(94661,4,23035,3,1672319027),(94662,4,23036,3,1672319027),(94663,4,23037,3,1672319027),(94664,4,23038,3,1672319027),(94665,4,23039,3,1672319027),(94666,4,23040,3,1672319027),(94667,4,23041,3,1672319027),(94668,4,23042,3,1672319027),(94669,4,23043,3,1672319027),(94670,4,23044,3,1672319027),(94671,4,23045,3,1672319027),(94672,4,23046,3,1672319027),(94673,4,23047,3,1672319027),(94674,4,23048,3,1672319027),(94675,4,23049,3,1672319027),(94676,4,23050,3,1672319027),(94677,4,23051,3,1672319027),(94678,4,23052,3,1672319027),(94679,4,23053,3,1672319027),(94680,4,23054,3,1672319027),(94681,4,23055,3,1672319027),(94682,4,23056,3,1672319027),(94683,4,23057,3,1672319027),(94684,4,23058,3,1672319027),(94685,4,23059,3,1672319027),(94686,4,23060,3,1672319027),(94687,4,23061,3,1672319027),(94688,4,23062,3,1672319027),(94689,4,23063,3,1672319027),(94690,4,23064,3,1672319027),(94691,4,23065,3,1672319027),(94692,4,23066,3,1672319027),(94693,4,23067,3,1672319027),(94694,4,23068,3,1672319027),(94695,4,23069,3,1672319027),(94696,4,23070,3,1672319027),(94697,4,23071,3,1672319027),(94698,4,23072,3,1672319027),(94699,4,23073,3,1672319027),(94700,4,23074,3,1672319027),(94701,4,23075,3,1672319027),(94702,4,23076,3,1672319027),(94703,4,23077,3,1672319027),(94704,4,23078,3,1672319027),(94705,4,23079,3,1672319027),(94706,4,23080,3,1672319027),(94707,4,23081,3,1672319027),(94708,4,23082,3,1672319027),(94709,4,23083,3,1672319027),(94710,4,23084,3,1672319027),(94711,4,23085,3,1672319027),(94712,4,23086,3,1672319027),(94713,4,23087,3,1672319027),(94714,4,23088,3,1672319027),(94715,4,23089,3,1672319027),(94716,4,23090,3,1672319027),(94717,4,23091,3,1672319027),(94718,4,23092,3,1672319027),(94719,4,23093,3,1672319027),(94720,4,23094,3,1672319027),(94721,4,23095,3,1672319027),(94722,4,23096,3,1672319027),(94723,4,23097,3,1672319027),(94724,4,23098,3,1672319027),(94725,4,23099,3,1672319027),(94726,4,23100,3,1672319027),(94727,4,23101,3,1672319027),(94728,4,23102,3,1672319027),(94729,4,23103,3,1672319027),(94730,4,23104,3,1672319027),(94731,4,23105,3,1672319027),(94732,4,23106,3,1672319027),(94733,4,23107,3,1672319027),(94734,4,23108,3,1672319027),(94735,4,23109,3,1672319027),(94736,4,23110,3,1672319027),(94737,4,23111,3,1672319027),(94738,4,23112,3,1672319027),(94739,4,23113,3,1672319027),(94740,4,23114,3,1672319027),(94741,4,23115,3,1672319027),(94742,4,23116,3,1672319027),(94743,4,23117,3,1672319027),(94744,4,23118,3,1672319027),(94745,4,23119,3,1672319027),(94746,4,23120,3,1672319027),(94747,4,23121,3,1672319027),(94748,4,23122,3,1672319027),(94749,4,23123,3,1672319027),(94750,4,23124,3,1672319027),(94751,4,23125,3,1672319027),(94752,4,23126,3,1672319027),(94753,4,23127,3,1672319027),(94754,4,23128,3,1672319027),(94755,4,23129,3,1672319027),(94756,4,23130,3,1672319027),(94757,4,23131,3,1672319027),(94758,4,23132,3,1672319027),(94759,4,23133,3,1672319027),(94760,4,23134,3,1672319027),(94761,4,23135,3,1672319027),(94762,4,23136,3,1672319027),(94763,4,23137,3,1672319027),(94764,4,23138,3,1672319027),(94765,4,23139,3,1672319027),(94766,4,23140,3,1672319027),(94767,4,23141,3,1672319027),(94768,4,23142,3,1672319027),(94769,4,23143,3,1672319027),(94770,4,23144,3,1672319027),(94771,4,23145,3,1672319027),(94772,4,23146,3,1672319027),(94773,4,23147,3,1672319027),(94774,4,23148,3,1672319027),(94775,4,23149,3,1672319027),(94776,4,23150,3,1672319027),(94777,4,23151,3,1672319027),(94778,4,23152,3,1672319027),(94779,4,23153,3,1672319027),(94780,4,23154,3,1672319027),(94781,4,23155,3,1672319027),(94782,4,23156,3,1672319027),(94783,4,23157,3,1672319027),(94784,4,23158,3,1672319027),(94785,4,23159,3,1672319027),(94786,4,23160,3,1672319027),(94787,4,23161,3,1672319027),(94788,4,23162,3,1672319027),(94789,4,23163,3,1672319027),(94790,4,23164,3,1672319027),(94791,4,23165,3,1672319027),(94792,4,23166,3,1672319027),(94793,4,23167,3,1672319027),(94794,4,23168,3,1672319027),(94795,4,23169,3,1672319027),(94796,4,23170,3,1672319027),(94797,4,23171,3,1672319027),(94798,4,23172,3,1672319027),(94799,4,23173,3,1672319027),(94800,4,23174,3,1672319027),(94801,4,23175,3,1672319027),(94802,4,23176,3,1672319027),(94803,4,23177,3,1672319027),(94804,4,23178,3,1672319027),(94805,4,23179,3,1672319027),(94806,4,23180,3,1672319027),(94807,4,23181,3,1672319027),(94808,4,23182,3,1672319027),(94809,4,23183,3,1672319027),(94810,4,23184,3,1672319027),(94811,4,23185,3,1672319027),(94812,4,23186,3,1672319027),(94813,4,23187,3,1672319027),(94814,4,23188,3,1672319027),(94815,4,23189,3,1672319027),(94816,4,23190,3,1672319027),(94817,4,23191,3,1672319027),(94818,4,23192,3,1672319027),(94819,4,23193,3,1672319027),(94820,4,23194,3,1672319027),(94821,4,23195,3,1672319027),(94822,4,23196,3,1672319027),(94823,4,23197,3,1672319027),(94824,4,23198,3,1672319027),(94825,4,23199,3,1672319027),(94826,4,23200,3,1672319027),(94827,4,23201,3,1672319027),(94828,4,23202,3,1672319027),(94829,4,23203,3,1672319027),(94830,4,23204,3,1672319027),(94831,4,23205,3,1672319027),(94832,4,23206,3,1672319027),(94833,4,23207,3,1672319027),(94834,4,23208,3,1672319027),(94835,4,23209,3,1672319027),(94836,4,23210,3,1672319027),(94837,4,23211,3,1672319027),(94838,4,23212,3,1672319027),(94839,4,23213,3,1672319027),(94840,4,23214,3,1672319027),(94841,4,23215,3,1672319027),(94842,4,23216,3,1672319027),(94843,4,23217,3,1672319027),(94844,4,23218,3,1672319027),(94845,4,23219,3,1672319027),(94846,4,23220,3,1672319027),(94847,4,23221,3,1672319027),(94848,4,23222,3,1672319027),(94849,4,23223,3,1672319027),(94850,4,23224,3,1672319027),(94851,4,23225,3,1672319027),(94852,4,23226,3,1672319027),(94853,4,23227,3,1672319027),(94854,4,23228,3,1672319027),(94855,4,23229,3,1672319027),(94856,4,23230,3,1672319027),(94857,4,23231,3,1672319027),(94858,4,23232,3,1672319027),(94859,4,23233,3,1672319027),(94860,4,23234,3,1672319027),(94861,4,23235,3,1672319027),(94862,4,23236,3,1672319027),(94863,4,23237,3,1672319027),(94864,4,23238,3,1672319027),(94865,4,23239,3,1672319027),(94866,4,23240,3,1672319027),(94867,4,23241,3,1672319027),(94868,4,23242,3,1672319027),(94869,4,23243,3,1672319027),(94870,4,23244,3,1672319027),(94871,4,23245,3,1672319027),(94872,4,23246,3,1672319027),(94873,4,23247,3,1672319027),(94874,4,23248,3,1672319027),(94875,4,23249,3,1672319027),(94876,4,23250,3,1672319027),(94877,4,23251,3,1672319027),(94878,4,23252,3,1672319027),(94879,4,23253,3,1672319027),(94880,4,23254,3,1672319027),(94881,4,23255,3,1672319027),(94882,4,23256,3,1672319027),(94883,4,23257,3,1672319027),(94884,4,23258,3,1672319027),(94885,4,23259,3,1672319027),(94886,4,23260,3,1672319027),(94887,4,23261,3,1672319027),(94888,4,23262,3,1672319027),(94889,4,23263,3,1672319027),(94890,4,23264,3,1672319027),(94891,4,23265,3,1672319027),(94892,4,23266,3,1672319027),(94893,4,23267,3,1672319027),(94894,4,23268,3,1672319027),(94895,4,23269,3,1672319027),(94896,4,23270,3,1672319027),(94897,4,23271,3,1672319027),(94898,4,23272,3,1672319027),(94899,4,23273,3,1672319027),(94900,4,23274,3,1672319027),(94901,4,23275,3,1672319027),(94902,4,23276,3,1672319027),(94903,4,23277,3,1672319027),(94904,4,23278,3,1672319027),(94905,4,23279,3,1672319027),(94906,4,23280,3,1672319027),(94907,4,23281,3,1672319027),(94908,4,23282,3,1672319027),(94909,4,23283,3,1672319027),(94910,4,23284,3,1672319027),(94911,4,23285,3,1672319027),(94912,4,23286,3,1672319027),(94913,4,23287,3,1672319027),(94914,4,23288,3,1672319027),(94915,4,23289,3,1672319027),(94916,4,23290,3,1672319027),(94917,4,23291,3,1672319027),(94918,4,23292,3,1672319027),(94919,4,23293,3,1672319027),(94920,4,23294,3,1672319027),(94921,4,23295,3,1672319027),(94922,4,23296,3,1672319027),(94923,4,23297,3,1672319027),(94924,4,23298,3,1672319027),(94925,4,23299,3,1672319027),(94926,4,23300,3,1672319027),(94927,4,23301,3,1672319027),(94928,4,23302,3,1672319027),(94929,4,23303,3,1672319027),(94930,4,23304,3,1672319027),(94931,4,23305,3,1672319027),(94932,4,23306,3,1672319027),(94933,4,23307,3,1672319027),(94934,4,23308,3,1672319027),(94935,4,23309,3,1672319027),(94936,4,23310,3,1672319027),(94937,4,23311,3,1672319027),(94938,4,23312,3,1672319027),(94939,4,23313,3,1672319027),(94940,4,23314,3,1672319027),(94941,4,23315,3,1672319027),(94942,4,23316,3,1672319027),(94943,4,23317,3,1672319027),(94944,4,23318,3,1672319027),(94945,4,23319,3,1672319027),(94946,4,23320,3,1672319027),(94947,4,23321,3,1672319027),(94948,4,23322,3,1672319027),(94949,4,23323,3,1672319027),(94950,4,23324,3,1672319027),(94951,4,23325,3,1672319027),(94952,4,23326,3,1672319027),(94953,4,23327,3,1672319027),(94954,4,23328,3,1672319027),(94955,4,23329,3,1672319027),(94956,4,23330,3,1672319027),(94957,4,23331,3,1672319027),(94958,4,23332,3,1672319027),(94959,4,23333,3,1672319027),(94960,4,23334,3,1672319027),(94961,4,23335,3,1672319027),(94962,4,23336,3,1672319027),(94963,4,23337,3,1672319027),(94964,4,23338,3,1672319027),(94965,4,23339,3,1672319027),(94966,4,23340,3,1672319027),(94967,4,23341,3,1672319027),(94968,4,23342,3,1672319027),(94969,4,23343,3,1672319027),(94970,4,23344,3,1672319027),(94971,4,23345,3,1672319027),(94972,4,23346,3,1672319027),(94973,4,23347,3,1672319027),(94974,4,23348,3,1672319027),(94975,4,23349,3,1672319027),(94976,4,23350,3,1672319027),(94977,4,23351,3,1672319027),(94978,4,23352,3,1672319027),(94979,4,23353,3,1672319027),(94980,4,23354,3,1672319027),(94981,4,23355,3,1672319027),(94982,4,23356,3,1672319027),(94983,4,23357,3,1672319027),(94984,4,23358,3,1672319027),(94985,4,23359,3,1672319027),(94986,4,23360,3,1672319027),(94987,4,23361,3,1672319027),(94988,4,23362,3,1672319027),(94989,4,23363,3,1672319027),(94990,4,23364,3,1672319027),(94991,4,23365,3,1672319027),(94992,4,23366,3,1672319027),(94993,4,23367,3,1672319027),(94994,4,23368,3,1672319027),(94995,4,23369,3,1672319027),(94996,4,23370,3,1672319027),(94997,4,23371,3,1672319027),(94998,4,23372,3,1672319027),(94999,4,23373,3,1672319027),(95000,4,23374,3,1672319027),(95001,4,23375,3,1672319027),(95002,4,23376,3,1672319027),(95003,4,23377,3,1672319027),(95004,4,23378,3,1672319027),(95005,4,23379,3,1672319027),(95006,4,23380,3,1672319027),(95007,4,23381,3,1672319027),(95008,4,23382,3,1672319027),(95009,4,23383,3,1672319027),(95010,4,23384,3,1672319027),(95011,4,23385,3,1672319027),(95012,4,23386,3,1672319027),(95013,4,23387,3,1672319027),(95014,4,23388,3,1672319027),(95015,4,23389,3,1672319027),(95016,4,23390,3,1672319027),(95017,4,23391,3,1672319027),(95018,4,23392,3,1672319027),(95019,4,23393,3,1672319027),(95020,4,23394,3,1672319027),(95021,4,23395,3,1672319027),(95022,4,23396,3,1672319027),(95023,4,23397,3,1672319027),(95024,4,23398,3,1672319027),(95025,4,23399,3,1672319027),(95026,4,23400,3,1672319027),(95027,4,23401,3,1672319027),(95028,4,23402,3,1672319027),(95029,4,23403,3,1672319027),(95030,4,23404,3,1672319027),(95031,4,23405,3,1672319027),(95032,4,23406,3,1672319027),(95033,4,23407,3,1672319027),(95034,4,23408,3,1672319027),(95035,4,23409,3,1672319027),(95036,4,23410,3,1672319027),(95037,4,23411,3,1672319027),(95038,4,23412,3,1672319027),(95039,4,23413,3,1672319027),(95040,4,23414,3,1672319027),(95041,4,23415,3,1672319027),(95042,4,23416,3,1672319027),(95043,4,23417,3,1672319027),(95044,4,23418,3,1672319027),(95045,4,23419,3,1672319027),(95046,4,23420,3,1672319027),(95047,4,23421,3,1672319027),(95048,4,23422,3,1672319027),(95049,4,23423,3,1672319027),(95050,4,23424,3,1672319027),(95051,4,23425,3,1672319027),(95052,4,23426,3,1672319027),(95053,4,23427,3,1672319027),(95054,4,23428,3,1672319027),(95055,4,23429,3,1672319027),(95056,4,23430,3,1672319027),(95057,4,23431,3,1672319027),(95058,4,23432,3,1672319027),(95059,4,23433,3,1672319027),(95060,4,23434,3,1672319027),(95061,4,23435,3,1672319027),(95062,4,23436,3,1672319027),(95063,4,23437,3,1672319027),(95064,4,23438,3,1672319027),(95065,4,23439,3,1672319027),(95066,4,23440,3,1672319027),(95067,4,23441,3,1672319027),(95068,4,23442,3,1672319027),(95069,4,23443,3,1672319027),(95070,4,23444,3,1672319027),(95071,4,23445,3,1672319027),(95072,4,23446,3,1672319027),(95073,4,23447,3,1672319027),(95074,4,23448,3,1672319027),(95075,4,23449,3,1672319027),(95076,4,23450,3,1672319027),(95077,4,23451,3,1672319027),(95078,4,23452,3,1672319027),(95079,4,23453,3,1672319027),(95080,4,23454,3,1672319027),(95081,4,23455,3,1672319027),(95082,4,23456,3,1672319027),(95083,4,23457,3,1672319027),(95084,4,23458,3,1672319027),(95085,4,23459,3,1672319027),(95086,4,23460,3,1672319027),(95087,4,23461,3,1672319027),(95088,4,23462,3,1672319027),(95089,4,23463,3,1672319027),(95090,4,23464,3,1672319027),(95091,4,23465,3,1672319027),(95092,4,23466,3,1672319027),(95093,4,23467,3,1672319027),(95094,4,23468,3,1672319027),(95095,4,23469,3,1672319027),(95096,4,23470,3,1672319027),(95097,4,23471,3,1672319027),(95098,4,23472,3,1672319027),(95099,4,23473,3,1672319027),(95100,4,23474,3,1672319027),(95101,4,23475,3,1672319027),(95102,4,23476,3,1672319027),(95103,4,23477,3,1672319027),(95104,4,23478,3,1672319027),(95105,4,23479,3,1672319027),(95106,4,23480,3,1672319027),(95107,4,23481,3,1672319027),(95108,4,23482,3,1672319027),(95109,4,23483,3,1672319027),(95110,4,23484,3,1672319027),(95111,4,23485,3,1672319027),(95112,4,23486,3,1672319027),(95113,4,23487,3,1672319027),(95114,4,23488,3,1672319027),(95115,4,23489,3,1672319027),(95116,4,23490,3,1672319027),(95117,4,23491,3,1672319027),(95118,4,23492,3,1672319027),(95119,4,23493,3,1672319027),(95120,4,23494,3,1672319027),(95121,4,23495,3,1672319027),(95122,4,23496,3,1672319027),(95123,4,23497,3,1672319027),(95124,4,23498,3,1672319027),(95125,4,23499,3,1672319027),(95126,4,23500,3,1672319027),(95127,4,23501,3,1672319027),(95128,4,23502,3,1672319027),(95129,4,23503,3,1672319027),(95130,4,23504,3,1672319027),(95131,4,23505,3,1672319027),(95132,4,23506,3,1672319027),(95133,4,23507,3,1672319027),(95134,4,23508,3,1672319027),(95135,4,23509,3,1672319027),(95136,4,23510,3,1672319027),(95137,4,23511,3,1672319027),(95138,4,23512,3,1672319027),(95139,4,23513,3,1672319027),(95140,4,23514,3,1672319027),(95141,4,23515,3,1672319027),(95142,4,23516,3,1672319027),(95143,4,23517,3,1672319027),(95144,4,23518,3,1672319027),(95145,4,23519,3,1672319027),(95146,4,23520,3,1672319027),(95147,4,23521,3,1672319027),(95148,4,23522,3,1672319027),(95149,4,23523,3,1672319027),(95150,4,23524,3,1672319027),(95151,4,23525,3,1672319027),(95152,4,23526,3,1672319027),(95153,4,23527,3,1672319027),(95154,4,23528,3,1672319027),(95155,4,23529,3,1672319027),(95156,4,23530,3,1672319027),(95157,4,23531,3,1672319027),(95158,4,23532,3,1672319027),(95159,4,23533,3,1672319027),(95160,4,23534,3,1672319027),(95161,4,23535,3,1672319027),(95162,4,23536,3,1672319027),(95163,4,23537,3,1672319027),(95164,4,23538,3,1672319027),(95165,4,23539,3,1672319027),(95166,4,23540,3,1672319027),(95167,4,23541,3,1672319027),(95168,4,23542,3,1672319027),(95169,4,23543,3,1672319027),(95170,4,23544,3,1672319027),(95171,4,23545,3,1672319027),(95172,4,23546,3,1672319027),(95173,4,23547,3,1672319027),(95174,4,23548,3,1672319027),(95175,4,23549,3,1672319027),(95176,4,23550,3,1672319027),(95177,4,23551,3,1672319027),(95178,4,23552,3,1672319027),(95179,4,23553,3,1672319027),(95180,4,23554,3,1672319027),(95181,4,23555,3,1672319027),(95182,4,23556,3,1672319027),(95183,4,23557,3,1672319027),(95184,4,23558,3,1672319027),(95185,4,23559,3,1672319027),(95186,4,23560,3,1672319027),(95187,4,23561,3,1672319027),(95188,4,23562,3,1672319027),(95189,4,23563,3,1672319027),(95190,4,23564,3,1672319027),(95191,4,23565,3,1672319027),(95192,4,23566,3,1672319027),(95193,4,23567,3,1672319027),(95194,4,23568,3,1672319027),(95195,4,23569,3,1672319027),(95196,4,23570,3,1672319027),(95197,4,23571,3,1672319027),(95198,4,23572,3,1672319027),(95199,4,23573,3,1672319027),(95200,4,23574,3,1672319027),(95201,4,23575,3,1672319027),(95202,4,23576,3,1672319027),(95203,4,23577,3,1672319027),(95204,4,23578,3,1672319027),(95205,4,23579,3,1672319027),(95206,4,23580,3,1672319027),(95207,4,23581,3,1672319027),(95208,4,23582,3,1672319027),(95209,4,23583,3,1672319027),(95210,4,23584,3,1672319027),(95211,4,23585,3,1672319027),(95212,4,23586,3,1672319027),(95213,4,23587,3,1672319027),(95214,4,23588,3,1672319027),(95215,4,23589,3,1672319027),(95216,4,23590,3,1672319027),(95217,4,23591,3,1672319027),(95218,4,23592,3,1672319027),(95219,4,23593,3,1672319027),(95220,4,23594,3,1672319027),(95221,4,23595,3,1672319027),(95222,4,23596,3,1672319027),(95223,4,23597,3,1672319027),(95224,4,23598,3,1672319027),(95225,4,23599,3,1672319027),(95226,4,23600,3,1672319027),(95227,4,23601,3,1672319027),(95228,4,23602,3,1672319027),(95229,4,23603,3,1672319027),(95230,4,23604,3,1672319027),(95231,4,23605,3,1672319027),(95232,4,23606,3,1672319027),(95233,4,23607,3,1672319027),(95234,4,23608,3,1672319027),(95235,4,23609,3,1672319027),(95236,4,23610,3,1672319027),(95237,4,23611,3,1672319027),(95238,4,23612,3,1672319027),(95239,4,23613,3,1672319027),(95240,4,23614,3,1672319027),(95241,4,23615,3,1672319027),(95242,4,23616,3,1672319027),(95243,4,23617,3,1672319027),(95244,4,23618,3,1672319027),(95245,4,23619,3,1672319027),(95246,4,23620,3,1672319027),(95247,4,23621,3,1672319027),(95248,4,23622,3,1672319027),(95249,4,23623,3,1672319027),(95250,4,23624,3,1672319027),(95251,4,23625,3,1672319027),(95252,4,23626,3,1672319027),(95253,4,23627,3,1672319027),(95254,4,23628,3,1672319027),(95255,4,23629,3,1672319027),(95256,4,23630,3,1672319027),(95257,4,23631,3,1672319027),(95258,4,23632,3,1672319027),(95259,4,23633,3,1672319027),(95260,4,23634,3,1672319027),(95261,4,23635,3,1672319027),(95262,4,23636,3,1672319027),(95263,4,23637,3,1672319027),(95264,4,23638,3,1672319027),(95265,4,23639,3,1672319027),(95266,4,23640,3,1672319027),(95267,4,23641,3,1672319027),(95268,4,23642,3,1672319027),(95269,4,23643,3,1672319027),(95270,4,23644,3,1672319027),(95271,4,23645,3,1672319027),(95272,4,23646,3,1672319027),(95273,4,23647,3,1672319027),(95274,4,23648,3,1672319027),(95275,4,23649,3,1672319027),(95276,4,23650,3,1672319027),(95277,4,23651,3,1672319027),(95278,4,23652,3,1672319027),(95279,4,23653,3,1672319027),(95280,4,23654,3,1672319027),(95281,4,23655,3,1672319027),(95282,4,23656,3,1672319027),(95283,4,23657,3,1672319027),(95284,4,23658,3,1672319027),(95285,4,23659,3,1672319027),(95286,4,23660,3,1672319027),(95287,4,23661,3,1672319027),(95288,4,23662,3,1672319027),(95289,4,23663,3,1672319027),(95290,4,23664,3,1672319027),(95291,4,23665,3,1672319027),(95292,4,23666,3,1672319027),(95293,4,23667,3,1672319027),(95294,4,23668,3,1672319027),(95295,4,23669,3,1672319027),(95296,4,23670,3,1672319027),(95297,4,23671,3,1672319027),(95298,4,23672,3,1672319027),(95299,4,23673,3,1672319027),(95300,4,23674,3,1672319027),(95301,4,23675,3,1672319027),(95302,4,23676,3,1672319027),(95303,4,23677,3,1672319027),(95304,4,23678,3,1672319027),(95305,4,23679,3,1672319027),(95306,4,23680,3,1672319027),(95307,4,23681,3,1672319027),(95308,4,23682,3,1672319027),(95309,4,23683,3,1672319027),(95310,4,23684,3,1672319027),(95311,4,23685,3,1672319027),(95312,4,23686,3,1672319027),(95313,4,23687,3,1672319027),(95314,4,23688,3,1672319027),(95315,4,23689,3,1672319027),(95316,4,23690,3,1672319027),(95317,4,23691,3,1672319027),(95318,4,23692,3,1672319027),(95319,4,23693,3,1672319027),(95320,4,23694,3,1672319027),(95321,4,23695,3,1672319027),(95322,4,23696,3,1672319027),(95323,4,23697,3,1672319027),(95324,4,23698,3,1672319027),(95325,4,23699,3,1672319027),(95326,4,23700,3,1672319027),(95327,4,23701,3,1672319027),(95328,4,23702,3,1672319027),(95329,4,23703,3,1672319027),(95330,4,23704,3,1672319027),(95331,4,23705,3,1672319027),(95332,4,23706,3,1672319027),(95333,4,23707,3,1672319027),(95334,4,23708,3,1672319027),(95335,4,23709,3,1672319027),(95336,4,23710,3,1672319027),(95337,4,23711,3,1672319027),(95338,4,23712,3,1672319027),(95339,4,23713,3,1672319027),(95340,4,23714,3,1672319027),(95341,4,23715,3,1672319027),(95342,4,23716,3,1672319027),(95343,4,23717,3,1672319027),(95344,4,23718,3,1672319027),(95345,4,23719,3,1672319027),(95346,4,23720,3,1672319027),(95347,4,23721,3,1672319027),(95348,4,23722,3,1672319027),(95349,4,23723,3,1672319027),(95350,4,23724,3,1672319027),(95351,4,23725,3,1672319027),(95352,4,23726,3,1672319027),(95353,4,23727,3,1672319027),(95354,4,23728,3,1672319027),(95355,4,23729,3,1672319027),(95356,4,23730,3,1672319027),(95357,4,23731,3,1672319027),(95358,4,23732,3,1672319027),(95359,4,23733,3,1672319027),(95360,4,23734,3,1672319027),(95361,4,23735,3,1672319027),(95362,4,23736,3,1672319027),(95363,4,23737,3,1672319027),(95364,4,23738,3,1672319027),(95365,4,23739,3,1672319027),(95366,4,23740,3,1672319027),(95367,4,23741,3,1672319027),(95368,4,23742,3,1672319027),(95369,4,23743,3,1672319027),(95370,4,23744,3,1672319027),(95371,4,23745,3,1672319027),(95372,4,23746,3,1672319027),(95373,4,23747,3,1672319027),(95374,4,23748,3,1672319027),(95375,4,23749,3,1672319027),(95376,4,23750,3,1672319027),(95377,4,23751,3,1672319027),(95378,4,23752,3,1672319027),(95379,4,23753,3,1672319027),(95380,4,23754,3,1672319027),(95381,4,23755,3,1672319027),(95382,4,23756,3,1672319027),(95383,4,23757,3,1672319027),(95384,4,23758,3,1672319027),(95385,4,23759,3,1672319027),(95386,4,23760,3,1672319027),(95387,4,23761,3,1672319027),(95388,4,23762,3,1672319027),(95389,4,23763,3,1672319027),(95390,4,23764,3,1672319027),(95391,4,23765,3,1672319027),(95392,4,23766,3,1672319027),(95393,4,23767,3,1672319027),(95394,4,23768,3,1672319027),(95395,4,23769,3,1672319027),(95396,4,23770,3,1672319027),(95397,4,23771,3,1672319027),(95398,4,23772,3,1672319027),(95399,4,23773,3,1672319027),(95400,4,23774,3,1672319027),(95401,4,23775,3,1672319027),(95402,4,23776,3,1672319027),(95403,4,23777,3,1672319027),(95404,4,23778,3,1672319027),(95405,4,23779,3,1672319027),(95406,4,23780,3,1672319027),(95407,4,23781,3,1672319027),(95408,4,23782,3,1672319027),(95409,4,23783,3,1672319027),(95410,4,23784,3,1672319027),(95411,4,23785,3,1672319027),(95412,4,23786,3,1672319027),(95413,4,23787,3,1672319027),(95414,4,23788,3,1672319027),(95415,4,23789,3,1672319027),(95416,4,23790,3,1672319027),(95417,4,23791,3,1672319027),(95418,4,23792,3,1672319027),(95419,4,23793,3,1672319027),(95420,4,23794,3,1672319027),(95421,4,23795,3,1672319027),(95422,4,23796,3,1672319027),(95423,4,23797,3,1672319027),(95424,4,23798,3,1672319027),(95425,4,23799,3,1672319027),(95426,4,23800,3,1672319027),(95427,4,23801,3,1672319027),(95428,4,23802,3,1672319027),(95429,4,23803,3,1672319027),(95430,4,23804,3,1672319027),(95431,4,23805,3,1672319027),(95432,4,23806,3,1672319027),(95433,4,23807,3,1672319027),(95434,4,23808,3,1672319027),(95435,4,23809,3,1672319027),(95436,4,23810,3,1672319027),(95437,4,23811,3,1672319027),(95438,4,23812,3,1672319027),(95439,4,23813,3,1672319027),(95440,4,23814,3,1672319027),(95441,4,23815,3,1672319027),(95442,4,23816,3,1672319027),(95443,4,23817,3,1672319027),(95444,4,23818,3,1672319027),(95445,4,23819,3,1672319027),(95446,4,23820,3,1672319027),(95447,4,23821,3,1672319027),(95448,4,23822,3,1672319027),(95449,4,23823,3,1672319027),(95450,4,23824,3,1672319027),(95451,4,23825,3,1672319027),(95452,4,23826,3,1672319027),(95453,4,23827,3,1672319027),(95454,4,23828,3,1672319027),(95455,4,23829,3,1672319027),(95456,4,23830,3,1672319027),(95457,4,23831,3,1672319027),(95458,4,23832,3,1672319027),(95459,4,23833,3,1672319027),(95460,4,23834,3,1672319027),(95461,4,23835,3,1672319027),(95462,4,23836,3,1672319027),(95463,4,23837,3,1672319027),(95464,4,23838,3,1672319027),(95465,4,23839,3,1672319027),(95466,4,23840,3,1672319027),(95467,4,23841,3,1672319027),(95468,4,23842,3,1672319027),(95469,4,23843,3,1672319027),(95470,4,23844,3,1672319027),(95471,4,23845,3,1672319027),(95472,4,23846,3,1672319027),(95473,4,23847,3,1672319027),(95474,4,23848,3,1672319027),(95475,4,23849,3,1672319027),(95476,4,23850,3,1672319027),(95477,4,23851,3,1672319027),(95478,4,23852,3,1672319027),(95479,4,23853,3,1672319027),(95480,4,23854,3,1672319027),(95481,4,23855,3,1672319027),(95482,4,23856,3,1672319027),(95483,4,23857,3,1672319027),(95484,4,23858,3,1672319027),(95485,4,23859,3,1672319027),(95486,4,23860,3,1672319027),(95487,4,23861,3,1672319027),(95488,4,23862,3,1672319027),(95489,4,23863,3,1672319027),(95490,4,23864,3,1672319027),(95491,4,23865,3,1672319027),(95492,4,23866,3,1672319027),(95493,4,23867,3,1672319027),(95494,4,23868,3,1672319027),(95495,4,23869,3,1672319027),(95496,4,23870,3,1672319027),(95497,4,23871,3,1672319027),(95498,4,23872,3,1672319027),(95499,4,23873,3,1672319027),(95500,4,23874,3,1672319027),(95501,4,23875,3,1672319027),(95502,4,23876,3,1672319027),(95503,4,23877,3,1672319027),(95504,4,23878,3,1672319027),(95505,4,23879,3,1672319027),(95506,4,23880,3,1672319027),(95507,4,23881,3,1672319027),(95508,4,23882,3,1672319027),(95509,4,23883,3,1672319027),(95510,4,23884,3,1672319027),(95511,4,23885,3,1672319027),(95512,4,23886,3,1672319027),(95513,4,23887,3,1672319027),(95514,4,23888,3,1672319027),(95515,4,23889,3,1672319027),(95516,4,23890,3,1672319027),(95517,4,23891,3,1672319027),(95518,4,23892,3,1672319027),(95519,4,23893,3,1672319027),(95520,4,23894,3,1672319027),(95521,4,23895,3,1672319027),(95522,4,23896,3,1672319027),(95523,4,23897,3,1672319027),(95524,4,23898,3,1672319027),(95525,4,23899,3,1672319027),(95526,4,23900,3,1672319027),(95527,4,23901,3,1672319027),(95528,4,23902,3,1672319027),(95529,4,23903,3,1672319027),(95530,4,23904,3,1672319027),(95531,4,23905,3,1672319027),(95532,4,23906,3,1672319027),(95533,4,23907,3,1672319027),(95534,4,23908,3,1672319027),(95535,4,23909,3,1672319027),(95536,4,23910,3,1672319027),(95537,4,23911,3,1672319027),(95538,4,23912,3,1672319027),(95539,4,23913,3,1672319027),(95540,4,23914,3,1672319027),(95541,4,23915,3,1672319027),(95542,4,23916,3,1672319027),(95543,4,23917,3,1672319027),(95544,4,23918,3,1672319027),(95545,4,23919,3,1672319027),(95546,4,23920,3,1672319027),(95547,4,23921,3,1672319027),(95548,4,23922,3,1672319027),(95549,4,23923,3,1672319027),(95550,4,23924,3,1672319027),(95551,4,23925,3,1672319027),(95552,4,23926,3,1672319027),(95553,4,23927,3,1672319027),(95554,4,23928,3,1672319027),(95555,4,23929,3,1672319027),(95556,4,23930,3,1672319027),(95557,4,23931,3,1672319027),(95558,4,23932,3,1672319027),(95559,4,23933,3,1672319027),(95560,4,23934,3,1672319027),(95561,4,23935,3,1672319027),(95562,4,23936,3,1672319027),(95563,4,23937,3,1672319027),(95564,4,23938,3,1672319027),(95565,4,23939,3,1672319027),(95566,4,23940,3,1672319027),(95567,4,23941,3,1672319027),(95568,4,23942,3,1672319027),(95569,4,23943,3,1672319027),(95570,4,23944,3,1672319027),(95571,4,23945,3,1672319027),(95572,4,23946,3,1672319027),(95573,4,23947,3,1672319027),(95574,4,23948,3,1672319027),(95575,4,23949,3,1672319027),(95576,4,23950,3,1672319027),(95577,4,23951,3,1672319027),(95578,4,23952,3,1672319027),(95579,4,23953,3,1672319027),(95580,4,23954,3,1672319027),(95581,4,23955,3,1672319027),(95582,4,23956,3,1672319027),(95583,4,23957,3,1672319027),(95584,4,23958,3,1672319027),(95585,4,23959,3,1672319027),(95586,4,23960,3,1672319027),(95587,4,23961,3,1672319027),(95588,4,23962,3,1672319027),(95589,4,23963,3,1672319027),(95590,4,23964,3,1672319027),(95591,4,23965,3,1672319027),(95592,4,23966,3,1672319027),(95593,4,23967,3,1672319027),(95594,4,23968,3,1672319027),(95595,4,23969,3,1672319027),(95596,4,23970,3,1672319027),(95597,4,23971,3,1672319027),(95598,4,23972,3,1672319027),(95599,4,23973,3,1672319027),(95600,4,23974,3,1672319027),(95601,4,23975,3,1672319027),(95602,4,23976,3,1672319027),(95603,4,23977,3,1672319027),(95604,4,23978,3,1672319027),(95605,4,23979,3,1672319027),(95606,4,23980,3,1672319027),(95607,4,23981,3,1672319027),(95608,4,23982,3,1672319027),(95609,4,23983,3,1672319027),(95610,4,23984,3,1672319027),(95611,4,23985,3,1672319027),(95612,4,23986,3,1672319027),(95613,4,23987,3,1672319027),(95614,4,23988,3,1672319027),(95615,4,23989,3,1672319027),(95616,4,23990,3,1672319027),(95617,4,23991,3,1672319027),(95618,4,23992,3,1672319027),(95619,4,23993,3,1672319027),(95620,4,23994,3,1672319027),(95621,4,23995,3,1672319027),(95622,4,23996,3,1672319027),(95623,4,23997,3,1672319027),(95624,4,23998,3,1672319027),(95625,4,23999,3,1672319027),(95626,4,24000,3,1672319027),(95627,4,24001,3,1672319027),(95628,4,24002,3,1672319027),(95629,4,24003,3,1672319027),(95630,4,24004,3,1672319027),(95631,4,24005,3,1672319027),(95632,4,24006,3,1672319027),(95633,4,24007,3,1672319027),(95634,4,24008,3,1672319027),(95635,4,24009,3,1672319027),(95636,4,24010,3,1672319027),(95637,4,24011,3,1672319027),(95638,4,24012,3,1672319027),(95639,4,24013,3,1672319027),(95640,4,24014,3,1672319027),(95641,4,24015,3,1672319027),(95642,4,24016,3,1672319027),(95643,4,24017,3,1672319027),(95644,4,24018,3,1672319027),(95645,4,24019,3,1672319027),(95646,4,24020,3,1672319027),(95647,4,24021,3,1672319027),(95648,4,24022,3,1672319027),(95649,4,24023,3,1672319027),(95650,4,24024,3,1672319027),(95651,4,24025,3,1672319027),(95652,4,24026,3,1672319027),(95653,4,24027,3,1672319027),(95654,4,24028,3,1672319027),(95655,4,24029,3,1672319027),(95656,4,24030,3,1672319027),(95657,4,24031,3,1672319027),(95658,4,24032,3,1672319027),(95659,4,24033,3,1672319027),(95660,4,24034,3,1672319027),(95661,4,24035,3,1672319027),(95662,4,24036,3,1672319027),(95663,4,24037,3,1672319027),(95664,4,24038,3,1672319027),(95665,4,24039,3,1672319027),(95666,4,24040,3,1672319027),(95667,4,24041,3,1672319027),(95668,4,24042,3,1672319027),(95669,4,24043,3,1672319027),(95670,4,24044,3,1672319027),(95671,4,24045,3,1672319027),(95672,4,24046,3,1672319027),(95673,4,24047,3,1672319027),(95674,4,24048,3,1672319027),(95675,4,24049,3,1672319027),(95676,4,24050,3,1672319027),(95677,4,24051,3,1672319027),(95678,4,24052,3,1672319027),(95679,4,24053,3,1672319027),(95680,4,24054,3,1672319027),(95681,4,24055,3,1672319027),(95682,4,24056,3,1672319027),(95683,4,24057,3,1672319027),(95684,4,24058,3,1672319027),(95685,4,24059,3,1672319027),(95686,4,24060,3,1672319027),(95687,4,24061,3,1672319027),(95688,4,24062,3,1672319027),(95689,4,24063,3,1672319027),(95690,4,24064,3,1672319027),(95691,4,24065,3,1672319027),(95692,4,24066,3,1672319027),(95693,4,24067,3,1672319027),(95694,4,24068,3,1672319027),(95695,4,24069,3,1672319027),(95696,4,24070,3,1672319027),(95697,4,24071,3,1672319027),(95698,4,24072,3,1672319027),(95699,4,24073,3,1672319027),(95700,4,24074,3,1672319027),(95701,4,24075,3,1672319027),(95702,4,24076,3,1672319027),(95703,4,24077,3,1672319027),(95704,4,24078,3,1672319027),(95705,4,24079,3,1672319027),(95706,4,24080,3,1672319027),(95707,4,24081,3,1672319027),(95708,4,24082,3,1672319027),(95709,4,24083,3,1672319027),(95710,4,24084,3,1672319027),(95711,4,24085,3,1672319027),(95712,4,24086,3,1672319027),(95713,4,24087,3,1672319027),(95714,4,24088,3,1672319027),(95715,4,24089,3,1672319027),(95716,4,24090,3,1672319027),(95717,4,24091,3,1672319027),(95718,4,24092,3,1672319027),(95719,4,24093,3,1672319027),(95720,4,24094,3,1672319027),(95721,4,24095,3,1672319027),(95722,4,24096,3,1672319027),(95723,4,24097,3,1672319027),(95724,4,24098,3,1672319027),(95725,4,24099,3,1672319027),(95726,4,24100,3,1672319027),(95727,4,24101,3,1672319027),(95728,4,24102,3,1672319027),(95729,4,24103,3,1672319027),(95730,4,24104,3,1672319027),(95731,4,24105,3,1672319027),(95732,4,24106,3,1672319027),(95733,4,24107,3,1672319027),(95734,4,24108,3,1672319027),(95735,4,24109,3,1672319027),(95736,4,24110,3,1672319027),(95737,4,24111,3,1672319027),(95738,4,24112,3,1672319027),(95739,4,24113,3,1672319027),(95740,4,24114,3,1672319027),(95741,4,24115,3,1672319027),(95742,4,24116,3,1672319027),(95743,4,24117,3,1672319027),(95744,4,24118,3,1672319027),(95745,4,24119,3,1672319027),(95746,4,24120,3,1672319027),(95747,4,24121,3,1672319027),(95748,4,24122,3,1672319027),(95749,4,24123,3,1672319027),(95750,4,24124,3,1672319027),(95751,4,24125,3,1672319027),(95752,4,24126,3,1672319027),(95753,4,24127,3,1672319027),(95754,4,24128,3,1672319027),(95755,4,24129,3,1672319027),(95756,4,24130,3,1672319027),(95757,4,24131,3,1672319027),(95758,4,24132,3,1672319027),(95759,4,24133,3,1672319027),(95760,4,24134,3,1672319027),(95761,4,24135,3,1672319027),(95762,4,24136,3,1672319027),(95763,4,24137,3,1672319027),(95764,4,24138,3,1672319027),(95765,4,24139,3,1672319027),(95766,4,24140,3,1672319027),(95767,4,24141,3,1672319027),(95768,4,24142,3,1672319027),(95769,4,24143,3,1672319027),(95770,4,24144,3,1672319027),(95771,4,24145,3,1672319027),(95772,4,24146,3,1672319027),(95773,4,24147,3,1672319027),(95774,4,24148,3,1672319027),(95775,4,24149,3,1672319027),(95776,4,24150,3,1672319027),(95777,4,24151,3,1672319027),(95778,4,24152,3,1672319027),(95779,4,24153,3,1672319027),(95780,4,24154,3,1672319027),(95781,4,24155,3,1672319027),(95782,4,24156,3,1672319027),(95783,4,24157,3,1672319027),(95784,4,24158,3,1672319027),(95785,4,24159,3,1672319027),(95786,4,24160,3,1672319027),(95787,4,24161,3,1672319027),(95788,4,24162,3,1672319027),(95789,4,24163,3,1672319027),(95790,4,24164,3,1672319027),(95791,4,24165,3,1672319027),(95792,4,24166,3,1672319027),(95793,4,24167,3,1672319027),(95794,4,24168,3,1672319027),(95795,4,24169,3,1672319027),(95796,4,24170,3,1672319027),(95797,4,24171,3,1672319027),(95798,4,24172,3,1672319027),(95799,4,24173,3,1672319027),(95800,4,24174,3,1672319027),(95801,4,24175,3,1672319027),(95802,4,24176,3,1672319027),(95803,4,24177,3,1672319027),(95804,4,24178,3,1672319027),(95805,4,24179,3,1672319027),(95806,4,24180,3,1672319027),(95807,4,24181,3,1672319027),(95808,4,24182,3,1672319027),(95809,4,24183,3,1672319027),(95810,4,24184,3,1672319027),(95811,4,24185,3,1672319027),(95812,4,24186,3,1672319027),(95813,4,24187,3,1672319027),(95814,4,24188,3,1672319027),(95815,4,24189,3,1672319027),(95816,4,24190,3,1672319027),(95817,4,24191,3,1672319027),(95818,4,24192,3,1672319027),(95819,4,24193,3,1672319027),(95820,4,24194,3,1672319027),(95821,4,24195,3,1672319027),(95822,4,24196,3,1672319027),(95823,4,24197,3,1672319027),(95824,4,24198,3,1672319027),(95825,4,24199,3,1672319027),(95826,4,24200,3,1672319027),(95827,4,24201,3,1672319027),(95828,4,24202,3,1672319027),(95829,4,24203,3,1672319027),(95830,4,24204,3,1672319027),(95831,4,24205,3,1672319027),(95832,4,24206,3,1672319027),(95833,4,24207,3,1672319027),(95834,4,24208,3,1672319027),(95835,4,24209,3,1672319027),(95836,4,24210,3,1672319027),(95837,4,24211,3,1672319027),(95838,4,24212,3,1672319027),(95839,4,24213,3,1672319027),(95840,4,24214,3,1672319027),(95841,4,24215,3,1672319027),(95842,4,24216,3,1672319027),(95843,4,24217,3,1672319027),(95844,4,24218,3,1672319027),(95845,4,24219,3,1672319027),(95846,4,24220,3,1672319027),(95847,4,24221,3,1672319027),(95848,4,24222,3,1672319027),(95849,4,24223,3,1672319027),(95850,4,24224,3,1672319027),(95851,4,24225,3,1672319027),(95852,4,24226,3,1672319027),(95853,4,24227,3,1672319027),(95854,4,24228,3,1672319027),(95855,4,24229,3,1672319027),(95856,4,24230,3,1672319027),(95857,4,24231,3,1672319027),(95858,4,24232,3,1672319027),(95859,4,24233,3,1672319027),(95860,4,24234,3,1672319027),(95861,4,24235,3,1672319027),(95862,4,24236,3,1672319027),(95863,4,24237,3,1672319027),(95864,4,24238,3,1672319027),(95865,4,24239,3,1672319027),(95866,4,24240,3,1672319027),(95867,4,24241,3,1672319027),(95868,4,24242,3,1672319027),(95869,4,24243,3,1672319027),(95870,4,24244,3,1672319027),(95871,4,24245,3,1672319027),(95872,4,24246,3,1672319027),(95873,4,24247,3,1672319027),(95874,4,24248,3,1672319027),(95875,4,24249,3,1672319027),(95876,4,24250,3,1672319027),(95877,4,24251,3,1672319027),(95878,4,24252,3,1672319027),(95879,4,24253,3,1672319027),(95880,4,24254,3,1672319027),(95881,4,24255,3,1672319027),(95882,4,24256,3,1672319027),(95883,4,24257,3,1672319027),(95884,4,24258,3,1672319027),(95885,4,24259,3,1672319027),(95886,4,24260,3,1672319027),(95887,4,24261,3,1672319027),(95888,4,24262,3,1672319027),(95889,4,24263,3,1672319027),(95890,4,24264,3,1672319027),(95891,4,24265,3,1672319027),(95892,4,24266,3,1672319027),(95893,4,24267,3,1672319027),(95894,4,24268,3,1672319027),(95895,4,24269,3,1672319027),(95896,4,24270,3,1672319027),(95897,4,24271,3,1672319027),(95898,4,24272,3,1672319027),(95899,4,24273,3,1672319027),(95900,4,24274,3,1672319027),(95901,4,24275,3,1672319027),(95902,4,24276,3,1672319027),(95903,4,24277,3,1672319027),(95904,4,24278,3,1672319027),(95905,4,24279,3,1672319027),(95906,4,24280,3,1672319027),(95907,4,24281,3,1672319027),(95908,4,24282,3,1672319027),(95909,4,24283,3,1672319027),(95910,4,24284,3,1672319027),(95911,4,24285,3,1672319027),(95912,4,24286,3,1672319027),(95913,4,24287,3,1672319027),(95914,4,24288,3,1672319027),(95915,4,24289,3,1672319027),(95916,4,24290,3,1672319027),(95917,4,24291,3,1672319027),(95918,4,24292,3,1672319027),(95919,4,24293,3,1672319027),(95920,4,24294,3,1672319027),(95921,4,24295,3,1672319027),(95922,4,24296,3,1672319027),(95923,4,24297,3,1672319027),(95924,4,24298,3,1672319027),(95925,4,24299,3,1672319027),(95926,4,24300,3,1672319027),(95927,4,24301,3,1672319027),(95928,4,24302,3,1672319027),(95929,4,24303,3,1672319027),(95930,4,24304,3,1672319027),(95931,4,24305,3,1672319027),(95932,4,24306,3,1672319027),(95933,4,24307,3,1672319027),(95934,4,24308,3,1672319027),(95935,4,24309,3,1672319027),(95936,4,24310,3,1672319027),(95937,4,24311,3,1672319027),(95938,4,24312,3,1672319027),(95939,4,24313,3,1672319027),(95940,4,24314,3,1672319027),(95941,4,24315,3,1672319027),(95942,4,24316,3,1672319027),(95943,4,24317,3,1672319027),(95944,4,24318,3,1672319027),(95945,4,24319,3,1672319027),(95946,4,24320,3,1672319027),(95947,4,24321,3,1672319027),(95948,4,24322,3,1672319027),(95949,4,24323,3,1672319027),(95950,4,24324,3,1672319027),(95951,4,24325,3,1672319027),(95952,4,24326,3,1672319027),(95953,4,24327,3,1672319027),(95954,4,24328,3,1672319027),(95955,4,24329,3,1672319027),(95956,4,24330,3,1672319027),(95957,4,24331,3,1672319027),(95958,4,24332,3,1672319027),(95959,4,24333,3,1672319027),(95960,4,24334,3,1672319027),(95961,4,24335,3,1672319027),(95962,4,24336,3,1672319027),(95963,4,24337,3,1672319027),(95964,4,24338,3,1672319027),(95965,4,24339,3,1672319027),(95966,4,24340,3,1672319027),(95967,4,24341,3,1672319027),(95968,4,24342,3,1672319027),(95969,4,24343,3,1672319027),(95970,4,24344,3,1672319027),(95971,4,24345,3,1672319027),(95972,4,24346,3,1672319027),(95973,4,24347,3,1672319027),(95974,4,24348,3,1672319027),(95975,4,24349,3,1672319027),(95976,4,24350,3,1672319027),(95977,4,24351,3,1672319027),(95978,4,24352,3,1672319027),(95979,4,24353,3,1672319027),(95980,4,24354,3,1672319027),(95981,4,24355,3,1672319027),(95982,4,24356,3,1672319027),(95983,4,24357,3,1672319027),(95984,4,24358,3,1672319027),(95985,4,24359,3,1672319027),(95986,4,24360,3,1672319027),(95987,4,24361,3,1672319027),(95988,4,24362,3,1672319027),(95989,4,24363,3,1672319027),(95990,4,24364,3,1672319027),(95991,4,24365,3,1672319027),(95992,4,24366,3,1672319027),(95993,4,24367,3,1672319027),(95994,4,24368,3,1672319027),(95995,4,24369,3,1672319027),(95996,4,24370,3,1672319027),(95997,4,24371,3,1672319027),(95998,4,24372,3,1672319027),(95999,4,24373,3,1672319027),(96000,4,24374,3,1672319027),(96001,4,24375,3,1672319027),(96002,4,24376,3,1672319027),(96003,4,24377,3,1672319027),(96004,4,24378,3,1672319027),(96005,4,24379,3,1672319027),(96006,4,24380,3,1672319027),(96007,4,24381,3,1672319027),(96008,4,24382,3,1672319027),(96009,4,24383,3,1672319027),(96010,4,24384,3,1672319027),(96011,4,24385,3,1672319027),(96012,4,24386,3,1672319027),(96013,4,24387,3,1672319027),(96014,4,24388,3,1672319027),(96015,4,24389,3,1672319027),(96016,4,24390,3,1672319027),(96017,4,24391,3,1672319027),(96018,4,24392,3,1672319027),(96019,4,24393,3,1672319027),(96020,4,24394,3,1672319027),(96021,4,24395,3,1672319027),(96022,4,24396,3,1672319027),(96023,4,24397,3,1672319027),(96024,4,24398,3,1672319027),(96025,4,24399,3,1672319027),(96026,4,24400,3,1672319027),(96027,4,24401,3,1672319027),(96028,4,24402,3,1672319027),(96029,4,24403,3,1672319027),(96030,4,24404,3,1672319027),(96031,4,24405,3,1672319027),(96032,4,24406,3,1672319027),(96033,4,24407,3,1672319027),(96034,4,24408,3,1672319027),(96035,4,24409,3,1672319027),(96036,4,24410,3,1672319027),(96037,4,24411,3,1672319027),(96038,4,24412,3,1672319027),(96039,4,24413,3,1672319027),(96040,4,24414,3,1672319027),(96041,4,24415,3,1672319027),(96042,4,24416,3,1672319027),(96043,4,24417,3,1672319027),(96044,4,24418,3,1672319027),(96045,4,24419,3,1672319027),(96046,4,24420,3,1672319027),(96047,4,24421,3,1672319027),(96048,4,24422,3,1672319027),(96049,4,24423,3,1672319027),(96050,4,24424,3,1672319027),(96051,4,24425,3,1672319027),(96052,4,24426,3,1672319027),(96053,4,24427,3,1672319027),(96054,4,24428,3,1672319027),(96055,4,24429,3,1672319027),(96056,4,24430,3,1672319027),(96057,4,24431,3,1672319027),(96058,4,24432,3,1672319027),(96059,4,24433,3,1672319027),(96060,4,24434,3,1672319027),(96061,4,24435,3,1672319027),(96062,4,24436,3,1672319027),(96063,4,24437,3,1672319027),(96064,4,24438,3,1672319027),(96065,4,24439,3,1672319027),(96066,4,24440,3,1672319027),(96067,4,24441,3,1672319027),(96068,4,24442,3,1672319027),(96069,4,24443,3,1672319027),(96070,4,24444,3,1672319027),(96071,4,24445,3,1672319027),(96072,4,24446,3,1672319027),(96073,4,24447,3,1672319027),(96074,4,24448,3,1672319027),(96075,4,24449,3,1672319027),(96076,4,24450,3,1672319027),(96077,4,24451,3,1672319027),(96078,4,24452,3,1672319027),(96079,4,24453,3,1672319027),(96080,4,24454,3,1672319027),(96081,4,24455,3,1672319027),(96082,4,24456,3,1672319027),(96083,4,24457,3,1672319027),(96084,4,24458,3,1672319027),(96085,4,24459,3,1672319027),(96086,4,24460,3,1672319027),(96087,4,24461,3,1672319027),(96088,4,24462,3,1672319027),(96089,4,24463,3,1672319027),(96090,4,24464,3,1672319027),(96091,4,24465,3,1672319027),(96092,4,24466,3,1672319027),(96093,4,24467,3,1672319027),(96094,4,24468,3,1672319027),(96095,4,24469,3,1672319027),(96096,4,24470,3,1672319027),(96097,4,24471,3,1672319027),(96098,4,24472,3,1672319027),(96099,4,24473,3,1672319027),(96100,4,24474,3,1672319027),(96101,4,24475,3,1672319027),(96102,4,24476,3,1672319027),(96103,4,24477,3,1672319027),(96104,4,24478,3,1672319027),(96105,4,24479,3,1672319027),(96106,4,24480,3,1672319027),(96107,4,24481,3,1672319027),(96108,4,24482,3,1672319027),(96109,4,24483,3,1672319027),(96110,4,24484,3,1672319027),(96111,4,24485,3,1672319027),(96112,4,24486,3,1672319027),(96113,4,24487,3,1672319027),(96114,4,24488,3,1672319027),(96115,4,24489,3,1672319027),(96116,4,24490,3,1672319027),(96117,4,24491,3,1672319027),(96118,4,24492,3,1672319027),(96119,4,24493,3,1672319027),(96120,4,24494,3,1672319027),(96121,4,24495,3,1672319027),(96122,4,24496,3,1672319027),(96123,4,24497,3,1672319027),(96124,4,24498,3,1672319027),(96125,4,24499,3,1672319027),(96126,4,24500,3,1672319027),(96127,4,24501,3,1672319027),(96128,4,24502,3,1672319027),(96129,4,24503,3,1672319027),(96130,4,24504,3,1672319027),(96131,4,24505,3,1672319027),(96132,4,24506,3,1672319027),(96133,4,24507,3,1672319027),(96134,4,24508,3,1672319027),(96135,4,24509,3,1672319027),(96136,4,24510,3,1672319027),(96137,4,24511,3,1672319027),(96138,4,24512,3,1672319027),(96139,4,24513,3,1672319027),(96140,4,24514,3,1672319027),(96141,4,24515,3,1672319027),(96142,4,24516,3,1672319027),(96143,4,24517,3,1672319027),(96144,4,24518,3,1672319027),(96145,4,24519,3,1672319027),(96146,4,24520,3,1672319027),(96147,4,24521,3,1672319027),(96148,4,24522,3,1672319027),(96149,4,24523,3,1672319027),(96150,4,24524,3,1672319027),(96151,4,24525,3,1672319027),(96152,4,24526,3,1672319027),(96153,4,24527,3,1672319027),(96154,4,24528,3,1672319027),(96155,4,24529,3,1672319027),(96156,4,24530,3,1672319027),(96157,4,24531,3,1672319027),(96158,4,24532,3,1672319027),(96159,4,24533,3,1672319027),(96160,4,24534,3,1672319027),(96161,4,24535,3,1672319027),(96162,4,24536,3,1672319027),(96163,4,24537,3,1672319027),(96164,4,24538,3,1672319027),(96165,4,24539,3,1672319027),(96166,4,24540,3,1672319027),(96167,4,24541,3,1672319027),(96168,4,24542,3,1672319027),(96169,4,24543,3,1672319027),(96170,4,24544,3,1672319027),(96171,4,24545,3,1672319027),(96172,4,24546,3,1672319027),(96173,4,24547,3,1672319027),(96174,4,24548,3,1672319027),(96175,4,24549,3,1672319027),(96176,4,24550,3,1672319027),(96177,4,24551,3,1672319027),(96178,4,24552,3,1672319027),(96179,4,24553,3,1672319027),(96180,4,24554,3,1672319027),(96181,4,24555,3,1672319027),(96182,4,24556,3,1672319027),(96183,4,24557,3,1672319027),(96184,4,24558,3,1672319027),(96185,4,24559,3,1672319027),(96186,4,24560,3,1672319027),(96187,4,24561,3,1672319027),(96188,4,24562,3,1672319027),(96189,4,24563,3,1672319027),(96190,4,24564,3,1672319027),(96191,4,24565,3,1672319027),(96192,4,24566,3,1672319027),(96193,4,24567,3,1672319027),(96194,4,24568,3,1672319027),(96195,4,24569,3,1672319027),(96196,4,24570,3,1672319027),(96197,4,24571,3,1672319027),(96198,4,24572,3,1672319027),(96199,4,24573,3,1672319027),(96200,4,24574,3,1672319027),(96201,4,24575,3,1672319027),(96202,4,24576,3,1672319027),(96203,4,24577,3,1672319027),(96204,4,24578,3,1672319027),(96205,4,24579,3,1672319027),(96206,4,24580,3,1672319027),(96207,4,24581,3,1672319027),(96208,4,24582,3,1672319027),(96209,4,24583,3,1672319027),(96210,4,24584,3,1672319027),(96211,4,24585,3,1672319027),(96212,4,24586,3,1672319027),(96213,4,24587,3,1672319027),(96214,4,24588,3,1672319027),(96215,4,24589,3,1672319027),(96216,4,24590,3,1672319027),(96217,4,24591,3,1672319027),(96218,4,24592,3,1672319027),(96219,4,24593,3,1672319027),(96220,4,24594,3,1672319027),(96221,4,24595,3,1672319027),(96222,4,24596,3,1672319027),(96223,4,24597,3,1672319027),(96224,4,24598,3,1672319027),(96225,4,24599,3,1672319027),(96226,4,24600,3,1672319027),(96227,4,24601,3,1672319027),(96228,4,24602,3,1672319027),(96229,4,24603,3,1672319027),(96230,4,24604,3,1672319027),(96231,4,24605,3,1672319027),(96232,4,24606,3,1672319027),(96233,4,24607,3,1672319027),(96234,4,24608,3,1672319027),(96235,4,24609,3,1672319027),(96236,4,24610,3,1672319027),(96237,4,24611,3,1672319027),(96238,4,24612,3,1672319027),(96239,4,24613,3,1672319027),(96240,4,24614,3,1672319027),(96241,4,24615,3,1672319027),(96242,4,24616,3,1672319027),(96243,4,24617,3,1672319027),(96244,4,24618,3,1672319027),(96245,4,24619,3,1672319027),(96246,4,24620,3,1672319027),(96247,4,24621,3,1672319027),(96248,4,24622,3,1672319027),(96249,4,24623,3,1672319027),(96250,4,24624,3,1672319027),(96251,4,24625,3,1672319027),(96252,4,24626,3,1672319027),(96253,4,24627,3,1672319027),(96254,4,24628,3,1672319027),(96255,4,24629,3,1672319027),(96256,4,24630,3,1672319027),(96257,4,24631,3,1672319027),(96258,4,24632,3,1672319027),(96259,4,24633,3,1672319027),(96260,4,24634,3,1672319027),(96261,4,24635,3,1672319027),(96262,4,24636,3,1672319027),(96263,4,24637,3,1672319027),(96264,4,24638,3,1672319027),(96265,4,24639,3,1672319027),(96266,4,24640,3,1672319027),(96267,4,24641,3,1672319027),(96268,4,24642,3,1672319027),(96269,4,24643,3,1672319027),(96270,4,24644,3,1672319027),(96271,4,24645,3,1672319027),(96272,4,24646,3,1672319027),(96273,4,24647,3,1672319027),(96274,4,24648,3,1672319027),(96275,4,24649,3,1672319027),(96276,4,24650,3,1672319027),(96277,4,24651,3,1672319027),(96278,4,24652,3,1672319027),(96279,4,24653,3,1672319027),(96280,4,24654,3,1672319027),(96281,4,24655,3,1672319027),(96282,4,24656,3,1672319027),(96283,4,24657,3,1672319027),(96284,4,24658,3,1672319027),(96285,4,24659,3,1672319027),(96286,4,24660,3,1672319027),(96287,4,24661,3,1672319027),(96288,4,24662,3,1672319027),(96289,4,24663,3,1672319027),(96290,4,24664,3,1672319027),(96291,4,24665,3,1672319027),(96292,4,24666,3,1672319027),(96293,4,24667,3,1672319027),(96294,4,24668,3,1672319027),(96295,4,24669,3,1672319027),(96296,4,24670,3,1672319027),(96297,4,24671,3,1672319027),(96298,4,24672,3,1672319027),(96299,4,24673,3,1672319027),(96300,4,24674,3,1672319027),(96301,4,24675,3,1672319027),(96302,4,24676,3,1672319027),(96303,4,24677,3,1672319027),(96304,4,24678,3,1672319027),(96305,4,24679,3,1672319027),(96306,4,24680,3,1672319027),(96307,4,24681,3,1672319027),(96308,4,24682,3,1672319027),(96309,4,24683,3,1672319027),(96310,4,24684,3,1672319027),(96311,4,24685,3,1672319027),(96312,4,24686,3,1672319027),(96313,4,24687,3,1672319027),(96314,4,24688,3,1672319027),(96315,4,24689,3,1672319027),(96316,4,24690,3,1672319027),(96317,4,24691,3,1672319027),(96318,4,24692,3,1672319027),(96319,4,24693,3,1672319027),(96320,4,24694,3,1672319027),(96321,4,24695,3,1672319027),(96322,4,24696,3,1672319027),(96323,4,24697,3,1672319027),(96324,4,24698,3,1672319027),(96325,4,24699,3,1672319027),(96326,4,24700,3,1672319027),(96327,4,24701,3,1672319027),(96328,4,24702,3,1672319027),(96329,4,24703,3,1672319027),(96330,4,24704,3,1672319027),(96331,4,24705,3,1672319027),(96332,4,24706,3,1672319027),(96333,4,24707,3,1672319027),(96334,4,24708,3,1672319027),(96335,4,24709,3,1672319027),(96336,4,24710,3,1672319027),(96337,4,24711,3,1672319027),(96338,4,24712,3,1672319027),(96339,4,24713,3,1672319027),(96340,4,24714,3,1672319027),(96341,4,24715,3,1672319027),(96342,4,24716,3,1672319027),(96343,4,24717,3,1672319027),(96344,4,24718,3,1672319027),(96345,4,24719,3,1672319027),(96346,4,24720,3,1672319027),(96347,4,24721,3,1672319027),(96348,4,24722,3,1672319027),(96349,4,24723,3,1672319027),(96350,4,24724,3,1672319027),(96351,4,24725,3,1672319027),(96352,4,24726,3,1672319027),(96353,4,24727,3,1672319027),(96354,4,24728,3,1672319027),(96355,4,24729,3,1672319027),(96356,4,24730,3,1672319027),(96357,4,24731,3,1672319027),(96358,4,24732,3,1672319027),(96359,4,24733,3,1672319027),(96360,4,24734,3,1672319027),(96361,4,24735,3,1672319027),(96362,4,24736,3,1672319027),(96363,4,24737,3,1672319027),(96364,4,24738,3,1672319027),(96365,4,24739,3,1672319027),(96366,4,24740,3,1672319027),(96367,4,24741,3,1672319027),(96368,4,24742,3,1672319027),(96369,4,24743,3,1672319027),(96370,4,24744,3,1672319027),(96371,4,24745,3,1672319027),(96372,4,24746,3,1672319027),(96373,4,24747,3,1672319027),(96374,4,24748,3,1672319027),(96375,4,24749,3,1672319027),(96376,4,24750,3,1672319027),(96377,4,24751,3,1672319027),(96378,4,24752,3,1672319027),(96379,4,24753,3,1672319027),(96380,4,24754,3,1672319027),(96381,4,24755,3,1672319027),(96382,4,24756,3,1672319027),(96383,4,24757,3,1672319027),(96384,4,24758,3,1672319027),(96385,4,24759,3,1672319027),(96386,4,24760,3,1672319027),(96387,4,24761,3,1672319027),(96388,4,24762,3,1672319027),(96389,4,24763,3,1672319027),(96390,4,24764,3,1672319027),(96391,4,24765,3,1672319027),(96392,4,24766,3,1672319027),(96393,4,24767,3,1672319027),(96394,4,24768,3,1672319027),(96395,4,24769,3,1672319027),(96396,4,24770,3,1672319027),(96397,4,24771,3,1672319027),(96398,4,24772,3,1672319027),(96399,4,24773,3,1672319027),(96400,4,24774,3,1672319027),(96401,4,24775,3,1672319027),(96402,4,24776,3,1672319027),(96403,4,24777,3,1672319027),(96404,4,24778,3,1672319027),(96405,4,24779,3,1672319027),(96406,4,24780,3,1672319027),(96407,4,24781,3,1672319027),(96408,4,24782,3,1672319027),(96409,4,24783,3,1672319027),(96410,4,24784,3,1672319027),(96411,4,24785,3,1672319027),(96412,4,24786,3,1672319027),(96413,4,24787,3,1672319027),(96414,4,24788,3,1672319027),(96415,4,24789,3,1672319027),(96416,4,24790,3,1672319027),(96417,4,24791,3,1672319027),(96418,4,24792,3,1672319027),(96419,4,24793,3,1672319027),(96420,4,24794,3,1672319027),(96421,4,24795,3,1672319027),(96422,4,24796,3,1672319027),(96423,4,24797,3,1672319027),(96424,4,24798,3,1672319027),(96425,4,24799,3,1672319027),(96426,4,24800,3,1672319027),(96427,4,24801,3,1672319027),(96428,4,24802,3,1672319027),(96429,4,24803,3,1672319027),(96430,4,24804,3,1672319027),(96431,4,24805,3,1672319027),(96432,4,24806,3,1672319027),(96433,4,24807,3,1672319027),(96434,4,24808,3,1672319027),(96435,4,24809,3,1672319027),(96436,4,24810,3,1672319027),(96437,4,24811,3,1672319027),(96438,4,24812,3,1672319027),(96439,4,24813,3,1672319027),(96440,4,24814,3,1672319027),(96441,4,24815,3,1672319027),(96442,4,24816,3,1672319027),(96443,4,24817,3,1672319027),(96444,4,24818,3,1672319027),(96445,4,24819,3,1672319027),(96446,4,24820,3,1672319027),(96447,4,24821,3,1672319027),(96448,4,24822,3,1672319027),(96449,4,24823,3,1672319027),(96450,4,24824,3,1672319027),(96451,4,24825,3,1672319027),(96452,4,24826,3,1672319027),(96453,4,24827,3,1672319027),(96454,4,24828,3,1672319027),(96455,4,24829,3,1672319027),(96456,4,24830,3,1672319027),(96457,4,24831,3,1672319027),(96458,4,24832,3,1672319027),(96459,4,24833,3,1672319027),(96460,4,24834,3,1672319027),(96461,4,24835,3,1672319027),(96462,4,24836,3,1672319027),(96463,4,24837,3,1672319027),(96464,4,24838,3,1672319027),(96465,4,24839,3,1672319027),(96466,4,24840,3,1672319027),(96467,4,24841,3,1672319027),(96468,4,24842,3,1672319027),(96469,4,24843,3,1672319027),(96470,4,24844,3,1672319027),(96471,4,24845,3,1672319027),(96472,4,24846,3,1672319027),(96473,4,24847,3,1672319027),(96474,4,24848,3,1672319027),(96475,4,24849,3,1672319027),(96476,4,24850,3,1672319027),(96477,4,24851,3,1672319027),(96478,4,24852,3,1672319027),(96479,4,24853,3,1672319027),(96480,4,24854,3,1672319027),(96481,4,24855,3,1672319027),(96482,4,24856,3,1672319027),(96483,4,24857,3,1672319027),(96484,4,24858,3,1672319027),(96485,4,24859,3,1672319027),(96486,4,24860,3,1672319027),(96487,4,24861,3,1672319027),(96488,4,24862,3,1672319027),(96489,4,24863,3,1672319027),(96490,4,24864,3,1672319027),(96491,4,24865,3,1672319027),(96492,4,24866,3,1672319027),(96493,4,24867,3,1672319027),(96494,4,24868,3,1672319027),(96495,4,24869,3,1672319027),(96496,4,24870,3,1672319027),(96497,4,24871,3,1672319027),(96498,4,24872,3,1672319027),(96499,4,24873,3,1672319027),(96500,4,24874,3,1672319027),(96501,4,24875,3,1672319027),(96502,4,24876,3,1672319027),(96503,4,24877,3,1672319027),(96504,4,24878,3,1672319027),(96505,4,24879,3,1672319027),(96506,4,24880,3,1672319027),(96507,4,24881,3,1672319027),(96508,4,24882,3,1672319027),(96509,4,24883,3,1672319027),(96510,4,24884,3,1672319027),(96511,4,24885,3,1672319027),(96512,4,24886,3,1672319027),(96513,4,24887,3,1672319027),(96514,4,24888,3,1672319027),(96515,4,24889,3,1672319027),(96516,4,24890,3,1672319027),(96517,4,24891,3,1672319027),(96518,4,24892,3,1672319027),(96519,4,24893,3,1672319027),(96520,4,24894,3,1672319027),(96521,4,24895,3,1672319027),(96522,4,24896,3,1672319027),(96523,4,24897,3,1672319027),(96524,4,24898,3,1672319027),(96525,4,24899,3,1672319027),(96526,4,24900,3,1672319027),(96527,4,24901,3,1672319027),(96528,4,24902,3,1672319027),(96529,4,24903,3,1672319027),(96530,4,24904,3,1672319027),(96531,4,24905,3,1672319027),(96532,4,24906,3,1672319027),(96533,4,24907,3,1672319027),(96534,4,24908,3,1672319027),(96535,4,24909,3,1672319027),(96536,4,24910,3,1672319027),(96537,4,24911,3,1672319027),(96538,4,24912,3,1672319027),(96539,4,24913,3,1672319027),(96540,4,24914,3,1672319027),(96541,4,24915,3,1672319027),(96542,4,24916,3,1672319027),(96543,4,24917,3,1672319027),(96544,4,24918,3,1672319027),(96545,4,24919,3,1672319027),(96546,4,24920,3,1672319027),(96547,4,24921,3,1672319027),(96548,4,24922,3,1672319027),(96549,4,24923,3,1672319027),(96550,4,24924,3,1672319027),(96551,4,24925,3,1672319027),(96552,4,24926,3,1672319027),(96553,4,24927,3,1672319027),(96554,4,24928,3,1672319027),(96555,4,24929,3,1672319027),(96556,4,24930,3,1672319027),(96557,4,24931,3,1672319027),(96558,4,24932,3,1672319027),(96559,4,24933,3,1672319027),(96560,4,24934,3,1672319027),(96561,4,24935,3,1672319027),(96562,4,24936,3,1672319027),(96563,4,24937,3,1672319027),(96564,4,24938,3,1672319027),(96565,4,24939,3,1672319027),(96566,4,24940,3,1672319027),(96567,4,24941,3,1672319027),(96568,4,24942,3,1672319027),(96569,4,24943,3,1672319027),(96570,4,24944,3,1672319027),(96571,4,24945,3,1672319027),(96572,4,24946,3,1672319027),(96573,4,24947,3,1672319027),(96574,4,24948,3,1672319027),(96575,4,24949,3,1672319027),(96576,4,24950,3,1672319027),(96577,4,24951,3,1672319027),(96578,4,24952,3,1672319027),(96579,4,24953,3,1672319027),(96580,4,24954,3,1672319027),(96581,4,24955,3,1672319027),(96582,4,24956,3,1672319027),(96583,4,24957,3,1672319027),(96584,4,24958,3,1672319027),(96585,4,24959,3,1672319027),(96586,4,24960,3,1672319027),(96587,4,24961,3,1672319027),(96588,4,24962,3,1672319027),(96589,4,24963,3,1672319027),(96590,4,24964,3,1672319027),(96591,4,24965,3,1672319027),(96592,4,24966,3,1672319027),(96593,4,24967,3,1672319027),(96594,4,24968,3,1672319027),(96595,4,24969,3,1672319027),(96596,4,24970,3,1672319027),(96597,4,24971,3,1672319027),(96598,4,24972,3,1672319027),(96599,4,24973,3,1672319027),(96600,4,24974,3,1672319027),(96601,4,24975,3,1672319027),(96602,4,24976,3,1672319027),(96603,4,24977,3,1672319027),(96604,4,24978,3,1672319027),(96605,4,24979,3,1672319027),(96606,4,24980,3,1672319027),(96607,4,24981,3,1672319027),(96608,4,24982,3,1672319027),(96609,4,24983,3,1672319027),(96610,4,24984,3,1672319027),(96611,4,24985,3,1672319027),(96612,4,24986,3,1672319027),(96613,4,24987,3,1672319027),(96614,4,24988,3,1672319027),(96615,4,24989,3,1672319027),(96616,4,24990,3,1672319027),(96617,4,24991,3,1672319027),(96618,4,24992,3,1672319027),(96619,4,24993,3,1672319027),(96620,4,24994,3,1672319027),(96621,4,24995,3,1672319027),(96622,4,24996,3,1672319027),(96623,4,24997,3,1672319027),(96624,4,24998,3,1672319027),(96625,4,24999,3,1672319027),(96626,4,25000,3,1672319027),(96627,4,25001,3,1672319027),(96628,4,25002,3,1672319027),(96629,4,25003,3,1672319027),(96630,4,25004,3,1672319027),(96631,4,25005,3,1672319027),(96632,4,25006,3,1672319027),(96633,4,25007,3,1672319027),(96634,4,25008,3,1672319027),(96635,4,25009,3,1672319027),(96636,4,25010,3,1672319027),(96637,4,25011,3,1672319027),(96638,4,25012,3,1672319027),(96639,4,25013,3,1672319027),(96640,4,25014,3,1672319027),(96641,4,25015,3,1672319027),(96642,4,25016,3,1672319027),(96643,4,25017,3,1672319027),(96644,4,25018,3,1672319027),(96645,4,25019,3,1672319027),(96646,4,25020,3,1672319027),(96647,4,25021,3,1672319027),(96648,4,25022,3,1672319027),(96649,4,25023,3,1672319027),(96650,4,25024,3,1672319027),(96651,4,25025,3,1672319027),(96652,4,25026,3,1672319027),(96653,4,25027,3,1672319027),(96654,4,25028,3,1672319027),(96655,4,25029,3,1672319027),(96656,4,25030,3,1672319027),(96657,4,25031,3,1672319027),(96658,4,25032,3,1672319027),(96659,4,25033,3,1672319027),(96660,4,25034,3,1672319027),(96661,4,25035,3,1672319027),(96662,4,25036,3,1672319027),(96663,4,25037,3,1672319027),(96664,4,25038,3,1672319027),(96665,4,25039,3,1672319027),(96666,4,25040,3,1672319027),(96667,4,25041,3,1672319027),(96668,4,25042,3,1672319027),(96669,4,25043,3,1672319027),(96670,4,25044,3,1672319027),(96671,4,25045,3,1672319027),(96672,4,25046,3,1672319027),(96673,4,25047,3,1672319027),(96674,4,25048,3,1672319027),(96675,4,25049,3,1672319027),(96676,4,25050,3,1672319027),(96677,4,25051,3,1672319027),(96678,4,25052,3,1672319027),(96679,4,25053,3,1672319027),(96680,4,25054,3,1672319027),(96681,4,25055,3,1672319027),(96682,4,25056,3,1672319027),(96683,4,25057,3,1672319027),(96684,4,25058,3,1672319027),(96685,4,25059,3,1672319027),(96686,4,25060,3,1672319027),(96687,4,25061,3,1672319027),(96688,4,25062,3,1672319027),(96689,4,25063,3,1672319027),(96690,4,25064,3,1672319027),(96691,4,25065,3,1672319027),(96692,4,25066,3,1672319027),(96693,4,25067,3,1672319027),(96694,4,25068,3,1672319027),(96695,4,25069,3,1672319027),(96696,4,25070,3,1672319027),(96697,4,25071,3,1672319027),(96698,4,25072,3,1672319027),(96699,4,25073,3,1672319027),(96700,4,25074,3,1672319027),(96701,4,25075,3,1672319027),(96702,4,25076,3,1672319027),(96703,4,25077,3,1672319027),(96704,4,25078,3,1672319027),(96705,4,25079,3,1672319027),(96706,4,25080,3,1672319027),(96707,4,25081,3,1672319027),(96708,4,25082,3,1672319027),(96709,4,25083,3,1672319027),(96710,4,25084,3,1672319027),(96711,4,25085,3,1672319027),(96712,4,25086,3,1672319027),(96713,4,25087,3,1672319027),(96714,4,25088,3,1672319027),(96715,4,25089,3,1672319027),(96716,4,25090,3,1672319027),(96717,4,25091,3,1672319027),(96718,4,25092,3,1672319027),(96719,4,25093,3,1672319027),(96720,4,25094,3,1672319027),(96721,4,25095,3,1672319027),(96722,4,25096,3,1672319027),(96723,4,25097,3,1672319027),(96724,4,25098,3,1672319027),(96725,4,25099,3,1672319027),(96726,4,25100,3,1672319027),(96727,4,25101,3,1672319027),(96728,4,25102,3,1672319027),(96729,4,25103,3,1672319027),(96730,4,25104,3,1672319027),(96731,4,25105,3,1672319027),(96732,4,25106,3,1672319027),(96733,4,25107,3,1672319027),(96734,4,25108,3,1672319027),(96735,4,25109,3,1672319027),(96736,4,25110,3,1672319027),(96737,4,25111,3,1672319027),(96738,4,25112,3,1672319027),(96739,4,25113,3,1672319027),(96740,4,25114,3,1672319027),(96741,4,25115,3,1672319027),(96742,4,25116,3,1672319027),(96743,4,25117,3,1672319027),(96744,4,25118,3,1672319027),(96745,4,25119,3,1672319027),(96746,4,25120,3,1672319027),(96747,4,25121,3,1672319027),(96748,4,25122,3,1672319027),(96749,4,25123,3,1672319027),(96750,4,25124,3,1672319027),(96751,4,25125,3,1672319027),(96752,4,25126,3,1672319027),(96753,4,25127,3,1672319027),(96754,4,25128,3,1672319027),(96755,4,25129,3,1672319027),(96756,4,25130,3,1672319027),(96757,4,25131,3,1672319027),(96758,4,25132,3,1672319027),(96759,4,25133,3,1672319027),(96760,4,25134,3,1672319027),(96761,4,25135,3,1672319027),(96762,4,25136,3,1672319027),(96763,4,25137,3,1672319027),(96764,4,25138,3,1672319027),(96765,4,25139,3,1672319027),(96766,4,25140,3,1672319027),(96767,4,25141,3,1672319027),(96768,4,25142,3,1672319027),(96769,4,25143,3,1672319027),(96770,4,25144,3,1672319027),(96771,4,25145,3,1672319027),(96772,4,25146,3,1672319027),(96773,4,25147,3,1672319027),(96774,4,25148,3,1672319027),(96775,4,25149,3,1672319027),(96776,4,25150,3,1672319027),(96777,4,25151,3,1672319027),(96778,4,25152,3,1672319027),(96779,4,25153,3,1672319027),(96780,4,25154,3,1672319027),(96781,4,25155,3,1672319027),(96782,4,25156,3,1672319027),(96783,4,25157,3,1672319027),(96784,4,25158,3,1672319027),(96785,4,25159,3,1672319027),(96786,4,25160,3,1672319027),(96787,4,25161,3,1672319027),(96788,4,25162,3,1672319027),(96789,4,25163,3,1672319027),(96790,4,25164,3,1672319027),(96791,4,25165,3,1672319027),(96792,4,25166,3,1672319027),(96793,4,25167,3,1672319027),(96794,4,25168,3,1672319027),(96795,4,25169,3,1672319027),(96796,4,25170,3,1672319027),(96797,4,25171,3,1672319027),(96798,4,25172,3,1672319027),(96799,4,25173,3,1672319027),(96800,4,25174,3,1672319027),(96801,4,25175,3,1672319027),(96802,4,25176,3,1672319027),(96803,4,25177,3,1672319027),(96804,4,25178,3,1672319027),(96805,4,25179,3,1672319027),(96806,4,25180,3,1672319027),(96807,4,25181,3,1672319027),(96808,4,25182,3,1672319027),(96809,4,25183,3,1672319027),(96810,4,25184,3,1672319027),(96811,4,25185,3,1672319027),(96812,4,25186,3,1672319027),(96813,4,25187,3,1672319027),(96814,4,25188,3,1672319027),(96815,4,25189,3,1672319027),(96816,4,25190,3,1672319027),(96817,4,25191,3,1672319027),(96818,4,25192,3,1672319027),(96819,4,25193,3,1672319027),(96820,4,25194,3,1672319027),(96821,4,25195,3,1672319027),(96822,4,25196,3,1672319027),(96823,4,25197,3,1672319027),(96824,4,25198,3,1672319027),(96825,4,25199,3,1672319027),(96826,4,25200,3,1672319027),(96827,4,25201,3,1672319027),(96828,4,25202,3,1672319027),(96829,4,25203,3,1672319027),(96830,4,25204,3,1672319027),(96831,4,25205,3,1672319027),(96832,4,25206,3,1672319027),(96833,4,25207,3,1672319027),(96834,4,25208,3,1672319027),(96835,4,25209,3,1672319027),(96836,4,25210,3,1672319027),(96837,4,25211,3,1672319027),(96838,4,25212,3,1672319027),(96839,4,25213,3,1672319027),(96840,4,25214,3,1672319027),(96841,4,25215,3,1672319027),(96842,4,25216,3,1672319027),(96843,4,25217,3,1672319027),(96844,4,25218,3,1672319027),(96845,4,25219,3,1672319027),(96846,4,25220,3,1672319027),(96847,4,25221,3,1672319027),(96848,4,25222,3,1672319027),(96849,4,25223,3,1672319027),(96850,4,25224,3,1672319027),(96851,4,25225,3,1672319027),(96852,4,25226,3,1672319027),(96853,4,25227,3,1672319027),(96854,4,25228,3,1672319027),(96855,4,25229,3,1672319027),(96856,4,25230,3,1672319027),(96857,4,25231,3,1672319027),(96858,4,25232,3,1672319027),(96859,4,25233,3,1672319027),(96860,4,25234,3,1672319027),(96861,4,25235,3,1672319027),(96862,4,25236,3,1672319027),(96863,4,25237,3,1672319027),(96864,4,25238,3,1672319027),(96865,4,25239,3,1672319027),(96866,4,25240,3,1672319027),(96867,4,25241,3,1672319027),(96868,4,25242,3,1672319027),(96869,4,25243,3,1672319027),(96870,4,25244,3,1672319027),(96871,4,25245,3,1672319027),(96872,4,25246,3,1672319027),(96873,4,25247,3,1672319027),(96874,4,25248,3,1672319027),(96875,4,25249,3,1672319027),(96876,4,25250,3,1672319027),(96877,4,25251,3,1672319027),(96878,4,25252,3,1672319027),(96879,4,25253,3,1672319027),(96880,4,25254,3,1672319027),(96881,4,25255,3,1672319027),(96882,4,25256,3,1672319027),(96883,4,25257,3,1672319027),(96884,4,25258,3,1672319027),(96885,4,25259,3,1672319027),(96886,4,25260,3,1672319027),(96887,4,25261,3,1672319027),(96888,4,25262,3,1672319027),(96889,4,25263,3,1672319027),(96890,4,25264,3,1672319027),(96891,4,25265,3,1672319027),(96892,4,25266,3,1672319027),(96893,4,25267,3,1672319027),(96894,4,25268,3,1672319027),(96895,4,25269,3,1672319027),(96896,4,25270,3,1672319027),(96897,4,25271,3,1672319027),(96898,4,25272,3,1672319027),(96899,4,25273,3,1672319027),(96900,4,25274,3,1672319027),(96901,4,25275,3,1672319027),(96902,4,25276,3,1672319027),(96903,4,25277,3,1672319027),(96904,4,25278,3,1672319027),(96905,4,25279,3,1672319027),(96906,4,25280,3,1672319027),(96907,4,25281,3,1672319027),(96908,4,25282,3,1672319027),(96909,4,25283,3,1672319027),(96910,4,25284,3,1672319027),(96911,4,25285,3,1672319027),(96912,4,25286,3,1672319027),(96913,4,25287,3,1672319027),(96914,4,25288,3,1672319027),(96915,4,25289,3,1672319027),(96916,4,25290,3,1672319027),(96917,4,25291,3,1672319027),(96918,4,25292,3,1672319027),(96919,4,25293,3,1672319027),(96920,4,25294,3,1672319027),(96921,4,25295,3,1672319027),(96922,4,25296,3,1672319027),(96923,4,25297,3,1672319027),(96924,4,25298,3,1672319027),(96925,4,25299,3,1672319027),(96926,4,25300,3,1672319027),(96927,4,25301,3,1672319027),(96928,4,25302,3,1672319027),(96929,4,25303,3,1672319027),(96930,4,25304,3,1672319027),(96931,4,25305,3,1672319027),(96932,4,25306,3,1672319027),(96933,4,25307,3,1672319027),(96934,4,25308,3,1672319027),(96935,4,25309,3,1672319027),(96936,4,25310,3,1672319027),(96937,4,25311,3,1672319027),(96938,4,25312,3,1672319027),(96939,4,25313,3,1672319027),(96940,4,25314,3,1672319027),(96941,4,25315,3,1672319027),(96942,4,25316,3,1672319027),(96943,4,25317,3,1672319027),(96944,4,25318,3,1672319027),(96945,4,25319,3,1672319027),(96946,4,25320,3,1672319027),(96947,4,25321,3,1672319027),(96948,4,25322,3,1672319027),(96949,4,25323,3,1672319027),(96950,4,25324,3,1672319027),(96951,4,25325,3,1672319027),(96952,4,25326,3,1672319027),(96953,4,25327,3,1672319027),(96954,4,25328,3,1672319027),(96955,4,25329,3,1672319027),(96956,4,25330,3,1672319027),(96957,4,25331,3,1672319027),(96958,4,25332,3,1672319027),(96959,4,25333,3,1672319027),(96960,4,25334,3,1672319027),(96961,4,25335,3,1672319027),(96962,4,25336,3,1672319027),(96963,4,25337,3,1672319027),(96964,4,25338,3,1672319027),(96965,4,25339,3,1672319027),(96966,4,25340,3,1672319027),(96967,4,25341,3,1672319027),(96968,4,25342,3,1672319027),(96969,4,25343,3,1672319027),(96970,4,25344,3,1672319027),(96971,4,25345,3,1672319027),(96972,4,25346,3,1672319027),(96973,4,25347,3,1672319027),(96974,4,25348,3,1672319027),(96975,4,25349,3,1672319027),(96976,4,25350,3,1672319027),(96977,4,25351,3,1672319027),(96978,4,25352,3,1672319027),(96979,4,25353,3,1672319027),(96980,4,25354,3,1672319027),(96981,4,25355,3,1672319027),(96982,4,25356,3,1672319027),(96983,4,25357,3,1672319027),(96984,4,25358,3,1672319027),(96985,4,25359,3,1672319027),(96986,4,25360,3,1672319027),(96987,4,25361,3,1672319027),(96988,4,25362,3,1672319027),(96989,4,25363,3,1672319027),(96990,4,25364,3,1672319027),(96991,4,25365,3,1672319027),(96992,4,25366,3,1672319027),(96993,4,25367,3,1672319027),(96994,4,25368,3,1672319027),(96995,4,25369,3,1672319027),(96996,4,25370,3,1672319027),(96997,4,25371,3,1672319027),(96998,4,25372,3,1672319027),(96999,4,25373,3,1672319027),(97000,4,25374,3,1672319027),(97001,4,25375,3,1672319027),(97002,4,25376,3,1672319027),(97003,4,25377,3,1672319027),(97004,4,25378,3,1672319027),(97005,4,25379,3,1672319027),(97006,4,25380,3,1672319027),(97007,4,25381,3,1672319027),(97008,4,25382,3,1672319027),(97009,4,25383,3,1672319027),(97010,4,25384,3,1672319027),(97011,4,25385,3,1672319027),(97012,4,25386,3,1672319027),(97013,4,25387,3,1672319027),(97014,4,25388,3,1672319027),(97015,4,25389,3,1672319027),(97016,4,25390,3,1672319027),(97017,4,25391,3,1672319027),(97018,4,25392,3,1672319027),(97019,4,25393,3,1672319027),(97020,4,25394,3,1672319027),(97021,4,25395,3,1672319027),(97022,4,25396,3,1672319027),(97023,4,25397,3,1672319027),(97024,4,25398,3,1672319027),(97025,4,25399,3,1672319027),(97026,4,25400,3,1672319027),(97027,4,25401,3,1672319027),(97028,4,25402,3,1672319027),(97029,4,25403,3,1672319027),(97030,4,25404,3,1672319027),(97031,4,25405,3,1672319027),(97032,4,25406,3,1672319027),(97033,4,25407,3,1672319027),(97034,4,25408,3,1672319027),(97035,4,25409,3,1672319027),(97036,4,25410,3,1672319027),(97037,4,25411,3,1672319027),(97038,4,25412,3,1672319027),(97039,4,25413,3,1672319027),(97040,4,25414,3,1672319027),(97041,4,25415,3,1672319027),(97042,4,25416,3,1672319027),(97043,4,25417,3,1672319027),(97044,4,25418,3,1672319027),(97045,4,25419,3,1672319027),(97046,4,25420,3,1672319027),(97047,4,25421,3,1672319027),(97048,4,25422,3,1672319027),(97049,4,25423,3,1672319027),(97050,4,25424,3,1672319027),(97051,4,25425,3,1672319027),(97052,4,25426,3,1672319027),(97053,4,25427,3,1672319027),(97054,4,25428,3,1672319027),(97055,4,25429,3,1672319027),(97056,4,25430,3,1672319027),(97057,4,25431,3,1672319027),(97058,4,25432,3,1672319027),(97059,4,25433,3,1672319027),(97060,4,25434,3,1672319027),(97061,4,25435,3,1672319027),(97062,4,25436,3,1672319027),(97063,4,25437,3,1672319027),(97064,4,25438,3,1672319027),(97065,4,25439,3,1672319027),(97066,4,25440,3,1672319027),(97067,4,25441,3,1672319027),(97068,4,25442,3,1672319027),(97069,4,25443,3,1672319027),(97070,4,25444,3,1672319027),(97071,4,25445,3,1672319027),(97072,4,25446,3,1672319027),(97073,4,25447,3,1672319027),(97074,4,25448,3,1672319027),(97075,4,25449,3,1672319027),(97076,4,25450,3,1672319027),(97077,4,25451,3,1672319027),(97078,4,25452,3,1672319027),(97079,4,25453,3,1672319027),(97080,4,25454,3,1672319027),(97081,4,25455,3,1672319027),(97082,4,25456,3,1672319027),(97083,4,25457,3,1672319027),(97084,4,25458,3,1672319027),(97085,4,25459,3,1672319027),(97086,4,25460,3,1672319027),(97087,4,25461,3,1672319027),(97088,4,25462,3,1672319027),(97089,4,25463,3,1672319027),(97090,4,25464,3,1672319027),(97091,4,25465,3,1672319027),(97092,4,25466,3,1672319027),(97093,4,25467,3,1672319027),(97094,4,25468,3,1672319027),(97095,4,25469,3,1672319027),(97096,4,25470,3,1672319027),(97097,4,25471,3,1672319027),(97098,4,25472,3,1672319027),(97099,4,25473,3,1672319027),(97100,4,25474,3,1672319027),(97101,4,25475,3,1672319027),(97102,4,25476,3,1672319027),(97103,4,25477,3,1672319027),(97104,4,25478,3,1672319027),(97105,4,25479,3,1672319027),(97106,4,25480,3,1672319027),(97107,4,25481,3,1672319027),(97108,4,25482,3,1672319027),(97109,4,25483,3,1672319027),(97110,4,25484,3,1672319027),(97111,4,25485,3,1672319027),(97112,4,25486,3,1672319027),(97113,4,25487,3,1672319027),(97114,4,25488,3,1672319027),(97115,4,25489,3,1672319027),(97116,4,25490,3,1672319027),(97117,4,25491,3,1672319027),(97118,4,25492,3,1672319027),(97119,4,25493,3,1672319027),(97120,4,25494,3,1672319027),(97121,4,25495,3,1672319027),(97122,4,25496,3,1672319027),(97123,4,25497,3,1672319027),(97124,4,25498,3,1672319027),(97125,4,25499,3,1672319027),(97126,4,25500,3,1672319027),(97127,4,25501,3,1672319027),(97128,4,25502,3,1672319027),(97129,4,25503,3,1672319027),(97130,4,25504,3,1672319027),(97131,4,25505,3,1672319027),(97132,4,25506,3,1672319027),(97133,4,25507,3,1672319027),(97134,4,25508,3,1672319027),(97135,4,25509,3,1672319027),(97136,4,25510,3,1672319027),(97137,4,25511,3,1672319027),(97138,4,25512,3,1672319027),(97139,4,25513,3,1672319027),(97140,4,25514,3,1672319027),(97141,4,25515,3,1672319027),(97142,4,25516,3,1672319027),(97143,4,25517,3,1672319027),(97144,4,25518,3,1672319027),(97145,4,25519,3,1672319027),(97146,4,25520,3,1672319027),(97147,4,25521,3,1672319027),(97148,4,25522,3,1672319027),(97149,4,25523,3,1672319027),(97150,4,25524,3,1672319027),(97151,4,25525,3,1672319027),(97152,4,25526,3,1672319027),(97153,4,25527,3,1672319027),(97154,4,25528,3,1672319027),(97155,4,25529,3,1672319027),(97156,4,25530,3,1672319027),(97157,4,25531,3,1672319027),(97158,4,25532,3,1672319027),(97159,4,25533,3,1672319027),(97160,4,25534,3,1672319027),(97161,4,25535,3,1672319027),(97162,4,25536,3,1672319027),(97163,4,25537,3,1672319027),(97164,4,25538,3,1672319027),(97165,4,25539,3,1672319027),(97166,4,25540,3,1672319027),(97167,4,25541,3,1672319027),(97168,4,25542,3,1672319027),(97169,4,25543,3,1672319027),(97170,4,25544,3,1672319027),(97171,4,25545,3,1672319027),(97172,4,25546,3,1672319027),(97173,4,25547,3,1672319027),(97174,4,25548,3,1672319027),(97175,4,25549,3,1672319027),(97176,4,25550,3,1672319027),(97177,4,25551,3,1672319027),(97178,4,25552,3,1672319027),(97179,4,25553,3,1672319027),(97180,4,25554,3,1672319027),(97181,4,25555,3,1672319027),(97182,4,25556,3,1672319027),(97183,4,25557,3,1672319027),(97184,4,25558,3,1672319027),(97185,4,25559,3,1672319027),(97186,4,25560,3,1672319027),(97187,4,25561,3,1672319027),(97188,4,25562,3,1672319027),(97189,4,25563,3,1672319027),(97190,4,25564,3,1672319027),(97191,4,25565,3,1672319027),(97192,4,25566,3,1672319027),(97193,4,25567,3,1672319027),(97194,4,25568,3,1672319027),(97195,4,25569,3,1672319027),(97196,4,25570,3,1672319027),(97197,4,25571,3,1672319027),(97198,4,25572,3,1672319027),(97199,4,25573,3,1672319027),(97200,4,25574,3,1672319027),(97201,4,25575,3,1672319027),(97202,4,25576,3,1672319027),(97203,4,25577,3,1672319027),(97204,4,25578,3,1672319027),(97205,4,25579,3,1672319027),(97206,4,25580,3,1672319027),(97207,4,25581,3,1672319027),(97208,4,25582,3,1672319027),(97209,4,25583,3,1672319027),(97210,4,25584,3,1672319027),(97211,4,25585,3,1672319027),(97212,4,25586,3,1672319027),(97213,4,25587,3,1672319027),(97214,4,25588,3,1672319027),(97215,4,25589,3,1672319027),(97216,4,25590,3,1672319027),(97217,4,25591,3,1672319027),(97218,4,25592,3,1672319027),(97219,4,25593,3,1672319027),(97220,4,25594,3,1672319027),(97221,4,25595,3,1672319027),(97222,4,25596,3,1672319027),(97223,4,25597,3,1672319027),(97224,4,25598,3,1672319027),(97225,4,25599,3,1672319027),(97226,4,25600,3,1672319027),(97227,4,25601,3,1672319027),(97228,4,25602,3,1672319027),(97229,4,25603,3,1672319027),(97230,4,25604,3,1672319027),(97231,4,25605,3,1672319027),(97232,4,25606,3,1672319027),(97233,4,25607,3,1672319027),(97234,4,25608,3,1672319027),(97235,4,25609,3,1672319027),(97236,4,25610,3,1672319027),(97237,4,25611,3,1672319027),(97238,4,25612,3,1672319027),(97239,4,25613,3,1672319027),(97240,4,25614,3,1672319027),(97241,4,25615,3,1672319027),(97242,4,25616,3,1672319027),(97243,4,25617,3,1672319027),(97244,4,25618,3,1672319027),(97245,4,25619,3,1672319027),(97246,4,25620,3,1672319027),(97247,4,25621,3,1672319027),(97248,4,25622,3,1672319027),(97249,4,25623,3,1672319027),(97250,4,25624,3,1672319027),(97251,4,25625,3,1672319027),(97252,4,25626,3,1672319027),(97253,4,25627,3,1672319027),(97254,4,25628,3,1672319027),(97255,4,25629,3,1672319027),(97256,4,25630,3,1672319027),(97257,4,25631,3,1672319027),(97258,4,25632,3,1672319027),(97259,4,25633,3,1672319027),(97260,4,25634,3,1672319027),(97261,4,25635,3,1672319027),(97262,4,25636,3,1672319027),(97263,4,25637,3,1672319027),(97264,4,25638,3,1672319027),(97265,4,25639,3,1672319027),(97266,4,25640,3,1672319027),(97267,4,25641,3,1672319027),(97268,4,25642,3,1672319027),(97269,4,25643,3,1672319027),(97270,4,25644,3,1672319027),(97271,4,25645,3,1672319027),(97272,4,25646,3,1672319027),(97273,4,25647,3,1672319027),(97274,4,25648,3,1672319027),(97275,4,25649,3,1672319027),(97276,4,25650,3,1672319027),(97277,4,25651,3,1672319027),(97278,4,25652,3,1672319027),(97279,4,25653,3,1672319027),(97280,4,25654,3,1672319027),(97281,4,25655,3,1672319027),(97282,4,25656,3,1672319027),(97283,4,25657,3,1672319027),(97284,4,25658,3,1672319027),(97285,4,25659,3,1672319027),(97286,4,25660,3,1672319027),(97287,4,25661,3,1672319027),(97288,4,25662,3,1672319027),(97289,4,25663,3,1672319027),(97290,4,25664,3,1672319027),(97291,4,25665,3,1672319027),(97292,4,25666,3,1672319027),(97293,4,25667,3,1672319027),(97294,4,25668,3,1672319027),(97295,4,25669,3,1672319027),(97296,4,25670,3,1672319027),(97297,4,25671,3,1672319027),(97298,4,25672,3,1672319027),(97299,4,25673,3,1672319027),(97300,4,25674,3,1672319027),(97301,4,25675,3,1672319027),(97302,4,25676,3,1672319027),(97303,4,25677,3,1672319027),(97304,4,25678,3,1672319027),(97305,4,25679,3,1672319027),(97306,4,25680,3,1672319027),(97307,4,25681,3,1672319027),(97308,4,25682,3,1672319027),(97309,4,25683,3,1672319027),(97310,4,25684,3,1672319027),(97311,4,25685,3,1672319027),(97312,4,25686,3,1672319027),(97313,4,25687,3,1672319027),(97314,4,25688,3,1672319027),(97315,4,25689,3,1672319027),(97316,4,25690,3,1672319027),(97317,4,25691,3,1672319027),(97318,4,25692,3,1672319027),(97319,4,25693,3,1672319027),(97320,4,25694,3,1672319027),(97321,4,25695,3,1672319027),(97322,4,25696,3,1672319027),(97323,4,25697,3,1672319027),(97324,4,25698,3,1672319027),(97325,4,25699,3,1672319027),(97326,4,25700,3,1672319027),(97327,4,25701,3,1672319027),(97328,4,25702,3,1672319027),(97329,4,25703,3,1672319027),(97330,4,25704,3,1672319027),(97331,4,25705,3,1672319027),(97332,4,25706,3,1672319027),(97333,4,25707,3,1672319027),(97334,4,25708,3,1672319027),(97335,4,25709,3,1672319027),(97336,4,25710,3,1672319027),(97337,4,25711,3,1672319027),(97338,4,25712,3,1672319027),(97339,4,25713,3,1672319027),(97340,4,25714,3,1672319027),(97341,4,25715,3,1672319027),(97342,4,25716,3,1672319027),(97343,4,25717,3,1672319027),(97344,4,25718,3,1672319027),(97345,4,25719,3,1672319027),(97346,4,25720,3,1672319027),(97347,4,25721,3,1672319027),(97348,4,25722,3,1672319027),(97349,4,25723,3,1672319027),(97350,4,25724,3,1672319027),(97351,4,25725,3,1672319027),(97352,4,25726,3,1672319027),(97353,4,25727,3,1672319027),(97354,4,25728,3,1672319027),(97355,4,25729,3,1672319027),(97356,4,25730,3,1672319027),(97357,4,25731,3,1672319027),(97358,4,25732,3,1672319027),(97359,4,25733,3,1672319027),(97360,4,25734,3,1672319027),(97361,4,25735,3,1672319027),(97362,4,25736,3,1672319027),(97363,4,25737,3,1672319027),(97364,4,25738,3,1672319027),(97365,4,25739,3,1672319027),(97366,4,25740,3,1672319027),(97367,4,25741,3,1672319027),(97368,4,25742,3,1672319027),(97369,4,25743,3,1672319027),(97370,4,25744,3,1672319027),(97371,4,25745,3,1672319027),(97372,4,25746,3,1672319027),(97373,4,25747,3,1672319027),(97374,4,25748,3,1672319027),(97375,4,25749,3,1672319027),(97376,4,25750,3,1672319027),(97377,4,25751,3,1672319027),(97378,4,25752,3,1672319027),(97379,4,25753,3,1672319027),(97380,4,25754,3,1672319027),(97381,4,25755,3,1672319027),(97382,4,25756,3,1672319027),(97383,4,25757,3,1672319027),(97384,4,25758,3,1672319027),(97385,4,25759,3,1672319027),(97386,4,25760,3,1672319027),(97387,4,25761,3,1672319027),(97388,4,25762,3,1672319027),(97389,4,25763,3,1672319027),(97390,4,25764,3,1672319027),(97391,4,25765,3,1672319027),(97392,4,25766,3,1672319027),(97393,4,25767,3,1672319027),(97394,4,25768,3,1672319027),(97395,4,25769,3,1672319027),(97396,4,25770,3,1672319027),(97397,4,25771,3,1672319027),(97398,4,25772,3,1672319027),(97399,4,25773,3,1672319027),(97400,4,25774,3,1672319027),(97401,4,25775,3,1672319027),(97402,4,25776,3,1672319027),(97403,4,25777,3,1672319027),(97404,4,25778,3,1672319027),(97405,4,25779,3,1672319027),(97406,4,25780,3,1672319027),(97407,4,25781,3,1672319027),(97408,4,25782,3,1672319027),(97409,4,25783,3,1672319027),(97410,4,25784,3,1672319027),(97411,4,25785,3,1672319027),(97412,4,25786,3,1672319027),(97413,4,25787,3,1672319027),(97414,4,25788,3,1672319027),(97415,4,25789,3,1672319027),(97416,4,25790,3,1672319027),(97417,4,25791,3,1672319027),(97418,4,25792,3,1672319027),(97419,4,25793,3,1672319027),(97420,4,25794,3,1672319027),(97421,4,25795,3,1672319027),(97422,4,25796,3,1672319027),(97423,4,25797,3,1672319027),(97424,4,25798,3,1672319027),(97425,4,25799,3,1672319027),(97426,4,25800,3,1672319027),(97427,4,25801,3,1672319027),(97428,4,25802,3,1672319027),(97429,4,25803,3,1672319027),(97430,4,25804,3,1672319027),(97431,4,25805,3,1672319027),(97432,4,25806,3,1672319027),(97433,4,25807,3,1672319027),(97434,4,25808,3,1672319027),(97435,4,25809,3,1672319027),(97436,4,25810,3,1672319027),(97437,4,25811,3,1672319027),(97438,4,25812,3,1672319027),(97439,4,25813,3,1672319027),(97440,4,25814,3,1672319027),(97441,4,25815,3,1672319027),(97442,4,25816,3,1672319027),(97443,4,25817,3,1672319027),(97444,4,25818,3,1672319027),(97445,4,25819,3,1672319027),(97446,4,25820,3,1672319027),(97447,4,25821,3,1672319027),(97448,4,25822,3,1672319027),(97449,4,25823,3,1672319027),(97450,4,25824,3,1672319027),(97451,4,25825,3,1672319027),(97452,4,25826,3,1672319027),(97453,4,25827,3,1672319027),(97454,4,25828,3,1672319027),(97455,4,25829,3,1672319027),(97456,4,25830,3,1672319027),(97457,4,25831,3,1672319027),(97458,4,25832,3,1672319027),(97459,4,25833,3,1672319027),(97460,4,25834,3,1672319027),(97461,4,25835,3,1672319027),(97462,4,25836,3,1672319027),(97463,4,25837,3,1672319027),(97464,4,25838,3,1672319027),(97465,4,25839,3,1672319027),(97466,4,25840,3,1672319027),(97467,4,25841,3,1672319027),(97468,4,25842,3,1672319027),(97469,4,25843,3,1672319027),(97470,4,25844,3,1672319027),(97471,4,25845,3,1672319027),(97472,4,25846,3,1672319027),(97473,4,25847,3,1672319027),(97474,4,25848,3,1672319027),(97475,4,25849,3,1672319027),(97476,4,25850,3,1672319027),(97477,4,25851,3,1672319027),(97478,4,25852,3,1672319027),(97479,4,25853,3,1672319027),(97480,4,25854,3,1672319027),(97481,4,25855,3,1672319027),(97482,4,25856,3,1672319027),(97483,4,25857,3,1672319027),(97484,4,25858,3,1672319027),(97485,4,25859,3,1672319027),(97486,4,25860,3,1672319027),(97487,4,25861,3,1672319027),(97488,4,25862,3,1672319027),(97489,4,25863,3,1672319027),(97490,4,25864,3,1672319027),(97491,4,25865,3,1672319027),(97492,4,25866,3,1672319027),(97493,4,25867,3,1672319027),(97494,4,25868,3,1672319027),(97495,4,25869,3,1672319027),(97496,4,25870,3,1672319027),(97497,4,25871,3,1672319027),(97498,4,25872,3,1672319027),(97499,4,25873,3,1672319027),(97500,4,25874,3,1672319027),(97501,4,25875,3,1672319027),(97502,4,25876,3,1672319027),(97503,4,25877,3,1672319027),(97504,4,25878,3,1672319027),(97505,4,25879,3,1672319027),(97506,4,25880,3,1672319027),(97507,4,25881,3,1672319027),(97508,4,25882,3,1672319027),(97509,4,25883,3,1672319027),(97510,4,25884,3,1672319027),(97511,4,25885,3,1672319027),(97512,4,25886,3,1672319027),(97513,4,25887,3,1672319027),(97514,4,25888,3,1672319027),(97515,4,25889,3,1672319027),(97516,4,25890,3,1672319027),(97517,4,25891,3,1672319027),(97518,4,25892,3,1672319027),(97519,4,25893,3,1672319027),(97520,4,25894,3,1672319027),(97521,4,25895,3,1672319027),(97522,4,25896,3,1672319027),(97523,4,25897,3,1672319027),(97524,4,25898,3,1672319027),(97525,4,25899,3,1672319027),(97526,4,25900,3,1672319027),(97527,4,25901,3,1672319027),(97528,4,25902,3,1672319027),(97529,4,25903,3,1672319027),(97530,4,25904,3,1672319027),(97531,4,25905,3,1672319027),(97532,4,25906,3,1672319027),(97533,4,25907,3,1672319027),(97534,4,25908,3,1672319027),(97535,4,25909,3,1672319027),(97536,4,25910,3,1672319027),(97537,4,25911,3,1672319027),(97538,4,25912,3,1672319027),(97539,4,25913,3,1672319027),(97540,4,25914,3,1672319027),(97541,4,25915,3,1672319027),(97542,4,25916,3,1672319027),(97543,4,25917,3,1672319027),(97544,4,25918,3,1672319027),(97545,4,25919,3,1672319027),(97546,4,25920,3,1672319027),(97547,4,25921,3,1672319027),(97548,4,25922,3,1672319027),(97549,4,25923,3,1672319027),(97550,4,25924,3,1672319027),(97551,4,25925,3,1672319027),(97552,4,25926,3,1672319027),(97553,4,25927,3,1672319027),(97554,4,25928,3,1672319027),(97555,4,25929,3,1672319027),(97556,4,25930,3,1672319027),(97557,4,25931,3,1672319027),(97558,4,25932,3,1672319027),(97559,4,25933,3,1672319027),(97560,4,25934,3,1672319027),(97561,4,25935,3,1672319027),(97562,4,25936,3,1672319027),(97563,4,25937,3,1672319027),(97564,4,25938,3,1672319027),(97565,4,25939,3,1672319027),(97566,4,25940,3,1672319027),(97567,4,25941,3,1672319027),(97568,4,25942,3,1672319027),(97569,4,25943,3,1672319027),(97570,4,25944,3,1672319027),(97571,4,25945,3,1672319027),(97572,4,25946,3,1672319027),(97573,4,25947,3,1672319027),(97574,4,25948,3,1672319027),(97575,4,25949,3,1672319027),(97576,4,25950,3,1672319027),(97577,4,25951,3,1672319027),(97578,4,25952,3,1672319027),(97579,4,25953,3,1672319027),(97580,4,25954,3,1672319027),(97581,4,25955,3,1672319027),(97582,4,25956,3,1672319027),(97583,4,25957,3,1672319027),(97584,4,25958,3,1672319027),(97585,4,25959,3,1672319027),(97586,4,25960,3,1672319027),(97587,4,25961,3,1672319027),(97588,4,25962,3,1672319027),(97589,4,25963,3,1672319027),(97590,4,25964,3,1672319027),(97591,4,25965,3,1672319027),(97592,4,25966,3,1672319027),(97593,4,25967,3,1672319027),(97594,4,25968,3,1672319027),(97595,4,25969,3,1672319027),(97596,4,25970,3,1672319027),(97597,4,25971,3,1672319027),(97598,4,25972,3,1672319027),(97599,4,25973,3,1672319027),(97600,4,25974,3,1672319027),(97601,4,25975,3,1672319027),(97602,4,25976,3,1672319027),(97603,4,25977,3,1672319027),(97604,4,25978,3,1672319027),(97605,4,25979,3,1672319027),(97606,4,25980,3,1672319027),(97607,4,25981,3,1672319027),(97608,4,25982,3,1672319027),(97609,4,25983,3,1672319027),(97610,4,25984,3,1672319027),(97611,4,25985,3,1672319027),(97612,4,25986,3,1672319027),(97613,4,25987,3,1672319027),(97614,4,25988,3,1672319027),(97615,4,25989,3,1672319027),(97616,4,25990,3,1672319027),(97617,4,25991,3,1672319027),(97618,4,25992,3,1672319027),(97619,4,25993,3,1672319027),(97620,4,25994,3,1672319027),(97621,4,25995,3,1672319027),(97622,4,25996,3,1672319027),(97623,4,25997,3,1672319027),(97624,4,25998,3,1672319027),(97625,4,25999,3,1672319027),(97626,4,26000,3,1672319027),(97627,4,26001,3,1672319027),(97628,4,26002,3,1672319027),(97629,4,26003,3,1672319027),(97630,4,26004,3,1672319027),(97631,4,26005,3,1672319027),(97632,4,26006,3,1672319027),(97633,4,26007,3,1672319027),(97634,4,26008,3,1672319027),(97635,4,26009,3,1672319027),(97636,4,26010,3,1672319027),(97637,4,26011,3,1672319027),(97638,4,26012,3,1672319027),(97639,4,26013,3,1672319027),(97640,4,26014,3,1672319027),(97641,4,26015,3,1672319027),(97642,4,26016,3,1672319027),(97643,4,26017,3,1672319027),(97644,4,26018,3,1672319027),(97645,4,26019,3,1672319027),(97646,4,26020,3,1672319027),(97647,4,26021,3,1672319027),(97648,4,26022,3,1672319027),(97649,4,26023,3,1672319027),(97650,4,26024,3,1672319027),(97651,4,26025,3,1672319027),(97652,4,26026,3,1672319027),(97653,4,26027,3,1672319027),(97654,4,26028,3,1672319027),(97655,4,26029,3,1672319027),(97656,4,26030,3,1672319027),(97657,4,26031,3,1672319027),(97658,4,26032,3,1672319027),(97659,4,26033,3,1672319027),(97660,4,26034,3,1672319027),(97661,4,26035,3,1672319027),(97662,4,26036,3,1672319027),(97663,4,26037,3,1672319027),(97664,4,26038,3,1672319027),(97665,4,26039,3,1672319027),(97666,4,26040,3,1672319027),(97667,4,26041,3,1672319027),(97668,4,26042,3,1672319027),(97669,4,26043,3,1672319027),(97670,4,26044,3,1672319027),(97671,4,26045,3,1672319027),(97672,4,26046,3,1672319027),(97673,4,26047,3,1672319027),(97674,4,26048,3,1672319027),(97675,4,26049,3,1672319027),(97676,4,26050,3,1672319027),(97677,4,26051,3,1672319027),(97678,4,26052,3,1672319027),(97679,4,26053,3,1672319027),(97680,4,26054,3,1672319027),(97681,4,26055,3,1672319027),(97682,4,26056,3,1672319027),(97683,4,26057,3,1672319027),(97684,4,26058,3,1672319027),(97685,4,26059,3,1672319027),(97686,4,26060,3,1672319027),(97687,4,26061,3,1672319027),(97688,4,26062,3,1672319027),(97689,4,26063,3,1672319027),(97690,4,26064,3,1672319027),(97691,4,26065,3,1672319027),(97692,4,26066,3,1672319027),(97693,4,26067,3,1672319027),(97694,4,26068,3,1672319027),(97695,4,26069,3,1672319027),(97696,4,26070,3,1672319027),(97697,4,26071,3,1672319027),(97698,4,26072,3,1672319027),(97699,4,26073,3,1672319027),(97700,4,26074,3,1672319027),(97701,4,26075,3,1672319027),(97702,4,26076,3,1672319027),(97703,4,26077,3,1672319027),(97704,4,26078,3,1672319027),(97705,4,26079,3,1672319027),(97706,4,26080,3,1672319027),(97707,4,26081,3,1672319027),(97708,4,26082,3,1672319027),(97709,4,26083,3,1672319027),(97710,4,26084,3,1672319027),(97711,4,26085,3,1672319027),(97712,4,26086,3,1672319027),(97713,4,26087,3,1672319027),(97714,4,26088,3,1672319027),(97715,4,26089,3,1672319027),(97716,4,26090,3,1672319027),(97717,4,26091,3,1672319027),(97718,4,26092,3,1672319027),(97719,4,26093,3,1672319027),(97720,4,26094,3,1672319027),(97721,4,26095,3,1672319027),(97722,4,26096,3,1672319027),(97723,4,26097,3,1672319027),(97724,4,26098,3,1672319027),(97725,4,26099,3,1672319027),(97726,4,26100,3,1672319027),(97727,4,26101,3,1672319027),(97728,4,26102,3,1672319027),(97729,4,26103,3,1672319027),(97730,4,26104,3,1672319027),(97731,4,26105,3,1672319027),(97732,4,26106,3,1672319027),(97733,4,26107,3,1672319027),(97734,4,26108,3,1672319027),(97735,4,26109,3,1672319027),(97736,4,26110,3,1672319027),(97737,4,26111,3,1672319027),(97738,4,26112,3,1672319027),(97739,4,26113,3,1672319027),(97740,4,26114,3,1672319027),(97741,4,26115,3,1672319027),(97742,4,26116,3,1672319027),(97743,4,26117,3,1672319027),(97744,4,26118,3,1672319027),(97745,4,26119,3,1672319027),(97746,4,26120,3,1672319027),(97747,4,26121,3,1672319027),(97748,4,26122,3,1672319027),(97749,4,26123,3,1672319027),(97750,4,26124,3,1672319027),(97751,4,26125,3,1672319027),(97752,4,26126,3,1672319027),(97753,4,26127,3,1672319027),(97754,4,26128,3,1672319027),(97755,4,26129,3,1672319027),(97756,4,26130,3,1672319027),(97757,4,26131,3,1672319027),(97758,4,26132,3,1672319027),(97759,4,26133,3,1672319027),(97760,4,26134,3,1672319027),(97761,4,26135,3,1672319027),(97762,4,26136,3,1672319027),(97763,4,26137,3,1672319027),(97764,4,26138,3,1672319027),(97765,4,26139,3,1672319027),(97766,4,26140,3,1672319027),(97767,4,26141,3,1672319027),(97768,4,26142,3,1672319027),(97769,4,26143,3,1672319027),(97770,4,26144,3,1672319027),(97771,4,26145,3,1672319027),(97772,4,26146,3,1672319027),(97773,4,26147,3,1672319027),(97774,4,26148,3,1672319027),(97775,4,26149,3,1672319027),(97776,4,26150,3,1672319027),(97777,4,26151,3,1672319027),(97778,4,26152,3,1672319027),(97779,4,26153,3,1672319027),(97780,4,26154,3,1672319027),(97781,4,26155,3,1672319027),(97782,4,26156,3,1672319027),(97783,4,26157,3,1672319027),(97784,4,26158,3,1672319027),(97785,4,26159,3,1672319027),(97786,4,26160,3,1672319027),(97787,4,26161,3,1672319027),(97788,4,26162,3,1672319027),(97789,4,26163,3,1672319027),(97790,4,26164,3,1672319027),(97791,4,26165,3,1672319027),(97792,4,26166,3,1672319027),(97793,4,26167,3,1672319027),(97794,4,26168,3,1672319027),(97795,4,26169,3,1672319027),(97796,4,26170,3,1672319027),(97797,4,26171,3,1672319027),(97798,4,26172,3,1672319027),(97799,4,26173,3,1672319027),(97800,4,26174,3,1672319027),(97801,4,26175,3,1672319027),(97802,4,26176,3,1672319027),(97803,4,26177,3,1672319027),(97804,4,26178,3,1672319027),(97805,4,26179,3,1672319027),(97806,4,26180,3,1672319027),(97807,4,26181,3,1672319027),(97808,4,26182,3,1672319027),(97809,4,26183,3,1672319027),(97810,4,26184,3,1672319027),(97811,4,26185,3,1672319027),(97812,4,26186,3,1672319027),(97813,4,26187,3,1672319027),(97814,4,26188,3,1672319027),(97815,4,26189,3,1672319027),(97816,4,26190,3,1672319027),(97817,4,26191,3,1672319027),(97818,4,26192,3,1672319027),(97819,4,26193,3,1672319027),(97820,4,26194,3,1672319027),(97821,4,26195,3,1672319027),(97822,4,26196,3,1672319027),(97823,4,26197,3,1672319027),(97824,4,26198,3,1672319027),(97825,4,26199,3,1672319027),(97826,4,26200,3,1672319027),(97827,4,26201,3,1672319027),(97828,4,26202,3,1672319027),(97829,4,26203,3,1672319027),(97830,4,26204,3,1672319027),(97831,4,26205,3,1672319027),(97832,4,26206,3,1672319027),(97833,4,26207,3,1672319027),(97834,4,26208,3,1672319027),(97835,4,26209,3,1672319027),(97836,4,26210,3,1672319027),(97837,4,26211,3,1672319027),(97838,4,26212,3,1672319027),(97839,4,26213,3,1672319027),(97840,4,26214,3,1672319027),(97841,4,26215,3,1672319027),(97842,4,26216,3,1672319027),(97843,4,26217,3,1672319027),(97844,4,26218,3,1672319027),(97845,4,26219,3,1672319027),(97846,4,26220,3,1672319027),(97847,4,26221,3,1672319027),(97848,4,26222,3,1672319027),(97849,4,26223,3,1672319027),(97850,4,26224,3,1672319027),(97851,4,26225,3,1672319027),(97852,4,26226,3,1672319027),(97853,4,26227,3,1672319027),(97854,4,26228,3,1672319027),(97855,4,26229,3,1672319027),(97856,4,26230,3,1672319027),(97857,4,26231,3,1672319027),(97858,4,26232,3,1672319027),(97859,4,26233,3,1672319027),(97860,4,26234,3,1672319027),(97861,4,26235,3,1672319027),(97862,4,26236,3,1672319027),(97863,4,26237,3,1672319027),(97864,4,26238,3,1672319027),(97865,4,26239,3,1672319027),(97866,4,26240,3,1672319027),(97867,4,26241,3,1672319027),(97868,4,26242,3,1672319027),(97869,4,26243,3,1672319027),(97870,4,26244,3,1672319027),(97871,4,26245,3,1672319027),(97872,4,26246,3,1672319027),(97873,4,26247,3,1672319027),(97874,4,26248,3,1672319027),(97875,4,26249,3,1672319027),(97876,4,26250,3,1672319027),(97877,4,26251,3,1672319027),(97878,4,26252,3,1672319027),(97879,4,26253,3,1672319027),(97880,4,26254,3,1672319027),(97881,4,26255,3,1672319027),(97882,4,26256,3,1672319027),(97883,4,26257,3,1672319027),(97884,4,26258,3,1672319027),(97885,4,26259,3,1672319027),(97886,4,26260,3,1672319027),(97887,4,26261,3,1672319027),(97888,4,26262,3,1672319027),(97889,4,26263,3,1672319027),(97890,4,26264,3,1672319027),(97891,4,26265,3,1672319027),(97892,4,26266,3,1672319027),(97893,4,26267,3,1672319027),(97894,4,26268,3,1672319027),(97895,4,26269,3,1672319027),(97896,4,26270,3,1672319027),(97897,4,26271,3,1672319027),(97898,4,26272,3,1672319027),(97899,4,26273,3,1672319027),(97900,4,26274,3,1672319027),(97901,4,26275,3,1672319027),(97902,4,26276,3,1672319027),(97903,4,26277,3,1672319027),(97904,4,26278,3,1672319027),(97905,4,26279,3,1672319027),(97906,4,26280,3,1672319027),(97907,4,26281,3,1672319027),(97908,4,26282,3,1672319027),(97909,4,26283,3,1672319027),(97910,4,26284,3,1672319027),(97911,4,26285,3,1672319027),(97912,4,26286,3,1672319027),(97913,4,26287,3,1672319027),(97914,4,26288,3,1672319027),(97915,4,26289,3,1672319027),(97916,4,26290,3,1672319027),(97917,4,26291,3,1672319027),(97918,4,26292,3,1672319027),(97919,4,26293,3,1672319027),(97920,4,26294,3,1672319027),(97921,4,26295,3,1672319027),(97922,4,26296,3,1672319027),(97923,4,26297,3,1672319027),(97924,4,26298,3,1672319027),(97925,4,26299,3,1672319027),(97926,4,26300,3,1672319027),(97927,4,26301,3,1672319027),(97928,4,26302,3,1672319027),(97929,4,26303,3,1672319027),(97930,4,26304,3,1672319027),(97931,4,26305,3,1672319027),(97932,4,26306,3,1672319027),(97933,4,26307,3,1672319027),(97934,4,26308,3,1672319027),(97935,4,26309,3,1672319027),(97936,4,26310,3,1672319027),(97937,4,26311,3,1672319027),(97938,4,26312,3,1672319027),(97939,4,26313,3,1672319027),(97940,4,26314,3,1672319027),(97941,4,26315,3,1672319027),(97942,4,26316,3,1672319027),(97943,4,26317,3,1672319027),(97944,4,26318,3,1672319027),(97945,4,26319,3,1672319027),(97946,4,26320,3,1672319027),(97947,4,26321,3,1672319027),(97948,4,26322,3,1672319027),(97949,4,26323,3,1672319027),(97950,4,26324,3,1672319027),(97951,4,26325,3,1672319027),(97952,4,26326,3,1672319027),(97953,4,26327,3,1672319027),(97954,4,26328,3,1672319027),(97955,4,26329,3,1672319027),(97956,4,26330,3,1672319027),(97957,4,26331,3,1672319027),(97958,4,26332,3,1672319027),(97959,4,26333,3,1672319027),(97960,4,26334,3,1672319027),(97961,4,26335,3,1672319027),(97962,4,26336,3,1672319027),(97963,4,26337,3,1672319027),(97964,4,26338,3,1672319027),(97965,4,26339,3,1672319027),(97966,4,26340,3,1672319027),(97967,4,26341,3,1672319027),(97968,4,26342,3,1672319027),(97969,4,26343,3,1672319027),(97970,4,26344,3,1672319027),(97971,4,26345,3,1672319027),(97972,4,26346,3,1672319027),(97973,4,26347,3,1672319027),(97974,4,26348,3,1672319027),(97975,4,26349,3,1672319027),(97976,4,26350,3,1672319027),(97977,4,26351,3,1672319027),(97978,4,26352,3,1672319027),(97979,4,26353,3,1672319027),(97980,4,26354,3,1672319027),(97981,4,26355,3,1672319027),(97982,4,26356,3,1672319027),(97983,4,26357,3,1672319027),(97984,4,26358,3,1672319027),(97985,4,26359,3,1672319027),(97986,4,26360,3,1672319027),(97987,4,26361,3,1672319027),(97988,4,26362,3,1672319027),(97989,4,26363,3,1672319027),(97990,4,26364,3,1672319027),(97991,4,26365,3,1672319027),(97992,4,26366,3,1672319027),(97993,4,26367,3,1672319027),(97994,4,26368,3,1672319027),(97995,4,26369,3,1672319027),(97996,4,26370,3,1672319027),(97997,4,26371,3,1672319027),(97998,4,26372,3,1672319027),(97999,4,26373,3,1672319027),(98000,4,26374,3,1672319027),(98001,4,26375,3,1672319027),(98002,4,26376,3,1672319027),(98003,4,26377,3,1672319027),(98004,4,26378,3,1672319027),(98005,4,26379,3,1672319027),(98006,4,26380,3,1672319027),(98007,4,26381,3,1672319027),(98008,4,26382,3,1672319027),(98009,4,26383,3,1672319027),(98010,4,26384,3,1672319027),(98011,4,26385,3,1672319027),(98012,4,26386,3,1672319027),(98013,4,26387,3,1672319027),(98014,4,26388,3,1672319027),(98015,4,26389,3,1672319027),(98016,4,26390,3,1672319027),(98017,4,26391,3,1672319027),(98018,4,26392,3,1672319027),(98019,4,26393,3,1672319027),(98020,4,26394,3,1672319027),(98021,4,26395,3,1672319027),(98022,4,26396,3,1672319027),(98023,4,26397,3,1672319027),(98024,4,26398,3,1672319027),(98025,4,26399,3,1672319027),(98026,4,26400,3,1672319027),(98027,4,26401,3,1672319027),(98028,4,26402,3,1672319027),(98029,4,26403,3,1672319027),(98030,4,26404,3,1672319027),(98031,4,26405,3,1672319027),(98032,4,26406,3,1672319027),(98033,4,26407,3,1672319027),(98034,4,26408,3,1672319027),(98035,4,26409,3,1672319027),(98036,4,26410,3,1672319027),(98037,4,26411,3,1672319027),(98038,4,26412,3,1672319027),(98039,4,26413,3,1672319027),(98040,4,26414,3,1672319027),(98041,4,26415,3,1672319027),(98042,4,26416,3,1672319027),(98043,4,26417,3,1672319027),(98044,4,26418,3,1672319027),(98045,4,26419,3,1672319027),(98046,4,26420,3,1672319027),(98047,4,26421,3,1672319027),(98048,4,26422,3,1672319027),(98049,4,26423,3,1672319027),(98050,4,26424,3,1672319027),(98051,4,26425,3,1672319027),(98052,4,26426,3,1672319027),(98053,4,26427,3,1672319027),(98054,4,26428,3,1672319027),(98055,4,26429,3,1672319027),(98056,4,26430,3,1672319027),(98057,4,26431,3,1672319027),(98058,4,26432,3,1672319027),(98059,4,26433,3,1672319027),(98060,4,26434,3,1672319027),(98061,4,26435,3,1672319027),(98062,4,26436,3,1672319027),(98063,4,26437,3,1672319027),(98064,4,26438,3,1672319027),(98065,4,26439,3,1672319027),(98066,4,26440,3,1672319027),(98067,4,26441,3,1672319027),(98068,4,26442,3,1672319027),(98069,4,26443,3,1672319027),(98070,4,26444,3,1672319027),(98071,4,26445,3,1672319027),(98072,4,26446,3,1672319027),(98073,4,26447,3,1672319027),(98074,4,26448,3,1672319027),(98075,4,26449,3,1672319027),(98076,4,26450,3,1672319027),(98077,4,26451,3,1672319027),(98078,4,26452,3,1672319027),(98079,4,26453,3,1672319027),(98080,4,26454,3,1672319027),(98081,4,26455,3,1672319027),(98082,4,26456,3,1672319027),(98083,4,26457,3,1672319027),(98084,4,26458,3,1672319027),(98085,4,26459,3,1672319027),(98086,4,26460,3,1672319027),(98087,4,26461,3,1672319027),(98088,4,26462,3,1672319027),(98089,4,26463,3,1672319027),(98090,4,26464,3,1672319027),(98091,4,26465,3,1672319027),(98092,4,26466,3,1672319027),(98093,4,26467,3,1672319027),(98094,4,26468,3,1672319027),(98095,4,26469,3,1672319027),(98096,4,26470,3,1672319027),(98097,4,26471,3,1672319027),(98098,4,26472,3,1672319027),(98099,4,26473,3,1672319027),(98100,4,26474,3,1672319027),(98101,4,26475,3,1672319027),(98102,4,26476,3,1672319027),(98103,4,26477,3,1672319027),(98104,4,26478,3,1672319027),(98105,4,26479,3,1672319027),(98106,4,26480,3,1672319027),(98107,4,26481,3,1672319027),(98108,4,26482,3,1672319027),(98109,4,26483,3,1672319027),(98110,4,26484,3,1672319027),(98111,4,26485,3,1672319027),(98112,4,26486,3,1672319027),(98113,4,26487,3,1672319027),(98114,4,26488,3,1672319027),(98115,4,26489,3,1672319027),(98116,4,26490,3,1672319027),(98117,4,26491,3,1672319027),(98118,4,26492,3,1672319027),(98119,4,26493,3,1672319027),(98120,4,26494,3,1672319027),(98121,4,26495,3,1672319027),(98122,4,26496,3,1672319027),(98123,4,26497,3,1672319027),(98124,4,26498,3,1672319027),(98125,4,26499,3,1672319027),(98126,4,26500,3,1672319027),(98127,4,26501,3,1672319027),(98128,4,26502,3,1672319027),(98129,4,26503,3,1672319027),(98130,4,26504,3,1672319027),(98131,4,26505,3,1672319027),(98132,4,26506,3,1672319027),(98133,4,26507,3,1672319027),(98134,4,26508,3,1672319027),(98135,4,26509,3,1672319027),(98136,4,26510,3,1672319027),(98137,4,26511,3,1672319027),(98138,4,26512,3,1672319027),(98139,4,26513,3,1672319027),(98140,4,26514,3,1672319027),(98141,4,26515,3,1672319027),(98142,4,26516,3,1672319027),(98143,4,26517,3,1672319027),(98144,4,26518,3,1672319027),(98145,4,26519,3,1672319027),(98146,4,26520,3,1672319027),(98147,4,26521,3,1672319027),(98148,4,26522,3,1672319027),(98149,4,26523,3,1672319027),(98150,4,26524,3,1672319027),(98151,4,26525,3,1672319027),(98152,4,26526,3,1672319027),(98153,4,26527,3,1672319027),(98154,4,26528,3,1672319027),(98155,4,26529,3,1672319027),(98156,4,26530,3,1672319027),(98157,4,26531,3,1672319027),(98158,4,26532,3,1672319027),(98159,4,26533,3,1672319027),(98160,4,26534,3,1672319027),(98161,4,26535,3,1672319027),(98162,4,26536,3,1672319027),(98163,4,26537,3,1672319027),(98164,4,26538,3,1672319027),(98165,4,26539,3,1672319027),(98166,4,26540,3,1672319027),(98167,4,26541,3,1672319027),(98168,4,26542,3,1672319027),(98169,4,26543,3,1672319027),(98170,4,26544,3,1672319027),(98171,4,26545,3,1672319027),(98172,4,26546,3,1672319027),(98173,4,26547,3,1672319027),(98174,4,26548,3,1672319027),(98175,4,26549,3,1672319027),(98176,4,26550,3,1672319027),(98177,4,26551,3,1672319027),(98178,4,26552,3,1672319027),(98179,4,26553,3,1672319027),(98180,4,26554,3,1672319027),(98181,4,26555,3,1672319027),(98182,4,26556,3,1672319027),(98183,4,26557,3,1672319027),(98184,4,26558,3,1672319027),(98185,4,26559,3,1672319027),(98186,4,26560,3,1672319027),(98187,4,26561,3,1672319027),(98188,4,26562,3,1672319027),(98189,4,26563,3,1672319027),(98190,4,26564,3,1672319027),(98191,4,26565,3,1672319027),(98192,4,26566,3,1672319027),(98193,4,26567,3,1672319027),(98194,4,26568,3,1672319027),(98195,4,26569,3,1672319027),(98196,4,26570,3,1672319027),(98197,4,26571,3,1672319027),(98198,4,26572,3,1672319027),(98199,4,26573,3,1672319027),(98200,4,26574,3,1672319027),(98201,4,26575,3,1672319027),(98202,4,26576,3,1672319027),(98203,4,26577,3,1672319027),(98204,4,26578,3,1672319027),(98205,4,26579,3,1672319027),(98206,4,26580,3,1672319027),(98207,4,26581,3,1672319027),(98208,4,26582,3,1672319027),(98209,4,26583,3,1672319027),(98210,4,26584,3,1672319027),(98211,4,26585,3,1672319027),(98212,4,26586,3,1672319027),(98213,4,26587,3,1672319027),(98214,4,26588,3,1672319027),(98215,4,26589,3,1672319027),(98216,4,26590,3,1672319027),(98217,4,26591,3,1672319027),(98218,4,26592,3,1672319027),(98219,4,26593,3,1672319027),(98220,4,26594,3,1672319027),(98221,4,26595,3,1672319027),(98222,4,26596,3,1672319027),(98223,4,26597,3,1672319027),(98224,4,26598,3,1672319027),(98225,4,26599,3,1672319027),(98226,4,26600,3,1672319027),(98227,4,26601,3,1672319027),(98228,4,26602,3,1672319027),(98229,4,26603,3,1672319027),(98230,4,26604,3,1672319027),(98231,4,26605,3,1672319027),(98232,4,26606,3,1672319027),(98233,4,26607,3,1672319027),(98234,4,26608,3,1672319027),(98235,4,26609,3,1672319027),(98236,4,26610,3,1672319027),(98237,4,26611,3,1672319027),(98238,4,26612,3,1672319027),(98239,4,26613,3,1672319027),(98240,4,26614,3,1672319027),(98241,4,26615,3,1672319027),(98242,4,26616,3,1672319027),(98243,4,26617,3,1672319027),(98244,4,26618,3,1672319027),(98245,4,26619,3,1672319027),(98246,4,26620,3,1672319027),(98247,4,26621,3,1672319027),(98248,4,26622,3,1672319027),(98249,4,26623,3,1672319027),(98250,4,26624,3,1672319027),(98251,4,26625,3,1672319027),(98252,4,26626,3,1672319027),(98253,4,26627,3,1672319027),(98254,4,26628,3,1672319027),(98255,4,26629,3,1672319027),(98256,4,26630,3,1672319027),(98257,4,26631,3,1672319027),(98258,4,26632,3,1672319027),(98259,4,26633,3,1672319027),(98260,4,26634,3,1672319027),(98261,4,26635,3,1672319027),(98262,4,26636,3,1672319027),(98263,4,26637,3,1672319027),(98264,4,26638,3,1672319027),(98265,4,26639,3,1672319027),(98266,4,26640,3,1672319027),(98267,4,26641,3,1672319027),(98268,4,26642,3,1672319027),(98269,4,26643,3,1672319027),(98270,4,26644,3,1672319027),(98271,4,26645,3,1672319027),(98272,4,26646,3,1672319027),(98273,4,26647,3,1672319027),(98274,4,26648,3,1672319027),(98275,4,26649,3,1672319027),(98276,4,26650,3,1672319027),(98277,4,26651,3,1672319027),(98278,4,26652,3,1672319027),(98279,4,26653,3,1672319027),(98280,4,26654,3,1672319027),(98281,4,26655,3,1672319027),(98282,4,26656,3,1672319027),(98283,4,26657,3,1672319027),(98284,4,26658,3,1672319027),(98285,4,26659,3,1672319027),(98286,4,26660,3,1672319027),(98287,4,26661,3,1672319027),(98288,4,26662,3,1672319027),(98289,4,26663,3,1672319027),(98290,4,26664,3,1672319027),(98291,4,26665,3,1672319027),(98292,4,26666,3,1672319027),(98293,4,26667,3,1672319027),(98294,4,26668,3,1672319027),(98295,4,26669,3,1672319027),(98296,4,26670,3,1672319027),(98297,4,26671,3,1672319027),(98298,4,26672,3,1672319027),(98299,4,26673,3,1672319027),(98300,4,26674,3,1672319027),(98301,4,26675,3,1672319027),(98302,4,26676,3,1672319027),(98303,4,26677,3,1672319027),(98304,4,26678,3,1672319027),(98305,4,26679,3,1672319027),(98306,4,26680,3,1672319027),(98307,4,26681,3,1672319027),(98308,4,26682,3,1672319027),(98309,4,26683,3,1672319027),(98310,4,26684,3,1672319027),(98311,4,26685,3,1672319027),(98312,4,26686,3,1672319027),(98313,4,26687,3,1672319027),(98314,4,26688,3,1672319027),(98315,4,26689,3,1672319027),(98316,4,26690,3,1672319027),(98317,4,26691,3,1672319027),(98318,4,26692,3,1672319027),(98319,4,26693,3,1672319027),(98320,4,26694,3,1672319027),(98321,4,26695,3,1672319027),(98322,4,26696,3,1672319027),(98323,4,26697,3,1672319027),(98324,4,26698,3,1672319027),(98325,4,26699,3,1672319027),(98326,4,26700,3,1672319027),(98327,4,26701,3,1672319027),(98328,4,26702,3,1672319027),(98329,4,26703,3,1672319027),(98330,4,26704,3,1672319027),(98331,4,26705,3,1672319027),(98332,4,26706,3,1672319027),(98333,4,26707,3,1672319027),(98334,4,26708,3,1672319027),(98335,4,26709,3,1672319027),(98336,4,26710,3,1672319027),(98337,4,26711,3,1672319027),(98338,4,26712,3,1672319027),(98339,4,26713,3,1672319027),(98340,4,26714,3,1672319027),(98341,4,26715,3,1672319027),(98342,4,26716,3,1672319027),(98343,4,26717,3,1672319027),(98344,4,26718,3,1672319027),(98345,4,26719,3,1672319027),(98346,4,26720,3,1672319027),(98347,4,26721,3,1672319027),(98348,4,26722,3,1672319027),(98349,4,26723,3,1672319027),(98350,4,26724,3,1672319027),(98351,4,26725,3,1672319027),(98352,4,26726,3,1672319027),(98353,4,26727,3,1672319027),(98354,4,26728,3,1672319027),(98355,4,26729,3,1672319027),(98356,4,26730,3,1672319027),(98357,4,26731,3,1672319027),(98358,4,26732,3,1672319027),(98359,4,26733,3,1672319027),(98360,4,26734,3,1672319027),(98361,4,26735,3,1672319027),(98362,4,26736,3,1672319027),(98363,4,26737,3,1672319027),(98364,4,26738,3,1672319027),(98365,4,26739,3,1672319027),(98366,4,26740,3,1672319027),(98367,4,26741,3,1672319027),(98368,4,26742,3,1672319027),(98369,4,26743,3,1672319027),(98370,4,26744,3,1672319027),(98371,4,26745,3,1672319027),(98372,4,26746,3,1672319027),(98373,4,26747,3,1672319027),(98374,4,26748,3,1672319027),(98375,4,26749,3,1672319027),(98376,4,26750,3,1672319027),(98377,4,26751,3,1672319027),(98378,4,26752,3,1672319027),(98379,4,26753,3,1672319027),(98380,4,26754,3,1672319027),(98381,4,26755,3,1672319027),(98382,4,26756,3,1672319027),(98383,4,26757,3,1672319027),(98384,4,26758,3,1672319027),(98385,4,26759,3,1672319027),(98386,4,26760,3,1672319027),(98387,4,26761,3,1672319027),(98388,4,26762,3,1672319027),(98389,4,26763,3,1672319027),(98390,4,26764,3,1672319027),(98391,4,26765,3,1672319027),(98392,4,26766,3,1672319027),(98393,4,26767,3,1672319027),(98394,4,26768,3,1672319027),(98395,4,26769,3,1672319027),(98396,4,26770,3,1672319027),(98397,4,26771,3,1672319027),(98398,4,26772,3,1672319027),(98399,4,26773,3,1672319027),(98400,4,26774,3,1672319027),(98401,4,26775,3,1672319027),(98402,4,26776,3,1672319027),(98403,4,26777,3,1672319027),(98404,4,26778,3,1672319027),(98405,4,26779,3,1672319027),(98406,4,26780,3,1672319027),(98407,4,26781,3,1672319027),(98408,4,26782,3,1672319027),(98409,4,26783,3,1672319027),(98410,4,26784,3,1672319027),(98411,4,26785,3,1672319027),(98412,4,26786,3,1672319027),(98413,4,26787,3,1672319027),(98414,4,26788,3,1672319027),(98415,4,26789,3,1672319027),(98416,4,26790,3,1672319027),(98417,4,26791,3,1672319027),(98418,4,26792,3,1672319027),(98419,4,26793,3,1672319027),(98420,4,26794,3,1672319027),(98421,4,26795,3,1672319027),(98422,4,26796,3,1672319027),(98423,4,26797,3,1672319027),(98424,4,26798,3,1672319027),(98425,4,26799,3,1672319027),(98426,4,26800,3,1672319027),(98427,4,26801,3,1672319027),(98428,4,26802,3,1672319027),(98429,4,26803,3,1672319027),(98430,4,26804,3,1672319027),(98431,4,26805,3,1672319027),(98432,4,26806,3,1672319027),(98433,4,26807,3,1672319027),(98434,4,26808,3,1672319027),(98435,4,26809,3,1672319027),(98436,4,26810,3,1672319027),(98437,4,26811,3,1672319027),(98438,4,26812,3,1672319027),(98439,4,26813,3,1672319027),(98440,4,26814,3,1672319027),(98441,4,26815,3,1672319027),(98442,4,26816,3,1672319027),(98443,4,26817,3,1672319027),(98444,4,26818,3,1672319027),(98445,4,26819,3,1672319027),(98446,4,26820,3,1672319027),(98447,4,26821,3,1672319027),(98448,4,26822,3,1672319027),(98449,4,26823,3,1672319027),(98450,4,26824,3,1672319027),(98451,4,26825,3,1672319027),(98452,4,26826,3,1672319027),(98453,4,26827,3,1672319027),(98454,4,26828,3,1672319027),(98455,4,26829,3,1672319027),(98456,4,26830,3,1672319027),(98457,4,26831,3,1672319027),(98458,4,26832,3,1672319027),(98459,4,26833,3,1672319027),(98460,4,26834,3,1672319027),(98461,4,26835,3,1672319027),(98462,4,26836,3,1672319027),(98463,4,26837,3,1672319027),(98464,4,26838,3,1672319027),(98465,4,26839,3,1672319027),(98466,4,26840,3,1672319027),(98467,4,26841,3,1672319027),(98468,4,26842,3,1672319027),(98469,4,26843,3,1672319027),(98470,4,26844,3,1672319027),(98471,4,26845,3,1672319027),(98472,4,26846,3,1672319027),(98473,4,26847,3,1672319027),(98474,4,26848,3,1672319027),(98475,4,26849,3,1672319027),(98476,4,26850,3,1672319027),(98477,4,26851,3,1672319027),(98478,4,26852,3,1672319027),(98479,4,26853,3,1672319027),(98480,4,26854,3,1672319027),(98481,4,26855,3,1672319027),(98482,4,26856,3,1672319027),(98483,4,26857,3,1672319027),(98484,4,26858,3,1672319027),(98485,4,26859,3,1672319027),(98486,4,26860,3,1672319027),(98487,4,26861,3,1672319027),(98488,4,26862,3,1672319027),(98489,4,26863,3,1672319027),(98490,4,26864,3,1672319027),(98491,4,26865,3,1672319027),(98492,4,26866,3,1672319027),(98493,4,26867,3,1672319027),(98494,4,26868,3,1672319027),(98495,4,26869,3,1672319027),(98496,4,26870,3,1672319027),(98497,4,26871,3,1672319027),(98498,4,26872,3,1672319027),(98499,4,26873,3,1672319027),(98500,4,26874,3,1672319027),(98501,4,26875,3,1672319027),(98502,4,26876,3,1672319027),(98503,4,26877,3,1672319027),(98504,4,26878,3,1672319027),(98505,4,26879,3,1672319027),(98506,4,26880,3,1672319027),(98507,4,26881,3,1672319027),(98508,4,26882,3,1672319027),(98509,4,26883,3,1672319027),(98510,4,26884,3,1672319027),(98511,4,26885,3,1672319027),(98512,4,26886,3,1672319027),(98513,4,26887,3,1672319027),(98514,4,26888,3,1672319027),(98515,4,26889,3,1672319027),(98516,4,26890,3,1672319027),(98517,4,26891,3,1672319027),(98518,4,26892,3,1672319027),(98519,4,26893,3,1672319027),(98520,4,26894,3,1672319027),(98521,4,26895,3,1672319027),(98522,4,26896,3,1672319027),(98523,4,26897,3,1672319027),(98524,4,26898,3,1672319027),(98525,4,26899,3,1672319027),(98526,4,26900,3,1672319027),(98527,4,26901,3,1672319027),(98528,4,26902,3,1672319027),(98529,4,26903,3,1672319027),(98530,4,26904,3,1672319027),(98531,4,26905,3,1672319027),(98532,4,26906,3,1672319027),(98533,4,26907,3,1672319027),(98534,4,26908,3,1672319027),(98535,4,26909,3,1672319027),(98536,4,26910,3,1672319027),(98537,4,26911,3,1672319027),(98538,4,26912,3,1672319027),(98539,4,26913,3,1672319027),(98540,4,26914,3,1672319027),(98541,4,26915,3,1672319027),(98542,4,26916,3,1672319027),(98543,4,26917,3,1672319027),(98544,4,26918,3,1672319027),(98545,4,26919,3,1672319027),(98546,4,26920,3,1672319027),(98547,4,26921,3,1672319027),(98548,4,26922,3,1672319027),(98549,4,26923,3,1672319027),(98550,4,26924,3,1672319027),(98551,4,26925,3,1672319027),(98552,4,26926,3,1672319027),(98553,4,26927,3,1672319027),(98554,4,26928,3,1672319027),(98555,4,26929,3,1672319027),(98556,4,26930,3,1672319027),(98557,4,26931,3,1672319027),(98558,4,26932,3,1672319027),(98559,4,26933,3,1672319027),(98560,4,26934,3,1672319027),(98561,4,26935,3,1672319027),(98562,4,26936,3,1672319027),(98563,4,26937,3,1672319027),(98564,4,26938,3,1672319027),(98565,4,26939,3,1672319027),(98566,4,26940,3,1672319027),(98567,4,26941,3,1672319027),(98568,4,26942,3,1672319027),(98569,4,26943,3,1672319027),(98570,4,26944,3,1672319027),(98571,4,26945,3,1672319027),(98572,4,26946,3,1672319027),(98573,4,26947,3,1672319027),(98574,4,26948,3,1672319027),(98575,4,26949,3,1672319027),(98576,4,26950,3,1672319027),(98577,4,26951,3,1672319027),(98578,4,26952,3,1672319027),(98579,4,26953,3,1672319027),(98580,4,26954,3,1672319027),(98581,4,26955,3,1672319027),(98582,4,26956,3,1672319027),(98583,4,26957,3,1672319027),(98584,4,26958,3,1672319027),(98585,4,26959,3,1672319027),(98586,4,26960,3,1672319027),(98587,4,26961,3,1672319027),(98588,4,26962,3,1672319027),(98589,4,26963,3,1672319027),(98590,4,26964,3,1672319027),(98591,4,26965,3,1672319027),(98592,4,26966,3,1672319027),(98593,4,26967,3,1672319027),(98594,4,26968,3,1672319027),(98595,4,26969,3,1672319027),(98596,4,26970,3,1672319027),(98597,4,26971,3,1672319027),(98598,4,26972,3,1672319027),(98599,4,26973,3,1672319027),(98600,4,26974,3,1672319027),(98601,4,26975,3,1672319027),(98602,4,26976,3,1672319027),(98603,4,26977,3,1672319027),(98604,4,26978,3,1672319027),(98605,4,26979,3,1672319027),(98606,4,26980,3,1672319027),(98607,4,26981,3,1672319027),(98608,4,26982,3,1672319027),(98609,4,26983,3,1672319027),(98610,4,26984,3,1672319027),(98611,4,26985,3,1672319027),(98612,4,26986,3,1672319027),(98613,4,26987,3,1672319027),(98614,4,26988,3,1672319027),(98615,4,26989,3,1672319027),(98616,4,26990,3,1672319027),(98617,4,26991,3,1672319027),(98618,4,26992,3,1672319027),(98619,4,26993,3,1672319027),(98620,4,26994,3,1672319027),(98621,4,26995,3,1672319027),(98622,4,26996,3,1672319027),(98623,4,26997,3,1672319027),(98624,4,26998,3,1672319027),(98625,4,26999,3,1672319027),(98626,4,27000,3,1672319027),(98627,4,27001,3,1672319027),(98628,4,27002,3,1672319027),(98629,4,27003,3,1672319027),(98630,4,27004,3,1672319027),(98631,4,27005,3,1672319027),(98632,4,27006,3,1672319027),(98633,4,27007,3,1672319027),(98634,4,27008,3,1672319027),(98635,4,27009,3,1672319027),(98636,4,27010,3,1672319027),(98637,4,27011,3,1672319027),(98638,4,27012,3,1672319027),(98639,4,27013,3,1672319027),(98640,4,27014,3,1672319027),(98641,4,27015,3,1672319027),(98642,4,27016,3,1672319027),(98643,4,27017,3,1672319027),(98644,4,27018,3,1672319027),(98645,4,27019,3,1672319027),(98646,4,27020,3,1672319027),(98647,4,27021,3,1672319027),(98648,4,27022,3,1672319027),(98649,4,27023,3,1672319027),(98650,4,27024,3,1672319027),(98651,4,27025,3,1672319027),(98652,4,27026,3,1672319027),(98653,4,27027,3,1672319027),(98654,4,27028,3,1672319027),(98655,4,27029,3,1672319027),(98656,4,27030,3,1672319027),(98657,4,27031,3,1672319027),(98658,4,27032,3,1672319027),(98659,4,27033,3,1672319027),(98660,4,27034,3,1672319027),(98661,4,27035,3,1672319027),(98662,4,27036,3,1672319027),(98663,4,27037,3,1672319027),(98664,4,27038,3,1672319027),(98665,4,27039,3,1672319027),(98666,4,27040,3,1672319027),(98667,4,27041,3,1672319027),(98668,4,27042,3,1672319027),(98669,4,27043,3,1672319027),(98670,4,27044,3,1672319027),(98671,4,27045,3,1672319027),(98672,4,27046,3,1672319027),(98673,4,27047,3,1672319027),(98674,4,27048,3,1672319027),(98675,4,27049,3,1672319027),(98676,4,27050,3,1672319027),(98677,4,27051,3,1672319027),(98678,4,27052,3,1672319027),(98679,4,27053,3,1672319027),(98680,4,27054,3,1672319027),(98681,4,27055,3,1672319027),(98682,4,27056,3,1672319027),(98683,4,27057,3,1672319027),(98684,4,27058,3,1672319027),(98685,4,27059,3,1672319027),(98686,4,27060,3,1672319027),(98687,4,27061,3,1672319027),(98688,4,27062,3,1672319027),(98689,4,27063,3,1672319027),(98690,4,27064,3,1672319027),(98691,4,27065,3,1672319027),(98692,4,27066,3,1672319027),(98693,4,27067,3,1672319027),(98694,4,27068,3,1672319027),(98695,4,27069,3,1672319027),(98696,4,27070,3,1672319027),(98697,4,27071,3,1672319027),(98698,4,27072,3,1672319027),(98699,4,27073,3,1672319027),(98700,4,27074,3,1672319027),(98701,4,27075,3,1672319027),(98702,4,27076,3,1672319027),(98703,4,27077,3,1672319027),(98704,4,27078,3,1672319027),(98705,4,27079,3,1672319027),(98706,4,27080,3,1672319027),(98707,4,27081,3,1672319027),(98708,4,27082,3,1672319027),(98709,4,27083,3,1672319027),(98710,4,27084,3,1672319027),(98711,4,27085,3,1672319027),(98712,4,27086,3,1672319027),(98713,4,27087,3,1672319027),(98714,4,27088,3,1672319027),(98715,4,27089,3,1672319027),(98716,4,27090,3,1672319027),(98717,4,27091,3,1672319027),(98718,4,27092,3,1672319027),(98719,4,27093,3,1672319027),(98720,4,27094,3,1672319027),(98721,4,27095,3,1672319027),(98722,4,27096,3,1672319027),(98723,4,27097,3,1672319027),(98724,4,27098,3,1672319027),(98725,4,27099,3,1672319027),(98726,4,27100,3,1672319027),(98727,4,27101,3,1672319027),(98728,4,27102,3,1672319027),(98729,4,27103,3,1672319027),(98730,4,27104,3,1672319027),(98731,4,27105,3,1672319027),(98732,4,27106,3,1672319027),(98733,4,27107,3,1672319027),(98734,4,27108,3,1672319027),(98735,4,27109,3,1672319027),(98736,4,27110,3,1672319027),(98737,4,27111,3,1672319027),(98738,4,27112,3,1672319027),(98739,4,27113,3,1672319027),(98740,4,27114,3,1672319027),(98741,4,27115,3,1672319027),(98742,4,27116,3,1672319027),(98743,4,27117,3,1672319027),(98744,4,27118,3,1672319027),(98745,4,27119,3,1672319027),(98746,4,27120,3,1672319027),(98747,4,27121,3,1672319027),(98748,4,27122,3,1672319027),(98749,4,27123,3,1672319027),(98750,4,27124,3,1672319027),(98751,4,27125,3,1672319027),(98752,4,27126,3,1672319027),(98753,4,27127,3,1672319027),(98754,4,27128,3,1672319027),(98755,4,27129,3,1672319027),(98756,4,27130,3,1672319027),(98757,4,27131,3,1672319027),(98758,4,27132,3,1672319027),(98759,4,27133,3,1672319027),(98760,4,27134,3,1672319027),(98761,4,27135,3,1672319027),(98762,4,27136,3,1672319027),(98763,4,27137,3,1672319027),(98764,4,27138,3,1672319027),(98765,4,27139,3,1672319027),(98766,4,27140,3,1672319027),(98767,4,27141,3,1672319027),(98768,4,27142,3,1672319027),(98769,4,27143,3,1672319027),(98770,4,27144,3,1672319027),(98771,4,27145,3,1672319027),(98772,4,27146,3,1672319027),(98773,4,27147,3,1672319027),(98774,4,27148,3,1672319027),(98775,4,27149,3,1672319027),(98776,4,27150,3,1672319027),(98777,4,27151,3,1672319027),(98778,4,27152,3,1672319027),(98779,4,27153,3,1672319027),(98780,4,27154,3,1672319027),(98781,4,27155,3,1672319027),(98782,4,27156,3,1672319027),(98783,4,27157,3,1672319027),(98784,4,27158,3,1672319027),(98785,4,27159,3,1672319027),(98786,4,27160,3,1672319027),(98787,4,27161,3,1672319027),(98788,4,27162,3,1672319027),(98789,4,27163,3,1672319027),(98790,4,27164,3,1672319027),(98791,4,27165,3,1672319027),(98792,4,27166,3,1672319027),(98793,4,27167,3,1672319027),(98794,4,27168,3,1672319027),(98795,4,27169,3,1672319027),(98796,4,27170,3,1672319027),(98797,4,27171,3,1672319027),(98798,4,27172,3,1672319027),(98799,4,27173,3,1672319027),(98800,4,27174,3,1672319027),(98801,4,27175,3,1672319027),(98802,4,27176,3,1672319027),(98803,4,27177,3,1672319027),(98804,4,27178,3,1672319027),(98805,4,27179,3,1672319027),(98806,4,27180,3,1672319027),(98807,4,27181,3,1672319027),(98808,4,27182,3,1672319027),(98809,4,27183,3,1672319027),(98810,4,27184,3,1672319027),(98811,4,27185,3,1672319027),(98812,4,27186,3,1672319027),(98813,4,27187,3,1672319027),(98814,4,27188,3,1672319027),(98815,4,27189,3,1672319027),(98816,4,27190,3,1672319027),(98817,4,27191,3,1672319027),(98818,4,27192,3,1672319027),(98819,4,27193,3,1672319027),(98820,4,27194,3,1672319027),(98821,4,27195,3,1672319027),(98822,4,27196,3,1672319027),(98823,4,27197,3,1672319027),(98824,4,27198,3,1672319027),(98825,4,27199,3,1672319027),(98826,4,27200,3,1672319027),(98827,4,27201,3,1672319027),(98828,4,27202,3,1672319027),(98829,4,27203,3,1672319027),(98830,4,27204,3,1672319027),(98831,4,27205,3,1672319027),(98832,4,27206,3,1672319027),(98833,4,27207,3,1672319027),(98834,4,27208,3,1672319027),(98835,4,27209,3,1672319027),(98836,4,27210,3,1672319027),(98837,4,27211,3,1672319027),(98838,4,27212,3,1672319027),(98839,4,27213,3,1672319027),(98840,4,27214,3,1672319027),(98841,4,27215,3,1672319027),(98842,4,27216,3,1672319027),(98843,4,27217,3,1672319027),(98844,4,27218,3,1672319027),(98845,4,27219,3,1672319027),(98846,4,27220,3,1672319027),(98847,4,27221,3,1672319027),(98848,4,27222,3,1672319027),(98849,4,27223,3,1672319027),(98850,4,27224,3,1672319027),(98851,4,27225,3,1672319027),(98852,4,27226,3,1672319027),(98853,4,27227,3,1672319027),(98854,4,27228,3,1672319027),(98855,4,27229,3,1672319027),(98856,4,27230,3,1672319027),(98857,4,27231,3,1672319027),(98858,4,27232,3,1672319027),(98859,4,27233,3,1672319027),(98860,4,27234,3,1672319027),(98861,4,27235,3,1672319027),(98862,4,27236,3,1672319027),(98863,4,27237,3,1672319027),(98864,4,27238,3,1672319027),(98865,4,27239,3,1672319027),(98866,4,27240,3,1672319027),(98867,4,27241,3,1672319027),(98868,4,27242,3,1672319027),(98869,4,27243,3,1672319027),(98870,4,27244,3,1672319027),(98871,4,27245,3,1672319027),(98872,4,27246,3,1672319027),(98873,4,27247,3,1672319027),(98874,4,27248,3,1672319027),(98875,4,27249,3,1672319027),(98876,4,27250,3,1672319027),(98877,4,27251,3,1672319027),(98878,4,27252,3,1672319027),(98879,4,27253,3,1672319027),(98880,4,27254,3,1672319027),(98881,4,27255,3,1672319027),(98882,4,27256,3,1672319027),(98883,4,27257,3,1672319027),(98884,4,27258,3,1672319027),(98885,4,27259,3,1672319027),(98886,4,27260,3,1672319027),(98887,4,27261,3,1672319027),(98888,4,27262,3,1672319027),(98889,4,27263,3,1672319027),(98890,4,27264,3,1672319027),(98891,4,27265,3,1672319027),(98892,4,27266,3,1672319027),(98893,4,27267,3,1672319027),(98894,4,27268,3,1672319027),(98895,4,27269,3,1672319027),(98896,4,27270,3,1672319027),(98897,4,27271,3,1672319027),(98898,4,27272,3,1672319027),(98899,4,27273,3,1672319027),(98900,4,27274,3,1672319027),(98901,4,27275,3,1672319027),(98902,4,27276,3,1672319027),(98903,4,27277,3,1672319027),(98904,4,27278,3,1672319027),(98905,4,27279,3,1672319027),(98906,4,27280,3,1672319027),(98907,4,27281,3,1672319027),(98908,4,27282,3,1672319027),(98909,4,27283,3,1672319027),(98910,4,27284,3,1672319027),(98911,4,27285,3,1672319027),(98912,4,27286,3,1672319027),(98913,4,27287,3,1672319027),(98914,4,27288,3,1672319027),(98915,4,27289,3,1672319027),(98916,4,27290,3,1672319027),(98917,4,27291,3,1672319027),(98918,4,27292,3,1672319027),(98919,4,27293,3,1672319027),(98920,4,27294,3,1672319027),(98921,4,27295,3,1672319027),(98922,4,27296,3,1672319027),(98923,4,27297,3,1672319027),(98924,4,27298,3,1672319027),(98925,4,27299,3,1672319027),(98926,4,27300,3,1672319027),(98927,4,27301,3,1672319027),(98928,4,27302,3,1672319027),(98929,4,27303,3,1672319027),(98930,4,27304,3,1672319027),(98931,4,27305,3,1672319027),(98932,4,27306,3,1672319027),(98933,4,27307,3,1672319027),(98934,4,27308,3,1672319027),(98935,4,27309,3,1672319027),(98936,4,27310,3,1672319027),(98937,4,27311,3,1672319027),(98938,4,27312,3,1672319027),(98939,4,27313,3,1672319027),(98940,4,27314,3,1672319027),(98941,4,27315,3,1672319027),(98942,4,27316,3,1672319027),(98943,4,27317,3,1672319027),(98944,4,27318,3,1672319027),(98945,4,27319,3,1672319027),(98946,4,27320,3,1672319027),(98947,4,27321,3,1672319027),(98948,4,27322,3,1672319027),(98949,4,27323,3,1672319027),(98950,4,27324,3,1672319027),(98951,4,27325,3,1672319027),(98952,4,27326,3,1672319027),(98953,4,27327,3,1672319027),(98954,4,27328,3,1672319027),(98955,4,27329,3,1672319027),(98956,4,27330,3,1672319027),(98957,4,27331,3,1672319027),(98958,4,27332,3,1672319027),(98959,4,27333,3,1672319027),(98960,4,27334,3,1672319027),(98961,4,27335,3,1672319027),(98962,4,27336,3,1672319027),(98963,4,27337,3,1672319027),(98964,4,27338,3,1672319027),(98965,4,27339,3,1672319027),(98966,4,27340,3,1672319027),(98967,4,27341,3,1672319027),(98968,4,27342,3,1672319027),(98969,4,27343,3,1672319027),(98970,4,27344,3,1672319027),(98971,4,27345,3,1672319027),(98972,4,27346,3,1672319027),(98973,4,27347,3,1672319027),(98974,4,27348,3,1672319027),(98975,4,27349,3,1672319027),(98976,4,27350,3,1672319027),(98977,4,27351,3,1672319027),(98978,4,27352,3,1672319027),(98979,4,27353,3,1672319027),(98980,4,27354,3,1672319027),(98981,4,27355,3,1672319027),(98982,4,27356,3,1672319027),(98983,4,27357,3,1672319027),(98984,4,27358,3,1672319027),(98985,4,27359,3,1672319027),(98986,4,27360,3,1672319027),(98987,4,27361,3,1672319027),(98988,4,27362,3,1672319027),(98989,4,27363,3,1672319027),(98990,4,27364,3,1672319027),(98991,4,27365,3,1672319027),(98992,4,27366,3,1672319027),(98993,4,27367,3,1672319027),(98994,4,27368,3,1672319027),(98995,4,27369,3,1672319027),(98996,4,27370,3,1672319027),(98997,4,27371,3,1672319027),(98998,4,27372,3,1672319027),(98999,4,27373,3,1672319027),(99000,4,27374,3,1672319027),(99001,4,27375,3,1672319027),(99002,4,27376,3,1672319027),(99003,4,27377,3,1672319027),(99004,4,27378,3,1672319027),(99005,4,27379,3,1672319027),(99006,4,27380,3,1672319027),(99007,4,27381,3,1672319027),(99008,4,27382,3,1672319027),(99009,4,27383,3,1672319027),(99010,4,27384,3,1672319027),(99011,4,27385,3,1672319027),(99012,4,27386,3,1672319027),(99013,4,27387,3,1672319027),(99014,4,27388,3,1672319027),(99015,4,27389,3,1672319027),(99016,4,27390,3,1672319027),(99017,4,27391,3,1672319027),(99018,4,27392,3,1672319027),(99019,4,27393,3,1672319027),(99020,4,27394,3,1672319027),(99021,4,27395,3,1672319027),(99022,4,27396,3,1672319027),(99023,4,27397,3,1672319027),(99024,4,27398,3,1672319027),(99025,4,27399,3,1672319027),(99026,4,27400,3,1672319027),(99027,4,27401,3,1672319027),(99028,4,27402,3,1672319027),(99029,4,27403,3,1672319027),(99030,4,27404,3,1672319027),(99031,4,27405,3,1672319027),(99032,4,27406,3,1672319027),(99033,4,27407,3,1672319027),(99034,4,27408,3,1672319027),(99035,4,27409,3,1672319027),(99036,4,27410,3,1672319027),(99037,4,27411,3,1672319027),(99038,4,27412,3,1672319027),(99039,4,27413,3,1672319027),(99040,4,27414,3,1672319027),(99041,4,27415,3,1672319027),(99042,4,27416,3,1672319027),(99043,4,27417,3,1672319027),(99044,4,27418,3,1672319027),(99045,4,27419,3,1672319027),(99046,4,27420,3,1672319027),(99047,4,27421,3,1672319027),(99048,4,27422,3,1672319027),(99049,4,27423,3,1672319027),(99050,4,27424,3,1672319027),(99051,4,27425,3,1672319027),(99052,4,27426,3,1672319027),(99053,4,27427,3,1672319027),(99054,4,27428,3,1672319027),(99055,4,27429,3,1672319027),(99056,4,27430,3,1672319027),(99057,4,27431,3,1672319027),(99058,4,27432,3,1672319027),(99059,4,27433,3,1672319027),(99060,4,27434,3,1672319027),(99061,4,27435,3,1672319027),(99062,4,27436,3,1672319027),(99063,4,27437,3,1672319027),(99064,4,27438,3,1672319027),(99065,4,27439,3,1672319027),(99066,4,27440,3,1672319027),(99067,4,27441,3,1672319027),(99068,4,27442,3,1672319027),(99069,4,27443,3,1672319027),(99070,4,27444,3,1672319027),(99071,4,27445,3,1672319027),(99072,4,27446,3,1672319027),(99073,4,27447,3,1672319027),(99074,4,27448,3,1672319027),(99075,4,27449,3,1672319027),(99076,4,27450,3,1672319027),(99077,4,27451,3,1672319027),(99078,4,27452,3,1672319027),(99079,4,27453,3,1672319027),(99080,4,27454,3,1672319027),(99081,4,27455,3,1672319027),(99082,4,27456,3,1672319027),(99083,4,27457,3,1672319027),(99084,4,27458,3,1672319027),(99085,4,27459,3,1672319027),(99086,4,27460,3,1672319027),(99087,4,27461,3,1672319027),(99088,4,27462,3,1672319027),(99089,4,27463,3,1672319027),(99090,4,27464,3,1672319027),(99091,4,27465,3,1672319027),(99092,4,27466,3,1672319027),(99093,4,27467,3,1672319027),(99094,4,27468,3,1672319027),(99095,4,27469,3,1672319027),(99096,4,27470,3,1672319027),(99097,4,27471,3,1672319027),(99098,4,27472,3,1672319027),(99099,4,27473,3,1672319027),(99100,4,27474,3,1672319027),(99101,4,27475,3,1672319027),(99102,4,27476,3,1672319027),(99103,4,27477,3,1672319027),(99104,4,27478,3,1672319027),(99105,4,27479,3,1672319027),(99106,4,27480,3,1672319027),(99107,4,27481,3,1672319027),(99108,4,27482,3,1672319027),(99109,4,27483,3,1672319027),(99110,4,27484,3,1672319027),(99111,4,27485,3,1672319027),(99112,4,27486,3,1672319027),(99113,4,27487,3,1672319027),(99114,4,27488,3,1672319027),(99115,4,27489,3,1672319027),(99116,4,27490,3,1672319027),(99117,4,27491,3,1672319027),(99118,4,27492,3,1672319027),(99119,4,27493,3,1672319027),(99120,4,27494,3,1672319027),(99121,4,27495,3,1672319027),(99122,4,27496,3,1672319027),(99123,4,27497,3,1672319027),(99124,4,27498,3,1672319027),(99125,4,27499,3,1672319027),(99126,4,27500,3,1672319027),(99127,4,27501,3,1672319027),(99128,4,27502,3,1672319027),(99129,4,27503,3,1672319027),(99130,4,27504,3,1672319027),(99131,4,27505,3,1672319027),(99132,4,27506,3,1672319027),(99133,4,27507,3,1672319027),(99134,4,27508,3,1672319027),(99135,4,27509,3,1672319027),(99136,4,27510,3,1672319027),(99137,4,27511,3,1672319027),(99138,4,27512,3,1672319027),(99139,4,27513,3,1672319027),(99140,4,27514,3,1672319027),(99141,4,27515,3,1672319027),(99142,4,27516,3,1672319027),(99143,4,27517,3,1672319027),(99144,4,27518,3,1672319027),(99145,4,27519,3,1672319027),(99146,4,27520,3,1672319027),(99147,4,27521,3,1672319027),(99148,4,27522,3,1672319027),(99149,4,27523,3,1672319027),(99150,4,27524,3,1672319027),(99151,4,27525,3,1672319027),(99152,4,27526,3,1672319027),(99153,4,27527,3,1672319027),(99154,4,27528,3,1672319027),(99155,4,27529,3,1672319027),(99156,4,27530,3,1672319027),(99157,4,27531,3,1672319027),(99158,4,27532,3,1672319027),(99159,4,27533,3,1672319027),(99160,4,27534,3,1672319027),(99161,4,27535,3,1672319027),(99162,4,27536,3,1672319027),(99163,4,27537,3,1672319027),(99164,4,27538,3,1672319027),(99165,4,27539,3,1672319027),(99166,4,27540,3,1672319027),(99167,4,27541,3,1672319027),(99168,4,27542,3,1672319027),(99169,4,27543,3,1672319027),(99170,4,27544,3,1672319027),(99171,4,27545,3,1672319027),(99172,4,27546,3,1672319027),(99173,4,27547,3,1672319027),(99174,4,27548,3,1672319027),(99175,4,27549,3,1672319027),(99176,4,27550,3,1672319027),(99177,4,27551,3,1672319027),(99178,4,27552,3,1672319027),(99179,4,27553,3,1672319027),(99180,4,27554,3,1672319027),(99181,4,27555,3,1672319027),(99182,4,27556,3,1672319027),(99183,4,27557,3,1672319027),(99184,4,27558,3,1672319027),(99185,4,27559,3,1672319027),(99186,4,27560,3,1672319027),(99187,4,27561,3,1672319027),(99188,4,27562,3,1672319027),(99189,4,27563,3,1672319027),(99190,4,27564,3,1672319027),(99191,4,27565,3,1672319027),(99192,4,27566,3,1672319027),(99193,4,27567,3,1672319027),(99194,4,27568,3,1672319027),(99195,4,27569,3,1672319027),(99196,4,27570,3,1672319027),(99197,4,27571,3,1672319027),(99198,4,27572,3,1672319027),(99199,4,27573,3,1672319027),(99200,4,27574,3,1672319027),(99201,4,27575,3,1672319027),(99202,4,27576,3,1672319027),(99203,4,27577,3,1672319027),(99204,4,27578,3,1672319027),(99205,4,27579,3,1672319027),(99206,4,27580,3,1672319027),(99207,4,27581,3,1672319027),(99208,4,27582,3,1672319027),(99209,4,27583,3,1672319027),(99210,4,27584,3,1672319027),(99211,4,27585,3,1672319027),(99212,4,27586,3,1672319027),(99213,4,27587,3,1672319027),(99214,4,27588,3,1672319027),(99215,4,27589,3,1672319027),(99216,4,27590,3,1672319027),(99217,4,27591,3,1672319027),(99218,4,27592,3,1672319027),(99219,4,27593,3,1672319027),(99220,4,27594,3,1672319027),(99221,4,27595,3,1672319027),(99222,4,27596,3,1672319027),(99223,4,27597,3,1672319027),(99224,4,27598,3,1672319027),(99225,4,27599,3,1672319027),(99226,4,27600,3,1672319027),(99227,4,27601,3,1672319027),(99228,4,27602,3,1672319027),(99229,4,27603,3,1672319027),(99230,4,27604,3,1672319027),(99231,4,27605,3,1672319027),(99232,4,27606,3,1672319027),(99233,4,27607,3,1672319027),(99234,4,27608,3,1672319027),(99235,4,27609,3,1672319027),(99236,4,27610,3,1672319027),(99237,4,27611,3,1672319027),(99238,4,27612,3,1672319027),(99239,4,27613,3,1672319027),(99240,4,27614,3,1672319027),(99241,4,27615,3,1672319027),(99242,4,27616,3,1672319027),(99243,4,27617,3,1672319027),(99244,4,27618,3,1672319027),(99245,4,27619,3,1672319027),(99246,4,27620,3,1672319027),(99247,4,27621,3,1672319027),(99248,4,27622,3,1672319027),(99249,4,27623,3,1672319027),(99250,4,27624,3,1672319027),(99251,4,27625,3,1672319027),(99252,4,27626,3,1672319027),(99253,4,27627,3,1672319027),(99254,4,27628,3,1672319027),(99255,4,27629,3,1672319027),(99256,4,27630,3,1672319027),(99257,4,27631,3,1672319027),(99258,4,27632,3,1672319027),(99259,4,27633,3,1672319027),(99260,4,27634,3,1672319027),(99261,4,27635,3,1672319027),(99262,4,27636,3,1672319027),(99263,4,27637,3,1672319027),(99264,4,27638,3,1672319027),(99265,4,27639,3,1672319027),(99266,4,27640,3,1672319027),(99267,4,27641,3,1672319027),(99268,4,27642,3,1672319027),(99269,4,27643,3,1672319027),(99270,4,27644,3,1672319027),(99271,4,27645,3,1672319027),(99272,4,27646,3,1672319027),(99273,4,27647,3,1672319027),(99274,4,27648,3,1672319027),(99275,4,27649,3,1672319027),(99276,4,27650,3,1672319027),(99277,4,27651,3,1672319027),(99278,4,27652,3,1672319027),(99279,4,27653,3,1672319027),(99280,4,27654,3,1672319027),(99281,4,27655,3,1672319027),(99282,4,27656,3,1672319027),(99283,4,27657,3,1672319027),(99284,4,27658,3,1672319027),(99285,4,27659,3,1672319027),(99286,4,27660,3,1672319027),(99287,4,27661,3,1672319027),(99288,4,27662,3,1672319027),(99289,4,27663,3,1672319027),(99290,4,27664,3,1672319027),(99291,4,27665,3,1672319027),(99292,4,27666,3,1672319027),(99293,4,27667,3,1672319027),(99294,4,27668,3,1672319027),(99295,4,27669,3,1672319027),(99296,4,27670,3,1672319027),(99297,4,27671,3,1672319027),(99298,4,27672,3,1672319027),(99299,4,27673,3,1672319027),(99300,4,27674,3,1672319027),(99301,4,27675,3,1672319027),(99302,4,27676,3,1672319027),(99303,4,27677,3,1672319027),(99304,4,27678,3,1672319027),(99305,4,27679,3,1672319027),(99306,4,27680,3,1672319027),(99307,4,27681,3,1672319027),(99308,4,27682,3,1672319027),(99309,4,27683,3,1672319027),(99310,4,27684,3,1672319027),(99311,4,27685,3,1672319027),(99312,4,27686,3,1672319027),(99313,4,27687,3,1672319027),(99314,4,27688,3,1672319027),(99315,4,27689,3,1672319027),(99316,4,27690,3,1672319027),(99317,4,27691,3,1672319027),(99318,4,27692,3,1672319027),(99319,4,27693,3,1672319027),(99320,4,27694,3,1672319027),(99321,4,27695,3,1672319027),(99322,4,27696,3,1672319027),(99323,4,27697,3,1672319027),(99324,4,27698,3,1672319027),(99325,4,27699,3,1672319027),(99326,4,27700,3,1672319027),(99327,4,27701,3,1672319027),(99328,4,27702,3,1672319027),(99329,4,27703,3,1672319027),(99330,4,27704,3,1672319027),(99331,4,27705,3,1672319027),(99332,4,27706,3,1672319027),(99333,4,27707,3,1672319027),(99334,4,27708,3,1672319027),(99335,4,27709,3,1672319027),(99336,4,27710,3,1672319027),(99337,4,27711,3,1672319027),(99338,4,27712,3,1672319027),(99339,4,27713,3,1672319027),(99340,4,27714,3,1672319027),(99341,4,27715,3,1672319027),(99342,4,27716,3,1672319027),(99343,4,27717,3,1672319027),(99344,4,27718,3,1672319027),(99345,4,27719,3,1672319027),(99346,4,27720,3,1672319027),(99347,4,27721,3,1672319027),(99348,4,27722,3,1672319027),(99349,4,27723,3,1672319027),(99350,4,27724,3,1672319027),(99351,4,27725,3,1672319027),(99352,4,27726,3,1672319027),(99353,4,27727,3,1672319027),(99354,4,27728,3,1672319027),(99355,4,27729,3,1672319027),(99356,4,27730,3,1672319027),(99357,4,27731,3,1672319027),(99358,4,27732,3,1672319027),(99359,4,27733,3,1672319027),(99360,4,27734,3,1672319027),(99361,4,27735,3,1672319027),(99362,4,27736,3,1672319027),(99363,4,27737,3,1672319027),(99364,4,27738,3,1672319027),(99365,4,27739,3,1672319027),(99366,4,27740,3,1672319027),(99367,4,27741,3,1672319027),(99368,4,27742,3,1672319027),(99369,4,27743,3,1672319027),(99370,4,27744,3,1672319027),(99371,4,27745,3,1672319027),(99372,4,27746,3,1672319027),(99373,4,27747,3,1672319027),(99374,4,27748,3,1672319027),(99375,4,27749,3,1672319027),(99376,4,27750,3,1672319027),(99377,4,27751,3,1672319027),(99378,4,27752,3,1672319027),(99379,4,27753,3,1672319027),(99380,4,27754,3,1672319027),(99381,4,27755,3,1672319027),(99382,4,27756,3,1672319027),(99383,4,27757,3,1672319027),(99384,4,27758,3,1672319027),(99385,4,27759,3,1672319027),(99386,4,27760,3,1672319027),(99387,4,27761,3,1672319027),(99388,4,27762,3,1672319027),(99389,4,27763,3,1672319027),(99390,4,27764,3,1672319027),(99391,4,27765,3,1672319027),(99392,4,27766,3,1672319027),(99393,4,27767,3,1672319027),(99394,4,27768,3,1672319027),(99395,4,27769,3,1672319027),(99396,4,27770,3,1672319027),(99397,4,27771,3,1672319027),(99398,4,27772,3,1672319027),(99399,4,27773,3,1672319027),(99400,4,27774,3,1672319027),(99401,4,27775,3,1672319027),(99402,4,27776,3,1672319027),(99403,4,27777,3,1672319027),(99404,4,27778,3,1672319027),(99405,4,27779,3,1672319027),(99406,4,27780,3,1672319027),(99407,4,27781,3,1672319027),(99408,4,27782,3,1672319027),(99409,4,27783,3,1672319027),(99410,4,27784,3,1672319027),(99411,4,27785,3,1672319027),(99412,4,27786,3,1672319027),(99413,4,27787,3,1672319027),(99414,4,27788,3,1672319027),(99415,4,27789,3,1672319027),(99416,4,27790,3,1672319027),(99417,4,27791,3,1672319027),(99418,4,27792,3,1672319027),(99419,4,27793,3,1672319027),(99420,4,27794,3,1672319027),(99421,4,27795,3,1672319027),(99422,4,27796,3,1672319027),(99423,4,27797,3,1672319027),(99424,4,27798,3,1672319027),(99425,4,27799,3,1672319027),(99426,4,27800,3,1672319027),(99427,4,27801,3,1672319027),(99428,4,27802,3,1672319027),(99429,4,27803,3,1672319027),(99430,4,27804,3,1672319027),(99431,4,27805,3,1672319027),(99432,4,27806,3,1672319027),(99433,4,27807,3,1672319027),(99434,4,27808,3,1672319027),(99435,4,27809,3,1672319027),(99436,4,27810,3,1672319027),(99437,4,27811,3,1672319027),(99438,4,27812,3,1672319027),(99439,4,27813,3,1672319027),(99440,4,27814,3,1672319027),(99441,4,27815,3,1672319027),(99442,4,27816,3,1672319027),(99443,4,27817,3,1672319027),(99444,4,27818,3,1672319027),(99445,4,27819,3,1672319027),(99446,4,27820,3,1672319027),(99447,4,27821,3,1672319027),(99448,4,27822,3,1672319027),(99449,4,27823,3,1672319027),(99450,4,27824,3,1672319027),(99451,4,27825,3,1672319027),(99452,4,27826,3,1672319027),(99453,4,27827,3,1672319027),(99454,4,27828,3,1672319027),(99455,4,27829,3,1672319027),(99456,4,27830,3,1672319027),(99457,4,27831,3,1672319027),(99458,4,27832,3,1672319027),(99459,4,27833,3,1672319027),(99460,4,27834,3,1672319027),(99461,4,27835,3,1672319027),(99462,4,27836,3,1672319027),(99463,4,27837,3,1672319027),(99464,4,27838,3,1672319027),(99465,4,27839,3,1672319027),(99466,4,27840,3,1672319027),(99467,4,27841,3,1672319027),(99468,4,27842,3,1672319027),(99469,4,27843,3,1672319027),(99470,4,27844,3,1672319027),(99471,4,27845,3,1672319027),(99472,4,27846,3,1672319027),(99473,4,27847,3,1672319027),(99474,4,27848,3,1672319027),(99475,4,27849,3,1672319027),(99476,4,27850,3,1672319027),(99477,4,27851,3,1672319027),(99478,4,27852,3,1672319027),(99479,4,27853,3,1672319027),(99480,4,27854,3,1672319027),(99481,4,27855,3,1672319027),(99482,4,27856,3,1672319027),(99483,4,27857,3,1672319027),(99484,4,27858,3,1672319027),(99485,4,27859,3,1672319027),(99486,4,27860,3,1672319027),(99487,4,27861,3,1672319027),(99488,4,27862,3,1672319027),(99489,4,27863,3,1672319027),(99490,4,27864,3,1672319027),(99491,4,27865,3,1672319027),(99492,4,27866,3,1672319027),(99493,4,27867,3,1672319027),(99494,4,27868,3,1672319027),(99495,4,27869,3,1672319027),(99496,4,27870,3,1672319027),(99497,4,27871,3,1672319027),(99498,4,27872,3,1672319027),(99499,4,27873,3,1672319027),(99500,4,27874,3,1672319027),(99501,4,27875,3,1672319027),(99502,4,27876,3,1672319027),(99503,4,27877,3,1672319027),(99504,4,27878,3,1672319027),(99505,4,27879,3,1672319027),(99506,4,27880,3,1672319027),(99507,4,27881,3,1672319027),(99508,4,27882,3,1672319027),(99509,4,27883,3,1672319027),(99510,4,27884,3,1672319027),(99511,4,27885,3,1672319027),(99512,4,27886,3,1672319027),(99513,4,27887,3,1672319027),(99514,4,27888,3,1672319027),(99515,4,27889,3,1672319027),(99516,4,27890,3,1672319027),(99517,4,27891,3,1672319027),(99518,4,27892,3,1672319027),(99519,4,27893,3,1672319027),(99520,4,27894,3,1672319027),(99521,4,27895,3,1672319027),(99522,4,27896,3,1672319027),(99523,4,27897,3,1672319027),(99524,4,27898,3,1672319027),(99525,4,27899,3,1672319027),(99526,4,27900,3,1672319027),(99527,4,27901,3,1672319027),(99528,4,27902,3,1672319027),(99529,4,27903,3,1672319027),(99530,4,27904,3,1672319027),(99531,4,27905,3,1672319027),(99532,4,27906,3,1672319027),(99533,4,27907,3,1672319027),(99534,4,27908,3,1672319027),(99535,4,27909,3,1672319027),(99536,4,27910,3,1672319027),(99537,4,27911,3,1672319027),(99538,4,27912,3,1672319027),(99539,4,27913,3,1672319027),(99540,4,27914,3,1672319027),(99541,4,27915,3,1672319027),(99542,4,27916,3,1672319027),(99543,4,27917,3,1672319027),(99544,4,27918,3,1672319027),(99545,4,27919,3,1672319027),(99546,4,27920,3,1672319027),(99547,4,27921,3,1672319027),(99548,4,27922,3,1672319027),(99549,4,27923,3,1672319027),(99550,4,27924,3,1672319027),(99551,4,27925,3,1672319027),(99552,4,27926,3,1672319027),(99553,4,27927,3,1672319027),(99554,4,27928,3,1672319027),(99555,4,27929,3,1672319027),(99556,4,27930,3,1672319027),(99557,4,27931,3,1672319027),(99558,4,27932,3,1672319027),(99559,4,27933,3,1672319027),(99560,4,27934,3,1672319027),(99561,4,27935,3,1672319027),(99562,4,27936,3,1672319027),(99563,4,27937,3,1672319027),(99564,4,27938,3,1672319027),(99565,4,27939,3,1672319027),(99566,4,27940,3,1672319027),(99567,4,27941,3,1672319027),(99568,4,27942,3,1672319027),(99569,4,27943,3,1672319027),(99570,4,27944,3,1672319027),(99571,4,27945,3,1672319027),(99572,4,27946,3,1672319027),(99573,4,27947,3,1672319027),(99574,4,27948,3,1672319027),(99575,4,27949,3,1672319027),(99576,4,27950,3,1672319027),(99577,4,27951,3,1672319027),(99578,4,27952,3,1672319027),(99579,4,27953,3,1672319027),(99580,4,27954,3,1672319027),(99581,4,27955,3,1672319027),(99582,4,27956,3,1672319027),(99583,4,27957,3,1672319027),(99584,4,27958,3,1672319027),(99585,4,27959,3,1672319027),(99586,4,27960,3,1672319027),(99587,4,27961,3,1672319027),(99588,4,27962,3,1672319027),(99589,4,27963,3,1672319027),(99590,4,27964,3,1672319027),(99591,4,27965,3,1672319027),(99592,4,27966,3,1672319027),(99593,4,27967,3,1672319027),(99594,4,27968,3,1672319027),(99595,4,27969,3,1672319027),(99596,4,27970,3,1672319027),(99597,4,27971,3,1672319027),(99598,4,27972,3,1672319027),(99599,4,27973,3,1672319027),(99600,4,27974,3,1672319027),(99601,4,27975,3,1672319027),(99602,4,27976,3,1672319027),(99603,4,27977,3,1672319027),(99604,4,27978,3,1672319027),(99605,4,27979,3,1672319027),(99606,4,27980,3,1672319027),(99607,4,27981,3,1672319027),(99608,4,27982,3,1672319027),(99609,4,27983,3,1672319027),(99610,4,27984,3,1672319027),(99611,4,27985,3,1672319027),(99612,4,27986,3,1672319027),(99613,4,27987,3,1672319027),(99614,4,27988,3,1672319027),(99615,4,27989,3,1672319027),(99616,4,27990,3,1672319027),(99617,4,27991,3,1672319027),(99618,4,27992,3,1672319027),(99619,4,27993,3,1672319027),(99620,4,27994,3,1672319027),(99621,4,27995,3,1672319027),(99622,4,27996,3,1672319027),(99623,4,27997,3,1672319027),(99624,4,27998,3,1672319027),(99625,4,27999,3,1672319027),(99626,4,28000,3,1672319027),(99627,4,28001,3,1672319027),(99628,4,28002,3,1672319027),(99629,4,28003,3,1672319027),(99630,4,28004,3,1672319027),(99631,4,28005,3,1672319027),(99632,4,28006,3,1672319027),(99633,4,28007,3,1672319027),(99634,4,28008,3,1672319027),(99635,4,28009,3,1672319027),(99636,4,28010,3,1672319027),(99637,4,28011,3,1672319027),(99638,4,28012,3,1672319027),(99639,4,28013,3,1672319027),(99640,4,28014,3,1672319027),(99641,4,28015,3,1672319027),(99642,4,28016,3,1672319027),(99643,4,28017,3,1672319027),(99644,4,28018,3,1672319027),(99645,4,28019,3,1672319027),(99646,4,28020,3,1672319027),(99647,4,28021,3,1672319027),(99648,4,28022,3,1672319027),(99649,4,28023,3,1672319027),(99650,4,28024,3,1672319027),(99651,4,28025,3,1672319027),(99652,4,28026,3,1672319027),(99653,4,28027,3,1672319027),(99654,4,28028,3,1672319027),(99655,4,28029,3,1672319027),(99656,4,28030,3,1672319027),(99657,4,28031,3,1672319027),(99658,4,28032,3,1672319027),(99659,4,28033,3,1672319027),(99660,4,28034,3,1672319027),(99661,4,28035,3,1672319027),(99662,4,28036,3,1672319027),(99663,4,28037,3,1672319027),(99664,4,28038,3,1672319027),(99665,4,28039,3,1672319027),(99666,4,28040,3,1672319027),(99667,4,28041,3,1672319027),(99668,4,28042,3,1672319027),(99669,4,28043,3,1672319027),(99670,4,28044,3,1672319027),(99671,4,28045,3,1672319027),(99672,4,28046,3,1672319027),(99673,4,28047,3,1672319027),(99674,4,28048,3,1672319027),(99675,4,28049,3,1672319027),(99676,4,28050,3,1672319027),(99677,4,28051,3,1672319027),(99678,4,28052,3,1672319027),(99679,4,28053,3,1672319027),(99680,4,28054,3,1672319027),(99681,4,28055,3,1672319027),(99682,4,28056,3,1672319027),(99683,4,28057,3,1672319027),(99684,4,28058,3,1672319027),(99685,4,28059,3,1672319027),(99686,4,28060,3,1672319027),(99687,4,28061,3,1672319027),(99688,4,28062,3,1672319027),(99689,4,28063,3,1672319027),(99690,4,28064,3,1672319027),(99691,4,28065,3,1672319027),(99692,4,28066,3,1672319027),(99693,4,28067,3,1672319027),(99694,4,28068,3,1672319027),(99695,4,28069,3,1672319027),(99696,4,28070,3,1672319027),(99697,4,28071,3,1672319027),(99698,4,28072,3,1672319027),(99699,4,28073,3,1672319027),(99700,4,28074,3,1672319027),(99701,4,28075,3,1672319027),(99702,4,28076,3,1672319027),(99703,4,28077,3,1672319027),(99704,4,28078,3,1672319027),(99705,4,28079,3,1672319027),(99706,4,28080,3,1672319027),(99707,4,28081,3,1672319027),(99708,4,28082,3,1672319027),(99709,4,28083,3,1672319027),(99710,4,28084,3,1672319027),(99711,4,28085,3,1672319027),(99712,4,28086,3,1672319027),(99713,4,28087,3,1672319027),(99714,4,28088,3,1672319027),(99715,4,28089,3,1672319027),(99716,4,28090,3,1672319027),(99717,4,28091,3,1672319027),(99718,4,28092,3,1672319027),(99719,4,28093,3,1672319027),(99720,4,28094,3,1672319027),(99721,4,28095,3,1672319027),(99722,4,28096,3,1672319027),(99723,4,28097,3,1672319027),(99724,4,28098,3,1672319027),(99725,4,28099,3,1672319027),(99726,4,28100,3,1672319027),(99727,4,28101,3,1672319027),(99728,4,28102,3,1672319027),(99729,4,28103,3,1672319027),(99730,4,28104,3,1672319027),(99731,4,28105,3,1672319027),(99732,4,28106,3,1672319027),(99733,4,28107,3,1672319027),(99734,4,28108,3,1672319027),(99735,4,28109,3,1672319027),(99736,4,28110,3,1672319027),(99737,4,28111,3,1672319027),(99738,4,28112,3,1672319027),(99739,4,28113,3,1672319027),(99740,4,28114,3,1672319027),(99741,4,28115,3,1672319027),(99742,4,28116,3,1672319027),(99743,4,28117,3,1672319027),(99744,4,28118,3,1672319027),(99745,4,28119,3,1672319027),(99746,4,28120,3,1672319027),(99747,4,28121,3,1672319027),(99748,4,28122,3,1672319027),(99749,4,28123,3,1672319027),(99750,4,28124,3,1672319027),(99751,4,28125,3,1672319027),(99752,4,28126,3,1672319027),(99753,4,28127,3,1672319027),(99754,4,28128,3,1672319027),(99755,4,28129,3,1672319027),(99756,4,28130,3,1672319027),(99757,4,28131,3,1672319027),(99758,4,28132,3,1672319027),(99759,4,28133,3,1672319027),(99760,4,28134,3,1672319027),(99761,4,28135,3,1672319027),(99762,4,28136,3,1672319027),(99763,4,28137,3,1672319027),(99764,4,28138,3,1672319027),(99765,4,28139,3,1672319027),(99766,4,28140,3,1672319027),(99767,4,28141,3,1672319027),(99768,4,28142,3,1672319027),(99769,4,28143,3,1672319027),(99770,4,28144,3,1672319027),(99771,4,28145,3,1672319027),(99772,4,28146,3,1672319027),(99773,4,28147,3,1672319027),(99774,4,28148,3,1672319027),(99775,4,28149,3,1672319027),(99776,4,28150,3,1672319027),(99777,4,28151,3,1672319027),(99778,4,28152,3,1672319027),(99779,4,28153,3,1672319027),(99780,4,28154,3,1672319027),(99781,4,28155,3,1672319027),(99782,4,28156,3,1672319027),(99783,4,28157,3,1672319027),(99784,4,28158,3,1672319027),(99785,4,28159,3,1672319027),(99786,4,28160,3,1672319027),(99787,4,28161,3,1672319027),(99788,4,28162,3,1672319027),(99789,4,28163,3,1672319027),(99790,4,28164,3,1672319027),(99791,4,28165,3,1672319027),(99792,4,28166,3,1672319027),(99793,4,28167,3,1672319027),(99794,4,28168,3,1672319027),(99795,4,28169,3,1672319027),(99796,4,28170,3,1672319027),(99797,4,28171,3,1672319027),(99798,4,28172,3,1672319027),(99799,4,28173,3,1672319027),(99800,4,28174,3,1672319027),(99801,4,28175,3,1672319027),(99802,4,28176,3,1672319027),(99803,4,28177,3,1672319027),(99804,4,28178,3,1672319027),(99805,4,28179,3,1672319027),(99806,4,28180,3,1672319027),(99807,4,28181,3,1672319027),(99808,4,28182,3,1672319027),(99809,4,28183,3,1672319027),(99810,4,28184,3,1672319027),(99811,4,28185,3,1672319027),(99812,4,28186,3,1672319027),(99813,4,28187,3,1672319027),(99814,4,28188,3,1672319027),(99815,4,28189,3,1672319027),(99816,4,28190,3,1672319027),(99817,4,28191,3,1672319027),(99818,4,28192,3,1672319027),(99819,4,28193,3,1672319027),(99820,4,28194,3,1672319027),(99821,4,28195,3,1672319027),(99822,4,28196,3,1672319027),(99823,4,28197,3,1672319027),(99824,4,28198,3,1672319027),(99825,4,28199,3,1672319027),(99826,4,28200,3,1672319027),(99827,4,28201,3,1672319027),(99828,4,28202,3,1672319027),(99829,4,28203,3,1672319027),(99830,4,28204,3,1672319027),(99831,4,28205,3,1672319027),(99832,4,28206,3,1672319027),(99833,4,28207,3,1672319027),(99834,4,28208,3,1672319027),(99835,4,28209,3,1672319027),(99836,4,28210,3,1672319027),(99837,4,28211,3,1672319027),(99838,4,28212,3,1672319027),(99839,4,28213,3,1672319027),(99840,4,28214,3,1672319027),(99841,4,28215,3,1672319027),(99842,4,28216,3,1672319027),(99843,4,28217,3,1672319027),(99844,4,28218,3,1672319027),(99845,4,28219,3,1672319027),(99846,4,28220,3,1672319027),(99847,4,28221,3,1672319027),(99848,4,28222,3,1672319027),(99849,4,28223,3,1672319027),(99850,4,28224,3,1672319027),(99851,4,28225,3,1672319027),(99852,4,28226,3,1672319027),(99853,4,28227,3,1672319027),(99854,4,28228,3,1672319027),(99855,4,28229,3,1672319027),(99856,4,28230,3,1672319027),(99857,4,28231,3,1672319027),(99858,4,28232,3,1672319027),(99859,4,28233,3,1672319027),(99860,4,28234,3,1672319027),(99861,4,28235,3,1672319027),(99862,4,28236,3,1672319027),(99863,4,28237,3,1672319027),(99864,4,28238,3,1672319027),(99865,4,28239,3,1672319027),(99866,4,28240,3,1672319027),(99867,4,28241,3,1672319027),(99868,4,28242,3,1672319027),(99869,4,28243,3,1672319027),(99870,4,28244,3,1672319027),(99871,4,28245,3,1672319027),(99872,4,28246,3,1672319027),(99873,4,28247,3,1672319027),(99874,4,28248,3,1672319027),(99875,4,28249,3,1672319027),(99876,4,28250,3,1672319027),(99877,4,28251,3,1672319027),(99878,4,28252,3,1672319027),(99879,4,28253,3,1672319027),(99880,4,28254,3,1672319027),(99881,4,28255,3,1672319027),(99882,4,28256,3,1672319027),(99883,4,28257,3,1672319027),(99884,4,28258,3,1672319027),(99885,4,28259,3,1672319027),(99886,4,28260,3,1672319027),(99887,4,28261,3,1672319027),(99888,4,28262,3,1672319027),(99889,4,28263,3,1672319027),(99890,4,28264,3,1672319027),(99891,4,28265,3,1672319027),(99892,4,28266,3,1672319027),(99893,4,28267,3,1672319027),(99894,4,28268,3,1672319027),(99895,4,28269,3,1672319027),(99896,4,28270,3,1672319027),(99897,4,28271,3,1672319027),(99898,4,28272,3,1672319027),(99899,4,28273,3,1672319027),(99900,4,28274,3,1672319027),(99901,4,28275,3,1672319027),(99902,4,28276,3,1672319027),(99903,4,28277,3,1672319027),(99904,4,28278,3,1672319027),(99905,4,28279,3,1672319027),(99906,4,28280,3,1672319027),(99907,4,28281,3,1672319027),(99908,4,28282,3,1672319027),(99909,4,28283,3,1672319027),(99910,4,28284,3,1672319027),(99911,4,28285,3,1672319027),(99912,4,28286,3,1672319027),(99913,4,28287,3,1672319027),(99914,4,28288,3,1672319027),(99915,4,28289,3,1672319027),(99916,4,28290,3,1672319027),(99917,4,28291,3,1672319027),(99918,4,28292,3,1672319027),(99919,4,28293,3,1672319027),(99920,4,28294,3,1672319027),(99921,4,28295,3,1672319027),(99922,4,28296,3,1672319027),(99923,4,28297,3,1672319027),(99924,4,28298,3,1672319027),(99925,4,28299,3,1672319027),(99926,4,28300,3,1672319027),(99927,4,28301,3,1672319027),(99928,4,28302,3,1672319027),(99929,4,28303,3,1672319027),(99930,4,28304,3,1672319027),(99931,4,28305,3,1672319027),(99932,4,28306,3,1672319027),(99933,4,28307,3,1672319027),(99934,4,28308,3,1672319027),(99935,4,28309,3,1672319027),(99936,4,28310,3,1672319027),(99937,4,28311,3,1672319027),(99938,4,28312,3,1672319027),(99939,4,28313,3,1672319027),(99940,4,28314,3,1672319027),(99941,4,28315,3,1672319027),(99942,4,28316,3,1672319027),(99943,4,28317,3,1672319027),(99944,4,28318,3,1672319027),(99945,4,28319,3,1672319027),(99946,4,28320,3,1672319027),(99947,4,28321,3,1672319027),(99948,4,28322,3,1672319027),(99949,4,28323,3,1672319027),(99950,4,28324,3,1672319027),(99951,4,28325,3,1672319027),(99952,4,28326,3,1672319027),(99953,4,28327,3,1672319027),(99954,4,28328,3,1672319027),(99955,4,28329,3,1672319027),(99956,4,28330,3,1672319027),(99957,4,28331,3,1672319027),(99958,4,28332,3,1672319027),(99959,4,28333,3,1672319027),(99960,4,28334,3,1672319027),(99961,4,28335,3,1672319027),(99962,4,28336,3,1672319027),(99963,4,28337,3,1672319027),(99964,4,28338,3,1672319027),(99965,4,28339,3,1672319027),(99966,4,28340,3,1672319027),(99967,4,28341,3,1672319027),(99968,4,28342,3,1672319027),(99969,4,28343,3,1672319027),(99970,4,28344,3,1672319027),(99971,4,28345,3,1672319027),(99972,4,28346,3,1672319027),(99973,4,28347,3,1672319027),(99974,4,28348,3,1672319027),(99975,4,28349,3,1672319027),(99976,4,28350,3,1672319027),(99977,4,28351,3,1672319027),(99978,4,28352,3,1672319027),(99979,4,28353,3,1672319027),(99980,4,28354,3,1672319027),(99981,4,28355,3,1672319027),(99982,4,28356,3,1672319027),(99983,4,28357,3,1672319027),(99984,4,28358,3,1672319027),(99985,4,28359,3,1672319027),(99986,4,28360,3,1672319027),(99987,4,28361,3,1672319027),(99988,4,28362,3,1672319027),(99989,4,28363,3,1672319027),(99990,4,28364,3,1672319027),(99991,4,28365,3,1672319027),(99992,4,28366,3,1672319027),(99993,4,28367,3,1672319027),(99994,4,28368,3,1672319027),(99995,4,28369,3,1672319027),(99996,4,28370,3,1672319027),(99997,4,28371,3,1672319027),(99998,4,28372,3,1672319027),(99999,4,28373,3,1672319027),(100000,4,28374,3,1672319027),(100001,4,28375,3,1672319027),(100002,4,28376,3,1672319027),(100003,4,28377,3,1672319027),(100004,4,28378,3,1672319027),(100005,4,28379,3,1672319027),(100006,4,28380,3,1672319027),(100007,4,28381,3,1672319027),(100008,4,28382,3,1672319027),(100009,4,28383,3,1672319027),(100010,4,28384,3,1672319027),(100011,4,28385,3,1672319027),(100012,4,28386,3,1672319027),(100013,4,28387,3,1672319027),(100014,4,28388,3,1672319027),(100015,4,28389,3,1672319027),(100016,4,28390,3,1672319027),(100017,4,28391,3,1672319027),(100018,4,28392,3,1672319027),(100019,4,28393,3,1672319027),(100020,4,28394,3,1672319027),(100021,4,28395,3,1672319027),(100022,4,28396,3,1672319027),(100023,4,28397,3,1672319027),(100024,4,28398,3,1672319027),(100025,4,28399,3,1672319027),(100026,4,28400,3,1672319027),(100027,4,28401,3,1672319027),(100028,4,28402,3,1672319027),(100029,4,28403,3,1672319027),(100030,4,28404,3,1672319027),(100031,4,28405,3,1672319027),(100032,4,28406,3,1672319027),(100033,4,28407,3,1672319027),(100034,4,28408,3,1672319027),(100035,4,28409,3,1672319027),(100036,4,28410,3,1672319027),(100037,4,28411,3,1672319027),(100038,4,28412,3,1672319027),(100039,4,28413,3,1672319027),(100040,4,28414,3,1672319027),(100041,4,28415,3,1672319027),(100042,4,28416,3,1672319027),(100043,4,28417,3,1672319027),(100044,4,28418,3,1672319027),(100045,4,28419,3,1672319027),(100046,4,28420,3,1672319027),(100047,4,28421,3,1672319027),(100048,4,28422,3,1672319027),(100049,4,28423,3,1672319027),(100050,4,28424,3,1672319027),(100051,4,28425,3,1672319027),(100052,4,28426,3,1672319027),(100053,4,28427,3,1672319027),(100054,4,28428,3,1672319027),(100055,4,28429,3,1672319027),(100056,4,28430,3,1672319027),(100057,4,28431,3,1672319027),(100058,4,28432,3,1672319027),(100059,4,28433,3,1672319027),(100060,4,28434,3,1672319027),(100061,4,28435,3,1672319027),(100062,4,28436,3,1672319027),(100063,4,28437,3,1672319027),(100064,4,28438,3,1672319027),(100065,4,28439,3,1672319027),(100066,4,28440,3,1672319027),(100067,4,28441,3,1672319027),(100068,4,28442,3,1672319027),(100069,4,28443,3,1672319027),(100070,4,28444,3,1672319027),(100071,4,28445,3,1672319027),(100072,4,28446,3,1672319027),(100073,4,28447,3,1672319027),(100074,4,28448,3,1672319027),(100075,4,28449,3,1672319027),(100076,4,28450,3,1672319027),(100077,4,28451,3,1672319027),(100078,4,28452,3,1672319027),(100079,4,28453,3,1672319027),(100080,4,28454,3,1672319027),(100081,4,28455,3,1672319027),(100082,4,28456,3,1672319027),(100083,4,28457,3,1672319027),(100084,4,28458,3,1672319027),(100085,4,28459,3,1672319027),(100086,4,28460,3,1672319027),(100087,4,28461,3,1672319027),(100088,4,28462,3,1672319027),(100089,4,28463,3,1672319027),(100090,4,28464,3,1672319027),(100091,4,28465,3,1672319027),(100092,4,28466,3,1672319027),(100093,4,28467,3,1672319027),(100094,4,28468,3,1672319027),(100095,4,28469,3,1672319027),(100096,4,28470,3,1672319027),(100097,4,28471,3,1672319027),(100098,4,28472,3,1672319027),(100099,4,28473,3,1672319027),(100100,4,28474,3,1672319027),(100101,4,28475,3,1672319027),(100102,4,28476,3,1672319027),(100103,4,28477,3,1672319027),(100104,4,28478,3,1672319027),(100105,4,28479,3,1672319027),(100106,4,28480,3,1672319027),(100107,4,28481,3,1672319027),(100108,4,28482,3,1672319027),(100109,4,28483,3,1672319027),(100110,4,28484,3,1672319027),(100111,4,28485,3,1672319027),(100112,4,28486,3,1672319027),(100113,4,28487,3,1672319027),(100114,4,28488,3,1672319027),(100115,4,28489,3,1672319027),(100116,4,28490,3,1672319027),(100117,4,28491,3,1672319027),(100118,4,28492,3,1672319027),(100119,4,28493,3,1672319027),(100120,4,28494,3,1672319027),(100121,4,28495,3,1672319027),(100122,4,28496,3,1672319027),(100123,4,28497,3,1672319027),(100124,4,28498,3,1672319027),(100125,4,28499,3,1672319027),(100126,4,28500,3,1672319027),(100127,4,28501,3,1672319027),(100128,4,28502,3,1672319027),(100129,4,28503,3,1672319027),(100130,4,28504,3,1672319027),(100131,4,28505,3,1672319027),(100132,4,28506,3,1672319027),(100133,4,28507,3,1672319027),(100134,4,28508,3,1672319027),(100135,4,28509,3,1672319027),(100136,4,28510,3,1672319027),(100137,4,28511,3,1672319027),(100138,4,28512,3,1672319027),(100139,4,28513,3,1672319027),(100140,4,28514,3,1672319027),(100141,4,28515,3,1672319027),(100142,4,28516,3,1672319027),(100143,4,28517,3,1672319027),(100144,4,28518,3,1672319027),(100145,4,28519,3,1672319027),(100146,4,28520,3,1672319027),(100147,4,28521,3,1672319027),(100148,4,28522,3,1672319027),(100149,4,28523,3,1672319027),(100150,4,28524,3,1672319027),(100151,4,28525,3,1672319027),(100152,4,28526,3,1672319027),(100153,4,28527,3,1672319027),(100154,4,28528,3,1672319027),(100155,4,28529,3,1672319027),(100156,4,28530,3,1672319027),(100157,4,28531,3,1672319027),(100158,4,28532,3,1672319027),(100159,4,28533,3,1672319027),(100160,4,28534,3,1672319027),(100161,4,28535,3,1672319027),(100162,4,28536,3,1672319027),(100163,4,28537,3,1672319027),(100164,4,28538,3,1672319027),(100165,4,28539,3,1672319027),(100166,4,28540,3,1672319027),(100167,4,28541,3,1672319027),(100168,4,28542,3,1672319027),(100169,4,28543,3,1672319027),(100170,4,28544,3,1672319027),(100171,4,28545,3,1672319027),(100172,4,28546,3,1672319027),(100173,4,28547,3,1672319027),(100174,4,28548,3,1672319027),(100175,4,28549,3,1672319027),(100176,4,28550,3,1672319027),(100177,4,28551,3,1672319027),(100178,4,28552,3,1672319027),(100179,4,28553,3,1672319027),(100180,4,28554,3,1672319027),(100181,4,28555,3,1672319027),(100182,4,28556,3,1672319027),(100183,4,28557,3,1672319027),(100184,4,28558,3,1672319027),(100185,4,28559,3,1672319027),(100186,4,28560,3,1672319027),(100187,4,28561,3,1672319027),(100188,4,28562,3,1672319027),(100189,4,28563,3,1672319027),(100190,4,28564,3,1672319027),(100191,4,28565,3,1672319027),(100192,4,28566,3,1672319027),(100193,4,28567,3,1672319027),(100194,4,28568,3,1672319027),(100195,4,28569,3,1672319027),(100196,4,28570,3,1672319027),(100197,4,28571,3,1672319027),(100198,4,28572,3,1672319027),(100199,4,28573,3,1672319027),(100200,4,28574,3,1672319027),(100201,4,28575,3,1672319027),(100202,4,28576,3,1672319027),(100203,4,28577,3,1672319027),(100204,4,28578,3,1672319027),(100205,4,28579,3,1672319027),(100206,4,28580,3,1672319027),(100207,4,28581,3,1672319027),(100208,4,28582,3,1672319027),(100209,4,28583,3,1672319027),(100210,4,28584,3,1672319027),(100211,4,28585,3,1672319027),(100212,4,28586,3,1672319027),(100213,4,28587,3,1672319027),(100214,4,28588,3,1672319027),(100215,4,28589,3,1672319027),(100216,4,28590,3,1672319027),(100217,4,28591,3,1672319027),(100218,4,28592,3,1672319027),(100219,4,28593,3,1672319027),(100220,4,28594,3,1672319027),(100221,4,28595,3,1672319027),(100222,4,28596,3,1672319027),(100223,4,28597,3,1672319027),(100224,4,28598,3,1672319027),(100225,4,28599,3,1672319027),(100226,4,28600,3,1672319027),(100227,4,28601,3,1672319027),(100228,4,28602,3,1672319027),(100229,4,28603,3,1672319027),(100230,4,28604,3,1672319027),(100231,4,28605,3,1672319027),(100232,4,28606,3,1672319027),(100233,4,28607,3,1672319027),(100234,4,28608,3,1672319027),(100235,4,28609,3,1672319027),(100236,4,28610,3,1672319027),(100237,4,28611,3,1672319027),(100238,4,28612,3,1672319027),(100239,4,28613,3,1672319027),(100240,4,28614,3,1672319027),(100241,4,28615,3,1672319027),(100242,4,28616,3,1672319027),(100243,4,28617,3,1672319027),(100244,4,28618,3,1672319027),(100245,4,28619,3,1672319027),(100246,4,28620,3,1672319027),(100247,4,28621,3,1672319027),(100248,4,28622,3,1672319027),(100249,4,28623,3,1672319027),(100250,4,28624,3,1672319027),(100251,4,28625,3,1672319027),(100252,4,28626,3,1672319027),(100253,4,28627,3,1672319027),(100254,4,28628,3,1672319027),(100255,4,28629,3,1672319027),(100256,4,28630,3,1672319027),(100257,4,28631,3,1672319027),(100258,4,28632,3,1672319027),(100259,4,28633,3,1672319027),(100260,4,28634,3,1672319027),(100261,4,28635,3,1672319027),(100262,4,28636,3,1672319027),(100263,4,28637,3,1672319027),(100264,4,28638,3,1672319027),(100265,4,28639,3,1672319027),(100266,4,28640,3,1672319027),(100267,4,28641,3,1672319027),(100268,4,28642,3,1672319027),(100269,4,28643,3,1672319027),(100270,4,28644,3,1672319027),(100271,4,28645,3,1672319027),(100272,4,28646,3,1672319027),(100273,4,28647,3,1672319027),(100274,4,28648,3,1672319027),(100275,4,28649,3,1672319027),(100276,4,28650,3,1672319027),(100277,4,28651,3,1672319027),(100278,4,28652,3,1672319027),(100279,4,28653,3,1672319027),(100280,4,28654,3,1672319027),(100281,4,28655,3,1672319027),(100282,4,28656,3,1672319027),(100283,4,28657,3,1672319027),(100284,4,28658,3,1672319027),(100285,4,28659,3,1672319027),(100286,4,28660,3,1672319027),(100287,4,28661,3,1672319027),(100288,4,28662,3,1672319027),(100289,4,28663,3,1672319027),(100290,4,28664,3,1672319027),(100291,4,28665,3,1672319027),(100292,4,28666,3,1672319027),(100293,4,28667,3,1672319027),(100294,4,28668,3,1672319027),(100295,4,28669,3,1672319027),(100296,4,28670,3,1672319027),(100297,4,28671,3,1672319027),(100298,4,28672,3,1672319027),(100299,4,28673,3,1672319027),(100300,4,28674,3,1672319027),(100301,4,28675,3,1672319027),(100302,4,28676,3,1672319027),(100303,4,28677,3,1672319027),(100304,4,28678,3,1672319027),(100305,4,28679,3,1672319027),(100306,4,28680,3,1672319027),(100307,4,28681,3,1672319027),(100308,4,28682,3,1672319027),(100309,4,28683,3,1672319027),(100310,4,28684,3,1672319027),(100311,4,28685,3,1672319027),(100312,4,28686,3,1672319027),(100313,4,28687,3,1672319027),(100314,4,28688,3,1672319027),(100315,4,28689,3,1672319027),(100316,4,28690,3,1672319027),(100317,4,28691,3,1672319027),(100318,4,28692,3,1672319027),(100319,4,28693,3,1672319027),(100320,4,28694,3,1672319027),(100321,4,28695,3,1672319027),(100322,4,28696,3,1672319027),(100323,4,28697,3,1672319027),(100324,4,28698,3,1672319027),(100325,4,28699,3,1672319027),(100326,4,28700,3,1672319027),(100327,4,28701,3,1672319027),(100328,4,28702,3,1672319027),(100329,4,28703,3,1672319027),(100330,4,28704,3,1672319027),(100331,4,28705,3,1672319027),(100332,4,28706,3,1672319027),(100333,4,28707,3,1672319027),(100334,4,28708,3,1672319027),(100335,4,28709,3,1672319027),(100336,4,28710,3,1672319027),(100337,4,28711,3,1672319027),(100338,4,28712,3,1672319027),(100339,4,28713,3,1672319027),(100340,4,28714,3,1672319027),(100341,4,28715,3,1672319027),(100342,4,28716,3,1672319027),(100343,4,28717,3,1672319027),(100344,4,28718,3,1672319027),(100345,4,28719,3,1672319027),(100346,4,28720,3,1672319027),(100347,4,28721,3,1672319027),(100348,4,28722,3,1672319027),(100349,4,28723,3,1672319027),(100350,4,28724,3,1672319027),(100351,4,28725,3,1672319027),(100352,4,28726,3,1672319027),(100353,4,28727,3,1672319027),(100354,4,28728,3,1672319027),(100355,4,28729,3,1672319027),(100356,4,28730,3,1672319027),(100357,4,28731,3,1672319027),(100358,4,28732,3,1672319027),(100359,4,28733,3,1672319027),(100360,4,28734,3,1672319027),(100361,4,28735,3,1672319027),(100362,4,28736,3,1672319027),(100363,4,28737,3,1672319027),(100364,4,28738,3,1672319027),(100365,4,28739,3,1672319027),(100366,4,28740,3,1672319027),(100367,4,28741,3,1672319027),(100368,4,28742,3,1672319027),(100369,4,28743,3,1672319027),(100370,4,28744,3,1672319027),(100371,4,28745,3,1672319027),(100372,4,28746,3,1672319027),(100373,4,28747,3,1672319027),(100374,4,28748,3,1672319027),(100375,4,28749,3,1672319027),(100376,4,28750,3,1672319027),(100377,4,28751,3,1672319027),(100378,4,28752,3,1672319027),(100379,4,28753,3,1672319027),(100380,4,28754,3,1672319027),(100381,4,28755,3,1672319027),(100382,4,28756,3,1672319027),(100383,4,28757,3,1672319027),(100384,4,28758,3,1672319027),(100385,4,28759,3,1672319027),(100386,4,28760,3,1672319027),(100387,4,28761,3,1672319027),(100388,4,28762,3,1672319027),(100389,4,28763,3,1672319027),(100390,4,28764,3,1672319027),(100391,4,28765,3,1672319027),(100392,4,28766,3,1672319027),(100393,4,28767,3,1672319027),(100394,4,28768,3,1672319027),(100395,4,28769,3,1672319027),(100396,4,28770,3,1672319027),(100397,4,28771,3,1672319027),(100398,4,28772,3,1672319027),(100399,4,28773,3,1672319027),(100400,4,28774,3,1672319027),(100401,4,28775,3,1672319027),(100402,4,28776,3,1672319027),(100403,4,28777,3,1672319027),(100404,4,28778,3,1672319027),(100405,4,28779,3,1672319027),(100406,4,28780,3,1672319027),(100407,4,28781,3,1672319027),(100408,4,28782,3,1672319027),(100409,4,28783,3,1672319027),(100410,4,28784,3,1672319027),(100411,4,28785,3,1672319027),(100412,4,28786,3,1672319027),(100413,4,28787,3,1672319027),(100414,4,28788,3,1672319027),(100415,4,28789,3,1672319027),(100416,4,28790,3,1672319027),(100417,4,28791,3,1672319027),(100418,4,28792,3,1672319027),(100419,4,28793,3,1672319027),(100420,4,28794,3,1672319027),(100421,4,28795,3,1672319027),(100422,4,28796,3,1672319027),(100423,4,28797,3,1672319027),(100424,4,28798,3,1672319027),(100425,4,28799,3,1672319027),(100426,4,28800,3,1672319027),(100427,4,28801,3,1672319027),(100428,4,28802,3,1672319027),(100429,4,28803,3,1672319027),(100430,4,28804,3,1672319027),(100431,4,28805,3,1672319027),(100432,4,28806,3,1672319027),(100433,4,28807,3,1672319027),(100434,4,28808,3,1672319027),(100435,4,28809,3,1672319027),(100436,4,28810,3,1672319027),(100437,4,28811,3,1672319027),(100438,4,28812,3,1672319027),(100439,4,28813,3,1672319027),(100440,4,28814,3,1672319027),(100441,4,28815,3,1672319027),(100442,4,28816,3,1672319027),(100443,4,28817,3,1672319027),(100444,4,28818,3,1672319027),(100445,4,28819,3,1672319027),(100446,4,28820,3,1672319027),(100447,4,28821,3,1672319027),(100448,4,28822,3,1672319027),(100449,4,28823,3,1672319027),(100450,4,28824,3,1672319027),(100451,4,28825,3,1672319027),(100452,4,28826,3,1672319027),(100453,4,28827,3,1672319027),(100454,4,28828,3,1672319027),(100455,4,28829,3,1672319027),(100456,4,28830,3,1672319027),(100457,4,28831,3,1672319027),(100458,4,28832,3,1672319027),(100459,4,28833,3,1672319027),(100460,4,28834,3,1672319027),(100461,4,28835,3,1672319027),(100462,4,28836,3,1672319027),(100463,4,28837,3,1672319027),(100464,4,28838,3,1672319027),(100465,4,28839,3,1672319027),(100466,4,28840,3,1672319027),(100467,4,28841,3,1672319027),(100468,4,28842,3,1672319027),(100469,4,28843,3,1672319027),(100470,4,28844,3,1672319027),(100471,4,28845,3,1672319027),(100472,4,28846,3,1672319027),(100473,4,28847,3,1672319027),(100474,4,28848,3,1672319027),(100475,4,28849,3,1672319027),(100476,4,28850,3,1672319027),(100477,4,28851,3,1672319027),(100478,4,28852,3,1672319027),(100479,4,28853,3,1672319027),(100480,4,28854,3,1672319027),(100481,4,28855,3,1672319027),(100482,4,28856,3,1672319027),(100483,4,28857,3,1672319027),(100484,4,28858,3,1672319027),(100485,4,28859,3,1672319027),(100486,4,28860,3,1672319027),(100487,4,28861,3,1672319027),(100488,4,28862,3,1672319027),(100489,4,28863,3,1672319027),(100490,4,28864,3,1672319027),(100491,4,28865,3,1672319027),(100492,4,28866,3,1672319027),(100493,4,28867,3,1672319027),(100494,4,28868,3,1672319027),(100495,4,28869,3,1672319027),(100496,4,28870,3,1672319027),(100497,4,28871,3,1672319027),(100498,4,28872,3,1672319027),(100499,4,28873,3,1672319027),(100500,4,28874,3,1672319027),(100501,4,28875,3,1672319027),(100502,4,28876,3,1672319027),(100503,4,28877,3,1672319027),(100504,4,28878,3,1672319027),(100505,4,28879,3,1672319027),(100506,4,28880,3,1672319027),(100507,4,28881,3,1672319027),(100508,4,28882,3,1672319027),(100509,4,28883,3,1672319027),(100510,4,28884,3,1672319027),(100511,4,28885,3,1672319027),(100512,4,28886,3,1672319027),(100513,4,28887,3,1672319027),(100514,4,28888,3,1672319027),(100515,4,28889,3,1672319027),(100516,4,28890,3,1672319027),(100517,4,28891,3,1672319027),(100518,4,28892,3,1672319027),(100519,4,28893,3,1672319027),(100520,4,28894,3,1672319027),(100521,4,28895,3,1672319027),(100522,4,28896,3,1672319027),(100523,4,28897,3,1672319027),(100524,4,28898,3,1672319027),(100525,4,28899,3,1672319027),(100526,4,28900,3,1672319027),(100527,4,28901,3,1672319027),(100528,4,28902,3,1672319027),(100529,4,28903,3,1672319027),(100530,4,28904,3,1672319027),(100531,4,28905,3,1672319027),(100532,4,28906,3,1672319027),(100533,4,28907,3,1672319027),(100534,4,28908,3,1672319027),(100535,4,28909,3,1672319027),(100536,4,28910,3,1672319027),(100537,4,28911,3,1672319027),(100538,4,28912,3,1672319027),(100539,4,28913,3,1672319027),(100540,4,28914,3,1672319027),(100541,4,28915,3,1672319027),(100542,4,28916,3,1672319027),(100543,4,28917,3,1672319027),(100544,4,28918,3,1672319027),(100545,4,28919,3,1672319027),(100546,4,28920,3,1672319027),(100547,4,28921,3,1672319027),(100548,4,28922,3,1672319027),(100549,4,28923,3,1672319027),(100550,4,28924,3,1672319027),(100551,4,28925,3,1672319027),(100552,4,28926,3,1672319027),(100553,4,28927,3,1672319027),(100554,4,28928,3,1672319027),(100555,4,28929,3,1672319027),(100556,4,28930,3,1672319027),(100557,4,28931,3,1672319027),(100558,4,28932,3,1672319027),(100559,4,28933,3,1672319027),(100560,4,28934,3,1672319027),(100561,4,28935,3,1672319027),(100562,4,28936,3,1672319027),(100563,4,28937,3,1672319027),(100564,4,28938,3,1672319027),(100565,4,28939,3,1672319027),(100566,4,28940,3,1672319027),(100567,4,28941,3,1672319027),(100568,4,28942,3,1672319027),(100569,4,28943,3,1672319027),(100570,4,28944,3,1672319027),(100571,4,28945,3,1672319027),(100572,4,28946,3,1672319027),(100573,4,28947,3,1672319027),(100574,4,28948,3,1672319027),(100575,4,28949,3,1672319027),(100576,4,28950,3,1672319027),(100577,4,28951,3,1672319027),(100578,4,28952,3,1672319027),(100579,4,28953,3,1672319027),(100580,4,28954,3,1672319027),(100581,4,28955,3,1672319027),(100582,4,28956,3,1672319027),(100583,4,28957,3,1672319027),(100584,4,28958,3,1672319027),(100585,4,28959,3,1672319027),(100586,4,28960,3,1672319027),(100587,4,28961,3,1672319027),(100588,4,28962,3,1672319027),(100589,4,28963,3,1672319027),(100590,4,28964,3,1672319027),(100591,4,28965,3,1672319027),(100592,4,28966,3,1672319027),(100593,4,28967,3,1672319027),(100594,4,28968,3,1672319027),(100595,4,28969,3,1672319027),(100596,4,28970,3,1672319027),(100597,4,28971,3,1672319027),(100598,4,28972,3,1672319027),(100599,4,28973,3,1672319027),(100600,4,28974,3,1672319027),(100601,4,28975,3,1672319027),(100602,4,28976,3,1672319027),(100603,4,28977,3,1672319027),(100604,4,28978,3,1672319027),(100605,4,28979,3,1672319027),(100606,4,28980,3,1672319027),(100607,4,28981,3,1672319027),(100608,4,28982,3,1672319027),(100609,4,28983,3,1672319027),(100610,4,28984,3,1672319027),(100611,4,28985,3,1672319027),(100612,4,28986,3,1672319027),(100613,4,28987,3,1672319027),(100614,4,28988,3,1672319027),(100615,4,28989,3,1672319027),(100616,4,28990,3,1672319027),(100617,4,28991,3,1672319027),(100618,4,28992,3,1672319027),(100619,4,28993,3,1672319027),(100620,4,28994,3,1672319027),(100621,4,28995,3,1672319027),(100622,4,28996,3,1672319027),(100623,4,28997,3,1672319027),(100624,4,28998,3,1672319027),(100625,4,28999,3,1672319027),(100626,4,29000,3,1672319027),(100627,4,29001,3,1672319027),(100628,4,29002,3,1672319027),(100629,4,29003,3,1672319027),(100630,4,29004,3,1672319027),(100631,4,29005,3,1672319027),(100632,4,29006,3,1672319027),(100633,4,29007,3,1672319027),(100634,4,29008,3,1672319027),(100635,4,29009,3,1672319027),(100636,4,29010,3,1672319027),(100637,4,29011,3,1672319027),(100638,4,29012,3,1672319027),(100639,4,29013,3,1672319027),(100640,4,29014,3,1672319027),(100641,4,29015,3,1672319027),(100642,4,29016,3,1672319027),(100643,4,29017,3,1672319027),(100644,4,29018,3,1672319027),(100645,4,29019,3,1672319027),(100646,4,29020,3,1672319027),(100647,4,29021,3,1672319027),(100648,4,29022,3,1672319027),(100649,4,29023,3,1672319027),(100650,4,29024,3,1672319027),(100651,4,29025,3,1672319027),(100652,4,29026,3,1672319027),(100653,4,29027,3,1672319027),(100654,4,29028,3,1672319027),(100655,4,29029,3,1672319027),(100656,4,29030,3,1672319027),(100657,4,29031,3,1672319027),(100658,4,29032,3,1672319027),(100659,4,29033,3,1672319027),(100660,4,29034,3,1672319027),(100661,4,29035,3,1672319027),(100662,4,29036,3,1672319027),(100663,4,29037,3,1672319027),(100664,4,29038,3,1672319027),(100665,4,29039,3,1672319027),(100666,4,29040,3,1672319027),(100667,4,29041,3,1672319027),(100668,4,29042,3,1672319027),(100669,4,29043,3,1672319027),(100670,4,29044,3,1672319027),(100671,4,29045,3,1672319027),(100672,4,29046,3,1672319027),(100673,4,29047,3,1672319027),(100674,4,29048,3,1672319027),(100675,4,29049,3,1672319027),(100676,4,29050,3,1672319027),(100677,4,29051,3,1672319027),(100678,4,29052,3,1672319027),(100679,4,29053,3,1672319027),(100680,4,29054,3,1672319027),(100681,4,29055,3,1672319027),(100682,4,29056,3,1672319027),(100683,4,29057,3,1672319027),(100684,4,29058,3,1672319027),(100685,4,29059,3,1672319027),(100686,4,29060,3,1672319027),(100687,4,29061,3,1672319027),(100688,4,29062,3,1672319027),(100689,4,29063,3,1672319027),(100690,4,29064,3,1672319027),(100691,4,29065,3,1672319027),(100692,4,29066,3,1672319027),(100693,4,29067,3,1672319027),(100694,4,29068,3,1672319027),(100695,4,29069,3,1672319027),(100696,4,29070,3,1672319027),(100697,4,29071,3,1672319027),(100698,4,29072,3,1672319027),(100699,4,29073,3,1672319027),(100700,4,29074,3,1672319027),(100701,4,29075,3,1672319027),(100702,4,29076,3,1672319027),(100703,4,29077,3,1672319027),(100704,4,29078,3,1672319027),(100705,4,29079,3,1672319027),(100706,4,29080,3,1672319027),(100707,4,29081,3,1672319027),(100708,4,29082,3,1672319027),(100709,4,29083,3,1672319027),(100710,4,29084,3,1672319027),(100711,4,29085,3,1672319027),(100712,4,29086,3,1672319027),(100713,4,29087,3,1672319027),(100714,4,29088,3,1672319027),(100715,4,29089,3,1672319027),(100716,4,29090,3,1672319027),(100717,4,29091,3,1672319027),(100718,4,29092,3,1672319027),(100719,4,29093,3,1672319027),(100720,4,29094,3,1672319027),(100721,4,29095,3,1672319027),(100722,4,29096,3,1672319027),(100723,4,29097,3,1672319027),(100724,4,29098,3,1672319027),(100725,4,29099,3,1672319027),(100726,4,29100,3,1672319027),(100727,4,29101,3,1672319027),(100728,4,29102,3,1672319027),(100729,4,29103,3,1672319027),(100730,4,29104,3,1672319027),(100731,4,29105,3,1672319027),(100732,4,29106,3,1672319027),(100733,4,29107,3,1672319027),(100734,4,29108,3,1672319027),(100735,4,29109,3,1672319027),(100736,4,29110,3,1672319027),(100737,4,29111,3,1672319027),(100738,4,29112,3,1672319027),(100739,4,29113,3,1672319027),(100740,4,29114,3,1672319027),(100741,4,29115,3,1672319027),(100742,4,29116,3,1672319027),(100743,4,29117,3,1672319027),(100744,4,29118,3,1672319027),(100745,4,29119,3,1672319027),(100746,4,29120,3,1672319027),(100747,4,29121,3,1672319027),(100748,4,29122,3,1672319027),(100749,4,29123,3,1672319027),(100750,4,29124,3,1672319027),(100751,4,29125,3,1672319027),(100752,4,29126,3,1672319027),(100753,4,29127,3,1672319027),(100754,4,29128,3,1672319027),(100755,4,29129,3,1672319027),(100756,4,29130,3,1672319027),(100757,4,29131,3,1672319027),(100758,4,29132,3,1672319027),(100759,4,29133,3,1672319027),(100760,4,29134,3,1672319027),(100761,4,29135,3,1672319027),(100762,4,29136,3,1672319027),(100763,4,29137,3,1672319027),(100764,4,29138,3,1672319027),(100765,4,29139,3,1672319027),(100766,4,29140,3,1672319027),(100767,4,29141,3,1672319027),(100768,4,29142,3,1672319027),(100769,4,29143,3,1672319027),(100770,4,29144,3,1672319027),(100771,4,29145,3,1672319027),(100772,4,29146,3,1672319027),(100773,4,29147,3,1672319027),(100774,4,29148,3,1672319027),(100775,4,29149,3,1672319027),(100776,4,29150,3,1672319027),(100777,4,29151,3,1672319027),(100778,4,29152,3,1672319027),(100779,4,29153,3,1672319027),(100780,4,29154,3,1672319027),(100781,4,29155,3,1672319027),(100782,4,29156,3,1672319027),(100783,4,29157,3,1672319027),(100784,4,29158,3,1672319027),(100785,4,29159,3,1672319027),(100786,4,29160,3,1672319027),(100787,4,29161,3,1672319027),(100788,4,29162,3,1672319027),(100789,4,29163,3,1672319027),(100790,4,29164,3,1672319027),(100791,4,29165,3,1672319027),(100792,4,29166,3,1672319027),(100793,4,29167,3,1672319027),(100794,4,29168,3,1672319027),(100795,4,29169,3,1672319027),(100796,4,29170,3,1672319027),(100797,4,29171,3,1672319027),(100798,4,29172,3,1672319027),(100799,4,29173,3,1672319027),(100800,4,29174,3,1672319027),(100801,4,29175,3,1672319027),(100802,4,29176,3,1672319027),(100803,4,29177,3,1672319027),(100804,4,29178,3,1672319027),(100805,4,29179,3,1672319027),(100806,4,29180,3,1672319027),(100807,4,29181,3,1672319027),(100808,4,29182,3,1672319027),(100809,4,29183,3,1672319027),(100810,4,29184,3,1672319027),(100811,4,29185,3,1672319027),(100812,4,29186,3,1672319027),(100813,4,29187,3,1672319027),(100814,4,29188,3,1672319027),(100815,4,29189,3,1672319027),(100816,4,29190,3,1672319027),(100817,4,29191,3,1672319027),(100818,4,29192,3,1672319027),(100819,4,29193,3,1672319027),(100820,4,29194,3,1672319027),(100821,4,29195,3,1672319027),(100822,4,29196,3,1672319027),(100823,4,29197,3,1672319027),(100824,4,29198,3,1672319027),(100825,4,29199,3,1672319027),(100826,4,29200,3,1672319027),(100827,4,29201,3,1672319027),(100828,4,29202,3,1672319027),(100829,4,29203,3,1672319027),(100830,4,29204,3,1672319027),(100831,4,29205,3,1672319027),(100832,4,29206,3,1672319027),(100833,4,29207,3,1672319027),(100834,4,29208,3,1672319027),(100835,4,29209,3,1672319027),(100836,4,29210,3,1672319027),(100837,4,29211,3,1672319027),(100838,4,29212,3,1672319027),(100839,4,29213,3,1672319027),(100840,4,29214,3,1672319027),(100841,4,29215,3,1672319027),(100842,4,29216,3,1672319027),(100843,4,29217,3,1672319027),(100844,4,29218,3,1672319027),(100845,4,29219,3,1672319027),(100846,4,29220,3,1672319027),(100847,4,29221,3,1672319027),(100848,4,29222,3,1672319027),(100849,4,29223,3,1672319027),(100850,4,29224,3,1672319027),(100851,4,29225,3,1672319027),(100852,4,29226,3,1672319027),(100853,4,29227,3,1672319027),(100854,4,29228,3,1672319027),(100855,4,29229,3,1672319027),(100856,4,29230,3,1672319027),(100857,4,29231,3,1672319027),(100858,4,29232,3,1672319027),(100859,4,29233,3,1672319027),(100860,4,29234,3,1672319027),(100861,4,29235,3,1672319027),(100862,4,29236,3,1672319027),(100863,4,29237,3,1672319027),(100864,4,29238,3,1672319027),(100865,4,29239,3,1672319027),(100866,4,29240,3,1672319027),(100867,4,29241,3,1672319027),(100868,4,29242,3,1672319027),(100869,4,29243,3,1672319027),(100870,4,29244,3,1672319027),(100871,4,29245,3,1672319027),(100872,4,29246,3,1672319027),(100873,4,29247,3,1672319027),(100874,4,29248,3,1672319027),(100875,4,29249,3,1672319027),(100876,4,29250,3,1672319027),(100877,4,29251,3,1672319027),(100878,4,29252,3,1672319027),(100879,4,29253,3,1672319027),(100880,4,29254,3,1672319027),(100881,4,29255,3,1672319027),(100882,4,29256,3,1672319027),(100883,4,29257,3,1672319027),(100884,4,29258,3,1672319027),(100885,4,29259,3,1672319027),(100886,4,29260,3,1672319027),(100887,4,29261,3,1672319027),(100888,4,29262,3,1672319027),(100889,4,29263,3,1672319027),(100890,4,29264,3,1672319027),(100891,4,29265,3,1672319027),(100892,4,29266,3,1672319027),(100893,4,29267,3,1672319027),(100894,4,29268,3,1672319027),(100895,4,29269,3,1672319027),(100896,4,29270,3,1672319027),(100897,4,29271,3,1672319027),(100898,4,29272,3,1672319027),(100899,4,29273,3,1672319027),(100900,4,29274,3,1672319027),(100901,4,29275,3,1672319027),(100902,4,29276,3,1672319027),(100903,4,29277,3,1672319027),(100904,4,29278,3,1672319027),(100905,4,29279,3,1672319027),(100906,4,29280,3,1672319027),(100907,4,29281,3,1672319027),(100908,4,29282,3,1672319027),(100909,4,29283,3,1672319027),(100910,4,29284,3,1672319027),(100911,4,29285,3,1672319027),(100912,4,29286,3,1672319027),(100913,4,29287,3,1672319027),(100914,4,29288,3,1672319027),(100915,4,29289,3,1672319027),(100916,4,29290,3,1672319027),(100917,4,29291,3,1672319027),(100918,4,29292,3,1672319027),(100919,4,29293,3,1672319027),(100920,4,29294,3,1672319027),(100921,4,29295,3,1672319027),(100922,4,29296,3,1672319027),(100923,4,29297,3,1672319027),(100924,4,29298,3,1672319027),(100925,4,29299,3,1672319027),(100926,4,29300,3,1672319027),(100927,4,29301,3,1672319027),(100928,4,29302,3,1672319027),(100929,4,29303,3,1672319027),(100930,4,29304,3,1672319027),(100931,4,29305,3,1672319027),(100932,4,29306,3,1672319027),(100933,4,29307,3,1672319027),(100934,4,29308,3,1672319027),(100935,4,29309,3,1672319027),(100936,4,29310,3,1672319027),(100937,4,29311,3,1672319027),(100938,4,29312,3,1672319027),(100939,4,29313,3,1672319027),(100940,4,29314,3,1672319027),(100941,4,29315,3,1672319027),(100942,4,29316,3,1672319027),(100943,4,29317,3,1672319027),(100944,4,29318,3,1672319027),(100945,4,29319,3,1672319027),(100946,4,29320,3,1672319027),(100947,4,29321,3,1672319027),(100948,4,29322,3,1672319027),(100949,4,29323,3,1672319027),(100950,4,29324,3,1672319027),(100951,4,29325,3,1672319027),(100952,4,29326,3,1672319027),(100953,4,29327,3,1672319027),(100954,4,29328,3,1672319027),(100955,4,29329,3,1672319027),(100956,4,29330,3,1672319027),(100957,4,29331,3,1672319027),(100958,4,29332,3,1672319027),(100959,4,29333,3,1672319027),(100960,4,29334,3,1672319027),(100961,4,29335,3,1672319027),(100962,4,29336,3,1672319027),(100963,4,29337,3,1672319027),(100964,4,29338,3,1672319027),(100965,4,29339,3,1672319027),(100966,4,29340,3,1672319027),(100967,4,29341,3,1672319027),(100968,4,29342,3,1672319027),(100969,4,29343,3,1672319027),(100970,4,29344,3,1672319027),(100971,4,29345,3,1672319027),(100972,4,29346,3,1672319027),(100973,4,29347,3,1672319027),(100974,4,29348,3,1672319027),(100975,4,29349,3,1672319027),(100976,4,29350,3,1672319027),(100977,4,29351,3,1672319027),(100978,4,29352,3,1672319027),(100979,4,29353,3,1672319027),(100980,4,29354,3,1672319027),(100981,4,29355,3,1672319027),(100982,4,29356,3,1672319027),(100983,4,29357,3,1672319027),(100984,4,29358,3,1672319027),(100985,4,29359,3,1672319027),(100986,4,29360,3,1672319027),(100987,4,29361,3,1672319027),(100988,4,29362,3,1672319027),(100989,4,29363,3,1672319027),(100990,4,29364,3,1672319027),(100991,4,29365,3,1672319027),(100992,4,29366,3,1672319027),(100993,4,29367,3,1672319027),(100994,4,29368,3,1672319027),(100995,4,29369,3,1672319027),(100996,4,29370,3,1672319027),(100997,4,29371,3,1672319027),(100998,4,29372,3,1672319027),(100999,4,29373,3,1672319027),(101000,4,29374,3,1672319027),(101001,4,29375,3,1672319027),(101002,4,29376,3,1672319027),(101003,4,29377,3,1672319027),(101004,4,29378,3,1672319027),(101005,4,29379,3,1672319027),(101006,4,29380,3,1672319027),(101007,4,29381,3,1672319027),(101008,4,29382,3,1672319027),(101009,4,29383,3,1672319027),(101010,4,29384,3,1672319027),(101011,4,29385,3,1672319027),(101012,4,29386,3,1672319027),(101013,4,29387,3,1672319027),(101014,4,29388,3,1672319027),(101015,4,29389,3,1672319027),(101016,4,29390,3,1672319027),(101017,4,29391,3,1672319027),(101018,4,29392,3,1672319027),(101019,4,29393,3,1672319027),(101020,4,29394,3,1672319027),(101021,4,29395,3,1672319027),(101022,4,29396,3,1672319027),(101023,4,29397,3,1672319027),(101024,4,29398,3,1672319027),(101025,4,29399,3,1672319027),(101026,4,29400,3,1672319027),(101027,4,29401,3,1672319027),(101028,4,29402,3,1672319027),(101029,4,29403,3,1672319027),(101030,4,29404,3,1672319027),(101031,4,29405,3,1672319027),(101032,4,29406,3,1672319027),(101033,4,29407,3,1672319027),(101034,4,29408,3,1672319027),(101035,4,29409,3,1672319027),(101036,4,29410,3,1672319027),(101037,4,29411,3,1672319027),(101038,4,29412,3,1672319027),(101039,4,29413,3,1672319027),(101040,4,29414,3,1672319027),(101041,4,29415,3,1672319027),(101042,4,29416,3,1672319027),(101043,4,29417,3,1672319027),(101044,4,29418,3,1672319027),(101045,4,29419,3,1672319027),(101046,4,29420,3,1672319027),(101047,4,29421,3,1672319027),(101048,4,29422,3,1672319027),(101049,4,29423,3,1672319027),(101050,4,29424,3,1672319027),(101051,4,29425,3,1672319027),(101052,4,29426,3,1672319027),(101053,4,29427,3,1672319027),(101054,4,29428,3,1672319027),(101055,4,29429,3,1672319027),(101056,4,29430,3,1672319027),(101057,4,29431,3,1672319027),(101058,4,29432,3,1672319027),(101059,4,29433,3,1672319027),(101060,4,29434,3,1672319027),(101061,4,29435,3,1672319027),(101062,4,29436,3,1672319027),(101063,4,29437,3,1672319027),(101064,4,29438,3,1672319027),(101065,4,29439,3,1672319027),(101066,4,29440,3,1672319027),(101067,4,29441,3,1672319027),(101068,4,29442,3,1672319027),(101069,4,29443,3,1672319027),(101070,4,29444,3,1672319027),(101071,4,29446,3,1672319027),(101072,4,29447,3,1672319027),(101073,4,29448,3,1672319027),(101074,4,29449,3,1672319027),(101075,4,29450,3,1672319027),(101076,4,29451,3,1672319027),(101077,4,29452,3,1672319027),(101078,4,29453,3,1672319027),(101079,4,29454,3,1672319027),(101080,4,29455,3,1672319027),(101081,4,29456,3,1672319027),(101082,4,29457,3,1672319027),(101083,4,29458,3,1672319027),(101084,4,29459,3,1672319027),(101085,4,29460,3,1672319027),(101086,4,29461,3,1672319027),(101087,4,29462,3,1672319027),(101088,4,29463,3,1672319027),(101089,4,29464,3,1672319027),(101090,4,29465,3,1672319027),(101091,4,29466,3,1672319027),(101092,4,29468,3,1672319027),(101093,4,29469,3,1672319027),(101094,4,29470,3,1672319027),(101095,4,29471,3,1672319027),(101096,4,29472,3,1672319027),(101097,4,29473,3,1672319027),(101098,4,29474,3,1672319027),(101099,4,29475,3,1672319027),(101100,4,29476,3,1672319027),(101101,4,29477,3,1672319027),(101102,4,29478,3,1672319027),(101103,4,29479,3,1672319027),(101104,4,29480,3,1672319027),(101105,4,29481,3,1672319027),(101106,4,29482,3,1672319027),(101107,4,29483,3,1672319027),(101108,4,29484,3,1672319027),(101109,4,29485,3,1672319027),(101110,4,29486,3,1672319027),(101111,4,29487,3,1672319027),(101112,4,29488,3,1672319027),(101113,4,29489,3,1672319027),(101114,4,29490,3,1672319027),(101115,4,29491,3,1672319027),(101116,4,29535,3,1672319027),(101117,4,29536,3,1672319027),(101118,4,29537,3,1672319027),(101119,4,29538,3,1672319027),(101120,4,29541,3,1672319027),(101121,4,29542,3,1672319027),(101122,4,29543,3,1672319027),(101123,4,29544,3,1672319027),(101124,4,29545,3,1672319027),(101125,4,29546,3,1672319027),(101126,4,29547,3,1672319027),(101127,4,29548,3,1672319027),(101128,4,29549,3,1672319027),(101129,4,29551,3,1672319027),(101130,4,29552,3,1672319027),(101131,4,29554,3,1672319027),(101132,4,29555,3,1672319027),(101133,4,29557,3,1672319027),(101134,4,29558,3,1672319027),(101135,4,29560,3,1672319027),(101136,4,29561,3,1672319027),(101137,4,29563,3,1672319027),(101138,4,29564,3,1672319027),(101139,4,29566,3,1672319027),(101140,4,29567,3,1672319027),(101141,4,29569,3,1672319027),(101142,4,29570,3,1672319027),(101143,4,29572,3,1672319027),(101144,4,29573,3,1672319027),(101145,4,29574,3,1672319027),(101146,4,29575,3,1672319027),(101147,4,29576,3,1672319027),(101148,4,29577,3,1672319027),(101149,4,29578,3,1672319027),(101150,4,29580,3,1672319027),(101151,4,29581,3,1672319027),(101152,4,29583,3,1672319027),(101153,4,29584,3,1672319027),(101154,4,29586,3,1672319027),(101155,4,29587,3,1672319027),(101156,4,29589,3,1672319027),(101157,4,29590,3,1672319027),(101158,4,29592,3,1672319027),(101159,4,29593,3,1672319027),(101160,4,29595,3,1672319027),(101161,4,29596,3,1672319027),(101162,4,29598,3,1672319027),(101163,4,29599,3,1672319027),(101164,4,29601,3,1672319027),(101165,4,29602,3,1672319027),(101166,4,29603,3,1672319027),(101167,4,29604,3,1672319027),(101168,4,29605,3,1672319027),(101169,4,29606,3,1672319027),(101170,4,29607,3,1672319027),(101171,4,29608,3,1672319027),(101172,4,29609,3,1672319027),(101173,4,29610,3,1672319027),(101174,4,29611,3,1672319027),(101175,4,29612,3,1672319027),(101176,4,29613,3,1672319027),(101177,4,29614,3,1672319027),(101178,4,29652,3,1672319027),(101179,4,29653,3,1672319027),(101180,4,29654,3,1672319027),(101181,4,29655,3,1672319027),(101182,4,29656,3,1672319027),(101183,4,29657,3,1672319027),(101184,4,29658,3,1672319027),(101185,4,29659,3,1672319027),(101186,4,29660,3,1672319027),(101187,4,29661,3,1672319027),(101188,4,29662,3,1672319027),(101189,4,29663,3,1672319027),(101190,4,29664,3,1672319027),(101191,4,29665,3,1672319027),(101192,4,29666,3,1672319027),(101193,4,29667,3,1672319027),(101194,4,29668,3,1672319027),(101195,4,29669,3,1672319027),(101196,4,29670,3,1672319027),(101197,4,29671,3,1672319027),(101198,4,29672,3,1672319027),(101199,4,29673,3,1672319027),(101200,4,29674,3,1672319027),(101201,4,29675,3,1672319027),(101202,4,29688,3,1672319027),(101203,4,29689,3,1672319027),(101204,4,29690,3,1672319027),(101205,4,29691,3,1672319027),(101206,4,29692,3,1672319027),(101207,4,29693,3,1672319027),(101208,4,29694,3,1672319027),(101209,4,29695,3,1672319027),(101210,4,29696,3,1672319027),(101211,4,29697,3,1672319027),(101212,4,29698,3,1672319027),(101213,4,29699,3,1672319027),(101214,4,29700,3,1672319027),(101215,4,29701,3,1672319027),(101216,4,29702,3,1672319027),(101217,4,29703,3,1672319027),(101218,4,29704,3,1672319027),(101219,4,29705,3,1672319027),(101220,4,29706,3,1672319027),(101221,4,29707,3,1672319027),(101222,4,29708,3,1672319027),(101223,4,29709,3,1672319027),(101224,4,29710,3,1672319027),(101225,4,29711,3,1672319027),(101226,4,29712,3,1672319027),(101227,4,29713,3,1672319027),(101228,4,29714,3,1672319027),(101229,4,29715,3,1672319027),(101230,4,29716,3,1672319027),(101231,4,29718,3,1672319027),(101232,4,29719,3,1672319027),(101233,4,29720,3,1672319027),(101234,4,29721,3,1672319027),(101235,4,29722,3,1672319027),(101236,4,29723,3,1672319027),(101237,4,29724,3,1672319027),(101238,4,29725,3,1672319027),(101239,4,29726,3,1672319027),(101240,4,29727,3,1672319027),(101241,4,29728,3,1672319027),(101242,4,29729,3,1672319027),(101243,4,29730,3,1672319027),(101244,4,29731,3,1672319027),(101245,4,29732,3,1672319027),(101246,4,29733,3,1672319027),(101247,4,29734,3,1672319027),(101248,4,29735,3,1672319027),(101249,4,29736,3,1672319027),(101250,4,29737,3,1672319027),(101251,4,29738,3,1672319027),(101252,4,29739,3,1672319027),(101253,4,29740,3,1672319027),(101254,4,29741,3,1672319027),(101255,4,29742,3,1672319027),(101256,4,29743,3,1672319027),(101257,4,29744,3,1672319027),(101258,4,29746,3,1672319027),(101259,4,29747,3,1672319027),(101260,4,29748,3,1672319027),(101261,4,29749,3,1672319027),(101262,4,29750,3,1672319027),(101263,4,29751,3,1672319027),(101264,4,29752,3,1672319027),(101265,4,29753,3,1672319027),(101266,4,29754,3,1672319027),(101267,4,29755,3,1672319027),(101268,4,29756,3,1672319027),(101269,4,29757,3,1672319027),(101270,4,29758,3,1672319027),(101271,4,29759,3,1672319027),(101272,4,29760,3,1672319027),(101273,4,29761,3,1672319027),(101274,4,29762,3,1672319027),(101275,4,29763,3,1672319027),(101276,4,29764,3,1672319027),(101277,4,29765,3,1672319027),(101278,4,29766,3,1672319027),(101279,4,29767,3,1672319027),(101280,4,29768,3,1672319027),(101281,4,29769,3,1672319027),(101282,4,29770,3,1672319027),(101283,4,29771,3,1672319027),(101284,4,29772,3,1672319027),(101285,4,29773,3,1672319027),(101286,4,29774,3,1672319027),(101287,4,29775,3,1672319027),(101288,4,29776,3,1672319027),(101289,4,29777,3,1672319027),(101290,4,29778,3,1672319027),(101291,4,29779,3,1672319027),(101292,4,29780,3,1672319027),(101293,4,29781,3,1672319027),(101294,4,29782,3,1672319027),(101295,4,29783,3,1672319027),(101296,4,29784,3,1672319027),(101297,4,29785,3,1672319027),(101298,4,29786,3,1672319027),(101299,4,29788,3,1672319027),(101300,4,29789,3,1672319027),(101301,4,29791,3,1672319027),(101302,4,29792,3,1672319027),(101303,4,29794,3,1672319027),(101304,4,29795,3,1672319027),(101305,4,29797,3,1672319027),(101306,4,29798,3,1672319027),(101307,4,29800,3,1672319027),(101308,4,29801,3,1672319027),(101309,4,29803,3,1672319027),(101310,4,29804,3,1672319027),(101311,4,29806,3,1672319027),(101312,4,29807,3,1672319027),(101313,4,29809,3,1672319027),(101314,4,29810,3,1672319027),(101315,4,29812,3,1672319027),(101316,4,29813,3,1672319027),(101317,4,29815,3,1672319027),(101318,4,29816,3,1672319027),(101319,4,29818,3,1672319027),(101320,4,29819,3,1672319027),(101321,4,29821,3,1672319027),(101322,4,29822,3,1672319027),(101323,4,29824,3,1672319027),(101324,4,29825,3,1672319027),(101325,4,29827,3,1672319027),(101326,4,29828,3,1672319027),(101327,4,29830,3,1672319027),(101328,4,29831,3,1672319027),(101329,4,29833,3,1672319027),(101330,4,29834,3,1672319027),(101331,4,29835,3,1672319027),(101332,4,29836,3,1672319027),(101333,4,29837,3,1672319027),(101334,4,29838,3,1672319027),(101335,4,29839,3,1672319027),(101336,4,29840,3,1672319027),(101337,4,29841,3,1672319027),(101338,4,29842,3,1672319027),(101339,4,29843,3,1672319027),(101340,4,29844,3,1672319027),(101341,4,29845,3,1672319027),(101342,4,29846,3,1672319027),(101343,4,29847,3,1672319027),(101344,4,29848,3,1672319027),(101345,4,29849,3,1672319027),(101346,4,29850,3,1672319027),(101347,4,29851,3,1672319027),(101348,4,29852,3,1672319027),(101349,4,29853,3,1672319027),(101350,4,29854,3,1672319027),(101351,4,29855,3,1672319027),(101352,4,29856,3,1672319027),(101353,4,29857,3,1672319027),(101354,4,29858,3,1672319027),(101355,4,29859,3,1672319027),(101356,4,29860,3,1672319027),(101357,4,29861,3,1672319027),(101358,4,29862,3,1672319027),(101359,4,29863,3,1672319027),(101360,4,29864,3,1672319027),(101361,4,29865,3,1672319027),(101362,4,29866,3,1672319027),(101363,4,29867,3,1672319027),(101364,4,29868,3,1672319027),(101365,4,29869,3,1672319027),(101366,4,29870,3,1672319027),(101367,4,29871,3,1672319027),(101368,4,29872,3,1672319027),(101369,4,29873,3,1672319027),(101370,4,29874,3,1672319027),(101371,4,29875,3,1672319027),(101372,4,29876,3,1672319027),(101373,4,29877,3,1672319027),(101374,4,29878,3,1672319027),(101375,4,29879,3,1672319027),(101376,4,29880,3,1672319027),(101377,4,29881,3,1672319027),(101378,4,29882,3,1672319027),(101379,4,29883,3,1672319027),(101380,4,29884,3,1672319027),(101381,4,29885,3,1672319027),(101382,4,29886,3,1672319027),(101383,4,29887,3,1672319027),(101384,4,29888,3,1672319027),(101385,4,29889,3,1672319027),(101386,4,29890,3,1672319027),(101387,4,29891,3,1672319027),(101388,4,29892,3,1672319027),(101389,4,29893,3,1672319027),(101390,4,29894,3,1672319027),(101391,4,29895,3,1672319027),(101392,4,29896,3,1672319027),(101393,4,29897,3,1672319027),(101394,4,29898,3,1672319027),(101395,4,29899,3,1672319027),(101396,4,29900,3,1672319027),(101397,4,29901,3,1672319027),(101398,4,29902,3,1672319027),(101399,4,29903,3,1672319027),(101400,4,29904,3,1672319027),(101401,4,29905,3,1672319027),(101402,4,29906,3,1672319027),(101403,4,29907,3,1672319027),(101404,4,29908,3,1672319027),(101405,4,29909,3,1672319027),(101406,4,29910,3,1672319027),(101407,4,29911,3,1672319027),(101408,4,29912,3,1672319027),(101409,4,29913,3,1672319027),(101410,4,29914,3,1672319027),(101411,4,29915,3,1672319027),(101412,4,29916,3,1672319027),(101413,4,29917,3,1672319027),(101414,4,29918,3,1672319027),(101415,4,29919,3,1672319027),(101416,4,29920,3,1672319027),(101417,4,29921,3,1672319027),(101418,4,29922,3,1672319027),(101419,4,29923,3,1672319027),(101420,4,29924,3,1672319027),(101421,4,29925,3,1672319027),(101422,4,29926,3,1672319027),(101423,4,29927,3,1672319027),(101424,4,29928,3,1672319027),(101425,4,29929,3,1672319027),(101426,4,29930,3,1672319027),(101427,4,29931,3,1672319027),(101428,4,29932,3,1672319027),(101429,4,29933,3,1672319027),(101430,4,29934,3,1672319027),(101431,4,29935,3,1672319027),(101432,4,29936,3,1672319027),(101433,4,29937,3,1672319027),(101434,4,29938,3,1672319027),(101435,4,29939,3,1672319027),(101436,4,29940,3,1672319027),(101437,4,29941,3,1672319027),(101438,4,29942,3,1672319027),(101439,4,29943,3,1672319027),(101440,4,29944,3,1672319027),(101441,4,29945,3,1672319027),(101442,4,29946,3,1672319027),(101443,4,29947,3,1672319027),(101444,4,29948,3,1672319027),(101445,4,29949,3,1672319027),(101446,4,29950,3,1672319027),(101447,4,29951,3,1672319027),(101448,4,29952,3,1672319027),(101449,4,29953,3,1672319027),(101450,4,29954,3,1672319027),(101451,4,29955,3,1672319027),(101452,4,29956,3,1672319027),(101453,4,29957,3,1672319027),(101454,4,29958,3,1672319027),(101455,4,29959,3,1672319027),(101456,4,29960,3,1672319027),(101457,4,29961,3,1672319027),(101458,4,29962,3,1672319027),(101459,4,29963,3,1672319027),(101460,4,29964,3,1672319027),(101461,4,29965,3,1672319027),(101462,4,29966,3,1672319027),(101463,4,29967,3,1672319027),(101464,4,29968,3,1672319027),(101465,4,29969,3,1672319027),(101466,4,29970,3,1672319027),(101467,4,29971,3,1672319027),(101468,4,29972,3,1672319027),(101469,4,29973,3,1672319027),(101470,4,29974,3,1672319027),(101471,4,29975,3,1672319027),(101472,4,29976,3,1672319027),(101473,4,29977,3,1672319027),(101474,4,29978,3,1672319027),(101475,4,29979,3,1672319027),(101476,4,29980,3,1672319027),(101477,4,29981,3,1672319027),(101478,4,29982,3,1672319027),(101479,4,29983,3,1672319027),(101480,4,29984,3,1672319027),(101481,4,29985,3,1672319027),(101482,4,29986,3,1672319027),(101483,4,29987,3,1672319027),(101484,4,29988,3,1672319027),(101485,4,29989,3,1672319027),(101486,4,29990,3,1672319027),(101487,4,29991,3,1672319027),(101488,4,29992,3,1672319027),(101489,4,29993,3,1672319027),(101490,4,29994,3,1672319027),(101491,4,29995,3,1672319027),(101492,4,29996,3,1672319027),(101493,4,29997,3,1672319027),(101494,4,29998,3,1672319027),(101495,4,29999,3,1672319027),(101496,4,30000,3,1672319027),(101497,4,30001,3,1672319027),(101498,4,30002,3,1672319027),(101499,4,30003,3,1672319027),(101500,4,30004,3,1672319027),(101501,4,30005,3,1672319027),(101502,4,30006,3,1672319027),(101503,4,30007,3,1672319027),(101504,4,30008,3,1672319027),(101505,4,30009,3,1672319027),(101506,4,30010,3,1672319027),(101507,4,30011,3,1672319027),(101508,4,30012,3,1672319027),(101509,4,30013,3,1672319027),(101510,4,30014,3,1672319027),(101511,4,30015,3,1672319027),(101512,4,30016,3,1672319027),(101513,4,30017,3,1672319027),(101514,4,30018,3,1672319027),(101515,4,30019,3,1672319027),(101516,4,30020,3,1672319027),(101517,4,30021,3,1672319027),(101518,4,30022,3,1672319027),(101519,4,30023,3,1672319027),(101520,4,30024,3,1672319027),(101521,4,30025,3,1672319027),(101522,4,30026,3,1672319027),(101523,4,30027,3,1672319027),(101524,4,30028,3,1672319027),(101525,4,30029,3,1672319027),(101526,4,30030,3,1672319027),(101527,4,30031,3,1672319027),(101528,4,30032,3,1672319027),(101529,4,30033,3,1672319027),(101530,4,30034,3,1672319027),(101531,4,30035,3,1672319027),(101532,4,30036,3,1672319027),(101533,4,30037,3,1672319027),(101534,4,30038,3,1672319027),(101535,4,30039,3,1672319027),(101536,4,30040,3,1672319027),(101537,4,30041,3,1672319027),(101538,4,30042,3,1672319027),(101539,4,30043,3,1672319027),(101540,4,30044,3,1672319027),(101541,4,30045,3,1672319027),(101542,4,30046,3,1672319027),(101543,4,30047,3,1672319027),(101544,4,30048,3,1672319027),(101545,4,30049,3,1672319027),(101546,4,30050,3,1672319027),(101547,4,30051,3,1672319027),(101548,4,30052,3,1672319027),(101549,4,30053,3,1672319027),(101550,4,30054,3,1672319027),(101551,4,30055,3,1672319027),(101552,4,30056,3,1672319027),(101553,4,30057,3,1672319027),(101554,4,30058,3,1672319027),(101555,4,30059,3,1672319027),(101556,4,30060,3,1672319027),(101557,4,30061,3,1672319027),(101558,4,30062,3,1672319027),(101559,4,30063,3,1672319027),(101560,4,30064,3,1672319027),(101561,4,30065,3,1672319027),(101562,4,30066,3,1672319027),(101563,4,30067,3,1672319027),(101564,4,30068,3,1672319027),(101565,4,30069,3,1672319027),(101566,4,30070,3,1672319027),(101567,4,30071,3,1672319027),(101568,4,30072,3,1672319027),(101569,4,30073,3,1672319027),(101570,4,30074,3,1672319027),(101571,4,30075,3,1672319027),(101572,4,30076,3,1672319027),(101573,4,30077,3,1672319027),(101574,4,30078,3,1672319027),(101575,4,30079,3,1672319027),(101576,4,30080,3,1672319027),(101577,4,30081,3,1672319027),(101578,4,30082,3,1672319027),(101579,4,30083,3,1672319027),(101580,4,30084,3,1672319027),(101581,4,30085,3,1672319027),(101582,4,30086,3,1672319027),(101583,4,30087,3,1672319027),(101584,4,30088,3,1672319027),(101585,4,30089,3,1672319027),(101586,4,30090,3,1672319027),(101587,4,30091,3,1672319027),(101588,4,30092,3,1672319027),(101589,4,30093,3,1672319027),(101590,4,30094,3,1672319027),(101591,4,30095,3,1672319027),(101592,4,30096,3,1672319027),(101593,4,30097,3,1672319027),(101594,4,30098,3,1672319027),(101595,4,30099,3,1672319027),(101596,4,30100,3,1672319027),(101597,4,30101,3,1672319027),(101598,4,30102,3,1672319027),(101599,4,30103,3,1672319027),(101600,4,30104,3,1672319027),(101601,4,30105,3,1672319027),(101602,4,30106,3,1672319027),(101603,4,30107,3,1672319027),(101604,4,30108,3,1672319027),(101605,4,30109,3,1672319027),(101606,4,30110,3,1672319027),(101607,4,30111,3,1672319027),(101608,4,30112,3,1672319027),(101609,4,30113,3,1672319027),(101610,4,30114,3,1672319027),(101611,4,30115,3,1672319027),(101612,4,30116,3,1672319027),(101613,4,30117,3,1672319027),(101614,4,30118,3,1672319027),(101615,4,30119,3,1672319027),(101616,4,30120,3,1672319027),(101617,4,30121,3,1672319027),(101618,4,30122,3,1672319027),(101619,4,30123,3,1672319027),(101620,4,30124,3,1672319027),(101621,4,30125,3,1672319027),(101622,4,30126,3,1672319027),(101623,4,30127,3,1672319027),(101624,4,30128,3,1672319027),(101625,4,30129,3,1672319027),(101626,4,30130,3,1672319027),(101627,4,30131,3,1672319027),(101628,4,30132,3,1672319027),(101629,4,30133,3,1672319027),(101630,4,30134,3,1672319027),(101631,4,30135,3,1672319027),(101632,4,30136,3,1672319027),(101633,4,30137,3,1672319027),(101634,4,30138,3,1672319027),(101635,4,30139,3,1672319027),(101636,4,30140,3,1672319027),(101637,4,30141,3,1672319027),(101638,4,30142,3,1672319027),(101639,4,30143,3,1672319027),(101640,4,30144,3,1672319027),(101641,4,30145,3,1672319027),(101642,4,30146,3,1672319027),(101643,4,30147,3,1672319027),(101644,4,30148,3,1672319027),(101645,4,30149,3,1672319027),(101646,4,30150,3,1672319027),(101647,4,30151,3,1672319027),(101648,4,30152,3,1672319027),(101649,4,30153,3,1672319027),(101650,4,30154,3,1672319027),(101651,4,30155,3,1672319027),(101652,4,30156,3,1672319027),(101653,4,30157,3,1672319027),(101654,4,30158,3,1672319027),(101655,4,30159,3,1672319027),(101656,4,30160,3,1672319027),(101657,4,30161,3,1672319027),(101658,4,30162,3,1672319027),(101659,4,30163,3,1672319027),(101660,4,30164,3,1672319027),(101661,4,30165,3,1672319027),(101662,4,30166,3,1672319027),(101663,4,30167,3,1672319027),(101664,4,30168,3,1672319027),(101665,4,30169,3,1672319027),(101666,4,30170,3,1672319027),(101667,4,30171,3,1672319027),(101668,4,30172,3,1672319027),(101669,4,30173,3,1672319027),(101670,4,30174,3,1672319027),(101671,4,30175,3,1672319027),(101672,4,30176,3,1672319027),(101673,4,30177,3,1672319027),(101674,4,30178,3,1672319027),(101675,4,30179,3,1672319027),(101676,4,30180,3,1672319027),(101677,4,30181,3,1672319027),(101678,4,30182,3,1672319027),(101679,4,30183,3,1672319027),(101680,4,30184,3,1672319027),(101681,4,30185,3,1672319027),(101682,4,30186,3,1672319027),(101683,4,30187,3,1672319027),(101684,4,30188,3,1672319027),(101685,4,30189,3,1672319027),(101686,4,30190,3,1672319027),(101687,4,30191,3,1672319027),(101688,4,30192,3,1672319027),(101689,4,30193,3,1672319027),(101690,4,30194,3,1672319027),(101691,4,30195,3,1672319027),(101692,4,30196,3,1672319027),(101693,4,30197,3,1672319027),(101694,4,30198,3,1672319027),(101695,4,30199,3,1672319027),(101696,4,30200,3,1672319027),(101697,4,30201,3,1672319027),(101698,4,30202,3,1672319027),(101699,4,30203,3,1672319027),(101700,4,30204,3,1672319027),(101701,4,30205,3,1672319027),(101702,4,30206,3,1672319027),(101703,4,30207,3,1672319027),(101704,4,30208,3,1672319027),(101705,4,30209,3,1672319027),(101706,4,30210,3,1672319027),(101707,4,30211,3,1672319027),(101708,4,30212,3,1672319027),(101709,4,30213,3,1672319027),(101710,4,30214,3,1672319027),(101711,4,30215,3,1672319027),(101712,4,30216,3,1672319027),(101713,4,30217,3,1672319027),(101714,4,30218,3,1672319027),(101715,4,30219,3,1672319027),(101716,4,30220,3,1672319027),(101717,4,30221,3,1672319027),(101718,4,30222,3,1672319027),(101719,4,30223,3,1672319027),(101720,4,30224,3,1672319027),(101721,4,30225,3,1672319027),(101722,4,30226,3,1672319027),(101723,4,30227,3,1672319027),(101724,4,30228,3,1672319027),(101725,4,30229,3,1672319027),(101726,4,30230,3,1672319027),(101727,4,30231,3,1672319027),(101728,4,30232,3,1672319027),(101729,4,30233,3,1672319027),(101730,4,30234,3,1672319027),(101731,4,30235,3,1672319027),(101732,4,30236,3,1672319027),(101733,4,30237,3,1672319027),(101734,4,30238,3,1672319027),(101735,4,30239,3,1672319027),(101736,4,30240,3,1672319027),(101737,4,30241,3,1672319027),(101738,4,30242,3,1672319027),(101739,4,30243,3,1672319027),(101740,4,30244,3,1672319027),(101741,4,30245,3,1672319027),(101742,4,30246,3,1672319027),(101743,4,30247,3,1672319027),(101744,4,30248,3,1672319027),(101745,4,30249,3,1672319027),(101746,4,30250,3,1672319027),(101747,4,30251,3,1672319027),(101748,4,30252,3,1672319027),(101749,4,30253,3,1672319027),(101750,4,30254,3,1672319027),(101751,4,30255,3,1672319027),(101752,4,30256,3,1672319027),(101753,4,30257,3,1672319027),(101754,4,30258,3,1672319027),(101755,4,30259,3,1672319027),(101756,4,30260,3,1672319027),(101757,4,30261,3,1672319027),(101758,4,30262,3,1672319027),(101759,4,30263,3,1672319027),(101760,4,30264,3,1672319027),(101761,4,30265,3,1672319027),(101762,4,30266,3,1672319027),(101763,4,30267,3,1672319027),(101764,4,30268,3,1672319027),(101765,4,30269,3,1672319027),(101766,4,30270,3,1672319027),(101767,4,30271,3,1672319027),(101768,4,30272,3,1672319027),(101769,4,30273,3,1672319027),(101770,4,30274,3,1672319027),(101771,4,30275,3,1672319027),(101772,4,30276,3,1672319027),(101773,4,30277,3,1672319027),(101774,4,30278,3,1672319027),(101775,4,30279,3,1672319027),(101776,4,30280,3,1672319027),(101777,4,30281,3,1672319027),(101778,4,30282,3,1672319027),(101779,4,30283,3,1672319027),(101780,4,30284,3,1672319027),(101781,4,30285,3,1672319027),(101782,4,30286,3,1672319027),(101783,4,30287,3,1672319027),(101784,4,30288,3,1672319027),(101785,4,30289,3,1672319027),(101786,4,30290,3,1672319027),(101787,4,30291,3,1672319027),(101788,4,30292,3,1672319027),(101789,4,30293,3,1672319027),(101790,4,30294,3,1672319027),(101791,4,30295,3,1672319027),(101792,4,30296,3,1672319027),(101793,4,30297,3,1672319027),(101794,4,30298,3,1672319027),(101795,4,30299,3,1672319027),(101796,4,30300,3,1672319027),(101797,4,30301,3,1672319027),(101798,4,30302,3,1672319027),(101799,4,30303,3,1672319027),(101800,4,30304,3,1672319027),(101801,4,30305,3,1672319027),(101802,4,30306,3,1672319027),(101803,4,30307,3,1672319027),(101804,4,30308,3,1672319027),(101805,4,30309,3,1672319027),(101806,4,30310,3,1672319027),(101807,4,30311,3,1672319027),(101808,4,30312,3,1672319027),(101809,4,30313,3,1672319027),(101810,4,30314,3,1672319027),(101811,4,30315,3,1672319027),(101812,4,30316,3,1672319027),(101813,4,30317,3,1672319027),(101814,4,30318,3,1672319027),(101815,4,30319,3,1672319027),(101816,4,30320,3,1672319027),(101817,4,30321,3,1672319027),(101818,4,30322,3,1672319027),(101819,4,30323,3,1672319027),(101820,4,30324,3,1672319027),(101821,4,30325,3,1672319027),(101822,4,30326,3,1672319027),(101823,4,30327,3,1672319027),(101824,4,30328,3,1672319027),(101825,4,30329,3,1672319027),(101826,4,30330,3,1672319027),(101827,4,30331,3,1672319027),(101828,4,30332,3,1672319027),(101829,4,30333,3,1672319027),(101830,4,30334,3,1672319027),(101831,4,30335,3,1672319027),(101832,4,30336,3,1672319027),(101833,4,30337,3,1672319027),(101834,4,30338,3,1672319027),(101835,4,30339,3,1672319027),(101836,4,30340,3,1672319027),(101837,4,30341,3,1672319027),(101838,4,30342,3,1672319027),(101839,4,30343,3,1672319027),(101840,4,30344,3,1672319027),(101841,4,30345,3,1672319027),(101842,4,30346,3,1672319027),(101843,4,30347,3,1672319027),(101844,4,30348,3,1672319027),(101845,4,30349,3,1672319027),(101846,4,30350,3,1672319027),(101847,4,30351,3,1672319027),(101848,4,30352,3,1672319027),(101849,4,30353,3,1672319027),(101850,4,30354,3,1672319027),(101851,4,30355,3,1672319027),(101852,4,30356,3,1672319027),(101853,4,30357,3,1672319027),(101854,4,30358,3,1672319027),(101855,4,30359,3,1672319027),(101856,4,30360,3,1672319027),(101857,4,30361,3,1672319027),(101858,4,30362,3,1672319027),(101859,4,30363,3,1672319027),(101860,4,30364,3,1672319027),(101861,4,30365,3,1672319027),(101862,4,30366,3,1672319027),(101863,4,30367,3,1672319027),(101864,4,30368,3,1672319027),(101865,4,30369,3,1672319027),(101866,4,30370,3,1672319027),(101867,4,30371,3,1672319027),(101868,4,30372,3,1672319027),(101869,4,30373,3,1672319027),(101870,4,30374,3,1672319027),(101871,4,30375,3,1672319027),(101872,4,30376,3,1672319027),(101873,4,30377,3,1672319027),(101874,4,30378,3,1672319027),(101875,4,30379,3,1672319027),(101876,4,30380,3,1672319027),(101877,4,30381,3,1672319027),(101878,4,30382,3,1672319027),(101879,4,30383,3,1672319027),(101880,4,30384,3,1672319027),(101881,4,30385,3,1672319027),(101882,4,30386,3,1672319027),(101883,4,30387,3,1672319027),(101884,4,30388,3,1672319027),(101885,4,30389,3,1672319027),(101886,4,30390,3,1672319027),(101887,4,30391,3,1672319027),(101888,4,30392,3,1672319027),(101889,4,30393,3,1672319027),(101890,4,30394,3,1672319027),(101891,4,30395,3,1672319027),(101892,4,30396,3,1672319027),(101893,4,30397,3,1672319027),(101894,4,30398,3,1672319027),(101895,4,30399,3,1672319027),(101896,4,30400,3,1672319027),(101897,4,30401,3,1672319027),(101898,4,30402,3,1672319027),(101899,4,30403,3,1672319027),(101900,4,30404,3,1672319027),(101901,4,30405,3,1672319027),(101902,4,30406,3,1672319027),(101903,4,30407,3,1672319027),(101904,4,30408,3,1672319027),(101905,4,30409,3,1672319027),(101906,4,30410,3,1672319027),(101907,4,30411,3,1672319027),(101908,4,30412,3,1672319027),(101909,4,30413,3,1672319027),(101910,4,30414,3,1672319027),(101911,4,30415,3,1672319027),(101912,4,30416,3,1672319027),(101913,4,30417,3,1672319027),(101914,4,30418,3,1672319027),(101915,4,30419,3,1672319027),(101916,4,30420,3,1672319027),(101917,4,30421,3,1672319027),(101918,4,30422,3,1672319027),(101919,4,30423,3,1672319027),(101920,4,30424,3,1672319027),(101921,4,30425,3,1672319027),(101922,4,30426,3,1672319027),(101923,4,30427,3,1672319027),(101924,4,30428,3,1672319027),(101925,4,30429,3,1672319027),(101926,4,30430,3,1672319027),(101927,4,30431,3,1672319027),(101928,4,30432,3,1672319027),(101929,4,30433,3,1672319027),(101930,4,30434,3,1672319027),(101931,4,30435,3,1672319027),(101932,4,30436,3,1672319027),(101933,4,30437,3,1672319027),(101934,4,30438,3,1672319027),(101935,4,30439,3,1672319027),(101936,4,30440,3,1672319027),(101937,4,30441,3,1672319027),(101938,4,30442,3,1672319027),(101939,4,30443,3,1672319027),(101940,4,30444,3,1672319027),(101941,4,30445,3,1672319027),(101942,4,30446,3,1672319027),(101943,4,30447,3,1672319027),(101944,4,30448,3,1672319027),(101945,4,30449,3,1672319027),(101946,4,30450,3,1672319027),(101947,4,30451,3,1672319027),(101948,4,30452,3,1672319027),(101949,4,30453,3,1672319027),(101950,4,30454,3,1672319027),(101951,4,30455,3,1672319027),(101952,4,30456,3,1672319027),(101953,4,30457,3,1672319027),(101954,4,30458,3,1672319027),(101955,4,30459,3,1672319027),(101956,4,30460,3,1672319027),(101957,4,30461,3,1672319027),(101958,4,30462,3,1672319027),(101959,4,30463,3,1672319027),(101960,4,30464,3,1672319027),(101961,4,30465,3,1672319027),(101962,4,30466,3,1672319027),(101963,4,30467,3,1672319027),(101964,4,30468,3,1672319027),(101965,4,30469,3,1672319027),(101966,4,30470,3,1672319027),(101967,4,30471,3,1672319027),(101968,4,30472,3,1672319027),(101969,4,30473,3,1672319027),(101970,4,30474,3,1672319027),(101971,4,30475,3,1672319027),(101972,4,30476,3,1672319027),(101973,4,30477,3,1672319027),(101974,4,30478,3,1672319027),(101975,4,30479,3,1672319027),(101976,4,30480,3,1672319027),(101977,4,30481,3,1672319027),(101978,4,30482,3,1672319027),(101979,4,30483,3,1672319027),(101980,4,30484,3,1672319027),(101981,4,30485,3,1672319027),(101982,4,30486,3,1672319027),(101983,4,30487,3,1672319027),(101984,4,30488,3,1672319027),(101985,4,30489,3,1672319027),(101986,4,30490,3,1672319027),(101987,4,30491,3,1672319027),(101988,4,30492,3,1672319027),(101989,4,30493,3,1672319027),(101990,4,30494,3,1672319027),(101991,4,30495,3,1672319027),(101992,4,30496,3,1672319027),(101993,4,30497,3,1672319027),(101994,4,30498,3,1672319027),(101995,4,30499,3,1672319027),(101996,4,30500,3,1672319027),(101997,4,30501,3,1672319027),(101998,4,30502,3,1672319027),(101999,4,30503,3,1672319027),(102000,4,30504,3,1672319027),(102001,4,30505,3,1672319027),(102002,4,30506,3,1672319027),(102003,4,30507,3,1672319027),(102004,4,30508,3,1672319027),(102005,4,30509,3,1672319027),(102006,4,30510,3,1672319027),(102007,4,30511,3,1672319027),(102008,4,30512,3,1672319027),(102009,4,30513,3,1672319027),(102010,4,30514,3,1672319027),(102011,4,30515,3,1672319027),(102012,4,30516,3,1672319027),(102013,4,30517,3,1672319027),(102014,4,30518,3,1672319027),(102015,4,30519,3,1672319027),(102016,4,30520,3,1672319027),(102017,4,30521,3,1672319027),(102018,4,30522,3,1672319027),(102019,4,30523,3,1672319027),(102020,4,30524,3,1672319027),(102021,4,30525,3,1672319027),(102022,4,30526,3,1672319027),(102023,4,30527,3,1672319027),(102024,4,30528,3,1672319027),(102025,4,30529,3,1672319027),(102026,4,30530,3,1672319027),(102027,4,30531,3,1672319027),(102028,4,30532,3,1672319027),(102029,4,30533,3,1672319027),(102030,4,30534,3,1672319027),(102031,4,30535,3,1672319027),(102032,4,30536,3,1672319027),(102033,4,30537,3,1672319027),(102034,4,30538,3,1672319027),(102035,4,30539,3,1672319027),(102036,4,30540,3,1672319027),(102037,4,30541,3,1672319027),(102038,4,30542,3,1672319027),(102039,4,30543,3,1672319027),(102040,4,30544,3,1672319027),(102041,4,30545,3,1672319027),(102042,4,30546,3,1672319027),(102043,4,30547,3,1672319027),(102044,4,30548,3,1672319027),(102045,4,30549,3,1672319027),(102046,4,30550,3,1672319027),(102047,4,30551,3,1672319027),(102048,4,30552,3,1672319027),(102049,4,30553,3,1672319027),(102050,4,30554,3,1672319027),(102051,4,30555,3,1672319027),(102052,4,30556,3,1672319027),(102053,4,30557,3,1672319027),(102054,4,30558,3,1672319027),(102055,4,30559,3,1672319027),(102056,4,30560,3,1672319027),(102057,4,30561,3,1672319027),(102058,4,30562,3,1672319027),(102059,4,30563,3,1672319027),(102060,4,30564,3,1672319027),(102061,4,30565,3,1672319027),(102062,4,30566,3,1672319027),(102063,4,30567,3,1672319027),(102064,4,30568,3,1672319027),(102065,4,30569,3,1672319027),(102066,4,30570,3,1672319027),(102067,4,30571,3,1672319027),(102068,4,30572,3,1672319027),(102069,4,30573,3,1672319027),(102070,4,30574,3,1672319027),(102071,4,30575,3,1672319027),(102072,4,30576,3,1672319027),(102073,4,30577,3,1672319027),(102074,4,30578,3,1672319027),(102075,4,30579,3,1672319027),(102076,4,30580,3,1672319027),(102077,4,30581,3,1672319027),(102078,4,30582,3,1672319027),(102079,4,30583,3,1672319027),(102080,4,30584,3,1672319027),(102081,4,30585,3,1672319027),(102082,4,30586,3,1672319027),(102083,4,30587,3,1672319027),(102084,4,30588,3,1672319027),(102085,4,30589,3,1672319027),(102086,4,30590,3,1672319027),(102087,4,30591,3,1672319027),(102088,4,30592,3,1672319027),(102089,4,30593,3,1672319027),(102090,4,30594,3,1672319027),(102091,4,30595,3,1672319027),(102092,4,30596,3,1672319027),(102093,4,30597,3,1672319027),(102094,4,30598,3,1672319027),(102095,4,30599,3,1672319027),(102096,4,30600,3,1672319027),(102097,4,30601,3,1672319027),(102098,4,30602,3,1672319027),(102099,4,30603,3,1672319027),(102100,4,30604,3,1672319027),(102101,4,30605,3,1672319027),(102102,4,30606,3,1672319027),(102103,4,30607,3,1672319027),(102104,4,30608,3,1672319027),(102105,4,30609,3,1672319027),(102106,4,30610,3,1672319027),(102107,4,30611,3,1672319027),(102108,4,30612,3,1672319027),(102109,4,30613,3,1672319027),(102110,4,30614,3,1672319027),(102111,4,30615,3,1672319027),(102112,4,30616,3,1672319027),(102113,4,30617,3,1672319027),(102114,4,30618,3,1672319027),(102115,4,30619,3,1672319027),(102116,4,30620,3,1672319027),(102117,4,30621,3,1672319027),(102118,4,30622,3,1672319027),(102119,4,30623,3,1672319027),(102120,4,30624,3,1672319027),(102121,4,30625,3,1672319027),(102122,4,30626,3,1672319027),(102123,4,30627,3,1672319027),(102124,4,30628,3,1672319027),(102125,4,30629,3,1672319027),(102126,4,30630,3,1672319027),(102127,4,30631,3,1672319027),(102128,4,30632,3,1672319027),(102129,4,30633,3,1672319027),(102130,4,30634,3,1672319027),(102131,4,30635,3,1672319027),(102132,4,30636,3,1672319027),(102133,4,30637,3,1672319027),(102134,4,30638,3,1672319027),(102135,4,30639,3,1672319027),(102136,4,30640,3,1672319027),(102137,4,30641,3,1672319027),(102138,4,30642,3,1672319027),(102139,4,30643,3,1672319027),(102140,4,30644,3,1672319027),(102141,4,30645,3,1672319027),(102142,4,30646,3,1672319027),(102143,4,30647,3,1672319027),(102144,4,30648,3,1672319027),(102145,4,30649,3,1672319027),(102146,4,30650,3,1672319027),(102147,4,30651,3,1672319027),(102148,4,30652,3,1672319027),(102149,4,30653,3,1672319027),(102150,4,30654,3,1672319027),(102151,4,30655,3,1672319027),(102152,4,30656,3,1672319027),(102153,4,30657,3,1672319027),(102154,4,30658,3,1672319027),(102155,4,30659,3,1672319027),(102156,4,30660,3,1672319027),(102157,4,30661,3,1672319027),(102158,4,30662,3,1672319027),(102159,4,30663,3,1672319027),(102160,4,30664,3,1672319027),(102161,4,30665,3,1672319027),(102162,4,30666,3,1672319027),(102163,4,30667,3,1672319027),(102164,4,30668,3,1672319027),(102165,4,30669,3,1672319027),(102166,4,30670,3,1672319027),(102167,4,30671,3,1672319027),(102168,4,30672,3,1672319027),(102169,4,30673,3,1672319027),(102170,4,30674,3,1672319027),(102171,4,30675,3,1672319027),(102172,4,30676,3,1672319027),(102173,4,30677,3,1672319027),(102174,4,30678,3,1672319027),(102175,4,30679,3,1672319027),(102176,4,30680,3,1672319027),(102177,4,30681,3,1672319027),(102178,4,30682,3,1672319027),(102179,4,30683,3,1672319027),(102180,4,30684,3,1672319027),(102181,4,30685,3,1672319027),(102182,4,30686,3,1672319027),(102183,4,30687,3,1672319027),(102184,4,30688,3,1672319027),(102185,4,30689,3,1672319027),(102186,4,30690,3,1672319027),(102187,4,30691,3,1672319027),(102188,4,30692,3,1672319027),(102189,4,30693,3,1672319027),(102190,4,30694,3,1672319027),(102191,4,30695,3,1672319027),(102192,4,30696,3,1672319027),(102193,4,30697,3,1672319027),(102194,4,30698,3,1672319027),(102195,4,30699,3,1672319027),(102196,4,30700,3,1672319027),(102197,4,30701,3,1672319027),(102198,4,30702,3,1672319027),(102199,4,30703,3,1672319027),(102200,4,30704,3,1672319027),(102201,4,30705,3,1672319027),(102202,4,30706,3,1672319027),(102203,4,30707,3,1672319027),(102204,4,30708,3,1672319027),(102205,4,30709,3,1672319027),(102206,4,30710,3,1672319027),(102207,4,30711,3,1672319027),(102208,4,30712,3,1672319027),(102209,4,30713,3,1672319027),(102210,4,30714,3,1672319027),(102211,4,30715,3,1672319027),(102212,4,30716,3,1672319027),(102213,4,30717,3,1672319027),(102214,4,30718,3,1672319027),(102215,4,30719,3,1672319027),(102216,4,30720,3,1672319027),(102217,4,30721,3,1672319027),(102218,4,30722,3,1672319027),(102219,4,30723,3,1672319027),(102220,4,30724,3,1672319027),(102221,4,30725,3,1672319027),(102222,4,30726,3,1672319027),(102223,4,30727,3,1672319027),(102224,4,30728,3,1672319027),(102225,4,30729,3,1672319027),(102226,4,30730,3,1672319027),(102227,4,30731,3,1672319027),(102228,4,30732,3,1672319027),(102229,4,30733,3,1672319027),(102230,4,30734,3,1672319027),(102231,4,30735,3,1672319027),(102232,4,30736,3,1672319027),(102233,4,30737,3,1672319027),(102234,4,30738,3,1672319027),(102235,4,30739,3,1672319027),(102236,4,30740,3,1672319027),(102237,4,30741,3,1672319027),(102238,4,30742,3,1672319027),(102239,4,30743,3,1672319027),(102240,4,30744,3,1672319027),(102241,4,30745,3,1672319027),(102242,4,30746,3,1672319027),(102243,4,30747,3,1672319027),(102244,4,30748,3,1672319027),(102245,4,30749,3,1672319027),(102246,4,30750,3,1672319027),(102247,4,30751,3,1672319027),(102248,4,30752,3,1672319027),(102249,4,30753,3,1672319027),(102250,4,30754,3,1672319027),(102251,4,30755,3,1672319027),(102252,4,30756,3,1672319027),(102253,4,30757,3,1672319027),(102254,4,30758,3,1672319027),(102255,4,30759,3,1672319027),(102256,4,30760,3,1672319027),(102257,4,30761,3,1672319027),(102258,4,30762,3,1672319027),(102259,4,30763,3,1672319027),(102260,4,30764,3,1672319027),(102261,4,30765,3,1672319027),(102262,4,30766,3,1672319027),(102263,4,30767,3,1672319027),(102264,4,30768,3,1672319027),(102265,4,30769,3,1672319027),(102266,4,30770,3,1672319027),(102267,4,30771,3,1672319027),(102268,4,30772,3,1672319027),(102269,4,30773,3,1672319027),(102270,4,30774,3,1672319027),(102271,4,30775,3,1672319027),(102272,4,30776,3,1672319027),(102273,4,30777,3,1672319027),(102274,4,30778,3,1672319027),(102275,4,30779,3,1672319027),(102276,4,30780,3,1672319027),(102277,4,30781,3,1672319027),(102278,4,30782,3,1672319027),(102279,4,30783,3,1672319027),(102280,4,30784,3,1672319027),(102281,4,30785,3,1672319027),(102282,4,30786,3,1672319027),(102283,4,30787,3,1672319027),(102284,4,30788,3,1672319027),(102285,4,30789,3,1672319027),(102286,4,30790,3,1672319027),(102287,4,30791,3,1672319027),(102288,4,30792,3,1672319027),(102289,4,30793,3,1672319027),(102290,4,30794,3,1672319027),(102291,4,30795,3,1672319027),(102292,4,30796,3,1672319027),(102293,4,30797,3,1672319027),(102294,4,30798,3,1672319027),(102295,4,30799,3,1672319027),(102296,4,30800,3,1672319027),(102297,4,30801,3,1672319027),(102298,4,30802,3,1672319027),(102299,4,30803,3,1672319027),(102300,4,30804,3,1672319027),(102301,4,30805,3,1672319027),(102302,4,30806,3,1672319027),(102303,4,30807,3,1672319027),(102304,4,30808,3,1672319027),(102305,4,30809,3,1672319027),(102306,4,30810,3,1672319027),(102307,4,30811,3,1672319027),(102308,4,30812,3,1672319027),(102309,4,30813,3,1672319027),(102310,4,30814,3,1672319027),(102311,4,30815,3,1672319027),(102312,4,30816,3,1672319027),(102313,4,30817,3,1672319027),(102314,4,30818,3,1672319027),(102315,4,30819,3,1672319027),(102316,4,30820,3,1672319027),(102317,4,30821,3,1672319027),(102318,4,30822,3,1672319027),(102319,4,30823,3,1672319027),(102320,4,30824,3,1672319027),(102321,4,30825,3,1672319027),(102322,4,30826,3,1672319027),(102323,4,30827,3,1672319027),(102324,4,30828,3,1672319027),(102325,4,30829,3,1672319027),(102326,4,30830,3,1672319027),(102327,4,30831,3,1672319027),(102328,4,30832,3,1672319027),(102329,4,30833,3,1672319027),(102330,4,30834,3,1672319027),(102331,4,30835,3,1672319027),(102332,4,30836,3,1672319027),(102333,4,30837,3,1672319027),(102334,4,30838,3,1672319027),(102335,4,30839,3,1672319027),(102336,4,30840,3,1672319027),(102337,4,30841,3,1672319027),(102338,4,30842,3,1672319027),(102339,4,30843,3,1672319027),(102340,4,30844,3,1672319027),(102341,4,30845,3,1672319027),(102342,4,30846,3,1672319027),(102343,4,30847,3,1672319027),(102344,4,30848,3,1672319027),(102345,4,30849,3,1672319027),(102346,4,30850,3,1672319027),(102347,4,30851,3,1672319027),(102348,4,30852,3,1672319027),(102349,4,30853,3,1672319027),(102350,4,30854,3,1672319027),(102351,4,30855,3,1672319027),(102352,4,30856,3,1672319027),(102353,4,30857,3,1672319027),(102354,4,30858,3,1672319027),(102355,4,30859,3,1672319027),(102356,4,30860,3,1672319027),(102357,4,30861,3,1672319027),(102358,4,30862,3,1672319027),(102359,4,30863,3,1672319027),(102360,4,30864,3,1672319027),(102361,4,30865,3,1672319027),(102362,4,30866,3,1672319027),(102363,4,30867,3,1672319027),(102364,4,30868,3,1672319027),(102365,4,30869,3,1672319027),(102366,4,30870,3,1672319027),(102367,4,30871,3,1672319027),(102368,4,30872,3,1672319027),(102369,4,30873,3,1672319027),(102370,4,30874,3,1672319027),(102371,4,30875,3,1672319027),(102372,4,30876,3,1672319027),(102373,4,30877,3,1672319027),(102374,4,30878,3,1672319027),(102375,4,30879,3,1672319027),(102376,4,30880,3,1672319027),(102377,4,30881,3,1672319027),(102378,4,30882,3,1672319027),(102379,4,30883,3,1672319027),(102380,4,30884,3,1672319027),(102381,4,30885,3,1672319027),(102382,4,30886,3,1672319027),(102383,4,30887,3,1672319027),(102384,4,30888,3,1672319027),(102385,4,30889,3,1672319027),(102386,4,30890,3,1672319027),(102387,4,30891,3,1672319027),(102388,4,30892,3,1672319027),(102389,4,30893,3,1672319027),(102390,4,30894,3,1672319027),(102391,4,30895,3,1672319027),(102392,4,30896,3,1672319027),(102393,4,30897,3,1672319027),(102394,4,30898,3,1672319027),(102395,4,30899,3,1672319027),(102396,4,30900,3,1672319027),(102397,4,30901,3,1672319027),(102398,4,30902,3,1672319027),(102399,4,30903,3,1672319027),(102400,4,30904,3,1672319027),(102401,4,30905,3,1672319027),(102402,4,30906,3,1672319027),(102403,4,30907,3,1672319027),(102404,4,30908,3,1672319027),(102405,4,30909,3,1672319027),(102406,4,30910,3,1672319027),(102407,4,30911,3,1672319027),(102408,4,30912,3,1672319027),(102409,4,30913,3,1672319027),(102410,4,30914,3,1672319027),(102411,4,30915,3,1672319027),(102412,4,30916,3,1672319027),(102413,4,30917,3,1672319027),(102414,4,30918,3,1672319027),(102415,4,30919,3,1672319027),(102416,4,30920,3,1672319027),(102417,4,30921,3,1672319027),(102418,4,30922,3,1672319027),(102419,4,30923,3,1672319027),(102420,4,30924,3,1672319027),(102421,4,30925,3,1672319027),(102422,4,30926,3,1672319027),(102423,4,30927,3,1672319027),(102424,4,30928,3,1672319027),(102425,4,30929,3,1672319027),(102426,4,30930,3,1672319027),(102427,4,30931,3,1672319027),(102428,4,30932,3,1672319027),(102429,4,30933,3,1672319027),(102430,4,30934,3,1672319027),(102431,4,30935,3,1672319027),(102432,4,30936,3,1672319027),(102433,4,30937,3,1672319027),(102434,4,30938,3,1672319027),(102435,4,30939,3,1672319027),(102436,4,30940,3,1672319027),(102437,4,30941,3,1672319027),(102438,4,30942,3,1672319027),(102439,4,30943,3,1672319027),(102440,4,30944,3,1672319027),(102441,4,30945,3,1672319027),(102442,4,30946,3,1672319027),(102443,4,30947,3,1672319027),(102444,4,30948,3,1672319027),(102445,4,30949,3,1672319027),(102446,4,30950,3,1672319027),(102447,4,30951,3,1672319027),(102448,4,30952,3,1672319027),(102449,4,30953,3,1672319027),(102450,4,30954,3,1672319027),(102451,4,30955,3,1672319027),(102452,4,30956,3,1672319027),(102453,4,30957,3,1672319027),(102454,4,30958,3,1672319027),(102455,4,30959,3,1672319027),(102456,4,30960,3,1672319027),(102457,4,30961,3,1672319027),(102458,4,30962,3,1672319027),(102459,4,30963,3,1672319027),(102460,4,30964,3,1672319027),(102461,4,30965,3,1672319027),(102462,4,30966,3,1672319027),(102463,4,30967,3,1672319027),(102464,4,30968,3,1672319027),(102465,4,30969,3,1672319027),(102466,4,30970,3,1672319027),(102467,4,30971,3,1672319027),(102468,4,30972,3,1672319027),(102469,4,30973,3,1672319027),(102470,4,30974,3,1672319027),(102471,4,30975,3,1672319027),(102472,4,30976,3,1672319027),(102473,4,30977,3,1672319027),(102474,4,30978,3,1672319027),(102475,4,30979,3,1672319027),(102476,4,30980,3,1672319027),(102477,4,30981,3,1672319027),(102478,4,30982,3,1672319027),(102479,4,30983,3,1672319027),(102480,4,30984,3,1672319027),(102481,4,30985,3,1672319027),(102482,4,30986,3,1672319027),(102483,4,30987,3,1672319027),(102484,4,30988,3,1672319027),(102485,4,30989,3,1672319027),(102486,4,30990,3,1672319027),(102487,4,30991,3,1672319027),(102488,4,30992,3,1672319027),(102489,4,30993,3,1672319027),(102490,4,30994,3,1672319027),(102491,4,30995,3,1672319027),(102492,4,30996,3,1672319027),(102493,4,30997,3,1672319027),(102494,4,30998,3,1672319027),(102495,4,30999,3,1672319027),(102496,4,31000,3,1672319027),(102497,4,31001,3,1672319027),(102498,4,31002,3,1672319027),(102499,4,31003,3,1672319027),(102500,4,31004,3,1672319027),(102501,4,31005,3,1672319027),(102502,4,31006,3,1672319027),(102503,4,31007,3,1672319027),(102504,4,31008,3,1672319027),(102505,4,31009,3,1672319027),(102506,4,31010,3,1672319027),(102507,4,31011,3,1672319027),(102508,4,31012,3,1672319027),(102509,4,31013,3,1672319027),(102510,4,31014,3,1672319027),(102511,4,31015,3,1672319027),(102512,4,31016,3,1672319027),(102513,4,31017,3,1672319027),(102514,4,31018,3,1672319027),(102515,4,31019,3,1672319027),(102516,4,31020,3,1672319027),(102517,4,31021,3,1672319027),(102518,4,31022,3,1672319027),(102519,4,31023,3,1672319027),(102520,4,31024,3,1672319027),(102521,4,31025,3,1672319027),(102522,4,31026,3,1672319027),(102523,4,31027,3,1672319027),(102524,4,31028,3,1672319027),(102525,4,31029,3,1672319027),(102526,4,31030,3,1672319027),(102527,4,31031,3,1672319027),(102528,4,31032,3,1672319027),(102529,4,31033,3,1672319027),(102530,4,31034,3,1672319027),(102531,4,31035,3,1672319027),(102532,4,31036,3,1672319027),(102533,4,31037,3,1672319027),(102534,4,31038,3,1672319027),(102535,4,31039,3,1672319027),(102536,4,31040,3,1672319027),(102537,4,31041,3,1672319027),(102538,4,31042,3,1672319027),(102539,4,31043,3,1672319027),(102540,4,31044,3,1672319027),(102541,4,31045,3,1672319027),(102542,4,31046,3,1672319027),(102543,4,31047,3,1672319027),(102544,4,31048,3,1672319027),(102545,4,31049,3,1672319027),(102546,4,31050,3,1672319027),(102547,4,31051,3,1672319027),(102548,4,31052,3,1672319027),(102549,4,31053,3,1672319027),(102550,4,31054,3,1672319027),(102551,4,31055,3,1672319027),(102552,4,31056,3,1672319027),(102553,4,31057,3,1672319027),(102554,4,31058,3,1672319027),(102555,4,31059,3,1672319027),(102556,4,31060,3,1672319027),(102557,4,31061,3,1672319027),(102558,4,31062,3,1672319027),(102559,4,31063,3,1672319027),(102560,4,31064,3,1672319027),(102561,4,31065,3,1672319027),(102562,4,31066,3,1672319027),(102563,4,31067,3,1672319027),(102564,4,31068,3,1672319027),(102565,4,31069,3,1672319027),(102566,4,31070,3,1672319027),(102567,4,31071,3,1672319027),(102568,4,31072,3,1672319027),(102569,4,31073,3,1672319027),(102570,4,31074,3,1672319027),(102571,4,31075,3,1672319027),(102572,4,31076,3,1672319027),(102573,4,31077,3,1672319027),(102574,4,31078,3,1672319027),(102575,4,31079,3,1672319027),(102576,4,31080,3,1672319027),(102577,4,31081,3,1672319027),(102578,4,31082,3,1672319027),(102579,4,31083,3,1672319027),(102580,4,31084,3,1672319027),(102581,4,31085,3,1672319027),(102582,4,31086,3,1672319027),(102583,4,31087,3,1672319027),(102584,4,31088,3,1672319027),(102585,4,31089,3,1672319027),(102586,4,31090,3,1672319027),(102587,4,31091,3,1672319027),(102588,4,31092,3,1672319027),(102589,4,31093,3,1672319027),(102590,4,31094,3,1672319027),(102591,4,31095,3,1672319027),(102592,4,31096,3,1672319027),(102593,4,31097,3,1672319027),(102594,4,31098,3,1672319027),(102595,4,31099,3,1672319027),(102596,4,31100,3,1672319027),(102597,4,31101,3,1672319027),(102598,4,31102,3,1672319027),(102599,4,31103,3,1672319027),(102600,4,31104,3,1672319027),(102601,4,31105,3,1672319027),(102602,4,31106,3,1672319027),(102603,4,31107,3,1672319027),(102604,4,31108,3,1672319027),(102605,4,31109,3,1672319027),(102606,4,31110,3,1672319027),(102607,4,31111,3,1672319027),(102608,4,31112,3,1672319027),(102609,4,31113,3,1672319027),(102610,4,31114,3,1672319027),(102611,4,31115,3,1672319027),(102612,4,31116,3,1672319027),(102613,4,31117,3,1672319027),(102614,4,31118,3,1672319027),(102615,4,31119,3,1672319027),(102616,4,31120,3,1672319027),(102617,4,31121,3,1672319027),(102618,4,31122,3,1672319027),(102619,4,31123,3,1672319027),(102620,4,31124,3,1672319027),(102621,4,31125,3,1672319027),(102622,4,31126,3,1672319027),(102623,4,31127,3,1672319027),(102624,4,31128,3,1672319027),(102625,4,31129,3,1672319027),(102626,4,31130,3,1672319027),(102627,4,31131,3,1672319027),(102628,4,31132,3,1672319027),(102629,4,31133,3,1672319027),(102630,4,31134,3,1672319027),(102631,4,31135,3,1672319027),(102632,4,31136,3,1672319027),(102633,4,31137,3,1672319027),(102634,4,31138,3,1672319027),(102635,4,31139,3,1672319027),(102636,4,31140,3,1672319027),(102637,4,31141,3,1672319027),(102638,4,31142,3,1672319027),(102639,4,31143,3,1672319027),(102640,4,31144,3,1672319027),(102641,4,31145,3,1672319027),(102642,4,31146,3,1672319027),(102643,4,31147,3,1672319027),(102644,4,31148,3,1672319027),(102645,4,31149,3,1672319027),(102646,4,31150,3,1672319027),(102647,4,31151,3,1672319027),(102648,4,31152,3,1672319027),(102649,4,31153,3,1672319027),(102650,4,31154,3,1672319027),(102651,4,31155,3,1672319027),(102652,4,31156,3,1672319027),(102653,4,31157,3,1672319027),(102654,4,31158,3,1672319027),(102655,4,31159,3,1672319027),(102656,4,31160,3,1672319027),(102657,4,31161,3,1672319027),(102658,4,31162,3,1672319027),(102659,4,31163,3,1672319027),(102660,4,31164,3,1672319027),(102661,4,31165,3,1672319027),(102662,4,31166,3,1672319027),(102663,4,31167,3,1672319027),(102664,4,31168,3,1672319027),(102665,4,31169,3,1672319027),(102666,4,31170,3,1672319027),(102667,4,31171,3,1672319027),(102668,4,31172,3,1672319027),(102669,4,31173,3,1672319027),(102670,4,31174,3,1672319027),(102671,4,31175,3,1672319027),(102672,4,31176,3,1672319027),(102673,4,31177,3,1672319027),(102674,4,31178,3,1672319027),(102675,4,31179,3,1672319027),(102676,4,31180,3,1672319027),(102677,4,31181,3,1672319027),(102678,4,31182,3,1672319027),(102679,4,31183,3,1672319027),(102680,4,31184,3,1672319027),(102681,4,31185,3,1672319027),(102682,4,31186,3,1672319027),(102683,4,31187,3,1672319027),(102684,4,31188,3,1672319027),(102685,4,31189,3,1672319027),(102686,4,31190,3,1672319027),(102687,4,31191,3,1672319027),(102688,4,31192,3,1672319027),(102689,4,31193,3,1672319027),(102690,4,31194,3,1672319027),(102691,4,31195,3,1672319027),(102692,4,31196,3,1672319027),(102693,4,31197,3,1672319027),(102694,4,31198,3,1672319027),(102695,4,31199,3,1672319027),(102696,4,31200,3,1672319027),(102697,4,31201,3,1672319027),(102698,4,31202,3,1672319027),(102699,4,31203,3,1672319027),(102700,4,31204,3,1672319027),(102701,4,31205,3,1672319027),(102702,4,31206,3,1672319027),(102703,4,31207,3,1672319027),(102704,4,31208,3,1672319027),(102705,4,31209,3,1672319027),(102706,4,31210,3,1672319027),(102707,4,31211,3,1672319027),(102708,4,31212,3,1672319027),(102709,4,31213,3,1672319027),(102710,4,31214,3,1672319027),(102711,4,31215,3,1672319027),(102712,4,31216,3,1672319027),(102713,4,31217,3,1672319027),(102714,4,31218,3,1672319027),(102715,4,31219,3,1672319027),(102716,4,31220,3,1672319027),(102717,4,31221,3,1672319027),(102718,4,31222,3,1672319027),(102719,4,31223,3,1672319027),(102720,4,31224,3,1672319027),(102721,4,31225,3,1672319027),(102722,4,31226,3,1672319027),(102723,4,31227,3,1672319027),(102724,4,31228,3,1672319027),(102725,4,31229,3,1672319027),(102726,4,31230,3,1672319027),(102727,4,31231,3,1672319027),(102728,4,31232,3,1672319027),(102729,4,31233,3,1672319027),(102730,4,31234,3,1672319027),(102731,4,31235,3,1672319027),(102732,4,31236,3,1672319027),(102733,4,31237,3,1672319027),(102734,4,31238,3,1672319027),(102735,4,31239,3,1672319027),(102736,4,31240,3,1672319027),(102737,4,31241,3,1672319027),(102738,4,31242,3,1672319027),(102739,4,31243,3,1672319027),(102740,4,31244,3,1672319027),(102741,4,31245,3,1672319027),(102742,4,31246,3,1672319027),(102743,4,31247,3,1672319027),(102744,4,31248,3,1672319027),(102745,4,31249,3,1672319027),(102746,4,31250,3,1672319027),(102747,4,31251,3,1672319027),(102748,4,31252,3,1672319027),(102749,4,31253,3,1672319027),(102750,4,31254,3,1672319027),(102751,4,31255,3,1672319027),(102752,4,31256,3,1672319027),(102753,4,31257,3,1672319027),(102754,4,31258,3,1672319027),(102755,4,31259,3,1672319027),(102756,4,31260,3,1672319027),(102757,4,31261,3,1672319027),(102758,4,31262,3,1672319027),(102759,4,31263,3,1672319027),(102760,4,31264,3,1672319027),(102761,4,31265,3,1672319027),(102762,4,31266,3,1672319027),(102763,4,31267,3,1672319027),(102764,4,31268,3,1672319027),(102765,4,31269,3,1672319027),(102766,4,31270,3,1672319027),(102767,4,31271,3,1672319027),(102768,4,31272,3,1672319027),(102769,4,31273,3,1672319027),(102770,4,31274,3,1672319027),(102771,4,31275,3,1672319027),(102772,4,31276,3,1672319027),(102773,4,31277,3,1672319027),(102774,4,31278,3,1672319027),(102775,4,31279,3,1672319027),(102776,4,31280,3,1672319027),(102777,4,31281,3,1672319027),(102778,4,31282,3,1672319027),(102779,4,31283,3,1672319027),(102780,4,31284,3,1672319027),(102781,4,31285,3,1672319027),(102782,4,31286,3,1672319027),(102783,4,31287,3,1672319027),(102784,4,31288,3,1672319027),(102785,4,31289,3,1672319027),(102786,4,31290,3,1672319027),(102787,4,31291,3,1672319027),(102788,4,31292,3,1672319027),(102789,4,31293,3,1672319027),(102790,4,31294,3,1672319027),(102791,4,31295,3,1672319027),(102792,4,31296,3,1672319027),(102793,4,31297,3,1672319027),(102794,4,31298,3,1672319027),(102795,4,31299,3,1672319027),(102796,4,31300,3,1672319027),(102797,4,31301,3,1672319027),(102798,4,31302,3,1672319027),(102799,4,31303,3,1672319027),(102800,4,31304,3,1672319027),(102801,4,31305,3,1672319027),(102802,4,31306,3,1672319027),(102803,4,31307,3,1672319027),(102804,4,31308,3,1672319027),(102805,4,31309,3,1672319027),(102806,4,31310,3,1672319027),(102807,4,31311,3,1672319027),(102808,4,31312,3,1672319027),(102809,4,31313,3,1672319027),(102810,4,31314,3,1672319027),(102811,4,31315,3,1672319027),(102812,4,31316,3,1672319027),(102813,4,31317,3,1672319027),(102814,4,31318,3,1672319027),(102815,4,31319,3,1672319027),(102816,4,31320,3,1672319027),(102817,4,31321,3,1672319027),(102818,4,31322,3,1672319027),(102819,4,31323,3,1672319027),(102820,4,31324,3,1672319027),(102821,4,31325,3,1672319027),(102822,4,31326,3,1672319027),(102823,4,31327,3,1672319027),(102824,4,31328,3,1672319027),(102825,4,31329,3,1672319027),(102826,4,31330,3,1672319027),(102827,4,31331,3,1672319027),(102828,4,31332,3,1672319027),(102829,4,31333,3,1672319027),(102830,4,31334,3,1672319027),(102831,4,31335,3,1672319027),(102832,4,31336,3,1672319027),(102833,4,31337,3,1672319027),(102834,4,31338,3,1672319027),(102835,4,31339,3,1672319027),(102836,4,31340,3,1672319027),(102837,4,31341,3,1672319027),(102838,4,31342,3,1672319027),(102839,4,31343,3,1672319027),(102840,4,31344,3,1672319027),(102841,4,31345,3,1672319027),(102842,4,31346,3,1672319027),(102843,4,31347,3,1672319027),(102844,4,31348,3,1672319027),(102845,4,31349,3,1672319027),(102846,4,31350,3,1672319027),(102847,4,31351,3,1672319027),(102848,4,31352,3,1672319027),(102849,4,31353,3,1672319027),(102850,4,31354,3,1672319027),(102851,4,31355,3,1672319027),(102852,4,31356,3,1672319027),(102853,4,31357,3,1672319027),(102854,4,31358,3,1672319027),(102855,4,31359,3,1672319027),(102856,4,31360,3,1672319027),(102857,4,31361,3,1672319027),(102858,4,31362,3,1672319027),(102859,4,31363,3,1672319027),(102860,4,31364,3,1672319027),(102861,4,31365,3,1672319027),(102862,4,31366,3,1672319027),(102863,4,31367,3,1672319027),(102864,4,31368,3,1672319027),(102865,4,31369,3,1672319027),(102866,4,31370,3,1672319027),(102867,4,31371,3,1672319027),(102868,4,31372,3,1672319027),(102869,4,31373,3,1672319027),(102870,4,31374,3,1672319027),(102871,4,31375,3,1672319027),(102872,4,31376,3,1672319027),(102873,4,31377,3,1672319027),(102874,4,31378,3,1672319027),(102875,4,31379,3,1672319027),(102876,4,31380,3,1672319027),(102877,4,31381,3,1672319027),(102878,4,31382,3,1672319027),(102879,4,31383,3,1672319027),(102880,4,31384,3,1672319027),(102881,4,31385,3,1672319027),(102882,4,31386,3,1672319027),(102883,4,31387,3,1672319027),(102884,4,31388,3,1672319027),(102885,4,31389,3,1672319027),(102886,4,31390,3,1672319027),(102887,4,31391,3,1672319027),(102888,4,31392,3,1672319027),(102889,4,31393,3,1672319027),(102890,4,31394,3,1672319027),(102891,4,31395,3,1672319027),(102892,4,31396,3,1672319027),(102893,4,31397,3,1672319027),(102894,4,31398,3,1672319027),(102895,4,31399,3,1672319027),(102896,4,31400,3,1672319027),(102897,4,31401,3,1672319027),(102898,4,31402,3,1672319027),(102899,4,31403,3,1672319027),(102900,4,31404,3,1672319027),(102901,4,31405,3,1672319027),(102902,4,31406,3,1672319027),(102903,4,31407,3,1672319027),(102904,4,31408,3,1672319027),(102905,4,31409,3,1672319027),(102906,4,31410,3,1672319027),(102907,4,31411,3,1672319027),(102908,4,31412,3,1672319027),(102909,4,31413,3,1672319027),(102910,4,31414,3,1672319027),(102911,4,31415,3,1672319027),(102912,4,31416,3,1672319027),(102913,4,31417,3,1672319027),(102914,4,31418,3,1672319027),(102915,4,31419,3,1672319027),(102916,4,31420,3,1672319027),(102917,4,31421,3,1672319027),(102918,4,31422,3,1672319027),(102919,4,31423,3,1672319027),(102920,4,31424,3,1672319027),(102921,4,31425,3,1672319027),(102922,4,31426,3,1672319027),(102923,4,31427,3,1672319027),(102924,4,31428,3,1672319027),(102925,4,31429,3,1672319027),(102926,4,31430,3,1672319027),(102927,4,31431,3,1672319027),(102928,4,31432,3,1672319027),(102929,4,31433,3,1672319027),(102930,4,31434,3,1672319027),(102931,4,31435,3,1672319027),(102932,4,31436,3,1672319027),(102933,4,31437,3,1672319027),(102934,4,31438,3,1672319027),(102935,4,31439,3,1672319027),(102936,4,31440,3,1672319027),(102937,4,31441,3,1672319027),(102938,4,31442,3,1672319027),(102939,4,31443,3,1672319027),(102940,4,31444,3,1672319027),(102941,4,31445,3,1672319027),(102942,4,31446,3,1672319027),(102943,4,31447,3,1672319027),(102944,4,31448,3,1672319027),(102945,4,31449,3,1672319027),(102946,4,31450,3,1672319027),(102947,4,31451,3,1672319027),(102948,4,31452,3,1672319027),(102949,4,31453,3,1672319027),(102950,4,31454,3,1672319027),(102951,4,31455,3,1672319027),(102952,4,31456,3,1672319027),(102953,4,31457,3,1672319027),(102954,4,31458,3,1672319027),(102955,4,31459,3,1672319027),(102956,4,31460,3,1672319027),(102957,4,31461,3,1672319027),(102958,4,31462,3,1672319027),(102959,4,31463,3,1672319027),(102960,4,31464,3,1672319027),(102961,4,31465,3,1672319027),(102962,4,31466,3,1672319027),(102963,4,31467,3,1672319027),(102964,4,31468,3,1672319027),(102965,4,31469,3,1672319027),(102966,4,31470,3,1672319027),(102967,4,31471,3,1672319027),(102968,4,31472,3,1672319027),(102969,4,31473,3,1672319027),(102970,4,31474,3,1672319027),(102971,4,31475,3,1672319027),(102972,4,31476,3,1672319027),(102973,4,31477,3,1672319027),(102974,4,31478,3,1672319027),(102975,4,31479,3,1672319027),(102976,4,31480,3,1672319027),(102977,4,31481,3,1672319027),(102978,4,31482,3,1672319027),(102979,4,31483,3,1672319027),(102980,4,31484,3,1672319027),(102981,4,31485,3,1672319027),(102982,4,31486,3,1672319027),(102983,4,31487,3,1672319027),(102984,4,31488,3,1672319027),(102985,4,31489,3,1672319027),(102986,4,31490,3,1672319027),(102987,4,31491,3,1672319027),(102988,4,31492,3,1672319027),(102989,4,31493,3,1672319027),(102990,4,31494,3,1672319027),(102991,4,31495,3,1672319027),(102992,4,31496,3,1672319027),(102993,4,31497,3,1672319027),(102994,4,31498,3,1672319027),(102995,4,31499,3,1672319027),(102996,4,31500,3,1672319027),(102997,4,31501,3,1672319027),(102998,4,31502,3,1672319027),(102999,4,31503,3,1672319027),(103000,4,31504,3,1672319027),(103001,4,31505,3,1672319027),(103002,4,31506,3,1672319027),(103003,4,31507,3,1672319027),(103004,4,31508,3,1672319027),(103005,4,31509,3,1672319027),(103006,4,31510,3,1672319027),(103007,4,31511,3,1672319027),(103008,4,31512,3,1672319027),(103009,4,31513,3,1672319027),(103010,4,31514,3,1672319027),(103011,4,31515,3,1672319027),(103012,4,31516,3,1672319027),(103013,4,31517,3,1672319027),(103014,4,31518,3,1672319027),(103015,4,31519,3,1672319027),(103016,4,31520,3,1672319027),(103017,4,31521,3,1672319027),(103018,4,31522,3,1672319027),(103019,4,31523,3,1672319027),(103020,4,31524,3,1672319027),(103021,4,31525,3,1672319027),(103022,4,31526,3,1672319027),(103023,4,31527,3,1672319027),(103024,4,31528,3,1672319027),(103025,4,31529,3,1672319027),(103026,4,31530,3,1672319027),(103027,4,31531,3,1672319027),(103028,4,31532,3,1672319027),(103029,4,31533,3,1672319027),(103030,4,31534,3,1672319027),(103031,4,31535,3,1672319027),(103032,4,31536,3,1672319027),(103033,4,31537,3,1672319027),(103034,4,31538,3,1672319027),(103035,4,31539,3,1672319027),(103036,4,31540,3,1672319027),(103037,4,31541,3,1672319027),(103038,4,31542,3,1672319027),(103039,4,31543,3,1672319027),(103040,4,31544,3,1672319027),(103041,4,31545,3,1672319027),(103042,4,31546,3,1672319027),(103043,4,31547,3,1672319027),(103044,4,31548,3,1672319027),(103045,4,31549,3,1672319027),(103046,4,31550,3,1672319027),(103047,4,31551,3,1672319027),(103048,4,31552,3,1672319027),(103049,4,31553,3,1672319027),(103050,4,31554,3,1672319027),(103051,4,31555,3,1672319027),(103052,4,31556,3,1672319027),(103053,4,31557,3,1672319027),(103054,4,31558,3,1672319027),(103055,4,31559,3,1672319027),(103056,4,31560,3,1672319027),(103057,4,31561,3,1672319027),(103058,4,31562,3,1672319027),(103059,4,31563,3,1672319027),(103060,4,31564,3,1672319027),(103061,4,31565,3,1672319027),(103062,4,31566,3,1672319027),(103063,4,31567,3,1672319027),(103064,4,31568,3,1672319027),(103065,4,31569,3,1672319027),(103066,4,31570,3,1672319027),(103067,4,31571,3,1672319027),(103068,4,31572,3,1672319027),(103069,4,31573,3,1672319027),(103070,4,31574,3,1672319027),(103071,4,31575,3,1672319027),(103072,4,31576,3,1672319027),(103073,4,31577,3,1672319027),(103074,4,31578,3,1672319027),(103075,4,31579,3,1672319027),(103076,4,31580,3,1672319027),(103077,4,31581,3,1672319027),(103078,4,31582,3,1672319027),(103079,4,31583,3,1672319027),(103080,4,31584,3,1672319027),(103081,4,31585,3,1672319027),(103082,4,31586,3,1672319027),(103083,4,31587,3,1672319027),(103084,4,31588,3,1672319027),(103085,4,31589,3,1672319027),(103086,4,31590,3,1672319027),(103087,4,31591,3,1672319027),(103088,4,31592,3,1672319027),(103089,4,31593,3,1672319027),(103090,4,31594,3,1672319027),(103091,4,31595,3,1672319027),(103092,4,31596,3,1672319027),(103093,4,31597,3,1672319027),(103094,4,31598,3,1672319027),(103095,4,31599,3,1672319027),(103096,4,31600,3,1672319027),(103097,4,31601,3,1672319027),(103098,4,31602,3,1672319027),(103099,4,31603,3,1672319027),(103100,4,31604,3,1672319027),(103101,4,31605,3,1672319027),(103102,4,31606,3,1672319027),(103103,4,31607,3,1672319027),(103104,4,31608,3,1672319027),(103105,4,31609,3,1672319027),(103106,4,31610,3,1672319027),(103107,4,31611,3,1672319027),(103108,4,31612,3,1672319027),(103109,4,31613,3,1672319027),(103110,4,31614,3,1672319027),(103111,4,31615,3,1672319027),(103112,4,31616,3,1672319027),(103113,4,31617,3,1672319027),(103114,4,31618,3,1672319027),(103115,4,31619,3,1672319027),(103116,4,31620,3,1672319027),(103117,4,31621,3,1672319027),(103118,4,31622,3,1672319027),(103119,4,31623,3,1672319027),(103120,4,31624,3,1672319027),(103121,4,31625,3,1672319027),(103122,4,31626,3,1672319027),(103123,4,31627,3,1672319027),(103124,4,31628,3,1672319027),(103125,4,31629,3,1672319027),(103126,4,31630,3,1672319027),(103127,4,31631,3,1672319027),(103128,4,31632,3,1672319027),(103129,4,31633,3,1672319027),(103130,4,31634,3,1672319027),(103131,4,31635,3,1672319027),(103132,4,31636,3,1672319027),(103133,4,31637,3,1672319027),(103134,4,31638,3,1672319027),(103135,4,31639,3,1672319027),(103136,4,31640,3,1672319027),(103137,4,31641,3,1672319027),(103138,4,31642,3,1672319027),(103139,4,31643,3,1672319027),(103140,4,31644,3,1672319027),(103141,4,31645,3,1672319027),(103142,4,31646,3,1672319027),(103143,4,31647,3,1672319027),(103144,4,31648,3,1672319027),(103145,4,31649,3,1672319027),(103146,4,31650,3,1672319027),(103147,4,31651,3,1672319027),(103148,4,31652,3,1672319027),(103149,4,31653,3,1672319027),(103150,4,31654,3,1672319027),(103151,4,31655,3,1672319027),(103152,4,31656,3,1672319027),(103153,4,31657,3,1672319027),(103154,4,31658,3,1672319027),(103155,4,31659,3,1672319027),(103156,4,31660,3,1672319027),(103157,4,31661,3,1672319027),(103158,4,31662,3,1672319027),(103159,4,31663,3,1672319027),(103160,4,31664,3,1672319027),(103161,4,31665,3,1672319027),(103162,4,31666,3,1672319027),(103163,4,31667,3,1672319027),(103164,4,31668,3,1672319027),(103165,4,31669,3,1672319027),(103166,4,31670,3,1672319027),(103167,4,31671,3,1672319027),(103168,4,31672,3,1672319027),(103169,4,31673,3,1672319027),(103170,4,31674,3,1672319027),(103171,4,31675,3,1672319027),(103172,4,31676,3,1672319027),(103173,4,31677,3,1672319027),(103174,4,31678,3,1672319027),(103175,4,31679,3,1672319027),(103176,4,31680,3,1672319027),(103177,4,31681,3,1672319027),(103178,4,31682,3,1672319027),(103179,4,31683,3,1672319027),(103180,4,31684,3,1672319027),(103181,4,31685,3,1672319027),(103182,4,31686,3,1672319027),(103183,4,31687,3,1672319027),(103184,4,31688,3,1672319027),(103185,4,31689,3,1672319027),(103186,4,31690,3,1672319027),(103187,4,31691,3,1672319027),(103188,4,31692,3,1672319027),(103189,4,31693,3,1672319027),(103190,4,31694,3,1672319027),(103191,4,31695,3,1672319027),(103192,4,31696,3,1672319027),(103193,4,31697,3,1672319027),(103194,4,31698,3,1672319027),(103195,4,31699,3,1672319027),(103196,4,31700,3,1672319027),(103197,4,31701,3,1672319027),(103198,4,31702,3,1672319027),(103199,4,31703,3,1672319027),(103200,4,31704,3,1672319027),(103201,4,31705,3,1672319027),(103202,4,31706,3,1672319027),(103203,4,31707,3,1672319027),(103204,4,31708,3,1672319027),(103205,4,31709,3,1672319027),(103206,4,31710,3,1672319027),(103207,4,31711,3,1672319027),(103208,4,31712,3,1672319027),(103209,4,31713,3,1672319027),(103210,4,31714,3,1672319027),(103211,4,31715,3,1672319027),(103212,4,31716,3,1672319027),(103213,4,31717,3,1672319027),(103214,4,31718,3,1672319027),(103215,4,31719,3,1672319027),(103216,4,31720,3,1672319027),(103217,4,31721,3,1672319027),(103218,4,31722,3,1672319027),(103219,4,31723,3,1672319027),(103220,4,31724,3,1672319027),(103221,4,31725,3,1672319027),(103222,4,31726,3,1672319027),(103223,4,31727,3,1672319027),(103224,4,31728,3,1672319027),(103225,4,31729,3,1672319027),(103226,4,31730,3,1672319027),(103227,4,31731,3,1672319027),(103228,4,31732,3,1672319027),(103229,4,31733,3,1672319027),(103230,4,31734,3,1672319027),(103231,4,31735,3,1672319027),(103232,4,31736,3,1672319027),(103233,4,31737,3,1672319027),(103234,4,31738,3,1672319027),(103235,4,31739,3,1672319027),(103236,4,31740,3,1672319027),(103237,4,31741,3,1672319027),(103238,4,31742,3,1672319027),(103239,4,31743,3,1672319027),(103240,4,31744,3,1672319027),(103241,4,31745,3,1672319027),(103242,4,31746,3,1672319027),(103243,4,31747,3,1672319027),(103244,4,31748,3,1672319027),(103245,4,31749,3,1672319027),(103246,4,31750,3,1672319027),(103247,4,31751,3,1672319027),(103248,4,31752,3,1672319027),(103249,4,31753,3,1672319027),(103250,4,31754,3,1672319027),(103251,4,31755,3,1672319027),(103252,4,31756,3,1672319027),(103253,4,31757,3,1672319027),(103254,4,31758,3,1672319027),(103255,4,31759,3,1672319027),(103256,4,31760,3,1672319027),(103257,4,31761,3,1672319027),(103258,4,31762,3,1672319027),(103259,4,31763,3,1672319027),(103260,4,31764,3,1672319027),(103261,4,31765,3,1672319027),(103262,4,31766,3,1672319027),(103263,4,31767,3,1672319027),(103264,4,31768,3,1672319027),(103265,4,31769,3,1672319027),(103266,4,31770,3,1672319027),(103267,4,31771,3,1672319027),(103268,4,31772,3,1672319027),(103269,4,31773,3,1672319027),(103270,4,31774,3,1672319027),(103271,4,31775,3,1672319027),(103272,4,31776,3,1672319027),(103273,4,31777,3,1672319027),(103274,4,31778,3,1672319027),(103275,4,31779,3,1672319027),(103276,4,31780,3,1672319027),(103277,4,31781,3,1672319027),(103278,4,31782,3,1672319027),(103279,4,31783,3,1672319027),(103280,4,31784,3,1672319027),(103281,4,31785,3,1672319027),(103282,4,31786,3,1672319027),(103283,4,31787,3,1672319027),(103284,4,31788,3,1672319027),(103285,4,31789,3,1672319027),(103286,4,31790,3,1672319027),(103287,4,31791,3,1672319027),(103288,4,31792,3,1672319027),(103289,4,31793,3,1672319027),(103290,4,31794,3,1672319027),(103291,4,31795,3,1672319027),(103292,4,31796,3,1672319027),(103293,4,31797,3,1672319027),(103294,4,31798,3,1672319027),(103295,4,31799,3,1672319027),(103296,4,31800,3,1672319027),(103297,4,31801,3,1672319027),(103298,4,31802,3,1672319027),(103299,4,31803,3,1672319027),(103300,4,31804,3,1672319027),(103301,4,31805,3,1672319027),(103302,4,31806,3,1672319027),(103303,4,31807,3,1672319027),(103304,4,31808,3,1672319027),(103305,4,31809,3,1672319027),(103306,4,31810,3,1672319027),(103307,4,31811,3,1672319027),(103308,4,31812,3,1672319027),(103309,4,31813,3,1672319027),(103310,4,31814,3,1672319027),(103311,4,31815,3,1672319027),(103312,4,31816,3,1672319027),(103313,4,31817,3,1672319027),(103314,4,31818,3,1672319027),(103315,4,31819,3,1672319027),(103316,4,31820,3,1672319027),(103317,4,31821,3,1672319027),(103318,4,31822,3,1672319027),(103319,4,31823,3,1672319027),(103320,4,31824,3,1672319027),(103321,4,31825,3,1672319027),(103322,4,31826,3,1672319027),(103323,4,31827,3,1672319027),(103324,4,31828,3,1672319027),(103325,4,31829,3,1672319027),(103326,4,31830,3,1672319027),(103327,4,31831,3,1672319027),(103328,4,31832,3,1672319027),(103329,4,31833,3,1672319027),(103330,4,31834,3,1672319027),(103331,4,31835,3,1672319027),(103332,4,31836,3,1672319027),(103333,4,31837,3,1672319027),(103334,4,31838,3,1672319027),(103335,4,31839,3,1672319027),(103336,4,31840,3,1672319027),(103337,4,31841,3,1672319027),(103338,4,31842,3,1672319027),(103339,4,31843,3,1672319027),(103340,4,31844,3,1672319027),(103341,4,31845,3,1672319027),(103342,4,31846,3,1672319027),(103343,4,31847,3,1672319027),(103344,4,31848,3,1672319027),(103345,4,31849,3,1672319027),(103346,4,31850,3,1672319027),(103347,4,31851,3,1672319027),(103348,4,31852,3,1672319027),(103349,4,31853,3,1672319027),(103350,4,31854,3,1672319027),(103351,4,31855,3,1672319027),(103352,4,31856,3,1672319027),(103353,4,31857,3,1672319027),(103354,4,31858,3,1672319027),(103355,4,31859,3,1672319027),(103356,4,31860,3,1672319027),(103357,4,31861,3,1672319027),(103358,4,31862,3,1672319027),(103359,4,31863,3,1672319027),(103360,4,31864,3,1672319027),(103361,4,31865,3,1672319027),(103362,4,31866,3,1672319027),(103363,4,31867,3,1672319027),(103364,4,31868,3,1672319027),(103365,4,31869,3,1672319027),(103366,4,31870,3,1672319027),(103367,4,31871,3,1672319027),(103368,4,31872,3,1672319027),(103369,4,31873,3,1672319027),(103370,4,31874,3,1672319027),(103371,4,31875,3,1672319027),(103372,4,31876,3,1672319027),(103373,4,31877,3,1672319027),(103374,4,31878,3,1672319027),(103375,4,31879,3,1672319027),(103376,4,31880,3,1672319027),(103377,4,31881,3,1672319027),(103378,4,31882,3,1672319027),(103379,4,31883,3,1672319027),(103380,4,31884,3,1672319027),(103381,4,31885,3,1672319027),(103382,4,31886,3,1672319027),(103383,4,31887,3,1672319027),(103384,4,31888,3,1672319027),(103385,4,31889,3,1672319027),(103386,4,31890,3,1672319027),(103387,4,31891,3,1672319027),(103388,4,31892,3,1672319027),(103389,4,31893,3,1672319027),(103390,4,31894,3,1672319027),(103391,4,31895,3,1672319027),(103392,4,31896,3,1672319027),(103393,4,31897,3,1672319027),(103394,4,31898,3,1672319027),(103395,4,31899,3,1672319027),(103396,4,31900,3,1672319027),(103397,4,31901,3,1672319027),(103398,4,31902,3,1672319027),(103399,4,31903,3,1672319027),(103400,4,31904,3,1672319027),(103401,4,31905,3,1672319027),(103402,4,31906,3,1672319027),(103403,4,31907,3,1672319027),(103404,4,31908,3,1672319027),(103405,4,31909,3,1672319027),(103406,4,31910,3,1672319027),(103407,4,31911,3,1672319027),(103408,4,31912,3,1672319027),(103409,4,31913,3,1672319027),(103410,4,31914,3,1672319027),(103411,4,31915,3,1672319027),(103412,4,31916,3,1672319027),(103413,4,31917,3,1672319027),(103414,4,31918,3,1672319027),(103415,4,31919,3,1672319027),(103416,4,31920,3,1672319027),(103417,4,31921,3,1672319027),(103418,4,31922,3,1672319027),(103419,4,31923,3,1672319027),(103420,4,31924,3,1672319027),(103421,4,31925,3,1672319027),(103422,4,31926,3,1672319027),(103423,4,31927,3,1672319027),(103424,4,31928,3,1672319027),(103425,4,31929,3,1672319027),(103426,4,31930,3,1672319027),(103427,4,31931,3,1672319027),(103428,4,31932,3,1672319027),(103429,4,31933,3,1672319027),(103430,4,31934,3,1672319027),(103431,4,31935,3,1672319027),(103432,4,31936,3,1672319027),(103433,4,31937,3,1672319027),(103434,4,31938,3,1672319027),(103435,4,31939,3,1672319027),(103436,4,31940,3,1672319027),(103437,4,31941,3,1672319027),(103438,4,31942,3,1672319027),(103439,4,31943,3,1672319027),(103440,4,31944,3,1672319027),(103441,4,31945,3,1672319027),(103442,4,31946,3,1672319027),(103443,4,31947,3,1672319027),(103444,4,31948,3,1672319027),(103445,4,31949,3,1672319027),(103446,4,31950,3,1672319027),(103447,4,31951,3,1672319027),(103448,4,31952,3,1672319027),(103449,4,31953,3,1672319027),(103450,4,31954,3,1672319027),(103451,4,31955,3,1672319027),(103452,4,31956,3,1672319027),(103453,4,31957,3,1672319027),(103454,4,31958,3,1672319027),(103455,4,31959,3,1672319027),(103456,4,31960,3,1672319027),(103457,4,31961,3,1672319027),(103458,4,31962,3,1672319027),(103459,4,31963,3,1672319027),(103460,4,31964,3,1672319027),(103461,4,31965,3,1672319027),(103462,4,31966,3,1672319027),(103463,4,31967,3,1672319027),(103464,4,31968,3,1672319027),(103465,4,31969,3,1672319027),(103466,4,31970,3,1672319027),(103467,4,31971,3,1672319027),(103468,4,31972,3,1672319027),(103469,4,31973,3,1672319027),(103470,4,31974,3,1672319027),(103471,4,31975,3,1672319027),(103472,4,31976,3,1672319027),(103473,4,31977,3,1672319027),(103474,4,31978,3,1672319027),(103475,4,31979,3,1672319027),(103476,4,31980,3,1672319027),(103477,4,31981,3,1672319027),(103478,4,31982,3,1672319027),(103479,4,31983,3,1672319027),(103480,4,31984,3,1672319027),(103481,4,31985,3,1672319027),(103482,4,31986,3,1672319027),(103483,4,31987,3,1672319027),(103484,4,31988,3,1672319027),(103485,4,31989,3,1672319027),(103486,4,31990,3,1672319027),(103487,4,31991,3,1672319027),(103488,4,31992,3,1672319027),(103489,4,31993,3,1672319027),(103490,4,31994,3,1672319027),(103491,4,31995,3,1672319027),(103492,4,31996,3,1672319027),(103493,4,31997,3,1672319027),(103494,4,31998,3,1672319027),(103495,4,31999,3,1672319027),(103496,4,32000,3,1672319027),(103497,4,32001,3,1672319027),(103498,4,32002,3,1672319027),(103499,4,32003,3,1672319027),(103500,4,32004,3,1672319027),(103501,4,32005,3,1672319027),(103502,4,32006,3,1672319027),(103503,4,32007,3,1672319027),(103504,4,32008,3,1672319027),(103505,4,32009,3,1672319027),(103506,4,32010,3,1672319027),(103507,4,32011,3,1672319027),(103508,4,32012,3,1672319027),(103509,4,32013,3,1672319027),(103510,4,32014,3,1672319027),(103511,4,32015,3,1672319027),(103512,4,32016,3,1672319027),(103513,4,32017,3,1672319027),(103514,4,32018,3,1672319027),(103515,4,32019,3,1672319027),(103516,4,32020,3,1672319027),(103517,4,32021,3,1672319027),(103518,4,32022,3,1672319027),(103519,4,32023,3,1672319027),(103520,4,32024,3,1672319027),(103521,4,32025,3,1672319027),(103522,4,32026,3,1672319027),(103523,4,32027,3,1672319027),(103524,4,32028,3,1672319027),(103525,4,32029,3,1672319027),(103526,4,32030,3,1672319027),(103527,4,32031,3,1672319027),(103528,4,32032,3,1672319027),(103529,4,32033,3,1672319027),(103530,4,32034,3,1672319027),(103531,4,32035,3,1672319027),(103532,4,32036,3,1672319027),(103533,4,32037,3,1672319027),(103534,4,32038,3,1672319027),(103535,4,32039,3,1672319027),(103536,4,32040,3,1672319027),(103537,4,32041,3,1672319027),(103538,4,32042,3,1672319027),(103539,4,32043,3,1672319027),(103540,4,32044,3,1672319027),(103541,4,32045,3,1672319027),(103542,4,32046,3,1672319027),(103543,4,32047,3,1672319027),(103544,4,32048,3,1672319027),(103545,4,32049,3,1672319027),(103546,4,32050,3,1672319027),(103547,4,32051,3,1672319027),(103548,4,32052,3,1672319027),(103549,4,32053,3,1672319027),(103550,4,32054,3,1672319027),(103551,4,32055,3,1672319027),(103552,4,32056,3,1672319027),(103553,4,32057,3,1672319027),(103554,4,32058,3,1672319027),(103555,4,32059,3,1672319027),(103556,4,32060,3,1672319027),(103557,4,32061,3,1672319027),(103558,4,32062,3,1672319027),(103559,4,32063,3,1672319027),(103560,4,32064,3,1672319027),(103561,4,32065,3,1672319027),(103562,4,32066,3,1672319027),(103563,4,32067,3,1672319027),(103564,4,32068,3,1672319027),(103565,4,32069,3,1672319027),(103566,4,32070,3,1672319027),(103567,4,32071,3,1672319027),(103568,4,32072,3,1672319027),(103569,4,32073,3,1672319027),(103570,4,32074,3,1672319027),(103571,4,32075,3,1672319027),(103572,4,32076,3,1672319027),(103573,4,32077,3,1672319027),(103574,4,32078,3,1672319027),(103575,4,32079,3,1672319027),(103576,4,32080,3,1672319027),(103577,4,32081,3,1672319027),(103578,4,32082,3,1672319027),(103579,4,32083,3,1672319027),(103580,4,32084,3,1672319027),(103581,4,32085,3,1672319027),(103582,4,32086,3,1672319027),(103583,4,32087,3,1672319027),(103584,4,32088,3,1672319027),(103585,4,32089,3,1672319027),(103586,4,32090,3,1672319027),(103587,4,32091,3,1672319027),(103588,4,32092,3,1672319027),(103589,4,32093,3,1672319027),(103590,4,32094,3,1672319027),(103591,4,32095,3,1672319027),(103592,4,32096,3,1672319027),(103593,4,32097,3,1672319027),(103594,4,32098,3,1672319027),(103595,4,32099,3,1672319027),(103596,4,32100,3,1672319027),(103597,4,32101,3,1672319027),(103598,4,32102,3,1672319027),(103599,4,32103,3,1672319027),(103600,4,32104,3,1672319027),(103601,4,32105,3,1672319027),(103602,4,32106,3,1672319027),(103603,4,32107,3,1672319027),(103604,4,32108,3,1672319027),(103605,4,32109,3,1672319027),(103606,4,32110,3,1672319027),(103607,4,32111,3,1672319027),(103608,4,32112,3,1672319027),(103609,4,32113,3,1672319027),(103610,4,32114,3,1672319027),(103611,4,32115,3,1672319027),(103612,4,32116,3,1672319027),(103613,4,32117,3,1672319027),(103614,4,32118,3,1672319027),(103615,4,32119,3,1672319027),(103616,4,32120,3,1672319027),(103617,4,32121,3,1672319027),(103618,4,32122,3,1672319027),(103619,4,32123,3,1672319027),(103620,4,32124,3,1672319027),(103621,4,32125,3,1672319027),(103622,4,32126,3,1672319027),(103623,4,32127,3,1672319027),(103624,4,32128,3,1672319027),(103625,4,32129,3,1672319027),(103626,4,32130,3,1672319027),(103627,4,32131,3,1672319027),(103628,4,32132,3,1672319027),(103629,4,32133,3,1672319027),(103630,4,32134,3,1672319027),(103631,4,32135,3,1672319027),(103632,4,32136,3,1672319027),(103633,4,32137,3,1672319027),(103634,4,32138,3,1672319027),(103635,4,32139,3,1672319027),(103636,4,32140,3,1672319027),(103637,4,32141,3,1672319027),(103638,4,32142,3,1672319027),(103639,4,32143,3,1672319027),(103640,4,32144,3,1672319027),(103641,4,32145,3,1672319027),(103642,4,32146,3,1672319027),(103643,4,32147,3,1672319027),(103644,4,32148,3,1672319027),(103645,4,32149,3,1672319027),(103646,4,32150,3,1672319027),(103647,4,32151,3,1672319027),(103648,4,32152,3,1672319027),(103649,4,32153,3,1672319027),(103650,4,32154,3,1672319027),(103651,4,32155,3,1672319027),(103652,4,32156,3,1672319027),(103653,4,32157,3,1672319027),(103654,4,32158,3,1672319027),(103655,4,32159,3,1672319027),(103656,4,32160,3,1672319027),(103657,4,32161,3,1672319027),(103658,4,32162,3,1672319027),(103659,4,32163,3,1672319027),(103660,4,32164,3,1672319027),(103661,4,32165,3,1672319027),(103662,4,32166,3,1672319027),(103663,4,32167,3,1672319027),(103664,4,32168,3,1672319027),(103665,4,32169,3,1672319027),(103666,4,32170,3,1672319027),(103667,4,32171,3,1672319027),(103668,4,32172,3,1672319027),(103669,4,32173,3,1672319027),(103670,4,32174,3,1672319027),(103671,4,32175,3,1672319027),(103672,4,32176,3,1672319027),(103673,4,32177,3,1672319027),(103674,4,32178,3,1672319027),(103675,4,32179,3,1672319027),(103676,4,32180,3,1672319027),(103677,4,32181,3,1672319027),(103678,4,32182,3,1672319027),(103679,4,32183,3,1672319027),(103680,4,32184,3,1672319027),(103681,4,32185,3,1672319027),(103682,4,32186,3,1672319027),(103683,4,32187,3,1672319027),(103684,4,32188,3,1672319027),(103685,4,32189,3,1672319027),(103686,4,32190,3,1672319027),(103687,4,32191,3,1672319027),(103688,4,32192,3,1672319027),(103689,4,32193,3,1672319027),(103690,4,32194,3,1672319027),(103691,4,32195,3,1672319027),(103692,4,32196,3,1672319027),(103693,4,32197,3,1672319027),(103694,4,32198,3,1672319027),(103695,4,32199,3,1672319027),(103696,4,32200,3,1672319027),(103697,4,32201,3,1672319027),(103698,4,32202,3,1672319027),(103699,4,32203,3,1672319027),(103700,4,32204,3,1672319027),(103701,4,32205,3,1672319027),(103702,4,32206,3,1672319027),(103703,4,32207,3,1672319027),(103704,4,32208,3,1672319027),(103705,4,32209,3,1672319027),(103706,4,32210,3,1672319027),(103707,4,32211,3,1672319027),(103708,4,32212,3,1672319027),(103709,4,32213,3,1672319027),(103710,4,32214,3,1672319027),(103711,4,32215,3,1672319027),(103712,4,32216,3,1672319027),(103713,4,32217,3,1672319027),(103714,4,32218,3,1672319027),(103715,4,32219,3,1672319027),(103716,4,32220,3,1672319027),(103717,4,32221,3,1672319027),(103718,4,32222,3,1672319027),(103719,4,32223,3,1672319027),(103720,4,32224,3,1672319027),(103721,4,32225,3,1672319027),(103722,4,32226,3,1672319027),(103723,4,32227,3,1672319027),(103724,4,32228,3,1672319027),(103725,4,32229,3,1672319027),(103726,4,32230,3,1672319027),(103727,4,32231,3,1672319027),(103728,4,32232,3,1672319027),(103729,4,32233,3,1672319027),(103730,4,32234,3,1672319027),(103731,4,32235,3,1672319027),(103732,4,32236,3,1672319027),(103733,4,32237,3,1672319027),(103734,4,32238,3,1672319027),(103735,4,32239,3,1672319027),(103736,4,32240,3,1672319027),(103737,4,32241,3,1672319027),(103738,4,32242,3,1672319027),(103739,4,32243,3,1672319027),(103740,4,32244,3,1672319027),(103741,4,32245,3,1672319027),(103742,4,32246,3,1672319027),(103743,4,32247,3,1672319027),(103744,4,32248,3,1672319027),(103745,4,32249,3,1672319027),(103746,4,32250,3,1672319027),(103747,4,32251,3,1672319027),(103748,4,32252,3,1672319027),(103749,4,32253,3,1672319027),(103750,4,32254,3,1672319027),(103751,4,32255,3,1672319027),(103752,4,32256,3,1672319027),(103753,4,32257,3,1672319027),(103754,4,32258,3,1672319027),(103755,4,32259,3,1672319027),(103756,4,32260,3,1672319027),(103757,4,32261,3,1672319027),(103758,4,32262,3,1672319027),(103759,4,32263,3,1672319027),(103760,4,32264,3,1672319027),(103761,4,32265,3,1672319027),(103762,4,32266,3,1672319027),(103763,4,32267,3,1672319027),(103764,4,32268,3,1672319027),(103765,4,32269,3,1672319027),(103766,4,32270,3,1672319027),(103767,4,32271,3,1672319027),(103768,4,32272,3,1672319027),(103769,4,32273,3,1672319027),(103770,4,32274,3,1672319027),(103771,4,32275,3,1672319027),(103772,4,32276,3,1672319027),(103773,4,32277,3,1672319027),(103774,4,32278,3,1672319027),(103775,4,32279,3,1672319027),(103776,4,32280,3,1672319027),(103777,4,32281,3,1672319027),(103778,4,32282,3,1672319027),(103779,4,32283,3,1672319027),(103780,4,32284,3,1672319027),(103781,4,32285,3,1672319027),(103782,4,32286,3,1672319027),(103783,4,32287,3,1672319027),(103784,4,32288,3,1672319027),(103785,4,32289,3,1672319027),(103786,4,32290,3,1672319027),(103787,4,32291,3,1672319027),(103788,4,32292,3,1672319027),(103789,4,32293,3,1672319027),(103790,4,32294,3,1672319027),(103791,4,32295,3,1672319027),(103792,4,32296,3,1672319027),(103793,4,32297,3,1672319027),(103794,4,32298,3,1672319027),(103795,4,32299,3,1672319027),(103796,4,32300,3,1672319027),(103797,4,32301,3,1672319027),(103798,4,32302,3,1672319027),(103799,4,32303,3,1672319027),(103800,4,32304,3,1672319027),(103801,4,32305,3,1672319027),(103802,4,32306,3,1672319027),(103803,4,32307,3,1672319027),(103804,4,32308,3,1672319027),(103805,4,32309,3,1672319027),(103806,4,32310,3,1672319027),(103807,4,32311,3,1672319027),(103808,4,32312,3,1672319027),(103809,4,32313,3,1672319027),(103810,4,32314,3,1672319027),(103811,4,32315,3,1672319027),(103812,4,32316,3,1672319027),(103813,4,32317,3,1672319027),(103814,4,32318,3,1672319027),(103815,4,32319,3,1672319027),(103816,4,32320,3,1672319027),(103817,4,32321,3,1672319027),(103818,4,32322,3,1672319027),(103819,4,32323,3,1672319027),(103820,4,32324,3,1672319027),(103821,4,32325,3,1672319027),(103822,4,32326,3,1672319027),(103823,4,32327,3,1672319027),(103824,4,32328,3,1672319027),(103825,4,32329,3,1672319027),(103826,4,32330,3,1672319027),(103827,4,32331,3,1672319027),(103828,4,32332,3,1672319027),(103829,4,32333,3,1672319027),(103830,4,32334,3,1672319027),(103831,4,32335,3,1672319027),(103832,4,32336,3,1672319027),(103833,4,32337,3,1672319027),(103834,4,32338,3,1672319027),(103835,4,32339,3,1672319027),(103836,4,32340,3,1672319027),(103837,4,32341,3,1672319027),(103838,4,32342,3,1672319027),(103839,4,32343,3,1672319027),(103840,4,32344,3,1672319027),(103841,4,32345,3,1672319027),(103842,4,32346,3,1672319027),(103843,4,32347,3,1672319027),(103844,4,32348,3,1672319027),(103845,4,32349,3,1672319027),(103846,4,32350,3,1672319027),(103847,4,32351,3,1672319027),(103848,4,32352,3,1672319027),(103849,4,32353,3,1672319027),(103850,4,32354,3,1672319027),(103851,4,32355,3,1672319027),(103852,4,32356,3,1672319027),(103853,4,32357,3,1672319027),(103854,4,32358,3,1672319027),(103855,4,32359,3,1672319027),(103856,4,32360,3,1672319027),(103857,4,32361,3,1672319027),(103858,4,32362,3,1672319027),(103859,4,32363,3,1672319027),(103860,4,32364,3,1672319027),(103861,4,32365,3,1672319027),(103862,4,32366,3,1672319027),(103863,4,32367,3,1672319027),(103864,4,32368,3,1672319027),(103865,4,32369,3,1672319027),(103866,4,32370,3,1672319027),(103867,4,32371,3,1672319027),(103868,4,32372,3,1672319027),(103869,4,32373,3,1672319027),(103870,4,32374,3,1672319027),(103871,4,32375,3,1672319027),(103872,4,32376,3,1672319027),(103873,4,32377,3,1672319027),(103874,4,32378,3,1672319027),(103875,4,32379,3,1672319027),(103876,4,32380,3,1672319027),(103877,4,32381,3,1672319027),(103878,4,32382,3,1672319027),(103879,4,32383,3,1672319027),(103880,4,32384,3,1672319027),(103881,4,32385,3,1672319027),(103882,4,32386,3,1672319027),(103883,4,32387,3,1672319027),(103884,4,32388,3,1672319027),(103885,4,32389,3,1672319027),(103886,4,32390,3,1672319027),(103887,4,32391,3,1672319027),(103888,4,32392,3,1672319027),(103889,4,32393,3,1672319027),(103890,4,32394,3,1672319027),(103891,4,32395,3,1672319027),(103892,4,32396,3,1672319027),(103893,4,32397,3,1672319027),(103894,4,32398,3,1672319027),(103895,4,32399,3,1672319027),(103896,4,32400,3,1672319027),(103897,4,32401,3,1672319027),(103898,4,32402,3,1672319027),(103899,4,32403,3,1672319027),(103900,4,32404,3,1672319027),(103901,4,32405,3,1672319027),(103902,4,32406,3,1672319027),(103903,4,32407,3,1672319027),(103904,4,32408,3,1672319027),(103905,4,32409,3,1672319027),(103906,4,32410,3,1672319027),(103907,4,32411,3,1672319027),(103908,4,32412,3,1672319027),(103909,4,32413,3,1672319027),(103910,4,32414,3,1672319027),(103911,4,32415,3,1672319027),(103912,4,32416,3,1672319027),(103913,4,32417,3,1672319027),(103914,4,32418,3,1672319027),(103915,4,32419,3,1672319027),(103916,4,32420,3,1672319027),(103917,4,32421,3,1672319027),(103918,4,32422,3,1672319027),(103919,4,32423,3,1672319027),(103920,4,32424,3,1672319027),(103921,4,32425,3,1672319027),(103922,4,32426,3,1672319027),(103923,4,32427,3,1672319027),(103924,4,32428,3,1672319027),(103925,4,32429,3,1672319027),(103926,4,32430,3,1672319027),(103927,4,32431,3,1672319027),(103928,4,32432,3,1672319027),(103929,4,32433,3,1672319027),(103930,4,32434,3,1672319027),(103931,4,32435,3,1672319027),(103932,4,32436,3,1672319027),(103933,4,32437,3,1672319027),(103934,4,32438,3,1672319027),(103935,4,32439,3,1672319027),(103936,4,32440,3,1672319027),(103937,4,32441,3,1672319027),(103938,4,32442,3,1672319027),(103939,4,32443,3,1672319027),(103940,4,32444,3,1672319027),(103941,4,32445,3,1672319027),(103942,4,32446,3,1672319027),(103943,4,32447,3,1672319027),(103944,4,32448,3,1672319027),(103945,4,32449,3,1672319027),(103946,4,32450,3,1672319027),(103947,4,32451,3,1672319027),(103948,4,32452,3,1672319027),(103949,4,32453,3,1672319027),(103950,4,32454,3,1672319027),(103951,4,32455,3,1672319027),(103952,4,32456,3,1672319027),(103953,4,32457,3,1672319027),(103954,4,32458,3,1672319027),(103955,4,32459,3,1672319027),(103956,4,32460,3,1672319027),(103957,4,32461,3,1672319027),(103958,4,32462,3,1672319027),(103959,4,32463,3,1672319027),(103960,4,32464,3,1672319027),(103961,4,32465,3,1672319027),(103962,4,32466,3,1672319027),(103963,4,32467,3,1672319027),(103964,4,32468,3,1672319027),(103965,4,32469,3,1672319027),(103966,4,32470,3,1672319027),(103967,4,32471,3,1672319027),(103968,4,32472,3,1672319027),(103969,4,32473,3,1672319027),(103970,4,32474,3,1672319027),(103971,4,32475,3,1672319027),(103972,4,32476,3,1672319027),(103973,4,32477,3,1672319027),(103974,4,32478,3,1672319027),(103975,4,32479,3,1672319027),(103976,4,32480,3,1672319027),(103977,4,32481,3,1672319027),(103978,4,32482,3,1672319027),(103979,4,32483,3,1672319027),(103980,4,32484,3,1672319027),(103981,4,32485,3,1672319027),(103982,4,32486,3,1672319027),(103983,4,32487,3,1672319027),(103984,4,32488,3,1672319027),(103985,4,32489,3,1672319027),(103986,4,32490,3,1672319027),(103987,4,32491,3,1672319027),(103988,4,32492,3,1672319027),(103989,4,32493,3,1672319027),(103990,4,32494,3,1672319027),(103991,4,32495,3,1672319027),(103992,4,32496,3,1672319027),(103993,4,32497,3,1672319027),(103994,4,32498,3,1672319027),(103995,4,32499,3,1672319027),(103996,4,32500,3,1672319027),(103997,4,32501,3,1672319027),(103998,4,32502,3,1672319027),(103999,4,32503,3,1672319027),(104000,4,32504,3,1672319027),(104001,4,32505,3,1672319027),(104002,4,32506,3,1672319027),(104003,4,32507,3,1672319027),(104004,4,32508,3,1672319027),(104005,4,32509,3,1672319027),(104006,4,32510,3,1672319027),(104007,4,32511,3,1672319027),(104008,4,32512,3,1672319027),(104009,4,32513,3,1672319027),(104010,4,32514,3,1672319027),(104011,4,32515,3,1672319027),(104012,4,32516,3,1672319027),(104013,4,32517,3,1672319027),(104014,4,32518,3,1672319027),(104015,4,32519,3,1672319027),(104016,4,32520,3,1672319027),(104017,4,32521,3,1672319027),(104018,4,32522,3,1672319027),(104019,4,32523,3,1672319027),(104020,4,32524,3,1672319027),(104021,4,32525,3,1672319027),(104022,4,32526,3,1672319027),(104023,4,32527,3,1672319027),(104024,4,32528,3,1672319027),(104025,4,32529,3,1672319027),(104026,4,32530,3,1672319027),(104027,4,32531,3,1672319027),(104028,4,32532,3,1672319027),(104029,4,32533,3,1672319027),(104030,4,32534,3,1672319027),(104031,4,32535,3,1672319027),(104032,4,32536,3,1672319027),(104033,4,32537,3,1672319027),(104034,4,32538,3,1672319027),(104035,4,32539,3,1672319027),(104036,4,32540,3,1672319027),(104037,4,32541,3,1672319027),(104038,4,32542,3,1672319027),(104039,4,32543,3,1672319027),(104040,4,32544,3,1672319027),(104041,4,32545,3,1672319027),(104042,4,32546,3,1672319027),(104043,4,32547,3,1672319027),(104044,4,32548,3,1672319027),(104045,4,32549,3,1672319027),(104046,4,32550,3,1672319027),(104047,4,32551,3,1672319027),(104048,4,32552,3,1672319027),(104049,4,32553,3,1672319027),(104050,4,32554,3,1672319027),(104051,4,32555,3,1672319027),(104052,4,32556,3,1672319027),(104053,4,32557,3,1672319027),(104054,4,32558,3,1672319027),(104055,4,32559,3,1672319027),(104056,4,32560,3,1672319027),(104057,4,32561,3,1672319027),(104058,4,32562,3,1672319027),(104059,4,32563,3,1672319027),(104060,4,32564,3,1672319027),(104061,4,32565,3,1672319027),(104062,4,32566,3,1672319027),(104063,4,32567,3,1672319027),(104064,4,32568,3,1672319027),(104065,4,32569,3,1672319027),(104066,4,32570,3,1672319027),(104067,4,32571,3,1672319027),(104068,4,32572,3,1672319027),(104069,4,32573,3,1672319027),(104070,4,32574,3,1672319027),(104071,4,32575,3,1672319027),(104072,4,32576,3,1672319027),(104073,4,32577,3,1672319027),(104074,4,32578,3,1672319027),(104075,4,32579,3,1672319027),(104076,4,32580,3,1672319027),(104077,4,32581,3,1672319027),(104078,4,32582,3,1672319027),(104079,4,32583,3,1672319027),(104080,4,32584,3,1672319027),(104081,4,32585,3,1672319027),(104082,4,32586,3,1672319027),(104083,4,32587,3,1672319027),(104084,4,32588,3,1672319027),(104085,4,32589,3,1672319027),(104086,4,32590,3,1672319027),(104087,4,32591,3,1672319027),(104088,4,32592,3,1672319027),(104089,4,32593,3,1672319027),(104090,4,32594,3,1672319027),(104091,4,32595,3,1672319027),(104092,4,32596,3,1672319027),(104093,4,32597,3,1672319027),(104094,4,32598,3,1672319027),(104095,4,32599,3,1672319027),(104096,4,32600,3,1672319027),(104097,4,32601,3,1672319027),(104098,4,32602,3,1672319027),(104099,4,32603,3,1672319027),(104100,4,32604,3,1672319027),(104101,4,32605,3,1672319027),(104102,4,32606,3,1672319027),(104103,4,32607,3,1672319027),(104104,4,32608,3,1672319027),(104105,4,32609,3,1672319027),(104106,4,32610,3,1672319027),(104107,4,32611,3,1672319027),(104108,4,32612,3,1672319027),(104109,4,32613,3,1672319027),(104110,4,32614,3,1672319027),(104111,4,32615,3,1672319027),(104112,4,32616,3,1672319027),(104113,4,32617,3,1672319027),(104114,4,32618,3,1672319027),(104115,4,32619,3,1672319027),(104116,4,32620,3,1672319027),(104117,4,32621,3,1672319027),(104118,4,32622,3,1672319027),(104119,4,32623,3,1672319027),(104120,4,32624,3,1672319027),(104121,4,32625,3,1672319027),(104122,4,32626,3,1672319027),(104123,4,32627,3,1672319027),(104124,4,32628,3,1672319027),(104125,4,32629,3,1672319027),(104126,4,32630,3,1672319027),(104127,4,32631,3,1672319027),(104128,4,32632,3,1672319027),(104129,4,32633,3,1672319027),(104130,4,32634,3,1672319027),(104131,4,32635,3,1672319027),(104132,4,32636,3,1672319027),(104133,4,32637,3,1672319027),(104134,4,32638,3,1672319027),(104135,4,32639,3,1672319027),(104136,4,32640,3,1672319027),(104137,4,32641,3,1672319027),(104138,4,32642,3,1672319027),(104139,4,32643,3,1672319027),(104140,4,32644,3,1672319027),(104141,4,32645,3,1672319027),(104142,4,32646,3,1672319027),(104143,4,32647,3,1672319027),(104144,4,32648,3,1672319027),(104145,4,32649,3,1672319027),(104146,4,32650,3,1672319027),(104147,4,32651,3,1672319027),(104148,4,32652,3,1672319027),(104149,4,32653,3,1672319027),(104150,4,32654,3,1672319027),(104151,4,32655,3,1672319027),(104152,4,32656,3,1672319027),(104153,4,32657,3,1672319027),(104154,4,32658,3,1672319027),(104155,4,32659,3,1672319027),(104156,4,32660,3,1672319027),(104157,4,32661,3,1672319027),(104158,4,32662,3,1672319027),(104159,4,32663,3,1672319027),(104160,4,32664,3,1672319027),(104161,4,32665,3,1672319027),(104162,4,32666,3,1672319027),(104163,4,32667,3,1672319027),(104164,4,32668,3,1672319027),(104165,4,32669,3,1672319027),(104166,4,32670,3,1672319027),(104167,4,32671,3,1672319027),(104168,4,32672,3,1672319027),(104169,4,32673,3,1672319027),(104170,4,32674,3,1672319027),(104171,4,32675,3,1672319027),(104172,4,32676,3,1672319027),(104173,4,32721,3,1672319027),(104174,4,32722,3,1672319027),(104175,4,32723,3,1672319027),(104176,4,32724,3,1672319027),(104177,4,32725,3,1672319027),(104178,4,32726,3,1672319027),(104179,4,32727,3,1672319027),(104180,4,32728,3,1672319027),(104181,4,32729,3,1672319027),(104182,4,32730,3,1672319027),(104183,4,32731,3,1672319027),(104184,4,32732,3,1672319027),(104185,4,32733,3,1672319027),(104186,4,32734,3,1672319027),(104187,4,32735,3,1672319027),(104188,4,32736,3,1672319027),(104189,4,32737,3,1672319027),(104190,4,32738,3,1672319027),(104191,4,32739,3,1672319027),(104192,4,32740,3,1672319027),(104193,4,32741,3,1672319027),(104194,4,32742,3,1672319027),(104195,4,32743,3,1672319027),(104196,4,32744,3,1672319027),(104197,4,32745,3,1672319027),(104198,4,32746,3,1672319027),(104199,4,32747,3,1672319027),(104200,4,32748,3,1672319027),(104201,4,32749,3,1672319027),(104202,4,32751,3,1672319027),(104203,4,32752,3,1672319027),(104204,4,32753,3,1672319027),(104205,4,32754,3,1672319027),(104206,4,32755,3,1672319027),(104207,4,32756,3,1672319027),(104208,4,32757,3,1672319027),(104209,4,32758,3,1672319027),(104210,4,32759,3,1672319027),(104211,4,32760,3,1672319027),(104212,4,32761,3,1672319027),(104213,4,32762,3,1672319027),(104214,4,32763,3,1672319027),(104215,4,32764,3,1672319027),(104216,4,32765,3,1672319027),(104217,4,32768,3,1672319027),(104218,4,32769,3,1672319027),(104219,4,32770,3,1672319027),(104220,4,32771,3,1672319027),(104221,4,32772,3,1672319027),(104222,4,32773,3,1672319027),(104223,4,32774,3,1672319027),(104224,4,32775,3,1672319027),(104225,4,32776,3,1672319027),(104226,4,32777,3,1672319027),(104227,4,32778,3,1672319027),(104228,4,32779,3,1672319027),(104229,4,32780,3,1672319027),(104230,4,32781,3,1672319027),(104231,4,32782,3,1672319027),(104232,4,32783,3,1672319027),(104233,4,32784,3,1672319027),(104234,4,32785,3,1672319027),(104235,4,32786,3,1672319027),(104236,4,32787,3,1672319027),(104237,4,32788,3,1672319027),(104238,4,32789,3,1672319027),(104239,4,32790,3,1672319027),(104240,4,32791,3,1672319027),(104241,4,32792,3,1672319027),(104242,4,32793,3,1672319027),(104243,4,32794,3,1672319027),(104244,4,32795,3,1672319027),(104245,4,32796,3,1672319027),(104246,4,32797,3,1672319027),(104247,4,32798,3,1672319027),(104248,4,32799,3,1672319027),(104249,4,32800,3,1672319027),(104250,4,32801,3,1672319027),(104251,4,32802,3,1672319027),(104252,4,32803,3,1672319027),(104253,4,32804,3,1672319027),(104254,4,32805,3,1672319027),(104255,4,32806,3,1672319027),(104256,4,32807,3,1672319027),(104257,4,32808,3,1672319027),(104258,4,32809,3,1672319027),(104259,4,32810,3,1672319027),(104260,4,32811,3,1672319027),(104261,4,32812,3,1672319027),(104262,4,32813,3,1672319027),(104263,4,32814,3,1672319027),(104264,4,32815,3,1672319027),(104265,4,32816,3,1672319027),(104266,4,32817,3,1672319027),(104267,4,32818,3,1672319027),(104268,4,32819,3,1672319027),(104269,4,32820,3,1672319027),(104270,4,32821,3,1672319027),(104271,4,32822,3,1672319027),(104272,4,32823,3,1672319027),(104273,4,32824,3,1672319027),(104274,4,32825,3,1672319027),(104275,4,32826,3,1672319027),(104276,4,32827,3,1672319027),(104277,4,32828,3,1672319027),(104278,4,32829,3,1672319027),(104279,4,32830,3,1672319027),(104280,4,32831,3,1672319027),(104281,4,32832,3,1672319027),(104282,4,32833,3,1672319027),(104283,4,32834,3,1672319027),(104284,4,32835,3,1672319027),(104285,4,32836,3,1672319027),(104286,4,32837,3,1672319027),(104287,4,32838,3,1672319027),(104288,4,32839,3,1672319027),(104289,4,32840,3,1672319027),(104290,4,32841,3,1672319027),(104291,4,32842,3,1672319027),(104292,4,32843,3,1672319027),(104293,4,32844,3,1672319027),(104294,4,32845,3,1672319027),(104295,4,32846,3,1672319027),(104296,4,32847,3,1672319027),(104297,4,32848,3,1672319027),(104298,4,32849,3,1672319027),(104299,4,32850,3,1672319027),(104300,4,32851,3,1672319027),(104301,4,32852,3,1672319027),(104302,4,32853,3,1672319027),(104303,4,32854,3,1672319027),(104304,4,32855,3,1672319027),(104305,4,32856,3,1672319027),(104306,4,32857,3,1672319027),(104307,4,32858,3,1672319027),(104308,4,32859,3,1672319027),(104309,4,32860,3,1672319027),(104310,4,32861,3,1672319027),(104311,4,32862,3,1672319027),(104312,4,32863,3,1672319027),(104313,4,32864,3,1672319027),(104314,4,32865,3,1672319027),(104315,4,32866,3,1672319027),(104316,4,32867,3,1672319027),(104317,4,32868,3,1672319027),(104318,4,32869,3,1672319027),(104319,4,32870,3,1672319027),(104320,4,32871,3,1672319027),(104321,4,32872,3,1672319027),(104322,4,32873,3,1672319027),(104323,4,32874,3,1672319027),(104324,4,32875,3,1672319027),(104325,4,32876,3,1672319027),(104326,4,32877,3,1672319027),(104327,4,32878,3,1672319027),(104328,4,32879,3,1672319027),(104329,4,32880,3,1672319027),(104330,4,32881,3,1672319027),(104331,4,32882,3,1672319027),(104332,4,32883,3,1672319027),(104333,4,32884,3,1672319027),(104334,4,32885,3,1672319027),(104335,4,32886,3,1672319027),(104336,4,32887,3,1672319027),(104337,4,32888,3,1672319027),(104338,4,32889,3,1672319027),(104339,4,32890,3,1672319027),(104340,4,32891,3,1672319027),(104341,4,32892,3,1672319027),(104342,4,32893,3,1672319027),(104343,4,32894,3,1672319027),(104344,4,32895,3,1672319027),(104345,4,32896,3,1672319027),(104346,4,32897,3,1672319027),(104347,4,32898,3,1672319027),(104348,4,32899,3,1672319027),(104349,4,32900,3,1672319027),(104350,4,32901,3,1672319027),(104351,4,32902,3,1672319027),(104352,4,32903,3,1672319027),(104353,4,32904,3,1672319027),(104354,4,32905,3,1672319027),(104355,4,32906,3,1672319027),(104356,4,32907,3,1672319027),(104357,4,32908,3,1672319027),(104358,4,32909,3,1672319027),(104359,4,32910,3,1672319027),(104360,4,32911,3,1672319027),(104361,4,32912,3,1672319027),(104362,4,32913,3,1672319027),(104363,4,32914,3,1672319027),(104364,4,32915,3,1672319027),(104365,4,32916,3,1672319027),(104366,4,32917,3,1672319027),(104367,4,32918,3,1672319027),(104368,4,32919,3,1672319027),(104369,4,32920,3,1672319027),(104370,4,32921,3,1672319027),(104371,4,32922,3,1672319027),(104372,4,32923,3,1672319027),(104373,4,32924,3,1672319027),(104374,4,32925,3,1672319027),(104375,4,32926,3,1672319027),(104376,4,32927,3,1672319027),(104377,4,32928,3,1672319027),(104378,4,32929,3,1672319027),(104379,4,32930,3,1672319027),(104380,4,32931,3,1672319027),(104381,4,32932,3,1672319027),(104382,4,32933,3,1672319027),(104383,4,32934,3,1672319027),(104384,4,32935,3,1672319027),(104385,4,32936,3,1672319027),(104386,4,32937,3,1672319027),(104387,4,32938,3,1672319027),(104388,4,32939,3,1672319027),(104389,4,32940,3,1672319027),(104390,4,32941,3,1672319027),(104391,4,32942,3,1672319027),(104392,4,32943,3,1672319027),(104393,4,32944,3,1672319027),(104394,4,32945,3,1672319027),(104395,4,32946,3,1672319027),(104396,4,32947,3,1672319027),(104397,4,32948,3,1672319027),(104398,4,32949,3,1672319027),(104399,4,32950,3,1672319027),(104400,4,32951,3,1672319027),(104401,4,32952,3,1672319027),(104402,4,32953,3,1672319027),(104403,4,32954,3,1672319027),(104404,4,32955,3,1672319027),(104405,4,32956,3,1672319027),(104406,4,32957,3,1672319027),(104407,4,32958,3,1672319027),(104408,4,32959,3,1672319027),(104409,4,32960,3,1672319027),(104410,4,32961,3,1672319027),(104411,4,32962,3,1672319027),(104412,4,32963,3,1672319027),(104413,4,32964,3,1672319027),(104414,4,32965,3,1672319027),(104415,4,32966,3,1672319027),(104416,4,32967,3,1672319027),(104417,4,32968,3,1672319027),(104418,4,32969,3,1672319027),(104419,4,32970,3,1672319027),(104420,4,32971,3,1672319027),(104421,4,32972,3,1672319027),(104422,4,32973,3,1672319027),(104423,4,32974,3,1672319027),(104424,4,32975,3,1672319027),(104425,4,32976,3,1672319027),(104426,4,32977,3,1672319027),(104427,4,32978,3,1672319027),(104428,4,32979,3,1672319027),(104429,4,32980,3,1672319027),(104430,4,32981,3,1672319027),(104431,4,32982,3,1672319027),(104432,4,32983,3,1672319027),(104433,4,32984,3,1672319027),(104434,4,32985,3,1672319027),(104435,4,32986,3,1672319027),(104436,4,32987,3,1672319027),(104437,4,32988,3,1672319027),(104438,4,32989,3,1672319027),(104439,4,32990,3,1672319027),(104440,4,32991,3,1672319027),(104441,4,32992,3,1672319027),(104442,4,32993,3,1672319027),(104443,4,32994,3,1672319027),(104444,4,32995,3,1672319027),(104445,4,32996,3,1672319027),(104446,4,32997,3,1672319027),(104447,4,32998,3,1672319027),(104448,4,32999,3,1672319027),(104449,4,33000,3,1672319027),(104450,4,33001,3,1672319027),(104451,4,33002,3,1672319027),(104452,4,33003,3,1672319027),(104453,4,33004,3,1672319027),(104454,4,33005,3,1672319027),(104455,4,33006,3,1672319027),(104456,4,33007,3,1672319027),(104457,4,33008,3,1672319027),(104458,4,33009,3,1672319027),(104459,4,33010,3,1672319027),(104460,4,33011,3,1672319027),(104461,4,33012,3,1672319027),(104462,4,33013,3,1672319027),(104463,4,33014,3,1672319027),(104464,4,33015,3,1672319027),(104465,4,33016,3,1672319027),(104466,4,33017,3,1672319027),(104467,4,33018,3,1672319027),(104468,4,33019,3,1672319027),(104469,4,33020,3,1672319027),(104470,4,33021,3,1672319027),(104471,4,33022,3,1672319027),(104472,4,33023,3,1672319027),(104473,4,33024,3,1672319027),(104474,4,33025,3,1672319027),(104475,4,33026,3,1672319027),(104476,4,33027,3,1672319027),(104477,4,33028,3,1672319027),(104478,4,33029,3,1672319027),(104479,4,33030,3,1672319027),(104480,4,33031,3,1672319027),(104481,4,33032,3,1672319027),(104482,4,33033,3,1672319027),(104483,4,33034,3,1672319027),(104484,4,33035,3,1672319027),(104485,4,33036,3,1672319027),(104486,4,33037,3,1672319027),(104487,4,33038,3,1672319027),(104488,4,33039,3,1672319027),(104489,4,33040,3,1672319027),(104490,4,33041,3,1672319027),(104491,4,33042,3,1672319027),(104492,4,33043,3,1672319027),(104493,4,33044,3,1672319027),(104494,4,33045,3,1672319027),(104495,4,33046,3,1672319027),(104496,4,33047,3,1672319027),(104497,4,33048,3,1672319027),(104498,4,33049,3,1672319027),(104499,4,33050,3,1672319027),(104500,4,33051,3,1672319027),(104501,4,33052,3,1672319027),(104502,4,33053,3,1672319027),(104503,4,33054,3,1672319027),(104504,4,33055,3,1672319027),(104505,4,33056,3,1672319027),(104506,4,33057,3,1672319027),(104507,4,33058,3,1672319027),(104508,4,33059,3,1672319027),(104509,4,33060,3,1672319027),(104510,4,33061,3,1672319027),(104511,4,33062,3,1672319027),(104512,4,33063,3,1672319027),(104513,4,33064,3,1672319027),(104514,4,33065,3,1672319027),(104515,4,33066,3,1672319027),(104516,4,33067,3,1672319027),(104517,4,33068,3,1672319027),(104518,4,33069,3,1672319027),(104519,4,33070,3,1672319027),(104520,4,33071,3,1672319027),(104521,4,33072,3,1672319027),(104522,4,33073,3,1672319027),(104523,4,33074,3,1672319027),(104524,4,33075,3,1672319027),(104525,4,33076,3,1672319027),(104526,4,33077,3,1672319027),(104527,4,33078,3,1672319027),(104528,4,33079,3,1672319027),(104529,4,33080,3,1672319027),(104530,4,33081,3,1672319027),(104531,4,33082,3,1672319027),(104532,4,33083,3,1672319027),(104533,4,33084,3,1672319027),(104534,4,33085,3,1672319027),(104535,4,33086,3,1672319027),(104536,4,33087,3,1672319027),(104537,4,33088,3,1672319027),(104538,4,33089,3,1672319027),(104539,4,33090,3,1672319027),(104540,4,33091,3,1672319027),(104541,4,33092,3,1672319027),(104542,4,33093,3,1672319027),(104543,4,33094,3,1672319027),(104544,4,33095,3,1672319027),(104545,4,33096,3,1672319027),(104546,4,33097,3,1672319027),(104547,4,33098,3,1672319027),(104548,4,33099,3,1672319027),(104549,4,33100,3,1672319027),(104550,4,33101,3,1672319027),(104551,4,33102,3,1672319027),(104552,4,33103,3,1672319027),(104553,4,33104,3,1672319027),(104554,4,33105,3,1672319027),(104555,4,33106,3,1672319027),(104556,4,33107,3,1672319027),(104557,4,33108,3,1672319027),(104558,4,33109,3,1672319027),(104559,4,33110,3,1672319027),(104560,4,33111,3,1672319027),(104561,4,33112,3,1672319027),(104562,4,33113,3,1672319027),(104563,4,33114,3,1672319027),(104564,4,33115,3,1672319027),(104565,4,33116,3,1672319027),(104566,4,33117,3,1672319027),(104567,4,33118,3,1672319027),(104568,4,33119,3,1672319027),(104569,4,33120,3,1672319027),(104570,4,33121,3,1672319027),(104571,4,33122,3,1672319027),(104572,4,33123,3,1672319027),(104573,4,33124,3,1672319027),(104574,4,33125,3,1672319027),(104575,4,33126,3,1672319027),(104576,4,33127,3,1672319027),(104577,4,33128,3,1672319027),(104578,4,33129,3,1672319027),(104579,4,33130,3,1672319027),(104580,4,33131,3,1672319027),(104581,4,33132,3,1672319027),(104582,4,33133,3,1672319027),(104583,4,33134,3,1672319027),(104584,4,33135,3,1672319027),(104585,4,33136,3,1672319027),(104586,4,33137,3,1672319027),(104587,4,33138,3,1672319027),(104588,4,33139,3,1672319027),(104589,4,33140,3,1672319027),(104590,4,33141,3,1672319027),(104591,4,33142,3,1672319027),(104592,4,33143,3,1672319027),(104593,4,33144,3,1672319027),(104594,4,33145,3,1672319027),(104595,4,33146,3,1672319027),(104596,4,33147,3,1672319027),(104597,4,33148,3,1672319027),(104598,4,33149,3,1672319027),(104599,4,33150,3,1672319027),(104600,4,33151,3,1672319027),(104601,4,33152,3,1672319027),(104602,4,33153,3,1672319027),(104603,4,33154,3,1672319027),(104604,4,33155,3,1672319027),(104605,4,33156,3,1672319027),(104606,4,33157,3,1672319027),(104607,4,33158,3,1672319027),(104608,4,33159,3,1672319027),(104609,4,33160,3,1672319027),(104610,4,33161,3,1672319027),(104611,4,33162,3,1672319027),(104612,4,33163,3,1672319027),(104613,4,33164,3,1672319027),(104614,4,33165,3,1672319027),(104615,4,33166,3,1672319027),(104616,4,33167,3,1672319027),(104617,4,33168,3,1672319027),(104618,4,33169,3,1672319027),(104619,4,33170,3,1672319027),(104620,4,33171,3,1672319027),(104621,4,33172,3,1672319027),(104622,4,33173,3,1672319027),(104623,4,33174,3,1672319027),(104624,4,33175,3,1672319027),(104625,4,33176,3,1672319027),(104626,4,33177,3,1672319027),(104627,4,33178,3,1672319027),(104628,4,33179,3,1672319027),(104629,4,33180,3,1672319027),(104630,4,33181,3,1672319027),(104631,4,33182,3,1672319027),(104632,4,33183,3,1672319027),(104633,4,33184,3,1672319027),(104634,4,33185,3,1672319027),(104635,4,33186,3,1672319027),(104636,4,33187,3,1672319027),(104637,4,33188,3,1672319027),(104638,4,33189,3,1672319027),(104639,4,33190,3,1672319027),(104640,4,33191,3,1672319027),(104641,4,33192,3,1672319027),(104642,4,33193,3,1672319027),(104643,4,33194,3,1672319027),(104644,4,33195,3,1672319027),(104645,4,33196,3,1672319027),(104646,4,33197,3,1672319027),(104647,4,33198,3,1672319027),(104648,4,33199,3,1672319027),(104649,4,33200,3,1672319027),(104650,4,33201,3,1672319027),(104651,4,33202,3,1672319027),(104652,4,33203,3,1672319027),(104653,4,33204,3,1672319027),(104654,4,33205,3,1672319027),(104655,4,33206,3,1672319027),(104656,4,33207,3,1672319027),(104657,4,33208,3,1672319027),(104658,4,33209,3,1672319027),(104659,4,33210,3,1672319027),(104660,4,33211,3,1672319027),(104661,4,33212,3,1672319027),(104662,4,33213,3,1672319027),(104663,4,33214,3,1672319027),(104664,4,33215,3,1672319027),(104665,4,33216,3,1672319027),(104666,4,33217,3,1672319027),(104667,4,33218,3,1672319027),(104668,4,33219,3,1672319027),(104669,4,33220,3,1672319027),(104670,4,33221,3,1672319027),(104671,4,33222,3,1672319027),(104672,4,33223,3,1672319027),(104673,4,33224,3,1672319027),(104674,4,33225,3,1672319027),(104675,4,33226,3,1672319027),(104676,4,33227,3,1672319027),(104677,4,33228,3,1672319027),(104678,4,33229,3,1672319027),(104679,4,33230,3,1672319027),(104680,4,33231,3,1672319027),(104681,4,33232,3,1672319027),(104682,4,33233,3,1672319027),(104683,4,33234,3,1672319027),(104684,4,33235,3,1672319027),(104685,4,33236,3,1672319027),(104686,4,33237,3,1672319027),(104687,4,33238,3,1672319027),(104688,4,33239,3,1672319027),(104689,4,33240,3,1672319027),(104690,4,33241,3,1672319027),(104691,4,33242,3,1672319027),(104692,4,33243,3,1672319027),(104693,4,33244,3,1672319027),(104694,4,33245,3,1672319027),(104695,4,33246,3,1672319027),(104696,4,33247,3,1672319027),(104697,4,33248,3,1672319027),(104698,4,33249,3,1672319027),(104699,4,33250,3,1672319027),(104700,4,33251,3,1672319027),(104701,4,33252,3,1672319027),(104702,4,33253,3,1672319027),(104703,4,33254,3,1672319027),(104704,4,33255,3,1672319027),(104705,4,33256,3,1672319027),(104706,4,33257,3,1672319027),(104707,4,33258,3,1672319027),(104708,4,33259,3,1672319027),(104709,4,33260,3,1672319027),(104710,4,33261,3,1672319027),(104711,4,33262,3,1672319027),(104712,4,33263,3,1672319027),(104713,4,33264,3,1672319027),(104714,4,33265,3,1672319027),(104715,4,33266,3,1672319027),(104716,4,33267,3,1672319027),(104717,4,33268,3,1672319027),(104718,4,33269,3,1672319027),(104719,4,33270,3,1672319027),(104720,4,33271,3,1672319027),(104721,4,33272,3,1672319027),(104722,4,33273,3,1672319027),(104723,4,33274,3,1672319027),(104724,4,33275,3,1672319027),(104725,4,33276,3,1672319027),(104726,4,33277,3,1672319027),(104727,4,33278,3,1672319027),(104728,4,33279,3,1672319027),(104729,4,33280,3,1672319027),(104730,4,33281,3,1672319027),(104731,4,33282,3,1672319027),(104732,4,33283,3,1672319027),(104733,4,33284,3,1672319027),(104734,4,33285,3,1672319027),(104735,4,33286,3,1672319027),(104736,4,33287,3,1672319027),(104737,4,33288,3,1672319027),(104738,4,33289,3,1672319027),(104739,4,33290,3,1672319027),(104740,4,33291,3,1672319027),(104741,4,33292,3,1672319027),(104742,4,33293,3,1672319027),(104743,4,33294,3,1672319027),(104744,4,33295,3,1672319027),(104745,4,33296,3,1672319027),(104746,4,33297,3,1672319027),(104747,4,33298,3,1672319027),(104748,4,33299,3,1672319027),(104749,4,33300,3,1672319027),(104750,4,33301,3,1672319027),(104751,4,33302,3,1672319027),(104752,4,33303,3,1672319027),(104753,4,33304,3,1672319027),(104754,4,33305,3,1672319027),(104755,4,33306,3,1672319027),(104756,4,33307,3,1672319027),(104757,4,33308,3,1672319027),(104758,4,33309,3,1672319027),(104759,4,33310,3,1672319027),(104760,4,33311,3,1672319027),(104761,4,33312,3,1672319027),(104762,4,33313,3,1672319027),(104763,4,33314,3,1672319027),(104764,4,33315,3,1672319027),(104765,4,33316,3,1672319027),(104766,4,33317,3,1672319027),(104767,4,33318,3,1672319027),(104768,4,33319,3,1672319027),(104769,4,33320,3,1672319027),(104770,4,33321,3,1672319027),(104771,4,33322,3,1672319027),(104772,4,33323,3,1672319027),(104773,4,33324,3,1672319027),(104774,4,33325,3,1672319027),(104775,4,33326,3,1672319027),(104776,4,33327,3,1672319027),(104777,4,33328,3,1672319027),(104778,4,33329,3,1672319027),(104779,4,33330,3,1672319027),(104780,4,33331,3,1672319027),(104781,4,33332,3,1672319027),(104782,4,33333,3,1672319027),(104783,4,33334,3,1672319027),(104784,4,33335,3,1672319027),(104785,4,33336,3,1672319027),(104786,4,33337,3,1672319027),(104787,4,33338,3,1672319027),(104788,4,33339,3,1672319027),(104789,4,33340,3,1672319027),(104790,4,33341,3,1672319027),(104791,4,33342,3,1672319027),(104792,4,33343,3,1672319027),(104793,4,33344,3,1672319027),(104794,4,33345,3,1672319027),(104795,4,33346,3,1672319027),(104796,4,33347,3,1672319027),(104797,4,33348,3,1672319027),(104798,4,33349,3,1672319027),(104799,4,33350,3,1672319027),(104800,4,33351,3,1672319027),(104801,4,33352,3,1672319027),(104802,4,33353,3,1672319027),(104803,4,33354,3,1672319027),(104804,4,33355,3,1672319027),(104805,4,33356,3,1672319027),(104806,4,33357,3,1672319027),(104807,4,33358,3,1672319027),(104808,4,33359,3,1672319027),(104809,4,33360,3,1672319027),(104810,4,33361,3,1672319027),(104811,4,33362,3,1672319027),(104812,4,33363,3,1672319027),(104813,4,33364,3,1672319027),(104814,4,33365,3,1672319027),(104815,4,33366,3,1672319027),(104816,4,33367,3,1672319027),(104817,4,33368,3,1672319027),(104818,4,33369,3,1672319027),(104819,4,33370,3,1672319027),(104820,4,33371,3,1672319027),(104821,4,33372,3,1672319027),(104822,4,33373,3,1672319027),(104823,4,33374,3,1672319027),(104824,4,33375,3,1672319027),(104825,4,33376,3,1672319027),(104826,4,33377,3,1672319027),(104827,4,33378,3,1672319027),(104828,4,33379,3,1672319027),(104829,4,33380,3,1672319027),(104830,4,33381,3,1672319027),(104831,4,33382,3,1672319027),(104832,4,33383,3,1672319027),(104833,4,33384,3,1672319027),(104834,4,33385,3,1672319027),(104835,4,33386,3,1672319027),(104836,4,33387,3,1672319027),(104837,4,33388,3,1672319027),(104838,4,33389,3,1672319027),(104839,4,33390,3,1672319027),(104840,4,33391,3,1672319027),(104841,4,33392,3,1672319027),(104842,4,33393,3,1672319027),(104843,4,33394,3,1672319027),(104844,4,33395,3,1672319027),(104845,4,33396,3,1672319027),(104846,4,33397,3,1672319027),(104847,4,33398,3,1672319027),(104848,4,33399,3,1672319027),(104849,4,33400,3,1672319027),(104850,4,33401,3,1672319027),(104851,4,33402,3,1672319027),(104852,4,33403,3,1672319027),(104853,4,33404,3,1672319027),(104854,4,33405,3,1672319027),(104855,4,33406,3,1672319027),(104856,4,33407,3,1672319027),(104857,4,33408,3,1672319027),(104858,4,33409,3,1672319027),(104859,4,33410,3,1672319027),(104860,4,33411,3,1672319027),(104861,4,33412,3,1672319027),(104862,4,33413,3,1672319027),(104863,4,33414,3,1672319027),(104864,4,33415,3,1672319027),(104865,4,33416,3,1672319027),(104866,4,33417,3,1672319027),(104867,4,33418,3,1672319027),(104868,4,33419,3,1672319027),(104869,4,33420,3,1672319027),(104870,4,33421,3,1672319027),(104871,4,33422,3,1672319027),(104872,4,33423,3,1672319027),(104873,4,33424,3,1672319027),(104874,4,33425,3,1672319027),(104875,4,33426,3,1672319027),(104876,4,33427,3,1672319027),(104877,4,33428,3,1672319027),(104878,4,33429,3,1672319027),(104879,4,33430,3,1672319027),(104880,4,33431,3,1672319027),(104881,4,33432,3,1672319027),(104882,4,33433,3,1672319027),(104883,4,33434,3,1672319027),(104884,4,33435,3,1672319027),(104885,4,33436,3,1672319027),(104886,4,33437,3,1672319027),(104887,4,33438,3,1672319027),(104888,4,33439,3,1672319027),(104889,4,33440,3,1672319027),(104890,4,33441,3,1672319027),(104891,4,33442,3,1672319027),(104892,4,33443,3,1672319027),(104893,4,33444,3,1672319027),(104894,4,33445,3,1672319027),(104895,4,33446,3,1672319027),(104896,4,33447,3,1672319027),(104897,4,33448,3,1672319027),(104898,4,33449,3,1672319027),(104899,4,33450,3,1672319027),(104900,4,33451,3,1672319027),(104901,4,33452,3,1672319027),(104902,4,33453,3,1672319027),(104903,4,33454,3,1672319027),(104904,4,33455,3,1672319027),(104905,4,33456,3,1672319027),(104906,4,33457,3,1672319027),(104907,4,33458,3,1672319027),(104908,4,33459,3,1672319027),(104909,4,33460,3,1672319027),(104910,4,33461,3,1672319027),(104911,4,33462,3,1672319027),(104912,4,33463,3,1672319027),(104913,4,33464,3,1672319027),(104914,4,33465,3,1672319027),(104915,4,33466,3,1672319027),(104916,4,33467,3,1672319027),(104917,4,33468,3,1672319027),(104918,4,33469,3,1672319027),(104919,4,33470,3,1672319027),(104920,4,33471,3,1672319027),(104921,4,33472,3,1672319027),(104922,4,33473,3,1672319027),(104923,4,33474,3,1672319027),(104924,4,33475,3,1672319027),(104925,4,33476,3,1672319027),(104926,4,33477,3,1672319027),(104927,4,33478,3,1672319027),(104928,4,33479,3,1672319027),(104929,4,33480,3,1672319027),(104930,4,33481,3,1672319027),(104931,4,33482,3,1672319027),(104932,4,33483,3,1672319027),(104933,4,33484,3,1672319027),(104934,4,33485,3,1672319027),(104935,4,33486,3,1672319027),(104936,4,33487,3,1672319027),(104937,4,33488,3,1672319027),(104938,4,33489,3,1672319027),(104939,4,33490,3,1672319027),(104940,4,33491,3,1672319027),(104941,4,33492,3,1672319027),(104942,4,33493,3,1672319027),(104943,4,33494,3,1672319027),(104944,4,33495,3,1672319027),(104945,4,33496,3,1672319027),(104946,4,33497,3,1672319027),(104947,4,33498,3,1672319027),(104948,4,33499,3,1672319027),(104949,4,33500,3,1672319027),(104950,4,33501,3,1672319027),(104951,4,33502,3,1672319027),(104952,4,33503,3,1672319027),(104953,4,33504,3,1672319027),(104954,4,33505,3,1672319027),(104955,4,33506,3,1672319027),(104956,4,33507,3,1672319027),(104957,4,33508,3,1672319027),(104958,4,33509,3,1672319027),(104959,4,33510,3,1672319027),(104960,4,33511,3,1672319027),(104961,4,33512,3,1672319027),(104962,4,33513,3,1672319027),(104963,4,33514,3,1672319027),(104964,4,33515,3,1672319027),(104965,4,33516,3,1672319027),(104966,4,33517,3,1672319027),(104967,4,33518,3,1672319027),(104968,4,33519,3,1672319027),(104969,4,33520,3,1672319027),(104970,4,33521,3,1672319027),(104971,4,33522,3,1672319027),(104972,4,33523,3,1672319027),(104973,4,33524,3,1672319027),(104974,4,33525,3,1672319027),(104975,4,33526,3,1672319027),(104976,4,33527,3,1672319027),(104977,4,33528,3,1672319027),(104978,4,33529,3,1672319027),(104979,4,33530,3,1672319027),(104980,4,33531,3,1672319027),(104981,4,33532,3,1672319027),(104982,4,33533,3,1672319027),(104983,4,33534,3,1672319027),(104984,4,33535,3,1672319027),(104985,4,33536,3,1672319027),(104986,4,33537,3,1672319027),(104987,4,33538,3,1672319027),(104988,4,33539,3,1672319027),(104989,4,33540,3,1672319027),(104990,4,33541,3,1672319027),(104991,4,33542,3,1672319027),(104992,4,33543,3,1672319027),(104993,4,33544,3,1672319027),(104994,4,33545,3,1672319027),(104995,4,33546,3,1672319027),(104996,4,33547,3,1672319027),(104997,4,33548,3,1672319027),(104998,4,33549,3,1672319027),(104999,4,33550,3,1672319027),(105000,4,33551,3,1672319027),(105001,4,33552,3,1672319027),(105002,4,33553,3,1672319027),(105003,4,33554,3,1672319027),(105004,4,33555,3,1672319027),(105005,4,33556,3,1672319027),(105006,4,33557,3,1672319027),(105007,4,33558,3,1672319027),(105008,4,33559,3,1672319027),(105009,4,33560,3,1672319027),(105010,4,33561,3,1672319027),(105011,4,33562,3,1672319027),(105012,4,33563,3,1672319027),(105013,4,33564,3,1672319027),(105014,4,33565,3,1672319027),(105015,4,33566,3,1672319027),(105016,4,33567,3,1672319027),(105017,4,33568,3,1672319027),(105018,4,33569,3,1672319027),(105019,4,33570,3,1672319027),(105020,4,33571,3,1672319027),(105021,4,33572,3,1672319027),(105022,4,33573,3,1672319027),(105023,4,33574,3,1672319027),(105024,4,33575,3,1672319027),(105025,4,33576,3,1672319027),(105026,4,33577,3,1672319027),(105027,4,33578,3,1672319027),(105028,4,33579,3,1672319027),(105029,4,33580,3,1672319027),(105030,4,33581,3,1672319027),(105031,4,33582,3,1672319027),(105032,4,33583,3,1672319027),(105033,4,33584,3,1672319027),(105034,4,33585,3,1672319027),(105035,4,33586,3,1672319027),(105036,4,33587,3,1672319027),(105037,4,33588,3,1672319027),(105038,4,33589,3,1672319027),(105039,4,33590,3,1672319027),(105040,4,33591,3,1672319027),(105041,4,33592,3,1672319027),(105042,4,33593,3,1672319027),(105043,4,33594,3,1672319027),(105044,4,33595,3,1672319027),(105045,4,33596,3,1672319027),(105046,4,33597,3,1672319027),(105047,4,33598,3,1672319027),(105048,4,33599,3,1672319027),(105049,4,33600,3,1672319027),(105050,4,33601,3,1672319027),(105051,4,33602,3,1672319027),(105052,4,33603,3,1672319027),(105053,4,33604,3,1672319027),(105054,4,33605,3,1672319027),(105055,4,33606,3,1672319027),(105056,4,33607,3,1672319027),(105057,4,33608,3,1672319027),(105058,4,33609,3,1672319027),(105059,4,33610,3,1672319027),(105060,4,33611,3,1672319027),(105061,4,33612,3,1672319027),(105062,4,33613,3,1672319027),(105063,4,33614,3,1672319027),(105064,4,33615,3,1672319027),(105065,4,33616,3,1672319027),(105066,4,33617,3,1672319027),(105067,4,33618,3,1672319027),(105068,4,33619,3,1672319027),(105069,4,33620,3,1672319027),(105070,4,33621,3,1672319027),(105071,4,33622,3,1672319027),(105072,4,33623,3,1672319027),(105073,4,33624,3,1672319027),(105074,4,33625,3,1672319027),(105075,4,33626,3,1672319027),(105076,4,33627,3,1672319027),(105077,4,33628,3,1672319027),(105078,4,33629,3,1672319027),(105079,4,33630,3,1672319027),(105080,4,33631,3,1672319027),(105081,4,33632,3,1672319027),(105082,4,33633,3,1672319027),(105083,4,33634,3,1672319027),(105084,4,33635,3,1672319027),(105085,4,33636,3,1672319027),(105086,4,33637,3,1672319027),(105087,4,33638,3,1672319027),(105088,4,33639,3,1672319027),(105089,4,33640,3,1672319027),(105090,4,33641,3,1672319027),(105091,4,33642,3,1672319027),(105092,4,33643,3,1672319027),(105093,4,33644,3,1672319027),(105094,4,33645,3,1672319027),(105095,4,33646,3,1672319027),(105096,4,33647,3,1672319027),(105097,4,33648,3,1672319027),(105098,4,33649,3,1672319027),(105099,4,33650,3,1672319027),(105100,4,33651,3,1672319027),(105101,4,33652,3,1672319027),(105102,4,33653,3,1672319027),(105103,4,33654,3,1672319027),(105104,4,33655,3,1672319027),(105105,4,33656,3,1672319027),(105106,4,33657,3,1672319027),(105107,4,33658,3,1672319027),(105108,4,33659,3,1672319027),(105109,4,33660,3,1672319027),(105110,4,33661,3,1672319027),(105111,4,33662,3,1672319027),(105112,4,33663,3,1672319027),(105113,4,33664,3,1672319027),(105114,4,33665,3,1672319027),(105115,4,33666,3,1672319027),(105116,4,33667,3,1672319027),(105117,4,33668,3,1672319027),(105118,4,33669,3,1672319027),(105119,4,33670,3,1672319027),(105120,4,33671,3,1672319027),(105121,4,33672,3,1672319027),(105122,4,33673,3,1672319027),(105123,4,33674,3,1672319027),(105124,4,33675,3,1672319027),(105125,4,33676,3,1672319027),(105126,4,33677,3,1672319027),(105127,4,33678,3,1672319027),(105128,4,33679,3,1672319027),(105129,4,33680,3,1672319027),(105130,4,33681,3,1672319027),(105131,4,33682,3,1672319027),(105132,4,33683,3,1672319027),(105133,4,33684,3,1672319027),(105134,4,33685,3,1672319027),(105135,4,33686,3,1672319027),(105136,4,33687,3,1672319027),(105137,4,33688,3,1672319027),(105138,4,33689,3,1672319027),(105139,4,33690,3,1672319027),(105140,4,33691,3,1672319027),(105141,4,33692,3,1672319027),(105142,4,33693,3,1672319027),(105143,4,33694,3,1672319027),(105144,4,33695,3,1672319027),(105145,4,33696,3,1672319027),(105146,4,33697,3,1672319027),(105147,4,33698,3,1672319027),(105148,4,33699,3,1672319027),(105149,4,33700,3,1672319027),(105150,4,33701,3,1672319027),(105151,4,33702,3,1672319027),(105152,4,33703,3,1672319027),(105153,4,33704,3,1672319027),(105154,4,33705,3,1672319027),(105155,4,33706,3,1672319027),(105156,4,33707,3,1672319027),(105157,4,33708,3,1672319027),(105158,4,33709,3,1672319027),(105159,4,33710,3,1672319027),(105160,4,33711,3,1672319027),(105161,4,33712,3,1672319027),(105162,4,33713,3,1672319027),(105163,4,33714,3,1672319027),(105164,4,33715,3,1672319027),(105165,4,33716,3,1672319027),(105166,4,33717,3,1672319027),(105167,4,33718,3,1672319027),(105168,4,33719,3,1672319027),(105169,4,33720,3,1672319027),(105170,4,33721,3,1672319027),(105171,4,33722,3,1672319027),(105172,4,33723,3,1672319027),(105173,4,33724,3,1672319027),(105174,4,33725,3,1672319027),(105175,4,33726,3,1672319027),(105176,4,33727,3,1672319027),(105177,4,33728,3,1672319027),(105178,4,33729,3,1672319027),(105179,4,33730,3,1672319027),(105180,4,33731,3,1672319027),(105181,4,33732,3,1672319027),(105182,4,33733,3,1672319027),(105183,4,33734,3,1672319027),(105184,4,33735,3,1672319027),(105185,4,33736,3,1672319027),(105186,4,33737,3,1672319027),(105187,4,33738,3,1672319027),(105188,4,33739,3,1672319027),(105189,4,33740,3,1672319027),(105190,4,33741,3,1672319027),(105191,4,33742,3,1672319027),(105192,4,33743,3,1672319027),(105193,4,33744,3,1672319027),(105194,4,33745,3,1672319027),(105195,4,33746,3,1672319027),(105196,4,33747,3,1672319027),(105197,4,33748,3,1672319027),(105198,4,33749,3,1672319027),(105199,4,33750,3,1672319027),(105200,4,33751,3,1672319027),(105201,4,33752,3,1672319027),(105202,4,33753,3,1672319027),(105203,4,33754,3,1672319027),(105204,4,33755,3,1672319027),(105205,4,33756,3,1672319027),(105206,4,33757,3,1672319027),(105207,4,33758,3,1672319027),(105208,4,33759,3,1672319027),(105209,4,33760,3,1672319027),(105210,4,33761,3,1672319027),(105211,4,33762,3,1672319027),(105212,4,33763,3,1672319027),(105213,4,33764,3,1672319027),(105214,4,33765,3,1672319027),(105215,4,33766,3,1672319027),(105216,4,33767,3,1672319027),(105217,4,33768,3,1672319027),(105218,4,33769,3,1672319027),(105219,4,33770,3,1672319027),(105220,4,33771,3,1672319027),(105221,4,33772,3,1672319027),(105222,4,33773,3,1672319027),(105223,4,33774,3,1672319027),(105224,4,33775,3,1672319027),(105225,4,33776,3,1672319027),(105226,4,33777,3,1672319027),(105227,4,33778,3,1672319027),(105228,4,33779,3,1672319027),(105229,4,33780,3,1672319027),(105230,4,33781,3,1672319027),(105231,4,33782,3,1672319027),(105232,4,33783,3,1672319027),(105233,4,33784,3,1672319027),(105234,4,33785,3,1672319027),(105235,4,33786,3,1672319027),(105236,4,33787,3,1672319027),(105237,4,33788,3,1672319027),(105238,4,33789,3,1672319027),(105239,4,33790,3,1672319027),(105240,4,33791,3,1672319027),(105241,4,33792,3,1672319027),(105242,4,33793,3,1672319027),(105243,4,33794,3,1672319027),(105244,4,33795,3,1672319027),(105245,4,33796,3,1672319027),(105246,4,33797,3,1672319027),(105247,4,33798,3,1672319027),(105248,4,33799,3,1672319027),(105249,4,33800,3,1672319027),(105250,4,33801,3,1672319027),(105251,4,33802,3,1672319027),(105252,4,33803,3,1672319027),(105253,4,33804,3,1672319027),(105254,4,33805,3,1672319027),(105255,4,33806,3,1672319027),(105256,4,33807,3,1672319027),(105257,4,33808,3,1672319027),(105258,4,33809,3,1672319027),(105259,4,33810,3,1672319027),(105260,4,33811,3,1672319027),(105261,4,33812,3,1672319027),(105262,4,33813,3,1672319027),(105263,4,33814,3,1672319027),(105264,4,33815,3,1672319027),(105265,4,33816,3,1672319027),(105266,4,33817,3,1672319027),(105267,4,33818,3,1672319027),(105268,4,33819,3,1672319027),(105269,4,33820,3,1672319027),(105270,4,33821,3,1672319027),(105271,4,33822,3,1672319027),(105272,4,33823,3,1672319027),(105273,4,33824,3,1672319027),(105274,4,33825,3,1672319027),(105275,4,33826,3,1672319027),(105276,4,33827,3,1672319027),(105277,4,33828,3,1672319027),(105278,4,33829,3,1672319027),(105279,4,33830,3,1672319027),(105280,4,33831,3,1672319027),(105281,4,33832,3,1672319027),(105282,4,33833,3,1672319027),(105283,4,33834,3,1672319027),(105284,4,33835,3,1672319027),(105285,4,33836,3,1672319027),(105286,4,33837,3,1672319027),(105287,4,33838,3,1672319027),(105288,4,33839,3,1672319027),(105289,4,33840,3,1672319027),(105290,4,33841,3,1672319027),(105291,4,33842,3,1672319027),(105292,4,33843,3,1672319027),(105293,4,33844,3,1672319027),(105294,4,33845,3,1672319027),(105295,4,33846,3,1672319027),(105296,4,33847,3,1672319027),(105297,4,33848,3,1672319027),(105298,4,33849,3,1672319027),(105299,4,33850,3,1672319027),(105300,4,33851,3,1672319027),(105301,4,33852,3,1672319027),(105302,4,33853,3,1672319027),(105303,4,33854,3,1672319027),(105304,4,33855,3,1672319027),(105305,4,33856,3,1672319027),(105306,4,33857,3,1672319027),(105307,4,33858,3,1672319027),(105308,4,33859,3,1672319027),(105309,4,33860,3,1672319027),(105310,4,33861,3,1672319027),(105311,4,33862,3,1672319027),(105312,4,33863,3,1672319027),(105313,4,33864,3,1672319027),(105314,4,33865,3,1672319027),(105315,4,33866,3,1672319027),(105316,4,33867,3,1672319027),(105317,4,33868,3,1672319027),(105318,4,33869,3,1672319027),(105319,4,33870,3,1672319027),(105320,4,33871,3,1672319027),(105321,4,33872,3,1672319027),(105322,4,33873,3,1672319027),(105323,4,33874,3,1672319027),(105324,4,33875,3,1672319027),(105325,4,33876,3,1672319027),(105326,4,33877,3,1672319027),(105327,4,33878,3,1672319027),(105328,4,33879,3,1672319027),(105329,4,33880,3,1672319027),(105330,4,33881,3,1672319027),(105331,4,33882,3,1672319027),(105332,4,33883,3,1672319027),(105333,4,33884,3,1672319027),(105334,4,33885,3,1672319027),(105335,4,33886,3,1672319027),(105336,4,33887,3,1672319027),(105337,4,33888,3,1672319027),(105338,4,33889,3,1672319027),(105339,4,33890,3,1672319027),(105340,4,33891,3,1672319027),(105341,4,33892,3,1672319027),(105342,4,33893,3,1672319027),(105343,4,33894,3,1672319027),(105344,4,33895,3,1672319027),(105345,4,33896,3,1672319027),(105346,4,33897,3,1672319027),(105347,4,33898,3,1672319027),(105348,4,33899,3,1672319027),(105349,4,33900,3,1672319027),(105350,4,33901,3,1672319027),(105351,4,33902,3,1672319027),(105352,4,33903,3,1672319027),(105353,4,33904,3,1672319027),(105354,4,33905,3,1672319027),(105355,4,33906,3,1672319027),(105356,4,33907,3,1672319027),(105357,4,33908,3,1672319027),(105358,4,33909,3,1672319027),(105359,4,33910,3,1672319027),(105360,4,33911,3,1672319027),(105361,4,33912,3,1672319027),(105362,4,33913,3,1672319027),(105363,4,33914,3,1672319027),(105364,4,33915,3,1672319027),(105365,4,33916,3,1672319027),(105366,4,33917,3,1672319027),(105367,4,33918,3,1672319027),(105368,4,33919,3,1672319027),(105369,4,33920,3,1672319027),(105370,4,33921,3,1672319027),(105371,4,33922,3,1672319027),(105372,4,33923,3,1672319027),(105373,4,33924,3,1672319027),(105374,4,33925,3,1672319027),(105375,4,33926,3,1672319027),(105376,4,33927,3,1672319027),(105377,4,33928,3,1672319027),(105378,4,33929,3,1672319027),(105379,4,33930,3,1672319027),(105380,4,33931,3,1672319027),(105381,4,33932,3,1672319027),(105382,4,33933,3,1672319027),(105383,4,33934,3,1672319027),(105384,4,33935,3,1672319027),(105385,4,33936,3,1672319027),(105386,4,33937,3,1672319027),(105387,4,33938,3,1672319027),(105388,4,33939,3,1672319027),(105389,4,33940,3,1672319027),(105390,4,33941,3,1672319027),(105391,4,33942,3,1672319027),(105392,4,33943,3,1672319027),(105393,4,33944,3,1672319027),(105394,4,33945,3,1672319027),(105395,4,33946,3,1672319027),(105396,4,33947,3,1672319027),(105397,4,33948,3,1672319027),(105398,4,33949,3,1672319027),(105399,4,33950,3,1672319027),(105400,4,33951,3,1672319027),(105401,4,33952,3,1672319027),(105402,4,33953,3,1672319027),(105403,4,33954,3,1672319027),(105404,4,33955,3,1672319027),(105405,4,33956,3,1672319027),(105406,4,33957,3,1672319027),(105407,4,33958,3,1672319027),(105408,4,33959,3,1672319027),(105409,4,33960,3,1672319027),(105410,4,33961,3,1672319027),(105411,4,33962,3,1672319027),(105412,4,33963,3,1672319027),(105413,4,33964,3,1672319027),(105414,4,33965,3,1672319027),(105415,4,33966,3,1672319027),(105416,4,33967,3,1672319027),(105417,4,33968,3,1672319027),(105418,4,33969,3,1672319027),(105419,4,33970,3,1672319027),(105420,4,33971,3,1672319027),(105421,4,33972,3,1672319027),(105422,4,33973,3,1672319027),(105423,4,33974,3,1672319027),(105424,4,33975,3,1672319027),(105425,4,33976,3,1672319027),(105426,4,33977,3,1672319027),(105427,4,33978,3,1672319027),(105428,4,33979,3,1672319027),(105429,4,33980,3,1672319027),(105430,4,33981,3,1672319027),(105431,4,33982,3,1672319027),(105432,4,33983,3,1672319027),(105433,4,33984,3,1672319027),(105434,4,33985,3,1672319027),(105435,4,33986,3,1672319027),(105436,4,33987,3,1672319027),(105437,4,33988,3,1672319027),(105438,4,33989,3,1672319027),(105439,4,33990,3,1672319027),(105440,4,33991,3,1672319027),(105441,4,33992,3,1672319027),(105442,4,33993,3,1672319027),(105443,4,33994,3,1672319027),(105444,4,33995,3,1672319027),(105445,4,33996,3,1672319027),(105446,4,33997,3,1672319027),(105447,4,33998,3,1672319027),(105448,4,33999,3,1672319027),(105449,4,34000,3,1672319027),(105450,4,34001,3,1672319027),(105451,4,34002,3,1672319027),(105452,4,34003,3,1672319027),(105453,4,34004,3,1672319027),(105454,4,34005,3,1672319027),(105455,4,34006,3,1672319027),(105456,4,34007,3,1672319027),(105457,4,34008,3,1672319027),(105458,4,34009,3,1672319027),(105459,4,34010,3,1672319027),(105460,4,34011,3,1672319027),(105461,4,34012,3,1672319027),(105462,4,34013,3,1672319027),(105463,4,34014,3,1672319027),(105464,4,34015,3,1672319027),(105465,4,34016,3,1672319027),(105466,4,34017,3,1672319027),(105467,4,34018,3,1672319027),(105468,4,34019,3,1672319027),(105469,4,34020,3,1672319027),(105470,4,34021,3,1672319027),(105471,4,34022,3,1672319027),(105472,4,34023,3,1672319027),(105473,4,34024,3,1672319027),(105474,4,34025,3,1672319027),(105475,4,34026,3,1672319027),(105476,4,34027,3,1672319027),(105477,4,34028,3,1672319027),(105478,4,34029,3,1672319027),(105479,4,34030,3,1672319027),(105480,4,34031,3,1672319027),(105481,4,34032,3,1672319027),(105482,4,34033,3,1672319027),(105483,4,34034,3,1672319027),(105484,4,34035,3,1672319027),(105485,4,34036,3,1672319027),(105486,4,34037,3,1672319027),(105487,4,34038,3,1672319027),(105488,4,34039,3,1672319027),(105489,4,34040,3,1672319027),(105490,4,34041,3,1672319027),(105491,4,34042,3,1672319027),(105492,4,34043,3,1672319027),(105493,4,34044,3,1672319027),(105494,4,34045,3,1672319027),(105495,4,34046,3,1672319027),(105496,4,34047,3,1672319027),(105497,4,34048,3,1672319027),(105498,4,34049,3,1672319027),(105499,4,34050,3,1672319027),(105500,4,34051,3,1672319027),(105501,4,34052,3,1672319027),(105502,4,34053,3,1672319027),(105503,4,34054,3,1672319027),(105504,4,34055,3,1672319027),(105505,4,34056,3,1672319027),(105506,4,34057,3,1672319027),(105507,4,34058,3,1672319027),(105508,4,34059,3,1672319027),(105509,4,34060,3,1672319027),(105510,4,34061,3,1672319027),(105511,4,34062,3,1672319027),(105512,4,34063,3,1672319027),(105513,4,34064,3,1672319027),(105514,4,34065,3,1672319027),(105515,4,34066,3,1672319027),(105516,4,34067,3,1672319027),(105517,4,34068,3,1672319027),(105518,4,34069,3,1672319027),(105519,4,34070,3,1672319027),(105520,4,34071,3,1672319027),(105521,4,34072,3,1672319027),(105522,4,34073,3,1672319027),(105523,4,34074,3,1672319027),(105524,4,34075,3,1672319027),(105525,4,34076,3,1672319027),(105526,4,34077,3,1672319027),(105527,4,34078,3,1672319027),(105528,4,34079,3,1672319027),(105529,4,34080,3,1672319027),(105530,4,34081,3,1672319027),(105531,4,34082,3,1672319027),(105532,4,34083,3,1672319027),(105533,4,34084,3,1672319027),(105534,4,34085,3,1672319027),(105535,4,34086,3,1672319027),(105536,4,34087,3,1672319027),(105537,4,34088,3,1672319027),(105538,4,34089,3,1672319027),(105539,4,34090,3,1672319027),(105540,4,34091,3,1672319027),(105541,4,34092,3,1672319027),(105542,4,34093,3,1672319027),(105543,4,34094,3,1672319027),(105544,4,34095,3,1672319027),(105545,4,34096,3,1672319027),(105546,4,34097,3,1672319027),(105547,4,34098,3,1672319027),(105548,4,34099,3,1672319027),(105549,4,34100,3,1672319027),(105550,4,34101,3,1672319027),(105551,4,34102,3,1672319027),(105552,4,34103,3,1672319027),(105553,4,34104,3,1672319027),(105554,4,34105,3,1672319027),(105555,4,34106,3,1672319027),(105556,4,34107,3,1672319027),(105557,4,34108,3,1672319027),(105558,4,34109,3,1672319027),(105559,4,34110,3,1672319027),(105560,4,34111,3,1672319027),(105561,4,34112,3,1672319027),(105562,4,34113,3,1672319027),(105563,4,34114,3,1672319027),(105564,4,34115,3,1672319027),(105565,4,34116,3,1672319027),(105566,4,34117,3,1672319027),(105567,4,34118,3,1672319027),(105568,4,34119,3,1672319027),(105569,4,34120,3,1672319027),(105570,4,34121,3,1672319027),(105571,4,34122,3,1672319027),(105572,4,34123,3,1672319027),(105573,4,34124,3,1672319027),(105574,4,34125,3,1672319027),(105575,4,34126,3,1672319027),(105576,4,34127,3,1672319027),(105577,4,34128,3,1672319027),(105578,4,34129,3,1672319027),(105579,4,34130,3,1672319027),(105580,4,34131,3,1672319027),(105581,4,34132,3,1672319027),(105582,4,34133,3,1672319027),(105583,4,34134,3,1672319027),(105584,4,34135,3,1672319027),(105585,4,34136,3,1672319027),(105586,4,34137,3,1672319027),(105587,4,34138,3,1672319027),(105588,4,34139,3,1672319027),(105589,4,34140,3,1672319027),(105590,4,34141,3,1672319027),(105591,4,34142,3,1672319027),(105592,4,34143,3,1672319027),(105593,4,34144,3,1672319027),(105594,4,34145,3,1672319027),(105595,4,34146,3,1672319027),(105596,4,34147,3,1672319027),(105597,4,34148,3,1672319027),(105598,4,34149,3,1672319027),(105599,4,34150,3,1672319027),(105600,4,34151,3,1672319027),(105601,4,34152,3,1672319027),(105602,4,34153,3,1672319027),(105603,4,34154,3,1672319027),(105604,4,34155,3,1672319027),(105605,4,34156,3,1672319027),(105606,4,34157,3,1672319027),(105607,4,34158,3,1672319027),(105608,4,34159,3,1672319027),(105609,4,34160,3,1672319027),(105610,4,34161,3,1672319027),(105611,4,34162,3,1672319027),(105612,4,34163,3,1672319027),(105613,4,34164,3,1672319027),(105614,4,34165,3,1672319027),(105615,4,34166,3,1672319027),(105616,4,34167,3,1672319027),(105617,4,34168,3,1672319027),(105618,4,34169,3,1672319027),(105619,4,34170,3,1672319027),(105620,4,34171,3,1672319027),(105621,4,34172,3,1672319027),(105622,4,34173,3,1672319027),(105623,4,34174,3,1672319027),(105624,4,34175,3,1672319027),(105625,4,34176,3,1672319027),(105626,4,34177,3,1672319027),(105627,4,34178,3,1672319027),(105628,4,34179,3,1672319027),(105629,4,34180,3,1672319027),(105630,4,34181,3,1672319027),(105631,4,34182,3,1672319027),(105632,4,34183,3,1672319027),(105633,4,34184,3,1672319027),(105634,4,34185,3,1672319027),(105635,4,34186,3,1672319027),(105636,4,34187,3,1672319027),(105637,4,34188,3,1672319027),(105638,4,34189,3,1672319027),(105639,4,34190,3,1672319027),(105640,4,34191,3,1672319027),(105641,4,34192,3,1672319027),(105642,4,34193,3,1672319027),(105643,4,34194,3,1672319027),(105644,4,34195,3,1672319027),(105645,4,34196,3,1672319027),(105646,4,34197,3,1672319027),(105647,4,34198,3,1672319027),(105648,4,34199,3,1672319027),(105649,4,34200,3,1672319027),(105650,4,34201,3,1672319027),(105651,4,34202,3,1672319027),(105652,4,34203,3,1672319027),(105653,4,34204,3,1672319027),(105654,4,34205,3,1672319027),(105655,4,34206,3,1672319027),(105656,4,34207,3,1672319027),(105657,4,34208,3,1672319027),(105658,4,34209,3,1672319027),(105659,4,34210,3,1672319027),(105660,4,34211,3,1672319027),(105661,4,34212,3,1672319027),(105662,4,34213,3,1672319027),(105663,4,34214,3,1672319027),(105664,4,34215,3,1672319027),(105665,4,34216,3,1672319027),(105666,4,34217,3,1672319027),(105667,4,34218,3,1672319027),(105668,4,34219,3,1672319027),(105669,4,34220,3,1672319027),(105670,4,34221,3,1672319027),(105671,4,34222,3,1672319027),(105672,4,34223,3,1672319027),(105673,4,34224,3,1672319027),(105674,4,34225,3,1672319027),(105675,4,34226,3,1672319027),(105676,4,34227,3,1672319027),(105677,4,34228,3,1672319027),(105678,4,34229,3,1672319027),(105679,4,34230,3,1672319027),(105680,4,34231,3,1672319027),(105681,4,34232,3,1672319027),(105682,4,34233,3,1672319027),(105683,4,34234,3,1672319027),(105684,4,34235,3,1672319027),(105685,4,34236,3,1672319027),(105686,4,34237,3,1672319027),(105687,4,34238,3,1672319027),(105688,4,34239,3,1672319027),(105689,4,34240,3,1672319027),(105690,4,34241,3,1672319027),(105691,4,34242,3,1672319027),(105692,4,34243,3,1672319027),(105693,4,34244,3,1672319027),(105694,4,34245,3,1672319027),(105695,4,34246,3,1672319027),(105696,4,34247,3,1672319027),(105697,4,34248,3,1672319027),(105698,4,34249,3,1672319027),(105699,4,34250,3,1672319027),(105700,4,34251,3,1672319027),(105701,4,34252,3,1672319027),(105702,4,34253,3,1672319027),(105703,4,34254,3,1672319027),(105704,4,34255,3,1672319027),(105705,4,34256,3,1672319027),(105706,4,34257,3,1672319027),(105707,4,34258,3,1672319027),(105708,4,34259,3,1672319027),(105709,4,34260,3,1672319027),(105710,4,34261,3,1672319027),(105711,4,34262,3,1672319027),(105712,4,34263,3,1672319027),(105713,4,34264,3,1672319027),(105714,4,34265,3,1672319027),(105715,4,34266,3,1672319027),(105716,4,34267,3,1672319027),(105717,4,34268,3,1672319027),(105718,4,34269,3,1672319027),(105719,4,34270,3,1672319027),(105720,4,34271,3,1672319027),(105721,4,34272,3,1672319027),(105722,4,34273,3,1672319027),(105723,4,34274,3,1672319027),(105724,4,34275,3,1672319027),(105725,4,34276,3,1672319027),(105726,4,34277,3,1672319027),(105727,4,34278,3,1672319027),(105728,4,34279,3,1672319027),(105729,4,34280,3,1672319027),(105730,4,34281,3,1672319027),(105731,4,34282,3,1672319027),(105732,4,34283,3,1672319027),(105733,4,34284,3,1672319027),(105734,4,34285,3,1672319027),(105735,4,34286,3,1672319027),(105736,4,34287,3,1672319027),(105737,4,34288,3,1672319027),(105738,4,34289,3,1672319027),(105739,4,34290,3,1672319027),(105740,4,34291,3,1672319027),(105741,4,34292,3,1672319027),(105742,4,34293,3,1672319027),(105743,4,34294,3,1672319027),(105744,4,34295,3,1672319027),(105745,4,34296,3,1672319027),(105746,4,34297,3,1672319027),(105747,4,34298,3,1672319027),(105748,4,34299,3,1672319027),(105749,4,34300,3,1672319027),(105750,4,34301,3,1672319027),(105751,4,34302,3,1672319027),(105752,4,34303,3,1672319027),(105753,4,34304,3,1672319027),(105754,4,34305,3,1672319027),(105755,4,34306,3,1672319027),(105756,4,34307,3,1672319027),(105757,4,34308,3,1672319027),(105758,4,34309,3,1672319027),(105759,4,34310,3,1672319027),(105760,4,34311,3,1672319027),(105761,4,34312,3,1672319027),(105762,4,34313,3,1672319027),(105763,4,34314,3,1672319027),(105764,4,34315,3,1672319027),(105765,4,34316,3,1672319027),(105766,4,34317,3,1672319027),(105767,4,34318,3,1672319027),(105768,4,34319,3,1672319027),(105769,4,34320,3,1672319027),(105770,4,34321,3,1672319027),(105771,4,34322,3,1672319027),(105772,4,34323,3,1672319027),(105773,4,34324,3,1672319027),(105774,4,34325,3,1672319027),(105775,4,34326,3,1672319027),(105776,4,34327,3,1672319027),(105777,4,34328,3,1672319027),(105778,4,34329,3,1672319027),(105779,4,34330,3,1672319027),(105780,4,34331,3,1672319027),(105781,4,34332,3,1672319027),(105782,4,34333,3,1672319027),(105783,4,34334,3,1672319027),(105784,4,34335,3,1672319027),(105785,4,34336,3,1672319027),(105786,4,34337,3,1672319027),(105787,4,34338,3,1672319027),(105788,4,34339,3,1672319027),(105789,4,34340,3,1672319027),(105790,4,34341,3,1672319027),(105791,4,34342,3,1672319027),(105792,4,34343,3,1672319027),(105793,4,34344,3,1672319027),(105794,4,34345,3,1672319027),(105795,4,34346,3,1672319027),(105796,4,34347,3,1672319027),(105797,4,34348,3,1672319027),(105798,4,34349,3,1672319027),(105799,4,34350,3,1672319027),(105800,4,34351,3,1672319027),(105801,4,34352,3,1672319027),(105802,4,34353,3,1672319027),(105803,4,34354,3,1672319027),(105804,4,34355,3,1672319027),(105805,4,34356,3,1672319027),(105806,4,34357,3,1672319027),(105807,4,34358,3,1672319027),(105808,4,34359,3,1672319027),(105809,4,34360,3,1672319027),(105810,4,34361,3,1672319027),(105811,4,34362,3,1672319027),(105812,4,34363,3,1672319027),(105813,4,34364,3,1672319027),(105814,4,34365,3,1672319027),(105815,4,34366,3,1672319027),(105816,4,34367,3,1672319027),(105817,4,34368,3,1672319027),(105818,4,34369,3,1672319027),(105819,4,34370,3,1672319027),(105820,4,34371,3,1672319027),(105821,4,34372,3,1672319027),(105822,4,34373,3,1672319027),(105823,4,34374,3,1672319027),(105824,4,34375,3,1672319027),(105825,4,34376,3,1672319027),(105826,4,34377,3,1672319027),(105827,4,34378,3,1672319027),(105828,4,34379,3,1672319027),(105829,4,34380,3,1672319027),(105830,4,34381,3,1672319027),(105831,4,34382,3,1672319027),(105832,4,34383,3,1672319027),(105833,4,34384,3,1672319027),(105834,4,34385,3,1672319027),(105835,4,34386,3,1672319027),(105836,4,34387,3,1672319027),(105837,4,34388,3,1672319027),(105838,4,34389,3,1672319027),(105839,4,34390,3,1672319027),(105840,4,34391,3,1672319027),(105841,4,34392,3,1672319027),(105842,4,34393,3,1672319027),(105843,4,34394,3,1672319027),(105844,4,34395,3,1672319027),(105845,4,34396,3,1672319027),(105846,4,34397,3,1672319027),(105847,4,34398,3,1672319027),(105848,4,34399,3,1672319027),(105849,4,34400,3,1672319027),(105850,4,34401,3,1672319027),(105851,4,34402,3,1672319027),(105852,4,34403,3,1672319027),(105853,4,34404,3,1672319027),(105854,4,34405,3,1672319027),(105855,4,34406,3,1672319027),(105856,4,34407,3,1672319027),(105857,4,34408,3,1672319027),(105858,4,34409,3,1672319027),(105859,4,34410,3,1672319027),(105860,4,34411,3,1672319027),(105861,4,34412,3,1672319027),(105862,4,34413,3,1672319027),(105863,4,34414,3,1672319027),(105864,4,34415,3,1672319027),(105865,4,34416,3,1672319027),(105866,4,34417,3,1672319027),(105867,4,34418,3,1672319027),(105868,4,34419,3,1672319027),(105869,4,34420,3,1672319027),(105870,4,34421,3,1672319027),(105871,4,34422,3,1672319027),(105872,4,34423,3,1672319027),(105873,4,34424,3,1672319027),(105874,4,34425,3,1672319027),(105875,4,34426,3,1672319027),(105876,4,34427,3,1672319027),(105877,4,34428,3,1672319027),(105878,4,34429,3,1672319027),(105879,4,34430,3,1672319027),(105880,4,34431,3,1672319027),(105881,4,34432,3,1672319027),(105882,4,34433,3,1672319027),(105883,4,34434,3,1672319027),(105884,4,34435,3,1672319027),(105885,4,34436,3,1672319027),(105886,4,34437,3,1672319027),(105887,4,34438,3,1672319027),(105888,4,34439,3,1672319027),(105889,4,34440,3,1672319027),(105890,4,34441,3,1672319027),(105891,4,34442,3,1672319027),(105892,4,34443,3,1672319027),(105893,4,34444,3,1672319027),(105894,4,34445,3,1672319027),(105895,4,34446,3,1672319027),(105896,4,34447,3,1672319027),(105897,4,34448,3,1672319027),(105898,4,34449,3,1672319027),(105899,4,34450,3,1672319027),(105900,4,34451,3,1672319027),(105901,4,34452,3,1672319027),(105902,4,34453,3,1672319027),(105903,4,34454,3,1672319027),(105904,4,34455,3,1672319027),(105905,4,34456,3,1672319027),(105906,4,34457,3,1672319027),(105907,4,34458,3,1672319027),(105908,4,34459,3,1672319027),(105909,4,34460,3,1672319027),(105910,4,34461,3,1672319027),(105911,4,34462,3,1672319027),(105912,4,34463,3,1672319027),(105913,4,34464,3,1672319027),(105914,4,34465,3,1672319027),(105915,4,34466,3,1672319027),(105916,4,34467,3,1672319027),(105917,4,34468,3,1672319027),(105918,4,34469,3,1672319027),(105919,4,34470,3,1672319027),(105920,4,34471,3,1672319027),(105921,4,34472,3,1672319027),(105922,4,34473,3,1672319027),(105923,4,34474,3,1672319027),(105924,4,34475,3,1672319027),(105925,4,34476,3,1672319027),(105926,4,34477,3,1672319027),(105927,4,34478,3,1672319027),(105928,4,34479,3,1672319027),(105929,4,34480,3,1672319027),(105930,4,34481,3,1672319027),(105931,4,34482,3,1672319027),(105932,4,34483,3,1672319027),(105933,4,34484,3,1672319027),(105934,4,34485,3,1672319027),(105935,4,34486,3,1672319027),(105936,4,34487,3,1672319027),(105937,4,34488,3,1672319027),(105938,4,34489,3,1672319027),(105939,4,34490,3,1672319027),(105940,4,34491,3,1672319027),(105941,4,34492,3,1672319027),(105942,4,34493,3,1672319027),(105943,4,34494,3,1672319027),(105944,4,34495,3,1672319027),(105945,4,34496,3,1672319027),(105946,4,34497,3,1672319027),(105947,4,34498,3,1672319027),(105948,4,34499,3,1672319027),(105949,4,34500,3,1672319027),(105950,4,34501,3,1672319027),(105951,4,34502,3,1672319027),(105952,4,34503,3,1672319027),(105953,4,34504,3,1672319027),(105954,4,34505,3,1672319027),(105955,4,34506,3,1672319027),(105956,4,34507,3,1672319027),(105957,4,34508,3,1672319027),(105958,4,34509,3,1672319027),(105959,4,34510,3,1672319027),(105960,4,34511,3,1672319027),(105961,4,34512,3,1672319027),(105962,4,34513,3,1672319027),(105963,4,34514,3,1672319027),(105964,4,34515,3,1672319027),(105965,4,34516,3,1672319027),(105966,4,34517,3,1672319027),(105967,4,34518,3,1672319027),(105968,4,34519,3,1672319027),(105969,4,34520,3,1672319027),(105970,4,34521,3,1672319027),(105971,4,34522,3,1672319027),(105972,4,34523,3,1672319027),(105973,4,34524,3,1672319027),(105974,4,34525,3,1672319027),(105975,4,34526,3,1672319027),(105976,4,34527,3,1672319027),(105977,4,34528,3,1672319027),(105978,4,34529,3,1672319027),(105979,4,34530,3,1672319027),(105980,4,34531,3,1672319027),(105981,4,34532,3,1672319027),(105982,4,34533,3,1672319027),(105983,4,34534,3,1672319027),(105984,4,34535,3,1672319027),(105985,4,34536,3,1672319027),(105986,4,34537,3,1672319027),(105987,4,34538,3,1672319027),(105988,4,34539,3,1672319027),(105989,4,34540,3,1672319027),(105990,4,34541,3,1672319027),(105991,4,34542,3,1672319027),(105992,4,34543,3,1672319027),(105993,4,34544,3,1672319027),(105994,4,34545,3,1672319027),(105995,4,34546,3,1672319027),(105996,4,34547,3,1672319027),(105997,4,34548,3,1672319027),(105998,4,34549,3,1672319027),(105999,4,34550,3,1672319027),(106000,4,34551,3,1672319027),(106001,4,34552,3,1672319027),(106002,4,34553,3,1672319027),(106003,4,34554,3,1672319027),(106004,4,34555,3,1672319027),(106005,4,34556,3,1672319027),(106006,4,34557,3,1672319027),(106007,4,34558,3,1672319027),(106008,4,34559,3,1672319027),(106009,4,34560,3,1672319027),(106010,4,34561,3,1672319027),(106011,4,34562,3,1672319027),(106012,4,34563,3,1672319027),(106013,4,34564,3,1672319027),(106014,4,34565,3,1672319027),(106015,4,34566,3,1672319027),(106016,4,34567,3,1672319027),(106017,4,34568,3,1672319027),(106018,4,34569,3,1672319027),(106019,4,34570,3,1672319027),(106020,4,34571,3,1672319027),(106021,4,34572,3,1672319027),(106022,4,34573,3,1672319027),(106023,4,34574,3,1672319027),(106024,4,34575,3,1672319027),(106025,4,34576,3,1672319027),(106026,4,34577,3,1672319027),(106027,4,34578,3,1672319027),(106028,4,34579,3,1672319027),(106029,4,34580,3,1672319027),(106030,4,34581,3,1672319027); INSERT INTO `changelog` VALUES (106031,4,34582,3,1672319027),(106032,4,34583,3,1672319027),(106033,4,34584,3,1672319027),(106034,4,34585,3,1672319027),(106035,4,34586,3,1672319027),(106036,4,34587,3,1672319027),(106037,4,34588,3,1672319027),(106038,4,34589,3,1672319027),(106039,4,34590,3,1672319027),(106040,4,34591,3,1672319027),(106041,4,34592,3,1672319027),(106042,4,34593,3,1672319027),(106043,4,34594,3,1672319027),(106044,4,34595,3,1672319027),(106045,4,34596,3,1672319027),(106046,4,34597,3,1672319027),(106047,4,34598,3,1672319027),(106048,4,34599,3,1672319027),(106049,4,34600,3,1672319027),(106050,4,34601,3,1672319027),(106051,4,34602,3,1672319027),(106052,4,34603,3,1672319027),(106053,4,34604,3,1672319027),(106054,4,34605,3,1672319027),(106055,4,34606,3,1672319027),(106056,4,34607,3,1672319027),(106057,4,34608,3,1672319027),(106058,4,34609,3,1672319027),(106059,4,34610,3,1672319027),(106060,4,34611,3,1672319027),(106061,4,34612,3,1672319027),(106062,4,34613,3,1672319027),(106063,4,34614,3,1672319027),(106064,4,34615,3,1672319027),(106065,4,34616,3,1672319027),(106066,4,34617,3,1672319027),(106067,4,34618,3,1672319027),(106068,4,34619,3,1672319027),(106069,4,34620,3,1672319027),(106070,4,34621,3,1672319027),(106071,4,34622,3,1672319027),(106072,4,34623,3,1672319027),(106073,4,34624,3,1672319027),(106074,4,34625,3,1672319027),(106075,4,34626,3,1672319027),(106076,4,34627,3,1672319027),(106077,4,34628,3,1672319027),(106078,4,34629,3,1672319027),(106079,4,34630,3,1672319027),(106080,4,34631,3,1672319027),(106081,4,34632,3,1672319027),(106082,4,34633,3,1672319027),(106083,4,34634,3,1672319027),(106084,4,34635,3,1672319027),(106085,4,34636,3,1672319027),(106086,4,34637,3,1672319027),(106087,4,34638,3,1672319027),(106088,4,34639,3,1672319027),(106089,4,34640,3,1672319027),(106090,4,34641,3,1672319027),(106091,4,34642,3,1672319027),(106092,4,34643,3,1672319027),(106093,4,34644,3,1672319027),(106094,4,34645,3,1672319027),(106095,4,34646,3,1672319027),(106096,4,34647,3,1672319027),(106097,4,34648,3,1672319027),(106098,4,34649,3,1672319027),(106099,4,34650,3,1672319027),(106100,4,34651,3,1672319027),(106101,4,34652,3,1672319027),(106102,4,34653,3,1672319027),(106103,4,34654,3,1672319027),(106104,4,34655,3,1672319027),(106105,4,34656,3,1672319027),(106106,4,34657,3,1672319027),(106107,4,34658,3,1672319027),(106108,4,34659,3,1672319027),(106109,4,34660,3,1672319027),(106110,4,34661,3,1672319027),(106111,4,34662,3,1672319027),(106112,4,34663,3,1672319027),(106113,4,34664,3,1672319027),(106114,4,34665,3,1672319027),(106115,4,34666,3,1672319027),(106116,4,34667,3,1672319027),(106117,4,34668,3,1672319027),(106118,4,34669,3,1672319027),(106119,4,34670,3,1672319027),(106120,4,34671,3,1672319027),(106121,4,34672,3,1672319027),(106122,4,34673,3,1672319027),(106123,4,34674,3,1672319027),(106124,4,34675,3,1672319027),(106125,4,34676,3,1672319027),(106126,4,34677,3,1672319027),(106127,4,34678,3,1672319027),(106128,4,34679,3,1672319027),(106129,4,34680,3,1672319027),(106130,4,34681,3,1672319027),(106131,4,34682,3,1672319027),(106132,4,34683,3,1672319027),(106133,4,34684,3,1672319027),(106134,4,34685,3,1672319027),(106135,4,34686,3,1672319027),(106136,4,34687,3,1672319027),(106137,4,34688,3,1672319027),(106138,4,34689,3,1672319027),(106139,4,34690,3,1672319027),(106140,4,34691,3,1672319027),(106141,4,34692,3,1672319027),(106142,4,34693,3,1672319027),(106143,4,34694,3,1672319027),(106144,4,34695,3,1672319027),(106145,4,34696,3,1672319027),(106146,4,34697,3,1672319027),(106147,4,34698,3,1672319027),(106148,4,34699,3,1672319027),(106149,4,34700,3,1672319027),(106150,4,34701,3,1672319027),(106151,4,34702,3,1672319027),(106152,4,34703,3,1672319027),(106153,4,34704,3,1672319027),(106154,4,34705,3,1672319027),(106155,4,34706,3,1672319027),(106156,4,34707,3,1672319027),(106157,4,34708,3,1672319027),(106158,4,34709,3,1672319027),(106159,4,34710,3,1672319027),(106160,4,34711,3,1672319027),(106161,4,34712,3,1672319027),(106162,4,34713,3,1672319027),(106163,4,34714,3,1672319027),(106164,4,34715,3,1672319027),(106165,4,34716,3,1672319027),(106166,4,34717,3,1672319027),(106167,4,34718,3,1672319027),(106168,4,34719,3,1672319027),(106169,4,34720,3,1672319027),(106170,4,34721,3,1672319027),(106171,4,34722,3,1672319027),(106172,4,34723,3,1672319027),(106173,4,34724,3,1672319027),(106174,4,34725,3,1672319027),(106175,4,34726,3,1672319027),(106176,4,34727,3,1672319027),(106177,4,34728,3,1672319027),(106178,4,34729,3,1672319027),(106179,4,34730,3,1672319027),(106180,4,34731,3,1672319027),(106181,4,34732,3,1672319027),(106182,4,34733,3,1672319027),(106183,4,34734,3,1672319027),(106184,4,34735,3,1672319027),(106185,4,34736,3,1672319027),(106186,4,34737,3,1672319027),(106187,4,34738,3,1672319027),(106188,4,34739,3,1672319027),(106189,4,34740,3,1672319027),(106190,4,34741,3,1672319027),(106191,4,34742,3,1672319027),(106192,4,34743,3,1672319027),(106193,4,34744,3,1672319027),(106194,4,34745,3,1672319027),(106195,4,34746,3,1672319027),(106196,4,34747,3,1672319027),(106197,4,34748,3,1672319027),(106198,4,34749,3,1672319027),(106199,4,34750,3,1672319027),(106200,4,34751,3,1672319027),(106201,4,34752,3,1672319027),(106202,4,34753,3,1672319027),(106203,4,34754,3,1672319027),(106204,4,34755,3,1672319027),(106205,4,34756,3,1672319027),(106206,4,34757,3,1672319027),(106207,4,34758,3,1672319027),(106208,4,34759,3,1672319027),(106209,4,34760,3,1672319027),(106210,4,34761,3,1672319027),(106211,4,34762,3,1672319027),(106212,4,34763,3,1672319027),(106213,4,34764,3,1672319027),(106214,4,34765,3,1672319027),(106215,4,34766,3,1672319027),(106216,4,34767,3,1672319027),(106217,4,34768,3,1672319027),(106218,4,34769,3,1672319027),(106219,4,34770,3,1672319027),(106220,4,34771,3,1672319027),(106221,4,34772,3,1672319027),(106222,4,34773,3,1672319027),(106223,4,34774,3,1672319027),(106224,4,34775,3,1672319027),(106225,4,34776,3,1672319027),(106226,4,34777,3,1672319027),(106227,4,34778,3,1672319027),(106228,4,34779,3,1672319027),(106229,4,34780,3,1672319027),(106230,4,34781,3,1672319027),(106231,4,34782,3,1672319027),(106232,4,34783,3,1672319027),(106233,4,34784,3,1672319027),(106234,4,34785,3,1672319027),(106235,4,34786,3,1672319027),(106236,4,34787,3,1672319027),(106237,4,34788,3,1672319027),(106238,4,34789,3,1672319027),(106239,4,34790,3,1672319027),(106240,4,34791,3,1672319027),(106241,4,34792,3,1672319027),(106242,4,34793,3,1672319027),(106243,4,34794,3,1672319027),(106244,4,34795,3,1672319027),(106245,4,34796,3,1672319027),(106246,4,34797,3,1672319027),(106247,4,34798,3,1672319027),(106248,4,34799,3,1672319027),(106249,4,34800,3,1672319027),(106250,4,34801,3,1672319027),(106251,4,34802,3,1672319027),(106252,4,34803,3,1672319027),(106253,4,34804,3,1672319027),(106254,4,34805,3,1672319027),(106255,4,34806,3,1672319027),(106256,4,34807,3,1672319027),(106257,4,34808,3,1672319027),(106258,4,34809,3,1672319027),(106259,4,34810,3,1672319027),(106260,4,34811,3,1672319027),(106261,4,34812,3,1672319027),(106262,4,34813,3,1672319027),(106263,4,34814,3,1672319027),(106264,4,34815,3,1672319027),(106265,4,34816,3,1672319027),(106266,4,34817,3,1672319027),(106267,4,34818,3,1672319027),(106268,4,34819,3,1672319027),(106269,4,34820,3,1672319027),(106270,4,34821,3,1672319027),(106271,4,34822,3,1672319027),(106272,4,34823,3,1672319027),(106273,4,34824,3,1672319027),(106274,4,34825,3,1672319027),(106275,4,34826,3,1672319027),(106276,4,34827,3,1672319027),(106277,4,34828,3,1672319027),(106278,4,34829,3,1672319027),(106279,4,34830,3,1672319027),(106280,4,34831,3,1672319027),(106281,4,34832,3,1672319027),(106282,4,34833,3,1672319027),(106283,4,34834,3,1672319027),(106284,4,34835,3,1672319027),(106285,4,34836,3,1672319027),(106286,4,34837,3,1672319027),(106287,4,34838,3,1672319027),(106288,4,34839,3,1672319027),(106289,4,34840,3,1672319027),(106290,4,34841,3,1672319027),(106291,4,34842,3,1672319027),(106292,4,34843,3,1672319027),(106293,4,34844,3,1672319027),(106294,4,34845,3,1672319027),(106295,4,34846,3,1672319027),(106296,4,34847,3,1672319027),(106297,4,34848,3,1672319027),(106298,4,34849,3,1672319027),(106299,4,34850,3,1672319027),(106300,4,34851,3,1672319027),(106301,4,34852,3,1672319027),(106302,4,34853,3,1672319027),(106303,4,34854,3,1672319027),(106304,4,34855,3,1672319027),(106305,4,34856,3,1672319027),(106306,4,34857,3,1672319027),(106307,4,34858,3,1672319027),(106308,4,34859,3,1672319027),(106309,4,34860,3,1672319027),(106310,4,34861,3,1672319027),(106311,4,34862,3,1672319027),(106312,4,34863,3,1672319027),(106313,4,34864,3,1672319027),(106314,4,34865,3,1672319027),(106315,4,34866,3,1672319027),(106316,4,34867,3,1672319027),(106317,4,34868,3,1672319027),(106318,4,34869,3,1672319027),(106319,4,34870,3,1672319027),(106320,4,34871,3,1672319027),(106321,4,34872,3,1672319027),(106322,4,34873,3,1672319027),(106323,4,34874,3,1672319027),(106324,4,34875,3,1672319027),(106325,4,34876,3,1672319027),(106326,4,34877,3,1672319027),(106327,4,34878,3,1672319027),(106328,4,34879,3,1672319027),(106329,4,34880,3,1672319027),(106330,4,34881,3,1672319027),(106331,4,34882,3,1672319027),(106332,4,34883,3,1672319027),(106333,4,34884,3,1672319027),(106334,4,34885,3,1672319027),(106335,4,34886,3,1672319027),(106336,4,34887,3,1672319027),(106337,4,34888,3,1672319027),(106338,4,34889,3,1672319027),(106339,4,34890,3,1672319027),(106340,4,34891,3,1672319027),(106341,4,34892,3,1672319027),(106342,4,34893,3,1672319027),(106343,4,34894,3,1672319027),(106344,4,34895,3,1672319027),(106345,4,34896,3,1672319027),(106346,4,34897,3,1672319027),(106347,4,34898,3,1672319027),(106348,4,34899,3,1672319027),(106349,4,34900,3,1672319027),(106350,4,34901,3,1672319027),(106351,4,34902,3,1672319027),(106352,4,34903,3,1672319027),(106353,4,34904,3,1672319027),(106354,4,34905,3,1672319027),(106355,4,34906,3,1672319027),(106356,4,34907,3,1672319027),(106357,4,34908,3,1672319027),(106358,4,34909,3,1672319027),(106359,4,34910,3,1672319027),(106360,4,34911,3,1672319027),(106361,4,34912,3,1672319027),(106362,4,34913,3,1672319027),(106363,4,34914,3,1672319027),(106364,4,34915,3,1672319027),(106365,4,34916,3,1672319027),(106366,4,34917,3,1672319027),(106367,4,34918,3,1672319027),(106368,4,34919,3,1672319027),(106369,4,34920,3,1672319027),(106370,4,34921,3,1672319027),(106371,4,34922,3,1672319027),(106372,4,34923,3,1672319027),(106373,4,34924,3,1672319027),(106374,4,34925,3,1672319027),(106375,4,34926,3,1672319027),(106376,4,34927,3,1672319027),(106377,4,34928,3,1672319027),(106378,4,34929,3,1672319027),(106379,4,34930,3,1672319027),(106380,4,34931,3,1672319027),(106381,4,34932,3,1672319027),(106382,4,34933,3,1672319027),(106383,4,34934,3,1672319027),(106384,4,34935,3,1672319027),(106385,4,34936,3,1672319027),(106386,4,34937,3,1672319027),(106387,4,34938,3,1672319027),(106388,4,34939,3,1672319027),(106389,4,34940,3,1672319027),(106390,4,34941,3,1672319027),(106391,4,34942,3,1672319027),(106392,4,34943,3,1672319027),(106393,4,34944,3,1672319027),(106394,4,34945,3,1672319027),(106395,4,34946,3,1672319027),(106396,4,34947,3,1672319027),(106397,4,34948,3,1672319027),(106398,4,34949,3,1672319027),(106399,4,34950,3,1672319027),(106400,4,34951,3,1672319027),(106401,4,34952,3,1672319027),(106402,4,34953,3,1672319027),(106403,4,34954,3,1672319027),(106404,4,34955,3,1672319027),(106405,4,34956,3,1672319027),(106406,4,34957,3,1672319027),(106407,4,34958,3,1672319027),(106408,4,34959,3,1672319027),(106409,4,34960,3,1672319027),(106410,4,34961,3,1672319027),(106411,4,34962,3,1672319027),(106412,4,34963,3,1672319027),(106413,4,34964,3,1672319027),(106414,4,34965,3,1672319027),(106415,4,34966,3,1672319027),(106416,4,34967,3,1672319027),(106417,4,34968,3,1672319027),(106418,4,34969,3,1672319027),(106419,4,34970,3,1672319027),(106420,4,34971,3,1672319027),(106421,4,34972,3,1672319027),(106422,4,34973,3,1672319027),(106423,4,34974,3,1672319027),(106424,4,34975,3,1672319027),(106425,4,34976,3,1672319027),(106426,4,34977,3,1672319027),(106427,4,34978,3,1672319027),(106428,4,34979,3,1672319027),(106429,4,34980,3,1672319027),(106430,4,34981,3,1672319027),(106431,4,34982,3,1672319027),(106432,4,34983,3,1672319027),(106433,4,34984,3,1672319027),(106434,4,34985,3,1672319027),(106435,4,34986,3,1672319027),(106436,4,34987,3,1672319027),(106437,4,34988,3,1672319027),(106438,4,34989,3,1672319027),(106439,4,34990,3,1672319027),(106440,4,34991,3,1672319027),(106441,4,34992,3,1672319027),(106442,4,34993,3,1672319027),(106443,4,34994,3,1672319027),(106444,4,34995,3,1672319027),(106445,4,34996,3,1672319027),(106446,4,34997,3,1672319027),(106447,4,34998,3,1672319027),(106448,4,34999,3,1672319027),(106449,4,35000,3,1672319027),(106450,4,35001,3,1672319027),(106451,4,35002,3,1672319027),(106452,4,35003,3,1672319027),(106453,4,35004,3,1672319027),(106454,4,35005,3,1672319027),(106455,4,35006,3,1672319027),(106456,4,35007,3,1672319027),(106457,4,35008,3,1672319027),(106458,4,35009,3,1672319027),(106459,4,35010,3,1672319027),(106460,4,35011,3,1672319027),(106461,4,35012,3,1672319027),(106462,4,35013,3,1672319027),(106463,4,35014,3,1672319027),(106464,4,35015,3,1672319027),(106465,4,35016,3,1672319027),(106466,4,35017,3,1672319027),(106467,4,35018,3,1672319027),(106468,4,35019,3,1672319027),(106469,4,35020,3,1672319027),(106470,4,35021,3,1672319027),(106471,4,35022,3,1672319027),(106472,4,35023,3,1672319027),(106473,4,35024,3,1672319027),(106474,4,35025,3,1672319027),(106475,4,35026,3,1672319027),(106476,4,35027,3,1672319027),(106477,4,35028,3,1672319027),(106478,4,35029,3,1672319027),(106479,4,35030,3,1672319027),(106480,4,35031,3,1672319027),(106481,4,35032,3,1672319027),(106482,4,35033,3,1672319027),(106483,4,35034,3,1672319027),(106484,4,35035,3,1672319027),(106485,4,35036,3,1672319027),(106486,4,35037,3,1672319027),(106487,4,35038,3,1672319027),(106488,4,35039,3,1672319027),(106489,4,35040,3,1672319027),(106490,4,35041,3,1672319027),(106491,4,35042,3,1672319027),(106492,4,35043,3,1672319027),(106493,4,35044,3,1672319027),(106494,4,35045,3,1672319027),(106495,4,35046,3,1672319027),(106496,4,35047,3,1672319027),(106497,4,35048,3,1672319027),(106498,4,35049,3,1672319027),(106499,4,35050,3,1672319027),(106500,4,35051,3,1672319027),(106501,4,35052,3,1672319027),(106502,4,35053,3,1672319027),(106503,4,35054,3,1672319027),(106504,4,35055,3,1672319027),(106505,4,35056,3,1672319027),(106506,4,35057,3,1672319027),(106507,4,35058,3,1672319027),(106508,4,35059,3,1672319027),(106509,4,35060,3,1672319027),(106510,4,35061,3,1672319027),(106511,4,35062,3,1672319027),(106512,4,35063,3,1672319027),(106513,4,35064,3,1672319027),(106514,4,35065,3,1672319027),(106515,4,35066,3,1672319027),(106516,4,35067,3,1672319027),(106517,4,35068,3,1672319027),(106518,4,35069,3,1672319027),(106519,4,35070,3,1672319027),(106520,4,35071,3,1672319027),(106521,4,35072,3,1672319027),(106522,4,35073,3,1672319027),(106523,4,35074,3,1672319027),(106524,4,35075,3,1672319027),(106525,4,35076,3,1672319027),(106526,4,35077,3,1672319027),(106527,4,35078,3,1672319027),(106528,4,35079,3,1672319027),(106529,4,35080,3,1672319027),(106530,4,35081,3,1672319027),(106531,4,35082,3,1672319027),(106532,4,35083,3,1672319027),(106533,4,35084,3,1672319027),(106534,4,35085,3,1672319027),(106535,4,35086,3,1672319027),(106536,4,35087,3,1672319027),(106537,4,35088,3,1672319027),(106538,4,35089,3,1672319027),(106539,4,35090,3,1672319027),(106540,4,35091,3,1672319027),(106541,4,35092,3,1672319027),(106542,4,35093,3,1672319027),(106543,4,35094,3,1672319027),(106544,4,35095,3,1672319027),(106545,4,35096,3,1672319027),(106546,4,35097,3,1672319027),(106547,4,35098,3,1672319027),(106548,4,35099,3,1672319027),(106549,4,35100,3,1672319027),(106550,4,35101,3,1672319027),(106551,4,35102,3,1672319027),(106552,4,35103,3,1672319027),(106553,4,35104,3,1672319027),(106554,4,35105,3,1672319027),(106555,4,35106,3,1672319027),(106556,4,35107,3,1672319027),(106557,4,35108,3,1672319027),(106558,4,35109,3,1672319027),(106559,4,35110,3,1672319027),(106560,4,35111,3,1672319027),(106561,4,35112,3,1672319027),(106562,4,35113,3,1672319027),(106563,4,35114,3,1672319027),(106564,4,35115,3,1672319027),(106565,4,35116,3,1672319027),(106566,4,35117,3,1672319027),(106567,4,35118,3,1672319027),(106568,4,35119,3,1672319027),(106569,4,35120,3,1672319027),(106570,4,35121,3,1672319027),(106571,4,35122,3,1672319027),(106572,4,35123,3,1672319027),(106573,4,35124,3,1672319027),(106574,4,35125,3,1672319027),(106575,4,35126,3,1672319027),(106576,4,35127,3,1672319027),(106577,4,35128,3,1672319027),(106578,4,35129,3,1672319027),(106579,4,35130,3,1672319027),(106580,4,35131,3,1672319027),(106581,4,35132,3,1672319027),(106582,4,35133,3,1672319027),(106583,4,35134,3,1672319027),(106584,4,35135,3,1672319027),(106585,4,35136,3,1672319027),(106586,4,35137,3,1672319027),(106587,4,35138,3,1672319027),(106588,4,35139,3,1672319027),(106589,4,35140,3,1672319027),(106590,4,35141,3,1672319027),(106591,4,35142,3,1672319027),(106592,4,35143,3,1672319027),(106593,4,35144,3,1672319027),(106594,4,35145,3,1672319027),(106595,4,35146,3,1672319027),(106596,4,35147,3,1672319027),(106597,4,35148,3,1672319027),(106598,4,35149,3,1672319027),(106599,4,35150,3,1672319027),(106600,4,35151,3,1672319027),(106601,4,35152,3,1672319027),(106602,4,35153,3,1672319027),(106603,4,35154,3,1672319027),(106604,4,35155,3,1672319027),(106605,4,35156,3,1672319027),(106606,4,35157,3,1672319027),(106607,4,35158,3,1672319027),(106608,4,35159,3,1672319027),(106609,4,35160,3,1672319027),(106610,4,35161,3,1672319027),(106611,4,35162,3,1672319027),(106612,4,35163,3,1672319027),(106613,4,35164,3,1672319027),(106614,4,35165,3,1672319027),(106615,4,35166,3,1672319027),(106616,4,35167,3,1672319027),(106617,4,35168,3,1672319027),(106618,4,35169,3,1672319027),(106619,4,35170,3,1672319027),(106620,4,35171,3,1672319027),(106621,4,35172,3,1672319027),(106622,4,35173,3,1672319027),(106623,4,35174,3,1672319027),(106624,4,35175,3,1672319027),(106625,4,35176,3,1672319027),(106626,4,35177,3,1672319027),(106627,4,35178,3,1672319027),(106628,4,35179,3,1672319027),(106629,4,35180,3,1672319027),(106630,4,35181,3,1672319027),(106631,4,35182,3,1672319027),(106632,4,35183,3,1672319027),(106633,4,35184,3,1672319027),(106634,4,35185,3,1672319027),(106635,4,35186,3,1672319027),(106636,4,35187,3,1672319027),(106637,4,35188,3,1672319027),(106638,4,35189,3,1672319027),(106639,4,35190,3,1672319027),(106640,4,35191,3,1672319027),(106641,4,35192,3,1672319027),(106642,4,35193,3,1672319027),(106643,4,35194,3,1672319027),(106644,4,35195,3,1672319027),(106645,4,35196,3,1672319027),(106646,4,35197,3,1672319027),(106647,4,35198,3,1672319027),(106648,4,35199,3,1672319027),(106649,4,35200,3,1672319027),(106650,4,35201,3,1672319027),(106651,4,35202,3,1672319027),(106652,4,35203,3,1672319027),(106653,4,35204,3,1672319027),(106654,4,35205,3,1672319027),(106655,4,35206,3,1672319027),(106656,4,35207,3,1672319027),(106657,4,35208,3,1672319027),(106658,4,35209,3,1672319027),(106659,4,35210,3,1672319027),(106660,4,35211,3,1672319027),(106661,4,35212,3,1672319027),(106662,4,35213,3,1672319027),(106663,4,35214,3,1672319027),(106664,4,35215,3,1672319027),(106665,4,35216,3,1672319027),(106666,4,35217,3,1672319027),(106667,4,35218,3,1672319027),(106668,4,35219,3,1672319027),(106669,4,35220,3,1672319027),(106670,4,35221,3,1672319027),(106671,4,35222,3,1672319027),(106672,4,35224,3,1672319027),(106673,4,35225,3,1672319027),(106674,4,35227,3,1672319027),(106675,4,35228,3,1672319027),(106676,4,35229,3,1672319027),(106677,4,35230,3,1672319027),(106678,4,35231,3,1672319027),(106679,4,35232,3,1672319027),(106680,4,35233,3,1672319027),(106681,4,35234,3,1672319027),(106682,4,35235,3,1672319027),(106683,4,35236,3,1672319027),(106684,4,35237,3,1672319027),(106685,4,35238,3,1672319027),(106686,4,35239,3,1672319027),(106687,4,35240,3,1672319027),(106688,4,35241,3,1672319027),(106689,4,35242,3,1672319027),(106690,4,35243,3,1672319027),(106691,4,35244,3,1672319027),(106692,4,35245,3,1672319027),(106693,4,35246,3,1672319027),(106694,4,35247,3,1672319027),(106695,4,35248,3,1672319027),(106696,4,35271,3,1672319027),(106697,4,35272,3,1672319027),(106698,4,35273,3,1672319027),(106699,4,35274,3,1672319027),(106700,4,35275,3,1672319027),(106701,4,35276,3,1672319027),(106702,4,35277,3,1672319027),(106703,4,35278,3,1672319027),(106704,4,35279,3,1672319027),(106705,4,35280,3,1672319027),(106706,4,35281,3,1672319027),(106707,4,35282,3,1672319027),(106708,4,35283,3,1672319027),(106709,4,35284,3,1672319027),(106710,4,35285,3,1672319027),(106711,4,35286,3,1672319027),(106712,4,35287,3,1672319027),(106713,4,35288,3,1672319027),(106714,4,35289,3,1672319027),(106715,4,35290,3,1672319027),(106716,4,35291,3,1672319027),(106717,4,35292,3,1672319027),(106718,4,35293,3,1672319027),(106719,4,35294,3,1672319027),(106720,4,35295,3,1672319027),(106721,4,35296,3,1672319027),(106722,4,35297,3,1672319027),(106723,4,35298,3,1672319027),(106724,4,35299,3,1672319027),(106725,4,35300,3,1672319027),(106726,4,35301,3,1672319027),(106727,4,35302,3,1672319027),(106728,4,35303,3,1672319027),(106729,4,35304,3,1672319027),(106730,4,35305,3,1672319027),(106731,4,35306,3,1672319027),(106732,4,35307,3,1672319027),(106733,4,35308,3,1672319027),(106734,4,35309,3,1672319027),(106735,4,35310,3,1672319027),(106736,4,35311,3,1672319027),(106737,4,35312,3,1672319027),(106738,4,35313,3,1672319027),(106739,4,35314,3,1672319027),(106740,4,35315,3,1672319027),(106741,4,35316,3,1672319027),(106742,4,35317,3,1672319027),(106743,4,35318,3,1672319027),(106744,4,35319,3,1672319027),(106745,4,35320,3,1672319027),(106746,4,35321,3,1672319027),(106747,4,35322,3,1672319027),(106748,4,35323,3,1672319027),(106749,4,35324,3,1672319027),(106750,4,35325,3,1672319027),(106751,4,35326,3,1672319027),(106752,4,35327,3,1672319027),(106753,4,35328,3,1672319027),(106754,4,35329,3,1672319027),(106755,4,35330,3,1672319027),(106756,4,35331,3,1672319027),(106757,4,35332,3,1672319027),(106758,4,35333,3,1672319027),(106759,4,35334,3,1672319027),(106760,4,35335,3,1672319027),(106761,4,35336,3,1672319027),(106762,4,35337,3,1672319027),(106763,4,35338,3,1672319027),(106764,4,35339,3,1672319027),(106765,4,35340,3,1672319027),(106766,4,35341,3,1672319027),(106767,4,35342,3,1672319027),(106768,4,35343,3,1672319027),(106769,4,35344,3,1672319027),(106770,4,35345,3,1672319027),(106771,4,35346,3,1672319027),(106772,4,35347,3,1672319027),(106773,4,35348,3,1672319027),(106774,4,35349,3,1672319027),(106775,4,35350,3,1672319027),(106776,4,35351,3,1672319027),(106777,4,35352,3,1672319027),(106778,4,35353,3,1672319027),(106779,4,35354,3,1672319027),(106780,4,35355,3,1672319027),(106781,4,35356,3,1672319027),(106782,4,35357,3,1672319027),(106783,4,35358,3,1672319027),(106784,4,35359,3,1672319027),(106785,4,35360,3,1672319027),(106786,4,35361,3,1672319027),(106787,4,35362,3,1672319027),(106788,4,35363,3,1672319027),(106789,4,35364,3,1672319027),(106790,4,35365,3,1672319027),(106791,4,35366,3,1672319027),(106792,4,35367,3,1672319027),(106793,4,35368,3,1672319027),(106794,4,35369,3,1672319027),(106795,4,35370,3,1672319027),(106796,4,35371,3,1672319027),(106797,4,35372,3,1672319027),(106798,4,35373,3,1672319027),(106799,4,35374,3,1672319027),(106800,4,35375,3,1672319027),(106801,4,35376,3,1672319027),(106802,4,35377,3,1672319027),(106803,4,35378,3,1672319027),(106804,4,35379,3,1672319027),(106805,4,35380,3,1672319027),(106806,4,35381,3,1672319027),(106807,4,35382,3,1672319027),(106808,4,35383,3,1672319027),(106809,4,35384,3,1672319027),(106810,4,35385,3,1672319027),(106811,4,35386,3,1672319027),(106812,4,35387,3,1672319027),(106813,4,35388,3,1672319027),(106814,4,35389,3,1672319027),(106815,4,35390,3,1672319027),(106816,4,35391,3,1672319027),(106817,4,35392,3,1672319027),(106818,4,35393,3,1672319027),(106819,4,35394,3,1672319027),(106820,4,35395,3,1672319027),(106821,4,35396,3,1672319027),(106822,4,35397,3,1672319027),(106823,4,35398,3,1672319027),(106824,4,35399,3,1672319027),(106825,4,35400,3,1672319027),(106826,4,35401,3,1672319027),(106827,4,35402,3,1672319027),(106828,4,35403,3,1672319027),(106829,4,35404,3,1672319027),(106830,4,35405,3,1672319027),(106831,4,35406,3,1672319027),(106832,4,35407,3,1672319027),(106833,4,35408,3,1672319027),(106834,4,35409,3,1672319027),(106835,4,35410,3,1672319027),(106836,4,35411,3,1672319027),(106837,4,35412,3,1672319027),(106838,4,35413,3,1672319027),(106839,4,35414,3,1672319027),(106840,4,35415,3,1672319027),(106841,4,35416,3,1672319027),(106842,4,35417,3,1672319027),(106843,4,35418,3,1672319027),(106844,4,35419,3,1672319027),(106845,4,35420,3,1672319027),(106846,4,35421,3,1672319027),(106847,4,35422,3,1672319027),(106848,4,35423,3,1672319027),(106849,4,35424,3,1672319027),(106850,4,35425,3,1672319027),(106851,4,35426,3,1672319027),(106852,4,35427,3,1672319027),(106853,4,35428,3,1672319027),(106854,4,35429,3,1672319027),(106855,4,35430,3,1672319027),(106856,4,35431,3,1672319027),(106857,4,35432,3,1672319027),(106858,4,35433,3,1672319027),(106859,4,35434,3,1672319027),(106860,4,35435,3,1672319027),(106861,4,35436,3,1672319027),(106862,4,35437,3,1672319027),(106863,4,35438,3,1672319027),(106864,4,35439,3,1672319027),(106865,4,35440,3,1672319027),(106866,4,35441,3,1672319027),(106867,4,35442,3,1672319027),(106868,4,35443,3,1672319027),(106869,4,35444,3,1672319027),(106870,4,35445,3,1672319027),(106871,4,35446,3,1672319027),(106872,4,35447,3,1672319027),(106873,4,35448,3,1672319027),(106874,4,35449,3,1672319027),(106875,4,35450,3,1672319027),(106876,4,35451,3,1672319027),(106877,4,35452,3,1672319027),(106878,4,35453,3,1672319027),(106879,4,35454,3,1672319027),(106880,4,35455,3,1672319027),(106881,4,35456,3,1672319027),(106882,4,35457,3,1672319027),(106883,4,35458,3,1672319027),(106884,4,35459,3,1672319027),(106885,4,35460,3,1672319027),(106886,4,35461,3,1672319027),(106887,4,35462,3,1672319027),(106888,4,35463,3,1672319027),(106889,4,35464,3,1672319027),(106890,4,35465,3,1672319027),(106891,4,35466,3,1672319027),(106892,4,35467,3,1672319027),(106893,4,35468,3,1672319027),(106894,4,35469,3,1672319027),(106895,4,35470,3,1672319027),(106896,4,35471,3,1672319027),(106897,4,35472,3,1672319027),(106898,4,35473,3,1672319027),(106899,4,35474,3,1672319027),(106900,4,35475,3,1672319027),(106901,4,35476,3,1672319027),(106902,4,35477,3,1672319027),(106903,4,35478,3,1672319027),(106904,4,35479,3,1672319027),(106905,4,35480,3,1672319027),(106906,4,35481,3,1672319027),(106907,4,35482,3,1672319027),(106908,4,35483,3,1672319027),(106909,4,35484,3,1672319027),(106910,4,35485,3,1672319027),(106911,4,35486,3,1672319027),(106912,4,35487,3,1672319027),(106913,4,35488,3,1672319027),(106914,4,35489,3,1672319027),(106915,4,35490,3,1672319027),(106916,4,35491,3,1672319027),(106917,4,35492,3,1672319027),(106918,4,35493,3,1672319027),(106919,4,35494,3,1672319027),(106920,4,35495,3,1672319027),(106921,4,35496,3,1672319027),(106922,4,35497,3,1672319027),(106923,4,35498,3,1672319027),(106924,4,35499,3,1672319027),(106925,4,35500,3,1672319027),(106926,4,35501,3,1672319027),(106927,4,35502,3,1672319027),(106928,4,35503,3,1672319027),(106929,4,35504,3,1672319027),(106930,4,35505,3,1672319027),(106931,4,35506,3,1672319027),(106932,4,35507,3,1672319027),(106933,4,35508,3,1672319027),(106934,4,35509,3,1672319027),(106935,4,35510,3,1672319027),(106936,4,35511,3,1672319027),(106937,4,35512,3,1672319027),(106938,4,35513,3,1672319027),(106939,4,35514,3,1672319027),(106940,4,35515,3,1672319027),(106941,4,35516,3,1672319027),(106942,4,35517,3,1672319027),(106943,4,35518,3,1672319027),(106944,4,35519,3,1672319027),(106945,4,35520,3,1672319027),(106946,4,35521,3,1672319027),(106947,4,35522,3,1672319027),(106948,4,35523,3,1672319027),(106949,4,35524,3,1672319027),(106950,4,35525,3,1672319027),(106951,4,35526,3,1672319027),(106952,4,35527,3,1672319027),(106953,4,35528,3,1672319027),(106954,4,35529,3,1672319027),(106955,4,35530,3,1672319027),(106956,4,35531,3,1672319027),(106957,4,35532,3,1672319027),(106958,4,35533,3,1672319027),(106959,4,35534,3,1672319027),(106960,4,35535,3,1672319027),(106961,4,35536,3,1672319027),(106962,4,35537,3,1672319027),(106963,4,35538,3,1672319027),(106964,4,35539,3,1672319027),(106965,4,35540,3,1672319027),(106966,4,35541,3,1672319027),(106967,4,35542,3,1672319027),(106968,4,35543,3,1672319027),(106969,4,35544,3,1672319027),(106970,4,35545,3,1672319027),(106971,4,35546,3,1672319027),(106972,4,35547,3,1672319027),(106973,4,35548,3,1672319027),(106974,4,35549,3,1672319027),(106975,4,35550,3,1672319027),(106976,4,35551,3,1672319027),(106977,4,35552,3,1672319027),(106978,4,35553,3,1672319027),(106979,4,35554,3,1672319027),(106980,4,35555,3,1672319027),(106981,4,35556,3,1672319027),(106982,4,35557,3,1672319027),(106983,4,35558,3,1672319027),(106984,4,35559,3,1672319027),(106985,4,35560,3,1672319027),(106986,4,35561,3,1672319027),(106987,4,35562,3,1672319027),(106988,4,35563,3,1672319027),(106989,4,35564,3,1672319027),(106990,4,35565,3,1672319027),(106991,4,35566,3,1672319027),(106992,4,35567,3,1672319027),(106993,4,35568,3,1672319027),(106994,4,35569,3,1672319027),(106995,4,35570,3,1672319027),(106996,4,35571,3,1672319027),(106997,4,35572,3,1672319027),(106998,4,35573,3,1672319027),(106999,4,35574,3,1672319027),(107000,4,35575,3,1672319027),(107001,4,35576,3,1672319027),(107002,4,35577,3,1672319027),(107003,4,35578,3,1672319027),(107004,4,35579,3,1672319027),(107005,4,35580,3,1672319027),(107006,4,35581,3,1672319027),(107007,4,35582,3,1672319027),(107008,4,35583,3,1672319027),(107009,4,35584,3,1672319027),(107010,4,35585,3,1672319027),(107011,4,35586,3,1672319027),(107012,4,35587,3,1672319027),(107013,4,35588,3,1672319027),(107014,4,35589,3,1672319027),(107015,4,35590,3,1672319027),(107016,4,35591,3,1672319027),(107017,4,35592,3,1672319027),(107018,4,35593,3,1672319027),(107019,4,35594,3,1672319027),(107020,4,35595,3,1672319027),(107021,4,35596,3,1672319027),(107022,4,35597,3,1672319027),(107023,4,35598,3,1672319027),(107024,4,35599,3,1672319027),(107025,4,35600,3,1672319027),(107026,4,35601,3,1672319027),(107027,4,35602,3,1672319027),(107028,4,35603,3,1672319027),(107029,4,35604,3,1672319027),(107030,4,35605,3,1672319027),(107031,4,35606,3,1672319027),(107032,4,35607,3,1672319027),(107033,4,35608,3,1672319027),(107034,4,35609,3,1672319027),(107035,4,35610,3,1672319027),(107036,4,35611,3,1672319027),(107037,4,35612,3,1672319027),(107038,4,35613,3,1672319027),(107039,4,35614,3,1672319027),(107040,4,35615,3,1672319027),(107041,4,35616,3,1672319027),(107042,4,35617,3,1672319027),(107043,4,35618,3,1672319027),(107044,4,35619,3,1672319027),(107045,4,35620,3,1672319027),(107046,4,35621,3,1672319027),(107047,4,35622,3,1672319027),(107048,4,35623,3,1672319027),(107049,4,35624,3,1672319027),(107050,4,35625,3,1672319027),(107051,4,35626,3,1672319027),(107052,4,35627,3,1672319027),(107053,4,35628,3,1672319027),(107054,4,35629,3,1672319027),(107055,4,35630,3,1672319027),(107056,4,35631,3,1672319027),(107057,4,35632,3,1672319027),(107058,4,35633,3,1672319027),(107059,4,35634,3,1672319027),(107060,4,35635,3,1672319027),(107061,4,35636,3,1672319027),(107062,4,35637,3,1672319027),(107063,4,35638,3,1672319027),(107064,4,35639,3,1672319027),(107065,4,35640,3,1672319027),(107066,4,35641,3,1672319027),(107067,4,35642,3,1672319027),(107068,4,35643,3,1672319027),(107069,4,35644,3,1672319027),(107070,4,35645,3,1672319027),(107071,4,35646,3,1672319027),(107072,4,35647,3,1672319027),(107073,4,35648,3,1672319027),(107074,4,35649,3,1672319027),(107075,4,35650,3,1672319027),(107076,4,35651,3,1672319027),(107077,4,35652,3,1672319027),(107078,4,35653,3,1672319027),(107079,4,35654,3,1672319027),(107080,4,35655,3,1672319027),(107081,4,35656,3,1672319027),(107082,4,35657,3,1672319027),(107083,4,35658,3,1672319027),(107084,4,35659,3,1672319027),(107085,4,35660,3,1672319027),(107086,4,35661,3,1672319027),(107087,4,35662,3,1672319027),(107088,4,35663,3,1672319027),(107089,4,35664,3,1672319027),(107090,4,35665,3,1672319027),(107091,4,35666,3,1672319027),(107092,4,35667,3,1672319027),(107093,4,35668,3,1672319027),(107094,4,35669,3,1672319027),(107095,4,35670,3,1672319027),(107096,4,35671,3,1672319027),(107097,4,35672,3,1672319027),(107098,4,35673,3,1672319027),(107099,4,35674,3,1672319027),(107100,4,35675,3,1672319027),(107101,4,35676,3,1672319027),(107102,4,35677,3,1672319027),(107103,4,35678,3,1672319027),(107104,4,35679,3,1672319027),(107105,4,35680,3,1672319027),(107106,4,35681,3,1672319027),(107107,4,35682,3,1672319027),(107108,4,35683,3,1672319027),(107109,4,35684,3,1672319027),(107110,4,35685,3,1672319027),(107111,4,35686,3,1672319027),(107112,4,35687,3,1672319027),(107113,4,35688,3,1672319027),(107114,4,35689,3,1672319027),(107115,4,35690,3,1672319027),(107116,4,35691,3,1672319027),(107117,4,35692,3,1672319027),(107118,4,35693,3,1672319027),(107119,4,35694,3,1672319027),(107120,4,35695,3,1672319027),(107121,4,35696,3,1672319027),(107122,4,35697,3,1672319027),(107123,4,35698,3,1672319027),(107124,4,35699,3,1672319027),(107125,4,35700,3,1672319027),(107126,4,35701,3,1672319027),(107127,4,35702,3,1672319027),(107128,4,35703,3,1672319027),(107129,4,35704,3,1672319027),(107130,4,35705,3,1672319027),(107131,4,35706,3,1672319027),(107132,4,35707,3,1672319027),(107133,4,35708,3,1672319027),(107134,4,35709,3,1672319027),(107135,4,35710,3,1672319027),(107136,4,35711,3,1672319027),(107137,4,35712,3,1672319027),(107138,4,35713,3,1672319027),(107139,4,35714,3,1672319027),(107140,4,35715,3,1672319027),(107141,4,35716,3,1672319027),(107142,4,35717,3,1672319027),(107143,4,35718,3,1672319027),(107144,4,35719,3,1672319027),(107145,4,35720,3,1672319027),(107146,4,35721,3,1672319027),(107147,4,35722,3,1672319027),(107148,4,35723,3,1672319027),(107149,4,35724,3,1672319027),(107150,4,35725,3,1672319027),(107151,4,35726,3,1672319027),(107152,4,35727,3,1672319027),(107153,4,35728,3,1672319027),(107154,4,35729,3,1672319027),(107155,4,35730,3,1672319027),(107156,4,35731,3,1672319027),(107157,4,35732,3,1672319027),(107158,4,35733,3,1672319027),(107159,4,35734,3,1672319027),(107160,4,35735,3,1672319027),(107161,4,35736,3,1672319027),(107162,4,35737,3,1672319027),(107163,4,35738,3,1672319027),(107164,4,35739,3,1672319027),(107165,4,35740,3,1672319027),(107166,4,35741,3,1672319027),(107167,4,35742,3,1672319027),(107168,4,35743,3,1672319027),(107169,4,35744,3,1672319027),(107170,4,35745,3,1672319027),(107171,4,35746,3,1672319027),(107172,4,35747,3,1672319027),(107173,4,35748,3,1672319027),(107174,4,35749,3,1672319027),(107175,4,35750,3,1672319027),(107176,4,35751,3,1672319027),(107177,4,35752,3,1672319027),(107178,4,35753,3,1672319027),(107179,4,35754,3,1672319027),(107180,4,35755,3,1672319027),(107181,4,35756,3,1672319027),(107182,4,35757,3,1672319027),(107183,4,35758,3,1672319027),(107184,4,35759,3,1672319027),(107185,4,35760,3,1672319027),(107186,4,35761,3,1672319027),(107187,4,35762,3,1672319027),(107188,4,35763,3,1672319027),(107189,4,35764,3,1672319027),(107190,4,35765,3,1672319027),(107191,4,35766,3,1672319027),(107192,4,35767,3,1672319027),(107193,4,35768,3,1672319027),(107194,4,35769,3,1672319027),(107195,4,35770,3,1672319027),(107196,4,35771,3,1672319027),(107197,4,35772,3,1672319027),(107198,4,35773,3,1672319027),(107199,4,35774,3,1672319027),(107200,4,35775,3,1672319027),(107201,4,35776,3,1672319027),(107202,4,35777,3,1672319027),(107203,4,35778,3,1672319027),(107204,4,35779,3,1672319027),(107205,4,35780,3,1672319027),(107206,4,35781,3,1672319027),(107207,4,35782,3,1672319027),(107208,4,35783,3,1672319027),(107209,4,35784,3,1672319027),(107210,4,35785,3,1672319027),(107211,4,35786,3,1672319027),(107212,4,35787,3,1672319027),(107213,4,35788,3,1672319027),(107214,4,35789,3,1672319027),(107215,4,35790,3,1672319027),(107216,4,35791,3,1672319027),(107217,4,35792,3,1672319027),(107218,4,35793,3,1672319027),(107219,4,35794,3,1672319027),(107220,4,35795,3,1672319027),(107221,4,35796,3,1672319027),(107222,4,35797,3,1672319027),(107223,4,35798,3,1672319027),(107224,4,35799,3,1672319027),(107225,4,35800,3,1672319027),(107226,4,35801,3,1672319027),(107227,4,35802,3,1672319027),(107228,4,35803,3,1672319027),(107229,4,35805,3,1672319027),(107230,4,35806,3,1672319027),(107231,4,35807,3,1672319027),(107232,4,35811,3,1672319027),(107233,4,35812,3,1672319027),(107234,4,35815,3,1672319027),(107235,4,35816,3,1672319027),(107236,4,35817,3,1672319027),(107237,4,35818,3,1672319027),(107238,4,35819,3,1672319027),(107239,4,35820,3,1672319027),(107240,4,35821,3,1672319027),(107241,4,35822,3,1672319027),(107242,4,35823,3,1672319027),(107243,4,35824,3,1672319027),(107244,4,35825,3,1672319027),(107245,4,35826,3,1672319027),(107246,4,35827,3,1672319027),(107247,4,35828,3,1672319027),(107248,4,35829,3,1672319027),(107249,4,35830,3,1672319027),(107250,4,35831,3,1672319027),(107251,4,35832,3,1672319027),(107252,4,35833,3,1672319027),(107253,4,35834,3,1672319027),(107254,4,35835,3,1672319027),(107255,4,35836,3,1672319027),(107256,4,35837,3,1672319027),(107257,4,35838,3,1672319027),(107258,4,35839,3,1672319027),(107259,4,35840,3,1672319027),(107260,4,35841,3,1672319027),(107261,4,35842,3,1672319027),(107262,4,35843,3,1672319027),(107263,4,35844,3,1672319027),(107277,7,12641,3,1672319033),(107278,7,12645,3,1672319033),(107279,7,12646,3,1672319033),(107280,7,12649,3,1672319033),(107281,7,12651,3,1672319033),(107282,7,12653,3,1672319033),(107283,7,12726,3,1672319033),(107284,7,12742,3,1672319033),(107285,7,12758,3,1672319033),(107286,7,12790,3,1672319033),(107287,7,12806,3,1672319033),(107288,7,12949,3,1672319033),(107289,7,12965,3,1672319033),(107290,7,12996,3,1672319033),(107291,7,12997,3,1672319033),(107292,7,12998,3,1672319033),(107293,7,13068,3,1672319033),(107294,7,13069,3,1672319033),(107295,7,13070,3,1672319033),(107296,7,13071,3,1672319033),(107297,7,13072,3,1672319033),(107298,7,13073,3,1672319033),(107299,7,13074,3,1672319033),(107300,7,13075,3,1672319033),(107301,7,13086,3,1672319033),(107302,7,13087,3,1672319033),(107303,7,13088,3,1672319033),(107304,7,13089,3,1672319033),(107305,7,13090,3,1672319033),(107306,7,13091,3,1672319033),(107307,7,13092,3,1672319033),(107308,7,13093,3,1672319033),(107309,7,13152,3,1672319033),(107310,7,13154,3,1672319033),(107311,7,13156,3,1672319033),(107312,7,13157,3,1672319033),(107313,7,13158,3,1672319033),(107314,7,13159,3,1672319033),(107315,7,13160,3,1672319033),(107316,7,13164,3,1672319033),(107317,7,13170,3,1672319033),(107318,7,13172,3,1672319033),(107319,7,13174,3,1672319033),(107320,7,13176,3,1672319033),(107321,7,13180,3,1672319033),(107322,7,13182,3,1672319033),(107323,7,13184,3,1672319033),(107324,7,13186,3,1672319033),(107325,7,13188,3,1672319033),(107326,7,13190,3,1672319033),(107327,7,13194,3,1672319033),(107328,7,13196,3,1672319033),(107329,7,13198,3,1672319033),(107330,7,13200,3,1672319033),(107331,7,13202,3,1672319033),(107332,7,13204,3,1672319033),(107333,7,13222,3,1672319033),(107334,7,13226,3,1672319033),(107335,7,13228,3,1672319033),(107336,7,13229,3,1672319033),(107337,7,14378,3,1672319033),(107338,7,14379,3,1672319033),(107339,7,14380,3,1672319033),(107340,7,15111,3,1672319033),(107341,7,15112,3,1672319033),(107342,7,15113,3,1672319033),(107343,7,15114,3,1672319033),(107344,7,15115,3,1672319033),(107345,7,15116,3,1672319033),(107346,7,15731,3,1672319033),(107347,7,16818,3,1672319033),(107348,7,16819,3,1672319033),(107349,7,16820,3,1672319033),(107350,7,16821,3,1672319033),(107351,7,16822,3,1672319033),(107352,7,16829,3,1672319033),(107353,7,16830,3,1672319033),(107354,7,16831,3,1672319033),(107355,7,16832,3,1672319033),(107356,7,16833,3,1672319033),(107357,7,16840,3,1672319033),(107358,7,16841,3,1672319033),(107359,7,16842,3,1672319033),(107360,7,16843,3,1672319033),(107361,7,16844,3,1672319033),(107362,7,16845,3,1672319033),(107363,7,16846,3,1672319033),(107364,7,16847,3,1672319033),(107365,7,16890,3,1672319033),(107366,7,16891,3,1672319033),(107367,7,16895,3,1672319033),(107368,7,16896,3,1672319033),(107369,7,16897,3,1672319033),(107370,7,16898,3,1672319033),(107371,7,16899,3,1672319033),(107372,7,16900,3,1672319033),(107373,7,16901,3,1672319033),(107374,7,16902,3,1672319033),(107375,7,16903,3,1672319033),(107376,7,16904,3,1672319033),(107377,7,16905,3,1672319033),(107378,7,16906,3,1672319033),(107379,7,16907,3,1672319033),(107380,7,16908,3,1672319033),(107381,7,16909,3,1672319033),(107382,7,16910,3,1672319033),(107383,7,16911,3,1672319033),(107384,7,16912,3,1672319033),(107385,7,16913,3,1672319033),(107386,7,16914,3,1672319033),(107387,7,16915,3,1672319033),(107388,7,16924,3,1672319033),(107389,7,16925,3,1672319033),(107390,7,16926,3,1672319033),(107391,7,16927,3,1672319033),(107392,7,16928,3,1672319033),(107393,7,16935,3,1672319033),(107394,7,16936,3,1672319033),(107395,7,17692,3,1672319033),(107396,7,17693,3,1672319033),(107397,7,17694,3,1672319033),(107398,7,17695,3,1672319033),(107399,7,17696,3,1672319033),(107400,7,17812,3,1672319033),(107401,7,17813,3,1672319033),(107402,7,17814,3,1672319033),(107403,7,17815,3,1672319033),(107404,7,17816,3,1672319033),(107405,7,17827,3,1672319033),(107406,7,17828,3,1672319033),(107407,7,17829,3,1672319033),(107408,7,17830,3,1672319033),(107409,7,17831,3,1672319033),(107410,7,17866,3,1672319033),(107411,7,17869,3,1672319033),(107412,7,17870,3,1672319033),(107413,7,17871,3,1672319033),(107414,7,17872,3,1672319033),(107415,7,17873,3,1672319033),(107416,7,17879,3,1672319033),(107417,7,17880,3,1672319033),(107418,7,17881,3,1672319033),(107419,7,17892,3,1672319033),(107420,7,17893,3,1672319033),(107421,7,17900,3,1672319033),(107422,7,17901,3,1672319033),(107423,7,17902,3,1672319033),(107424,7,17903,3,1672319033),(107425,7,17904,3,1672319033),(107426,7,17905,3,1672319033),(107427,7,17906,3,1672319033),(107428,7,17907,3,1672319033),(107429,7,17908,3,1672319033),(107430,7,17909,3,1672319033),(107431,7,17910,3,1672319033),(107432,7,17911,3,1672319033),(107433,7,17912,3,1672319033),(107434,7,17913,3,1672319033),(107435,7,17914,3,1672319033),(107436,7,17917,3,1672319033),(107437,7,17918,3,1672319033),(107438,7,17919,3,1672319033),(107439,7,17920,3,1672319033),(107440,7,17921,3,1672319033),(107441,7,17922,3,1672319033),(107442,7,17923,3,1672319033),(107443,7,17924,3,1672319033),(107444,7,17925,3,1672319033),(107445,7,17971,3,1672319033),(107446,7,17972,3,1672319033),(107447,7,17973,3,1672319033),(107448,7,17974,3,1672319033),(107449,7,17975,3,1672319033),(107450,7,17976,3,1672319033),(107451,7,17977,3,1672319033),(107452,7,17983,3,1672319033),(107453,7,17984,3,1672319033),(107454,7,17987,3,1672319033),(107455,7,17988,3,1672319033),(107456,7,17989,3,1672319033),(107457,7,17990,3,1672319033),(107458,7,17993,3,1672319033),(107459,7,17994,3,1672319033),(107460,7,18031,3,1672319033),(107461,7,18032,3,1672319033),(107462,7,18033,3,1672319033),(107463,7,18042,3,1672319033),(107464,7,18043,3,1672319033),(107465,7,18044,3,1672319033),(107466,7,18045,3,1672319033),(107467,7,18046,3,1672319033),(107468,7,18047,3,1672319033),(107469,7,18048,3,1672319033),(107470,7,18049,3,1672319033),(107471,7,18050,3,1672319033),(107472,7,18051,3,1672319033),(107473,7,18052,3,1672319033),(107474,7,18053,3,1672319033),(107475,7,18054,3,1672319033),(107476,7,18055,3,1672319033),(107477,7,18056,3,1672319033),(107478,7,18076,3,1672319033),(107479,7,18078,3,1672319033),(107480,7,18080,3,1672319033),(107481,7,18081,3,1672319033),(107482,7,18082,3,1672319033),(107483,7,18083,3,1672319033),(107484,7,18084,3,1672319033),(107485,7,18085,3,1672319033),(107486,7,18086,3,1672319033),(107487,7,18087,3,1672319033),(107488,7,18088,3,1672319033),(107489,7,18089,3,1672319033),(107490,7,18090,3,1672319033),(107491,7,18091,3,1672319033),(107492,7,18092,3,1672319033),(107493,7,18094,3,1672319033),(107494,7,18095,3,1672319033),(107495,7,18096,3,1672319033),(107496,7,18097,3,1672319033),(107497,7,18098,3,1672319033),(107498,7,18099,3,1672319033),(107499,7,18100,3,1672319033),(107500,7,18101,3,1672319033),(107501,7,18102,3,1672319033),(107502,7,18103,3,1672319033),(107503,7,18104,3,1672319033),(107504,7,18105,3,1672319033),(107505,7,18106,3,1672319033),(107506,7,18107,3,1672319033),(107507,7,18108,3,1672319033),(107508,7,18109,3,1672319033),(107509,7,18110,3,1672319033),(107510,7,18111,3,1672319033),(107511,7,18112,3,1672319033),(107512,7,18117,3,1672319033),(107513,7,18175,3,1672319033),(107514,7,18176,3,1672319033),(107515,7,18177,3,1672319033),(107516,7,18178,3,1672319033),(107517,7,18191,3,1672319033),(107518,7,18192,3,1672319033),(107519,7,18193,3,1672319033),(107520,7,18255,3,1672319033),(107521,7,18264,3,1672319033),(107522,7,18265,3,1672319033),(107523,7,18300,3,1672319033),(107524,7,18306,3,1672319033),(107525,7,18307,3,1672319033),(107526,7,18310,3,1672319033),(107527,7,18311,3,1672319033),(107528,7,18312,3,1672319033),(107529,7,18313,3,1672319033),(107530,7,18363,3,1672319033),(107531,7,18364,3,1672319033),(107532,7,18501,3,1672319033),(107533,7,18502,3,1672319033),(107534,7,18505,3,1672319033),(107535,7,18506,3,1672319033),(107536,7,18507,3,1672319033),(107537,7,18510,3,1672319033),(107538,7,18513,3,1672319033),(107539,7,18526,3,1672319033),(107540,7,18527,3,1672319033),(107541,7,18528,3,1672319033),(107542,7,18529,3,1672319033),(107543,7,18530,3,1672319033),(107544,7,18531,3,1672319033),(107545,7,18532,3,1672319033),(107546,7,18533,3,1672319033),(107547,7,18534,3,1672319033),(107548,7,18545,3,1672319033),(107549,7,18546,3,1672319033),(107550,7,18548,3,1672319033),(107551,7,18549,3,1672319033),(107552,7,18550,3,1672319033),(107553,7,18555,3,1672319033),(107554,7,18556,3,1672319033),(107555,7,18557,3,1672319033),(107556,7,18558,3,1672319033),(107557,7,18620,3,1672319033),(107558,7,18621,3,1672319033),(107559,7,18711,3,1672319033),(107560,7,18715,3,1672319033),(107561,7,18719,3,1672319033),(107562,7,18720,3,1672319033),(107563,7,18726,3,1672319033),(107564,7,18727,3,1672319033),(107565,7,18730,3,1672319033),(107566,7,18731,3,1672319033),(107567,7,18732,3,1672319033),(107568,7,18733,3,1672319033),(107569,7,18734,3,1672319033),(107570,7,18735,3,1672319033),(107571,7,18756,3,1672319033),(107572,7,19090,3,1672319033),(107573,7,19091,3,1672319033),(107574,7,19093,3,1672319033),(107575,7,19098,3,1672319033),(107576,7,19099,3,1672319033),(107577,7,19100,3,1672319033),(107578,7,19104,3,1672319033),(107579,7,19105,3,1672319033),(107580,7,19113,3,1672319033),(107581,7,19114,3,1672319033),(107582,7,19115,3,1672319033),(107583,7,19116,3,1672319033),(107584,7,19117,3,1672319033),(107585,7,19118,3,1672319033),(107586,7,19119,3,1672319033),(107587,7,19120,3,1672319033),(107588,7,19121,3,1672319033),(107589,7,19122,3,1672319033),(107590,7,19123,3,1672319033),(107591,7,19124,3,1672319033),(107592,7,19125,3,1672319033),(107593,7,19126,3,1672319033),(107594,7,19127,3,1672319033),(107595,7,19128,3,1672319033),(107596,7,19129,3,1672319033),(107597,7,19130,3,1672319033),(107598,7,19131,3,1672319033),(107599,7,19132,3,1672319033),(107600,7,19133,3,1672319033),(107601,7,19134,3,1672319033),(107602,7,19135,3,1672319033),(107603,7,19136,3,1672319033),(107604,7,19137,3,1672319033),(107605,7,19138,3,1672319033),(107606,7,19139,3,1672319033),(107607,7,19140,3,1672319033),(107608,7,19141,3,1672319033),(107609,7,19142,3,1672319033),(107610,7,19143,3,1672319033),(107611,7,19144,3,1672319033),(107612,7,19145,3,1672319033),(107613,7,19146,3,1672319033),(107614,7,19147,3,1672319033),(107615,7,19148,3,1672319033),(107616,7,19149,3,1672319033),(107617,7,19150,3,1672319033),(107618,7,19151,3,1672319033),(107619,7,19152,3,1672319033),(107620,7,19153,3,1672319033),(107621,7,19156,3,1672319033),(107622,7,19157,3,1672319033),(107623,7,19158,3,1672319033),(107624,7,19159,3,1672319033),(107625,7,19160,3,1672319033),(107626,7,19161,3,1672319033),(107627,7,19162,3,1672319033),(107628,7,19163,3,1672319033),(107629,7,19164,3,1672319033),(107630,7,19165,3,1672319033),(107631,7,19166,3,1672319033),(107632,7,19171,3,1672319033),(107633,7,19175,3,1672319033),(107634,7,19176,3,1672319033),(107635,7,19177,3,1672319033),(107636,7,19179,3,1672319033),(107637,7,19185,3,1672319033),(107638,7,19186,3,1672319033),(107639,7,19187,3,1672319033),(107640,7,19188,3,1672319033),(107641,7,19189,3,1672319033),(107642,7,19190,3,1672319033),(107643,7,19193,3,1672319033),(107644,7,19202,3,1672319033),(107645,7,19203,3,1672319033),(107646,7,19209,3,1672319033),(107647,7,19213,3,1672319033),(107648,7,19217,3,1672319033),(107649,7,19219,3,1672319033),(107650,7,19225,3,1672319033),(107651,7,19227,3,1672319033),(107652,7,19229,3,1672319033),(107653,7,19235,3,1672319033),(107654,7,19240,3,1672319033),(107655,7,19249,3,1672319033),(107656,7,19259,3,1672319033),(107657,7,19263,3,1672319033),(107658,7,19264,3,1672319033),(107659,7,19265,3,1672319033),(107660,7,19267,3,1672319033),(107661,7,19269,3,1672319033),(107662,7,19270,3,1672319033),(107663,7,19271,3,1672319033),(107664,7,19272,3,1672319033),(107665,7,19299,3,1672319033),(107666,7,19300,3,1672319033),(107667,7,19301,3,1672319033),(107668,7,19302,3,1672319033),(107669,7,19305,3,1672319033),(107670,7,19306,3,1672319033),(107671,7,19307,3,1672319033),(107672,7,19308,3,1672319033),(107673,7,19406,3,1672319033),(107674,7,19456,3,1672319033),(107675,7,19459,3,1672319033),(107676,7,19460,3,1672319033),(107677,7,19461,3,1672319033),(107678,7,19462,3,1672319033),(107679,7,19463,3,1672319033),(107680,7,19464,3,1672319033),(107681,7,19466,3,1672319033),(107682,7,19467,3,1672319033),(107683,7,19468,3,1672319033),(107684,7,19469,3,1672319033),(107685,7,19470,3,1672319033),(107686,7,19471,3,1672319033),(107687,7,19472,3,1672319033),(107688,7,19474,3,1672319033),(107689,7,19479,3,1672319033),(107690,7,19480,3,1672319033),(107691,7,19481,3,1672319033),(107692,7,19482,3,1672319033),(107693,7,19484,3,1672319033),(107694,7,19485,3,1672319033),(107695,7,19486,3,1672319033),(107696,7,19487,3,1672319033),(107697,7,19488,3,1672319033),(107698,7,19489,3,1672319033),(107699,7,19490,3,1672319033),(107700,7,19494,3,1672319033),(107701,7,19495,3,1672319033),(107702,7,19497,3,1672319033),(107703,7,19498,3,1672319033),(107704,7,19501,3,1672319033),(107705,7,19502,3,1672319033),(107706,7,19503,3,1672319033),(107707,7,19504,3,1672319033),(107708,7,19505,3,1672319033),(107709,7,19511,3,1672319033),(107710,7,19512,3,1672319033),(107711,7,19513,3,1672319033),(107712,7,19514,3,1672319033),(107713,7,19517,3,1672319033),(107714,7,19548,3,1672319033),(107715,7,19549,3,1672319033),(107716,7,19552,3,1672319033),(107717,7,19558,3,1672319033),(107718,7,19560,3,1672319033),(107719,7,19562,3,1672319033),(107720,7,19563,3,1672319033),(107721,7,19564,3,1672319033),(107722,7,19567,3,1672319033),(107723,7,19568,3,1672319033),(107724,7,19569,3,1672319033),(107725,7,19570,3,1672319033),(107726,7,19572,3,1672319033),(107727,7,19575,3,1672319033),(107728,7,19577,3,1672319033),(107729,7,19578,3,1672319033),(107730,7,19579,3,1672319033),(107731,7,19580,3,1672319033),(107732,7,19581,3,1672319033),(107733,7,19582,3,1672319033),(107734,7,19583,3,1672319033),(107735,7,19584,3,1672319033),(107736,7,19585,3,1672319033),(107737,7,19588,3,1672319033),(107738,7,19589,3,1672319033),(107739,7,19592,3,1672319033),(107740,7,19593,3,1672319033),(107741,7,19594,3,1672319033),(107742,7,19595,3,1672319033),(107743,7,19596,3,1672319033),(107744,7,19597,3,1672319033),(107745,7,19598,3,1672319033),(107746,7,19599,3,1672319033),(107747,7,19600,3,1672319033),(107748,7,19603,3,1672319033),(107749,7,19605,3,1672319033),(107750,7,19606,3,1672319033),(107751,7,19607,3,1672319033),(107752,7,19608,3,1672319033),(107753,7,19611,3,1672319033),(107754,7,19612,3,1672319033),(107755,7,19613,3,1672319033),(107756,7,19614,3,1672319033),(107757,7,19616,3,1672319033),(107758,7,19617,3,1672319033),(107759,7,19618,3,1672319033),(107760,7,19619,3,1672319033),(107761,7,19620,3,1672319033),(107762,7,19621,3,1672319033),(107763,7,19622,3,1672319033),(107764,7,19623,3,1672319033),(107765,7,19624,3,1672319033),(107766,7,19625,3,1672319033),(107767,7,19626,3,1672319033),(107768,7,19627,3,1672319033),(107769,7,19628,3,1672319033),(107770,7,19629,3,1672319033),(107771,7,19630,3,1672319033),(107772,7,19631,3,1672319033),(107773,7,19632,3,1672319033),(107774,7,19633,3,1672319033),(107775,7,19634,3,1672319033),(107776,7,19635,3,1672319033),(107777,7,19636,3,1672319033),(107778,7,19637,3,1672319033),(107779,7,19638,3,1672319033),(107780,7,19639,3,1672319033),(107781,7,19640,3,1672319033),(107782,7,19641,3,1672319033),(107783,7,19642,3,1672319033),(107784,7,19643,3,1672319033),(107785,7,19644,3,1672319033),(107786,7,19645,3,1672319033),(107787,7,19659,3,1672319033),(107788,7,19660,3,1672319033),(107789,7,19674,3,1672319033),(107790,7,19675,3,1672319033),(107791,7,19676,3,1672319033),(107792,7,19677,3,1672319033),(107793,7,19679,3,1672319033),(107794,7,19680,3,1672319033),(107795,7,19683,3,1672319033),(107796,7,19684,3,1672319033),(107797,7,19687,3,1672319033),(107798,7,19688,3,1672319033),(107799,7,19689,3,1672319033),(107800,7,19690,3,1672319033),(107801,7,19691,3,1672319033),(107802,7,19692,3,1672319033),(107803,7,19693,3,1672319033),(107804,7,19756,3,1672319033),(107805,7,19757,3,1672319033),(107806,7,19792,3,1672319033),(107807,7,19796,3,1672319033),(107808,7,19797,3,1672319033),(107809,7,19800,3,1672319033),(107810,7,19801,3,1672319033),(107811,7,19802,3,1672319033),(107812,7,19803,3,1672319033),(107813,7,19804,3,1672319033),(107814,7,19805,3,1672319033),(107815,7,19806,3,1672319033),(107816,7,19809,3,1672319033),(107817,7,19810,3,1672319033),(107818,7,19811,3,1672319033),(107819,7,19812,3,1672319033),(107820,7,19813,3,1672319033),(107821,7,19814,3,1672319033),(107822,7,19815,3,1672319033),(107823,7,19816,3,1672319033),(107824,7,19817,3,1672319033),(107825,7,19819,3,1672319033),(107826,7,19820,3,1672319033),(107827,7,19821,3,1672319033),(107828,7,19822,3,1672319033),(107829,7,19823,3,1672319033),(107830,7,19824,3,1672319033),(107831,7,19825,3,1672319033),(107832,7,19827,3,1672319033),(107833,7,19832,3,1672319033),(107834,7,19833,3,1672319033),(107835,7,19834,3,1672319033),(107836,7,19841,3,1672319033),(107837,7,19842,3,1672319033),(107838,7,19845,3,1672319033),(107839,7,19846,3,1672319033),(107840,7,19847,3,1672319033),(107841,7,19848,3,1672319033),(107842,7,19849,3,1672319033),(107843,7,19850,3,1672319033),(107844,7,19851,3,1672319033),(107845,7,19852,3,1672319033),(107846,7,19853,3,1672319033),(107847,7,19854,3,1672319033),(107848,7,19855,3,1672319033),(107849,7,19856,3,1672319033),(107850,7,19857,3,1672319033),(107851,7,19858,3,1672319033),(107852,7,19863,3,1672319033),(107853,7,19865,3,1672319033),(107854,7,19866,3,1672319033),(107855,7,19867,3,1672319033),(107856,7,19868,3,1672319033),(107857,7,19869,3,1672319033),(107858,7,19870,3,1672319033),(107859,7,19873,3,1672319033),(107860,7,19874,3,1672319033),(107861,7,19875,3,1672319033),(107862,7,19876,3,1672319033),(107863,7,19877,3,1672319033),(107864,7,19878,3,1672319033),(107865,7,19879,3,1672319033),(107866,7,19880,3,1672319033),(107867,7,19881,3,1672319033),(107868,7,19888,3,1672319033),(107869,7,19889,3,1672319033),(107870,7,19890,3,1672319033),(107871,7,19891,3,1672319033),(107872,7,19892,3,1672319033),(107873,7,19893,3,1672319033),(107874,7,19894,3,1672319033),(107875,7,19895,3,1672319033),(107876,7,19896,3,1672319033),(107877,7,19897,3,1672319033),(107878,7,19898,3,1672319033),(107879,7,19899,3,1672319033),(107880,7,19900,3,1672319033),(107881,7,19901,3,1672319033),(107882,7,19902,3,1672319033),(107883,7,19903,3,1672319033),(107884,7,19904,3,1672319033),(107885,7,19905,3,1672319033),(107886,7,19906,3,1672319033),(107887,7,19907,3,1672319033),(107888,7,19908,3,1672319033),(107889,7,19909,3,1672319033),(107890,7,19910,3,1672319033),(107891,7,19911,3,1672319033),(107892,7,19912,3,1672319033),(107893,7,19913,3,1672319033),(107894,7,19914,3,1672319033),(107895,7,19915,3,1672319033),(107896,7,19916,3,1672319033),(107897,7,19917,3,1672319033),(107898,7,19922,3,1672319033),(107899,7,19924,3,1672319033),(107900,7,19925,3,1672319033),(107901,7,19926,3,1672319033),(107902,7,19927,3,1672319033),(107903,7,19928,3,1672319033),(107904,7,19929,3,1672319033),(107905,7,19932,3,1672319033),(107906,7,19933,3,1672319033),(107907,7,19934,3,1672319033),(107908,7,19935,3,1672319033),(107909,7,19936,3,1672319033),(107910,7,19937,3,1672319033),(107911,7,19938,3,1672319033),(107912,7,19941,3,1672319033),(107913,7,19943,3,1672319033),(107914,7,19947,3,1672319033),(107915,7,19949,3,1672319033),(107916,7,19950,3,1672319033),(107917,7,19951,3,1672319033),(107918,7,19952,3,1672319033),(107919,7,19956,3,1672319033),(107920,7,19957,3,1672319033),(107921,7,19978,3,1672319033),(107922,7,19979,3,1672319033),(107923,7,20000,3,1672319033),(107924,7,20078,3,1672319033),(107925,7,20079,3,1672319033),(107926,7,20080,3,1672319033),(107927,7,20081,3,1672319033),(107928,7,20082,3,1672319033),(107929,7,20083,3,1672319033),(107930,7,20084,3,1672319033),(107931,7,20085,3,1672319033),(107932,7,20086,3,1672319033),(107933,7,20087,3,1672319033),(107934,7,20088,3,1672319033),(107935,7,20089,3,1672319033),(107936,7,20090,3,1672319033),(107937,7,20091,3,1672319033),(107938,7,20092,3,1672319033),(107939,7,20093,3,1672319033),(107940,7,20094,3,1672319033),(107941,7,20095,3,1672319033),(107942,7,20096,3,1672319033),(107943,7,20101,3,1672319033),(107944,7,20103,3,1672319033),(107945,7,20108,3,1672319033),(107946,7,20109,3,1672319033),(107947,7,20111,3,1672319033),(107948,7,20112,3,1672319033),(107949,7,20113,3,1672319033),(107950,7,20128,3,1672319033),(107951,7,20129,3,1672319033),(107952,7,20130,3,1672319033),(107953,7,20131,3,1672319033),(107954,7,20132,3,1672319033),(107955,7,20133,3,1672319033),(107956,7,20134,3,1672319033),(107957,7,20135,3,1672319033),(107958,7,20136,3,1672319033),(107959,7,20137,3,1672319033),(107960,7,20138,3,1672319033),(107961,7,20139,3,1672319033),(107962,7,20140,3,1672319033),(107963,7,20141,3,1672319033),(107964,7,20142,3,1672319033),(107965,7,20143,3,1672319033),(107966,7,20144,3,1672319033),(107967,7,20145,3,1672319033),(107968,7,20146,3,1672319033),(107969,7,20147,3,1672319033),(107970,7,20148,3,1672319033),(107971,7,20149,3,1672319033),(107972,7,20150,3,1672319033),(107973,7,20151,3,1672319033),(107974,7,20152,3,1672319033),(107975,7,20153,3,1672319033),(107976,7,20154,3,1672319033),(107977,7,20155,3,1672319033),(107978,7,20156,3,1672319033),(107979,7,20157,3,1672319033),(107980,7,20158,3,1672319033),(107981,7,20159,3,1672319033),(107982,7,20160,3,1672319033),(107983,7,20161,3,1672319033),(107984,7,20162,3,1672319033),(107985,7,20163,3,1672319033),(107986,7,20164,3,1672319033),(107987,7,20165,3,1672319033),(107988,7,20166,3,1672319033),(107989,7,20167,3,1672319033),(107990,7,20168,3,1672319033),(107991,7,20169,3,1672319033),(107992,7,20170,3,1672319033),(107993,7,20171,3,1672319033),(107994,7,20172,3,1672319033),(107995,7,20173,3,1672319033),(107996,7,20174,3,1672319033),(107997,7,20175,3,1672319033),(107998,7,20176,3,1672319033),(107999,7,20177,3,1672319033),(108000,7,20178,3,1672319033),(108001,7,20179,3,1672319033),(108002,7,20180,3,1672319033),(108003,7,20181,3,1672319033),(108004,7,20182,3,1672319033),(108005,7,20183,3,1672319033),(108006,7,20184,3,1672319033),(108007,7,20185,3,1672319033),(108008,7,20186,3,1672319033),(108009,7,20187,3,1672319033),(108010,7,20188,3,1672319033),(108011,7,20189,3,1672319033),(108012,7,20190,3,1672319033),(108013,7,20191,3,1672319033),(108014,7,20192,3,1672319033),(108015,7,20193,3,1672319033),(108016,7,20194,3,1672319033),(108017,7,20195,3,1672319033),(108018,7,20200,3,1672319033),(108019,7,20201,3,1672319033),(108020,7,20203,3,1672319033),(108021,7,20204,3,1672319033),(108022,7,20205,3,1672319033),(108023,7,20206,3,1672319033),(108024,7,20207,3,1672319033),(108025,7,20208,3,1672319033),(108026,7,20211,3,1672319033),(108027,7,20212,3,1672319033),(108028,7,20213,3,1672319033),(108029,7,20214,3,1672319033),(108030,7,20217,3,1672319033),(108031,7,20218,3,1672319033),(108032,7,20219,3,1672319033),(108033,7,20221,3,1672319033),(108034,7,20285,3,1672319033),(108035,7,20286,3,1672319033),(108036,7,20287,3,1672319033),(108037,7,20290,3,1672319033),(108038,7,20291,3,1672319033),(108039,7,20293,3,1672319033),(108040,7,20295,3,1672319033),(108041,7,20298,3,1672319033),(108042,7,20312,3,1672319033),(108043,7,20313,3,1672319033),(108044,7,20318,3,1672319033),(108045,7,20319,3,1672319033),(108046,7,20320,3,1672319033),(108047,7,20321,3,1672319033),(108048,7,20322,3,1672319033),(108049,7,20323,3,1672319033),(108050,7,20324,3,1672319033),(108051,7,20327,3,1672319033),(108052,7,20330,3,1672319033),(108053,7,20354,3,1672319033),(108054,7,20355,3,1672319033),(108055,7,20364,3,1672319033),(108056,7,20365,3,1672319033),(108057,7,20399,3,1672319033),(108058,7,20400,3,1672319033),(108059,7,20403,3,1672319033),(108060,7,20404,3,1672319033),(108061,7,20405,3,1672319033),(108062,7,20408,3,1672319033),(108063,7,20409,3,1672319033),(108064,7,20410,3,1672319033),(108065,7,20411,3,1672319033),(108066,7,20449,3,1672319033),(108067,7,20450,3,1672319033),(108068,7,20543,3,1672319033),(108069,7,20544,3,1672319033),(108070,7,20545,3,1672319033),(108071,7,20546,3,1672319033),(108072,7,20547,3,1672319033),(108073,7,20548,3,1672319033),(108074,7,20549,3,1672319033),(108075,7,20550,3,1672319033),(108076,7,20566,3,1672319033),(108077,7,20567,3,1672319033),(108078,7,20568,3,1672319033),(108079,7,20569,3,1672319033),(108080,7,20570,3,1672319033),(108081,7,20571,3,1672319033),(108082,7,20572,3,1672319033),(108083,7,20573,3,1672319033),(108084,7,20574,3,1672319033),(108085,7,20595,3,1672319033),(108086,7,20596,3,1672319033),(108087,7,20597,3,1672319033),(108088,7,20600,3,1672319033),(108089,7,20601,3,1672319033),(108090,7,20602,3,1672319033),(108091,7,20603,3,1672319033),(108092,7,20604,3,1672319033),(108093,7,20605,3,1672319033),(108094,7,20608,3,1672319033),(108095,7,20609,3,1672319033),(108096,7,20610,3,1672319033),(108097,7,20611,3,1672319033),(108098,7,20612,3,1672319033),(108099,7,20613,3,1672319033),(108100,7,20614,3,1672319033),(108101,7,20615,3,1672319033),(108102,7,20616,3,1672319033),(108103,7,20619,3,1672319033),(108104,7,20620,3,1672319033),(108105,7,20621,3,1672319033),(108106,7,20622,3,1672319033),(108107,7,20623,3,1672319033),(108108,7,20624,3,1672319033),(108109,7,20625,3,1672319033),(108110,7,20627,3,1672319033),(108111,7,20628,3,1672319033),(108112,7,20629,3,1672319033),(108113,7,20630,3,1672319033),(108114,7,20631,3,1672319033),(108115,7,20634,3,1672319033),(108116,7,20635,3,1672319033),(108117,7,20636,3,1672319033),(108118,7,20638,3,1672319033),(108119,7,20639,3,1672319033),(108120,7,20641,3,1672319033),(108121,7,20642,3,1672319033),(108122,7,20643,3,1672319033),(108123,7,20644,3,1672319033),(108124,7,20645,3,1672319033),(108125,7,20646,3,1672319033),(108126,7,20647,3,1672319033),(108127,7,20648,3,1672319033),(108128,7,20649,3,1672319033),(108129,7,20650,3,1672319033),(108130,7,20651,3,1672319033),(108131,7,20652,3,1672319033),(108132,7,20653,3,1672319033),(108133,7,20654,3,1672319033),(108134,7,20655,3,1672319033),(108135,7,20656,3,1672319033),(108136,7,20657,3,1672319033),(108137,7,20658,3,1672319033),(108138,7,20659,3,1672319033),(108139,7,20660,3,1672319033),(108140,7,20661,3,1672319033),(108141,7,20662,3,1672319033),(108142,7,20663,3,1672319033),(108143,7,20664,3,1672319033),(108144,7,20665,3,1672319033),(108145,7,20666,3,1672319033),(108146,7,20667,3,1672319033),(108147,7,20668,3,1672319033),(108148,7,20669,3,1672319033),(108149,7,20670,3,1672319033),(108150,7,20671,3,1672319033),(108151,7,20674,3,1672319033),(108152,7,20675,3,1672319033),(108153,7,20676,3,1672319033),(108154,7,20677,3,1672319033),(108155,7,20678,3,1672319033),(108156,7,20679,3,1672319033),(108157,7,20680,3,1672319033),(108158,7,20683,3,1672319033),(108159,7,20684,3,1672319033),(108160,7,20685,3,1672319033),(108161,7,20686,3,1672319033),(108162,7,20687,3,1672319033),(108163,7,20688,3,1672319033),(108164,7,20689,3,1672319033),(108165,7,20690,3,1672319033),(108166,7,20691,3,1672319033),(108167,7,20692,3,1672319033),(108168,7,20693,3,1672319033),(108169,7,20694,3,1672319033),(108170,7,20695,3,1672319033),(108171,7,20696,3,1672319033),(108172,7,20697,3,1672319033),(108173,7,20698,3,1672319033),(108174,7,20699,3,1672319033),(108175,7,20700,3,1672319033),(108176,7,20701,3,1672319033),(108177,7,20702,3,1672319033),(108178,7,20703,3,1672319033),(108179,7,20704,3,1672319033),(108180,7,20705,3,1672319033),(108181,7,20706,3,1672319033),(108182,7,20707,3,1672319033),(108183,7,20708,3,1672319033),(108184,7,20709,3,1672319033),(108185,7,20710,3,1672319033),(108186,7,20711,3,1672319033),(108187,7,20712,3,1672319033),(108188,7,20715,3,1672319033),(108189,7,20716,3,1672319033),(108190,7,20717,3,1672319033),(108191,7,20718,3,1672319033),(108192,7,20721,3,1672319033),(108193,7,20722,3,1672319033),(108194,7,20723,3,1672319033),(108195,7,20724,3,1672319033),(108196,7,20725,3,1672319033),(108197,7,20726,3,1672319033),(108198,7,20727,3,1672319033),(108199,7,20728,3,1672319033),(108200,7,20731,3,1672319033),(108201,7,20732,3,1672319033),(108202,7,20733,3,1672319033),(108203,7,20734,3,1672319033),(108204,7,20735,3,1672319033),(108205,7,20736,3,1672319033),(108206,7,20737,3,1672319033),(108207,7,20738,3,1672319033),(108208,7,20739,3,1672319033),(108209,7,20741,3,1672319033),(108210,7,20744,3,1672319033),(108211,7,20745,3,1672319033),(108212,7,20746,3,1672319033),(108213,7,20747,3,1672319033),(108214,7,20748,3,1672319033),(108215,7,20749,3,1672319033),(108216,7,20752,3,1672319033),(108217,7,20756,3,1672319033),(108218,7,20757,3,1672319033),(108219,7,20758,3,1672319033),(108220,7,20761,3,1672319033),(108221,7,20762,3,1672319033),(108222,7,20765,3,1672319033),(108223,7,20766,3,1672319033),(108224,7,20771,3,1672319033),(108225,7,20772,3,1672319033),(108226,7,20773,3,1672319033),(108227,7,20774,3,1672319033),(108228,7,20775,3,1672319033),(108229,7,20776,3,1672319033),(108230,7,20777,3,1672319033),(108231,7,20778,3,1672319033),(108232,7,20779,3,1672319033),(108233,7,20780,3,1672319033),(108234,7,20781,3,1672319033),(108235,7,20782,3,1672319033),(108236,7,20783,3,1672319033),(108237,7,20784,3,1672319033),(108238,7,20785,3,1672319033),(108239,7,20786,3,1672319033),(108240,7,20787,3,1672319033),(108241,7,20788,3,1672319033),(108242,7,20789,3,1672319033),(108243,7,20790,3,1672319033),(108244,7,20791,3,1672319033),(108245,7,20792,3,1672319033),(108246,7,20793,3,1672319033),(108247,7,20794,3,1672319033),(108248,7,20795,3,1672319033),(108249,7,20796,3,1672319033),(108250,7,20797,3,1672319033),(108251,7,20798,3,1672319033),(108252,7,20799,3,1672319033),(108253,7,20800,3,1672319033),(108254,7,20801,3,1672319033),(108255,7,20802,3,1672319033),(108256,7,20824,3,1672319033),(108257,7,20825,3,1672319033),(108258,7,20826,3,1672319033),(108259,7,20827,3,1672319033),(108260,7,20828,3,1672319033),(108261,7,20829,3,1672319033),(108262,7,20830,3,1672319033),(108263,7,20831,3,1672319033),(108264,7,20832,3,1672319033),(108265,7,20833,3,1672319033),(108266,7,20834,3,1672319033),(108267,7,20835,3,1672319033),(108268,7,20836,3,1672319033),(108269,7,20837,3,1672319033),(108270,7,20838,3,1672319033),(108271,7,20839,3,1672319033),(108272,7,20840,3,1672319033),(108273,7,20841,3,1672319033),(108274,7,20842,3,1672319033),(108275,7,20843,3,1672319033),(108276,7,20844,3,1672319033),(108277,7,20845,3,1672319033),(108278,7,20846,3,1672319033),(108279,7,20847,3,1672319033),(108280,7,20848,3,1672319033),(108281,7,20849,3,1672319033),(108282,7,20850,3,1672319033),(108283,7,20851,3,1672319033),(108284,7,20852,3,1672319033),(108285,7,20853,3,1672319033),(108286,7,20854,3,1672319033),(108287,7,20855,3,1672319033),(108288,7,20856,3,1672319033),(108289,7,20857,3,1672319033),(108290,7,20858,3,1672319033),(108291,7,20859,3,1672319033),(108292,7,20860,3,1672319033),(108293,7,20861,3,1672319033),(108294,7,20862,3,1672319033),(108295,7,20863,3,1672319033),(108296,7,20864,3,1672319033),(108297,7,20865,3,1672319033),(108298,7,20866,3,1672319033),(108299,7,20867,3,1672319033),(108300,7,20868,3,1672319033),(108301,7,20869,3,1672319033),(108302,7,20870,3,1672319033),(108303,7,20871,3,1672319033),(108304,7,20872,3,1672319033),(108305,7,20874,3,1672319033),(108306,7,20875,3,1672319033),(108307,7,20876,3,1672319033),(108308,7,20877,3,1672319033),(108309,7,20878,3,1672319033),(108310,7,20879,3,1672319033),(108311,7,20880,3,1672319033),(108312,7,20881,3,1672319033),(108313,7,20882,3,1672319033),(108314,7,20883,3,1672319033),(108315,7,20884,3,1672319033),(108316,7,20885,3,1672319033),(108317,7,20886,3,1672319033),(108318,7,20887,3,1672319033),(108319,7,20888,3,1672319033),(108320,7,20889,3,1672319033),(108321,7,20890,3,1672319033),(108322,7,20891,3,1672319033),(108323,7,20892,3,1672319033),(108324,7,20893,3,1672319033),(108325,7,20894,3,1672319033),(108326,7,20895,3,1672319033),(108327,7,20896,3,1672319033),(108328,7,20897,3,1672319033),(108329,7,20898,3,1672319033),(108330,7,20899,3,1672319033),(108331,7,20900,3,1672319033),(108332,7,20901,3,1672319033),(108333,7,20902,3,1672319033),(108334,7,20903,3,1672319033),(108335,7,20904,3,1672319033),(108336,7,20905,3,1672319033),(108337,7,20906,3,1672319033),(108338,7,20907,3,1672319033),(108339,7,20908,3,1672319033),(108340,7,20909,3,1672319033),(108341,7,20910,3,1672319033),(108342,7,20911,3,1672319033),(108343,7,20912,3,1672319033),(108344,7,20913,3,1672319033),(108345,7,20914,3,1672319033),(108346,7,20915,3,1672319033),(108347,7,20916,3,1672319033),(108348,7,20917,3,1672319033),(108349,7,20918,3,1672319033),(108350,7,20919,3,1672319033),(108351,7,20920,3,1672319033),(108352,7,20921,3,1672319033),(108353,7,20922,3,1672319033),(108354,7,20923,3,1672319033),(108355,7,20924,3,1672319033),(108356,7,20925,3,1672319033),(108357,7,20926,3,1672319033),(108358,7,20927,3,1672319033),(108359,7,20928,3,1672319033),(108360,7,20929,3,1672319033),(108361,7,20930,3,1672319033),(108362,7,20932,3,1672319033),(108363,7,20933,3,1672319033),(108364,7,20934,3,1672319033),(108365,7,20935,3,1672319033),(108366,7,20936,3,1672319033),(108367,7,20937,3,1672319033),(108368,7,20938,3,1672319033),(108369,7,20939,3,1672319033),(108370,7,20940,3,1672319033),(108371,7,20941,3,1672319033),(108372,7,20942,3,1672319033),(108373,7,20943,3,1672319033),(108374,7,20944,3,1672319033),(108375,7,20945,3,1672319033),(108376,7,20946,3,1672319033),(108377,7,20947,3,1672319033),(108378,7,20948,3,1672319033),(108379,7,20949,3,1672319033),(108380,7,20950,3,1672319033),(108381,7,20951,3,1672319033),(108382,7,20952,3,1672319033),(108383,7,20953,3,1672319033),(108384,7,20954,3,1672319033),(108385,7,20955,3,1672319033),(108386,7,20956,3,1672319033),(108387,7,20957,3,1672319033),(108388,7,20958,3,1672319033),(108389,7,20959,3,1672319033),(108390,7,20960,3,1672319033),(108391,7,20961,3,1672319033),(108392,7,20962,3,1672319033),(108393,7,20963,3,1672319033),(108394,7,20964,3,1672319033),(108395,7,20965,3,1672319033),(108396,7,20966,3,1672319033),(108397,7,20967,3,1672319033),(108398,7,20968,3,1672319033),(108399,7,20969,3,1672319033),(108400,7,20970,3,1672319033),(108401,7,20971,3,1672319033),(108402,7,20972,3,1672319033),(108403,7,20973,3,1672319033),(108404,7,20974,3,1672319033),(108405,7,20976,3,1672319033),(108406,7,20977,3,1672319033),(108407,7,20978,3,1672319033),(108408,7,20979,3,1672319033),(108409,7,20980,3,1672319033),(108410,7,20981,3,1672319033),(108411,7,20982,3,1672319033),(108412,7,20983,3,1672319033),(108413,7,20984,3,1672319033),(108414,7,20985,3,1672319033),(108415,7,20986,3,1672319033),(108416,7,20987,3,1672319033),(108417,7,20988,3,1672319033),(108418,7,20989,3,1672319033),(108419,7,20990,3,1672319033),(108420,7,20991,3,1672319033),(108421,7,20992,3,1672319033),(108422,7,20993,3,1672319033),(108423,7,20994,3,1672319033),(108424,7,20995,3,1672319033),(108425,7,20996,3,1672319033),(108426,7,20997,3,1672319033),(108427,7,20998,3,1672319033),(108428,7,21000,3,1672319033),(108429,7,21001,3,1672319033),(108430,7,21002,3,1672319033),(108431,7,21003,3,1672319033),(108432,7,21004,3,1672319033),(108433,7,21005,3,1672319033),(108434,7,21006,3,1672319033),(108435,7,21007,3,1672319033),(108436,7,21008,3,1672319033),(108437,7,21009,3,1672319033),(108438,7,21010,3,1672319033),(108439,7,21011,3,1672319033),(108440,7,21012,3,1672319033),(108441,7,21013,3,1672319033),(108442,7,21014,3,1672319033),(108443,7,21015,3,1672319033),(108444,7,21016,3,1672319033),(108445,7,21017,3,1672319033),(108446,7,21018,3,1672319033),(108447,7,21019,3,1672319033),(108448,7,21020,3,1672319033),(108449,7,21021,3,1672319033),(108450,7,21022,3,1672319033),(108451,7,21023,3,1672319033),(108452,7,21024,3,1672319033),(108453,7,21025,3,1672319033),(108454,7,21026,3,1672319033),(108455,7,21027,3,1672319033),(108456,7,21028,3,1672319033),(108457,7,21029,3,1672319033),(108458,7,21030,3,1672319033),(108459,7,21031,3,1672319033),(108460,7,21032,3,1672319033),(108461,7,21033,3,1672319033),(108462,7,21034,3,1672319033),(108463,7,21035,3,1672319033),(108464,7,21036,3,1672319033),(108465,7,21037,3,1672319033),(108466,7,21038,3,1672319033),(108467,7,21039,3,1672319033),(108468,7,21040,3,1672319033),(108469,7,21041,3,1672319033),(108470,7,21042,3,1672319033),(108471,7,21043,3,1672319033),(108472,7,21044,3,1672319033),(108473,7,21045,3,1672319033),(108474,7,21046,3,1672319033),(108475,7,21047,3,1672319033),(108476,7,21048,3,1672319033),(108477,7,21049,3,1672319033),(108478,7,21050,3,1672319033),(108479,7,21051,3,1672319033),(108480,7,21052,3,1672319033),(108481,7,21053,3,1672319033),(108482,7,21054,3,1672319033),(108483,7,21055,3,1672319033),(108484,7,21056,3,1672319033),(108485,7,21057,3,1672319033),(108486,7,21058,3,1672319033),(108487,7,21059,3,1672319033),(108488,7,21060,3,1672319033),(108489,7,21061,3,1672319033),(108490,7,21062,3,1672319033),(108491,7,21063,3,1672319033),(108492,7,21065,3,1672319033),(108493,7,21066,3,1672319033),(108494,7,21067,3,1672319033),(108495,7,21068,3,1672319033),(108496,7,21069,3,1672319033),(108497,7,21070,3,1672319033),(108498,7,21071,3,1672319033),(108499,7,21072,3,1672319033),(108500,7,21073,3,1672319033),(108501,7,21074,3,1672319033),(108502,7,21075,3,1672319033),(108503,7,21076,3,1672319033),(108504,7,21077,3,1672319033),(108505,7,21078,3,1672319033),(108506,7,21079,3,1672319033),(108507,7,21080,3,1672319033),(108508,7,21081,3,1672319033),(108509,7,21082,3,1672319033),(108510,7,21083,3,1672319033),(108511,7,21084,3,1672319033),(108512,7,21085,3,1672319033),(108513,7,21086,3,1672319033),(108514,7,21087,3,1672319033),(108515,7,21088,3,1672319033),(108516,7,21089,3,1672319033),(108517,7,21090,3,1672319033),(108518,7,21091,3,1672319033),(108519,7,21092,3,1672319033),(108520,7,21093,3,1672319033),(108521,7,21094,3,1672319033),(108522,7,21095,3,1672319033),(108523,7,21096,3,1672319033),(108524,7,21097,3,1672319033),(108525,7,21098,3,1672319033),(108526,7,21099,3,1672319033),(108527,7,21100,3,1672319033),(108528,7,21101,3,1672319033),(108529,7,21102,3,1672319033),(108530,7,21103,3,1672319033),(108531,7,21104,3,1672319033),(108532,7,21106,3,1672319033),(108533,7,21107,3,1672319033),(108534,7,21108,3,1672319033),(108535,7,21109,3,1672319033),(108536,7,21110,3,1672319033),(108537,7,21111,3,1672319033),(108538,7,21112,3,1672319033),(108539,7,21113,3,1672319033),(108540,7,21114,3,1672319033),(108541,7,21115,3,1672319033),(108542,7,21116,3,1672319033),(108543,7,21117,3,1672319033),(108544,7,21118,3,1672319033),(108545,7,21119,3,1672319033),(108546,7,21120,3,1672319033),(108547,7,21121,3,1672319033),(108548,7,21122,3,1672319033),(108549,7,21123,3,1672319033),(108550,7,21124,3,1672319033),(108551,7,21125,3,1672319033),(108552,7,21126,3,1672319033),(108553,7,21127,3,1672319033),(108554,7,21128,3,1672319033),(108555,7,21129,3,1672319033),(108556,7,21130,3,1672319033),(108557,7,21131,3,1672319033),(108558,7,21132,3,1672319033),(108559,7,21133,3,1672319033),(108560,7,21134,3,1672319033),(108561,7,21135,3,1672319033),(108562,7,21136,3,1672319033),(108563,7,21137,3,1672319033),(108564,7,21138,3,1672319033),(108565,7,21139,3,1672319033),(108566,7,21140,3,1672319033),(108567,7,21141,3,1672319033),(108568,7,21142,3,1672319033),(108569,7,21143,3,1672319033),(108570,7,21145,3,1672319033),(108571,7,21146,3,1672319033),(108572,7,21147,3,1672319033),(108573,7,21148,3,1672319033),(108574,7,21149,3,1672319033),(108575,7,21150,3,1672319033),(108576,7,21151,3,1672319033),(108577,7,21152,3,1672319033),(108578,7,21153,3,1672319033),(108579,7,21154,3,1672319033),(108580,7,21155,3,1672319033),(108581,7,21156,3,1672319033),(108582,7,21157,3,1672319033),(108583,7,21164,3,1672319033),(108584,7,21165,3,1672319033),(108585,7,21166,3,1672319033),(108586,7,21167,3,1672319033),(108587,7,21168,3,1672319033),(108588,7,21174,3,1672319033),(108589,7,21175,3,1672319033),(108590,7,21176,3,1672319033),(108591,7,21177,3,1672319033),(108592,7,21178,3,1672319033),(108593,7,21193,3,1672319033),(108594,7,21194,3,1672319033),(108595,7,21195,3,1672319033),(108596,7,21196,3,1672319033),(108597,7,21197,3,1672319033),(108598,7,21198,3,1672319033),(108599,7,21199,3,1672319033),(108600,7,21200,3,1672319033),(108601,7,21201,3,1672319033),(108602,7,21202,3,1672319033),(108603,7,21203,3,1672319033),(108604,7,21204,3,1672319033),(108605,7,21205,3,1672319033),(108606,7,21206,3,1672319033),(108607,7,21211,3,1672319033),(108608,7,21212,3,1672319033),(108609,7,21213,3,1672319033),(108610,7,21214,3,1672319033),(108611,7,21215,3,1672319033),(108612,7,21216,3,1672319033),(108613,7,21217,3,1672319033),(108614,7,21218,3,1672319033),(108615,7,21219,3,1672319033),(108616,7,21220,3,1672319033),(108617,7,21221,3,1672319033),(108618,7,21222,3,1672319033),(108619,7,21223,3,1672319033),(108620,7,21224,3,1672319033),(108621,7,21225,3,1672319033),(108622,7,21226,3,1672319033),(108623,7,21227,3,1672319033),(108624,7,21228,3,1672319033),(108625,7,21229,3,1672319033),(108626,7,21230,3,1672319033),(108627,7,21231,3,1672319033),(108628,7,21232,3,1672319033),(108629,7,21233,3,1672319033),(108630,7,21234,3,1672319033),(108631,7,21235,3,1672319033),(108632,7,21236,3,1672319033),(108633,7,21237,3,1672319033),(108634,7,21238,3,1672319033),(108635,7,21239,3,1672319033),(108636,7,21240,3,1672319033),(108637,7,21241,3,1672319033),(108638,7,21242,3,1672319033),(108639,7,21245,3,1672319033),(108640,7,21246,3,1672319033),(108641,7,21247,3,1672319033),(108642,7,21248,3,1672319033),(108643,7,21249,3,1672319033),(108644,7,21250,3,1672319033),(108645,7,21251,3,1672319033),(108646,7,21252,3,1672319033),(108647,7,21253,3,1672319033),(108648,7,21254,3,1672319033),(108649,7,21255,3,1672319033),(108650,7,21256,3,1672319033),(108651,7,21262,3,1672319033),(108652,7,21266,3,1672319033),(108653,7,21267,3,1672319033),(108654,7,21268,3,1672319033),(108655,7,21269,3,1672319033),(108656,7,21275,3,1672319033),(108657,7,21276,3,1672319033),(108658,7,21277,3,1672319033),(108659,7,21278,3,1672319033),(108660,7,21279,3,1672319033),(108661,7,21280,3,1672319033),(108662,7,21281,3,1672319033),(108663,7,21282,3,1672319033),(108664,7,21283,3,1672319033),(108665,7,21284,3,1672319033),(108666,7,21285,3,1672319033),(108667,7,21286,3,1672319033),(108668,7,21287,3,1672319033),(108669,7,21288,3,1672319033),(108670,7,21289,3,1672319033),(108671,7,21290,3,1672319033),(108672,7,21291,3,1672319033),(108673,7,21292,3,1672319033),(108674,7,21295,3,1672319033),(108675,7,21296,3,1672319033),(108676,7,21303,3,1672319033),(108677,7,21304,3,1672319033),(108678,7,21305,3,1672319033),(108679,7,21306,3,1672319033),(108680,7,21307,3,1672319033),(108681,7,21308,3,1672319033),(108682,7,21309,3,1672319033),(108683,7,21310,3,1672319033),(108684,7,21311,3,1672319033),(108685,7,21312,3,1672319033),(108686,7,21313,3,1672319033),(108687,7,21314,3,1672319033),(108688,7,21315,3,1672319033),(108689,7,21316,3,1672319033),(108690,7,21317,3,1672319033),(108691,7,21318,3,1672319033),(108692,7,21319,3,1672319033),(108693,7,21320,3,1672319033),(108694,7,21321,3,1672319033),(108695,7,21322,3,1672319033),(108696,7,21323,3,1672319033),(108697,7,21324,3,1672319033),(108698,7,21325,3,1672319033),(108699,7,21326,3,1672319033),(108700,7,21327,3,1672319033),(108701,7,21328,3,1672319033),(108702,7,21329,3,1672319033),(108703,7,21330,3,1672319033),(108704,7,21331,3,1672319033),(108705,7,21332,3,1672319033),(108706,7,21333,3,1672319033),(108707,7,21334,3,1672319033),(108708,7,21335,3,1672319033),(108709,7,21336,3,1672319033),(108710,7,21337,3,1672319033),(108711,7,21338,3,1672319033),(108712,7,21339,3,1672319033),(108713,7,21340,3,1672319033),(108714,7,21341,3,1672319033),(108715,7,21342,3,1672319033),(108716,7,21343,3,1672319033),(108717,7,21345,3,1672319033),(108718,7,21348,3,1672319033),(108719,7,21349,3,1672319033),(108720,7,21350,3,1672319033),(108721,7,21351,3,1672319033),(108722,7,21566,3,1672319033),(108723,7,21567,3,1672319033),(108724,7,21568,3,1672319033),(108725,7,21571,3,1672319033),(108726,7,21575,3,1672319033),(108727,7,21576,3,1672319033),(108728,7,21577,3,1672319033),(108729,7,21578,3,1672319033),(108730,7,21579,3,1672319033),(108731,7,21580,3,1672319033),(108732,7,21581,3,1672319033),(108733,7,21582,3,1672319033),(108734,7,21583,3,1672319033),(108735,7,21584,3,1672319033),(108736,7,21585,3,1672319033),(108737,7,21586,3,1672319033),(108738,7,21587,3,1672319033),(108739,7,21592,3,1672319033),(108740,7,21619,3,1672319033),(108741,7,21637,3,1672319033),(108742,7,21649,3,1672319033),(108743,7,21657,3,1672319033),(108744,7,21677,3,1672319033),(108745,7,21704,3,1672319033),(108746,7,21705,3,1672319033),(108747,7,21706,3,1672319033),(108748,7,21707,3,1672319033),(108749,7,21708,3,1672319033),(108750,7,21710,3,1672319033),(108751,7,21711,3,1672319033),(108752,7,21712,3,1672319033),(108753,7,21713,3,1672319033),(108754,7,21714,3,1672319033),(108755,7,21715,3,1672319033),(108756,7,21716,3,1672319033),(108757,7,21717,3,1672319033),(108758,7,21718,3,1672319033),(108759,7,21719,3,1672319033),(108760,7,21720,3,1672319033),(108761,7,21721,3,1672319033),(108762,7,21722,3,1672319033),(108763,7,21723,3,1672319033),(108764,7,21724,3,1672319033),(108765,7,21725,3,1672319033),(108766,7,21726,3,1672319033),(108767,7,21727,3,1672319033),(108768,7,21728,3,1672319033),(108769,7,21729,3,1672319033),(108770,7,21730,3,1672319033),(108771,7,21731,3,1672319033),(108772,7,21732,3,1672319033),(108773,7,21733,3,1672319033),(108774,7,21734,3,1672319033),(108775,7,21735,3,1672319033),(108776,7,21736,3,1672319033),(108777,7,21737,3,1672319033),(108778,7,21738,3,1672319033),(108779,7,21739,3,1672319033),(108780,7,21740,3,1672319033),(108781,7,21741,3,1672319033),(108782,7,21742,3,1672319033),(108783,7,21743,3,1672319033),(108784,7,21744,3,1672319033),(108785,7,21745,3,1672319033),(108786,7,21746,3,1672319033),(108787,7,21747,3,1672319033),(108788,7,21748,3,1672319033),(108789,7,21749,3,1672319033),(108790,7,21750,3,1672319033),(108791,7,21751,3,1672319033),(108792,7,21756,3,1672319033),(108793,7,21758,3,1672319033),(108794,7,21759,3,1672319033),(108795,7,21760,3,1672319033),(108796,7,21761,3,1672319033),(108797,7,21762,3,1672319033),(108798,7,21763,3,1672319033),(108799,7,21764,3,1672319033),(108800,7,21765,3,1672319033),(108801,7,21768,3,1672319033),(108802,7,21769,3,1672319033),(108803,7,21770,3,1672319033),(108804,7,21771,3,1672319033),(108805,7,21772,3,1672319033),(108806,7,21773,3,1672319033),(108807,7,21774,3,1672319033),(108808,7,21775,3,1672319033),(108809,7,21776,3,1672319033),(108810,7,21777,3,1672319033),(108811,7,21778,3,1672319033),(108812,7,21779,3,1672319033),(108813,7,21780,3,1672319033),(108814,7,21802,3,1672319033),(108815,7,21803,3,1672319033),(108816,7,21804,3,1672319033),(108817,7,21805,3,1672319033),(108818,7,21806,3,1672319033),(108819,7,21807,3,1672319033),(108820,7,21808,3,1672319033),(108821,7,21956,3,1672319033),(108822,7,21957,3,1672319033),(108823,7,21958,3,1672319033),(108824,7,21959,3,1672319033),(108825,7,21960,3,1672319033),(108826,7,21961,3,1672319033),(108827,7,21962,3,1672319033),(108828,7,21970,3,1672319033),(108829,7,21971,3,1672319033),(108830,7,21972,3,1672319033),(108831,7,21980,3,1672319033),(108832,7,21981,3,1672319033),(108833,7,21984,3,1672319033),(108834,7,21985,3,1672319033),(108835,7,21986,3,1672319033),(108836,7,21987,3,1672319033),(108837,7,21988,3,1672319033),(108838,7,21989,3,1672319033),(108839,7,21990,3,1672319033),(108840,7,21991,3,1672319033),(108841,7,21992,3,1672319033),(108842,7,21993,3,1672319033),(108843,7,21994,3,1672319033),(108844,7,21995,3,1672319033),(108845,7,21996,3,1672319033),(108846,7,21997,3,1672319033),(108847,7,21998,3,1672319033),(108848,7,21999,3,1672319033),(108849,7,22000,3,1672319033),(108850,7,22001,3,1672319033),(108851,7,22002,3,1672319033),(108852,7,22003,3,1672319033),(108853,7,22004,3,1672319033),(108854,7,22005,3,1672319033),(108855,7,22006,3,1672319033),(108856,7,22007,3,1672319033),(108857,7,22008,3,1672319033),(108858,7,22009,3,1672319033),(108859,7,22010,3,1672319033),(108860,7,22011,3,1672319033),(108861,7,22012,3,1672319033),(108862,7,22013,3,1672319033),(108863,7,22014,3,1672319033),(108864,7,22015,3,1672319033),(108865,7,22023,3,1672319033),(108866,7,22024,3,1672319033),(108867,7,22027,3,1672319033),(108868,7,22028,3,1672319033),(108869,7,22029,3,1672319033),(108870,7,22030,3,1672319033),(108871,7,22031,3,1672319033),(108872,7,22032,3,1672319033),(108873,7,22033,3,1672319033),(108874,7,22034,3,1672319033),(108875,7,22035,3,1672319033),(108876,7,22036,3,1672319033),(108877,7,22037,3,1672319033),(108878,7,22038,3,1672319033),(108879,7,22039,3,1672319033),(108880,7,22040,3,1672319033),(108881,7,22041,3,1672319033),(108882,7,22042,3,1672319033),(108883,7,22043,3,1672319033),(108884,7,22044,3,1672319033),(108885,7,22045,3,1672319033),(108886,7,22046,3,1672319033),(108887,7,22047,3,1672319033),(108888,7,22048,3,1672319033),(108889,7,22049,3,1672319033),(108890,7,22050,3,1672319033),(108891,7,22051,3,1672319033),(108892,7,22052,3,1672319033),(108893,7,22053,3,1672319033),(108894,7,22054,3,1672319033),(108895,7,22055,3,1672319033),(108896,7,22056,3,1672319033),(108897,7,22057,3,1672319033),(108898,7,22058,3,1672319033),(108899,7,22066,3,1672319033),(108900,7,22067,3,1672319033),(108901,7,22070,3,1672319033),(108902,7,22071,3,1672319033),(108903,7,22072,3,1672319033),(108904,7,22073,3,1672319033),(108905,7,22074,3,1672319033),(108906,7,22075,3,1672319033),(108907,7,22076,3,1672319033),(108908,7,22077,3,1672319033),(108909,7,22078,3,1672319033),(108910,7,22079,3,1672319033),(108911,7,22080,3,1672319033),(108912,7,22081,3,1672319033),(108913,7,22082,3,1672319033),(108914,7,22083,3,1672319033),(108915,7,22084,3,1672319033),(108916,7,22085,3,1672319033),(108917,7,22086,3,1672319033),(108918,7,22087,3,1672319033),(108919,7,22088,3,1672319033),(108920,7,22089,3,1672319033),(108921,7,22090,3,1672319033),(108922,7,22091,3,1672319033),(108923,7,22092,3,1672319033),(108924,7,22093,3,1672319033),(108925,7,22094,3,1672319033),(108926,7,22095,3,1672319033),(108927,7,22096,3,1672319033),(108928,7,22097,3,1672319033),(108929,7,22098,3,1672319033),(108930,7,22099,3,1672319033),(108931,7,22100,3,1672319033),(108932,7,22101,3,1672319033),(108933,7,22109,3,1672319033),(108934,7,22110,3,1672319033),(108935,7,22113,3,1672319033),(108936,7,22114,3,1672319033),(108937,7,22115,3,1672319033),(108938,7,22116,3,1672319033),(108939,7,22117,3,1672319033),(108940,7,22118,3,1672319033),(108941,7,22119,3,1672319033),(108942,7,22120,3,1672319033),(108943,7,22121,3,1672319033),(108944,7,22122,3,1672319033),(108945,7,22123,3,1672319033),(108946,7,22124,3,1672319033),(108947,7,22125,3,1672319033),(108948,7,22126,3,1672319033),(108949,7,22127,3,1672319033),(108950,7,22128,3,1672319033),(108951,7,22129,3,1672319033),(108952,7,22130,3,1672319033),(108953,7,22131,3,1672319033),(108954,7,22132,3,1672319033),(108955,7,22133,3,1672319033),(108956,7,22134,3,1672319033),(108957,7,22135,3,1672319033),(108958,7,22136,3,1672319033),(108959,7,22137,3,1672319033),(108960,7,22138,3,1672319033),(108961,7,22139,3,1672319033),(108962,7,22140,3,1672319033),(108963,7,22141,3,1672319033),(108964,7,22142,3,1672319033),(108965,7,22143,3,1672319033),(108966,7,22144,3,1672319033),(108967,7,22152,3,1672319033),(108968,7,22153,3,1672319033),(108969,7,22156,3,1672319033),(108970,7,22157,3,1672319033),(108971,7,22158,3,1672319033),(108972,7,22159,3,1672319033),(108973,7,22160,3,1672319033),(108974,7,22161,3,1672319033),(108975,7,22162,3,1672319033),(108976,7,22163,3,1672319033),(108977,7,22164,3,1672319033),(108978,7,22165,3,1672319033),(108979,7,22166,3,1672319033),(108980,7,22167,3,1672319033),(108981,7,22168,3,1672319033),(108982,7,22169,3,1672319033),(108983,7,22170,3,1672319033),(108984,7,22171,3,1672319033),(108985,7,22172,3,1672319033),(108986,7,22173,3,1672319033),(108987,7,22174,3,1672319033),(108988,7,22175,3,1672319033),(108989,7,22176,3,1672319033),(108990,7,22177,3,1672319033),(108991,7,22178,3,1672319033),(108992,7,22179,3,1672319033),(108993,7,22180,3,1672319033),(108994,7,22181,3,1672319033),(108995,7,22182,3,1672319033),(108996,7,22183,3,1672319033),(108997,7,22184,3,1672319033),(108998,7,22185,3,1672319033),(108999,7,22188,3,1672319033),(109000,7,22192,3,1672319033),(109001,7,22194,3,1672319033),(109002,7,22195,3,1672319033),(109003,7,22196,3,1672319033),(109004,7,22197,3,1672319033),(109005,7,22198,3,1672319033),(109006,7,22199,3,1672319033),(109007,7,22200,3,1672319033),(109008,7,22201,3,1672319033),(109009,7,22202,3,1672319033),(109010,7,22203,3,1672319033),(109011,7,22204,3,1672319033),(109012,7,22205,3,1672319033),(109013,7,22208,3,1672319033),(109014,7,22209,3,1672319033),(109015,7,22210,3,1672319033),(109016,7,22211,3,1672319033),(109017,7,22212,3,1672319033),(109018,7,22213,3,1672319033),(109019,7,22214,3,1672319033),(109020,7,22215,3,1672319033),(109021,7,22224,3,1672319033),(109022,7,22231,3,1672319033),(109023,7,22232,3,1672319033),(109024,7,22233,3,1672319033),(109025,7,22234,3,1672319033),(109026,7,22247,3,1672319033),(109027,7,22248,3,1672319033),(109028,7,22249,3,1672319033),(109029,7,22250,3,1672319033),(109030,7,22257,3,1672319033),(109031,7,22258,3,1672319033),(109032,7,22259,3,1672319033),(109033,7,22260,3,1672319033),(109034,7,22261,3,1672319033),(109035,7,22262,3,1672319033),(109036,7,22263,3,1672319033),(109037,7,22264,3,1672319033),(109038,7,22265,3,1672319033),(109039,7,22266,3,1672319033),(109040,7,22267,3,1672319033),(109041,7,22268,3,1672319033),(109042,7,22269,3,1672319033),(109043,7,22270,3,1672319033),(109044,7,22278,3,1672319033),(109045,7,22279,3,1672319033),(109046,7,22280,3,1672319033),(109047,7,22281,3,1672319033),(109048,7,22282,3,1672319033),(109049,7,22283,3,1672319033),(109050,7,22284,3,1672319033),(109051,7,22292,3,1672319033),(109052,7,22293,3,1672319033),(109053,7,22294,3,1672319033),(109054,7,22295,3,1672319033),(109055,7,22299,3,1672319033),(109056,7,22300,3,1672319033),(109057,7,22301,3,1672319033),(109058,7,22302,3,1672319033),(109059,7,22303,3,1672319033),(109060,7,22304,3,1672319033),(109061,7,22305,3,1672319033),(109062,7,22306,3,1672319033),(109063,7,22307,3,1672319033),(109064,7,22308,3,1672319033),(109065,7,22309,3,1672319033),(109066,7,22310,3,1672319033),(109067,7,22311,3,1672319033),(109068,7,22312,3,1672319033),(109069,7,22313,3,1672319033),(109070,7,22314,3,1672319033),(109071,7,22318,3,1672319033),(109072,7,22319,3,1672319033),(109073,7,22321,3,1672319033),(109074,7,22322,3,1672319033),(109075,7,22323,3,1672319033),(109076,7,22324,3,1672319033),(109077,7,22325,3,1672319033),(109078,7,22326,3,1672319033),(109079,7,22327,3,1672319033),(109080,7,22328,3,1672319033),(109081,7,22329,3,1672319033),(109082,7,22330,3,1672319033),(109083,7,22345,3,1672319033),(109084,7,22346,3,1672319033),(109085,7,22347,3,1672319033),(109086,7,22356,3,1672319033),(109087,7,22357,3,1672319033),(109088,7,22358,3,1672319033),(109089,7,22360,3,1672319033),(109090,7,22361,3,1672319033),(109091,7,22362,3,1672319033),(109092,7,22363,3,1672319033),(109093,7,22364,3,1672319033),(109094,7,22365,3,1672319033),(109095,7,22366,3,1672319033),(109096,7,22367,3,1672319033),(109097,7,22368,3,1672319033),(109098,7,22371,3,1672319033),(109099,7,22372,3,1672319033),(109100,7,22373,3,1672319033),(109101,7,22374,3,1672319033),(109102,7,22375,3,1672319033),(109103,7,22376,3,1672319033),(109104,7,22377,3,1672319033),(109105,7,22378,3,1672319033),(109106,7,22379,3,1672319033),(109107,7,22380,3,1672319033),(109108,7,22381,3,1672319033),(109109,7,22382,3,1672319033),(109110,7,22383,3,1672319033),(109111,7,22384,3,1672319033),(109112,7,22385,3,1672319033),(109113,7,22386,3,1672319033),(109114,7,22387,3,1672319033),(109115,7,22390,3,1672319033),(109116,7,22391,3,1672319033),(109117,7,22392,3,1672319033),(109118,7,22393,3,1672319033),(109119,7,22394,3,1672319033),(109120,7,22395,3,1672319033),(109121,7,22396,3,1672319033),(109122,7,22397,3,1672319033),(109123,7,22398,3,1672319033),(109124,7,22399,3,1672319033),(109125,7,22400,3,1672319033),(109126,7,22401,3,1672319033),(109127,7,22402,3,1672319033),(109128,7,22403,3,1672319033),(109129,7,22404,3,1672319033),(109130,7,22405,3,1672319033),(109131,7,22406,3,1672319033),(109132,7,22407,3,1672319033),(109133,7,22408,3,1672319033),(109134,7,22411,3,1672319033),(109135,7,22412,3,1672319033),(109136,7,22414,3,1672319033),(109137,7,22415,3,1672319033),(109138,7,22416,3,1672319033),(109139,7,22417,3,1672319033),(109140,7,22418,3,1672319033),(109141,7,22419,3,1672319033),(109142,7,22420,3,1672319033),(109143,7,22421,3,1672319033),(109144,7,22422,3,1672319033),(109145,7,22423,3,1672319033),(109146,7,22424,3,1672319033),(109147,7,22425,3,1672319033),(109148,7,22426,3,1672319033),(109149,7,22427,3,1672319033),(109150,7,22428,3,1672319033),(109151,7,22429,3,1672319033),(109152,7,22430,3,1672319033),(109153,7,22431,3,1672319033),(109154,7,22432,3,1672319033),(109155,7,22433,3,1672319033),(109156,7,22434,3,1672319033),(109157,7,22435,3,1672319033),(109158,7,22436,3,1672319033),(109159,7,22437,3,1672319033),(109160,7,22441,3,1672319033),(109161,7,22442,3,1672319033),(109162,7,22443,3,1672319033),(109163,7,22444,3,1672319033),(109164,7,22445,3,1672319033),(109165,7,22446,3,1672319033),(109166,7,22447,3,1672319033),(109167,7,22448,3,1672319033),(109168,7,22449,3,1672319033),(109169,7,22450,3,1672319033),(109170,7,22451,3,1672319033),(109171,7,22452,3,1672319033),(109172,7,22453,3,1672319033),(109173,7,22454,3,1672319033),(109174,7,22455,3,1672319033),(109175,7,22456,3,1672319033),(109176,7,22457,3,1672319033),(109177,7,22458,3,1672319033),(109178,7,22459,3,1672319033),(109179,7,22460,3,1672319033),(109180,7,22461,3,1672319033),(109181,7,22462,3,1672319033),(109182,7,22463,3,1672319033),(109183,7,22464,3,1672319033),(109184,7,22465,3,1672319033),(109185,7,22466,3,1672319033),(109186,7,22467,3,1672319033),(109187,7,22468,3,1672319033),(109188,7,22469,3,1672319033),(109189,7,22470,3,1672319033),(109190,7,22471,3,1672319033),(109191,7,22472,3,1672319033),(109192,7,22473,3,1672319033),(109193,7,22474,3,1672319033),(109194,7,22475,3,1672319033),(109195,7,22479,3,1672319033),(109196,7,22480,3,1672319033),(109197,7,22481,3,1672319033),(109198,7,22482,3,1672319033),(109199,7,22483,3,1672319033),(109200,7,22484,3,1672319033),(109201,7,22485,3,1672319033),(109202,7,22486,3,1672319033),(109203,7,22487,3,1672319033),(109204,7,22488,3,1672319033),(109205,7,22489,3,1672319033),(109206,7,22490,3,1672319033),(109207,7,22491,3,1672319033),(109208,7,22492,3,1672319033),(109209,7,22493,3,1672319033),(109210,7,22494,3,1672319033),(109211,7,22495,3,1672319033),(109212,7,22496,3,1672319033),(109213,7,22497,3,1672319033),(109214,7,22498,3,1672319033),(109215,7,22499,3,1672319033),(109216,7,22500,3,1672319033),(109217,7,22501,3,1672319033),(109218,7,22502,3,1672319033),(109219,7,22503,3,1672319033),(109220,7,22504,3,1672319033),(109221,7,22505,3,1672319033),(109222,7,22506,3,1672319033),(109223,7,22507,3,1672319033),(109224,7,22508,3,1672319033),(109225,7,22509,3,1672319033),(109226,7,22510,3,1672319033),(109227,7,22511,3,1672319033),(109228,7,22512,3,1672319033),(109229,7,22513,3,1672319033),(109230,7,22517,3,1672319033),(109231,7,22518,3,1672319033),(109232,7,22519,3,1672319033),(109233,7,22520,3,1672319033),(109234,7,22521,3,1672319033),(109235,7,22522,3,1672319033),(109236,7,22523,3,1672319033),(109237,7,22524,3,1672319033),(109238,7,22525,3,1672319033),(109239,7,22526,3,1672319033),(109240,7,22527,3,1672319033),(109241,7,22528,3,1672319033),(109242,7,22529,3,1672319033),(109243,7,22530,3,1672319033),(109244,7,22531,3,1672319033),(109245,7,22532,3,1672319033),(109246,7,22533,3,1672319033),(109247,7,22534,3,1672319033),(109248,7,22535,3,1672319033),(109249,7,22536,3,1672319033),(109250,7,22537,3,1672319033),(109251,7,22538,3,1672319033),(109252,7,22539,3,1672319033),(109253,7,22540,3,1672319033),(109254,7,22541,3,1672319033),(109255,7,22542,3,1672319033),(109256,7,22543,3,1672319033),(109257,7,22544,3,1672319033),(109258,7,22545,3,1672319033),(109259,7,22546,3,1672319033),(109260,7,22547,3,1672319033),(109261,7,22548,3,1672319033),(109262,7,22549,3,1672319033),(109263,7,22550,3,1672319033),(109264,7,22551,3,1672319033),(109265,7,22555,3,1672319033),(109266,7,22556,3,1672319033),(109267,7,22557,3,1672319033),(109268,7,22558,3,1672319033),(109269,7,22559,3,1672319033),(109270,7,22560,3,1672319033),(109271,7,22561,3,1672319033),(109272,7,22562,3,1672319033),(109273,7,22563,3,1672319033),(109274,7,22564,3,1672319033),(109275,7,22565,3,1672319033),(109276,7,22566,3,1672319033),(109277,7,22567,3,1672319033),(109278,7,22568,3,1672319033),(109279,7,22569,3,1672319033),(109280,7,22570,3,1672319033),(109281,7,22571,3,1672319033),(109282,7,22572,3,1672319033),(109283,7,22573,3,1672319033),(109284,7,22574,3,1672319033),(109285,7,22575,3,1672319033),(109286,7,22576,3,1672319033),(109287,7,22577,3,1672319033),(109288,7,22578,3,1672319033),(109289,7,22579,3,1672319033),(109290,7,22580,3,1672319033),(109291,7,22581,3,1672319033),(109292,7,22582,3,1672319033),(109293,7,22583,3,1672319033),(109294,7,22584,3,1672319033),(109295,7,22585,3,1672319033),(109296,7,22586,3,1672319033),(109297,7,22587,3,1672319033),(109298,7,22588,3,1672319033),(109299,7,22589,3,1672319033),(109300,7,22593,3,1672319033),(109301,7,22594,3,1672319033),(109302,7,22595,3,1672319033),(109303,7,22596,3,1672319033),(109304,7,22597,3,1672319033),(109305,7,22598,3,1672319033),(109306,7,22599,3,1672319033),(109307,7,22600,3,1672319033),(109308,7,22601,3,1672319033),(109309,7,22602,3,1672319033),(109310,7,22603,3,1672319033),(109311,7,22604,3,1672319033),(109312,7,22605,3,1672319033),(109313,7,22606,3,1672319033),(109314,7,22645,3,1672319033),(109315,7,22646,3,1672319033),(109316,7,22647,3,1672319033),(109317,7,22648,3,1672319033),(109318,7,22649,3,1672319033),(109319,7,22650,3,1672319033),(109320,7,22651,3,1672319033),(109321,7,22652,3,1672319033),(109322,7,22653,3,1672319033),(109323,7,22654,3,1672319033),(109324,7,22655,3,1672319033),(109325,7,22656,3,1672319033),(109326,7,22657,3,1672319033),(109327,7,22658,3,1672319033),(109328,7,22659,3,1672319033),(109329,7,22660,3,1672319033),(109330,7,22661,3,1672319033),(109331,7,22662,3,1672319033),(109332,7,22663,3,1672319033),(109333,7,22664,3,1672319033),(109334,7,22665,3,1672319033),(109335,7,22669,3,1672319033),(109336,7,22670,3,1672319033),(109337,7,22671,3,1672319033),(109338,7,22672,3,1672319033),(109339,7,22673,3,1672319033),(109340,7,22674,3,1672319033),(109341,7,22675,3,1672319033),(109342,7,22676,3,1672319033),(109343,7,22677,3,1672319033),(109344,7,22678,3,1672319033),(109345,7,22679,3,1672319033),(109346,7,22680,3,1672319033),(109347,7,22681,3,1672319033),(109348,7,22682,3,1672319033),(109349,7,22683,3,1672319033),(109350,7,22686,3,1672319033),(109351,7,22687,3,1672319033),(109352,7,22688,3,1672319033),(109353,7,22689,3,1672319033),(109354,7,22690,3,1672319033),(109355,7,22691,3,1672319033),(109356,7,22692,3,1672319033),(109357,7,22693,3,1672319033),(109358,7,22694,3,1672319033),(109359,7,22695,3,1672319033),(109360,7,22696,3,1672319033),(109361,7,22697,3,1672319033),(109362,7,22698,3,1672319033),(109363,7,22699,3,1672319033),(109364,7,22700,3,1672319033),(109365,7,22701,3,1672319033),(109366,7,22702,3,1672319033),(109367,7,22703,3,1672319033),(109368,7,22704,3,1672319033),(109369,7,22705,3,1672319033),(109370,7,22706,3,1672319033),(109371,7,22707,3,1672319033),(109372,7,22708,3,1672319033),(109373,7,22709,3,1672319033),(109374,7,22713,3,1672319033),(109375,7,22714,3,1672319033),(109376,7,22715,3,1672319033),(109377,7,22716,3,1672319033),(109378,7,22717,3,1672319033),(109379,7,22718,3,1672319033),(109380,7,22719,3,1672319033),(109381,7,22720,3,1672319033),(109382,7,22721,3,1672319033),(109383,7,22722,3,1672319033),(109384,7,22723,3,1672319033),(109385,7,22724,3,1672319033),(109386,7,22725,3,1672319033),(109387,7,22726,3,1672319033),(109388,7,22727,3,1672319033),(109389,7,22728,3,1672319033),(109390,7,22729,3,1672319033),(109391,7,22730,3,1672319033),(109392,7,22731,3,1672319033),(109393,7,22732,3,1672319033),(109394,7,22733,3,1672319033),(109395,7,22734,3,1672319033),(109396,7,22735,3,1672319033),(109397,7,22736,3,1672319033),(109398,7,22737,3,1672319033),(109399,7,22738,3,1672319033),(109400,7,22739,3,1672319033),(109401,7,22740,3,1672319033),(109402,7,22741,3,1672319033),(109403,7,22742,3,1672319033),(109404,7,22743,3,1672319033),(109405,7,22744,3,1672319033),(109406,7,22745,3,1672319033),(109407,7,22746,3,1672319033),(109408,7,22747,3,1672319033),(109409,7,22751,3,1672319033),(109410,7,22752,3,1672319033),(109411,7,22753,3,1672319033),(109412,7,22754,3,1672319033),(109413,7,22755,3,1672319033),(109414,7,22756,3,1672319033),(109415,7,22757,3,1672319033),(109416,7,22758,3,1672319033),(109417,7,22759,3,1672319033),(109418,7,22760,3,1672319033),(109419,7,22761,3,1672319033),(109420,7,22762,3,1672319033),(109421,7,22763,3,1672319033),(109422,7,22764,3,1672319033),(109423,7,22765,3,1672319033),(109424,7,22766,3,1672319033),(109425,7,22767,3,1672319033),(109426,7,22768,3,1672319033),(109427,7,22769,3,1672319033),(109428,7,22770,3,1672319033),(109429,7,22771,3,1672319033),(109430,7,22772,3,1672319033),(109431,7,22773,3,1672319033),(109432,7,22774,3,1672319033),(109433,7,22775,3,1672319033),(109434,7,22776,3,1672319033),(109435,7,22777,3,1672319033),(109436,7,22778,3,1672319033),(109437,7,22779,3,1672319033),(109438,7,22780,3,1672319033),(109439,7,22781,3,1672319033),(109440,7,22782,3,1672319033),(109441,7,22783,3,1672319033),(109442,7,22784,3,1672319033),(109443,7,22785,3,1672319033),(109444,7,22789,3,1672319033),(109445,7,22790,3,1672319033),(109446,7,22791,3,1672319033),(109447,7,22792,3,1672319033),(109448,7,22793,3,1672319033),(109449,7,22794,3,1672319033),(109450,7,22795,3,1672319033),(109451,7,22796,3,1672319033),(109452,7,22797,3,1672319033),(109453,7,22798,3,1672319033),(109454,7,22799,3,1672319033),(109455,7,22800,3,1672319033),(109456,7,22801,3,1672319033),(109457,7,22802,3,1672319033),(109458,7,22977,3,1672319033),(109459,7,23029,3,1672319033),(109460,7,23030,3,1672319033),(109461,7,23031,3,1672319033),(109462,7,23106,3,1672319033),(109463,7,23116,3,1672319033),(109464,7,23117,3,1672319033),(109465,7,23121,3,1672319033),(109466,7,23122,3,1672319033),(109467,7,23126,3,1672319033),(109468,7,23127,3,1672319033),(109469,7,23128,3,1672319033),(109470,7,23129,3,1672319033),(109471,7,23130,3,1672319033),(109472,7,23131,3,1672319033),(109473,7,23132,3,1672319033),(109474,7,23133,3,1672319033),(109475,7,23134,3,1672319033),(109476,7,23135,3,1672319033),(109477,7,23136,3,1672319033),(109478,7,23137,3,1672319033),(109479,7,23138,3,1672319033),(109480,7,23143,3,1672319033),(109481,7,23144,3,1672319033),(109482,7,23145,3,1672319033),(109483,7,23146,3,1672319033),(109484,7,23147,3,1672319033),(109485,7,23148,3,1672319033),(109486,7,23149,3,1672319033),(109487,7,23150,3,1672319033),(109488,7,23151,3,1672319033),(109489,7,23152,3,1672319033),(109490,7,23153,3,1672319033),(109491,7,23154,3,1672319033),(109492,7,23159,3,1672319033),(109493,7,23160,3,1672319033),(109494,7,23161,3,1672319033),(109495,7,23162,3,1672319033),(109496,7,23163,3,1672319033),(109497,7,23164,3,1672319033),(109498,7,23165,3,1672319033),(109499,7,23166,3,1672319033),(109500,7,23167,3,1672319033),(109501,7,23168,3,1672319033),(109502,7,23169,3,1672319033),(109503,7,23170,3,1672319033),(109504,7,23171,3,1672319033),(109505,7,23172,3,1672319033),(109506,7,23173,3,1672319033),(109507,7,23174,3,1672319033),(109508,7,23175,3,1672319033),(109509,7,23176,3,1672319033),(109510,7,23177,3,1672319033),(109511,7,23178,3,1672319033),(109512,7,23179,3,1672319033),(109513,7,23180,3,1672319033),(109514,7,23181,3,1672319033),(109515,7,23182,3,1672319033),(109516,7,23183,3,1672319033),(109517,7,23184,3,1672319033),(109518,7,23185,3,1672319033),(109519,7,23186,3,1672319033),(109520,7,23187,3,1672319033),(109521,7,23188,3,1672319033),(109522,7,23189,3,1672319033),(109523,7,23190,3,1672319033),(109524,7,23191,3,1672319033),(109525,7,23192,3,1672319033),(109526,7,23193,3,1672319033),(109527,7,23194,3,1672319033),(109528,7,23195,3,1672319033),(109529,7,23196,3,1672319033),(109530,7,23197,3,1672319033),(109531,7,23198,3,1672319033),(109532,7,23199,3,1672319033),(109533,7,23200,3,1672319033),(109534,7,23201,3,1672319033),(109535,7,23202,3,1672319033),(109536,7,23203,3,1672319033),(109537,7,23204,3,1672319033),(109538,7,23205,3,1672319033),(109539,7,23206,3,1672319033),(109540,7,23207,3,1672319033),(109541,7,23208,3,1672319033),(109542,7,23209,3,1672319033),(109543,7,23210,3,1672319033),(109544,7,23211,3,1672319033),(109545,7,23212,3,1672319033),(109546,7,23213,3,1672319033),(109547,7,23214,3,1672319033),(109548,7,23215,3,1672319033),(109549,7,23216,3,1672319033),(109550,7,23217,3,1672319033),(109551,7,23218,3,1672319033),(109552,7,23219,3,1672319033),(109553,7,23220,3,1672319033),(109554,7,23221,3,1672319033),(109555,7,23222,3,1672319033),(109556,7,23223,3,1672319033),(109557,7,23224,3,1672319033),(109558,7,23225,3,1672319033),(109559,7,23226,3,1672319033),(109560,7,23227,3,1672319033),(109561,7,23228,3,1672319033),(109562,7,23229,3,1672319033),(109563,7,23230,3,1672319033),(109564,7,23231,3,1672319033),(109565,7,23232,3,1672319033),(109566,7,23233,3,1672319033),(109567,7,23234,3,1672319033),(109568,7,23235,3,1672319033),(109569,7,23236,3,1672319033),(109570,7,23237,3,1672319033),(109571,7,23238,3,1672319033),(109572,7,23239,3,1672319033),(109573,7,23240,3,1672319033),(109574,7,23241,3,1672319033),(109575,7,23242,3,1672319033),(109576,7,23243,3,1672319033),(109577,7,23244,3,1672319033),(109578,7,23245,3,1672319033),(109579,7,23246,3,1672319033),(109580,7,23247,3,1672319033),(109581,7,23248,3,1672319033),(109582,7,23249,3,1672319033),(109583,7,23250,3,1672319033),(109584,7,23251,3,1672319033),(109585,7,23252,3,1672319033),(109586,7,23253,3,1672319033),(109587,7,23254,3,1672319033),(109588,7,23255,3,1672319033),(109589,7,23256,3,1672319033),(109590,7,23257,3,1672319033),(109591,7,23258,3,1672319033),(109592,7,23259,3,1672319033),(109593,7,23260,3,1672319033),(109594,7,23261,3,1672319033),(109595,7,23262,3,1672319033),(109596,7,23263,3,1672319033),(109597,7,23264,3,1672319033),(109598,7,23265,3,1672319033),(109599,7,23266,3,1672319033),(109600,7,23267,3,1672319033),(109601,7,23268,3,1672319033),(109602,7,23269,3,1672319033),(109603,7,23270,3,1672319033),(109604,7,23271,3,1672319033),(109605,7,23272,3,1672319033),(109606,7,23273,3,1672319033),(109607,7,23274,3,1672319033),(109608,7,23275,3,1672319033),(109609,7,23276,3,1672319033),(109610,7,23277,3,1672319033),(109611,7,23278,3,1672319033),(109612,7,23279,3,1672319033),(109613,7,23280,3,1672319033),(109614,7,23281,3,1672319033),(109615,7,23282,3,1672319033),(109616,7,23283,3,1672319033),(109617,7,23284,3,1672319033),(109618,7,23285,3,1672319033),(109619,7,23286,3,1672319033),(109620,7,23287,3,1672319033),(109621,7,23288,3,1672319033),(109622,7,23289,3,1672319033),(109623,7,23290,3,1672319033),(109624,7,23291,3,1672319033),(109625,7,23292,3,1672319033),(109626,7,23293,3,1672319033),(109627,7,23294,3,1672319033),(109628,7,23295,3,1672319033),(109629,7,23296,3,1672319033),(109630,7,23297,3,1672319033),(109631,7,23298,3,1672319033),(109632,7,23299,3,1672319033),(109633,7,23300,3,1672319033),(109634,7,23303,3,1672319033),(109635,7,23304,3,1672319033),(109636,7,23305,3,1672319033),(109637,7,23306,3,1672319033),(109638,7,23307,3,1672319033),(109639,7,23313,3,1672319033),(109640,7,23314,3,1672319033),(109641,7,23315,3,1672319033),(109642,7,23316,3,1672319033),(109643,7,23317,3,1672319033),(109644,7,23318,3,1672319033),(109645,7,23319,3,1672319033),(109646,7,23320,3,1672319033),(109647,7,23321,3,1672319033),(109648,7,23322,3,1672319033),(109649,7,23323,3,1672319033),(109650,7,23324,3,1672319033),(109651,7,23325,3,1672319033),(109652,7,23326,3,1672319033),(109653,7,23327,3,1672319033),(109654,7,23328,3,1672319033),(109655,7,23329,3,1672319033),(109656,7,23330,3,1672319033),(109657,7,23331,3,1672319033),(109658,7,23332,3,1672319033),(109659,7,23333,3,1672319033),(109660,7,23334,3,1672319033),(109661,7,23335,3,1672319033),(109662,7,23336,3,1672319033),(109663,7,23337,3,1672319033),(109664,7,23338,3,1672319033),(109665,7,23339,3,1672319033),(109666,7,23340,3,1672319033),(109667,7,23341,3,1672319033),(109668,7,23342,3,1672319033),(109669,7,23343,3,1672319033),(109670,7,23344,3,1672319033),(109671,7,23345,3,1672319033),(109672,7,23346,3,1672319033),(109673,7,23347,3,1672319033),(109674,7,23348,3,1672319033),(109675,7,23349,3,1672319033),(109676,7,23350,3,1672319033),(109677,7,23351,3,1672319033),(109678,7,23352,3,1672319033),(109679,7,23353,3,1672319033),(109680,7,23354,3,1672319033),(109681,7,23355,3,1672319033),(109682,7,23356,3,1672319033),(109683,7,23357,3,1672319033),(109684,7,23358,3,1672319033),(109685,7,23359,3,1672319033),(109686,7,23360,3,1672319033),(109687,7,23361,3,1672319033),(109688,7,23362,3,1672319033),(109689,7,23363,3,1672319033),(109690,7,23364,3,1672319033),(109691,7,23365,3,1672319033),(109692,7,23366,3,1672319033),(109693,7,23367,3,1672319033),(109694,7,23368,3,1672319033),(109695,7,23369,3,1672319033),(109696,7,23370,3,1672319033),(109697,7,23371,3,1672319033),(109698,7,23372,3,1672319033),(109699,7,23373,3,1672319033),(109700,7,23374,3,1672319033),(109701,7,23375,3,1672319033),(109702,7,23376,3,1672319033),(109703,7,23377,3,1672319033),(109704,7,23378,3,1672319033),(109705,7,23379,3,1672319033),(109706,7,23380,3,1672319033),(109707,7,23381,3,1672319033),(109708,7,23382,3,1672319033),(109709,7,23383,3,1672319033),(109710,7,23384,3,1672319033),(109711,7,23385,3,1672319033),(109712,7,23386,3,1672319033),(109713,7,23387,3,1672319033),(109714,7,23388,3,1672319033),(109715,7,23389,3,1672319033),(109716,7,23390,3,1672319033),(109717,7,23391,3,1672319033),(109718,7,23392,3,1672319033),(109719,7,23393,3,1672319033),(109720,7,23394,3,1672319033),(109721,7,23395,3,1672319033),(109722,7,23396,3,1672319033),(109723,7,23397,3,1672319033),(109724,7,23398,3,1672319033),(109725,7,23399,3,1672319033),(109726,7,23400,3,1672319033),(109727,7,23401,3,1672319033),(109728,7,23402,3,1672319033),(109729,7,23403,3,1672319033),(109730,7,23404,3,1672319033),(109731,7,23405,3,1672319033),(109732,7,23406,3,1672319033),(109733,7,23407,3,1672319033),(109734,7,23408,3,1672319033),(109735,7,23409,3,1672319033),(109736,7,23410,3,1672319033),(109737,7,23411,3,1672319033),(109738,7,23412,3,1672319033),(109739,7,23413,3,1672319033),(109740,7,23414,3,1672319033),(109741,7,23415,3,1672319033),(109742,7,23416,3,1672319033),(109743,7,23417,3,1672319033),(109744,7,23418,3,1672319033),(109745,7,23419,3,1672319033),(109746,7,23420,3,1672319033),(109747,7,23421,3,1672319033),(109748,7,23422,3,1672319033),(109749,7,23423,3,1672319033),(109750,7,23424,3,1672319033),(109751,7,23425,3,1672319033),(109752,7,23426,3,1672319033),(109753,7,23427,3,1672319033),(109754,7,23428,3,1672319033),(109755,7,23429,3,1672319033),(109756,7,23430,3,1672319033),(109757,7,23431,3,1672319033),(109758,7,23432,3,1672319033),(109759,7,23433,3,1672319033),(109760,7,23434,3,1672319033),(109761,7,23435,3,1672319033),(109762,7,23436,3,1672319033),(109763,7,23437,3,1672319033),(109764,7,23438,3,1672319033),(109765,7,23439,3,1672319033),(109766,7,23440,3,1672319033),(109767,7,23441,3,1672319033),(109768,7,23442,3,1672319033),(109769,7,23443,3,1672319033),(109770,7,23444,3,1672319033),(109771,7,23445,3,1672319033),(109772,7,23446,3,1672319033),(109773,7,23447,3,1672319033),(109774,7,23448,3,1672319033),(109775,7,23449,3,1672319033),(109776,7,23450,3,1672319033),(109777,7,23451,3,1672319033),(109778,7,23452,3,1672319033),(109779,7,23453,3,1672319033),(109780,7,23454,3,1672319033),(109781,7,23455,3,1672319033),(109782,7,23456,3,1672319033),(109783,7,23457,3,1672319033),(109784,7,23458,3,1672319033),(109785,7,23459,3,1672319033),(109786,7,23460,3,1672319033),(109787,7,23461,3,1672319033),(109788,7,23462,3,1672319033),(109789,7,23463,3,1672319033),(109790,7,23464,3,1672319033),(109791,7,23465,3,1672319033),(109792,7,23466,3,1672319033),(109793,7,23467,3,1672319033),(109794,7,23468,3,1672319033),(109795,7,23469,3,1672319033),(109796,7,23470,3,1672319033),(109797,7,23471,3,1672319033),(109798,7,23472,3,1672319033),(109799,7,23473,3,1672319033),(109800,7,23474,3,1672319033),(109801,7,23475,3,1672319033),(109802,7,23476,3,1672319033),(109803,7,23477,3,1672319033),(109804,7,23478,3,1672319033),(109805,7,23479,3,1672319033),(109806,7,23480,3,1672319033),(109807,7,23481,3,1672319033),(109808,7,23482,3,1672319033),(109809,7,23483,3,1672319033),(109810,7,23484,3,1672319033),(109811,7,23485,3,1672319033),(109812,7,23486,3,1672319033),(109813,7,23487,3,1672319033),(109814,7,23488,3,1672319033),(109815,7,23489,3,1672319033),(109816,7,23490,3,1672319033),(109817,7,23491,3,1672319033),(109818,7,23492,3,1672319033),(109819,7,23493,3,1672319033),(109820,7,23494,3,1672319033),(109821,7,23495,3,1672319033),(109822,7,23496,3,1672319033),(109823,7,23497,3,1672319033),(109824,7,23498,3,1672319033),(109825,7,23499,3,1672319033),(109826,7,23500,3,1672319033),(109827,7,23501,3,1672319033),(109828,7,23502,3,1672319033),(109829,7,23503,3,1672319033),(109830,7,23504,3,1672319033),(109831,7,23505,3,1672319033),(109832,7,23506,3,1672319033),(109833,7,23507,3,1672319033),(109834,7,23508,3,1672319033),(109835,7,23509,3,1672319033),(109836,7,23510,3,1672319033),(109837,7,23511,3,1672319033),(109838,7,23512,3,1672319033),(109839,7,23513,3,1672319033),(109840,7,23514,3,1672319033),(109841,7,23515,3,1672319033),(109842,7,23516,3,1672319033),(109843,7,23517,3,1672319033),(109844,7,23518,3,1672319033),(109845,7,23519,3,1672319033),(109846,7,23520,3,1672319033),(109847,7,23521,3,1672319033),(109848,7,23522,3,1672319033),(109849,7,23523,3,1672319033),(109850,7,23620,3,1672319033),(109851,7,23621,3,1672319033),(109852,7,23622,3,1672319033),(109853,7,23632,3,1672319033),(109854,7,23633,3,1672319033),(109855,7,23634,3,1672319033),(109856,7,23695,3,1672319033),(109857,7,23696,3,1672319033),(109858,7,23697,3,1672319033),(109859,7,23707,3,1672319033),(109860,7,23708,3,1672319033),(109861,7,23709,3,1672319033),(109862,7,23710,3,1672319033),(109863,7,23711,3,1672319033),(109864,7,23712,3,1672319033),(109865,7,23713,3,1672319033),(109866,7,23714,3,1672319033),(109867,7,23715,3,1672319033),(109868,7,23716,3,1672319033),(109869,7,23717,3,1672319033),(109870,7,23718,3,1672319033),(109871,7,23719,3,1672319033),(109872,7,23720,3,1672319033),(109873,7,23721,3,1672319033),(109874,7,23722,3,1672319033),(109875,7,23723,3,1672319033),(109876,7,23724,3,1672319033),(109877,7,23725,3,1672319033),(109878,7,23726,3,1672319033),(109879,7,23727,3,1672319033),(109880,7,23728,3,1672319033),(109881,7,23729,3,1672319033),(109882,7,23730,3,1672319033),(109883,7,23731,3,1672319033),(109884,7,23732,3,1672319033),(109885,7,23733,3,1672319033),(109886,7,23734,3,1672319033),(109887,7,23735,3,1672319033),(109888,7,23736,3,1672319033),(109889,7,23737,3,1672319033),(109890,7,23738,3,1672319033),(109891,7,23739,3,1672319033),(109892,7,23740,3,1672319033),(109893,7,23741,3,1672319033),(109894,7,23742,3,1672319033),(109895,7,23743,3,1672319033),(109896,7,23744,3,1672319033),(109897,7,23745,3,1672319033),(109898,7,23746,3,1672319033),(109899,7,23747,3,1672319033),(109900,7,23748,3,1672319033),(109901,7,23749,3,1672319033),(109902,7,23750,3,1672319033),(109903,7,23751,3,1672319033),(109904,7,23752,3,1672319033),(109905,7,23753,3,1672319033),(109906,7,23754,3,1672319033),(109907,7,23755,3,1672319033),(109908,7,23756,3,1672319033),(109909,7,23757,3,1672319033),(109910,7,23758,3,1672319033),(109911,7,23759,3,1672319033),(109912,7,23760,3,1672319033),(109913,7,23761,3,1672319033),(109914,7,23762,3,1672319033),(109915,7,23763,3,1672319033),(109916,7,23764,3,1672319033),(109917,7,23765,3,1672319033),(109918,7,23766,3,1672319033),(109919,7,23767,3,1672319033),(109920,7,23768,3,1672319033),(109921,7,23769,3,1672319033),(109922,7,23770,3,1672319033),(109923,7,23771,3,1672319033),(109924,7,23772,3,1672319033),(109925,7,23773,3,1672319033),(109926,7,23774,3,1672319033),(109927,7,23775,3,1672319033),(109928,7,23776,3,1672319033),(109929,7,23777,3,1672319033),(109930,7,23778,3,1672319033),(109931,7,23779,3,1672319033),(109932,7,23780,3,1672319033),(109933,7,23781,3,1672319033),(109934,7,23782,3,1672319033),(109935,7,23783,3,1672319033),(109936,7,23784,3,1672319033),(109937,7,23785,3,1672319033),(109938,7,23786,3,1672319033),(109939,7,23787,3,1672319033),(109940,7,23788,3,1672319033),(109941,7,23789,3,1672319033),(109942,7,23790,3,1672319033),(109943,7,23791,3,1672319033),(109944,7,23792,3,1672319033),(109945,7,23793,3,1672319033),(109946,7,23794,3,1672319033),(109947,7,23795,3,1672319033),(109948,7,23796,3,1672319033),(109949,7,23797,3,1672319033),(109950,7,23798,3,1672319033),(109951,7,23799,3,1672319033),(109952,7,23800,3,1672319033),(109953,7,23801,3,1672319033),(109954,7,23802,3,1672319033),(109955,7,23803,3,1672319033),(109956,7,23804,3,1672319033),(109957,7,23805,3,1672319033),(109958,7,23806,3,1672319033),(109959,7,23807,3,1672319033),(109960,7,23808,3,1672319033),(109961,7,23809,3,1672319033),(109962,7,23828,3,1672319033),(109963,7,23829,3,1672319033),(109964,7,23830,3,1672319033),(109965,7,23840,3,1672319033),(109966,7,23841,3,1672319033),(109967,7,23842,3,1672319033),(109968,7,23843,3,1672319033),(109969,7,23844,3,1672319033),(109970,7,23845,3,1672319033),(109971,7,23846,3,1672319033),(109972,7,23847,3,1672319033),(109973,7,23848,3,1672319033),(109974,7,23849,3,1672319033),(109975,7,23850,3,1672319033),(109976,7,23851,3,1672319033),(109977,7,23852,3,1672319033),(109978,7,23853,3,1672319033),(109979,7,23854,3,1672319033),(109980,7,23855,3,1672319033),(109981,7,23856,3,1672319033),(109982,7,23857,3,1672319033),(109983,7,23858,3,1672319033),(109984,7,23859,3,1672319033),(109985,7,23860,3,1672319033),(109986,7,23861,3,1672319033),(109987,7,23862,3,1672319033),(109988,7,23863,3,1672319033),(109989,7,23864,3,1672319033),(109990,7,23865,3,1672319033),(109991,7,23866,3,1672319033),(109992,7,23870,3,1672319033),(109993,7,23871,3,1672319033),(109994,7,23873,3,1672319033),(109995,7,23874,3,1672319033),(109996,7,23875,3,1672319033),(109997,7,23882,3,1672319033),(109998,7,23883,3,1672319033),(109999,7,23884,3,1672319033),(110000,7,23885,3,1672319033),(110001,7,23886,3,1672319033),(110002,7,23887,3,1672319033),(110003,7,23888,3,1672319033),(110004,7,23889,3,1672319033),(110005,7,23890,3,1672319033),(110006,7,23891,3,1672319033),(110007,7,23892,3,1672319033),(110008,7,23893,3,1672319033),(110009,7,23894,3,1672319033),(110010,7,23895,3,1672319033),(110011,7,23896,3,1672319033),(110012,7,23897,3,1672319033),(110013,7,23898,3,1672319033),(110014,7,23899,3,1672319033),(110015,7,23900,3,1672319033),(110016,7,23901,3,1672319033),(110017,7,23902,3,1672319033),(110018,7,23903,3,1672319033),(110019,7,23904,3,1672319033),(110020,7,23905,3,1672319033),(110021,7,23906,3,1672319033),(110022,7,23907,3,1672319033),(110023,7,23908,3,1672319033),(110024,7,23909,3,1672319033),(110025,7,23910,3,1672319033),(110026,7,23911,3,1672319033),(110027,7,23912,3,1672319033),(110028,7,23913,3,1672319033),(110029,7,23914,3,1672319033),(110030,7,23915,3,1672319033),(110031,7,23916,3,1672319033),(110032,7,23917,3,1672319033),(110033,7,23918,3,1672319033),(110034,7,23919,3,1672319033),(110035,7,23920,3,1672319033),(110036,7,23921,3,1672319033),(110037,7,23922,3,1672319033),(110038,7,23923,3,1672319033),(110039,7,23924,3,1672319033),(110040,7,23925,3,1672319033),(110041,7,23926,3,1672319033),(110042,7,23927,3,1672319033),(110043,7,23928,3,1672319033),(110044,7,23929,3,1672319033),(110045,7,23930,3,1672319033),(110046,7,23931,3,1672319033),(110047,7,23932,3,1672319033),(110048,7,23933,3,1672319033),(110049,7,23934,3,1672319033),(110050,7,23935,3,1672319033),(110051,7,23936,3,1672319033),(110052,7,23937,3,1672319033),(110053,7,23938,3,1672319033),(110054,7,23939,3,1672319033),(110055,7,23940,3,1672319033),(110056,7,23941,3,1672319033),(110057,7,23942,3,1672319033),(110058,7,23943,3,1672319033),(110059,7,23944,3,1672319033),(110060,7,23945,3,1672319033),(110061,7,23946,3,1672319033),(110062,7,23947,3,1672319033),(110063,7,23948,3,1672319033),(110064,7,23949,3,1672319033),(110065,7,23950,3,1672319033),(110066,7,23951,3,1672319033),(110067,7,23952,3,1672319033),(110068,7,23953,3,1672319033),(110069,7,23954,3,1672319033),(110070,7,23955,3,1672319033),(110071,7,23956,3,1672319033),(110072,7,23957,3,1672319033),(110073,7,23958,3,1672319033),(110074,7,23959,3,1672319033),(110075,7,23960,3,1672319033),(110076,7,23961,3,1672319033),(110077,7,23962,3,1672319033),(110078,7,23963,3,1672319033),(110079,7,23964,3,1672319033),(110080,7,23965,3,1672319033),(110081,7,23966,3,1672319033),(110082,7,23967,3,1672319033),(110083,7,23968,3,1672319033),(110084,7,23969,3,1672319033),(110085,7,23971,3,1672319033),(110086,7,23972,3,1672319033),(110087,7,23973,3,1672319033),(110088,7,23974,3,1672319033),(110089,7,23975,3,1672319033),(110090,7,23976,3,1672319033),(110091,7,23977,3,1672319033),(110092,7,23978,3,1672319033),(110093,7,23979,3,1672319033),(110094,7,23980,3,1672319033),(110095,7,23981,3,1672319033),(110096,7,23982,3,1672319033),(110097,7,23983,3,1672319033),(110098,7,23984,3,1672319033),(110099,7,23985,3,1672319033),(110100,7,23986,3,1672319033),(110101,7,23987,3,1672319033),(110102,7,23988,3,1672319033),(110103,7,23989,3,1672319033),(110104,7,23990,3,1672319033),(110105,7,23991,3,1672319033),(110106,7,23993,3,1672319033),(110107,7,23994,3,1672319033),(110108,7,23995,3,1672319033),(110109,7,23996,3,1672319033),(110110,7,23997,3,1672319033),(110111,7,23998,3,1672319033),(110112,7,23999,3,1672319033),(110113,7,24000,3,1672319033),(110114,7,24001,3,1672319033),(110115,7,24002,3,1672319033),(110116,7,24003,3,1672319033),(110117,7,24004,3,1672319033),(110118,7,24005,3,1672319033),(110119,7,24006,3,1672319033),(110120,7,24007,3,1672319033),(110121,7,24008,3,1672319033),(110122,7,24009,3,1672319033),(110123,7,24010,3,1672319033),(110124,7,24011,3,1672319033),(110125,7,24012,3,1672319033),(110126,7,24014,3,1672319033),(110127,7,24015,3,1672319033),(110128,7,24016,3,1672319033),(110129,7,24017,3,1672319033),(110130,7,24018,3,1672319033),(110131,7,24019,3,1672319033),(110132,7,24020,3,1672319033),(110133,7,24021,3,1672319033),(110134,7,24023,3,1672319033),(110135,7,24024,3,1672319033),(110136,7,24025,3,1672319033),(110137,7,24026,3,1672319033),(110138,7,24027,3,1672319033),(110139,7,24028,3,1672319033),(110140,7,24029,3,1672319033),(110141,7,24030,3,1672319033),(110142,7,24031,3,1672319033),(110143,7,24032,3,1672319033),(110144,7,24033,3,1672319033),(110145,7,24034,3,1672319033),(110146,7,24035,3,1672319033),(110147,7,24036,3,1672319033),(110148,7,24037,3,1672319033),(110149,7,24038,3,1672319033),(110150,7,24039,3,1672319033),(110151,7,24040,3,1672319033),(110152,7,24041,3,1672319033),(110153,7,24042,3,1672319033),(110154,7,24043,3,1672319033),(110155,7,24044,3,1672319033),(110156,7,24045,3,1672319033),(110157,7,24046,3,1672319033),(110158,7,24047,3,1672319033),(110159,7,24048,3,1672319033),(110160,7,24049,3,1672319033),(110161,7,24050,3,1672319033),(110162,7,24051,3,1672319033),(110163,7,24052,3,1672319033),(110164,7,24053,3,1672319033),(110165,7,24054,3,1672319033),(110166,7,24055,3,1672319033),(110167,7,24056,3,1672319033),(110168,7,24057,3,1672319033),(110169,7,24059,3,1672319033),(110170,7,24060,3,1672319033),(110171,7,24061,3,1672319033),(110172,7,24062,3,1672319033),(110173,7,24063,3,1672319033),(110174,7,24064,3,1672319033),(110175,7,24065,3,1672319033),(110176,7,24066,3,1672319033),(110177,7,24067,3,1672319033),(110178,7,24068,3,1672319033),(110179,7,24069,3,1672319033),(110180,7,24070,3,1672319033),(110181,7,24071,3,1672319033),(110182,7,24072,3,1672319033),(110183,7,24073,3,1672319033),(110184,7,24074,3,1672319033),(110185,7,24075,3,1672319033),(110186,7,24076,3,1672319033),(110187,7,24077,3,1672319033),(110188,7,24078,3,1672319033),(110189,7,24079,3,1672319033),(110190,7,24080,3,1672319033),(110191,7,24081,3,1672319033),(110192,7,24082,3,1672319033),(110193,7,24083,3,1672319033),(110194,7,24084,3,1672319033),(110195,7,24085,3,1672319033),(110196,7,24086,3,1672319033),(110197,7,24087,3,1672319033),(110198,7,24088,3,1672319033),(110199,7,24089,3,1672319033),(110200,7,24090,3,1672319033),(110201,7,24091,3,1672319033),(110202,7,24092,3,1672319033),(110203,7,24093,3,1672319033),(110204,7,24094,3,1672319033),(110205,7,24095,3,1672319033),(110206,7,24096,3,1672319033),(110207,7,24097,3,1672319033),(110208,7,24098,3,1672319033),(110209,7,24099,3,1672319033),(110210,7,24100,3,1672319033),(110211,7,24102,3,1672319033),(110212,7,24103,3,1672319033),(110213,7,24104,3,1672319033),(110214,7,24105,3,1672319033),(110215,7,24106,3,1672319033),(110216,7,24107,3,1672319033),(110217,7,24108,3,1672319033),(110218,7,24109,3,1672319033),(110219,7,24110,3,1672319033),(110220,7,24111,3,1672319033),(110221,7,24112,3,1672319033),(110222,7,24113,3,1672319033),(110223,7,24114,3,1672319033),(110224,7,24115,3,1672319033),(110225,7,24116,3,1672319033),(110226,7,24117,3,1672319033),(110227,7,24118,3,1672319033),(110228,7,24119,3,1672319033),(110229,7,24120,3,1672319033),(110230,7,24121,3,1672319033),(110231,7,24122,3,1672319033),(110232,7,24123,3,1672319033),(110233,7,24125,3,1672319033),(110234,7,24126,3,1672319033),(110235,7,24127,3,1672319033),(110236,7,24128,3,1672319033),(110237,7,24129,3,1672319033),(110238,7,24130,3,1672319033),(110239,7,24131,3,1672319033),(110240,7,24132,3,1672319033),(110241,7,24133,3,1672319033),(110242,7,24134,3,1672319033),(110243,7,24135,3,1672319033),(110244,7,24136,3,1672319033),(110245,7,24137,3,1672319033),(110246,7,24138,3,1672319033),(110247,7,24139,3,1672319033),(110248,7,24140,3,1672319033),(110249,7,24141,3,1672319033),(110250,7,24143,3,1672319033),(110251,7,24144,3,1672319033),(110252,7,24145,3,1672319033),(110253,7,24146,3,1672319033),(110254,7,24147,3,1672319033),(110255,7,24148,3,1672319033),(110256,7,24149,3,1672319033),(110257,7,24150,3,1672319033),(110258,7,24151,3,1672319033),(110259,7,24152,3,1672319033),(110260,7,24153,3,1672319033),(110261,7,24154,3,1672319033),(110262,7,24155,3,1672319033),(110263,7,24156,3,1672319033),(110264,7,24157,3,1672319033),(110265,7,24158,3,1672319033),(110266,7,24159,3,1672319033),(110267,7,24160,3,1672319033),(110268,7,24161,3,1672319033),(110269,7,24162,3,1672319033),(110270,7,24164,3,1672319033),(110271,7,24165,3,1672319033),(110272,7,24166,3,1672319033),(110273,7,24167,3,1672319033),(110274,7,24168,3,1672319033),(110275,7,24169,3,1672319033),(110276,7,24170,3,1672319033),(110277,7,24171,3,1672319033),(110278,7,24172,3,1672319033),(110279,7,24173,3,1672319033),(110280,7,24174,3,1672319033),(110281,7,24175,3,1672319033),(110282,7,24176,3,1672319033),(110283,7,24177,3,1672319033),(110284,7,24178,3,1672319033),(110285,7,24179,3,1672319033),(110286,7,24180,3,1672319033),(110287,7,24181,3,1672319033),(110288,7,24182,3,1672319033),(110289,7,24183,3,1672319033),(110290,7,24185,3,1672319033),(110291,7,24186,3,1672319033),(110292,7,24187,3,1672319033),(110293,7,24188,3,1672319033),(110294,7,24189,3,1672319033),(110295,7,24190,3,1672319033),(110296,7,24191,3,1672319033),(110297,7,24192,3,1672319033),(110298,7,24193,3,1672319033),(110299,7,24194,3,1672319033),(110300,7,24195,3,1672319033),(110301,7,24196,3,1672319033),(110302,7,24197,3,1672319033),(110303,7,24198,3,1672319033),(110304,7,24199,3,1672319033),(110305,7,24200,3,1672319033),(110306,7,24201,3,1672319033),(110307,7,24202,3,1672319033),(110308,7,24203,3,1672319033),(110309,7,24204,3,1672319033),(110310,7,24206,3,1672319033),(110311,7,24207,3,1672319033),(110312,7,24208,3,1672319033),(110313,7,24209,3,1672319033),(110314,7,24210,3,1672319033),(110315,7,24211,3,1672319033),(110316,7,24212,3,1672319033),(110317,7,24213,3,1672319033),(110318,7,24214,3,1672319033),(110319,7,24215,3,1672319033),(110320,7,24216,3,1672319033),(110321,7,24217,3,1672319033),(110322,7,24218,3,1672319033),(110323,7,24219,3,1672319033),(110324,7,24220,3,1672319033),(110325,7,24221,3,1672319033),(110326,7,24222,3,1672319033),(110327,7,24223,3,1672319033),(110328,7,24224,3,1672319033),(110329,7,24225,3,1672319033),(110330,7,24226,3,1672319033),(110331,7,24228,3,1672319033),(110332,7,24229,3,1672319033),(110333,7,24230,3,1672319033),(110334,7,24231,3,1672319033),(110335,7,24232,3,1672319033),(110336,7,24233,3,1672319033),(110337,7,24234,3,1672319033),(110338,7,24235,3,1672319033),(110339,7,24236,3,1672319033),(110340,7,24237,3,1672319033),(110341,7,24238,3,1672319033),(110342,7,24239,3,1672319033),(110343,7,24240,3,1672319033),(110344,7,24241,3,1672319033),(110345,7,24242,3,1672319033),(110346,7,24243,3,1672319033),(110347,7,24244,3,1672319033),(110348,7,24245,3,1672319033),(110349,7,24246,3,1672319033),(110350,7,24247,3,1672319033),(110351,7,24248,3,1672319033),(110352,7,24250,3,1672319033),(110353,7,24251,3,1672319033),(110354,7,24252,3,1672319033),(110355,7,24253,3,1672319033),(110356,7,24254,3,1672319033),(110357,7,24255,3,1672319033),(110358,7,24256,3,1672319033),(110359,7,24257,3,1672319033),(110360,7,24258,3,1672319033),(110361,7,24259,3,1672319033),(110362,7,24260,3,1672319033),(110363,7,24261,3,1672319033),(110364,7,24262,3,1672319033),(110365,7,24263,3,1672319033),(110366,7,24264,3,1672319033),(110367,7,24265,3,1672319033),(110368,7,24266,3,1672319033),(110369,7,24267,3,1672319033),(110370,7,24268,3,1672319033),(110371,7,24269,3,1672319033),(110372,7,24271,3,1672319033),(110373,7,24272,3,1672319033),(110374,7,24273,3,1672319033),(110375,7,24274,3,1672319033),(110376,7,24275,3,1672319033),(110377,7,24276,3,1672319033),(110378,7,24277,3,1672319033),(110379,7,24278,3,1672319033),(110380,7,24279,3,1672319033),(110381,7,24280,3,1672319033),(110382,7,24281,3,1672319033),(110383,7,24282,3,1672319033),(110384,7,24283,3,1672319033),(110385,7,24284,3,1672319033),(110386,7,24285,3,1672319033),(110387,7,24286,3,1672319033),(110388,7,24287,3,1672319033),(110389,7,24288,3,1672319033),(110390,7,24289,3,1672319033),(110391,7,24290,3,1672319033),(110392,7,24307,3,1672319033),(110393,7,24308,3,1672319033),(110394,7,24309,3,1672319033),(110395,7,24316,3,1672319033),(110396,7,24317,3,1672319033),(110397,7,24318,3,1672319033),(110398,7,24319,3,1672319033),(110399,7,24320,3,1672319033),(110400,7,24321,3,1672319033),(110401,7,24322,3,1672319033),(110402,7,24323,3,1672319033),(110403,7,24332,3,1672319033),(110404,7,24333,3,1672319033),(110405,7,24334,3,1672319033),(110406,7,24338,3,1672319033),(110407,7,24339,3,1672319033),(110408,7,24340,3,1672319033),(110409,7,24341,3,1672319033),(110410,7,24342,3,1672319033),(110411,7,24343,3,1672319033),(110412,7,24344,3,1672319033),(110413,7,24345,3,1672319033),(110414,7,24346,3,1672319033),(110415,7,24347,3,1672319033),(110416,7,24348,3,1672319033),(110417,7,24349,3,1672319033),(110418,7,24353,3,1672319033),(110419,7,24354,3,1672319033),(110420,7,24355,3,1672319033),(110421,7,24359,3,1672319033),(110422,7,24360,3,1672319033),(110423,7,24361,3,1672319033),(110424,7,24365,3,1672319033),(110425,7,24366,3,1672319033),(110426,7,24367,3,1672319033),(110427,7,24371,3,1672319033),(110428,7,24372,3,1672319033),(110429,7,24373,3,1672319033),(110430,7,24374,3,1672319033),(110431,7,24375,3,1672319033),(110432,7,24376,3,1672319033),(110433,7,24377,3,1672319033),(110434,7,24378,3,1672319033),(110435,7,24379,3,1672319033),(110436,7,24380,3,1672319033),(110437,7,24381,3,1672319033),(110438,7,24382,3,1672319033),(110439,7,24383,3,1672319033),(110440,7,24384,3,1672319033),(110441,7,24385,3,1672319033),(110442,7,24386,3,1672319033),(110443,7,24387,3,1672319033),(110444,7,24388,3,1672319033),(110445,7,24389,3,1672319033),(110446,7,24390,3,1672319033),(110447,7,24391,3,1672319033),(110448,7,24392,3,1672319033),(110449,7,24393,3,1672319033),(110450,7,24394,3,1672319033),(110451,7,24395,3,1672319033),(110452,7,24396,3,1672319033),(110453,7,24397,3,1672319033),(110454,7,24398,3,1672319033),(110455,7,24399,3,1672319033),(110456,7,24400,3,1672319033),(110457,7,24401,3,1672319033),(110458,7,24402,3,1672319033),(110459,7,24403,3,1672319033),(110460,7,24404,3,1672319033),(110461,7,24405,3,1672319033),(110462,7,24406,3,1672319033),(110463,7,24407,3,1672319033),(110464,7,24408,3,1672319033),(110465,7,24409,3,1672319033),(110466,7,24410,3,1672319033),(110467,7,24411,3,1672319033),(110468,7,24412,3,1672319033),(110469,7,24413,3,1672319033),(110470,7,24414,3,1672319033),(110471,7,24415,3,1672319033),(110472,7,24416,3,1672319033),(110473,7,24417,3,1672319033),(110474,7,24418,3,1672319033),(110475,7,24419,3,1672319033),(110476,7,24420,3,1672319033),(110477,7,24421,3,1672319033),(110478,7,24422,3,1672319033),(110479,7,24423,3,1672319033),(110480,7,24424,3,1672319033),(110481,7,24425,3,1672319033),(110482,7,24426,3,1672319033),(110483,7,24427,3,1672319033),(110484,7,24428,3,1672319033),(110485,7,24429,3,1672319033),(110486,7,24430,3,1672319033),(110487,7,24431,3,1672319033),(110488,7,24432,3,1672319033),(110489,7,24433,3,1672319033),(110490,7,24434,3,1672319033),(110491,7,24435,3,1672319033),(110492,7,24436,3,1672319033),(110493,7,24437,3,1672319033),(110494,7,24438,3,1672319033),(110495,7,24439,3,1672319033),(110496,7,24440,3,1672319033),(110497,7,24441,3,1672319033),(110498,7,24442,3,1672319033),(110499,7,24443,3,1672319033),(110500,7,24444,3,1672319033),(110501,7,24445,3,1672319033),(110502,7,24446,3,1672319033),(110503,7,24447,3,1672319033),(110504,7,24448,3,1672319033),(110505,7,24449,3,1672319033),(110506,7,24451,3,1672319033),(110507,7,24452,3,1672319033),(110508,7,24453,3,1672319033),(110509,7,24454,3,1672319033),(110510,7,24455,3,1672319033),(110511,7,24456,3,1672319033),(110512,7,24457,3,1672319033),(110513,7,24458,3,1672319033),(110514,7,24459,3,1672319033),(110515,7,24460,3,1672319033),(110516,7,24461,3,1672319033),(110517,7,24462,3,1672319033),(110518,7,24463,3,1672319033),(110519,7,24464,3,1672319033),(110520,7,24465,3,1672319033),(110521,7,24466,3,1672319033),(110522,7,24467,3,1672319033),(110523,7,24468,3,1672319033),(110524,7,24469,3,1672319033),(110525,7,24470,3,1672319033),(110526,7,24471,3,1672319033),(110527,7,24472,3,1672319033),(110528,7,24473,3,1672319033),(110529,7,24474,3,1672319033),(110530,7,24475,3,1672319033),(110531,7,24476,3,1672319033),(110532,7,24477,3,1672319033),(110533,7,24478,3,1672319033),(110534,7,24479,3,1672319033),(110535,7,24480,3,1672319033),(110536,7,24481,3,1672319033),(110537,7,24482,3,1672319033),(110538,7,24483,3,1672319033),(110539,7,24484,3,1672319033),(110540,7,24485,3,1672319033),(110541,7,24486,3,1672319033),(110542,7,24487,3,1672319033),(110543,7,24488,3,1672319033),(110544,7,24489,3,1672319033),(110545,7,24490,3,1672319033),(110546,7,24491,3,1672319033),(110547,7,24492,3,1672319033),(110548,7,24493,3,1672319033),(110549,7,24494,3,1672319033),(110550,7,24495,3,1672319033),(110551,7,24496,3,1672319033),(110552,7,24497,3,1672319033),(110553,7,24498,3,1672319033),(110554,7,24499,3,1672319033),(110555,7,24500,3,1672319033),(110556,7,24501,3,1672319033),(110557,7,24502,3,1672319033),(110558,7,24503,3,1672319033),(110559,7,24504,3,1672319033),(110560,7,24505,3,1672319033),(110561,7,24506,3,1672319033),(110562,7,24507,3,1672319033),(110563,7,24508,3,1672319033),(110564,7,24509,3,1672319033),(110565,7,24510,3,1672319033),(110566,7,24511,3,1672319033),(110567,7,24512,3,1672319033),(110568,7,24513,3,1672319033),(110569,7,24514,3,1672319033),(110570,7,24515,3,1672319033),(110571,7,24516,3,1672319033),(110572,7,24517,3,1672319033),(110573,7,24518,3,1672319033),(110574,7,24519,3,1672319033),(110575,7,24520,3,1672319033),(110576,7,24521,3,1672319033),(110577,7,24522,3,1672319033),(110578,7,24523,3,1672319033),(110579,7,24524,3,1672319033),(110580,7,24525,3,1672319033),(110581,7,24526,3,1672319033),(110582,7,24527,3,1672319033),(110583,7,24528,3,1672319033),(110584,7,24529,3,1672319033),(110585,7,24530,3,1672319033),(110586,7,24531,3,1672319033),(110587,7,24532,3,1672319033),(110588,7,24533,3,1672319033),(110589,7,24534,3,1672319033),(110590,7,24535,3,1672319033),(110591,7,24536,3,1672319033),(110592,7,24537,3,1672319033),(110593,7,24538,3,1672319033),(110594,7,24539,3,1672319033),(110595,7,24540,3,1672319033),(110596,7,24541,3,1672319033),(110597,7,24542,3,1672319033),(110598,7,24543,3,1672319033),(110599,7,24544,3,1672319033),(110600,7,24545,3,1672319033),(110601,7,24547,3,1672319033),(110602,7,24548,3,1672319033),(110603,7,24549,3,1672319033),(110604,7,24550,3,1672319033),(110605,7,24551,3,1672319033),(110606,7,24552,3,1672319033),(110607,7,24553,3,1672319033),(110608,7,24554,3,1672319033),(110609,7,24555,3,1672319033),(110610,7,24556,3,1672319033),(110611,7,24557,3,1672319033),(110612,7,24558,3,1672319033),(110613,7,24559,3,1672319033),(110614,7,24560,3,1672319033),(110615,7,24561,3,1672319033),(110616,7,24562,3,1672319033),(110617,7,24563,3,1672319033),(110618,7,24564,3,1672319033),(110619,7,24565,3,1672319033),(110620,7,24566,3,1672319033),(110621,7,24567,3,1672319033),(110622,7,24568,3,1672319033),(110623,7,24569,3,1672319033),(110624,7,24570,3,1672319033),(110625,7,24571,3,1672319033),(110626,7,24572,3,1672319033),(110627,7,24573,3,1672319033),(110628,7,24574,3,1672319033),(110629,7,24575,3,1672319033),(110630,7,24576,3,1672319033),(110631,7,24577,3,1672319033),(110632,7,24578,3,1672319033),(110633,7,24579,3,1672319033),(110634,7,24580,3,1672319033),(110635,7,24581,3,1672319033),(110636,7,24582,3,1672319033),(110637,7,24583,3,1672319033),(110638,7,24584,3,1672319033),(110639,7,24585,3,1672319033),(110640,7,24586,3,1672319033),(110641,7,24587,3,1672319033),(110642,7,24588,3,1672319033),(110643,7,24589,3,1672319033),(110644,7,24590,3,1672319033),(110645,7,24591,3,1672319033),(110646,7,24592,3,1672319033),(110647,7,24593,3,1672319033),(110648,7,24594,3,1672319033),(110649,7,24595,3,1672319033),(110650,7,24596,3,1672319033),(110651,7,24597,3,1672319033),(110652,7,24598,3,1672319033),(110653,7,24599,3,1672319033),(110654,7,24600,3,1672319033),(110655,7,24601,3,1672319033),(110656,7,24602,3,1672319033),(110657,7,24603,3,1672319033),(110658,7,24604,3,1672319033),(110659,7,24605,3,1672319033),(110660,7,24606,3,1672319033),(110661,7,24607,3,1672319033),(110662,7,24608,3,1672319033),(110663,7,24609,3,1672319033),(110664,7,24610,3,1672319033),(110665,7,24611,3,1672319033),(110666,7,24612,3,1672319033),(110667,7,24613,3,1672319033),(110668,7,24614,3,1672319033),(110669,7,24616,3,1672319033),(110670,7,24617,3,1672319033),(110671,7,24618,3,1672319033),(110672,7,24619,3,1672319033),(110673,7,24620,3,1672319033),(110674,7,24621,3,1672319033),(110675,7,24622,3,1672319033),(110676,7,24623,3,1672319033),(110677,7,24624,3,1672319033),(110678,7,24625,3,1672319033),(110679,7,24626,3,1672319033),(110680,7,24627,3,1672319033),(110681,7,24628,3,1672319033),(110682,7,24629,3,1672319033),(110683,7,24630,3,1672319033),(110684,7,24631,3,1672319033),(110685,7,24632,3,1672319033),(110686,7,24633,3,1672319033),(110687,7,24634,3,1672319033),(110688,7,24635,3,1672319033),(110689,7,24636,3,1672319033),(110690,7,24637,3,1672319033),(110691,7,24638,3,1672319033),(110692,7,24639,3,1672319033),(110693,7,24640,3,1672319033),(110694,7,24641,3,1672319033),(110695,7,24642,3,1672319033),(110696,7,24643,3,1672319033),(110697,7,24644,3,1672319033),(110698,7,24645,3,1672319033),(110699,7,24646,3,1672319033),(110700,7,24647,3,1672319033),(110701,7,24648,3,1672319033),(110702,7,24649,3,1672319033),(110703,7,24650,3,1672319033),(110704,7,24651,3,1672319033),(110705,7,24652,3,1672319033),(110706,7,24653,3,1672319033),(110707,7,24654,3,1672319033),(110708,7,24655,3,1672319033),(110709,7,24656,3,1672319033),(110710,7,24657,3,1672319033),(110711,7,24658,3,1672319033),(110712,7,24659,3,1672319033),(110713,7,24660,3,1672319033),(110714,7,24661,3,1672319033),(110715,7,24662,3,1672319033),(110716,7,24663,3,1672319033),(110717,7,24664,3,1672319033),(110718,7,24665,3,1672319033),(110719,7,24666,3,1672319033),(110720,7,24667,3,1672319033),(110721,7,24668,3,1672319033),(110722,7,24669,3,1672319033),(110723,7,24670,3,1672319033),(110724,7,24671,3,1672319033),(110725,7,24672,3,1672319033),(110726,7,24673,3,1672319033),(110727,7,24674,3,1672319033),(110728,7,24675,3,1672319033),(110729,7,24676,3,1672319033),(110730,7,24677,3,1672319033),(110731,7,24678,3,1672319033),(110732,7,24679,3,1672319033),(110733,7,24680,3,1672319033),(110734,7,24681,3,1672319033),(110735,7,24682,3,1672319033),(110736,7,24683,3,1672319033),(110737,7,24685,3,1672319033),(110738,7,24686,3,1672319033),(110739,7,24687,3,1672319033),(110740,7,24688,3,1672319033),(110741,7,24689,3,1672319033),(110742,7,24690,3,1672319033),(110743,7,24691,3,1672319033),(110744,7,24692,3,1672319033),(110745,7,24693,3,1672319033),(110746,7,24694,3,1672319033),(110747,7,24695,3,1672319033),(110748,7,24696,3,1672319033),(110749,7,24697,3,1672319033),(110750,7,24698,3,1672319033),(110751,7,24699,3,1672319033),(110752,7,24700,3,1672319033),(110753,7,24701,3,1672319033),(110754,7,24702,3,1672319033),(110755,7,24703,3,1672319033),(110756,7,24704,3,1672319033),(110757,7,24705,3,1672319033),(110758,7,24706,3,1672319033),(110759,7,24707,3,1672319033),(110760,7,24708,3,1672319033),(110761,7,24709,3,1672319033),(110762,7,24710,3,1672319033),(110763,7,24711,3,1672319033),(110764,7,24712,3,1672319033),(110765,7,24713,3,1672319033),(110766,7,24714,3,1672319033),(110767,7,24715,3,1672319033),(110768,7,24716,3,1672319033),(110769,7,24717,3,1672319033),(110770,7,24718,3,1672319033),(110771,7,24719,3,1672319033),(110772,7,24720,3,1672319033),(110773,7,24721,3,1672319033),(110774,7,24722,3,1672319033),(110775,7,24723,3,1672319033),(110776,7,24724,3,1672319033),(110777,7,24725,3,1672319033),(110778,7,24726,3,1672319033),(110779,7,24727,3,1672319033),(110780,7,24728,3,1672319033),(110781,7,24729,3,1672319033),(110782,7,24730,3,1672319033),(110783,7,24731,3,1672319033),(110784,7,24732,3,1672319033),(110785,7,24733,3,1672319033),(110786,7,24734,3,1672319033),(110787,7,24735,3,1672319033),(110788,7,24736,3,1672319033),(110789,7,24737,3,1672319033),(110790,7,24738,3,1672319033),(110791,7,24739,3,1672319033),(110792,7,24740,3,1672319033),(110793,7,24741,3,1672319033),(110794,7,24742,3,1672319033),(110795,7,24743,3,1672319033),(110796,7,24744,3,1672319033),(110797,7,24745,3,1672319033),(110798,7,24746,3,1672319033),(110799,7,24747,3,1672319033),(110800,7,24748,3,1672319033),(110801,7,24749,3,1672319033),(110802,7,24750,3,1672319033),(110803,7,24751,3,1672319033),(110804,7,24752,3,1672319033),(110805,7,24754,3,1672319033),(110806,7,24755,3,1672319033),(110807,7,24756,3,1672319033),(110808,7,24757,3,1672319033),(110809,7,24758,3,1672319033),(110810,7,24759,3,1672319033),(110811,7,24760,3,1672319033),(110812,7,24761,3,1672319033),(110813,7,24762,3,1672319033),(110814,7,24763,3,1672319033),(110815,7,24764,3,1672319033),(110816,7,24765,3,1672319033),(110817,7,24766,3,1672319033),(110818,7,24767,3,1672319033),(110819,7,24768,3,1672319033),(110820,7,24769,3,1672319033),(110821,7,24770,3,1672319033),(110822,7,24771,3,1672319033),(110823,7,24772,3,1672319033),(110824,7,24773,3,1672319033),(110825,7,24774,3,1672319033),(110826,7,24775,3,1672319033),(110827,7,24776,3,1672319033),(110828,7,24777,3,1672319033),(110829,7,24778,3,1672319033),(110830,7,24779,3,1672319033),(110831,7,24780,3,1672319033),(110832,7,24781,3,1672319033),(110833,7,24782,3,1672319033),(110834,7,24783,3,1672319033),(110835,7,24784,3,1672319033),(110836,7,24785,3,1672319033),(110837,7,24786,3,1672319033),(110838,7,24787,3,1672319033),(110839,7,24788,3,1672319033),(110840,7,24789,3,1672319033),(110841,7,24790,3,1672319033),(110842,7,24791,3,1672319033),(110843,7,24792,3,1672319033),(110844,7,24793,3,1672319033),(110845,7,24794,3,1672319033),(110846,7,24795,3,1672319033),(110847,7,24797,3,1672319033),(110848,7,24798,3,1672319033),(110849,7,24799,3,1672319033),(110850,7,24800,3,1672319033),(110851,7,24801,3,1672319033),(110852,7,24802,3,1672319033),(110853,7,24803,3,1672319033),(110854,7,24804,3,1672319033),(110855,7,24805,3,1672319033),(110856,7,24806,3,1672319033),(110857,7,24807,3,1672319033),(110858,7,24808,3,1672319033),(110859,7,24809,3,1672319033),(110860,7,24810,3,1672319033),(110861,7,24811,3,1672319033),(110862,7,24812,3,1672319033),(110863,7,24813,3,1672319033),(110864,7,24814,3,1672319033),(110865,7,24815,3,1672319033),(110866,7,24816,3,1672319033),(110867,7,24817,3,1672319033),(110868,7,24818,3,1672319033),(110869,7,24819,3,1672319033),(110870,7,24820,3,1672319033),(110871,7,24821,3,1672319033),(110872,7,24822,3,1672319033),(110873,7,24823,3,1672319033),(110874,7,24824,3,1672319033),(110875,7,24825,3,1672319033),(110876,7,24826,3,1672319033),(110877,7,24827,3,1672319033),(110878,7,24828,3,1672319033),(110879,7,24829,3,1672319033),(110880,7,24830,3,1672319033),(110881,7,24831,3,1672319033),(110882,7,24832,3,1672319033),(110883,7,24833,3,1672319033),(110884,7,24834,3,1672319033),(110885,7,24835,3,1672319033),(110886,7,24836,3,1672319033),(110887,7,24837,3,1672319033),(110888,7,24838,3,1672319033),(110889,7,24839,3,1672319033),(110890,7,24840,3,1672319033),(110891,7,24841,3,1672319033),(110892,7,24842,3,1672319033),(110893,7,24843,3,1672319033),(110894,7,24844,3,1672319033),(110895,7,24845,3,1672319033),(110896,7,24846,3,1672319033),(110897,7,24847,3,1672319033),(110898,7,24849,3,1672319033),(110899,7,24850,3,1672319033),(110900,7,24851,3,1672319033),(110901,7,24852,3,1672319033),(110902,7,24853,3,1672319033),(110903,7,24854,3,1672319033),(110904,7,24855,3,1672319033),(110905,7,24856,3,1672319033),(110906,7,24857,3,1672319033),(110907,7,24858,3,1672319033),(110908,7,24859,3,1672319033),(110909,7,24860,3,1672319033),(110910,7,24861,3,1672319033),(110911,7,24862,3,1672319033),(110912,7,24863,3,1672319033),(110913,7,24864,3,1672319033),(110914,7,24865,3,1672319033),(110915,7,24866,3,1672319033),(110916,7,24867,3,1672319033),(110917,7,24868,3,1672319033),(110918,7,24869,3,1672319033),(110919,7,24870,3,1672319033),(110920,7,24871,3,1672319033),(110921,7,24872,3,1672319033),(110922,7,24873,3,1672319033),(110923,7,24874,3,1672319033),(110924,7,24875,3,1672319033),(110925,7,24876,3,1672319033),(110926,7,24877,3,1672319033),(110927,7,24878,3,1672319033),(110928,7,24879,3,1672319033),(110929,7,24880,3,1672319033),(110930,7,24881,3,1672319033),(110931,7,24882,3,1672319033),(110932,7,24883,3,1672319033),(110933,7,24884,3,1672319033),(110934,7,24885,3,1672319033),(110935,7,24886,3,1672319033),(110936,7,24887,3,1672319033),(110937,7,24888,3,1672319033),(110938,7,24889,3,1672319033),(110939,7,24890,3,1672319033),(110940,7,24891,3,1672319033),(110941,7,24892,3,1672319033),(110942,7,24893,3,1672319033),(110943,7,24894,3,1672319033),(110944,7,24895,3,1672319033),(110945,7,24896,3,1672319033),(110946,7,24897,3,1672319033),(110947,7,24898,3,1672319033),(110948,7,24899,3,1672319033),(110949,7,24901,3,1672319033),(110950,7,24902,3,1672319033),(110951,7,24903,3,1672319033),(110952,7,24904,3,1672319033),(110953,7,24905,3,1672319033),(110954,7,24906,3,1672319033),(110955,7,24907,3,1672319033),(110956,7,24908,3,1672319033),(110957,7,24909,3,1672319033),(110958,7,24910,3,1672319033),(110959,7,24911,3,1672319033),(110960,7,24912,3,1672319033),(110961,7,24913,3,1672319033),(110962,7,24914,3,1672319033),(110963,7,24915,3,1672319033),(110964,7,24916,3,1672319033),(110965,7,24917,3,1672319033),(110966,7,24918,3,1672319033),(110967,7,24919,3,1672319033),(110968,7,24920,3,1672319033),(110969,7,24921,3,1672319033),(110970,7,24922,3,1672319033),(110971,7,24923,3,1672319033),(110972,7,24924,3,1672319033),(110973,7,24925,3,1672319033),(110974,7,24926,3,1672319033),(110975,7,24927,3,1672319033),(110976,7,24928,3,1672319033),(110977,7,24929,3,1672319033),(110978,7,24930,3,1672319033),(110979,7,24931,3,1672319033),(110980,7,24932,3,1672319033),(110981,7,24933,3,1672319033),(110982,7,24934,3,1672319033),(110983,7,24935,3,1672319033),(110984,7,24936,3,1672319033),(110985,7,24937,3,1672319033),(110986,7,24938,3,1672319033),(110987,7,24939,3,1672319033),(110988,7,24940,3,1672319033),(110989,7,24941,3,1672319033),(110990,7,24942,3,1672319033),(110991,7,24943,3,1672319033),(110992,7,24944,3,1672319033),(110993,7,24945,3,1672319033),(110994,7,24946,3,1672319033),(110995,7,24947,3,1672319033),(110996,7,24948,3,1672319033),(110997,7,24949,3,1672319033),(110998,7,24950,3,1672319033),(110999,7,24951,3,1672319033),(111000,7,24953,3,1672319033),(111001,7,24954,3,1672319033),(111002,7,24955,3,1672319033),(111003,7,24956,3,1672319033),(111004,7,24957,3,1672319033),(111005,7,24958,3,1672319033),(111006,7,24959,3,1672319033),(111007,7,24960,3,1672319033),(111008,7,24961,3,1672319033),(111009,7,24962,3,1672319033),(111010,7,24963,3,1672319033),(111011,7,24964,3,1672319033),(111012,7,24965,3,1672319033),(111013,7,24966,3,1672319033),(111014,7,24967,3,1672319033),(111015,7,24968,3,1672319033),(111016,7,24969,3,1672319033),(111017,7,24970,3,1672319033),(111018,7,24971,3,1672319033),(111019,7,24972,3,1672319033),(111020,7,24973,3,1672319033),(111021,7,24974,3,1672319033),(111022,7,24975,3,1672319033),(111023,7,24976,3,1672319033),(111024,7,24977,3,1672319033),(111025,7,24978,3,1672319033),(111026,7,24979,3,1672319033),(111027,7,24980,3,1672319033),(111028,7,24981,3,1672319033),(111029,7,24982,3,1672319033),(111030,7,24983,3,1672319033),(111031,7,24984,3,1672319033),(111032,7,24985,3,1672319033),(111033,7,24986,3,1672319033),(111034,7,24987,3,1672319033),(111035,7,24988,3,1672319033),(111036,7,24989,3,1672319033),(111037,7,24990,3,1672319033),(111038,7,24991,3,1672319033),(111039,7,24992,3,1672319033),(111040,7,24993,3,1672319033),(111041,7,24994,3,1672319033),(111042,7,24995,3,1672319033),(111043,7,24996,3,1672319033),(111044,7,24997,3,1672319033),(111045,7,24998,3,1672319033),(111046,7,24999,3,1672319033),(111047,7,25000,3,1672319033),(111048,7,25001,3,1672319033),(111049,7,25002,3,1672319033),(111050,7,25003,3,1672319033),(111051,7,25004,3,1672319033),(111052,7,25005,3,1672319033),(111053,7,25006,3,1672319033),(111054,7,25007,3,1672319033),(111055,7,25008,3,1672319033),(111056,7,25009,3,1672319033),(111057,7,25010,3,1672319033),(111058,7,25011,3,1672319033),(111059,7,25012,3,1672319033),(111060,7,25013,3,1672319033),(111061,7,25014,3,1672319033),(111062,7,25015,3,1672319033),(111063,7,25016,3,1672319033),(111064,7,25017,3,1672319033),(111065,7,25018,3,1672319033),(111066,7,25019,3,1672319033),(111067,7,25020,3,1672319033),(111068,7,25021,3,1672319033),(111069,7,25022,3,1672319033),(111070,7,25023,3,1672319033),(111071,7,25024,3,1672319033),(111072,7,25025,3,1672319033),(111073,7,25026,3,1672319033),(111074,7,25027,3,1672319033),(111075,7,25028,3,1672319033),(111076,7,25029,3,1672319033),(111077,7,25030,3,1672319033),(111078,7,25031,3,1672319033),(111079,7,25032,3,1672319033),(111080,7,25033,3,1672319033),(111081,7,25034,3,1672319033),(111082,7,25035,3,1672319033),(111083,7,25036,3,1672319033),(111084,7,25060,3,1672319033),(111085,7,25061,3,1672319033),(111086,7,25062,3,1672319033),(111087,7,25063,3,1672319033),(111088,7,25064,3,1672319033),(111089,7,25065,3,1672319033),(111090,7,25066,3,1672319033),(111091,7,25067,3,1672319033),(111092,7,25068,3,1672319033),(111093,7,25069,3,1672319033),(111094,7,25070,3,1672319033),(111095,7,25071,3,1672319033),(111096,7,25072,3,1672319033),(111097,7,25073,3,1672319033),(111098,7,25074,3,1672319033),(111099,7,25075,3,1672319033),(111100,7,25076,3,1672319033),(111101,7,25077,3,1672319033),(111102,7,25078,3,1672319033),(111103,7,25079,3,1672319033),(111104,7,25080,3,1672319033),(111105,7,25081,3,1672319033),(111106,7,25082,3,1672319033),(111107,7,25083,3,1672319033),(111108,7,25084,3,1672319033),(111109,7,25085,3,1672319033),(111110,7,25086,3,1672319033),(111111,7,25087,3,1672319033),(111112,7,25119,3,1672319033),(111113,7,25120,3,1672319033),(111114,7,25121,3,1672319033),(111115,7,25122,3,1672319033),(111116,7,25123,3,1672319033),(111117,7,25124,3,1672319033),(111118,7,25125,3,1672319033),(111119,7,25126,3,1672319033),(111120,7,25127,3,1672319033),(111121,7,25128,3,1672319033),(111122,7,25129,3,1672319033),(111123,7,25130,3,1672319033),(111124,7,25131,3,1672319033),(111125,7,25132,3,1672319033),(111126,7,25133,3,1672319033),(111127,7,25134,3,1672319033),(111128,7,25135,3,1672319033),(111129,7,25136,3,1672319033),(111130,7,25137,3,1672319033),(111131,7,25138,3,1672319033),(111132,7,25139,3,1672319033),(111133,7,25140,3,1672319033),(111134,7,25141,3,1672319033),(111135,7,25142,3,1672319033),(111136,7,25143,3,1672319033),(111137,7,25144,3,1672319033),(111138,7,25145,3,1672319033),(111139,7,25146,3,1672319033),(111140,7,25178,3,1672319033),(111141,7,25179,3,1672319033),(111142,7,25180,3,1672319033),(111143,7,25181,3,1672319033),(111144,7,25182,3,1672319033),(111145,7,25183,3,1672319033),(111146,7,25184,3,1672319033),(111147,7,25185,3,1672319033),(111148,7,25186,3,1672319033),(111149,7,25187,3,1672319033),(111150,7,25188,3,1672319033),(111151,7,25189,3,1672319033),(111152,7,25190,3,1672319033),(111153,7,25191,3,1672319033),(111154,7,25192,3,1672319033),(111155,7,25193,3,1672319033),(111156,7,25194,3,1672319033),(111157,7,25195,3,1672319033),(111158,7,25196,3,1672319033),(111159,7,25197,3,1672319033),(111160,7,25198,3,1672319033),(111161,7,25199,3,1672319033),(111162,7,25200,3,1672319033),(111163,7,25201,3,1672319033),(111164,7,25202,3,1672319033),(111165,7,25203,3,1672319033),(111166,7,25204,3,1672319033),(111167,7,25205,3,1672319033),(111168,7,25237,3,1672319033),(111169,7,25238,3,1672319033),(111170,7,25239,3,1672319033),(111171,7,25240,3,1672319033),(111172,7,25241,3,1672319033),(111173,7,25242,3,1672319033),(111174,7,25243,3,1672319033),(111175,7,25244,3,1672319033),(111176,7,25245,3,1672319033),(111177,7,25246,3,1672319033),(111178,7,25247,3,1672319033),(111179,7,25248,3,1672319033),(111180,7,25249,3,1672319033),(111181,7,25250,3,1672319033),(111182,7,25251,3,1672319033),(111183,7,25252,3,1672319033),(111184,7,25253,3,1672319033),(111185,7,25254,3,1672319033),(111186,7,25255,3,1672319033),(111187,7,25256,3,1672319033),(111188,7,25257,3,1672319033),(111189,7,25258,3,1672319033),(111190,7,25259,3,1672319033),(111191,7,25260,3,1672319033),(111192,7,25261,3,1672319033),(111193,7,25262,3,1672319033),(111194,7,25263,3,1672319033),(111195,7,25264,3,1672319033),(111196,7,25296,3,1672319033),(111197,7,25297,3,1672319033),(111198,7,25298,3,1672319033),(111199,7,25299,3,1672319033),(111200,7,25300,3,1672319033),(111201,7,25301,3,1672319033),(111202,7,25302,3,1672319033),(111203,7,25303,3,1672319033),(111204,7,25304,3,1672319033),(111205,7,25305,3,1672319033),(111206,7,25306,3,1672319033),(111207,7,25307,3,1672319033),(111208,7,25308,3,1672319033),(111209,7,25309,3,1672319033),(111210,7,25310,3,1672319033),(111211,7,25311,3,1672319033),(111212,7,25312,3,1672319033),(111213,7,25313,3,1672319033),(111214,7,25314,3,1672319033),(111215,7,25315,3,1672319033),(111216,7,25316,3,1672319033),(111217,7,25317,3,1672319033),(111218,7,25318,3,1672319033),(111219,7,25319,3,1672319033),(111220,7,25320,3,1672319033),(111221,7,25321,3,1672319033),(111222,7,25322,3,1672319033),(111223,7,25323,3,1672319033),(111224,7,25355,3,1672319033),(111225,7,25356,3,1672319033),(111226,7,25357,3,1672319033),(111227,7,25358,3,1672319033),(111228,7,25359,3,1672319033),(111229,7,25360,3,1672319033),(111230,7,25361,3,1672319033),(111231,7,25362,3,1672319033),(111232,7,25363,3,1672319033),(111233,7,25364,3,1672319033),(111234,7,25365,3,1672319033),(111235,7,25366,3,1672319033),(111236,7,25367,3,1672319033),(111237,7,25368,3,1672319033),(111238,7,25369,3,1672319033),(111239,7,25370,3,1672319033),(111240,7,25371,3,1672319033),(111241,7,25372,3,1672319033),(111242,7,25373,3,1672319033),(111243,7,25374,3,1672319033),(111244,7,25375,3,1672319033),(111245,7,25376,3,1672319033),(111246,7,25377,3,1672319033),(111247,7,25378,3,1672319033),(111248,7,25379,3,1672319033),(111249,7,25380,3,1672319033),(111250,7,25381,3,1672319033),(111251,7,25382,3,1672319033),(111252,7,25414,3,1672319033),(111253,7,25415,3,1672319033),(111254,7,25416,3,1672319033),(111255,7,25417,3,1672319033),(111256,7,25418,3,1672319033),(111257,7,25419,3,1672319033),(111258,7,25420,3,1672319033),(111259,7,25421,3,1672319033),(111260,7,25422,3,1672319033),(111261,7,25423,3,1672319033),(111262,7,25424,3,1672319033),(111263,7,25425,3,1672319033),(111264,7,25426,3,1672319033),(111265,7,25427,3,1672319033),(111266,7,25428,3,1672319033),(111267,7,25429,3,1672319033),(111268,7,25430,3,1672319033),(111269,7,25431,3,1672319033),(111270,7,25432,3,1672319033),(111271,7,25433,3,1672319033),(111272,7,25434,3,1672319033),(111273,7,25435,3,1672319033),(111274,7,25436,3,1672319033),(111275,7,25437,3,1672319033),(111276,7,25438,3,1672319033),(111277,7,25439,3,1672319033),(111278,7,25440,3,1672319033),(111279,7,25441,3,1672319033),(111280,7,25473,3,1672319033),(111281,7,25474,3,1672319033),(111282,7,25475,3,1672319033),(111283,7,25476,3,1672319033),(111284,7,25477,3,1672319033),(111285,7,25478,3,1672319033),(111286,7,25479,3,1672319033),(111287,7,25480,3,1672319033),(111288,7,25481,3,1672319033),(111289,7,25482,3,1672319033),(111290,7,25483,3,1672319033),(111291,7,25484,3,1672319033),(111292,7,25485,3,1672319033),(111293,7,25486,3,1672319033),(111294,7,25487,3,1672319033),(111295,7,25488,3,1672319033),(111296,7,25489,3,1672319033),(111297,7,25490,3,1672319033),(111298,7,25491,3,1672319033),(111299,7,25492,3,1672319033),(111300,7,25493,3,1672319033),(111301,7,25494,3,1672319033),(111302,7,25495,3,1672319033),(111303,7,25496,3,1672319033),(111304,7,25497,3,1672319033),(111305,7,25498,3,1672319033),(111306,7,25499,3,1672319033),(111307,7,25500,3,1672319033),(111308,7,25532,3,1672319033),(111309,7,25533,3,1672319033),(111310,7,25534,3,1672319033),(111311,7,25535,3,1672319033),(111312,7,25536,3,1672319033),(111313,7,25537,3,1672319033),(111314,7,25538,3,1672319033),(111315,7,25539,3,1672319033),(111316,7,25540,3,1672319033),(111317,7,25541,3,1672319033),(111318,7,25542,3,1672319033),(111319,7,25543,3,1672319033),(111320,7,25544,3,1672319033),(111321,7,25545,3,1672319033),(111322,7,25546,3,1672319033),(111323,7,25547,3,1672319033),(111324,7,25548,3,1672319033),(111325,7,25549,3,1672319033),(111326,7,25550,3,1672319033),(111327,7,25551,3,1672319033),(111328,7,25552,3,1672319033),(111329,7,25553,3,1672319033),(111330,7,25554,3,1672319033),(111331,7,25555,3,1672319033),(111332,7,25556,3,1672319033),(111333,7,25557,3,1672319033),(111334,7,25558,3,1672319033),(111335,7,25559,3,1672319033),(111336,7,25591,3,1672319033),(111337,7,25592,3,1672319033),(111338,7,25593,3,1672319033),(111339,7,25594,3,1672319033),(111340,7,25595,3,1672319033),(111341,7,25596,3,1672319033),(111342,7,25597,3,1672319033),(111343,7,25598,3,1672319033),(111344,7,25599,3,1672319033),(111345,7,25600,3,1672319033),(111346,7,25601,3,1672319033),(111347,7,25602,3,1672319033),(111348,7,25603,3,1672319033),(111349,7,25604,3,1672319033),(111350,7,25605,3,1672319033),(111351,7,25606,3,1672319033),(111352,7,25607,3,1672319033),(111353,7,25608,3,1672319033),(111354,7,25609,3,1672319033),(111355,7,25610,3,1672319033),(111356,7,25611,3,1672319033),(111357,7,25612,3,1672319033),(111358,7,25613,3,1672319033),(111359,7,25614,3,1672319033),(111360,7,25615,3,1672319033),(111361,7,25616,3,1672319033),(111362,7,25617,3,1672319033),(111363,7,25618,3,1672319033),(111364,7,25650,3,1672319033),(111365,7,25651,3,1672319033),(111366,7,25652,3,1672319033),(111367,7,25653,3,1672319033),(111368,7,25654,3,1672319033),(111369,7,25655,3,1672319033),(111370,7,25656,3,1672319033),(111371,7,25657,3,1672319033),(111372,7,25658,3,1672319033),(111373,7,25659,3,1672319033),(111374,7,25660,3,1672319033),(111375,7,25661,3,1672319033),(111376,7,25662,3,1672319033),(111377,7,25663,3,1672319033),(111378,7,25664,3,1672319033),(111379,7,25665,3,1672319033),(111380,7,25666,3,1672319033),(111381,7,25667,3,1672319033),(111382,7,25668,3,1672319033),(111383,7,25669,3,1672319033),(111384,7,25670,3,1672319033),(111385,7,25671,3,1672319033),(111386,7,25672,3,1672319033),(111387,7,25673,3,1672319033),(111388,7,25674,3,1672319033),(111389,7,25675,3,1672319033),(111390,7,25676,3,1672319033),(111391,7,25677,3,1672319033),(111392,7,25709,3,1672319033),(111393,7,25710,3,1672319033),(111394,7,25711,3,1672319033),(111395,7,25712,3,1672319033),(111396,7,25713,3,1672319033),(111397,7,25714,3,1672319033),(111398,7,25715,3,1672319033),(111399,7,25716,3,1672319033),(111400,7,25717,3,1672319033),(111401,7,25718,3,1672319033),(111402,7,25719,3,1672319033),(111403,7,25720,3,1672319033),(111404,7,25721,3,1672319033),(111405,7,25722,3,1672319033),(111406,7,25723,3,1672319033),(111407,7,25724,3,1672319033),(111408,7,25725,3,1672319033),(111409,7,25726,3,1672319033),(111410,7,25727,3,1672319033),(111411,7,25728,3,1672319033),(111412,7,25729,3,1672319033),(111413,7,25730,3,1672319033),(111414,7,25731,3,1672319033),(111415,7,25732,3,1672319033),(111416,7,25733,3,1672319033),(111417,7,25734,3,1672319033),(111418,7,25735,3,1672319033),(111419,7,25736,3,1672319033),(111420,7,25768,3,1672319033),(111421,7,25769,3,1672319033),(111422,7,25770,3,1672319033),(111423,7,25771,3,1672319033),(111424,7,25772,3,1672319033),(111425,7,25773,3,1672319033),(111426,7,25774,3,1672319033),(111427,7,25775,3,1672319033),(111428,7,25776,3,1672319033),(111429,7,25777,3,1672319033),(111430,7,25778,3,1672319033),(111431,7,25779,3,1672319033),(111432,7,25780,3,1672319033),(111433,7,25781,3,1672319033),(111434,7,25782,3,1672319033),(111435,7,25783,3,1672319033),(111436,7,25784,3,1672319033),(111437,7,25785,3,1672319033),(111438,7,25786,3,1672319033),(111439,7,25787,3,1672319033),(111440,7,25788,3,1672319033),(111441,7,25789,3,1672319033),(111442,7,25790,3,1672319033),(111443,7,25791,3,1672319033),(111444,7,25792,3,1672319033),(111445,7,25793,3,1672319033),(111446,7,25794,3,1672319033),(111447,7,25795,3,1672319033),(111448,7,25827,3,1672319033),(111449,7,25828,3,1672319033),(111450,7,25829,3,1672319033),(111451,7,25830,3,1672319033),(111452,7,25831,3,1672319033),(111453,7,25832,3,1672319033),(111454,7,25833,3,1672319033),(111455,7,25834,3,1672319033),(111456,7,25835,3,1672319033),(111457,7,25836,3,1672319033),(111458,7,25837,3,1672319033),(111459,7,25838,3,1672319033),(111460,7,25839,3,1672319033),(111461,7,25840,3,1672319033),(111462,7,25841,3,1672319033),(111463,7,25842,3,1672319033),(111464,7,25843,3,1672319033),(111465,7,25844,3,1672319033),(111466,7,25845,3,1672319033),(111467,7,25846,3,1672319033),(111468,7,25847,3,1672319033),(111469,7,25848,3,1672319033),(111470,7,25849,3,1672319033),(111471,7,25850,3,1672319033),(111472,7,25851,3,1672319033),(111473,7,25852,3,1672319033),(111474,7,25853,3,1672319033),(111475,7,25854,3,1672319033),(111476,7,25886,3,1672319033),(111477,7,25887,3,1672319033),(111478,7,25888,3,1672319033),(111479,7,25889,3,1672319033),(111480,7,25890,3,1672319033),(111481,7,25891,3,1672319033),(111482,7,25892,3,1672319033),(111483,7,25893,3,1672319033),(111484,7,25894,3,1672319033),(111485,7,25895,3,1672319033),(111486,7,25896,3,1672319033),(111487,7,25897,3,1672319033),(111488,7,25898,3,1672319033),(111489,7,25899,3,1672319033),(111490,7,25900,3,1672319033),(111491,7,25901,3,1672319033),(111492,7,25902,3,1672319033),(111493,7,25903,3,1672319033),(111494,7,25904,3,1672319033),(111495,7,25905,3,1672319033),(111496,7,25906,3,1672319033),(111497,7,25907,3,1672319033),(111498,7,25908,3,1672319033),(111499,7,25909,3,1672319033),(111500,7,25910,3,1672319033),(111501,7,25911,3,1672319033),(111502,7,25912,3,1672319033),(111503,7,25913,3,1672319033),(111504,7,25945,3,1672319033),(111505,7,25946,3,1672319033),(111506,7,25947,3,1672319033),(111507,7,25948,3,1672319033),(111508,7,25949,3,1672319033),(111509,7,25950,3,1672319033),(111510,7,25951,3,1672319033),(111511,7,25952,3,1672319033),(111512,7,25953,3,1672319033),(111513,7,25954,3,1672319033),(111514,7,25955,3,1672319033),(111515,7,25956,3,1672319033),(111516,7,25957,3,1672319033),(111517,7,25958,3,1672319033),(111518,7,25959,3,1672319033),(111519,7,25960,3,1672319033),(111520,7,25961,3,1672319033),(111521,7,25962,3,1672319033),(111522,7,25963,3,1672319033),(111523,7,25964,3,1672319033),(111524,7,25965,3,1672319033),(111525,7,25966,3,1672319033),(111526,7,25967,3,1672319033),(111527,7,25968,3,1672319033),(111528,7,25969,3,1672319033),(111529,7,25970,3,1672319033),(111530,7,25971,3,1672319033),(111531,7,25972,3,1672319033),(111532,7,26004,3,1672319033),(111533,7,26005,3,1672319033),(111534,7,26006,3,1672319033),(111535,7,26007,3,1672319033),(111536,7,26008,3,1672319033),(111537,7,26009,3,1672319033),(111538,7,26010,3,1672319033),(111539,7,26011,3,1672319033),(111540,7,26012,3,1672319033),(111541,7,26013,3,1672319033),(111542,7,26014,3,1672319033),(111543,7,26015,3,1672319033),(111544,7,26016,3,1672319033),(111545,7,26017,3,1672319033),(111546,7,26018,3,1672319033),(111547,7,26019,3,1672319033),(111548,7,26020,3,1672319033),(111549,7,26021,3,1672319033),(111550,7,26022,3,1672319033),(111551,7,26023,3,1672319033),(111552,7,26024,3,1672319033),(111553,7,26025,3,1672319033),(111554,7,26026,3,1672319033),(111555,7,26027,3,1672319033),(111556,7,26028,3,1672319033),(111557,7,26029,3,1672319033),(111558,7,26030,3,1672319033),(111559,7,26031,3,1672319033),(111560,7,26063,3,1672319033),(111561,7,26064,3,1672319033),(111562,7,26065,3,1672319033),(111563,7,26066,3,1672319033),(111564,7,26067,3,1672319033),(111565,7,26068,3,1672319033),(111566,7,26069,3,1672319033),(111567,7,26070,3,1672319033),(111568,7,26071,3,1672319033),(111569,7,26072,3,1672319033),(111570,7,26073,3,1672319033),(111571,7,26074,3,1672319033),(111572,7,26075,3,1672319033),(111573,7,26076,3,1672319033),(111574,7,26077,3,1672319033),(111575,7,26078,3,1672319033),(111576,7,26079,3,1672319033),(111577,7,26080,3,1672319033),(111578,7,26081,3,1672319033),(111579,7,26082,3,1672319033),(111580,7,26083,3,1672319033),(111581,7,26084,3,1672319033),(111582,7,26085,3,1672319033),(111583,7,26086,3,1672319033),(111584,7,26087,3,1672319033),(111585,7,26088,3,1672319033),(111586,7,26089,3,1672319033),(111587,7,26090,3,1672319033),(111588,7,26122,3,1672319033),(111589,7,26123,3,1672319033),(111590,7,26124,3,1672319033),(111591,7,26125,3,1672319033),(111592,7,26126,3,1672319033),(111593,7,26127,3,1672319033),(111594,7,26128,3,1672319033),(111595,7,26129,3,1672319033),(111596,7,26130,3,1672319033),(111597,7,26131,3,1672319033),(111598,7,26132,3,1672319033),(111599,7,26133,3,1672319033),(111600,7,26134,3,1672319033),(111601,7,26135,3,1672319033),(111602,7,26136,3,1672319033),(111603,7,26137,3,1672319033),(111604,7,26138,3,1672319033),(111605,7,26139,3,1672319033),(111606,7,26140,3,1672319033),(111607,7,26141,3,1672319033),(111608,7,26142,3,1672319033),(111609,7,26143,3,1672319033),(111610,7,26144,3,1672319033),(111611,7,26145,3,1672319033),(111612,7,26146,3,1672319033),(111613,7,26147,3,1672319033),(111614,7,26148,3,1672319033),(111615,7,26149,3,1672319033),(111616,7,26181,3,1672319033),(111617,7,26182,3,1672319033),(111618,7,26183,3,1672319033),(111619,7,26184,3,1672319033),(111620,7,26185,3,1672319033),(111621,7,26186,3,1672319033),(111622,7,26187,3,1672319033),(111623,7,26188,3,1672319033),(111624,7,26189,3,1672319033),(111625,7,26190,3,1672319033),(111626,7,26191,3,1672319033),(111627,7,26192,3,1672319033),(111628,7,26193,3,1672319033),(111629,7,26194,3,1672319033),(111630,7,26195,3,1672319033),(111631,7,26196,3,1672319033),(111632,7,26197,3,1672319033),(111633,7,26198,3,1672319033),(111634,7,26199,3,1672319033),(111635,7,26200,3,1672319033),(111636,7,26201,3,1672319033),(111637,7,26202,3,1672319033),(111638,7,26203,3,1672319033),(111639,7,26204,3,1672319033),(111640,7,26205,3,1672319033),(111641,7,26206,3,1672319033),(111642,7,26207,3,1672319033),(111643,7,26208,3,1672319033),(111644,7,26240,3,1672319033),(111645,7,26241,3,1672319033),(111646,7,26242,3,1672319033),(111647,7,26243,3,1672319033),(111648,7,26244,3,1672319033),(111649,7,26245,3,1672319033),(111650,7,26246,3,1672319033),(111651,7,26247,3,1672319033),(111652,7,26248,3,1672319033),(111653,7,26249,3,1672319033),(111654,7,26250,3,1672319033),(111655,7,26251,3,1672319033),(111656,7,26252,3,1672319033),(111657,7,26253,3,1672319033),(111658,7,26254,3,1672319033),(111659,7,26255,3,1672319033),(111660,7,26256,3,1672319033),(111661,7,26257,3,1672319033),(111662,7,26258,3,1672319033),(111663,7,26259,3,1672319033),(111664,7,26260,3,1672319033),(111665,7,26261,3,1672319033),(111666,7,26262,3,1672319033),(111667,7,26263,3,1672319033),(111668,7,26264,3,1672319033),(111669,7,26265,3,1672319033),(111670,7,26266,3,1672319033),(111671,7,26267,3,1672319033),(111672,7,26299,3,1672319033),(111673,7,26300,3,1672319033),(111674,7,26301,3,1672319033),(111675,7,26302,3,1672319033),(111676,7,26303,3,1672319033),(111677,7,26304,3,1672319033),(111678,7,26305,3,1672319033),(111679,7,26306,3,1672319033),(111680,7,26307,3,1672319033),(111681,7,26308,3,1672319033),(111682,7,26309,3,1672319033),(111683,7,26310,3,1672319033),(111684,7,26311,3,1672319033),(111685,7,26312,3,1672319033),(111686,7,26313,3,1672319033),(111687,7,26314,3,1672319033),(111688,7,26315,3,1672319033),(111689,7,26316,3,1672319033),(111690,7,26317,3,1672319033),(111691,7,26318,3,1672319033),(111692,7,26319,3,1672319033),(111693,7,26320,3,1672319033),(111694,7,26321,3,1672319033),(111695,7,26322,3,1672319033),(111696,7,26323,3,1672319033),(111697,7,26324,3,1672319033),(111698,7,26325,3,1672319033),(111699,7,26326,3,1672319033),(111700,7,26358,3,1672319033),(111701,7,26359,3,1672319033),(111702,7,26360,3,1672319033),(111703,7,26361,3,1672319033),(111704,7,26362,3,1672319033),(111705,7,26363,3,1672319033),(111706,7,26364,3,1672319033),(111707,7,26365,3,1672319033),(111708,7,26366,3,1672319033),(111709,7,26367,3,1672319033),(111710,7,26368,3,1672319033),(111711,7,26369,3,1672319033),(111712,7,26370,3,1672319033),(111713,7,26371,3,1672319033),(111714,7,26372,3,1672319033),(111715,7,26373,3,1672319033),(111716,7,26374,3,1672319033),(111717,7,26375,3,1672319033),(111718,7,26376,3,1672319033),(111719,7,26377,3,1672319033),(111720,7,26378,3,1672319033),(111721,7,26379,3,1672319033),(111722,7,26380,3,1672319033),(111723,7,26381,3,1672319033),(111724,7,26382,3,1672319033),(111725,7,26383,3,1672319033),(111726,7,26384,3,1672319033),(111727,7,26385,3,1672319033),(111728,7,26417,3,1672319033),(111729,7,26418,3,1672319033),(111730,7,26419,3,1672319033),(111731,7,26420,3,1672319033),(111732,7,26421,3,1672319033),(111733,7,26422,3,1672319033),(111734,7,26423,3,1672319033),(111735,7,26424,3,1672319033),(111736,7,26425,3,1672319033),(111737,7,26426,3,1672319033),(111738,7,26427,3,1672319033),(111739,7,26428,3,1672319033),(111740,7,26429,3,1672319033),(111741,7,26430,3,1672319033),(111742,7,26431,3,1672319033),(111743,7,26432,3,1672319033),(111744,7,26433,3,1672319033),(111745,7,26434,3,1672319033),(111746,7,26435,3,1672319033),(111747,7,26436,3,1672319033),(111748,7,26437,3,1672319033),(111749,7,26438,3,1672319033),(111750,7,26439,3,1672319033),(111751,7,26440,3,1672319033),(111752,7,26441,3,1672319033),(111753,7,26442,3,1672319033),(111754,7,26443,3,1672319033),(111755,7,26444,3,1672319033),(111756,7,26476,3,1672319033),(111757,7,26477,3,1672319033),(111758,7,26478,3,1672319033),(111759,7,26479,3,1672319033),(111760,7,26480,3,1672319033),(111761,7,26481,3,1672319033),(111762,7,26482,3,1672319033),(111763,7,26483,3,1672319033),(111764,7,26484,3,1672319033),(111765,7,26485,3,1672319033),(111766,7,26486,3,1672319033),(111767,7,26487,3,1672319033),(111768,7,26488,3,1672319033),(111769,7,26489,3,1672319033),(111770,7,26490,3,1672319033),(111771,7,26491,3,1672319033),(111772,7,26492,3,1672319033),(111773,7,26493,3,1672319033),(111774,7,26494,3,1672319033),(111775,7,26495,3,1672319033),(111776,7,26496,3,1672319033),(111777,7,26497,3,1672319033),(111778,7,26498,3,1672319033),(111779,7,26499,3,1672319033),(111780,7,26500,3,1672319033),(111781,7,26501,3,1672319033),(111782,7,26502,3,1672319033),(111783,7,26503,3,1672319033),(111784,7,26535,3,1672319033),(111785,7,26536,3,1672319033),(111786,7,26537,3,1672319033),(111787,7,26538,3,1672319033),(111788,7,26539,3,1672319033),(111789,7,26540,3,1672319033),(111790,7,26541,3,1672319033),(111791,7,26542,3,1672319033),(111792,7,26543,3,1672319033),(111793,7,26544,3,1672319033),(111794,7,26545,3,1672319033),(111795,7,26546,3,1672319033),(111796,7,26547,3,1672319033),(111797,7,26548,3,1672319033),(111798,7,26549,3,1672319033),(111799,7,26550,3,1672319033),(111800,7,26551,3,1672319033),(111801,7,26552,3,1672319033),(111802,7,26553,3,1672319033),(111803,7,26554,3,1672319033),(111804,7,26555,3,1672319033),(111805,7,26556,3,1672319033),(111806,7,26557,3,1672319033),(111807,7,26558,3,1672319033),(111808,7,26559,3,1672319033),(111809,7,26560,3,1672319033),(111810,7,26561,3,1672319033),(111811,7,26562,3,1672319033),(111812,7,26594,3,1672319033),(111813,7,26595,3,1672319033),(111814,7,26596,3,1672319033),(111815,7,26597,3,1672319033),(111816,7,26598,3,1672319033),(111817,7,26599,3,1672319033),(111818,7,26600,3,1672319033),(111819,7,26601,3,1672319033),(111820,7,26602,3,1672319033),(111821,7,26603,3,1672319033),(111822,7,26604,3,1672319033),(111823,7,26605,3,1672319033),(111824,7,26606,3,1672319033),(111825,7,26607,3,1672319033),(111826,7,26608,3,1672319033),(111827,7,26609,3,1672319033),(111828,7,26610,3,1672319033),(111829,7,26611,3,1672319033),(111830,7,26612,3,1672319033),(111831,7,26613,3,1672319033),(111832,7,26614,3,1672319033),(111833,7,26615,3,1672319033),(111834,7,26616,3,1672319033),(111835,7,26617,3,1672319033),(111836,7,26618,3,1672319033),(111837,7,26619,3,1672319033),(111838,7,26620,3,1672319033),(111839,7,26621,3,1672319033),(111840,7,26653,3,1672319033),(111841,7,26654,3,1672319033),(111842,7,26655,3,1672319033),(111843,7,26656,3,1672319033),(111844,7,26657,3,1672319033),(111845,7,26658,3,1672319033),(111846,7,26659,3,1672319033),(111847,7,26660,3,1672319033),(111848,7,26661,3,1672319033),(111849,7,26662,3,1672319033),(111850,7,26663,3,1672319033),(111851,7,26664,3,1672319033),(111852,7,26665,3,1672319033),(111853,7,26666,3,1672319033),(111854,7,26667,3,1672319033),(111855,7,26668,3,1672319033),(111856,7,26669,3,1672319033),(111857,7,26670,3,1672319033),(111858,7,26671,3,1672319033),(111859,7,26672,3,1672319033),(111860,7,26673,3,1672319033),(111861,7,26674,3,1672319033),(111862,7,26675,3,1672319033),(111863,7,26676,3,1672319033),(111864,7,26677,3,1672319033),(111865,7,26678,3,1672319033),(111866,7,26679,3,1672319033),(111867,7,26680,3,1672319033),(111868,7,26712,3,1672319033),(111869,7,26713,3,1672319033),(111870,7,26714,3,1672319033),(111871,7,26715,3,1672319033),(111872,7,26716,3,1672319033),(111873,7,26717,3,1672319033),(111874,7,26718,3,1672319033),(111875,7,26719,3,1672319033),(111876,7,26720,3,1672319033),(111877,7,26721,3,1672319033),(111878,7,26722,3,1672319033),(111879,7,26723,3,1672319033),(111880,7,26724,3,1672319033),(111881,7,26725,3,1672319033),(111882,7,26726,3,1672319033),(111883,7,26727,3,1672319033),(111884,7,26728,3,1672319033),(111885,7,26729,3,1672319033),(111886,7,26730,3,1672319033),(111887,7,26731,3,1672319033),(111888,7,26732,3,1672319033),(111889,7,26733,3,1672319033),(111890,7,26734,3,1672319033),(111891,7,26735,3,1672319033),(111892,7,26736,3,1672319033),(111893,7,26737,3,1672319033),(111894,7,26738,3,1672319033),(111895,7,26739,3,1672319033),(111896,7,26771,3,1672319033),(111897,7,26772,3,1672319033),(111898,7,26773,3,1672319033),(111899,7,26774,3,1672319033),(111900,7,26775,3,1672319033),(111901,7,26776,3,1672319033),(111902,7,26777,3,1672319033),(111903,7,26778,3,1672319033),(111904,7,26779,3,1672319033),(111905,7,26780,3,1672319033),(111906,7,26781,3,1672319033),(111907,7,26782,3,1672319033),(111908,7,26783,3,1672319033),(111909,7,26784,3,1672319033),(111910,7,26785,3,1672319033),(111911,7,26786,3,1672319033),(111912,7,26787,3,1672319033),(111913,7,26788,3,1672319033),(111914,7,26789,3,1672319033),(111915,7,26790,3,1672319033),(111916,7,26791,3,1672319033),(111917,7,26792,3,1672319033),(111918,7,26793,3,1672319033),(111919,7,26794,3,1672319033),(111920,7,26795,3,1672319033),(111921,7,26796,3,1672319033),(111922,7,26797,3,1672319033),(111923,7,26798,3,1672319033),(111924,7,26830,3,1672319033),(111925,7,26831,3,1672319033),(111926,7,26832,3,1672319033),(111927,7,26833,3,1672319033),(111928,7,26834,3,1672319033),(111929,7,26835,3,1672319033),(111930,7,26836,3,1672319033),(111931,7,26837,3,1672319033),(111932,7,26838,3,1672319033),(111933,7,26839,3,1672319033),(111934,7,26840,3,1672319033),(111935,7,26841,3,1672319033),(111936,7,26842,3,1672319033),(111937,7,26843,3,1672319033),(111938,7,26844,3,1672319033),(111939,7,26845,3,1672319033),(111940,7,26846,3,1672319033),(111941,7,26847,3,1672319033),(111942,7,26848,3,1672319033),(111943,7,26849,3,1672319033),(111944,7,26850,3,1672319033),(111945,7,26851,3,1672319033),(111946,7,26852,3,1672319033),(111947,7,26853,3,1672319033),(111948,7,26854,3,1672319033),(111949,7,26855,3,1672319033),(111950,7,26856,3,1672319033),(111951,7,26857,3,1672319033),(111952,7,26889,3,1672319033),(111953,7,26890,3,1672319033),(111954,7,26891,3,1672319033),(111955,7,26892,3,1672319033),(111956,7,26893,3,1672319033),(111957,7,26894,3,1672319033),(111958,7,26895,3,1672319033),(111959,7,26896,3,1672319033),(111960,7,26897,3,1672319033),(111961,7,26898,3,1672319033),(111962,7,26899,3,1672319033),(111963,7,26900,3,1672319033),(111964,7,26901,3,1672319033),(111965,7,26902,3,1672319033),(111966,7,26903,3,1672319033),(111967,7,26904,3,1672319033),(111968,7,26905,3,1672319033),(111969,7,26906,3,1672319033),(111970,7,26907,3,1672319033),(111971,7,26908,3,1672319033),(111972,7,26909,3,1672319033),(111973,7,26910,3,1672319033),(111974,7,26911,3,1672319033),(111975,7,26912,3,1672319033),(111976,7,26913,3,1672319033),(111977,7,26914,3,1672319033),(111978,7,26915,3,1672319033),(111979,7,26916,3,1672319033),(111980,7,26948,3,1672319033),(111981,7,26949,3,1672319033),(111982,7,26950,3,1672319033),(111983,7,26951,3,1672319033),(111984,7,26952,3,1672319033),(111985,7,26953,3,1672319033),(111986,7,26954,3,1672319033),(111987,7,26955,3,1672319033),(111988,7,26956,3,1672319033),(111989,7,26957,3,1672319033),(111990,7,26958,3,1672319033),(111991,7,26959,3,1672319033),(111992,7,26960,3,1672319033),(111993,7,26961,3,1672319033),(111994,7,26962,3,1672319033),(111995,7,26963,3,1672319033),(111996,7,26964,3,1672319033),(111997,7,26965,3,1672319033),(111998,7,26966,3,1672319033),(111999,7,26967,3,1672319033),(112000,7,26968,3,1672319033),(112001,7,26969,3,1672319033),(112002,7,26970,3,1672319033),(112003,7,26971,3,1672319033),(112004,7,26972,3,1672319033),(112005,7,26973,3,1672319033),(112006,7,26974,3,1672319033),(112007,7,26975,3,1672319033),(112008,7,27007,3,1672319033),(112009,7,27008,3,1672319033),(112010,7,27009,3,1672319033),(112011,7,27010,3,1672319033),(112012,7,27011,3,1672319033),(112013,7,27012,3,1672319033),(112014,7,27013,3,1672319033),(112015,7,27014,3,1672319033),(112016,7,27015,3,1672319033),(112017,7,27016,3,1672319033),(112018,7,27017,3,1672319033),(112019,7,27018,3,1672319033),(112020,7,27019,3,1672319033),(112021,7,27020,3,1672319033),(112022,7,27021,3,1672319033),(112023,7,27022,3,1672319033),(112024,7,27023,3,1672319033),(112025,7,27024,3,1672319033),(112026,7,27025,3,1672319033),(112027,7,27026,3,1672319033),(112028,7,27027,3,1672319033),(112029,7,27028,3,1672319033),(112030,7,27029,3,1672319033),(112031,7,27030,3,1672319033),(112032,7,27031,3,1672319033),(112033,7,27032,3,1672319033),(112034,7,27033,3,1672319033),(112035,7,27034,3,1672319033),(112036,7,27066,3,1672319033),(112037,7,27067,3,1672319033),(112038,7,27068,3,1672319033),(112039,7,27069,3,1672319033),(112040,7,27070,3,1672319033),(112041,7,27071,3,1672319033),(112042,7,27072,3,1672319033),(112043,7,27073,3,1672319033),(112044,7,27074,3,1672319033),(112045,7,27075,3,1672319033),(112046,7,27076,3,1672319033),(112047,7,27077,3,1672319033),(112048,7,27078,3,1672319033),(112049,7,27079,3,1672319033),(112050,7,27080,3,1672319033),(112051,7,27081,3,1672319033),(112052,7,27082,3,1672319033),(112053,7,27083,3,1672319033),(112054,7,27084,3,1672319033),(112055,7,27085,3,1672319033),(112056,7,27086,3,1672319033),(112057,7,27087,3,1672319033),(112058,7,27088,3,1672319033),(112059,7,27089,3,1672319033),(112060,7,27090,3,1672319033),(112061,7,27091,3,1672319033),(112062,7,27092,3,1672319033),(112063,7,27093,3,1672319033),(112064,7,27125,3,1672319033),(112065,7,27126,3,1672319033),(112066,7,27127,3,1672319033),(112067,7,27128,3,1672319033),(112068,7,27129,3,1672319033),(112069,7,27130,3,1672319033),(112070,7,27131,3,1672319033),(112071,7,27132,3,1672319033),(112072,7,27133,3,1672319033),(112073,7,27134,3,1672319033),(112074,7,27135,3,1672319033),(112075,7,27136,3,1672319033),(112076,7,27137,3,1672319033),(112077,7,27138,3,1672319033),(112078,7,27139,3,1672319033),(112079,7,27140,3,1672319033),(112080,7,27141,3,1672319033),(112081,7,27142,3,1672319033),(112082,7,27143,3,1672319033),(112083,7,27144,3,1672319033),(112084,7,27145,3,1672319033),(112085,7,27146,3,1672319033),(112086,7,27147,3,1672319033),(112087,7,27148,3,1672319033),(112088,7,27149,3,1672319033),(112089,7,27150,3,1672319033),(112090,7,27151,3,1672319033),(112091,7,27152,3,1672319033),(112092,7,27184,3,1672319033),(112093,7,27185,3,1672319033),(112094,7,27186,3,1672319033),(112095,7,27187,3,1672319033),(112096,7,27188,3,1672319033),(112097,7,27189,3,1672319033),(112098,7,27190,3,1672319033),(112099,7,27191,3,1672319033),(112100,7,27192,3,1672319033),(112101,7,27193,3,1672319033),(112102,7,27194,3,1672319033),(112103,7,27195,3,1672319033),(112104,7,27196,3,1672319033),(112105,7,27197,3,1672319033),(112106,7,27198,3,1672319033),(112107,7,27199,3,1672319033),(112108,7,27200,3,1672319033),(112109,7,27201,3,1672319033),(112110,7,27202,3,1672319033),(112111,7,27203,3,1672319033),(112112,7,27204,3,1672319033),(112113,7,27205,3,1672319033),(112114,7,27206,3,1672319033),(112115,7,27207,3,1672319033),(112116,7,27208,3,1672319033),(112117,7,27209,3,1672319033),(112118,7,27210,3,1672319033),(112119,7,27211,3,1672319033),(112120,7,27243,3,1672319033),(112121,7,27244,3,1672319033),(112122,7,27245,3,1672319033),(112123,7,27246,3,1672319033),(112124,7,27247,3,1672319033),(112125,7,27248,3,1672319033),(112126,7,27249,3,1672319033),(112127,7,27250,3,1672319033),(112128,7,27251,3,1672319033),(112129,7,27252,3,1672319033),(112130,7,27253,3,1672319033),(112131,7,27254,3,1672319033),(112132,7,27255,3,1672319033),(112133,7,27256,3,1672319033),(112134,7,27257,3,1672319033),(112135,7,27258,3,1672319033),(112136,7,27259,3,1672319033),(112137,7,27260,3,1672319033),(112138,7,27261,3,1672319033),(112139,7,27262,3,1672319033),(112140,7,27263,3,1672319033),(112141,7,27264,3,1672319033),(112142,7,27265,3,1672319033),(112143,7,27266,3,1672319033),(112144,7,27267,3,1672319033),(112145,7,27268,3,1672319033),(112146,7,27269,3,1672319033),(112147,7,27270,3,1672319033),(112148,7,27302,3,1672319033),(112149,7,27303,3,1672319033),(112150,7,27304,3,1672319033),(112151,7,27305,3,1672319033),(112152,7,27306,3,1672319033),(112153,7,27307,3,1672319033),(112154,7,27308,3,1672319033),(112155,7,27309,3,1672319033),(112156,7,27310,3,1672319033),(112157,7,27311,3,1672319033),(112158,7,27312,3,1672319033),(112159,7,27313,3,1672319033),(112160,7,27314,3,1672319033),(112161,7,27315,3,1672319033),(112162,7,27316,3,1672319033),(112163,7,27317,3,1672319033),(112164,7,27318,3,1672319033),(112165,7,27319,3,1672319033),(112166,7,27320,3,1672319033),(112167,7,27321,3,1672319033),(112168,7,27322,3,1672319033),(112169,7,27323,3,1672319033),(112170,7,27324,3,1672319033),(112171,7,27325,3,1672319033),(112172,7,27326,3,1672319033),(112173,7,27327,3,1672319033),(112174,7,27328,3,1672319033),(112175,7,27329,3,1672319033),(112176,7,27361,3,1672319033),(112177,7,27362,3,1672319033),(112178,7,27363,3,1672319033),(112179,7,27364,3,1672319033),(112180,7,27365,3,1672319033),(112181,7,27366,3,1672319033),(112182,7,27367,3,1672319033),(112183,7,27368,3,1672319033),(112184,7,27369,3,1672319033),(112185,7,27370,3,1672319033),(112186,7,27371,3,1672319033),(112187,7,27372,3,1672319033),(112188,7,27373,3,1672319033),(112189,7,27374,3,1672319033),(112190,7,27375,3,1672319033),(112191,7,27376,3,1672319033),(112192,7,27377,3,1672319033),(112193,7,27378,3,1672319033),(112194,7,27379,3,1672319033),(112195,7,27380,3,1672319033),(112196,7,27381,3,1672319033),(112197,7,27382,3,1672319033),(112198,7,27383,3,1672319033),(112199,7,27384,3,1672319033),(112200,7,27385,3,1672319033),(112201,7,27386,3,1672319033),(112202,7,27387,3,1672319033),(112203,7,27388,3,1672319033),(112204,7,27420,3,1672319033),(112205,7,27421,3,1672319033),(112206,7,27422,3,1672319033),(112207,7,27423,3,1672319033),(112208,7,27424,3,1672319033),(112209,7,27425,3,1672319033),(112210,7,27426,3,1672319033),(112211,7,27427,3,1672319033),(112212,7,27428,3,1672319033),(112213,7,27429,3,1672319033),(112214,7,27430,3,1672319033),(112215,7,27431,3,1672319033),(112216,7,27432,3,1672319033),(112217,7,27433,3,1672319033),(112218,7,27434,3,1672319033),(112219,7,27435,3,1672319033),(112220,7,27436,3,1672319033),(112221,7,27437,3,1672319033),(112222,7,27438,3,1672319033),(112223,7,27439,3,1672319033),(112224,7,27440,3,1672319033),(112225,7,27441,3,1672319033),(112226,7,27442,3,1672319033),(112227,7,27443,3,1672319033),(112228,7,27444,3,1672319033),(112229,7,27445,3,1672319033),(112230,7,27446,3,1672319033),(112231,7,27447,3,1672319033),(112232,7,27479,3,1672319033),(112233,7,27480,3,1672319033),(112234,7,27481,3,1672319033),(112235,7,27482,3,1672319033),(112236,7,27483,3,1672319033),(112237,7,27484,3,1672319033),(112238,7,27485,3,1672319033),(112239,7,27486,3,1672319033),(112240,7,27487,3,1672319033),(112241,7,27488,3,1672319033),(112242,7,27489,3,1672319033),(112243,7,27490,3,1672319033),(112244,7,27491,3,1672319033),(112245,7,27492,3,1672319033),(112246,7,27493,3,1672319033),(112247,7,27494,3,1672319033),(112248,7,27495,3,1672319033),(112249,7,27496,3,1672319033),(112250,7,27497,3,1672319033),(112251,7,27498,3,1672319033),(112252,7,27499,3,1672319033),(112253,7,27500,3,1672319033),(112254,7,27501,3,1672319033),(112255,7,27502,3,1672319033),(112256,7,27503,3,1672319033),(112257,7,27504,3,1672319033),(112258,7,27505,3,1672319033),(112259,7,27506,3,1672319033),(112260,7,27538,3,1672319033),(112261,7,27539,3,1672319033),(112262,7,27540,3,1672319033),(112263,7,27541,3,1672319033),(112264,7,27542,3,1672319033),(112265,7,27543,3,1672319033),(112266,7,27544,3,1672319033),(112267,7,27545,3,1672319033),(112268,7,27546,3,1672319033),(112269,7,27547,3,1672319033),(112270,7,27548,3,1672319033),(112271,7,27549,3,1672319033),(112272,7,27550,3,1672319033),(112273,7,27551,3,1672319033),(112274,7,27552,3,1672319033),(112275,7,27553,3,1672319033),(112276,7,27554,3,1672319033),(112277,7,27555,3,1672319033),(112278,7,27556,3,1672319033),(112279,7,27557,3,1672319033),(112280,7,27558,3,1672319033),(112281,7,27559,3,1672319033),(112282,7,27560,3,1672319033),(112283,7,27561,3,1672319033),(112284,7,27562,3,1672319033),(112285,7,27563,3,1672319033),(112286,7,27564,3,1672319033),(112287,7,27565,3,1672319033),(112288,7,27597,3,1672319033),(112289,7,27598,3,1672319033),(112290,7,27599,3,1672319033),(112291,7,27600,3,1672319033),(112292,7,27601,3,1672319033),(112293,7,27602,3,1672319033),(112294,7,27603,3,1672319033),(112295,7,27604,3,1672319033),(112296,7,27605,3,1672319033),(112297,7,27606,3,1672319033),(112298,7,27607,3,1672319033),(112299,7,27608,3,1672319033),(112300,7,27609,3,1672319033),(112301,7,27610,3,1672319033),(112302,7,27611,3,1672319033),(112303,7,27612,3,1672319033),(112304,7,27613,3,1672319033),(112305,7,27614,3,1672319033),(112306,7,27615,3,1672319033),(112307,7,27616,3,1672319033),(112308,7,27617,3,1672319033),(112309,7,27618,3,1672319033),(112310,7,27619,3,1672319033),(112311,7,27620,3,1672319033),(112312,7,27621,3,1672319033),(112313,7,27622,3,1672319033),(112314,7,27623,3,1672319033),(112315,7,27624,3,1672319033),(112316,7,27656,3,1672319033),(112317,7,27657,3,1672319033),(112318,7,27658,3,1672319033),(112319,7,27659,3,1672319033),(112320,7,27660,3,1672319033),(112321,7,27661,3,1672319033),(112322,7,27662,3,1672319033),(112323,7,27663,3,1672319033),(112324,7,27664,3,1672319033),(112325,7,27665,3,1672319033),(112326,7,27666,3,1672319033),(112327,7,27667,3,1672319033),(112328,7,27668,3,1672319033),(112329,7,27669,3,1672319033),(112330,7,27670,3,1672319033),(112331,7,27671,3,1672319033),(112332,7,27672,3,1672319033),(112333,7,27673,3,1672319033),(112334,7,27674,3,1672319033),(112335,7,27675,3,1672319033),(112336,7,27676,3,1672319033),(112337,7,27677,3,1672319033),(112338,7,27678,3,1672319033),(112339,7,27679,3,1672319033),(112340,7,27680,3,1672319033),(112341,7,27681,3,1672319033),(112342,7,27682,3,1672319033),(112343,7,27683,3,1672319033),(112344,7,27715,3,1672319033),(112345,7,27716,3,1672319033),(112346,7,27717,3,1672319033),(112347,7,27718,3,1672319033),(112348,7,27719,3,1672319033),(112349,7,27720,3,1672319033),(112350,7,27721,3,1672319033),(112351,7,27722,3,1672319033),(112352,7,27723,3,1672319033),(112353,7,27724,3,1672319033),(112354,7,27725,3,1672319033),(112355,7,27726,3,1672319033),(112356,7,27727,3,1672319033),(112357,7,27728,3,1672319033),(112358,7,27729,3,1672319033),(112359,7,27730,3,1672319033),(112360,7,27731,3,1672319033),(112361,7,27732,3,1672319033),(112362,7,27733,3,1672319033),(112363,7,27734,3,1672319033),(112364,7,27735,3,1672319033),(112365,7,27736,3,1672319033),(112366,7,27737,3,1672319033),(112367,7,27738,3,1672319033),(112368,7,27739,3,1672319033),(112369,7,27740,3,1672319033),(112370,7,27741,3,1672319033),(112371,7,27742,3,1672319033),(112372,7,27774,3,1672319033),(112373,7,27775,3,1672319033),(112374,7,27776,3,1672319033),(112375,7,27777,3,1672319033),(112376,7,27778,3,1672319033),(112377,7,27779,3,1672319033),(112378,7,27780,3,1672319033),(112379,7,27781,3,1672319033),(112380,7,27782,3,1672319033),(112381,7,27783,3,1672319033),(112382,7,27784,3,1672319033),(112383,7,27785,3,1672319033),(112384,7,27786,3,1672319033),(112385,7,27787,3,1672319033),(112386,7,27788,3,1672319033),(112387,7,27789,3,1672319033),(112388,7,27790,3,1672319033),(112389,7,27791,3,1672319033),(112390,7,27792,3,1672319033),(112391,7,27793,3,1672319033),(112392,7,27794,3,1672319033),(112393,7,27795,3,1672319033),(112394,7,27796,3,1672319033),(112395,7,27797,3,1672319033),(112396,7,27798,3,1672319033),(112397,7,27799,3,1672319033),(112398,7,27800,3,1672319033),(112399,7,27801,3,1672319033),(112400,7,27833,3,1672319033),(112401,7,27834,3,1672319033),(112402,7,27835,3,1672319033),(112403,7,27836,3,1672319033),(112404,7,27837,3,1672319033),(112405,7,27838,3,1672319033),(112406,7,27839,3,1672319033),(112407,7,27840,3,1672319033),(112408,7,27841,3,1672319033),(112409,7,27842,3,1672319033),(112410,7,27843,3,1672319033),(112411,7,27844,3,1672319033),(112412,7,27845,3,1672319033),(112413,7,27846,3,1672319033),(112414,7,27847,3,1672319033),(112415,7,27848,3,1672319033),(112416,7,27849,3,1672319033),(112417,7,27850,3,1672319033),(112418,7,27851,3,1672319033),(112419,7,27852,3,1672319033),(112420,7,27853,3,1672319033),(112421,7,27854,3,1672319033),(112422,7,27855,3,1672319033),(112423,7,27856,3,1672319033),(112424,7,27857,3,1672319033),(112425,7,27858,3,1672319033),(112426,7,27859,3,1672319033),(112427,7,27860,3,1672319033),(112428,7,27892,3,1672319033),(112429,7,27893,3,1672319033),(112430,7,27894,3,1672319033),(112431,7,27895,3,1672319033),(112432,7,27896,3,1672319033),(112433,7,27897,3,1672319033),(112434,7,27898,3,1672319033),(112435,7,27899,3,1672319033),(112436,7,27900,3,1672319033),(112437,7,27901,3,1672319033),(112438,7,27902,3,1672319033),(112439,7,27903,3,1672319033),(112440,7,27904,3,1672319033),(112441,7,27905,3,1672319033),(112442,7,27906,3,1672319033),(112443,7,27907,3,1672319033),(112444,7,27908,3,1672319033),(112445,7,27909,3,1672319033),(112446,7,27910,3,1672319033),(112447,7,27911,3,1672319033),(112448,7,27912,3,1672319033),(112449,7,27913,3,1672319033),(112450,7,27914,3,1672319033),(112451,7,27915,3,1672319033),(112452,7,27916,3,1672319033),(112453,7,27917,3,1672319033),(112454,7,27918,3,1672319033),(112455,7,27919,3,1672319033),(112456,7,27951,3,1672319033),(112457,7,27952,3,1672319033),(112458,7,27953,3,1672319033),(112459,7,27954,3,1672319033),(112460,7,27955,3,1672319033),(112461,7,27956,3,1672319033),(112462,7,27957,3,1672319033),(112463,7,27958,3,1672319033),(112464,7,27959,3,1672319033),(112465,7,27960,3,1672319033),(112466,7,27961,3,1672319033),(112467,7,27962,3,1672319033),(112468,7,27963,3,1672319033),(112469,7,27964,3,1672319033),(112470,7,27965,3,1672319033),(112471,7,27966,3,1672319033),(112472,7,27967,3,1672319033),(112473,7,27968,3,1672319033),(112474,7,27969,3,1672319033),(112475,7,27970,3,1672319033),(112476,7,27971,3,1672319033),(112477,7,27972,3,1672319033),(112478,7,27973,3,1672319033),(112479,7,27974,3,1672319033),(112480,7,27975,3,1672319033),(112481,7,27976,3,1672319033),(112482,7,27977,3,1672319033),(112483,7,27978,3,1672319033),(112484,7,28010,3,1672319033),(112485,7,28011,3,1672319033),(112486,7,28012,3,1672319033),(112487,7,28013,3,1672319033),(112488,7,28014,3,1672319033),(112489,7,28015,3,1672319033),(112490,7,28016,3,1672319033),(112491,7,28017,3,1672319033),(112492,7,28018,3,1672319033),(112493,7,28019,3,1672319033),(112494,7,28020,3,1672319033),(112495,7,28021,3,1672319033),(112496,7,28022,3,1672319033),(112497,7,28023,3,1672319033),(112498,7,28024,3,1672319033),(112499,7,28025,3,1672319033),(112500,7,28026,3,1672319033),(112501,7,28027,3,1672319033),(112502,7,28028,3,1672319033),(112503,7,28029,3,1672319033),(112504,7,28030,3,1672319033),(112505,7,28031,3,1672319033),(112506,7,28032,3,1672319033),(112507,7,28033,3,1672319033),(112508,7,28034,3,1672319033),(112509,7,28035,3,1672319033),(112510,7,28036,3,1672319033),(112511,7,28037,3,1672319033),(112512,7,28069,3,1672319033),(112513,7,28070,3,1672319033),(112514,7,28071,3,1672319033),(112515,7,28072,3,1672319033),(112516,7,28073,3,1672319033),(112517,7,28074,3,1672319033),(112518,7,28075,3,1672319033),(112519,7,28076,3,1672319033),(112520,7,28077,3,1672319033),(112521,7,28078,3,1672319033),(112522,7,28079,3,1672319033),(112523,7,28080,3,1672319033),(112524,7,28081,3,1672319033),(112525,7,28082,3,1672319033),(112526,7,28083,3,1672319033),(112527,7,28084,3,1672319033),(112528,7,28085,3,1672319033),(112529,7,28086,3,1672319033),(112530,7,28087,3,1672319033),(112531,7,28088,3,1672319033),(112532,7,28089,3,1672319033),(112533,7,28090,3,1672319033),(112534,7,28091,3,1672319033),(112535,7,28092,3,1672319033),(112536,7,28093,3,1672319033),(112537,7,28094,3,1672319033),(112538,7,28095,3,1672319033),(112539,7,28096,3,1672319033),(112540,7,28128,3,1672319033),(112541,7,28129,3,1672319033),(112542,7,28130,3,1672319033),(112543,7,28131,3,1672319033),(112544,7,28132,3,1672319033),(112545,7,28133,3,1672319033),(112546,7,28134,3,1672319033),(112547,7,28135,3,1672319033),(112548,7,28136,3,1672319033),(112549,7,28137,3,1672319033),(112550,7,28138,3,1672319033),(112551,7,28139,3,1672319033),(112552,7,28140,3,1672319033),(112553,7,28141,3,1672319033),(112554,7,28142,3,1672319033),(112555,7,28143,3,1672319033),(112556,7,28144,3,1672319033),(112557,7,28145,3,1672319033),(112558,7,28146,3,1672319033),(112559,7,28147,3,1672319033),(112560,7,28148,3,1672319033),(112561,7,28149,3,1672319033),(112562,7,28150,3,1672319033),(112563,7,28151,3,1672319033),(112564,7,28152,3,1672319033),(112565,7,28153,3,1672319033),(112566,7,28154,3,1672319033),(112567,7,28155,3,1672319033),(112568,7,28187,3,1672319033),(112569,7,28188,3,1672319033),(112570,7,28189,3,1672319033),(112571,7,28190,3,1672319033),(112572,7,28191,3,1672319033),(112573,7,28192,3,1672319033),(112574,7,28193,3,1672319033),(112575,7,28194,3,1672319033),(112576,7,28195,3,1672319033),(112577,7,28196,3,1672319033),(112578,7,28197,3,1672319033),(112579,7,28198,3,1672319033),(112580,7,28199,3,1672319033),(112581,7,28200,3,1672319033),(112582,7,28201,3,1672319033),(112583,7,28202,3,1672319033),(112584,7,28203,3,1672319033),(112585,7,28204,3,1672319033),(112586,7,28205,3,1672319033),(112587,7,28206,3,1672319033),(112588,7,28207,3,1672319033),(112589,7,28208,3,1672319033),(112590,7,28209,3,1672319033),(112591,7,28210,3,1672319033),(112592,7,28211,3,1672319033),(112593,7,28212,3,1672319033),(112594,7,28213,3,1672319033),(112595,7,28214,3,1672319033),(112596,7,28223,3,1672319033),(112597,7,28224,3,1672319033),(112598,7,28225,3,1672319033),(112599,7,28226,3,1672319033),(112600,7,28227,3,1672319033),(112601,7,28228,3,1672319033),(112602,7,28229,3,1672319033),(112603,7,28230,3,1672319033),(112604,7,28231,3,1672319033),(112605,7,28232,3,1672319033),(112606,7,28233,3,1672319033),(112607,7,28234,3,1672319033),(112608,7,28235,3,1672319033),(112609,7,28236,3,1672319033),(112610,7,28237,3,1672319033),(112611,7,28238,3,1672319033),(112612,7,28239,3,1672319033),(112613,7,28242,3,1672319033),(112614,7,28243,3,1672319033),(112615,7,28246,3,1672319033),(112616,7,28247,3,1672319033),(112617,7,28248,3,1672319033),(112618,7,28249,3,1672319033),(112619,7,28250,3,1672319033),(112620,7,28251,3,1672319033),(112621,7,28252,3,1672319033),(112622,7,28253,3,1672319033),(112623,7,28255,3,1672319033),(112624,7,28258,3,1672319033),(112625,7,28259,3,1672319033),(112626,7,28262,3,1672319033),(112627,7,28263,3,1672319033),(112628,7,28264,3,1672319033),(112629,7,28265,3,1672319033),(112630,7,28266,3,1672319033),(112631,7,28267,3,1672319033),(112632,7,28268,3,1672319033),(112633,7,28269,3,1672319033),(112634,7,28270,3,1672319033),(112635,7,28271,3,1672319033),(112636,7,28272,3,1672319033),(112637,7,28273,3,1672319033),(112638,7,28274,3,1672319033),(112639,7,28275,3,1672319033),(112640,7,28276,3,1672319033),(112641,7,28277,3,1672319033),(112642,7,28278,3,1672319033),(112643,7,28279,3,1672319033),(112644,7,28280,3,1672319033),(112645,7,28281,3,1672319033),(112646,7,28282,3,1672319033),(112647,7,28283,3,1672319033),(112648,7,28284,3,1672319033),(112649,7,28285,3,1672319033),(112650,7,28286,3,1672319033),(112651,7,28287,3,1672319033),(112652,7,28288,3,1672319033),(112653,7,28289,3,1672319033),(112654,7,28290,3,1672319033),(112655,7,28291,3,1672319033),(112656,7,28292,3,1672319033),(112657,7,28293,3,1672319033),(112658,7,28294,3,1672319033),(112659,7,28296,3,1672319033),(112660,7,28297,3,1672319033),(112661,7,28299,3,1672319033),(112662,7,28300,3,1672319033),(112663,7,28301,3,1672319033),(112664,7,28304,3,1672319033),(112665,7,28306,3,1672319033),(112666,7,28307,3,1672319033),(112667,7,28308,3,1672319033),(112668,7,28309,3,1672319033),(112669,7,28310,3,1672319033),(112670,7,28311,3,1672319033),(112671,7,28315,3,1672319033),(112672,7,28316,3,1672319033),(112673,7,28317,3,1672319033),(112674,7,28318,3,1672319033),(112675,7,28319,3,1672319033),(112676,7,28320,3,1672319033),(112677,7,28326,3,1672319033),(112678,7,28336,3,1672319033),(112679,7,28337,3,1672319033),(112680,7,28338,3,1672319033),(112681,7,28339,3,1672319033),(112682,7,28340,3,1672319033),(112683,7,28341,3,1672319033),(112684,7,28342,3,1672319033),(112685,7,28343,3,1672319033),(112686,7,28344,3,1672319033),(112687,7,28345,3,1672319033),(112688,7,28346,3,1672319033),(112689,7,28347,3,1672319033),(112690,7,28348,3,1672319033),(112691,7,28349,3,1672319033),(112692,7,28360,3,1672319033),(112693,7,28361,3,1672319033),(112694,7,28362,3,1672319033),(112695,7,28363,3,1672319033),(112696,7,28364,3,1672319033),(112697,7,28365,3,1672319033),(112698,7,28367,3,1672319033),(112699,7,28368,3,1672319033),(112700,7,28369,3,1672319033),(112701,7,28370,3,1672319033),(112702,7,28371,3,1672319033),(112703,7,28372,3,1672319033),(112704,7,28373,3,1672319033),(112705,7,28374,3,1672319033),(112706,7,28375,3,1672319033),(112707,7,28376,3,1672319033),(112708,7,28377,3,1672319033),(112709,7,28378,3,1672319033),(112710,7,28379,3,1672319033),(112711,7,28380,3,1672319033),(112712,7,28381,3,1672319033),(112713,7,28382,3,1672319033),(112714,7,28383,3,1672319033),(112715,7,28384,3,1672319033),(112716,7,28385,3,1672319033),(112717,7,28386,3,1672319033),(112718,7,28387,3,1672319033),(112719,7,28388,3,1672319033),(112720,7,28389,3,1672319033),(112721,7,28390,3,1672319033),(112722,7,28391,3,1672319033),(112723,7,28392,3,1672319033),(112724,7,28393,3,1672319033),(112725,7,28394,3,1672319033),(112726,7,28395,3,1672319033),(112727,7,28396,3,1672319033),(112728,7,28398,3,1672319033),(112729,7,28399,3,1672319033),(112730,7,28400,3,1672319033),(112731,7,28401,3,1672319033),(112732,7,28402,3,1672319033),(112733,7,28403,3,1672319033),(112734,7,28404,3,1672319033),(112735,7,28405,3,1672319033),(112736,7,28406,3,1672319033),(112737,7,28407,3,1672319033),(112738,7,28408,3,1672319033),(112739,7,28409,3,1672319033),(112740,7,28410,3,1672319033),(112741,7,28411,3,1672319033),(112742,7,28412,3,1672319033),(112743,7,28413,3,1672319033),(112744,7,28414,3,1672319033),(112745,7,28415,3,1672319033),(112746,7,28416,3,1672319033),(112747,7,28417,3,1672319033),(112748,7,28418,3,1672319033),(112749,7,28419,3,1672319033),(112750,7,28420,3,1672319033),(112751,7,28421,3,1672319033),(112752,7,28422,3,1672319033),(112753,7,28423,3,1672319033),(112754,7,28424,3,1672319033),(112755,7,28425,3,1672319033),(112756,7,28684,3,1672319033),(112757,7,28695,3,1672319033),(112758,7,28714,3,1672319033),(112759,7,28715,3,1672319033),(112760,7,28716,3,1672319033),(112761,7,28717,3,1672319033),(112762,7,28718,3,1672319033),(112763,7,28719,3,1672319033),(112764,7,28721,3,1672319033),(112765,7,28722,3,1672319033),(112766,7,28723,3,1672319033),(112767,7,28724,3,1672319033),(112768,7,28725,3,1672319033),(112769,7,28726,3,1672319033),(112770,7,28727,3,1672319033),(112771,7,28728,3,1672319033),(112772,7,28729,3,1672319033),(112773,7,28730,3,1672319033),(112774,7,28731,3,1672319033),(112775,7,28732,3,1672319033),(112776,7,28733,3,1672319033),(112777,7,28734,3,1672319033),(112778,7,28735,3,1672319033),(112779,7,28736,3,1672319033),(112780,7,28737,3,1672319033),(112781,7,28738,3,1672319033),(112782,7,28739,3,1672319033),(112783,7,28740,3,1672319033),(112784,7,28741,3,1672319033),(112785,7,28742,3,1672319033),(112786,7,28743,3,1672319033),(112787,7,28744,3,1672319033),(112788,7,28746,3,1672319033),(112789,7,28747,3,1672319033),(112790,7,28748,3,1672319033),(112791,7,28749,3,1672319033),(112792,7,28750,3,1672319033),(112793,7,28751,3,1672319033),(112794,7,28752,3,1672319033),(112795,7,28753,3,1672319033),(112796,7,28754,3,1672319033),(112797,7,28755,3,1672319033),(112798,7,28756,3,1672319033),(112799,7,28757,3,1672319033),(112800,7,28758,3,1672319033),(112801,7,28759,3,1672319033),(112802,7,28760,3,1672319033),(112803,7,28761,3,1672319033),(112804,7,28762,3,1672319033),(112805,7,28771,3,1672319033),(112806,7,28772,3,1672319033),(112807,7,28773,3,1672319033),(112808,7,28774,3,1672319033),(112809,7,28775,3,1672319033),(112810,7,28776,3,1672319033),(112811,7,28777,3,1672319033),(112812,7,28779,3,1672319033),(112813,7,28780,3,1672319033),(112814,7,28781,3,1672319033),(112815,7,28782,3,1672319033),(112816,7,28783,3,1672319033),(112817,7,28784,3,1672319033),(112818,7,28785,3,1672319033),(112819,7,28786,3,1672319033),(112820,7,28787,3,1672319033),(112821,7,28788,3,1672319033),(112822,7,28789,3,1672319033),(112823,7,28790,3,1672319033),(112824,7,28791,3,1672319033),(112825,7,28792,3,1672319033),(112826,7,28793,3,1672319033),(112827,7,28794,3,1672319033),(112828,7,28795,3,1672319033),(112829,7,28796,3,1672319033),(112830,7,28797,3,1672319033),(112831,7,28798,3,1672319033),(112832,7,28799,3,1672319033),(112833,7,28800,3,1672319033),(112834,7,28801,3,1672319033),(112835,7,28803,3,1672319033),(112836,7,28804,3,1672319033),(112837,7,28805,3,1672319033),(112838,7,28806,3,1672319033),(112839,7,28807,3,1672319033),(112840,7,28808,3,1672319033),(112841,7,28809,3,1672319033),(112842,7,28810,3,1672319033),(112843,7,28811,3,1672319033),(112844,7,28813,3,1672319033),(112845,7,28814,3,1672319033),(112846,7,28815,3,1672319033),(112847,7,28816,3,1672319033),(112848,7,28817,3,1672319033),(112849,7,28818,3,1672319033),(112850,7,28819,3,1672319033),(112851,7,28820,3,1672319033),(112852,7,28821,3,1672319033),(112853,7,28822,3,1672319033),(112854,7,28823,3,1672319033),(112855,7,28824,3,1672319033),(112856,7,28825,3,1672319033),(112857,7,28826,3,1672319033),(112858,7,28827,3,1672319033),(112859,7,28828,3,1672319033),(112860,7,28829,3,1672319033),(112861,7,28830,3,1672319033),(112862,7,28831,3,1672319033),(112863,7,28832,3,1672319033),(112864,7,28833,3,1672319033),(112865,7,28834,3,1672319033),(112866,7,28835,3,1672319033),(112867,7,28836,3,1672319033),(112868,7,28837,3,1672319033),(112869,7,28838,3,1672319033),(112870,7,28839,3,1672319033),(112871,7,28840,3,1672319033),(112872,7,28841,3,1672319033),(112873,7,28842,3,1672319033),(112874,7,28843,3,1672319033),(112875,7,28844,3,1672319033),(112876,7,28845,3,1672319033),(112877,7,28846,3,1672319033),(112878,7,28847,3,1672319033),(112879,7,28848,3,1672319033),(112880,7,28849,3,1672319033),(112881,7,28850,3,1672319033),(112882,7,28851,3,1672319033),(112883,7,28852,3,1672319033),(112884,7,28853,3,1672319033),(112885,7,28854,3,1672319033),(112886,7,28855,3,1672319033),(112887,7,28856,3,1672319033),(112888,7,28857,3,1672319033),(112889,7,28859,3,1672319033),(112890,7,28860,3,1672319033),(112891,7,28861,3,1672319033),(112892,7,28862,3,1672319033),(112893,7,28863,3,1672319033),(112894,7,28864,3,1672319033),(112895,7,28865,3,1672319033),(112896,7,28866,3,1672319033),(112897,7,28867,3,1672319033),(112898,7,28868,3,1672319033),(112899,7,28869,3,1672319033),(112900,7,28870,3,1672319033),(112901,7,28871,3,1672319033),(112902,7,28873,3,1672319033),(112903,7,28874,3,1672319033),(112904,7,28875,3,1672319033),(112905,7,28876,3,1672319033),(112906,7,28877,3,1672319033),(112907,7,28878,3,1672319033),(112908,7,28879,3,1672319033),(112909,7,28880,3,1672319033),(112910,7,28881,3,1672319033),(112911,7,28882,3,1672319033),(112912,7,28883,3,1672319033),(112913,7,28884,3,1672319033),(112914,7,28885,3,1672319033),(112915,7,28887,3,1672319033),(112916,7,28888,3,1672319033),(112917,7,28889,3,1672319033),(112918,7,28890,3,1672319033),(112919,7,28891,3,1672319033),(112920,7,28892,3,1672319033),(112921,7,28893,3,1672319033),(112922,7,28894,3,1672319033),(112923,7,28895,3,1672319033),(112924,7,28896,3,1672319033),(112925,7,28897,3,1672319033),(112926,7,28898,3,1672319033),(112927,7,28899,3,1672319033),(112928,7,28900,3,1672319033),(112929,7,28901,3,1672319033),(112930,7,28902,3,1672319033),(112931,7,28903,3,1672319033),(112932,7,28904,3,1672319033),(112933,7,28905,3,1672319033),(112934,7,28906,3,1672319033),(112935,7,28907,3,1672319033),(112936,7,28908,3,1672319033),(112937,7,28909,3,1672319033),(112938,7,28910,3,1672319033),(112939,7,28911,3,1672319033),(112940,7,28912,3,1672319033),(112941,7,28913,3,1672319033),(112942,7,28914,3,1672319033),(112943,7,28915,3,1672319033),(112944,7,28916,3,1672319033),(112945,7,28917,3,1672319033),(112946,7,28918,3,1672319033),(112947,7,28919,3,1672319033),(112948,7,28920,3,1672319033),(112949,7,28921,3,1672319033),(112950,7,28922,3,1672319033),(112951,7,28923,3,1672319033),(112952,7,28924,3,1672319033),(112953,7,28925,3,1672319033),(112954,7,28926,3,1672319033),(112955,7,28927,3,1672319033),(112956,7,28928,3,1672319033),(112957,7,28929,3,1672319033),(112958,7,28930,3,1672319033),(112959,7,28931,3,1672319033),(112960,7,28932,3,1672319033),(112961,7,28933,3,1672319033),(112962,7,28934,3,1672319033),(112963,7,28935,3,1672319033),(112964,7,28936,3,1672319033),(112965,7,28937,3,1672319033),(112966,7,28938,3,1672319033),(112967,7,28939,3,1672319033),(112968,7,28940,3,1672319033),(112969,7,28941,3,1672319033),(112970,7,28942,3,1672319033),(112971,7,28943,3,1672319033),(112972,7,28944,3,1672319033),(112973,7,28945,3,1672319033),(112974,7,28946,3,1672319033),(112975,7,28947,3,1672319033),(112976,7,28948,3,1672319033),(112977,7,28949,3,1672319033),(112978,7,28950,3,1672319033),(112979,7,28951,3,1672319033),(112980,7,28952,3,1672319033),(112981,7,28953,3,1672319033),(112982,7,28954,3,1672319033),(112983,7,28955,3,1672319033),(112984,7,28956,3,1672319033),(112985,7,28957,3,1672319033),(112986,7,28958,3,1672319033),(112987,7,28959,3,1672319033),(112988,7,28960,3,1672319033),(112989,7,28961,3,1672319033),(112990,7,28962,3,1672319033),(112991,7,28963,3,1672319033),(112992,7,28964,3,1672319033),(112993,7,28965,3,1672319033),(112994,7,28966,3,1672319033),(112995,7,28967,3,1672319033),(112996,7,28968,3,1672319033),(112997,7,28969,3,1672319033),(112998,7,28970,3,1672319033),(112999,7,28971,3,1672319033),(113000,7,28972,3,1672319033),(113001,7,28973,3,1672319033),(113002,7,28974,3,1672319033),(113003,7,28975,3,1672319033),(113004,7,28976,3,1672319033),(113005,7,28977,3,1672319033),(113006,7,28978,3,1672319033),(113007,7,28979,3,1672319033),(113008,7,28980,3,1672319033),(113009,7,28981,3,1672319033),(113010,7,28982,3,1672319033),(113011,7,28983,3,1672319033),(113012,7,28984,3,1672319033),(113013,7,28985,3,1672319033),(113014,7,28986,3,1672319033),(113015,7,28988,3,1672319033),(113016,7,28989,3,1672319033),(113017,7,28990,3,1672319033),(113018,7,28991,3,1672319033),(113019,7,28992,3,1672319033),(113020,7,28993,3,1672319033),(113021,7,28994,3,1672319033),(113022,7,28995,3,1672319033),(113023,7,28996,3,1672319033),(113024,7,28997,3,1672319033),(113025,7,28998,3,1672319033),(113026,7,28999,3,1672319033),(113027,7,29000,3,1672319033),(113028,7,29001,3,1672319033),(113029,7,29002,3,1672319033),(113030,7,29003,3,1672319033),(113031,7,29004,3,1672319033),(113032,7,29005,3,1672319033),(113033,7,29006,3,1672319033),(113034,7,29007,3,1672319033),(113035,7,29008,3,1672319033),(113036,7,29009,3,1672319033),(113037,7,29010,3,1672319033),(113038,7,29012,3,1672319033),(113039,7,29013,3,1672319033),(113040,7,29014,3,1672319033),(113041,7,29015,3,1672319033),(113042,7,29016,3,1672319033),(113043,7,29017,3,1672319033),(113044,7,29018,3,1672319033),(113045,7,29019,3,1672319033),(113046,7,29020,3,1672319033),(113047,7,29021,3,1672319033),(113048,7,29022,3,1672319033),(113049,7,29023,3,1672319033),(113050,7,29024,3,1672319033),(113051,7,29025,3,1672319033),(113052,7,29026,3,1672319033),(113053,7,29027,3,1672319033),(113054,7,29028,3,1672319033),(113055,7,29029,3,1672319033),(113056,7,29030,3,1672319033),(113057,7,29031,3,1672319033),(113058,7,29032,3,1672319033),(113059,7,29033,3,1672319033),(113060,7,29035,3,1672319033),(113061,7,29036,3,1672319033),(113062,7,29037,3,1672319033),(113063,7,29038,3,1672319033),(113064,7,29039,3,1672319033),(113065,7,29040,3,1672319033),(113066,7,29041,3,1672319033),(113067,7,29042,3,1672319033),(113068,7,29043,3,1672319033),(113069,7,29044,3,1672319033),(113070,7,29045,3,1672319033),(113071,7,29046,3,1672319033),(113072,7,29047,3,1672319033),(113073,7,29048,3,1672319033),(113074,7,29049,3,1672319033),(113075,7,29050,3,1672319033),(113076,7,29051,3,1672319033),(113077,7,29052,3,1672319033),(113078,7,29053,3,1672319033),(113079,7,29054,3,1672319033),(113080,7,29055,3,1672319033),(113081,7,29056,3,1672319033),(113082,7,29057,3,1672319033),(113083,7,29059,3,1672319033),(113084,7,29060,3,1672319033),(113085,7,29061,3,1672319033),(113086,7,29062,3,1672319033),(113087,7,29063,3,1672319033),(113088,7,29064,3,1672319033),(113089,7,29065,3,1672319033),(113090,7,29066,3,1672319033),(113091,7,29067,3,1672319033),(113092,7,29068,3,1672319033),(113093,7,29069,3,1672319033),(113094,7,29070,3,1672319033),(113095,7,29071,3,1672319033),(113096,7,29072,3,1672319033),(113097,7,29073,3,1672319033),(113098,7,29074,3,1672319033),(113099,7,29075,3,1672319033),(113100,7,29076,3,1672319033),(113101,7,29077,3,1672319033),(113102,7,29078,3,1672319033),(113103,7,29079,3,1672319033),(113104,7,29080,3,1672319033),(113105,7,29081,3,1672319033),(113106,7,29083,3,1672319033),(113107,7,29084,3,1672319033),(113108,7,29085,3,1672319033),(113109,7,29086,3,1672319033),(113110,7,29087,3,1672319033),(113111,7,29088,3,1672319033),(113112,7,29089,3,1672319033),(113113,7,29090,3,1672319033),(113114,7,29091,3,1672319033),(113115,7,29092,3,1672319033),(113116,7,29093,3,1672319033),(113117,7,29094,3,1672319033),(113118,7,29095,3,1672319033),(113119,7,29096,3,1672319033),(113120,7,29097,3,1672319033),(113121,7,29098,3,1672319033),(113122,7,29099,3,1672319033),(113123,7,29100,3,1672319033),(113124,7,29101,3,1672319033),(113125,7,29102,3,1672319033),(113126,7,29103,3,1672319033),(113127,7,29104,3,1672319033),(113128,7,29105,3,1672319033),(113129,7,29107,3,1672319033),(113130,7,29108,3,1672319033),(113131,7,29109,3,1672319033),(113132,7,29110,3,1672319033),(113133,7,29111,3,1672319033),(113134,7,29112,3,1672319033),(113135,7,29113,3,1672319033),(113136,7,29114,3,1672319033),(113137,7,29115,3,1672319033),(113138,7,29116,3,1672319033),(113139,7,29117,3,1672319033),(113140,7,29118,3,1672319033),(113141,7,29119,3,1672319033),(113142,7,29120,3,1672319033),(113143,7,29121,3,1672319033),(113144,7,29122,3,1672319033),(113145,7,29123,3,1672319033),(113146,7,29124,3,1672319033),(113147,7,29125,3,1672319033),(113148,7,29126,3,1672319033),(113149,7,29127,3,1672319033),(113150,7,29128,3,1672319033),(113151,7,29129,3,1672319033),(113152,7,29131,3,1672319033),(113153,7,29132,3,1672319033),(113154,7,29133,3,1672319033),(113155,7,29134,3,1672319033),(113156,7,29135,3,1672319033),(113157,7,29136,3,1672319033),(113158,7,29137,3,1672319033),(113159,7,29138,3,1672319033),(113160,7,29139,3,1672319033),(113161,7,29140,3,1672319033),(113162,7,29141,3,1672319033),(113163,7,29142,3,1672319033),(113164,7,29143,3,1672319033),(113165,7,29144,3,1672319033),(113166,7,29145,3,1672319033),(113167,7,29146,3,1672319033),(113168,7,29147,3,1672319033),(113169,7,29148,3,1672319033),(113170,7,29149,3,1672319033),(113171,7,29150,3,1672319033),(113172,7,29151,3,1672319033),(113173,7,29152,3,1672319033),(113174,7,29153,3,1672319033),(113175,7,29155,3,1672319033),(113176,7,29156,3,1672319033),(113177,7,29157,3,1672319033),(113178,7,29158,3,1672319033),(113179,7,29159,3,1672319033),(113180,7,29160,3,1672319033),(113181,7,29161,3,1672319033),(113182,7,29162,3,1672319033),(113183,7,29163,3,1672319033),(113184,7,29164,3,1672319033),(113185,7,29165,3,1672319033),(113186,7,29166,3,1672319033),(113187,7,29167,3,1672319033),(113188,7,29168,3,1672319033),(113189,7,29169,3,1672319033),(113190,7,29170,3,1672319033),(113191,7,29171,3,1672319033),(113192,7,29172,3,1672319033),(113193,7,29173,3,1672319033),(113194,7,29174,3,1672319033),(113195,7,29175,3,1672319033),(113196,7,29176,3,1672319033),(113197,7,29177,3,1672319033),(113198,7,29179,3,1672319033),(113199,7,29180,3,1672319033),(113200,7,29181,3,1672319033),(113201,7,29182,3,1672319033),(113202,7,29183,3,1672319033),(113203,7,29184,3,1672319033),(113204,7,29185,3,1672319033),(113205,7,29186,3,1672319033),(113206,7,29187,3,1672319033),(113207,7,29188,3,1672319033),(113208,7,29189,3,1672319033),(113209,7,29190,3,1672319033),(113210,7,29191,3,1672319033),(113211,7,29192,3,1672319033),(113212,7,29193,3,1672319033),(113213,7,29194,3,1672319033),(113214,7,29195,3,1672319033),(113215,7,29196,3,1672319033),(113216,7,29197,3,1672319033),(113217,7,29198,3,1672319033),(113218,7,29199,3,1672319033),(113219,7,29200,3,1672319033),(113220,7,29202,3,1672319033),(113221,7,29203,3,1672319033),(113222,7,29204,3,1672319033),(113223,7,29205,3,1672319033),(113224,7,29206,3,1672319033),(113225,7,29207,3,1672319033),(113226,7,29208,3,1672319033),(113227,7,29209,3,1672319033),(113228,7,29210,3,1672319033),(113229,7,29211,3,1672319033),(113230,7,29212,3,1672319033),(113231,7,29213,3,1672319033),(113232,7,29214,3,1672319033),(113233,7,29215,3,1672319033),(113234,7,29216,3,1672319033),(113235,7,29217,3,1672319033),(113236,7,29218,3,1672319033),(113237,7,29219,3,1672319033),(113238,7,29220,3,1672319033),(113239,7,29221,3,1672319033),(113240,7,29222,3,1672319033),(113241,7,29223,3,1672319033),(113242,7,29224,3,1672319033),(113243,7,29226,3,1672319033),(113244,7,29227,3,1672319033),(113245,7,29228,3,1672319033),(113246,7,29229,3,1672319033),(113247,7,29230,3,1672319033),(113248,7,29231,3,1672319033),(113249,7,29232,3,1672319033),(113250,7,29233,3,1672319033),(113251,7,29234,3,1672319033),(113252,7,29235,3,1672319033),(113253,7,29236,3,1672319033),(113254,7,29237,3,1672319033),(113255,7,29238,3,1672319033),(113256,7,29239,3,1672319033),(113257,7,29240,3,1672319033),(113258,7,29241,3,1672319033),(113259,7,29242,3,1672319033),(113260,7,29243,3,1672319033),(113261,7,29244,3,1672319033),(113262,7,29245,3,1672319033),(113263,7,29246,3,1672319033),(113264,7,29247,3,1672319033),(113265,7,29249,3,1672319033),(113266,7,29250,3,1672319033),(113267,7,29251,3,1672319033),(113268,7,29252,3,1672319033),(113269,7,29253,3,1672319033),(113270,7,29254,3,1672319033),(113271,7,29255,3,1672319033),(113272,7,29256,3,1672319033),(113273,7,29257,3,1672319033),(113274,7,29258,3,1672319033),(113275,7,29259,3,1672319033),(113276,7,29260,3,1672319033),(113277,7,29261,3,1672319033),(113278,7,29262,3,1672319033),(113279,7,29263,3,1672319033),(113280,7,29264,3,1672319033),(113281,7,29265,3,1672319033),(113282,7,29266,3,1672319033),(113283,7,29267,3,1672319033),(113284,7,29268,3,1672319033),(113285,7,29269,3,1672319033),(113286,7,29270,3,1672319033),(113287,7,29272,3,1672319033),(113288,7,29273,3,1672319033),(113289,7,29274,3,1672319033),(113290,7,29275,3,1672319033),(113291,7,29276,3,1672319033),(113292,7,29277,3,1672319033),(113293,7,29278,3,1672319033),(113294,7,29279,3,1672319033),(113295,7,29280,3,1672319033),(113296,7,29281,3,1672319033),(113297,7,29282,3,1672319033),(113298,7,29283,3,1672319033),(113299,7,29284,3,1672319033),(113300,7,29285,3,1672319033),(113301,7,29286,3,1672319033),(113302,7,29287,3,1672319033),(113303,7,29288,3,1672319033),(113304,7,29289,3,1672319033),(113305,7,29290,3,1672319033),(113306,7,29291,3,1672319033),(113307,7,29292,3,1672319033),(113308,7,29293,3,1672319033),(113309,7,29295,3,1672319033),(113310,7,29296,3,1672319033),(113311,7,29297,3,1672319033),(113312,7,29298,3,1672319033),(113313,7,29299,3,1672319033),(113314,7,29300,3,1672319033),(113315,7,29301,3,1672319033),(113316,7,29302,3,1672319033),(113317,7,29303,3,1672319033),(113318,7,29304,3,1672319033),(113319,7,29305,3,1672319033),(113320,7,29306,3,1672319033),(113321,7,29307,3,1672319033),(113322,7,29308,3,1672319033),(113323,7,29309,3,1672319033),(113324,7,29310,3,1672319033),(113325,7,29311,3,1672319033),(113326,7,29312,3,1672319033),(113327,7,29313,3,1672319033),(113328,7,29314,3,1672319033),(113329,7,29315,3,1672319033),(113330,7,29316,3,1672319033),(113331,7,29318,3,1672319033),(113332,7,29319,3,1672319033),(113333,7,29320,3,1672319033),(113334,7,29321,3,1672319033),(113335,7,29322,3,1672319033),(113336,7,29323,3,1672319033),(113337,7,29324,3,1672319033),(113338,7,29325,3,1672319033),(113339,7,29326,3,1672319033),(113340,7,29327,3,1672319033),(113341,7,29328,3,1672319033),(113342,7,29329,3,1672319033),(113343,7,29330,3,1672319033),(113344,7,29331,3,1672319033),(113345,7,29332,3,1672319033),(113346,7,29333,3,1672319033),(113347,7,29334,3,1672319033),(113348,7,29335,3,1672319033),(113349,7,29336,3,1672319033),(113350,7,29337,3,1672319033),(113351,7,29338,3,1672319033),(113352,7,29339,3,1672319033),(113353,7,29341,3,1672319033),(113354,7,29342,3,1672319033),(113355,7,29343,3,1672319033),(113356,7,29344,3,1672319033),(113357,7,29345,3,1672319033),(113358,7,29346,3,1672319033),(113359,7,29347,3,1672319033),(113360,7,29348,3,1672319033),(113361,7,29349,3,1672319033),(113362,7,29350,3,1672319033),(113363,7,29351,3,1672319033),(113364,7,29352,3,1672319033),(113365,7,29353,3,1672319033),(113366,7,29354,3,1672319033),(113367,7,29355,3,1672319033),(113368,7,29356,3,1672319033),(113369,7,29357,3,1672319033),(113370,7,29358,3,1672319033),(113371,7,29359,3,1672319033),(113372,7,29360,3,1672319033),(113373,7,29361,3,1672319033),(113374,7,29362,3,1672319033),(113375,7,29364,3,1672319033),(113376,7,29365,3,1672319033),(113377,7,29366,3,1672319033),(113378,7,29367,3,1672319033),(113379,7,29368,3,1672319033),(113380,7,29369,3,1672319033),(113381,7,29370,3,1672319033),(113382,7,29371,3,1672319033),(113383,7,29372,3,1672319033),(113384,7,29373,3,1672319033),(113385,7,29374,3,1672319033),(113386,7,29375,3,1672319033),(113387,7,29376,3,1672319033),(113388,7,29377,3,1672319033),(113389,7,29378,3,1672319033),(113390,7,29379,3,1672319033),(113391,7,29380,3,1672319033),(113392,7,29381,3,1672319033),(113393,7,29382,3,1672319033),(113394,7,29383,3,1672319033),(113395,7,29384,3,1672319033),(113396,7,29385,3,1672319033),(113397,7,29387,3,1672319033),(113398,7,29388,3,1672319033),(113399,7,29389,3,1672319033),(113400,7,29390,3,1672319033),(113401,7,29391,3,1672319033),(113402,7,29392,3,1672319033),(113403,7,29393,3,1672319033),(113404,7,29394,3,1672319033),(113405,7,29395,3,1672319033),(113406,7,29396,3,1672319033),(113407,7,29397,3,1672319033),(113408,7,29398,3,1672319033),(113409,7,29399,3,1672319033),(113410,7,29400,3,1672319033),(113411,7,29401,3,1672319033),(113412,7,29402,3,1672319033),(113413,7,29403,3,1672319033),(113414,7,29404,3,1672319033),(113415,7,29405,3,1672319033),(113416,7,29406,3,1672319033),(113417,7,29407,3,1672319033),(113418,7,29408,3,1672319033),(113419,7,29410,3,1672319033),(113420,7,29411,3,1672319033),(113421,7,29412,3,1672319033),(113422,7,29413,3,1672319033),(113423,7,29414,3,1672319033),(113424,7,29415,3,1672319033),(113425,7,29416,3,1672319033),(113426,7,29417,3,1672319033),(113427,7,29418,3,1672319033),(113428,7,29419,3,1672319033),(113429,7,29420,3,1672319033),(113430,7,29421,3,1672319033),(113431,7,29422,3,1672319033),(113432,7,29423,3,1672319033),(113433,7,29424,3,1672319033),(113434,7,29425,3,1672319033),(113435,7,29426,3,1672319033),(113436,7,29427,3,1672319033),(113437,7,29428,3,1672319033),(113438,7,29429,3,1672319033),(113439,7,29430,3,1672319033),(113440,7,29431,3,1672319033),(113441,7,29433,3,1672319033),(113442,7,29434,3,1672319033),(113443,7,29435,3,1672319033),(113444,7,29436,3,1672319033),(113445,7,29437,3,1672319033),(113446,7,29438,3,1672319033),(113447,7,29439,3,1672319033),(113448,7,29440,3,1672319033),(113449,7,29441,3,1672319033),(113450,7,29442,3,1672319033),(113451,7,29443,3,1672319033),(113452,7,29444,3,1672319033),(113453,7,29445,3,1672319033),(113454,7,29446,3,1672319033),(113455,7,29447,3,1672319033),(113456,7,29448,3,1672319033),(113457,7,29449,3,1672319033),(113458,7,29450,3,1672319033),(113459,7,29451,3,1672319033),(113460,7,29452,3,1672319033),(113461,7,29453,3,1672319033),(113462,7,29454,3,1672319033),(113463,7,29456,3,1672319033),(113464,7,29457,3,1672319033),(113465,7,29458,3,1672319033),(113466,7,29459,3,1672319033),(113467,7,29460,3,1672319033),(113468,7,29461,3,1672319033),(113469,7,29462,3,1672319033),(113470,7,29463,3,1672319033),(113471,7,29464,3,1672319033),(113472,7,29465,3,1672319033),(113473,7,29466,3,1672319033),(113474,7,29467,3,1672319033),(113475,7,29468,3,1672319033),(113476,7,29469,3,1672319033),(113477,7,29470,3,1672319033),(113478,7,29471,3,1672319033),(113479,7,29472,3,1672319033),(113480,7,29473,3,1672319033),(113481,7,29474,3,1672319033),(113482,7,29475,3,1672319033),(113483,7,29476,3,1672319033),(113484,7,29477,3,1672319033),(113485,7,29479,3,1672319033),(113486,7,29480,3,1672319033),(113487,7,29481,3,1672319033),(113488,7,29482,3,1672319033),(113489,7,29483,3,1672319033),(113490,7,29484,3,1672319033),(113491,7,29485,3,1672319033),(113492,7,29486,3,1672319033),(113493,7,29487,3,1672319033),(113494,7,29488,3,1672319033),(113495,7,29489,3,1672319033),(113496,7,29490,3,1672319033),(113497,7,29491,3,1672319033),(113498,7,29492,3,1672319033),(113499,7,29493,3,1672319033),(113500,7,29494,3,1672319033),(113501,7,29495,3,1672319033),(113502,7,29496,3,1672319033),(113503,7,29497,3,1672319033),(113504,7,29498,3,1672319033),(113505,7,29499,3,1672319033),(113506,7,29500,3,1672319033),(113507,7,29502,3,1672319033),(113508,7,29503,3,1672319033),(113509,7,29504,3,1672319033),(113510,7,29505,3,1672319033),(113511,7,29506,3,1672319033),(113512,7,29507,3,1672319033),(113513,7,29508,3,1672319033),(113514,7,29509,3,1672319033),(113515,7,29510,3,1672319033),(113516,7,29511,3,1672319033),(113517,7,29512,3,1672319033),(113518,7,29513,3,1672319033),(113519,7,29514,3,1672319033),(113520,7,29515,3,1672319033),(113521,7,29516,3,1672319033),(113522,7,29517,3,1672319033),(113523,7,29518,3,1672319033),(113524,7,29519,3,1672319033),(113525,7,29520,3,1672319033),(113526,7,29521,3,1672319033),(113527,7,29522,3,1672319033),(113528,7,29523,3,1672319033),(113529,7,29525,3,1672319033),(113530,7,29526,3,1672319033),(113531,7,29527,3,1672319033),(113532,7,29528,3,1672319033),(113533,7,29529,3,1672319033),(113534,7,29530,3,1672319033),(113535,7,29531,3,1672319033),(113536,7,29532,3,1672319033),(113537,7,29533,3,1672319033),(113538,7,29534,3,1672319033),(113539,7,29535,3,1672319033),(113540,7,29536,3,1672319033),(113541,7,29537,3,1672319033),(113542,7,29538,3,1672319033),(113543,7,29539,3,1672319033),(113544,7,29540,3,1672319033),(113545,7,29541,3,1672319033),(113546,7,29542,3,1672319033),(113547,7,29543,3,1672319033),(113548,7,29544,3,1672319033),(113549,7,29545,3,1672319033),(113550,7,29546,3,1672319033),(113551,7,29548,3,1672319033),(113552,7,29549,3,1672319033),(113553,7,29550,3,1672319033),(113554,7,29551,3,1672319033),(113555,7,29552,3,1672319033),(113556,7,29553,3,1672319033),(113557,7,29554,3,1672319033),(113558,7,29555,3,1672319033),(113559,7,29556,3,1672319033),(113560,7,29557,3,1672319033),(113561,7,29558,3,1672319033),(113562,7,29559,3,1672319033),(113563,7,29560,3,1672319033),(113564,7,29561,3,1672319033),(113565,7,29562,3,1672319033),(113566,7,29563,3,1672319033),(113567,7,29564,3,1672319033),(113568,7,29565,3,1672319033),(113569,7,29566,3,1672319033),(113570,7,29567,3,1672319033),(113571,7,29568,3,1672319033),(113572,7,29569,3,1672319033),(113573,7,29571,3,1672319033),(113574,7,29572,3,1672319033),(113575,7,29573,3,1672319033),(113576,7,29574,3,1672319033),(113577,7,29575,3,1672319033),(113578,7,29576,3,1672319033),(113579,7,29577,3,1672319033),(113580,7,29578,3,1672319033),(113581,7,29579,3,1672319033),(113582,7,29580,3,1672319033),(113583,7,29581,3,1672319033),(113584,7,29582,3,1672319033),(113585,7,29583,3,1672319033),(113586,7,29584,3,1672319033),(113587,7,29585,3,1672319033),(113588,7,29586,3,1672319033),(113589,7,29587,3,1672319033),(113590,7,29588,3,1672319033),(113591,7,29589,3,1672319033),(113592,7,29590,3,1672319033),(113593,7,29591,3,1672319033),(113594,7,29592,3,1672319033),(113595,7,29594,3,1672319033),(113596,7,29595,3,1672319033),(113597,7,29596,3,1672319033),(113598,7,29597,3,1672319033),(113599,7,29598,3,1672319033),(113600,7,29599,3,1672319033),(113601,7,29600,3,1672319033),(113602,7,29601,3,1672319033),(113603,7,29602,3,1672319033),(113604,7,29603,3,1672319033),(113605,7,29604,3,1672319033),(113606,7,29605,3,1672319033),(113607,7,29606,3,1672319033),(113608,7,29607,3,1672319033),(113609,7,29608,3,1672319033),(113610,7,29609,3,1672319033),(113611,7,29610,3,1672319033),(113612,7,29611,3,1672319033),(113613,7,29612,3,1672319033),(113614,7,29613,3,1672319033),(113615,7,29614,3,1672319033),(113616,7,29615,3,1672319033),(113617,7,29617,3,1672319033),(113618,7,29618,3,1672319033),(113619,7,29619,3,1672319033),(113620,7,29620,3,1672319033),(113621,7,29621,3,1672319033),(113622,7,29622,3,1672319033),(113623,7,29623,3,1672319033),(113624,7,29624,3,1672319033),(113625,7,29625,3,1672319033),(113626,7,29626,3,1672319033),(113627,7,29627,3,1672319033),(113628,7,29628,3,1672319033),(113629,7,29629,3,1672319033),(113630,7,29630,3,1672319033),(113631,7,29631,3,1672319033),(113632,7,29632,3,1672319033),(113633,7,29633,3,1672319033),(113634,7,29634,3,1672319033),(113635,7,29635,3,1672319033),(113636,7,29636,3,1672319033),(113637,7,29637,3,1672319033),(113638,7,29638,3,1672319033),(113639,7,29640,3,1672319033),(113640,7,29641,3,1672319033),(113641,7,29642,3,1672319033),(113642,7,29643,3,1672319033),(113643,7,29644,3,1672319033),(113644,7,29645,3,1672319033),(113645,7,29646,3,1672319033),(113646,7,29647,3,1672319033),(113647,7,29648,3,1672319033),(113648,7,29649,3,1672319033),(113649,7,29650,3,1672319033),(113650,7,29651,3,1672319033),(113651,7,29652,3,1672319033),(113652,7,29653,3,1672319033),(113653,7,29654,3,1672319033),(113654,7,29655,3,1672319033),(113655,7,29656,3,1672319033),(113656,7,29657,3,1672319033),(113657,7,29658,3,1672319033),(113658,7,29659,3,1672319033),(113659,7,29660,3,1672319033),(113660,7,29661,3,1672319033),(113661,7,29663,3,1672319033),(113662,7,29664,3,1672319033),(113663,7,29665,3,1672319033),(113664,7,29666,3,1672319033),(113665,7,29667,3,1672319033),(113666,7,29668,3,1672319033),(113667,7,29669,3,1672319033),(113668,7,29670,3,1672319033),(113669,7,29671,3,1672319033),(113670,7,29672,3,1672319033),(113671,7,29673,3,1672319033),(113672,7,29674,3,1672319033),(113673,7,29675,3,1672319033),(113674,7,29676,3,1672319033),(113675,7,29677,3,1672319033),(113676,7,29678,3,1672319033),(113677,7,29679,3,1672319033),(113678,7,29680,3,1672319033),(113679,7,29681,3,1672319033),(113680,7,29682,3,1672319033),(113681,7,29683,3,1672319033),(113682,7,29684,3,1672319033),(113683,7,29686,3,1672319033),(113684,7,29687,3,1672319033),(113685,7,29688,3,1672319033),(113686,7,29689,3,1672319033),(113687,7,29690,3,1672319033),(113688,7,29691,3,1672319033),(113689,7,29692,3,1672319033),(113690,7,29693,3,1672319033),(113691,7,29694,3,1672319033),(113692,7,29695,3,1672319033),(113693,7,29696,3,1672319033),(113694,7,29697,3,1672319033),(113695,7,29698,3,1672319033),(113696,7,29699,3,1672319033),(113697,7,29700,3,1672319033),(113698,7,29701,3,1672319033),(113699,7,29702,3,1672319033),(113700,7,29703,3,1672319033),(113701,7,29704,3,1672319033),(113702,7,29705,3,1672319033),(113703,7,29706,3,1672319033),(113704,7,29707,3,1672319033),(113705,7,29709,3,1672319033),(113706,7,29710,3,1672319033),(113707,7,29711,3,1672319033),(113708,7,29712,3,1672319033),(113709,7,29713,3,1672319033),(113710,7,29714,3,1672319033),(113711,7,29715,3,1672319033),(113712,7,29716,3,1672319033),(113713,7,29717,3,1672319033),(113714,7,29718,3,1672319033),(113715,7,29719,3,1672319033),(113716,7,29720,3,1672319033),(113717,7,29721,3,1672319033),(113718,7,29722,3,1672319033),(113719,7,29723,3,1672319033),(113720,7,29724,3,1672319033),(113721,7,29725,3,1672319033),(113722,7,29726,3,1672319033),(113723,7,29727,3,1672319033),(113724,7,29728,3,1672319033),(113725,7,29729,3,1672319033),(113726,7,29730,3,1672319033),(113727,7,29732,3,1672319033),(113728,7,29733,3,1672319033),(113729,7,29734,3,1672319033),(113730,7,29735,3,1672319033),(113731,7,29736,3,1672319033),(113732,7,29737,3,1672319033),(113733,7,29738,3,1672319033),(113734,7,29739,3,1672319033),(113735,7,29740,3,1672319033),(113736,7,29741,3,1672319033),(113737,7,29742,3,1672319033),(113738,7,29743,3,1672319033),(113739,7,29744,3,1672319033),(113740,7,29745,3,1672319033),(113741,7,29746,3,1672319033),(113742,7,29747,3,1672319033),(113743,7,29748,3,1672319033),(113744,7,29749,3,1672319033),(113745,7,29750,3,1672319033),(113746,7,29751,3,1672319033),(113747,7,29752,3,1672319033),(113748,7,29753,3,1672319033),(113749,7,29755,3,1672319033),(113750,7,29756,3,1672319033),(113751,7,29757,3,1672319033),(113752,7,29758,3,1672319033),(113753,7,29759,3,1672319033),(113754,7,29760,3,1672319033),(113755,7,29761,3,1672319033),(113756,7,29762,3,1672319033),(113757,7,29763,3,1672319033),(113758,7,29764,3,1672319033),(113759,7,29765,3,1672319033),(113760,7,29766,3,1672319033),(113761,7,29767,3,1672319033),(113762,7,29768,3,1672319033),(113763,7,29769,3,1672319033),(113764,7,29770,3,1672319033),(113765,7,29771,3,1672319033),(113766,7,29772,3,1672319033),(113767,7,29773,3,1672319033),(113768,7,29774,3,1672319033),(113769,7,29775,3,1672319033),(113770,7,29776,3,1672319033),(113771,7,29778,3,1672319033),(113772,7,29779,3,1672319033),(113773,7,29780,3,1672319033),(113774,7,29781,3,1672319033),(113775,7,29782,3,1672319033),(113776,7,29783,3,1672319033),(113777,7,29784,3,1672319033),(113778,7,29785,3,1672319033),(113779,7,29786,3,1672319033),(113780,7,29787,3,1672319033),(113781,7,29788,3,1672319033),(113782,7,29789,3,1672319033),(113783,7,29790,3,1672319033),(113784,7,29791,3,1672319033),(113785,7,29792,3,1672319033),(113786,7,29793,3,1672319033),(113787,7,29794,3,1672319033),(113788,7,29795,3,1672319033),(113789,7,29796,3,1672319033),(113790,7,29797,3,1672319033),(113791,7,29798,3,1672319033),(113792,7,29799,3,1672319033),(113793,7,29801,3,1672319033),(113794,7,29802,3,1672319033),(113795,7,29803,3,1672319033),(113796,7,29804,3,1672319033),(113797,7,29805,3,1672319033),(113798,7,29806,3,1672319033),(113799,7,29807,3,1672319033),(113800,7,29808,3,1672319033),(113801,7,29809,3,1672319033),(113802,7,29810,3,1672319033),(113803,7,29811,3,1672319033),(113804,7,29812,3,1672319033),(113805,7,29813,3,1672319033),(113806,7,29814,3,1672319033),(113807,7,29815,3,1672319033),(113808,7,29816,3,1672319033),(113809,7,29817,3,1672319033),(113810,7,29818,3,1672319033),(113811,7,29819,3,1672319033),(113812,7,29820,3,1672319033),(113813,7,29821,3,1672319033),(113814,7,29822,3,1672319033),(113815,7,29824,3,1672319033),(113816,7,29825,3,1672319033),(113817,7,29826,3,1672319033),(113818,7,29827,3,1672319033),(113819,7,29828,3,1672319033),(113820,7,29829,3,1672319033),(113821,7,29830,3,1672319033),(113822,7,29831,3,1672319033),(113823,7,29832,3,1672319033),(113824,7,29833,3,1672319033),(113825,7,29834,3,1672319033),(113826,7,29835,3,1672319033),(113827,7,29836,3,1672319033),(113828,7,29837,3,1672319033),(113829,7,29838,3,1672319033),(113830,7,29839,3,1672319033),(113831,7,29840,3,1672319033),(113832,7,29841,3,1672319033),(113833,7,29842,3,1672319033),(113834,7,29843,3,1672319033),(113835,7,29844,3,1672319033),(113836,7,29845,3,1672319033),(113837,7,29847,3,1672319033),(113838,7,29848,3,1672319033),(113839,7,29849,3,1672319033),(113840,7,29850,3,1672319033),(113841,7,29851,3,1672319033),(113842,7,29852,3,1672319033),(113843,7,29853,3,1672319033),(113844,7,29854,3,1672319033),(113845,7,29855,3,1672319033),(113846,7,29856,3,1672319033),(113847,7,29857,3,1672319033),(113848,7,29858,3,1672319033),(113849,7,29859,3,1672319033),(113850,7,29860,3,1672319033),(113851,7,29861,3,1672319033),(113852,7,29862,3,1672319033),(113853,7,29863,3,1672319033),(113854,7,29864,3,1672319033),(113855,7,29865,3,1672319033),(113856,7,29866,3,1672319033),(113857,7,29867,3,1672319033),(113858,7,29868,3,1672319033),(113859,7,29870,3,1672319033),(113860,7,29871,3,1672319033),(113861,7,29872,3,1672319033),(113862,7,29873,3,1672319033),(113863,7,29874,3,1672319033),(113864,7,29875,3,1672319033),(113865,7,29876,3,1672319033),(113866,7,29877,3,1672319033),(113867,7,29878,3,1672319033),(113868,7,29879,3,1672319033),(113869,7,29880,3,1672319033),(113870,7,29881,3,1672319033),(113871,7,29882,3,1672319033),(113872,7,29883,3,1672319033),(113873,7,29884,3,1672319033),(113874,7,29885,3,1672319033),(113875,7,29886,3,1672319033),(113876,7,29887,3,1672319033),(113877,7,29888,3,1672319033),(113878,7,29889,3,1672319033),(113879,7,29890,3,1672319033),(113880,7,29891,3,1672319033),(113881,7,29893,3,1672319033),(113882,7,29894,3,1672319033),(113883,7,29895,3,1672319033),(113884,7,29896,3,1672319033),(113885,7,29897,3,1672319033),(113886,7,29898,3,1672319033),(113887,7,29899,3,1672319033),(113888,7,29900,3,1672319033),(113889,7,29901,3,1672319033),(113890,7,29902,3,1672319033),(113891,7,29903,3,1672319033),(113892,7,29904,3,1672319033),(113893,7,29905,3,1672319033),(113894,7,29906,3,1672319033),(113895,7,29907,3,1672319033),(113896,7,29908,3,1672319033),(113897,7,29909,3,1672319033),(113898,7,29910,3,1672319033),(113899,7,29911,3,1672319033),(113900,7,29912,3,1672319033),(113901,7,29913,3,1672319033),(113902,7,29914,3,1672319033),(113903,7,29916,3,1672319033),(113904,7,29917,3,1672319033),(113905,7,29918,3,1672319033),(113906,7,29919,3,1672319033),(113907,7,29920,3,1672319033),(113908,7,29921,3,1672319033),(113909,7,29922,3,1672319033),(113910,7,29923,3,1672319033),(113911,7,29924,3,1672319033),(113912,7,29925,3,1672319033),(113913,7,29926,3,1672319033),(113914,7,29927,3,1672319033),(113915,7,29928,3,1672319033),(113916,7,29929,3,1672319033),(113917,7,29930,3,1672319033),(113918,7,29931,3,1672319033),(113919,7,29932,3,1672319033),(113920,7,29933,3,1672319033),(113921,7,29934,3,1672319033),(113922,7,29935,3,1672319033),(113923,7,29936,3,1672319033),(113924,7,29937,3,1672319033),(113925,7,29939,3,1672319033),(113926,7,29940,3,1672319033),(113927,7,29941,3,1672319033),(113928,7,29942,3,1672319033),(113929,7,29943,3,1672319033),(113930,7,29944,3,1672319033),(113931,7,29945,3,1672319033),(113932,7,29946,3,1672319033),(113933,7,29947,3,1672319033),(113934,7,29948,3,1672319033),(113935,7,29949,3,1672319033),(113936,7,29950,3,1672319033),(113937,7,29951,3,1672319033),(113938,7,29952,3,1672319033),(113939,7,29953,3,1672319033),(113940,7,29954,3,1672319033),(113941,7,29955,3,1672319033),(113942,7,29956,3,1672319033),(113943,7,29957,3,1672319033),(113944,7,29958,3,1672319033),(113945,7,29959,3,1672319033),(113946,7,29960,3,1672319033),(113947,7,29962,3,1672319033),(113948,7,29963,3,1672319033),(113949,7,29964,3,1672319033),(113950,7,29965,3,1672319033),(113951,7,29966,3,1672319033),(113952,7,29967,3,1672319033),(113953,7,29968,3,1672319033),(113954,7,29969,3,1672319033),(113955,7,29970,3,1672319033),(113956,7,29971,3,1672319033),(113957,7,29972,3,1672319033),(113958,7,29973,3,1672319033),(113959,7,29974,3,1672319033),(113960,7,29975,3,1672319033),(113961,7,29976,3,1672319033),(113962,7,29977,3,1672319033),(113963,7,29978,3,1672319033),(113964,7,29979,3,1672319033),(113965,7,29980,3,1672319033),(113966,7,29981,3,1672319033),(113967,7,29982,3,1672319033),(113968,7,29983,3,1672319033),(113969,7,29985,3,1672319033),(113970,7,29986,3,1672319033),(113971,7,29987,3,1672319033),(113972,7,29988,3,1672319033),(113973,7,29989,3,1672319033),(113974,7,29990,3,1672319033),(113975,7,29991,3,1672319033),(113976,7,29992,3,1672319033),(113977,7,29993,3,1672319033),(113978,7,29994,3,1672319033),(113979,7,29995,3,1672319033),(113980,7,29996,3,1672319033),(113981,7,29997,3,1672319033),(113982,7,29998,3,1672319033),(113983,7,29999,3,1672319033),(113984,7,30000,3,1672319033),(113985,7,30001,3,1672319033),(113986,7,30002,3,1672319033),(113987,7,30003,3,1672319033),(113988,7,30004,3,1672319033),(113989,7,30005,3,1672319033),(113990,7,30006,3,1672319033),(113991,7,30008,3,1672319033),(113992,7,30009,3,1672319033),(113993,7,30010,3,1672319033),(113994,7,30011,3,1672319033),(113995,7,30012,3,1672319033),(113996,7,30013,3,1672319033),(113997,7,30014,3,1672319033),(113998,7,30015,3,1672319033),(113999,7,30016,3,1672319033),(114000,7,30017,3,1672319033),(114001,7,30018,3,1672319033),(114002,7,30019,3,1672319033),(114003,7,30020,3,1672319033),(114004,7,30021,3,1672319033),(114005,7,30022,3,1672319033),(114006,7,30023,3,1672319033),(114007,7,30024,3,1672319033),(114008,7,30025,3,1672319033),(114009,7,30026,3,1672319033),(114010,7,30027,3,1672319033),(114011,7,30028,3,1672319033),(114012,7,30029,3,1672319033),(114013,7,30031,3,1672319033),(114014,7,30032,3,1672319033),(114015,7,30033,3,1672319033),(114016,7,30034,3,1672319033),(114017,7,30035,3,1672319033),(114018,7,30036,3,1672319033),(114019,7,30037,3,1672319033),(114020,7,30038,3,1672319033),(114021,7,30039,3,1672319033),(114022,7,30040,3,1672319033),(114023,7,30041,3,1672319033),(114024,7,30042,3,1672319033),(114025,7,30043,3,1672319033),(114026,7,30044,3,1672319033),(114027,7,30045,3,1672319033),(114028,7,30046,3,1672319033),(114029,7,30047,3,1672319033),(114030,7,30048,3,1672319033),(114031,7,30049,3,1672319033),(114032,7,30050,3,1672319033),(114033,7,30051,3,1672319033),(114034,7,30052,3,1672319033),(114035,7,30054,3,1672319033),(114036,7,30055,3,1672319033),(114037,7,30056,3,1672319033),(114038,7,30057,3,1672319033),(114039,7,30058,3,1672319033),(114040,7,30059,3,1672319033),(114041,7,30060,3,1672319033),(114042,7,30061,3,1672319033),(114043,7,30062,3,1672319033),(114044,7,30063,3,1672319033),(114045,7,30064,3,1672319033),(114046,7,30065,3,1672319033),(114047,7,30066,3,1672319033),(114048,7,30067,3,1672319033),(114049,7,30068,3,1672319033),(114050,7,30069,3,1672319033),(114051,7,30070,3,1672319033),(114052,7,30071,3,1672319033),(114053,7,30072,3,1672319033),(114054,7,30073,3,1672319033),(114055,7,30074,3,1672319033),(114056,7,30075,3,1672319033),(114057,7,30077,3,1672319033),(114058,7,30078,3,1672319033),(114059,7,30079,3,1672319033),(114060,7,30080,3,1672319033),(114061,7,30081,3,1672319033),(114062,7,30082,3,1672319033),(114063,7,30083,3,1672319033),(114064,7,30084,3,1672319033),(114065,7,30085,3,1672319033),(114066,7,30086,3,1672319033),(114067,7,30087,3,1672319033),(114068,7,30088,3,1672319033),(114069,7,30089,3,1672319033),(114070,7,30090,3,1672319033),(114071,7,30091,3,1672319033),(114072,7,30092,3,1672319033),(114073,7,30093,3,1672319033),(114074,7,30094,3,1672319033),(114075,7,30095,3,1672319033),(114076,7,30096,3,1672319033),(114077,7,30097,3,1672319033),(114078,7,30098,3,1672319033),(114079,7,30100,3,1672319033),(114080,7,30101,3,1672319033),(114081,7,30102,3,1672319033),(114082,7,30103,3,1672319033),(114083,7,30104,3,1672319033),(114084,7,30105,3,1672319033),(114085,7,30106,3,1672319033),(114086,7,30107,3,1672319033),(114087,7,30108,3,1672319033),(114088,7,30109,3,1672319033),(114089,7,30110,3,1672319033),(114090,7,30111,3,1672319033),(114091,7,30112,3,1672319033),(114092,7,30113,3,1672319033),(114093,7,30114,3,1672319033),(114094,7,30115,3,1672319033),(114095,7,30116,3,1672319033),(114096,7,30117,3,1672319033),(114097,7,30118,3,1672319033),(114098,7,30119,3,1672319033),(114099,7,30120,3,1672319033),(114100,7,30121,3,1672319033),(114101,7,30123,3,1672319033),(114102,7,30124,3,1672319033),(114103,7,30125,3,1672319033),(114104,7,30126,3,1672319033),(114105,7,30127,3,1672319033),(114106,7,30128,3,1672319033),(114107,7,30129,3,1672319033),(114108,7,30130,3,1672319033),(114109,7,30131,3,1672319033),(114110,7,30132,3,1672319033),(114111,7,30133,3,1672319033),(114112,7,30134,3,1672319033),(114113,7,30135,3,1672319033),(114114,7,30136,3,1672319033),(114115,7,30137,3,1672319033),(114116,7,30138,3,1672319033),(114117,7,30139,3,1672319033),(114118,7,30140,3,1672319033),(114119,7,30141,3,1672319033),(114120,7,30142,3,1672319033),(114121,7,30143,3,1672319033),(114122,7,30144,3,1672319033),(114123,7,30146,3,1672319033),(114124,7,30147,3,1672319033),(114125,7,30148,3,1672319033),(114126,7,30149,3,1672319033),(114127,7,30150,3,1672319033),(114128,7,30151,3,1672319033),(114129,7,30152,3,1672319033),(114130,7,30153,3,1672319033),(114131,7,30154,3,1672319033),(114132,7,30155,3,1672319033),(114133,7,30156,3,1672319033),(114134,7,30157,3,1672319033),(114135,7,30158,3,1672319033),(114136,7,30159,3,1672319033),(114137,7,30160,3,1672319033),(114138,7,30161,3,1672319033),(114139,7,30162,3,1672319033),(114140,7,30163,3,1672319033),(114141,7,30164,3,1672319033),(114142,7,30165,3,1672319033),(114143,7,30166,3,1672319033),(114144,7,30167,3,1672319033),(114145,7,30169,3,1672319033),(114146,7,30170,3,1672319033),(114147,7,30171,3,1672319033),(114148,7,30172,3,1672319033),(114149,7,30173,3,1672319033),(114150,7,30174,3,1672319033),(114151,7,30175,3,1672319033),(114152,7,30176,3,1672319033),(114153,7,30177,3,1672319033),(114154,7,30178,3,1672319033),(114155,7,30179,3,1672319033),(114156,7,30180,3,1672319033),(114157,7,30181,3,1672319033),(114158,7,30182,3,1672319033),(114159,7,30183,3,1672319033),(114160,7,30184,3,1672319033),(114161,7,30185,3,1672319033),(114162,7,30186,3,1672319033),(114163,7,30187,3,1672319033),(114164,7,30188,3,1672319033),(114165,7,30189,3,1672319033),(114166,7,30190,3,1672319033),(114167,7,30192,3,1672319033),(114168,7,30193,3,1672319033),(114169,7,30194,3,1672319033),(114170,7,30195,3,1672319033),(114171,7,30196,3,1672319033),(114172,7,30197,3,1672319033),(114173,7,30198,3,1672319033),(114174,7,30199,3,1672319033),(114175,7,30200,3,1672319033),(114176,7,30201,3,1672319033),(114177,7,30202,3,1672319033),(114178,7,30203,3,1672319033),(114179,7,30204,3,1672319033),(114180,7,30205,3,1672319033),(114181,7,30206,3,1672319033),(114182,7,30207,3,1672319033),(114183,7,30208,3,1672319033),(114184,7,30209,3,1672319033),(114185,7,30210,3,1672319033),(114186,7,30211,3,1672319033),(114187,7,30212,3,1672319033),(114188,7,30213,3,1672319033),(114189,7,30215,3,1672319033),(114190,7,30216,3,1672319033),(114191,7,30217,3,1672319033),(114192,7,30218,3,1672319033),(114193,7,30219,3,1672319033),(114194,7,30220,3,1672319033),(114195,7,30221,3,1672319033),(114196,7,30222,3,1672319033),(114197,7,30223,3,1672319033),(114198,7,30224,3,1672319033),(114199,7,30225,3,1672319033),(114200,7,30226,3,1672319033),(114201,7,30227,3,1672319033),(114202,7,30228,3,1672319033),(114203,7,30229,3,1672319033),(114204,7,30230,3,1672319033),(114205,7,30231,3,1672319033),(114206,7,30232,3,1672319033),(114207,7,30233,3,1672319033),(114208,7,30234,3,1672319033),(114209,7,30235,3,1672319033),(114210,7,30236,3,1672319033),(114211,7,30238,3,1672319033),(114212,7,30239,3,1672319033),(114213,7,30240,3,1672319033),(114214,7,30241,3,1672319033),(114215,7,30242,3,1672319033),(114216,7,30243,3,1672319033),(114217,7,30244,3,1672319033),(114218,7,30245,3,1672319033),(114219,7,30246,3,1672319033),(114220,7,30247,3,1672319033),(114221,7,30248,3,1672319033),(114222,7,30249,3,1672319033),(114223,7,30250,3,1672319033),(114224,7,30251,3,1672319033),(114225,7,30252,3,1672319033),(114226,7,30253,3,1672319033),(114227,7,30254,3,1672319033),(114228,7,30255,3,1672319033),(114229,7,30256,3,1672319033),(114230,7,30257,3,1672319033),(114231,7,30258,3,1672319033),(114232,7,30259,3,1672319033),(114233,7,30261,3,1672319033),(114234,7,30262,3,1672319033),(114235,7,30263,3,1672319033),(114236,7,30264,3,1672319033),(114237,7,30265,3,1672319033),(114238,7,30266,3,1672319033),(114239,7,30267,3,1672319033),(114240,7,30268,3,1672319033),(114241,7,30269,3,1672319033),(114242,7,30270,3,1672319033),(114243,7,30271,3,1672319033),(114244,7,30272,3,1672319033),(114245,7,30273,3,1672319033),(114246,7,30274,3,1672319033),(114247,7,30275,3,1672319033),(114248,7,30276,3,1672319033),(114249,7,30277,3,1672319033),(114250,7,30278,3,1672319033),(114251,7,30279,3,1672319033),(114252,7,30280,3,1672319033),(114253,7,30281,3,1672319033),(114254,7,30282,3,1672319033),(114255,7,30284,3,1672319033),(114256,7,30285,3,1672319033),(114257,7,30286,3,1672319033),(114258,7,30287,3,1672319033),(114259,7,30288,3,1672319033),(114260,7,30289,3,1672319033),(114261,7,30290,3,1672319033),(114262,7,30291,3,1672319033),(114263,7,30292,3,1672319033),(114264,7,30293,3,1672319033),(114265,7,30294,3,1672319033),(114266,7,30295,3,1672319033),(114267,7,30296,3,1672319033),(114268,7,30297,3,1672319033),(114269,7,30298,3,1672319033),(114270,7,30299,3,1672319033),(114271,7,30300,3,1672319033),(114272,7,30301,3,1672319033),(114273,7,30302,3,1672319033),(114274,7,30303,3,1672319033),(114275,7,30304,3,1672319033),(114276,7,30305,3,1672319033),(114277,7,30307,3,1672319033),(114278,7,30308,3,1672319033),(114279,7,30309,3,1672319033),(114280,7,30310,3,1672319033),(114281,7,30311,3,1672319033),(114282,7,30312,3,1672319033),(114283,7,30313,3,1672319033),(114284,7,30314,3,1672319033),(114285,7,30315,3,1672319033),(114286,7,30316,3,1672319033),(114287,7,30317,3,1672319033),(114288,7,30318,3,1672319033),(114289,7,30319,3,1672319033),(114290,7,30320,3,1672319033),(114291,7,30321,3,1672319033),(114292,7,30322,3,1672319033),(114293,7,30323,3,1672319033),(114294,7,30324,3,1672319033),(114295,7,30325,3,1672319033),(114296,7,30326,3,1672319033),(114297,7,30327,3,1672319033),(114298,7,30328,3,1672319033),(114299,7,30330,3,1672319033),(114300,7,30331,3,1672319033),(114301,7,30332,3,1672319033),(114302,7,30333,3,1672319033),(114303,7,30334,3,1672319033),(114304,7,30335,3,1672319033),(114305,7,30336,3,1672319033),(114306,7,30337,3,1672319033),(114307,7,30338,3,1672319033),(114308,7,30339,3,1672319033),(114309,7,30340,3,1672319033),(114310,7,30341,3,1672319033),(114311,7,30342,3,1672319033),(114312,7,30343,3,1672319033),(114313,7,30344,3,1672319033),(114314,7,30345,3,1672319033),(114315,7,30346,3,1672319033),(114316,7,30347,3,1672319033),(114317,7,30348,3,1672319033),(114318,7,30349,3,1672319033),(114319,7,30350,3,1672319033),(114320,7,30351,3,1672319033),(114321,7,30353,3,1672319033),(114322,7,30354,3,1672319033),(114323,7,30355,3,1672319033),(114324,7,30356,3,1672319033),(114325,7,30357,3,1672319033),(114326,7,30358,3,1672319033),(114327,7,30359,3,1672319033),(114328,7,30360,3,1672319033),(114329,7,30361,3,1672319033),(114330,7,30362,3,1672319033),(114331,7,30363,3,1672319033),(114332,7,30364,3,1672319033),(114333,7,30365,3,1672319033),(114334,7,30366,3,1672319033),(114335,7,30367,3,1672319033),(114336,7,30368,3,1672319033),(114337,7,30369,3,1672319033),(114338,7,30370,3,1672319033),(114339,7,30371,3,1672319033),(114340,7,30372,3,1672319033),(114341,7,30373,3,1672319033),(114342,7,30374,3,1672319033),(114343,7,30376,3,1672319033),(114344,7,30377,3,1672319033),(114345,7,30378,3,1672319033),(114346,7,30379,3,1672319033),(114347,7,30380,3,1672319033),(114348,7,30381,3,1672319033),(114349,7,30382,3,1672319033),(114350,7,30383,3,1672319033),(114351,7,30384,3,1672319033),(114352,7,30385,3,1672319033),(114353,7,30386,3,1672319033),(114354,7,30387,3,1672319033),(114355,7,30388,3,1672319033),(114356,7,30389,3,1672319033),(114357,7,30390,3,1672319033),(114358,7,30391,3,1672319033),(114359,7,30392,3,1672319033),(114360,7,30393,3,1672319033),(114361,7,30394,3,1672319033),(114362,7,30395,3,1672319033),(114363,7,30396,3,1672319033),(114364,7,30397,3,1672319033),(114365,7,30399,3,1672319033),(114366,7,30400,3,1672319033),(114367,7,30401,3,1672319033),(114368,7,30402,3,1672319033),(114369,7,30403,3,1672319033),(114370,7,30404,3,1672319033),(114371,7,30405,3,1672319033),(114372,7,30406,3,1672319033),(114373,7,30407,3,1672319033),(114374,7,30408,3,1672319033),(114375,7,30409,3,1672319033),(114376,7,30410,3,1672319033),(114377,7,30411,3,1672319033),(114378,7,30412,3,1672319033),(114379,7,30413,3,1672319033),(114380,7,30414,3,1672319033),(114381,7,30415,3,1672319033),(114382,7,30416,3,1672319033),(114383,7,30417,3,1672319033),(114384,7,30418,3,1672319033),(114385,7,30419,3,1672319033),(114386,7,30420,3,1672319033),(114387,7,30422,3,1672319033),(114388,7,30423,3,1672319033),(114389,7,30424,3,1672319033),(114390,7,30425,3,1672319033),(114391,7,30426,3,1672319033),(114392,7,30427,3,1672319033),(114393,7,30428,3,1672319033),(114394,7,30429,3,1672319033),(114395,7,30430,3,1672319033),(114396,7,30431,3,1672319033),(114397,7,30432,3,1672319033),(114398,7,30433,3,1672319033),(114399,7,30434,3,1672319033),(114400,7,30435,3,1672319033),(114401,7,30436,3,1672319033),(114402,7,30437,3,1672319033),(114403,7,30438,3,1672319033),(114404,7,30439,3,1672319033),(114405,7,30440,3,1672319033),(114406,7,30441,3,1672319033),(114407,7,30442,3,1672319033),(114408,7,30443,3,1672319033),(114409,7,30445,3,1672319033),(114410,7,30446,3,1672319033),(114411,7,30447,3,1672319033),(114412,7,30448,3,1672319033),(114413,7,30449,3,1672319033),(114414,7,30450,3,1672319033),(114415,7,30451,3,1672319033),(114416,7,30452,3,1672319033),(114417,7,30453,3,1672319033),(114418,7,30454,3,1672319033),(114419,7,30455,3,1672319033),(114420,7,30456,3,1672319033),(114421,7,30457,3,1672319033),(114422,7,30458,3,1672319033),(114423,7,30459,3,1672319033),(114424,7,30460,3,1672319033),(114425,7,30461,3,1672319033),(114426,7,30462,3,1672319033),(114427,7,30463,3,1672319033),(114428,7,30464,3,1672319033),(114429,7,30465,3,1672319033),(114430,7,30466,3,1672319033),(114431,7,30468,3,1672319033),(114432,7,30469,3,1672319033),(114433,7,30470,3,1672319033),(114434,7,30471,3,1672319033),(114435,7,30472,3,1672319033),(114436,7,30473,3,1672319033),(114437,7,30474,3,1672319033),(114438,7,30475,3,1672319033),(114439,7,30476,3,1672319033),(114440,7,30477,3,1672319033),(114441,7,30478,3,1672319033),(114442,7,30479,3,1672319033),(114443,7,30480,3,1672319033),(114444,7,30481,3,1672319033),(114445,7,30482,3,1672319033),(114446,7,30483,3,1672319033),(114447,7,30484,3,1672319033),(114448,7,30485,3,1672319033),(114449,7,30486,3,1672319033),(114450,7,30487,3,1672319033),(114451,7,30488,3,1672319033),(114452,7,30489,3,1672319033),(114453,7,30491,3,1672319033),(114454,7,30492,3,1672319033),(114455,7,30493,3,1672319033),(114456,7,30494,3,1672319033),(114457,7,30495,3,1672319033),(114458,7,30496,3,1672319033),(114459,7,30497,3,1672319033),(114460,7,30498,3,1672319033),(114461,7,30499,3,1672319033),(114462,7,30500,3,1672319033),(114463,7,30501,3,1672319033),(114464,7,30502,3,1672319033),(114465,7,30503,3,1672319033),(114466,7,30504,3,1672319033),(114467,7,30505,3,1672319033),(114468,7,30506,3,1672319033),(114469,7,30507,3,1672319033),(114470,7,30508,3,1672319033),(114471,7,30509,3,1672319033),(114472,7,30510,3,1672319033),(114473,7,30511,3,1672319033),(114474,7,30512,3,1672319033),(114475,7,30514,3,1672319033),(114476,7,30515,3,1672319033),(114477,7,30516,3,1672319033),(114478,7,30517,3,1672319033),(114479,7,30518,3,1672319033),(114480,7,30519,3,1672319033),(114481,7,30520,3,1672319033),(114482,7,30521,3,1672319033),(114483,7,30522,3,1672319033),(114484,7,30523,3,1672319033),(114485,7,30524,3,1672319033),(114486,7,30525,3,1672319033),(114487,7,30526,3,1672319033),(114488,7,30527,3,1672319033),(114489,7,30528,3,1672319033),(114490,7,30529,3,1672319033),(114491,7,30530,3,1672319033),(114492,7,30531,3,1672319033),(114493,7,30532,3,1672319033),(114494,7,30533,3,1672319033),(114495,7,30534,3,1672319033),(114496,7,30535,3,1672319033),(114497,7,30536,3,1672319033),(114498,7,30538,3,1672319033),(114499,7,30539,3,1672319033),(114500,7,30540,3,1672319033),(114501,7,30541,3,1672319033),(114502,7,30542,3,1672319033),(114503,7,30543,3,1672319033),(114504,7,30544,3,1672319033),(114505,7,30545,3,1672319033),(114506,7,30546,3,1672319033),(114507,7,30547,3,1672319033),(114508,7,30548,3,1672319033),(114509,7,30549,3,1672319033),(114510,7,30550,3,1672319033),(114511,7,30551,3,1672319033),(114512,7,30552,3,1672319033),(114513,7,30553,3,1672319033),(114514,7,30554,3,1672319033),(114515,7,30555,3,1672319033),(114516,7,30556,3,1672319033),(114517,7,30557,3,1672319033),(114518,7,30558,3,1672319033),(114519,7,30559,3,1672319033),(114520,7,30561,3,1672319033),(114521,7,30562,3,1672319033),(114522,7,30563,3,1672319033),(114523,7,30564,3,1672319033),(114524,7,30565,3,1672319033),(114525,7,30566,3,1672319033),(114526,7,30567,3,1672319033),(114527,7,30568,3,1672319033),(114528,7,30569,3,1672319033),(114529,7,30570,3,1672319033),(114530,7,30571,3,1672319033),(114531,7,30572,3,1672319033),(114532,7,30573,3,1672319033),(114533,7,30574,3,1672319033),(114534,7,30575,3,1672319033),(114535,7,30576,3,1672319033),(114536,7,30577,3,1672319033),(114537,7,30578,3,1672319033),(114538,7,30579,3,1672319033),(114539,7,30580,3,1672319033),(114540,7,30581,3,1672319033),(114541,7,30582,3,1672319033),(114542,7,30583,3,1672319033),(114543,7,30584,3,1672319033),(114544,7,30585,3,1672319033),(114545,7,30586,3,1672319033),(114546,7,30587,3,1672319033),(114547,7,30588,3,1672319033),(114548,7,30589,3,1672319033),(114549,7,30590,3,1672319033),(114550,7,30591,3,1672319033),(114551,7,30592,3,1672319033),(114552,7,30593,3,1672319033),(114553,7,30594,3,1672319033),(114554,7,30595,3,1672319033),(114555,7,30596,3,1672319033),(114556,7,30601,3,1672319033),(114557,7,30602,3,1672319033),(114558,7,30603,3,1672319033),(114559,7,30604,3,1672319033),(114560,7,30634,3,1672319033),(114561,7,30635,3,1672319033),(114562,7,30636,3,1672319033),(114563,7,30637,3,1672319033),(114564,7,30638,3,1672319033),(114565,7,30639,3,1672319033),(114566,7,30640,3,1672319033),(114567,7,30641,3,1672319033),(114568,7,30642,3,1672319033),(114569,7,30651,3,1672319033),(114570,7,30652,3,1672319033),(114571,7,30676,3,1672319033),(114572,7,30677,3,1672319033),(114573,7,30678,3,1672319033),(114574,7,30679,3,1672319033),(114575,7,30680,3,1672319033),(114576,7,30681,3,1672319033),(114577,7,30682,3,1672319033),(114578,7,30683,3,1672319033),(114579,7,30684,3,1672319033),(114580,7,30685,3,1672319033),(114581,7,30686,3,1672319033),(114582,7,30687,3,1672319033),(114583,7,30688,3,1672319033),(114584,7,30689,3,1672319033),(114585,7,30690,3,1672319033),(114586,7,30691,3,1672319033),(114587,7,30692,3,1672319033),(114588,7,30697,3,1672319033),(114589,7,30698,3,1672319033),(114590,7,30699,3,1672319033),(114591,7,30700,3,1672319033),(114592,7,30705,3,1672319033),(114593,7,30706,3,1672319033),(114594,7,30707,3,1672319033),(114595,7,30708,3,1672319033),(114596,7,30709,3,1672319033),(114597,7,30710,3,1672319033),(114598,7,30711,3,1672319033),(114599,7,30712,3,1672319033),(114600,7,30713,3,1672319033),(114601,7,30722,3,1672319033),(114602,7,30723,3,1672319033),(114603,7,30724,3,1672319033),(114604,7,30725,3,1672319033),(114605,7,30726,3,1672319033),(114606,7,30727,3,1672319033),(114607,7,30728,3,1672319033),(114608,7,30729,3,1672319033),(114609,7,30731,3,1672319033),(114610,7,30732,3,1672319033),(114611,7,30737,3,1672319033),(114612,7,30738,3,1672319033),(114613,7,30739,3,1672319033),(114614,7,30740,3,1672319033),(114615,7,30741,3,1672319033),(114616,7,30742,3,1672319033),(114617,7,30743,3,1672319033),(114618,7,30744,3,1672319033),(114619,7,30745,3,1672319033),(114620,7,30746,3,1672319033),(114621,7,30747,3,1672319033),(114622,7,30748,3,1672319033),(114623,7,30749,3,1672319033),(114624,7,30750,3,1672319033),(114625,7,30751,3,1672319033),(114626,7,30752,3,1672319033),(114627,7,30753,3,1672319033),(114628,7,30754,3,1672319033),(114629,7,30755,3,1672319033),(114630,7,30756,3,1672319033),(114631,7,30757,3,1672319033),(114632,7,30766,3,1672319033),(114633,7,30767,3,1672319033),(114634,7,30768,3,1672319033),(114635,7,30769,3,1672319033),(114636,7,30770,3,1672319033),(114637,7,30771,3,1672319033),(114638,7,30772,3,1672319033),(114639,7,30773,3,1672319033),(114640,7,30774,3,1672319033),(114641,7,30775,3,1672319033),(114642,7,30776,3,1672319033),(114643,7,30777,3,1672319033),(114644,7,30778,3,1672319033),(114645,7,30779,3,1672319033),(114646,7,30780,3,1672319033),(114647,7,30781,3,1672319033),(114648,7,30782,3,1672319033),(114649,7,30783,3,1672319033),(114650,7,30784,3,1672319033),(114651,7,30787,3,1672319033),(114652,7,30788,3,1672319033),(114653,7,30789,3,1672319033),(114654,7,30790,3,1672319033),(114655,7,30791,3,1672319033),(114656,7,30792,3,1672319033),(114657,7,30793,3,1672319033),(114658,7,30794,3,1672319033),(114659,7,30795,3,1672319033),(114660,7,30796,3,1672319033),(114661,7,30797,3,1672319033),(114662,7,30798,3,1672319033),(114663,7,30799,3,1672319033),(114664,7,30800,3,1672319033),(114665,7,30801,3,1672319033),(114666,7,30802,3,1672319033),(114667,7,30803,3,1672319033),(114668,7,30812,3,1672319033),(114669,7,30813,3,1672319033),(114670,7,30814,3,1672319033),(114671,7,30815,3,1672319033),(114672,7,30816,3,1672319033),(114673,7,30817,3,1672319033),(114674,7,30818,3,1672319033),(114675,7,30819,3,1672319033),(114676,7,30820,3,1672319033),(114677,7,30821,3,1672319033),(114678,7,30822,3,1672319033),(114679,7,30823,3,1672319033),(114680,7,30824,3,1672319033),(114681,7,30825,3,1672319033),(114682,7,30828,3,1672319033),(114683,7,30829,3,1672319033),(114684,7,30830,3,1672319033),(114685,7,30831,3,1672319033),(114686,7,30832,3,1672319033),(114687,7,30833,3,1672319033),(114688,7,30834,3,1672319033),(114689,7,30835,3,1672319033),(114690,7,30836,3,1672319033),(114691,7,30837,3,1672319033),(114692,7,30838,3,1672319033),(114693,7,30839,3,1672319033),(114694,7,30840,3,1672319033),(114695,7,30841,3,1672319033),(114696,7,30842,3,1672319033),(114697,7,30843,3,1672319033),(114698,7,30844,3,1672319033),(114699,7,30853,3,1672319033),(114700,7,30854,3,1672319033),(114701,7,30855,3,1672319033),(114702,7,30856,3,1672319033),(114703,7,30857,3,1672319033),(114704,7,30858,3,1672319033),(114705,7,30859,3,1672319033),(114706,7,30861,3,1672319033),(114707,7,30862,3,1672319033),(114708,7,30863,3,1672319033),(114709,7,30864,3,1672319033),(114710,7,30865,3,1672319033),(114711,7,30866,3,1672319033),(114712,7,30867,3,1672319033),(114713,7,30868,3,1672319033),(114714,7,30869,3,1672319033),(114715,7,30870,3,1672319033),(114716,7,30871,3,1672319033),(114717,7,30872,3,1672319033),(114718,7,30873,3,1672319033),(114719,7,30874,3,1672319033),(114720,7,30875,3,1672319033),(114721,7,30876,3,1672319033),(114722,7,30885,3,1672319033),(114723,7,30886,3,1672319033),(114724,7,30887,3,1672319033),(114725,7,30888,3,1672319033),(114726,7,30889,3,1672319033),(114727,7,30890,3,1672319033),(114728,7,30891,3,1672319033),(114729,7,30893,3,1672319033),(114730,7,30894,3,1672319033),(114731,7,30895,3,1672319033),(114732,7,30896,3,1672319033),(114733,7,30897,3,1672319033),(114734,7,30898,3,1672319033),(114735,7,30899,3,1672319033),(114736,7,30901,3,1672319033),(114737,7,30902,3,1672319033),(114738,7,30903,3,1672319033),(114739,7,30904,3,1672319033),(114740,7,30905,3,1672319033),(114741,7,30906,3,1672319033),(114742,7,30907,3,1672319033),(114743,7,30909,3,1672319033),(114744,7,30910,3,1672319033),(114745,7,30911,3,1672319033),(114746,7,30912,3,1672319033),(114747,7,30913,3,1672319033),(114748,7,30914,3,1672319033),(114749,7,30915,3,1672319033),(114750,7,30917,3,1672319033),(114751,7,30918,3,1672319033),(114752,7,30919,3,1672319033),(114753,7,30920,3,1672319033),(114754,7,30921,3,1672319033),(114755,7,30922,3,1672319033),(114756,7,30923,3,1672319033),(114757,7,30925,3,1672319033),(114758,7,30926,3,1672319033),(114759,7,30927,3,1672319033),(114760,7,30928,3,1672319033),(114761,7,30929,3,1672319033),(114762,7,30930,3,1672319033),(114763,7,30931,3,1672319033),(114764,7,30933,3,1672319033),(114765,7,30934,3,1672319033),(114766,7,30935,3,1672319033),(114767,7,30936,3,1672319033),(114768,7,30937,3,1672319033),(114769,7,30938,3,1672319033),(114770,7,30939,3,1672319033),(114771,7,30941,3,1672319033),(114772,7,30943,3,1672319033),(114773,7,30944,3,1672319033),(114774,7,30945,3,1672319033),(114775,7,30946,3,1672319033),(114776,7,30947,3,1672319033),(114777,7,30948,3,1672319033),(114778,7,30949,3,1672319033),(114779,7,30950,3,1672319033),(114780,7,30951,3,1672319033),(114781,7,30952,3,1672319033),(114782,7,30953,3,1672319033),(114783,7,30954,3,1672319033),(114784,7,30959,3,1672319033),(114785,7,30960,3,1672319033),(114786,7,30961,3,1672319033),(114787,7,30962,3,1672319033),(114788,7,30963,3,1672319033),(114789,7,30964,3,1672319033),(114790,7,30965,3,1672319033),(114791,7,30966,3,1672319033),(114792,7,30967,3,1672319033),(114793,7,30968,3,1672319033),(114794,7,30969,3,1672319033),(114795,7,30970,3,1672319033),(114796,7,30971,3,1672319033),(114797,7,30972,3,1672319033),(114798,7,30973,3,1672319033),(114799,7,30974,3,1672319033),(114800,7,30975,3,1672319033),(114801,7,30976,3,1672319033),(114802,7,30977,3,1672319033),(114803,7,30978,3,1672319033),(114804,7,30979,3,1672319033),(114805,7,30980,3,1672319033),(114806,7,30981,3,1672319033),(114807,7,30982,3,1672319033),(114808,7,30985,3,1672319033),(114809,7,30986,3,1672319033),(114810,7,30987,3,1672319033),(114811,7,30988,3,1672319033),(114812,7,30989,3,1672319033),(114813,7,30990,3,1672319033),(114814,7,30991,3,1672319033),(114815,7,30992,3,1672319033),(114816,7,30993,3,1672319033),(114817,7,30994,3,1672319033),(114818,7,31000,3,1672319033),(114819,7,31001,3,1672319033),(114820,7,31002,3,1672319033),(114821,7,31003,3,1672319033),(114822,7,31004,3,1672319033),(114823,7,31005,3,1672319033),(114824,7,31009,3,1672319033),(114825,7,31010,3,1672319033),(114826,7,31011,3,1672319033),(114827,7,31012,3,1672319033),(114828,7,31013,3,1672319033),(114829,7,31014,3,1672319033),(114830,7,31015,3,1672319033),(114831,7,31016,3,1672319033),(114832,7,31017,3,1672319033),(114833,7,31018,3,1672319033),(114834,7,31019,3,1672319033),(114835,7,31020,3,1672319033),(114836,7,31021,3,1672319033),(114837,7,31022,3,1672319033),(114838,7,31023,3,1672319033),(114839,7,31024,3,1672319033),(114840,7,31026,3,1672319033),(114841,7,31027,3,1672319033),(114842,7,31028,3,1672319033),(114843,7,31029,3,1672319033),(114844,7,31030,3,1672319033),(114845,7,31031,3,1672319033),(114846,7,31033,3,1672319033),(114847,7,31034,3,1672319033),(114848,7,31035,3,1672319033),(114849,7,31036,3,1672319033),(114850,7,31037,3,1672319033),(114851,7,31038,3,1672319033),(114852,7,31039,3,1672319033),(114853,7,31040,3,1672319033),(114854,7,31041,3,1672319033),(114855,7,31042,3,1672319033),(114856,7,31043,3,1672319033),(114857,7,31044,3,1672319033),(114858,7,31045,3,1672319033),(114859,7,31054,3,1672319033),(114860,7,31055,3,1672319033),(114861,7,31056,3,1672319033),(114862,7,31057,3,1672319033),(114863,7,31058,3,1672319033),(114864,7,31059,3,1672319033),(114865,7,31060,3,1672319033),(114866,7,31061,3,1672319033),(114867,7,31062,3,1672319033),(114868,7,31063,3,1672319033),(114869,7,31064,3,1672319033),(114870,7,31065,3,1672319033),(114871,7,31066,3,1672319033),(114872,7,31067,3,1672319033),(114873,7,31068,3,1672319033),(114874,7,31069,3,1672319033),(114875,7,31070,3,1672319033),(114876,7,31071,3,1672319033),(114877,7,31072,3,1672319033),(114878,7,31073,3,1672319033),(114879,7,31074,3,1672319033),(114880,7,31075,3,1672319033),(114881,7,31076,3,1672319033),(114882,7,31077,3,1672319033),(114883,7,31078,3,1672319033),(114884,7,31079,3,1672319033),(114885,7,31080,3,1672319033),(114886,7,31081,3,1672319033),(114887,7,31082,3,1672319033),(114888,7,31083,3,1672319033),(114889,7,31084,3,1672319033),(114890,7,31085,3,1672319033),(114891,7,31086,3,1672319033),(114892,7,31087,3,1672319033),(114893,7,31088,3,1672319033),(114894,7,31089,3,1672319033),(114895,7,31090,3,1672319033),(114896,7,31091,3,1672319033),(114897,7,31092,3,1672319033),(114898,7,31093,3,1672319033),(114899,7,31094,3,1672319033),(114900,7,31095,3,1672319033),(114901,7,31096,3,1672319033),(114902,7,31097,3,1672319033),(114903,7,31098,3,1672319033),(114904,7,31099,3,1672319033),(114905,7,31100,3,1672319033),(114906,7,31101,3,1672319033),(114907,7,31102,3,1672319033),(114908,7,31103,3,1672319033),(114909,7,31104,3,1672319033),(114910,7,31105,3,1672319033),(114911,7,31106,3,1672319033),(114912,7,31107,3,1672319033),(114913,7,31108,3,1672319033),(114914,7,31109,3,1672319033),(114915,7,31110,3,1672319033),(114916,7,31111,3,1672319033),(114917,7,31112,3,1672319033),(114918,7,31113,3,1672319033),(114919,7,31114,3,1672319033),(114920,7,31115,3,1672319033),(114921,7,31116,3,1672319033),(114922,7,31117,3,1672319033),(114923,7,31118,3,1672319033),(114924,7,31119,3,1672319033),(114925,7,31120,3,1672319033),(114926,7,31121,3,1672319033),(114927,7,31122,3,1672319033),(114928,7,31123,3,1672319033),(114929,7,31124,3,1672319033),(114930,7,31125,3,1672319033),(114931,7,31126,3,1672319033),(114932,7,31127,3,1672319033),(114933,7,31128,3,1672319033),(114934,7,31129,3,1672319033),(114935,7,31130,3,1672319033),(114936,7,31131,3,1672319033),(114937,7,31132,3,1672319033),(114938,7,31133,3,1672319033),(114939,7,31134,3,1672319033),(114940,7,31135,3,1672319033),(114941,7,31136,3,1672319033),(114942,7,31137,3,1672319033),(114943,7,31138,3,1672319033),(114944,7,31139,3,1672319033),(114945,7,31140,3,1672319033),(114946,7,31141,3,1672319033),(114947,7,31142,3,1672319033),(114948,7,31143,3,1672319033),(114949,7,31144,3,1672319033),(114950,7,31145,3,1672319033),(114951,7,31146,3,1672319033),(114952,7,31147,3,1672319033),(114953,7,31148,3,1672319033),(114954,7,31149,3,1672319033),(114955,7,31150,3,1672319033),(114956,7,31151,3,1672319033),(114957,7,31152,3,1672319033),(114958,7,31153,3,1672319033),(114959,7,31154,3,1672319033),(114960,7,31155,3,1672319033),(114961,7,31156,3,1672319033),(114962,7,31157,3,1672319033),(114963,7,31158,3,1672319033),(114964,7,31159,3,1672319033),(114965,7,31160,3,1672319033),(114966,7,31161,3,1672319033),(114967,7,31162,3,1672319033),(114968,7,31163,3,1672319033),(114969,7,31164,3,1672319033),(114970,7,31165,3,1672319033),(114971,7,31166,3,1672319033),(114972,7,31167,3,1672319033),(114973,7,31168,3,1672319033),(114974,7,31169,3,1672319033),(114975,7,31170,3,1672319033),(114976,7,31171,3,1672319033),(114977,7,31172,3,1672319033),(114978,7,31173,3,1672319033),(114979,7,31174,3,1672319033),(114980,7,31175,3,1672319033),(114981,7,31176,3,1672319033),(114982,7,31177,3,1672319033),(114983,7,31178,3,1672319033),(114984,7,31179,3,1672319033),(114985,7,31180,3,1672319033),(114986,7,31181,3,1672319033),(114987,7,31182,3,1672319033),(114988,7,31183,3,1672319033),(114989,7,31184,3,1672319033),(114990,7,31185,3,1672319033),(114991,7,31186,3,1672319033),(114992,7,31187,3,1672319033),(114993,7,31188,3,1672319033),(114994,7,31189,3,1672319033),(114995,7,31190,3,1672319033),(114996,7,31191,3,1672319033),(114997,7,31192,3,1672319033),(114998,7,31193,3,1672319033),(114999,7,31194,3,1672319033),(115000,7,31195,3,1672319033),(115001,7,31196,3,1672319033),(115002,7,31197,3,1672319033),(115003,7,31198,3,1672319033),(115004,7,31199,3,1672319033),(115005,7,31200,3,1672319033),(115006,7,31201,3,1672319033),(115007,7,31202,3,1672319033),(115008,7,31203,3,1672319033),(115009,7,31204,3,1672319033),(115010,7,31205,3,1672319033),(115011,7,31206,3,1672319033),(115012,7,31207,3,1672319033),(115013,7,31208,3,1672319033),(115014,7,31209,3,1672319033),(115015,7,31210,3,1672319033),(115016,7,31211,3,1672319033),(115017,7,31212,3,1672319033),(115018,7,31213,3,1672319033),(115019,7,31214,3,1672319033),(115020,7,31215,3,1672319033),(115021,7,31216,3,1672319033),(115022,7,31217,3,1672319033),(115023,7,31218,3,1672319033),(115024,7,31219,3,1672319033),(115025,7,31220,3,1672319033),(115026,7,31221,3,1672319033),(115027,7,31222,3,1672319033),(115028,7,31223,3,1672319033),(115029,7,31224,3,1672319033),(115030,7,31225,3,1672319033),(115031,7,31226,3,1672319033),(115032,7,31227,3,1672319033),(115033,7,31228,3,1672319033),(115034,7,31229,3,1672319033),(115035,7,31230,3,1672319033),(115036,7,31231,3,1672319033),(115037,7,31232,3,1672319033),(115038,7,31233,3,1672319033),(115039,7,31234,3,1672319033),(115040,7,31235,3,1672319033),(115041,7,31236,3,1672319033),(115042,7,31237,3,1672319033),(115043,7,31238,3,1672319033),(115044,7,31239,3,1672319033),(115045,7,31240,3,1672319033),(115046,7,31241,3,1672319033),(115047,7,31242,3,1672319033),(115048,7,31243,3,1672319033),(115049,7,31244,3,1672319033),(115050,7,31245,3,1672319033),(115051,7,31246,3,1672319033),(115052,7,31247,3,1672319033),(115053,7,31248,3,1672319033),(115054,7,31249,3,1672319033),(115055,7,31250,3,1672319033),(115056,7,31251,3,1672319033),(115057,7,31252,3,1672319033),(115058,7,31253,3,1672319033),(115059,7,31254,3,1672319033),(115060,7,31255,3,1672319033),(115061,7,31256,3,1672319033),(115062,7,31257,3,1672319033),(115063,7,31258,3,1672319033),(115064,7,31259,3,1672319033),(115065,7,31260,3,1672319033),(115066,7,31261,3,1672319033),(115067,7,31262,3,1672319033),(115068,7,31263,3,1672319033),(115069,7,31264,3,1672319033),(115070,7,31265,3,1672319033),(115071,7,31266,3,1672319033),(115072,7,31267,3,1672319033),(115073,7,31268,3,1672319033),(115074,7,31269,3,1672319033),(115075,7,31270,3,1672319033),(115076,7,31271,3,1672319033),(115077,7,31272,3,1672319033),(115078,7,31273,3,1672319033),(115079,7,31274,3,1672319033),(115080,7,31275,3,1672319033),(115081,7,31276,3,1672319033),(115082,7,31277,3,1672319033),(115083,7,31278,3,1672319033),(115084,7,31279,3,1672319033),(115085,7,31280,3,1672319033),(115086,7,31281,3,1672319033),(115087,7,31282,3,1672319033),(115088,7,31283,3,1672319033),(115089,7,31284,3,1672319033),(115090,7,31285,3,1672319033),(115091,7,31286,3,1672319033),(115092,7,31287,3,1672319033),(115093,7,31288,3,1672319033),(115094,7,31289,3,1672319033),(115095,7,31290,3,1672319033),(115096,7,31291,3,1672319033),(115097,7,31292,3,1672319033),(115098,7,31293,3,1672319033),(115099,7,31294,3,1672319033),(115100,7,31295,3,1672319033),(115101,7,31296,3,1672319033),(115102,7,31297,3,1672319033),(115103,7,31298,3,1672319033),(115104,7,31299,3,1672319033),(115105,7,31300,3,1672319033),(115106,7,31301,3,1672319033),(115107,7,31302,3,1672319033),(115108,7,31303,3,1672319033),(115109,7,31304,3,1672319033),(115110,7,31305,3,1672319033),(115111,7,31306,3,1672319033),(115112,7,31307,3,1672319033),(115113,7,31308,3,1672319033),(115114,7,31309,3,1672319033),(115115,7,31310,3,1672319033),(115116,7,31311,3,1672319033),(115117,7,31312,3,1672319033),(115118,7,31313,3,1672319033),(115119,7,31314,3,1672319033),(115120,7,31315,3,1672319033),(115121,7,31316,3,1672319033),(115122,7,31317,3,1672319033),(115123,7,31318,3,1672319033),(115124,7,31319,3,1672319033),(115125,7,31320,3,1672319033),(115126,7,31321,3,1672319033),(115127,7,31322,3,1672319033),(115128,7,31323,3,1672319033),(115129,7,31324,3,1672319033),(115130,7,31325,3,1672319033),(115131,7,31326,3,1672319033),(115132,7,31327,3,1672319033),(115133,7,31328,3,1672319033),(115134,7,31329,3,1672319033),(115135,7,31330,3,1672319033),(115136,7,31331,3,1672319033),(115137,7,31332,3,1672319033),(115138,7,31333,3,1672319033),(115139,7,31334,3,1672319033),(115140,7,31335,3,1672319033),(115141,7,31336,3,1672319033),(115142,7,31337,3,1672319033),(115143,7,31338,3,1672319033),(115144,7,31339,3,1672319033),(115145,7,31340,3,1672319033),(115146,7,31341,3,1672319033),(115147,7,31342,3,1672319033),(115148,7,31343,3,1672319033),(115149,7,31344,3,1672319033),(115150,7,31345,3,1672319033),(115151,7,31346,3,1672319033),(115152,7,31347,3,1672319033),(115153,7,31348,3,1672319033),(115154,7,31349,3,1672319033),(115155,7,31350,3,1672319033),(115156,7,31351,3,1672319033),(115157,7,31352,3,1672319033),(115158,7,31353,3,1672319033),(115159,7,31354,3,1672319033),(115160,7,31355,3,1672319033),(115161,7,31356,3,1672319033),(115162,7,31357,3,1672319033),(115163,7,31358,3,1672319033),(115164,7,31359,3,1672319033),(115165,7,31360,3,1672319033),(115166,7,31361,3,1672319033),(115167,7,31362,3,1672319033),(115168,7,31363,3,1672319033),(115169,7,31364,3,1672319033),(115170,7,31365,3,1672319033),(115171,7,31366,3,1672319033),(115172,7,31375,3,1672319033),(115173,7,31376,3,1672319033),(115174,7,31377,3,1672319033),(115175,7,31378,3,1672319033),(115176,7,31379,3,1672319033),(115177,7,31380,3,1672319033),(115178,7,31381,3,1672319033),(115179,7,31382,3,1672319033),(115180,7,31383,3,1672319033),(115181,7,31384,3,1672319033),(115182,7,31385,3,1672319033),(115183,7,31386,3,1672319033),(115184,7,31387,3,1672319033),(115185,7,31388,3,1672319033),(115186,7,31389,3,1672319033),(115187,7,31390,3,1672319033),(115188,7,31391,3,1672319033),(115189,7,31392,3,1672319033),(115190,7,31393,3,1672319033),(115191,7,31394,3,1672319033),(115192,7,31395,3,1672319033),(115193,7,31396,3,1672319033),(115194,7,31397,3,1672319033),(115195,7,31398,3,1672319033),(115196,7,31399,3,1672319033),(115197,7,31400,3,1672319033),(115198,7,31401,3,1672319033),(115199,7,31402,3,1672319033),(115200,7,31403,3,1672319033),(115201,7,31404,3,1672319033),(115202,7,31405,3,1672319033),(115203,7,31406,3,1672319033),(115204,7,31407,3,1672319033),(115205,7,31408,3,1672319033),(115206,7,31409,3,1672319033),(115207,7,31410,3,1672319033),(115208,7,31411,3,1672319033),(115209,7,31412,3,1672319033),(115210,7,31413,3,1672319033),(115211,7,31414,3,1672319033),(115212,7,31415,3,1672319033),(115213,7,31416,3,1672319033),(115214,7,31417,3,1672319033),(115215,7,31418,3,1672319033),(115216,7,31419,3,1672319033),(115217,7,31420,3,1672319033),(115218,7,31421,3,1672319033),(115219,7,31422,3,1672319033),(115220,7,31423,3,1672319033),(115221,7,31424,3,1672319033),(115222,7,31425,3,1672319033),(115223,7,31426,3,1672319033),(115224,7,31427,3,1672319033),(115225,7,31428,3,1672319033),(115226,7,31429,3,1672319033),(115227,7,31430,3,1672319033),(115228,7,31431,3,1672319033),(115229,7,31432,3,1672319033),(115230,7,31433,3,1672319033),(115231,7,31434,3,1672319033),(115232,7,31439,3,1672319033),(115233,7,31440,3,1672319033),(115234,7,31441,3,1672319033),(115235,7,31442,3,1672319033),(115236,7,31443,3,1672319033),(115237,7,31444,3,1672319033),(115238,7,31445,3,1672319033),(115239,7,31446,3,1672319033),(115240,7,31447,3,1672319033),(115241,7,31448,3,1672319033),(115242,7,31449,3,1672319033),(115243,7,31450,3,1672319033),(115244,7,31451,3,1672319033),(115245,7,31452,3,1672319033),(115246,7,31453,3,1672319033),(115247,7,31454,3,1672319033),(115248,7,31455,3,1672319033),(115249,7,31456,3,1672319033),(115250,7,31457,3,1672319033),(115251,7,31458,3,1672319033),(115252,7,31459,3,1672319033),(115253,7,31460,3,1672319033),(115254,7,31461,3,1672319033),(115255,7,31462,3,1672319033),(115256,7,31463,3,1672319033),(115257,7,31466,3,1672319033),(115258,7,31470,3,1672319033),(115259,7,31471,3,1672319033),(115260,7,31472,3,1672319033),(115261,7,31473,3,1672319033),(115262,7,31474,3,1672319033),(115263,7,31475,3,1672319033),(115264,7,31476,3,1672319033),(115265,7,31477,3,1672319033),(115266,7,31478,3,1672319033),(115267,7,31479,3,1672319033),(115268,7,31480,3,1672319033),(115269,7,31481,3,1672319033),(115270,7,31482,3,1672319033),(115271,7,31483,3,1672319033),(115272,7,31484,3,1672319033),(115273,7,31485,3,1672319033),(115274,7,31486,3,1672319033),(115275,7,31487,3,1672319033),(115276,7,31488,3,1672319033),(115277,7,31489,3,1672319033),(115278,7,31490,3,1672319033),(115279,7,31491,3,1672319033),(115280,7,31492,3,1672319033),(115281,7,31493,3,1672319033),(115282,7,31494,3,1672319033),(115283,7,31495,3,1672319033),(115284,7,31496,3,1672319033),(115285,7,31497,3,1672319033),(115286,7,31498,3,1672319033),(115287,7,31499,3,1672319033),(115288,7,31500,3,1672319033),(115289,7,31501,3,1672319033),(115290,7,31502,3,1672319033),(115291,7,31503,3,1672319033),(115292,7,31504,3,1672319033),(115293,7,31505,3,1672319033),(115294,7,31506,3,1672319033),(115295,7,31507,3,1672319033),(115296,7,31508,3,1672319033),(115297,7,31509,3,1672319033),(115298,7,31510,3,1672319033),(115299,7,31511,3,1672319033),(115300,7,31512,3,1672319033),(115301,7,31513,3,1672319033),(115302,7,31514,3,1672319033),(115303,7,31515,3,1672319033),(115304,7,31516,3,1672319033),(115305,7,31517,3,1672319033),(115306,7,31518,3,1672319033),(115307,7,31519,3,1672319033),(115308,7,31520,3,1672319033),(115309,7,31521,3,1672319033),(115310,7,31522,3,1672319033),(115311,7,31523,3,1672319033),(115312,7,31524,3,1672319033),(115313,7,31525,3,1672319033),(115314,7,31526,3,1672319033),(115315,7,31527,3,1672319033),(115316,7,31528,3,1672319033),(115317,7,31529,3,1672319033),(115318,7,31530,3,1672319033),(115319,7,31531,3,1672319033),(115320,7,31532,3,1672319033),(115321,7,31533,3,1672319033),(115322,7,31534,3,1672319033),(115323,7,31535,3,1672319033),(115324,7,31536,3,1672319033),(115325,7,31537,3,1672319033),(115326,7,31538,3,1672319033),(115327,7,31539,3,1672319033),(115328,7,31540,3,1672319033),(115329,7,31541,3,1672319033),(115330,7,31542,3,1672319033),(115331,7,31543,3,1672319033),(115332,7,31544,3,1672319033),(115333,7,31545,3,1672319033),(115334,7,31546,3,1672319033),(115335,7,31547,3,1672319033),(115336,7,31548,3,1672319033),(115337,7,31549,3,1672319033),(115338,7,31550,3,1672319033),(115339,7,31551,3,1672319033),(115340,7,31552,3,1672319033),(115341,7,31553,3,1672319033),(115342,7,31554,3,1672319033),(115343,7,31555,3,1672319033),(115344,7,31556,3,1672319033),(115345,7,31557,3,1672319033),(115346,7,31558,3,1672319033),(115347,7,31559,3,1672319033),(115348,7,31560,3,1672319033),(115349,7,31561,3,1672319033),(115350,7,31562,3,1672319033),(115351,7,31563,3,1672319033),(115352,7,31564,3,1672319033),(115353,7,31565,3,1672319033),(115354,7,31566,3,1672319033),(115355,7,31567,3,1672319033),(115356,7,31568,3,1672319033),(115357,7,31569,3,1672319033),(115358,7,31570,3,1672319033),(115359,7,31571,3,1672319033),(115360,7,31572,3,1672319033),(115361,7,31573,3,1672319033),(115362,7,31574,3,1672319033),(115363,7,31575,3,1672319033),(115364,7,31576,3,1672319033),(115365,7,31577,3,1672319033),(115366,7,31578,3,1672319033),(115367,7,31579,3,1672319033),(115368,7,31580,3,1672319033),(115369,7,31581,3,1672319033),(115370,7,31582,3,1672319033),(115371,7,31583,3,1672319033),(115372,7,31584,3,1672319033),(115373,7,31585,3,1672319033),(115374,7,31586,3,1672319033),(115375,7,31587,3,1672319033),(115376,7,31588,3,1672319033),(115377,7,31589,3,1672319033),(115378,7,31590,3,1672319033),(115379,7,31591,3,1672319033),(115380,7,31592,3,1672319033),(115381,7,31593,3,1672319033),(115382,7,31594,3,1672319033),(115383,7,31595,3,1672319033),(115384,7,31596,3,1672319033),(115385,7,31597,3,1672319033),(115386,7,31598,3,1672319033),(115387,7,31599,3,1672319033),(115388,7,31600,3,1672319033),(115389,7,31601,3,1672319033),(115390,7,31602,3,1672319033),(115391,7,31603,3,1672319033),(115392,7,31604,3,1672319033),(115393,7,31605,3,1672319033),(115394,7,31606,3,1672319033),(115395,7,31607,3,1672319033),(115396,7,31608,3,1672319033),(115397,7,31609,3,1672319033),(115398,7,31610,3,1672319033),(115399,7,31611,3,1672319033),(115400,7,31612,3,1672319033),(115401,7,31613,3,1672319033),(115402,7,31614,3,1672319033),(115403,7,31615,3,1672319033),(115404,7,31616,3,1672319033),(115405,7,31617,3,1672319033),(115406,7,31618,3,1672319033),(115407,7,31619,3,1672319033),(115408,7,31620,3,1672319033),(115409,7,31621,3,1672319033),(115410,7,31622,3,1672319033),(115411,7,31623,3,1672319033),(115412,7,31624,3,1672319033),(115413,7,31625,3,1672319033),(115414,7,31626,3,1672319033),(115415,7,31627,3,1672319033),(115416,7,31628,3,1672319033),(115417,7,31629,3,1672319033),(115418,7,31630,3,1672319033),(115419,7,31631,3,1672319033),(115420,7,31632,3,1672319033),(115421,7,31633,3,1672319033),(115422,7,31634,3,1672319033),(115423,7,31635,3,1672319033),(115424,7,31636,3,1672319033),(115425,7,31637,3,1672319033),(115426,7,31638,3,1672319033),(115427,7,31639,3,1672319033),(115428,7,31640,3,1672319033),(115429,7,31641,3,1672319033),(115430,7,31642,3,1672319033),(115431,7,31643,3,1672319033),(115432,7,31644,3,1672319033),(115433,7,31645,3,1672319033),(115434,7,31646,3,1672319033),(115435,7,31647,3,1672319033),(115436,7,31648,3,1672319033),(115437,7,31649,3,1672319033),(115438,7,31650,3,1672319033),(115439,7,31651,3,1672319033),(115440,7,31652,3,1672319033),(115441,7,31653,3,1672319033),(115442,7,31654,3,1672319033),(115443,7,31655,3,1672319033),(115444,7,31656,3,1672319033),(115445,7,31657,3,1672319033),(115446,7,31658,3,1672319033),(115447,7,31659,3,1672319033),(115448,7,31660,3,1672319033),(115449,7,31661,3,1672319033),(115450,7,31662,3,1672319033),(115451,7,31663,3,1672319033),(115452,7,31664,3,1672319033),(115453,7,31665,3,1672319033),(115454,7,31666,3,1672319033),(115455,7,31667,3,1672319033),(115456,7,31668,3,1672319033),(115457,7,31669,3,1672319033),(115458,7,31670,3,1672319033),(115459,7,31671,3,1672319033),(115460,7,31672,3,1672319033),(115461,7,31673,3,1672319033),(115462,7,31674,3,1672319033),(115463,7,31675,3,1672319033),(115464,7,31676,3,1672319033),(115465,7,31677,3,1672319033),(115466,7,31678,3,1672319033),(115467,7,31679,3,1672319033),(115468,7,31680,3,1672319033),(115469,7,31681,3,1672319033),(115470,7,31682,3,1672319033),(115471,7,31683,3,1672319033),(115472,7,31684,3,1672319033),(115473,7,31685,3,1672319033),(115474,7,31686,3,1672319033),(115475,7,31687,3,1672319033),(115476,7,31688,3,1672319033),(115477,7,31689,3,1672319033),(115478,7,31690,3,1672319033),(115479,7,31691,3,1672319033),(115480,7,31692,3,1672319033),(115481,7,31693,3,1672319033),(115482,7,31694,3,1672319033),(115483,7,31695,3,1672319033),(115484,7,31696,3,1672319033),(115485,7,31697,3,1672319033),(115486,7,31698,3,1672319033),(115487,7,31699,3,1672319033),(115488,7,31700,3,1672319033),(115489,7,31701,3,1672319033),(115490,7,31702,3,1672319033),(115491,7,31703,3,1672319033),(115492,7,31704,3,1672319033),(115493,7,31705,3,1672319033),(115494,7,31706,3,1672319033),(115495,7,31707,3,1672319033),(115496,7,31708,3,1672319033),(115497,7,31709,3,1672319033),(115498,7,31710,3,1672319033),(115499,7,31711,3,1672319033),(115500,7,31712,3,1672319033),(115501,7,31713,3,1672319033),(115502,7,31714,3,1672319033),(115503,7,31715,3,1672319033),(115504,7,31716,3,1672319033),(115505,7,31717,3,1672319033),(115506,7,31718,3,1672319033),(115507,7,31719,3,1672319033),(115508,7,31720,3,1672319033),(115509,7,31721,3,1672319033),(115510,7,31722,3,1672319033),(115511,7,31723,3,1672319033),(115512,7,31724,3,1672319033),(115513,7,31725,3,1672319033),(115514,7,31726,3,1672319033),(115515,7,31727,3,1672319033),(115516,7,31728,3,1672319033),(115517,7,31729,3,1672319033),(115518,7,31730,3,1672319033),(115519,7,31731,3,1672319033),(115520,7,31732,3,1672319033),(115521,7,31733,3,1672319033),(115522,7,31734,3,1672319033),(115523,7,31735,3,1672319033),(115524,7,31736,3,1672319033),(115525,7,31737,3,1672319033),(115526,7,31738,3,1672319033),(115527,7,31739,3,1672319033),(115528,7,31740,3,1672319033),(115529,7,31741,3,1672319033),(115530,7,31742,3,1672319033),(115531,7,31743,3,1672319033),(115532,7,31744,3,1672319033),(115533,7,31745,3,1672319033),(115534,7,31746,3,1672319033),(115535,7,31747,3,1672319033),(115536,7,31748,3,1672319033),(115537,7,31749,3,1672319033),(115538,7,31750,3,1672319033),(115539,7,31751,3,1672319033),(115540,7,31752,3,1672319033),(115541,7,31753,3,1672319033),(115542,7,31754,3,1672319033),(115543,7,31755,3,1672319033),(115544,7,31756,3,1672319033),(115545,7,31757,3,1672319033),(115546,7,31758,3,1672319033),(115547,7,31759,3,1672319033),(115548,7,31760,3,1672319033),(115549,7,31761,3,1672319033),(115550,7,31762,3,1672319033),(115551,7,31763,3,1672319033),(115552,7,31764,3,1672319033),(115553,7,31765,3,1672319033),(115554,7,31766,3,1672319033),(115555,7,31767,3,1672319033),(115556,7,31768,3,1672319033),(115557,7,31769,3,1672319033),(115558,7,31770,3,1672319033),(115559,7,31771,3,1672319033),(115560,7,31772,3,1672319033),(115561,7,31773,3,1672319033),(115562,7,31774,3,1672319033),(115563,7,31775,3,1672319033),(115564,7,31776,3,1672319033),(115565,7,31777,3,1672319033),(115566,7,31778,3,1672319033),(115567,7,31779,3,1672319033),(115568,7,31780,3,1672319033),(115569,7,31781,3,1672319033),(115570,7,31782,3,1672319033),(115571,7,31783,3,1672319033),(115572,7,31784,3,1672319033),(115573,7,31785,3,1672319033),(115574,7,31786,3,1672319033),(115575,7,31787,3,1672319033),(115576,7,31788,3,1672319033),(115577,7,31789,3,1672319033),(115578,7,31790,3,1672319033),(115579,7,31791,3,1672319033),(115580,7,31792,3,1672319033),(115581,7,31793,3,1672319033),(115582,7,31794,3,1672319033),(115583,7,31795,3,1672319033),(115584,7,31796,3,1672319033),(115585,7,31797,3,1672319033),(115586,7,31798,3,1672319033),(115587,7,31799,3,1672319033),(115588,7,31800,3,1672319033),(115589,7,31801,3,1672319033),(115590,7,31802,3,1672319033),(115591,7,31803,3,1672319033),(115592,7,31804,3,1672319033),(115593,7,31805,3,1672319033),(115594,7,31806,3,1672319033),(115595,7,31807,3,1672319033),(115596,7,31808,3,1672319033),(115597,7,31809,3,1672319033),(115598,7,31810,3,1672319033),(115599,7,31811,3,1672319033),(115600,7,31812,3,1672319033),(115601,7,31813,3,1672319033),(115602,7,31814,3,1672319033),(115603,7,31815,3,1672319033),(115604,7,31816,3,1672319033),(115605,7,31817,3,1672319033),(115606,7,31818,3,1672319033),(115607,7,31819,3,1672319033),(115608,7,31820,3,1672319033),(115609,7,31821,3,1672319033),(115610,7,31822,3,1672319033),(115611,7,31823,3,1672319033),(115612,7,31824,3,1672319033),(115613,7,31825,3,1672319033),(115614,7,31826,3,1672319033),(115615,7,31827,3,1672319033),(115616,7,31828,3,1672319033),(115617,7,31829,3,1672319033),(115618,7,31830,3,1672319033),(115619,7,31831,3,1672319033),(115620,7,31832,3,1672319033),(115621,7,31833,3,1672319033),(115622,7,31834,3,1672319033),(115623,7,31835,3,1672319033),(115624,7,31836,3,1672319033),(115625,7,31837,3,1672319033),(115626,7,31838,3,1672319033),(115627,7,31839,3,1672319033),(115628,7,31840,3,1672319033),(115629,7,31841,3,1672319033),(115630,7,31842,3,1672319033),(115631,7,31843,3,1672319033),(115632,7,31844,3,1672319033),(115633,7,31845,3,1672319033),(115634,7,31846,3,1672319033),(115635,7,31847,3,1672319033),(115636,7,31848,3,1672319033),(115637,7,31849,3,1672319033),(115638,7,31850,3,1672319033),(115639,7,31851,3,1672319033),(115640,7,31852,3,1672319033),(115641,7,31853,3,1672319033),(115642,7,31854,3,1672319033),(115643,7,31855,3,1672319033),(115644,7,31856,3,1672319033),(115645,7,31857,3,1672319033),(115646,7,31858,3,1672319033),(115647,7,31859,3,1672319033),(115648,7,31860,3,1672319033),(115649,7,31861,3,1672319033),(115650,7,31862,3,1672319033),(115651,7,31863,3,1672319033),(115652,7,31864,3,1672319033),(115653,7,31865,3,1672319033),(115654,7,31866,3,1672319033),(115655,7,31867,3,1672319033),(115656,7,31868,3,1672319033),(115657,7,31869,3,1672319033),(115658,7,31870,3,1672319033),(115659,7,31871,3,1672319033),(115660,7,31872,3,1672319033),(115661,7,31873,3,1672319033),(115662,7,31874,3,1672319033),(115663,7,31875,3,1672319033),(115664,7,31876,3,1672319033),(115665,7,31877,3,1672319033),(115666,7,31878,3,1672319033),(115667,7,31879,3,1672319033),(115668,7,31880,3,1672319033),(115669,7,31881,3,1672319033),(115670,7,31882,3,1672319033),(115671,7,31883,3,1672319033),(115672,7,31884,3,1672319033),(115673,7,31885,3,1672319033),(115674,7,31886,3,1672319033),(115675,7,31887,3,1672319033),(115676,7,31888,3,1672319033),(115677,7,31889,3,1672319033),(115678,7,31890,3,1672319033),(115679,7,31891,3,1672319033),(115680,7,31892,3,1672319033),(115681,7,31893,3,1672319033),(115682,7,31894,3,1672319033),(115683,7,31895,3,1672319033),(115684,7,31896,3,1672319033),(115685,7,31897,3,1672319033),(115686,7,31898,3,1672319033),(115687,7,31899,3,1672319033),(115688,7,31900,3,1672319033),(115689,7,31901,3,1672319033),(115690,7,31902,3,1672319033),(115691,7,31903,3,1672319033),(115692,7,31904,3,1672319033),(115693,7,31905,3,1672319033),(115694,7,31906,3,1672319033),(115695,7,31907,3,1672319033),(115696,7,31908,3,1672319033),(115697,7,31909,3,1672319033),(115698,7,31910,3,1672319033),(115699,7,31911,3,1672319033),(115700,7,31912,3,1672319033),(115701,7,31913,3,1672319033),(115702,7,31914,3,1672319033),(115703,7,31915,3,1672319033),(115704,7,31916,3,1672319033),(115705,7,31917,3,1672319033),(115706,7,31918,3,1672319033),(115707,7,31919,3,1672319033),(115708,7,31920,3,1672319033),(115709,7,31921,3,1672319033),(115710,7,31922,3,1672319033),(115711,7,31923,3,1672319033),(115712,7,31924,3,1672319033),(115713,7,31925,3,1672319033),(115714,7,31926,3,1672319033),(115715,7,31927,3,1672319033),(115716,7,31928,3,1672319033),(115717,7,31929,3,1672319033),(115718,7,31930,3,1672319033),(115719,7,31931,3,1672319033),(115720,7,31932,3,1672319033),(115721,7,31933,3,1672319033),(115722,7,31934,3,1672319033),(115723,7,31935,3,1672319033),(115724,7,31936,3,1672319033),(115725,7,31937,3,1672319033),(115726,7,31938,3,1672319033),(115727,7,31939,3,1672319033),(115728,7,31940,3,1672319033),(115729,7,31941,3,1672319033),(115730,7,31942,3,1672319033),(115731,7,31943,3,1672319033),(115732,7,31944,3,1672319033),(115733,7,31945,3,1672319033),(115734,7,31946,3,1672319033),(115735,7,31947,3,1672319033),(115736,7,31948,3,1672319033),(115737,7,31949,3,1672319033),(115738,7,31950,3,1672319033),(115739,7,31951,3,1672319033),(115740,7,31952,3,1672319033),(115741,7,31953,3,1672319033),(115742,7,31954,3,1672319033),(115743,7,31955,3,1672319033),(115744,7,31956,3,1672319033),(115745,7,31957,3,1672319033),(115746,7,31958,3,1672319033),(115747,7,31959,3,1672319033),(115748,7,31960,3,1672319033),(115749,7,31961,3,1672319033),(115750,7,31962,3,1672319033),(115751,7,31963,3,1672319033),(115752,7,31964,3,1672319033),(115753,7,31965,3,1672319033),(115754,7,31966,3,1672319033),(115755,7,31967,3,1672319033),(115756,7,31968,3,1672319033),(115757,7,31969,3,1672319033),(115758,7,31970,3,1672319033),(115759,7,31971,3,1672319033),(115760,7,31972,3,1672319033),(115761,7,31973,3,1672319033),(115762,7,31974,3,1672319033),(115763,7,31975,3,1672319033),(115764,7,31976,3,1672319033),(115765,7,31977,3,1672319033),(115766,7,31978,3,1672319033),(115767,7,31979,3,1672319033),(115768,7,31980,3,1672319033),(115769,7,31981,3,1672319033),(115770,7,31982,3,1672319033),(115771,7,31983,3,1672319033),(115772,7,31984,3,1672319033),(115773,7,31985,3,1672319033),(115774,7,31986,3,1672319033),(115775,7,31987,3,1672319033),(115776,7,31988,3,1672319033),(115777,7,31989,3,1672319033),(115778,7,31990,3,1672319033),(115779,7,31991,3,1672319033),(115780,7,31992,3,1672319033),(115781,7,31993,3,1672319033),(115782,7,31994,3,1672319033),(115783,7,31995,3,1672319033),(115784,7,31996,3,1672319033),(115785,7,31997,3,1672319033),(115786,7,31998,3,1672319033),(115787,7,31999,3,1672319033),(115788,7,32000,3,1672319033),(115789,7,32001,3,1672319033),(115790,7,32002,3,1672319033),(115791,7,32003,3,1672319033),(115792,7,32004,3,1672319033),(115793,7,32005,3,1672319033),(115794,7,32006,3,1672319033),(115795,7,32007,3,1672319033),(115796,7,32008,3,1672319033),(115797,7,32009,3,1672319033),(115798,7,32010,3,1672319033),(115799,7,32011,3,1672319033),(115800,7,32012,3,1672319033),(115801,7,32013,3,1672319033),(115802,7,32014,3,1672319033),(115803,7,32015,3,1672319033),(115804,7,32016,3,1672319033),(115805,7,32017,3,1672319033),(115806,7,32018,3,1672319033),(115807,7,32019,3,1672319033),(115808,7,32020,3,1672319033),(115809,7,32021,3,1672319033),(115810,7,32022,3,1672319033),(115811,7,32023,3,1672319033),(115812,7,32024,3,1672319033),(115813,7,32025,3,1672319033),(115814,7,32026,3,1672319033),(115815,7,32027,3,1672319033),(115816,7,32028,3,1672319033),(115817,7,32029,3,1672319033),(115818,7,32030,3,1672319033),(115819,7,32031,3,1672319033),(115820,7,32032,3,1672319033),(115821,7,32033,3,1672319033),(115822,7,32034,3,1672319033),(115823,7,32035,3,1672319033),(115824,7,32036,3,1672319033),(115825,7,32037,3,1672319033),(115826,7,32038,3,1672319033),(115827,7,32039,3,1672319033),(115828,7,32040,3,1672319033),(115829,7,32041,3,1672319033),(115830,7,32042,3,1672319033),(115831,7,32043,3,1672319033),(115832,7,32044,3,1672319033),(115833,7,32045,3,1672319033),(115834,7,32046,3,1672319033),(115835,7,32047,3,1672319033),(115836,7,32048,3,1672319033),(115837,7,32049,3,1672319033),(115838,7,32050,3,1672319033),(115839,7,32051,3,1672319033),(115840,7,32052,3,1672319033),(115841,7,32053,3,1672319033),(115842,7,32054,3,1672319033),(115843,7,32055,3,1672319033),(115844,7,32056,3,1672319033),(115845,7,32057,3,1672319033),(115846,7,32058,3,1672319033),(115847,7,32059,3,1672319033),(115848,7,32060,3,1672319033),(115849,7,32061,3,1672319033),(115850,7,32062,3,1672319033),(115851,7,32063,3,1672319033),(115852,7,32064,3,1672319033),(115853,7,32065,3,1672319033),(115854,7,32066,3,1672319033),(115855,7,32067,3,1672319033),(115856,7,32068,3,1672319033),(115857,7,32069,3,1672319033),(115858,7,32070,3,1672319033),(115859,7,32071,3,1672319033),(115860,7,32072,3,1672319033),(115861,7,32073,3,1672319033),(115862,7,32074,3,1672319033),(115863,7,32075,3,1672319033),(115864,7,32076,3,1672319033),(115865,7,32077,3,1672319033),(115866,7,32078,3,1672319033),(115867,7,32079,3,1672319033),(115868,7,32080,3,1672319033),(115869,7,32081,3,1672319033),(115870,7,32082,3,1672319033),(115871,7,32083,3,1672319033),(115872,7,32084,3,1672319033),(115873,7,32085,3,1672319033),(115874,7,32086,3,1672319033),(115875,7,32087,3,1672319033),(115876,7,32088,3,1672319033),(115877,7,32089,3,1672319033),(115878,7,32090,3,1672319033),(115879,7,32091,3,1672319033),(115880,7,32092,3,1672319033),(115881,7,32093,3,1672319033),(115882,7,32094,3,1672319033),(115883,7,32095,3,1672319033),(115884,7,32096,3,1672319033),(115885,7,32097,3,1672319033),(115886,7,32098,3,1672319033),(115887,7,32099,3,1672319033),(115888,7,32100,3,1672319033),(115889,7,32101,3,1672319033),(115890,7,32102,3,1672319033),(115891,7,32103,3,1672319033),(115892,7,32104,3,1672319033),(115893,7,32105,3,1672319033),(115894,7,32106,3,1672319033),(115895,7,32107,3,1672319033),(115896,7,32108,3,1672319033),(115897,7,32109,3,1672319033),(115898,7,32110,3,1672319033),(115899,7,32111,3,1672319033),(115900,7,32112,3,1672319033),(115901,7,32113,3,1672319033),(115902,7,32114,3,1672319033),(115903,7,32115,3,1672319033),(115904,7,32116,3,1672319033),(115905,7,32117,3,1672319033),(115906,7,32118,3,1672319033),(115907,7,32119,3,1672319033),(115908,7,32120,3,1672319033),(115909,7,32121,3,1672319033),(115910,7,32122,3,1672319033),(115911,7,32123,3,1672319033),(115912,7,32124,3,1672319033),(115913,7,32125,3,1672319033),(115914,7,32126,3,1672319033),(115915,7,32127,3,1672319033),(115916,7,32128,3,1672319033),(115917,7,32129,3,1672319033),(115918,7,32130,3,1672319033),(115919,7,32131,3,1672319033),(115920,7,32132,3,1672319033),(115921,7,32133,3,1672319033),(115922,7,32134,3,1672319033),(115923,7,32135,3,1672319033),(115924,7,32136,3,1672319033),(115925,7,32137,3,1672319033),(115926,7,32138,3,1672319033),(115927,7,32139,3,1672319033),(115928,7,32140,3,1672319033),(115929,7,32141,3,1672319033),(115930,7,32142,3,1672319033),(115931,7,32143,3,1672319033),(115932,7,32144,3,1672319033),(115933,7,32145,3,1672319033),(115934,7,32146,3,1672319033),(115935,7,32147,3,1672319033),(115936,7,32148,3,1672319033),(115937,7,32149,3,1672319033),(115938,7,32150,3,1672319033),(115939,7,32151,3,1672319033),(115940,7,32152,3,1672319033),(115941,7,32153,3,1672319033),(115942,7,32154,3,1672319033),(115943,7,32155,3,1672319033),(115944,7,32156,3,1672319033),(115945,7,32157,3,1672319033),(115946,7,32158,3,1672319033),(115947,7,32159,3,1672319033),(115948,7,32160,3,1672319033),(115949,7,32161,3,1672319033),(115950,7,32162,3,1672319033),(115951,7,32163,3,1672319033),(115952,7,32164,3,1672319033),(115953,7,32165,3,1672319033),(115954,7,32166,3,1672319033),(115955,7,32167,3,1672319033),(115956,7,32168,3,1672319033),(115957,7,32169,3,1672319033),(115958,7,32170,3,1672319033),(115959,7,32171,3,1672319033),(115960,7,32172,3,1672319033),(115961,7,32173,3,1672319033),(115962,7,32174,3,1672319033),(115963,7,32175,3,1672319033),(115964,7,32176,3,1672319033),(115965,7,32177,3,1672319033),(115966,7,32178,3,1672319033),(115967,7,32179,3,1672319033),(115968,7,32180,3,1672319033),(115969,7,32181,3,1672319033),(115970,7,32182,3,1672319033),(115971,7,32183,3,1672319033),(115972,7,32184,3,1672319033),(115973,7,32185,3,1672319033),(115974,7,32186,3,1672319033),(115975,7,32187,3,1672319033),(115976,7,32188,3,1672319033),(115977,7,32189,3,1672319033),(115978,7,32190,3,1672319033),(115979,7,32191,3,1672319033),(115980,7,32192,3,1672319033),(115981,7,32193,3,1672319033),(115982,7,32194,3,1672319033),(115983,7,32195,3,1672319033),(115984,7,32196,3,1672319033),(115985,7,32197,3,1672319033),(115986,7,32198,3,1672319033),(115987,7,32199,3,1672319033),(115988,7,32200,3,1672319033),(115989,7,32201,3,1672319033),(115990,7,32202,3,1672319033),(115991,7,32203,3,1672319033),(115992,7,32204,3,1672319033),(115993,7,32205,3,1672319033),(115994,7,32206,3,1672319033),(115995,7,32207,3,1672319033),(115996,7,32208,3,1672319033),(115997,7,32209,3,1672319033),(115998,7,32210,3,1672319033),(115999,7,32211,3,1672319033),(116000,7,32212,3,1672319033),(116001,7,32213,3,1672319033),(116002,7,32214,3,1672319033),(116003,7,32215,3,1672319033),(116004,7,32216,3,1672319033),(116005,7,32217,3,1672319033),(116006,7,32218,3,1672319033),(116007,7,32219,3,1672319033),(116008,7,32220,3,1672319033),(116009,7,32221,3,1672319033),(116010,7,32222,3,1672319033),(116011,7,32223,3,1672319033),(116012,7,32224,3,1672319033),(116013,7,32225,3,1672319033),(116014,7,32226,3,1672319033),(116015,7,32227,3,1672319033),(116016,7,32228,3,1672319033),(116017,7,32229,3,1672319033),(116018,7,32230,3,1672319033),(116019,7,32231,3,1672319033),(116020,7,32232,3,1672319033),(116021,7,32233,3,1672319033),(116022,7,32234,3,1672319033),(116023,7,32235,3,1672319033),(116024,7,32236,3,1672319033),(116025,7,32237,3,1672319033),(116026,7,32238,3,1672319033),(116027,7,32239,3,1672319033),(116028,7,32240,3,1672319033),(116029,7,32241,3,1672319033),(116030,7,32242,3,1672319033),(116031,7,32243,3,1672319033),(116032,7,32244,3,1672319033),(116033,7,32245,3,1672319033),(116034,7,32246,3,1672319033),(116035,7,32247,3,1672319033),(116036,7,32248,3,1672319033),(116037,7,32249,3,1672319033),(116038,7,32250,3,1672319033),(116039,7,32251,3,1672319033),(116040,7,32252,3,1672319033),(116041,7,32253,3,1672319033),(116042,7,32254,3,1672319033),(116043,7,32255,3,1672319033),(116044,7,32256,3,1672319033),(116045,7,32257,3,1672319033),(116046,7,32258,3,1672319033),(116047,7,32259,3,1672319033),(116048,7,32260,3,1672319033),(116049,7,32261,3,1672319033),(116050,7,32262,3,1672319033),(116051,7,32263,3,1672319033),(116052,7,32264,3,1672319033),(116053,7,32265,3,1672319033),(116054,7,32266,3,1672319033),(116055,7,32267,3,1672319033),(116056,7,32268,3,1672319033),(116057,7,32269,3,1672319033),(116058,7,32270,3,1672319033),(116059,7,32271,3,1672319033),(116060,7,32272,3,1672319033),(116061,7,32273,3,1672319033),(116062,7,32274,3,1672319033),(116063,7,32275,3,1672319033),(116064,7,32276,3,1672319033),(116065,7,32277,3,1672319033),(116066,7,32278,3,1672319033),(116067,7,32279,3,1672319033),(116068,7,32280,3,1672319033),(116069,7,32281,3,1672319033),(116070,7,32282,3,1672319033),(116071,7,32283,3,1672319033),(116072,7,32284,3,1672319033),(116073,7,32285,3,1672319033),(116074,7,32286,3,1672319033),(116075,7,32287,3,1672319033),(116076,7,32288,3,1672319033),(116077,7,32289,3,1672319033),(116078,7,32290,3,1672319033),(116079,7,32291,3,1672319033),(116080,7,32292,3,1672319033),(116081,7,32293,3,1672319033),(116082,7,32294,3,1672319033),(116083,7,32295,3,1672319033),(116084,7,32296,3,1672319033),(116085,7,32297,3,1672319033),(116086,7,32298,3,1672319033),(116087,7,32299,3,1672319033),(116088,7,32300,3,1672319033),(116089,7,32301,3,1672319033),(116090,7,32302,3,1672319033),(116091,7,32303,3,1672319033),(116092,7,32304,3,1672319033),(116093,7,32305,3,1672319033),(116094,7,32306,3,1672319033),(116095,7,32307,3,1672319033),(116096,7,32308,3,1672319033),(116097,7,32309,3,1672319033),(116098,7,32310,3,1672319033),(116099,7,32311,3,1672319033),(116100,7,32312,3,1672319033),(116101,7,32313,3,1672319033),(116102,7,32314,3,1672319033),(116103,7,32315,3,1672319033),(116104,7,32316,3,1672319033),(116105,7,32317,3,1672319033),(116106,7,32318,3,1672319033),(116107,7,32319,3,1672319033),(116108,7,32320,3,1672319033),(116109,7,32321,3,1672319033),(116110,7,32322,3,1672319033),(116111,7,32323,3,1672319033),(116112,7,32324,3,1672319033),(116113,7,32325,3,1672319033),(116114,7,32326,3,1672319033),(116115,7,32327,3,1672319033),(116116,7,32328,3,1672319033),(116117,7,32329,3,1672319033),(116118,7,32330,3,1672319033),(116119,7,32331,3,1672319033),(116120,7,32332,3,1672319033),(116121,7,32333,3,1672319033),(116122,7,32334,3,1672319033),(116123,7,32335,3,1672319033),(116124,7,32336,3,1672319033),(116125,7,32337,3,1672319033),(116126,7,32338,3,1672319033),(116127,7,32339,3,1672319033),(116128,7,32340,3,1672319033),(116129,7,32341,3,1672319033),(116130,7,32342,3,1672319033),(116131,7,32343,3,1672319033),(116132,7,32344,3,1672319033),(116133,7,32345,3,1672319033),(116134,7,32346,3,1672319033),(116135,7,32347,3,1672319033),(116136,7,32348,3,1672319033),(116137,7,32349,3,1672319033),(116138,7,32350,3,1672319033),(116139,7,32351,3,1672319033),(116140,7,32352,3,1672319033),(116141,7,32353,3,1672319033),(116142,7,32354,3,1672319033),(116143,7,32355,3,1672319033),(116144,7,32356,3,1672319033),(116145,7,32357,3,1672319033),(116146,7,32358,3,1672319033),(116147,7,32359,3,1672319033),(116148,7,32360,3,1672319033),(116149,7,32361,3,1672319033),(116150,7,32362,3,1672319033),(116151,7,32363,3,1672319033),(116152,7,32364,3,1672319033),(116153,7,32365,3,1672319033),(116154,7,32366,3,1672319033),(116155,7,32367,3,1672319033),(116156,7,32368,3,1672319033),(116157,7,32369,3,1672319033),(116158,7,32370,3,1672319033),(116159,7,32371,3,1672319033),(116160,7,32372,3,1672319033),(116161,7,32373,3,1672319033),(116162,7,32374,3,1672319033),(116163,7,32375,3,1672319033),(116164,7,32376,3,1672319033),(116165,7,32377,3,1672319033),(116166,7,32378,3,1672319033),(116167,7,32379,3,1672319033),(116168,7,32380,3,1672319033),(116169,7,32381,3,1672319033),(116170,7,32382,3,1672319033),(116171,7,32383,3,1672319033),(116172,7,32384,3,1672319033),(116173,7,32385,3,1672319033),(116174,7,32386,3,1672319033),(116175,7,32387,3,1672319033),(116176,7,32388,3,1672319033),(116177,7,32389,3,1672319033),(116178,7,32390,3,1672319033),(116179,7,32391,3,1672319033),(116180,7,32392,3,1672319033),(116181,7,32393,3,1672319033),(116182,7,32394,3,1672319033),(116183,7,32395,3,1672319033),(116184,7,32396,3,1672319033),(116185,7,32397,3,1672319033),(116186,7,32398,3,1672319033),(116187,7,32399,3,1672319033),(116188,7,32400,3,1672319033),(116189,7,32401,3,1672319033),(116190,7,32402,3,1672319033),(116191,7,32403,3,1672319033),(116192,7,32404,3,1672319033),(116193,7,32405,3,1672319033),(116194,7,32406,3,1672319033),(116195,7,32407,3,1672319033),(116196,7,32408,3,1672319033),(116197,7,32409,3,1672319033),(116198,7,32410,3,1672319033),(116199,7,32411,3,1672319033),(116200,7,32412,3,1672319033),(116201,7,32413,3,1672319033),(116202,7,32414,3,1672319033),(116203,7,32415,3,1672319033),(116204,7,32416,3,1672319033),(116205,7,32417,3,1672319033),(116206,7,32418,3,1672319033),(116207,7,32419,3,1672319033),(116208,7,32420,3,1672319033),(116209,7,32421,3,1672319033),(116210,7,32422,3,1672319033),(116211,7,32423,3,1672319033),(116212,7,32424,3,1672319033),(116213,7,32425,3,1672319033),(116214,7,32426,3,1672319033),(116215,7,32427,3,1672319033),(116216,7,32428,3,1672319033),(116217,7,32429,3,1672319033),(116218,7,32430,3,1672319033),(116219,7,32431,3,1672319033),(116220,7,32432,3,1672319033),(116221,7,32433,3,1672319033),(116222,7,32434,3,1672319033),(116223,7,32435,3,1672319033),(116224,7,32436,3,1672319033),(116225,7,32437,3,1672319033),(116226,7,32438,3,1672319033),(116227,7,32439,3,1672319033),(116228,7,32440,3,1672319033),(116229,7,32441,3,1672319033),(116230,7,32442,3,1672319033),(116231,7,32443,3,1672319033),(116232,7,32444,3,1672319033),(116233,7,32445,3,1672319033),(116234,7,32446,3,1672319033),(116235,7,32447,3,1672319033),(116236,7,32448,3,1672319033),(116237,7,32449,3,1672319033),(116238,7,32450,3,1672319033),(116239,7,32451,3,1672319033),(116240,7,32452,3,1672319033),(116241,7,32453,3,1672319033),(116242,7,32454,3,1672319033),(116243,7,32455,3,1672319033),(116244,7,32456,3,1672319033),(116245,7,32457,3,1672319033),(116246,7,32458,3,1672319033),(116247,7,32459,3,1672319033),(116248,7,32460,3,1672319033),(116249,7,32461,3,1672319033),(116250,7,32462,3,1672319033),(116251,7,32463,3,1672319033),(116252,7,32464,3,1672319033),(116253,7,32465,3,1672319033),(116254,7,32466,3,1672319033),(116255,7,32467,3,1672319033),(116256,7,32468,3,1672319033),(116257,7,32469,3,1672319033),(116258,7,32470,3,1672319033),(116259,7,32471,3,1672319033),(116260,7,32472,3,1672319033),(116261,7,32473,3,1672319033),(116262,7,32474,3,1672319033),(116263,7,32475,3,1672319033),(116264,7,32476,3,1672319033),(116265,7,32477,3,1672319033),(116266,7,32478,3,1672319033),(116267,7,32479,3,1672319033),(116268,7,32480,3,1672319033),(116269,7,32481,3,1672319033),(116270,7,32482,3,1672319033),(116271,7,32483,3,1672319033),(116272,7,32484,3,1672319033),(116273,7,32485,3,1672319033),(116274,7,32486,3,1672319033),(116275,7,32487,3,1672319033),(116276,7,32488,3,1672319033),(116277,7,32489,3,1672319033),(116278,7,32490,3,1672319033),(116279,7,32491,3,1672319033),(116280,7,32492,3,1672319033),(116281,7,32493,3,1672319033),(116282,7,32494,3,1672319033),(116283,7,32495,3,1672319033),(116284,7,32496,3,1672319033),(116285,7,32497,3,1672319033),(116286,7,32498,3,1672319033),(116287,7,32499,3,1672319033),(116288,7,32500,3,1672319033),(116289,7,32501,3,1672319033),(116290,7,32502,3,1672319033),(116291,7,32503,3,1672319033),(116292,7,32504,3,1672319033),(116293,7,32505,3,1672319033),(116294,7,32506,3,1672319033),(116295,7,32507,3,1672319033),(116296,7,32508,3,1672319033),(116297,7,32509,3,1672319033),(116298,7,32510,3,1672319033),(116299,7,32511,3,1672319033),(116300,7,32512,3,1672319033),(116301,7,32513,3,1672319033),(116302,7,32514,3,1672319033),(116303,7,32515,3,1672319033),(116304,7,32516,3,1672319033),(116305,7,32517,3,1672319033),(116306,7,32518,3,1672319033),(116307,7,32519,3,1672319033),(116308,7,32520,3,1672319033),(116309,7,32521,3,1672319033),(116310,7,32522,3,1672319033),(116311,7,32523,3,1672319033),(116312,7,32524,3,1672319033),(116313,7,32525,3,1672319033),(116314,7,32526,3,1672319033),(116315,7,32527,3,1672319033),(116316,7,32531,3,1672319033),(116317,7,32532,3,1672319033),(116318,7,32533,3,1672319033),(116319,7,32534,3,1672319033),(116320,7,32535,3,1672319033),(116321,7,32536,3,1672319033),(116322,7,32537,3,1672319033),(116323,7,32538,3,1672319033),(116324,7,32539,3,1672319033),(116325,7,32540,3,1672319033),(116326,7,32541,3,1672319033),(116327,7,32542,3,1672319033),(116328,7,32543,3,1672319033),(116329,7,32544,3,1672319033),(116330,7,32545,3,1672319033),(116331,7,32546,3,1672319033),(116332,7,32547,3,1672319033),(116333,7,32548,3,1672319033),(116334,7,32549,3,1672319033),(116335,7,32550,3,1672319033),(116336,7,32551,3,1672319033),(116337,7,32552,3,1672319033),(116338,7,32553,3,1672319033),(116339,7,32554,3,1672319033),(116340,7,32555,3,1672319033),(116341,7,32556,3,1672319033),(116342,7,32557,3,1672319033),(116343,7,32558,3,1672319033),(116344,7,32559,3,1672319033),(116345,7,32560,3,1672319033),(116346,7,32561,3,1672319033),(116347,7,32562,3,1672319033),(116348,7,32563,3,1672319033),(116349,7,32564,3,1672319033),(116350,7,32565,3,1672319033),(116351,7,32566,3,1672319033),(116352,7,32567,3,1672319033),(116353,7,32568,3,1672319033),(116354,7,32569,3,1672319033),(116355,7,32570,3,1672319033),(116356,7,32571,3,1672319033),(116357,7,32572,3,1672319033),(116358,7,32573,3,1672319033),(116359,7,32574,3,1672319033),(116360,7,32575,3,1672319033),(116361,7,32576,3,1672319033),(116362,7,32577,3,1672319033),(116363,7,32578,3,1672319033),(116364,7,32579,3,1672319033),(116365,7,32580,3,1672319033),(116366,7,32581,3,1672319033),(116367,7,32582,3,1672319033),(116368,7,32583,3,1672319033),(116369,7,32584,3,1672319033),(116370,7,32585,3,1672319033),(116371,7,32586,3,1672319033),(116372,7,32587,3,1672319033),(116373,7,32588,3,1672319033),(116374,7,32589,3,1672319033),(116375,7,32590,3,1672319033),(116376,7,32591,3,1672319033),(116377,7,32592,3,1672319033),(116378,7,32593,3,1672319033),(116379,7,32594,3,1672319033),(116380,7,32595,3,1672319033),(116381,7,32596,3,1672319033),(116382,7,32597,3,1672319033),(116383,7,32598,3,1672319033),(116384,7,32599,3,1672319033),(116385,7,32600,3,1672319033),(116386,7,32601,3,1672319033),(116387,7,32602,3,1672319033),(116388,7,32603,3,1672319033),(116389,7,32604,3,1672319033),(116390,7,32605,3,1672319033),(116391,7,32606,3,1672319033),(116392,7,32607,3,1672319033),(116393,7,32608,3,1672319033),(116394,7,32609,3,1672319033),(116395,7,32610,3,1672319033),(116396,7,32611,3,1672319033),(116397,7,32612,3,1672319033),(116398,7,32613,3,1672319033),(116399,7,32614,3,1672319033),(116400,7,32615,3,1672319033),(116401,7,32616,3,1672319033),(116402,7,32617,3,1672319033),(116403,7,32618,3,1672319033),(116404,7,32619,3,1672319033),(116405,7,32620,3,1672319033),(116406,7,32621,3,1672319033),(116407,7,32622,3,1672319033),(116408,7,32623,3,1672319033),(116409,7,32624,3,1672319033),(116410,7,32625,3,1672319033),(116411,7,32626,3,1672319033),(116412,7,32627,3,1672319033),(116413,7,32628,3,1672319033),(116414,7,32629,3,1672319033),(116415,7,32630,3,1672319033),(116416,7,32631,3,1672319033),(116417,7,32632,3,1672319033),(116418,7,32633,3,1672319033),(116419,7,32634,3,1672319033),(116420,7,32635,3,1672319033),(116421,7,32636,3,1672319033),(116422,7,32637,3,1672319033),(116423,7,32638,3,1672319033),(116424,7,32639,3,1672319033),(116425,7,32640,3,1672319033),(116426,7,32641,3,1672319033),(116427,7,32642,3,1672319033),(116428,7,32643,3,1672319033),(116429,7,32644,3,1672319033),(116430,7,32645,3,1672319033),(116431,7,32646,3,1672319033),(116432,7,32647,3,1672319033),(116433,7,32648,3,1672319033),(116434,7,32649,3,1672319033),(116435,7,32650,3,1672319033),(116436,7,32651,3,1672319033),(116437,7,32652,3,1672319033),(116438,7,32653,3,1672319033),(116439,7,32654,3,1672319033),(116440,7,32655,3,1672319033),(116441,7,32656,3,1672319033),(116442,7,32657,3,1672319033),(116443,7,32658,3,1672319033),(116444,7,32659,3,1672319033),(116445,7,32660,3,1672319033),(116446,7,32661,3,1672319033),(116447,7,32662,3,1672319033),(116448,7,32663,3,1672319033),(116449,7,32664,3,1672319033),(116450,7,32665,3,1672319033),(116451,7,32666,3,1672319033),(116452,7,32667,3,1672319033),(116453,7,32668,3,1672319033),(116454,7,32669,3,1672319033),(116455,7,32670,3,1672319033),(116456,7,32671,3,1672319033),(116457,7,32672,3,1672319033),(116458,7,32673,3,1672319033),(116459,7,32674,3,1672319033),(116460,7,32675,3,1672319033),(116461,7,32678,3,1672319033),(116462,7,32679,3,1672319033),(116463,7,32680,3,1672319033),(116464,7,32681,3,1672319033),(116465,7,32682,3,1672319033),(116466,7,32683,3,1672319033),(120548,3,22945,2,1672319394),(120549,3,22946,2,1672319394),(120550,3,22948,2,1672319394),(120551,3,22949,2,1672319394),(120552,3,22950,2,1672319394),(120553,3,22951,2,1672319394),(120554,3,22952,2,1672319394),(120555,3,27212,2,1672319394),(120556,3,27213,2,1672319394),(120557,3,27214,2,1672319394),(120558,3,27246,2,1672319394),(120559,3,27247,2,1672319394),(120560,3,27248,2,1672319394),(120561,3,27249,2,1672319394),(120562,3,27250,2,1672319394),(120563,3,27312,2,1672319394),(120564,3,27313,2,1672319394),(120565,3,27314,2,1672319394),(120566,3,27315,2,1672319394),(120567,3,27316,2,1672319394),(120568,3,27317,2,1672319394),(120569,3,27318,2,1672319394),(120570,3,27319,2,1672319394),(120571,3,27320,2,1672319394),(120572,3,27415,2,1672319394),(120573,3,27416,2,1672319394),(120574,3,27417,2,1672319394),(120575,3,27419,2,1672319394),(120576,3,27420,2,1672319394),(120577,3,27421,2,1672319394),(120578,3,27422,2,1672319394),(120579,3,27423,2,1672319394),(120580,3,28246,2,1672319394),(120581,3,28323,2,1672319394),(120582,3,28324,2,1672319394),(120583,3,28325,2,1672319394),(120584,3,28326,2,1672319394),(120585,3,28327,2,1672319394),(120586,3,28328,2,1672319394),(120587,3,28329,2,1672319394),(120588,3,28798,2,1672319394),(120589,3,28799,2,1672319394),(120590,3,28800,2,1672319394),(120591,3,28801,2,1672319394),(120592,3,28802,2,1672319394),(120593,3,28803,2,1672319394),(120594,3,30091,2,1672319394),(120595,3,30092,2,1672319394),(120596,3,30101,2,1672319394),(120597,3,30688,2,1672319394),(120598,3,30689,2,1672319394),(120599,3,30917,2,1672319394),(120600,3,30918,2,1672319394),(120601,3,30919,2,1672319394),(120602,3,30920,2,1672319394),(120603,3,30921,2,1672319394),(120604,3,30922,2,1672319394),(120605,3,31807,2,1672319394),(120606,3,31808,2,1672319394),(120607,3,31809,2,1672319394),(120608,3,31810,2,1672319394),(120609,3,31811,2,1672319394),(120610,3,31812,2,1672319394),(120611,3,31813,2,1672319394),(120612,3,31814,2,1672319394),(120613,3,31815,2,1672319394),(120614,3,32170,2,1672319394),(120615,3,32171,2,1672319394),(120616,3,32172,2,1672319394),(120617,3,32173,2,1672319394),(120618,3,32174,2,1672319394),(120619,3,32175,2,1672319394),(120620,3,32442,2,1672319394),(120621,3,32443,2,1672319394),(120622,3,32444,2,1672319394),(120623,3,32445,2,1672319394),(120624,3,32446,2,1672319394),(120625,3,32447,2,1672319394),(120626,3,32448,2,1672319394),(120627,3,32449,2,1672319394),(120628,3,32450,2,1672319394),(120629,3,32451,2,1672319394),(120630,3,32452,2,1672319394),(120631,3,32453,2,1672319394),(120632,3,32454,2,1672319394),(120633,3,32455,2,1672319394),(120634,3,32456,2,1672319394),(120635,3,32457,2,1672319394),(120636,3,32458,2,1672319394),(120637,3,32459,2,1672319394),(120638,3,32460,2,1672319394),(120639,3,32461,2,1672319394),(120640,3,32462,2,1672319394),(120641,3,32486,2,1672319394),(120642,3,32487,2,1672319394),(120643,3,32488,2,1672319394),(120644,3,32489,2,1672319394),(120645,3,32490,2,1672319394),(120646,3,32491,2,1672319394),(120647,3,32492,2,1672319394),(120648,3,32493,2,1672319394),(120649,3,32494,2,1672319394),(120650,3,32495,2,1672319394),(120651,3,32496,2,1672319394),(120652,3,32497,2,1672319394),(120653,3,32498,2,1672319394),(120654,3,32499,2,1672319394),(120655,3,32500,2,1672319394),(120656,3,32501,2,1672319394),(120657,3,32502,2,1672319394),(120658,3,32503,2,1672319394),(120659,3,32504,2,1672319394),(120660,3,32505,2,1672319394),(120661,3,32506,2,1672319394),(120662,3,32507,2,1672319394),(120663,3,32508,2,1672319394),(120664,3,32509,2,1672319394),(120665,3,32510,2,1672319394),(120666,3,32511,2,1672319394),(120667,3,32512,2,1672319394),(120668,3,32513,2,1672319394),(120669,3,32514,2,1672319394),(120670,3,32515,2,1672319394),(120671,3,32758,2,1672319394),(120672,3,32759,2,1672319394),(120673,3,32760,2,1672319394),(120674,3,32761,2,1672319394),(120675,3,32766,2,1672319394),(120676,3,32767,2,1672319394),(120677,3,32768,2,1672319394),(120678,3,32769,2,1672319394),(120679,3,32770,2,1672319394),(120680,3,32771,2,1672319394),(120681,3,32772,2,1672319394),(120682,3,32773,2,1672319394),(120683,3,32774,2,1672319394),(120684,3,32775,2,1672319394),(120685,3,32776,2,1672319394),(120686,3,32777,2,1672319394),(120687,3,32778,2,1672319394),(120688,3,32779,2,1672319394),(120689,3,33096,2,1672319394),(120690,3,33097,2,1672319394),(120691,3,33098,2,1672319394),(120692,3,33099,2,1672319394),(120693,3,33100,2,1672319394),(120694,3,33101,2,1672319394),(120695,3,33102,2,1672319394),(120696,3,33103,2,1672319394),(120697,3,33104,2,1672319394),(120698,3,33105,2,1672319394),(120699,3,33106,2,1672319394),(120700,3,33107,2,1672319394),(120701,3,33108,2,1672319394),(120702,3,33109,2,1672319394),(120703,3,33110,2,1672319394),(120704,3,33111,2,1672319394),(120705,3,33112,2,1672319394),(120706,3,33113,2,1672319394),(120707,3,33114,2,1672319394),(120708,3,33115,2,1672319394),(120709,3,33116,2,1672319394),(120710,3,33117,2,1672319394),(120711,3,33118,2,1672319394),(120712,3,33119,2,1672319394),(120713,3,33120,2,1672319394),(120714,3,33121,2,1672319394),(120715,3,33122,2,1672319394),(120716,3,33123,2,1672319394),(120717,3,33124,2,1672319394),(120718,3,33125,2,1672319394),(120719,3,33183,2,1672319394),(120720,3,33966,2,1672319394),(120721,3,33967,2,1672319394),(120722,3,33968,2,1672319394),(120723,3,33969,2,1672319394),(120724,3,33970,2,1672319394),(120725,3,33971,2,1672319394),(120726,3,33972,2,1672319394),(120727,3,33973,2,1672319394),(120728,3,33974,2,1672319394),(120729,3,33975,2,1672319394),(120730,3,33976,2,1672319394),(120731,3,33977,2,1672319394),(120732,3,33978,2,1672319394),(120733,3,33979,2,1672319394),(120734,3,33980,2,1672319394),(120735,3,33981,2,1672319394),(120736,3,33982,2,1672319394),(120737,3,33983,2,1672319394),(120738,3,33984,2,1672319394),(120739,3,34007,2,1672319394),(120740,3,34008,2,1672319394),(120741,3,34009,2,1672319394),(120742,3,34010,2,1672319394),(120743,3,34011,2,1672319394),(120744,3,34012,2,1672319394),(120745,3,34013,2,1672319394),(120746,3,34014,2,1672319394),(120747,3,34015,2,1672319394),(120748,3,34016,2,1672319394),(120749,3,34017,2,1672319394),(120750,3,34018,2,1672319394),(120751,3,34019,2,1672319394),(120752,3,34020,2,1672319394),(120753,3,34021,2,1672319394),(120754,3,34022,2,1672319394),(120755,3,34023,2,1672319394),(120756,3,34024,2,1672319394),(120757,3,34025,2,1672319394),(120758,3,34048,2,1672319394),(120759,3,34049,2,1672319394),(120760,3,34050,2,1672319394),(120761,3,34051,2,1672319394),(120762,3,34052,2,1672319394),(120763,3,34053,2,1672319394),(120764,3,34054,2,1672319394),(120765,3,34055,2,1672319394),(120766,3,34056,2,1672319394),(120767,3,34057,2,1672319394),(120768,3,34058,2,1672319394),(120769,3,34059,2,1672319394),(120770,3,34060,2,1672319394),(120771,3,34061,2,1672319394),(120772,3,34062,2,1672319394),(120773,3,34063,2,1672319394),(120774,3,34064,2,1672319394),(120775,3,34065,2,1672319394),(120776,3,34066,2,1672319394),(120777,3,34089,2,1672319394),(120778,3,34090,2,1672319394),(120779,3,34091,2,1672319394),(120780,3,34092,2,1672319394),(120781,3,34093,2,1672319394),(120782,3,34094,2,1672319394),(120783,3,34095,2,1672319394),(120784,3,34096,2,1672319394),(120785,3,34097,2,1672319394),(120786,3,34098,2,1672319394),(120787,3,34099,2,1672319394),(120788,3,34100,2,1672319394),(120789,3,34101,2,1672319394),(120790,3,34102,2,1672319394),(120791,3,34103,2,1672319394),(120792,3,34104,2,1672319394),(120793,3,34105,2,1672319394),(120794,3,34106,2,1672319394),(120795,3,34107,2,1672319394),(120796,3,34130,2,1672319394),(120797,3,34131,2,1672319394),(120798,3,34132,2,1672319394),(120799,3,34133,2,1672319394),(120800,3,34134,2,1672319394),(120801,3,34135,2,1672319394),(120802,3,34136,2,1672319394),(120803,3,34137,2,1672319394),(120804,3,34138,2,1672319394),(120805,3,34139,2,1672319394),(120806,3,34140,2,1672319394),(120807,3,34141,2,1672319394),(120808,3,34142,2,1672319394),(120809,3,34143,2,1672319394),(120810,3,34144,2,1672319394),(120811,3,34145,2,1672319394),(120812,3,34146,2,1672319394),(120813,3,34147,2,1672319394),(120814,3,34148,2,1672319394),(120815,3,34212,2,1672319394),(120816,3,34213,2,1672319394),(120817,3,34214,2,1672319394),(120818,3,34215,2,1672319394),(120819,3,34216,2,1672319394),(120820,3,34217,2,1672319394),(120821,3,34218,2,1672319394),(120822,3,34219,2,1672319394),(120823,3,34220,2,1672319394),(120824,3,34221,2,1672319394),(120825,3,34222,2,1672319394),(120826,3,34223,2,1672319394),(120827,3,34224,2,1672319394),(120828,3,34225,2,1672319394),(120829,3,34482,2,1672319394),(120830,3,34483,2,1672319394),(120831,3,34484,2,1672319394),(120832,3,34485,2,1672319394),(120833,3,34486,2,1672319394),(120834,3,34487,2,1672319394),(120835,3,34488,2,1672319394),(120836,3,34489,2,1672319394),(120837,3,34490,2,1672319394),(120838,3,34491,2,1672319394),(120839,3,34492,2,1672319394),(120840,3,34493,2,1672319394),(120841,3,34494,2,1672319394),(120842,3,34495,2,1672319394),(120843,3,34496,2,1672319394),(120844,3,34497,2,1672319394),(120845,3,34498,2,1672319394),(120846,3,34530,2,1672319394),(120847,3,34531,2,1672319394),(120848,3,34532,2,1672319394),(120849,3,34533,2,1672319394),(120850,3,34534,2,1672319394),(120851,3,34535,2,1672319394),(120852,3,34536,2,1672319394),(120853,3,34537,2,1672319394),(120854,3,34538,2,1672319394),(120855,3,34539,2,1672319394),(120856,3,34540,2,1672319394),(120857,3,34541,2,1672319394),(120858,3,34542,2,1672319394),(120859,3,34543,2,1672319394),(120860,3,34544,2,1672319394),(120861,3,34545,2,1672319394),(120862,3,34546,2,1672319394),(120863,3,34578,2,1672319394),(120864,3,34579,2,1672319394),(120865,3,34580,2,1672319394),(120866,3,34581,2,1672319394),(120867,3,34582,2,1672319394),(120868,3,34583,2,1672319394),(120869,3,34584,2,1672319394),(120870,3,34585,2,1672319394),(120871,3,34586,2,1672319394),(120872,3,34587,2,1672319394),(120873,3,34588,2,1672319394),(120874,3,34589,2,1672319394),(120875,3,34590,2,1672319394),(120876,3,34591,2,1672319394),(120877,3,34592,2,1672319394),(120878,3,34593,2,1672319394),(120879,3,34594,2,1672319394),(120880,3,34626,2,1672319394),(120881,3,34627,2,1672319394),(120882,3,34628,2,1672319394),(120883,3,34629,2,1672319394),(120884,3,34630,2,1672319394),(120885,3,34631,2,1672319394),(120886,3,34632,2,1672319394),(120887,3,34633,2,1672319394),(120888,3,34634,2,1672319394),(120889,3,34635,2,1672319394),(120890,3,34636,2,1672319394),(120891,3,34637,2,1672319394),(120892,3,34638,2,1672319394),(120893,3,34639,2,1672319394),(120894,3,34640,2,1672319394),(120895,3,34641,2,1672319394),(120896,3,34642,2,1672319394),(120897,3,34674,2,1672319394),(120898,3,34675,2,1672319394),(120899,3,34676,2,1672319394),(120900,3,34677,2,1672319394),(120901,3,34678,2,1672319394),(120902,3,34679,2,1672319394),(120903,3,34680,2,1672319394),(120904,3,34681,2,1672319394),(120905,3,34682,2,1672319394),(120906,3,34683,2,1672319394),(120907,3,34684,2,1672319394),(120908,3,34685,2,1672319394),(120909,3,34686,2,1672319394),(120910,3,34687,2,1672319394),(120911,3,34688,2,1672319394),(120912,3,34689,2,1672319394),(120913,3,34690,2,1672319394),(120914,3,34770,2,1672319394),(120915,3,34771,2,1672319394),(120916,3,34772,2,1672319394),(120917,3,34773,2,1672319394),(120918,3,34774,2,1672319394),(120919,3,34775,2,1672319394),(120920,3,34776,2,1672319394),(120921,3,34777,2,1672319394),(120922,3,34778,2,1672319394),(120923,3,34779,2,1672319394),(120924,3,34780,2,1672319394),(120925,3,34781,2,1672319394),(120926,3,34782,2,1672319394),(120927,3,34783,2,1672319394),(120928,3,34784,2,1672319394),(120929,3,34785,2,1672319394),(120930,3,34786,2,1672319394),(120931,3,34790,2,1672319394),(120932,3,34791,2,1672319394),(120933,3,34792,2,1672319394),(120934,3,34824,2,1672319394),(120935,3,34825,2,1672319394),(120936,3,34826,2,1672319394),(120937,3,34827,2,1672319394),(120938,3,34828,2,1672319394),(120939,3,34829,2,1672319394),(120940,3,34830,2,1672319394),(120941,3,34831,2,1672319394),(120942,3,34832,2,1672319394),(120943,3,34833,2,1672319394),(120944,3,34834,2,1672319394),(120945,3,34835,2,1672319394),(120946,3,34836,2,1672319394),(120947,3,34837,2,1672319394),(120948,3,34838,2,1672319394),(120949,3,34839,2,1672319394),(120950,3,34840,2,1672319394),(120951,3,34872,2,1672319394),(120952,3,34873,2,1672319394),(120953,3,34874,2,1672319394),(120954,3,34875,2,1672319394),(120955,3,34876,2,1672319394),(120956,3,34877,2,1672319394),(120957,3,34878,2,1672319394),(120958,3,34879,2,1672319394),(120959,3,34880,2,1672319394),(120960,3,34881,2,1672319394),(120961,3,34882,2,1672319394),(120962,3,34883,2,1672319394),(120963,3,34884,2,1672319394),(120964,3,34885,2,1672319394),(120965,3,34886,2,1672319394),(120966,3,34887,2,1672319394),(120967,3,34888,2,1672319394),(120968,3,34920,2,1672319394),(120969,3,34921,2,1672319394),(120970,3,34922,2,1672319394),(120971,3,34923,2,1672319394),(120972,3,34924,2,1672319394),(120973,3,34925,2,1672319394),(120974,3,34926,2,1672319394),(120975,3,34927,2,1672319394),(120976,3,34928,2,1672319394),(120977,3,34929,2,1672319394),(120978,3,34930,2,1672319394),(120979,3,34931,2,1672319394),(120980,3,34932,2,1672319394),(120981,3,34933,2,1672319394),(120982,3,34934,2,1672319394),(120983,3,34935,2,1672319394),(120984,3,34936,2,1672319394),(120985,3,35047,2,1672319394),(120986,3,35048,2,1672319394),(120987,3,35049,2,1672319394),(120988,3,35050,2,1672319394),(120989,3,35051,2,1672319394),(120990,3,35052,2,1672319394),(120991,3,35053,2,1672319394),(120992,3,35054,2,1672319394),(120993,3,35055,2,1672319394),(120994,3,35056,2,1672319394),(120995,3,35057,2,1672319394),(120996,3,35058,2,1672319394),(120997,3,35059,2,1672319394),(120998,3,35060,2,1672319394),(120999,3,35061,2,1672319394),(121000,3,35062,2,1672319394),(121001,3,35063,2,1672319394),(121002,3,35369,2,1672319394),(121003,3,35370,2,1672319394),(121004,3,35371,2,1672319394),(121005,3,35372,2,1672319394),(121006,3,35373,2,1672319394),(121007,3,35374,2,1672319394),(121008,3,35375,2,1672319394),(121009,3,35376,2,1672319394),(121010,3,35377,2,1672319394),(121011,3,35378,2,1672319394),(121012,3,35379,2,1672319394),(121013,3,35380,2,1672319394),(121014,3,35381,2,1672319394),(121015,3,35382,2,1672319394),(121016,3,35383,2,1672319394),(121017,3,35384,2,1672319394),(121018,3,35385,2,1672319394),(121019,3,35386,2,1672319394),(121020,3,35387,2,1672319394),(121021,3,35388,2,1672319394),(121022,3,35389,2,1672319394),(121023,3,35390,2,1672319394),(121024,3,35391,2,1672319394),(121025,3,35392,2,1672319394),(121026,3,35393,2,1672319394),(121027,3,35394,2,1672319394),(121028,3,35395,2,1672319394),(121029,3,35396,2,1672319394),(121030,3,35397,2,1672319394),(121031,3,35398,2,1672319394),(121032,3,35399,2,1672319394),(121033,3,35400,2,1672319394),(121034,3,35401,2,1672319394),(121035,3,35402,2,1672319394),(121036,3,35403,2,1672319394),(121037,3,35404,2,1672319394),(121038,3,35405,2,1672319394),(121039,3,40491,2,1672319394),(121040,3,40492,2,1672319394),(121041,3,40493,2,1672319394),(121042,3,40494,2,1672319394),(121043,3,40495,2,1672319394),(121044,3,40496,2,1672319394),(121045,3,40497,2,1672319394),(121046,3,40498,2,1672319394),(121047,3,40499,2,1672319394),(121048,3,40500,2,1672319394),(121049,3,40517,2,1672319394),(121050,3,40518,2,1672319394),(121051,3,40519,2,1672319394),(121052,3,40520,2,1672319394),(121053,3,40521,2,1672319394),(121054,3,40522,2,1672319394),(121055,3,40523,2,1672319394),(121056,3,40524,2,1672319394),(121057,3,40525,2,1672319394),(121058,3,40526,2,1672319394),(121059,3,40527,2,1672319394),(121060,3,40528,2,1672319394),(121061,3,40529,2,1672319394),(121062,3,40530,2,1672319394),(121063,3,40531,2,1672319394),(121064,3,40532,2,1672319394),(121065,3,40545,2,1672319394),(121066,3,40546,2,1672319394),(121067,3,40547,2,1672319394),(121068,3,40548,2,1672319394),(121069,3,40549,2,1672319394),(121070,3,40550,2,1672319394),(121071,3,40551,2,1672319394),(121072,3,40552,2,1672319394),(121073,3,40553,2,1672319394),(121074,3,40582,2,1672319394),(121075,3,40583,2,1672319394),(121076,3,40584,2,1672319394),(121077,3,40585,2,1672319394),(121078,3,40586,2,1672319394),(121079,3,40587,2,1672319394),(121080,3,40588,2,1672319394),(121081,3,40589,2,1672319394),(121082,3,40590,2,1672319394),(121083,3,40591,2,1672319394),(121084,3,40592,2,1672319394),(121085,3,40593,2,1672319394),(121086,3,40594,2,1672319394),(121087,3,40595,2,1672319394),(121088,3,40596,2,1672319394),(121089,3,40597,2,1672319394),(121090,3,40598,2,1672319394),(121091,3,40599,2,1672319394),(121092,3,40671,2,1672319394),(121093,3,40672,2,1672319394),(121094,3,40673,2,1672319394),(121095,3,40674,2,1672319394),(121096,3,40675,2,1672319394),(121097,3,40676,2,1672319394),(121098,3,40677,2,1672319394),(121099,3,40678,2,1672319394),(121100,3,40679,2,1672319394),(121101,3,40680,2,1672319394),(121102,3,40681,2,1672319394),(121103,3,40682,2,1672319394),(121104,3,40683,2,1672319394),(121105,3,40684,2,1672319394),(121106,3,40685,2,1672319394),(121107,3,40686,2,1672319394),(121108,3,40687,2,1672319394),(121109,3,40688,2,1672319394),(121110,3,40689,2,1672319394),(121111,3,43528,2,1672319394),(121112,3,43529,2,1672319394),(121113,3,43530,2,1672319394),(121114,3,43531,2,1672319394),(121115,3,43532,2,1672319394),(121116,3,43533,2,1672319394),(121117,3,43534,2,1672319394),(121118,3,43535,2,1672319394),(121119,3,43536,2,1672319394),(121120,3,43537,2,1672319394),(121121,3,43538,2,1672319394),(121122,3,43539,2,1672319394),(121123,3,43540,2,1672319394),(121124,3,43541,2,1672319394),(121125,3,43542,2,1672319394),(121126,3,43543,2,1672319394),(121127,3,43544,2,1672319394),(121128,3,43545,2,1672319394),(121129,3,43546,2,1672319394),(121130,3,43646,2,1672319394),(121131,3,43647,2,1672319394),(121132,3,43648,2,1672319394),(121133,3,43649,2,1672319394),(121134,3,43650,2,1672319394),(121135,3,43651,2,1672319394),(121136,3,43652,2,1672319394),(121137,3,43653,2,1672319394),(121138,3,43654,2,1672319394),(121139,3,43655,2,1672319394),(121140,3,43656,2,1672319394),(121141,3,43657,2,1672319394),(121142,3,43658,2,1672319394),(121143,3,43659,2,1672319394),(121144,3,43660,2,1672319394),(121145,3,43661,2,1672319394),(121146,3,43662,2,1672319394),(121147,3,43663,2,1672319394),(121148,3,43664,2,1672319394),(121149,3,43665,2,1672319394),(121150,3,43666,2,1672319394),(121151,3,43667,2,1672319394),(121152,3,43668,2,1672319394),(121153,3,43669,2,1672319394),(121154,3,43670,2,1672319394),(121155,3,43671,2,1672319394),(121156,3,43672,2,1672319394),(121157,3,43673,2,1672319394),(121158,3,43674,2,1672319394),(121159,3,43675,2,1672319394),(121160,3,43676,2,1672319394),(121161,3,43677,2,1672319394),(121162,3,43678,2,1672319394),(121163,3,43679,2,1672319394),(121164,3,43680,2,1672319394),(121165,3,43681,2,1672319394),(121166,3,43682,2,1672319394),(121167,3,43683,2,1672319394),(121168,3,43712,2,1672319394),(121169,3,43713,2,1672319394),(121170,3,44337,2,1672319394),(121171,3,44338,2,1672319394),(121172,3,44339,2,1672319394),(121173,3,44340,2,1672319394),(121174,3,44341,2,1672319394),(121175,3,44342,2,1672319394),(121176,3,44428,2,1672319394),(121177,3,44429,2,1672319394),(121178,3,22945,3,1672319394),(121179,3,22946,3,1672319394),(121180,3,22948,3,1672319394),(121181,3,22949,3,1672319394),(121182,3,22950,3,1672319394),(121183,3,22951,3,1672319394),(121184,3,22952,3,1672319394),(121185,3,27212,3,1672319394),(121186,3,27213,3,1672319394),(121187,3,27214,3,1672319394),(121188,3,27246,3,1672319394),(121189,3,27247,3,1672319394),(121190,3,27248,3,1672319394),(121191,3,27249,3,1672319394),(121192,3,27250,3,1672319394),(121193,3,27312,3,1672319394),(121194,3,27313,3,1672319394),(121195,3,27314,3,1672319394),(121196,3,27315,3,1672319394),(121197,3,27316,3,1672319394),(121198,3,27317,3,1672319394),(121199,3,27318,3,1672319394),(121200,3,27319,3,1672319394),(121201,3,27320,3,1672319394),(121202,3,27415,3,1672319394),(121203,3,27416,3,1672319394),(121204,3,27417,3,1672319394),(121205,3,27419,3,1672319394),(121206,3,27420,3,1672319394),(121207,3,27421,3,1672319394),(121208,3,27422,3,1672319394),(121209,3,27423,3,1672319394),(121210,3,28246,3,1672319394),(121211,3,28323,3,1672319394),(121212,3,28324,3,1672319394),(121213,3,28325,3,1672319394),(121214,3,28326,3,1672319394),(121215,3,28327,3,1672319394),(121216,3,28328,3,1672319394),(121217,3,28329,3,1672319394),(121218,3,28798,3,1672319394),(121219,3,28799,3,1672319394),(121220,3,28800,3,1672319394),(121221,3,28801,3,1672319394),(121222,3,28802,3,1672319394),(121223,3,28803,3,1672319394),(121224,3,30091,3,1672319394),(121225,3,30092,3,1672319394),(121226,3,30101,3,1672319394),(121227,3,30688,3,1672319394),(121228,3,30689,3,1672319394),(121229,3,30917,3,1672319394),(121230,3,30918,3,1672319394),(121231,3,30919,3,1672319394),(121232,3,30920,3,1672319394),(121233,3,30921,3,1672319394),(121234,3,30922,3,1672319394),(121235,3,31807,3,1672319394),(121236,3,31808,3,1672319394),(121237,3,31809,3,1672319394),(121238,3,31810,3,1672319394),(121239,3,31811,3,1672319394),(121240,3,31812,3,1672319394),(121241,3,31813,3,1672319394),(121242,3,31814,3,1672319394),(121243,3,31815,3,1672319394),(121244,3,32170,3,1672319394),(121245,3,32171,3,1672319394),(121246,3,32172,3,1672319394),(121247,3,32173,3,1672319394),(121248,3,32174,3,1672319394),(121249,3,32175,3,1672319394),(121250,3,32442,3,1672319394),(121251,3,32443,3,1672319394),(121252,3,32444,3,1672319394),(121253,3,32445,3,1672319394),(121254,3,32446,3,1672319394),(121255,3,32447,3,1672319394),(121256,3,32448,3,1672319394),(121257,3,32449,3,1672319394),(121258,3,32450,3,1672319394),(121259,3,32451,3,1672319394),(121260,3,32452,3,1672319394),(121261,3,32453,3,1672319394),(121262,3,32454,3,1672319394),(121263,3,32455,3,1672319394),(121264,3,32456,3,1672319394),(121265,3,32457,3,1672319394),(121266,3,32458,3,1672319394),(121267,3,32459,3,1672319394),(121268,3,32460,3,1672319394),(121269,3,32461,3,1672319394),(121270,3,32462,3,1672319394),(121271,3,32486,3,1672319394),(121272,3,32487,3,1672319394),(121273,3,32488,3,1672319394),(121274,3,32489,3,1672319394),(121275,3,32490,3,1672319394),(121276,3,32491,3,1672319394),(121277,3,32492,3,1672319394),(121278,3,32493,3,1672319394),(121279,3,32494,3,1672319394),(121280,3,32495,3,1672319394),(121281,3,32496,3,1672319394),(121282,3,32497,3,1672319394),(121283,3,32498,3,1672319394),(121284,3,32499,3,1672319394),(121285,3,32500,3,1672319394),(121286,3,32501,3,1672319394),(121287,3,32502,3,1672319394),(121288,3,32503,3,1672319394),(121289,3,32504,3,1672319394),(121290,3,32505,3,1672319394),(121291,3,32506,3,1672319394),(121292,3,32507,3,1672319394),(121293,3,32508,3,1672319394),(121294,3,32509,3,1672319394),(121295,3,32510,3,1672319394),(121296,3,32511,3,1672319394),(121297,3,32512,3,1672319394),(121298,3,32513,3,1672319394),(121299,3,32514,3,1672319394),(121300,3,32515,3,1672319394),(121301,3,32758,3,1672319394),(121302,3,32759,3,1672319394),(121303,3,32760,3,1672319394),(121304,3,32761,3,1672319394),(121305,3,32766,3,1672319394),(121306,3,32767,3,1672319394),(121307,3,32768,3,1672319394),(121308,3,32769,3,1672319394),(121309,3,32770,3,1672319394),(121310,3,32771,3,1672319394),(121311,3,32772,3,1672319394),(121312,3,32773,3,1672319394),(121313,3,32774,3,1672319394),(121314,3,32775,3,1672319394),(121315,3,32776,3,1672319394),(121316,3,32777,3,1672319394),(121317,3,32778,3,1672319394),(121318,3,32779,3,1672319394),(121319,3,33096,3,1672319394),(121320,3,33097,3,1672319394),(121321,3,33098,3,1672319394),(121322,3,33099,3,1672319394),(121323,3,33100,3,1672319394),(121324,3,33101,3,1672319394),(121325,3,33102,3,1672319394),(121326,3,33103,3,1672319394),(121327,3,33104,3,1672319394),(121328,3,33105,3,1672319394),(121329,3,33106,3,1672319394),(121330,3,33107,3,1672319394),(121331,3,33108,3,1672319394),(121332,3,33109,3,1672319394),(121333,3,33110,3,1672319394),(121334,3,33111,3,1672319394),(121335,3,33112,3,1672319394),(121336,3,33113,3,1672319394),(121337,3,33114,3,1672319394),(121338,3,33115,3,1672319394),(121339,3,33116,3,1672319394),(121340,3,33117,3,1672319394),(121341,3,33118,3,1672319394),(121342,3,33119,3,1672319394),(121343,3,33120,3,1672319394),(121344,3,33121,3,1672319394),(121345,3,33122,3,1672319394),(121346,3,33123,3,1672319394),(121347,3,33124,3,1672319394),(121348,3,33125,3,1672319394),(121349,3,33183,3,1672319394),(121350,3,33966,3,1672319394),(121351,3,33967,3,1672319394),(121352,3,33968,3,1672319394),(121353,3,33969,3,1672319394),(121354,3,33970,3,1672319394),(121355,3,33971,3,1672319394),(121356,3,33972,3,1672319394),(121357,3,33973,3,1672319394),(121358,3,33974,3,1672319394),(121359,3,33975,3,1672319394),(121360,3,33976,3,1672319394),(121361,3,33977,3,1672319394),(121362,3,33978,3,1672319394),(121363,3,33979,3,1672319394),(121364,3,33980,3,1672319394),(121365,3,33981,3,1672319394),(121366,3,33982,3,1672319394),(121367,3,33983,3,1672319394),(121368,3,33984,3,1672319394),(121369,3,34007,3,1672319394),(121370,3,34008,3,1672319394),(121371,3,34009,3,1672319394),(121372,3,34010,3,1672319394),(121373,3,34011,3,1672319394),(121374,3,34012,3,1672319394),(121375,3,34013,3,1672319394),(121376,3,34014,3,1672319394),(121377,3,34015,3,1672319394),(121378,3,34016,3,1672319394),(121379,3,34017,3,1672319394),(121380,3,34018,3,1672319394),(121381,3,34019,3,1672319394),(121382,3,34020,3,1672319394),(121383,3,34021,3,1672319394),(121384,3,34022,3,1672319394),(121385,3,34023,3,1672319394),(121386,3,34024,3,1672319394),(121387,3,34025,3,1672319394),(121388,3,34048,3,1672319394),(121389,3,34049,3,1672319394),(121390,3,34050,3,1672319394),(121391,3,34051,3,1672319394),(121392,3,34052,3,1672319394),(121393,3,34053,3,1672319394),(121394,3,34054,3,1672319394),(121395,3,34055,3,1672319394),(121396,3,34056,3,1672319394),(121397,3,34057,3,1672319394),(121398,3,34058,3,1672319394),(121399,3,34059,3,1672319394),(121400,3,34060,3,1672319394),(121401,3,34061,3,1672319394),(121402,3,34062,3,1672319394),(121403,3,34063,3,1672319394),(121404,3,34064,3,1672319394),(121405,3,34065,3,1672319394),(121406,3,34066,3,1672319394),(121407,3,34089,3,1672319394),(121408,3,34090,3,1672319394),(121409,3,34091,3,1672319394),(121410,3,34092,3,1672319394),(121411,3,34093,3,1672319394),(121412,3,34094,3,1672319394),(121413,3,34095,3,1672319394),(121414,3,34096,3,1672319394),(121415,3,34097,3,1672319394),(121416,3,34098,3,1672319394),(121417,3,34099,3,1672319394),(121418,3,34100,3,1672319394),(121419,3,34101,3,1672319394),(121420,3,34102,3,1672319394),(121421,3,34103,3,1672319394),(121422,3,34104,3,1672319394),(121423,3,34105,3,1672319394),(121424,3,34106,3,1672319394),(121425,3,34107,3,1672319394),(121426,3,34130,3,1672319394),(121427,3,34131,3,1672319394),(121428,3,34132,3,1672319394),(121429,3,34133,3,1672319394),(121430,3,34134,3,1672319394),(121431,3,34135,3,1672319394),(121432,3,34136,3,1672319394),(121433,3,34137,3,1672319394),(121434,3,34138,3,1672319394),(121435,3,34139,3,1672319394),(121436,3,34140,3,1672319394),(121437,3,34141,3,1672319394),(121438,3,34142,3,1672319394),(121439,3,34143,3,1672319394),(121440,3,34144,3,1672319394),(121441,3,34145,3,1672319394),(121442,3,34146,3,1672319394),(121443,3,34147,3,1672319394),(121444,3,34148,3,1672319394),(121445,3,34212,3,1672319394),(121446,3,34213,3,1672319394),(121447,3,34214,3,1672319394),(121448,3,34215,3,1672319394),(121449,3,34216,3,1672319394),(121450,3,34217,3,1672319394),(121451,3,34218,3,1672319394),(121452,3,34219,3,1672319394),(121453,3,34220,3,1672319394),(121454,3,34221,3,1672319394),(121455,3,34222,3,1672319394),(121456,3,34223,3,1672319394),(121457,3,34224,3,1672319394),(121458,3,34225,3,1672319394),(121459,3,34482,3,1672319394),(121460,3,34483,3,1672319394),(121461,3,34484,3,1672319394),(121462,3,34485,3,1672319394),(121463,3,34486,3,1672319394),(121464,3,34487,3,1672319394),(121465,3,34488,3,1672319394),(121466,3,34489,3,1672319394),(121467,3,34490,3,1672319394),(121468,3,34491,3,1672319394),(121469,3,34492,3,1672319394),(121470,3,34493,3,1672319394),(121471,3,34494,3,1672319394),(121472,3,34495,3,1672319394),(121473,3,34496,3,1672319394),(121474,3,34497,3,1672319394),(121475,3,34498,3,1672319394),(121476,3,34530,3,1672319394),(121477,3,34531,3,1672319394),(121478,3,34532,3,1672319394),(121479,3,34533,3,1672319394),(121480,3,34534,3,1672319394),(121481,3,34535,3,1672319394),(121482,3,34536,3,1672319394),(121483,3,34537,3,1672319394),(121484,3,34538,3,1672319394),(121485,3,34539,3,1672319394),(121486,3,34540,3,1672319394),(121487,3,34541,3,1672319394),(121488,3,34542,3,1672319394),(121489,3,34543,3,1672319394),(121490,3,34544,3,1672319394),(121491,3,34545,3,1672319394),(121492,3,34546,3,1672319394),(121493,3,34578,3,1672319394),(121494,3,34579,3,1672319394),(121495,3,34580,3,1672319394),(121496,3,34581,3,1672319394),(121497,3,34582,3,1672319394),(121498,3,34583,3,1672319394),(121499,3,34584,3,1672319394),(121500,3,34585,3,1672319394),(121501,3,34586,3,1672319394),(121502,3,34587,3,1672319394),(121503,3,34588,3,1672319394),(121504,3,34589,3,1672319394),(121505,3,34590,3,1672319394),(121506,3,34591,3,1672319394),(121507,3,34592,3,1672319394),(121508,3,34593,3,1672319394),(121509,3,34594,3,1672319394),(121510,3,34626,3,1672319394),(121511,3,34627,3,1672319394),(121512,3,34628,3,1672319394),(121513,3,34629,3,1672319394),(121514,3,34630,3,1672319394),(121515,3,34631,3,1672319394),(121516,3,34632,3,1672319394),(121517,3,34633,3,1672319394),(121518,3,34634,3,1672319394),(121519,3,34635,3,1672319394),(121520,3,34636,3,1672319394),(121521,3,34637,3,1672319394),(121522,3,34638,3,1672319394),(121523,3,34639,3,1672319394),(121524,3,34640,3,1672319394),(121525,3,34641,3,1672319394),(121526,3,34642,3,1672319394),(121527,3,34674,3,1672319394),(121528,3,34675,3,1672319394),(121529,3,34676,3,1672319394),(121530,3,34677,3,1672319394),(121531,3,34678,3,1672319394),(121532,3,34679,3,1672319394),(121533,3,34680,3,1672319394),(121534,3,34681,3,1672319394),(121535,3,34682,3,1672319394),(121536,3,34683,3,1672319394),(121537,3,34684,3,1672319394),(121538,3,34685,3,1672319394),(121539,3,34686,3,1672319394),(121540,3,34687,3,1672319394),(121541,3,34688,3,1672319394),(121542,3,34689,3,1672319394),(121543,3,34690,3,1672319394),(121544,3,34770,3,1672319394),(121545,3,34771,3,1672319394),(121546,3,34772,3,1672319394),(121547,3,34773,3,1672319394),(121548,3,34774,3,1672319394),(121549,3,34775,3,1672319394),(121550,3,34776,3,1672319394),(121551,3,34777,3,1672319394),(121552,3,34778,3,1672319394),(121553,3,34779,3,1672319394),(121554,3,34780,3,1672319394),(121555,3,34781,3,1672319394),(121556,3,34782,3,1672319394),(121557,3,34783,3,1672319394),(121558,3,34784,3,1672319394),(121559,3,34785,3,1672319394),(121560,3,34786,3,1672319394),(121561,3,34790,3,1672319394),(121562,3,34791,3,1672319394),(121563,3,34792,3,1672319394),(121564,3,34824,3,1672319394),(121565,3,34825,3,1672319394),(121566,3,34826,3,1672319394),(121567,3,34827,3,1672319394),(121568,3,34828,3,1672319394),(121569,3,34829,3,1672319394),(121570,3,34830,3,1672319394),(121571,3,34831,3,1672319394),(121572,3,34832,3,1672319394),(121573,3,34833,3,1672319394),(121574,3,34834,3,1672319394),(121575,3,34835,3,1672319394),(121576,3,34836,3,1672319394),(121577,3,34837,3,1672319394),(121578,3,34838,3,1672319394),(121579,3,34839,3,1672319394),(121580,3,34840,3,1672319394),(121581,3,34872,3,1672319394),(121582,3,34873,3,1672319394),(121583,3,34874,3,1672319394),(121584,3,34875,3,1672319394),(121585,3,34876,3,1672319394),(121586,3,34877,3,1672319394),(121587,3,34878,3,1672319394),(121588,3,34879,3,1672319394),(121589,3,34880,3,1672319394),(121590,3,34881,3,1672319394),(121591,3,34882,3,1672319394),(121592,3,34883,3,1672319394),(121593,3,34884,3,1672319394),(121594,3,34885,3,1672319394),(121595,3,34886,3,1672319394),(121596,3,34887,3,1672319394),(121597,3,34888,3,1672319394),(121598,3,34920,3,1672319394),(121599,3,34921,3,1672319394),(121600,3,34922,3,1672319394),(121601,3,34923,3,1672319394),(121602,3,34924,3,1672319394),(121603,3,34925,3,1672319394),(121604,3,34926,3,1672319394),(121605,3,34927,3,1672319394),(121606,3,34928,3,1672319394),(121607,3,34929,3,1672319394),(121608,3,34930,3,1672319394),(121609,3,34931,3,1672319394),(121610,3,34932,3,1672319394),(121611,3,34933,3,1672319394),(121612,3,34934,3,1672319394),(121613,3,34935,3,1672319394),(121614,3,34936,3,1672319394),(121615,3,35047,3,1672319394),(121616,3,35048,3,1672319394),(121617,3,35049,3,1672319394),(121618,3,35050,3,1672319394),(121619,3,35051,3,1672319394),(121620,3,35052,3,1672319394),(121621,3,35053,3,1672319394),(121622,3,35054,3,1672319394),(121623,3,35055,3,1672319394),(121624,3,35056,3,1672319394),(121625,3,35057,3,1672319394),(121626,3,35058,3,1672319394),(121627,3,35059,3,1672319394),(121628,3,35060,3,1672319394),(121629,3,35061,3,1672319394),(121630,3,35062,3,1672319394),(121631,3,35063,3,1672319394),(121632,3,35369,3,1672319394),(121633,3,35370,3,1672319394),(121634,3,35371,3,1672319394),(121635,3,35372,3,1672319394),(121636,3,35373,3,1672319394),(121637,3,35374,3,1672319394),(121638,3,35375,3,1672319394),(121639,3,35376,3,1672319394),(121640,3,35377,3,1672319394),(121641,3,35378,3,1672319394),(121642,3,35379,3,1672319394),(121643,3,35380,3,1672319394),(121644,3,35381,3,1672319394),(121645,3,35382,3,1672319394),(121646,3,35383,3,1672319394),(121647,3,35384,3,1672319394),(121648,3,35385,3,1672319394),(121649,3,35386,3,1672319394),(121650,3,35387,3,1672319394),(121651,3,35388,3,1672319394),(121652,3,35389,3,1672319394),(121653,3,35390,3,1672319394),(121654,3,35391,3,1672319394),(121655,3,35392,3,1672319394),(121656,3,35393,3,1672319394),(121657,3,35394,3,1672319394),(121658,3,35395,3,1672319394),(121659,3,35396,3,1672319394),(121660,3,35397,3,1672319394),(121661,3,35398,3,1672319394),(121662,3,35399,3,1672319394),(121663,3,35400,3,1672319394),(121664,3,35401,3,1672319394),(121665,3,35402,3,1672319394),(121666,3,35403,3,1672319394),(121667,3,35404,3,1672319394),(121668,3,35405,3,1672319394),(121669,3,40491,3,1672319394),(121670,3,40492,3,1672319394),(121671,3,40493,3,1672319394),(121672,3,40494,3,1672319394),(121673,3,40495,3,1672319394),(121674,3,40496,3,1672319394),(121675,3,40497,3,1672319394),(121676,3,40498,3,1672319394),(121677,3,40499,3,1672319394),(121678,3,40500,3,1672319394),(121679,3,40517,3,1672319394),(121680,3,40518,3,1672319394),(121681,3,40519,3,1672319394),(121682,3,40520,3,1672319394),(121683,3,40521,3,1672319394),(121684,3,40522,3,1672319394),(121685,3,40523,3,1672319394),(121686,3,40524,3,1672319394),(121687,3,40525,3,1672319394),(121688,3,40526,3,1672319394),(121689,3,40527,3,1672319394),(121690,3,40528,3,1672319394),(121691,3,40529,3,1672319394),(121692,3,40530,3,1672319394),(121693,3,40531,3,1672319394),(121694,3,40532,3,1672319394),(121695,3,40545,3,1672319394),(121696,3,40546,3,1672319394),(121697,3,40547,3,1672319394),(121698,3,40548,3,1672319394),(121699,3,40549,3,1672319394),(121700,3,40550,3,1672319394),(121701,3,40551,3,1672319394),(121702,3,40552,3,1672319394),(121703,3,40553,3,1672319394),(121704,3,40582,3,1672319394),(121705,3,40583,3,1672319394),(121706,3,40584,3,1672319394),(121707,3,40585,3,1672319394),(121708,3,40586,3,1672319394),(121709,3,40587,3,1672319394),(121710,3,40588,3,1672319394),(121711,3,40589,3,1672319394),(121712,3,40590,3,1672319394),(121713,3,40591,3,1672319394),(121714,3,40592,3,1672319394),(121715,3,40593,3,1672319394),(121716,3,40594,3,1672319394),(121717,3,40595,3,1672319394),(121718,3,40596,3,1672319394),(121719,3,40597,3,1672319394),(121720,3,40598,3,1672319394),(121721,3,40599,3,1672319394),(121722,3,40671,3,1672319394),(121723,3,40672,3,1672319394),(121724,3,40673,3,1672319394),(121725,3,40674,3,1672319394),(121726,3,40675,3,1672319394),(121727,3,40676,3,1672319394),(121728,3,40677,3,1672319394),(121729,3,40678,3,1672319394),(121730,3,40679,3,1672319394),(121731,3,40680,3,1672319394),(121732,3,40681,3,1672319394),(121733,3,40682,3,1672319394),(121734,3,40683,3,1672319394),(121735,3,40684,3,1672319394),(121736,3,40685,3,1672319394),(121737,3,40686,3,1672319394),(121738,3,40687,3,1672319394),(121739,3,40688,3,1672319394),(121740,3,40689,3,1672319394),(121741,3,43528,3,1672319394),(121742,3,43529,3,1672319394),(121743,3,43530,3,1672319394),(121744,3,43531,3,1672319394),(121745,3,43532,3,1672319394),(121746,3,43533,3,1672319394),(121747,3,43534,3,1672319394),(121748,3,43535,3,1672319394),(121749,3,43536,3,1672319394),(121750,3,43537,3,1672319394),(121751,3,43538,3,1672319394),(121752,3,43539,3,1672319394),(121753,3,43540,3,1672319394),(121754,3,43541,3,1672319394),(121755,3,43542,3,1672319394),(121756,3,43543,3,1672319394),(121757,3,43544,3,1672319394),(121758,3,43545,3,1672319394),(121759,3,43546,3,1672319394),(121760,3,43646,3,1672319394),(121761,3,43647,3,1672319394),(121762,3,43648,3,1672319394),(121763,3,43649,3,1672319394),(121764,3,43650,3,1672319394),(121765,3,43651,3,1672319394),(121766,3,43652,3,1672319394),(121767,3,43653,3,1672319394),(121768,3,43654,3,1672319394),(121769,3,43655,3,1672319394),(121770,3,43656,3,1672319394),(121771,3,43657,3,1672319394),(121772,3,43658,3,1672319394),(121773,3,43659,3,1672319394),(121774,3,43660,3,1672319394),(121775,3,43661,3,1672319394),(121776,3,43662,3,1672319394),(121777,3,43663,3,1672319394),(121778,3,43664,3,1672319394),(121779,3,43665,3,1672319394),(121780,3,43666,3,1672319394),(121781,3,43667,3,1672319394),(121782,3,43668,3,1672319394),(121783,3,43669,3,1672319394),(121784,3,43670,3,1672319394),(121785,3,43671,3,1672319394),(121786,3,43672,3,1672319394),(121787,3,43673,3,1672319394),(121788,3,43674,3,1672319394),(121789,3,43675,3,1672319394),(121790,3,43676,3,1672319394),(121791,3,43677,3,1672319394),(121792,3,43678,3,1672319394),(121793,3,43679,3,1672319394),(121794,3,43680,3,1672319394),(121795,3,43681,3,1672319394),(121796,3,43682,3,1672319394),(121797,3,43683,3,1672319394),(121798,3,43712,3,1672319394),(121799,3,43713,3,1672319394),(121800,3,44337,3,1672319394),(121801,3,44338,3,1672319394),(121802,3,44339,3,1672319394),(121803,3,44340,3,1672319394),(121804,3,44341,3,1672319394),(121805,3,44342,3,1672319394),(121806,3,44428,3,1672319394),(121807,3,44429,3,1672319394),(121808,1,10533,2,1672319394),(121809,1,10536,2,1672319394),(121810,1,10537,2,1672319394),(121811,1,10538,2,1672319394),(121812,1,10541,2,1672319394),(121813,1,10545,2,1672319394),(121814,1,10533,3,1672319394),(121815,1,10536,3,1672319394),(121816,1,10537,3,1672319394),(121817,1,10538,3,1672319394),(121818,1,10541,3,1672319394),(121819,1,10545,3,1672319394),(121820,3,22944,2,1672319394),(121821,3,22947,2,1672319394),(121822,3,27209,2,1672319394),(121823,3,27210,2,1672319394),(121824,3,27211,2,1672319394),(121825,3,27242,2,1672319394),(121826,3,27243,2,1672319394),(121827,3,27244,2,1672319394),(121828,3,27302,2,1672319394),(121829,3,27303,2,1672319394),(121830,3,27304,2,1672319394),(121831,3,27306,2,1672319394),(121832,3,27307,2,1672319394),(121833,3,27308,2,1672319394),(121834,3,27309,2,1672319394),(121835,3,27310,2,1672319394),(121836,3,27311,2,1672319394),(121837,3,27390,2,1672319394),(121838,3,27391,2,1672319394),(121839,3,27393,2,1672319394),(121840,3,27394,2,1672319394),(121841,3,27395,2,1672319394),(121842,3,27396,2,1672319394),(121843,3,28244,2,1672319394),(121844,3,28306,2,1672319394),(121845,3,28307,2,1672319394),(121846,3,28308,2,1672319394),(121847,3,28309,2,1672319394),(121848,3,28797,2,1672319394),(121849,3,30090,2,1672319394),(121850,3,30686,2,1672319394),(121851,3,30687,2,1672319394),(121852,3,30916,2,1672319394),(121853,3,31803,2,1672319394),(121854,3,31804,2,1672319394),(121855,3,31805,2,1672319394),(121856,3,31806,2,1672319394),(121857,3,32168,2,1672319394),(121858,3,32169,2,1672319394),(121859,3,32440,2,1672319394),(121860,3,32441,2,1672319394),(121861,3,32465,2,1672319394),(121862,3,32466,2,1672319394),(121863,3,32467,2,1672319394),(121864,3,32468,2,1672319394),(121865,3,32469,2,1672319394),(121866,3,32470,2,1672319394),(121867,3,32471,2,1672319394),(121868,3,32472,2,1672319394),(121869,3,32473,2,1672319394),(121870,3,32474,2,1672319394),(121871,3,32475,2,1672319394),(121872,3,32476,2,1672319394),(121873,3,32477,2,1672319394),(121874,3,32478,2,1672319394),(121875,3,32479,2,1672319394),(121876,3,32480,2,1672319394),(121877,3,32481,2,1672319394),(121878,3,32482,2,1672319394),(121879,3,32483,2,1672319394),(121880,3,32484,2,1672319394),(121881,3,32485,2,1672319394),(121882,3,32755,2,1672319394),(121883,3,32756,2,1672319394),(121884,3,32757,2,1672319394),(121885,3,32762,2,1672319394),(121886,3,32763,2,1672319394),(121887,3,32764,2,1672319394),(121888,3,32765,2,1672319394),(121889,3,33095,2,1672319394),(121890,3,33182,2,1672319394),(121891,3,33958,2,1672319394),(121892,3,33959,2,1672319394),(121893,3,33960,2,1672319394),(121894,3,33961,2,1672319394),(121895,3,33962,2,1672319394),(121896,3,33963,2,1672319394),(121897,3,33964,2,1672319394),(121898,3,33965,2,1672319394),(121899,3,33999,2,1672319394),(121900,3,34000,2,1672319394),(121901,3,34001,2,1672319394),(121902,3,34002,2,1672319394),(121903,3,34003,2,1672319394),(121904,3,34004,2,1672319394),(121905,3,34005,2,1672319394),(121906,3,34006,2,1672319394),(121907,3,34040,2,1672319394),(121908,3,34041,2,1672319394),(121909,3,34042,2,1672319394),(121910,3,34043,2,1672319394),(121911,3,34044,2,1672319394),(121912,3,34045,2,1672319394),(121913,3,34046,2,1672319394),(121914,3,34047,2,1672319394),(121915,3,34081,2,1672319394),(121916,3,34082,2,1672319394),(121917,3,34083,2,1672319394),(121918,3,34084,2,1672319394),(121919,3,34085,2,1672319394),(121920,3,34086,2,1672319394),(121921,3,34087,2,1672319394),(121922,3,34088,2,1672319394),(121923,3,34122,2,1672319394),(121924,3,34123,2,1672319394),(121925,3,34124,2,1672319394),(121926,3,34125,2,1672319394),(121927,3,34126,2,1672319394),(121928,3,34127,2,1672319394),(121929,3,34128,2,1672319394),(121930,3,34129,2,1672319394),(121931,3,34207,2,1672319394),(121932,3,34208,2,1672319394),(121933,3,34209,2,1672319394),(121934,3,34210,2,1672319394),(121935,3,34211,2,1672319394),(121936,3,34476,2,1672319394),(121937,3,34477,2,1672319394),(121938,3,34478,2,1672319394),(121939,3,34479,2,1672319394),(121940,3,34480,2,1672319394),(121941,3,34481,2,1672319394),(121942,3,34524,2,1672319394),(121943,3,34525,2,1672319394),(121944,3,34526,2,1672319394),(121945,3,34527,2,1672319394),(121946,3,34528,2,1672319394),(121947,3,34529,2,1672319394),(121948,3,34572,2,1672319394),(121949,3,34573,2,1672319394),(121950,3,34574,2,1672319394),(121951,3,34575,2,1672319394),(121952,3,34576,2,1672319394),(121953,3,34577,2,1672319394),(121954,3,34620,2,1672319394),(121955,3,34621,2,1672319394),(121956,3,34622,2,1672319394),(121957,3,34623,2,1672319394),(121958,3,34624,2,1672319394),(121959,3,34625,2,1672319394),(121960,3,34668,2,1672319394),(121961,3,34669,2,1672319394),(121962,3,34670,2,1672319394),(121963,3,34671,2,1672319394),(121964,3,34672,2,1672319394),(121965,3,34673,2,1672319394),(121966,3,34764,2,1672319394),(121967,3,34765,2,1672319394),(121968,3,34766,2,1672319394),(121969,3,34767,2,1672319394),(121970,3,34768,2,1672319394),(121971,3,34769,2,1672319394),(121972,3,34789,2,1672319394),(121973,3,34818,2,1672319394),(121974,3,34819,2,1672319394),(121975,3,34820,2,1672319394),(121976,3,34821,2,1672319394),(121977,3,34822,2,1672319394),(121978,3,34823,2,1672319394),(121979,3,34866,2,1672319394),(121980,3,34867,2,1672319394),(121981,3,34868,2,1672319394),(121982,3,34869,2,1672319394),(121983,3,34870,2,1672319394),(121984,3,34871,2,1672319394),(121985,3,34914,2,1672319394),(121986,3,34915,2,1672319394),(121987,3,34916,2,1672319394),(121988,3,34917,2,1672319394),(121989,3,34918,2,1672319394),(121990,3,34919,2,1672319394),(121991,3,35041,2,1672319394),(121992,3,35042,2,1672319394),(121993,3,35043,2,1672319394),(121994,3,35044,2,1672319394),(121995,3,35045,2,1672319394),(121996,3,35046,2,1672319394),(121997,3,35364,2,1672319394),(121998,3,35365,2,1672319394),(121999,3,35366,2,1672319394),(122000,3,35367,2,1672319394),(122001,3,35368,2,1672319394),(122002,3,40489,2,1672319394),(122003,3,40490,2,1672319394),(122004,3,40513,2,1672319394),(122005,3,40514,2,1672319394),(122006,3,40515,2,1672319394),(122007,3,40516,2,1672319394),(122008,3,40544,2,1672319394),(122009,3,40580,2,1672319394),(122010,3,40581,2,1672319394),(122011,3,40648,2,1672319394),(122012,3,40649,2,1672319394),(122013,3,40650,2,1672319394),(122014,3,40651,2,1672319394),(122015,3,40652,2,1672319394),(122016,3,40653,2,1672319394),(122017,3,40654,2,1672319394),(122018,3,40655,2,1672319394),(122019,3,43526,2,1672319394),(122020,3,43527,2,1672319394),(122021,3,43642,2,1672319394),(122022,3,43643,2,1672319394),(122023,3,43644,2,1672319394),(122024,3,43645,2,1672319394),(122025,3,43711,2,1672319394),(122026,3,43768,2,1672319394),(122027,3,44052,2,1672319394),(122028,3,44053,2,1672319394),(122029,3,44054,2,1672319394),(122030,3,44200,2,1672319394),(122031,3,44293,2,1672319394),(122032,3,44336,2,1672319394),(122033,3,22944,3,1672319394),(122034,3,22947,3,1672319394),(122035,3,27209,3,1672319394),(122036,3,27210,3,1672319394),(122037,3,27211,3,1672319394),(122038,3,27242,3,1672319394),(122039,3,27243,3,1672319394),(122040,3,27244,3,1672319394),(122041,3,27302,3,1672319394),(122042,3,27303,3,1672319394),(122043,3,27304,3,1672319394),(122044,3,27306,3,1672319394),(122045,3,27307,3,1672319394),(122046,3,27308,3,1672319394),(122047,3,27309,3,1672319394),(122048,3,27310,3,1672319394),(122049,3,27311,3,1672319394),(122050,3,27390,3,1672319394),(122051,3,27391,3,1672319394),(122052,3,27393,3,1672319394),(122053,3,27394,3,1672319394),(122054,3,27395,3,1672319394),(122055,3,27396,3,1672319394),(122056,3,28244,3,1672319394),(122057,3,28306,3,1672319394),(122058,3,28307,3,1672319394),(122059,3,28308,3,1672319394),(122060,3,28309,3,1672319394),(122061,3,28797,3,1672319394),(122062,3,30090,3,1672319394),(122063,3,30686,3,1672319394),(122064,3,30687,3,1672319394),(122065,3,30916,3,1672319394),(122066,3,31803,3,1672319394),(122067,3,31804,3,1672319394),(122068,3,31805,3,1672319394),(122069,3,31806,3,1672319394),(122070,3,32168,3,1672319394),(122071,3,32169,3,1672319394),(122072,3,32440,3,1672319394),(122073,3,32441,3,1672319394),(122074,3,32465,3,1672319394),(122075,3,32466,3,1672319394),(122076,3,32467,3,1672319394),(122077,3,32468,3,1672319394),(122078,3,32469,3,1672319394),(122079,3,32470,3,1672319394),(122080,3,32471,3,1672319394),(122081,3,32472,3,1672319394),(122082,3,32473,3,1672319394),(122083,3,32474,3,1672319394),(122084,3,32475,3,1672319394),(122085,3,32476,3,1672319394),(122086,3,32477,3,1672319394),(122087,3,32478,3,1672319394),(122088,3,32479,3,1672319394),(122089,3,32480,3,1672319394),(122090,3,32481,3,1672319394),(122091,3,32482,3,1672319394),(122092,3,32483,3,1672319394),(122093,3,32484,3,1672319394),(122094,3,32485,3,1672319394),(122095,3,32755,3,1672319394),(122096,3,32756,3,1672319394),(122097,3,32757,3,1672319394),(122098,3,32762,3,1672319394),(122099,3,32763,3,1672319394),(122100,3,32764,3,1672319394),(122101,3,32765,3,1672319394),(122102,3,33095,3,1672319394),(122103,3,33182,3,1672319394),(122104,3,33958,3,1672319394),(122105,3,33959,3,1672319394),(122106,3,33960,3,1672319394),(122107,3,33961,3,1672319394),(122108,3,33962,3,1672319394),(122109,3,33963,3,1672319394),(122110,3,33964,3,1672319394),(122111,3,33965,3,1672319394),(122112,3,33999,3,1672319394),(122113,3,34000,3,1672319394),(122114,3,34001,3,1672319394),(122115,3,34002,3,1672319394),(122116,3,34003,3,1672319394),(122117,3,34004,3,1672319394),(122118,3,34005,3,1672319394),(122119,3,34006,3,1672319394),(122120,3,34040,3,1672319394),(122121,3,34041,3,1672319394),(122122,3,34042,3,1672319394),(122123,3,34043,3,1672319394),(122124,3,34044,3,1672319394),(122125,3,34045,3,1672319394),(122126,3,34046,3,1672319394),(122127,3,34047,3,1672319394),(122128,3,34081,3,1672319394),(122129,3,34082,3,1672319394),(122130,3,34083,3,1672319394),(122131,3,34084,3,1672319394),(122132,3,34085,3,1672319394),(122133,3,34086,3,1672319394),(122134,3,34087,3,1672319394),(122135,3,34088,3,1672319394),(122136,3,34122,3,1672319394),(122137,3,34123,3,1672319394),(122138,3,34124,3,1672319394),(122139,3,34125,3,1672319394),(122140,3,34126,3,1672319394),(122141,3,34127,3,1672319394),(122142,3,34128,3,1672319394),(122143,3,34129,3,1672319394),(122144,3,34207,3,1672319394),(122145,3,34208,3,1672319394),(122146,3,34209,3,1672319394),(122147,3,34210,3,1672319394),(122148,3,34211,3,1672319394),(122149,3,34476,3,1672319394),(122150,3,34477,3,1672319394),(122151,3,34478,3,1672319394),(122152,3,34479,3,1672319394),(122153,3,34480,3,1672319394),(122154,3,34481,3,1672319394),(122155,3,34524,3,1672319394),(122156,3,34525,3,1672319394),(122157,3,34526,3,1672319394),(122158,3,34527,3,1672319394),(122159,3,34528,3,1672319394),(122160,3,34529,3,1672319394),(122161,3,34572,3,1672319394),(122162,3,34573,3,1672319394),(122163,3,34574,3,1672319394),(122164,3,34575,3,1672319394),(122165,3,34576,3,1672319394),(122166,3,34577,3,1672319394),(122167,3,34620,3,1672319394),(122168,3,34621,3,1672319394),(122169,3,34622,3,1672319394),(122170,3,34623,3,1672319394),(122171,3,34624,3,1672319394),(122172,3,34625,3,1672319394),(122173,3,34668,3,1672319394),(122174,3,34669,3,1672319394),(122175,3,34670,3,1672319394),(122176,3,34671,3,1672319394),(122177,3,34672,3,1672319394),(122178,3,34673,3,1672319394),(122179,3,34764,3,1672319394),(122180,3,34765,3,1672319394),(122181,3,34766,3,1672319394),(122182,3,34767,3,1672319394),(122183,3,34768,3,1672319394),(122184,3,34769,3,1672319394),(122185,3,34789,3,1672319394),(122186,3,34818,3,1672319394),(122187,3,34819,3,1672319394),(122188,3,34820,3,1672319394),(122189,3,34821,3,1672319394),(122190,3,34822,3,1672319394),(122191,3,34823,3,1672319394),(122192,3,34866,3,1672319394),(122193,3,34867,3,1672319394),(122194,3,34868,3,1672319394),(122195,3,34869,3,1672319394),(122196,3,34870,3,1672319394),(122197,3,34871,3,1672319394),(122198,3,34914,3,1672319394),(122199,3,34915,3,1672319394),(122200,3,34916,3,1672319394),(122201,3,34917,3,1672319394),(122202,3,34918,3,1672319394),(122203,3,34919,3,1672319394),(122204,3,35041,3,1672319394),(122205,3,35042,3,1672319394),(122206,3,35043,3,1672319394),(122207,3,35044,3,1672319394),(122208,3,35045,3,1672319394),(122209,3,35046,3,1672319394),(122210,3,35364,3,1672319394),(122211,3,35365,3,1672319394),(122212,3,35366,3,1672319394),(122213,3,35367,3,1672319394),(122214,3,35368,3,1672319394),(122215,3,40489,3,1672319394),(122216,3,40490,3,1672319394),(122217,3,40513,3,1672319394),(122218,3,40514,3,1672319394),(122219,3,40515,3,1672319394),(122220,3,40516,3,1672319394),(122221,3,40544,3,1672319394),(122222,3,40580,3,1672319394),(122223,3,40581,3,1672319394),(122224,3,40648,3,1672319394),(122225,3,40649,3,1672319394),(122226,3,40650,3,1672319394),(122227,3,40651,3,1672319394),(122228,3,40652,3,1672319394),(122229,3,40653,3,1672319394),(122230,3,40654,3,1672319394),(122231,3,40655,3,1672319394),(122232,3,43526,3,1672319394),(122233,3,43527,3,1672319394),(122234,3,43642,3,1672319394),(122235,3,43643,3,1672319394),(122236,3,43644,3,1672319394),(122237,3,43645,3,1672319394),(122238,3,43711,3,1672319394),(122239,3,43768,3,1672319394),(122240,3,44052,3,1672319394),(122241,3,44053,3,1672319394),(122242,3,44054,3,1672319394),(122243,3,44200,3,1672319394),(122244,3,44293,3,1672319394),(122245,3,44336,3,1672319394),(122246,3,22917,2,1672319394),(122247,3,22918,2,1672319394),(122248,3,22920,2,1672319394),(122249,3,22921,2,1672319394),(122250,3,22922,2,1672319394),(122251,3,22923,2,1672319394),(122252,3,22924,2,1672319394),(122253,3,22933,2,1672319394),(122254,3,22934,2,1672319394),(122255,3,22938,2,1672319394),(122256,3,22939,2,1672319394),(122257,3,22940,2,1672319394),(122258,3,22941,2,1672319394),(122259,3,22942,2,1672319394),(122260,3,22943,2,1672319394),(122261,3,23108,2,1672319394),(122262,3,23109,2,1672319394),(122263,3,23110,2,1672319394),(122264,3,23111,2,1672319394),(122265,3,23112,2,1672319394),(122266,3,23113,2,1672319394),(122267,3,23114,2,1672319394),(122268,3,23115,2,1672319394),(122269,3,23116,2,1672319394),(122270,3,23117,2,1672319394),(122271,3,23118,2,1672319394),(122272,3,23119,2,1672319394),(122273,3,23120,2,1672319394),(122274,3,23121,2,1672319394),(122275,3,23122,2,1672319394),(122276,3,23123,2,1672319394),(122277,3,23124,2,1672319394),(122278,3,23125,2,1672319394),(122279,3,23126,2,1672319394),(122280,3,23127,2,1672319394),(122281,3,23128,2,1672319394),(122282,3,23129,2,1672319394),(122283,3,23130,2,1672319394),(122284,3,23131,2,1672319394),(122285,3,27203,2,1672319394),(122286,3,27207,2,1672319394),(122287,3,27208,2,1672319394),(122288,3,27236,2,1672319394),(122289,3,27237,2,1672319394),(122290,3,27238,2,1672319394),(122291,3,27240,2,1672319394),(122292,3,27294,2,1672319394),(122293,3,27295,2,1672319394),(122294,3,27296,2,1672319394),(122295,3,27297,2,1672319394),(122296,3,27378,2,1672319394),(122297,3,27379,2,1672319394),(122298,3,28511,2,1672319394),(122299,3,28743,2,1672319394),(122300,3,28748,2,1672319394),(122301,3,28775,2,1672319394),(122302,3,28776,2,1672319394),(122303,3,28777,2,1672319394),(122304,3,28778,2,1672319394),(122305,3,28779,2,1672319394),(122306,3,28780,2,1672319394),(122307,3,28781,2,1672319394),(122308,3,28782,2,1672319394),(122309,3,28783,2,1672319394),(122310,3,28784,2,1672319394),(122311,3,28785,2,1672319394),(122312,3,28786,2,1672319394),(122313,3,28787,2,1672319394),(122314,3,28788,2,1672319394),(122315,3,28789,2,1672319394),(122316,3,28790,2,1672319394),(122317,3,28791,2,1672319394),(122318,3,28792,2,1672319394),(122319,3,28793,2,1672319394),(122320,3,28794,2,1672319394),(122321,3,28795,2,1672319394),(122322,3,28796,2,1672319394),(122323,3,30086,2,1672319394),(122324,3,30087,2,1672319394),(122325,3,30088,2,1672319394),(122326,3,30089,2,1672319394),(122327,3,30093,2,1672319394),(122328,3,30094,2,1672319394),(122329,3,30097,2,1672319394),(122330,3,30685,2,1672319394),(122331,3,30896,2,1672319394),(122332,3,30897,2,1672319394),(122333,3,30898,2,1672319394),(122334,3,30899,2,1672319394),(122335,3,30900,2,1672319394),(122336,3,30901,2,1672319394),(122337,3,30902,2,1672319394),(122338,3,30903,2,1672319394),(122339,3,30904,2,1672319394),(122340,3,30905,2,1672319394),(122341,3,30906,2,1672319394),(122342,3,30907,2,1672319394),(122343,3,30908,2,1672319394),(122344,3,30909,2,1672319394),(122345,3,30910,2,1672319394),(122346,3,30911,2,1672319394),(122347,3,30912,2,1672319394),(122348,3,30913,2,1672319394),(122349,3,30914,2,1672319394),(122350,3,30915,2,1672319394),(122351,3,31782,2,1672319394),(122352,3,31783,2,1672319394),(122353,3,31784,2,1672319394),(122354,3,31785,2,1672319394),(122355,3,31786,2,1672319394),(122356,3,31787,2,1672319394),(122357,3,31788,2,1672319394),(122358,3,31789,2,1672319394),(122359,3,31790,2,1672319394),(122360,3,31791,2,1672319394),(122361,3,31792,2,1672319394),(122362,3,31793,2,1672319394),(122363,3,31794,2,1672319394),(122364,3,31795,2,1672319394),(122365,3,31796,2,1672319394),(122366,3,31797,2,1672319394),(122367,3,31798,2,1672319394),(122368,3,31799,2,1672319394),(122369,3,31800,2,1672319394),(122370,3,31801,2,1672319394),(122371,3,31802,2,1672319394),(122372,3,32117,2,1672319394),(122373,3,32118,2,1672319394),(122374,3,32119,2,1672319394),(122375,3,32120,2,1672319394),(122376,3,32121,2,1672319394),(122377,3,32122,2,1672319394),(122378,3,32123,2,1672319394),(122379,3,32124,2,1672319394),(122380,3,32125,2,1672319394),(122381,3,32126,2,1672319394),(122382,3,32127,2,1672319394),(122383,3,32128,2,1672319394),(122384,3,32129,2,1672319394),(122385,3,32130,2,1672319394),(122386,3,32131,2,1672319394),(122387,3,32132,2,1672319394),(122388,3,32133,2,1672319394),(122389,3,32134,2,1672319394),(122390,3,32135,2,1672319394),(122391,3,32136,2,1672319394),(122392,3,32137,2,1672319394),(122393,3,32138,2,1672319394),(122394,3,32139,2,1672319394),(122395,3,32140,2,1672319394),(122396,3,32141,2,1672319394),(122397,3,32142,2,1672319394),(122398,3,32143,2,1672319394),(122399,3,32144,2,1672319394),(122400,3,32145,2,1672319394),(122401,3,32146,2,1672319394),(122402,3,32147,2,1672319394),(122403,3,32148,2,1672319394),(122404,3,32149,2,1672319394),(122405,3,32150,2,1672319394),(122406,3,32151,2,1672319394),(122407,3,32152,2,1672319394),(122408,3,32153,2,1672319394),(122409,3,32154,2,1672319394),(122410,3,32155,2,1672319394),(122411,3,32156,2,1672319394),(122412,3,32157,2,1672319394),(122413,3,32158,2,1672319394),(122414,3,32159,2,1672319394),(122415,3,32160,2,1672319394),(122416,3,32161,2,1672319394),(122417,3,32162,2,1672319394),(122418,3,32163,2,1672319394),(122419,3,32164,2,1672319394),(122420,3,32165,2,1672319394),(122421,3,32166,2,1672319394),(122422,3,32167,2,1672319394),(122423,3,32463,2,1672319394),(122424,3,32464,2,1672319394),(122425,3,32693,2,1672319394),(122426,3,32694,2,1672319394),(122427,3,32695,2,1672319394),(122428,3,32696,2,1672319394),(122429,3,32697,2,1672319394),(122430,3,32698,2,1672319394),(122431,3,32699,2,1672319394),(122432,3,32700,2,1672319394),(122433,3,32701,2,1672319394),(122434,3,32702,2,1672319394),(122435,3,32703,2,1672319394),(122436,3,32704,2,1672319394),(122437,3,32705,2,1672319394),(122438,3,32706,2,1672319394),(122439,3,32707,2,1672319394),(122440,3,32708,2,1672319394),(122441,3,32709,2,1672319394),(122442,3,32710,2,1672319394),(122443,3,32711,2,1672319394),(122444,3,32712,2,1672319394),(122445,3,32713,2,1672319394),(122446,3,32714,2,1672319394),(122447,3,32715,2,1672319394),(122448,3,32716,2,1672319394),(122449,3,32717,2,1672319394),(122450,3,32718,2,1672319394),(122451,3,32719,2,1672319394),(122452,3,32720,2,1672319394),(122453,3,32721,2,1672319394),(122454,3,32722,2,1672319394),(122455,3,32723,2,1672319394),(122456,3,32724,2,1672319394),(122457,3,32725,2,1672319394),(122458,3,32726,2,1672319394),(122459,3,32727,2,1672319394),(122460,3,32728,2,1672319394),(122461,3,32729,2,1672319394),(122462,3,32730,2,1672319394),(122463,3,32731,2,1672319394),(122464,3,32732,2,1672319394),(122465,3,32733,2,1672319394),(122466,3,32734,2,1672319394),(122467,3,32735,2,1672319394),(122468,3,32736,2,1672319394),(122469,3,32737,2,1672319394),(122470,3,32738,2,1672319394),(122471,3,32739,2,1672319394),(122472,3,32740,2,1672319394),(122473,3,32741,2,1672319394),(122474,3,32742,2,1672319394),(122475,3,32743,2,1672319394),(122476,3,32744,2,1672319394),(122477,3,32745,2,1672319394),(122478,3,32746,2,1672319394),(122479,3,32747,2,1672319394),(122480,3,32748,2,1672319394),(122481,3,32749,2,1672319394),(122482,3,32750,2,1672319394),(122483,3,32751,2,1672319394),(122484,3,32752,2,1672319394),(122485,3,32753,2,1672319394),(122486,3,32754,2,1672319394),(122487,3,33028,2,1672319394),(122488,3,33029,2,1672319394),(122489,3,33030,2,1672319394),(122490,3,33031,2,1672319394),(122491,3,33032,2,1672319394),(122492,3,33033,2,1672319394),(122493,3,33034,2,1672319394),(122494,3,33035,2,1672319394),(122495,3,33036,2,1672319394),(122496,3,33037,2,1672319394),(122497,3,33038,2,1672319394),(122498,3,33039,2,1672319394),(122499,3,33040,2,1672319394),(122500,3,33041,2,1672319394),(122501,3,33042,2,1672319394),(122502,3,33043,2,1672319394),(122503,3,33044,2,1672319394),(122504,3,33045,2,1672319394),(122505,3,33046,2,1672319394),(122506,3,33047,2,1672319394),(122507,3,33048,2,1672319394),(122508,3,33049,2,1672319394),(122509,3,33050,2,1672319394),(122510,3,33051,2,1672319394),(122511,3,33052,2,1672319394),(122512,3,33053,2,1672319394),(122513,3,33054,2,1672319394),(122514,3,33055,2,1672319394),(122515,3,33056,2,1672319394),(122516,3,33057,2,1672319394),(122517,3,33058,2,1672319394),(122518,3,33059,2,1672319394),(122519,3,33060,2,1672319394),(122520,3,33061,2,1672319394),(122521,3,33062,2,1672319394),(122522,3,33063,2,1672319394),(122523,3,33064,2,1672319394),(122524,3,33065,2,1672319394),(122525,3,33066,2,1672319394),(122526,3,33067,2,1672319394),(122527,3,33068,2,1672319394),(122528,3,33069,2,1672319394),(122529,3,33070,2,1672319394),(122530,3,33071,2,1672319394),(122531,3,33072,2,1672319394),(122532,3,33073,2,1672319394),(122533,3,33074,2,1672319394),(122534,3,33075,2,1672319394),(122535,3,33076,2,1672319394),(122536,3,33077,2,1672319394),(122537,3,33078,2,1672319394),(122538,3,33079,2,1672319394),(122539,3,33080,2,1672319394),(122540,3,33081,2,1672319394),(122541,3,33082,2,1672319394),(122542,3,33083,2,1672319394),(122543,3,33084,2,1672319394),(122544,3,33085,2,1672319394),(122545,3,33086,2,1672319394),(122546,3,33087,2,1672319394),(122547,3,33088,2,1672319394),(122548,3,33089,2,1672319394),(122549,3,33090,2,1672319394),(122550,3,33091,2,1672319394),(122551,3,33092,2,1672319394),(122552,3,33093,2,1672319394),(122553,3,33094,2,1672319394),(122554,3,33181,2,1672319394),(122555,3,33389,2,1672319394),(122556,3,33390,2,1672319394),(122557,3,33944,2,1672319394),(122558,3,33945,2,1672319394),(122559,3,33946,2,1672319394),(122560,3,33947,2,1672319394),(122561,3,33948,2,1672319394),(122562,3,33949,2,1672319394),(122563,3,33950,2,1672319394),(122564,3,33951,2,1672319394),(122565,3,33952,2,1672319394),(122566,3,33953,2,1672319394),(122567,3,33954,2,1672319394),(122568,3,33955,2,1672319394),(122569,3,33956,2,1672319394),(122570,3,33957,2,1672319394),(122571,3,33985,2,1672319394),(122572,3,33986,2,1672319394),(122573,3,33987,2,1672319394),(122574,3,33988,2,1672319394),(122575,3,33989,2,1672319394),(122576,3,33990,2,1672319394),(122577,3,33991,2,1672319394),(122578,3,33992,2,1672319394),(122579,3,33993,2,1672319394),(122580,3,33994,2,1672319394),(122581,3,33995,2,1672319394),(122582,3,33996,2,1672319394),(122583,3,33997,2,1672319394),(122584,3,33998,2,1672319394),(122585,3,34026,2,1672319394),(122586,3,34027,2,1672319394),(122587,3,34028,2,1672319394),(122588,3,34029,2,1672319394),(122589,3,34030,2,1672319394),(122590,3,34031,2,1672319394),(122591,3,34032,2,1672319394),(122592,3,34033,2,1672319394),(122593,3,34034,2,1672319394),(122594,3,34035,2,1672319394),(122595,3,34036,2,1672319394),(122596,3,34037,2,1672319394),(122597,3,34038,2,1672319394),(122598,3,34039,2,1672319394),(122599,3,34067,2,1672319394),(122600,3,34068,2,1672319394),(122601,3,34069,2,1672319394),(122602,3,34070,2,1672319394),(122603,3,34071,2,1672319394),(122604,3,34072,2,1672319394),(122605,3,34073,2,1672319394),(122606,3,34074,2,1672319394),(122607,3,34075,2,1672319394),(122608,3,34076,2,1672319394),(122609,3,34077,2,1672319394),(122610,3,34078,2,1672319394),(122611,3,34079,2,1672319394),(122612,3,34080,2,1672319394),(122613,3,34108,2,1672319394),(122614,3,34109,2,1672319394),(122615,3,34110,2,1672319394),(122616,3,34111,2,1672319394),(122617,3,34112,2,1672319394),(122618,3,34113,2,1672319394),(122619,3,34114,2,1672319394),(122620,3,34115,2,1672319394),(122621,3,34116,2,1672319394),(122622,3,34117,2,1672319394),(122623,3,34118,2,1672319394),(122624,3,34119,2,1672319394),(122625,3,34120,2,1672319394),(122626,3,34121,2,1672319394),(122627,3,34180,2,1672319394),(122628,3,34181,2,1672319394),(122629,3,34182,2,1672319394),(122630,3,34183,2,1672319394),(122631,3,34185,2,1672319394),(122632,3,34186,2,1672319394),(122633,3,34187,2,1672319394),(122634,3,34188,2,1672319394),(122635,3,34189,2,1672319394),(122636,3,34190,2,1672319394),(122637,3,34191,2,1672319394),(122638,3,34192,2,1672319394),(122639,3,34193,2,1672319394),(122640,3,34194,2,1672319394),(122641,3,34195,2,1672319394),(122642,3,34196,2,1672319394),(122643,3,34200,2,1672319394),(122644,3,34201,2,1672319394),(122645,3,34202,2,1672319394),(122646,3,34203,2,1672319394),(122647,3,34204,2,1672319394),(122648,3,34205,2,1672319394),(122649,3,34206,2,1672319394),(122650,3,34451,2,1672319394),(122651,3,34452,2,1672319394),(122652,3,34453,2,1672319394),(122653,3,34454,2,1672319394),(122654,3,34455,2,1672319394),(122655,3,34456,2,1672319394),(122656,3,34457,2,1672319394),(122657,3,34458,2,1672319394),(122658,3,34459,2,1672319394),(122659,3,34460,2,1672319394),(122660,3,34461,2,1672319394),(122661,3,34462,2,1672319394),(122662,3,34463,2,1672319394),(122663,3,34464,2,1672319394),(122664,3,34465,2,1672319394),(122665,3,34466,2,1672319394),(122666,3,34467,2,1672319394),(122667,3,34468,2,1672319394),(122668,3,34469,2,1672319394),(122669,3,34470,2,1672319394),(122670,3,34471,2,1672319394),(122671,3,34472,2,1672319394),(122672,3,34473,2,1672319394),(122673,3,34474,2,1672319394),(122674,3,34475,2,1672319394),(122675,3,34499,2,1672319394),(122676,3,34500,2,1672319394),(122677,3,34501,2,1672319394),(122678,3,34502,2,1672319394),(122679,3,34503,2,1672319394),(122680,3,34504,2,1672319394),(122681,3,34505,2,1672319394),(122682,3,34506,2,1672319394),(122683,3,34507,2,1672319394),(122684,3,34508,2,1672319394),(122685,3,34509,2,1672319394),(122686,3,34510,2,1672319394),(122687,3,34511,2,1672319394),(122688,3,34512,2,1672319394),(122689,3,34513,2,1672319394),(122690,3,34514,2,1672319394),(122691,3,34515,2,1672319394),(122692,3,34516,2,1672319394),(122693,3,34517,2,1672319394),(122694,3,34518,2,1672319394),(122695,3,34519,2,1672319394),(122696,3,34520,2,1672319394),(122697,3,34521,2,1672319394),(122698,3,34522,2,1672319394),(122699,3,34523,2,1672319394),(122700,3,34547,2,1672319394),(122701,3,34548,2,1672319394),(122702,3,34549,2,1672319394),(122703,3,34550,2,1672319394),(122704,3,34551,2,1672319394),(122705,3,34552,2,1672319394),(122706,3,34553,2,1672319394),(122707,3,34554,2,1672319394),(122708,3,34555,2,1672319394),(122709,3,34556,2,1672319394),(122710,3,34557,2,1672319394),(122711,3,34558,2,1672319394),(122712,3,34559,2,1672319394),(122713,3,34560,2,1672319394),(122714,3,34561,2,1672319394),(122715,3,34562,2,1672319394),(122716,3,34563,2,1672319394),(122717,3,34564,2,1672319394),(122718,3,34565,2,1672319394),(122719,3,34566,2,1672319394),(122720,3,34567,2,1672319394),(122721,3,34568,2,1672319394),(122722,3,34569,2,1672319394),(122723,3,34570,2,1672319394),(122724,3,34571,2,1672319394),(122725,3,34595,2,1672319394),(122726,3,34596,2,1672319394),(122727,3,34597,2,1672319394),(122728,3,34598,2,1672319394),(122729,3,34599,2,1672319394),(122730,3,34600,2,1672319394),(122731,3,34601,2,1672319394),(122732,3,34602,2,1672319394),(122733,3,34603,2,1672319394),(122734,3,34604,2,1672319394),(122735,3,34605,2,1672319394),(122736,3,34606,2,1672319394),(122737,3,34607,2,1672319394),(122738,3,34608,2,1672319394),(122739,3,34609,2,1672319394),(122740,3,34610,2,1672319394),(122741,3,34611,2,1672319394),(122742,3,34612,2,1672319394),(122743,3,34613,2,1672319394),(122744,3,34614,2,1672319394),(122745,3,34615,2,1672319394),(122746,3,34616,2,1672319394),(122747,3,34617,2,1672319394),(122748,3,34618,2,1672319394),(122749,3,34619,2,1672319394),(122750,3,34643,2,1672319394),(122751,3,34644,2,1672319394),(122752,3,34645,2,1672319394),(122753,3,34646,2,1672319394),(122754,3,34647,2,1672319394),(122755,3,34648,2,1672319394),(122756,3,34649,2,1672319394),(122757,3,34650,2,1672319394),(122758,3,34651,2,1672319394),(122759,3,34652,2,1672319394),(122760,3,34653,2,1672319394),(122761,3,34654,2,1672319394),(122762,3,34655,2,1672319394),(122763,3,34656,2,1672319394),(122764,3,34657,2,1672319394),(122765,3,34658,2,1672319394),(122766,3,34659,2,1672319394),(122767,3,34660,2,1672319394),(122768,3,34661,2,1672319394),(122769,3,34662,2,1672319394),(122770,3,34663,2,1672319394),(122771,3,34664,2,1672319394),(122772,3,34665,2,1672319394),(122773,3,34666,2,1672319394),(122774,3,34667,2,1672319394),(122775,3,34739,2,1672319394),(122776,3,34740,2,1672319394),(122777,3,34741,2,1672319394),(122778,3,34742,2,1672319394),(122779,3,34743,2,1672319394),(122780,3,34744,2,1672319394),(122781,3,34745,2,1672319394),(122782,3,34746,2,1672319394),(122783,3,34747,2,1672319394),(122784,3,34748,2,1672319394),(122785,3,34749,2,1672319394),(122786,3,34750,2,1672319394),(122787,3,34751,2,1672319394),(122788,3,34752,2,1672319394),(122789,3,34753,2,1672319394),(122790,3,34754,2,1672319394),(122791,3,34755,2,1672319394),(122792,3,34756,2,1672319394),(122793,3,34757,2,1672319394),(122794,3,34758,2,1672319394),(122795,3,34759,2,1672319394),(122796,3,34760,2,1672319394),(122797,3,34761,2,1672319394),(122798,3,34762,2,1672319394),(122799,3,34763,2,1672319394),(122800,3,34787,2,1672319394),(122801,3,34788,2,1672319394),(122802,3,34793,2,1672319394),(122803,3,34794,2,1672319394),(122804,3,34795,2,1672319394),(122805,3,34796,2,1672319394),(122806,3,34797,2,1672319394),(122807,3,34798,2,1672319394),(122808,3,34799,2,1672319394),(122809,3,34800,2,1672319394),(122810,3,34801,2,1672319394),(122811,3,34802,2,1672319394),(122812,3,34803,2,1672319394),(122813,3,34804,2,1672319394),(122814,3,34805,2,1672319394),(122815,3,34806,2,1672319394),(122816,3,34807,2,1672319394),(122817,3,34808,2,1672319394),(122818,3,34809,2,1672319394),(122819,3,34810,2,1672319394),(122820,3,34811,2,1672319394),(122821,3,34812,2,1672319394),(122822,3,34813,2,1672319394),(122823,3,34814,2,1672319394),(122824,3,34815,2,1672319394),(122825,3,34816,2,1672319394),(122826,3,34817,2,1672319394),(122827,3,34841,2,1672319394),(122828,3,34842,2,1672319394),(122829,3,34843,2,1672319394),(122830,3,34844,2,1672319394),(122831,3,34845,2,1672319394),(122832,3,34846,2,1672319394),(122833,3,34847,2,1672319394),(122834,3,34848,2,1672319394),(122835,3,34849,2,1672319394),(122836,3,34850,2,1672319394),(122837,3,34851,2,1672319394),(122838,3,34852,2,1672319394),(122839,3,34853,2,1672319394),(122840,3,34854,2,1672319394),(122841,3,34855,2,1672319394),(122842,3,34856,2,1672319394),(122843,3,34857,2,1672319394),(122844,3,34858,2,1672319394),(122845,3,34859,2,1672319394),(122846,3,34860,2,1672319394),(122847,3,34861,2,1672319394),(122848,3,34862,2,1672319394),(122849,3,34863,2,1672319394),(122850,3,34864,2,1672319394),(122851,3,34865,2,1672319394),(122852,3,34889,2,1672319394),(122853,3,34890,2,1672319394),(122854,3,34891,2,1672319394),(122855,3,34892,2,1672319394),(122856,3,34893,2,1672319394),(122857,3,34894,2,1672319394),(122858,3,34895,2,1672319394),(122859,3,34896,2,1672319394),(122860,3,34897,2,1672319394),(122861,3,34898,2,1672319394),(122862,3,34899,2,1672319394),(122863,3,34900,2,1672319394),(122864,3,34901,2,1672319394),(122865,3,34902,2,1672319394),(122866,3,34903,2,1672319394),(122867,3,34904,2,1672319394),(122868,3,34905,2,1672319394),(122869,3,34906,2,1672319394),(122870,3,34907,2,1672319394),(122871,3,34908,2,1672319394),(122872,3,34909,2,1672319394),(122873,3,34910,2,1672319394),(122874,3,34911,2,1672319394),(122875,3,34912,2,1672319394),(122876,3,34913,2,1672319394),(122877,3,35016,2,1672319394),(122878,3,35017,2,1672319394),(122879,3,35018,2,1672319394),(122880,3,35019,2,1672319394),(122881,3,35020,2,1672319394),(122882,3,35021,2,1672319394),(122883,3,35022,2,1672319394),(122884,3,35023,2,1672319394),(122885,3,35024,2,1672319394),(122886,3,35025,2,1672319394),(122887,3,35026,2,1672319394),(122888,3,35027,2,1672319394),(122889,3,35028,2,1672319394),(122890,3,35029,2,1672319394),(122891,3,35030,2,1672319394),(122892,3,35031,2,1672319394),(122893,3,35032,2,1672319394),(122894,3,35033,2,1672319394),(122895,3,35034,2,1672319394),(122896,3,35035,2,1672319394),(122897,3,35036,2,1672319394),(122898,3,35037,2,1672319394),(122899,3,35038,2,1672319394),(122900,3,35039,2,1672319394),(122901,3,35040,2,1672319394),(122902,3,35358,2,1672319394),(122903,3,35359,2,1672319394),(122904,3,35360,2,1672319394),(122905,3,35361,2,1672319394),(122906,3,35362,2,1672319394),(122907,3,35363,2,1672319394),(122908,3,36769,2,1672319394),(122909,3,36770,2,1672319394),(122910,3,36771,2,1672319394),(122911,3,40478,2,1672319394),(122912,3,40479,2,1672319394),(122913,3,40480,2,1672319394),(122914,3,40481,2,1672319394),(122915,3,40482,2,1672319394),(122916,3,40483,2,1672319394),(122917,3,40484,2,1672319394),(122918,3,40485,2,1672319394),(122919,3,40486,2,1672319394),(122920,3,40487,2,1672319394),(122921,3,40488,2,1672319394),(122922,3,40501,2,1672319394),(122923,3,40502,2,1672319394),(122924,3,40503,2,1672319394),(122925,3,40504,2,1672319394),(122926,3,40505,2,1672319394),(122927,3,40506,2,1672319394),(122928,3,40507,2,1672319394),(122929,3,40508,2,1672319394),(122930,3,40509,2,1672319394),(122931,3,40510,2,1672319394),(122932,3,40511,2,1672319394),(122933,3,40512,2,1672319394),(122934,3,40533,2,1672319394),(122935,3,40534,2,1672319394),(122936,3,40535,2,1672319394),(122937,3,40536,2,1672319394),(122938,3,40537,2,1672319394),(122939,3,40538,2,1672319394),(122940,3,40539,2,1672319394),(122941,3,40540,2,1672319394),(122942,3,40541,2,1672319394),(122943,3,40542,2,1672319394),(122944,3,40543,2,1672319394),(122945,3,40554,2,1672319394),(122946,3,40555,2,1672319394),(122947,3,40556,2,1672319394),(122948,3,40557,2,1672319394),(122949,3,40558,2,1672319394),(122950,3,40559,2,1672319394),(122951,3,40560,2,1672319394),(122952,3,40561,2,1672319394),(122953,3,40562,2,1672319394),(122954,3,40563,2,1672319394),(122955,3,40564,2,1672319394),(122956,3,40565,2,1672319394),(122957,3,40566,2,1672319394),(122958,3,40567,2,1672319394),(122959,3,40568,2,1672319394),(122960,3,40569,2,1672319394),(122961,3,40570,2,1672319394),(122962,3,40571,2,1672319394),(122963,3,40572,2,1672319394),(122964,3,40573,2,1672319394),(122965,3,40574,2,1672319394),(122966,3,40575,2,1672319394),(122967,3,40576,2,1672319394),(122968,3,40577,2,1672319394),(122969,3,40578,2,1672319394),(122970,3,40579,2,1672319394),(122971,3,40615,2,1672319394),(122972,3,40616,2,1672319394),(122973,3,40617,2,1672319394),(122974,3,40618,2,1672319394),(122975,3,40619,2,1672319394),(122976,3,40620,2,1672319394),(122977,3,40621,2,1672319394),(122978,3,40622,2,1672319394),(122979,3,40623,2,1672319394),(122980,3,40624,2,1672319394),(122981,3,40625,2,1672319394),(122982,3,40626,2,1672319394),(122983,3,40627,2,1672319394),(122984,3,40628,2,1672319394),(122985,3,42175,2,1672319394),(122986,3,42176,2,1672319394),(122987,3,42177,2,1672319394),(122988,3,42178,2,1672319394),(122989,3,43497,2,1672319394),(122990,3,43498,2,1672319394),(122991,3,43499,2,1672319394),(122992,3,43500,2,1672319394),(122993,3,43501,2,1672319394),(122994,3,43502,2,1672319394),(122995,3,43503,2,1672319394),(122996,3,43504,2,1672319394),(122997,3,43505,2,1672319394),(122998,3,43506,2,1672319394),(122999,3,43507,2,1672319394),(123000,3,43508,2,1672319394),(123001,3,43509,2,1672319394),(123002,3,43510,2,1672319394),(123003,3,43511,2,1672319394),(123004,3,43512,2,1672319394),(123005,3,43513,2,1672319394),(123006,3,43514,2,1672319394),(123007,3,43515,2,1672319394),(123008,3,43516,2,1672319394),(123009,3,43517,2,1672319394),(123010,3,43518,2,1672319394),(123011,3,43519,2,1672319394),(123012,3,43520,2,1672319394),(123013,3,43521,2,1672319394),(123014,3,43522,2,1672319394),(123015,3,43523,2,1672319394),(123016,3,43524,2,1672319394),(123017,3,43525,2,1672319394),(123018,3,43592,2,1672319394),(123019,3,43593,2,1672319394),(123020,3,43594,2,1672319394),(123021,3,43595,2,1672319394),(123022,3,43596,2,1672319394),(123023,3,43597,2,1672319394),(123024,3,43598,2,1672319394),(123025,3,43599,2,1672319394),(123026,3,43600,2,1672319394),(123027,3,43601,2,1672319394),(123028,3,43602,2,1672319394),(123029,3,43603,2,1672319394),(123030,3,43604,2,1672319394),(123031,3,43605,2,1672319394),(123032,3,43606,2,1672319394),(123033,3,43607,2,1672319394),(123034,3,43608,2,1672319394),(123035,3,43609,2,1672319394),(123036,3,43610,2,1672319394),(123037,3,43611,2,1672319394),(123038,3,43612,2,1672319394),(123039,3,43613,2,1672319394),(123040,3,43614,2,1672319394),(123041,3,43615,2,1672319394),(123042,3,43616,2,1672319394),(123043,3,43617,2,1672319394),(123044,3,43618,2,1672319394),(123045,3,43619,2,1672319394),(123046,3,43620,2,1672319394),(123047,3,43621,2,1672319394),(123048,3,43622,2,1672319394),(123049,3,43623,2,1672319394),(123050,3,43624,2,1672319394),(123051,3,43625,2,1672319394),(123052,3,43626,2,1672319394),(123053,3,43627,2,1672319394),(123054,3,43628,2,1672319394),(123055,3,43629,2,1672319394),(123056,3,43630,2,1672319394),(123057,3,43631,2,1672319394),(123058,3,43632,2,1672319394),(123059,3,43633,2,1672319394),(123060,3,43634,2,1672319394),(123061,3,43635,2,1672319394),(123062,3,43636,2,1672319394),(123063,3,43637,2,1672319394),(123064,3,43638,2,1672319394),(123065,3,43639,2,1672319394),(123066,3,43640,2,1672319394),(123067,3,43641,2,1672319394),(123068,3,43684,2,1672319394),(123069,3,43685,2,1672319394),(123070,3,43686,2,1672319394),(123071,3,43687,2,1672319394),(123072,3,43688,2,1672319394),(123073,3,43689,2,1672319394),(123074,3,43690,2,1672319394),(123075,3,43691,2,1672319394),(123076,3,43692,2,1672319394),(123077,3,43693,2,1672319394),(123078,3,43694,2,1672319394),(123079,3,43695,2,1672319394),(123080,3,43696,2,1672319394),(123081,3,43697,2,1672319394),(123082,3,43698,2,1672319394),(123083,3,43699,2,1672319394),(123084,3,43700,2,1672319394),(123085,3,43701,2,1672319394),(123086,3,43702,2,1672319394),(123087,3,43703,2,1672319394),(123088,3,43704,2,1672319394),(123089,3,43705,2,1672319394),(123090,3,43706,2,1672319394),(123091,3,43707,2,1672319394),(123092,3,43708,2,1672319394),(123093,3,43709,2,1672319394),(123094,3,43710,2,1672319394),(123095,3,43714,2,1672319394),(123096,3,43715,2,1672319394),(123097,3,43716,2,1672319394),(123098,3,43717,2,1672319394),(123099,3,43718,2,1672319394),(123100,3,43719,2,1672319394),(123101,3,43720,2,1672319394),(123102,3,43721,2,1672319394),(123103,3,43722,2,1672319394),(123104,3,43723,2,1672319394),(123105,3,43724,2,1672319394),(123106,3,43725,2,1672319394),(123107,3,43726,2,1672319394),(123108,3,43727,2,1672319394),(123109,3,43728,2,1672319394),(123110,3,43729,2,1672319394),(123111,3,43730,2,1672319394),(123112,3,43731,2,1672319394),(123113,3,43732,2,1672319394),(123114,3,43733,2,1672319394),(123115,3,43734,2,1672319394),(123116,3,43735,2,1672319394),(123117,3,43736,2,1672319394),(123118,3,43737,2,1672319394),(123119,3,43738,2,1672319394),(123120,3,43739,2,1672319394),(123121,3,43740,2,1672319394),(123122,3,43741,2,1672319394),(123123,3,43742,2,1672319394),(123124,3,43743,2,1672319394),(123125,3,43744,2,1672319394),(123126,3,43745,2,1672319394),(123127,3,43746,2,1672319394),(123128,3,43747,2,1672319394),(123129,3,43748,2,1672319394),(123130,3,43749,2,1672319394),(123131,3,43750,2,1672319394),(123132,3,43751,2,1672319394),(123133,3,43752,2,1672319394),(123134,3,43753,2,1672319394),(123135,3,43754,2,1672319394),(123136,3,43755,2,1672319394),(123137,3,43756,2,1672319394),(123138,3,43757,2,1672319394),(123139,3,43758,2,1672319394),(123140,3,43759,2,1672319394),(123141,3,43760,2,1672319394),(123142,3,43761,2,1672319394),(123143,3,43762,2,1672319394),(123144,3,43763,2,1672319394),(123145,3,43764,2,1672319394),(123146,3,43765,2,1672319394),(123147,3,43766,2,1672319394),(123148,3,43767,2,1672319394),(123149,3,43770,2,1672319394),(123150,3,43771,2,1672319394),(123151,3,43772,2,1672319394),(123152,3,43773,2,1672319394),(123153,3,43774,2,1672319394),(123154,3,43775,2,1672319394),(123155,3,43776,2,1672319394),(123156,3,43777,2,1672319394),(123157,3,43778,2,1672319394),(123158,3,43779,2,1672319394),(123159,3,43781,2,1672319394),(123160,3,43876,2,1672319394),(123161,3,43877,2,1672319394),(123162,3,43878,2,1672319394),(123163,3,43879,2,1672319394),(123164,3,43880,2,1672319394),(123165,3,43881,2,1672319394),(123166,3,43882,2,1672319394),(123167,3,43883,2,1672319394),(123168,3,43884,2,1672319394),(123169,3,43885,2,1672319394),(123170,3,43886,2,1672319394),(123171,3,44161,2,1672319394),(123172,3,44162,2,1672319394),(123173,3,44163,2,1672319394),(123174,3,44164,2,1672319394),(123175,3,44165,2,1672319394),(123176,3,44166,2,1672319394),(123177,3,44167,2,1672319394),(123178,3,44168,2,1672319394),(123179,3,44169,2,1672319394),(123180,3,44170,2,1672319394),(123181,3,44171,2,1672319394),(123182,3,44172,2,1672319394),(123183,3,44173,2,1672319394),(123184,3,44174,2,1672319394),(123185,3,44175,2,1672319394),(123186,3,44176,2,1672319394),(123187,3,44177,2,1672319394),(123188,3,44178,2,1672319394),(123189,3,44179,2,1672319394),(123190,3,44180,2,1672319394),(123191,3,44181,2,1672319394),(123192,3,44182,2,1672319394),(123193,3,44183,2,1672319394),(123194,3,44184,2,1672319394),(123195,3,44185,2,1672319394),(123196,3,44186,2,1672319394),(123197,3,44187,2,1672319394),(123198,3,44188,2,1672319394),(123199,3,44189,2,1672319394),(123200,3,44190,2,1672319394),(123201,3,44191,2,1672319394),(123202,3,44192,2,1672319394),(123203,3,44193,2,1672319394),(123204,3,44194,2,1672319394),(123205,3,44195,2,1672319394),(123206,3,44196,2,1672319394),(123207,3,44197,2,1672319394),(123208,3,44198,2,1672319394),(123209,3,44199,2,1672319394),(123210,3,44248,2,1672319394),(123211,3,44249,2,1672319394),(123212,3,44250,2,1672319394),(123213,3,44251,2,1672319394),(123214,3,44252,2,1672319394),(123215,3,44253,2,1672319394),(123216,3,44254,2,1672319394),(123217,3,44255,2,1672319394),(123218,3,44256,2,1672319394),(123219,3,44257,2,1672319394),(123220,3,44258,2,1672319394),(123221,3,44259,2,1672319394),(123222,3,44260,2,1672319394),(123223,3,44261,2,1672319394),(123224,3,44262,2,1672319394),(123225,3,44263,2,1672319394),(123226,3,44264,2,1672319394),(123227,3,44265,2,1672319394),(123228,3,44266,2,1672319394),(123229,3,44267,2,1672319394),(123230,3,44268,2,1672319394),(123231,3,44269,2,1672319394),(123232,3,44270,2,1672319394),(123233,3,44271,2,1672319394),(123234,3,44272,2,1672319394),(123235,3,44273,2,1672319394),(123236,3,44274,2,1672319394),(123237,3,44275,2,1672319394),(123238,3,44276,2,1672319394),(123239,3,44277,2,1672319394),(123240,3,44278,2,1672319394),(123241,3,44279,2,1672319394),(123242,3,44280,2,1672319394),(123243,3,44281,2,1672319394),(123244,3,44282,2,1672319394),(123245,3,44283,2,1672319394),(123246,3,44284,2,1672319394),(123247,3,44285,2,1672319394),(123248,3,44286,2,1672319394),(123249,3,44287,2,1672319394),(123250,3,44288,2,1672319394),(123251,3,44289,2,1672319394),(123252,3,44290,2,1672319394),(123253,3,44291,2,1672319394),(123254,3,44292,2,1672319394),(123255,3,44335,2,1672319394),(123256,3,44427,2,1672319394),(123257,3,22917,3,1672319394),(123258,3,22918,3,1672319394),(123259,3,22920,3,1672319394),(123260,3,22921,3,1672319394),(123261,3,22922,3,1672319394),(123262,3,22923,3,1672319394),(123263,3,22924,3,1672319394),(123264,3,22933,3,1672319394),(123265,3,22934,3,1672319394),(123266,3,22938,3,1672319394),(123267,3,22939,3,1672319394),(123268,3,22940,3,1672319394),(123269,3,22941,3,1672319394),(123270,3,22942,3,1672319394),(123271,3,22943,3,1672319394),(123272,3,23108,3,1672319394),(123273,3,23109,3,1672319394),(123274,3,23110,3,1672319394),(123275,3,23111,3,1672319394),(123276,3,23112,3,1672319394),(123277,3,23113,3,1672319394),(123278,3,23114,3,1672319394),(123279,3,23115,3,1672319394),(123280,3,23116,3,1672319394),(123281,3,23117,3,1672319394),(123282,3,23118,3,1672319394),(123283,3,23119,3,1672319394),(123284,3,23120,3,1672319394),(123285,3,23121,3,1672319394),(123286,3,23122,3,1672319394),(123287,3,23123,3,1672319394),(123288,3,23124,3,1672319394),(123289,3,23125,3,1672319394),(123290,3,23126,3,1672319394),(123291,3,23127,3,1672319394),(123292,3,23128,3,1672319394),(123293,3,23129,3,1672319394),(123294,3,23130,3,1672319394),(123295,3,23131,3,1672319394),(123296,3,27203,3,1672319394),(123297,3,27207,3,1672319394),(123298,3,27208,3,1672319394),(123299,3,27236,3,1672319394),(123300,3,27237,3,1672319394),(123301,3,27238,3,1672319394),(123302,3,27240,3,1672319394),(123303,3,27294,3,1672319394),(123304,3,27295,3,1672319394),(123305,3,27296,3,1672319394),(123306,3,27297,3,1672319394),(123307,3,27378,3,1672319394),(123308,3,27379,3,1672319394),(123309,3,28511,3,1672319394),(123310,3,28743,3,1672319394),(123311,3,28748,3,1672319394),(123312,3,28775,3,1672319394),(123313,3,28776,3,1672319394),(123314,3,28777,3,1672319394),(123315,3,28778,3,1672319394),(123316,3,28779,3,1672319394),(123317,3,28780,3,1672319394),(123318,3,28781,3,1672319394),(123319,3,28782,3,1672319394),(123320,3,28783,3,1672319394),(123321,3,28784,3,1672319394),(123322,3,28785,3,1672319394),(123323,3,28786,3,1672319394),(123324,3,28787,3,1672319394),(123325,3,28788,3,1672319394),(123326,3,28789,3,1672319394),(123327,3,28790,3,1672319394),(123328,3,28791,3,1672319394),(123329,3,28792,3,1672319394),(123330,3,28793,3,1672319394),(123331,3,28794,3,1672319394),(123332,3,28795,3,1672319394),(123333,3,28796,3,1672319394),(123334,3,30086,3,1672319394),(123335,3,30087,3,1672319394),(123336,3,30088,3,1672319394),(123337,3,30089,3,1672319394),(123338,3,30093,3,1672319394),(123339,3,30094,3,1672319394),(123340,3,30097,3,1672319394),(123341,3,30685,3,1672319394),(123342,3,30896,3,1672319394),(123343,3,30897,3,1672319394),(123344,3,30898,3,1672319394),(123345,3,30899,3,1672319394),(123346,3,30900,3,1672319394),(123347,3,30901,3,1672319394),(123348,3,30902,3,1672319394),(123349,3,30903,3,1672319394),(123350,3,30904,3,1672319394),(123351,3,30905,3,1672319394),(123352,3,30906,3,1672319394),(123353,3,30907,3,1672319394),(123354,3,30908,3,1672319394),(123355,3,30909,3,1672319394),(123356,3,30910,3,1672319394),(123357,3,30911,3,1672319394),(123358,3,30912,3,1672319394),(123359,3,30913,3,1672319394),(123360,3,30914,3,1672319394),(123361,3,30915,3,1672319394),(123362,3,31782,3,1672319394),(123363,3,31783,3,1672319394),(123364,3,31784,3,1672319394),(123365,3,31785,3,1672319394),(123366,3,31786,3,1672319394),(123367,3,31787,3,1672319394),(123368,3,31788,3,1672319394),(123369,3,31789,3,1672319394),(123370,3,31790,3,1672319394),(123371,3,31791,3,1672319394),(123372,3,31792,3,1672319394),(123373,3,31793,3,1672319394),(123374,3,31794,3,1672319394),(123375,3,31795,3,1672319394),(123376,3,31796,3,1672319394),(123377,3,31797,3,1672319394),(123378,3,31798,3,1672319394),(123379,3,31799,3,1672319394),(123380,3,31800,3,1672319394),(123381,3,31801,3,1672319394),(123382,3,31802,3,1672319394),(123383,3,32117,3,1672319394),(123384,3,32118,3,1672319394),(123385,3,32119,3,1672319394),(123386,3,32120,3,1672319394),(123387,3,32121,3,1672319394),(123388,3,32122,3,1672319394),(123389,3,32123,3,1672319394),(123390,3,32124,3,1672319394),(123391,3,32125,3,1672319394),(123392,3,32126,3,1672319394),(123393,3,32127,3,1672319394),(123394,3,32128,3,1672319394),(123395,3,32129,3,1672319394),(123396,3,32130,3,1672319394),(123397,3,32131,3,1672319394),(123398,3,32132,3,1672319394),(123399,3,32133,3,1672319394),(123400,3,32134,3,1672319394),(123401,3,32135,3,1672319394),(123402,3,32136,3,1672319394),(123403,3,32137,3,1672319394),(123404,3,32138,3,1672319394),(123405,3,32139,3,1672319394),(123406,3,32140,3,1672319394),(123407,3,32141,3,1672319394),(123408,3,32142,3,1672319394),(123409,3,32143,3,1672319394),(123410,3,32144,3,1672319394),(123411,3,32145,3,1672319394),(123412,3,32146,3,1672319394),(123413,3,32147,3,1672319394),(123414,3,32148,3,1672319394),(123415,3,32149,3,1672319394),(123416,3,32150,3,1672319394),(123417,3,32151,3,1672319394),(123418,3,32152,3,1672319394),(123419,3,32153,3,1672319394),(123420,3,32154,3,1672319394),(123421,3,32155,3,1672319394),(123422,3,32156,3,1672319394),(123423,3,32157,3,1672319394),(123424,3,32158,3,1672319394),(123425,3,32159,3,1672319394),(123426,3,32160,3,1672319394),(123427,3,32161,3,1672319394),(123428,3,32162,3,1672319394),(123429,3,32163,3,1672319394),(123430,3,32164,3,1672319394),(123431,3,32165,3,1672319394),(123432,3,32166,3,1672319394),(123433,3,32167,3,1672319394),(123434,3,32463,3,1672319394),(123435,3,32464,3,1672319394),(123436,3,32693,3,1672319394),(123437,3,32694,3,1672319394),(123438,3,32695,3,1672319394),(123439,3,32696,3,1672319394),(123440,3,32697,3,1672319394),(123441,3,32698,3,1672319394),(123442,3,32699,3,1672319394),(123443,3,32700,3,1672319394),(123444,3,32701,3,1672319394),(123445,3,32702,3,1672319394),(123446,3,32703,3,1672319394),(123447,3,32704,3,1672319394),(123448,3,32705,3,1672319394),(123449,3,32706,3,1672319394),(123450,3,32707,3,1672319394),(123451,3,32708,3,1672319394),(123452,3,32709,3,1672319394),(123453,3,32710,3,1672319394),(123454,3,32711,3,1672319394),(123455,3,32712,3,1672319394),(123456,3,32713,3,1672319394),(123457,3,32714,3,1672319394),(123458,3,32715,3,1672319394),(123459,3,32716,3,1672319394),(123460,3,32717,3,1672319394),(123461,3,32718,3,1672319394),(123462,3,32719,3,1672319394),(123463,3,32720,3,1672319394),(123464,3,32721,3,1672319394),(123465,3,32722,3,1672319394),(123466,3,32723,3,1672319394),(123467,3,32724,3,1672319394),(123468,3,32725,3,1672319394),(123469,3,32726,3,1672319394),(123470,3,32727,3,1672319394),(123471,3,32728,3,1672319394),(123472,3,32729,3,1672319394),(123473,3,32730,3,1672319394),(123474,3,32731,3,1672319394),(123475,3,32732,3,1672319394),(123476,3,32733,3,1672319394),(123477,3,32734,3,1672319394),(123478,3,32735,3,1672319394),(123479,3,32736,3,1672319394),(123480,3,32737,3,1672319394),(123481,3,32738,3,1672319394),(123482,3,32739,3,1672319394),(123483,3,32740,3,1672319394),(123484,3,32741,3,1672319394),(123485,3,32742,3,1672319394),(123486,3,32743,3,1672319394),(123487,3,32744,3,1672319394),(123488,3,32745,3,1672319394),(123489,3,32746,3,1672319394),(123490,3,32747,3,1672319394),(123491,3,32748,3,1672319394),(123492,3,32749,3,1672319394),(123493,3,32750,3,1672319394),(123494,3,32751,3,1672319394),(123495,3,32752,3,1672319394),(123496,3,32753,3,1672319394),(123497,3,32754,3,1672319394),(123498,3,33028,3,1672319394),(123499,3,33029,3,1672319394),(123500,3,33030,3,1672319394),(123501,3,33031,3,1672319394),(123502,3,33032,3,1672319394),(123503,3,33033,3,1672319394),(123504,3,33034,3,1672319394),(123505,3,33035,3,1672319394),(123506,3,33036,3,1672319394),(123507,3,33037,3,1672319394),(123508,3,33038,3,1672319394),(123509,3,33039,3,1672319394),(123510,3,33040,3,1672319394),(123511,3,33041,3,1672319394),(123512,3,33042,3,1672319394),(123513,3,33043,3,1672319394),(123514,3,33044,3,1672319394),(123515,3,33045,3,1672319394),(123516,3,33046,3,1672319394),(123517,3,33047,3,1672319394),(123518,3,33048,3,1672319394),(123519,3,33049,3,1672319394),(123520,3,33050,3,1672319394),(123521,3,33051,3,1672319394),(123522,3,33052,3,1672319394),(123523,3,33053,3,1672319394),(123524,3,33054,3,1672319394),(123525,3,33055,3,1672319394),(123526,3,33056,3,1672319394),(123527,3,33057,3,1672319394),(123528,3,33058,3,1672319394),(123529,3,33059,3,1672319394),(123530,3,33060,3,1672319394),(123531,3,33061,3,1672319394),(123532,3,33062,3,1672319394),(123533,3,33063,3,1672319394),(123534,3,33064,3,1672319394),(123535,3,33065,3,1672319394),(123536,3,33066,3,1672319394),(123537,3,33067,3,1672319394),(123538,3,33068,3,1672319394),(123539,3,33069,3,1672319394),(123540,3,33070,3,1672319394),(123541,3,33071,3,1672319394),(123542,3,33072,3,1672319394),(123543,3,33073,3,1672319394),(123544,3,33074,3,1672319394),(123545,3,33075,3,1672319394),(123546,3,33076,3,1672319394),(123547,3,33077,3,1672319394),(123548,3,33078,3,1672319394),(123549,3,33079,3,1672319394),(123550,3,33080,3,1672319394),(123551,3,33081,3,1672319394),(123552,3,33082,3,1672319394),(123553,3,33083,3,1672319394),(123554,3,33084,3,1672319394),(123555,3,33085,3,1672319394),(123556,3,33086,3,1672319394),(123557,3,33087,3,1672319394),(123558,3,33088,3,1672319394),(123559,3,33089,3,1672319394),(123560,3,33090,3,1672319394),(123561,3,33091,3,1672319394),(123562,3,33092,3,1672319394),(123563,3,33093,3,1672319394),(123564,3,33094,3,1672319394),(123565,3,33181,3,1672319394),(123566,3,33389,3,1672319394),(123567,3,33390,3,1672319394),(123568,3,33944,3,1672319394),(123569,3,33945,3,1672319394),(123570,3,33946,3,1672319394),(123571,3,33947,3,1672319394),(123572,3,33948,3,1672319394),(123573,3,33949,3,1672319394),(123574,3,33950,3,1672319394),(123575,3,33951,3,1672319394),(123576,3,33952,3,1672319394),(123577,3,33953,3,1672319394),(123578,3,33954,3,1672319394),(123579,3,33955,3,1672319394),(123580,3,33956,3,1672319394),(123581,3,33957,3,1672319394),(123582,3,33985,3,1672319394),(123583,3,33986,3,1672319394),(123584,3,33987,3,1672319394),(123585,3,33988,3,1672319394),(123586,3,33989,3,1672319394),(123587,3,33990,3,1672319394),(123588,3,33991,3,1672319394),(123589,3,33992,3,1672319394),(123590,3,33993,3,1672319394),(123591,3,33994,3,1672319394),(123592,3,33995,3,1672319394),(123593,3,33996,3,1672319394),(123594,3,33997,3,1672319394),(123595,3,33998,3,1672319394),(123596,3,34026,3,1672319394),(123597,3,34027,3,1672319394),(123598,3,34028,3,1672319394),(123599,3,34029,3,1672319394),(123600,3,34030,3,1672319394),(123601,3,34031,3,1672319394),(123602,3,34032,3,1672319394),(123603,3,34033,3,1672319394),(123604,3,34034,3,1672319394),(123605,3,34035,3,1672319394),(123606,3,34036,3,1672319394),(123607,3,34037,3,1672319394),(123608,3,34038,3,1672319394),(123609,3,34039,3,1672319394),(123610,3,34067,3,1672319394),(123611,3,34068,3,1672319394),(123612,3,34069,3,1672319394),(123613,3,34070,3,1672319394),(123614,3,34071,3,1672319394),(123615,3,34072,3,1672319394),(123616,3,34073,3,1672319394),(123617,3,34074,3,1672319394),(123618,3,34075,3,1672319394),(123619,3,34076,3,1672319394),(123620,3,34077,3,1672319394),(123621,3,34078,3,1672319394),(123622,3,34079,3,1672319394),(123623,3,34080,3,1672319394),(123624,3,34108,3,1672319394),(123625,3,34109,3,1672319394),(123626,3,34110,3,1672319394),(123627,3,34111,3,1672319394),(123628,3,34112,3,1672319394),(123629,3,34113,3,1672319394),(123630,3,34114,3,1672319394),(123631,3,34115,3,1672319394),(123632,3,34116,3,1672319394),(123633,3,34117,3,1672319394),(123634,3,34118,3,1672319394),(123635,3,34119,3,1672319394),(123636,3,34120,3,1672319394),(123637,3,34121,3,1672319394),(123638,3,34180,3,1672319394),(123639,3,34181,3,1672319394),(123640,3,34182,3,1672319394),(123641,3,34183,3,1672319394),(123642,3,34185,3,1672319394),(123643,3,34186,3,1672319394),(123644,3,34187,3,1672319394),(123645,3,34188,3,1672319394),(123646,3,34189,3,1672319394),(123647,3,34190,3,1672319394),(123648,3,34191,3,1672319394),(123649,3,34192,3,1672319394),(123650,3,34193,3,1672319394),(123651,3,34194,3,1672319394),(123652,3,34195,3,1672319394),(123653,3,34196,3,1672319394),(123654,3,34200,3,1672319394),(123655,3,34201,3,1672319394),(123656,3,34202,3,1672319394),(123657,3,34203,3,1672319394),(123658,3,34204,3,1672319394),(123659,3,34205,3,1672319394),(123660,3,34206,3,1672319394),(123661,3,34451,3,1672319394),(123662,3,34452,3,1672319394),(123663,3,34453,3,1672319394),(123664,3,34454,3,1672319394),(123665,3,34455,3,1672319394),(123666,3,34456,3,1672319394),(123667,3,34457,3,1672319394),(123668,3,34458,3,1672319394),(123669,3,34459,3,1672319394),(123670,3,34460,3,1672319394),(123671,3,34461,3,1672319394),(123672,3,34462,3,1672319394),(123673,3,34463,3,1672319394),(123674,3,34464,3,1672319394),(123675,3,34465,3,1672319394),(123676,3,34466,3,1672319394),(123677,3,34467,3,1672319394),(123678,3,34468,3,1672319394),(123679,3,34469,3,1672319394),(123680,3,34470,3,1672319394),(123681,3,34471,3,1672319394),(123682,3,34472,3,1672319394),(123683,3,34473,3,1672319394),(123684,3,34474,3,1672319394),(123685,3,34475,3,1672319394),(123686,3,34499,3,1672319394),(123687,3,34500,3,1672319394),(123688,3,34501,3,1672319394),(123689,3,34502,3,1672319394),(123690,3,34503,3,1672319394),(123691,3,34504,3,1672319394),(123692,3,34505,3,1672319394),(123693,3,34506,3,1672319394),(123694,3,34507,3,1672319394),(123695,3,34508,3,1672319394),(123696,3,34509,3,1672319394),(123697,3,34510,3,1672319394),(123698,3,34511,3,1672319394),(123699,3,34512,3,1672319394),(123700,3,34513,3,1672319394),(123701,3,34514,3,1672319394),(123702,3,34515,3,1672319394),(123703,3,34516,3,1672319394),(123704,3,34517,3,1672319394),(123705,3,34518,3,1672319394),(123706,3,34519,3,1672319394),(123707,3,34520,3,1672319394),(123708,3,34521,3,1672319394),(123709,3,34522,3,1672319394),(123710,3,34523,3,1672319394),(123711,3,34547,3,1672319394),(123712,3,34548,3,1672319394),(123713,3,34549,3,1672319394),(123714,3,34550,3,1672319394),(123715,3,34551,3,1672319394),(123716,3,34552,3,1672319394),(123717,3,34553,3,1672319394),(123718,3,34554,3,1672319394),(123719,3,34555,3,1672319394),(123720,3,34556,3,1672319394),(123721,3,34557,3,1672319394),(123722,3,34558,3,1672319394),(123723,3,34559,3,1672319394),(123724,3,34560,3,1672319394),(123725,3,34561,3,1672319394),(123726,3,34562,3,1672319394),(123727,3,34563,3,1672319394),(123728,3,34564,3,1672319394),(123729,3,34565,3,1672319394),(123730,3,34566,3,1672319394),(123731,3,34567,3,1672319394),(123732,3,34568,3,1672319394),(123733,3,34569,3,1672319394),(123734,3,34570,3,1672319394),(123735,3,34571,3,1672319394),(123736,3,34595,3,1672319394),(123737,3,34596,3,1672319394),(123738,3,34597,3,1672319394),(123739,3,34598,3,1672319394),(123740,3,34599,3,1672319394),(123741,3,34600,3,1672319394),(123742,3,34601,3,1672319394),(123743,3,34602,3,1672319394),(123744,3,34603,3,1672319394),(123745,3,34604,3,1672319394),(123746,3,34605,3,1672319394),(123747,3,34606,3,1672319394),(123748,3,34607,3,1672319394),(123749,3,34608,3,1672319394),(123750,3,34609,3,1672319394),(123751,3,34610,3,1672319394),(123752,3,34611,3,1672319394),(123753,3,34612,3,1672319394),(123754,3,34613,3,1672319394),(123755,3,34614,3,1672319394),(123756,3,34615,3,1672319394),(123757,3,34616,3,1672319394),(123758,3,34617,3,1672319394),(123759,3,34618,3,1672319394),(123760,3,34619,3,1672319394),(123761,3,34643,3,1672319394),(123762,3,34644,3,1672319394),(123763,3,34645,3,1672319394),(123764,3,34646,3,1672319394),(123765,3,34647,3,1672319394),(123766,3,34648,3,1672319394),(123767,3,34649,3,1672319394),(123768,3,34650,3,1672319394),(123769,3,34651,3,1672319394),(123770,3,34652,3,1672319394),(123771,3,34653,3,1672319394),(123772,3,34654,3,1672319394),(123773,3,34655,3,1672319394),(123774,3,34656,3,1672319394),(123775,3,34657,3,1672319394),(123776,3,34658,3,1672319394),(123777,3,34659,3,1672319394),(123778,3,34660,3,1672319394),(123779,3,34661,3,1672319394),(123780,3,34662,3,1672319394),(123781,3,34663,3,1672319394),(123782,3,34664,3,1672319394),(123783,3,34665,3,1672319394),(123784,3,34666,3,1672319394),(123785,3,34667,3,1672319394),(123786,3,34739,3,1672319394),(123787,3,34740,3,1672319394),(123788,3,34741,3,1672319394),(123789,3,34742,3,1672319394),(123790,3,34743,3,1672319394),(123791,3,34744,3,1672319394),(123792,3,34745,3,1672319394),(123793,3,34746,3,1672319394),(123794,3,34747,3,1672319394),(123795,3,34748,3,1672319394),(123796,3,34749,3,1672319394),(123797,3,34750,3,1672319394),(123798,3,34751,3,1672319394),(123799,3,34752,3,1672319394),(123800,3,34753,3,1672319394),(123801,3,34754,3,1672319394),(123802,3,34755,3,1672319394),(123803,3,34756,3,1672319394),(123804,3,34757,3,1672319394),(123805,3,34758,3,1672319394),(123806,3,34759,3,1672319394),(123807,3,34760,3,1672319394),(123808,3,34761,3,1672319394),(123809,3,34762,3,1672319394),(123810,3,34763,3,1672319394),(123811,3,34787,3,1672319394),(123812,3,34788,3,1672319394),(123813,3,34793,3,1672319394),(123814,3,34794,3,1672319394),(123815,3,34795,3,1672319394),(123816,3,34796,3,1672319394),(123817,3,34797,3,1672319394),(123818,3,34798,3,1672319394),(123819,3,34799,3,1672319394),(123820,3,34800,3,1672319394),(123821,3,34801,3,1672319394),(123822,3,34802,3,1672319394),(123823,3,34803,3,1672319394),(123824,3,34804,3,1672319394),(123825,3,34805,3,1672319394),(123826,3,34806,3,1672319394),(123827,3,34807,3,1672319394),(123828,3,34808,3,1672319394),(123829,3,34809,3,1672319394),(123830,3,34810,3,1672319394),(123831,3,34811,3,1672319394),(123832,3,34812,3,1672319394),(123833,3,34813,3,1672319394),(123834,3,34814,3,1672319394),(123835,3,34815,3,1672319394),(123836,3,34816,3,1672319394),(123837,3,34817,3,1672319394),(123838,3,34841,3,1672319394),(123839,3,34842,3,1672319394),(123840,3,34843,3,1672319394),(123841,3,34844,3,1672319394),(123842,3,34845,3,1672319394),(123843,3,34846,3,1672319394),(123844,3,34847,3,1672319394),(123845,3,34848,3,1672319394),(123846,3,34849,3,1672319394),(123847,3,34850,3,1672319394),(123848,3,34851,3,1672319394),(123849,3,34852,3,1672319394),(123850,3,34853,3,1672319394),(123851,3,34854,3,1672319394),(123852,3,34855,3,1672319394),(123853,3,34856,3,1672319394),(123854,3,34857,3,1672319394),(123855,3,34858,3,1672319394),(123856,3,34859,3,1672319394),(123857,3,34860,3,1672319394),(123858,3,34861,3,1672319394),(123859,3,34862,3,1672319394),(123860,3,34863,3,1672319394),(123861,3,34864,3,1672319394),(123862,3,34865,3,1672319394),(123863,3,34889,3,1672319394),(123864,3,34890,3,1672319394),(123865,3,34891,3,1672319394),(123866,3,34892,3,1672319394),(123867,3,34893,3,1672319394),(123868,3,34894,3,1672319394),(123869,3,34895,3,1672319394),(123870,3,34896,3,1672319394),(123871,3,34897,3,1672319394),(123872,3,34898,3,1672319394),(123873,3,34899,3,1672319394),(123874,3,34900,3,1672319394),(123875,3,34901,3,1672319394),(123876,3,34902,3,1672319394),(123877,3,34903,3,1672319394),(123878,3,34904,3,1672319394),(123879,3,34905,3,1672319394),(123880,3,34906,3,1672319394),(123881,3,34907,3,1672319394),(123882,3,34908,3,1672319394),(123883,3,34909,3,1672319394),(123884,3,34910,3,1672319394),(123885,3,34911,3,1672319394),(123886,3,34912,3,1672319394),(123887,3,34913,3,1672319394),(123888,3,35016,3,1672319394),(123889,3,35017,3,1672319394),(123890,3,35018,3,1672319394),(123891,3,35019,3,1672319394),(123892,3,35020,3,1672319394),(123893,3,35021,3,1672319394),(123894,3,35022,3,1672319394),(123895,3,35023,3,1672319394),(123896,3,35024,3,1672319394),(123897,3,35025,3,1672319394),(123898,3,35026,3,1672319394),(123899,3,35027,3,1672319394),(123900,3,35028,3,1672319394),(123901,3,35029,3,1672319394),(123902,3,35030,3,1672319394),(123903,3,35031,3,1672319394),(123904,3,35032,3,1672319394),(123905,3,35033,3,1672319394),(123906,3,35034,3,1672319394),(123907,3,35035,3,1672319394),(123908,3,35036,3,1672319394),(123909,3,35037,3,1672319394),(123910,3,35038,3,1672319394),(123911,3,35039,3,1672319394),(123912,3,35040,3,1672319394),(123913,3,35358,3,1672319394),(123914,3,35359,3,1672319394),(123915,3,35360,3,1672319394),(123916,3,35361,3,1672319394),(123917,3,35362,3,1672319394),(123918,3,35363,3,1672319394),(123919,3,36769,3,1672319394),(123920,3,36770,3,1672319394),(123921,3,36771,3,1672319394),(123922,3,40478,3,1672319394),(123923,3,40479,3,1672319394),(123924,3,40480,3,1672319394),(123925,3,40481,3,1672319394),(123926,3,40482,3,1672319394),(123927,3,40483,3,1672319394),(123928,3,40484,3,1672319394),(123929,3,40485,3,1672319394),(123930,3,40486,3,1672319394),(123931,3,40487,3,1672319394),(123932,3,40488,3,1672319394),(123933,3,40501,3,1672319394),(123934,3,40502,3,1672319394),(123935,3,40503,3,1672319394),(123936,3,40504,3,1672319394),(123937,3,40505,3,1672319394),(123938,3,40506,3,1672319394),(123939,3,40507,3,1672319394),(123940,3,40508,3,1672319394),(123941,3,40509,3,1672319394),(123942,3,40510,3,1672319394),(123943,3,40511,3,1672319394),(123944,3,40512,3,1672319394),(123945,3,40533,3,1672319394),(123946,3,40534,3,1672319394),(123947,3,40535,3,1672319394),(123948,3,40536,3,1672319394),(123949,3,40537,3,1672319394),(123950,3,40538,3,1672319394),(123951,3,40539,3,1672319394),(123952,3,40540,3,1672319394),(123953,3,40541,3,1672319394),(123954,3,40542,3,1672319394),(123955,3,40543,3,1672319394),(123956,3,40554,3,1672319394),(123957,3,40555,3,1672319394),(123958,3,40556,3,1672319394),(123959,3,40557,3,1672319394),(123960,3,40558,3,1672319394),(123961,3,40559,3,1672319394),(123962,3,40560,3,1672319394),(123963,3,40561,3,1672319394),(123964,3,40562,3,1672319394),(123965,3,40563,3,1672319394),(123966,3,40564,3,1672319394),(123967,3,40565,3,1672319394),(123968,3,40566,3,1672319394),(123969,3,40567,3,1672319394),(123970,3,40568,3,1672319394),(123971,3,40569,3,1672319394),(123972,3,40570,3,1672319394),(123973,3,40571,3,1672319394),(123974,3,40572,3,1672319394),(123975,3,40573,3,1672319394),(123976,3,40574,3,1672319394),(123977,3,40575,3,1672319394),(123978,3,40576,3,1672319394),(123979,3,40577,3,1672319394),(123980,3,40578,3,1672319394),(123981,3,40579,3,1672319394),(123982,3,40615,3,1672319394),(123983,3,40616,3,1672319394),(123984,3,40617,3,1672319394),(123985,3,40618,3,1672319394),(123986,3,40619,3,1672319394),(123987,3,40620,3,1672319394),(123988,3,40621,3,1672319394),(123989,3,40622,3,1672319394),(123990,3,40623,3,1672319394),(123991,3,40624,3,1672319394),(123992,3,40625,3,1672319394),(123993,3,40626,3,1672319394),(123994,3,40627,3,1672319394),(123995,3,40628,3,1672319394),(123996,3,42175,3,1672319394),(123997,3,42176,3,1672319394),(123998,3,42177,3,1672319394),(123999,3,42178,3,1672319394),(124000,3,43497,3,1672319394),(124001,3,43498,3,1672319394),(124002,3,43499,3,1672319394),(124003,3,43500,3,1672319394),(124004,3,43501,3,1672319394),(124005,3,43502,3,1672319394),(124006,3,43503,3,1672319394),(124007,3,43504,3,1672319394),(124008,3,43505,3,1672319394),(124009,3,43506,3,1672319394),(124010,3,43507,3,1672319394),(124011,3,43508,3,1672319394),(124012,3,43509,3,1672319394),(124013,3,43510,3,1672319394),(124014,3,43511,3,1672319394),(124015,3,43512,3,1672319394),(124016,3,43513,3,1672319394),(124017,3,43514,3,1672319394),(124018,3,43515,3,1672319394),(124019,3,43516,3,1672319394),(124020,3,43517,3,1672319394),(124021,3,43518,3,1672319394),(124022,3,43519,3,1672319394),(124023,3,43520,3,1672319394),(124024,3,43521,3,1672319394),(124025,3,43522,3,1672319394),(124026,3,43523,3,1672319394),(124027,3,43524,3,1672319394),(124028,3,43525,3,1672319394),(124029,3,43592,3,1672319394),(124030,3,43593,3,1672319394),(124031,3,43594,3,1672319394),(124032,3,43595,3,1672319394),(124033,3,43596,3,1672319394),(124034,3,43597,3,1672319394),(124035,3,43598,3,1672319394),(124036,3,43599,3,1672319394),(124037,3,43600,3,1672319394),(124038,3,43601,3,1672319394),(124039,3,43602,3,1672319394),(124040,3,43603,3,1672319394),(124041,3,43604,3,1672319394),(124042,3,43605,3,1672319394),(124043,3,43606,3,1672319394),(124044,3,43607,3,1672319394),(124045,3,43608,3,1672319394),(124046,3,43609,3,1672319394),(124047,3,43610,3,1672319394),(124048,3,43611,3,1672319394),(124049,3,43612,3,1672319394),(124050,3,43613,3,1672319394),(124051,3,43614,3,1672319394),(124052,3,43615,3,1672319394),(124053,3,43616,3,1672319394),(124054,3,43617,3,1672319394),(124055,3,43618,3,1672319394),(124056,3,43619,3,1672319394),(124057,3,43620,3,1672319394),(124058,3,43621,3,1672319394),(124059,3,43622,3,1672319394),(124060,3,43623,3,1672319394),(124061,3,43624,3,1672319394),(124062,3,43625,3,1672319394),(124063,3,43626,3,1672319394),(124064,3,43627,3,1672319394),(124065,3,43628,3,1672319394),(124066,3,43629,3,1672319394),(124067,3,43630,3,1672319394),(124068,3,43631,3,1672319394),(124069,3,43632,3,1672319394),(124070,3,43633,3,1672319394),(124071,3,43634,3,1672319394),(124072,3,43635,3,1672319394),(124073,3,43636,3,1672319394),(124074,3,43637,3,1672319394),(124075,3,43638,3,1672319394),(124076,3,43639,3,1672319394),(124077,3,43640,3,1672319394),(124078,3,43641,3,1672319394),(124079,3,43684,3,1672319394),(124080,3,43685,3,1672319394),(124081,3,43686,3,1672319394),(124082,3,43687,3,1672319394),(124083,3,43688,3,1672319394),(124084,3,43689,3,1672319394),(124085,3,43690,3,1672319394),(124086,3,43691,3,1672319394),(124087,3,43692,3,1672319394),(124088,3,43693,3,1672319394),(124089,3,43694,3,1672319394),(124090,3,43695,3,1672319394),(124091,3,43696,3,1672319394),(124092,3,43697,3,1672319394),(124093,3,43698,3,1672319394),(124094,3,43699,3,1672319394),(124095,3,43700,3,1672319394),(124096,3,43701,3,1672319394),(124097,3,43702,3,1672319394),(124098,3,43703,3,1672319394),(124099,3,43704,3,1672319394),(124100,3,43705,3,1672319394),(124101,3,43706,3,1672319394),(124102,3,43707,3,1672319394),(124103,3,43708,3,1672319394),(124104,3,43709,3,1672319394),(124105,3,43710,3,1672319394),(124106,3,43714,3,1672319394),(124107,3,43715,3,1672319394),(124108,3,43716,3,1672319394),(124109,3,43717,3,1672319394),(124110,3,43718,3,1672319394),(124111,3,43719,3,1672319394),(124112,3,43720,3,1672319394),(124113,3,43721,3,1672319394),(124114,3,43722,3,1672319394),(124115,3,43723,3,1672319394),(124116,3,43724,3,1672319394),(124117,3,43725,3,1672319394),(124118,3,43726,3,1672319394),(124119,3,43727,3,1672319394),(124120,3,43728,3,1672319394),(124121,3,43729,3,1672319394),(124122,3,43730,3,1672319394),(124123,3,43731,3,1672319394),(124124,3,43732,3,1672319394),(124125,3,43733,3,1672319394),(124126,3,43734,3,1672319394),(124127,3,43735,3,1672319394),(124128,3,43736,3,1672319394),(124129,3,43737,3,1672319394),(124130,3,43738,3,1672319394),(124131,3,43739,3,1672319394),(124132,3,43740,3,1672319394),(124133,3,43741,3,1672319394),(124134,3,43742,3,1672319394),(124135,3,43743,3,1672319394),(124136,3,43744,3,1672319394),(124137,3,43745,3,1672319394),(124138,3,43746,3,1672319394),(124139,3,43747,3,1672319394),(124140,3,43748,3,1672319394),(124141,3,43749,3,1672319394),(124142,3,43750,3,1672319394),(124143,3,43751,3,1672319394),(124144,3,43752,3,1672319394),(124145,3,43753,3,1672319394),(124146,3,43754,3,1672319394),(124147,3,43755,3,1672319394),(124148,3,43756,3,1672319394),(124149,3,43757,3,1672319394),(124150,3,43758,3,1672319394),(124151,3,43759,3,1672319394),(124152,3,43760,3,1672319394),(124153,3,43761,3,1672319394),(124154,3,43762,3,1672319394),(124155,3,43763,3,1672319394),(124156,3,43764,3,1672319394),(124157,3,43765,3,1672319394),(124158,3,43766,3,1672319394),(124159,3,43767,3,1672319394),(124160,3,43770,3,1672319394),(124161,3,43771,3,1672319394),(124162,3,43772,3,1672319394),(124163,3,43773,3,1672319394),(124164,3,43774,3,1672319394),(124165,3,43775,3,1672319394),(124166,3,43776,3,1672319394),(124167,3,43777,3,1672319394),(124168,3,43778,3,1672319394),(124169,3,43779,3,1672319394),(124170,3,43781,3,1672319394),(124171,3,43876,3,1672319394),(124172,3,43877,3,1672319394),(124173,3,43878,3,1672319394),(124174,3,43879,3,1672319394),(124175,3,43880,3,1672319394),(124176,3,43881,3,1672319394),(124177,3,43882,3,1672319394),(124178,3,43883,3,1672319394),(124179,3,43884,3,1672319394),(124180,3,43885,3,1672319394),(124181,3,43886,3,1672319394),(124182,3,44161,3,1672319394),(124183,3,44162,3,1672319394),(124184,3,44163,3,1672319394),(124185,3,44164,3,1672319394),(124186,3,44165,3,1672319394),(124187,3,44166,3,1672319394),(124188,3,44167,3,1672319394),(124189,3,44168,3,1672319394),(124190,3,44169,3,1672319394),(124191,3,44170,3,1672319394),(124192,3,44171,3,1672319394),(124193,3,44172,3,1672319394),(124194,3,44173,3,1672319394),(124195,3,44174,3,1672319394),(124196,3,44175,3,1672319394),(124197,3,44176,3,1672319394),(124198,3,44177,3,1672319394),(124199,3,44178,3,1672319394),(124200,3,44179,3,1672319394),(124201,3,44180,3,1672319394),(124202,3,44181,3,1672319394),(124203,3,44182,3,1672319394),(124204,3,44183,3,1672319394),(124205,3,44184,3,1672319394),(124206,3,44185,3,1672319394),(124207,3,44186,3,1672319394),(124208,3,44187,3,1672319394),(124209,3,44188,3,1672319394),(124210,3,44189,3,1672319394),(124211,3,44190,3,1672319394),(124212,3,44191,3,1672319394),(124213,3,44192,3,1672319394),(124214,3,44193,3,1672319394),(124215,3,44194,3,1672319394),(124216,3,44195,3,1672319394),(124217,3,44196,3,1672319394),(124218,3,44197,3,1672319394),(124219,3,44198,3,1672319394),(124220,3,44199,3,1672319394),(124221,3,44248,3,1672319394),(124222,3,44249,3,1672319394),(124223,3,44250,3,1672319394),(124224,3,44251,3,1672319394),(124225,3,44252,3,1672319394),(124226,3,44253,3,1672319394),(124227,3,44254,3,1672319394),(124228,3,44255,3,1672319394),(124229,3,44256,3,1672319394),(124230,3,44257,3,1672319394),(124231,3,44258,3,1672319394),(124232,3,44259,3,1672319394),(124233,3,44260,3,1672319394),(124234,3,44261,3,1672319394),(124235,3,44262,3,1672319394),(124236,3,44263,3,1672319394),(124237,3,44264,3,1672319394),(124238,3,44265,3,1672319394),(124239,3,44266,3,1672319394),(124240,3,44267,3,1672319394),(124241,3,44268,3,1672319394),(124242,3,44269,3,1672319394),(124243,3,44270,3,1672319394),(124244,3,44271,3,1672319394),(124245,3,44272,3,1672319394),(124246,3,44273,3,1672319394),(124247,3,44274,3,1672319394),(124248,3,44275,3,1672319394),(124249,3,44276,3,1672319394),(124250,3,44277,3,1672319394),(124251,3,44278,3,1672319394),(124252,3,44279,3,1672319394),(124253,3,44280,3,1672319394),(124254,3,44281,3,1672319394),(124255,3,44282,3,1672319394),(124256,3,44283,3,1672319394),(124257,3,44284,3,1672319394),(124258,3,44285,3,1672319394),(124259,3,44286,3,1672319394),(124260,3,44287,3,1672319394),(124261,3,44288,3,1672319394),(124262,3,44289,3,1672319394),(124263,3,44290,3,1672319394),(124264,3,44291,3,1672319394),(124265,3,44292,3,1672319394),(124266,3,44335,3,1672319394),(124267,3,44427,3,1672319394),(124268,1,10076,3,1672319394),(124269,1,10207,3,1672319394),(124270,1,10208,3,1672319394),(124271,1,10209,3,1672319394),(124272,1,10210,3,1672319394),(124273,1,10211,3,1672319394),(124274,1,10212,3,1672319394),(124275,1,10213,3,1672319394),(124276,1,10216,3,1672319394),(124277,1,10217,3,1672319394),(124278,1,10218,3,1672319394),(124279,1,10252,3,1672319394),(124280,1,10254,3,1672319394),(124281,1,10260,3,1672319394),(124282,1,10264,3,1672319394),(124283,1,10265,3,1672319394),(124284,1,10321,3,1672319394),(124285,1,10336,3,1672319394),(124286,1,10353,3,1672319394),(124287,1,10358,3,1672319394),(124288,1,10359,3,1672319394),(124289,1,10364,3,1672319394),(124290,1,10370,3,1672319394),(124291,1,10390,3,1672319394),(124292,1,10391,3,1672319394),(124293,1,10392,3,1672319394),(124294,1,10393,3,1672319394),(124295,1,10394,3,1672319394),(124296,1,10395,3,1672319394),(124297,1,10400,3,1672319394),(124298,1,10401,3,1672319394),(124299,1,10402,3,1672319394),(124300,1,10403,3,1672319394),(124301,1,10404,3,1672319394),(124302,1,10406,3,1672319394),(124303,1,10407,3,1672319394),(124304,1,10408,3,1672319394),(124305,1,10409,3,1672319394),(124306,1,10412,3,1672319394),(124307,1,10418,3,1672319394),(124308,1,10527,3,1672319394),(124309,1,10529,3,1672319394),(124310,1,10530,3,1672319394),(124311,1,10531,3,1672319394),(124312,1,10532,3,1672319394),(124313,1,10535,3,1672319394),(124314,1,10539,3,1672319394),(124315,1,10540,3,1672319394),(124316,1,10543,3,1672319394),(124317,1,10544,3,1672319394),(124318,3,22908,2,1672319399),(124319,3,22909,2,1672319399),(124320,3,22910,2,1672319399),(124321,3,22911,2,1672319399),(124322,3,22912,2,1672319399),(124323,3,22985,2,1672319399),(124324,3,22986,2,1672319399),(124325,3,22988,2,1672319399),(124326,3,22989,2,1672319399),(124327,3,22990,2,1672319399),(124328,3,22991,2,1672319399),(124329,3,22992,2,1672319399),(124330,3,23073,2,1672319399),(124331,3,23074,2,1672319399),(124332,3,27032,2,1672319399),(124333,3,27478,2,1672319399),(124334,3,27479,2,1672319399),(124335,3,27480,2,1672319399),(124336,3,27481,2,1672319399),(124337,3,27482,2,1672319399),(124338,3,27483,2,1672319399),(124339,3,27484,2,1672319399),(124340,3,27485,2,1672319399),(124341,3,27517,2,1672319399),(124342,3,27518,2,1672319399),(124343,3,27519,2,1672319399),(124344,3,27553,2,1672319399),(124345,3,27554,2,1672319399),(124346,3,27555,2,1672319399),(124347,3,27591,2,1672319399),(124348,3,27593,2,1672319399),(124349,3,27594,2,1672319399),(124350,3,27595,2,1672319399),(124351,3,27671,2,1672319399),(124352,3,27672,2,1672319399),(124353,3,27673,2,1672319399),(124354,3,27674,2,1672319399),(124355,3,27675,2,1672319399),(124356,3,27676,2,1672319399),(124357,3,27677,2,1672319399),(124358,3,27678,2,1672319399),(124359,3,27679,2,1672319399),(124360,3,28354,2,1672319399),(124361,3,28355,2,1672319399),(124362,3,28356,2,1672319399),(124363,3,28357,2,1672319399),(124364,3,28358,2,1672319399),(124365,3,28359,2,1672319399),(124366,3,28360,2,1672319399),(124367,3,28361,2,1672319399),(124368,3,28362,2,1672319399),(124369,3,28363,2,1672319399),(124370,3,28364,2,1672319399),(124371,3,28365,2,1672319399),(124372,3,28366,2,1672319399),(124373,3,28367,2,1672319399),(124374,3,28368,2,1672319399),(124375,3,28369,2,1672319399),(124376,3,28370,2,1672319399),(124377,3,28371,2,1672319399),(124378,3,28372,2,1672319399),(124379,3,28373,2,1672319399),(124380,3,28374,2,1672319399),(124381,3,28375,2,1672319399),(124382,3,28376,2,1672319399),(124383,3,30066,2,1672319399),(124384,3,30067,2,1672319399),(124385,3,30068,2,1672319399),(124386,3,30069,2,1672319399),(124387,3,30070,2,1672319399),(124388,3,30071,2,1672319399),(124389,3,30072,2,1672319399),(124390,3,30073,2,1672319399),(124391,3,30074,2,1672319399),(124392,3,30075,2,1672319399),(124393,3,30076,2,1672319399),(124394,3,30077,2,1672319399),(124395,3,30078,2,1672319399),(124396,3,30079,2,1672319399),(124397,3,30080,2,1672319399),(124398,3,30081,2,1672319399),(124399,3,30082,2,1672319399),(124400,3,30083,2,1672319399),(124401,3,30084,2,1672319399),(124402,3,30085,2,1672319399),(124403,3,30105,2,1672319399),(124404,3,30107,2,1672319399),(124405,3,30108,2,1672319399),(124406,3,30110,2,1672319399),(124407,3,30111,2,1672319399),(124408,3,30112,2,1672319399),(124409,3,30157,2,1672319399),(124410,3,30158,2,1672319399),(124411,3,30159,2,1672319399),(124412,3,30160,2,1672319399),(124413,3,30161,2,1672319399),(124414,3,30162,2,1672319399),(124415,3,30196,2,1672319399),(124416,3,30197,2,1672319399),(124417,3,30198,2,1672319399),(124418,3,30199,2,1672319399),(124419,3,30200,2,1672319399),(124420,3,30201,2,1672319399),(124421,3,30202,2,1672319399),(124422,3,30203,2,1672319399),(124423,3,30204,2,1672319399),(124424,3,30205,2,1672319399),(124425,3,30206,2,1672319399),(124426,3,30207,2,1672319399),(124427,3,30208,2,1672319399),(124428,3,30209,2,1672319399),(124429,3,30210,2,1672319399),(124430,3,30211,2,1672319399),(124431,3,30212,2,1672319399),(124432,3,30213,2,1672319399),(124433,3,30214,2,1672319399),(124434,3,30215,2,1672319399),(124435,3,30216,2,1672319399),(124436,3,30217,2,1672319399),(124437,3,30218,2,1672319399),(124438,3,30219,2,1672319399),(124439,3,30220,2,1672319399),(124440,3,30221,2,1672319399),(124441,3,30222,2,1672319399),(124442,3,30223,2,1672319399),(124443,3,30224,2,1672319399),(124444,3,30225,2,1672319399),(124445,3,30226,2,1672319399),(124446,3,30227,2,1672319399),(124447,3,30228,2,1672319399),(124448,3,30229,2,1672319399),(124449,3,30239,2,1672319399),(124450,3,30240,2,1672319399),(124451,3,30241,2,1672319399),(124452,3,30242,2,1672319399),(124453,3,30243,2,1672319399),(124454,3,30244,2,1672319399),(124455,3,30245,2,1672319399),(124456,3,30246,2,1672319399),(124457,3,30247,2,1672319399),(124458,3,30248,2,1672319399),(124459,3,30249,2,1672319399),(124460,3,30250,2,1672319399),(124461,3,30251,2,1672319399),(124462,3,30252,2,1672319399),(124463,3,30253,2,1672319399),(124464,3,30254,2,1672319399),(124465,3,30255,2,1672319399),(124466,3,30256,2,1672319399),(124467,3,30257,2,1672319399),(124468,3,30258,2,1672319399),(124469,3,30259,2,1672319399),(124470,3,30260,2,1672319399),(124471,3,30261,2,1672319399),(124472,3,30262,2,1672319399),(124473,3,30263,2,1672319399),(124474,3,30264,2,1672319399),(124475,3,30265,2,1672319399),(124476,3,30266,2,1672319399),(124477,3,30267,2,1672319399),(124478,3,30268,2,1672319399),(124479,3,30269,2,1672319399),(124480,3,30270,2,1672319399),(124481,3,30271,2,1672319399),(124482,3,30272,2,1672319399),(124483,3,30573,2,1672319399),(124484,3,30574,2,1672319399),(124485,3,30575,2,1672319399),(124486,3,30576,2,1672319399),(124487,3,30577,2,1672319399),(124488,3,30578,2,1672319399),(124489,3,30579,2,1672319399),(124490,3,30580,2,1672319399),(124491,3,30581,2,1672319399),(124492,3,30582,2,1672319399),(124493,3,30583,2,1672319399),(124494,3,30584,2,1672319399),(124495,3,30585,2,1672319399),(124496,3,30586,2,1672319399),(124497,3,30587,2,1672319399),(124498,3,30588,2,1672319399),(124499,3,30589,2,1672319399),(124500,3,30590,2,1672319399),(124501,3,30591,2,1672319399),(124502,3,30592,2,1672319399),(124503,3,30593,2,1672319399),(124504,3,30594,2,1672319399),(124505,3,30595,2,1672319399),(124506,3,30596,2,1672319399),(124507,3,30597,2,1672319399),(124508,3,30598,2,1672319399),(124509,3,30599,2,1672319399),(124510,3,30600,2,1672319399),(124511,3,30601,2,1672319399),(124512,3,30602,2,1672319399),(124513,3,30603,2,1672319399),(124514,3,30604,2,1672319399),(124515,3,30605,2,1672319399),(124516,3,30606,2,1672319399),(124517,3,30607,2,1672319399),(124518,3,30608,2,1672319399),(124519,3,30609,2,1672319399),(124520,3,30610,2,1672319399),(124521,3,30714,2,1672319399),(124522,3,30715,2,1672319399),(124523,3,30716,2,1672319399),(124524,3,30717,2,1672319399),(124525,3,30718,2,1672319399),(124526,3,30719,2,1672319399),(124527,3,30720,2,1672319399),(124528,3,30721,2,1672319399),(124529,3,30722,2,1672319399),(124530,3,30723,2,1672319399),(124531,3,30724,2,1672319399),(124532,3,30725,2,1672319399),(124533,3,30726,2,1672319399),(124534,3,30727,2,1672319399),(124535,3,30728,2,1672319399),(124536,3,30729,2,1672319399),(124537,3,30730,2,1672319399),(124538,3,30731,2,1672319399),(124539,3,30732,2,1672319399),(124540,3,30733,2,1672319399),(124541,3,30734,2,1672319399),(124542,3,30735,2,1672319399),(124543,3,30736,2,1672319399),(124544,3,30737,2,1672319399),(124545,3,30738,2,1672319399),(124546,3,30739,2,1672319399),(124547,3,30740,2,1672319399),(124548,3,30741,2,1672319399),(124549,3,30742,2,1672319399),(124550,3,30743,2,1672319399),(124551,3,30744,2,1672319399),(124552,3,30745,2,1672319399),(124553,3,30746,2,1672319399),(124554,3,30747,2,1672319399),(124555,3,30748,2,1672319399),(124556,3,30749,2,1672319399),(124557,3,30750,2,1672319399),(124558,3,30751,2,1672319399),(124559,3,30752,2,1672319399),(124560,3,30753,2,1672319399),(124561,3,30754,2,1672319399),(124562,3,30755,2,1672319399),(124563,3,30756,2,1672319399),(124564,3,30757,2,1672319399),(124565,3,30758,2,1672319399),(124566,3,30877,2,1672319399),(124567,3,30878,2,1672319399),(124568,3,30879,2,1672319399),(124569,3,30880,2,1672319399),(124570,3,30881,2,1672319399),(124571,3,30882,2,1672319399),(124572,3,30883,2,1672319399),(124573,3,30884,2,1672319399),(124574,3,30885,2,1672319399),(124575,3,30886,2,1672319399),(124576,3,30887,2,1672319399),(124577,3,30888,2,1672319399),(124578,3,30889,2,1672319399),(124579,3,30890,2,1672319399),(124580,3,30891,2,1672319399),(124581,3,30892,2,1672319399),(124582,3,30893,2,1672319399),(124583,3,30894,2,1672319399),(124584,3,30895,2,1672319399),(124585,3,30963,2,1672319399),(124586,3,30964,2,1672319399),(124587,3,30965,2,1672319399),(124588,3,30966,2,1672319399),(124589,3,30967,2,1672319399),(124590,3,32621,2,1672319399),(124591,3,32622,2,1672319399),(124592,3,32623,2,1672319399),(124593,3,32624,2,1672319399),(124594,3,32625,2,1672319399),(124595,3,32626,2,1672319399),(124596,3,32627,2,1672319399),(124597,3,32628,2,1672319399),(124598,3,32629,2,1672319399),(124599,3,32630,2,1672319399),(124600,3,32631,2,1672319399),(124601,3,32632,2,1672319399),(124602,3,32633,2,1672319399),(124603,3,32670,2,1672319399),(124604,3,32671,2,1672319399),(124605,3,32672,2,1672319399),(124606,3,32673,2,1672319399),(124607,3,32674,2,1672319399),(124608,3,32675,2,1672319399),(124609,3,32676,2,1672319399),(124610,3,32677,2,1672319399),(124611,3,32678,2,1672319399),(124612,3,32679,2,1672319399),(124613,3,32680,2,1672319399),(124614,3,32681,2,1672319399),(124615,3,32682,2,1672319399),(124616,3,32683,2,1672319399),(124617,3,32684,2,1672319399),(124618,3,32685,2,1672319399),(124619,3,32686,2,1672319399),(124620,3,32687,2,1672319399),(124621,3,32688,2,1672319399),(124622,3,32689,2,1672319399),(124623,3,32690,2,1672319399),(124624,3,32691,2,1672319399),(124625,3,32692,2,1672319399),(124626,3,32871,2,1672319399),(124627,3,32872,2,1672319399),(124628,3,32873,2,1672319399),(124629,3,32874,2,1672319399),(124630,3,32875,2,1672319399),(124631,3,32876,2,1672319399),(124632,3,32877,2,1672319399),(124633,3,32878,2,1672319399),(124634,3,32879,2,1672319399),(124635,3,32880,2,1672319399),(124636,3,32881,2,1672319399),(124637,3,32882,2,1672319399),(124638,3,32883,2,1672319399),(124639,3,32884,2,1672319399),(124640,3,32885,2,1672319399),(124641,3,32886,2,1672319399),(124642,3,32887,2,1672319399),(124643,3,32888,2,1672319399),(124644,3,32889,2,1672319399),(124645,3,33522,2,1672319399),(124646,3,33523,2,1672319399),(124647,3,33524,2,1672319399),(124648,3,33525,2,1672319399),(124649,3,33526,2,1672319399),(124650,3,33527,2,1672319399),(124651,3,33528,2,1672319399),(124652,3,33529,2,1672319399),(124653,3,33530,2,1672319399),(124654,3,33531,2,1672319399),(124655,3,33532,2,1672319399),(124656,3,33533,2,1672319399),(124657,3,33534,2,1672319399),(124658,3,33535,2,1672319399),(124659,3,33536,2,1672319399),(124660,3,33537,2,1672319399),(124661,3,33538,2,1672319399),(124662,3,33539,2,1672319399),(124663,3,33540,2,1672319399),(124664,3,33541,2,1672319399),(124665,3,35104,2,1672319399),(124666,3,35105,2,1672319399),(124667,3,35106,2,1672319399),(124668,3,35107,2,1672319399),(124669,3,35108,2,1672319399),(124670,3,35109,2,1672319399),(124671,3,35110,2,1672319399),(124672,3,35111,2,1672319399),(124673,3,35112,2,1672319399),(124674,3,35113,2,1672319399),(124675,3,35114,2,1672319399),(124676,3,35115,2,1672319399),(124677,3,35116,2,1672319399),(124678,3,35117,2,1672319399),(124679,3,35118,2,1672319399),(124680,3,35119,2,1672319399),(124681,3,35120,2,1672319399),(124682,3,35121,2,1672319399),(124683,3,35122,2,1672319399),(124684,3,35123,2,1672319399),(124685,3,35124,2,1672319399),(124686,3,35125,2,1672319399),(124687,3,35126,2,1672319399),(124688,3,35127,2,1672319399),(124689,3,35129,2,1672319399),(124690,3,35130,2,1672319399),(124691,3,35131,2,1672319399),(124692,3,35132,2,1672319399),(124693,3,35133,2,1672319399),(124694,3,35134,2,1672319399),(124695,3,35135,2,1672319399),(124696,3,35136,2,1672319399),(124697,3,35137,2,1672319399),(124698,3,35138,2,1672319399),(124699,3,35139,2,1672319399),(124700,3,35140,2,1672319399),(124701,3,35141,2,1672319399),(124702,3,35142,2,1672319399),(124703,3,35143,2,1672319399),(124704,3,35144,2,1672319399),(124705,3,35145,2,1672319399),(124706,3,35146,2,1672319399),(124707,3,35147,2,1672319399),(124708,3,35148,2,1672319399),(124709,3,35149,2,1672319399),(124710,3,35150,2,1672319399),(124711,3,35151,2,1672319399),(124712,3,35152,2,1672319399),(124713,3,35290,2,1672319399),(124714,3,35291,2,1672319399),(124715,3,35292,2,1672319399),(124716,3,35293,2,1672319399),(124717,3,35294,2,1672319399),(124718,3,35295,2,1672319399),(124719,3,35296,2,1672319399),(124720,3,35297,2,1672319399),(124721,3,35298,2,1672319399),(124722,3,35299,2,1672319399),(124723,3,35300,2,1672319399),(124724,3,35301,2,1672319399),(124725,3,35302,2,1672319399),(124726,3,35303,2,1672319399),(124727,3,35304,2,1672319399),(124728,3,35305,2,1672319399),(124729,3,35306,2,1672319399),(124730,3,35307,2,1672319399),(124731,3,35308,2,1672319399),(124732,3,35309,2,1672319399),(124733,3,35310,2,1672319399),(124734,3,35311,2,1672319399),(124735,3,35312,2,1672319399),(124736,3,35313,2,1672319399),(124737,3,35314,2,1672319399),(124738,3,35315,2,1672319399),(124739,3,35316,2,1672319399),(124740,3,35317,2,1672319399),(124741,3,35318,2,1672319399),(124742,3,35319,2,1672319399),(124743,3,35320,2,1672319399),(124744,3,35321,2,1672319399),(124745,3,35322,2,1672319399),(124746,3,35323,2,1672319399),(124747,3,35324,2,1672319399),(124748,3,35325,2,1672319399),(124749,3,35326,2,1672319399),(124750,3,35327,2,1672319399),(124751,3,35328,2,1672319399),(124752,3,35329,2,1672319399),(124753,3,35330,2,1672319399),(124754,3,35331,2,1672319399),(124755,3,35332,2,1672319399),(124756,3,35333,2,1672319399),(124757,3,35334,2,1672319399),(124758,3,35335,2,1672319399),(124759,3,35336,2,1672319399),(124760,3,35337,2,1672319399),(124761,3,35338,2,1672319399),(124762,3,35339,2,1672319399),(124763,3,35340,2,1672319399),(124764,3,35341,2,1672319399),(124765,3,35342,2,1672319399),(124766,3,35343,2,1672319399),(124767,3,35344,2,1672319399),(124768,3,35345,2,1672319399),(124769,3,35346,2,1672319399),(124770,3,35347,2,1672319399),(124771,3,35348,2,1672319399),(124772,3,35349,2,1672319399),(124773,3,35350,2,1672319399),(124774,3,35351,2,1672319399),(124775,3,35352,2,1672319399),(124776,3,35353,2,1672319399),(124777,3,35354,2,1672319399),(124778,3,35355,2,1672319399),(124779,3,35356,2,1672319399),(124780,3,35357,2,1672319399),(124781,3,35439,2,1672319399),(124782,3,35440,2,1672319399),(124783,3,35441,2,1672319399),(124784,3,35442,2,1672319399),(124785,3,35443,2,1672319399),(124786,3,35444,2,1672319399),(124787,3,35445,2,1672319399),(124788,3,35446,2,1672319399),(124789,3,35447,2,1672319399),(124790,3,35448,2,1672319399),(124791,3,35449,2,1672319399),(124792,3,35450,2,1672319399),(124793,3,35451,2,1672319399),(124794,3,35452,2,1672319399),(124795,3,35453,2,1672319399),(124796,3,35454,2,1672319399),(124797,3,35455,2,1672319399),(124798,3,35456,2,1672319399),(124799,3,35457,2,1672319399),(124800,3,35458,2,1672319399),(124801,3,35459,2,1672319399),(124802,3,35460,2,1672319399),(124803,3,35461,2,1672319399),(124804,3,35462,2,1672319399),(124805,3,35463,2,1672319399),(124806,3,35464,2,1672319399),(124807,3,35465,2,1672319399),(124808,3,35466,2,1672319399),(124809,3,35467,2,1672319399),(124810,3,35468,2,1672319399),(124811,3,35469,2,1672319399),(124812,3,35470,2,1672319399),(124813,3,35471,2,1672319399),(124814,3,35472,2,1672319399),(124815,3,35473,2,1672319399),(124816,3,35474,2,1672319399),(124817,3,35475,2,1672319399),(124818,3,35476,2,1672319399),(124819,3,35477,2,1672319399),(124820,3,35478,2,1672319399),(124821,3,35479,2,1672319399),(124822,3,35480,2,1672319399),(124823,3,35481,2,1672319399),(124824,3,35482,2,1672319399),(124825,3,35483,2,1672319399),(124826,3,35484,2,1672319399),(124827,3,35485,2,1672319399),(124828,3,35486,2,1672319399),(124829,3,35487,2,1672319399),(124830,3,35488,2,1672319399),(124831,3,35489,2,1672319399),(124832,3,35490,2,1672319399),(124833,3,35491,2,1672319399),(124834,3,35492,2,1672319399),(124835,3,35493,2,1672319399),(124836,3,35494,2,1672319399),(124837,3,35495,2,1672319399),(124838,3,35496,2,1672319399),(124839,3,35497,2,1672319399),(124840,3,35498,2,1672319399),(124841,3,35499,2,1672319399),(124842,3,35500,2,1672319399),(124843,3,35501,2,1672319399),(124844,3,35502,2,1672319399),(124845,3,35503,2,1672319399),(124846,3,35504,2,1672319399),(124847,3,35505,2,1672319399),(124848,3,35506,2,1672319399),(124849,3,35507,2,1672319399),(124850,3,35508,2,1672319399),(124851,3,35509,2,1672319399),(124852,3,35510,2,1672319399),(124853,3,35511,2,1672319399),(124854,3,35512,2,1672319399),(124855,3,35513,2,1672319399),(124856,3,35514,2,1672319399),(124857,3,35515,2,1672319399),(124858,3,35516,2,1672319399),(124859,3,35517,2,1672319399),(124860,3,35518,2,1672319399),(124861,3,35519,2,1672319399),(124862,3,35520,2,1672319399),(124863,3,35521,2,1672319399),(124864,3,35522,2,1672319399),(124865,3,35523,2,1672319399),(124866,3,35524,2,1672319399),(124867,3,35525,2,1672319399),(124868,3,35526,2,1672319399),(124869,3,35527,2,1672319399),(124870,3,35528,2,1672319399),(124871,3,35529,2,1672319399),(124872,3,35530,2,1672319399),(124873,3,35531,2,1672319399),(124874,3,36178,2,1672319399),(124875,3,36179,2,1672319399),(124876,3,36180,2,1672319399),(124877,3,36181,2,1672319399),(124878,3,36182,2,1672319399),(124879,3,36183,2,1672319399),(124880,3,36184,2,1672319399),(124881,3,36185,2,1672319399),(124882,3,36186,2,1672319399),(124883,3,36187,2,1672319399),(124884,3,36188,2,1672319399),(124885,3,36189,2,1672319399),(124886,3,36190,2,1672319399),(124887,3,36191,2,1672319399),(124888,3,36192,2,1672319399),(124889,3,36193,2,1672319399),(124890,3,36194,2,1672319399),(124891,3,36195,2,1672319399),(124892,3,36196,2,1672319399),(124893,3,36197,2,1672319399),(124894,3,36198,2,1672319399),(124895,3,36199,2,1672319399),(124896,3,36200,2,1672319399),(124897,3,36201,2,1672319399),(124898,3,36202,2,1672319399),(124899,3,36203,2,1672319399),(124900,3,36204,2,1672319399),(124901,3,36205,2,1672319399),(124902,3,36206,2,1672319399),(124903,3,36207,2,1672319399),(124904,3,36208,2,1672319399),(124905,3,36209,2,1672319399),(124906,3,36210,2,1672319399),(124907,3,36211,2,1672319399),(124908,3,36212,2,1672319399),(124909,3,36227,2,1672319399),(124910,3,36228,2,1672319399),(124911,3,36229,2,1672319399),(124912,3,36230,2,1672319399),(124913,3,36231,2,1672319399),(124914,3,36232,2,1672319399),(124915,3,36233,2,1672319399),(124916,3,36234,2,1672319399),(124917,3,36235,2,1672319399),(124918,3,36236,2,1672319399),(124919,3,36237,2,1672319399),(124920,3,36238,2,1672319399),(124921,3,36239,2,1672319399),(124922,3,36240,2,1672319399),(124923,3,36241,2,1672319399),(124924,3,36242,2,1672319399),(124925,3,36243,2,1672319399),(124926,3,36244,2,1672319399),(124927,3,36245,2,1672319399),(124928,3,36246,2,1672319399),(124929,3,36247,2,1672319399),(124930,3,36248,2,1672319399),(124931,3,36249,2,1672319399),(124932,3,36250,2,1672319399),(124933,3,36251,2,1672319399),(124934,3,36252,2,1672319399),(124935,3,36253,2,1672319399),(124936,3,36254,2,1672319399),(124937,3,36275,2,1672319399),(124938,3,36276,2,1672319399),(124939,3,36277,2,1672319399),(124940,3,36278,2,1672319399),(124941,3,36279,2,1672319399),(124942,3,36280,2,1672319399),(124943,3,36281,2,1672319399),(124944,3,36282,2,1672319399),(124945,3,36283,2,1672319399),(124946,3,36284,2,1672319399),(124947,3,36285,2,1672319399),(124948,3,36286,2,1672319399),(124949,3,36287,2,1672319399),(124950,3,36288,2,1672319399),(124951,3,36289,2,1672319399),(124952,3,36290,2,1672319399),(124953,3,36291,2,1672319399),(124954,3,36292,2,1672319399),(124955,3,36293,2,1672319399),(124956,3,36294,2,1672319399),(124957,3,36309,2,1672319399),(124958,3,36310,2,1672319399),(124959,3,36311,2,1672319399),(124960,3,36312,2,1672319399),(124961,3,36313,2,1672319399),(124962,3,36314,2,1672319399),(124963,3,36315,2,1672319399),(124964,3,36316,2,1672319399),(124965,3,36317,2,1672319399),(124966,3,36318,2,1672319399),(124967,3,36319,2,1672319399),(124968,3,36320,2,1672319399),(124969,3,36321,2,1672319399),(124970,3,36322,2,1672319399),(124971,3,36323,2,1672319399),(124972,3,36324,2,1672319399),(124973,3,36325,2,1672319399),(124974,3,36326,2,1672319399),(124975,3,36327,2,1672319399),(124976,3,36328,2,1672319399),(124977,3,36329,2,1672319399),(124978,3,36330,2,1672319399),(124979,3,36331,2,1672319399),(124980,3,36332,2,1672319399),(124981,3,36333,2,1672319399),(124982,3,36334,2,1672319399),(124983,3,36335,2,1672319399),(124984,3,36336,2,1672319399),(124985,3,36357,2,1672319399),(124986,3,36358,2,1672319399),(124987,3,36359,2,1672319399),(124988,3,36360,2,1672319399),(124989,3,36361,2,1672319399),(124990,3,36362,2,1672319399),(124991,3,36363,2,1672319399),(124992,3,36364,2,1672319399),(124993,3,36365,2,1672319399),(124994,3,36366,2,1672319399),(124995,3,36367,2,1672319399),(124996,3,36368,2,1672319399),(124997,3,36369,2,1672319399),(124998,3,36370,2,1672319399),(124999,3,36371,2,1672319399),(125000,3,36372,2,1672319399),(125001,3,36373,2,1672319399),(125002,3,36374,2,1672319399),(125003,3,36375,2,1672319399),(125004,3,36376,2,1672319399),(125005,3,36391,2,1672319399),(125006,3,36392,2,1672319399),(125007,3,36393,2,1672319399),(125008,3,36394,2,1672319399),(125009,3,36395,2,1672319399),(125010,3,36396,2,1672319399),(125011,3,36397,2,1672319399),(125012,3,36398,2,1672319399),(125013,3,36399,2,1672319399),(125014,3,36400,2,1672319399),(125015,3,36401,2,1672319399),(125016,3,36402,2,1672319399),(125017,3,36403,2,1672319399),(125018,3,36404,2,1672319399),(125019,3,36405,2,1672319399),(125020,3,36406,2,1672319399),(125021,3,36407,2,1672319399),(125022,3,36408,2,1672319399),(125023,3,36409,2,1672319399),(125024,3,36410,2,1672319399),(125025,3,36411,2,1672319399),(125026,3,36412,2,1672319399),(125027,3,36413,2,1672319399),(125028,3,36414,2,1672319399),(125029,3,36415,2,1672319399),(125030,3,36416,2,1672319399),(125031,3,36417,2,1672319399),(125032,3,36418,2,1672319399),(125033,3,36439,2,1672319399),(125034,3,36440,2,1672319399),(125035,3,36441,2,1672319399),(125036,3,36442,2,1672319399),(125037,3,36443,2,1672319399),(125038,3,36444,2,1672319399),(125039,3,36445,2,1672319399),(125040,3,36446,2,1672319399),(125041,3,36447,2,1672319399),(125042,3,36448,2,1672319399),(125043,3,36449,2,1672319399),(125044,3,36450,2,1672319399),(125045,3,36451,2,1672319399),(125046,3,36452,2,1672319399),(125047,3,36453,2,1672319399),(125048,3,36454,2,1672319399),(125049,3,36455,2,1672319399),(125050,3,36456,2,1672319399),(125051,3,36457,2,1672319399),(125052,3,36458,2,1672319399),(125053,3,36473,2,1672319399),(125054,3,36474,2,1672319399),(125055,3,36475,2,1672319399),(125056,3,36476,2,1672319399),(125057,3,36477,2,1672319399),(125058,3,36478,2,1672319399),(125059,3,36479,2,1672319399),(125060,3,36480,2,1672319399),(125061,3,36481,2,1672319399),(125062,3,36482,2,1672319399),(125063,3,36483,2,1672319399),(125064,3,36484,2,1672319399),(125065,3,36485,2,1672319399),(125066,3,36486,2,1672319399),(125067,3,36487,2,1672319399),(125068,3,36488,2,1672319399),(125069,3,36489,2,1672319399),(125070,3,36490,2,1672319399),(125071,3,36491,2,1672319399),(125072,3,36492,2,1672319399),(125073,3,36493,2,1672319399),(125074,3,36494,2,1672319399),(125075,3,36495,2,1672319399),(125076,3,36496,2,1672319399),(125077,3,36497,2,1672319399),(125078,3,36498,2,1672319399),(125079,3,36499,2,1672319399),(125080,3,36500,2,1672319399),(125081,3,36521,2,1672319399),(125082,3,36522,2,1672319399),(125083,3,36523,2,1672319399),(125084,3,36524,2,1672319399),(125085,3,36525,2,1672319399),(125086,3,36526,2,1672319399),(125087,3,36527,2,1672319399),(125088,3,36528,2,1672319399),(125089,3,36529,2,1672319399),(125090,3,36530,2,1672319399),(125091,3,36531,2,1672319399),(125092,3,36532,2,1672319399),(125093,3,36533,2,1672319399),(125094,3,36534,2,1672319399),(125095,3,36535,2,1672319399),(125096,3,36536,2,1672319399),(125097,3,36537,2,1672319399),(125098,3,36538,2,1672319399),(125099,3,36539,2,1672319399),(125100,3,36540,2,1672319399),(125101,3,36824,2,1672319399),(125102,3,36825,2,1672319399),(125103,3,39803,2,1672319399),(125104,3,40460,2,1672319399),(125105,3,40461,2,1672319399),(125106,3,40462,2,1672319399),(125107,3,40463,2,1672319399),(125108,3,40464,2,1672319399),(125109,3,40465,2,1672319399),(125110,3,40663,2,1672319399),(125111,3,40664,2,1672319399),(125112,3,40665,2,1672319399),(125113,3,40666,2,1672319399),(125114,3,40667,2,1672319399),(125115,3,40668,2,1672319399),(125116,3,40669,2,1672319399),(125117,3,40670,2,1672319399),(125118,3,40690,2,1672319399),(125119,3,40691,2,1672319399),(125120,3,40692,2,1672319399),(125121,3,40693,2,1672319399),(125122,3,40694,2,1672319399),(125123,3,40695,2,1672319399),(125124,3,40696,2,1672319399),(125125,3,40697,2,1672319399),(125126,3,40698,2,1672319399),(125127,3,40699,2,1672319399),(125128,3,40700,2,1672319399),(125129,3,40701,2,1672319399),(125130,3,40702,2,1672319399),(125131,3,40703,2,1672319399),(125132,3,40704,2,1672319399),(125133,3,40705,2,1672319399),(125134,3,40706,2,1672319399),(125135,3,40707,2,1672319399),(125136,3,40721,2,1672319399),(125137,3,40722,2,1672319399),(125138,3,40723,2,1672319399),(125139,3,40724,2,1672319399),(125140,3,40725,2,1672319399),(125141,3,40726,2,1672319399),(125142,3,40727,2,1672319399),(125143,3,40728,2,1672319399),(125144,3,40729,2,1672319399),(125145,3,40730,2,1672319399),(125146,3,40743,2,1672319399),(125147,3,40744,2,1672319399),(125148,3,40745,2,1672319399),(125149,3,40746,2,1672319399),(125150,3,40747,2,1672319399),(125151,3,40748,2,1672319399),(125152,3,40749,2,1672319399),(125153,3,40750,2,1672319399),(125154,3,40751,2,1672319399),(125155,3,40765,2,1672319399),(125156,3,40766,2,1672319399),(125157,3,40767,2,1672319399),(125158,3,40768,2,1672319399),(125159,3,40769,2,1672319399),(125160,3,40770,2,1672319399),(125161,3,40771,2,1672319399),(125162,3,40772,2,1672319399),(125163,3,40773,2,1672319399),(125164,3,40774,2,1672319399),(125165,3,40788,2,1672319399),(125166,3,40789,2,1672319399),(125167,3,40790,2,1672319399),(125168,3,40791,2,1672319399),(125169,3,40792,2,1672319399),(125170,3,40793,2,1672319399),(125171,3,40794,2,1672319399),(125172,3,40795,2,1672319399),(125173,3,40796,2,1672319399),(125174,3,40797,2,1672319399),(125175,3,40834,2,1672319399),(125176,3,40835,2,1672319399),(125177,3,40836,2,1672319399),(125178,3,40837,2,1672319399),(125179,3,40838,2,1672319399),(125180,3,40839,2,1672319399),(125181,3,40840,2,1672319399),(125182,3,40841,2,1672319399),(125183,3,40842,2,1672319399),(125184,3,40843,2,1672319399),(125185,3,42686,2,1672319399),(125186,3,42687,2,1672319399),(125187,3,42688,2,1672319399),(125188,3,42689,2,1672319399),(125189,3,42690,2,1672319399),(125190,3,42987,2,1672319399),(125191,3,42988,2,1672319399),(125192,3,42989,2,1672319399),(125193,3,42990,2,1672319399),(125194,3,42991,2,1672319399),(125195,3,42992,2,1672319399),(125196,3,42993,2,1672319399),(125197,3,42994,2,1672319399),(125198,3,42995,2,1672319399),(125199,3,42996,2,1672319399),(125200,3,42997,2,1672319399),(125201,3,42998,2,1672319399),(125202,3,42999,2,1672319399),(125203,3,43000,2,1672319399),(125204,3,43001,2,1672319399),(125205,3,43002,2,1672319399),(125206,3,43003,2,1672319399),(125207,3,43004,2,1672319399),(125208,3,43005,2,1672319399),(125209,3,43006,2,1672319399),(125210,3,43007,2,1672319399),(125211,3,43008,2,1672319399),(125212,3,43009,2,1672319399),(125213,3,43010,2,1672319399),(125214,3,43011,2,1672319399),(125215,3,43012,2,1672319399),(125216,3,43013,2,1672319399),(125217,3,43014,2,1672319399),(125218,3,43015,2,1672319399),(125219,3,43016,2,1672319399),(125220,3,43017,2,1672319399),(125221,3,43050,2,1672319399),(125222,3,43051,2,1672319399),(125223,3,43052,2,1672319399),(125224,3,43053,2,1672319399),(125225,3,43054,2,1672319399),(125226,3,43055,2,1672319399),(125227,3,43056,2,1672319399),(125228,3,43057,2,1672319399),(125229,3,43058,2,1672319399),(125230,3,43059,2,1672319399),(125231,3,43060,2,1672319399),(125232,3,43061,2,1672319399),(125233,3,43062,2,1672319399),(125234,3,43063,2,1672319399),(125235,3,43064,2,1672319399),(125236,3,43065,2,1672319399),(125237,3,43066,2,1672319399),(125238,3,43067,2,1672319399),(125239,3,43068,2,1672319399),(125240,3,43069,2,1672319399),(125241,3,43070,2,1672319399),(125242,3,43071,2,1672319399),(125243,3,43072,2,1672319399),(125244,3,43073,2,1672319399),(125245,3,43074,2,1672319399),(125246,3,43075,2,1672319399),(125247,3,43076,2,1672319399),(125248,3,43137,2,1672319399),(125249,3,43138,2,1672319399),(125250,3,43139,2,1672319399),(125251,3,43140,2,1672319399),(125252,3,43141,2,1672319399),(125253,3,43142,2,1672319399),(125254,3,43143,2,1672319399),(125255,3,43144,2,1672319399),(125256,3,43145,2,1672319399),(125257,3,43146,2,1672319399),(125258,3,43147,2,1672319399),(125259,3,43148,2,1672319399),(125260,3,43149,2,1672319399),(125261,3,43150,2,1672319399),(125262,3,43151,2,1672319399),(125263,3,43152,2,1672319399),(125264,3,43153,2,1672319399),(125265,3,43154,2,1672319399),(125266,3,43155,2,1672319399),(125267,3,43168,2,1672319399),(125268,3,43169,2,1672319399),(125269,3,43170,2,1672319399),(125270,3,43171,2,1672319399),(125271,3,43172,2,1672319399),(125272,3,44319,2,1672319399),(125273,3,44320,2,1672319399),(125274,3,44321,2,1672319399),(125275,3,44322,2,1672319399),(125276,3,44323,2,1672319399),(125277,3,44324,2,1672319399),(125278,3,44325,2,1672319399),(125279,3,44326,2,1672319399),(125280,3,44327,2,1672319399),(125281,3,44328,2,1672319399),(125282,3,44329,2,1672319399),(125283,3,44330,2,1672319399),(125284,3,44331,2,1672319399),(125285,3,44332,2,1672319399),(125286,3,44333,2,1672319399),(125287,3,44334,2,1672319399),(125288,3,44403,2,1672319399),(125289,3,44404,2,1672319399),(125290,3,44405,2,1672319399),(125291,3,44406,2,1672319399),(125292,3,44407,2,1672319399),(125293,3,44408,2,1672319399),(125294,3,44409,2,1672319399),(125295,3,44410,2,1672319399),(125296,3,44411,2,1672319399),(125297,3,44412,2,1672319399),(125298,3,44413,2,1672319399),(125299,3,44414,2,1672319399),(125300,3,44415,2,1672319399),(125301,3,44416,2,1672319399),(125302,3,44417,2,1672319399),(125303,3,44418,2,1672319399),(125304,3,44419,2,1672319399),(125305,3,44420,2,1672319399),(125306,3,44421,2,1672319399),(125307,3,44431,2,1672319399),(125308,3,44432,2,1672319399),(125309,3,44434,2,1672319399),(125310,3,44435,2,1672319399),(125311,3,22908,3,1672319399),(125312,3,22909,3,1672319399),(125313,3,22910,3,1672319399),(125314,3,22911,3,1672319399),(125315,3,22912,3,1672319399),(125316,3,22985,3,1672319399),(125317,3,22986,3,1672319399),(125318,3,22988,3,1672319399),(125319,3,22989,3,1672319399),(125320,3,22990,3,1672319399),(125321,3,22991,3,1672319399),(125322,3,22992,3,1672319399),(125323,3,23073,3,1672319399),(125324,3,23074,3,1672319399),(125325,3,27032,3,1672319399),(125326,3,27478,3,1672319399),(125327,3,27479,3,1672319399),(125328,3,27480,3,1672319399),(125329,3,27481,3,1672319399),(125330,3,27482,3,1672319399),(125331,3,27483,3,1672319399),(125332,3,27484,3,1672319399),(125333,3,27485,3,1672319399),(125334,3,27517,3,1672319399),(125335,3,27518,3,1672319399),(125336,3,27519,3,1672319399),(125337,3,27553,3,1672319399),(125338,3,27554,3,1672319399),(125339,3,27555,3,1672319399),(125340,3,27591,3,1672319399),(125341,3,27593,3,1672319399),(125342,3,27594,3,1672319399),(125343,3,27595,3,1672319399),(125344,3,27671,3,1672319399),(125345,3,27672,3,1672319399),(125346,3,27673,3,1672319399),(125347,3,27674,3,1672319399),(125348,3,27675,3,1672319399),(125349,3,27676,3,1672319399),(125350,3,27677,3,1672319399),(125351,3,27678,3,1672319399),(125352,3,27679,3,1672319399),(125353,3,28354,3,1672319399),(125354,3,28355,3,1672319399),(125355,3,28356,3,1672319399),(125356,3,28357,3,1672319399),(125357,3,28358,3,1672319399),(125358,3,28359,3,1672319399),(125359,3,28360,3,1672319399),(125360,3,28361,3,1672319399),(125361,3,28362,3,1672319399),(125362,3,28363,3,1672319399),(125363,3,28364,3,1672319399),(125364,3,28365,3,1672319399),(125365,3,28366,3,1672319399),(125366,3,28367,3,1672319399),(125367,3,28368,3,1672319399),(125368,3,28369,3,1672319399),(125369,3,28370,3,1672319399),(125370,3,28371,3,1672319399),(125371,3,28372,3,1672319399),(125372,3,28373,3,1672319399),(125373,3,28374,3,1672319399),(125374,3,28375,3,1672319399),(125375,3,28376,3,1672319399),(125376,3,30066,3,1672319399),(125377,3,30067,3,1672319399),(125378,3,30068,3,1672319399),(125379,3,30069,3,1672319399),(125380,3,30070,3,1672319399),(125381,3,30071,3,1672319399),(125382,3,30072,3,1672319399),(125383,3,30073,3,1672319399),(125384,3,30074,3,1672319399),(125385,3,30075,3,1672319399),(125386,3,30076,3,1672319399),(125387,3,30077,3,1672319399),(125388,3,30078,3,1672319399),(125389,3,30079,3,1672319399),(125390,3,30080,3,1672319399),(125391,3,30081,3,1672319399),(125392,3,30082,3,1672319399),(125393,3,30083,3,1672319399),(125394,3,30084,3,1672319399),(125395,3,30085,3,1672319399),(125396,3,30105,3,1672319399),(125397,3,30107,3,1672319399),(125398,3,30108,3,1672319399),(125399,3,30110,3,1672319399),(125400,3,30111,3,1672319399),(125401,3,30112,3,1672319399),(125402,3,30157,3,1672319399),(125403,3,30158,3,1672319399),(125404,3,30159,3,1672319399),(125405,3,30160,3,1672319399),(125406,3,30161,3,1672319399),(125407,3,30162,3,1672319399),(125408,3,30196,3,1672319399),(125409,3,30197,3,1672319399),(125410,3,30198,3,1672319399),(125411,3,30199,3,1672319399),(125412,3,30200,3,1672319399),(125413,3,30201,3,1672319399),(125414,3,30202,3,1672319399),(125415,3,30203,3,1672319399),(125416,3,30204,3,1672319399),(125417,3,30205,3,1672319399),(125418,3,30206,3,1672319399),(125419,3,30207,3,1672319399),(125420,3,30208,3,1672319399),(125421,3,30209,3,1672319399),(125422,3,30210,3,1672319399),(125423,3,30211,3,1672319399),(125424,3,30212,3,1672319399),(125425,3,30213,3,1672319399),(125426,3,30214,3,1672319399),(125427,3,30215,3,1672319399),(125428,3,30216,3,1672319399),(125429,3,30217,3,1672319399),(125430,3,30218,3,1672319399),(125431,3,30219,3,1672319399),(125432,3,30220,3,1672319399),(125433,3,30221,3,1672319399),(125434,3,30222,3,1672319399),(125435,3,30223,3,1672319399),(125436,3,30224,3,1672319399),(125437,3,30225,3,1672319399),(125438,3,30226,3,1672319399),(125439,3,30227,3,1672319399),(125440,3,30228,3,1672319399),(125441,3,30229,3,1672319399),(125442,3,30239,3,1672319399),(125443,3,30240,3,1672319399),(125444,3,30241,3,1672319399),(125445,3,30242,3,1672319399),(125446,3,30243,3,1672319399),(125447,3,30244,3,1672319399),(125448,3,30245,3,1672319399),(125449,3,30246,3,1672319399),(125450,3,30247,3,1672319399),(125451,3,30248,3,1672319399),(125452,3,30249,3,1672319399),(125453,3,30250,3,1672319399),(125454,3,30251,3,1672319399),(125455,3,30252,3,1672319399),(125456,3,30253,3,1672319399),(125457,3,30254,3,1672319399),(125458,3,30255,3,1672319399),(125459,3,30256,3,1672319399),(125460,3,30257,3,1672319399),(125461,3,30258,3,1672319399),(125462,3,30259,3,1672319399),(125463,3,30260,3,1672319399),(125464,3,30261,3,1672319399),(125465,3,30262,3,1672319399),(125466,3,30263,3,1672319399),(125467,3,30264,3,1672319399),(125468,3,30265,3,1672319399),(125469,3,30266,3,1672319399),(125470,3,30267,3,1672319399),(125471,3,30268,3,1672319399),(125472,3,30269,3,1672319399),(125473,3,30270,3,1672319399),(125474,3,30271,3,1672319399),(125475,3,30272,3,1672319399),(125476,3,30573,3,1672319399),(125477,3,30574,3,1672319399),(125478,3,30575,3,1672319399),(125479,3,30576,3,1672319399),(125480,3,30577,3,1672319399),(125481,3,30578,3,1672319399),(125482,3,30579,3,1672319399),(125483,3,30580,3,1672319399),(125484,3,30581,3,1672319399),(125485,3,30582,3,1672319399),(125486,3,30583,3,1672319399),(125487,3,30584,3,1672319399),(125488,3,30585,3,1672319399),(125489,3,30586,3,1672319399),(125490,3,30587,3,1672319399),(125491,3,30588,3,1672319399),(125492,3,30589,3,1672319399),(125493,3,30590,3,1672319399),(125494,3,30591,3,1672319399),(125495,3,30592,3,1672319399),(125496,3,30593,3,1672319399),(125497,3,30594,3,1672319399),(125498,3,30595,3,1672319399),(125499,3,30596,3,1672319399),(125500,3,30597,3,1672319399),(125501,3,30598,3,1672319399),(125502,3,30599,3,1672319399),(125503,3,30600,3,1672319399),(125504,3,30601,3,1672319399),(125505,3,30602,3,1672319399),(125506,3,30603,3,1672319399),(125507,3,30604,3,1672319399),(125508,3,30605,3,1672319399),(125509,3,30606,3,1672319399),(125510,3,30607,3,1672319399),(125511,3,30608,3,1672319399),(125512,3,30609,3,1672319399),(125513,3,30610,3,1672319399),(125514,3,30714,3,1672319399),(125515,3,30715,3,1672319399),(125516,3,30716,3,1672319399),(125517,3,30717,3,1672319399),(125518,3,30718,3,1672319399),(125519,3,30719,3,1672319399),(125520,3,30720,3,1672319399),(125521,3,30721,3,1672319399),(125522,3,30722,3,1672319399),(125523,3,30723,3,1672319399),(125524,3,30724,3,1672319399),(125525,3,30725,3,1672319399),(125526,3,30726,3,1672319399),(125527,3,30727,3,1672319399),(125528,3,30728,3,1672319399),(125529,3,30729,3,1672319399),(125530,3,30730,3,1672319399),(125531,3,30731,3,1672319399),(125532,3,30732,3,1672319399),(125533,3,30733,3,1672319399),(125534,3,30734,3,1672319399),(125535,3,30735,3,1672319399),(125536,3,30736,3,1672319399),(125537,3,30737,3,1672319399),(125538,3,30738,3,1672319399),(125539,3,30739,3,1672319399),(125540,3,30740,3,1672319399),(125541,3,30741,3,1672319399),(125542,3,30742,3,1672319399),(125543,3,30743,3,1672319399),(125544,3,30744,3,1672319399),(125545,3,30745,3,1672319399),(125546,3,30746,3,1672319399),(125547,3,30747,3,1672319399),(125548,3,30748,3,1672319399),(125549,3,30749,3,1672319399),(125550,3,30750,3,1672319399),(125551,3,30751,3,1672319399),(125552,3,30752,3,1672319399),(125553,3,30753,3,1672319399),(125554,3,30754,3,1672319399),(125555,3,30755,3,1672319399),(125556,3,30756,3,1672319399),(125557,3,30757,3,1672319399),(125558,3,30758,3,1672319399),(125559,3,30877,3,1672319399),(125560,3,30878,3,1672319399),(125561,3,30879,3,1672319399),(125562,3,30880,3,1672319399),(125563,3,30881,3,1672319399),(125564,3,30882,3,1672319399),(125565,3,30883,3,1672319399),(125566,3,30884,3,1672319399),(125567,3,30885,3,1672319399),(125568,3,30886,3,1672319399),(125569,3,30887,3,1672319399),(125570,3,30888,3,1672319399),(125571,3,30889,3,1672319399),(125572,3,30890,3,1672319399),(125573,3,30891,3,1672319399),(125574,3,30892,3,1672319399),(125575,3,30893,3,1672319399),(125576,3,30894,3,1672319399),(125577,3,30895,3,1672319399),(125578,3,30963,3,1672319399),(125579,3,30964,3,1672319399),(125580,3,30965,3,1672319399),(125581,3,30966,3,1672319399),(125582,3,30967,3,1672319399),(125583,3,32621,3,1672319399),(125584,3,32622,3,1672319399),(125585,3,32623,3,1672319399),(125586,3,32624,3,1672319399),(125587,3,32625,3,1672319399),(125588,3,32626,3,1672319399),(125589,3,32627,3,1672319399),(125590,3,32628,3,1672319399),(125591,3,32629,3,1672319399),(125592,3,32630,3,1672319399),(125593,3,32631,3,1672319399),(125594,3,32632,3,1672319399),(125595,3,32633,3,1672319399),(125596,3,32670,3,1672319399),(125597,3,32671,3,1672319399),(125598,3,32672,3,1672319399),(125599,3,32673,3,1672319399),(125600,3,32674,3,1672319399),(125601,3,32675,3,1672319399),(125602,3,32676,3,1672319399),(125603,3,32677,3,1672319399),(125604,3,32678,3,1672319399),(125605,3,32679,3,1672319399),(125606,3,32680,3,1672319399),(125607,3,32681,3,1672319399),(125608,3,32682,3,1672319399),(125609,3,32683,3,1672319399),(125610,3,32684,3,1672319399),(125611,3,32685,3,1672319399),(125612,3,32686,3,1672319399),(125613,3,32687,3,1672319399),(125614,3,32688,3,1672319399),(125615,3,32689,3,1672319399),(125616,3,32690,3,1672319399),(125617,3,32691,3,1672319399),(125618,3,32692,3,1672319399),(125619,3,32871,3,1672319399),(125620,3,32872,3,1672319399),(125621,3,32873,3,1672319399),(125622,3,32874,3,1672319399),(125623,3,32875,3,1672319399),(125624,3,32876,3,1672319399),(125625,3,32877,3,1672319399),(125626,3,32878,3,1672319399),(125627,3,32879,3,1672319399),(125628,3,32880,3,1672319399),(125629,3,32881,3,1672319399),(125630,3,32882,3,1672319399),(125631,3,32883,3,1672319399),(125632,3,32884,3,1672319399),(125633,3,32885,3,1672319399),(125634,3,32886,3,1672319399),(125635,3,32887,3,1672319399),(125636,3,32888,3,1672319399),(125637,3,32889,3,1672319399),(125638,3,33522,3,1672319399),(125639,3,33523,3,1672319399),(125640,3,33524,3,1672319399),(125641,3,33525,3,1672319399),(125642,3,33526,3,1672319399),(125643,3,33527,3,1672319399),(125644,3,33528,3,1672319399),(125645,3,33529,3,1672319399),(125646,3,33530,3,1672319399),(125647,3,33531,3,1672319399),(125648,3,33532,3,1672319399),(125649,3,33533,3,1672319399),(125650,3,33534,3,1672319399),(125651,3,33535,3,1672319399),(125652,3,33536,3,1672319399),(125653,3,33537,3,1672319399),(125654,3,33538,3,1672319399),(125655,3,33539,3,1672319399),(125656,3,33540,3,1672319399),(125657,3,33541,3,1672319399),(125658,3,35104,3,1672319399),(125659,3,35105,3,1672319399),(125660,3,35106,3,1672319399),(125661,3,35107,3,1672319399),(125662,3,35108,3,1672319399),(125663,3,35109,3,1672319399),(125664,3,35110,3,1672319399),(125665,3,35111,3,1672319399),(125666,3,35112,3,1672319399),(125667,3,35113,3,1672319399),(125668,3,35114,3,1672319399),(125669,3,35115,3,1672319399),(125670,3,35116,3,1672319399),(125671,3,35117,3,1672319399),(125672,3,35118,3,1672319399),(125673,3,35119,3,1672319399),(125674,3,35120,3,1672319399),(125675,3,35121,3,1672319399),(125676,3,35122,3,1672319399),(125677,3,35123,3,1672319399),(125678,3,35124,3,1672319399),(125679,3,35125,3,1672319399),(125680,3,35126,3,1672319399),(125681,3,35127,3,1672319399),(125682,3,35129,3,1672319399),(125683,3,35130,3,1672319399),(125684,3,35131,3,1672319399),(125685,3,35132,3,1672319399),(125686,3,35133,3,1672319399),(125687,3,35134,3,1672319399),(125688,3,35135,3,1672319399),(125689,3,35136,3,1672319399),(125690,3,35137,3,1672319399),(125691,3,35138,3,1672319399),(125692,3,35139,3,1672319399),(125693,3,35140,3,1672319399),(125694,3,35141,3,1672319399),(125695,3,35142,3,1672319399),(125696,3,35143,3,1672319399),(125697,3,35144,3,1672319399),(125698,3,35145,3,1672319399),(125699,3,35146,3,1672319399),(125700,3,35147,3,1672319399),(125701,3,35148,3,1672319399),(125702,3,35149,3,1672319399),(125703,3,35150,3,1672319399),(125704,3,35151,3,1672319399),(125705,3,35152,3,1672319399),(125706,3,35290,3,1672319399),(125707,3,35291,3,1672319399),(125708,3,35292,3,1672319399),(125709,3,35293,3,1672319399),(125710,3,35294,3,1672319399),(125711,3,35295,3,1672319399),(125712,3,35296,3,1672319399),(125713,3,35297,3,1672319399),(125714,3,35298,3,1672319399),(125715,3,35299,3,1672319399),(125716,3,35300,3,1672319399),(125717,3,35301,3,1672319399),(125718,3,35302,3,1672319399),(125719,3,35303,3,1672319399),(125720,3,35304,3,1672319399),(125721,3,35305,3,1672319399),(125722,3,35306,3,1672319399),(125723,3,35307,3,1672319399),(125724,3,35308,3,1672319399),(125725,3,35309,3,1672319399),(125726,3,35310,3,1672319399),(125727,3,35311,3,1672319399),(125728,3,35312,3,1672319399),(125729,3,35313,3,1672319399),(125730,3,35314,3,1672319399),(125731,3,35315,3,1672319399),(125732,3,35316,3,1672319399),(125733,3,35317,3,1672319399),(125734,3,35318,3,1672319399),(125735,3,35319,3,1672319399),(125736,3,35320,3,1672319399),(125737,3,35321,3,1672319399),(125738,3,35322,3,1672319399),(125739,3,35323,3,1672319399),(125740,3,35324,3,1672319399),(125741,3,35325,3,1672319399),(125742,3,35326,3,1672319399),(125743,3,35327,3,1672319399),(125744,3,35328,3,1672319399),(125745,3,35329,3,1672319399),(125746,3,35330,3,1672319399),(125747,3,35331,3,1672319399),(125748,3,35332,3,1672319399),(125749,3,35333,3,1672319399),(125750,3,35334,3,1672319399),(125751,3,35335,3,1672319399),(125752,3,35336,3,1672319399),(125753,3,35337,3,1672319399),(125754,3,35338,3,1672319399),(125755,3,35339,3,1672319399),(125756,3,35340,3,1672319399),(125757,3,35341,3,1672319399),(125758,3,35342,3,1672319399),(125759,3,35343,3,1672319399),(125760,3,35344,3,1672319399),(125761,3,35345,3,1672319399),(125762,3,35346,3,1672319399),(125763,3,35347,3,1672319399),(125764,3,35348,3,1672319399),(125765,3,35349,3,1672319399),(125766,3,35350,3,1672319399),(125767,3,35351,3,1672319399),(125768,3,35352,3,1672319399),(125769,3,35353,3,1672319399),(125770,3,35354,3,1672319399),(125771,3,35355,3,1672319399),(125772,3,35356,3,1672319399),(125773,3,35357,3,1672319399),(125774,3,35439,3,1672319399),(125775,3,35440,3,1672319399),(125776,3,35441,3,1672319399),(125777,3,35442,3,1672319399),(125778,3,35443,3,1672319399),(125779,3,35444,3,1672319399),(125780,3,35445,3,1672319399),(125781,3,35446,3,1672319399),(125782,3,35447,3,1672319399),(125783,3,35448,3,1672319399),(125784,3,35449,3,1672319399),(125785,3,35450,3,1672319399),(125786,3,35451,3,1672319399),(125787,3,35452,3,1672319399),(125788,3,35453,3,1672319399),(125789,3,35454,3,1672319399),(125790,3,35455,3,1672319399),(125791,3,35456,3,1672319399),(125792,3,35457,3,1672319399),(125793,3,35458,3,1672319399),(125794,3,35459,3,1672319399),(125795,3,35460,3,1672319399),(125796,3,35461,3,1672319399),(125797,3,35462,3,1672319399),(125798,3,35463,3,1672319399),(125799,3,35464,3,1672319399),(125800,3,35465,3,1672319399),(125801,3,35466,3,1672319399),(125802,3,35467,3,1672319399),(125803,3,35468,3,1672319399),(125804,3,35469,3,1672319399),(125805,3,35470,3,1672319399),(125806,3,35471,3,1672319399),(125807,3,35472,3,1672319399),(125808,3,35473,3,1672319399),(125809,3,35474,3,1672319399),(125810,3,35475,3,1672319399),(125811,3,35476,3,1672319399),(125812,3,35477,3,1672319399),(125813,3,35478,3,1672319399),(125814,3,35479,3,1672319399),(125815,3,35480,3,1672319399),(125816,3,35481,3,1672319399),(125817,3,35482,3,1672319399),(125818,3,35483,3,1672319399),(125819,3,35484,3,1672319399),(125820,3,35485,3,1672319399),(125821,3,35486,3,1672319399),(125822,3,35487,3,1672319399),(125823,3,35488,3,1672319399),(125824,3,35489,3,1672319399),(125825,3,35490,3,1672319399),(125826,3,35491,3,1672319399),(125827,3,35492,3,1672319399),(125828,3,35493,3,1672319399),(125829,3,35494,3,1672319399),(125830,3,35495,3,1672319399),(125831,3,35496,3,1672319399),(125832,3,35497,3,1672319399),(125833,3,35498,3,1672319399),(125834,3,35499,3,1672319399),(125835,3,35500,3,1672319399),(125836,3,35501,3,1672319399),(125837,3,35502,3,1672319399),(125838,3,35503,3,1672319399),(125839,3,35504,3,1672319399),(125840,3,35505,3,1672319399),(125841,3,35506,3,1672319399),(125842,3,35507,3,1672319399),(125843,3,35508,3,1672319399),(125844,3,35509,3,1672319399),(125845,3,35510,3,1672319399),(125846,3,35511,3,1672319399),(125847,3,35512,3,1672319399),(125848,3,35513,3,1672319399),(125849,3,35514,3,1672319399),(125850,3,35515,3,1672319399),(125851,3,35516,3,1672319399),(125852,3,35517,3,1672319399),(125853,3,35518,3,1672319399),(125854,3,35519,3,1672319399),(125855,3,35520,3,1672319399),(125856,3,35521,3,1672319399),(125857,3,35522,3,1672319399),(125858,3,35523,3,1672319399),(125859,3,35524,3,1672319399),(125860,3,35525,3,1672319399),(125861,3,35526,3,1672319399),(125862,3,35527,3,1672319399),(125863,3,35528,3,1672319399),(125864,3,35529,3,1672319399),(125865,3,35530,3,1672319399),(125866,3,35531,3,1672319399),(125867,3,36178,3,1672319399),(125868,3,36179,3,1672319399),(125869,3,36180,3,1672319399),(125870,3,36181,3,1672319399),(125871,3,36182,3,1672319399),(125872,3,36183,3,1672319399),(125873,3,36184,3,1672319399),(125874,3,36185,3,1672319399),(125875,3,36186,3,1672319399),(125876,3,36187,3,1672319399),(125877,3,36188,3,1672319399),(125878,3,36189,3,1672319399),(125879,3,36190,3,1672319399),(125880,3,36191,3,1672319399),(125881,3,36192,3,1672319399),(125882,3,36193,3,1672319399),(125883,3,36194,3,1672319399),(125884,3,36195,3,1672319399),(125885,3,36196,3,1672319399),(125886,3,36197,3,1672319399),(125887,3,36198,3,1672319399),(125888,3,36199,3,1672319399),(125889,3,36200,3,1672319399),(125890,3,36201,3,1672319399),(125891,3,36202,3,1672319399),(125892,3,36203,3,1672319399),(125893,3,36204,3,1672319399),(125894,3,36205,3,1672319399),(125895,3,36206,3,1672319399),(125896,3,36207,3,1672319399),(125897,3,36208,3,1672319399),(125898,3,36209,3,1672319399),(125899,3,36210,3,1672319399),(125900,3,36211,3,1672319399),(125901,3,36212,3,1672319399),(125902,3,36227,3,1672319399),(125903,3,36228,3,1672319399),(125904,3,36229,3,1672319399),(125905,3,36230,3,1672319399),(125906,3,36231,3,1672319399),(125907,3,36232,3,1672319399),(125908,3,36233,3,1672319399),(125909,3,36234,3,1672319399),(125910,3,36235,3,1672319399),(125911,3,36236,3,1672319399),(125912,3,36237,3,1672319399),(125913,3,36238,3,1672319399),(125914,3,36239,3,1672319399),(125915,3,36240,3,1672319399),(125916,3,36241,3,1672319399),(125917,3,36242,3,1672319399),(125918,3,36243,3,1672319399),(125919,3,36244,3,1672319399),(125920,3,36245,3,1672319399),(125921,3,36246,3,1672319399),(125922,3,36247,3,1672319399),(125923,3,36248,3,1672319399),(125924,3,36249,3,1672319399),(125925,3,36250,3,1672319399),(125926,3,36251,3,1672319399),(125927,3,36252,3,1672319399),(125928,3,36253,3,1672319399),(125929,3,36254,3,1672319399),(125930,3,36275,3,1672319399),(125931,3,36276,3,1672319399),(125932,3,36277,3,1672319399),(125933,3,36278,3,1672319399),(125934,3,36279,3,1672319399),(125935,3,36280,3,1672319399),(125936,3,36281,3,1672319399),(125937,3,36282,3,1672319399),(125938,3,36283,3,1672319399),(125939,3,36284,3,1672319399),(125940,3,36285,3,1672319399),(125941,3,36286,3,1672319399),(125942,3,36287,3,1672319399),(125943,3,36288,3,1672319399),(125944,3,36289,3,1672319399),(125945,3,36290,3,1672319399),(125946,3,36291,3,1672319399),(125947,3,36292,3,1672319399),(125948,3,36293,3,1672319399),(125949,3,36294,3,1672319399),(125950,3,36309,3,1672319399),(125951,3,36310,3,1672319399),(125952,3,36311,3,1672319399),(125953,3,36312,3,1672319399),(125954,3,36313,3,1672319399),(125955,3,36314,3,1672319399),(125956,3,36315,3,1672319399),(125957,3,36316,3,1672319399),(125958,3,36317,3,1672319399),(125959,3,36318,3,1672319399),(125960,3,36319,3,1672319399),(125961,3,36320,3,1672319399),(125962,3,36321,3,1672319399),(125963,3,36322,3,1672319399),(125964,3,36323,3,1672319399),(125965,3,36324,3,1672319399),(125966,3,36325,3,1672319399),(125967,3,36326,3,1672319399),(125968,3,36327,3,1672319399),(125969,3,36328,3,1672319399),(125970,3,36329,3,1672319399),(125971,3,36330,3,1672319399),(125972,3,36331,3,1672319399),(125973,3,36332,3,1672319399),(125974,3,36333,3,1672319399),(125975,3,36334,3,1672319399),(125976,3,36335,3,1672319399),(125977,3,36336,3,1672319399),(125978,3,36357,3,1672319399),(125979,3,36358,3,1672319399),(125980,3,36359,3,1672319399),(125981,3,36360,3,1672319399),(125982,3,36361,3,1672319399),(125983,3,36362,3,1672319399),(125984,3,36363,3,1672319399),(125985,3,36364,3,1672319399),(125986,3,36365,3,1672319399),(125987,3,36366,3,1672319399),(125988,3,36367,3,1672319399),(125989,3,36368,3,1672319399),(125990,3,36369,3,1672319399),(125991,3,36370,3,1672319399),(125992,3,36371,3,1672319399),(125993,3,36372,3,1672319399),(125994,3,36373,3,1672319399),(125995,3,36374,3,1672319399),(125996,3,36375,3,1672319399),(125997,3,36376,3,1672319399),(125998,3,36391,3,1672319399),(125999,3,36392,3,1672319399),(126000,3,36393,3,1672319399),(126001,3,36394,3,1672319399),(126002,3,36395,3,1672319399),(126003,3,36396,3,1672319399),(126004,3,36397,3,1672319399),(126005,3,36398,3,1672319399),(126006,3,36399,3,1672319399),(126007,3,36400,3,1672319399),(126008,3,36401,3,1672319399),(126009,3,36402,3,1672319399),(126010,3,36403,3,1672319399),(126011,3,36404,3,1672319399),(126012,3,36405,3,1672319399),(126013,3,36406,3,1672319399),(126014,3,36407,3,1672319399),(126015,3,36408,3,1672319399),(126016,3,36409,3,1672319399),(126017,3,36410,3,1672319399),(126018,3,36411,3,1672319399),(126019,3,36412,3,1672319399),(126020,3,36413,3,1672319399),(126021,3,36414,3,1672319399),(126022,3,36415,3,1672319399),(126023,3,36416,3,1672319399),(126024,3,36417,3,1672319399),(126025,3,36418,3,1672319399),(126026,3,36439,3,1672319399),(126027,3,36440,3,1672319399),(126028,3,36441,3,1672319399),(126029,3,36442,3,1672319399),(126030,3,36443,3,1672319399),(126031,3,36444,3,1672319399),(126032,3,36445,3,1672319399),(126033,3,36446,3,1672319399),(126034,3,36447,3,1672319399),(126035,3,36448,3,1672319399),(126036,3,36449,3,1672319399),(126037,3,36450,3,1672319399),(126038,3,36451,3,1672319399),(126039,3,36452,3,1672319399),(126040,3,36453,3,1672319399),(126041,3,36454,3,1672319399),(126042,3,36455,3,1672319399),(126043,3,36456,3,1672319399),(126044,3,36457,3,1672319399),(126045,3,36458,3,1672319399),(126046,3,36473,3,1672319399),(126047,3,36474,3,1672319399),(126048,3,36475,3,1672319399),(126049,3,36476,3,1672319399),(126050,3,36477,3,1672319399),(126051,3,36478,3,1672319399),(126052,3,36479,3,1672319399),(126053,3,36480,3,1672319399),(126054,3,36481,3,1672319399),(126055,3,36482,3,1672319399),(126056,3,36483,3,1672319399),(126057,3,36484,3,1672319399),(126058,3,36485,3,1672319399),(126059,3,36486,3,1672319399),(126060,3,36487,3,1672319399),(126061,3,36488,3,1672319399),(126062,3,36489,3,1672319399),(126063,3,36490,3,1672319399),(126064,3,36491,3,1672319399),(126065,3,36492,3,1672319399),(126066,3,36493,3,1672319399),(126067,3,36494,3,1672319399),(126068,3,36495,3,1672319399),(126069,3,36496,3,1672319399),(126070,3,36497,3,1672319399),(126071,3,36498,3,1672319399),(126072,3,36499,3,1672319399),(126073,3,36500,3,1672319399),(126074,3,36521,3,1672319399),(126075,3,36522,3,1672319399),(126076,3,36523,3,1672319399),(126077,3,36524,3,1672319399),(126078,3,36525,3,1672319399),(126079,3,36526,3,1672319399),(126080,3,36527,3,1672319399),(126081,3,36528,3,1672319399),(126082,3,36529,3,1672319399),(126083,3,36530,3,1672319399),(126084,3,36531,3,1672319399),(126085,3,36532,3,1672319399),(126086,3,36533,3,1672319399),(126087,3,36534,3,1672319399),(126088,3,36535,3,1672319399),(126089,3,36536,3,1672319399),(126090,3,36537,3,1672319399),(126091,3,36538,3,1672319399),(126092,3,36539,3,1672319399),(126093,3,36540,3,1672319399),(126094,3,36824,3,1672319399),(126095,3,36825,3,1672319399),(126096,3,39803,3,1672319399),(126097,3,40460,3,1672319399),(126098,3,40461,3,1672319399),(126099,3,40462,3,1672319399),(126100,3,40463,3,1672319399),(126101,3,40464,3,1672319399),(126102,3,40465,3,1672319399),(126103,3,40663,3,1672319399),(126104,3,40664,3,1672319399),(126105,3,40665,3,1672319399),(126106,3,40666,3,1672319399),(126107,3,40667,3,1672319399),(126108,3,40668,3,1672319399),(126109,3,40669,3,1672319399),(126110,3,40670,3,1672319399),(126111,3,40690,3,1672319399),(126112,3,40691,3,1672319399),(126113,3,40692,3,1672319399),(126114,3,40693,3,1672319399),(126115,3,40694,3,1672319399),(126116,3,40695,3,1672319399),(126117,3,40696,3,1672319399),(126118,3,40697,3,1672319399),(126119,3,40698,3,1672319399),(126120,3,40699,3,1672319399),(126121,3,40700,3,1672319399),(126122,3,40701,3,1672319399),(126123,3,40702,3,1672319399),(126124,3,40703,3,1672319399),(126125,3,40704,3,1672319399),(126126,3,40705,3,1672319399),(126127,3,40706,3,1672319399),(126128,3,40707,3,1672319399),(126129,3,40721,3,1672319399),(126130,3,40722,3,1672319399),(126131,3,40723,3,1672319399),(126132,3,40724,3,1672319399),(126133,3,40725,3,1672319399),(126134,3,40726,3,1672319399),(126135,3,40727,3,1672319399),(126136,3,40728,3,1672319399),(126137,3,40729,3,1672319399),(126138,3,40730,3,1672319399),(126139,3,40743,3,1672319399),(126140,3,40744,3,1672319399),(126141,3,40745,3,1672319399),(126142,3,40746,3,1672319399),(126143,3,40747,3,1672319399),(126144,3,40748,3,1672319399),(126145,3,40749,3,1672319399),(126146,3,40750,3,1672319399),(126147,3,40751,3,1672319399),(126148,3,40765,3,1672319399),(126149,3,40766,3,1672319399),(126150,3,40767,3,1672319399),(126151,3,40768,3,1672319399),(126152,3,40769,3,1672319399),(126153,3,40770,3,1672319399),(126154,3,40771,3,1672319399),(126155,3,40772,3,1672319399),(126156,3,40773,3,1672319399),(126157,3,40774,3,1672319399),(126158,3,40788,3,1672319399),(126159,3,40789,3,1672319399),(126160,3,40790,3,1672319399),(126161,3,40791,3,1672319399),(126162,3,40792,3,1672319399),(126163,3,40793,3,1672319399),(126164,3,40794,3,1672319399),(126165,3,40795,3,1672319399),(126166,3,40796,3,1672319399),(126167,3,40797,3,1672319399),(126168,3,40834,3,1672319399),(126169,3,40835,3,1672319399),(126170,3,40836,3,1672319399),(126171,3,40837,3,1672319399),(126172,3,40838,3,1672319399),(126173,3,40839,3,1672319399),(126174,3,40840,3,1672319399),(126175,3,40841,3,1672319399),(126176,3,40842,3,1672319399),(126177,3,40843,3,1672319399),(126178,3,42686,3,1672319399),(126179,3,42687,3,1672319399),(126180,3,42688,3,1672319399),(126181,3,42689,3,1672319399),(126182,3,42690,3,1672319399),(126183,3,42987,3,1672319399),(126184,3,42988,3,1672319399),(126185,3,42989,3,1672319399),(126186,3,42990,3,1672319399),(126187,3,42991,3,1672319399),(126188,3,42992,3,1672319399),(126189,3,42993,3,1672319399),(126190,3,42994,3,1672319399),(126191,3,42995,3,1672319399),(126192,3,42996,3,1672319399),(126193,3,42997,3,1672319399),(126194,3,42998,3,1672319399),(126195,3,42999,3,1672319399),(126196,3,43000,3,1672319399),(126197,3,43001,3,1672319399),(126198,3,43002,3,1672319399),(126199,3,43003,3,1672319399),(126200,3,43004,3,1672319399),(126201,3,43005,3,1672319399),(126202,3,43006,3,1672319399),(126203,3,43007,3,1672319399),(126204,3,43008,3,1672319399),(126205,3,43009,3,1672319399),(126206,3,43010,3,1672319399),(126207,3,43011,3,1672319399),(126208,3,43012,3,1672319399),(126209,3,43013,3,1672319399),(126210,3,43014,3,1672319399),(126211,3,43015,3,1672319399),(126212,3,43016,3,1672319399),(126213,3,43017,3,1672319399),(126214,3,43050,3,1672319399),(126215,3,43051,3,1672319399),(126216,3,43052,3,1672319399),(126217,3,43053,3,1672319399),(126218,3,43054,3,1672319399),(126219,3,43055,3,1672319399),(126220,3,43056,3,1672319399),(126221,3,43057,3,1672319399),(126222,3,43058,3,1672319399),(126223,3,43059,3,1672319399),(126224,3,43060,3,1672319399),(126225,3,43061,3,1672319399),(126226,3,43062,3,1672319399),(126227,3,43063,3,1672319399),(126228,3,43064,3,1672319399),(126229,3,43065,3,1672319399),(126230,3,43066,3,1672319399),(126231,3,43067,3,1672319399),(126232,3,43068,3,1672319399),(126233,3,43069,3,1672319399),(126234,3,43070,3,1672319399),(126235,3,43071,3,1672319399),(126236,3,43072,3,1672319399),(126237,3,43073,3,1672319399),(126238,3,43074,3,1672319399),(126239,3,43075,3,1672319399),(126240,3,43076,3,1672319399),(126241,3,43137,3,1672319399),(126242,3,43138,3,1672319399),(126243,3,43139,3,1672319399),(126244,3,43140,3,1672319399),(126245,3,43141,3,1672319399),(126246,3,43142,3,1672319399),(126247,3,43143,3,1672319399),(126248,3,43144,3,1672319399),(126249,3,43145,3,1672319399),(126250,3,43146,3,1672319399),(126251,3,43147,3,1672319399),(126252,3,43148,3,1672319399),(126253,3,43149,3,1672319399),(126254,3,43150,3,1672319399),(126255,3,43151,3,1672319399),(126256,3,43152,3,1672319399),(126257,3,43153,3,1672319399),(126258,3,43154,3,1672319399),(126259,3,43155,3,1672319399),(126260,3,43168,3,1672319399),(126261,3,43169,3,1672319399),(126262,3,43170,3,1672319399),(126263,3,43171,3,1672319399),(126264,3,43172,3,1672319399),(126265,3,44319,3,1672319399),(126266,3,44320,3,1672319399),(126267,3,44321,3,1672319399),(126268,3,44322,3,1672319399),(126269,3,44323,3,1672319399),(126270,3,44324,3,1672319399),(126271,3,44325,3,1672319399),(126272,3,44326,3,1672319399),(126273,3,44327,3,1672319399),(126274,3,44328,3,1672319399),(126275,3,44329,3,1672319399),(126276,3,44330,3,1672319399),(126277,3,44331,3,1672319399),(126278,3,44332,3,1672319399),(126279,3,44333,3,1672319399),(126280,3,44334,3,1672319399),(126281,3,44403,3,1672319399),(126282,3,44404,3,1672319399),(126283,3,44405,3,1672319399),(126284,3,44406,3,1672319399),(126285,3,44407,3,1672319399),(126286,3,44408,3,1672319399),(126287,3,44409,3,1672319399),(126288,3,44410,3,1672319399),(126289,3,44411,3,1672319399),(126290,3,44412,3,1672319399),(126291,3,44413,3,1672319399),(126292,3,44414,3,1672319399),(126293,3,44415,3,1672319399),(126294,3,44416,3,1672319399),(126295,3,44417,3,1672319399),(126296,3,44418,3,1672319399),(126297,3,44419,3,1672319399),(126298,3,44420,3,1672319399),(126299,3,44421,3,1672319399),(126300,3,44431,3,1672319399),(126301,3,44432,3,1672319399),(126302,3,44434,3,1672319399),(126303,3,44435,3,1672319399),(126304,1,10523,2,1672319399),(126305,1,10549,2,1672319399),(126306,1,10550,2,1672319399),(126307,1,10523,3,1672319399),(126308,1,10549,3,1672319399),(126309,1,10550,3,1672319399),(126310,3,22907,2,1672319399),(126311,3,22984,2,1672319399),(126312,3,22987,2,1672319399),(126313,3,23540,2,1672319399),(126314,3,27031,2,1672319399),(126315,3,27473,2,1672319399),(126316,3,27474,2,1672319399),(126317,3,27475,2,1672319399),(126318,3,27476,2,1672319399),(126319,3,27512,2,1672319399),(126320,3,27513,2,1672319399),(126321,3,27514,2,1672319399),(126322,3,27515,2,1672319399),(126323,3,27548,2,1672319399),(126324,3,27549,2,1672319399),(126325,3,27550,2,1672319399),(126326,3,27551,2,1672319399),(126327,3,27587,2,1672319399),(126328,3,27588,2,1672319399),(126329,3,27589,2,1672319399),(126330,3,27665,2,1672319399),(126331,3,27666,2,1672319399),(126332,3,27667,2,1672319399),(126333,3,27668,2,1672319399),(126334,3,27669,2,1672319399),(126335,3,28346,2,1672319399),(126336,3,28347,2,1672319399),(126337,3,28348,2,1672319399),(126338,3,28349,2,1672319399),(126339,3,28350,2,1672319399),(126340,3,28351,2,1672319399),(126341,3,28352,2,1672319399),(126342,3,28353,2,1672319399),(126343,3,30057,2,1672319399),(126344,3,30058,2,1672319399),(126345,3,30059,2,1672319399),(126346,3,30060,2,1672319399),(126347,3,30061,2,1672319399),(126348,3,30062,2,1672319399),(126349,3,30063,2,1672319399),(126350,3,30064,2,1672319399),(126351,3,30065,2,1672319399),(126352,3,30147,2,1672319399),(126353,3,30148,2,1672319399),(126354,3,30193,2,1672319399),(126355,3,30194,2,1672319399),(126356,3,30195,2,1672319399),(126357,3,30236,2,1672319399),(126358,3,30237,2,1672319399),(126359,3,30238,2,1672319399),(126360,3,30571,2,1672319399),(126361,3,30572,2,1672319399),(126362,3,30713,2,1672319399),(126363,3,30874,2,1672319399),(126364,3,30875,2,1672319399),(126365,3,30876,2,1672319399),(126366,3,30961,2,1672319399),(126367,3,30962,2,1672319399),(126368,3,32619,2,1672319399),(126369,3,32620,2,1672319399),(126370,3,32668,2,1672319399),(126371,3,32669,2,1672319399),(126372,3,32866,2,1672319399),(126373,3,32867,2,1672319399),(126374,3,32868,2,1672319399),(126375,3,32869,2,1672319399),(126376,3,32870,2,1672319399),(126377,3,33520,2,1672319399),(126378,3,33521,2,1672319399),(126379,3,35280,2,1672319399),(126380,3,35281,2,1672319399),(126381,3,35282,2,1672319399),(126382,3,35283,2,1672319399),(126383,3,35284,2,1672319399),(126384,3,35285,2,1672319399),(126385,3,35286,2,1672319399),(126386,3,35287,2,1672319399),(126387,3,35288,2,1672319399),(126388,3,35289,2,1672319399),(126389,3,35424,2,1672319399),(126390,3,35425,2,1672319399),(126391,3,35426,2,1672319399),(126392,3,35427,2,1672319399),(126393,3,35428,2,1672319399),(126394,3,35429,2,1672319399),(126395,3,35430,2,1672319399),(126396,3,35431,2,1672319399),(126397,3,35432,2,1672319399),(126398,3,35433,2,1672319399),(126399,3,35434,2,1672319399),(126400,3,35435,2,1672319399),(126401,3,35436,2,1672319399),(126402,3,35437,2,1672319399),(126403,3,35438,2,1672319399),(126404,3,36168,2,1672319399),(126405,3,36169,2,1672319399),(126406,3,36170,2,1672319399),(126407,3,36171,2,1672319399),(126408,3,36172,2,1672319399),(126409,3,36173,2,1672319399),(126410,3,36174,2,1672319399),(126411,3,36175,2,1672319399),(126412,3,36176,2,1672319399),(126413,3,36177,2,1672319399),(126414,3,36219,2,1672319399),(126415,3,36220,2,1672319399),(126416,3,36221,2,1672319399),(126417,3,36222,2,1672319399),(126418,3,36223,2,1672319399),(126419,3,36224,2,1672319399),(126420,3,36225,2,1672319399),(126421,3,36226,2,1672319399),(126422,3,36268,2,1672319399),(126423,3,36269,2,1672319399),(126424,3,36270,2,1672319399),(126425,3,36271,2,1672319399),(126426,3,36272,2,1672319399),(126427,3,36273,2,1672319399),(126428,3,36274,2,1672319399),(126429,3,36301,2,1672319399),(126430,3,36302,2,1672319399),(126431,3,36303,2,1672319399),(126432,3,36304,2,1672319399),(126433,3,36305,2,1672319399),(126434,3,36306,2,1672319399),(126435,3,36307,2,1672319399),(126436,3,36308,2,1672319399),(126437,3,36350,2,1672319399),(126438,3,36351,2,1672319399),(126439,3,36352,2,1672319399),(126440,3,36353,2,1672319399),(126441,3,36354,2,1672319399),(126442,3,36355,2,1672319399),(126443,3,36356,2,1672319399),(126444,3,36383,2,1672319399),(126445,3,36384,2,1672319399),(126446,3,36385,2,1672319399),(126447,3,36386,2,1672319399),(126448,3,36387,2,1672319399),(126449,3,36388,2,1672319399),(126450,3,36389,2,1672319399),(126451,3,36390,2,1672319399),(126452,3,36432,2,1672319399),(126453,3,36433,2,1672319399),(126454,3,36434,2,1672319399),(126455,3,36435,2,1672319399),(126456,3,36436,2,1672319399),(126457,3,36437,2,1672319399),(126458,3,36438,2,1672319399),(126459,3,36465,2,1672319399),(126460,3,36466,2,1672319399),(126461,3,36467,2,1672319399),(126462,3,36468,2,1672319399),(126463,3,36469,2,1672319399),(126464,3,36470,2,1672319399),(126465,3,36471,2,1672319399),(126466,3,36472,2,1672319399),(126467,3,36514,2,1672319399),(126468,3,36515,2,1672319399),(126469,3,36516,2,1672319399),(126470,3,36517,2,1672319399),(126471,3,36518,2,1672319399),(126472,3,36519,2,1672319399),(126473,3,36520,2,1672319399),(126474,3,40454,2,1672319399),(126475,3,40455,2,1672319399),(126476,3,40643,2,1672319399),(126477,3,40644,2,1672319399),(126478,3,40645,2,1672319399),(126479,3,40646,2,1672319399),(126480,3,40647,2,1672319399),(126481,3,40656,2,1672319399),(126482,3,40657,2,1672319399),(126483,3,40658,2,1672319399),(126484,3,40659,2,1672319399),(126485,3,40660,2,1672319399),(126486,3,40661,2,1672319399),(126487,3,40662,2,1672319399),(126488,3,40719,2,1672319399),(126489,3,40720,2,1672319399),(126490,3,40742,2,1672319399),(126491,3,40763,2,1672319399),(126492,3,40764,2,1672319399),(126493,3,40786,2,1672319399),(126494,3,40787,2,1672319399),(126495,3,40832,2,1672319399),(126496,3,40833,2,1672319399),(126497,3,42684,2,1672319399),(126498,3,42685,2,1672319399),(126499,3,42986,2,1672319399),(126500,3,43047,2,1672319399),(126501,3,43048,2,1672319399),(126502,3,43049,2,1672319399),(126503,3,43133,2,1672319399),(126504,3,43134,2,1672319399),(126505,3,43135,2,1672319399),(126506,3,43136,2,1672319399),(126507,3,43166,2,1672319399),(126508,3,43167,2,1672319399),(126509,3,44314,2,1672319399),(126510,3,44315,2,1672319399),(126511,3,44316,2,1672319399),(126512,3,44317,2,1672319399),(126513,3,44318,2,1672319399),(126514,3,44395,2,1672319399),(126515,3,44396,2,1672319399),(126516,3,44397,2,1672319399),(126517,3,44398,2,1672319399),(126518,3,44399,2,1672319399),(126519,3,44400,2,1672319399),(126520,3,44401,2,1672319399),(126521,3,44402,2,1672319399),(126522,3,22907,3,1672319399),(126523,3,22984,3,1672319399),(126524,3,22987,3,1672319399),(126525,3,23540,3,1672319399),(126526,3,27031,3,1672319399),(126527,3,27473,3,1672319399),(126528,3,27474,3,1672319399),(126529,3,27475,3,1672319399),(126530,3,27476,3,1672319399),(126531,3,27512,3,1672319399),(126532,3,27513,3,1672319399),(126533,3,27514,3,1672319399),(126534,3,27515,3,1672319399),(126535,3,27548,3,1672319399),(126536,3,27549,3,1672319399),(126537,3,27550,3,1672319399),(126538,3,27551,3,1672319399),(126539,3,27587,3,1672319399),(126540,3,27588,3,1672319399),(126541,3,27589,3,1672319399),(126542,3,27665,3,1672319399),(126543,3,27666,3,1672319399),(126544,3,27667,3,1672319399),(126545,3,27668,3,1672319399),(126546,3,27669,3,1672319399),(126547,3,28346,3,1672319399),(126548,3,28347,3,1672319399),(126549,3,28348,3,1672319399),(126550,3,28349,3,1672319399),(126551,3,28350,3,1672319399),(126552,3,28351,3,1672319399),(126553,3,28352,3,1672319399),(126554,3,28353,3,1672319399),(126555,3,30057,3,1672319399),(126556,3,30058,3,1672319399),(126557,3,30059,3,1672319399),(126558,3,30060,3,1672319399),(126559,3,30061,3,1672319399),(126560,3,30062,3,1672319399),(126561,3,30063,3,1672319399),(126562,3,30064,3,1672319399),(126563,3,30065,3,1672319399),(126564,3,30147,3,1672319399),(126565,3,30148,3,1672319399),(126566,3,30193,3,1672319399),(126567,3,30194,3,1672319399),(126568,3,30195,3,1672319399),(126569,3,30236,3,1672319399),(126570,3,30237,3,1672319399),(126571,3,30238,3,1672319399),(126572,3,30571,3,1672319399),(126573,3,30572,3,1672319399),(126574,3,30713,3,1672319399),(126575,3,30874,3,1672319399),(126576,3,30875,3,1672319399),(126577,3,30876,3,1672319399),(126578,3,30961,3,1672319399),(126579,3,30962,3,1672319399),(126580,3,32619,3,1672319399),(126581,3,32620,3,1672319399),(126582,3,32668,3,1672319399),(126583,3,32669,3,1672319399),(126584,3,32866,3,1672319399),(126585,3,32867,3,1672319399),(126586,3,32868,3,1672319399),(126587,3,32869,3,1672319399),(126588,3,32870,3,1672319399),(126589,3,33520,3,1672319399),(126590,3,33521,3,1672319399),(126591,3,35280,3,1672319399),(126592,3,35281,3,1672319399),(126593,3,35282,3,1672319399),(126594,3,35283,3,1672319399),(126595,3,35284,3,1672319399),(126596,3,35285,3,1672319399),(126597,3,35286,3,1672319399),(126598,3,35287,3,1672319399),(126599,3,35288,3,1672319399),(126600,3,35289,3,1672319399),(126601,3,35424,3,1672319399),(126602,3,35425,3,1672319399),(126603,3,35426,3,1672319399),(126604,3,35427,3,1672319399),(126605,3,35428,3,1672319399),(126606,3,35429,3,1672319399),(126607,3,35430,3,1672319399),(126608,3,35431,3,1672319399),(126609,3,35432,3,1672319399),(126610,3,35433,3,1672319399),(126611,3,35434,3,1672319399),(126612,3,35435,3,1672319399),(126613,3,35436,3,1672319399),(126614,3,35437,3,1672319399),(126615,3,35438,3,1672319399),(126616,3,36168,3,1672319399),(126617,3,36169,3,1672319399),(126618,3,36170,3,1672319399),(126619,3,36171,3,1672319399),(126620,3,36172,3,1672319399),(126621,3,36173,3,1672319399),(126622,3,36174,3,1672319399),(126623,3,36175,3,1672319399),(126624,3,36176,3,1672319399),(126625,3,36177,3,1672319399),(126626,3,36219,3,1672319399),(126627,3,36220,3,1672319399),(126628,3,36221,3,1672319399),(126629,3,36222,3,1672319399),(126630,3,36223,3,1672319399),(126631,3,36224,3,1672319399),(126632,3,36225,3,1672319399),(126633,3,36226,3,1672319399),(126634,3,36268,3,1672319399),(126635,3,36269,3,1672319399),(126636,3,36270,3,1672319399),(126637,3,36271,3,1672319399),(126638,3,36272,3,1672319399),(126639,3,36273,3,1672319399),(126640,3,36274,3,1672319399),(126641,3,36301,3,1672319399),(126642,3,36302,3,1672319399),(126643,3,36303,3,1672319399),(126644,3,36304,3,1672319399),(126645,3,36305,3,1672319399),(126646,3,36306,3,1672319399),(126647,3,36307,3,1672319399),(126648,3,36308,3,1672319399),(126649,3,36350,3,1672319399),(126650,3,36351,3,1672319399),(126651,3,36352,3,1672319399),(126652,3,36353,3,1672319399),(126653,3,36354,3,1672319399),(126654,3,36355,3,1672319399),(126655,3,36356,3,1672319399),(126656,3,36383,3,1672319399),(126657,3,36384,3,1672319399),(126658,3,36385,3,1672319399),(126659,3,36386,3,1672319399),(126660,3,36387,3,1672319399),(126661,3,36388,3,1672319399),(126662,3,36389,3,1672319399),(126663,3,36390,3,1672319399),(126664,3,36432,3,1672319399),(126665,3,36433,3,1672319399),(126666,3,36434,3,1672319399),(126667,3,36435,3,1672319399),(126668,3,36436,3,1672319399),(126669,3,36437,3,1672319399),(126670,3,36438,3,1672319399),(126671,3,36465,3,1672319399),(126672,3,36466,3,1672319399),(126673,3,36467,3,1672319399),(126674,3,36468,3,1672319399),(126675,3,36469,3,1672319399),(126676,3,36470,3,1672319399),(126677,3,36471,3,1672319399),(126678,3,36472,3,1672319399),(126679,3,36514,3,1672319399),(126680,3,36515,3,1672319399),(126681,3,36516,3,1672319399),(126682,3,36517,3,1672319399),(126683,3,36518,3,1672319399),(126684,3,36519,3,1672319399),(126685,3,36520,3,1672319399),(126686,3,40454,3,1672319399),(126687,3,40455,3,1672319399),(126688,3,40643,3,1672319399),(126689,3,40644,3,1672319399),(126690,3,40645,3,1672319399),(126691,3,40646,3,1672319399),(126692,3,40647,3,1672319399),(126693,3,40656,3,1672319399),(126694,3,40657,3,1672319399),(126695,3,40658,3,1672319399),(126696,3,40659,3,1672319399),(126697,3,40660,3,1672319399),(126698,3,40661,3,1672319399),(126699,3,40662,3,1672319399),(126700,3,40719,3,1672319399),(126701,3,40720,3,1672319399),(126702,3,40742,3,1672319399),(126703,3,40763,3,1672319399),(126704,3,40764,3,1672319399),(126705,3,40786,3,1672319399),(126706,3,40787,3,1672319399),(126707,3,40832,3,1672319399),(126708,3,40833,3,1672319399),(126709,3,42684,3,1672319399),(126710,3,42685,3,1672319399),(126711,3,42986,3,1672319399),(126712,3,43047,3,1672319399),(126713,3,43048,3,1672319399),(126714,3,43049,3,1672319399),(126715,3,43133,3,1672319399),(126716,3,43134,3,1672319399),(126717,3,43135,3,1672319399),(126718,3,43136,3,1672319399),(126719,3,43166,3,1672319399),(126720,3,43167,3,1672319399),(126721,3,44314,3,1672319399),(126722,3,44315,3,1672319399),(126723,3,44316,3,1672319399),(126724,3,44317,3,1672319399),(126725,3,44318,3,1672319399),(126726,3,44395,3,1672319399),(126727,3,44396,3,1672319399),(126728,3,44397,3,1672319399),(126729,3,44398,3,1672319399),(126730,3,44399,3,1672319399),(126731,3,44400,3,1672319399),(126732,3,44401,3,1672319399),(126733,3,44402,3,1672319399),(126734,3,22875,2,1672319399),(126735,3,22876,2,1672319399),(126736,3,22877,2,1672319399),(126737,3,22878,2,1672319399),(126738,3,22879,2,1672319399),(126739,3,22880,2,1672319399),(126740,3,22881,2,1672319399),(126741,3,22882,2,1672319399),(126742,3,22883,2,1672319399),(126743,3,22884,2,1672319399),(126744,3,22885,2,1672319399),(126745,3,22886,2,1672319399),(126746,3,22888,2,1672319399),(126747,3,22891,2,1672319399),(126748,3,22892,2,1672319399),(126749,3,22893,2,1672319399),(126750,3,22894,2,1672319399),(126751,3,22895,2,1672319399),(126752,3,22896,2,1672319399),(126753,3,22897,2,1672319399),(126754,3,22898,2,1672319399),(126755,3,22899,2,1672319399),(126756,3,22900,2,1672319399),(126757,3,22901,2,1672319399),(126758,3,22902,2,1672319399),(126759,3,22903,2,1672319399),(126760,3,22961,2,1672319399),(126761,3,22962,2,1672319399),(126762,3,22963,2,1672319399),(126763,3,22965,2,1672319399),(126764,3,22968,2,1672319399),(126765,3,22971,2,1672319399),(126766,3,22972,2,1672319399),(126767,3,22973,2,1672319399),(126768,3,22974,2,1672319399),(126769,3,22978,2,1672319399),(126770,3,22980,2,1672319399),(126771,3,22981,2,1672319399),(126772,3,22982,2,1672319399),(126773,3,22983,2,1672319399),(126774,3,23644,2,1672319399),(126775,3,27152,2,1672319399),(126776,3,27154,2,1672319399),(126777,3,27157,2,1672319399),(126778,3,27376,2,1672319399),(126779,3,27508,2,1672319399),(126780,3,27509,2,1672319399),(126781,3,27510,2,1672319399),(126782,3,27511,2,1672319399),(126783,3,27543,2,1672319399),(126784,3,27544,2,1672319399),(126785,3,27545,2,1672319399),(126786,3,27546,2,1672319399),(126787,3,27547,2,1672319399),(126788,3,27579,2,1672319399),(126789,3,27580,2,1672319399),(126790,3,27582,2,1672319399),(126791,3,27583,2,1672319399),(126792,3,27584,2,1672319399),(126793,3,27585,2,1672319399),(126794,3,27586,2,1672319399),(126795,3,28341,2,1672319399),(126796,3,28342,2,1672319399),(126797,3,28344,2,1672319399),(126798,3,28345,2,1672319399),(126799,3,29844,2,1672319399),(126800,3,29845,2,1672319399),(126801,3,29846,2,1672319399),(126802,3,29847,2,1672319399),(126803,3,29848,2,1672319399),(126804,3,30106,2,1672319399),(126805,3,30109,2,1672319399),(126806,3,30141,2,1672319399),(126807,3,30142,2,1672319399),(126808,3,30187,2,1672319399),(126809,3,30188,2,1672319399),(126810,3,30189,2,1672319399),(126811,3,30190,2,1672319399),(126812,3,30191,2,1672319399),(126813,3,30192,2,1672319399),(126814,3,30230,2,1672319399),(126815,3,30231,2,1672319399),(126816,3,30234,2,1672319399),(126817,3,30235,2,1672319399),(126818,3,30527,2,1672319399),(126819,3,30528,2,1672319399),(126820,3,30529,2,1672319399),(126821,3,30530,2,1672319399),(126822,3,30531,2,1672319399),(126823,3,30532,2,1672319399),(126824,3,30533,2,1672319399),(126825,3,30534,2,1672319399),(126826,3,30535,2,1672319399),(126827,3,30536,2,1672319399),(126828,3,30537,2,1672319399),(126829,3,30538,2,1672319399),(126830,3,30539,2,1672319399),(126831,3,30540,2,1672319399),(126832,3,30541,2,1672319399),(126833,3,30542,2,1672319399),(126834,3,30543,2,1672319399),(126835,3,30544,2,1672319399),(126836,3,30545,2,1672319399),(126837,3,30546,2,1672319399),(126838,3,30547,2,1672319399),(126839,3,30548,2,1672319399),(126840,3,30549,2,1672319399),(126841,3,30550,2,1672319399),(126842,3,30551,2,1672319399),(126843,3,30552,2,1672319399),(126844,3,30553,2,1672319399),(126845,3,30554,2,1672319399),(126846,3,30555,2,1672319399),(126847,3,30556,2,1672319399),(126848,3,30557,2,1672319399),(126849,3,30558,2,1672319399),(126850,3,30559,2,1672319399),(126851,3,30560,2,1672319399),(126852,3,30561,2,1672319399),(126853,3,30562,2,1672319399),(126854,3,30563,2,1672319399),(126855,3,30564,2,1672319399),(126856,3,30565,2,1672319399),(126857,3,30566,2,1672319399),(126858,3,30567,2,1672319399),(126859,3,30568,2,1672319399),(126860,3,30569,2,1672319399),(126861,3,30570,2,1672319399),(126862,3,30690,2,1672319399),(126863,3,30691,2,1672319399),(126864,3,30692,2,1672319399),(126865,3,30693,2,1672319399),(126866,3,30694,2,1672319399),(126867,3,30695,2,1672319399),(126868,3,30696,2,1672319399),(126869,3,30697,2,1672319399),(126870,3,30698,2,1672319399),(126871,3,30699,2,1672319399),(126872,3,30700,2,1672319399),(126873,3,30701,2,1672319399),(126874,3,30702,2,1672319399),(126875,3,30703,2,1672319399),(126876,3,30704,2,1672319399),(126877,3,30705,2,1672319399),(126878,3,30706,2,1672319399),(126879,3,30707,2,1672319399),(126880,3,30708,2,1672319399),(126881,3,30709,2,1672319399),(126882,3,30710,2,1672319399),(126883,3,30711,2,1672319399),(126884,3,30712,2,1672319399),(126885,3,30789,2,1672319399),(126886,3,30790,2,1672319399),(126887,3,30821,2,1672319399),(126888,3,30822,2,1672319399),(126889,3,30823,2,1672319399),(126890,3,30824,2,1672319399),(126891,3,30825,2,1672319399),(126892,3,30826,2,1672319399),(126893,3,30827,2,1672319399),(126894,3,30828,2,1672319399),(126895,3,30829,2,1672319399),(126896,3,30830,2,1672319399),(126897,3,30831,2,1672319399),(126898,3,30832,2,1672319399),(126899,3,30833,2,1672319399),(126900,3,30834,2,1672319399),(126901,3,30835,2,1672319399),(126902,3,30836,2,1672319399),(126903,3,30837,2,1672319399),(126904,3,30838,2,1672319399),(126905,3,30839,2,1672319399),(126906,3,30841,2,1672319399),(126907,3,30842,2,1672319399),(126908,3,30843,2,1672319399),(126909,3,30844,2,1672319399),(126910,3,30845,2,1672319399),(126911,3,30846,2,1672319399),(126912,3,30847,2,1672319399),(126913,3,30848,2,1672319399),(126914,3,30849,2,1672319399),(126915,3,30850,2,1672319399),(126916,3,30851,2,1672319399),(126917,3,30852,2,1672319399),(126918,3,30853,2,1672319399),(126919,3,30854,2,1672319399),(126920,3,30855,2,1672319399),(126921,3,30856,2,1672319399),(126922,3,30857,2,1672319399),(126923,3,30858,2,1672319399),(126924,3,30859,2,1672319399),(126925,3,30860,2,1672319399),(126926,3,30861,2,1672319399),(126927,3,30862,2,1672319399),(126928,3,30863,2,1672319399),(126929,3,30864,2,1672319399),(126930,3,30865,2,1672319399),(126931,3,30866,2,1672319399),(126932,3,30867,2,1672319399),(126933,3,30868,2,1672319399),(126934,3,30869,2,1672319399),(126935,3,30870,2,1672319399),(126936,3,30871,2,1672319399),(126937,3,30872,2,1672319399),(126938,3,30873,2,1672319399),(126939,3,30923,2,1672319399),(126940,3,30924,2,1672319399),(126941,3,30925,2,1672319399),(126942,3,30926,2,1672319399),(126943,3,30927,2,1672319399),(126944,3,30928,2,1672319399),(126945,3,30929,2,1672319399),(126946,3,30930,2,1672319399),(126947,3,30931,2,1672319399),(126948,3,30932,2,1672319399),(126949,3,30933,2,1672319399),(126950,3,30934,2,1672319399),(126951,3,30935,2,1672319399),(126952,3,30936,2,1672319399),(126953,3,30937,2,1672319399),(126954,3,30938,2,1672319399),(126955,3,30939,2,1672319399),(126956,3,30940,2,1672319399),(126957,3,30941,2,1672319399),(126958,3,30942,2,1672319399),(126959,3,30943,2,1672319399),(126960,3,30944,2,1672319399),(126961,3,30945,2,1672319399),(126962,3,30946,2,1672319399),(126963,3,30947,2,1672319399),(126964,3,30948,2,1672319399),(126965,3,30949,2,1672319399),(126966,3,30950,2,1672319399),(126967,3,30951,2,1672319399),(126968,3,30952,2,1672319399),(126969,3,30953,2,1672319399),(126970,3,30954,2,1672319399),(126971,3,30955,2,1672319399),(126972,3,30956,2,1672319399),(126973,3,30957,2,1672319399),(126974,3,30958,2,1672319399),(126975,3,30959,2,1672319399),(126976,3,30960,2,1672319399),(126977,3,31054,2,1672319399),(126978,3,31499,2,1672319399),(126979,3,31516,2,1672319399),(126980,3,31517,2,1672319399),(126981,3,31518,2,1672319399),(126982,3,31519,2,1672319399),(126983,3,31520,2,1672319399),(126984,3,31521,2,1672319399),(126985,3,31522,2,1672319399),(126986,3,31523,2,1672319399),(126987,3,31524,2,1672319399),(126988,3,31527,2,1672319399),(126989,3,31529,2,1672319399),(126990,3,31530,2,1672319399),(126991,3,31531,2,1672319399),(126992,3,31544,2,1672319399),(126993,3,31545,2,1672319399),(126994,3,31546,2,1672319399),(126995,3,31547,2,1672319399),(126996,3,31548,2,1672319399),(126997,3,31549,2,1672319399),(126998,3,31550,2,1672319399),(126999,3,31553,2,1672319399),(127000,3,32576,2,1672319399),(127001,3,32577,2,1672319399),(127002,3,32578,2,1672319399),(127003,3,32579,2,1672319399),(127004,3,32580,2,1672319399),(127005,3,32581,2,1672319399),(127006,3,32582,2,1672319399),(127007,3,32583,2,1672319399),(127008,3,32584,2,1672319399),(127009,3,32585,2,1672319399),(127010,3,32586,2,1672319399),(127011,3,32587,2,1672319399),(127012,3,32588,2,1672319399),(127013,3,32589,2,1672319399),(127014,3,32590,2,1672319399),(127015,3,32591,2,1672319399),(127016,3,32592,2,1672319399),(127017,3,32593,2,1672319399),(127018,3,32594,2,1672319399),(127019,3,32595,2,1672319399),(127020,3,32596,2,1672319399),(127021,3,32597,2,1672319399),(127022,3,32598,2,1672319399),(127023,3,32599,2,1672319399),(127024,3,32600,2,1672319399),(127025,3,32601,2,1672319399),(127026,3,32602,2,1672319399),(127027,3,32603,2,1672319399),(127028,3,32604,2,1672319399),(127029,3,32605,2,1672319399),(127030,3,32606,2,1672319399),(127031,3,32607,2,1672319399),(127032,3,32608,2,1672319399),(127033,3,32609,2,1672319399),(127034,3,32610,2,1672319399),(127035,3,32611,2,1672319399),(127036,3,32612,2,1672319399),(127037,3,32613,2,1672319399),(127038,3,32614,2,1672319399),(127039,3,32615,2,1672319399),(127040,3,32616,2,1672319399),(127041,3,32617,2,1672319399),(127042,3,32618,2,1672319399),(127043,3,32634,2,1672319399),(127044,3,32635,2,1672319399),(127045,3,32636,2,1672319399),(127046,3,32637,2,1672319399),(127047,3,32638,2,1672319399),(127048,3,32639,2,1672319399),(127049,3,32640,2,1672319399),(127050,3,32641,2,1672319399),(127051,3,32642,2,1672319399),(127052,3,32643,2,1672319399),(127053,3,32644,2,1672319399),(127054,3,32645,2,1672319399),(127055,3,32646,2,1672319399),(127056,3,32647,2,1672319399),(127057,3,32648,2,1672319399),(127058,3,32649,2,1672319399),(127059,3,32650,2,1672319399),(127060,3,32651,2,1672319399),(127061,3,32652,2,1672319399),(127062,3,32653,2,1672319399),(127063,3,32654,2,1672319399),(127064,3,32655,2,1672319399),(127065,3,32656,2,1672319399),(127066,3,32657,2,1672319399),(127067,3,32658,2,1672319399),(127068,3,32659,2,1672319399),(127069,3,32660,2,1672319399),(127070,3,32661,2,1672319399),(127071,3,32662,2,1672319399),(127072,3,32663,2,1672319399),(127073,3,32664,2,1672319399),(127074,3,32665,2,1672319399),(127075,3,32666,2,1672319399),(127076,3,32667,2,1672319399),(127077,3,32780,2,1672319399),(127078,3,32781,2,1672319399),(127079,3,32782,2,1672319399),(127080,3,32783,2,1672319399),(127081,3,32784,2,1672319399),(127082,3,32785,2,1672319399),(127083,3,32786,2,1672319399),(127084,3,32787,2,1672319399),(127085,3,32788,2,1672319399),(127086,3,32789,2,1672319399),(127087,3,32790,2,1672319399),(127088,3,32791,2,1672319399),(127089,3,32792,2,1672319399),(127090,3,32793,2,1672319399),(127091,3,32794,2,1672319399),(127092,3,32795,2,1672319399),(127093,3,32796,2,1672319399),(127094,3,32797,2,1672319399),(127095,3,32798,2,1672319399),(127096,3,32799,2,1672319399),(127097,3,32800,2,1672319399),(127098,3,32801,2,1672319399),(127099,3,32802,2,1672319399),(127100,3,32803,2,1672319399),(127101,3,32804,2,1672319399),(127102,3,32805,2,1672319399),(127103,3,32806,2,1672319399),(127104,3,32807,2,1672319399),(127105,3,32808,2,1672319399),(127106,3,32809,2,1672319399),(127107,3,32810,2,1672319399),(127108,3,32811,2,1672319399),(127109,3,32812,2,1672319399),(127110,3,32813,2,1672319399),(127111,3,32814,2,1672319399),(127112,3,32815,2,1672319399),(127113,3,32816,2,1672319399),(127114,3,32817,2,1672319399),(127115,3,32818,2,1672319399),(127116,3,32819,2,1672319399),(127117,3,32820,2,1672319399),(127118,3,32821,2,1672319399),(127119,3,32822,2,1672319399),(127120,3,32823,2,1672319399),(127121,3,32824,2,1672319399),(127122,3,32825,2,1672319399),(127123,3,32826,2,1672319399),(127124,3,32827,2,1672319399),(127125,3,32828,2,1672319399),(127126,3,32829,2,1672319399),(127127,3,32830,2,1672319399),(127128,3,32831,2,1672319399),(127129,3,32832,2,1672319399),(127130,3,32833,2,1672319399),(127131,3,32834,2,1672319399),(127132,3,32835,2,1672319399),(127133,3,32836,2,1672319399),(127134,3,32837,2,1672319399),(127135,3,32838,2,1672319399),(127136,3,32839,2,1672319399),(127137,3,32840,2,1672319399),(127138,3,32841,2,1672319399),(127139,3,32842,2,1672319399),(127140,3,32843,2,1672319399),(127141,3,32844,2,1672319399),(127142,3,32845,2,1672319399),(127143,3,32846,2,1672319399),(127144,3,32847,2,1672319399),(127145,3,32848,2,1672319399),(127146,3,32849,2,1672319399),(127147,3,32850,2,1672319399),(127148,3,32851,2,1672319399),(127149,3,32852,2,1672319399),(127150,3,32853,2,1672319399),(127151,3,32854,2,1672319399),(127152,3,32855,2,1672319399),(127153,3,32856,2,1672319399),(127154,3,32857,2,1672319399),(127155,3,32858,2,1672319399),(127156,3,32859,2,1672319399),(127157,3,32860,2,1672319399),(127158,3,32861,2,1672319399),(127159,3,32862,2,1672319399),(127160,3,32863,2,1672319399),(127161,3,32864,2,1672319399),(127162,3,32865,2,1672319399),(127163,3,33491,2,1672319399),(127164,3,33492,2,1672319399),(127165,3,33493,2,1672319399),(127166,3,33494,2,1672319399),(127167,3,33495,2,1672319399),(127168,3,33496,2,1672319399),(127169,3,33497,2,1672319399),(127170,3,33498,2,1672319399),(127171,3,33499,2,1672319399),(127172,3,33500,2,1672319399),(127173,3,33501,2,1672319399),(127174,3,33502,2,1672319399),(127175,3,33503,2,1672319399),(127176,3,33504,2,1672319399),(127177,3,33505,2,1672319399),(127178,3,33506,2,1672319399),(127179,3,33507,2,1672319399),(127180,3,33508,2,1672319399),(127181,3,33509,2,1672319399),(127182,3,33510,2,1672319399),(127183,3,33511,2,1672319399),(127184,3,33512,2,1672319399),(127185,3,33513,2,1672319399),(127186,3,33514,2,1672319399),(127187,3,33515,2,1672319399),(127188,3,33516,2,1672319399),(127189,3,33517,2,1672319399),(127190,3,33518,2,1672319399),(127191,3,33519,2,1672319399),(127192,3,34320,2,1672319399),(127193,3,35077,2,1672319399),(127194,3,35078,2,1672319399),(127195,3,35079,2,1672319399),(127196,3,35080,2,1672319399),(127197,3,35081,2,1672319399),(127198,3,35082,2,1672319399),(127199,3,35083,2,1672319399),(127200,3,35084,2,1672319399),(127201,3,35085,2,1672319399),(127202,3,35086,2,1672319399),(127203,3,35087,2,1672319399),(127204,3,35088,2,1672319399),(127205,3,35089,2,1672319399),(127206,3,35090,2,1672319399),(127207,3,35091,2,1672319399),(127208,3,35092,2,1672319399),(127209,3,35093,2,1672319399),(127210,3,35094,2,1672319399),(127211,3,35095,2,1672319399),(127212,3,35096,2,1672319399),(127213,3,35097,2,1672319399),(127214,3,35098,2,1672319399),(127215,3,35099,2,1672319399),(127216,3,35100,2,1672319399),(127217,3,35101,2,1672319399),(127218,3,35102,2,1672319399),(127219,3,35103,2,1672319399),(127220,3,35128,2,1672319399),(127221,3,35406,2,1672319399),(127222,3,35407,2,1672319399),(127223,3,35408,2,1672319399),(127224,3,35409,2,1672319399),(127225,3,35410,2,1672319399),(127226,3,35411,2,1672319399),(127227,3,35412,2,1672319399),(127228,3,35413,2,1672319399),(127229,3,35414,2,1672319399),(127230,3,35415,2,1672319399),(127231,3,35416,2,1672319399),(127232,3,35417,2,1672319399),(127233,3,35418,2,1672319399),(127234,3,35419,2,1672319399),(127235,3,35420,2,1672319399),(127236,3,35421,2,1672319399),(127237,3,35422,2,1672319399),(127238,3,35423,2,1672319399),(127239,3,36160,2,1672319399),(127240,3,36161,2,1672319399),(127241,3,36162,2,1672319399),(127242,3,36163,2,1672319399),(127243,3,36164,2,1672319399),(127244,3,36165,2,1672319399),(127245,3,36166,2,1672319399),(127246,3,36167,2,1672319399),(127247,3,36213,2,1672319399),(127248,3,36214,2,1672319399),(127249,3,36215,2,1672319399),(127250,3,36216,2,1672319399),(127251,3,36217,2,1672319399),(127252,3,36218,2,1672319399),(127253,3,36255,2,1672319399),(127254,3,36256,2,1672319399),(127255,3,36257,2,1672319399),(127256,3,36258,2,1672319399),(127257,3,36259,2,1672319399),(127258,3,36260,2,1672319399),(127259,3,36261,2,1672319399),(127260,3,36262,2,1672319399),(127261,3,36263,2,1672319399),(127262,3,36264,2,1672319399),(127263,3,36265,2,1672319399),(127264,3,36266,2,1672319399),(127265,3,36267,2,1672319399),(127266,3,36295,2,1672319399),(127267,3,36296,2,1672319399),(127268,3,36297,2,1672319399),(127269,3,36298,2,1672319399),(127270,3,36299,2,1672319399),(127271,3,36300,2,1672319399),(127272,3,36337,2,1672319399),(127273,3,36338,2,1672319399),(127274,3,36339,2,1672319399),(127275,3,36340,2,1672319399),(127276,3,36341,2,1672319399),(127277,3,36342,2,1672319399),(127278,3,36343,2,1672319399),(127279,3,36344,2,1672319399),(127280,3,36345,2,1672319399),(127281,3,36346,2,1672319399),(127282,3,36347,2,1672319399),(127283,3,36348,2,1672319399),(127284,3,36349,2,1672319399),(127285,3,36377,2,1672319399),(127286,3,36378,2,1672319399),(127287,3,36379,2,1672319399),(127288,3,36380,2,1672319399),(127289,3,36381,2,1672319399),(127290,3,36382,2,1672319399),(127291,3,36419,2,1672319399),(127292,3,36420,2,1672319399),(127293,3,36421,2,1672319399),(127294,3,36422,2,1672319399),(127295,3,36423,2,1672319399),(127296,3,36424,2,1672319399),(127297,3,36425,2,1672319399),(127298,3,36426,2,1672319399),(127299,3,36427,2,1672319399),(127300,3,36428,2,1672319399),(127301,3,36429,2,1672319399),(127302,3,36430,2,1672319399),(127303,3,36431,2,1672319399),(127304,3,36459,2,1672319399),(127305,3,36460,2,1672319399),(127306,3,36461,2,1672319399),(127307,3,36462,2,1672319399),(127308,3,36463,2,1672319399),(127309,3,36464,2,1672319399),(127310,3,36501,2,1672319399),(127311,3,36502,2,1672319399),(127312,3,36503,2,1672319399),(127313,3,36504,2,1672319399),(127314,3,36505,2,1672319399),(127315,3,36506,2,1672319399),(127316,3,36507,2,1672319399),(127317,3,36508,2,1672319399),(127318,3,36509,2,1672319399),(127319,3,36510,2,1672319399),(127320,3,36511,2,1672319399),(127321,3,36512,2,1672319399),(127322,3,36513,2,1672319399),(127323,3,36822,2,1672319399),(127324,3,36823,2,1672319399),(127325,3,40190,2,1672319399),(127326,3,40191,2,1672319399),(127327,3,40192,2,1672319399),(127328,3,40451,2,1672319399),(127329,3,40600,2,1672319399),(127330,3,40601,2,1672319399),(127331,3,40602,2,1672319399),(127332,3,40603,2,1672319399),(127333,3,40604,2,1672319399),(127334,3,40605,2,1672319399),(127335,3,40606,2,1672319399),(127336,3,40607,2,1672319399),(127337,3,40608,2,1672319399),(127338,3,40609,2,1672319399),(127339,3,40610,2,1672319399),(127340,3,40611,2,1672319399),(127341,3,40612,2,1672319399),(127342,3,40613,2,1672319399),(127343,3,40614,2,1672319399),(127344,3,40629,2,1672319399),(127345,3,40630,2,1672319399),(127346,3,40631,2,1672319399),(127347,3,40632,2,1672319399),(127348,3,40633,2,1672319399),(127349,3,40634,2,1672319399),(127350,3,40635,2,1672319399),(127351,3,40636,2,1672319399),(127352,3,40637,2,1672319399),(127353,3,40638,2,1672319399),(127354,3,40639,2,1672319399),(127355,3,40640,2,1672319399),(127356,3,40641,2,1672319399),(127357,3,40642,2,1672319399),(127358,3,40708,2,1672319399),(127359,3,40709,2,1672319399),(127360,3,40710,2,1672319399),(127361,3,40711,2,1672319399),(127362,3,40712,2,1672319399),(127363,3,40713,2,1672319399),(127364,3,40714,2,1672319399),(127365,3,40715,2,1672319399),(127366,3,40716,2,1672319399),(127367,3,40717,2,1672319399),(127368,3,40718,2,1672319399),(127369,3,40731,2,1672319399),(127370,3,40732,2,1672319399),(127371,3,40733,2,1672319399),(127372,3,40734,2,1672319399),(127373,3,40735,2,1672319399),(127374,3,40736,2,1672319399),(127375,3,40737,2,1672319399),(127376,3,40738,2,1672319399),(127377,3,40739,2,1672319399),(127378,3,40740,2,1672319399),(127379,3,40741,2,1672319399),(127380,3,40752,2,1672319399),(127381,3,40753,2,1672319399),(127382,3,40754,2,1672319399),(127383,3,40755,2,1672319399),(127384,3,40756,2,1672319399),(127385,3,40757,2,1672319399),(127386,3,40758,2,1672319399),(127387,3,40759,2,1672319399),(127388,3,40760,2,1672319399),(127389,3,40761,2,1672319399),(127390,3,40762,2,1672319399),(127391,3,40775,2,1672319399),(127392,3,40776,2,1672319399),(127393,3,40777,2,1672319399),(127394,3,40778,2,1672319399),(127395,3,40779,2,1672319399),(127396,3,40780,2,1672319399),(127397,3,40781,2,1672319399),(127398,3,40782,2,1672319399),(127399,3,40783,2,1672319399),(127400,3,40784,2,1672319399),(127401,3,40785,2,1672319399),(127402,3,40821,2,1672319399),(127403,3,40822,2,1672319399),(127404,3,40823,2,1672319399),(127405,3,40824,2,1672319399),(127406,3,40825,2,1672319399),(127407,3,40826,2,1672319399),(127408,3,40827,2,1672319399),(127409,3,40828,2,1672319399),(127410,3,40829,2,1672319399),(127411,3,40830,2,1672319399),(127412,3,40831,2,1672319399),(127413,3,42179,2,1672319399),(127414,3,42180,2,1672319399),(127415,3,42181,2,1672319399),(127416,3,42182,2,1672319399),(127417,3,42183,2,1672319399),(127418,3,42184,2,1672319399),(127419,3,42185,2,1672319399),(127420,3,42186,2,1672319399),(127421,3,42620,2,1672319399),(127422,3,42621,2,1672319399),(127423,3,42622,2,1672319399),(127424,3,42623,2,1672319399),(127425,3,42624,2,1672319399),(127426,3,42625,2,1672319399),(127427,3,42626,2,1672319399),(127428,3,42627,2,1672319399),(127429,3,42628,2,1672319399),(127430,3,42629,2,1672319399),(127431,3,42630,2,1672319399),(127432,3,42631,2,1672319399),(127433,3,42632,2,1672319399),(127434,3,42633,2,1672319399),(127435,3,42634,2,1672319399),(127436,3,42635,2,1672319399),(127437,3,42636,2,1672319399),(127438,3,42637,2,1672319399),(127439,3,42638,2,1672319399),(127440,3,42639,2,1672319399),(127441,3,42640,2,1672319399),(127442,3,42641,2,1672319399),(127443,3,42930,2,1672319399),(127444,3,42931,2,1672319399),(127445,3,42932,2,1672319399),(127446,3,42933,2,1672319399),(127447,3,42934,2,1672319399),(127448,3,42935,2,1672319399),(127449,3,42936,2,1672319399),(127450,3,42937,2,1672319399),(127451,3,42938,2,1672319399),(127452,3,42939,2,1672319399),(127453,3,42940,2,1672319399),(127454,3,42941,2,1672319399),(127455,3,42942,2,1672319399),(127456,3,42943,2,1672319399),(127457,3,42944,2,1672319399),(127458,3,42945,2,1672319399),(127459,3,42946,2,1672319399),(127460,3,42947,2,1672319399),(127461,3,42948,2,1672319399),(127462,3,42949,2,1672319399),(127463,3,42950,2,1672319399),(127464,3,42951,2,1672319399),(127465,3,42952,2,1672319399),(127466,3,42953,2,1672319399),(127467,3,42954,2,1672319399),(127468,3,42955,2,1672319399),(127469,3,42956,2,1672319399),(127470,3,42957,2,1672319399),(127471,3,42958,2,1672319399),(127472,3,42959,2,1672319399),(127473,3,42960,2,1672319399),(127474,3,42961,2,1672319399),(127475,3,42962,2,1672319399),(127476,3,42963,2,1672319399),(127477,3,42964,2,1672319399),(127478,3,42965,2,1672319399),(127479,3,42966,2,1672319399),(127480,3,42967,2,1672319399),(127481,3,42968,2,1672319399),(127482,3,42969,2,1672319399),(127483,3,42970,2,1672319399),(127484,3,42971,2,1672319399),(127485,3,42972,2,1672319399),(127486,3,42973,2,1672319399),(127487,3,42974,2,1672319399),(127488,3,42975,2,1672319399),(127489,3,42976,2,1672319399),(127490,3,42977,2,1672319399),(127491,3,42978,2,1672319399),(127492,3,42979,2,1672319399),(127493,3,42980,2,1672319399),(127494,3,42981,2,1672319399),(127495,3,42982,2,1672319399),(127496,3,42983,2,1672319399),(127497,3,42984,2,1672319399),(127498,3,42985,2,1672319399),(127499,3,43018,2,1672319399),(127500,3,43019,2,1672319399),(127501,3,43020,2,1672319399),(127502,3,43021,2,1672319399),(127503,3,43022,2,1672319399),(127504,3,43023,2,1672319399),(127505,3,43024,2,1672319399),(127506,3,43025,2,1672319399),(127507,3,43026,2,1672319399),(127508,3,43027,2,1672319399),(127509,3,43028,2,1672319399),(127510,3,43029,2,1672319399),(127511,3,43030,2,1672319399),(127512,3,43031,2,1672319399),(127513,3,43032,2,1672319399),(127514,3,43033,2,1672319399),(127515,3,43034,2,1672319399),(127516,3,43035,2,1672319399),(127517,3,43036,2,1672319399),(127518,3,43037,2,1672319399),(127519,3,43038,2,1672319399),(127520,3,43039,2,1672319399),(127521,3,43040,2,1672319399),(127522,3,43041,2,1672319399),(127523,3,43042,2,1672319399),(127524,3,43043,2,1672319399),(127525,3,43044,2,1672319399),(127526,3,43045,2,1672319399),(127527,3,43046,2,1672319399),(127528,3,43081,2,1672319399),(127529,3,43082,2,1672319399),(127530,3,43083,2,1672319399),(127531,3,43084,2,1672319399),(127532,3,43085,2,1672319399),(127533,3,43086,2,1672319399),(127534,3,43087,2,1672319399),(127535,3,43088,2,1672319399),(127536,3,43089,2,1672319399),(127537,3,43090,2,1672319399),(127538,3,43091,2,1672319399),(127539,3,43092,2,1672319399),(127540,3,43093,2,1672319399),(127541,3,43094,2,1672319399),(127542,3,43095,2,1672319399),(127543,3,43096,2,1672319399),(127544,3,43097,2,1672319399),(127545,3,43098,2,1672319399),(127546,3,43099,2,1672319399),(127547,3,43100,2,1672319399),(127548,3,43101,2,1672319399),(127549,3,43102,2,1672319399),(127550,3,43103,2,1672319399),(127551,3,43104,2,1672319399),(127552,3,43105,2,1672319399),(127553,3,43106,2,1672319399),(127554,3,43107,2,1672319399),(127555,3,43108,2,1672319399),(127556,3,43109,2,1672319399),(127557,3,43110,2,1672319399),(127558,3,43111,2,1672319399),(127559,3,43112,2,1672319399),(127560,3,43113,2,1672319399),(127561,3,43114,2,1672319399),(127562,3,43115,2,1672319399),(127563,3,43116,2,1672319399),(127564,3,43117,2,1672319399),(127565,3,43118,2,1672319399),(127566,3,43119,2,1672319399),(127567,3,43120,2,1672319399),(127568,3,43121,2,1672319399),(127569,3,43122,2,1672319399),(127570,3,43123,2,1672319399),(127571,3,43124,2,1672319399),(127572,3,43125,2,1672319399),(127573,3,43126,2,1672319399),(127574,3,43127,2,1672319399),(127575,3,43128,2,1672319399),(127576,3,43129,2,1672319399),(127577,3,43130,2,1672319399),(127578,3,43131,2,1672319399),(127579,3,43132,2,1672319399),(127580,3,43156,2,1672319399),(127581,3,43157,2,1672319399),(127582,3,43158,2,1672319399),(127583,3,43159,2,1672319399),(127584,3,43160,2,1672319399),(127585,3,43161,2,1672319399),(127586,3,43162,2,1672319399),(127587,3,43163,2,1672319399),(127588,3,43164,2,1672319399),(127589,3,43165,2,1672319399),(127590,3,43769,2,1672319399),(127591,3,43780,2,1672319399),(127592,3,43782,2,1672319399),(127593,3,43783,2,1672319399),(127594,3,43784,2,1672319399),(127595,3,43785,2,1672319399),(127596,3,43786,2,1672319399),(127597,3,43788,2,1672319399),(127598,3,43889,2,1672319399),(127599,3,43890,2,1672319399),(127600,3,43891,2,1672319399),(127601,3,43892,2,1672319399),(127602,3,43893,2,1672319399),(127603,3,43894,2,1672319399),(127604,3,43895,2,1672319399),(127605,3,44294,2,1672319399),(127606,3,44295,2,1672319399),(127607,3,44296,2,1672319399),(127608,3,44297,2,1672319399),(127609,3,44298,2,1672319399),(127610,3,44299,2,1672319399),(127611,3,44300,2,1672319399),(127612,3,44301,2,1672319399),(127613,3,44302,2,1672319399),(127614,3,44303,2,1672319399),(127615,3,44304,2,1672319399),(127616,3,44305,2,1672319399),(127617,3,44306,2,1672319399),(127618,3,44307,2,1672319399),(127619,3,44308,2,1672319399),(127620,3,44309,2,1672319399),(127621,3,44310,2,1672319399),(127622,3,44311,2,1672319399),(127623,3,44312,2,1672319399),(127624,3,44313,2,1672319399),(127625,3,44381,2,1672319399),(127626,3,44382,2,1672319399),(127627,3,44383,2,1672319399),(127628,3,44384,2,1672319399),(127629,3,44385,2,1672319399),(127630,3,44386,2,1672319399),(127631,3,44387,2,1672319399),(127632,3,44388,2,1672319399),(127633,3,44389,2,1672319399),(127634,3,44390,2,1672319399),(127635,3,44391,2,1672319399),(127636,3,44392,2,1672319399),(127637,3,44393,2,1672319399),(127638,3,44394,2,1672319399),(127639,3,44430,2,1672319399),(127640,3,44433,2,1672319399),(127641,3,22875,3,1672319399),(127642,3,22876,3,1672319399),(127643,3,22877,3,1672319399),(127644,3,22878,3,1672319399),(127645,3,22879,3,1672319399),(127646,3,22880,3,1672319399),(127647,3,22881,3,1672319399),(127648,3,22882,3,1672319399),(127649,3,22883,3,1672319399),(127650,3,22884,3,1672319399),(127651,3,22885,3,1672319399),(127652,3,22886,3,1672319399),(127653,3,22888,3,1672319399),(127654,3,22891,3,1672319399),(127655,3,22892,3,1672319399),(127656,3,22893,3,1672319399),(127657,3,22894,3,1672319399),(127658,3,22895,3,1672319399),(127659,3,22896,3,1672319399),(127660,3,22897,3,1672319399),(127661,3,22898,3,1672319399),(127662,3,22899,3,1672319399),(127663,3,22900,3,1672319399),(127664,3,22901,3,1672319399),(127665,3,22902,3,1672319399),(127666,3,22903,3,1672319399),(127667,3,22961,3,1672319399),(127668,3,22962,3,1672319399),(127669,3,22963,3,1672319399),(127670,3,22965,3,1672319399),(127671,3,22968,3,1672319399),(127672,3,22971,3,1672319399),(127673,3,22972,3,1672319399),(127674,3,22973,3,1672319399),(127675,3,22974,3,1672319399),(127676,3,22978,3,1672319399),(127677,3,22980,3,1672319399),(127678,3,22981,3,1672319399),(127679,3,22982,3,1672319399),(127680,3,22983,3,1672319399),(127681,3,23644,3,1672319399),(127682,3,27152,3,1672319399),(127683,3,27154,3,1672319399),(127684,3,27157,3,1672319399),(127685,3,27376,3,1672319399),(127686,3,27508,3,1672319399),(127687,3,27509,3,1672319399),(127688,3,27510,3,1672319399),(127689,3,27511,3,1672319399),(127690,3,27543,3,1672319399),(127691,3,27544,3,1672319399),(127692,3,27545,3,1672319399),(127693,3,27546,3,1672319399),(127694,3,27547,3,1672319399),(127695,3,27579,3,1672319399),(127696,3,27580,3,1672319399),(127697,3,27582,3,1672319399),(127698,3,27583,3,1672319399),(127699,3,27584,3,1672319399),(127700,3,27585,3,1672319399),(127701,3,27586,3,1672319399),(127702,3,28341,3,1672319399),(127703,3,28342,3,1672319399),(127704,3,28344,3,1672319399),(127705,3,28345,3,1672319399),(127706,3,29844,3,1672319399),(127707,3,29845,3,1672319399),(127708,3,29846,3,1672319399),(127709,3,29847,3,1672319399),(127710,3,29848,3,1672319399),(127711,3,30106,3,1672319399),(127712,3,30109,3,1672319399),(127713,3,30141,3,1672319399),(127714,3,30142,3,1672319399),(127715,3,30187,3,1672319399),(127716,3,30188,3,1672319399),(127717,3,30189,3,1672319399),(127718,3,30190,3,1672319399),(127719,3,30191,3,1672319399),(127720,3,30192,3,1672319399),(127721,3,30230,3,1672319399),(127722,3,30231,3,1672319399),(127723,3,30234,3,1672319399),(127724,3,30235,3,1672319399),(127725,3,30527,3,1672319399),(127726,3,30528,3,1672319399),(127727,3,30529,3,1672319399),(127728,3,30530,3,1672319399),(127729,3,30531,3,1672319399),(127730,3,30532,3,1672319399),(127731,3,30533,3,1672319399),(127732,3,30534,3,1672319399),(127733,3,30535,3,1672319399),(127734,3,30536,3,1672319399),(127735,3,30537,3,1672319399),(127736,3,30538,3,1672319399),(127737,3,30539,3,1672319399),(127738,3,30540,3,1672319399),(127739,3,30541,3,1672319399),(127740,3,30542,3,1672319399),(127741,3,30543,3,1672319399),(127742,3,30544,3,1672319399),(127743,3,30545,3,1672319399),(127744,3,30546,3,1672319399),(127745,3,30547,3,1672319399),(127746,3,30548,3,1672319399),(127747,3,30549,3,1672319399),(127748,3,30550,3,1672319399),(127749,3,30551,3,1672319399),(127750,3,30552,3,1672319399),(127751,3,30553,3,1672319399),(127752,3,30554,3,1672319399),(127753,3,30555,3,1672319399),(127754,3,30556,3,1672319399),(127755,3,30557,3,1672319399),(127756,3,30558,3,1672319399),(127757,3,30559,3,1672319399),(127758,3,30560,3,1672319399),(127759,3,30561,3,1672319399),(127760,3,30562,3,1672319399),(127761,3,30563,3,1672319399),(127762,3,30564,3,1672319399),(127763,3,30565,3,1672319399),(127764,3,30566,3,1672319399),(127765,3,30567,3,1672319399),(127766,3,30568,3,1672319399),(127767,3,30569,3,1672319399),(127768,3,30570,3,1672319399),(127769,3,30690,3,1672319399),(127770,3,30691,3,1672319399),(127771,3,30692,3,1672319399),(127772,3,30693,3,1672319399),(127773,3,30694,3,1672319399),(127774,3,30695,3,1672319399),(127775,3,30696,3,1672319399),(127776,3,30697,3,1672319399),(127777,3,30698,3,1672319399),(127778,3,30699,3,1672319399),(127779,3,30700,3,1672319399),(127780,3,30701,3,1672319399),(127781,3,30702,3,1672319399),(127782,3,30703,3,1672319399),(127783,3,30704,3,1672319399),(127784,3,30705,3,1672319399),(127785,3,30706,3,1672319399),(127786,3,30707,3,1672319399),(127787,3,30708,3,1672319399),(127788,3,30709,3,1672319399),(127789,3,30710,3,1672319399),(127790,3,30711,3,1672319399),(127791,3,30712,3,1672319399),(127792,3,30789,3,1672319399),(127793,3,30790,3,1672319399),(127794,3,30821,3,1672319399),(127795,3,30822,3,1672319399),(127796,3,30823,3,1672319399),(127797,3,30824,3,1672319399),(127798,3,30825,3,1672319399),(127799,3,30826,3,1672319399),(127800,3,30827,3,1672319399),(127801,3,30828,3,1672319399),(127802,3,30829,3,1672319399),(127803,3,30830,3,1672319399),(127804,3,30831,3,1672319399),(127805,3,30832,3,1672319399),(127806,3,30833,3,1672319399),(127807,3,30834,3,1672319399),(127808,3,30835,3,1672319399),(127809,3,30836,3,1672319399),(127810,3,30837,3,1672319399),(127811,3,30838,3,1672319399),(127812,3,30839,3,1672319399),(127813,3,30841,3,1672319399),(127814,3,30842,3,1672319399),(127815,3,30843,3,1672319399),(127816,3,30844,3,1672319399),(127817,3,30845,3,1672319399),(127818,3,30846,3,1672319399),(127819,3,30847,3,1672319399),(127820,3,30848,3,1672319399),(127821,3,30849,3,1672319399),(127822,3,30850,3,1672319399),(127823,3,30851,3,1672319399),(127824,3,30852,3,1672319399),(127825,3,30853,3,1672319399),(127826,3,30854,3,1672319399),(127827,3,30855,3,1672319399),(127828,3,30856,3,1672319399),(127829,3,30857,3,1672319399),(127830,3,30858,3,1672319399),(127831,3,30859,3,1672319399),(127832,3,30860,3,1672319399),(127833,3,30861,3,1672319399),(127834,3,30862,3,1672319399),(127835,3,30863,3,1672319399),(127836,3,30864,3,1672319399),(127837,3,30865,3,1672319399),(127838,3,30866,3,1672319399),(127839,3,30867,3,1672319399),(127840,3,30868,3,1672319399),(127841,3,30869,3,1672319399),(127842,3,30870,3,1672319399),(127843,3,30871,3,1672319399),(127844,3,30872,3,1672319399),(127845,3,30873,3,1672319399),(127846,3,30923,3,1672319399),(127847,3,30924,3,1672319399),(127848,3,30925,3,1672319399),(127849,3,30926,3,1672319399),(127850,3,30927,3,1672319399),(127851,3,30928,3,1672319399),(127852,3,30929,3,1672319399),(127853,3,30930,3,1672319399),(127854,3,30931,3,1672319399),(127855,3,30932,3,1672319399),(127856,3,30933,3,1672319399),(127857,3,30934,3,1672319399),(127858,3,30935,3,1672319399),(127859,3,30936,3,1672319399),(127860,3,30937,3,1672319399),(127861,3,30938,3,1672319399),(127862,3,30939,3,1672319399),(127863,3,30940,3,1672319399),(127864,3,30941,3,1672319399),(127865,3,30942,3,1672319399),(127866,3,30943,3,1672319399),(127867,3,30944,3,1672319399),(127868,3,30945,3,1672319399),(127869,3,30946,3,1672319399),(127870,3,30947,3,1672319399),(127871,3,30948,3,1672319399),(127872,3,30949,3,1672319399),(127873,3,30950,3,1672319399),(127874,3,30951,3,1672319399),(127875,3,30952,3,1672319399),(127876,3,30953,3,1672319399),(127877,3,30954,3,1672319399),(127878,3,30955,3,1672319399),(127879,3,30956,3,1672319399),(127880,3,30957,3,1672319399),(127881,3,30958,3,1672319399),(127882,3,30959,3,1672319399),(127883,3,30960,3,1672319399),(127884,3,31054,3,1672319399),(127885,3,31499,3,1672319399),(127886,3,31516,3,1672319399),(127887,3,31517,3,1672319399),(127888,3,31518,3,1672319399),(127889,3,31519,3,1672319399),(127890,3,31520,3,1672319399),(127891,3,31521,3,1672319399),(127892,3,31522,3,1672319399),(127893,3,31523,3,1672319399),(127894,3,31524,3,1672319399),(127895,3,31527,3,1672319399),(127896,3,31529,3,1672319399),(127897,3,31530,3,1672319399),(127898,3,31531,3,1672319399),(127899,3,31544,3,1672319399),(127900,3,31545,3,1672319399),(127901,3,31546,3,1672319399),(127902,3,31547,3,1672319399),(127903,3,31548,3,1672319399),(127904,3,31549,3,1672319399),(127905,3,31550,3,1672319399),(127906,3,31553,3,1672319399),(127907,3,32576,3,1672319399),(127908,3,32577,3,1672319399),(127909,3,32578,3,1672319399),(127910,3,32579,3,1672319399),(127911,3,32580,3,1672319399),(127912,3,32581,3,1672319399),(127913,3,32582,3,1672319399),(127914,3,32583,3,1672319399),(127915,3,32584,3,1672319399),(127916,3,32585,3,1672319399),(127917,3,32586,3,1672319399),(127918,3,32587,3,1672319399),(127919,3,32588,3,1672319399),(127920,3,32589,3,1672319399),(127921,3,32590,3,1672319399),(127922,3,32591,3,1672319399),(127923,3,32592,3,1672319399),(127924,3,32593,3,1672319399),(127925,3,32594,3,1672319399),(127926,3,32595,3,1672319399),(127927,3,32596,3,1672319399),(127928,3,32597,3,1672319399),(127929,3,32598,3,1672319399),(127930,3,32599,3,1672319399),(127931,3,32600,3,1672319399),(127932,3,32601,3,1672319399),(127933,3,32602,3,1672319399),(127934,3,32603,3,1672319399),(127935,3,32604,3,1672319399),(127936,3,32605,3,1672319399),(127937,3,32606,3,1672319399),(127938,3,32607,3,1672319399),(127939,3,32608,3,1672319399),(127940,3,32609,3,1672319399),(127941,3,32610,3,1672319399),(127942,3,32611,3,1672319399),(127943,3,32612,3,1672319399),(127944,3,32613,3,1672319399),(127945,3,32614,3,1672319399),(127946,3,32615,3,1672319399),(127947,3,32616,3,1672319399),(127948,3,32617,3,1672319399),(127949,3,32618,3,1672319399),(127950,3,32634,3,1672319399),(127951,3,32635,3,1672319399),(127952,3,32636,3,1672319399),(127953,3,32637,3,1672319399),(127954,3,32638,3,1672319399),(127955,3,32639,3,1672319399),(127956,3,32640,3,1672319399),(127957,3,32641,3,1672319399),(127958,3,32642,3,1672319399),(127959,3,32643,3,1672319399),(127960,3,32644,3,1672319399),(127961,3,32645,3,1672319399),(127962,3,32646,3,1672319399),(127963,3,32647,3,1672319399),(127964,3,32648,3,1672319399),(127965,3,32649,3,1672319399),(127966,3,32650,3,1672319399),(127967,3,32651,3,1672319399),(127968,3,32652,3,1672319399),(127969,3,32653,3,1672319399),(127970,3,32654,3,1672319399),(127971,3,32655,3,1672319399),(127972,3,32656,3,1672319399),(127973,3,32657,3,1672319399),(127974,3,32658,3,1672319399),(127975,3,32659,3,1672319399),(127976,3,32660,3,1672319399),(127977,3,32661,3,1672319399),(127978,3,32662,3,1672319399),(127979,3,32663,3,1672319399),(127980,3,32664,3,1672319399),(127981,3,32665,3,1672319399),(127982,3,32666,3,1672319399),(127983,3,32667,3,1672319399),(127984,3,32780,3,1672319399),(127985,3,32781,3,1672319399),(127986,3,32782,3,1672319399),(127987,3,32783,3,1672319399),(127988,3,32784,3,1672319399),(127989,3,32785,3,1672319399),(127990,3,32786,3,1672319399),(127991,3,32787,3,1672319399),(127992,3,32788,3,1672319399),(127993,3,32789,3,1672319399),(127994,3,32790,3,1672319399),(127995,3,32791,3,1672319399),(127996,3,32792,3,1672319399),(127997,3,32793,3,1672319399),(127998,3,32794,3,1672319399),(127999,3,32795,3,1672319399),(128000,3,32796,3,1672319399),(128001,3,32797,3,1672319399),(128002,3,32798,3,1672319399),(128003,3,32799,3,1672319399),(128004,3,32800,3,1672319399),(128005,3,32801,3,1672319399),(128006,3,32802,3,1672319399),(128007,3,32803,3,1672319399),(128008,3,32804,3,1672319399),(128009,3,32805,3,1672319399),(128010,3,32806,3,1672319399),(128011,3,32807,3,1672319399),(128012,3,32808,3,1672319399),(128013,3,32809,3,1672319399),(128014,3,32810,3,1672319399),(128015,3,32811,3,1672319399),(128016,3,32812,3,1672319399),(128017,3,32813,3,1672319399),(128018,3,32814,3,1672319399),(128019,3,32815,3,1672319399),(128020,3,32816,3,1672319399),(128021,3,32817,3,1672319399),(128022,3,32818,3,1672319399),(128023,3,32819,3,1672319399),(128024,3,32820,3,1672319399),(128025,3,32821,3,1672319399),(128026,3,32822,3,1672319399),(128027,3,32823,3,1672319399),(128028,3,32824,3,1672319399),(128029,3,32825,3,1672319399),(128030,3,32826,3,1672319399),(128031,3,32827,3,1672319399),(128032,3,32828,3,1672319399),(128033,3,32829,3,1672319399),(128034,3,32830,3,1672319399),(128035,3,32831,3,1672319399),(128036,3,32832,3,1672319399),(128037,3,32833,3,1672319399),(128038,3,32834,3,1672319399),(128039,3,32835,3,1672319399),(128040,3,32836,3,1672319399),(128041,3,32837,3,1672319399),(128042,3,32838,3,1672319399),(128043,3,32839,3,1672319399),(128044,3,32840,3,1672319399),(128045,3,32841,3,1672319399),(128046,3,32842,3,1672319399),(128047,3,32843,3,1672319399),(128048,3,32844,3,1672319399),(128049,3,32845,3,1672319399),(128050,3,32846,3,1672319399),(128051,3,32847,3,1672319399),(128052,3,32848,3,1672319399),(128053,3,32849,3,1672319399),(128054,3,32850,3,1672319399),(128055,3,32851,3,1672319399),(128056,3,32852,3,1672319399),(128057,3,32853,3,1672319399),(128058,3,32854,3,1672319399),(128059,3,32855,3,1672319399),(128060,3,32856,3,1672319399),(128061,3,32857,3,1672319399),(128062,3,32858,3,1672319399),(128063,3,32859,3,1672319399),(128064,3,32860,3,1672319399),(128065,3,32861,3,1672319399),(128066,3,32862,3,1672319399),(128067,3,32863,3,1672319399),(128068,3,32864,3,1672319399),(128069,3,32865,3,1672319399),(128070,3,33491,3,1672319399),(128071,3,33492,3,1672319399),(128072,3,33493,3,1672319399),(128073,3,33494,3,1672319399),(128074,3,33495,3,1672319399),(128075,3,33496,3,1672319399),(128076,3,33497,3,1672319399),(128077,3,33498,3,1672319399),(128078,3,33499,3,1672319399),(128079,3,33500,3,1672319399),(128080,3,33501,3,1672319399),(128081,3,33502,3,1672319399),(128082,3,33503,3,1672319399),(128083,3,33504,3,1672319399),(128084,3,33505,3,1672319399),(128085,3,33506,3,1672319399),(128086,3,33507,3,1672319399),(128087,3,33508,3,1672319399),(128088,3,33509,3,1672319399),(128089,3,33510,3,1672319399),(128090,3,33511,3,1672319399),(128091,3,33512,3,1672319399),(128092,3,33513,3,1672319399),(128093,3,33514,3,1672319399),(128094,3,33515,3,1672319399),(128095,3,33516,3,1672319399),(128096,3,33517,3,1672319399),(128097,3,33518,3,1672319399),(128098,3,33519,3,1672319399),(128099,3,34320,3,1672319399),(128100,3,35077,3,1672319399),(128101,3,35078,3,1672319399),(128102,3,35079,3,1672319399),(128103,3,35080,3,1672319399),(128104,3,35081,3,1672319399),(128105,3,35082,3,1672319399),(128106,3,35083,3,1672319399),(128107,3,35084,3,1672319399),(128108,3,35085,3,1672319399),(128109,3,35086,3,1672319399),(128110,3,35087,3,1672319399),(128111,3,35088,3,1672319399),(128112,3,35089,3,1672319399),(128113,3,35090,3,1672319399),(128114,3,35091,3,1672319399),(128115,3,35092,3,1672319399),(128116,3,35093,3,1672319399),(128117,3,35094,3,1672319399),(128118,3,35095,3,1672319399),(128119,3,35096,3,1672319399),(128120,3,35097,3,1672319399),(128121,3,35098,3,1672319399),(128122,3,35099,3,1672319399),(128123,3,35100,3,1672319399),(128124,3,35101,3,1672319399),(128125,3,35102,3,1672319399),(128126,3,35103,3,1672319399),(128127,3,35128,3,1672319399),(128128,3,35406,3,1672319399),(128129,3,35407,3,1672319399),(128130,3,35408,3,1672319399),(128131,3,35409,3,1672319399),(128132,3,35410,3,1672319399),(128133,3,35411,3,1672319399),(128134,3,35412,3,1672319399),(128135,3,35413,3,1672319399),(128136,3,35414,3,1672319399),(128137,3,35415,3,1672319399),(128138,3,35416,3,1672319399),(128139,3,35417,3,1672319399),(128140,3,35418,3,1672319399),(128141,3,35419,3,1672319399),(128142,3,35420,3,1672319399),(128143,3,35421,3,1672319399),(128144,3,35422,3,1672319399),(128145,3,35423,3,1672319399),(128146,3,36160,3,1672319399),(128147,3,36161,3,1672319399),(128148,3,36162,3,1672319399),(128149,3,36163,3,1672319399),(128150,3,36164,3,1672319399),(128151,3,36165,3,1672319399),(128152,3,36166,3,1672319399),(128153,3,36167,3,1672319399),(128154,3,36213,3,1672319399),(128155,3,36214,3,1672319399),(128156,3,36215,3,1672319399),(128157,3,36216,3,1672319399),(128158,3,36217,3,1672319399),(128159,3,36218,3,1672319399),(128160,3,36255,3,1672319399),(128161,3,36256,3,1672319399),(128162,3,36257,3,1672319399),(128163,3,36258,3,1672319399),(128164,3,36259,3,1672319399),(128165,3,36260,3,1672319399),(128166,3,36261,3,1672319399),(128167,3,36262,3,1672319399),(128168,3,36263,3,1672319399),(128169,3,36264,3,1672319399),(128170,3,36265,3,1672319399),(128171,3,36266,3,1672319399),(128172,3,36267,3,1672319399),(128173,3,36295,3,1672319399),(128174,3,36296,3,1672319399),(128175,3,36297,3,1672319399),(128176,3,36298,3,1672319399),(128177,3,36299,3,1672319399),(128178,3,36300,3,1672319399),(128179,3,36337,3,1672319399),(128180,3,36338,3,1672319399),(128181,3,36339,3,1672319399),(128182,3,36340,3,1672319399),(128183,3,36341,3,1672319399),(128184,3,36342,3,1672319399),(128185,3,36343,3,1672319399),(128186,3,36344,3,1672319399),(128187,3,36345,3,1672319399),(128188,3,36346,3,1672319399),(128189,3,36347,3,1672319399),(128190,3,36348,3,1672319399),(128191,3,36349,3,1672319399),(128192,3,36377,3,1672319399),(128193,3,36378,3,1672319399),(128194,3,36379,3,1672319399),(128195,3,36380,3,1672319399),(128196,3,36381,3,1672319399),(128197,3,36382,3,1672319399),(128198,3,36419,3,1672319399),(128199,3,36420,3,1672319399),(128200,3,36421,3,1672319399),(128201,3,36422,3,1672319399),(128202,3,36423,3,1672319399),(128203,3,36424,3,1672319399),(128204,3,36425,3,1672319399),(128205,3,36426,3,1672319399),(128206,3,36427,3,1672319399),(128207,3,36428,3,1672319399),(128208,3,36429,3,1672319399),(128209,3,36430,3,1672319399),(128210,3,36431,3,1672319399),(128211,3,36459,3,1672319399),(128212,3,36460,3,1672319399),(128213,3,36461,3,1672319399),(128214,3,36462,3,1672319399),(128215,3,36463,3,1672319399),(128216,3,36464,3,1672319399),(128217,3,36501,3,1672319399),(128218,3,36502,3,1672319399),(128219,3,36503,3,1672319399),(128220,3,36504,3,1672319399),(128221,3,36505,3,1672319399),(128222,3,36506,3,1672319399),(128223,3,36507,3,1672319399),(128224,3,36508,3,1672319399),(128225,3,36509,3,1672319399),(128226,3,36510,3,1672319399),(128227,3,36511,3,1672319399),(128228,3,36512,3,1672319399),(128229,3,36513,3,1672319399),(128230,3,36822,3,1672319399),(128231,3,36823,3,1672319399),(128232,3,40190,3,1672319399),(128233,3,40191,3,1672319399),(128234,3,40192,3,1672319399),(128235,3,40451,3,1672319399),(128236,3,40600,3,1672319399),(128237,3,40601,3,1672319399),(128238,3,40602,3,1672319399),(128239,3,40603,3,1672319399),(128240,3,40604,3,1672319399),(128241,3,40605,3,1672319399),(128242,3,40606,3,1672319399),(128243,3,40607,3,1672319399),(128244,3,40608,3,1672319399),(128245,3,40609,3,1672319399),(128246,3,40610,3,1672319399),(128247,3,40611,3,1672319399),(128248,3,40612,3,1672319399),(128249,3,40613,3,1672319399),(128250,3,40614,3,1672319399),(128251,3,40629,3,1672319399),(128252,3,40630,3,1672319399),(128253,3,40631,3,1672319399),(128254,3,40632,3,1672319399),(128255,3,40633,3,1672319399),(128256,3,40634,3,1672319399),(128257,3,40635,3,1672319399),(128258,3,40636,3,1672319399),(128259,3,40637,3,1672319399),(128260,3,40638,3,1672319399),(128261,3,40639,3,1672319399),(128262,3,40640,3,1672319399),(128263,3,40641,3,1672319399),(128264,3,40642,3,1672319399),(128265,3,40708,3,1672319399),(128266,3,40709,3,1672319399),(128267,3,40710,3,1672319399),(128268,3,40711,3,1672319399),(128269,3,40712,3,1672319399),(128270,3,40713,3,1672319399),(128271,3,40714,3,1672319399),(128272,3,40715,3,1672319399),(128273,3,40716,3,1672319399),(128274,3,40717,3,1672319399),(128275,3,40718,3,1672319399),(128276,3,40731,3,1672319399),(128277,3,40732,3,1672319399),(128278,3,40733,3,1672319399),(128279,3,40734,3,1672319399),(128280,3,40735,3,1672319399),(128281,3,40736,3,1672319399),(128282,3,40737,3,1672319399),(128283,3,40738,3,1672319399),(128284,3,40739,3,1672319399),(128285,3,40740,3,1672319399),(128286,3,40741,3,1672319399),(128287,3,40752,3,1672319399),(128288,3,40753,3,1672319399),(128289,3,40754,3,1672319399),(128290,3,40755,3,1672319399),(128291,3,40756,3,1672319399),(128292,3,40757,3,1672319399),(128293,3,40758,3,1672319399),(128294,3,40759,3,1672319399),(128295,3,40760,3,1672319399),(128296,3,40761,3,1672319399),(128297,3,40762,3,1672319399),(128298,3,40775,3,1672319399),(128299,3,40776,3,1672319399),(128300,3,40777,3,1672319399),(128301,3,40778,3,1672319399),(128302,3,40779,3,1672319399),(128303,3,40780,3,1672319399),(128304,3,40781,3,1672319399),(128305,3,40782,3,1672319399),(128306,3,40783,3,1672319399),(128307,3,40784,3,1672319399),(128308,3,40785,3,1672319399),(128309,3,40821,3,1672319399),(128310,3,40822,3,1672319399),(128311,3,40823,3,1672319399),(128312,3,40824,3,1672319399),(128313,3,40825,3,1672319399),(128314,3,40826,3,1672319399),(128315,3,40827,3,1672319399),(128316,3,40828,3,1672319399),(128317,3,40829,3,1672319399),(128318,3,40830,3,1672319399),(128319,3,40831,3,1672319399),(128320,3,42179,3,1672319399),(128321,3,42180,3,1672319399),(128322,3,42181,3,1672319399),(128323,3,42182,3,1672319399),(128324,3,42183,3,1672319399),(128325,3,42184,3,1672319399),(128326,3,42185,3,1672319399),(128327,3,42186,3,1672319399),(128328,3,42620,3,1672319399),(128329,3,42621,3,1672319399),(128330,3,42622,3,1672319399),(128331,3,42623,3,1672319399),(128332,3,42624,3,1672319399),(128333,3,42625,3,1672319399),(128334,3,42626,3,1672319399),(128335,3,42627,3,1672319399),(128336,3,42628,3,1672319399),(128337,3,42629,3,1672319399),(128338,3,42630,3,1672319399),(128339,3,42631,3,1672319399),(128340,3,42632,3,1672319399),(128341,3,42633,3,1672319399),(128342,3,42634,3,1672319399),(128343,3,42635,3,1672319399),(128344,3,42636,3,1672319399),(128345,3,42637,3,1672319399),(128346,3,42638,3,1672319399),(128347,3,42639,3,1672319399),(128348,3,42640,3,1672319399),(128349,3,42641,3,1672319399),(128350,3,42930,3,1672319399),(128351,3,42931,3,1672319399),(128352,3,42932,3,1672319399),(128353,3,42933,3,1672319399),(128354,3,42934,3,1672319399),(128355,3,42935,3,1672319399),(128356,3,42936,3,1672319399),(128357,3,42937,3,1672319399),(128358,3,42938,3,1672319399),(128359,3,42939,3,1672319399),(128360,3,42940,3,1672319399),(128361,3,42941,3,1672319399),(128362,3,42942,3,1672319399),(128363,3,42943,3,1672319399),(128364,3,42944,3,1672319399),(128365,3,42945,3,1672319399),(128366,3,42946,3,1672319399),(128367,3,42947,3,1672319399),(128368,3,42948,3,1672319399),(128369,3,42949,3,1672319399),(128370,3,42950,3,1672319399),(128371,3,42951,3,1672319399),(128372,3,42952,3,1672319399),(128373,3,42953,3,1672319399),(128374,3,42954,3,1672319399),(128375,3,42955,3,1672319399),(128376,3,42956,3,1672319399),(128377,3,42957,3,1672319399),(128378,3,42958,3,1672319399),(128379,3,42959,3,1672319399),(128380,3,42960,3,1672319399),(128381,3,42961,3,1672319399),(128382,3,42962,3,1672319399),(128383,3,42963,3,1672319399),(128384,3,42964,3,1672319399),(128385,3,42965,3,1672319399),(128386,3,42966,3,1672319399),(128387,3,42967,3,1672319399),(128388,3,42968,3,1672319399),(128389,3,42969,3,1672319399),(128390,3,42970,3,1672319399),(128391,3,42971,3,1672319399),(128392,3,42972,3,1672319399),(128393,3,42973,3,1672319399),(128394,3,42974,3,1672319399),(128395,3,42975,3,1672319399),(128396,3,42976,3,1672319399),(128397,3,42977,3,1672319399),(128398,3,42978,3,1672319399),(128399,3,42979,3,1672319399),(128400,3,42980,3,1672319399),(128401,3,42981,3,1672319399),(128402,3,42982,3,1672319399),(128403,3,42983,3,1672319399),(128404,3,42984,3,1672319399),(128405,3,42985,3,1672319399),(128406,3,43018,3,1672319399),(128407,3,43019,3,1672319399),(128408,3,43020,3,1672319399),(128409,3,43021,3,1672319399),(128410,3,43022,3,1672319399),(128411,3,43023,3,1672319399),(128412,3,43024,3,1672319399),(128413,3,43025,3,1672319399),(128414,3,43026,3,1672319399),(128415,3,43027,3,1672319399),(128416,3,43028,3,1672319399),(128417,3,43029,3,1672319399),(128418,3,43030,3,1672319399),(128419,3,43031,3,1672319399),(128420,3,43032,3,1672319399),(128421,3,43033,3,1672319399),(128422,3,43034,3,1672319399),(128423,3,43035,3,1672319399),(128424,3,43036,3,1672319399),(128425,3,43037,3,1672319399),(128426,3,43038,3,1672319399),(128427,3,43039,3,1672319399),(128428,3,43040,3,1672319399),(128429,3,43041,3,1672319399),(128430,3,43042,3,1672319399),(128431,3,43043,3,1672319399),(128432,3,43044,3,1672319399),(128433,3,43045,3,1672319399),(128434,3,43046,3,1672319399),(128435,3,43081,3,1672319399),(128436,3,43082,3,1672319399),(128437,3,43083,3,1672319399),(128438,3,43084,3,1672319399),(128439,3,43085,3,1672319399),(128440,3,43086,3,1672319399),(128441,3,43087,3,1672319399),(128442,3,43088,3,1672319399),(128443,3,43089,3,1672319399),(128444,3,43090,3,1672319399),(128445,3,43091,3,1672319399),(128446,3,43092,3,1672319399),(128447,3,43093,3,1672319399),(128448,3,43094,3,1672319399),(128449,3,43095,3,1672319399),(128450,3,43096,3,1672319399),(128451,3,43097,3,1672319399),(128452,3,43098,3,1672319399),(128453,3,43099,3,1672319399),(128454,3,43100,3,1672319399),(128455,3,43101,3,1672319399),(128456,3,43102,3,1672319399),(128457,3,43103,3,1672319399),(128458,3,43104,3,1672319399),(128459,3,43105,3,1672319399),(128460,3,43106,3,1672319399),(128461,3,43107,3,1672319399),(128462,3,43108,3,1672319399),(128463,3,43109,3,1672319399),(128464,3,43110,3,1672319399),(128465,3,43111,3,1672319399),(128466,3,43112,3,1672319399),(128467,3,43113,3,1672319399),(128468,3,43114,3,1672319399),(128469,3,43115,3,1672319399),(128470,3,43116,3,1672319399),(128471,3,43117,3,1672319399),(128472,3,43118,3,1672319399),(128473,3,43119,3,1672319399),(128474,3,43120,3,1672319399),(128475,3,43121,3,1672319399),(128476,3,43122,3,1672319399),(128477,3,43123,3,1672319399),(128478,3,43124,3,1672319399),(128479,3,43125,3,1672319399),(128480,3,43126,3,1672319399),(128481,3,43127,3,1672319399),(128482,3,43128,3,1672319399),(128483,3,43129,3,1672319399),(128484,3,43130,3,1672319399),(128485,3,43131,3,1672319399),(128486,3,43132,3,1672319399),(128487,3,43156,3,1672319399),(128488,3,43157,3,1672319399),(128489,3,43158,3,1672319399),(128490,3,43159,3,1672319399),(128491,3,43160,3,1672319399),(128492,3,43161,3,1672319399),(128493,3,43162,3,1672319399),(128494,3,43163,3,1672319399),(128495,3,43164,3,1672319399),(128496,3,43165,3,1672319399),(128497,3,43769,3,1672319399),(128498,3,43780,3,1672319399),(128499,3,43782,3,1672319399),(128500,3,43783,3,1672319399),(128501,3,43784,3,1672319399),(128502,3,43785,3,1672319399),(128503,3,43786,3,1672319399),(128504,3,43788,3,1672319399),(128505,3,43889,3,1672319399),(128506,3,43890,3,1672319399),(128507,3,43891,3,1672319399),(128508,3,43892,3,1672319399),(128509,3,43893,3,1672319399),(128510,3,43894,3,1672319399),(128511,3,43895,3,1672319399),(128512,3,44294,3,1672319399),(128513,3,44295,3,1672319399),(128514,3,44296,3,1672319399),(128515,3,44297,3,1672319399),(128516,3,44298,3,1672319399),(128517,3,44299,3,1672319399),(128518,3,44300,3,1672319399),(128519,3,44301,3,1672319399),(128520,3,44302,3,1672319399),(128521,3,44303,3,1672319399),(128522,3,44304,3,1672319399),(128523,3,44305,3,1672319399),(128524,3,44306,3,1672319399),(128525,3,44307,3,1672319399),(128526,3,44308,3,1672319399),(128527,3,44309,3,1672319399),(128528,3,44310,3,1672319399),(128529,3,44311,3,1672319399),(128530,3,44312,3,1672319399),(128531,3,44313,3,1672319399),(128532,3,44381,3,1672319399),(128533,3,44382,3,1672319399),(128534,3,44383,3,1672319399),(128535,3,44384,3,1672319399),(128536,3,44385,3,1672319399),(128537,3,44386,3,1672319399),(128538,3,44387,3,1672319399),(128539,3,44388,3,1672319399),(128540,3,44389,3,1672319399),(128541,3,44390,3,1672319399),(128542,3,44391,3,1672319399),(128543,3,44392,3,1672319399),(128544,3,44393,3,1672319399),(128545,3,44394,3,1672319399),(128546,3,44430,3,1672319399),(128547,3,44433,3,1672319399),(128548,1,10075,3,1672319399),(128549,1,10077,3,1672319399),(128550,1,10093,3,1672319399),(128551,1,10169,3,1672319399),(128552,1,10183,3,1672319399),(128553,1,10185,3,1672319399),(128554,1,10204,3,1672319399),(128555,1,10215,3,1672319399),(128556,1,10220,3,1672319399),(128557,1,10221,3,1672319399),(128558,1,10222,3,1672319399),(128559,1,10223,3,1672319399),(128560,1,10224,3,1672319399),(128561,1,10227,3,1672319399),(128562,1,10253,3,1672319399),(128563,1,10255,3,1672319399),(128564,1,10304,3,1672319399),(128565,1,10305,3,1672319399),(128566,1,10306,3,1672319399),(128567,1,10307,3,1672319399),(128568,1,10308,3,1672319399),(128569,1,10309,3,1672319399),(128570,1,10318,3,1672319399),(128571,1,10322,3,1672319399),(128572,1,10323,3,1672319399),(128573,1,10324,3,1672319399),(128574,1,10362,3,1672319399),(128575,1,10363,3,1672319399),(128576,1,10365,3,1672319399),(128577,1,10380,3,1672319399),(128578,1,10414,3,1672319399),(128579,1,10417,3,1672319399),(128580,1,10419,3,1672319399),(128581,1,10434,3,1672319399),(128582,1,10435,3,1672319399),(128583,1,10436,3,1672319399),(128584,1,10437,3,1672319399),(128585,1,10438,3,1672319399),(128586,1,10439,3,1672319399),(128587,1,10440,3,1672319399),(128588,1,10441,3,1672319399),(128589,1,10442,3,1672319399),(128590,1,10519,3,1672319399),(128591,1,10520,3,1672319399),(128592,1,10521,3,1672319399),(128593,1,10522,3,1672319399),(128594,1,10546,3,1672319399),(128595,1,10547,3,1672319399),(128596,1,10548,3,1672319399),(128597,1,10551,3,1672319399),(128598,3,27079,2,1672319404),(128599,3,27080,2,1672319404),(128600,3,27081,2,1672319404),(128601,3,27082,2,1672319404),(128602,3,27083,2,1672319404),(128603,3,27084,2,1672319404),(128604,3,27085,2,1672319404),(128605,3,27086,2,1672319404),(128606,3,27087,2,1672319404),(128607,3,27099,2,1672319404),(128608,3,27100,2,1672319404),(128609,3,27101,2,1672319404),(128610,3,27102,2,1672319404),(128611,3,27103,2,1672319404),(128612,3,27104,2,1672319404),(128613,3,27105,2,1672319404),(128614,3,27106,2,1672319404),(128615,3,27107,2,1672319404),(128616,3,27119,2,1672319404),(128617,3,27120,2,1672319404),(128618,3,27121,2,1672319404),(128619,3,27122,2,1672319404),(128620,3,27123,2,1672319404),(128621,3,27124,2,1672319404),(128622,3,27125,2,1672319404),(128623,3,27126,2,1672319404),(128624,3,27127,2,1672319404),(128625,3,27748,2,1672319404),(128626,3,27749,2,1672319404),(128627,3,27750,2,1672319404),(128628,3,27751,2,1672319404),(128629,3,27753,2,1672319404),(128630,3,27754,2,1672319404),(128631,3,27755,2,1672319404),(128632,3,27783,2,1672319404),(128633,3,27784,2,1672319404),(128634,3,27785,2,1672319404),(128635,3,27786,2,1672319404),(128636,3,27787,2,1672319404),(128637,3,27821,2,1672319404),(128638,3,27822,2,1672319404),(128639,3,27823,2,1672319404),(128640,3,28150,2,1672319404),(128641,3,28153,2,1672319404),(128642,3,28154,2,1672319404),(128643,3,28155,2,1672319404),(128644,3,28156,2,1672319404),(128645,3,28157,2,1672319404),(128646,3,28158,2,1672319404),(128647,3,28404,2,1672319404),(128648,3,28405,2,1672319404),(128649,3,28406,2,1672319404),(128650,3,28407,2,1672319404),(128651,3,28408,2,1672319404),(128652,3,28409,2,1672319404),(128653,3,28411,2,1672319404),(128654,3,28412,2,1672319404),(128655,3,28413,2,1672319404),(128656,3,28414,2,1672319404),(128657,3,28415,2,1672319404),(128658,3,28416,2,1672319404),(128659,3,28417,2,1672319404),(128660,3,28418,2,1672319404),(128661,3,28419,2,1672319404),(128662,3,28420,2,1672319404),(128663,3,28421,2,1672319404),(128664,3,28422,2,1672319404),(128665,3,28423,2,1672319404),(128666,3,28424,2,1672319404),(128667,3,28425,2,1672319404),(128668,3,28474,2,1672319404),(128669,3,28475,2,1672319404),(128670,3,28476,2,1672319404),(128671,3,28477,2,1672319404),(128672,3,28478,2,1672319404),(128673,3,28479,2,1672319404),(128674,3,28480,2,1672319404),(128675,3,28481,2,1672319404),(128676,3,28894,2,1672319404),(128677,3,29014,2,1672319404),(128678,3,29015,2,1672319404),(128679,3,29016,2,1672319404),(128680,3,29017,2,1672319404),(128681,3,29018,2,1672319404),(128682,3,29019,2,1672319404),(128683,3,29020,2,1672319404),(128684,3,29021,2,1672319404),(128685,3,29022,2,1672319404),(128686,3,29023,2,1672319404),(128687,3,29024,2,1672319404),(128688,3,29025,2,1672319404),(128689,3,29026,2,1672319404),(128690,3,29027,2,1672319404),(128691,3,29028,2,1672319404),(128692,3,29029,2,1672319404),(128693,3,29030,2,1672319404),(128694,3,29048,2,1672319404),(128695,3,29210,2,1672319404),(128696,3,29211,2,1672319404),(128697,3,29212,2,1672319404),(128698,3,29213,2,1672319404),(128699,3,29432,2,1672319404),(128700,3,29433,2,1672319404),(128701,3,29434,2,1672319404),(128702,3,29435,2,1672319404),(128703,3,29436,2,1672319404),(128704,3,29437,2,1672319404),(128705,3,29438,2,1672319404),(128706,3,29439,2,1672319404),(128707,3,29440,2,1672319404),(128708,3,29441,2,1672319404),(128709,3,29442,2,1672319404),(128710,3,29443,2,1672319404),(128711,3,29444,2,1672319404),(128712,3,29445,2,1672319404),(128713,3,29446,2,1672319404),(128714,3,29447,2,1672319404),(128715,3,29448,2,1672319404),(128716,3,29449,2,1672319404),(128717,3,29450,2,1672319404),(128718,3,29451,2,1672319404),(128719,3,29452,2,1672319404),(128720,3,29453,2,1672319404),(128721,3,30113,2,1672319404),(128722,3,30114,2,1672319404),(128723,3,30115,2,1672319404),(128724,3,30116,2,1672319404),(128725,3,30118,2,1672319404),(128726,3,31006,2,1672319404),(128727,3,31007,2,1672319404),(128728,3,31008,2,1672319404),(128729,3,31009,2,1672319404),(128730,3,31048,2,1672319404),(128731,3,31049,2,1672319404),(128732,3,31050,2,1672319404),(128733,3,31051,2,1672319404),(128734,3,31370,2,1672319404),(128735,3,31371,2,1672319404),(128736,3,31372,2,1672319404),(128737,3,31379,2,1672319404),(128738,3,31380,2,1672319404),(128739,3,31381,2,1672319404),(128740,3,31382,2,1672319404),(128741,3,31383,2,1672319404),(128742,3,31384,2,1672319404),(128743,3,31902,2,1672319404),(128744,3,31903,2,1672319404),(128745,3,31904,2,1672319404),(128746,3,31905,2,1672319404),(128747,3,31906,2,1672319404),(128748,3,31907,2,1672319404),(128749,3,31908,2,1672319404),(128750,3,31932,2,1672319404),(128751,3,31933,2,1672319404),(128752,3,31934,2,1672319404),(128753,3,31935,2,1672319404),(128754,3,31936,2,1672319404),(128755,3,31937,2,1672319404),(128756,3,33467,2,1672319404),(128757,3,33468,2,1672319404),(128758,3,33469,2,1672319404),(128759,3,33470,2,1672319404),(128760,3,33471,2,1672319404),(128761,3,33472,2,1672319404),(128762,3,33473,2,1672319404),(128763,3,33474,2,1672319404),(128764,3,33475,2,1672319404),(128765,3,33476,2,1672319404),(128766,3,33477,2,1672319404),(128767,3,33478,2,1672319404),(128768,3,33479,2,1672319404),(128769,3,33480,2,1672319404),(128770,3,33481,2,1672319404),(128771,3,33482,2,1672319404),(128772,3,33483,2,1672319404),(128773,3,33484,2,1672319404),(128774,3,33485,2,1672319404),(128775,3,33486,2,1672319404),(128776,3,33487,2,1672319404),(128777,3,33488,2,1672319404),(128778,3,33489,2,1672319404),(128779,3,33490,2,1672319404),(128780,3,33552,2,1672319404),(128781,3,33553,2,1672319404),(128782,3,33554,2,1672319404),(128783,3,33555,2,1672319404),(128784,3,33556,2,1672319404),(128785,3,33557,2,1672319404),(128786,3,33558,2,1672319404),(128787,3,33559,2,1672319404),(128788,3,33560,2,1672319404),(128789,3,33561,2,1672319404),(128790,3,33562,2,1672319404),(128791,3,33563,2,1672319404),(128792,3,33564,2,1672319404),(128793,3,33565,2,1672319404),(128794,3,33566,2,1672319404),(128795,3,33567,2,1672319404),(128796,3,33568,2,1672319404),(128797,3,33569,2,1672319404),(128798,3,33570,2,1672319404),(128799,3,33571,2,1672319404),(128800,3,33572,2,1672319404),(128801,3,33573,2,1672319404),(128802,3,33574,2,1672319404),(128803,3,33575,2,1672319404),(128804,3,33576,2,1672319404),(128805,3,33577,2,1672319404),(128806,3,33578,2,1672319404),(128807,3,33579,2,1672319404),(128808,3,33580,2,1672319404),(128809,3,33581,2,1672319404),(128810,3,33582,2,1672319404),(128811,3,33584,2,1672319404),(128812,3,33585,2,1672319404),(128813,3,33586,2,1672319404),(128814,3,33587,2,1672319404),(128815,3,33588,2,1672319404),(128816,3,33589,2,1672319404),(128817,3,33590,2,1672319404),(128818,3,33591,2,1672319404),(128819,3,33592,2,1672319404),(128820,3,33593,2,1672319404),(128821,3,33594,2,1672319404),(128822,3,33595,2,1672319404),(128823,3,33596,2,1672319404),(128824,3,33597,2,1672319404),(128825,3,33598,2,1672319404),(128826,3,33599,2,1672319404),(128827,3,33600,2,1672319404),(128828,3,33601,2,1672319404),(128829,3,33602,2,1672319404),(128830,3,33603,2,1672319404),(128831,3,33604,2,1672319404),(128832,3,33605,2,1672319404),(128833,3,33606,2,1672319404),(128834,3,33607,2,1672319404),(128835,3,33608,2,1672319404),(128836,3,33609,2,1672319404),(128837,3,33610,2,1672319404),(128838,3,33611,2,1672319404),(128839,3,33612,2,1672319404),(128840,3,33613,2,1672319404),(128841,3,33614,2,1672319404),(128842,3,33615,2,1672319404),(128843,3,33616,2,1672319404),(128844,3,33617,2,1672319404),(128845,3,33618,2,1672319404),(128846,3,33619,2,1672319404),(128847,3,33621,2,1672319404),(128848,3,33622,2,1672319404),(128849,3,33623,2,1672319404),(128850,3,33624,2,1672319404),(128851,3,33625,2,1672319404),(128852,3,33626,2,1672319404),(128853,3,33627,2,1672319404),(128854,3,33628,2,1672319404),(128855,3,33629,2,1672319404),(128856,3,33703,2,1672319404),(128857,3,33704,2,1672319404),(128858,3,33705,2,1672319404),(128859,3,33706,2,1672319404),(128860,3,33707,2,1672319404),(128861,3,33708,2,1672319404),(128862,3,33709,2,1672319404),(128863,3,33710,2,1672319404),(128864,3,33711,2,1672319404),(128865,3,33712,2,1672319404),(128866,3,33713,2,1672319404),(128867,3,33714,2,1672319404),(128868,3,33715,2,1672319404),(128869,3,33716,2,1672319404),(128870,3,33717,2,1672319404),(128871,3,33718,2,1672319404),(128872,3,33719,2,1672319404),(128873,3,33720,2,1672319404),(128874,3,33721,2,1672319404),(128875,3,33722,2,1672319404),(128876,3,33723,2,1672319404),(128877,3,33724,2,1672319404),(128878,3,33725,2,1672319404),(128879,3,33726,2,1672319404),(128880,3,33727,2,1672319404),(128881,3,33728,2,1672319404),(128882,3,33729,2,1672319404),(128883,3,33730,2,1672319404),(128884,3,33731,2,1672319404),(128885,3,33732,2,1672319404),(128886,3,33733,2,1672319404),(128887,3,33734,2,1672319404),(128888,3,33735,2,1672319404),(128889,3,33736,2,1672319404),(128890,3,33737,2,1672319404),(128891,3,33738,2,1672319404),(128892,3,33739,2,1672319404),(128893,3,33740,2,1672319404),(128894,3,33741,2,1672319404),(128895,3,33742,2,1672319404),(128896,3,33743,2,1672319404),(128897,3,36567,2,1672319404),(128898,3,36568,2,1672319404),(128899,3,36569,2,1672319404),(128900,3,36570,2,1672319404),(128901,3,36571,2,1672319404),(128902,3,36572,2,1672319404),(128903,3,36573,2,1672319404),(128904,3,36574,2,1672319404),(128905,3,36575,2,1672319404),(128906,3,36576,2,1672319404),(128907,3,36577,2,1672319404),(128908,3,36578,2,1672319404),(128909,3,36579,2,1672319404),(128910,3,36580,2,1672319404),(128911,3,36581,2,1672319404),(128912,3,36582,2,1672319404),(128913,3,36583,2,1672319404),(128914,3,36584,2,1672319404),(128915,3,36585,2,1672319404),(128916,3,36586,2,1672319404),(128917,3,36587,2,1672319404),(128918,3,36588,2,1672319404),(128919,3,36589,2,1672319404),(128920,3,36590,2,1672319404),(128921,3,36591,2,1672319404),(128922,3,36592,2,1672319404),(128923,3,36593,2,1672319404),(128924,3,36594,2,1672319404),(128925,3,36595,2,1672319404),(128926,3,36596,2,1672319404),(128927,3,36597,2,1672319404),(128928,3,36624,2,1672319404),(128929,3,36625,2,1672319404),(128930,3,36626,2,1672319404),(128931,3,36627,2,1672319404),(128932,3,36628,2,1672319404),(128933,3,36629,2,1672319404),(128934,3,36630,2,1672319404),(128935,3,36631,2,1672319404),(128936,3,36632,2,1672319404),(128937,3,36633,2,1672319404),(128938,3,36634,2,1672319404),(128939,3,36635,2,1672319404),(128940,3,36636,2,1672319404),(128941,3,36637,2,1672319404),(128942,3,36638,2,1672319404),(128943,3,36639,2,1672319404),(128944,3,36640,2,1672319404),(128945,3,36641,2,1672319404),(128946,3,36642,2,1672319404),(128947,3,36643,2,1672319404),(128948,3,36644,2,1672319404),(128949,3,36645,2,1672319404),(128950,3,36646,2,1672319404),(128951,3,36647,2,1672319404),(128952,3,36648,2,1672319404),(128953,3,36649,2,1672319404),(128954,3,36650,2,1672319404),(128955,3,36651,2,1672319404),(128956,3,36652,2,1672319404),(128957,3,36653,2,1672319404),(128958,3,36654,2,1672319404),(128959,3,36681,2,1672319404),(128960,3,36682,2,1672319404),(128961,3,36683,2,1672319404),(128962,3,36684,2,1672319404),(128963,3,36685,2,1672319404),(128964,3,36686,2,1672319404),(128965,3,36687,2,1672319404),(128966,3,36688,2,1672319404),(128967,3,36689,2,1672319404),(128968,3,36690,2,1672319404),(128969,3,36691,2,1672319404),(128970,3,36692,2,1672319404),(128971,3,36693,2,1672319404),(128972,3,36694,2,1672319404),(128973,3,36695,2,1672319404),(128974,3,36696,2,1672319404),(128975,3,36697,2,1672319404),(128976,3,36698,2,1672319404),(128977,3,36699,2,1672319404),(128978,3,36700,2,1672319404),(128979,3,36701,2,1672319404),(128980,3,36702,2,1672319404),(128981,3,36703,2,1672319404),(128982,3,36704,2,1672319404),(128983,3,36705,2,1672319404),(128984,3,36706,2,1672319404),(128985,3,36707,2,1672319404),(128986,3,36708,2,1672319404),(128987,3,36709,2,1672319404),(128988,3,36710,2,1672319404),(128989,3,36711,2,1672319404),(128990,3,36738,2,1672319404),(128991,3,36739,2,1672319404),(128992,3,36740,2,1672319404),(128993,3,36741,2,1672319404),(128994,3,36742,2,1672319404),(128995,3,36743,2,1672319404),(128996,3,36744,2,1672319404),(128997,3,36745,2,1672319404),(128998,3,36746,2,1672319404),(128999,3,36747,2,1672319404),(129000,3,36748,2,1672319404),(129001,3,36749,2,1672319404),(129002,3,36750,2,1672319404),(129003,3,36751,2,1672319404),(129004,3,36752,2,1672319404),(129005,3,36753,2,1672319404),(129006,3,36754,2,1672319404),(129007,3,36755,2,1672319404),(129008,3,36756,2,1672319404),(129009,3,36757,2,1672319404),(129010,3,36758,2,1672319404),(129011,3,36759,2,1672319404),(129012,3,36760,2,1672319404),(129013,3,36761,2,1672319404),(129014,3,36762,2,1672319404),(129015,3,36763,2,1672319404),(129016,3,36764,2,1672319404),(129017,3,36765,2,1672319404),(129018,3,36766,2,1672319404),(129019,3,36767,2,1672319404),(129020,3,36768,2,1672319404),(129021,3,36814,2,1672319404),(129022,3,36815,2,1672319404),(129023,3,36816,2,1672319404),(129024,3,36817,2,1672319404),(129025,3,36818,2,1672319404),(129026,3,36819,2,1672319404),(129027,3,39861,2,1672319404),(129028,3,39862,2,1672319404),(129029,3,39863,2,1672319404),(129030,3,39864,2,1672319404),(129031,3,39865,2,1672319404),(129032,3,39866,2,1672319404),(129033,3,39867,2,1672319404),(129034,3,39868,2,1672319404),(129035,3,39869,2,1672319404),(129036,3,39870,2,1672319404),(129037,3,39871,2,1672319404),(129038,3,39872,2,1672319404),(129039,3,39873,2,1672319404),(129040,3,39874,2,1672319404),(129041,3,39875,2,1672319404),(129042,3,39890,2,1672319404),(129043,3,39891,2,1672319404),(129044,3,39892,2,1672319404),(129045,3,39893,2,1672319404),(129046,3,39894,2,1672319404),(129047,3,39895,2,1672319404),(129048,3,39896,2,1672319404),(129049,3,39897,2,1672319404),(129050,3,39898,2,1672319404),(129051,3,39899,2,1672319404),(129052,3,39900,2,1672319404),(129053,3,39901,2,1672319404),(129054,3,39902,2,1672319404),(129055,3,39903,2,1672319404),(129056,3,39904,2,1672319404),(129057,3,39921,2,1672319404),(129058,3,39922,2,1672319404),(129059,3,39923,2,1672319404),(129060,3,39924,2,1672319404),(129061,3,39925,2,1672319404),(129062,3,39926,2,1672319404),(129063,3,39927,2,1672319404),(129064,3,39928,2,1672319404),(129065,3,39929,2,1672319404),(129066,3,39930,2,1672319404),(129067,3,39931,2,1672319404),(129068,3,39932,2,1672319404),(129069,3,39933,2,1672319404),(129070,3,39934,2,1672319404),(129071,3,39935,2,1672319404),(129072,3,39936,2,1672319404),(129073,3,39943,2,1672319404),(129074,3,39944,2,1672319404),(129075,3,39945,2,1672319404),(129076,3,39946,2,1672319404),(129077,3,39947,2,1672319404),(129078,3,39948,2,1672319404),(129079,3,39949,2,1672319404),(129080,3,39950,2,1672319404),(129081,3,39951,2,1672319404),(129082,3,39952,2,1672319404),(129083,3,39953,2,1672319404),(129084,3,39954,2,1672319404),(129085,3,39955,2,1672319404),(129086,3,39956,2,1672319404),(129087,3,39957,2,1672319404),(129088,3,39958,2,1672319404),(129089,3,39959,2,1672319404),(129090,3,39960,2,1672319404),(129091,3,39961,2,1672319404),(129092,3,39962,2,1672319404),(129093,3,39963,2,1672319404),(129094,3,39964,2,1672319404),(129095,3,39965,2,1672319404),(129096,3,39966,2,1672319404),(129097,3,39967,2,1672319404),(129098,3,39968,2,1672319404),(129099,3,39969,2,1672319404),(129100,3,39970,2,1672319404),(129101,3,39971,2,1672319404),(129102,3,39972,2,1672319404),(129103,3,39973,2,1672319404),(129104,3,39974,2,1672319404),(129105,3,39975,2,1672319404),(129106,3,39976,2,1672319404),(129107,3,40003,2,1672319404),(129108,3,40004,2,1672319404),(129109,3,40005,2,1672319404),(129110,3,40006,2,1672319404),(129111,3,40007,2,1672319404),(129112,3,40008,2,1672319404),(129113,3,40009,2,1672319404),(129114,3,40036,2,1672319404),(129115,3,40037,2,1672319404),(129116,3,40038,2,1672319404),(129117,3,40039,2,1672319404),(129118,3,40040,2,1672319404),(129119,3,40041,2,1672319404),(129120,3,40042,2,1672319404),(129121,3,40043,2,1672319404),(129122,3,40044,2,1672319404),(129123,3,40045,2,1672319404),(129124,3,40046,2,1672319404),(129125,3,40047,2,1672319404),(129126,3,40048,2,1672319404),(129127,3,40049,2,1672319404),(129128,3,40050,2,1672319404),(129129,3,40051,2,1672319404),(129130,3,40052,2,1672319404),(129131,3,40053,2,1672319404),(129132,3,40054,2,1672319404),(129133,3,40055,2,1672319404),(129134,3,40056,2,1672319404),(129135,3,40057,2,1672319404),(129136,3,40058,2,1672319404),(129137,3,40059,2,1672319404),(129138,3,40060,2,1672319404),(129139,3,40061,2,1672319404),(129140,3,40062,2,1672319404),(129141,3,40063,2,1672319404),(129142,3,40064,2,1672319404),(129143,3,40065,2,1672319404),(129144,3,40066,2,1672319404),(129145,3,40067,2,1672319404),(129146,3,40068,2,1672319404),(129147,3,40069,2,1672319404),(129148,3,40070,2,1672319404),(129149,3,40071,2,1672319404),(129150,3,40072,2,1672319404),(129151,3,40073,2,1672319404),(129152,3,40074,2,1672319404),(129153,3,40075,2,1672319404),(129154,3,40076,2,1672319404),(129155,3,40077,2,1672319404),(129156,3,40078,2,1672319404),(129157,3,40079,2,1672319404),(129158,3,40080,2,1672319404),(129159,3,40081,2,1672319404),(129160,3,40082,2,1672319404),(129161,3,40083,2,1672319404),(129162,3,40084,2,1672319404),(129163,3,40085,2,1672319404),(129164,3,40086,2,1672319404),(129165,3,40087,2,1672319404),(129166,3,40088,2,1672319404),(129167,3,40089,2,1672319404),(129168,3,40090,2,1672319404),(129169,3,40091,2,1672319404),(129170,3,40092,2,1672319404),(129171,3,40093,2,1672319404),(129172,3,40094,2,1672319404),(129173,3,40857,2,1672319404),(129174,3,40858,2,1672319404),(129175,3,40859,2,1672319404),(129176,3,40860,2,1672319404),(129177,3,40861,2,1672319404),(129178,3,40862,2,1672319404),(129179,3,40863,2,1672319404),(129180,3,40864,2,1672319404),(129181,3,40865,2,1672319404),(129182,3,40866,2,1672319404),(129183,3,40880,2,1672319404),(129184,3,40881,2,1672319404),(129185,3,40882,2,1672319404),(129186,3,40883,2,1672319404),(129187,3,40884,2,1672319404),(129188,3,40885,2,1672319404),(129189,3,40886,2,1672319404),(129190,3,40887,2,1672319404),(129191,3,40888,2,1672319404),(129192,3,40889,2,1672319404),(129193,3,40902,2,1672319404),(129194,3,40903,2,1672319404),(129195,3,40904,2,1672319404),(129196,3,40905,2,1672319404),(129197,3,40906,2,1672319404),(129198,3,40907,2,1672319404),(129199,3,40908,2,1672319404),(129200,3,40909,2,1672319404),(129201,3,40910,2,1672319404),(129202,3,40924,2,1672319404),(129203,3,40925,2,1672319404),(129204,3,40926,2,1672319404),(129205,3,40927,2,1672319404),(129206,3,40928,2,1672319404),(129207,3,40929,2,1672319404),(129208,3,40930,2,1672319404),(129209,3,40931,2,1672319404),(129210,3,40932,2,1672319404),(129211,3,40933,2,1672319404),(129212,3,42277,2,1672319404),(129213,3,42278,2,1672319404),(129214,3,42279,2,1672319404),(129215,3,42280,2,1672319404),(129216,3,42281,2,1672319404),(129217,3,42282,2,1672319404),(129218,3,42283,2,1672319404),(129219,3,42284,2,1672319404),(129220,3,42285,2,1672319404),(129221,3,42286,2,1672319404),(129222,3,42287,2,1672319404),(129223,3,42288,2,1672319404),(129224,3,42289,2,1672319404),(129225,3,42290,2,1672319404),(129226,3,42291,2,1672319404),(129227,3,42307,2,1672319404),(129228,3,42308,2,1672319404),(129229,3,42309,2,1672319404),(129230,3,42310,2,1672319404),(129231,3,42311,2,1672319404),(129232,3,42312,2,1672319404),(129233,3,42363,2,1672319404),(129234,3,42364,2,1672319404),(129235,3,42365,2,1672319404),(129236,3,42366,2,1672319404),(129237,3,42367,2,1672319404),(129238,3,42368,2,1672319404),(129239,3,42369,2,1672319404),(129240,3,42370,2,1672319404),(129241,3,42371,2,1672319404),(129242,3,42372,2,1672319404),(129243,3,42373,2,1672319404),(129244,3,42374,2,1672319404),(129245,3,42375,2,1672319404),(129246,3,42376,2,1672319404),(129247,3,42377,2,1672319404),(129248,3,42378,2,1672319404),(129249,3,42379,2,1672319404),(129250,3,42380,2,1672319404),(129251,3,42381,2,1672319404),(129252,3,42382,2,1672319404),(129253,3,42383,2,1672319404),(129254,3,42415,2,1672319404),(129255,3,42416,2,1672319404),(129256,3,42417,2,1672319404),(129257,3,42418,2,1672319404),(129258,3,42419,2,1672319404),(129259,3,42420,2,1672319404),(129260,3,42421,2,1672319404),(129261,3,42422,2,1672319404),(129262,3,42423,2,1672319404),(129263,3,42424,2,1672319404),(129264,3,42425,2,1672319404),(129265,3,42426,2,1672319404),(129266,3,42427,2,1672319404),(129267,3,42428,2,1672319404),(129268,3,42429,2,1672319404),(129269,3,42430,2,1672319404),(129270,3,42431,2,1672319404),(129271,3,42432,2,1672319404),(129272,3,42433,2,1672319404),(129273,3,42434,2,1672319404),(129274,3,42435,2,1672319404),(129275,3,42436,2,1672319404),(129276,3,42437,2,1672319404),(129277,3,42438,2,1672319404),(129278,3,42439,2,1672319404),(129279,3,42440,2,1672319404),(129280,3,42441,2,1672319404),(129281,3,42442,2,1672319404),(129282,3,42679,2,1672319404),(129283,3,42682,2,1672319404),(129284,3,42691,2,1672319404),(129285,3,42692,2,1672319404),(129286,3,42693,2,1672319404),(129287,3,42694,2,1672319404),(129288,3,42695,2,1672319404),(129289,3,42696,2,1672319404),(129290,3,42697,2,1672319404),(129291,3,42698,2,1672319404),(129292,3,42699,2,1672319404),(129293,3,42706,2,1672319404),(129294,3,42707,2,1672319404),(129295,3,42708,2,1672319404),(129296,3,42709,2,1672319404),(129297,3,42710,2,1672319404),(129298,3,42711,2,1672319404),(129299,3,42712,2,1672319404),(129300,3,42713,2,1672319404),(129301,3,42714,2,1672319404),(129302,3,42715,2,1672319404),(129303,3,42716,2,1672319404),(129304,3,42717,2,1672319404),(129305,3,42718,2,1672319404),(129306,3,42719,2,1672319404),(129307,3,42720,2,1672319404),(129308,3,42721,2,1672319404),(129309,3,42722,2,1672319404),(129310,3,42723,2,1672319404),(129311,3,43194,2,1672319404),(129312,3,43195,2,1672319404),(129313,3,43196,2,1672319404),(129314,3,43197,2,1672319404),(129315,3,43198,2,1672319404),(129316,3,43199,2,1672319404),(129317,3,43200,2,1672319404),(129318,3,43201,2,1672319404),(129319,3,43202,2,1672319404),(129320,3,43203,2,1672319404),(129321,3,43204,2,1672319404),(129322,3,43205,2,1672319404),(129323,3,43206,2,1672319404),(129324,3,43207,2,1672319404),(129325,3,43208,2,1672319404),(129326,3,43209,2,1672319404),(129327,3,43210,2,1672319404),(129328,3,43211,2,1672319404),(129329,3,43212,2,1672319404),(129330,3,43213,2,1672319404),(129331,3,43214,2,1672319404),(129332,3,43215,2,1672319404),(129333,3,43216,2,1672319404),(129334,3,43217,2,1672319404),(129335,3,43218,2,1672319404),(129336,3,43219,2,1672319404),(129337,3,43220,2,1672319404),(129338,3,43221,2,1672319404),(129339,3,43222,2,1672319404),(129340,3,43223,2,1672319404),(129341,3,43224,2,1672319404),(129342,3,43225,2,1672319404),(129343,3,43226,2,1672319404),(129344,3,43227,2,1672319404),(129345,3,43228,2,1672319404),(129346,3,43229,2,1672319404),(129347,3,43230,2,1672319404),(129348,3,43231,2,1672319404),(129349,3,43232,2,1672319404),(129350,3,43233,2,1672319404),(129351,3,43234,2,1672319404),(129352,3,43235,2,1672319404),(129353,3,43236,2,1672319404),(129354,3,43237,2,1672319404),(129355,3,43238,2,1672319404),(129356,3,43239,2,1672319404),(129357,3,43240,2,1672319404),(129358,3,43241,2,1672319404),(129359,3,43242,2,1672319404),(129360,3,43243,2,1672319404),(129361,3,43244,2,1672319404),(129362,3,43245,2,1672319404),(129363,3,43246,2,1672319404),(129364,3,43247,2,1672319404),(129365,3,43248,2,1672319404),(129366,3,43249,2,1672319404),(129367,3,43250,2,1672319404),(129368,3,43251,2,1672319404),(129369,3,43252,2,1672319404),(129370,3,43253,2,1672319404),(129371,3,43254,2,1672319404),(129372,3,43255,2,1672319404),(129373,3,43256,2,1672319404),(129374,3,43257,2,1672319404),(129375,3,43258,2,1672319404),(129376,3,43259,2,1672319404),(129377,3,43260,2,1672319404),(129378,3,43261,2,1672319404),(129379,3,43262,2,1672319404),(129380,3,43263,2,1672319404),(129381,3,43264,2,1672319404),(129382,3,43265,2,1672319404),(129383,3,43266,2,1672319404),(129384,3,43267,2,1672319404),(129385,3,43268,2,1672319404),(129386,3,43269,2,1672319404),(129387,3,43270,2,1672319404),(129388,3,43271,2,1672319404),(129389,3,43272,2,1672319404),(129390,3,43273,2,1672319404),(129391,3,43274,2,1672319404),(129392,3,43275,2,1672319404),(129393,3,43276,2,1672319404),(129394,3,43277,2,1672319404),(129395,3,43278,2,1672319404),(129396,3,43279,2,1672319404),(129397,3,43280,2,1672319404),(129398,3,43301,2,1672319404),(129399,3,43302,2,1672319404),(129400,3,43303,2,1672319404),(129401,3,43304,2,1672319404),(129402,3,43305,2,1672319404),(129403,3,43306,2,1672319404),(129404,3,43307,2,1672319404),(129405,3,43308,2,1672319404),(129406,3,43309,2,1672319404),(129407,3,43310,2,1672319404),(129408,3,43311,2,1672319404),(129409,3,43312,2,1672319404),(129410,3,43313,2,1672319404),(129411,3,43314,2,1672319404),(129412,3,43315,2,1672319404),(129413,3,43316,2,1672319404),(129414,3,43317,2,1672319404),(129415,3,43318,2,1672319404),(129416,3,43319,2,1672319404),(129417,3,43320,2,1672319404),(129418,3,43321,2,1672319404),(129419,3,43322,2,1672319404),(129420,3,43323,2,1672319404),(129421,3,43324,2,1672319404),(129422,3,43325,2,1672319404),(129423,3,43326,2,1672319404),(129424,3,43327,2,1672319404),(129425,3,43328,2,1672319404),(129426,3,43329,2,1672319404),(129427,3,43330,2,1672319404),(129428,3,43331,2,1672319404),(129429,3,43332,2,1672319404),(129430,3,43333,2,1672319404),(129431,3,43334,2,1672319404),(129432,3,43335,2,1672319404),(129433,3,43336,2,1672319404),(129434,3,43337,2,1672319404),(129435,3,43338,2,1672319404),(129436,3,43339,2,1672319404),(129437,3,43340,2,1672319404),(129438,3,43341,2,1672319404),(129439,3,43342,2,1672319404),(129440,3,43343,2,1672319404),(129441,3,43344,2,1672319404),(129442,3,43345,2,1672319404),(129443,3,43346,2,1672319404),(129444,3,43347,2,1672319404),(129445,3,43348,2,1672319404),(129446,3,43349,2,1672319404),(129447,3,43350,2,1672319404),(129448,3,43351,2,1672319404),(129449,3,43352,2,1672319404),(129450,3,43353,2,1672319404),(129451,3,43354,2,1672319404),(129452,3,43355,2,1672319404),(129453,3,43356,2,1672319404),(129454,3,43357,2,1672319404),(129455,3,43358,2,1672319404),(129456,3,43359,2,1672319404),(129457,3,43360,2,1672319404),(129458,3,43361,2,1672319404),(129459,3,43362,2,1672319404),(129460,3,43363,2,1672319404),(129461,3,43364,2,1672319404),(129462,3,43365,2,1672319404),(129463,3,43366,2,1672319404),(129464,3,43367,2,1672319404),(129465,3,43368,2,1672319404),(129466,3,43369,2,1672319404),(129467,3,43370,2,1672319404),(129468,3,43371,2,1672319404),(129469,3,43372,2,1672319404),(129470,3,43373,2,1672319404),(129471,3,43374,2,1672319404),(129472,3,43375,2,1672319404),(129473,3,43376,2,1672319404),(129474,3,43377,2,1672319404),(129475,3,43378,2,1672319404),(129476,3,43379,2,1672319404),(129477,3,43380,2,1672319404),(129478,3,43381,2,1672319404),(129479,3,43382,2,1672319404),(129480,3,43383,2,1672319404),(129481,3,43384,2,1672319404),(129482,3,43385,2,1672319404),(129483,3,43386,2,1672319404),(129484,3,43387,2,1672319404),(129485,3,43388,2,1672319404),(129486,3,43389,2,1672319404),(129487,3,43390,2,1672319404),(129488,3,43391,2,1672319404),(129489,3,43392,2,1672319404),(129490,3,43393,2,1672319404),(129491,3,43394,2,1672319404),(129492,3,43395,2,1672319404),(129493,3,43396,2,1672319404),(129494,3,43397,2,1672319404),(129495,3,43421,2,1672319404),(129496,3,43422,2,1672319404),(129497,3,43423,2,1672319404),(129498,3,43424,2,1672319404),(129499,3,43425,2,1672319404),(129500,3,43426,2,1672319404),(129501,3,43427,2,1672319404),(129502,3,43428,2,1672319404),(129503,3,43429,2,1672319404),(129504,3,43430,2,1672319404),(129505,3,43431,2,1672319404),(129506,3,43432,2,1672319404),(129507,3,43433,2,1672319404),(129508,3,43434,2,1672319404),(129509,3,43435,2,1672319404),(129510,3,43436,2,1672319404),(129511,3,43437,2,1672319404),(129512,3,43438,2,1672319404),(129513,3,43439,2,1672319404),(129514,3,43440,2,1672319404),(129515,3,43441,2,1672319404),(129516,3,43442,2,1672319404),(129517,3,43443,2,1672319404),(129518,3,43444,2,1672319404),(129519,3,43445,2,1672319404),(129520,3,43446,2,1672319404),(129521,3,43447,2,1672319404),(129522,3,43448,2,1672319404),(129523,3,43449,2,1672319404),(129524,3,43450,2,1672319404),(129525,3,43451,2,1672319404),(129526,3,43452,2,1672319404),(129527,3,43453,2,1672319404),(129528,3,43454,2,1672319404),(129529,3,43455,2,1672319404),(129530,3,43456,2,1672319404),(129531,3,43457,2,1672319404),(129532,3,43458,2,1672319404),(129533,3,43459,2,1672319404),(129534,3,43460,2,1672319404),(129535,3,43461,2,1672319404),(129536,3,43462,2,1672319404),(129537,3,43463,2,1672319404),(129538,3,43464,2,1672319404),(129539,3,43465,2,1672319404),(129540,3,43466,2,1672319404),(129541,3,43467,2,1672319404),(129542,3,43468,2,1672319404),(129543,3,43469,2,1672319404),(129544,3,43470,2,1672319404),(129545,3,43471,2,1672319404),(129546,3,43472,2,1672319404),(129547,3,43473,2,1672319404),(129548,3,43474,2,1672319404),(129549,3,43475,2,1672319404),(129550,3,43476,2,1672319404),(129551,3,43477,2,1672319404),(129552,3,43478,2,1672319404),(129553,3,43479,2,1672319404),(129554,3,43480,2,1672319404),(129555,3,43481,2,1672319404),(129556,3,43482,2,1672319404),(129557,3,43483,2,1672319404),(129558,3,43484,2,1672319404),(129559,3,43485,2,1672319404),(129560,3,43486,2,1672319404),(129561,3,43487,2,1672319404),(129562,3,43488,2,1672319404),(129563,3,43489,2,1672319404),(129564,3,43490,2,1672319404),(129565,3,43491,2,1672319404),(129566,3,43492,2,1672319404),(129567,3,43493,2,1672319404),(129568,3,43494,2,1672319404),(129569,3,43495,2,1672319404),(129570,3,43496,2,1672319404),(129571,3,43926,2,1672319404),(129572,3,43927,2,1672319404),(129573,3,43928,2,1672319404),(129574,3,43929,2,1672319404),(129575,3,43930,2,1672319404),(129576,3,43931,2,1672319404),(129577,3,43932,2,1672319404),(129578,3,43933,2,1672319404),(129579,3,43934,2,1672319404),(129580,3,43935,2,1672319404),(129581,3,43936,2,1672319404),(129582,3,43937,2,1672319404),(129583,3,43938,2,1672319404),(129584,3,43939,2,1672319404),(129585,3,43940,2,1672319404),(129586,3,43941,2,1672319404),(129587,3,43942,2,1672319404),(129588,3,43943,2,1672319404),(129589,3,43944,2,1672319404),(129590,3,43945,2,1672319404),(129591,3,43946,2,1672319404),(129592,3,43947,2,1672319404),(129593,3,43948,2,1672319404),(129594,3,43949,2,1672319404),(129595,3,43950,2,1672319404),(129596,3,43951,2,1672319404),(129597,3,43952,2,1672319404),(129598,3,43953,2,1672319404),(129599,3,43954,2,1672319404),(129600,3,43955,2,1672319404),(129601,3,43956,2,1672319404),(129602,3,43957,2,1672319404),(129603,3,43958,2,1672319404),(129604,3,43959,2,1672319404),(129605,3,43960,2,1672319404),(129606,3,43961,2,1672319404),(129607,3,43962,2,1672319404),(129608,3,43963,2,1672319404),(129609,3,43964,2,1672319404),(129610,3,43965,2,1672319404),(129611,3,43966,2,1672319404),(129612,3,43967,2,1672319404),(129613,3,43968,2,1672319404),(129614,3,43969,2,1672319404),(129615,3,43970,2,1672319404),(129616,3,43971,2,1672319404),(129617,3,43972,2,1672319404),(129618,3,43973,2,1672319404),(129619,3,43974,2,1672319404),(129620,3,43975,2,1672319404),(129621,3,43976,2,1672319404),(129622,3,43977,2,1672319404),(129623,3,43978,2,1672319404),(129624,3,43979,2,1672319404),(129625,3,43980,2,1672319404),(129626,3,43981,2,1672319404),(129627,3,43982,2,1672319404),(129628,3,43983,2,1672319404),(129629,3,43984,2,1672319404),(129630,3,43985,2,1672319404),(129631,3,43986,2,1672319404),(129632,3,43987,2,1672319404),(129633,3,43988,2,1672319404),(129634,3,43989,2,1672319404),(129635,3,43990,2,1672319404),(129636,3,43991,2,1672319404),(129637,3,43992,2,1672319404),(129638,3,43993,2,1672319404),(129639,3,43994,2,1672319404),(129640,3,43995,2,1672319404),(129641,3,43996,2,1672319404),(129642,3,43997,2,1672319404),(129643,3,43998,2,1672319404),(129644,3,43999,2,1672319404),(129645,3,44000,2,1672319404),(129646,3,44001,2,1672319404),(129647,3,44002,2,1672319404),(129648,3,44003,2,1672319404),(129649,3,44004,2,1672319404),(129650,3,44005,2,1672319404),(129651,3,44006,2,1672319404),(129652,3,44007,2,1672319404),(129653,3,44008,2,1672319404),(129654,3,44009,2,1672319404),(129655,3,44010,2,1672319404),(129656,3,44011,2,1672319404),(129657,3,44012,2,1672319404),(129658,3,44013,2,1672319404),(129659,3,44014,2,1672319404),(129660,3,44015,2,1672319404),(129661,3,44016,2,1672319404),(129662,3,44017,2,1672319404),(129663,3,44018,2,1672319404),(129664,3,44019,2,1672319404),(129665,3,44020,2,1672319404),(129666,3,44021,2,1672319404),(129667,3,44022,2,1672319404),(129668,3,44023,2,1672319404),(129669,3,44024,2,1672319404),(129670,3,44025,2,1672319404),(129671,3,44026,2,1672319404),(129672,3,44027,2,1672319404),(129673,3,44028,2,1672319404),(129674,3,44029,2,1672319404),(129675,3,44030,2,1672319404),(129676,3,44031,2,1672319404),(129677,3,44032,2,1672319404),(129678,3,44033,2,1672319404),(129679,3,44034,2,1672319404),(129680,3,44035,2,1672319404),(129681,3,44036,2,1672319404),(129682,3,44037,2,1672319404),(129683,3,44038,2,1672319404),(129684,3,44039,2,1672319404),(129685,3,44040,2,1672319404),(129686,3,44041,2,1672319404),(129687,3,44042,2,1672319404),(129688,3,44043,2,1672319404),(129689,3,44044,2,1672319404),(129690,3,44045,2,1672319404),(129691,3,44046,2,1672319404),(129692,3,44047,2,1672319404),(129693,3,44048,2,1672319404),(129694,3,44049,2,1672319404),(129695,3,44108,2,1672319404),(129696,3,44109,2,1672319404),(129697,3,44110,2,1672319404),(129698,3,44111,2,1672319404),(129699,3,44112,2,1672319404),(129700,3,44113,2,1672319404),(129701,3,44114,2,1672319404),(129702,3,44115,2,1672319404),(129703,3,44116,2,1672319404),(129704,3,44117,2,1672319404),(129705,3,44118,2,1672319404),(129706,3,44119,2,1672319404),(129707,3,44120,2,1672319404),(129708,3,44135,2,1672319404),(129709,3,44136,2,1672319404),(129710,3,44137,2,1672319404),(129711,3,44138,2,1672319404),(129712,3,44139,2,1672319404),(129713,3,44140,2,1672319404),(129714,3,44141,2,1672319404),(129715,3,44142,2,1672319404),(129716,3,44143,2,1672319404),(129717,3,44144,2,1672319404),(129718,3,44145,2,1672319404),(129719,3,44146,2,1672319404),(129720,3,44147,2,1672319404),(129721,3,44155,2,1672319404),(129722,3,44156,2,1672319404),(129723,3,44157,2,1672319404),(129724,3,44158,2,1672319404),(129725,3,44159,2,1672319404),(129726,3,44160,2,1672319404),(129727,3,44214,2,1672319404),(129728,3,44215,2,1672319404),(129729,3,44216,2,1672319404),(129730,3,44217,2,1672319404),(129731,3,44218,2,1672319404),(129732,3,44219,2,1672319404),(129733,3,44220,2,1672319404),(129734,3,44221,2,1672319404),(129735,3,44222,2,1672319404),(129736,3,44223,2,1672319404),(129737,3,44224,2,1672319404),(129738,3,44225,2,1672319404),(129739,3,44226,2,1672319404),(129740,3,44227,2,1672319404),(129741,3,44228,2,1672319404),(129742,3,44229,2,1672319404),(129743,3,44230,2,1672319404),(129744,3,44231,2,1672319404),(129745,3,44232,2,1672319404),(129746,3,44233,2,1672319404),(129747,3,44234,2,1672319404),(129748,3,44246,2,1672319404),(129749,3,44247,2,1672319404),(129750,3,44372,2,1672319404),(129751,3,44373,2,1672319404),(129752,3,44375,2,1672319404),(129753,3,44376,2,1672319404),(129754,3,44438,2,1672319404),(129755,3,44440,2,1672319404),(129756,3,44443,2,1672319404),(129757,3,44444,2,1672319404),(129758,3,27079,3,1672319404),(129759,3,27080,3,1672319404),(129760,3,27081,3,1672319404),(129761,3,27082,3,1672319404),(129762,3,27083,3,1672319404),(129763,3,27084,3,1672319404),(129764,3,27085,3,1672319404),(129765,3,27086,3,1672319404),(129766,3,27087,3,1672319404),(129767,3,27099,3,1672319404),(129768,3,27100,3,1672319404),(129769,3,27101,3,1672319404),(129770,3,27102,3,1672319404),(129771,3,27103,3,1672319404),(129772,3,27104,3,1672319404),(129773,3,27105,3,1672319404),(129774,3,27106,3,1672319404),(129775,3,27107,3,1672319404),(129776,3,27119,3,1672319404),(129777,3,27120,3,1672319404),(129778,3,27121,3,1672319404),(129779,3,27122,3,1672319404),(129780,3,27123,3,1672319404),(129781,3,27124,3,1672319404),(129782,3,27125,3,1672319404),(129783,3,27126,3,1672319404),(129784,3,27127,3,1672319404),(129785,3,27748,3,1672319404),(129786,3,27749,3,1672319404),(129787,3,27750,3,1672319404),(129788,3,27751,3,1672319404),(129789,3,27753,3,1672319404),(129790,3,27754,3,1672319404),(129791,3,27755,3,1672319404),(129792,3,27783,3,1672319404),(129793,3,27784,3,1672319404),(129794,3,27785,3,1672319404),(129795,3,27786,3,1672319404),(129796,3,27787,3,1672319404),(129797,3,27821,3,1672319404),(129798,3,27822,3,1672319404),(129799,3,27823,3,1672319404),(129800,3,28150,3,1672319404),(129801,3,28153,3,1672319404),(129802,3,28154,3,1672319404),(129803,3,28155,3,1672319404),(129804,3,28156,3,1672319404),(129805,3,28157,3,1672319404),(129806,3,28158,3,1672319404),(129807,3,28404,3,1672319404),(129808,3,28405,3,1672319404),(129809,3,28406,3,1672319404),(129810,3,28407,3,1672319404),(129811,3,28408,3,1672319404),(129812,3,28409,3,1672319404),(129813,3,28411,3,1672319404),(129814,3,28412,3,1672319404),(129815,3,28413,3,1672319404),(129816,3,28414,3,1672319404),(129817,3,28415,3,1672319404),(129818,3,28416,3,1672319404),(129819,3,28417,3,1672319404),(129820,3,28418,3,1672319404),(129821,3,28419,3,1672319404),(129822,3,28420,3,1672319404),(129823,3,28421,3,1672319404),(129824,3,28422,3,1672319404),(129825,3,28423,3,1672319404),(129826,3,28424,3,1672319404),(129827,3,28425,3,1672319404),(129828,3,28474,3,1672319404),(129829,3,28475,3,1672319404),(129830,3,28476,3,1672319404),(129831,3,28477,3,1672319404),(129832,3,28478,3,1672319404),(129833,3,28479,3,1672319404),(129834,3,28480,3,1672319404),(129835,3,28481,3,1672319404),(129836,3,28894,3,1672319404),(129837,3,29014,3,1672319404),(129838,3,29015,3,1672319404),(129839,3,29016,3,1672319404),(129840,3,29017,3,1672319404),(129841,3,29018,3,1672319404),(129842,3,29019,3,1672319404),(129843,3,29020,3,1672319404),(129844,3,29021,3,1672319404),(129845,3,29022,3,1672319404),(129846,3,29023,3,1672319404),(129847,3,29024,3,1672319404),(129848,3,29025,3,1672319404),(129849,3,29026,3,1672319404),(129850,3,29027,3,1672319404),(129851,3,29028,3,1672319404),(129852,3,29029,3,1672319404),(129853,3,29030,3,1672319404),(129854,3,29048,3,1672319404),(129855,3,29210,3,1672319404),(129856,3,29211,3,1672319404),(129857,3,29212,3,1672319404),(129858,3,29213,3,1672319404),(129859,3,29432,3,1672319404),(129860,3,29433,3,1672319404),(129861,3,29434,3,1672319404),(129862,3,29435,3,1672319404),(129863,3,29436,3,1672319404),(129864,3,29437,3,1672319404),(129865,3,29438,3,1672319404),(129866,3,29439,3,1672319404),(129867,3,29440,3,1672319404),(129868,3,29441,3,1672319404),(129869,3,29442,3,1672319404),(129870,3,29443,3,1672319404),(129871,3,29444,3,1672319404),(129872,3,29445,3,1672319404),(129873,3,29446,3,1672319404),(129874,3,29447,3,1672319404),(129875,3,29448,3,1672319404),(129876,3,29449,3,1672319404),(129877,3,29450,3,1672319404),(129878,3,29451,3,1672319404),(129879,3,29452,3,1672319404),(129880,3,29453,3,1672319404),(129881,3,30113,3,1672319404),(129882,3,30114,3,1672319404),(129883,3,30115,3,1672319404),(129884,3,30116,3,1672319404),(129885,3,30118,3,1672319404),(129886,3,31006,3,1672319404),(129887,3,31007,3,1672319404),(129888,3,31008,3,1672319404),(129889,3,31009,3,1672319404),(129890,3,31048,3,1672319404),(129891,3,31049,3,1672319404),(129892,3,31050,3,1672319404),(129893,3,31051,3,1672319404),(129894,3,31370,3,1672319404),(129895,3,31371,3,1672319404),(129896,3,31372,3,1672319404),(129897,3,31379,3,1672319404),(129898,3,31380,3,1672319404),(129899,3,31381,3,1672319404),(129900,3,31382,3,1672319404),(129901,3,31383,3,1672319404),(129902,3,31384,3,1672319404),(129903,3,31902,3,1672319404),(129904,3,31903,3,1672319404),(129905,3,31904,3,1672319404),(129906,3,31905,3,1672319404),(129907,3,31906,3,1672319404),(129908,3,31907,3,1672319404),(129909,3,31908,3,1672319404),(129910,3,31932,3,1672319404),(129911,3,31933,3,1672319404),(129912,3,31934,3,1672319404),(129913,3,31935,3,1672319404),(129914,3,31936,3,1672319404),(129915,3,31937,3,1672319404),(129916,3,33467,3,1672319404),(129917,3,33468,3,1672319404),(129918,3,33469,3,1672319404),(129919,3,33470,3,1672319404),(129920,3,33471,3,1672319404),(129921,3,33472,3,1672319404),(129922,3,33473,3,1672319404),(129923,3,33474,3,1672319404),(129924,3,33475,3,1672319404),(129925,3,33476,3,1672319404),(129926,3,33477,3,1672319404),(129927,3,33478,3,1672319404),(129928,3,33479,3,1672319404),(129929,3,33480,3,1672319404),(129930,3,33481,3,1672319404),(129931,3,33482,3,1672319404),(129932,3,33483,3,1672319404),(129933,3,33484,3,1672319404),(129934,3,33485,3,1672319404),(129935,3,33486,3,1672319404),(129936,3,33487,3,1672319404),(129937,3,33488,3,1672319404),(129938,3,33489,3,1672319404),(129939,3,33490,3,1672319404),(129940,3,33552,3,1672319404),(129941,3,33553,3,1672319404),(129942,3,33554,3,1672319404),(129943,3,33555,3,1672319404),(129944,3,33556,3,1672319404),(129945,3,33557,3,1672319404),(129946,3,33558,3,1672319404),(129947,3,33559,3,1672319404),(129948,3,33560,3,1672319404),(129949,3,33561,3,1672319404),(129950,3,33562,3,1672319404),(129951,3,33563,3,1672319404),(129952,3,33564,3,1672319404),(129953,3,33565,3,1672319404),(129954,3,33566,3,1672319404),(129955,3,33567,3,1672319404),(129956,3,33568,3,1672319404),(129957,3,33569,3,1672319404),(129958,3,33570,3,1672319404),(129959,3,33571,3,1672319404),(129960,3,33572,3,1672319404),(129961,3,33573,3,1672319404),(129962,3,33574,3,1672319404),(129963,3,33575,3,1672319404),(129964,3,33576,3,1672319404),(129965,3,33577,3,1672319404),(129966,3,33578,3,1672319404),(129967,3,33579,3,1672319404),(129968,3,33580,3,1672319404),(129969,3,33581,3,1672319404),(129970,3,33582,3,1672319404),(129971,3,33584,3,1672319404),(129972,3,33585,3,1672319404),(129973,3,33586,3,1672319404),(129974,3,33587,3,1672319404),(129975,3,33588,3,1672319404),(129976,3,33589,3,1672319404),(129977,3,33590,3,1672319404),(129978,3,33591,3,1672319404),(129979,3,33592,3,1672319404),(129980,3,33593,3,1672319404),(129981,3,33594,3,1672319404),(129982,3,33595,3,1672319404),(129983,3,33596,3,1672319404),(129984,3,33597,3,1672319404),(129985,3,33598,3,1672319404),(129986,3,33599,3,1672319404),(129987,3,33600,3,1672319404),(129988,3,33601,3,1672319404),(129989,3,33602,3,1672319404),(129990,3,33603,3,1672319404),(129991,3,33604,3,1672319404),(129992,3,33605,3,1672319404),(129993,3,33606,3,1672319404),(129994,3,33607,3,1672319404),(129995,3,33608,3,1672319404),(129996,3,33609,3,1672319404),(129997,3,33610,3,1672319404),(129998,3,33611,3,1672319404),(129999,3,33612,3,1672319404),(130000,3,33613,3,1672319404),(130001,3,33614,3,1672319404),(130002,3,33615,3,1672319404),(130003,3,33616,3,1672319404),(130004,3,33617,3,1672319404),(130005,3,33618,3,1672319404),(130006,3,33619,3,1672319404),(130007,3,33621,3,1672319404),(130008,3,33622,3,1672319404),(130009,3,33623,3,1672319404),(130010,3,33624,3,1672319404),(130011,3,33625,3,1672319404),(130012,3,33626,3,1672319404),(130013,3,33627,3,1672319404),(130014,3,33628,3,1672319404),(130015,3,33629,3,1672319404),(130016,3,33703,3,1672319404),(130017,3,33704,3,1672319404),(130018,3,33705,3,1672319404),(130019,3,33706,3,1672319404),(130020,3,33707,3,1672319404),(130021,3,33708,3,1672319404),(130022,3,33709,3,1672319404),(130023,3,33710,3,1672319404),(130024,3,33711,3,1672319404),(130025,3,33712,3,1672319404),(130026,3,33713,3,1672319404),(130027,3,33714,3,1672319404),(130028,3,33715,3,1672319404),(130029,3,33716,3,1672319404),(130030,3,33717,3,1672319404),(130031,3,33718,3,1672319404),(130032,3,33719,3,1672319404),(130033,3,33720,3,1672319404),(130034,3,33721,3,1672319404),(130035,3,33722,3,1672319404),(130036,3,33723,3,1672319404),(130037,3,33724,3,1672319404),(130038,3,33725,3,1672319404),(130039,3,33726,3,1672319404),(130040,3,33727,3,1672319404),(130041,3,33728,3,1672319404),(130042,3,33729,3,1672319404),(130043,3,33730,3,1672319404),(130044,3,33731,3,1672319404),(130045,3,33732,3,1672319404),(130046,3,33733,3,1672319404),(130047,3,33734,3,1672319404),(130048,3,33735,3,1672319404),(130049,3,33736,3,1672319404),(130050,3,33737,3,1672319404),(130051,3,33738,3,1672319404),(130052,3,33739,3,1672319404),(130053,3,33740,3,1672319404),(130054,3,33741,3,1672319404),(130055,3,33742,3,1672319404),(130056,3,33743,3,1672319404),(130057,3,36567,3,1672319404),(130058,3,36568,3,1672319404),(130059,3,36569,3,1672319404),(130060,3,36570,3,1672319404),(130061,3,36571,3,1672319404),(130062,3,36572,3,1672319404),(130063,3,36573,3,1672319404),(130064,3,36574,3,1672319404),(130065,3,36575,3,1672319404),(130066,3,36576,3,1672319404),(130067,3,36577,3,1672319404),(130068,3,36578,3,1672319404),(130069,3,36579,3,1672319404),(130070,3,36580,3,1672319404),(130071,3,36581,3,1672319404),(130072,3,36582,3,1672319404),(130073,3,36583,3,1672319404),(130074,3,36584,3,1672319404),(130075,3,36585,3,1672319404),(130076,3,36586,3,1672319404),(130077,3,36587,3,1672319404),(130078,3,36588,3,1672319404),(130079,3,36589,3,1672319404),(130080,3,36590,3,1672319404),(130081,3,36591,3,1672319404),(130082,3,36592,3,1672319404),(130083,3,36593,3,1672319404),(130084,3,36594,3,1672319404),(130085,3,36595,3,1672319404),(130086,3,36596,3,1672319404),(130087,3,36597,3,1672319404),(130088,3,36624,3,1672319404),(130089,3,36625,3,1672319404),(130090,3,36626,3,1672319404),(130091,3,36627,3,1672319404),(130092,3,36628,3,1672319404),(130093,3,36629,3,1672319404),(130094,3,36630,3,1672319404),(130095,3,36631,3,1672319404),(130096,3,36632,3,1672319404),(130097,3,36633,3,1672319404),(130098,3,36634,3,1672319404),(130099,3,36635,3,1672319404),(130100,3,36636,3,1672319404),(130101,3,36637,3,1672319404),(130102,3,36638,3,1672319404),(130103,3,36639,3,1672319404),(130104,3,36640,3,1672319404),(130105,3,36641,3,1672319404),(130106,3,36642,3,1672319404),(130107,3,36643,3,1672319404),(130108,3,36644,3,1672319404),(130109,3,36645,3,1672319404),(130110,3,36646,3,1672319404),(130111,3,36647,3,1672319404),(130112,3,36648,3,1672319404),(130113,3,36649,3,1672319404),(130114,3,36650,3,1672319404),(130115,3,36651,3,1672319404),(130116,3,36652,3,1672319404),(130117,3,36653,3,1672319404),(130118,3,36654,3,1672319404),(130119,3,36681,3,1672319404),(130120,3,36682,3,1672319404),(130121,3,36683,3,1672319404),(130122,3,36684,3,1672319404),(130123,3,36685,3,1672319404),(130124,3,36686,3,1672319404),(130125,3,36687,3,1672319404),(130126,3,36688,3,1672319404),(130127,3,36689,3,1672319404),(130128,3,36690,3,1672319404),(130129,3,36691,3,1672319404),(130130,3,36692,3,1672319404),(130131,3,36693,3,1672319404),(130132,3,36694,3,1672319404),(130133,3,36695,3,1672319404),(130134,3,36696,3,1672319404),(130135,3,36697,3,1672319404),(130136,3,36698,3,1672319404),(130137,3,36699,3,1672319404),(130138,3,36700,3,1672319404),(130139,3,36701,3,1672319404),(130140,3,36702,3,1672319404),(130141,3,36703,3,1672319404),(130142,3,36704,3,1672319404),(130143,3,36705,3,1672319404),(130144,3,36706,3,1672319404),(130145,3,36707,3,1672319404),(130146,3,36708,3,1672319404),(130147,3,36709,3,1672319404),(130148,3,36710,3,1672319404),(130149,3,36711,3,1672319404),(130150,3,36738,3,1672319404),(130151,3,36739,3,1672319404),(130152,3,36740,3,1672319404),(130153,3,36741,3,1672319404),(130154,3,36742,3,1672319404),(130155,3,36743,3,1672319404),(130156,3,36744,3,1672319404),(130157,3,36745,3,1672319404),(130158,3,36746,3,1672319404),(130159,3,36747,3,1672319404),(130160,3,36748,3,1672319404),(130161,3,36749,3,1672319404),(130162,3,36750,3,1672319404),(130163,3,36751,3,1672319404),(130164,3,36752,3,1672319404),(130165,3,36753,3,1672319404),(130166,3,36754,3,1672319404),(130167,3,36755,3,1672319404),(130168,3,36756,3,1672319404),(130169,3,36757,3,1672319404),(130170,3,36758,3,1672319404),(130171,3,36759,3,1672319404),(130172,3,36760,3,1672319404),(130173,3,36761,3,1672319404),(130174,3,36762,3,1672319404),(130175,3,36763,3,1672319404),(130176,3,36764,3,1672319404),(130177,3,36765,3,1672319404),(130178,3,36766,3,1672319404),(130179,3,36767,3,1672319404),(130180,3,36768,3,1672319404),(130181,3,36814,3,1672319404),(130182,3,36815,3,1672319404),(130183,3,36816,3,1672319404),(130184,3,36817,3,1672319404),(130185,3,36818,3,1672319404),(130186,3,36819,3,1672319404),(130187,3,39861,3,1672319404),(130188,3,39862,3,1672319404),(130189,3,39863,3,1672319404),(130190,3,39864,3,1672319404),(130191,3,39865,3,1672319404),(130192,3,39866,3,1672319404),(130193,3,39867,3,1672319404),(130194,3,39868,3,1672319404),(130195,3,39869,3,1672319404),(130196,3,39870,3,1672319404),(130197,3,39871,3,1672319404),(130198,3,39872,3,1672319404),(130199,3,39873,3,1672319404),(130200,3,39874,3,1672319404),(130201,3,39875,3,1672319404),(130202,3,39890,3,1672319404),(130203,3,39891,3,1672319404),(130204,3,39892,3,1672319404),(130205,3,39893,3,1672319404),(130206,3,39894,3,1672319404),(130207,3,39895,3,1672319404),(130208,3,39896,3,1672319404),(130209,3,39897,3,1672319404),(130210,3,39898,3,1672319404),(130211,3,39899,3,1672319404),(130212,3,39900,3,1672319404),(130213,3,39901,3,1672319404),(130214,3,39902,3,1672319404),(130215,3,39903,3,1672319404),(130216,3,39904,3,1672319404),(130217,3,39921,3,1672319404),(130218,3,39922,3,1672319404),(130219,3,39923,3,1672319404),(130220,3,39924,3,1672319404),(130221,3,39925,3,1672319404),(130222,3,39926,3,1672319404),(130223,3,39927,3,1672319404),(130224,3,39928,3,1672319404),(130225,3,39929,3,1672319404),(130226,3,39930,3,1672319404),(130227,3,39931,3,1672319404),(130228,3,39932,3,1672319404),(130229,3,39933,3,1672319404),(130230,3,39934,3,1672319404),(130231,3,39935,3,1672319404),(130232,3,39936,3,1672319404),(130233,3,39943,3,1672319404),(130234,3,39944,3,1672319404),(130235,3,39945,3,1672319404),(130236,3,39946,3,1672319404),(130237,3,39947,3,1672319404),(130238,3,39948,3,1672319404),(130239,3,39949,3,1672319404),(130240,3,39950,3,1672319404),(130241,3,39951,3,1672319404),(130242,3,39952,3,1672319404),(130243,3,39953,3,1672319404),(130244,3,39954,3,1672319404),(130245,3,39955,3,1672319404),(130246,3,39956,3,1672319404),(130247,3,39957,3,1672319404),(130248,3,39958,3,1672319404),(130249,3,39959,3,1672319404),(130250,3,39960,3,1672319404),(130251,3,39961,3,1672319404),(130252,3,39962,3,1672319404),(130253,3,39963,3,1672319404),(130254,3,39964,3,1672319404),(130255,3,39965,3,1672319404),(130256,3,39966,3,1672319404),(130257,3,39967,3,1672319404),(130258,3,39968,3,1672319404),(130259,3,39969,3,1672319404),(130260,3,39970,3,1672319404),(130261,3,39971,3,1672319404),(130262,3,39972,3,1672319404),(130263,3,39973,3,1672319404),(130264,3,39974,3,1672319404),(130265,3,39975,3,1672319404),(130266,3,39976,3,1672319404),(130267,3,40003,3,1672319404),(130268,3,40004,3,1672319404),(130269,3,40005,3,1672319404),(130270,3,40006,3,1672319404),(130271,3,40007,3,1672319404),(130272,3,40008,3,1672319404),(130273,3,40009,3,1672319404),(130274,3,40036,3,1672319404),(130275,3,40037,3,1672319404),(130276,3,40038,3,1672319404),(130277,3,40039,3,1672319404),(130278,3,40040,3,1672319404),(130279,3,40041,3,1672319404),(130280,3,40042,3,1672319404),(130281,3,40043,3,1672319404),(130282,3,40044,3,1672319404),(130283,3,40045,3,1672319404),(130284,3,40046,3,1672319404),(130285,3,40047,3,1672319404),(130286,3,40048,3,1672319404),(130287,3,40049,3,1672319404),(130288,3,40050,3,1672319404),(130289,3,40051,3,1672319404),(130290,3,40052,3,1672319404),(130291,3,40053,3,1672319404),(130292,3,40054,3,1672319404),(130293,3,40055,3,1672319404),(130294,3,40056,3,1672319404),(130295,3,40057,3,1672319404),(130296,3,40058,3,1672319404),(130297,3,40059,3,1672319404),(130298,3,40060,3,1672319404),(130299,3,40061,3,1672319404),(130300,3,40062,3,1672319404),(130301,3,40063,3,1672319404),(130302,3,40064,3,1672319404),(130303,3,40065,3,1672319404),(130304,3,40066,3,1672319404),(130305,3,40067,3,1672319404),(130306,3,40068,3,1672319404),(130307,3,40069,3,1672319404),(130308,3,40070,3,1672319404),(130309,3,40071,3,1672319404),(130310,3,40072,3,1672319404),(130311,3,40073,3,1672319404),(130312,3,40074,3,1672319404),(130313,3,40075,3,1672319404),(130314,3,40076,3,1672319404),(130315,3,40077,3,1672319404),(130316,3,40078,3,1672319404),(130317,3,40079,3,1672319404),(130318,3,40080,3,1672319404),(130319,3,40081,3,1672319404),(130320,3,40082,3,1672319404),(130321,3,40083,3,1672319404),(130322,3,40084,3,1672319404),(130323,3,40085,3,1672319404),(130324,3,40086,3,1672319404),(130325,3,40087,3,1672319404),(130326,3,40088,3,1672319404),(130327,3,40089,3,1672319404),(130328,3,40090,3,1672319404),(130329,3,40091,3,1672319404),(130330,3,40092,3,1672319404),(130331,3,40093,3,1672319404),(130332,3,40094,3,1672319404),(130333,3,40857,3,1672319404),(130334,3,40858,3,1672319404),(130335,3,40859,3,1672319404),(130336,3,40860,3,1672319404),(130337,3,40861,3,1672319404),(130338,3,40862,3,1672319404),(130339,3,40863,3,1672319404),(130340,3,40864,3,1672319404),(130341,3,40865,3,1672319404),(130342,3,40866,3,1672319404),(130343,3,40880,3,1672319404),(130344,3,40881,3,1672319404),(130345,3,40882,3,1672319404),(130346,3,40883,3,1672319404),(130347,3,40884,3,1672319404),(130348,3,40885,3,1672319404),(130349,3,40886,3,1672319404),(130350,3,40887,3,1672319404),(130351,3,40888,3,1672319404),(130352,3,40889,3,1672319404),(130353,3,40902,3,1672319404),(130354,3,40903,3,1672319404),(130355,3,40904,3,1672319404),(130356,3,40905,3,1672319404),(130357,3,40906,3,1672319404),(130358,3,40907,3,1672319404),(130359,3,40908,3,1672319404),(130360,3,40909,3,1672319404),(130361,3,40910,3,1672319404),(130362,3,40924,3,1672319404),(130363,3,40925,3,1672319404),(130364,3,40926,3,1672319404),(130365,3,40927,3,1672319404),(130366,3,40928,3,1672319404),(130367,3,40929,3,1672319404),(130368,3,40930,3,1672319404),(130369,3,40931,3,1672319404),(130370,3,40932,3,1672319404),(130371,3,40933,3,1672319404),(130372,3,42277,3,1672319404),(130373,3,42278,3,1672319404),(130374,3,42279,3,1672319404),(130375,3,42280,3,1672319404),(130376,3,42281,3,1672319404),(130377,3,42282,3,1672319404),(130378,3,42283,3,1672319404),(130379,3,42284,3,1672319404),(130380,3,42285,3,1672319404),(130381,3,42286,3,1672319404),(130382,3,42287,3,1672319404),(130383,3,42288,3,1672319404),(130384,3,42289,3,1672319404),(130385,3,42290,3,1672319404),(130386,3,42291,3,1672319404),(130387,3,42307,3,1672319404),(130388,3,42308,3,1672319404),(130389,3,42309,3,1672319404),(130390,3,42310,3,1672319404),(130391,3,42311,3,1672319404),(130392,3,42312,3,1672319404),(130393,3,42363,3,1672319404),(130394,3,42364,3,1672319404),(130395,3,42365,3,1672319404),(130396,3,42366,3,1672319404),(130397,3,42367,3,1672319404),(130398,3,42368,3,1672319404),(130399,3,42369,3,1672319404),(130400,3,42370,3,1672319404),(130401,3,42371,3,1672319404),(130402,3,42372,3,1672319404),(130403,3,42373,3,1672319404),(130404,3,42374,3,1672319404),(130405,3,42375,3,1672319404),(130406,3,42376,3,1672319404),(130407,3,42377,3,1672319404),(130408,3,42378,3,1672319404),(130409,3,42379,3,1672319404),(130410,3,42380,3,1672319404),(130411,3,42381,3,1672319404),(130412,3,42382,3,1672319404),(130413,3,42383,3,1672319404),(130414,3,42415,3,1672319404),(130415,3,42416,3,1672319404),(130416,3,42417,3,1672319404),(130417,3,42418,3,1672319404),(130418,3,42419,3,1672319404),(130419,3,42420,3,1672319404),(130420,3,42421,3,1672319404),(130421,3,42422,3,1672319404),(130422,3,42423,3,1672319404),(130423,3,42424,3,1672319404),(130424,3,42425,3,1672319404),(130425,3,42426,3,1672319404),(130426,3,42427,3,1672319404),(130427,3,42428,3,1672319404),(130428,3,42429,3,1672319404),(130429,3,42430,3,1672319404),(130430,3,42431,3,1672319404),(130431,3,42432,3,1672319404),(130432,3,42433,3,1672319404),(130433,3,42434,3,1672319404),(130434,3,42435,3,1672319404),(130435,3,42436,3,1672319404),(130436,3,42437,3,1672319404),(130437,3,42438,3,1672319404),(130438,3,42439,3,1672319404),(130439,3,42440,3,1672319404),(130440,3,42441,3,1672319404),(130441,3,42442,3,1672319404),(130442,3,42679,3,1672319404),(130443,3,42682,3,1672319404),(130444,3,42691,3,1672319404),(130445,3,42692,3,1672319404),(130446,3,42693,3,1672319404),(130447,3,42694,3,1672319404),(130448,3,42695,3,1672319404),(130449,3,42696,3,1672319404),(130450,3,42697,3,1672319404),(130451,3,42698,3,1672319404),(130452,3,42699,3,1672319404),(130453,3,42706,3,1672319404),(130454,3,42707,3,1672319404),(130455,3,42708,3,1672319404),(130456,3,42709,3,1672319404),(130457,3,42710,3,1672319404),(130458,3,42711,3,1672319404),(130459,3,42712,3,1672319404),(130460,3,42713,3,1672319404),(130461,3,42714,3,1672319404),(130462,3,42715,3,1672319404),(130463,3,42716,3,1672319404),(130464,3,42717,3,1672319404),(130465,3,42718,3,1672319404),(130466,3,42719,3,1672319404),(130467,3,42720,3,1672319404),(130468,3,42721,3,1672319404),(130469,3,42722,3,1672319404),(130470,3,42723,3,1672319404),(130471,3,43194,3,1672319404),(130472,3,43195,3,1672319404),(130473,3,43196,3,1672319404),(130474,3,43197,3,1672319404),(130475,3,43198,3,1672319404),(130476,3,43199,3,1672319404),(130477,3,43200,3,1672319404),(130478,3,43201,3,1672319404),(130479,3,43202,3,1672319404),(130480,3,43203,3,1672319404),(130481,3,43204,3,1672319404),(130482,3,43205,3,1672319404),(130483,3,43206,3,1672319404),(130484,3,43207,3,1672319404),(130485,3,43208,3,1672319404),(130486,3,43209,3,1672319404),(130487,3,43210,3,1672319404),(130488,3,43211,3,1672319404),(130489,3,43212,3,1672319404),(130490,3,43213,3,1672319404),(130491,3,43214,3,1672319404),(130492,3,43215,3,1672319404),(130493,3,43216,3,1672319404),(130494,3,43217,3,1672319404),(130495,3,43218,3,1672319404),(130496,3,43219,3,1672319404),(130497,3,43220,3,1672319404),(130498,3,43221,3,1672319404),(130499,3,43222,3,1672319404),(130500,3,43223,3,1672319404),(130501,3,43224,3,1672319404),(130502,3,43225,3,1672319404),(130503,3,43226,3,1672319404),(130504,3,43227,3,1672319404),(130505,3,43228,3,1672319404),(130506,3,43229,3,1672319404),(130507,3,43230,3,1672319404),(130508,3,43231,3,1672319404),(130509,3,43232,3,1672319404),(130510,3,43233,3,1672319404),(130511,3,43234,3,1672319404),(130512,3,43235,3,1672319404),(130513,3,43236,3,1672319404),(130514,3,43237,3,1672319404),(130515,3,43238,3,1672319404),(130516,3,43239,3,1672319404),(130517,3,43240,3,1672319404),(130518,3,43241,3,1672319404),(130519,3,43242,3,1672319404),(130520,3,43243,3,1672319404),(130521,3,43244,3,1672319404),(130522,3,43245,3,1672319404),(130523,3,43246,3,1672319404),(130524,3,43247,3,1672319404),(130525,3,43248,3,1672319404),(130526,3,43249,3,1672319404),(130527,3,43250,3,1672319404),(130528,3,43251,3,1672319404),(130529,3,43252,3,1672319404),(130530,3,43253,3,1672319404),(130531,3,43254,3,1672319404),(130532,3,43255,3,1672319404),(130533,3,43256,3,1672319404),(130534,3,43257,3,1672319404),(130535,3,43258,3,1672319404),(130536,3,43259,3,1672319404),(130537,3,43260,3,1672319404),(130538,3,43261,3,1672319404),(130539,3,43262,3,1672319404),(130540,3,43263,3,1672319404),(130541,3,43264,3,1672319404),(130542,3,43265,3,1672319404),(130543,3,43266,3,1672319404),(130544,3,43267,3,1672319404),(130545,3,43268,3,1672319404),(130546,3,43269,3,1672319404),(130547,3,43270,3,1672319404),(130548,3,43271,3,1672319404),(130549,3,43272,3,1672319404),(130550,3,43273,3,1672319404),(130551,3,43274,3,1672319404),(130552,3,43275,3,1672319404),(130553,3,43276,3,1672319404),(130554,3,43277,3,1672319404),(130555,3,43278,3,1672319404),(130556,3,43279,3,1672319404),(130557,3,43280,3,1672319404),(130558,3,43301,3,1672319404),(130559,3,43302,3,1672319404),(130560,3,43303,3,1672319404),(130561,3,43304,3,1672319404),(130562,3,43305,3,1672319404),(130563,3,43306,3,1672319404),(130564,3,43307,3,1672319404),(130565,3,43308,3,1672319404),(130566,3,43309,3,1672319404),(130567,3,43310,3,1672319404),(130568,3,43311,3,1672319404),(130569,3,43312,3,1672319404),(130570,3,43313,3,1672319404),(130571,3,43314,3,1672319404),(130572,3,43315,3,1672319404),(130573,3,43316,3,1672319404),(130574,3,43317,3,1672319404),(130575,3,43318,3,1672319404),(130576,3,43319,3,1672319404),(130577,3,43320,3,1672319404),(130578,3,43321,3,1672319404),(130579,3,43322,3,1672319404),(130580,3,43323,3,1672319404),(130581,3,43324,3,1672319404),(130582,3,43325,3,1672319404),(130583,3,43326,3,1672319404),(130584,3,43327,3,1672319404),(130585,3,43328,3,1672319404),(130586,3,43329,3,1672319404),(130587,3,43330,3,1672319404),(130588,3,43331,3,1672319404),(130589,3,43332,3,1672319404),(130590,3,43333,3,1672319404),(130591,3,43334,3,1672319404),(130592,3,43335,3,1672319404),(130593,3,43336,3,1672319404),(130594,3,43337,3,1672319404),(130595,3,43338,3,1672319404),(130596,3,43339,3,1672319404),(130597,3,43340,3,1672319404),(130598,3,43341,3,1672319404),(130599,3,43342,3,1672319404),(130600,3,43343,3,1672319404),(130601,3,43344,3,1672319404),(130602,3,43345,3,1672319404),(130603,3,43346,3,1672319404),(130604,3,43347,3,1672319404),(130605,3,43348,3,1672319404),(130606,3,43349,3,1672319404),(130607,3,43350,3,1672319404),(130608,3,43351,3,1672319404),(130609,3,43352,3,1672319404),(130610,3,43353,3,1672319404),(130611,3,43354,3,1672319404),(130612,3,43355,3,1672319404),(130613,3,43356,3,1672319404),(130614,3,43357,3,1672319404),(130615,3,43358,3,1672319404),(130616,3,43359,3,1672319404),(130617,3,43360,3,1672319404),(130618,3,43361,3,1672319404),(130619,3,43362,3,1672319404),(130620,3,43363,3,1672319404),(130621,3,43364,3,1672319404),(130622,3,43365,3,1672319404),(130623,3,43366,3,1672319404),(130624,3,43367,3,1672319404),(130625,3,43368,3,1672319404),(130626,3,43369,3,1672319404),(130627,3,43370,3,1672319404),(130628,3,43371,3,1672319404),(130629,3,43372,3,1672319404),(130630,3,43373,3,1672319404),(130631,3,43374,3,1672319404),(130632,3,43375,3,1672319404),(130633,3,43376,3,1672319404),(130634,3,43377,3,1672319404),(130635,3,43378,3,1672319404),(130636,3,43379,3,1672319404),(130637,3,43380,3,1672319404),(130638,3,43381,3,1672319404),(130639,3,43382,3,1672319404),(130640,3,43383,3,1672319404),(130641,3,43384,3,1672319404),(130642,3,43385,3,1672319404),(130643,3,43386,3,1672319404),(130644,3,43387,3,1672319404),(130645,3,43388,3,1672319404),(130646,3,43389,3,1672319404),(130647,3,43390,3,1672319404),(130648,3,43391,3,1672319404),(130649,3,43392,3,1672319404),(130650,3,43393,3,1672319404),(130651,3,43394,3,1672319404),(130652,3,43395,3,1672319404),(130653,3,43396,3,1672319404),(130654,3,43397,3,1672319404),(130655,3,43421,3,1672319404),(130656,3,43422,3,1672319404),(130657,3,43423,3,1672319404),(130658,3,43424,3,1672319404),(130659,3,43425,3,1672319404),(130660,3,43426,3,1672319404),(130661,3,43427,3,1672319404),(130662,3,43428,3,1672319404),(130663,3,43429,3,1672319404),(130664,3,43430,3,1672319404),(130665,3,43431,3,1672319404),(130666,3,43432,3,1672319404),(130667,3,43433,3,1672319404),(130668,3,43434,3,1672319404),(130669,3,43435,3,1672319404),(130670,3,43436,3,1672319404),(130671,3,43437,3,1672319404),(130672,3,43438,3,1672319404),(130673,3,43439,3,1672319404),(130674,3,43440,3,1672319404),(130675,3,43441,3,1672319404),(130676,3,43442,3,1672319404),(130677,3,43443,3,1672319404),(130678,3,43444,3,1672319404),(130679,3,43445,3,1672319404),(130680,3,43446,3,1672319404),(130681,3,43447,3,1672319404),(130682,3,43448,3,1672319404),(130683,3,43449,3,1672319404),(130684,3,43450,3,1672319404),(130685,3,43451,3,1672319404),(130686,3,43452,3,1672319404),(130687,3,43453,3,1672319404),(130688,3,43454,3,1672319404),(130689,3,43455,3,1672319404),(130690,3,43456,3,1672319404),(130691,3,43457,3,1672319404),(130692,3,43458,3,1672319404),(130693,3,43459,3,1672319404),(130694,3,43460,3,1672319404),(130695,3,43461,3,1672319404),(130696,3,43462,3,1672319404),(130697,3,43463,3,1672319404),(130698,3,43464,3,1672319404),(130699,3,43465,3,1672319404),(130700,3,43466,3,1672319404),(130701,3,43467,3,1672319404),(130702,3,43468,3,1672319404),(130703,3,43469,3,1672319404),(130704,3,43470,3,1672319404),(130705,3,43471,3,1672319404),(130706,3,43472,3,1672319404),(130707,3,43473,3,1672319404),(130708,3,43474,3,1672319404),(130709,3,43475,3,1672319404),(130710,3,43476,3,1672319404),(130711,3,43477,3,1672319404),(130712,3,43478,3,1672319404),(130713,3,43479,3,1672319404),(130714,3,43480,3,1672319404),(130715,3,43481,3,1672319404),(130716,3,43482,3,1672319404),(130717,3,43483,3,1672319404),(130718,3,43484,3,1672319404),(130719,3,43485,3,1672319404),(130720,3,43486,3,1672319404),(130721,3,43487,3,1672319404),(130722,3,43488,3,1672319404),(130723,3,43489,3,1672319404),(130724,3,43490,3,1672319404),(130725,3,43491,3,1672319404),(130726,3,43492,3,1672319404),(130727,3,43493,3,1672319404),(130728,3,43494,3,1672319404),(130729,3,43495,3,1672319404),(130730,3,43496,3,1672319404),(130731,3,43926,3,1672319404),(130732,3,43927,3,1672319404),(130733,3,43928,3,1672319404),(130734,3,43929,3,1672319404),(130735,3,43930,3,1672319404),(130736,3,43931,3,1672319404),(130737,3,43932,3,1672319404),(130738,3,43933,3,1672319404),(130739,3,43934,3,1672319404),(130740,3,43935,3,1672319404),(130741,3,43936,3,1672319404),(130742,3,43937,3,1672319404),(130743,3,43938,3,1672319404),(130744,3,43939,3,1672319404),(130745,3,43940,3,1672319404),(130746,3,43941,3,1672319404),(130747,3,43942,3,1672319404),(130748,3,43943,3,1672319404),(130749,3,43944,3,1672319404),(130750,3,43945,3,1672319404),(130751,3,43946,3,1672319404),(130752,3,43947,3,1672319404),(130753,3,43948,3,1672319404),(130754,3,43949,3,1672319404),(130755,3,43950,3,1672319404),(130756,3,43951,3,1672319404),(130757,3,43952,3,1672319404),(130758,3,43953,3,1672319404),(130759,3,43954,3,1672319404),(130760,3,43955,3,1672319404),(130761,3,43956,3,1672319404),(130762,3,43957,3,1672319404),(130763,3,43958,3,1672319404),(130764,3,43959,3,1672319404),(130765,3,43960,3,1672319404),(130766,3,43961,3,1672319404),(130767,3,43962,3,1672319404),(130768,3,43963,3,1672319404),(130769,3,43964,3,1672319404),(130770,3,43965,3,1672319404),(130771,3,43966,3,1672319404),(130772,3,43967,3,1672319404),(130773,3,43968,3,1672319404),(130774,3,43969,3,1672319404),(130775,3,43970,3,1672319404),(130776,3,43971,3,1672319404),(130777,3,43972,3,1672319404),(130778,3,43973,3,1672319404),(130779,3,43974,3,1672319404),(130780,3,43975,3,1672319404),(130781,3,43976,3,1672319404),(130782,3,43977,3,1672319404),(130783,3,43978,3,1672319404),(130784,3,43979,3,1672319404),(130785,3,43980,3,1672319404),(130786,3,43981,3,1672319404),(130787,3,43982,3,1672319404),(130788,3,43983,3,1672319404),(130789,3,43984,3,1672319404),(130790,3,43985,3,1672319404),(130791,3,43986,3,1672319404),(130792,3,43987,3,1672319404),(130793,3,43988,3,1672319404),(130794,3,43989,3,1672319404),(130795,3,43990,3,1672319404),(130796,3,43991,3,1672319404),(130797,3,43992,3,1672319404),(130798,3,43993,3,1672319404),(130799,3,43994,3,1672319404),(130800,3,43995,3,1672319404),(130801,3,43996,3,1672319404),(130802,3,43997,3,1672319404),(130803,3,43998,3,1672319404),(130804,3,43999,3,1672319404),(130805,3,44000,3,1672319404),(130806,3,44001,3,1672319404),(130807,3,44002,3,1672319404),(130808,3,44003,3,1672319404),(130809,3,44004,3,1672319404),(130810,3,44005,3,1672319404),(130811,3,44006,3,1672319404),(130812,3,44007,3,1672319404),(130813,3,44008,3,1672319404),(130814,3,44009,3,1672319404),(130815,3,44010,3,1672319404),(130816,3,44011,3,1672319404),(130817,3,44012,3,1672319404),(130818,3,44013,3,1672319404),(130819,3,44014,3,1672319404),(130820,3,44015,3,1672319404),(130821,3,44016,3,1672319404),(130822,3,44017,3,1672319404),(130823,3,44018,3,1672319404),(130824,3,44019,3,1672319404),(130825,3,44020,3,1672319404),(130826,3,44021,3,1672319404),(130827,3,44022,3,1672319404),(130828,3,44023,3,1672319404),(130829,3,44024,3,1672319404),(130830,3,44025,3,1672319404),(130831,3,44026,3,1672319404),(130832,3,44027,3,1672319404),(130833,3,44028,3,1672319404),(130834,3,44029,3,1672319404),(130835,3,44030,3,1672319404),(130836,3,44031,3,1672319404),(130837,3,44032,3,1672319404),(130838,3,44033,3,1672319404),(130839,3,44034,3,1672319404),(130840,3,44035,3,1672319404),(130841,3,44036,3,1672319404),(130842,3,44037,3,1672319404),(130843,3,44038,3,1672319404),(130844,3,44039,3,1672319404),(130845,3,44040,3,1672319404),(130846,3,44041,3,1672319404),(130847,3,44042,3,1672319404),(130848,3,44043,3,1672319404),(130849,3,44044,3,1672319404),(130850,3,44045,3,1672319404),(130851,3,44046,3,1672319404),(130852,3,44047,3,1672319404),(130853,3,44048,3,1672319404),(130854,3,44049,3,1672319404),(130855,3,44108,3,1672319404),(130856,3,44109,3,1672319404),(130857,3,44110,3,1672319404),(130858,3,44111,3,1672319404),(130859,3,44112,3,1672319404),(130860,3,44113,3,1672319404),(130861,3,44114,3,1672319404),(130862,3,44115,3,1672319404),(130863,3,44116,3,1672319404),(130864,3,44117,3,1672319404),(130865,3,44118,3,1672319404),(130866,3,44119,3,1672319404),(130867,3,44120,3,1672319404),(130868,3,44135,3,1672319404),(130869,3,44136,3,1672319404),(130870,3,44137,3,1672319404),(130871,3,44138,3,1672319404),(130872,3,44139,3,1672319404),(130873,3,44140,3,1672319404),(130874,3,44141,3,1672319404),(130875,3,44142,3,1672319404),(130876,3,44143,3,1672319404),(130877,3,44144,3,1672319404),(130878,3,44145,3,1672319404),(130879,3,44146,3,1672319404),(130880,3,44147,3,1672319404),(130881,3,44155,3,1672319404),(130882,3,44156,3,1672319404),(130883,3,44157,3,1672319404),(130884,3,44158,3,1672319404),(130885,3,44159,3,1672319404),(130886,3,44160,3,1672319404),(130887,3,44214,3,1672319404),(130888,3,44215,3,1672319404),(130889,3,44216,3,1672319404),(130890,3,44217,3,1672319404),(130891,3,44218,3,1672319404),(130892,3,44219,3,1672319404),(130893,3,44220,3,1672319404),(130894,3,44221,3,1672319404),(130895,3,44222,3,1672319404),(130896,3,44223,3,1672319404),(130897,3,44224,3,1672319404),(130898,3,44225,3,1672319404),(130899,3,44226,3,1672319404),(130900,3,44227,3,1672319404),(130901,3,44228,3,1672319404),(130902,3,44229,3,1672319404),(130903,3,44230,3,1672319404),(130904,3,44231,3,1672319404),(130905,3,44232,3,1672319404),(130906,3,44233,3,1672319404),(130907,3,44234,3,1672319404),(130908,3,44246,3,1672319404),(130909,3,44247,3,1672319404),(130910,3,44372,3,1672319404),(130911,3,44373,3,1672319404),(130912,3,44375,3,1672319404),(130913,3,44376,3,1672319404),(130914,3,44438,3,1672319404),(130915,3,44440,3,1672319404),(130916,3,44443,3,1672319404),(130917,3,44444,3,1672319404),(130918,1,10508,2,1672319405),(130919,1,10511,2,1672319405),(130920,1,10512,2,1672319405),(130921,1,10513,2,1672319405),(130922,1,10514,2,1672319405),(130923,1,10508,3,1672319405),(130924,1,10511,3,1672319405),(130925,1,10512,3,1672319405),(130926,1,10513,3,1672319405),(130927,1,10514,3,1672319405),(130928,3,27078,2,1672319405),(130929,3,27098,2,1672319405),(130930,3,27118,2,1672319405),(130931,3,27745,2,1672319405),(130932,3,27746,2,1672319405),(130933,3,27747,2,1672319405),(130934,3,27779,2,1672319405),(130935,3,27780,2,1672319405),(130936,3,27781,2,1672319405),(130937,3,27782,2,1672319405),(130938,3,27815,2,1672319405),(130939,3,27816,2,1672319405),(130940,3,27817,2,1672319405),(130941,3,27818,2,1672319405),(130942,3,28144,2,1672319405),(130943,3,28145,2,1672319405),(130944,3,28146,2,1672319405),(130945,3,28147,2,1672319405),(130946,3,28148,2,1672319405),(130947,3,28149,2,1672319405),(130948,3,28392,2,1672319405),(130949,3,28393,2,1672319405),(130950,3,28394,2,1672319405),(130951,3,28395,2,1672319405),(130952,3,28396,2,1672319405),(130953,3,28397,2,1672319405),(130954,3,28398,2,1672319405),(130955,3,28399,2,1672319405),(130956,3,28400,2,1672319405),(130957,3,28401,2,1672319405),(130958,3,28402,2,1672319405),(130959,3,28403,2,1672319405),(130960,3,28468,2,1672319405),(130961,3,28469,2,1672319405),(130962,3,28470,2,1672319405),(130963,3,28471,2,1672319405),(130964,3,28472,2,1672319405),(130965,3,28473,2,1672319405),(130966,3,29008,2,1672319405),(130967,3,29009,2,1672319405),(130968,3,29010,2,1672319405),(130969,3,29201,2,1672319405),(130970,3,29429,2,1672319405),(130971,3,29430,2,1672319405),(130972,3,29431,2,1672319405),(130973,3,31005,2,1672319405),(130974,3,31047,2,1672319405),(130975,3,31367,2,1672319405),(130976,3,31896,2,1672319405),(130977,3,31897,2,1672319405),(130978,3,33465,2,1672319405),(130979,3,33466,2,1672319405),(130980,3,33542,2,1672319405),(130981,3,33543,2,1672319405),(130982,3,33544,2,1672319405),(130983,3,33545,2,1672319405),(130984,3,33546,2,1672319405),(130985,3,33547,2,1672319405),(130986,3,33548,2,1672319405),(130987,3,33549,2,1672319405),(130988,3,33550,2,1672319405),(130989,3,33551,2,1672319405),(130990,3,33620,2,1672319405),(130991,3,33695,2,1672319405),(130992,3,33696,2,1672319405),(130993,3,33697,2,1672319405),(130994,3,33698,2,1672319405),(130995,3,33699,2,1672319405),(130996,3,33700,2,1672319405),(130997,3,33701,2,1672319405),(130998,3,33702,2,1672319405),(130999,3,36553,2,1672319405),(131000,3,36554,2,1672319405),(131001,3,36555,2,1672319405),(131002,3,36556,2,1672319405),(131003,3,36557,2,1672319405),(131004,3,36558,2,1672319405),(131005,3,36559,2,1672319405),(131006,3,36560,2,1672319405),(131007,3,36561,2,1672319405),(131008,3,36562,2,1672319405),(131009,3,36563,2,1672319405),(131010,3,36564,2,1672319405),(131011,3,36565,2,1672319405),(131012,3,36566,2,1672319405),(131013,3,36610,2,1672319405),(131014,3,36611,2,1672319405),(131015,3,36612,2,1672319405),(131016,3,36613,2,1672319405),(131017,3,36614,2,1672319405),(131018,3,36615,2,1672319405),(131019,3,36616,2,1672319405),(131020,3,36617,2,1672319405),(131021,3,36618,2,1672319405),(131022,3,36619,2,1672319405),(131023,3,36620,2,1672319405),(131024,3,36621,2,1672319405),(131025,3,36622,2,1672319405),(131026,3,36623,2,1672319405),(131027,3,36667,2,1672319405),(131028,3,36668,2,1672319405),(131029,3,36669,2,1672319405),(131030,3,36670,2,1672319405),(131031,3,36671,2,1672319405),(131032,3,36672,2,1672319405),(131033,3,36673,2,1672319405),(131034,3,36674,2,1672319405),(131035,3,36675,2,1672319405),(131036,3,36676,2,1672319405),(131037,3,36677,2,1672319405),(131038,3,36678,2,1672319405),(131039,3,36679,2,1672319405),(131040,3,36680,2,1672319405),(131041,3,36724,2,1672319405),(131042,3,36725,2,1672319405),(131043,3,36726,2,1672319405),(131044,3,36727,2,1672319405),(131045,3,36728,2,1672319405),(131046,3,36729,2,1672319405),(131047,3,36730,2,1672319405),(131048,3,36731,2,1672319405),(131049,3,36732,2,1672319405),(131050,3,36733,2,1672319405),(131051,3,36734,2,1672319405),(131052,3,36735,2,1672319405),(131053,3,36736,2,1672319405),(131054,3,36737,2,1672319405),(131055,3,36813,2,1672319405),(131056,3,39851,2,1672319405),(131057,3,39852,2,1672319405),(131058,3,39853,2,1672319405),(131059,3,39854,2,1672319405),(131060,3,39855,2,1672319405),(131061,3,39856,2,1672319405),(131062,3,39857,2,1672319405),(131063,3,39858,2,1672319405),(131064,3,39859,2,1672319405),(131065,3,39860,2,1672319405),(131066,3,39889,2,1672319405),(131067,3,39917,2,1672319405),(131068,3,39918,2,1672319405),(131069,3,39919,2,1672319405),(131070,3,39920,2,1672319405),(131071,3,39940,2,1672319405),(131072,3,39941,2,1672319405),(131073,3,39942,2,1672319405),(131074,3,40000,2,1672319405),(131075,3,40001,2,1672319405),(131076,3,40002,2,1672319405),(131077,3,40021,2,1672319405),(131078,3,40022,2,1672319405),(131079,3,40023,2,1672319405),(131080,3,40024,2,1672319405),(131081,3,40025,2,1672319405),(131082,3,40026,2,1672319405),(131083,3,40027,2,1672319405),(131084,3,40028,2,1672319405),(131085,3,40029,2,1672319405),(131086,3,40030,2,1672319405),(131087,3,40031,2,1672319405),(131088,3,40032,2,1672319405),(131089,3,40033,2,1672319405),(131090,3,40034,2,1672319405),(131091,3,40035,2,1672319405),(131092,3,40855,2,1672319405),(131093,3,40856,2,1672319405),(131094,3,40878,2,1672319405),(131095,3,40879,2,1672319405),(131096,3,40901,2,1672319405),(131097,3,40922,2,1672319405),(131098,3,40923,2,1672319405),(131099,3,42271,2,1672319405),(131100,3,42272,2,1672319405),(131101,3,42273,2,1672319405),(131102,3,42360,2,1672319405),(131103,3,42361,2,1672319405),(131104,3,42362,2,1672319405),(131105,3,42410,2,1672319405),(131106,3,42411,2,1672319405),(131107,3,42412,2,1672319405),(131108,3,42413,2,1672319405),(131109,3,42414,2,1672319405),(131110,3,42703,2,1672319405),(131111,3,42704,2,1672319405),(131112,3,42705,2,1672319405),(131113,3,43184,2,1672319405),(131114,3,43185,2,1672319405),(131115,3,43186,2,1672319405),(131116,3,43187,2,1672319405),(131117,3,43188,2,1672319405),(131118,3,43189,2,1672319405),(131119,3,43190,2,1672319405),(131120,3,43191,2,1672319405),(131121,3,43192,2,1672319405),(131122,3,43193,2,1672319405),(131123,3,43291,2,1672319405),(131124,3,43292,2,1672319405),(131125,3,43293,2,1672319405),(131126,3,43294,2,1672319405),(131127,3,43295,2,1672319405),(131128,3,43296,2,1672319405),(131129,3,43297,2,1672319405),(131130,3,43298,2,1672319405),(131131,3,43299,2,1672319405),(131132,3,43300,2,1672319405),(131133,3,43415,2,1672319405),(131134,3,43416,2,1672319405),(131135,3,43417,2,1672319405),(131136,3,43418,2,1672319405),(131137,3,43419,2,1672319405),(131138,3,43420,2,1672319405),(131139,3,43905,2,1672319405),(131140,3,43906,2,1672319405),(131141,3,43907,2,1672319405),(131142,3,43908,2,1672319405),(131143,3,43909,2,1672319405),(131144,3,43910,2,1672319405),(131145,3,43911,2,1672319405),(131146,3,43912,2,1672319405),(131147,3,43913,2,1672319405),(131148,3,43914,2,1672319405),(131149,3,43915,2,1672319405),(131150,3,43916,2,1672319405),(131151,3,43917,2,1672319405),(131152,3,43918,2,1672319405),(131153,3,43919,2,1672319405),(131154,3,43920,2,1672319405),(131155,3,43921,2,1672319405),(131156,3,43922,2,1672319405),(131157,3,43923,2,1672319405),(131158,3,43924,2,1672319405),(131159,3,43925,2,1672319405),(131160,3,27078,3,1672319405),(131161,3,27098,3,1672319405),(131162,3,27118,3,1672319405),(131163,3,27745,3,1672319405),(131164,3,27746,3,1672319405),(131165,3,27747,3,1672319405),(131166,3,27779,3,1672319405),(131167,3,27780,3,1672319405),(131168,3,27781,3,1672319405),(131169,3,27782,3,1672319405),(131170,3,27815,3,1672319405),(131171,3,27816,3,1672319405),(131172,3,27817,3,1672319405),(131173,3,27818,3,1672319405),(131174,3,28144,3,1672319405),(131175,3,28145,3,1672319405),(131176,3,28146,3,1672319405),(131177,3,28147,3,1672319405),(131178,3,28148,3,1672319405),(131179,3,28149,3,1672319405),(131180,3,28392,3,1672319405),(131181,3,28393,3,1672319405),(131182,3,28394,3,1672319405),(131183,3,28395,3,1672319405),(131184,3,28396,3,1672319405),(131185,3,28397,3,1672319405),(131186,3,28398,3,1672319405),(131187,3,28399,3,1672319405),(131188,3,28400,3,1672319405),(131189,3,28401,3,1672319405),(131190,3,28402,3,1672319405),(131191,3,28403,3,1672319405),(131192,3,28468,3,1672319405),(131193,3,28469,3,1672319405),(131194,3,28470,3,1672319405),(131195,3,28471,3,1672319405),(131196,3,28472,3,1672319405),(131197,3,28473,3,1672319405),(131198,3,29008,3,1672319405),(131199,3,29009,3,1672319405),(131200,3,29010,3,1672319405),(131201,3,29201,3,1672319405),(131202,3,29429,3,1672319405),(131203,3,29430,3,1672319405),(131204,3,29431,3,1672319405),(131205,3,31005,3,1672319405),(131206,3,31047,3,1672319405),(131207,3,31367,3,1672319405),(131208,3,31896,3,1672319405),(131209,3,31897,3,1672319405),(131210,3,33465,3,1672319405),(131211,3,33466,3,1672319405),(131212,3,33542,3,1672319405),(131213,3,33543,3,1672319405),(131214,3,33544,3,1672319405),(131215,3,33545,3,1672319405),(131216,3,33546,3,1672319405),(131217,3,33547,3,1672319405),(131218,3,33548,3,1672319405),(131219,3,33549,3,1672319405),(131220,3,33550,3,1672319405),(131221,3,33551,3,1672319405),(131222,3,33620,3,1672319405),(131223,3,33695,3,1672319405),(131224,3,33696,3,1672319405),(131225,3,33697,3,1672319405),(131226,3,33698,3,1672319405),(131227,3,33699,3,1672319405),(131228,3,33700,3,1672319405),(131229,3,33701,3,1672319405),(131230,3,33702,3,1672319405),(131231,3,36553,3,1672319405),(131232,3,36554,3,1672319405),(131233,3,36555,3,1672319405),(131234,3,36556,3,1672319405),(131235,3,36557,3,1672319405),(131236,3,36558,3,1672319405),(131237,3,36559,3,1672319405),(131238,3,36560,3,1672319405),(131239,3,36561,3,1672319405),(131240,3,36562,3,1672319405),(131241,3,36563,3,1672319405),(131242,3,36564,3,1672319405),(131243,3,36565,3,1672319405),(131244,3,36566,3,1672319405),(131245,3,36610,3,1672319405),(131246,3,36611,3,1672319405),(131247,3,36612,3,1672319405),(131248,3,36613,3,1672319405),(131249,3,36614,3,1672319405),(131250,3,36615,3,1672319405),(131251,3,36616,3,1672319405),(131252,3,36617,3,1672319405),(131253,3,36618,3,1672319405),(131254,3,36619,3,1672319405),(131255,3,36620,3,1672319405),(131256,3,36621,3,1672319405),(131257,3,36622,3,1672319405),(131258,3,36623,3,1672319405),(131259,3,36667,3,1672319405),(131260,3,36668,3,1672319405),(131261,3,36669,3,1672319405),(131262,3,36670,3,1672319405),(131263,3,36671,3,1672319405),(131264,3,36672,3,1672319405),(131265,3,36673,3,1672319405),(131266,3,36674,3,1672319405),(131267,3,36675,3,1672319405),(131268,3,36676,3,1672319405),(131269,3,36677,3,1672319405),(131270,3,36678,3,1672319405),(131271,3,36679,3,1672319405),(131272,3,36680,3,1672319405),(131273,3,36724,3,1672319405),(131274,3,36725,3,1672319405),(131275,3,36726,3,1672319405),(131276,3,36727,3,1672319405),(131277,3,36728,3,1672319405),(131278,3,36729,3,1672319405),(131279,3,36730,3,1672319405),(131280,3,36731,3,1672319405),(131281,3,36732,3,1672319405),(131282,3,36733,3,1672319405),(131283,3,36734,3,1672319405),(131284,3,36735,3,1672319405),(131285,3,36736,3,1672319405),(131286,3,36737,3,1672319405),(131287,3,36813,3,1672319405),(131288,3,39851,3,1672319405),(131289,3,39852,3,1672319405),(131290,3,39853,3,1672319405),(131291,3,39854,3,1672319405),(131292,3,39855,3,1672319405),(131293,3,39856,3,1672319405),(131294,3,39857,3,1672319405),(131295,3,39858,3,1672319405),(131296,3,39859,3,1672319405),(131297,3,39860,3,1672319405),(131298,3,39889,3,1672319405),(131299,3,39917,3,1672319405),(131300,3,39918,3,1672319405),(131301,3,39919,3,1672319405),(131302,3,39920,3,1672319405),(131303,3,39940,3,1672319405),(131304,3,39941,3,1672319405),(131305,3,39942,3,1672319405),(131306,3,40000,3,1672319405),(131307,3,40001,3,1672319405),(131308,3,40002,3,1672319405),(131309,3,40021,3,1672319405),(131310,3,40022,3,1672319405),(131311,3,40023,3,1672319405),(131312,3,40024,3,1672319405),(131313,3,40025,3,1672319405),(131314,3,40026,3,1672319405),(131315,3,40027,3,1672319405),(131316,3,40028,3,1672319405),(131317,3,40029,3,1672319405),(131318,3,40030,3,1672319405),(131319,3,40031,3,1672319405),(131320,3,40032,3,1672319405),(131321,3,40033,3,1672319405),(131322,3,40034,3,1672319405),(131323,3,40035,3,1672319405),(131324,3,40855,3,1672319405),(131325,3,40856,3,1672319405),(131326,3,40878,3,1672319405),(131327,3,40879,3,1672319405),(131328,3,40901,3,1672319405),(131329,3,40922,3,1672319405),(131330,3,40923,3,1672319405),(131331,3,42271,3,1672319405),(131332,3,42272,3,1672319405),(131333,3,42273,3,1672319405),(131334,3,42360,3,1672319405),(131335,3,42361,3,1672319405),(131336,3,42362,3,1672319405),(131337,3,42410,3,1672319405),(131338,3,42411,3,1672319405),(131339,3,42412,3,1672319405),(131340,3,42413,3,1672319405),(131341,3,42414,3,1672319405),(131342,3,42703,3,1672319405),(131343,3,42704,3,1672319405),(131344,3,42705,3,1672319405),(131345,3,43184,3,1672319405),(131346,3,43185,3,1672319405),(131347,3,43186,3,1672319405),(131348,3,43187,3,1672319405),(131349,3,43188,3,1672319405),(131350,3,43189,3,1672319405),(131351,3,43190,3,1672319405),(131352,3,43191,3,1672319405),(131353,3,43192,3,1672319405),(131354,3,43193,3,1672319405),(131355,3,43291,3,1672319405),(131356,3,43292,3,1672319405),(131357,3,43293,3,1672319405),(131358,3,43294,3,1672319405),(131359,3,43295,3,1672319405),(131360,3,43296,3,1672319405),(131361,3,43297,3,1672319405),(131362,3,43298,3,1672319405),(131363,3,43299,3,1672319405),(131364,3,43300,3,1672319405),(131365,3,43415,3,1672319405),(131366,3,43416,3,1672319405),(131367,3,43417,3,1672319405),(131368,3,43418,3,1672319405),(131369,3,43419,3,1672319405),(131370,3,43420,3,1672319405),(131371,3,43905,3,1672319405),(131372,3,43906,3,1672319405),(131373,3,43907,3,1672319405),(131374,3,43908,3,1672319405),(131375,3,43909,3,1672319405),(131376,3,43910,3,1672319405),(131377,3,43911,3,1672319405),(131378,3,43912,3,1672319405),(131379,3,43913,3,1672319405),(131380,3,43914,3,1672319405),(131381,3,43915,3,1672319405),(131382,3,43916,3,1672319405),(131383,3,43917,3,1672319405),(131384,3,43918,3,1672319405),(131385,3,43919,3,1672319405),(131386,3,43920,3,1672319405),(131387,3,43921,3,1672319405),(131388,3,43922,3,1672319405),(131389,3,43923,3,1672319405),(131390,3,43924,3,1672319405),(131391,3,43925,3,1672319405),(131392,3,23646,2,1672319405),(131393,3,23647,2,1672319405),(131394,3,23648,2,1672319405),(131395,3,26925,2,1672319405),(131396,3,26926,2,1672319405),(131397,3,26927,2,1672319405),(131398,3,26928,2,1672319405),(131399,3,26929,2,1672319405),(131400,3,26930,2,1672319405),(131401,3,26931,2,1672319405),(131402,3,26932,2,1672319405),(131403,3,26933,2,1672319405),(131404,3,26934,2,1672319405),(131405,3,26935,2,1672319405),(131406,3,26936,2,1672319405),(131407,3,26937,2,1672319405),(131408,3,26938,2,1672319405),(131409,3,26939,2,1672319405),(131410,3,26940,2,1672319405),(131411,3,26941,2,1672319405),(131412,3,26942,2,1672319405),(131413,3,26943,2,1672319405),(131414,3,27065,2,1672319405),(131415,3,27066,2,1672319405),(131416,3,27067,2,1672319405),(131417,3,27777,2,1672319405),(131418,3,27778,2,1672319405),(131419,3,27812,2,1672319405),(131420,3,27813,2,1672319405),(131421,3,27814,2,1672319405),(131422,3,28141,2,1672319405),(131423,3,28142,2,1672319405),(131424,3,28143,2,1672319405),(131425,3,28388,2,1672319405),(131426,3,28390,2,1672319405),(131427,3,28391,2,1672319405),(131428,3,28465,2,1672319405),(131429,3,28466,2,1672319405),(131430,3,28467,2,1672319405),(131431,3,28987,2,1672319405),(131432,3,28988,2,1672319405),(131433,3,28989,2,1672319405),(131434,3,28990,2,1672319405),(131435,3,28991,2,1672319405),(131436,3,28992,2,1672319405),(131437,3,29087,2,1672319405),(131438,3,29088,2,1672319405),(131439,3,29089,2,1672319405),(131440,3,29090,2,1672319405),(131441,3,29091,2,1672319405),(131442,3,29092,2,1672319405),(131443,3,29093,2,1672319405),(131444,3,29094,2,1672319405),(131445,3,29095,2,1672319405),(131446,3,29096,2,1672319405),(131447,3,29097,2,1672319405),(131448,3,29098,2,1672319405),(131449,3,29099,2,1672319405),(131450,3,29100,2,1672319405),(131451,3,29101,2,1672319405),(131452,3,29102,2,1672319405),(131453,3,29110,2,1672319405),(131454,3,29111,2,1672319405),(131455,3,29112,2,1672319405),(131456,3,29113,2,1672319405),(131457,3,29114,2,1672319405),(131458,3,29115,2,1672319405),(131459,3,29116,2,1672319405),(131460,3,29117,2,1672319405),(131461,3,29118,2,1672319405),(131462,3,29119,2,1672319405),(131463,3,29120,2,1672319405),(131464,3,29121,2,1672319405),(131465,3,29122,2,1672319405),(131466,3,29123,2,1672319405),(131467,3,29198,2,1672319405),(131468,3,29395,2,1672319405),(131469,3,29396,2,1672319405),(131470,3,29397,2,1672319405),(131471,3,29398,2,1672319405),(131472,3,29399,2,1672319405),(131473,3,29400,2,1672319405),(131474,3,29401,2,1672319405),(131475,3,29402,2,1672319405),(131476,3,29403,2,1672319405),(131477,3,29404,2,1672319405),(131478,3,29405,2,1672319405),(131479,3,29406,2,1672319405),(131480,3,29407,2,1672319405),(131481,3,29408,2,1672319405),(131482,3,29409,2,1672319405),(131483,3,29410,2,1672319405),(131484,3,29411,2,1672319405),(131485,3,29412,2,1672319405),(131486,3,29413,2,1672319405),(131487,3,29414,2,1672319405),(131488,3,29415,2,1672319405),(131489,3,29416,2,1672319405),(131490,3,29417,2,1672319405),(131491,3,29418,2,1672319405),(131492,3,29419,2,1672319405),(131493,3,29420,2,1672319405),(131494,3,29421,2,1672319405),(131495,3,29422,2,1672319405),(131496,3,29423,2,1672319405),(131497,3,29424,2,1672319405),(131498,3,29425,2,1672319405),(131499,3,29426,2,1672319405),(131500,3,29427,2,1672319405),(131501,3,29428,2,1672319405),(131502,3,29994,2,1672319405),(131503,3,30117,2,1672319405),(131504,3,30968,2,1672319405),(131505,3,30969,2,1672319405),(131506,3,30970,2,1672319405),(131507,3,30971,2,1672319405),(131508,3,30972,2,1672319405),(131509,3,30973,2,1672319405),(131510,3,30974,2,1672319405),(131511,3,30975,2,1672319405),(131512,3,30976,2,1672319405),(131513,3,30977,2,1672319405),(131514,3,30978,2,1672319405),(131515,3,30979,2,1672319405),(131516,3,30980,2,1672319405),(131517,3,30981,2,1672319405),(131518,3,30982,2,1672319405),(131519,3,30983,2,1672319405),(131520,3,30984,2,1672319405),(131521,3,30985,2,1672319405),(131522,3,30986,2,1672319405),(131523,3,30987,2,1672319405),(131524,3,30988,2,1672319405),(131525,3,30989,2,1672319405),(131526,3,30990,2,1672319405),(131527,3,30991,2,1672319405),(131528,3,30992,2,1672319405),(131529,3,30993,2,1672319405),(131530,3,30994,2,1672319405),(131531,3,30995,2,1672319405),(131532,3,30996,2,1672319405),(131533,3,30997,2,1672319405),(131534,3,30998,2,1672319405),(131535,3,30999,2,1672319405),(131536,3,31000,2,1672319405),(131537,3,31001,2,1672319405),(131538,3,31002,2,1672319405),(131539,3,31003,2,1672319405),(131540,3,31004,2,1672319405),(131541,3,31010,2,1672319405),(131542,3,31011,2,1672319405),(131543,3,31012,2,1672319405),(131544,3,31013,2,1672319405),(131545,3,31014,2,1672319405),(131546,3,31015,2,1672319405),(131547,3,31016,2,1672319405),(131548,3,31017,2,1672319405),(131549,3,31018,2,1672319405),(131550,3,31019,2,1672319405),(131551,3,31020,2,1672319405),(131552,3,31021,2,1672319405),(131553,3,31022,2,1672319405),(131554,3,31023,2,1672319405),(131555,3,31024,2,1672319405),(131556,3,31025,2,1672319405),(131557,3,31026,2,1672319405),(131558,3,31027,2,1672319405),(131559,3,31028,2,1672319405),(131560,3,31029,2,1672319405),(131561,3,31030,2,1672319405),(131562,3,31031,2,1672319405),(131563,3,31032,2,1672319405),(131564,3,31033,2,1672319405),(131565,3,31034,2,1672319405),(131566,3,31035,2,1672319405),(131567,3,31036,2,1672319405),(131568,3,31037,2,1672319405),(131569,3,31038,2,1672319405),(131570,3,31039,2,1672319405),(131571,3,31040,2,1672319405),(131572,3,31041,2,1672319405),(131573,3,31042,2,1672319405),(131574,3,31043,2,1672319405),(131575,3,31044,2,1672319405),(131576,3,31045,2,1672319405),(131577,3,31046,2,1672319405),(131578,3,31820,2,1672319405),(131579,3,31821,2,1672319405),(131580,3,31822,2,1672319405),(131581,3,31823,2,1672319405),(131582,3,31824,2,1672319405),(131583,3,31825,2,1672319405),(131584,3,31826,2,1672319405),(131585,3,31827,2,1672319405),(131586,3,31828,2,1672319405),(131587,3,31829,2,1672319405),(131588,3,31830,2,1672319405),(131589,3,31831,2,1672319405),(131590,3,31832,2,1672319405),(131591,3,31833,2,1672319405),(131592,3,31834,2,1672319405),(131593,3,31835,2,1672319405),(131594,3,31892,2,1672319405),(131595,3,33391,2,1672319405),(131596,3,33392,2,1672319405),(131597,3,33393,2,1672319405),(131598,3,33394,2,1672319405),(131599,3,33395,2,1672319405),(131600,3,33396,2,1672319405),(131601,3,33397,2,1672319405),(131602,3,33398,2,1672319405),(131603,3,33399,2,1672319405),(131604,3,33400,2,1672319405),(131605,3,33401,2,1672319405),(131606,3,33402,2,1672319405),(131607,3,33403,2,1672319405),(131608,3,33404,2,1672319405),(131609,3,33405,2,1672319405),(131610,3,33406,2,1672319405),(131611,3,33407,2,1672319405),(131612,3,33408,2,1672319405),(131613,3,33409,2,1672319405),(131614,3,33410,2,1672319405),(131615,3,33411,2,1672319405),(131616,3,33412,2,1672319405),(131617,3,33413,2,1672319405),(131618,3,33414,2,1672319405),(131619,3,33415,2,1672319405),(131620,3,33416,2,1672319405),(131621,3,33417,2,1672319405),(131622,3,33418,2,1672319405),(131623,3,33419,2,1672319405),(131624,3,33420,2,1672319405),(131625,3,33421,2,1672319405),(131626,3,33422,2,1672319405),(131627,3,33423,2,1672319405),(131628,3,33424,2,1672319405),(131629,3,33425,2,1672319405),(131630,3,33426,2,1672319405),(131631,3,33427,2,1672319405),(131632,3,33428,2,1672319405),(131633,3,33429,2,1672319405),(131634,3,33430,2,1672319405),(131635,3,33431,2,1672319405),(131636,3,33432,2,1672319405),(131637,3,33433,2,1672319405),(131638,3,33434,2,1672319405),(131639,3,33435,2,1672319405),(131640,3,33436,2,1672319405),(131641,3,33437,2,1672319405),(131642,3,33438,2,1672319405),(131643,3,33439,2,1672319405),(131644,3,33440,2,1672319405),(131645,3,33441,2,1672319405),(131646,3,33442,2,1672319405),(131647,3,33443,2,1672319405),(131648,3,33444,2,1672319405),(131649,3,33445,2,1672319405),(131650,3,33446,2,1672319405),(131651,3,33447,2,1672319405),(131652,3,33448,2,1672319405),(131653,3,33449,2,1672319405),(131654,3,33450,2,1672319405),(131655,3,33451,2,1672319405),(131656,3,33452,2,1672319405),(131657,3,33453,2,1672319405),(131658,3,33454,2,1672319405),(131659,3,33455,2,1672319405),(131660,3,33456,2,1672319405),(131661,3,33457,2,1672319405),(131662,3,33458,2,1672319405),(131663,3,33459,2,1672319405),(131664,3,33460,2,1672319405),(131665,3,33461,2,1672319405),(131666,3,33462,2,1672319405),(131667,3,33463,2,1672319405),(131668,3,33464,2,1672319405),(131669,3,33691,2,1672319405),(131670,3,33692,2,1672319405),(131671,3,33693,2,1672319405),(131672,3,33694,2,1672319405),(131673,3,36541,2,1672319405),(131674,3,36542,2,1672319405),(131675,3,36543,2,1672319405),(131676,3,36544,2,1672319405),(131677,3,36545,2,1672319405),(131678,3,36546,2,1672319405),(131679,3,36547,2,1672319405),(131680,3,36548,2,1672319405),(131681,3,36549,2,1672319405),(131682,3,36550,2,1672319405),(131683,3,36551,2,1672319405),(131684,3,36552,2,1672319405),(131685,3,36598,2,1672319405),(131686,3,36599,2,1672319405),(131687,3,36600,2,1672319405),(131688,3,36601,2,1672319405),(131689,3,36602,2,1672319405),(131690,3,36603,2,1672319405),(131691,3,36604,2,1672319405),(131692,3,36605,2,1672319405),(131693,3,36606,2,1672319405),(131694,3,36607,2,1672319405),(131695,3,36608,2,1672319405),(131696,3,36609,2,1672319405),(131697,3,36655,2,1672319405),(131698,3,36656,2,1672319405),(131699,3,36657,2,1672319405),(131700,3,36658,2,1672319405),(131701,3,36659,2,1672319405),(131702,3,36660,2,1672319405),(131703,3,36661,2,1672319405),(131704,3,36662,2,1672319405),(131705,3,36663,2,1672319405),(131706,3,36664,2,1672319405),(131707,3,36665,2,1672319405),(131708,3,36666,2,1672319405),(131709,3,36712,2,1672319405),(131710,3,36713,2,1672319405),(131711,3,36714,2,1672319405),(131712,3,36715,2,1672319405),(131713,3,36716,2,1672319405),(131714,3,36717,2,1672319405),(131715,3,36718,2,1672319405),(131716,3,36719,2,1672319405),(131717,3,36720,2,1672319405),(131718,3,36721,2,1672319405),(131719,3,36722,2,1672319405),(131720,3,36723,2,1672319405),(131721,3,36795,2,1672319405),(131722,3,36796,2,1672319405),(131723,3,36797,2,1672319405),(131724,3,36798,2,1672319405),(131725,3,36799,2,1672319405),(131726,3,36800,2,1672319405),(131727,3,36801,2,1672319405),(131728,3,36802,2,1672319405),(131729,3,36803,2,1672319405),(131730,3,36804,2,1672319405),(131731,3,36805,2,1672319405),(131732,3,36806,2,1672319405),(131733,3,36807,2,1672319405),(131734,3,36808,2,1672319405),(131735,3,36809,2,1672319405),(131736,3,36810,2,1672319405),(131737,3,36811,2,1672319405),(131738,3,36812,2,1672319405),(131739,3,39827,2,1672319405),(131740,3,39829,2,1672319405),(131741,3,39830,2,1672319405),(131742,3,39831,2,1672319405),(131743,3,39832,2,1672319405),(131744,3,39833,2,1672319405),(131745,3,39834,2,1672319405),(131746,3,39835,2,1672319405),(131747,3,39836,2,1672319405),(131748,3,39837,2,1672319405),(131749,3,39838,2,1672319405),(131750,3,39839,2,1672319405),(131751,3,39840,2,1672319405),(131752,3,39841,2,1672319405),(131753,3,39842,2,1672319405),(131754,3,39843,2,1672319405),(131755,3,39844,2,1672319405),(131756,3,39845,2,1672319405),(131757,3,39846,2,1672319405),(131758,3,39847,2,1672319405),(131759,3,39848,2,1672319405),(131760,3,39849,2,1672319405),(131761,3,39850,2,1672319405),(131762,3,39876,2,1672319405),(131763,3,39877,2,1672319405),(131764,3,39878,2,1672319405),(131765,3,39879,2,1672319405),(131766,3,39880,2,1672319405),(131767,3,39881,2,1672319405),(131768,3,39882,2,1672319405),(131769,3,39883,2,1672319405),(131770,3,39884,2,1672319405),(131771,3,39885,2,1672319405),(131772,3,39886,2,1672319405),(131773,3,39887,2,1672319405),(131774,3,39888,2,1672319405),(131775,3,39905,2,1672319405),(131776,3,39906,2,1672319405),(131777,3,39907,2,1672319405),(131778,3,39908,2,1672319405),(131779,3,39909,2,1672319405),(131780,3,39910,2,1672319405),(131781,3,39911,2,1672319405),(131782,3,39912,2,1672319405),(131783,3,39913,2,1672319405),(131784,3,39914,2,1672319405),(131785,3,39915,2,1672319405),(131786,3,39916,2,1672319405),(131787,3,39937,2,1672319405),(131788,3,39938,2,1672319405),(131789,3,39939,2,1672319405),(131790,3,39978,2,1672319405),(131791,3,39986,2,1672319405),(131792,3,39987,2,1672319405),(131793,3,39988,2,1672319405),(131794,3,39989,2,1672319405),(131795,3,39990,2,1672319405),(131796,3,39991,2,1672319405),(131797,3,39992,2,1672319405),(131798,3,39993,2,1672319405),(131799,3,39994,2,1672319405),(131800,3,39995,2,1672319405),(131801,3,39996,2,1672319405),(131802,3,39997,2,1672319405),(131803,3,39998,2,1672319405),(131804,3,39999,2,1672319405),(131805,3,40010,2,1672319405),(131806,3,40011,2,1672319405),(131807,3,40012,2,1672319405),(131808,3,40013,2,1672319405),(131809,3,40014,2,1672319405),(131810,3,40015,2,1672319405),(131811,3,40016,2,1672319405),(131812,3,40017,2,1672319405),(131813,3,40018,2,1672319405),(131814,3,40019,2,1672319405),(131815,3,40020,2,1672319405),(131816,3,40844,2,1672319405),(131817,3,40845,2,1672319405),(131818,3,40846,2,1672319405),(131819,3,40847,2,1672319405),(131820,3,40848,2,1672319405),(131821,3,40849,2,1672319405),(131822,3,40850,2,1672319405),(131823,3,40851,2,1672319405),(131824,3,40852,2,1672319405),(131825,3,40853,2,1672319405),(131826,3,40854,2,1672319405),(131827,3,40867,2,1672319405),(131828,3,40868,2,1672319405),(131829,3,40869,2,1672319405),(131830,3,40870,2,1672319405),(131831,3,40871,2,1672319405),(131832,3,40872,2,1672319405),(131833,3,40873,2,1672319405),(131834,3,40874,2,1672319405),(131835,3,40875,2,1672319405),(131836,3,40876,2,1672319405),(131837,3,40877,2,1672319405),(131838,3,40890,2,1672319405),(131839,3,40891,2,1672319405),(131840,3,40892,2,1672319405),(131841,3,40893,2,1672319405),(131842,3,40894,2,1672319405),(131843,3,40895,2,1672319405),(131844,3,40896,2,1672319405),(131845,3,40897,2,1672319405),(131846,3,40898,2,1672319405),(131847,3,40899,2,1672319405),(131848,3,40900,2,1672319405),(131849,3,40911,2,1672319405),(131850,3,40912,2,1672319405),(131851,3,40913,2,1672319405),(131852,3,40914,2,1672319405),(131853,3,40915,2,1672319405),(131854,3,40916,2,1672319405),(131855,3,40917,2,1672319405),(131856,3,40918,2,1672319405),(131857,3,40919,2,1672319405),(131858,3,40920,2,1672319405),(131859,3,40921,2,1672319405),(131860,3,42187,2,1672319405),(131861,3,42188,2,1672319405),(131862,3,42189,2,1672319405),(131863,3,42190,2,1672319405),(131864,3,42191,2,1672319405),(131865,3,42192,2,1672319405),(131866,3,42193,2,1672319405),(131867,3,42194,2,1672319405),(131868,3,42195,2,1672319405),(131869,3,42196,2,1672319405),(131870,3,42197,2,1672319405),(131871,3,42198,2,1672319405),(131872,3,42199,2,1672319405),(131873,3,42200,2,1672319405),(131874,3,42201,2,1672319405),(131875,3,42202,2,1672319405),(131876,3,42203,2,1672319405),(131877,3,42204,2,1672319405),(131878,3,42205,2,1672319405),(131879,3,42206,2,1672319405),(131880,3,42207,2,1672319405),(131881,3,42208,2,1672319405),(131882,3,42209,2,1672319405),(131883,3,42210,2,1672319405),(131884,3,42211,2,1672319405),(131885,3,42212,2,1672319405),(131886,3,42213,2,1672319405),(131887,3,42214,2,1672319405),(131888,3,42215,2,1672319405),(131889,3,42216,2,1672319405),(131890,3,42217,2,1672319405),(131891,3,42218,2,1672319405),(131892,3,42219,2,1672319405),(131893,3,42220,2,1672319405),(131894,3,42221,2,1672319405),(131895,3,42222,2,1672319405),(131896,3,42223,2,1672319405),(131897,3,42224,2,1672319405),(131898,3,42225,2,1672319405),(131899,3,42226,2,1672319405),(131900,3,42267,2,1672319405),(131901,3,42268,2,1672319405),(131902,3,42319,2,1672319405),(131903,3,42320,2,1672319405),(131904,3,42321,2,1672319405),(131905,3,42322,2,1672319405),(131906,3,42323,2,1672319405),(131907,3,42324,2,1672319405),(131908,3,42325,2,1672319405),(131909,3,42326,2,1672319405),(131910,3,42327,2,1672319405),(131911,3,42328,2,1672319405),(131912,3,42329,2,1672319405),(131913,3,42330,2,1672319405),(131914,3,42331,2,1672319405),(131915,3,42332,2,1672319405),(131916,3,42333,2,1672319405),(131917,3,42334,2,1672319405),(131918,3,42335,2,1672319405),(131919,3,42336,2,1672319405),(131920,3,42337,2,1672319405),(131921,3,42338,2,1672319405),(131922,3,42339,2,1672319405),(131923,3,42340,2,1672319405),(131924,3,42341,2,1672319405),(131925,3,42342,2,1672319405),(131926,3,42343,2,1672319405),(131927,3,42344,2,1672319405),(131928,3,42345,2,1672319405),(131929,3,42346,2,1672319405),(131930,3,42347,2,1672319405),(131931,3,42348,2,1672319405),(131932,3,42349,2,1672319405),(131933,3,42350,2,1672319405),(131934,3,42351,2,1672319405),(131935,3,42352,2,1672319405),(131936,3,42353,2,1672319405),(131937,3,42354,2,1672319405),(131938,3,42355,2,1672319405),(131939,3,42356,2,1672319405),(131940,3,42357,2,1672319405),(131941,3,42358,2,1672319405),(131942,3,42359,2,1672319405),(131943,3,42384,2,1672319405),(131944,3,42385,2,1672319405),(131945,3,42386,2,1672319405),(131946,3,42387,2,1672319405),(131947,3,42388,2,1672319405),(131948,3,42389,2,1672319405),(131949,3,42390,2,1672319405),(131950,3,42391,2,1672319405),(131951,3,42392,2,1672319405),(131952,3,42393,2,1672319405),(131953,3,42394,2,1672319405),(131954,3,42395,2,1672319405),(131955,3,42396,2,1672319405),(131956,3,42397,2,1672319405),(131957,3,42398,2,1672319405),(131958,3,42399,2,1672319405),(131959,3,42400,2,1672319405),(131960,3,42401,2,1672319405),(131961,3,42402,2,1672319405),(131962,3,42403,2,1672319405),(131963,3,42404,2,1672319405),(131964,3,42405,2,1672319405),(131965,3,42406,2,1672319405),(131966,3,42407,2,1672319405),(131967,3,42408,2,1672319405),(131968,3,42409,2,1672319405),(131969,3,42598,2,1672319405),(131970,3,42599,2,1672319405),(131971,3,42600,2,1672319405),(131972,3,42601,2,1672319405),(131973,3,42602,2,1672319405),(131974,3,42603,2,1672319405),(131975,3,42604,2,1672319405),(131976,3,42605,2,1672319405),(131977,3,42606,2,1672319405),(131978,3,42607,2,1672319405),(131979,3,42608,2,1672319405),(131980,3,42642,2,1672319405),(131981,3,42643,2,1672319405),(131982,3,42644,2,1672319405),(131983,3,42645,2,1672319405),(131984,3,42646,2,1672319405),(131985,3,42647,2,1672319405),(131986,3,42648,2,1672319405),(131987,3,42649,2,1672319405),(131988,3,42650,2,1672319405),(131989,3,42651,2,1672319405),(131990,3,42652,2,1672319405),(131991,3,42653,2,1672319405),(131992,3,42654,2,1672319405),(131993,3,42655,2,1672319405),(131994,3,42656,2,1672319405),(131995,3,42657,2,1672319405),(131996,3,42658,2,1672319405),(131997,3,42659,2,1672319405),(131998,3,42660,2,1672319405),(131999,3,42661,2,1672319405),(132000,3,42662,2,1672319405),(132001,3,42663,2,1672319405),(132002,3,42675,2,1672319405),(132003,3,42700,2,1672319405),(132004,3,42701,2,1672319405),(132005,3,42702,2,1672319405),(132006,3,43078,2,1672319405),(132007,3,43079,2,1672319405),(132008,3,43174,2,1672319405),(132009,3,43175,2,1672319405),(132010,3,43176,2,1672319405),(132011,3,43177,2,1672319405),(132012,3,43178,2,1672319405),(132013,3,43179,2,1672319405),(132014,3,43180,2,1672319405),(132015,3,43181,2,1672319405),(132016,3,43182,2,1672319405),(132017,3,43183,2,1672319405),(132018,3,43281,2,1672319405),(132019,3,43282,2,1672319405),(132020,3,43283,2,1672319405),(132021,3,43284,2,1672319405),(132022,3,43285,2,1672319405),(132023,3,43286,2,1672319405),(132024,3,43287,2,1672319405),(132025,3,43288,2,1672319405),(132026,3,43289,2,1672319405),(132027,3,43290,2,1672319405),(132028,3,43398,2,1672319405),(132029,3,43399,2,1672319405),(132030,3,43400,2,1672319405),(132031,3,43401,2,1672319405),(132032,3,43402,2,1672319405),(132033,3,43403,2,1672319405),(132034,3,43404,2,1672319405),(132035,3,43405,2,1672319405),(132036,3,43406,2,1672319405),(132037,3,43407,2,1672319405),(132038,3,43408,2,1672319405),(132039,3,43409,2,1672319405),(132040,3,43410,2,1672319405),(132041,3,43411,2,1672319405),(132042,3,43412,2,1672319405),(132043,3,43413,2,1672319405),(132044,3,43414,2,1672319405),(132045,3,43789,2,1672319405),(132046,3,43790,2,1672319405),(132047,3,43791,2,1672319405),(132048,3,43792,2,1672319405),(132049,3,43874,2,1672319405),(132050,3,43887,2,1672319405),(132051,3,43896,2,1672319405),(132052,3,43897,2,1672319405),(132053,3,43898,2,1672319405),(132054,3,43899,2,1672319405),(132055,3,43900,2,1672319405),(132056,3,43901,2,1672319405),(132057,3,43902,2,1672319405),(132058,3,43903,2,1672319405),(132059,3,43904,2,1672319405),(132060,3,44050,2,1672319405),(132061,3,44094,2,1672319405),(132062,3,44095,2,1672319405),(132063,3,44096,2,1672319405),(132064,3,44097,2,1672319405),(132065,3,44098,2,1672319405),(132066,3,44099,2,1672319405),(132067,3,44100,2,1672319405),(132068,3,44101,2,1672319405),(132069,3,44102,2,1672319405),(132070,3,44103,2,1672319405),(132071,3,44104,2,1672319405),(132072,3,44105,2,1672319405),(132073,3,44106,2,1672319405),(132074,3,44107,2,1672319405),(132075,3,44121,2,1672319405),(132076,3,44122,2,1672319405),(132077,3,44123,2,1672319405),(132078,3,44124,2,1672319405),(132079,3,44125,2,1672319405),(132080,3,44126,2,1672319405),(132081,3,44127,2,1672319405),(132082,3,44128,2,1672319405),(132083,3,44129,2,1672319405),(132084,3,44130,2,1672319405),(132085,3,44131,2,1672319405),(132086,3,44132,2,1672319405),(132087,3,44133,2,1672319405),(132088,3,44134,2,1672319405),(132089,3,44148,2,1672319405),(132090,3,44149,2,1672319405),(132091,3,44150,2,1672319405),(132092,3,44151,2,1672319405),(132093,3,44152,2,1672319405),(132094,3,44153,2,1672319405),(132095,3,44154,2,1672319405),(132096,3,44201,2,1672319405),(132097,3,44202,2,1672319405),(132098,3,44203,2,1672319405),(132099,3,44204,2,1672319405),(132100,3,44205,2,1672319405),(132101,3,44206,2,1672319405),(132102,3,44207,2,1672319405),(132103,3,44208,2,1672319405),(132104,3,44209,2,1672319405),(132105,3,44210,2,1672319405),(132106,3,44211,2,1672319405),(132107,3,44212,2,1672319405),(132108,3,44213,2,1672319405),(132109,3,44371,2,1672319405),(132110,3,44374,2,1672319405),(132111,3,44436,2,1672319405),(132112,3,44442,2,1672319405),(132113,3,23646,3,1672319405),(132114,3,23647,3,1672319405),(132115,3,23648,3,1672319405),(132116,3,26925,3,1672319405),(132117,3,26926,3,1672319405),(132118,3,26927,3,1672319405),(132119,3,26928,3,1672319405),(132120,3,26929,3,1672319405),(132121,3,26930,3,1672319405),(132122,3,26931,3,1672319405),(132123,3,26932,3,1672319405),(132124,3,26933,3,1672319405),(132125,3,26934,3,1672319405),(132126,3,26935,3,1672319405),(132127,3,26936,3,1672319405),(132128,3,26937,3,1672319405),(132129,3,26938,3,1672319405),(132130,3,26939,3,1672319405),(132131,3,26940,3,1672319405),(132132,3,26941,3,1672319405),(132133,3,26942,3,1672319405),(132134,3,26943,3,1672319405),(132135,3,27065,3,1672319405),(132136,3,27066,3,1672319405),(132137,3,27067,3,1672319405),(132138,3,27777,3,1672319405),(132139,3,27778,3,1672319405),(132140,3,27812,3,1672319405),(132141,3,27813,3,1672319405),(132142,3,27814,3,1672319405),(132143,3,28141,3,1672319405),(132144,3,28142,3,1672319405),(132145,3,28143,3,1672319405),(132146,3,28388,3,1672319405),(132147,3,28390,3,1672319405),(132148,3,28391,3,1672319405),(132149,3,28465,3,1672319405),(132150,3,28466,3,1672319405),(132151,3,28467,3,1672319405),(132152,3,28987,3,1672319405),(132153,3,28988,3,1672319405),(132154,3,28989,3,1672319405),(132155,3,28990,3,1672319405),(132156,3,28991,3,1672319405),(132157,3,28992,3,1672319405),(132158,3,29087,3,1672319405),(132159,3,29088,3,1672319405),(132160,3,29089,3,1672319405),(132161,3,29090,3,1672319405),(132162,3,29091,3,1672319405),(132163,3,29092,3,1672319405),(132164,3,29093,3,1672319405),(132165,3,29094,3,1672319405),(132166,3,29095,3,1672319405),(132167,3,29096,3,1672319405),(132168,3,29097,3,1672319405),(132169,3,29098,3,1672319405),(132170,3,29099,3,1672319405),(132171,3,29100,3,1672319405),(132172,3,29101,3,1672319405),(132173,3,29102,3,1672319405),(132174,3,29110,3,1672319405),(132175,3,29111,3,1672319405),(132176,3,29112,3,1672319405),(132177,3,29113,3,1672319405),(132178,3,29114,3,1672319405),(132179,3,29115,3,1672319405),(132180,3,29116,3,1672319405),(132181,3,29117,3,1672319405),(132182,3,29118,3,1672319405),(132183,3,29119,3,1672319405),(132184,3,29120,3,1672319405),(132185,3,29121,3,1672319405),(132186,3,29122,3,1672319405),(132187,3,29123,3,1672319405),(132188,3,29198,3,1672319405),(132189,3,29395,3,1672319405),(132190,3,29396,3,1672319405),(132191,3,29397,3,1672319405),(132192,3,29398,3,1672319405),(132193,3,29399,3,1672319405),(132194,3,29400,3,1672319405),(132195,3,29401,3,1672319405),(132196,3,29402,3,1672319405),(132197,3,29403,3,1672319405),(132198,3,29404,3,1672319405),(132199,3,29405,3,1672319405),(132200,3,29406,3,1672319405),(132201,3,29407,3,1672319405),(132202,3,29408,3,1672319405),(132203,3,29409,3,1672319405),(132204,3,29410,3,1672319405),(132205,3,29411,3,1672319405),(132206,3,29412,3,1672319405),(132207,3,29413,3,1672319405),(132208,3,29414,3,1672319405),(132209,3,29415,3,1672319405),(132210,3,29416,3,1672319405),(132211,3,29417,3,1672319405),(132212,3,29418,3,1672319405),(132213,3,29419,3,1672319405),(132214,3,29420,3,1672319405),(132215,3,29421,3,1672319405),(132216,3,29422,3,1672319405),(132217,3,29423,3,1672319405),(132218,3,29424,3,1672319405),(132219,3,29425,3,1672319405),(132220,3,29426,3,1672319405),(132221,3,29427,3,1672319405),(132222,3,29428,3,1672319405),(132223,3,29994,3,1672319405),(132224,3,30117,3,1672319405),(132225,3,30968,3,1672319405),(132226,3,30969,3,1672319405),(132227,3,30970,3,1672319405),(132228,3,30971,3,1672319405),(132229,3,30972,3,1672319405),(132230,3,30973,3,1672319405),(132231,3,30974,3,1672319405),(132232,3,30975,3,1672319405),(132233,3,30976,3,1672319405),(132234,3,30977,3,1672319405),(132235,3,30978,3,1672319405),(132236,3,30979,3,1672319405),(132237,3,30980,3,1672319405),(132238,3,30981,3,1672319405),(132239,3,30982,3,1672319405),(132240,3,30983,3,1672319405),(132241,3,30984,3,1672319405),(132242,3,30985,3,1672319405),(132243,3,30986,3,1672319405),(132244,3,30987,3,1672319405),(132245,3,30988,3,1672319405),(132246,3,30989,3,1672319405),(132247,3,30990,3,1672319405),(132248,3,30991,3,1672319405),(132249,3,30992,3,1672319405),(132250,3,30993,3,1672319405),(132251,3,30994,3,1672319405),(132252,3,30995,3,1672319405),(132253,3,30996,3,1672319405),(132254,3,30997,3,1672319405),(132255,3,30998,3,1672319405),(132256,3,30999,3,1672319405),(132257,3,31000,3,1672319405),(132258,3,31001,3,1672319405),(132259,3,31002,3,1672319405),(132260,3,31003,3,1672319405),(132261,3,31004,3,1672319405),(132262,3,31010,3,1672319405),(132263,3,31011,3,1672319405),(132264,3,31012,3,1672319405),(132265,3,31013,3,1672319405),(132266,3,31014,3,1672319405),(132267,3,31015,3,1672319405),(132268,3,31016,3,1672319405),(132269,3,31017,3,1672319405),(132270,3,31018,3,1672319405),(132271,3,31019,3,1672319405),(132272,3,31020,3,1672319405),(132273,3,31021,3,1672319405),(132274,3,31022,3,1672319405),(132275,3,31023,3,1672319405),(132276,3,31024,3,1672319405),(132277,3,31025,3,1672319405),(132278,3,31026,3,1672319405),(132279,3,31027,3,1672319405),(132280,3,31028,3,1672319405),(132281,3,31029,3,1672319405),(132282,3,31030,3,1672319405),(132283,3,31031,3,1672319405),(132284,3,31032,3,1672319405),(132285,3,31033,3,1672319405),(132286,3,31034,3,1672319405),(132287,3,31035,3,1672319405),(132288,3,31036,3,1672319405),(132289,3,31037,3,1672319405),(132290,3,31038,3,1672319405),(132291,3,31039,3,1672319405),(132292,3,31040,3,1672319405),(132293,3,31041,3,1672319405),(132294,3,31042,3,1672319405),(132295,3,31043,3,1672319405),(132296,3,31044,3,1672319405),(132297,3,31045,3,1672319405),(132298,3,31046,3,1672319405),(132299,3,31820,3,1672319405),(132300,3,31821,3,1672319405),(132301,3,31822,3,1672319405),(132302,3,31823,3,1672319405),(132303,3,31824,3,1672319405),(132304,3,31825,3,1672319405),(132305,3,31826,3,1672319405),(132306,3,31827,3,1672319405),(132307,3,31828,3,1672319405),(132308,3,31829,3,1672319405),(132309,3,31830,3,1672319405),(132310,3,31831,3,1672319405),(132311,3,31832,3,1672319405),(132312,3,31833,3,1672319405),(132313,3,31834,3,1672319405),(132314,3,31835,3,1672319405),(132315,3,31892,3,1672319405),(132316,3,33391,3,1672319405),(132317,3,33392,3,1672319405),(132318,3,33393,3,1672319405),(132319,3,33394,3,1672319405),(132320,3,33395,3,1672319405),(132321,3,33396,3,1672319405),(132322,3,33397,3,1672319405),(132323,3,33398,3,1672319405),(132324,3,33399,3,1672319405),(132325,3,33400,3,1672319405),(132326,3,33401,3,1672319405),(132327,3,33402,3,1672319405),(132328,3,33403,3,1672319405),(132329,3,33404,3,1672319405),(132330,3,33405,3,1672319405),(132331,3,33406,3,1672319405),(132332,3,33407,3,1672319405),(132333,3,33408,3,1672319405),(132334,3,33409,3,1672319405),(132335,3,33410,3,1672319405),(132336,3,33411,3,1672319405),(132337,3,33412,3,1672319405),(132338,3,33413,3,1672319405),(132339,3,33414,3,1672319405),(132340,3,33415,3,1672319405),(132341,3,33416,3,1672319405),(132342,3,33417,3,1672319405),(132343,3,33418,3,1672319405),(132344,3,33419,3,1672319405),(132345,3,33420,3,1672319405),(132346,3,33421,3,1672319405),(132347,3,33422,3,1672319405),(132348,3,33423,3,1672319405),(132349,3,33424,3,1672319405),(132350,3,33425,3,1672319405),(132351,3,33426,3,1672319405),(132352,3,33427,3,1672319405),(132353,3,33428,3,1672319405),(132354,3,33429,3,1672319405),(132355,3,33430,3,1672319405),(132356,3,33431,3,1672319405),(132357,3,33432,3,1672319405),(132358,3,33433,3,1672319405),(132359,3,33434,3,1672319405),(132360,3,33435,3,1672319405),(132361,3,33436,3,1672319405),(132362,3,33437,3,1672319405),(132363,3,33438,3,1672319405),(132364,3,33439,3,1672319405),(132365,3,33440,3,1672319405),(132366,3,33441,3,1672319405),(132367,3,33442,3,1672319405),(132368,3,33443,3,1672319405),(132369,3,33444,3,1672319405),(132370,3,33445,3,1672319405),(132371,3,33446,3,1672319405),(132372,3,33447,3,1672319405),(132373,3,33448,3,1672319405),(132374,3,33449,3,1672319405),(132375,3,33450,3,1672319405),(132376,3,33451,3,1672319405),(132377,3,33452,3,1672319405),(132378,3,33453,3,1672319405),(132379,3,33454,3,1672319405),(132380,3,33455,3,1672319405),(132381,3,33456,3,1672319405),(132382,3,33457,3,1672319405),(132383,3,33458,3,1672319405),(132384,3,33459,3,1672319405),(132385,3,33460,3,1672319405),(132386,3,33461,3,1672319405),(132387,3,33462,3,1672319405),(132388,3,33463,3,1672319405),(132389,3,33464,3,1672319405),(132390,3,33691,3,1672319405),(132391,3,33692,3,1672319405),(132392,3,33693,3,1672319405),(132393,3,33694,3,1672319405),(132394,3,36541,3,1672319405),(132395,3,36542,3,1672319405),(132396,3,36543,3,1672319405),(132397,3,36544,3,1672319405),(132398,3,36545,3,1672319405),(132399,3,36546,3,1672319405),(132400,3,36547,3,1672319405),(132401,3,36548,3,1672319405),(132402,3,36549,3,1672319405),(132403,3,36550,3,1672319405),(132404,3,36551,3,1672319405),(132405,3,36552,3,1672319405),(132406,3,36598,3,1672319405),(132407,3,36599,3,1672319405),(132408,3,36600,3,1672319405),(132409,3,36601,3,1672319405),(132410,3,36602,3,1672319405),(132411,3,36603,3,1672319405),(132412,3,36604,3,1672319405),(132413,3,36605,3,1672319405),(132414,3,36606,3,1672319405),(132415,3,36607,3,1672319405),(132416,3,36608,3,1672319405),(132417,3,36609,3,1672319405),(132418,3,36655,3,1672319405),(132419,3,36656,3,1672319405),(132420,3,36657,3,1672319405),(132421,3,36658,3,1672319405),(132422,3,36659,3,1672319405),(132423,3,36660,3,1672319405),(132424,3,36661,3,1672319405),(132425,3,36662,3,1672319405),(132426,3,36663,3,1672319405),(132427,3,36664,3,1672319405),(132428,3,36665,3,1672319405),(132429,3,36666,3,1672319405),(132430,3,36712,3,1672319405),(132431,3,36713,3,1672319405),(132432,3,36714,3,1672319405),(132433,3,36715,3,1672319405),(132434,3,36716,3,1672319405),(132435,3,36717,3,1672319405),(132436,3,36718,3,1672319405),(132437,3,36719,3,1672319405),(132438,3,36720,3,1672319405),(132439,3,36721,3,1672319405),(132440,3,36722,3,1672319405),(132441,3,36723,3,1672319405),(132442,3,36795,3,1672319405),(132443,3,36796,3,1672319405),(132444,3,36797,3,1672319405),(132445,3,36798,3,1672319405),(132446,3,36799,3,1672319405),(132447,3,36800,3,1672319405),(132448,3,36801,3,1672319405),(132449,3,36802,3,1672319405),(132450,3,36803,3,1672319405),(132451,3,36804,3,1672319405),(132452,3,36805,3,1672319405),(132453,3,36806,3,1672319405),(132454,3,36807,3,1672319405),(132455,3,36808,3,1672319405),(132456,3,36809,3,1672319405),(132457,3,36810,3,1672319405),(132458,3,36811,3,1672319405),(132459,3,36812,3,1672319405),(132460,3,39827,3,1672319405),(132461,3,39829,3,1672319405),(132462,3,39830,3,1672319405),(132463,3,39831,3,1672319405),(132464,3,39832,3,1672319405),(132465,3,39833,3,1672319405),(132466,3,39834,3,1672319405),(132467,3,39835,3,1672319405),(132468,3,39836,3,1672319405),(132469,3,39837,3,1672319405),(132470,3,39838,3,1672319405),(132471,3,39839,3,1672319405),(132472,3,39840,3,1672319405),(132473,3,39841,3,1672319405),(132474,3,39842,3,1672319405),(132475,3,39843,3,1672319405),(132476,3,39844,3,1672319405),(132477,3,39845,3,1672319405),(132478,3,39846,3,1672319405),(132479,3,39847,3,1672319405),(132480,3,39848,3,1672319405),(132481,3,39849,3,1672319405),(132482,3,39850,3,1672319405),(132483,3,39876,3,1672319405),(132484,3,39877,3,1672319405),(132485,3,39878,3,1672319405),(132486,3,39879,3,1672319405),(132487,3,39880,3,1672319405),(132488,3,39881,3,1672319405),(132489,3,39882,3,1672319405),(132490,3,39883,3,1672319405),(132491,3,39884,3,1672319405),(132492,3,39885,3,1672319405),(132493,3,39886,3,1672319405),(132494,3,39887,3,1672319405),(132495,3,39888,3,1672319405),(132496,3,39905,3,1672319405),(132497,3,39906,3,1672319405),(132498,3,39907,3,1672319405),(132499,3,39908,3,1672319405),(132500,3,39909,3,1672319405),(132501,3,39910,3,1672319405),(132502,3,39911,3,1672319405),(132503,3,39912,3,1672319405),(132504,3,39913,3,1672319405),(132505,3,39914,3,1672319405),(132506,3,39915,3,1672319405),(132507,3,39916,3,1672319405),(132508,3,39937,3,1672319405),(132509,3,39938,3,1672319405),(132510,3,39939,3,1672319405),(132511,3,39978,3,1672319405),(132512,3,39986,3,1672319405),(132513,3,39987,3,1672319405),(132514,3,39988,3,1672319405),(132515,3,39989,3,1672319405),(132516,3,39990,3,1672319405),(132517,3,39991,3,1672319405),(132518,3,39992,3,1672319405),(132519,3,39993,3,1672319405),(132520,3,39994,3,1672319405),(132521,3,39995,3,1672319405),(132522,3,39996,3,1672319405),(132523,3,39997,3,1672319405),(132524,3,39998,3,1672319405),(132525,3,39999,3,1672319405),(132526,3,40010,3,1672319405),(132527,3,40011,3,1672319405),(132528,3,40012,3,1672319405),(132529,3,40013,3,1672319405),(132530,3,40014,3,1672319405),(132531,3,40015,3,1672319405),(132532,3,40016,3,1672319405),(132533,3,40017,3,1672319405),(132534,3,40018,3,1672319405),(132535,3,40019,3,1672319405),(132536,3,40020,3,1672319405),(132537,3,40844,3,1672319405),(132538,3,40845,3,1672319405),(132539,3,40846,3,1672319405),(132540,3,40847,3,1672319405),(132541,3,40848,3,1672319405),(132542,3,40849,3,1672319405),(132543,3,40850,3,1672319405),(132544,3,40851,3,1672319405),(132545,3,40852,3,1672319405),(132546,3,40853,3,1672319405),(132547,3,40854,3,1672319405),(132548,3,40867,3,1672319405),(132549,3,40868,3,1672319405),(132550,3,40869,3,1672319405),(132551,3,40870,3,1672319405),(132552,3,40871,3,1672319405),(132553,3,40872,3,1672319405),(132554,3,40873,3,1672319405),(132555,3,40874,3,1672319405),(132556,3,40875,3,1672319405),(132557,3,40876,3,1672319405),(132558,3,40877,3,1672319405),(132559,3,40890,3,1672319405),(132560,3,40891,3,1672319405),(132561,3,40892,3,1672319405),(132562,3,40893,3,1672319405),(132563,3,40894,3,1672319405),(132564,3,40895,3,1672319405),(132565,3,40896,3,1672319405),(132566,3,40897,3,1672319405),(132567,3,40898,3,1672319405),(132568,3,40899,3,1672319405),(132569,3,40900,3,1672319405),(132570,3,40911,3,1672319405),(132571,3,40912,3,1672319405),(132572,3,40913,3,1672319405),(132573,3,40914,3,1672319405),(132574,3,40915,3,1672319405),(132575,3,40916,3,1672319405),(132576,3,40917,3,1672319405),(132577,3,40918,3,1672319405),(132578,3,40919,3,1672319405),(132579,3,40920,3,1672319405),(132580,3,40921,3,1672319405),(132581,3,42187,3,1672319405),(132582,3,42188,3,1672319405),(132583,3,42189,3,1672319405),(132584,3,42190,3,1672319405),(132585,3,42191,3,1672319405),(132586,3,42192,3,1672319405),(132587,3,42193,3,1672319405),(132588,3,42194,3,1672319405),(132589,3,42195,3,1672319405),(132590,3,42196,3,1672319405),(132591,3,42197,3,1672319405),(132592,3,42198,3,1672319405),(132593,3,42199,3,1672319405),(132594,3,42200,3,1672319405),(132595,3,42201,3,1672319405),(132596,3,42202,3,1672319405),(132597,3,42203,3,1672319405),(132598,3,42204,3,1672319405),(132599,3,42205,3,1672319405),(132600,3,42206,3,1672319405),(132601,3,42207,3,1672319405),(132602,3,42208,3,1672319405),(132603,3,42209,3,1672319405),(132604,3,42210,3,1672319405),(132605,3,42211,3,1672319405),(132606,3,42212,3,1672319405),(132607,3,42213,3,1672319405),(132608,3,42214,3,1672319405),(132609,3,42215,3,1672319405),(132610,3,42216,3,1672319405),(132611,3,42217,3,1672319405),(132612,3,42218,3,1672319405),(132613,3,42219,3,1672319405),(132614,3,42220,3,1672319405),(132615,3,42221,3,1672319405),(132616,3,42222,3,1672319405),(132617,3,42223,3,1672319405),(132618,3,42224,3,1672319405),(132619,3,42225,3,1672319405),(132620,3,42226,3,1672319405),(132621,3,42267,3,1672319405),(132622,3,42268,3,1672319405),(132623,3,42319,3,1672319405),(132624,3,42320,3,1672319405),(132625,3,42321,3,1672319405),(132626,3,42322,3,1672319405),(132627,3,42323,3,1672319405),(132628,3,42324,3,1672319405),(132629,3,42325,3,1672319405),(132630,3,42326,3,1672319405),(132631,3,42327,3,1672319405),(132632,3,42328,3,1672319405),(132633,3,42329,3,1672319405),(132634,3,42330,3,1672319405),(132635,3,42331,3,1672319405),(132636,3,42332,3,1672319405),(132637,3,42333,3,1672319405),(132638,3,42334,3,1672319405),(132639,3,42335,3,1672319405),(132640,3,42336,3,1672319405),(132641,3,42337,3,1672319405),(132642,3,42338,3,1672319405),(132643,3,42339,3,1672319405),(132644,3,42340,3,1672319405),(132645,3,42341,3,1672319405),(132646,3,42342,3,1672319405),(132647,3,42343,3,1672319405),(132648,3,42344,3,1672319405),(132649,3,42345,3,1672319405),(132650,3,42346,3,1672319405),(132651,3,42347,3,1672319405),(132652,3,42348,3,1672319405),(132653,3,42349,3,1672319405),(132654,3,42350,3,1672319405),(132655,3,42351,3,1672319405),(132656,3,42352,3,1672319405),(132657,3,42353,3,1672319405),(132658,3,42354,3,1672319405),(132659,3,42355,3,1672319405),(132660,3,42356,3,1672319405),(132661,3,42357,3,1672319405),(132662,3,42358,3,1672319405),(132663,3,42359,3,1672319405),(132664,3,42384,3,1672319405),(132665,3,42385,3,1672319405),(132666,3,42386,3,1672319405),(132667,3,42387,3,1672319405),(132668,3,42388,3,1672319405),(132669,3,42389,3,1672319405),(132670,3,42390,3,1672319405),(132671,3,42391,3,1672319405),(132672,3,42392,3,1672319405),(132673,3,42393,3,1672319405),(132674,3,42394,3,1672319405),(132675,3,42395,3,1672319405),(132676,3,42396,3,1672319405),(132677,3,42397,3,1672319405),(132678,3,42398,3,1672319405),(132679,3,42399,3,1672319405),(132680,3,42400,3,1672319405),(132681,3,42401,3,1672319405),(132682,3,42402,3,1672319405),(132683,3,42403,3,1672319405),(132684,3,42404,3,1672319405),(132685,3,42405,3,1672319405),(132686,3,42406,3,1672319405),(132687,3,42407,3,1672319405),(132688,3,42408,3,1672319405),(132689,3,42409,3,1672319405),(132690,3,42598,3,1672319405),(132691,3,42599,3,1672319405),(132692,3,42600,3,1672319405),(132693,3,42601,3,1672319405),(132694,3,42602,3,1672319405),(132695,3,42603,3,1672319405),(132696,3,42604,3,1672319405),(132697,3,42605,3,1672319405),(132698,3,42606,3,1672319405),(132699,3,42607,3,1672319405),(132700,3,42608,3,1672319405),(132701,3,42642,3,1672319405),(132702,3,42643,3,1672319405),(132703,3,42644,3,1672319405),(132704,3,42645,3,1672319405),(132705,3,42646,3,1672319405),(132706,3,42647,3,1672319405),(132707,3,42648,3,1672319405),(132708,3,42649,3,1672319405),(132709,3,42650,3,1672319405),(132710,3,42651,3,1672319405),(132711,3,42652,3,1672319405),(132712,3,42653,3,1672319405),(132713,3,42654,3,1672319405),(132714,3,42655,3,1672319405),(132715,3,42656,3,1672319405),(132716,3,42657,3,1672319405),(132717,3,42658,3,1672319405),(132718,3,42659,3,1672319405),(132719,3,42660,3,1672319405),(132720,3,42661,3,1672319405),(132721,3,42662,3,1672319405),(132722,3,42663,3,1672319405),(132723,3,42675,3,1672319405),(132724,3,42700,3,1672319405),(132725,3,42701,3,1672319405),(132726,3,42702,3,1672319405),(132727,3,43078,3,1672319405),(132728,3,43079,3,1672319405),(132729,3,43174,3,1672319405),(132730,3,43175,3,1672319405),(132731,3,43176,3,1672319405),(132732,3,43177,3,1672319405),(132733,3,43178,3,1672319405),(132734,3,43179,3,1672319405),(132735,3,43180,3,1672319405),(132736,3,43181,3,1672319405),(132737,3,43182,3,1672319405),(132738,3,43183,3,1672319405),(132739,3,43281,3,1672319405),(132740,3,43282,3,1672319405),(132741,3,43283,3,1672319405),(132742,3,43284,3,1672319405),(132743,3,43285,3,1672319405),(132744,3,43286,3,1672319405),(132745,3,43287,3,1672319405),(132746,3,43288,3,1672319405),(132747,3,43289,3,1672319405),(132748,3,43290,3,1672319405),(132749,3,43398,3,1672319405),(132750,3,43399,3,1672319405),(132751,3,43400,3,1672319405),(132752,3,43401,3,1672319405),(132753,3,43402,3,1672319405),(132754,3,43403,3,1672319405),(132755,3,43404,3,1672319405),(132756,3,43405,3,1672319405),(132757,3,43406,3,1672319405),(132758,3,43407,3,1672319405),(132759,3,43408,3,1672319405),(132760,3,43409,3,1672319405),(132761,3,43410,3,1672319405),(132762,3,43411,3,1672319405),(132763,3,43412,3,1672319405),(132764,3,43413,3,1672319405),(132765,3,43414,3,1672319405),(132766,3,43789,3,1672319405),(132767,3,43790,3,1672319405),(132768,3,43791,3,1672319405),(132769,3,43792,3,1672319405),(132770,3,43874,3,1672319405),(132771,3,43887,3,1672319405),(132772,3,43896,3,1672319405),(132773,3,43897,3,1672319405),(132774,3,43898,3,1672319405),(132775,3,43899,3,1672319405),(132776,3,43900,3,1672319405),(132777,3,43901,3,1672319405),(132778,3,43902,3,1672319405),(132779,3,43903,3,1672319405),(132780,3,43904,3,1672319405),(132781,3,44050,3,1672319405),(132782,3,44094,3,1672319405),(132783,3,44095,3,1672319405),(132784,3,44096,3,1672319405),(132785,3,44097,3,1672319405),(132786,3,44098,3,1672319405),(132787,3,44099,3,1672319405),(132788,3,44100,3,1672319405),(132789,3,44101,3,1672319405),(132790,3,44102,3,1672319405),(132791,3,44103,3,1672319405),(132792,3,44104,3,1672319405),(132793,3,44105,3,1672319405),(132794,3,44106,3,1672319405),(132795,3,44107,3,1672319405),(132796,3,44121,3,1672319405),(132797,3,44122,3,1672319405),(132798,3,44123,3,1672319405),(132799,3,44124,3,1672319405),(132800,3,44125,3,1672319405),(132801,3,44126,3,1672319405),(132802,3,44127,3,1672319405),(132803,3,44128,3,1672319405),(132804,3,44129,3,1672319405),(132805,3,44130,3,1672319405),(132806,3,44131,3,1672319405),(132807,3,44132,3,1672319405),(132808,3,44133,3,1672319405),(132809,3,44134,3,1672319405),(132810,3,44148,3,1672319405),(132811,3,44149,3,1672319405),(132812,3,44150,3,1672319405),(132813,3,44151,3,1672319405),(132814,3,44152,3,1672319405),(132815,3,44153,3,1672319405),(132816,3,44154,3,1672319405),(132817,3,44201,3,1672319405),(132818,3,44202,3,1672319405),(132819,3,44203,3,1672319405),(132820,3,44204,3,1672319405),(132821,3,44205,3,1672319405),(132822,3,44206,3,1672319405),(132823,3,44207,3,1672319405),(132824,3,44208,3,1672319405),(132825,3,44209,3,1672319405),(132826,3,44210,3,1672319405),(132827,3,44211,3,1672319405),(132828,3,44212,3,1672319405),(132829,3,44213,3,1672319405),(132830,3,44371,3,1672319405),(132831,3,44374,3,1672319405),(132832,3,44436,3,1672319405),(132833,3,44442,3,1672319405),(132834,1,10001,3,1672319405),(132835,1,10094,3,1672319405),(132836,1,10095,3,1672319405),(132837,1,10096,3,1672319405),(132838,1,10097,3,1672319405),(132839,1,10171,3,1672319405),(132840,1,10172,3,1672319405),(132841,1,10186,3,1672319405),(132842,1,10188,3,1672319405),(132843,1,10190,3,1672319405),(132844,1,10192,3,1672319405),(132845,1,10229,3,1672319405),(132846,1,10230,3,1672319405),(132847,1,10231,3,1672319405),(132848,1,10248,3,1672319405),(132849,1,10250,3,1672319405),(132850,1,10256,3,1672319405),(132851,1,10258,3,1672319405),(132852,1,10269,3,1672319405),(132853,1,10270,3,1672319405),(132854,1,10271,3,1672319405),(132855,1,10272,3,1672319405),(132856,1,10273,3,1672319405),(132857,1,10275,3,1672319405),(132858,1,10277,3,1672319405),(132859,1,10285,3,1672319405),(132860,1,10325,3,1672319405),(132861,1,10326,3,1672319405),(132862,1,10337,3,1672319405),(132863,1,10338,3,1672319405),(132864,1,10339,3,1672319405),(132865,1,10343,3,1672319405),(132866,1,10379,3,1672319405),(132867,1,10381,3,1672319405),(132868,1,10385,3,1672319405),(132869,1,10443,3,1672319405),(132870,1,10444,3,1672319405),(132871,1,10445,3,1672319405),(132872,1,10446,3,1672319405),(132873,1,10448,3,1672319405),(132874,1,10504,3,1672319405),(132875,1,10505,3,1672319405),(132876,1,10506,3,1672319405),(132877,1,10507,3,1672319405),(132878,1,10509,3,1672319405),(132879,1,10510,3,1672319405),(132880,1,10524,3,1672319405),(132881,1,10525,3,1672319405),(132882,1,10526,3,1672319405),(132883,1,10534,3,1672319405),(132884,3,23068,2,1672319408),(132885,3,23069,2,1672319408),(132886,3,23070,2,1672319408),(132887,3,23071,2,1672319408),(132888,3,23072,2,1672319408),(132889,3,27904,2,1672319408),(132890,3,27905,2,1672319408),(132891,3,27906,2,1672319408),(132892,3,27907,2,1672319408),(132893,3,27908,2,1672319408),(132894,3,28200,2,1672319408),(132895,3,28201,2,1672319408),(132896,3,28202,2,1672319408),(132897,3,28203,2,1672319408),(132898,3,28204,2,1672319408),(132899,3,28205,2,1672319408),(132900,3,28206,2,1672319408),(132901,3,29216,2,1672319408),(132902,3,29217,2,1672319408),(132903,3,29218,2,1672319408),(132904,3,29219,2,1672319408),(132905,3,29220,2,1672319408),(132906,3,29221,2,1672319408),(132907,3,29222,2,1672319408),(132908,3,29223,2,1672319408),(132909,3,31560,2,1672319408),(132910,3,31561,2,1672319408),(132911,3,31562,2,1672319408),(132912,3,31563,2,1672319408),(132913,3,31564,2,1672319408),(132914,3,31565,2,1672319408),(132915,3,31566,2,1672319408),(132916,3,31567,2,1672319408),(132917,3,31568,2,1672319408),(132918,3,31569,2,1672319408),(132919,3,31909,2,1672319408),(132920,3,31910,2,1672319408),(132921,3,31911,2,1672319408),(132922,3,31912,2,1672319408),(132923,3,31913,2,1672319408),(132924,3,31914,2,1672319408),(132925,3,31915,2,1672319408),(132926,3,31916,2,1672319408),(132927,3,32436,2,1672319408),(132928,3,32437,2,1672319408),(132929,3,32438,2,1672319408),(132930,3,32439,2,1672319408),(132931,3,32528,2,1672319408),(132932,3,32529,2,1672319408),(132933,3,32530,2,1672319408),(132934,3,32531,2,1672319408),(132935,3,32532,2,1672319408),(132936,3,32533,2,1672319408),(132937,3,32534,2,1672319408),(132938,3,32535,2,1672319408),(132939,3,32536,2,1672319408),(132940,3,32537,2,1672319408),(132941,3,32538,2,1672319408),(132942,3,32539,2,1672319408),(132943,3,32540,2,1672319408),(132944,3,32541,2,1672319408),(132945,3,32542,2,1672319408),(132946,3,32543,2,1672319408),(132947,3,32544,2,1672319408),(132948,3,32545,2,1672319408),(132949,3,32558,2,1672319408),(132950,3,32559,2,1672319408),(132951,3,32560,2,1672319408),(132952,3,32561,2,1672319408),(132953,3,32562,2,1672319408),(132954,3,32563,2,1672319408),(132955,3,32564,2,1672319408),(132956,3,32565,2,1672319408),(132957,3,32566,2,1672319408),(132958,3,32567,2,1672319408),(132959,3,32568,2,1672319408),(132960,3,32569,2,1672319408),(132961,3,32570,2,1672319408),(132962,3,32571,2,1672319408),(132963,3,32572,2,1672319408),(132964,3,32573,2,1672319408),(132965,3,32574,2,1672319408),(132966,3,32575,2,1672319408),(132967,3,33635,2,1672319408),(132968,3,33636,2,1672319408),(132969,3,33637,2,1672319408),(132970,3,34164,2,1672319408),(132971,3,34165,2,1672319408),(132972,3,34166,2,1672319408),(132973,3,34167,2,1672319408),(132974,3,34168,2,1672319408),(132975,3,34169,2,1672319408),(132976,3,34170,2,1672319408),(132977,3,34171,2,1672319408),(132978,3,34172,2,1672319408),(132979,3,34173,2,1672319408),(132980,3,34174,2,1672319408),(132981,3,34175,2,1672319408),(132982,3,34176,2,1672319408),(132983,3,34177,2,1672319408),(132984,3,34178,2,1672319408),(132985,3,36861,2,1672319408),(132986,3,36862,2,1672319408),(132987,3,36863,2,1672319408),(132988,3,36864,2,1672319408),(132989,3,36865,2,1672319408),(132990,3,36866,2,1672319408),(132991,3,36867,2,1672319408),(132992,3,36868,2,1672319408),(132993,3,36869,2,1672319408),(132994,3,36870,2,1672319408),(132995,3,36871,2,1672319408),(132996,3,36872,2,1672319408),(132997,3,36873,2,1672319408),(132998,3,36874,2,1672319408),(132999,3,36875,2,1672319408),(133000,3,36876,2,1672319408),(133001,3,36877,2,1672319408),(133002,3,36878,2,1672319408),(133003,3,36879,2,1672319408),(133004,3,36915,2,1672319408),(133005,3,36916,2,1672319408),(133006,3,36917,2,1672319408),(133007,3,36918,2,1672319408),(133008,3,36919,2,1672319408),(133009,3,36920,2,1672319408),(133010,3,36921,2,1672319408),(133011,3,36922,2,1672319408),(133012,3,36923,2,1672319408),(133013,3,36924,2,1672319408),(133014,3,36925,2,1672319408),(133015,3,36926,2,1672319408),(133016,3,36927,2,1672319408),(133017,3,36928,2,1672319408),(133018,3,36929,2,1672319408),(133019,3,36930,2,1672319408),(133020,3,36931,2,1672319408),(133021,3,36932,2,1672319408),(133022,3,36933,2,1672319408),(133023,3,36969,2,1672319408),(133024,3,36970,2,1672319408),(133025,3,36971,2,1672319408),(133026,3,36972,2,1672319408),(133027,3,36973,2,1672319408),(133028,3,36974,2,1672319408),(133029,3,36975,2,1672319408),(133030,3,36976,2,1672319408),(133031,3,36977,2,1672319408),(133032,3,36978,2,1672319408),(133033,3,36979,2,1672319408),(133034,3,36980,2,1672319408),(133035,3,36981,2,1672319408),(133036,3,36982,2,1672319408),(133037,3,36983,2,1672319408),(133038,3,36984,2,1672319408),(133039,3,36985,2,1672319408),(133040,3,36986,2,1672319408),(133041,3,36987,2,1672319408),(133042,3,37023,2,1672319408),(133043,3,37024,2,1672319408),(133044,3,37025,2,1672319408),(133045,3,37026,2,1672319408),(133046,3,37027,2,1672319408),(133047,3,37028,2,1672319408),(133048,3,37029,2,1672319408),(133049,3,37030,2,1672319408),(133050,3,37031,2,1672319408),(133051,3,37032,2,1672319408),(133052,3,37033,2,1672319408),(133053,3,37034,2,1672319408),(133054,3,37035,2,1672319408),(133055,3,37036,2,1672319408),(133056,3,37037,2,1672319408),(133057,3,37038,2,1672319408),(133058,3,37039,2,1672319408),(133059,3,37040,2,1672319408),(133060,3,37041,2,1672319408),(133061,3,37077,2,1672319408),(133062,3,37078,2,1672319408),(133063,3,37079,2,1672319408),(133064,3,37080,2,1672319408),(133065,3,37081,2,1672319408),(133066,3,37082,2,1672319408),(133067,3,37083,2,1672319408),(133068,3,37084,2,1672319408),(133069,3,37085,2,1672319408),(133070,3,37086,2,1672319408),(133071,3,37087,2,1672319408),(133072,3,37088,2,1672319408),(133073,3,37089,2,1672319408),(133074,3,37090,2,1672319408),(133075,3,37091,2,1672319408),(133076,3,37092,2,1672319408),(133077,3,37093,2,1672319408),(133078,3,37094,2,1672319408),(133079,3,37095,2,1672319408),(133080,3,37131,2,1672319408),(133081,3,37132,2,1672319408),(133082,3,37133,2,1672319408),(133083,3,37134,2,1672319408),(133084,3,37135,2,1672319408),(133085,3,37136,2,1672319408),(133086,3,37137,2,1672319408),(133087,3,37138,2,1672319408),(133088,3,37139,2,1672319408),(133089,3,37140,2,1672319408),(133090,3,37141,2,1672319408),(133091,3,37142,2,1672319408),(133092,3,37143,2,1672319408),(133093,3,37144,2,1672319408),(133094,3,37145,2,1672319408),(133095,3,37146,2,1672319408),(133096,3,37147,2,1672319408),(133097,3,37148,2,1672319408),(133098,3,37149,2,1672319408),(133099,3,37185,2,1672319408),(133100,3,37186,2,1672319408),(133101,3,37187,2,1672319408),(133102,3,37188,2,1672319408),(133103,3,37189,2,1672319408),(133104,3,37190,2,1672319408),(133105,3,37191,2,1672319408),(133106,3,37192,2,1672319408),(133107,3,37193,2,1672319408),(133108,3,37194,2,1672319408),(133109,3,37195,2,1672319408),(133110,3,37196,2,1672319408),(133111,3,37197,2,1672319408),(133112,3,37198,2,1672319408),(133113,3,37199,2,1672319408),(133114,3,37200,2,1672319408),(133115,3,37201,2,1672319408),(133116,3,37202,2,1672319408),(133117,3,37203,2,1672319408),(133118,3,37239,2,1672319408),(133119,3,37240,2,1672319408),(133120,3,37241,2,1672319408),(133121,3,37242,2,1672319408),(133122,3,37243,2,1672319408),(133123,3,37244,2,1672319408),(133124,3,37245,2,1672319408),(133125,3,37246,2,1672319408),(133126,3,37247,2,1672319408),(133127,3,37248,2,1672319408),(133128,3,37249,2,1672319408),(133129,3,37250,2,1672319408),(133130,3,37251,2,1672319408),(133131,3,37252,2,1672319408),(133132,3,37253,2,1672319408),(133133,3,37254,2,1672319408),(133134,3,37255,2,1672319408),(133135,3,37256,2,1672319408),(133136,3,37257,2,1672319408),(133137,3,37293,2,1672319408),(133138,3,37294,2,1672319408),(133139,3,37295,2,1672319408),(133140,3,37296,2,1672319408),(133141,3,37297,2,1672319408),(133142,3,37298,2,1672319408),(133143,3,37299,2,1672319408),(133144,3,37300,2,1672319408),(133145,3,37301,2,1672319408),(133146,3,37302,2,1672319408),(133147,3,37303,2,1672319408),(133148,3,37304,2,1672319408),(133149,3,37305,2,1672319408),(133150,3,37306,2,1672319408),(133151,3,37307,2,1672319408),(133152,3,37308,2,1672319408),(133153,3,37309,2,1672319408),(133154,3,37310,2,1672319408),(133155,3,37311,2,1672319408),(133156,3,37347,2,1672319408),(133157,3,37348,2,1672319408),(133158,3,37349,2,1672319408),(133159,3,37350,2,1672319408),(133160,3,37351,2,1672319408),(133161,3,37352,2,1672319408),(133162,3,37353,2,1672319408),(133163,3,37354,2,1672319408),(133164,3,37355,2,1672319408),(133165,3,37356,2,1672319408),(133166,3,37357,2,1672319408),(133167,3,37358,2,1672319408),(133168,3,37359,2,1672319408),(133169,3,37360,2,1672319408),(133170,3,37361,2,1672319408),(133171,3,37362,2,1672319408),(133172,3,37363,2,1672319408),(133173,3,37364,2,1672319408),(133174,3,37365,2,1672319408),(133175,3,37401,2,1672319408),(133176,3,37402,2,1672319408),(133177,3,37403,2,1672319408),(133178,3,37404,2,1672319408),(133179,3,37405,2,1672319408),(133180,3,37406,2,1672319408),(133181,3,37407,2,1672319408),(133182,3,37408,2,1672319408),(133183,3,37409,2,1672319408),(133184,3,37410,2,1672319408),(133185,3,37411,2,1672319408),(133186,3,37412,2,1672319408),(133187,3,37413,2,1672319408),(133188,3,37414,2,1672319408),(133189,3,37415,2,1672319408),(133190,3,37416,2,1672319408),(133191,3,37417,2,1672319408),(133192,3,37418,2,1672319408),(133193,3,37419,2,1672319408),(133194,3,37455,2,1672319408),(133195,3,37456,2,1672319408),(133196,3,37457,2,1672319408),(133197,3,37458,2,1672319408),(133198,3,37459,2,1672319408),(133199,3,37460,2,1672319408),(133200,3,37461,2,1672319408),(133201,3,37462,2,1672319408),(133202,3,37463,2,1672319408),(133203,3,37464,2,1672319408),(133204,3,37465,2,1672319408),(133205,3,37466,2,1672319408),(133206,3,37467,2,1672319408),(133207,3,37468,2,1672319408),(133208,3,37469,2,1672319408),(133209,3,37470,2,1672319408),(133210,3,37471,2,1672319408),(133211,3,37472,2,1672319408),(133212,3,37473,2,1672319408),(133213,3,37509,2,1672319408),(133214,3,37510,2,1672319408),(133215,3,37511,2,1672319408),(133216,3,37512,2,1672319408),(133217,3,37513,2,1672319408),(133218,3,37514,2,1672319408),(133219,3,37515,2,1672319408),(133220,3,37516,2,1672319408),(133221,3,37517,2,1672319408),(133222,3,37518,2,1672319408),(133223,3,37519,2,1672319408),(133224,3,37520,2,1672319408),(133225,3,37521,2,1672319408),(133226,3,37522,2,1672319408),(133227,3,37523,2,1672319408),(133228,3,37524,2,1672319408),(133229,3,37525,2,1672319408),(133230,3,37526,2,1672319408),(133231,3,37527,2,1672319408),(133232,3,37563,2,1672319408),(133233,3,37564,2,1672319408),(133234,3,37565,2,1672319408),(133235,3,37566,2,1672319408),(133236,3,37567,2,1672319408),(133237,3,37568,2,1672319408),(133238,3,37569,2,1672319408),(133239,3,37570,2,1672319408),(133240,3,37571,2,1672319408),(133241,3,37572,2,1672319408),(133242,3,37573,2,1672319408),(133243,3,37574,2,1672319408),(133244,3,37575,2,1672319408),(133245,3,37576,2,1672319408),(133246,3,37577,2,1672319408),(133247,3,37578,2,1672319408),(133248,3,37579,2,1672319408),(133249,3,37580,2,1672319408),(133250,3,37581,2,1672319408),(133251,3,37617,2,1672319408),(133252,3,37618,2,1672319408),(133253,3,37619,2,1672319408),(133254,3,37620,2,1672319408),(133255,3,37621,2,1672319408),(133256,3,37622,2,1672319408),(133257,3,37623,2,1672319408),(133258,3,37624,2,1672319408),(133259,3,37625,2,1672319408),(133260,3,37626,2,1672319408),(133261,3,37627,2,1672319408),(133262,3,37628,2,1672319408),(133263,3,37629,2,1672319408),(133264,3,37630,2,1672319408),(133265,3,37631,2,1672319408),(133266,3,37632,2,1672319408),(133267,3,37633,2,1672319408),(133268,3,37634,2,1672319408),(133269,3,37635,2,1672319408),(133270,3,37671,2,1672319408),(133271,3,37672,2,1672319408),(133272,3,37673,2,1672319408),(133273,3,37674,2,1672319408),(133274,3,37675,2,1672319408),(133275,3,37676,2,1672319408),(133276,3,37677,2,1672319408),(133277,3,37678,2,1672319408),(133278,3,37679,2,1672319408),(133279,3,37680,2,1672319408),(133280,3,37681,2,1672319408),(133281,3,37682,2,1672319408),(133282,3,37683,2,1672319408),(133283,3,37684,2,1672319408),(133284,3,37685,2,1672319408),(133285,3,37686,2,1672319408),(133286,3,37687,2,1672319408),(133287,3,37688,2,1672319408),(133288,3,37689,2,1672319408),(133289,3,37725,2,1672319408),(133290,3,37726,2,1672319408),(133291,3,37727,2,1672319408),(133292,3,37728,2,1672319408),(133293,3,37729,2,1672319408),(133294,3,37730,2,1672319408),(133295,3,37731,2,1672319408),(133296,3,37732,2,1672319408),(133297,3,37733,2,1672319408),(133298,3,37734,2,1672319408),(133299,3,37735,2,1672319408),(133300,3,37736,2,1672319408),(133301,3,37737,2,1672319408),(133302,3,37738,2,1672319408),(133303,3,37739,2,1672319408),(133304,3,37740,2,1672319408),(133305,3,37741,2,1672319408),(133306,3,37742,2,1672319408),(133307,3,37743,2,1672319408),(133308,3,37779,2,1672319408),(133309,3,37780,2,1672319408),(133310,3,37781,2,1672319408),(133311,3,37782,2,1672319408),(133312,3,37783,2,1672319408),(133313,3,37784,2,1672319408),(133314,3,37785,2,1672319408),(133315,3,37786,2,1672319408),(133316,3,37787,2,1672319408),(133317,3,37788,2,1672319408),(133318,3,37789,2,1672319408),(133319,3,37790,2,1672319408),(133320,3,37791,2,1672319408),(133321,3,37792,2,1672319408),(133322,3,37793,2,1672319408),(133323,3,37794,2,1672319408),(133324,3,37795,2,1672319408),(133325,3,37796,2,1672319408),(133326,3,37797,2,1672319408),(133327,3,37833,2,1672319408),(133328,3,37834,2,1672319408),(133329,3,37835,2,1672319408),(133330,3,37836,2,1672319408),(133331,3,37837,2,1672319408),(133332,3,37838,2,1672319408),(133333,3,37839,2,1672319408),(133334,3,37840,2,1672319408),(133335,3,37841,2,1672319408),(133336,3,37842,2,1672319408),(133337,3,37843,2,1672319408),(133338,3,37844,2,1672319408),(133339,3,37845,2,1672319408),(133340,3,37846,2,1672319408),(133341,3,37847,2,1672319408),(133342,3,37848,2,1672319408),(133343,3,37849,2,1672319408),(133344,3,37850,2,1672319408),(133345,3,37851,2,1672319408),(133346,3,37887,2,1672319408),(133347,3,37888,2,1672319408),(133348,3,37889,2,1672319408),(133349,3,37890,2,1672319408),(133350,3,37891,2,1672319408),(133351,3,37892,2,1672319408),(133352,3,37893,2,1672319408),(133353,3,37894,2,1672319408),(133354,3,37895,2,1672319408),(133355,3,37896,2,1672319408),(133356,3,37897,2,1672319408),(133357,3,37898,2,1672319408),(133358,3,37899,2,1672319408),(133359,3,37900,2,1672319408),(133360,3,37901,2,1672319408),(133361,3,37902,2,1672319408),(133362,3,37903,2,1672319408),(133363,3,37904,2,1672319408),(133364,3,37905,2,1672319408),(133365,3,37941,2,1672319408),(133366,3,37942,2,1672319408),(133367,3,37943,2,1672319408),(133368,3,37944,2,1672319408),(133369,3,37945,2,1672319408),(133370,3,37946,2,1672319408),(133371,3,37947,2,1672319408),(133372,3,37948,2,1672319408),(133373,3,37949,2,1672319408),(133374,3,37950,2,1672319408),(133375,3,37951,2,1672319408),(133376,3,37952,2,1672319408),(133377,3,37953,2,1672319408),(133378,3,37954,2,1672319408),(133379,3,37955,2,1672319408),(133380,3,37956,2,1672319408),(133381,3,37957,2,1672319408),(133382,3,37958,2,1672319408),(133383,3,37959,2,1672319408),(133384,3,37995,2,1672319408),(133385,3,37996,2,1672319408),(133386,3,37997,2,1672319408),(133387,3,37998,2,1672319408),(133388,3,37999,2,1672319408),(133389,3,38000,2,1672319408),(133390,3,38001,2,1672319408),(133391,3,38002,2,1672319408),(133392,3,38003,2,1672319408),(133393,3,38004,2,1672319408),(133394,3,38005,2,1672319408),(133395,3,38006,2,1672319408),(133396,3,38007,2,1672319408),(133397,3,38008,2,1672319408),(133398,3,38009,2,1672319408),(133399,3,38010,2,1672319408),(133400,3,38011,2,1672319408),(133401,3,38012,2,1672319408),(133402,3,38013,2,1672319408),(133403,3,38049,2,1672319408),(133404,3,38050,2,1672319408),(133405,3,38051,2,1672319408),(133406,3,38052,2,1672319408),(133407,3,38053,2,1672319408),(133408,3,38054,2,1672319408),(133409,3,38055,2,1672319408),(133410,3,38056,2,1672319408),(133411,3,38057,2,1672319408),(133412,3,38058,2,1672319408),(133413,3,38059,2,1672319408),(133414,3,38060,2,1672319408),(133415,3,38061,2,1672319408),(133416,3,38062,2,1672319408),(133417,3,38063,2,1672319408),(133418,3,38064,2,1672319408),(133419,3,38065,2,1672319408),(133420,3,38066,2,1672319408),(133421,3,38067,2,1672319408),(133422,3,38103,2,1672319408),(133423,3,38104,2,1672319408),(133424,3,38105,2,1672319408),(133425,3,38106,2,1672319408),(133426,3,38107,2,1672319408),(133427,3,38108,2,1672319408),(133428,3,38109,2,1672319408),(133429,3,38110,2,1672319408),(133430,3,38111,2,1672319408),(133431,3,38112,2,1672319408),(133432,3,38113,2,1672319408),(133433,3,38114,2,1672319408),(133434,3,38115,2,1672319408),(133435,3,38116,2,1672319408),(133436,3,38117,2,1672319408),(133437,3,38118,2,1672319408),(133438,3,38119,2,1672319408),(133439,3,38120,2,1672319408),(133440,3,38121,2,1672319408),(133441,3,38157,2,1672319408),(133442,3,38158,2,1672319408),(133443,3,38159,2,1672319408),(133444,3,38160,2,1672319408),(133445,3,38161,2,1672319408),(133446,3,38162,2,1672319408),(133447,3,38163,2,1672319408),(133448,3,38164,2,1672319408),(133449,3,38165,2,1672319408),(133450,3,38166,2,1672319408),(133451,3,38167,2,1672319408),(133452,3,38168,2,1672319408),(133453,3,38169,2,1672319408),(133454,3,38170,2,1672319408),(133455,3,38171,2,1672319408),(133456,3,38172,2,1672319408),(133457,3,38173,2,1672319408),(133458,3,38174,2,1672319408),(133459,3,38175,2,1672319408),(133460,3,38211,2,1672319408),(133461,3,38212,2,1672319408),(133462,3,38213,2,1672319408),(133463,3,38214,2,1672319408),(133464,3,38215,2,1672319408),(133465,3,38216,2,1672319408),(133466,3,38217,2,1672319408),(133467,3,38218,2,1672319408),(133468,3,38219,2,1672319408),(133469,3,38220,2,1672319408),(133470,3,38221,2,1672319408),(133471,3,38222,2,1672319408),(133472,3,38223,2,1672319408),(133473,3,38224,2,1672319408),(133474,3,38225,2,1672319408),(133475,3,38226,2,1672319408),(133476,3,38227,2,1672319408),(133477,3,38228,2,1672319408),(133478,3,38229,2,1672319408),(133479,3,38265,2,1672319408),(133480,3,38266,2,1672319408),(133481,3,38267,2,1672319408),(133482,3,38268,2,1672319408),(133483,3,38269,2,1672319408),(133484,3,38270,2,1672319408),(133485,3,38271,2,1672319408),(133486,3,38272,2,1672319408),(133487,3,38273,2,1672319408),(133488,3,38274,2,1672319408),(133489,3,38275,2,1672319408),(133490,3,38276,2,1672319408),(133491,3,38277,2,1672319408),(133492,3,38278,2,1672319408),(133493,3,38279,2,1672319408),(133494,3,38280,2,1672319408),(133495,3,38281,2,1672319408),(133496,3,38282,2,1672319408),(133497,3,38283,2,1672319408),(133498,3,38319,2,1672319408),(133499,3,38320,2,1672319408),(133500,3,38321,2,1672319408),(133501,3,38322,2,1672319408),(133502,3,38323,2,1672319408),(133503,3,38324,2,1672319408),(133504,3,38325,2,1672319408),(133505,3,38326,2,1672319408),(133506,3,38327,2,1672319408),(133507,3,38328,2,1672319408),(133508,3,38329,2,1672319408),(133509,3,38330,2,1672319408),(133510,3,38331,2,1672319408),(133511,3,38332,2,1672319408),(133512,3,38333,2,1672319408),(133513,3,38334,2,1672319408),(133514,3,38335,2,1672319408),(133515,3,38336,2,1672319408),(133516,3,38337,2,1672319408),(133517,3,38373,2,1672319408),(133518,3,38374,2,1672319408),(133519,3,38375,2,1672319408),(133520,3,38376,2,1672319408),(133521,3,38377,2,1672319408),(133522,3,38378,2,1672319408),(133523,3,38379,2,1672319408),(133524,3,38380,2,1672319408),(133525,3,38381,2,1672319408),(133526,3,38382,2,1672319408),(133527,3,38383,2,1672319408),(133528,3,38384,2,1672319408),(133529,3,38385,2,1672319408),(133530,3,38386,2,1672319408),(133531,3,38387,2,1672319408),(133532,3,38388,2,1672319408),(133533,3,38389,2,1672319408),(133534,3,38390,2,1672319408),(133535,3,38391,2,1672319408),(133536,3,38427,2,1672319408),(133537,3,38428,2,1672319408),(133538,3,38429,2,1672319408),(133539,3,38430,2,1672319408),(133540,3,38431,2,1672319408),(133541,3,38432,2,1672319408),(133542,3,38433,2,1672319408),(133543,3,38434,2,1672319408),(133544,3,38435,2,1672319408),(133545,3,38436,2,1672319408),(133546,3,38437,2,1672319408),(133547,3,38438,2,1672319408),(133548,3,38439,2,1672319408),(133549,3,38440,2,1672319408),(133550,3,38441,2,1672319408),(133551,3,38442,2,1672319408),(133552,3,38443,2,1672319408),(133553,3,38444,2,1672319408),(133554,3,38445,2,1672319408),(133555,3,38481,2,1672319408),(133556,3,38482,2,1672319408),(133557,3,38483,2,1672319408),(133558,3,38484,2,1672319408),(133559,3,38485,2,1672319408),(133560,3,38486,2,1672319408),(133561,3,38487,2,1672319408),(133562,3,38488,2,1672319408),(133563,3,38489,2,1672319408),(133564,3,38490,2,1672319408),(133565,3,38491,2,1672319408),(133566,3,38492,2,1672319408),(133567,3,38493,2,1672319408),(133568,3,38494,2,1672319408),(133569,3,38495,2,1672319408),(133570,3,38496,2,1672319408),(133571,3,38497,2,1672319408),(133572,3,38498,2,1672319408),(133573,3,38499,2,1672319408),(133574,3,38535,2,1672319408),(133575,3,38536,2,1672319408),(133576,3,38537,2,1672319408),(133577,3,38538,2,1672319408),(133578,3,38539,2,1672319408),(133579,3,38540,2,1672319408),(133580,3,38541,2,1672319408),(133581,3,38542,2,1672319408),(133582,3,38543,2,1672319408),(133583,3,38544,2,1672319408),(133584,3,38545,2,1672319408),(133585,3,38546,2,1672319408),(133586,3,38547,2,1672319408),(133587,3,38548,2,1672319408),(133588,3,38549,2,1672319408),(133589,3,38550,2,1672319408),(133590,3,38551,2,1672319408),(133591,3,38552,2,1672319408),(133592,3,38553,2,1672319408),(133593,3,39345,2,1672319408),(133594,3,39346,2,1672319408),(133595,3,39347,2,1672319408),(133596,3,39348,2,1672319408),(133597,3,39349,2,1672319408),(133598,3,39350,2,1672319408),(133599,3,39351,2,1672319408),(133600,3,39352,2,1672319408),(133601,3,39353,2,1672319408),(133602,3,39354,2,1672319408),(133603,3,39355,2,1672319408),(133604,3,39356,2,1672319408),(133605,3,39357,2,1672319408),(133606,3,39358,2,1672319408),(133607,3,39359,2,1672319408),(133608,3,39360,2,1672319408),(133609,3,39361,2,1672319408),(133610,3,39362,2,1672319408),(133611,3,39363,2,1672319408),(133612,3,39399,2,1672319408),(133613,3,39400,2,1672319408),(133614,3,39401,2,1672319408),(133615,3,39402,2,1672319408),(133616,3,39403,2,1672319408),(133617,3,39404,2,1672319408),(133618,3,39405,2,1672319408),(133619,3,39406,2,1672319408),(133620,3,39407,2,1672319408),(133621,3,39408,2,1672319408),(133622,3,39409,2,1672319408),(133623,3,39410,2,1672319408),(133624,3,39411,2,1672319408),(133625,3,39412,2,1672319408),(133626,3,39413,2,1672319408),(133627,3,39414,2,1672319408),(133628,3,39415,2,1672319408),(133629,3,39416,2,1672319408),(133630,3,39417,2,1672319408),(133631,3,39453,2,1672319408),(133632,3,39454,2,1672319408),(133633,3,39455,2,1672319408),(133634,3,39456,2,1672319408),(133635,3,39457,2,1672319408),(133636,3,39458,2,1672319408),(133637,3,39459,2,1672319408),(133638,3,39460,2,1672319408),(133639,3,39461,2,1672319408),(133640,3,39462,2,1672319408),(133641,3,39463,2,1672319408),(133642,3,39464,2,1672319408),(133643,3,39465,2,1672319408),(133644,3,39466,2,1672319408),(133645,3,39467,2,1672319408),(133646,3,39468,2,1672319408),(133647,3,39469,2,1672319408),(133648,3,39470,2,1672319408),(133649,3,39471,2,1672319408),(133650,3,39507,2,1672319408),(133651,3,39508,2,1672319408),(133652,3,39509,2,1672319408),(133653,3,39510,2,1672319408),(133654,3,39511,2,1672319408),(133655,3,39512,2,1672319408),(133656,3,39513,2,1672319408),(133657,3,39514,2,1672319408),(133658,3,39515,2,1672319408),(133659,3,39516,2,1672319408),(133660,3,39517,2,1672319408),(133661,3,39518,2,1672319408),(133662,3,39519,2,1672319408),(133663,3,39520,2,1672319408),(133664,3,39521,2,1672319408),(133665,3,39522,2,1672319408),(133666,3,39523,2,1672319408),(133667,3,39524,2,1672319408),(133668,3,39525,2,1672319408),(133669,3,39561,2,1672319408),(133670,3,39562,2,1672319408),(133671,3,39563,2,1672319408),(133672,3,39564,2,1672319408),(133673,3,39565,2,1672319408),(133674,3,39566,2,1672319408),(133675,3,39567,2,1672319408),(133676,3,39568,2,1672319408),(133677,3,39569,2,1672319408),(133678,3,39570,2,1672319408),(133679,3,39571,2,1672319408),(133680,3,39572,2,1672319408),(133681,3,39573,2,1672319408),(133682,3,39574,2,1672319408),(133683,3,39575,2,1672319408),(133684,3,39576,2,1672319408),(133685,3,39577,2,1672319408),(133686,3,39578,2,1672319408),(133687,3,39579,2,1672319408),(133688,3,40946,2,1672319408),(133689,3,40947,2,1672319408),(133690,3,40948,2,1672319408),(133691,3,40949,2,1672319408),(133692,3,40950,2,1672319408),(133693,3,40951,2,1672319408),(133694,3,40952,2,1672319408),(133695,3,40953,2,1672319408),(133696,3,40954,2,1672319408),(133697,3,40967,2,1672319408),(133698,3,40968,2,1672319408),(133699,3,40969,2,1672319408),(133700,3,40970,2,1672319408),(133701,3,40971,2,1672319408),(133702,3,40972,2,1672319408),(133703,3,40973,2,1672319408),(133704,3,40974,2,1672319408),(133705,3,40975,2,1672319408),(133706,3,40988,2,1672319408),(133707,3,40989,2,1672319408),(133708,3,40990,2,1672319408),(133709,3,40991,2,1672319408),(133710,3,40992,2,1672319408),(133711,3,40993,2,1672319408),(133712,3,40994,2,1672319408),(133713,3,40995,2,1672319408),(133714,3,40996,2,1672319408),(133715,3,41009,2,1672319408),(133716,3,41010,2,1672319408),(133717,3,41011,2,1672319408),(133718,3,41012,2,1672319408),(133719,3,41013,2,1672319408),(133720,3,41014,2,1672319408),(133721,3,41015,2,1672319408),(133722,3,41016,2,1672319408),(133723,3,41017,2,1672319408),(133724,3,41030,2,1672319408),(133725,3,41031,2,1672319408),(133726,3,41032,2,1672319408),(133727,3,41033,2,1672319408),(133728,3,41034,2,1672319408),(133729,3,41035,2,1672319408),(133730,3,41036,2,1672319408),(133731,3,41037,2,1672319408),(133732,3,41038,2,1672319408),(133733,3,41051,2,1672319408),(133734,3,41052,2,1672319408),(133735,3,41053,2,1672319408),(133736,3,41054,2,1672319408),(133737,3,41055,2,1672319408),(133738,3,41056,2,1672319408),(133739,3,41057,2,1672319408),(133740,3,41058,2,1672319408),(133741,3,41059,2,1672319408),(133742,3,41072,2,1672319408),(133743,3,41073,2,1672319408),(133744,3,41074,2,1672319408),(133745,3,41075,2,1672319408),(133746,3,41076,2,1672319408),(133747,3,41077,2,1672319408),(133748,3,41078,2,1672319408),(133749,3,41079,2,1672319408),(133750,3,41080,2,1672319408),(133751,3,41093,2,1672319408),(133752,3,41094,2,1672319408),(133753,3,41095,2,1672319408),(133754,3,41096,2,1672319408),(133755,3,41097,2,1672319408),(133756,3,41098,2,1672319408),(133757,3,41099,2,1672319408),(133758,3,41100,2,1672319408),(133759,3,41101,2,1672319408),(133760,3,41114,2,1672319408),(133761,3,41115,2,1672319408),(133762,3,41116,2,1672319408),(133763,3,41117,2,1672319408),(133764,3,41118,2,1672319408),(133765,3,41119,2,1672319408),(133766,3,41120,2,1672319408),(133767,3,41121,2,1672319408),(133768,3,41122,2,1672319408),(133769,3,41135,2,1672319408),(133770,3,41136,2,1672319408),(133771,3,41137,2,1672319408),(133772,3,41138,2,1672319408),(133773,3,41139,2,1672319408),(133774,3,41140,2,1672319408),(133775,3,41141,2,1672319408),(133776,3,41142,2,1672319408),(133777,3,41143,2,1672319408),(133778,3,41156,2,1672319408),(133779,3,41157,2,1672319408),(133780,3,41158,2,1672319408),(133781,3,41159,2,1672319408),(133782,3,41160,2,1672319408),(133783,3,41161,2,1672319408),(133784,3,41162,2,1672319408),(133785,3,41163,2,1672319408),(133786,3,41164,2,1672319408),(133787,3,41177,2,1672319408),(133788,3,41178,2,1672319408),(133789,3,41179,2,1672319408),(133790,3,41180,2,1672319408),(133791,3,41181,2,1672319408),(133792,3,41182,2,1672319408),(133793,3,41183,2,1672319408),(133794,3,41184,2,1672319408),(133795,3,41185,2,1672319408),(133796,3,41198,2,1672319408),(133797,3,41199,2,1672319408),(133798,3,41200,2,1672319408),(133799,3,41201,2,1672319408),(133800,3,41202,2,1672319408),(133801,3,41203,2,1672319408),(133802,3,41204,2,1672319408),(133803,3,41205,2,1672319408),(133804,3,41206,2,1672319408),(133805,3,41219,2,1672319408),(133806,3,41220,2,1672319408),(133807,3,41221,2,1672319408),(133808,3,41222,2,1672319408),(133809,3,41223,2,1672319408),(133810,3,41224,2,1672319408),(133811,3,41225,2,1672319408),(133812,3,41226,2,1672319408),(133813,3,41227,2,1672319408),(133814,3,41240,2,1672319408),(133815,3,41241,2,1672319408),(133816,3,41242,2,1672319408),(133817,3,41243,2,1672319408),(133818,3,41244,2,1672319408),(133819,3,41245,2,1672319408),(133820,3,41246,2,1672319408),(133821,3,41247,2,1672319408),(133822,3,41248,2,1672319408),(133823,3,41261,2,1672319408),(133824,3,41262,2,1672319408),(133825,3,41263,2,1672319408),(133826,3,41264,2,1672319408),(133827,3,41265,2,1672319408),(133828,3,41266,2,1672319408),(133829,3,41267,2,1672319408),(133830,3,41268,2,1672319408),(133831,3,41269,2,1672319408),(133832,3,41282,2,1672319408),(133833,3,41283,2,1672319408),(133834,3,41284,2,1672319408),(133835,3,41285,2,1672319408),(133836,3,41286,2,1672319408),(133837,3,41287,2,1672319408),(133838,3,41288,2,1672319408),(133839,3,41289,2,1672319408),(133840,3,41290,2,1672319408),(133841,3,41303,2,1672319408),(133842,3,41304,2,1672319408),(133843,3,41305,2,1672319408),(133844,3,41306,2,1672319408),(133845,3,41307,2,1672319408),(133846,3,41308,2,1672319408),(133847,3,41309,2,1672319408),(133848,3,41310,2,1672319408),(133849,3,41311,2,1672319408),(133850,3,41324,2,1672319408),(133851,3,41325,2,1672319408),(133852,3,41326,2,1672319408),(133853,3,41327,2,1672319408),(133854,3,41328,2,1672319408),(133855,3,41329,2,1672319408),(133856,3,41330,2,1672319408),(133857,3,41331,2,1672319408),(133858,3,41332,2,1672319408),(133859,3,41345,2,1672319408),(133860,3,41346,2,1672319408),(133861,3,41347,2,1672319408),(133862,3,41348,2,1672319408),(133863,3,41349,2,1672319408),(133864,3,41350,2,1672319408),(133865,3,41351,2,1672319408),(133866,3,41352,2,1672319408),(133867,3,41353,2,1672319408),(133868,3,41366,2,1672319408),(133869,3,41367,2,1672319408),(133870,3,41368,2,1672319408),(133871,3,41369,2,1672319408),(133872,3,41370,2,1672319408),(133873,3,41371,2,1672319408),(133874,3,41372,2,1672319408),(133875,3,41373,2,1672319408),(133876,3,41374,2,1672319408),(133877,3,41387,2,1672319408),(133878,3,41388,2,1672319408),(133879,3,41389,2,1672319408),(133880,3,41390,2,1672319408),(133881,3,41391,2,1672319408),(133882,3,41392,2,1672319408),(133883,3,41393,2,1672319408),(133884,3,41394,2,1672319408),(133885,3,41395,2,1672319408),(133886,3,41408,2,1672319408),(133887,3,41409,2,1672319408),(133888,3,41410,2,1672319408),(133889,3,41411,2,1672319408),(133890,3,41412,2,1672319408),(133891,3,41413,2,1672319408),(133892,3,41414,2,1672319408),(133893,3,41415,2,1672319408),(133894,3,41416,2,1672319408),(133895,3,41429,2,1672319408),(133896,3,41430,2,1672319408),(133897,3,41431,2,1672319408),(133898,3,41432,2,1672319408),(133899,3,41433,2,1672319408),(133900,3,41434,2,1672319408),(133901,3,41435,2,1672319408),(133902,3,41436,2,1672319408),(133903,3,41437,2,1672319408),(133904,3,41450,2,1672319408),(133905,3,41451,2,1672319408),(133906,3,41452,2,1672319408),(133907,3,41453,2,1672319408),(133908,3,41454,2,1672319408),(133909,3,41455,2,1672319408),(133910,3,41456,2,1672319408),(133911,3,41457,2,1672319408),(133912,3,41458,2,1672319408),(133913,3,41471,2,1672319408),(133914,3,41472,2,1672319408),(133915,3,41473,2,1672319408),(133916,3,41474,2,1672319408),(133917,3,41475,2,1672319408),(133918,3,41476,2,1672319408),(133919,3,41477,2,1672319408),(133920,3,41478,2,1672319408),(133921,3,41479,2,1672319408),(133922,3,41492,2,1672319408),(133923,3,41493,2,1672319408),(133924,3,41494,2,1672319408),(133925,3,41495,2,1672319408),(133926,3,41496,2,1672319408),(133927,3,41497,2,1672319408),(133928,3,41498,2,1672319408),(133929,3,41499,2,1672319408),(133930,3,41500,2,1672319408),(133931,3,41513,2,1672319408),(133932,3,41514,2,1672319408),(133933,3,41515,2,1672319408),(133934,3,41516,2,1672319408),(133935,3,41517,2,1672319408),(133936,3,41518,2,1672319408),(133937,3,41519,2,1672319408),(133938,3,41520,2,1672319408),(133939,3,41521,2,1672319408),(133940,3,41534,2,1672319408),(133941,3,41535,2,1672319408),(133942,3,41536,2,1672319408),(133943,3,41537,2,1672319408),(133944,3,41538,2,1672319408),(133945,3,41539,2,1672319408),(133946,3,41540,2,1672319408),(133947,3,41541,2,1672319408),(133948,3,41542,2,1672319408),(133949,3,41555,2,1672319408),(133950,3,41556,2,1672319408),(133951,3,41557,2,1672319408),(133952,3,41558,2,1672319408),(133953,3,41559,2,1672319408),(133954,3,41560,2,1672319408),(133955,3,41561,2,1672319408),(133956,3,41562,2,1672319408),(133957,3,41563,2,1672319408),(133958,3,41576,2,1672319408),(133959,3,41577,2,1672319408),(133960,3,41578,2,1672319408),(133961,3,41579,2,1672319408),(133962,3,41580,2,1672319408),(133963,3,41581,2,1672319408),(133964,3,41582,2,1672319408),(133965,3,41583,2,1672319408),(133966,3,41584,2,1672319408),(133967,3,41597,2,1672319408),(133968,3,41598,2,1672319408),(133969,3,41599,2,1672319408),(133970,3,41600,2,1672319408),(133971,3,41601,2,1672319408),(133972,3,41602,2,1672319408),(133973,3,41603,2,1672319408),(133974,3,41604,2,1672319408),(133975,3,41605,2,1672319408),(133976,3,41912,2,1672319408),(133977,3,41913,2,1672319408),(133978,3,41914,2,1672319408),(133979,3,41915,2,1672319408),(133980,3,41916,2,1672319408),(133981,3,41917,2,1672319408),(133982,3,41918,2,1672319408),(133983,3,41919,2,1672319408),(133984,3,41920,2,1672319408),(133985,3,41933,2,1672319408),(133986,3,41934,2,1672319408),(133987,3,41935,2,1672319408),(133988,3,41936,2,1672319408),(133989,3,41937,2,1672319408),(133990,3,41938,2,1672319408),(133991,3,41939,2,1672319408),(133992,3,41940,2,1672319408),(133993,3,41941,2,1672319408),(133994,3,41954,2,1672319408),(133995,3,41955,2,1672319408),(133996,3,41956,2,1672319408),(133997,3,41957,2,1672319408),(133998,3,41958,2,1672319408),(133999,3,41959,2,1672319408),(134000,3,41960,2,1672319408),(134001,3,41961,2,1672319408),(134002,3,41962,2,1672319408),(134003,3,41975,2,1672319408),(134004,3,41976,2,1672319408),(134005,3,41977,2,1672319408),(134006,3,41978,2,1672319408),(134007,3,41979,2,1672319408),(134008,3,41980,2,1672319408),(134009,3,41981,2,1672319408),(134010,3,41982,2,1672319408),(134011,3,41983,2,1672319408),(134012,3,41996,2,1672319408),(134013,3,41997,2,1672319408),(134014,3,41998,2,1672319408),(134015,3,41999,2,1672319408),(134016,3,42000,2,1672319408),(134017,3,42001,2,1672319408),(134018,3,42002,2,1672319408),(134019,3,42003,2,1672319408),(134020,3,42004,2,1672319408),(134021,3,42080,2,1672319408),(134022,3,42081,2,1672319408),(134023,3,42082,2,1672319408),(134024,3,42083,2,1672319408),(134025,3,42084,2,1672319408),(134026,3,42085,2,1672319408),(134027,3,42086,2,1672319408),(134028,3,42087,2,1672319408),(134029,3,42088,2,1672319408),(134030,3,42680,2,1672319408),(134031,3,42683,2,1672319408),(134032,3,44446,2,1672319408),(134033,3,23068,3,1672319408),(134034,3,23069,3,1672319408),(134035,3,23070,3,1672319408),(134036,3,23071,3,1672319408),(134037,3,23072,3,1672319408),(134038,3,27904,3,1672319408),(134039,3,27905,3,1672319408),(134040,3,27906,3,1672319408),(134041,3,27907,3,1672319408),(134042,3,27908,3,1672319408),(134043,3,28200,3,1672319408),(134044,3,28201,3,1672319408),(134045,3,28202,3,1672319408),(134046,3,28203,3,1672319408),(134047,3,28204,3,1672319408),(134048,3,28205,3,1672319408),(134049,3,28206,3,1672319408),(134050,3,29216,3,1672319408),(134051,3,29217,3,1672319408),(134052,3,29218,3,1672319408),(134053,3,29219,3,1672319408),(134054,3,29220,3,1672319408),(134055,3,29221,3,1672319408),(134056,3,29222,3,1672319408),(134057,3,29223,3,1672319408),(134058,3,31560,3,1672319408),(134059,3,31561,3,1672319408),(134060,3,31562,3,1672319408),(134061,3,31563,3,1672319408),(134062,3,31564,3,1672319408),(134063,3,31565,3,1672319408),(134064,3,31566,3,1672319408),(134065,3,31567,3,1672319408),(134066,3,31568,3,1672319408),(134067,3,31569,3,1672319408),(134068,3,31909,3,1672319408),(134069,3,31910,3,1672319408),(134070,3,31911,3,1672319408),(134071,3,31912,3,1672319408),(134072,3,31913,3,1672319408),(134073,3,31914,3,1672319408),(134074,3,31915,3,1672319408),(134075,3,31916,3,1672319408),(134076,3,32436,3,1672319408),(134077,3,32437,3,1672319408),(134078,3,32438,3,1672319408),(134079,3,32439,3,1672319408),(134080,3,32528,3,1672319408),(134081,3,32529,3,1672319408),(134082,3,32530,3,1672319408),(134083,3,32531,3,1672319408),(134084,3,32532,3,1672319408),(134085,3,32533,3,1672319408),(134086,3,32534,3,1672319408),(134087,3,32535,3,1672319408),(134088,3,32536,3,1672319408),(134089,3,32537,3,1672319408),(134090,3,32538,3,1672319408),(134091,3,32539,3,1672319408),(134092,3,32540,3,1672319408),(134093,3,32541,3,1672319408),(134094,3,32542,3,1672319408),(134095,3,32543,3,1672319408),(134096,3,32544,3,1672319408),(134097,3,32545,3,1672319408),(134098,3,32558,3,1672319408),(134099,3,32559,3,1672319408),(134100,3,32560,3,1672319408),(134101,3,32561,3,1672319408),(134102,3,32562,3,1672319408),(134103,3,32563,3,1672319408),(134104,3,32564,3,1672319408),(134105,3,32565,3,1672319408),(134106,3,32566,3,1672319408),(134107,3,32567,3,1672319408),(134108,3,32568,3,1672319408),(134109,3,32569,3,1672319408),(134110,3,32570,3,1672319408),(134111,3,32571,3,1672319408),(134112,3,32572,3,1672319408),(134113,3,32573,3,1672319408),(134114,3,32574,3,1672319408),(134115,3,32575,3,1672319408),(134116,3,33635,3,1672319408),(134117,3,33636,3,1672319408),(134118,3,33637,3,1672319408),(134119,3,34164,3,1672319408),(134120,3,34165,3,1672319408),(134121,3,34166,3,1672319408),(134122,3,34167,3,1672319408),(134123,3,34168,3,1672319408),(134124,3,34169,3,1672319408),(134125,3,34170,3,1672319408),(134126,3,34171,3,1672319408),(134127,3,34172,3,1672319408),(134128,3,34173,3,1672319408),(134129,3,34174,3,1672319408),(134130,3,34175,3,1672319408),(134131,3,34176,3,1672319408),(134132,3,34177,3,1672319408),(134133,3,34178,3,1672319408),(134134,3,36861,3,1672319408),(134135,3,36862,3,1672319408),(134136,3,36863,3,1672319408),(134137,3,36864,3,1672319408),(134138,3,36865,3,1672319408),(134139,3,36866,3,1672319408),(134140,3,36867,3,1672319408),(134141,3,36868,3,1672319408),(134142,3,36869,3,1672319408),(134143,3,36870,3,1672319408),(134144,3,36871,3,1672319408),(134145,3,36872,3,1672319408),(134146,3,36873,3,1672319408),(134147,3,36874,3,1672319408),(134148,3,36875,3,1672319408),(134149,3,36876,3,1672319408),(134150,3,36877,3,1672319408),(134151,3,36878,3,1672319408),(134152,3,36879,3,1672319408),(134153,3,36915,3,1672319408),(134154,3,36916,3,1672319408),(134155,3,36917,3,1672319408),(134156,3,36918,3,1672319408),(134157,3,36919,3,1672319408),(134158,3,36920,3,1672319408),(134159,3,36921,3,1672319408),(134160,3,36922,3,1672319408),(134161,3,36923,3,1672319408),(134162,3,36924,3,1672319408),(134163,3,36925,3,1672319408),(134164,3,36926,3,1672319408),(134165,3,36927,3,1672319408),(134166,3,36928,3,1672319408),(134167,3,36929,3,1672319408),(134168,3,36930,3,1672319408),(134169,3,36931,3,1672319408),(134170,3,36932,3,1672319408),(134171,3,36933,3,1672319408),(134172,3,36969,3,1672319408),(134173,3,36970,3,1672319408),(134174,3,36971,3,1672319408),(134175,3,36972,3,1672319408),(134176,3,36973,3,1672319408),(134177,3,36974,3,1672319408),(134178,3,36975,3,1672319408),(134179,3,36976,3,1672319408),(134180,3,36977,3,1672319408),(134181,3,36978,3,1672319408),(134182,3,36979,3,1672319408),(134183,3,36980,3,1672319408),(134184,3,36981,3,1672319408),(134185,3,36982,3,1672319408),(134186,3,36983,3,1672319408),(134187,3,36984,3,1672319408),(134188,3,36985,3,1672319408),(134189,3,36986,3,1672319408),(134190,3,36987,3,1672319408),(134191,3,37023,3,1672319408),(134192,3,37024,3,1672319408),(134193,3,37025,3,1672319408),(134194,3,37026,3,1672319408),(134195,3,37027,3,1672319408),(134196,3,37028,3,1672319408),(134197,3,37029,3,1672319408),(134198,3,37030,3,1672319408),(134199,3,37031,3,1672319408),(134200,3,37032,3,1672319408),(134201,3,37033,3,1672319408),(134202,3,37034,3,1672319408),(134203,3,37035,3,1672319408),(134204,3,37036,3,1672319408),(134205,3,37037,3,1672319408),(134206,3,37038,3,1672319408),(134207,3,37039,3,1672319408),(134208,3,37040,3,1672319408),(134209,3,37041,3,1672319408),(134210,3,37077,3,1672319408),(134211,3,37078,3,1672319408),(134212,3,37079,3,1672319408),(134213,3,37080,3,1672319408),(134214,3,37081,3,1672319408),(134215,3,37082,3,1672319408),(134216,3,37083,3,1672319408),(134217,3,37084,3,1672319408),(134218,3,37085,3,1672319408),(134219,3,37086,3,1672319408),(134220,3,37087,3,1672319408),(134221,3,37088,3,1672319408),(134222,3,37089,3,1672319408),(134223,3,37090,3,1672319408),(134224,3,37091,3,1672319408),(134225,3,37092,3,1672319408),(134226,3,37093,3,1672319408),(134227,3,37094,3,1672319408),(134228,3,37095,3,1672319408),(134229,3,37131,3,1672319408),(134230,3,37132,3,1672319408),(134231,3,37133,3,1672319408),(134232,3,37134,3,1672319408),(134233,3,37135,3,1672319408),(134234,3,37136,3,1672319408),(134235,3,37137,3,1672319408),(134236,3,37138,3,1672319408),(134237,3,37139,3,1672319408),(134238,3,37140,3,1672319408),(134239,3,37141,3,1672319408),(134240,3,37142,3,1672319408),(134241,3,37143,3,1672319408),(134242,3,37144,3,1672319408),(134243,3,37145,3,1672319408),(134244,3,37146,3,1672319408),(134245,3,37147,3,1672319408),(134246,3,37148,3,1672319408),(134247,3,37149,3,1672319408),(134248,3,37185,3,1672319408),(134249,3,37186,3,1672319408),(134250,3,37187,3,1672319408),(134251,3,37188,3,1672319408),(134252,3,37189,3,1672319408),(134253,3,37190,3,1672319408),(134254,3,37191,3,1672319408),(134255,3,37192,3,1672319408),(134256,3,37193,3,1672319408),(134257,3,37194,3,1672319408),(134258,3,37195,3,1672319408),(134259,3,37196,3,1672319408),(134260,3,37197,3,1672319408),(134261,3,37198,3,1672319408),(134262,3,37199,3,1672319408),(134263,3,37200,3,1672319408),(134264,3,37201,3,1672319408),(134265,3,37202,3,1672319408),(134266,3,37203,3,1672319408),(134267,3,37239,3,1672319408),(134268,3,37240,3,1672319408),(134269,3,37241,3,1672319408),(134270,3,37242,3,1672319408),(134271,3,37243,3,1672319408),(134272,3,37244,3,1672319408),(134273,3,37245,3,1672319408),(134274,3,37246,3,1672319408),(134275,3,37247,3,1672319408),(134276,3,37248,3,1672319408),(134277,3,37249,3,1672319408),(134278,3,37250,3,1672319408),(134279,3,37251,3,1672319408),(134280,3,37252,3,1672319408),(134281,3,37253,3,1672319408),(134282,3,37254,3,1672319408),(134283,3,37255,3,1672319408),(134284,3,37256,3,1672319408),(134285,3,37257,3,1672319408),(134286,3,37293,3,1672319408),(134287,3,37294,3,1672319408),(134288,3,37295,3,1672319408),(134289,3,37296,3,1672319408),(134290,3,37297,3,1672319408),(134291,3,37298,3,1672319408),(134292,3,37299,3,1672319408),(134293,3,37300,3,1672319408),(134294,3,37301,3,1672319408),(134295,3,37302,3,1672319408),(134296,3,37303,3,1672319408),(134297,3,37304,3,1672319408),(134298,3,37305,3,1672319408),(134299,3,37306,3,1672319408),(134300,3,37307,3,1672319408),(134301,3,37308,3,1672319408),(134302,3,37309,3,1672319408),(134303,3,37310,3,1672319408),(134304,3,37311,3,1672319408),(134305,3,37347,3,1672319408),(134306,3,37348,3,1672319408),(134307,3,37349,3,1672319408),(134308,3,37350,3,1672319408),(134309,3,37351,3,1672319408),(134310,3,37352,3,1672319408),(134311,3,37353,3,1672319408),(134312,3,37354,3,1672319408),(134313,3,37355,3,1672319408),(134314,3,37356,3,1672319408),(134315,3,37357,3,1672319408),(134316,3,37358,3,1672319408),(134317,3,37359,3,1672319408),(134318,3,37360,3,1672319408),(134319,3,37361,3,1672319408),(134320,3,37362,3,1672319408),(134321,3,37363,3,1672319408),(134322,3,37364,3,1672319408),(134323,3,37365,3,1672319408),(134324,3,37401,3,1672319408),(134325,3,37402,3,1672319408),(134326,3,37403,3,1672319408),(134327,3,37404,3,1672319408),(134328,3,37405,3,1672319408),(134329,3,37406,3,1672319408),(134330,3,37407,3,1672319408),(134331,3,37408,3,1672319408),(134332,3,37409,3,1672319408),(134333,3,37410,3,1672319408),(134334,3,37411,3,1672319408),(134335,3,37412,3,1672319408),(134336,3,37413,3,1672319408),(134337,3,37414,3,1672319408),(134338,3,37415,3,1672319408),(134339,3,37416,3,1672319408),(134340,3,37417,3,1672319408),(134341,3,37418,3,1672319408),(134342,3,37419,3,1672319408),(134343,3,37455,3,1672319408),(134344,3,37456,3,1672319408),(134345,3,37457,3,1672319408),(134346,3,37458,3,1672319408),(134347,3,37459,3,1672319408),(134348,3,37460,3,1672319408),(134349,3,37461,3,1672319408),(134350,3,37462,3,1672319408),(134351,3,37463,3,1672319408),(134352,3,37464,3,1672319408),(134353,3,37465,3,1672319408),(134354,3,37466,3,1672319408),(134355,3,37467,3,1672319408),(134356,3,37468,3,1672319408),(134357,3,37469,3,1672319408),(134358,3,37470,3,1672319408),(134359,3,37471,3,1672319408),(134360,3,37472,3,1672319408),(134361,3,37473,3,1672319408),(134362,3,37509,3,1672319408),(134363,3,37510,3,1672319408),(134364,3,37511,3,1672319408),(134365,3,37512,3,1672319408),(134366,3,37513,3,1672319408),(134367,3,37514,3,1672319408),(134368,3,37515,3,1672319408),(134369,3,37516,3,1672319408),(134370,3,37517,3,1672319408),(134371,3,37518,3,1672319408),(134372,3,37519,3,1672319408),(134373,3,37520,3,1672319408),(134374,3,37521,3,1672319408),(134375,3,37522,3,1672319408),(134376,3,37523,3,1672319408),(134377,3,37524,3,1672319408),(134378,3,37525,3,1672319408),(134379,3,37526,3,1672319408),(134380,3,37527,3,1672319408),(134381,3,37563,3,1672319408),(134382,3,37564,3,1672319408),(134383,3,37565,3,1672319408),(134384,3,37566,3,1672319408),(134385,3,37567,3,1672319408),(134386,3,37568,3,1672319408),(134387,3,37569,3,1672319408),(134388,3,37570,3,1672319408),(134389,3,37571,3,1672319408),(134390,3,37572,3,1672319408),(134391,3,37573,3,1672319408),(134392,3,37574,3,1672319408),(134393,3,37575,3,1672319408),(134394,3,37576,3,1672319408),(134395,3,37577,3,1672319408),(134396,3,37578,3,1672319408),(134397,3,37579,3,1672319408),(134398,3,37580,3,1672319408),(134399,3,37581,3,1672319408),(134400,3,37617,3,1672319408),(134401,3,37618,3,1672319408),(134402,3,37619,3,1672319408),(134403,3,37620,3,1672319408),(134404,3,37621,3,1672319408),(134405,3,37622,3,1672319408),(134406,3,37623,3,1672319408),(134407,3,37624,3,1672319408),(134408,3,37625,3,1672319408),(134409,3,37626,3,1672319408),(134410,3,37627,3,1672319408),(134411,3,37628,3,1672319408),(134412,3,37629,3,1672319408),(134413,3,37630,3,1672319408),(134414,3,37631,3,1672319408),(134415,3,37632,3,1672319408),(134416,3,37633,3,1672319408),(134417,3,37634,3,1672319408),(134418,3,37635,3,1672319408),(134419,3,37671,3,1672319408),(134420,3,37672,3,1672319408),(134421,3,37673,3,1672319408),(134422,3,37674,3,1672319408),(134423,3,37675,3,1672319408),(134424,3,37676,3,1672319408),(134425,3,37677,3,1672319408),(134426,3,37678,3,1672319408),(134427,3,37679,3,1672319408),(134428,3,37680,3,1672319408),(134429,3,37681,3,1672319408),(134430,3,37682,3,1672319408),(134431,3,37683,3,1672319408),(134432,3,37684,3,1672319408),(134433,3,37685,3,1672319408),(134434,3,37686,3,1672319408),(134435,3,37687,3,1672319408),(134436,3,37688,3,1672319408),(134437,3,37689,3,1672319408),(134438,3,37725,3,1672319408),(134439,3,37726,3,1672319408),(134440,3,37727,3,1672319408),(134441,3,37728,3,1672319408),(134442,3,37729,3,1672319408),(134443,3,37730,3,1672319408),(134444,3,37731,3,1672319408),(134445,3,37732,3,1672319408),(134446,3,37733,3,1672319408),(134447,3,37734,3,1672319408),(134448,3,37735,3,1672319408),(134449,3,37736,3,1672319408),(134450,3,37737,3,1672319408),(134451,3,37738,3,1672319408),(134452,3,37739,3,1672319408),(134453,3,37740,3,1672319408),(134454,3,37741,3,1672319408),(134455,3,37742,3,1672319408),(134456,3,37743,3,1672319408),(134457,3,37779,3,1672319408),(134458,3,37780,3,1672319408),(134459,3,37781,3,1672319408),(134460,3,37782,3,1672319408),(134461,3,37783,3,1672319408),(134462,3,37784,3,1672319408),(134463,3,37785,3,1672319408),(134464,3,37786,3,1672319408),(134465,3,37787,3,1672319408),(134466,3,37788,3,1672319408),(134467,3,37789,3,1672319408),(134468,3,37790,3,1672319408),(134469,3,37791,3,1672319408),(134470,3,37792,3,1672319408),(134471,3,37793,3,1672319408),(134472,3,37794,3,1672319408),(134473,3,37795,3,1672319408),(134474,3,37796,3,1672319408),(134475,3,37797,3,1672319408),(134476,3,37833,3,1672319408),(134477,3,37834,3,1672319408),(134478,3,37835,3,1672319408),(134479,3,37836,3,1672319408),(134480,3,37837,3,1672319408),(134481,3,37838,3,1672319408),(134482,3,37839,3,1672319408),(134483,3,37840,3,1672319408),(134484,3,37841,3,1672319408),(134485,3,37842,3,1672319408),(134486,3,37843,3,1672319408),(134487,3,37844,3,1672319408),(134488,3,37845,3,1672319408),(134489,3,37846,3,1672319408),(134490,3,37847,3,1672319408),(134491,3,37848,3,1672319408),(134492,3,37849,3,1672319408),(134493,3,37850,3,1672319408),(134494,3,37851,3,1672319408),(134495,3,37887,3,1672319408),(134496,3,37888,3,1672319408),(134497,3,37889,3,1672319408),(134498,3,37890,3,1672319408),(134499,3,37891,3,1672319408),(134500,3,37892,3,1672319408),(134501,3,37893,3,1672319408),(134502,3,37894,3,1672319408),(134503,3,37895,3,1672319408),(134504,3,37896,3,1672319408),(134505,3,37897,3,1672319408),(134506,3,37898,3,1672319408),(134507,3,37899,3,1672319408),(134508,3,37900,3,1672319408),(134509,3,37901,3,1672319408),(134510,3,37902,3,1672319408),(134511,3,37903,3,1672319408),(134512,3,37904,3,1672319408),(134513,3,37905,3,1672319408),(134514,3,37941,3,1672319408),(134515,3,37942,3,1672319408),(134516,3,37943,3,1672319408),(134517,3,37944,3,1672319408),(134518,3,37945,3,1672319408),(134519,3,37946,3,1672319408),(134520,3,37947,3,1672319408),(134521,3,37948,3,1672319408),(134522,3,37949,3,1672319408),(134523,3,37950,3,1672319408),(134524,3,37951,3,1672319408),(134525,3,37952,3,1672319408),(134526,3,37953,3,1672319408),(134527,3,37954,3,1672319408),(134528,3,37955,3,1672319408),(134529,3,37956,3,1672319408),(134530,3,37957,3,1672319408),(134531,3,37958,3,1672319408),(134532,3,37959,3,1672319408),(134533,3,37995,3,1672319408),(134534,3,37996,3,1672319408),(134535,3,37997,3,1672319408),(134536,3,37998,3,1672319408),(134537,3,37999,3,1672319408),(134538,3,38000,3,1672319408),(134539,3,38001,3,1672319408),(134540,3,38002,3,1672319408),(134541,3,38003,3,1672319408),(134542,3,38004,3,1672319408),(134543,3,38005,3,1672319408),(134544,3,38006,3,1672319408),(134545,3,38007,3,1672319408),(134546,3,38008,3,1672319408),(134547,3,38009,3,1672319408),(134548,3,38010,3,1672319408),(134549,3,38011,3,1672319408),(134550,3,38012,3,1672319408),(134551,3,38013,3,1672319408),(134552,3,38049,3,1672319408),(134553,3,38050,3,1672319408),(134554,3,38051,3,1672319408),(134555,3,38052,3,1672319408),(134556,3,38053,3,1672319408),(134557,3,38054,3,1672319408),(134558,3,38055,3,1672319408),(134559,3,38056,3,1672319408),(134560,3,38057,3,1672319408),(134561,3,38058,3,1672319408),(134562,3,38059,3,1672319408),(134563,3,38060,3,1672319408),(134564,3,38061,3,1672319408),(134565,3,38062,3,1672319408),(134566,3,38063,3,1672319408),(134567,3,38064,3,1672319408),(134568,3,38065,3,1672319408),(134569,3,38066,3,1672319408),(134570,3,38067,3,1672319408),(134571,3,38103,3,1672319408),(134572,3,38104,3,1672319408),(134573,3,38105,3,1672319408),(134574,3,38106,3,1672319408),(134575,3,38107,3,1672319408),(134576,3,38108,3,1672319408),(134577,3,38109,3,1672319408),(134578,3,38110,3,1672319408),(134579,3,38111,3,1672319408),(134580,3,38112,3,1672319408),(134581,3,38113,3,1672319408),(134582,3,38114,3,1672319408),(134583,3,38115,3,1672319408),(134584,3,38116,3,1672319408),(134585,3,38117,3,1672319408),(134586,3,38118,3,1672319408),(134587,3,38119,3,1672319408),(134588,3,38120,3,1672319408),(134589,3,38121,3,1672319408),(134590,3,38157,3,1672319408),(134591,3,38158,3,1672319408),(134592,3,38159,3,1672319408),(134593,3,38160,3,1672319408),(134594,3,38161,3,1672319408),(134595,3,38162,3,1672319408),(134596,3,38163,3,1672319408),(134597,3,38164,3,1672319408),(134598,3,38165,3,1672319408),(134599,3,38166,3,1672319408),(134600,3,38167,3,1672319408),(134601,3,38168,3,1672319408),(134602,3,38169,3,1672319408),(134603,3,38170,3,1672319408),(134604,3,38171,3,1672319408),(134605,3,38172,3,1672319408),(134606,3,38173,3,1672319408),(134607,3,38174,3,1672319408),(134608,3,38175,3,1672319408),(134609,3,38211,3,1672319408),(134610,3,38212,3,1672319408),(134611,3,38213,3,1672319408),(134612,3,38214,3,1672319408),(134613,3,38215,3,1672319408),(134614,3,38216,3,1672319408),(134615,3,38217,3,1672319408),(134616,3,38218,3,1672319408),(134617,3,38219,3,1672319408),(134618,3,38220,3,1672319408),(134619,3,38221,3,1672319408),(134620,3,38222,3,1672319408),(134621,3,38223,3,1672319408),(134622,3,38224,3,1672319408),(134623,3,38225,3,1672319408),(134624,3,38226,3,1672319408),(134625,3,38227,3,1672319408),(134626,3,38228,3,1672319408),(134627,3,38229,3,1672319408),(134628,3,38265,3,1672319408),(134629,3,38266,3,1672319408),(134630,3,38267,3,1672319408),(134631,3,38268,3,1672319408),(134632,3,38269,3,1672319408),(134633,3,38270,3,1672319408),(134634,3,38271,3,1672319408),(134635,3,38272,3,1672319408),(134636,3,38273,3,1672319408),(134637,3,38274,3,1672319408),(134638,3,38275,3,1672319408),(134639,3,38276,3,1672319408),(134640,3,38277,3,1672319408),(134641,3,38278,3,1672319408),(134642,3,38279,3,1672319408),(134643,3,38280,3,1672319408),(134644,3,38281,3,1672319408),(134645,3,38282,3,1672319408),(134646,3,38283,3,1672319408),(134647,3,38319,3,1672319408),(134648,3,38320,3,1672319408),(134649,3,38321,3,1672319408),(134650,3,38322,3,1672319408),(134651,3,38323,3,1672319408),(134652,3,38324,3,1672319408),(134653,3,38325,3,1672319408),(134654,3,38326,3,1672319408),(134655,3,38327,3,1672319408),(134656,3,38328,3,1672319408),(134657,3,38329,3,1672319408),(134658,3,38330,3,1672319408),(134659,3,38331,3,1672319408),(134660,3,38332,3,1672319408),(134661,3,38333,3,1672319408),(134662,3,38334,3,1672319408),(134663,3,38335,3,1672319408),(134664,3,38336,3,1672319408),(134665,3,38337,3,1672319408),(134666,3,38373,3,1672319408),(134667,3,38374,3,1672319408),(134668,3,38375,3,1672319408),(134669,3,38376,3,1672319408),(134670,3,38377,3,1672319408),(134671,3,38378,3,1672319408),(134672,3,38379,3,1672319408),(134673,3,38380,3,1672319408),(134674,3,38381,3,1672319408),(134675,3,38382,3,1672319408),(134676,3,38383,3,1672319408),(134677,3,38384,3,1672319408),(134678,3,38385,3,1672319408),(134679,3,38386,3,1672319408),(134680,3,38387,3,1672319408),(134681,3,38388,3,1672319408),(134682,3,38389,3,1672319408),(134683,3,38390,3,1672319408),(134684,3,38391,3,1672319408),(134685,3,38427,3,1672319408),(134686,3,38428,3,1672319408),(134687,3,38429,3,1672319408),(134688,3,38430,3,1672319408),(134689,3,38431,3,1672319408),(134690,3,38432,3,1672319408),(134691,3,38433,3,1672319408),(134692,3,38434,3,1672319408),(134693,3,38435,3,1672319408),(134694,3,38436,3,1672319408),(134695,3,38437,3,1672319408),(134696,3,38438,3,1672319408),(134697,3,38439,3,1672319408),(134698,3,38440,3,1672319408),(134699,3,38441,3,1672319408),(134700,3,38442,3,1672319408),(134701,3,38443,3,1672319408),(134702,3,38444,3,1672319408),(134703,3,38445,3,1672319408),(134704,3,38481,3,1672319408),(134705,3,38482,3,1672319408),(134706,3,38483,3,1672319408),(134707,3,38484,3,1672319408),(134708,3,38485,3,1672319408),(134709,3,38486,3,1672319408),(134710,3,38487,3,1672319408),(134711,3,38488,3,1672319408),(134712,3,38489,3,1672319408),(134713,3,38490,3,1672319408),(134714,3,38491,3,1672319408),(134715,3,38492,3,1672319408),(134716,3,38493,3,1672319408),(134717,3,38494,3,1672319408),(134718,3,38495,3,1672319408),(134719,3,38496,3,1672319408),(134720,3,38497,3,1672319408),(134721,3,38498,3,1672319408),(134722,3,38499,3,1672319408),(134723,3,38535,3,1672319408),(134724,3,38536,3,1672319408),(134725,3,38537,3,1672319408),(134726,3,38538,3,1672319408),(134727,3,38539,3,1672319408),(134728,3,38540,3,1672319408),(134729,3,38541,3,1672319408),(134730,3,38542,3,1672319408),(134731,3,38543,3,1672319408),(134732,3,38544,3,1672319408),(134733,3,38545,3,1672319408),(134734,3,38546,3,1672319408),(134735,3,38547,3,1672319408),(134736,3,38548,3,1672319408),(134737,3,38549,3,1672319408),(134738,3,38550,3,1672319408),(134739,3,38551,3,1672319408),(134740,3,38552,3,1672319408),(134741,3,38553,3,1672319408),(134742,3,39345,3,1672319408),(134743,3,39346,3,1672319408),(134744,3,39347,3,1672319408),(134745,3,39348,3,1672319408),(134746,3,39349,3,1672319408),(134747,3,39350,3,1672319408),(134748,3,39351,3,1672319408),(134749,3,39352,3,1672319408),(134750,3,39353,3,1672319408),(134751,3,39354,3,1672319408),(134752,3,39355,3,1672319408),(134753,3,39356,3,1672319408),(134754,3,39357,3,1672319408),(134755,3,39358,3,1672319408),(134756,3,39359,3,1672319408),(134757,3,39360,3,1672319408),(134758,3,39361,3,1672319408),(134759,3,39362,3,1672319408),(134760,3,39363,3,1672319408),(134761,3,39399,3,1672319408),(134762,3,39400,3,1672319408),(134763,3,39401,3,1672319408),(134764,3,39402,3,1672319408),(134765,3,39403,3,1672319408),(134766,3,39404,3,1672319408),(134767,3,39405,3,1672319408),(134768,3,39406,3,1672319408),(134769,3,39407,3,1672319408),(134770,3,39408,3,1672319408),(134771,3,39409,3,1672319408),(134772,3,39410,3,1672319408),(134773,3,39411,3,1672319408),(134774,3,39412,3,1672319408),(134775,3,39413,3,1672319408),(134776,3,39414,3,1672319408),(134777,3,39415,3,1672319408),(134778,3,39416,3,1672319408),(134779,3,39417,3,1672319408),(134780,3,39453,3,1672319408),(134781,3,39454,3,1672319408),(134782,3,39455,3,1672319408),(134783,3,39456,3,1672319408),(134784,3,39457,3,1672319408),(134785,3,39458,3,1672319408),(134786,3,39459,3,1672319408),(134787,3,39460,3,1672319408),(134788,3,39461,3,1672319408),(134789,3,39462,3,1672319408),(134790,3,39463,3,1672319408),(134791,3,39464,3,1672319408),(134792,3,39465,3,1672319408),(134793,3,39466,3,1672319408),(134794,3,39467,3,1672319408),(134795,3,39468,3,1672319408),(134796,3,39469,3,1672319408),(134797,3,39470,3,1672319408),(134798,3,39471,3,1672319408),(134799,3,39507,3,1672319408),(134800,3,39508,3,1672319408),(134801,3,39509,3,1672319408),(134802,3,39510,3,1672319408),(134803,3,39511,3,1672319408),(134804,3,39512,3,1672319408),(134805,3,39513,3,1672319408),(134806,3,39514,3,1672319408),(134807,3,39515,3,1672319408),(134808,3,39516,3,1672319408),(134809,3,39517,3,1672319408),(134810,3,39518,3,1672319408),(134811,3,39519,3,1672319408),(134812,3,39520,3,1672319408),(134813,3,39521,3,1672319408),(134814,3,39522,3,1672319408),(134815,3,39523,3,1672319408),(134816,3,39524,3,1672319408),(134817,3,39525,3,1672319408),(134818,3,39561,3,1672319408),(134819,3,39562,3,1672319408),(134820,3,39563,3,1672319408),(134821,3,39564,3,1672319408),(134822,3,39565,3,1672319408),(134823,3,39566,3,1672319408),(134824,3,39567,3,1672319408),(134825,3,39568,3,1672319408),(134826,3,39569,3,1672319408),(134827,3,39570,3,1672319408),(134828,3,39571,3,1672319408),(134829,3,39572,3,1672319408),(134830,3,39573,3,1672319408),(134831,3,39574,3,1672319408),(134832,3,39575,3,1672319408),(134833,3,39576,3,1672319408),(134834,3,39577,3,1672319408),(134835,3,39578,3,1672319408),(134836,3,39579,3,1672319408),(134837,3,40946,3,1672319408),(134838,3,40947,3,1672319408),(134839,3,40948,3,1672319408),(134840,3,40949,3,1672319408),(134841,3,40950,3,1672319408),(134842,3,40951,3,1672319408),(134843,3,40952,3,1672319408),(134844,3,40953,3,1672319408),(134845,3,40954,3,1672319408),(134846,3,40967,3,1672319408),(134847,3,40968,3,1672319408),(134848,3,40969,3,1672319408),(134849,3,40970,3,1672319408),(134850,3,40971,3,1672319408),(134851,3,40972,3,1672319408),(134852,3,40973,3,1672319408),(134853,3,40974,3,1672319408),(134854,3,40975,3,1672319408),(134855,3,40988,3,1672319408),(134856,3,40989,3,1672319408),(134857,3,40990,3,1672319408),(134858,3,40991,3,1672319408),(134859,3,40992,3,1672319408),(134860,3,40993,3,1672319408),(134861,3,40994,3,1672319408),(134862,3,40995,3,1672319408),(134863,3,40996,3,1672319408),(134864,3,41009,3,1672319408),(134865,3,41010,3,1672319408),(134866,3,41011,3,1672319408),(134867,3,41012,3,1672319408),(134868,3,41013,3,1672319408),(134869,3,41014,3,1672319408),(134870,3,41015,3,1672319408),(134871,3,41016,3,1672319408),(134872,3,41017,3,1672319408),(134873,3,41030,3,1672319408),(134874,3,41031,3,1672319408),(134875,3,41032,3,1672319408),(134876,3,41033,3,1672319408),(134877,3,41034,3,1672319408),(134878,3,41035,3,1672319408),(134879,3,41036,3,1672319408),(134880,3,41037,3,1672319408),(134881,3,41038,3,1672319408),(134882,3,41051,3,1672319408),(134883,3,41052,3,1672319408),(134884,3,41053,3,1672319408),(134885,3,41054,3,1672319408),(134886,3,41055,3,1672319408),(134887,3,41056,3,1672319408),(134888,3,41057,3,1672319408),(134889,3,41058,3,1672319408),(134890,3,41059,3,1672319408),(134891,3,41072,3,1672319408),(134892,3,41073,3,1672319408),(134893,3,41074,3,1672319408),(134894,3,41075,3,1672319408),(134895,3,41076,3,1672319408),(134896,3,41077,3,1672319408),(134897,3,41078,3,1672319408),(134898,3,41079,3,1672319408),(134899,3,41080,3,1672319408),(134900,3,41093,3,1672319408),(134901,3,41094,3,1672319408),(134902,3,41095,3,1672319408),(134903,3,41096,3,1672319408),(134904,3,41097,3,1672319408),(134905,3,41098,3,1672319408),(134906,3,41099,3,1672319408),(134907,3,41100,3,1672319408),(134908,3,41101,3,1672319408),(134909,3,41114,3,1672319408),(134910,3,41115,3,1672319408),(134911,3,41116,3,1672319408),(134912,3,41117,3,1672319408),(134913,3,41118,3,1672319408),(134914,3,41119,3,1672319408),(134915,3,41120,3,1672319408),(134916,3,41121,3,1672319408),(134917,3,41122,3,1672319408),(134918,3,41135,3,1672319408),(134919,3,41136,3,1672319408),(134920,3,41137,3,1672319408),(134921,3,41138,3,1672319408),(134922,3,41139,3,1672319408),(134923,3,41140,3,1672319408),(134924,3,41141,3,1672319408),(134925,3,41142,3,1672319408),(134926,3,41143,3,1672319408),(134927,3,41156,3,1672319408),(134928,3,41157,3,1672319408),(134929,3,41158,3,1672319408),(134930,3,41159,3,1672319408),(134931,3,41160,3,1672319408),(134932,3,41161,3,1672319408),(134933,3,41162,3,1672319408),(134934,3,41163,3,1672319408),(134935,3,41164,3,1672319408),(134936,3,41177,3,1672319408),(134937,3,41178,3,1672319408),(134938,3,41179,3,1672319408),(134939,3,41180,3,1672319408),(134940,3,41181,3,1672319408),(134941,3,41182,3,1672319408),(134942,3,41183,3,1672319408),(134943,3,41184,3,1672319408),(134944,3,41185,3,1672319408),(134945,3,41198,3,1672319408),(134946,3,41199,3,1672319408),(134947,3,41200,3,1672319408),(134948,3,41201,3,1672319408),(134949,3,41202,3,1672319408),(134950,3,41203,3,1672319408),(134951,3,41204,3,1672319408),(134952,3,41205,3,1672319408),(134953,3,41206,3,1672319408),(134954,3,41219,3,1672319408),(134955,3,41220,3,1672319408),(134956,3,41221,3,1672319408),(134957,3,41222,3,1672319408),(134958,3,41223,3,1672319408),(134959,3,41224,3,1672319408),(134960,3,41225,3,1672319408),(134961,3,41226,3,1672319408),(134962,3,41227,3,1672319408),(134963,3,41240,3,1672319408),(134964,3,41241,3,1672319408),(134965,3,41242,3,1672319408),(134966,3,41243,3,1672319408),(134967,3,41244,3,1672319408),(134968,3,41245,3,1672319408),(134969,3,41246,3,1672319408),(134970,3,41247,3,1672319408),(134971,3,41248,3,1672319408),(134972,3,41261,3,1672319408),(134973,3,41262,3,1672319408),(134974,3,41263,3,1672319408),(134975,3,41264,3,1672319408),(134976,3,41265,3,1672319408),(134977,3,41266,3,1672319408),(134978,3,41267,3,1672319408),(134979,3,41268,3,1672319408),(134980,3,41269,3,1672319408),(134981,3,41282,3,1672319408),(134982,3,41283,3,1672319408),(134983,3,41284,3,1672319408),(134984,3,41285,3,1672319408),(134985,3,41286,3,1672319408),(134986,3,41287,3,1672319408),(134987,3,41288,3,1672319408),(134988,3,41289,3,1672319408),(134989,3,41290,3,1672319408),(134990,3,41303,3,1672319408),(134991,3,41304,3,1672319408),(134992,3,41305,3,1672319408),(134993,3,41306,3,1672319408),(134994,3,41307,3,1672319408),(134995,3,41308,3,1672319408),(134996,3,41309,3,1672319408),(134997,3,41310,3,1672319408),(134998,3,41311,3,1672319408),(134999,3,41324,3,1672319408),(135000,3,41325,3,1672319408),(135001,3,41326,3,1672319408),(135002,3,41327,3,1672319408),(135003,3,41328,3,1672319408),(135004,3,41329,3,1672319408),(135005,3,41330,3,1672319408),(135006,3,41331,3,1672319408),(135007,3,41332,3,1672319408),(135008,3,41345,3,1672319408),(135009,3,41346,3,1672319408),(135010,3,41347,3,1672319408),(135011,3,41348,3,1672319408),(135012,3,41349,3,1672319408),(135013,3,41350,3,1672319408),(135014,3,41351,3,1672319408),(135015,3,41352,3,1672319408),(135016,3,41353,3,1672319408),(135017,3,41366,3,1672319408),(135018,3,41367,3,1672319408),(135019,3,41368,3,1672319408),(135020,3,41369,3,1672319408),(135021,3,41370,3,1672319408),(135022,3,41371,3,1672319408),(135023,3,41372,3,1672319408),(135024,3,41373,3,1672319408),(135025,3,41374,3,1672319408),(135026,3,41387,3,1672319408),(135027,3,41388,3,1672319408),(135028,3,41389,3,1672319408),(135029,3,41390,3,1672319408),(135030,3,41391,3,1672319408),(135031,3,41392,3,1672319408),(135032,3,41393,3,1672319408),(135033,3,41394,3,1672319408),(135034,3,41395,3,1672319408),(135035,3,41408,3,1672319408),(135036,3,41409,3,1672319408),(135037,3,41410,3,1672319408),(135038,3,41411,3,1672319408),(135039,3,41412,3,1672319408),(135040,3,41413,3,1672319408),(135041,3,41414,3,1672319408),(135042,3,41415,3,1672319408),(135043,3,41416,3,1672319408),(135044,3,41429,3,1672319408),(135045,3,41430,3,1672319408),(135046,3,41431,3,1672319408),(135047,3,41432,3,1672319408),(135048,3,41433,3,1672319408),(135049,3,41434,3,1672319408),(135050,3,41435,3,1672319408),(135051,3,41436,3,1672319408),(135052,3,41437,3,1672319408),(135053,3,41450,3,1672319408),(135054,3,41451,3,1672319408),(135055,3,41452,3,1672319408),(135056,3,41453,3,1672319408),(135057,3,41454,3,1672319408),(135058,3,41455,3,1672319408),(135059,3,41456,3,1672319408),(135060,3,41457,3,1672319408),(135061,3,41458,3,1672319408),(135062,3,41471,3,1672319408),(135063,3,41472,3,1672319408),(135064,3,41473,3,1672319408),(135065,3,41474,3,1672319408),(135066,3,41475,3,1672319408),(135067,3,41476,3,1672319408),(135068,3,41477,3,1672319408),(135069,3,41478,3,1672319408),(135070,3,41479,3,1672319408),(135071,3,41492,3,1672319408),(135072,3,41493,3,1672319408),(135073,3,41494,3,1672319408),(135074,3,41495,3,1672319408),(135075,3,41496,3,1672319408),(135076,3,41497,3,1672319408),(135077,3,41498,3,1672319408),(135078,3,41499,3,1672319408),(135079,3,41500,3,1672319408),(135080,3,41513,3,1672319408),(135081,3,41514,3,1672319408),(135082,3,41515,3,1672319408),(135083,3,41516,3,1672319408),(135084,3,41517,3,1672319408),(135085,3,41518,3,1672319408),(135086,3,41519,3,1672319408),(135087,3,41520,3,1672319408),(135088,3,41521,3,1672319408),(135089,3,41534,3,1672319408),(135090,3,41535,3,1672319408),(135091,3,41536,3,1672319408),(135092,3,41537,3,1672319408),(135093,3,41538,3,1672319408),(135094,3,41539,3,1672319408),(135095,3,41540,3,1672319408),(135096,3,41541,3,1672319408),(135097,3,41542,3,1672319408),(135098,3,41555,3,1672319408),(135099,3,41556,3,1672319408),(135100,3,41557,3,1672319408),(135101,3,41558,3,1672319408),(135102,3,41559,3,1672319408),(135103,3,41560,3,1672319408),(135104,3,41561,3,1672319408),(135105,3,41562,3,1672319408),(135106,3,41563,3,1672319408),(135107,3,41576,3,1672319408),(135108,3,41577,3,1672319408),(135109,3,41578,3,1672319408),(135110,3,41579,3,1672319408),(135111,3,41580,3,1672319408),(135112,3,41581,3,1672319408),(135113,3,41582,3,1672319408),(135114,3,41583,3,1672319408),(135115,3,41584,3,1672319408),(135116,3,41597,3,1672319408),(135117,3,41598,3,1672319408),(135118,3,41599,3,1672319408),(135119,3,41600,3,1672319408),(135120,3,41601,3,1672319408),(135121,3,41602,3,1672319408),(135122,3,41603,3,1672319408),(135123,3,41604,3,1672319408),(135124,3,41605,3,1672319408),(135125,3,41912,3,1672319408),(135126,3,41913,3,1672319408),(135127,3,41914,3,1672319408),(135128,3,41915,3,1672319408),(135129,3,41916,3,1672319408),(135130,3,41917,3,1672319408),(135131,3,41918,3,1672319408),(135132,3,41919,3,1672319408),(135133,3,41920,3,1672319408),(135134,3,41933,3,1672319408),(135135,3,41934,3,1672319408),(135136,3,41935,3,1672319408),(135137,3,41936,3,1672319408),(135138,3,41937,3,1672319408),(135139,3,41938,3,1672319408),(135140,3,41939,3,1672319408),(135141,3,41940,3,1672319408),(135142,3,41941,3,1672319408),(135143,3,41954,3,1672319408),(135144,3,41955,3,1672319408),(135145,3,41956,3,1672319408),(135146,3,41957,3,1672319408),(135147,3,41958,3,1672319408),(135148,3,41959,3,1672319408),(135149,3,41960,3,1672319408),(135150,3,41961,3,1672319408),(135151,3,41962,3,1672319408),(135152,3,41975,3,1672319408),(135153,3,41976,3,1672319408),(135154,3,41977,3,1672319408),(135155,3,41978,3,1672319408),(135156,3,41979,3,1672319408),(135157,3,41980,3,1672319408),(135158,3,41981,3,1672319408),(135159,3,41982,3,1672319408),(135160,3,41983,3,1672319408),(135161,3,41996,3,1672319408),(135162,3,41997,3,1672319408),(135163,3,41998,3,1672319408),(135164,3,41999,3,1672319408),(135165,3,42000,3,1672319408),(135166,3,42001,3,1672319408),(135167,3,42002,3,1672319408),(135168,3,42003,3,1672319408),(135169,3,42004,3,1672319408),(135170,3,42080,3,1672319408),(135171,3,42081,3,1672319408),(135172,3,42082,3,1672319408),(135173,3,42083,3,1672319408),(135174,3,42084,3,1672319408),(135175,3,42085,3,1672319408),(135176,3,42086,3,1672319408),(135177,3,42087,3,1672319408),(135178,3,42088,3,1672319408),(135179,3,42680,3,1672319408),(135180,3,42683,3,1672319408),(135181,3,44446,3,1672319408),(135182,3,23067,2,1672319409),(135183,3,27901,2,1672319409),(135184,3,27902,2,1672319409),(135185,3,27903,2,1672319409),(135186,3,28196,2,1672319409),(135187,3,28197,2,1672319409),(135188,3,28198,2,1672319409),(135189,3,28199,2,1672319409),(135190,3,29203,2,1672319409),(135191,3,31557,2,1672319409),(135192,3,31558,2,1672319409),(135193,3,31559,2,1672319409),(135194,3,31898,2,1672319409),(135195,3,32435,2,1672319409),(135196,3,32525,2,1672319409),(135197,3,32526,2,1672319409),(135198,3,32527,2,1672319409),(135199,3,32555,2,1672319409),(135200,3,32556,2,1672319409),(135201,3,32557,2,1672319409),(135202,3,33634,2,1672319409),(135203,3,34161,2,1672319409),(135204,3,34162,2,1672319409),(135205,3,34163,2,1672319409),(135206,3,36854,2,1672319409),(135207,3,36855,2,1672319409),(135208,3,36856,2,1672319409),(135209,3,36857,2,1672319409),(135210,3,36858,2,1672319409),(135211,3,36859,2,1672319409),(135212,3,36860,2,1672319409),(135213,3,36908,2,1672319409),(135214,3,36909,2,1672319409),(135215,3,36910,2,1672319409),(135216,3,36911,2,1672319409),(135217,3,36912,2,1672319409),(135218,3,36913,2,1672319409),(135219,3,36914,2,1672319409),(135220,3,36962,2,1672319409),(135221,3,36963,2,1672319409),(135222,3,36964,2,1672319409),(135223,3,36965,2,1672319409),(135224,3,36966,2,1672319409),(135225,3,36967,2,1672319409),(135226,3,36968,2,1672319409),(135227,3,37016,2,1672319409),(135228,3,37017,2,1672319409),(135229,3,37018,2,1672319409),(135230,3,37019,2,1672319409),(135231,3,37020,2,1672319409),(135232,3,37021,2,1672319409),(135233,3,37022,2,1672319409),(135234,3,37070,2,1672319409),(135235,3,37071,2,1672319409),(135236,3,37072,2,1672319409),(135237,3,37073,2,1672319409),(135238,3,37074,2,1672319409),(135239,3,37075,2,1672319409),(135240,3,37076,2,1672319409),(135241,3,37124,2,1672319409),(135242,3,37125,2,1672319409),(135243,3,37126,2,1672319409),(135244,3,37127,2,1672319409),(135245,3,37128,2,1672319409),(135246,3,37129,2,1672319409),(135247,3,37130,2,1672319409),(135248,3,37178,2,1672319409),(135249,3,37179,2,1672319409),(135250,3,37180,2,1672319409),(135251,3,37181,2,1672319409),(135252,3,37182,2,1672319409),(135253,3,37183,2,1672319409),(135254,3,37184,2,1672319409),(135255,3,37232,2,1672319409),(135256,3,37233,2,1672319409),(135257,3,37234,2,1672319409),(135258,3,37235,2,1672319409),(135259,3,37236,2,1672319409),(135260,3,37237,2,1672319409),(135261,3,37238,2,1672319409),(135262,3,37286,2,1672319409),(135263,3,37287,2,1672319409),(135264,3,37288,2,1672319409),(135265,3,37289,2,1672319409),(135266,3,37290,2,1672319409),(135267,3,37291,2,1672319409),(135268,3,37292,2,1672319409),(135269,3,37340,2,1672319409),(135270,3,37341,2,1672319409),(135271,3,37342,2,1672319409),(135272,3,37343,2,1672319409),(135273,3,37344,2,1672319409),(135274,3,37345,2,1672319409),(135275,3,37346,2,1672319409),(135276,3,37394,2,1672319409),(135277,3,37395,2,1672319409),(135278,3,37396,2,1672319409),(135279,3,37397,2,1672319409),(135280,3,37398,2,1672319409),(135281,3,37399,2,1672319409),(135282,3,37400,2,1672319409),(135283,3,37448,2,1672319409),(135284,3,37449,2,1672319409),(135285,3,37450,2,1672319409),(135286,3,37451,2,1672319409),(135287,3,37452,2,1672319409),(135288,3,37453,2,1672319409),(135289,3,37454,2,1672319409),(135290,3,37502,2,1672319409),(135291,3,37503,2,1672319409),(135292,3,37504,2,1672319409),(135293,3,37505,2,1672319409),(135294,3,37506,2,1672319409),(135295,3,37507,2,1672319409),(135296,3,37508,2,1672319409),(135297,3,37556,2,1672319409),(135298,3,37557,2,1672319409),(135299,3,37558,2,1672319409),(135300,3,37559,2,1672319409),(135301,3,37560,2,1672319409),(135302,3,37561,2,1672319409),(135303,3,37562,2,1672319409),(135304,3,37610,2,1672319409),(135305,3,37611,2,1672319409),(135306,3,37612,2,1672319409),(135307,3,37613,2,1672319409),(135308,3,37614,2,1672319409),(135309,3,37615,2,1672319409),(135310,3,37616,2,1672319409),(135311,3,37664,2,1672319409),(135312,3,37665,2,1672319409),(135313,3,37666,2,1672319409),(135314,3,37667,2,1672319409),(135315,3,37668,2,1672319409),(135316,3,37669,2,1672319409),(135317,3,37670,2,1672319409),(135318,3,37718,2,1672319409),(135319,3,37719,2,1672319409),(135320,3,37720,2,1672319409),(135321,3,37721,2,1672319409),(135322,3,37722,2,1672319409),(135323,3,37723,2,1672319409),(135324,3,37724,2,1672319409),(135325,3,37772,2,1672319409),(135326,3,37773,2,1672319409),(135327,3,37774,2,1672319409),(135328,3,37775,2,1672319409),(135329,3,37776,2,1672319409),(135330,3,37777,2,1672319409),(135331,3,37778,2,1672319409),(135332,3,37826,2,1672319409),(135333,3,37827,2,1672319409),(135334,3,37828,2,1672319409),(135335,3,37829,2,1672319409),(135336,3,37830,2,1672319409),(135337,3,37831,2,1672319409),(135338,3,37832,2,1672319409),(135339,3,37880,2,1672319409),(135340,3,37881,2,1672319409),(135341,3,37882,2,1672319409),(135342,3,37883,2,1672319409),(135343,3,37884,2,1672319409),(135344,3,37885,2,1672319409),(135345,3,37886,2,1672319409),(135346,3,37934,2,1672319409),(135347,3,37935,2,1672319409),(135348,3,37936,2,1672319409),(135349,3,37937,2,1672319409),(135350,3,37938,2,1672319409),(135351,3,37939,2,1672319409),(135352,3,37940,2,1672319409),(135353,3,37988,2,1672319409),(135354,3,37989,2,1672319409),(135355,3,37990,2,1672319409),(135356,3,37991,2,1672319409),(135357,3,37992,2,1672319409),(135358,3,37993,2,1672319409),(135359,3,37994,2,1672319409),(135360,3,38042,2,1672319409),(135361,3,38043,2,1672319409),(135362,3,38044,2,1672319409),(135363,3,38045,2,1672319409),(135364,3,38046,2,1672319409),(135365,3,38047,2,1672319409),(135366,3,38048,2,1672319409),(135367,3,38096,2,1672319409),(135368,3,38097,2,1672319409),(135369,3,38098,2,1672319409),(135370,3,38099,2,1672319409),(135371,3,38100,2,1672319409),(135372,3,38101,2,1672319409),(135373,3,38102,2,1672319409),(135374,3,38150,2,1672319409),(135375,3,38151,2,1672319409),(135376,3,38152,2,1672319409),(135377,3,38153,2,1672319409),(135378,3,38154,2,1672319409),(135379,3,38155,2,1672319409),(135380,3,38156,2,1672319409),(135381,3,38204,2,1672319409),(135382,3,38205,2,1672319409),(135383,3,38206,2,1672319409),(135384,3,38207,2,1672319409),(135385,3,38208,2,1672319409),(135386,3,38209,2,1672319409),(135387,3,38210,2,1672319409),(135388,3,38258,2,1672319409),(135389,3,38259,2,1672319409),(135390,3,38260,2,1672319409),(135391,3,38261,2,1672319409),(135392,3,38262,2,1672319409),(135393,3,38263,2,1672319409),(135394,3,38264,2,1672319409),(135395,3,38312,2,1672319409),(135396,3,38313,2,1672319409),(135397,3,38314,2,1672319409),(135398,3,38315,2,1672319409),(135399,3,38316,2,1672319409),(135400,3,38317,2,1672319409),(135401,3,38318,2,1672319409),(135402,3,38366,2,1672319409),(135403,3,38367,2,1672319409),(135404,3,38368,2,1672319409),(135405,3,38369,2,1672319409),(135406,3,38370,2,1672319409),(135407,3,38371,2,1672319409),(135408,3,38372,2,1672319409),(135409,3,38420,2,1672319409),(135410,3,38421,2,1672319409),(135411,3,38422,2,1672319409),(135412,3,38423,2,1672319409),(135413,3,38424,2,1672319409),(135414,3,38425,2,1672319409),(135415,3,38426,2,1672319409),(135416,3,38474,2,1672319409),(135417,3,38475,2,1672319409),(135418,3,38476,2,1672319409),(135419,3,38477,2,1672319409),(135420,3,38478,2,1672319409),(135421,3,38479,2,1672319409),(135422,3,38480,2,1672319409),(135423,3,38528,2,1672319409),(135424,3,38529,2,1672319409),(135425,3,38530,2,1672319409),(135426,3,38531,2,1672319409),(135427,3,38532,2,1672319409),(135428,3,38533,2,1672319409),(135429,3,38534,2,1672319409),(135430,3,39338,2,1672319409),(135431,3,39339,2,1672319409),(135432,3,39340,2,1672319409),(135433,3,39341,2,1672319409),(135434,3,39342,2,1672319409),(135435,3,39343,2,1672319409),(135436,3,39344,2,1672319409),(135437,3,39392,2,1672319409),(135438,3,39393,2,1672319409),(135439,3,39394,2,1672319409),(135440,3,39395,2,1672319409),(135441,3,39396,2,1672319409),(135442,3,39397,2,1672319409),(135443,3,39398,2,1672319409),(135444,3,39446,2,1672319409),(135445,3,39447,2,1672319409),(135446,3,39448,2,1672319409),(135447,3,39449,2,1672319409),(135448,3,39450,2,1672319409),(135449,3,39451,2,1672319409),(135450,3,39452,2,1672319409),(135451,3,39500,2,1672319409),(135452,3,39501,2,1672319409),(135453,3,39502,2,1672319409),(135454,3,39503,2,1672319409),(135455,3,39504,2,1672319409),(135456,3,39505,2,1672319409),(135457,3,39506,2,1672319409),(135458,3,39554,2,1672319409),(135459,3,39555,2,1672319409),(135460,3,39556,2,1672319409),(135461,3,39557,2,1672319409),(135462,3,39558,2,1672319409),(135463,3,39559,2,1672319409),(135464,3,39560,2,1672319409),(135465,3,40945,2,1672319409),(135466,3,40966,2,1672319409),(135467,3,40987,2,1672319409),(135468,3,41008,2,1672319409),(135469,3,41029,2,1672319409),(135470,3,41050,2,1672319409),(135471,3,41071,2,1672319409),(135472,3,41092,2,1672319409),(135473,3,41113,2,1672319409),(135474,3,41134,2,1672319409),(135475,3,41155,2,1672319409),(135476,3,41176,2,1672319409),(135477,3,41197,2,1672319409),(135478,3,41218,2,1672319409),(135479,3,41239,2,1672319409),(135480,3,41260,2,1672319409),(135481,3,41281,2,1672319409),(135482,3,41302,2,1672319409),(135483,3,41323,2,1672319409),(135484,3,41344,2,1672319409),(135485,3,41365,2,1672319409),(135486,3,41386,2,1672319409),(135487,3,41407,2,1672319409),(135488,3,41428,2,1672319409),(135489,3,41449,2,1672319409),(135490,3,41470,2,1672319409),(135491,3,41491,2,1672319409),(135492,3,41512,2,1672319409),(135493,3,41533,2,1672319409),(135494,3,41554,2,1672319409),(135495,3,41575,2,1672319409),(135496,3,41596,2,1672319409),(135497,3,41911,2,1672319409),(135498,3,41932,2,1672319409),(135499,3,41953,2,1672319409),(135500,3,41974,2,1672319409),(135501,3,41995,2,1672319409),(135502,3,42079,2,1672319409),(135503,3,23067,3,1672319409),(135504,3,27901,3,1672319409),(135505,3,27902,3,1672319409),(135506,3,27903,3,1672319409),(135507,3,28196,3,1672319409),(135508,3,28197,3,1672319409),(135509,3,28198,3,1672319409),(135510,3,28199,3,1672319409),(135511,3,29203,3,1672319409),(135512,3,31557,3,1672319409),(135513,3,31558,3,1672319409),(135514,3,31559,3,1672319409),(135515,3,31898,3,1672319409),(135516,3,32435,3,1672319409),(135517,3,32525,3,1672319409),(135518,3,32526,3,1672319409),(135519,3,32527,3,1672319409),(135520,3,32555,3,1672319409),(135521,3,32556,3,1672319409),(135522,3,32557,3,1672319409),(135523,3,33634,3,1672319409),(135524,3,34161,3,1672319409),(135525,3,34162,3,1672319409),(135526,3,34163,3,1672319409),(135527,3,36854,3,1672319409),(135528,3,36855,3,1672319409),(135529,3,36856,3,1672319409),(135530,3,36857,3,1672319409),(135531,3,36858,3,1672319409),(135532,3,36859,3,1672319409),(135533,3,36860,3,1672319409),(135534,3,36908,3,1672319409),(135535,3,36909,3,1672319409),(135536,3,36910,3,1672319409),(135537,3,36911,3,1672319409),(135538,3,36912,3,1672319409),(135539,3,36913,3,1672319409),(135540,3,36914,3,1672319409),(135541,3,36962,3,1672319409),(135542,3,36963,3,1672319409),(135543,3,36964,3,1672319409),(135544,3,36965,3,1672319409),(135545,3,36966,3,1672319409),(135546,3,36967,3,1672319409),(135547,3,36968,3,1672319409),(135548,3,37016,3,1672319409),(135549,3,37017,3,1672319409),(135550,3,37018,3,1672319409),(135551,3,37019,3,1672319409),(135552,3,37020,3,1672319409),(135553,3,37021,3,1672319409),(135554,3,37022,3,1672319409),(135555,3,37070,3,1672319409),(135556,3,37071,3,1672319409),(135557,3,37072,3,1672319409),(135558,3,37073,3,1672319409),(135559,3,37074,3,1672319409),(135560,3,37075,3,1672319409),(135561,3,37076,3,1672319409),(135562,3,37124,3,1672319409),(135563,3,37125,3,1672319409),(135564,3,37126,3,1672319409),(135565,3,37127,3,1672319409),(135566,3,37128,3,1672319409),(135567,3,37129,3,1672319409),(135568,3,37130,3,1672319409),(135569,3,37178,3,1672319409),(135570,3,37179,3,1672319409),(135571,3,37180,3,1672319409),(135572,3,37181,3,1672319409),(135573,3,37182,3,1672319409),(135574,3,37183,3,1672319409),(135575,3,37184,3,1672319409),(135576,3,37232,3,1672319409),(135577,3,37233,3,1672319409),(135578,3,37234,3,1672319409),(135579,3,37235,3,1672319409),(135580,3,37236,3,1672319409),(135581,3,37237,3,1672319409),(135582,3,37238,3,1672319409),(135583,3,37286,3,1672319409),(135584,3,37287,3,1672319409),(135585,3,37288,3,1672319409),(135586,3,37289,3,1672319409),(135587,3,37290,3,1672319409),(135588,3,37291,3,1672319409),(135589,3,37292,3,1672319409),(135590,3,37340,3,1672319409),(135591,3,37341,3,1672319409),(135592,3,37342,3,1672319409),(135593,3,37343,3,1672319409),(135594,3,37344,3,1672319409),(135595,3,37345,3,1672319409),(135596,3,37346,3,1672319409),(135597,3,37394,3,1672319409),(135598,3,37395,3,1672319409),(135599,3,37396,3,1672319409),(135600,3,37397,3,1672319409),(135601,3,37398,3,1672319409),(135602,3,37399,3,1672319409),(135603,3,37400,3,1672319409),(135604,3,37448,3,1672319409),(135605,3,37449,3,1672319409),(135606,3,37450,3,1672319409),(135607,3,37451,3,1672319409),(135608,3,37452,3,1672319409),(135609,3,37453,3,1672319409),(135610,3,37454,3,1672319409),(135611,3,37502,3,1672319409),(135612,3,37503,3,1672319409),(135613,3,37504,3,1672319409),(135614,3,37505,3,1672319409),(135615,3,37506,3,1672319409),(135616,3,37507,3,1672319409),(135617,3,37508,3,1672319409),(135618,3,37556,3,1672319409),(135619,3,37557,3,1672319409),(135620,3,37558,3,1672319409),(135621,3,37559,3,1672319409),(135622,3,37560,3,1672319409),(135623,3,37561,3,1672319409),(135624,3,37562,3,1672319409),(135625,3,37610,3,1672319409),(135626,3,37611,3,1672319409),(135627,3,37612,3,1672319409),(135628,3,37613,3,1672319409),(135629,3,37614,3,1672319409),(135630,3,37615,3,1672319409),(135631,3,37616,3,1672319409),(135632,3,37664,3,1672319409),(135633,3,37665,3,1672319409),(135634,3,37666,3,1672319409),(135635,3,37667,3,1672319409),(135636,3,37668,3,1672319409),(135637,3,37669,3,1672319409),(135638,3,37670,3,1672319409),(135639,3,37718,3,1672319409),(135640,3,37719,3,1672319409),(135641,3,37720,3,1672319409),(135642,3,37721,3,1672319409),(135643,3,37722,3,1672319409),(135644,3,37723,3,1672319409),(135645,3,37724,3,1672319409),(135646,3,37772,3,1672319409),(135647,3,37773,3,1672319409),(135648,3,37774,3,1672319409),(135649,3,37775,3,1672319409),(135650,3,37776,3,1672319409),(135651,3,37777,3,1672319409),(135652,3,37778,3,1672319409),(135653,3,37826,3,1672319409),(135654,3,37827,3,1672319409),(135655,3,37828,3,1672319409),(135656,3,37829,3,1672319409),(135657,3,37830,3,1672319409),(135658,3,37831,3,1672319409),(135659,3,37832,3,1672319409),(135660,3,37880,3,1672319409),(135661,3,37881,3,1672319409),(135662,3,37882,3,1672319409),(135663,3,37883,3,1672319409),(135664,3,37884,3,1672319409),(135665,3,37885,3,1672319409),(135666,3,37886,3,1672319409),(135667,3,37934,3,1672319409),(135668,3,37935,3,1672319409),(135669,3,37936,3,1672319409),(135670,3,37937,3,1672319409),(135671,3,37938,3,1672319409),(135672,3,37939,3,1672319409),(135673,3,37940,3,1672319409),(135674,3,37988,3,1672319409),(135675,3,37989,3,1672319409),(135676,3,37990,3,1672319409),(135677,3,37991,3,1672319409),(135678,3,37992,3,1672319409),(135679,3,37993,3,1672319409),(135680,3,37994,3,1672319409),(135681,3,38042,3,1672319409),(135682,3,38043,3,1672319409),(135683,3,38044,3,1672319409),(135684,3,38045,3,1672319409),(135685,3,38046,3,1672319409),(135686,3,38047,3,1672319409),(135687,3,38048,3,1672319409),(135688,3,38096,3,1672319409),(135689,3,38097,3,1672319409),(135690,3,38098,3,1672319409),(135691,3,38099,3,1672319409),(135692,3,38100,3,1672319409),(135693,3,38101,3,1672319409),(135694,3,38102,3,1672319409),(135695,3,38150,3,1672319409),(135696,3,38151,3,1672319409),(135697,3,38152,3,1672319409),(135698,3,38153,3,1672319409),(135699,3,38154,3,1672319409),(135700,3,38155,3,1672319409),(135701,3,38156,3,1672319409),(135702,3,38204,3,1672319409),(135703,3,38205,3,1672319409),(135704,3,38206,3,1672319409),(135705,3,38207,3,1672319409),(135706,3,38208,3,1672319409),(135707,3,38209,3,1672319409),(135708,3,38210,3,1672319409),(135709,3,38258,3,1672319409),(135710,3,38259,3,1672319409),(135711,3,38260,3,1672319409),(135712,3,38261,3,1672319409),(135713,3,38262,3,1672319409),(135714,3,38263,3,1672319409),(135715,3,38264,3,1672319409),(135716,3,38312,3,1672319409),(135717,3,38313,3,1672319409),(135718,3,38314,3,1672319409),(135719,3,38315,3,1672319409),(135720,3,38316,3,1672319409),(135721,3,38317,3,1672319409),(135722,3,38318,3,1672319409),(135723,3,38366,3,1672319409),(135724,3,38367,3,1672319409),(135725,3,38368,3,1672319409),(135726,3,38369,3,1672319409),(135727,3,38370,3,1672319409),(135728,3,38371,3,1672319409),(135729,3,38372,3,1672319409),(135730,3,38420,3,1672319409),(135731,3,38421,3,1672319409),(135732,3,38422,3,1672319409),(135733,3,38423,3,1672319409),(135734,3,38424,3,1672319409),(135735,3,38425,3,1672319409),(135736,3,38426,3,1672319409),(135737,3,38474,3,1672319409),(135738,3,38475,3,1672319409),(135739,3,38476,3,1672319409),(135740,3,38477,3,1672319409),(135741,3,38478,3,1672319409),(135742,3,38479,3,1672319409),(135743,3,38480,3,1672319409),(135744,3,38528,3,1672319409),(135745,3,38529,3,1672319409),(135746,3,38530,3,1672319409),(135747,3,38531,3,1672319409),(135748,3,38532,3,1672319409),(135749,3,38533,3,1672319409),(135750,3,38534,3,1672319409),(135751,3,39338,3,1672319409),(135752,3,39339,3,1672319409),(135753,3,39340,3,1672319409),(135754,3,39341,3,1672319409),(135755,3,39342,3,1672319409),(135756,3,39343,3,1672319409),(135757,3,39344,3,1672319409),(135758,3,39392,3,1672319409),(135759,3,39393,3,1672319409),(135760,3,39394,3,1672319409),(135761,3,39395,3,1672319409),(135762,3,39396,3,1672319409),(135763,3,39397,3,1672319409),(135764,3,39398,3,1672319409),(135765,3,39446,3,1672319409),(135766,3,39447,3,1672319409),(135767,3,39448,3,1672319409),(135768,3,39449,3,1672319409),(135769,3,39450,3,1672319409),(135770,3,39451,3,1672319409),(135771,3,39452,3,1672319409),(135772,3,39500,3,1672319409),(135773,3,39501,3,1672319409),(135774,3,39502,3,1672319409),(135775,3,39503,3,1672319409),(135776,3,39504,3,1672319409),(135777,3,39505,3,1672319409),(135778,3,39506,3,1672319409),(135779,3,39554,3,1672319409),(135780,3,39555,3,1672319409),(135781,3,39556,3,1672319409),(135782,3,39557,3,1672319409),(135783,3,39558,3,1672319409),(135784,3,39559,3,1672319409),(135785,3,39560,3,1672319409),(135786,3,40945,3,1672319409),(135787,3,40966,3,1672319409),(135788,3,40987,3,1672319409),(135789,3,41008,3,1672319409),(135790,3,41029,3,1672319409),(135791,3,41050,3,1672319409),(135792,3,41071,3,1672319409),(135793,3,41092,3,1672319409),(135794,3,41113,3,1672319409),(135795,3,41134,3,1672319409),(135796,3,41155,3,1672319409),(135797,3,41176,3,1672319409),(135798,3,41197,3,1672319409),(135799,3,41218,3,1672319409),(135800,3,41239,3,1672319409),(135801,3,41260,3,1672319409),(135802,3,41281,3,1672319409),(135803,3,41302,3,1672319409),(135804,3,41323,3,1672319409),(135805,3,41344,3,1672319409),(135806,3,41365,3,1672319409),(135807,3,41386,3,1672319409),(135808,3,41407,3,1672319409),(135809,3,41428,3,1672319409),(135810,3,41449,3,1672319409),(135811,3,41470,3,1672319409),(135812,3,41491,3,1672319409),(135813,3,41512,3,1672319409),(135814,3,41533,3,1672319409),(135815,3,41554,3,1672319409),(135816,3,41575,3,1672319409),(135817,3,41596,3,1672319409),(135818,3,41911,3,1672319409),(135819,3,41932,3,1672319409),(135820,3,41953,3,1672319409),(135821,3,41974,3,1672319409),(135822,3,41995,3,1672319409),(135823,3,42079,3,1672319409),(135824,3,23035,2,1672319409),(135825,3,23036,2,1672319409),(135826,3,23039,2,1672319409),(135827,3,23041,2,1672319409),(135828,3,23042,2,1672319409),(135829,3,23043,2,1672319409),(135830,3,23053,2,1672319409),(135831,3,23054,2,1672319409),(135832,3,23058,2,1672319409),(135833,3,23059,2,1672319409),(135834,3,23060,2,1672319409),(135835,3,23061,2,1672319409),(135836,3,23062,2,1672319409),(135837,3,23063,2,1672319409),(135838,3,23077,2,1672319409),(135839,3,23078,2,1672319409),(135840,3,27893,2,1672319409),(135841,3,27894,2,1672319409),(135842,3,27895,2,1672319409),(135843,3,27898,2,1672319409),(135844,3,27900,2,1672319409),(135845,3,28978,2,1672319409),(135846,3,28979,2,1672319409),(135847,3,28980,2,1672319409),(135848,3,28981,2,1672319409),(135849,3,28982,2,1672319409),(135850,3,28983,2,1672319409),(135851,3,28984,2,1672319409),(135852,3,28985,2,1672319409),(135853,3,28986,2,1672319409),(135854,3,29103,2,1672319409),(135855,3,29104,2,1672319409),(135856,3,29105,2,1672319409),(135857,3,29106,2,1672319409),(135858,3,29107,2,1672319409),(135859,3,29108,2,1672319409),(135860,3,30119,2,1672319409),(135861,3,30120,2,1672319409),(135862,3,30611,2,1672319409),(135863,3,30612,2,1672319409),(135864,3,30613,2,1672319409),(135865,3,30614,2,1672319409),(135866,3,30615,2,1672319409),(135867,3,30616,2,1672319409),(135868,3,30617,2,1672319409),(135869,3,30618,2,1672319409),(135870,3,30619,2,1672319409),(135871,3,30620,2,1672319409),(135872,3,30621,2,1672319409),(135873,3,30622,2,1672319409),(135874,3,30623,2,1672319409),(135875,3,30624,2,1672319409),(135876,3,30625,2,1672319409),(135877,3,30626,2,1672319409),(135878,3,30627,2,1672319409),(135879,3,30628,2,1672319409),(135880,3,30629,2,1672319409),(135881,3,30630,2,1672319409),(135882,3,30631,2,1672319409),(135883,3,30632,2,1672319409),(135884,3,30633,2,1672319409),(135885,3,30634,2,1672319409),(135886,3,30635,2,1672319409),(135887,3,30636,2,1672319409),(135888,3,31364,2,1672319409),(135889,3,31836,2,1672319409),(135890,3,31837,2,1672319409),(135891,3,31838,2,1672319409),(135892,3,31839,2,1672319409),(135893,3,31840,2,1672319409),(135894,3,31841,2,1672319409),(135895,3,31842,2,1672319409),(135896,3,31843,2,1672319409),(135897,3,31844,2,1672319409),(135898,3,31845,2,1672319409),(135899,3,31846,2,1672319409),(135900,3,31847,2,1672319409),(135901,3,31848,2,1672319409),(135902,3,31849,2,1672319409),(135903,3,31850,2,1672319409),(135904,3,31851,2,1672319409),(135905,3,31852,2,1672319409),(135906,3,31853,2,1672319409),(135907,3,31854,2,1672319409),(135908,3,31855,2,1672319409),(135909,3,31893,2,1672319409),(135910,3,32516,2,1672319409),(135911,3,32517,2,1672319409),(135912,3,32518,2,1672319409),(135913,3,32519,2,1672319409),(135914,3,32520,2,1672319409),(135915,3,32521,2,1672319409),(135916,3,32522,2,1672319409),(135917,3,32523,2,1672319409),(135918,3,32524,2,1672319409),(135919,3,32546,2,1672319409),(135920,3,32547,2,1672319409),(135921,3,32548,2,1672319409),(135922,3,32549,2,1672319409),(135923,3,32550,2,1672319409),(135924,3,32551,2,1672319409),(135925,3,32552,2,1672319409),(135926,3,32553,2,1672319409),(135927,3,32554,2,1672319409),(135928,3,33630,2,1672319409),(135929,3,33631,2,1672319409),(135930,3,33632,2,1672319409),(135931,3,33633,2,1672319409),(135932,3,34149,2,1672319409),(135933,3,34150,2,1672319409),(135934,3,34151,2,1672319409),(135935,3,34152,2,1672319409),(135936,3,34153,2,1672319409),(135937,3,34154,2,1672319409),(135938,3,34155,2,1672319409),(135939,3,34156,2,1672319409),(135940,3,34157,2,1672319409),(135941,3,34158,2,1672319409),(135942,3,34159,2,1672319409),(135943,3,34160,2,1672319409),(135944,3,36847,2,1672319409),(135945,3,36848,2,1672319409),(135946,3,36849,2,1672319409),(135947,3,36850,2,1672319409),(135948,3,36851,2,1672319409),(135949,3,36852,2,1672319409),(135950,3,36853,2,1672319409),(135951,3,36901,2,1672319409),(135952,3,36902,2,1672319409),(135953,3,36903,2,1672319409),(135954,3,36904,2,1672319409),(135955,3,36905,2,1672319409),(135956,3,36906,2,1672319409),(135957,3,36907,2,1672319409),(135958,3,36955,2,1672319409),(135959,3,36956,2,1672319409),(135960,3,36957,2,1672319409),(135961,3,36958,2,1672319409),(135962,3,36959,2,1672319409),(135963,3,36960,2,1672319409),(135964,3,36961,2,1672319409),(135965,3,37009,2,1672319409),(135966,3,37010,2,1672319409),(135967,3,37011,2,1672319409),(135968,3,37012,2,1672319409),(135969,3,37013,2,1672319409),(135970,3,37014,2,1672319409),(135971,3,37015,2,1672319409),(135972,3,37063,2,1672319409),(135973,3,37064,2,1672319409),(135974,3,37065,2,1672319409),(135975,3,37066,2,1672319409),(135976,3,37067,2,1672319409),(135977,3,37068,2,1672319409),(135978,3,37069,2,1672319409),(135979,3,37117,2,1672319409),(135980,3,37118,2,1672319409),(135981,3,37119,2,1672319409),(135982,3,37120,2,1672319409),(135983,3,37121,2,1672319409),(135984,3,37122,2,1672319409),(135985,3,37123,2,1672319409),(135986,3,37171,2,1672319409),(135987,3,37172,2,1672319409),(135988,3,37173,2,1672319409),(135989,3,37174,2,1672319409),(135990,3,37175,2,1672319409),(135991,3,37176,2,1672319409),(135992,3,37177,2,1672319409),(135993,3,37225,2,1672319409),(135994,3,37226,2,1672319409),(135995,3,37227,2,1672319409),(135996,3,37228,2,1672319409),(135997,3,37229,2,1672319409),(135998,3,37230,2,1672319409),(135999,3,37231,2,1672319409),(136000,3,37279,2,1672319409),(136001,3,37280,2,1672319409),(136002,3,37281,2,1672319409),(136003,3,37282,2,1672319409),(136004,3,37283,2,1672319409),(136005,3,37284,2,1672319409),(136006,3,37285,2,1672319409),(136007,3,37333,2,1672319409),(136008,3,37334,2,1672319409),(136009,3,37335,2,1672319409),(136010,3,37336,2,1672319409),(136011,3,37337,2,1672319409),(136012,3,37338,2,1672319409),(136013,3,37339,2,1672319409),(136014,3,37387,2,1672319409),(136015,3,37388,2,1672319409),(136016,3,37389,2,1672319409),(136017,3,37390,2,1672319409),(136018,3,37391,2,1672319409),(136019,3,37392,2,1672319409),(136020,3,37393,2,1672319409),(136021,3,37441,2,1672319409),(136022,3,37442,2,1672319409),(136023,3,37443,2,1672319409),(136024,3,37444,2,1672319409),(136025,3,37445,2,1672319409),(136026,3,37446,2,1672319409),(136027,3,37447,2,1672319409),(136028,3,37495,2,1672319409),(136029,3,37496,2,1672319409),(136030,3,37497,2,1672319409),(136031,3,37498,2,1672319409),(136032,3,37499,2,1672319409),(136033,3,37500,2,1672319409),(136034,3,37501,2,1672319409),(136035,3,37549,2,1672319409),(136036,3,37550,2,1672319409),(136037,3,37551,2,1672319409),(136038,3,37552,2,1672319409),(136039,3,37553,2,1672319409),(136040,3,37554,2,1672319409),(136041,3,37555,2,1672319409),(136042,3,37603,2,1672319409),(136043,3,37604,2,1672319409),(136044,3,37605,2,1672319409),(136045,3,37606,2,1672319409),(136046,3,37607,2,1672319409),(136047,3,37608,2,1672319409),(136048,3,37609,2,1672319409),(136049,3,37657,2,1672319409),(136050,3,37658,2,1672319409),(136051,3,37659,2,1672319409),(136052,3,37660,2,1672319409),(136053,3,37661,2,1672319409),(136054,3,37662,2,1672319409),(136055,3,37663,2,1672319409),(136056,3,37711,2,1672319409),(136057,3,37712,2,1672319409),(136058,3,37713,2,1672319409),(136059,3,37714,2,1672319409),(136060,3,37715,2,1672319409),(136061,3,37716,2,1672319409),(136062,3,37717,2,1672319409),(136063,3,37765,2,1672319409),(136064,3,37766,2,1672319409),(136065,3,37767,2,1672319409),(136066,3,37768,2,1672319409),(136067,3,37769,2,1672319409),(136068,3,37770,2,1672319409),(136069,3,37771,2,1672319409),(136070,3,37819,2,1672319409),(136071,3,37820,2,1672319409),(136072,3,37821,2,1672319409),(136073,3,37822,2,1672319409),(136074,3,37823,2,1672319409),(136075,3,37824,2,1672319409),(136076,3,37825,2,1672319409),(136077,3,37873,2,1672319409),(136078,3,37874,2,1672319409),(136079,3,37875,2,1672319409),(136080,3,37876,2,1672319409),(136081,3,37877,2,1672319409),(136082,3,37878,2,1672319409),(136083,3,37879,2,1672319409),(136084,3,37927,2,1672319409),(136085,3,37928,2,1672319409),(136086,3,37929,2,1672319409),(136087,3,37930,2,1672319409),(136088,3,37931,2,1672319409),(136089,3,37932,2,1672319409),(136090,3,37933,2,1672319409),(136091,3,37981,2,1672319409),(136092,3,37982,2,1672319409),(136093,3,37983,2,1672319409),(136094,3,37984,2,1672319409),(136095,3,37985,2,1672319409),(136096,3,37986,2,1672319409),(136097,3,37987,2,1672319409),(136098,3,38035,2,1672319409),(136099,3,38036,2,1672319409),(136100,3,38037,2,1672319409),(136101,3,38038,2,1672319409),(136102,3,38039,2,1672319409),(136103,3,38040,2,1672319409),(136104,3,38041,2,1672319409),(136105,3,38089,2,1672319409),(136106,3,38090,2,1672319409),(136107,3,38091,2,1672319409),(136108,3,38092,2,1672319409),(136109,3,38093,2,1672319409),(136110,3,38094,2,1672319409),(136111,3,38095,2,1672319409),(136112,3,38143,2,1672319409),(136113,3,38144,2,1672319409),(136114,3,38145,2,1672319409),(136115,3,38146,2,1672319409),(136116,3,38147,2,1672319409),(136117,3,38148,2,1672319409),(136118,3,38149,2,1672319409),(136119,3,38197,2,1672319409),(136120,3,38198,2,1672319409),(136121,3,38199,2,1672319409),(136122,3,38200,2,1672319409),(136123,3,38201,2,1672319409),(136124,3,38202,2,1672319409),(136125,3,38203,2,1672319409),(136126,3,38251,2,1672319409),(136127,3,38252,2,1672319409),(136128,3,38253,2,1672319409),(136129,3,38254,2,1672319409),(136130,3,38255,2,1672319409),(136131,3,38256,2,1672319409),(136132,3,38257,2,1672319409),(136133,3,38305,2,1672319409),(136134,3,38306,2,1672319409),(136135,3,38307,2,1672319409),(136136,3,38308,2,1672319409),(136137,3,38309,2,1672319409),(136138,3,38310,2,1672319409),(136139,3,38311,2,1672319409),(136140,3,38359,2,1672319409),(136141,3,38360,2,1672319409),(136142,3,38361,2,1672319409),(136143,3,38362,2,1672319409),(136144,3,38363,2,1672319409),(136145,3,38364,2,1672319409),(136146,3,38365,2,1672319409),(136147,3,38413,2,1672319409),(136148,3,38414,2,1672319409),(136149,3,38415,2,1672319409),(136150,3,38416,2,1672319409),(136151,3,38417,2,1672319409),(136152,3,38418,2,1672319409),(136153,3,38419,2,1672319409),(136154,3,38467,2,1672319409),(136155,3,38468,2,1672319409),(136156,3,38469,2,1672319409),(136157,3,38470,2,1672319409),(136158,3,38471,2,1672319409),(136159,3,38472,2,1672319409),(136160,3,38473,2,1672319409),(136161,3,38521,2,1672319409),(136162,3,38522,2,1672319409),(136163,3,38523,2,1672319409),(136164,3,38524,2,1672319409),(136165,3,38525,2,1672319409),(136166,3,38526,2,1672319409),(136167,3,38527,2,1672319409),(136168,3,39331,2,1672319409),(136169,3,39332,2,1672319409),(136170,3,39333,2,1672319409),(136171,3,39334,2,1672319409),(136172,3,39335,2,1672319409),(136173,3,39336,2,1672319409),(136174,3,39337,2,1672319409),(136175,3,39385,2,1672319409),(136176,3,39386,2,1672319409),(136177,3,39387,2,1672319409),(136178,3,39388,2,1672319409),(136179,3,39389,2,1672319409),(136180,3,39390,2,1672319409),(136181,3,39391,2,1672319409),(136182,3,39439,2,1672319409),(136183,3,39440,2,1672319409),(136184,3,39441,2,1672319409),(136185,3,39442,2,1672319409),(136186,3,39443,2,1672319409),(136187,3,39444,2,1672319409),(136188,3,39445,2,1672319409),(136189,3,39493,2,1672319409),(136190,3,39494,2,1672319409),(136191,3,39495,2,1672319409),(136192,3,39496,2,1672319409),(136193,3,39497,2,1672319409),(136194,3,39498,2,1672319409),(136195,3,39499,2,1672319409),(136196,3,39547,2,1672319409),(136197,3,39548,2,1672319409),(136198,3,39549,2,1672319409),(136199,3,39550,2,1672319409),(136200,3,39551,2,1672319409),(136201,3,39552,2,1672319409),(136202,3,39553,2,1672319409),(136203,3,40934,2,1672319409),(136204,3,40935,2,1672319409),(136205,3,40936,2,1672319409),(136206,3,40937,2,1672319409),(136207,3,40938,2,1672319409),(136208,3,40939,2,1672319409),(136209,3,40940,2,1672319409),(136210,3,40941,2,1672319409),(136211,3,40942,2,1672319409),(136212,3,40943,2,1672319409),(136213,3,40944,2,1672319409),(136214,3,40955,2,1672319409),(136215,3,40956,2,1672319409),(136216,3,40957,2,1672319409),(136217,3,40958,2,1672319409),(136218,3,40959,2,1672319409),(136219,3,40960,2,1672319409),(136220,3,40961,2,1672319409),(136221,3,40962,2,1672319409),(136222,3,40963,2,1672319409),(136223,3,40964,2,1672319409),(136224,3,40965,2,1672319409),(136225,3,40976,2,1672319409),(136226,3,40977,2,1672319409),(136227,3,40978,2,1672319409),(136228,3,40979,2,1672319409),(136229,3,40980,2,1672319409),(136230,3,40981,2,1672319409),(136231,3,40982,2,1672319409),(136232,3,40983,2,1672319409),(136233,3,40984,2,1672319409),(136234,3,40985,2,1672319409),(136235,3,40986,2,1672319409),(136236,3,40997,2,1672319409),(136237,3,40998,2,1672319409),(136238,3,40999,2,1672319409),(136239,3,41000,2,1672319409),(136240,3,41001,2,1672319409),(136241,3,41002,2,1672319409),(136242,3,41003,2,1672319409),(136243,3,41004,2,1672319409),(136244,3,41005,2,1672319409),(136245,3,41006,2,1672319409),(136246,3,41007,2,1672319409),(136247,3,41018,2,1672319409),(136248,3,41019,2,1672319409),(136249,3,41020,2,1672319409),(136250,3,41021,2,1672319409),(136251,3,41022,2,1672319409),(136252,3,41023,2,1672319409),(136253,3,41024,2,1672319409),(136254,3,41025,2,1672319409),(136255,3,41026,2,1672319409),(136256,3,41027,2,1672319409),(136257,3,41028,2,1672319409),(136258,3,41039,2,1672319409),(136259,3,41040,2,1672319409),(136260,3,41041,2,1672319409),(136261,3,41042,2,1672319409),(136262,3,41043,2,1672319409),(136263,3,41044,2,1672319409),(136264,3,41045,2,1672319409),(136265,3,41046,2,1672319409),(136266,3,41047,2,1672319409),(136267,3,41048,2,1672319409),(136268,3,41049,2,1672319409),(136269,3,41060,2,1672319409),(136270,3,41061,2,1672319409),(136271,3,41062,2,1672319409),(136272,3,41063,2,1672319409),(136273,3,41064,2,1672319409),(136274,3,41065,2,1672319409),(136275,3,41066,2,1672319409),(136276,3,41067,2,1672319409),(136277,3,41068,2,1672319409),(136278,3,41069,2,1672319409),(136279,3,41070,2,1672319409),(136280,3,41081,2,1672319409),(136281,3,41082,2,1672319409),(136282,3,41083,2,1672319409),(136283,3,41084,2,1672319409),(136284,3,41085,2,1672319409),(136285,3,41086,2,1672319409),(136286,3,41087,2,1672319409),(136287,3,41088,2,1672319409),(136288,3,41089,2,1672319409),(136289,3,41090,2,1672319409),(136290,3,41091,2,1672319409),(136291,3,41102,2,1672319409),(136292,3,41103,2,1672319409),(136293,3,41104,2,1672319409),(136294,3,41105,2,1672319409),(136295,3,41106,2,1672319409),(136296,3,41107,2,1672319409),(136297,3,41108,2,1672319409),(136298,3,41109,2,1672319409),(136299,3,41110,2,1672319409),(136300,3,41111,2,1672319409),(136301,3,41112,2,1672319409),(136302,3,41123,2,1672319409),(136303,3,41124,2,1672319409),(136304,3,41125,2,1672319409),(136305,3,41126,2,1672319409),(136306,3,41127,2,1672319409),(136307,3,41128,2,1672319409),(136308,3,41129,2,1672319409),(136309,3,41130,2,1672319409),(136310,3,41131,2,1672319409),(136311,3,41132,2,1672319409),(136312,3,41133,2,1672319409),(136313,3,41144,2,1672319409),(136314,3,41145,2,1672319409),(136315,3,41146,2,1672319409),(136316,3,41147,2,1672319409),(136317,3,41148,2,1672319409),(136318,3,41149,2,1672319409),(136319,3,41150,2,1672319409),(136320,3,41151,2,1672319409),(136321,3,41152,2,1672319409),(136322,3,41153,2,1672319409),(136323,3,41154,2,1672319409),(136324,3,41165,2,1672319409),(136325,3,41166,2,1672319409),(136326,3,41167,2,1672319409),(136327,3,41168,2,1672319409),(136328,3,41169,2,1672319409),(136329,3,41170,2,1672319409),(136330,3,41171,2,1672319409),(136331,3,41172,2,1672319409),(136332,3,41173,2,1672319409),(136333,3,41174,2,1672319409),(136334,3,41175,2,1672319409),(136335,3,41186,2,1672319409),(136336,3,41187,2,1672319409),(136337,3,41188,2,1672319409),(136338,3,41189,2,1672319409),(136339,3,41190,2,1672319409),(136340,3,41191,2,1672319409),(136341,3,41192,2,1672319409),(136342,3,41193,2,1672319409),(136343,3,41194,2,1672319409),(136344,3,41195,2,1672319409),(136345,3,41196,2,1672319409),(136346,3,41207,2,1672319409),(136347,3,41208,2,1672319409),(136348,3,41209,2,1672319409),(136349,3,41210,2,1672319409),(136350,3,41211,2,1672319409),(136351,3,41212,2,1672319409),(136352,3,41213,2,1672319409),(136353,3,41214,2,1672319409),(136354,3,41215,2,1672319409),(136355,3,41216,2,1672319409),(136356,3,41217,2,1672319409),(136357,3,41228,2,1672319409),(136358,3,41229,2,1672319409),(136359,3,41230,2,1672319409),(136360,3,41231,2,1672319409),(136361,3,41232,2,1672319409),(136362,3,41233,2,1672319409),(136363,3,41234,2,1672319409),(136364,3,41235,2,1672319409),(136365,3,41236,2,1672319409),(136366,3,41237,2,1672319409),(136367,3,41238,2,1672319409),(136368,3,41249,2,1672319409),(136369,3,41250,2,1672319409),(136370,3,41251,2,1672319409),(136371,3,41252,2,1672319409),(136372,3,41253,2,1672319409),(136373,3,41254,2,1672319409),(136374,3,41255,2,1672319409),(136375,3,41256,2,1672319409),(136376,3,41257,2,1672319409),(136377,3,41258,2,1672319409),(136378,3,41259,2,1672319409),(136379,3,41270,2,1672319409),(136380,3,41271,2,1672319409),(136381,3,41272,2,1672319409),(136382,3,41273,2,1672319409),(136383,3,41274,2,1672319409),(136384,3,41275,2,1672319409),(136385,3,41276,2,1672319409),(136386,3,41277,2,1672319409),(136387,3,41278,2,1672319409),(136388,3,41279,2,1672319409),(136389,3,41280,2,1672319409),(136390,3,41291,2,1672319409),(136391,3,41292,2,1672319409),(136392,3,41293,2,1672319409),(136393,3,41294,2,1672319409),(136394,3,41295,2,1672319409),(136395,3,41296,2,1672319409),(136396,3,41297,2,1672319409),(136397,3,41298,2,1672319409),(136398,3,41299,2,1672319409),(136399,3,41300,2,1672319409),(136400,3,41301,2,1672319409),(136401,3,41312,2,1672319409),(136402,3,41313,2,1672319409),(136403,3,41314,2,1672319409),(136404,3,41315,2,1672319409),(136405,3,41316,2,1672319409),(136406,3,41317,2,1672319409),(136407,3,41318,2,1672319409),(136408,3,41319,2,1672319409),(136409,3,41320,2,1672319409),(136410,3,41321,2,1672319409),(136411,3,41322,2,1672319409),(136412,3,41333,2,1672319409),(136413,3,41334,2,1672319409),(136414,3,41335,2,1672319409),(136415,3,41336,2,1672319409),(136416,3,41337,2,1672319409),(136417,3,41338,2,1672319409),(136418,3,41339,2,1672319409),(136419,3,41340,2,1672319409),(136420,3,41341,2,1672319409),(136421,3,41342,2,1672319409),(136422,3,41343,2,1672319409),(136423,3,41354,2,1672319409),(136424,3,41355,2,1672319409),(136425,3,41356,2,1672319409),(136426,3,41357,2,1672319409),(136427,3,41358,2,1672319409),(136428,3,41359,2,1672319409),(136429,3,41360,2,1672319409),(136430,3,41361,2,1672319409),(136431,3,41362,2,1672319409),(136432,3,41363,2,1672319409),(136433,3,41364,2,1672319409),(136434,3,41375,2,1672319409),(136435,3,41376,2,1672319409),(136436,3,41377,2,1672319409),(136437,3,41378,2,1672319409),(136438,3,41379,2,1672319409),(136439,3,41380,2,1672319409),(136440,3,41381,2,1672319409),(136441,3,41382,2,1672319409),(136442,3,41383,2,1672319409),(136443,3,41384,2,1672319409),(136444,3,41385,2,1672319409),(136445,3,41396,2,1672319409),(136446,3,41397,2,1672319409),(136447,3,41398,2,1672319409),(136448,3,41399,2,1672319409),(136449,3,41400,2,1672319409),(136450,3,41401,2,1672319409),(136451,3,41402,2,1672319409),(136452,3,41403,2,1672319409),(136453,3,41404,2,1672319409),(136454,3,41405,2,1672319409),(136455,3,41406,2,1672319409),(136456,3,41417,2,1672319409),(136457,3,41418,2,1672319409),(136458,3,41419,2,1672319409),(136459,3,41420,2,1672319409),(136460,3,41421,2,1672319409),(136461,3,41422,2,1672319409),(136462,3,41423,2,1672319409),(136463,3,41424,2,1672319409),(136464,3,41425,2,1672319409),(136465,3,41426,2,1672319409),(136466,3,41427,2,1672319409),(136467,3,41438,2,1672319409),(136468,3,41439,2,1672319409),(136469,3,41440,2,1672319409),(136470,3,41441,2,1672319409),(136471,3,41442,2,1672319409),(136472,3,41443,2,1672319409),(136473,3,41444,2,1672319409),(136474,3,41445,2,1672319409),(136475,3,41446,2,1672319409),(136476,3,41447,2,1672319409),(136477,3,41448,2,1672319409),(136478,3,41459,2,1672319409),(136479,3,41460,2,1672319409),(136480,3,41461,2,1672319409),(136481,3,41462,2,1672319409),(136482,3,41463,2,1672319409),(136483,3,41464,2,1672319409),(136484,3,41465,2,1672319409),(136485,3,41466,2,1672319409),(136486,3,41467,2,1672319409),(136487,3,41468,2,1672319409),(136488,3,41469,2,1672319409),(136489,3,41480,2,1672319409),(136490,3,41481,2,1672319409),(136491,3,41482,2,1672319409),(136492,3,41483,2,1672319409),(136493,3,41484,2,1672319409),(136494,3,41485,2,1672319409),(136495,3,41486,2,1672319409),(136496,3,41487,2,1672319409),(136497,3,41488,2,1672319409),(136498,3,41489,2,1672319409),(136499,3,41490,2,1672319409),(136500,3,41501,2,1672319409),(136501,3,41502,2,1672319409),(136502,3,41503,2,1672319409),(136503,3,41504,2,1672319409),(136504,3,41505,2,1672319409),(136505,3,41506,2,1672319409),(136506,3,41507,2,1672319409),(136507,3,41508,2,1672319409),(136508,3,41509,2,1672319409),(136509,3,41510,2,1672319409),(136510,3,41511,2,1672319409),(136511,3,41522,2,1672319409),(136512,3,41523,2,1672319409),(136513,3,41524,2,1672319409),(136514,3,41525,2,1672319409),(136515,3,41526,2,1672319409),(136516,3,41527,2,1672319409),(136517,3,41528,2,1672319409),(136518,3,41529,2,1672319409),(136519,3,41530,2,1672319409),(136520,3,41531,2,1672319409),(136521,3,41532,2,1672319409),(136522,3,41543,2,1672319409),(136523,3,41544,2,1672319409),(136524,3,41545,2,1672319409),(136525,3,41546,2,1672319409),(136526,3,41547,2,1672319409),(136527,3,41548,2,1672319409),(136528,3,41549,2,1672319409),(136529,3,41550,2,1672319409),(136530,3,41551,2,1672319409),(136531,3,41552,2,1672319409),(136532,3,41553,2,1672319409),(136533,3,41564,2,1672319409),(136534,3,41565,2,1672319409),(136535,3,41566,2,1672319409),(136536,3,41567,2,1672319409),(136537,3,41568,2,1672319409),(136538,3,41569,2,1672319409),(136539,3,41570,2,1672319409),(136540,3,41571,2,1672319409),(136541,3,41572,2,1672319409),(136542,3,41573,2,1672319409),(136543,3,41574,2,1672319409),(136544,3,41585,2,1672319409),(136545,3,41586,2,1672319409),(136546,3,41587,2,1672319409),(136547,3,41588,2,1672319409),(136548,3,41589,2,1672319409),(136549,3,41590,2,1672319409),(136550,3,41591,2,1672319409),(136551,3,41592,2,1672319409),(136552,3,41593,2,1672319409),(136553,3,41594,2,1672319409),(136554,3,41595,2,1672319409),(136555,3,41900,2,1672319409),(136556,3,41901,2,1672319409),(136557,3,41902,2,1672319409),(136558,3,41903,2,1672319409),(136559,3,41904,2,1672319409),(136560,3,41905,2,1672319409),(136561,3,41906,2,1672319409),(136562,3,41907,2,1672319409),(136563,3,41908,2,1672319409),(136564,3,41909,2,1672319409),(136565,3,41910,2,1672319409),(136566,3,41921,2,1672319409),(136567,3,41922,2,1672319409),(136568,3,41923,2,1672319409),(136569,3,41924,2,1672319409),(136570,3,41925,2,1672319409),(136571,3,41926,2,1672319409),(136572,3,41927,2,1672319409),(136573,3,41928,2,1672319409),(136574,3,41929,2,1672319409),(136575,3,41930,2,1672319409),(136576,3,41931,2,1672319409),(136577,3,41942,2,1672319409),(136578,3,41943,2,1672319409),(136579,3,41944,2,1672319409),(136580,3,41945,2,1672319409),(136581,3,41946,2,1672319409),(136582,3,41947,2,1672319409),(136583,3,41948,2,1672319409),(136584,3,41949,2,1672319409),(136585,3,41950,2,1672319409),(136586,3,41951,2,1672319409),(136587,3,41952,2,1672319409),(136588,3,41963,2,1672319409),(136589,3,41964,2,1672319409),(136590,3,41965,2,1672319409),(136591,3,41966,2,1672319409),(136592,3,41967,2,1672319409),(136593,3,41968,2,1672319409),(136594,3,41969,2,1672319409),(136595,3,41970,2,1672319409),(136596,3,41971,2,1672319409),(136597,3,41972,2,1672319409),(136598,3,41973,2,1672319409),(136599,3,41984,2,1672319409),(136600,3,41985,2,1672319409),(136601,3,41986,2,1672319409),(136602,3,41987,2,1672319409),(136603,3,41988,2,1672319409),(136604,3,41989,2,1672319409),(136605,3,41990,2,1672319409),(136606,3,41991,2,1672319409),(136607,3,41992,2,1672319409),(136608,3,41993,2,1672319409),(136609,3,41994,2,1672319409),(136610,3,42068,2,1672319409),(136611,3,42069,2,1672319409),(136612,3,42070,2,1672319409),(136613,3,42071,2,1672319409),(136614,3,42072,2,1672319409),(136615,3,42073,2,1672319409),(136616,3,42074,2,1672319409),(136617,3,42075,2,1672319409),(136618,3,42076,2,1672319409),(136619,3,42077,2,1672319409),(136620,3,42078,2,1672319409),(136621,3,42443,2,1672319409),(136622,3,42444,2,1672319409),(136623,3,42445,2,1672319409),(136624,3,42446,2,1672319409),(136625,3,43077,2,1672319409),(136626,3,43793,2,1672319409),(136627,3,43794,2,1672319409),(136628,3,43795,2,1672319409),(136629,3,43796,2,1672319409),(136630,3,43797,2,1672319409),(136631,3,43798,2,1672319409),(136632,3,43799,2,1672319409),(136633,3,43800,2,1672319409),(136634,3,43801,2,1672319409),(136635,3,43802,2,1672319409),(136636,3,43803,2,1672319409),(136637,3,43804,2,1672319409),(136638,3,43805,2,1672319409),(136639,3,43806,2,1672319409),(136640,3,43807,2,1672319409),(136641,3,43808,2,1672319409),(136642,3,43809,2,1672319409),(136643,3,43810,2,1672319409),(136644,3,43811,2,1672319409),(136645,3,43812,2,1672319409),(136646,3,43813,2,1672319409),(136647,3,43814,2,1672319409),(136648,3,43815,2,1672319409),(136649,3,43816,2,1672319409),(136650,3,43817,2,1672319409),(136651,3,43818,2,1672319409),(136652,3,43819,2,1672319409),(136653,3,43820,2,1672319409),(136654,3,43821,2,1672319409),(136655,3,43822,2,1672319409),(136656,3,43823,2,1672319409),(136657,3,43824,2,1672319409),(136658,3,43825,2,1672319409),(136659,3,43840,2,1672319409),(136660,3,43841,2,1672319409),(136661,3,43842,2,1672319409),(136662,3,43843,2,1672319409),(136663,3,43844,2,1672319409),(136664,3,43848,2,1672319409),(136665,3,44445,2,1672319409),(136666,3,23035,3,1672319409),(136667,3,23036,3,1672319409),(136668,3,23039,3,1672319409),(136669,3,23041,3,1672319409),(136670,3,23042,3,1672319409),(136671,3,23043,3,1672319409),(136672,3,23053,3,1672319409),(136673,3,23054,3,1672319409),(136674,3,23058,3,1672319409),(136675,3,23059,3,1672319409),(136676,3,23060,3,1672319409),(136677,3,23061,3,1672319409),(136678,3,23062,3,1672319409),(136679,3,23063,3,1672319409),(136680,3,23077,3,1672319409),(136681,3,23078,3,1672319409),(136682,3,27893,3,1672319409),(136683,3,27894,3,1672319409),(136684,3,27895,3,1672319409),(136685,3,27898,3,1672319409),(136686,3,27900,3,1672319409),(136687,3,28978,3,1672319409),(136688,3,28979,3,1672319409),(136689,3,28980,3,1672319409),(136690,3,28981,3,1672319409),(136691,3,28982,3,1672319409),(136692,3,28983,3,1672319409),(136693,3,28984,3,1672319409),(136694,3,28985,3,1672319409),(136695,3,28986,3,1672319409),(136696,3,29103,3,1672319409),(136697,3,29104,3,1672319409),(136698,3,29105,3,1672319409),(136699,3,29106,3,1672319409),(136700,3,29107,3,1672319409),(136701,3,29108,3,1672319409),(136702,3,30119,3,1672319409),(136703,3,30120,3,1672319409),(136704,3,30611,3,1672319409),(136705,3,30612,3,1672319409),(136706,3,30613,3,1672319409),(136707,3,30614,3,1672319409),(136708,3,30615,3,1672319409),(136709,3,30616,3,1672319409),(136710,3,30617,3,1672319409),(136711,3,30618,3,1672319409),(136712,3,30619,3,1672319409),(136713,3,30620,3,1672319409),(136714,3,30621,3,1672319409),(136715,3,30622,3,1672319409),(136716,3,30623,3,1672319409),(136717,3,30624,3,1672319409),(136718,3,30625,3,1672319409),(136719,3,30626,3,1672319409),(136720,3,30627,3,1672319409),(136721,3,30628,3,1672319409),(136722,3,30629,3,1672319409),(136723,3,30630,3,1672319409),(136724,3,30631,3,1672319409),(136725,3,30632,3,1672319409),(136726,3,30633,3,1672319409),(136727,3,30634,3,1672319409),(136728,3,30635,3,1672319409),(136729,3,30636,3,1672319409),(136730,3,31364,3,1672319409),(136731,3,31836,3,1672319409),(136732,3,31837,3,1672319409),(136733,3,31838,3,1672319409),(136734,3,31839,3,1672319409),(136735,3,31840,3,1672319409),(136736,3,31841,3,1672319409),(136737,3,31842,3,1672319409),(136738,3,31843,3,1672319409),(136739,3,31844,3,1672319409),(136740,3,31845,3,1672319409),(136741,3,31846,3,1672319409),(136742,3,31847,3,1672319409),(136743,3,31848,3,1672319409),(136744,3,31849,3,1672319409),(136745,3,31850,3,1672319409),(136746,3,31851,3,1672319409),(136747,3,31852,3,1672319409),(136748,3,31853,3,1672319409),(136749,3,31854,3,1672319409),(136750,3,31855,3,1672319409),(136751,3,31893,3,1672319409),(136752,3,32516,3,1672319409),(136753,3,32517,3,1672319409),(136754,3,32518,3,1672319409),(136755,3,32519,3,1672319409),(136756,3,32520,3,1672319409),(136757,3,32521,3,1672319409),(136758,3,32522,3,1672319409),(136759,3,32523,3,1672319409),(136760,3,32524,3,1672319409),(136761,3,32546,3,1672319409),(136762,3,32547,3,1672319409),(136763,3,32548,3,1672319409),(136764,3,32549,3,1672319409),(136765,3,32550,3,1672319409),(136766,3,32551,3,1672319409),(136767,3,32552,3,1672319409),(136768,3,32553,3,1672319409),(136769,3,32554,3,1672319409),(136770,3,33630,3,1672319409),(136771,3,33631,3,1672319409),(136772,3,33632,3,1672319409),(136773,3,33633,3,1672319409),(136774,3,34149,3,1672319409),(136775,3,34150,3,1672319409),(136776,3,34151,3,1672319409),(136777,3,34152,3,1672319409),(136778,3,34153,3,1672319409),(136779,3,34154,3,1672319409),(136780,3,34155,3,1672319409),(136781,3,34156,3,1672319409),(136782,3,34157,3,1672319409),(136783,3,34158,3,1672319409),(136784,3,34159,3,1672319409),(136785,3,34160,3,1672319409),(136786,3,36847,3,1672319409),(136787,3,36848,3,1672319409),(136788,3,36849,3,1672319409),(136789,3,36850,3,1672319409),(136790,3,36851,3,1672319409),(136791,3,36852,3,1672319409),(136792,3,36853,3,1672319409),(136793,3,36901,3,1672319409),(136794,3,36902,3,1672319409),(136795,3,36903,3,1672319409),(136796,3,36904,3,1672319409),(136797,3,36905,3,1672319409),(136798,3,36906,3,1672319409),(136799,3,36907,3,1672319409),(136800,3,36955,3,1672319409),(136801,3,36956,3,1672319409),(136802,3,36957,3,1672319409),(136803,3,36958,3,1672319409),(136804,3,36959,3,1672319409),(136805,3,36960,3,1672319409),(136806,3,36961,3,1672319409),(136807,3,37009,3,1672319409),(136808,3,37010,3,1672319409),(136809,3,37011,3,1672319409),(136810,3,37012,3,1672319409),(136811,3,37013,3,1672319409),(136812,3,37014,3,1672319409),(136813,3,37015,3,1672319409),(136814,3,37063,3,1672319409),(136815,3,37064,3,1672319409),(136816,3,37065,3,1672319409),(136817,3,37066,3,1672319409),(136818,3,37067,3,1672319409),(136819,3,37068,3,1672319409),(136820,3,37069,3,1672319409),(136821,3,37117,3,1672319409),(136822,3,37118,3,1672319409),(136823,3,37119,3,1672319409),(136824,3,37120,3,1672319409),(136825,3,37121,3,1672319409),(136826,3,37122,3,1672319409),(136827,3,37123,3,1672319409),(136828,3,37171,3,1672319409),(136829,3,37172,3,1672319409),(136830,3,37173,3,1672319409),(136831,3,37174,3,1672319409),(136832,3,37175,3,1672319409),(136833,3,37176,3,1672319409),(136834,3,37177,3,1672319409),(136835,3,37225,3,1672319409),(136836,3,37226,3,1672319409),(136837,3,37227,3,1672319409),(136838,3,37228,3,1672319409),(136839,3,37229,3,1672319409),(136840,3,37230,3,1672319409),(136841,3,37231,3,1672319409),(136842,3,37279,3,1672319409),(136843,3,37280,3,1672319409),(136844,3,37281,3,1672319409),(136845,3,37282,3,1672319409),(136846,3,37283,3,1672319409),(136847,3,37284,3,1672319409),(136848,3,37285,3,1672319409),(136849,3,37333,3,1672319409),(136850,3,37334,3,1672319409),(136851,3,37335,3,1672319409),(136852,3,37336,3,1672319409),(136853,3,37337,3,1672319409),(136854,3,37338,3,1672319409),(136855,3,37339,3,1672319409),(136856,3,37387,3,1672319409),(136857,3,37388,3,1672319409),(136858,3,37389,3,1672319409),(136859,3,37390,3,1672319409),(136860,3,37391,3,1672319409),(136861,3,37392,3,1672319409),(136862,3,37393,3,1672319409),(136863,3,37441,3,1672319409),(136864,3,37442,3,1672319409),(136865,3,37443,3,1672319409),(136866,3,37444,3,1672319409),(136867,3,37445,3,1672319409),(136868,3,37446,3,1672319409),(136869,3,37447,3,1672319409),(136870,3,37495,3,1672319409),(136871,3,37496,3,1672319409),(136872,3,37497,3,1672319409),(136873,3,37498,3,1672319409),(136874,3,37499,3,1672319409),(136875,3,37500,3,1672319409),(136876,3,37501,3,1672319409),(136877,3,37549,3,1672319409),(136878,3,37550,3,1672319409),(136879,3,37551,3,1672319409),(136880,3,37552,3,1672319409),(136881,3,37553,3,1672319409),(136882,3,37554,3,1672319409),(136883,3,37555,3,1672319409),(136884,3,37603,3,1672319409),(136885,3,37604,3,1672319409),(136886,3,37605,3,1672319409),(136887,3,37606,3,1672319409),(136888,3,37607,3,1672319409),(136889,3,37608,3,1672319409),(136890,3,37609,3,1672319409),(136891,3,37657,3,1672319409),(136892,3,37658,3,1672319409),(136893,3,37659,3,1672319409),(136894,3,37660,3,1672319409),(136895,3,37661,3,1672319409),(136896,3,37662,3,1672319409),(136897,3,37663,3,1672319409),(136898,3,37711,3,1672319409),(136899,3,37712,3,1672319409),(136900,3,37713,3,1672319409),(136901,3,37714,3,1672319409),(136902,3,37715,3,1672319409),(136903,3,37716,3,1672319409),(136904,3,37717,3,1672319409),(136905,3,37765,3,1672319409),(136906,3,37766,3,1672319409),(136907,3,37767,3,1672319409),(136908,3,37768,3,1672319409),(136909,3,37769,3,1672319409),(136910,3,37770,3,1672319409),(136911,3,37771,3,1672319409),(136912,3,37819,3,1672319409),(136913,3,37820,3,1672319409),(136914,3,37821,3,1672319409),(136915,3,37822,3,1672319409),(136916,3,37823,3,1672319409),(136917,3,37824,3,1672319409),(136918,3,37825,3,1672319409),(136919,3,37873,3,1672319409),(136920,3,37874,3,1672319409),(136921,3,37875,3,1672319409),(136922,3,37876,3,1672319409),(136923,3,37877,3,1672319409),(136924,3,37878,3,1672319409),(136925,3,37879,3,1672319409),(136926,3,37927,3,1672319409),(136927,3,37928,3,1672319409),(136928,3,37929,3,1672319409),(136929,3,37930,3,1672319409),(136930,3,37931,3,1672319409),(136931,3,37932,3,1672319409),(136932,3,37933,3,1672319409),(136933,3,37981,3,1672319409),(136934,3,37982,3,1672319409),(136935,3,37983,3,1672319409),(136936,3,37984,3,1672319409),(136937,3,37985,3,1672319409),(136938,3,37986,3,1672319409),(136939,3,37987,3,1672319409),(136940,3,38035,3,1672319409),(136941,3,38036,3,1672319409),(136942,3,38037,3,1672319409),(136943,3,38038,3,1672319409),(136944,3,38039,3,1672319409),(136945,3,38040,3,1672319409),(136946,3,38041,3,1672319409),(136947,3,38089,3,1672319409),(136948,3,38090,3,1672319409),(136949,3,38091,3,1672319409),(136950,3,38092,3,1672319409),(136951,3,38093,3,1672319409),(136952,3,38094,3,1672319409),(136953,3,38095,3,1672319409),(136954,3,38143,3,1672319409),(136955,3,38144,3,1672319409),(136956,3,38145,3,1672319409),(136957,3,38146,3,1672319409),(136958,3,38147,3,1672319409),(136959,3,38148,3,1672319409),(136960,3,38149,3,1672319409),(136961,3,38197,3,1672319409),(136962,3,38198,3,1672319409),(136963,3,38199,3,1672319409),(136964,3,38200,3,1672319409),(136965,3,38201,3,1672319409),(136966,3,38202,3,1672319409),(136967,3,38203,3,1672319409),(136968,3,38251,3,1672319409),(136969,3,38252,3,1672319409),(136970,3,38253,3,1672319409),(136971,3,38254,3,1672319409),(136972,3,38255,3,1672319409),(136973,3,38256,3,1672319409),(136974,3,38257,3,1672319409),(136975,3,38305,3,1672319409),(136976,3,38306,3,1672319409),(136977,3,38307,3,1672319409),(136978,3,38308,3,1672319409),(136979,3,38309,3,1672319409),(136980,3,38310,3,1672319409),(136981,3,38311,3,1672319409),(136982,3,38359,3,1672319409),(136983,3,38360,3,1672319409),(136984,3,38361,3,1672319409),(136985,3,38362,3,1672319409),(136986,3,38363,3,1672319409),(136987,3,38364,3,1672319409),(136988,3,38365,3,1672319409),(136989,3,38413,3,1672319409),(136990,3,38414,3,1672319409),(136991,3,38415,3,1672319409),(136992,3,38416,3,1672319409),(136993,3,38417,3,1672319409),(136994,3,38418,3,1672319409),(136995,3,38419,3,1672319409),(136996,3,38467,3,1672319409),(136997,3,38468,3,1672319409),(136998,3,38469,3,1672319409),(136999,3,38470,3,1672319409),(137000,3,38471,3,1672319409),(137001,3,38472,3,1672319409),(137002,3,38473,3,1672319409),(137003,3,38521,3,1672319409),(137004,3,38522,3,1672319409),(137005,3,38523,3,1672319409),(137006,3,38524,3,1672319409),(137007,3,38525,3,1672319409),(137008,3,38526,3,1672319409),(137009,3,38527,3,1672319409),(137010,3,39331,3,1672319409),(137011,3,39332,3,1672319409),(137012,3,39333,3,1672319409),(137013,3,39334,3,1672319409),(137014,3,39335,3,1672319409),(137015,3,39336,3,1672319409),(137016,3,39337,3,1672319409),(137017,3,39385,3,1672319409),(137018,3,39386,3,1672319409),(137019,3,39387,3,1672319409),(137020,3,39388,3,1672319409),(137021,3,39389,3,1672319409),(137022,3,39390,3,1672319409),(137023,3,39391,3,1672319409),(137024,3,39439,3,1672319409),(137025,3,39440,3,1672319409),(137026,3,39441,3,1672319409),(137027,3,39442,3,1672319409),(137028,3,39443,3,1672319409),(137029,3,39444,3,1672319409),(137030,3,39445,3,1672319409),(137031,3,39493,3,1672319409),(137032,3,39494,3,1672319409),(137033,3,39495,3,1672319409),(137034,3,39496,3,1672319409),(137035,3,39497,3,1672319409),(137036,3,39498,3,1672319409),(137037,3,39499,3,1672319409),(137038,3,39547,3,1672319409),(137039,3,39548,3,1672319409),(137040,3,39549,3,1672319409),(137041,3,39550,3,1672319409),(137042,3,39551,3,1672319409),(137043,3,39552,3,1672319409),(137044,3,39553,3,1672319409),(137045,3,40934,3,1672319409),(137046,3,40935,3,1672319409),(137047,3,40936,3,1672319409),(137048,3,40937,3,1672319409),(137049,3,40938,3,1672319409),(137050,3,40939,3,1672319409),(137051,3,40940,3,1672319409),(137052,3,40941,3,1672319409),(137053,3,40942,3,1672319409),(137054,3,40943,3,1672319409),(137055,3,40944,3,1672319409),(137056,3,40955,3,1672319409),(137057,3,40956,3,1672319409),(137058,3,40957,3,1672319409),(137059,3,40958,3,1672319409),(137060,3,40959,3,1672319409),(137061,3,40960,3,1672319409),(137062,3,40961,3,1672319409),(137063,3,40962,3,1672319409),(137064,3,40963,3,1672319409),(137065,3,40964,3,1672319409),(137066,3,40965,3,1672319409),(137067,3,40976,3,1672319409),(137068,3,40977,3,1672319409),(137069,3,40978,3,1672319409),(137070,3,40979,3,1672319409),(137071,3,40980,3,1672319409),(137072,3,40981,3,1672319409),(137073,3,40982,3,1672319409),(137074,3,40983,3,1672319409),(137075,3,40984,3,1672319409),(137076,3,40985,3,1672319409),(137077,3,40986,3,1672319409),(137078,3,40997,3,1672319409),(137079,3,40998,3,1672319409),(137080,3,40999,3,1672319409),(137081,3,41000,3,1672319409),(137082,3,41001,3,1672319409),(137083,3,41002,3,1672319409),(137084,3,41003,3,1672319409),(137085,3,41004,3,1672319409),(137086,3,41005,3,1672319409),(137087,3,41006,3,1672319409),(137088,3,41007,3,1672319409),(137089,3,41018,3,1672319409),(137090,3,41019,3,1672319409),(137091,3,41020,3,1672319409),(137092,3,41021,3,1672319409),(137093,3,41022,3,1672319409),(137094,3,41023,3,1672319409),(137095,3,41024,3,1672319409),(137096,3,41025,3,1672319409),(137097,3,41026,3,1672319409),(137098,3,41027,3,1672319409),(137099,3,41028,3,1672319409),(137100,3,41039,3,1672319409),(137101,3,41040,3,1672319409),(137102,3,41041,3,1672319409),(137103,3,41042,3,1672319409),(137104,3,41043,3,1672319409),(137105,3,41044,3,1672319409),(137106,3,41045,3,1672319409),(137107,3,41046,3,1672319409),(137108,3,41047,3,1672319409),(137109,3,41048,3,1672319409),(137110,3,41049,3,1672319409),(137111,3,41060,3,1672319409),(137112,3,41061,3,1672319409),(137113,3,41062,3,1672319409),(137114,3,41063,3,1672319409),(137115,3,41064,3,1672319409),(137116,3,41065,3,1672319409),(137117,3,41066,3,1672319409),(137118,3,41067,3,1672319409),(137119,3,41068,3,1672319409),(137120,3,41069,3,1672319409),(137121,3,41070,3,1672319409),(137122,3,41081,3,1672319409),(137123,3,41082,3,1672319409),(137124,3,41083,3,1672319409),(137125,3,41084,3,1672319409),(137126,3,41085,3,1672319409),(137127,3,41086,3,1672319409),(137128,3,41087,3,1672319409),(137129,3,41088,3,1672319409),(137130,3,41089,3,1672319409),(137131,3,41090,3,1672319409),(137132,3,41091,3,1672319409),(137133,3,41102,3,1672319409),(137134,3,41103,3,1672319409),(137135,3,41104,3,1672319409),(137136,3,41105,3,1672319409),(137137,3,41106,3,1672319409),(137138,3,41107,3,1672319409),(137139,3,41108,3,1672319409),(137140,3,41109,3,1672319409),(137141,3,41110,3,1672319409),(137142,3,41111,3,1672319409),(137143,3,41112,3,1672319409),(137144,3,41123,3,1672319409),(137145,3,41124,3,1672319409),(137146,3,41125,3,1672319409),(137147,3,41126,3,1672319409),(137148,3,41127,3,1672319409),(137149,3,41128,3,1672319409),(137150,3,41129,3,1672319409),(137151,3,41130,3,1672319409),(137152,3,41131,3,1672319409),(137153,3,41132,3,1672319409),(137154,3,41133,3,1672319409),(137155,3,41144,3,1672319409),(137156,3,41145,3,1672319409),(137157,3,41146,3,1672319409),(137158,3,41147,3,1672319409),(137159,3,41148,3,1672319409),(137160,3,41149,3,1672319409),(137161,3,41150,3,1672319409),(137162,3,41151,3,1672319409),(137163,3,41152,3,1672319409),(137164,3,41153,3,1672319409),(137165,3,41154,3,1672319409),(137166,3,41165,3,1672319409),(137167,3,41166,3,1672319409),(137168,3,41167,3,1672319409),(137169,3,41168,3,1672319409),(137170,3,41169,3,1672319409),(137171,3,41170,3,1672319409),(137172,3,41171,3,1672319409),(137173,3,41172,3,1672319409),(137174,3,41173,3,1672319409),(137175,3,41174,3,1672319409),(137176,3,41175,3,1672319409),(137177,3,41186,3,1672319409),(137178,3,41187,3,1672319409),(137179,3,41188,3,1672319409),(137180,3,41189,3,1672319409),(137181,3,41190,3,1672319409),(137182,3,41191,3,1672319409),(137183,3,41192,3,1672319409),(137184,3,41193,3,1672319409),(137185,3,41194,3,1672319409),(137186,3,41195,3,1672319409),(137187,3,41196,3,1672319409),(137188,3,41207,3,1672319409),(137189,3,41208,3,1672319409),(137190,3,41209,3,1672319409),(137191,3,41210,3,1672319409),(137192,3,41211,3,1672319409),(137193,3,41212,3,1672319409),(137194,3,41213,3,1672319409),(137195,3,41214,3,1672319409),(137196,3,41215,3,1672319409),(137197,3,41216,3,1672319409),(137198,3,41217,3,1672319409),(137199,3,41228,3,1672319409),(137200,3,41229,3,1672319409),(137201,3,41230,3,1672319409),(137202,3,41231,3,1672319409),(137203,3,41232,3,1672319409),(137204,3,41233,3,1672319409),(137205,3,41234,3,1672319409),(137206,3,41235,3,1672319409),(137207,3,41236,3,1672319409),(137208,3,41237,3,1672319409),(137209,3,41238,3,1672319409),(137210,3,41249,3,1672319409),(137211,3,41250,3,1672319409),(137212,3,41251,3,1672319409),(137213,3,41252,3,1672319409),(137214,3,41253,3,1672319409),(137215,3,41254,3,1672319409),(137216,3,41255,3,1672319409),(137217,3,41256,3,1672319409),(137218,3,41257,3,1672319409),(137219,3,41258,3,1672319409),(137220,3,41259,3,1672319409),(137221,3,41270,3,1672319409),(137222,3,41271,3,1672319409),(137223,3,41272,3,1672319409),(137224,3,41273,3,1672319409),(137225,3,41274,3,1672319409),(137226,3,41275,3,1672319409),(137227,3,41276,3,1672319409),(137228,3,41277,3,1672319409),(137229,3,41278,3,1672319409),(137230,3,41279,3,1672319409),(137231,3,41280,3,1672319409),(137232,3,41291,3,1672319409),(137233,3,41292,3,1672319409),(137234,3,41293,3,1672319409),(137235,3,41294,3,1672319409),(137236,3,41295,3,1672319409),(137237,3,41296,3,1672319409),(137238,3,41297,3,1672319409),(137239,3,41298,3,1672319409),(137240,3,41299,3,1672319409),(137241,3,41300,3,1672319409),(137242,3,41301,3,1672319409),(137243,3,41312,3,1672319409),(137244,3,41313,3,1672319409),(137245,3,41314,3,1672319409),(137246,3,41315,3,1672319409),(137247,3,41316,3,1672319409),(137248,3,41317,3,1672319409),(137249,3,41318,3,1672319409),(137250,3,41319,3,1672319409),(137251,3,41320,3,1672319409),(137252,3,41321,3,1672319409),(137253,3,41322,3,1672319409),(137254,3,41333,3,1672319409),(137255,3,41334,3,1672319409),(137256,3,41335,3,1672319409),(137257,3,41336,3,1672319409),(137258,3,41337,3,1672319409),(137259,3,41338,3,1672319409),(137260,3,41339,3,1672319409),(137261,3,41340,3,1672319409),(137262,3,41341,3,1672319409),(137263,3,41342,3,1672319409),(137264,3,41343,3,1672319409),(137265,3,41354,3,1672319409),(137266,3,41355,3,1672319409),(137267,3,41356,3,1672319409),(137268,3,41357,3,1672319409),(137269,3,41358,3,1672319409),(137270,3,41359,3,1672319409),(137271,3,41360,3,1672319409),(137272,3,41361,3,1672319409),(137273,3,41362,3,1672319409),(137274,3,41363,3,1672319409),(137275,3,41364,3,1672319409),(137276,3,41375,3,1672319409),(137277,3,41376,3,1672319409),(137278,3,41377,3,1672319409),(137279,3,41378,3,1672319409),(137280,3,41379,3,1672319409),(137281,3,41380,3,1672319409),(137282,3,41381,3,1672319409),(137283,3,41382,3,1672319409),(137284,3,41383,3,1672319409),(137285,3,41384,3,1672319409),(137286,3,41385,3,1672319409),(137287,3,41396,3,1672319409),(137288,3,41397,3,1672319409),(137289,3,41398,3,1672319409),(137290,3,41399,3,1672319409),(137291,3,41400,3,1672319409),(137292,3,41401,3,1672319409),(137293,3,41402,3,1672319409),(137294,3,41403,3,1672319409),(137295,3,41404,3,1672319409),(137296,3,41405,3,1672319409),(137297,3,41406,3,1672319409),(137298,3,41417,3,1672319409),(137299,3,41418,3,1672319409),(137300,3,41419,3,1672319409),(137301,3,41420,3,1672319409),(137302,3,41421,3,1672319409),(137303,3,41422,3,1672319409),(137304,3,41423,3,1672319409),(137305,3,41424,3,1672319409),(137306,3,41425,3,1672319409),(137307,3,41426,3,1672319409),(137308,3,41427,3,1672319409),(137309,3,41438,3,1672319409),(137310,3,41439,3,1672319409),(137311,3,41440,3,1672319409),(137312,3,41441,3,1672319409),(137313,3,41442,3,1672319409),(137314,3,41443,3,1672319409),(137315,3,41444,3,1672319409),(137316,3,41445,3,1672319409),(137317,3,41446,3,1672319409),(137318,3,41447,3,1672319409),(137319,3,41448,3,1672319409),(137320,3,41459,3,1672319409),(137321,3,41460,3,1672319409),(137322,3,41461,3,1672319409),(137323,3,41462,3,1672319409),(137324,3,41463,3,1672319409),(137325,3,41464,3,1672319409),(137326,3,41465,3,1672319409),(137327,3,41466,3,1672319409),(137328,3,41467,3,1672319409),(137329,3,41468,3,1672319409),(137330,3,41469,3,1672319409),(137331,3,41480,3,1672319409),(137332,3,41481,3,1672319409),(137333,3,41482,3,1672319409),(137334,3,41483,3,1672319409),(137335,3,41484,3,1672319409),(137336,3,41485,3,1672319409),(137337,3,41486,3,1672319409),(137338,3,41487,3,1672319409),(137339,3,41488,3,1672319409),(137340,3,41489,3,1672319409),(137341,3,41490,3,1672319409),(137342,3,41501,3,1672319409),(137343,3,41502,3,1672319409),(137344,3,41503,3,1672319409),(137345,3,41504,3,1672319409),(137346,3,41505,3,1672319409),(137347,3,41506,3,1672319409),(137348,3,41507,3,1672319409),(137349,3,41508,3,1672319409),(137350,3,41509,3,1672319409),(137351,3,41510,3,1672319409),(137352,3,41511,3,1672319409),(137353,3,41522,3,1672319409),(137354,3,41523,3,1672319409),(137355,3,41524,3,1672319409),(137356,3,41525,3,1672319409),(137357,3,41526,3,1672319409),(137358,3,41527,3,1672319409),(137359,3,41528,3,1672319409),(137360,3,41529,3,1672319409),(137361,3,41530,3,1672319409),(137362,3,41531,3,1672319409),(137363,3,41532,3,1672319409),(137364,3,41543,3,1672319409),(137365,3,41544,3,1672319409),(137366,3,41545,3,1672319409),(137367,3,41546,3,1672319409),(137368,3,41547,3,1672319409),(137369,3,41548,3,1672319409),(137370,3,41549,3,1672319409),(137371,3,41550,3,1672319409),(137372,3,41551,3,1672319409),(137373,3,41552,3,1672319409),(137374,3,41553,3,1672319409),(137375,3,41564,3,1672319409),(137376,3,41565,3,1672319409),(137377,3,41566,3,1672319409),(137378,3,41567,3,1672319409),(137379,3,41568,3,1672319409),(137380,3,41569,3,1672319409),(137381,3,41570,3,1672319409),(137382,3,41571,3,1672319409),(137383,3,41572,3,1672319409),(137384,3,41573,3,1672319409),(137385,3,41574,3,1672319409),(137386,3,41585,3,1672319409),(137387,3,41586,3,1672319409),(137388,3,41587,3,1672319409),(137389,3,41588,3,1672319409),(137390,3,41589,3,1672319409),(137391,3,41590,3,1672319409),(137392,3,41591,3,1672319409),(137393,3,41592,3,1672319409),(137394,3,41593,3,1672319409),(137395,3,41594,3,1672319409),(137396,3,41595,3,1672319409),(137397,3,41900,3,1672319409),(137398,3,41901,3,1672319409),(137399,3,41902,3,1672319409),(137400,3,41903,3,1672319409),(137401,3,41904,3,1672319409),(137402,3,41905,3,1672319409),(137403,3,41906,3,1672319409),(137404,3,41907,3,1672319409),(137405,3,41908,3,1672319409),(137406,3,41909,3,1672319409),(137407,3,41910,3,1672319409),(137408,3,41921,3,1672319409),(137409,3,41922,3,1672319409),(137410,3,41923,3,1672319409),(137411,3,41924,3,1672319409),(137412,3,41925,3,1672319409),(137413,3,41926,3,1672319409),(137414,3,41927,3,1672319409),(137415,3,41928,3,1672319409),(137416,3,41929,3,1672319409),(137417,3,41930,3,1672319409),(137418,3,41931,3,1672319409),(137419,3,41942,3,1672319409),(137420,3,41943,3,1672319409),(137421,3,41944,3,1672319409),(137422,3,41945,3,1672319409),(137423,3,41946,3,1672319409),(137424,3,41947,3,1672319409),(137425,3,41948,3,1672319409),(137426,3,41949,3,1672319409),(137427,3,41950,3,1672319409),(137428,3,41951,3,1672319409),(137429,3,41952,3,1672319409),(137430,3,41963,3,1672319409),(137431,3,41964,3,1672319409),(137432,3,41965,3,1672319409),(137433,3,41966,3,1672319409),(137434,3,41967,3,1672319409),(137435,3,41968,3,1672319409),(137436,3,41969,3,1672319409),(137437,3,41970,3,1672319409),(137438,3,41971,3,1672319409),(137439,3,41972,3,1672319409),(137440,3,41973,3,1672319409),(137441,3,41984,3,1672319409),(137442,3,41985,3,1672319409),(137443,3,41986,3,1672319409),(137444,3,41987,3,1672319409),(137445,3,41988,3,1672319409),(137446,3,41989,3,1672319409),(137447,3,41990,3,1672319409),(137448,3,41991,3,1672319409),(137449,3,41992,3,1672319409),(137450,3,41993,3,1672319409),(137451,3,41994,3,1672319409),(137452,3,42068,3,1672319409),(137453,3,42069,3,1672319409),(137454,3,42070,3,1672319409),(137455,3,42071,3,1672319409),(137456,3,42072,3,1672319409),(137457,3,42073,3,1672319409),(137458,3,42074,3,1672319409),(137459,3,42075,3,1672319409),(137460,3,42076,3,1672319409),(137461,3,42077,3,1672319409),(137462,3,42078,3,1672319409),(137463,3,42443,3,1672319409),(137464,3,42444,3,1672319409),(137465,3,42445,3,1672319409),(137466,3,42446,3,1672319409),(137467,3,43077,3,1672319409),(137468,3,43793,3,1672319409),(137469,3,43794,3,1672319409),(137470,3,43795,3,1672319409),(137471,3,43796,3,1672319409),(137472,3,43797,3,1672319409),(137473,3,43798,3,1672319409),(137474,3,43799,3,1672319409),(137475,3,43800,3,1672319409),(137476,3,43801,3,1672319409),(137477,3,43802,3,1672319409),(137478,3,43803,3,1672319409),(137479,3,43804,3,1672319409),(137480,3,43805,3,1672319409),(137481,3,43806,3,1672319409),(137482,3,43807,3,1672319409),(137483,3,43808,3,1672319409),(137484,3,43809,3,1672319409),(137485,3,43810,3,1672319409),(137486,3,43811,3,1672319409),(137487,3,43812,3,1672319409),(137488,3,43813,3,1672319409),(137489,3,43814,3,1672319409),(137490,3,43815,3,1672319409),(137491,3,43816,3,1672319409),(137492,3,43817,3,1672319409),(137493,3,43818,3,1672319409),(137494,3,43819,3,1672319409),(137495,3,43820,3,1672319409),(137496,3,43821,3,1672319409),(137497,3,43822,3,1672319409),(137498,3,43823,3,1672319409),(137499,3,43824,3,1672319409),(137500,3,43825,3,1672319409),(137501,3,43840,3,1672319409),(137502,3,43841,3,1672319409),(137503,3,43842,3,1672319409),(137504,3,43843,3,1672319409),(137505,3,43844,3,1672319409),(137506,3,43848,3,1672319409),(137507,3,44445,3,1672319409),(137508,1,10079,3,1672319409),(137509,1,10233,3,1672319409),(137510,1,10251,3,1672319409),(137511,1,10268,3,1672319409),(137512,1,10274,3,1672319409),(137513,1,10276,3,1672319409),(137514,1,10319,3,1672319409),(137515,1,10340,3,1672319409),(137516,1,10341,3,1672319409),(137517,1,10342,3,1672319409),(137518,1,10360,3,1672319409),(137519,1,10361,3,1672319409),(137520,1,10382,3,1672319409),(137521,1,10449,3,1672319409),(137522,1,10450,3,1672319409),(137523,1,10451,3,1672319409),(137524,1,10452,3,1672319409),(137525,1,10453,3,1672319409),(137526,1,10454,3,1672319409),(137527,1,10455,3,1672319409),(137528,1,10456,3,1672319409),(137529,1,10457,3,1672319409),(137530,1,10458,3,1672319409),(137531,1,10459,3,1672319409),(137532,1,10460,3,1672319409),(137533,1,10461,3,1672319409),(137534,1,10462,3,1672319409),(137535,1,10463,3,1672319409),(137536,1,10464,3,1672319409),(137537,1,10465,3,1672319409),(137538,1,10466,3,1672319409),(137539,1,10467,3,1672319409),(137540,1,10468,3,1672319409),(137541,1,10469,3,1672319409),(137542,1,10470,3,1672319409),(137543,1,10471,3,1672319409),(137544,1,10472,3,1672319409),(137545,1,10473,3,1672319409),(137546,1,10474,3,1672319409),(137547,1,10475,3,1672319409),(137548,1,10476,3,1672319409),(137549,1,10477,3,1672319409),(137550,1,10478,3,1672319409),(137551,1,10479,3,1672319409),(137552,1,10480,3,1672319409),(137553,1,10495,3,1672319409),(137554,1,10496,3,1672319409),(137555,1,10497,3,1672319409),(137556,1,10498,3,1672319409),(137557,1,10499,3,1672319409),(137558,3,22868,2,1672319414),(137559,3,22869,2,1672319414),(137560,3,22870,2,1672319414),(137561,3,22871,2,1672319414),(137562,3,22872,2,1672319414),(137563,3,23075,2,1672319414),(137564,3,23076,2,1672319414),(137565,3,27940,2,1672319414),(137566,3,27941,2,1672319414),(137567,3,27942,2,1672319414),(137568,3,27943,2,1672319414),(137569,3,30474,2,1672319414),(137570,3,30475,2,1672319414),(137571,3,30476,2,1672319414),(137572,3,30477,2,1672319414),(137573,3,30478,2,1672319414),(137574,3,30522,2,1672319414),(137575,3,30523,2,1672319414),(137576,3,30524,2,1672319414),(137577,3,30525,2,1672319414),(137578,3,30526,2,1672319414),(137579,3,30680,2,1672319414),(137580,3,30681,2,1672319414),(137581,3,30682,2,1672319414),(137582,3,30683,2,1672319414),(137583,3,30684,2,1672319414),(137584,3,31128,2,1672319414),(137585,3,31129,2,1672319414),(137586,3,31130,2,1672319414),(137587,3,31132,2,1672319414),(137588,3,31133,2,1672319414),(137589,3,31134,2,1672319414),(137590,3,31135,2,1672319414),(137591,3,31136,2,1672319414),(137592,3,31137,2,1672319414),(137593,3,31138,2,1672319414),(137594,3,31139,2,1672319414),(137595,3,31140,2,1672319414),(137596,3,31141,2,1672319414),(137597,3,31142,2,1672319414),(137598,3,31143,2,1672319414),(137599,3,31144,2,1672319414),(137600,3,31145,2,1672319414),(137601,3,31146,2,1672319414),(137602,3,31147,2,1672319414),(137603,3,31148,2,1672319414),(137604,3,31149,2,1672319414),(137605,3,31150,2,1672319414),(137606,3,31151,2,1672319414),(137607,3,31152,2,1672319414),(137608,3,31153,2,1672319414),(137609,3,31154,2,1672319414),(137610,3,31155,2,1672319414),(137611,3,31156,2,1672319414),(137612,3,31157,2,1672319414),(137613,3,31158,2,1672319414),(137614,3,31161,2,1672319414),(137615,3,31162,2,1672319414),(137616,3,31163,2,1672319414),(137617,3,31164,2,1672319414),(137618,3,31165,2,1672319414),(137619,3,31166,2,1672319414),(137620,3,31167,2,1672319414),(137621,3,31258,2,1672319414),(137622,3,31259,2,1672319414),(137623,3,31260,2,1672319414),(137624,3,31261,2,1672319414),(137625,3,31262,2,1672319414),(137626,3,31263,2,1672319414),(137627,3,31264,2,1672319414),(137628,3,31265,2,1672319414),(137629,3,31266,2,1672319414),(137630,3,31267,2,1672319414),(137631,3,31268,2,1672319414),(137632,3,31269,2,1672319414),(137633,3,31270,2,1672319414),(137634,3,31271,2,1672319414),(137635,3,31272,2,1672319414),(137636,3,31273,2,1672319414),(137637,3,31766,2,1672319414),(137638,3,31767,2,1672319414),(137639,3,31768,2,1672319414),(137640,3,31769,2,1672319414),(137641,3,31770,2,1672319414),(137642,3,31771,2,1672319414),(137643,3,31772,2,1672319414),(137644,3,31773,2,1672319414),(137645,3,31774,2,1672319414),(137646,3,31775,2,1672319414),(137647,3,31776,2,1672319414),(137648,3,31777,2,1672319414),(137649,3,31778,2,1672319414),(137650,3,31779,2,1672319414),(137651,3,31780,2,1672319414),(137652,3,31781,2,1672319414),(137653,3,32405,2,1672319414),(137654,3,32406,2,1672319414),(137655,3,32407,2,1672319414),(137656,3,32408,2,1672319414),(137657,3,32409,2,1672319414),(137658,3,32410,2,1672319414),(137659,3,32411,2,1672319414),(137660,3,32412,2,1672319414),(137661,3,32413,2,1672319414),(137662,3,32414,2,1672319414),(137663,3,32415,2,1672319414),(137664,3,32416,2,1672319414),(137665,3,32417,2,1672319414),(137666,3,32418,2,1672319414),(137667,3,32419,2,1672319414),(137668,3,32420,2,1672319414),(137669,3,32421,2,1672319414),(137670,3,32422,2,1672319414),(137671,3,32423,2,1672319414),(137672,3,32424,2,1672319414),(137673,3,32425,2,1672319414),(137674,3,32426,2,1672319414),(137675,3,32427,2,1672319414),(137676,3,32428,2,1672319414),(137677,3,32429,2,1672319414),(137678,3,32430,2,1672319414),(137679,3,32431,2,1672319414),(137680,3,32432,2,1672319414),(137681,3,32433,2,1672319414),(137682,3,32434,2,1672319414),(137683,3,33134,2,1672319414),(137684,3,33135,2,1672319414),(137685,3,33136,2,1672319414),(137686,3,33137,2,1672319414),(137687,3,33138,2,1672319414),(137688,3,33139,2,1672319414),(137689,3,33148,2,1672319414),(137690,3,33149,2,1672319414),(137691,3,33150,2,1672319414),(137692,3,33151,2,1672319414),(137693,3,33152,2,1672319414),(137694,3,33153,2,1672319414),(137695,3,33162,2,1672319414),(137696,3,33163,2,1672319414),(137697,3,33164,2,1672319414),(137698,3,33165,2,1672319414),(137699,3,33166,2,1672319414),(137700,3,33167,2,1672319414),(137701,3,33168,2,1672319414),(137702,3,33169,2,1672319414),(137703,3,33170,2,1672319414),(137704,3,33171,2,1672319414),(137705,3,33206,2,1672319414),(137706,3,33226,2,1672319414),(137707,3,33249,2,1672319414),(137708,3,33258,2,1672319414),(137709,3,33277,2,1672319414),(137710,3,33296,2,1672319414),(137711,3,33312,2,1672319414),(137712,3,33313,2,1672319414),(137713,3,33314,2,1672319414),(137714,3,33315,2,1672319414),(137715,3,33316,2,1672319414),(137716,3,33317,2,1672319414),(137717,3,33318,2,1672319414),(137718,3,33319,2,1672319414),(137719,3,33320,2,1672319414),(137720,3,33357,2,1672319414),(137721,3,33358,2,1672319414),(137722,3,33359,2,1672319414),(137723,3,33360,2,1672319414),(137724,3,33361,2,1672319414),(137725,3,33362,2,1672319414),(137726,3,33363,2,1672319414),(137727,3,33364,2,1672319414),(137728,3,33365,2,1672319414),(137729,3,33366,2,1672319414),(137730,3,33367,2,1672319414),(137731,3,33368,2,1672319414),(137732,3,33369,2,1672319414),(137733,3,33370,2,1672319414),(137734,3,33371,2,1672319414),(137735,3,33372,2,1672319414),(137736,3,33373,2,1672319414),(137737,3,33374,2,1672319414),(137738,3,33375,2,1672319414),(137739,3,33376,2,1672319414),(137740,3,33377,2,1672319414),(137741,3,33378,2,1672319414),(137742,3,33379,2,1672319414),(137743,3,33380,2,1672319414),(137744,3,33381,2,1672319414),(137745,3,33382,2,1672319414),(137746,3,33383,2,1672319414),(137747,3,33384,2,1672319414),(137748,3,33385,2,1672319414),(137749,3,33386,2,1672319414),(137750,3,33387,2,1672319414),(137751,3,33388,2,1672319414),(137752,3,33812,2,1672319414),(137753,3,33813,2,1672319414),(137754,3,33814,2,1672319414),(137755,3,33815,2,1672319414),(137756,3,33816,2,1672319414),(137757,3,33817,2,1672319414),(137758,3,33818,2,1672319414),(137759,3,33819,2,1672319414),(137760,3,33820,2,1672319414),(137761,3,33821,2,1672319414),(137762,3,33822,2,1672319414),(137763,3,33823,2,1672319414),(137764,3,33824,2,1672319414),(137765,3,33825,2,1672319414),(137766,3,33826,2,1672319414),(137767,3,33827,2,1672319414),(137768,3,33828,2,1672319414),(137769,3,33829,2,1672319414),(137770,3,33830,2,1672319414),(137771,3,33831,2,1672319414),(137772,3,33832,2,1672319414),(137773,3,33833,2,1672319414),(137774,3,33834,2,1672319414),(137775,3,33835,2,1672319414),(137776,3,33836,2,1672319414),(137777,3,33837,2,1672319414),(137778,3,33838,2,1672319414),(137779,3,33839,2,1672319414),(137780,3,33840,2,1672319414),(137781,3,33841,2,1672319414),(137782,3,33842,2,1672319414),(137783,3,33843,2,1672319414),(137784,3,33844,2,1672319414),(137785,3,33845,2,1672319414),(137786,3,33846,2,1672319414),(137787,3,33847,2,1672319414),(137788,3,33848,2,1672319414),(137789,3,33849,2,1672319414),(137790,3,33850,2,1672319414),(137791,3,33851,2,1672319414),(137792,3,33852,2,1672319414),(137793,3,33853,2,1672319414),(137794,3,33854,2,1672319414),(137795,3,33855,2,1672319414),(137796,3,33856,2,1672319414),(137797,3,33857,2,1672319414),(137798,3,33858,2,1672319414),(137799,3,33859,2,1672319414),(137800,3,33860,2,1672319414),(137801,3,33861,2,1672319414),(137802,3,33862,2,1672319414),(137803,3,33863,2,1672319414),(137804,3,33864,2,1672319414),(137805,3,33865,2,1672319414),(137806,3,33866,2,1672319414),(137807,3,33867,2,1672319414),(137808,3,33868,2,1672319414),(137809,3,33869,2,1672319414),(137810,3,33870,2,1672319414),(137811,3,33871,2,1672319414),(137812,3,33872,2,1672319414),(137813,3,33873,2,1672319414),(137814,3,33874,2,1672319414),(137815,3,33875,2,1672319414),(137816,3,33876,2,1672319414),(137817,3,33877,2,1672319414),(137818,3,33878,2,1672319414),(137819,3,33879,2,1672319414),(137820,3,33880,2,1672319414),(137821,3,33881,2,1672319414),(137822,3,33882,2,1672319414),(137823,3,33883,2,1672319414),(137824,3,33884,2,1672319414),(137825,3,33885,2,1672319414),(137826,3,33924,2,1672319414),(137827,3,33925,2,1672319414),(137828,3,33926,2,1672319414),(137829,3,33927,2,1672319414),(137830,3,33928,2,1672319414),(137831,3,33929,2,1672319414),(137832,3,33930,2,1672319414),(137833,3,33931,2,1672319414),(137834,3,33932,2,1672319414),(137835,3,33933,2,1672319414),(137836,3,33934,2,1672319414),(137837,3,33935,2,1672319414),(137838,3,33936,2,1672319414),(137839,3,33937,2,1672319414),(137840,3,33938,2,1672319414),(137841,3,33939,2,1672319414),(137842,3,33940,2,1672319414),(137843,3,33941,2,1672319414),(137844,3,33942,2,1672319414),(137845,3,33943,2,1672319414),(137846,3,34269,2,1672319414),(137847,3,34270,2,1672319414),(137848,3,34271,2,1672319414),(137849,3,34272,2,1672319414),(137850,3,34273,2,1672319414),(137851,3,34274,2,1672319414),(137852,3,34275,2,1672319414),(137853,3,34276,2,1672319414),(137854,3,34277,2,1672319414),(137855,3,34278,2,1672319414),(137856,3,34279,2,1672319414),(137857,3,34280,2,1672319414),(137858,3,34281,2,1672319414),(137859,3,34282,2,1672319414),(137860,3,34283,2,1672319414),(137861,3,34284,2,1672319414),(137862,3,34285,2,1672319414),(137863,3,34286,2,1672319414),(137864,3,34287,2,1672319414),(137865,3,34288,2,1672319414),(137866,3,34289,2,1672319414),(137867,3,34290,2,1672319414),(137868,3,34291,2,1672319414),(137869,3,34292,2,1672319414),(137870,3,34293,2,1672319414),(137871,3,34294,2,1672319414),(137872,3,34295,2,1672319414),(137873,3,34296,2,1672319414),(137874,3,34297,2,1672319414),(137875,3,34298,2,1672319414),(137876,3,34299,2,1672319414),(137877,3,34300,2,1672319414),(137878,3,34301,2,1672319414),(137879,3,34302,2,1672319414),(137880,3,34303,2,1672319414),(137881,3,34304,2,1672319414),(137882,3,34305,2,1672319414),(137883,3,34306,2,1672319414),(137884,3,34307,2,1672319414),(137885,3,34308,2,1672319414),(137886,3,34309,2,1672319414),(137887,3,34310,2,1672319414),(137888,3,34311,2,1672319414),(137889,3,34312,2,1672319414),(137890,3,34313,2,1672319414),(137891,3,34325,2,1672319414),(137892,3,34326,2,1672319414),(137893,3,34327,2,1672319414),(137894,3,34328,2,1672319414),(137895,3,34329,2,1672319414),(137896,3,34330,2,1672319414),(137897,3,34331,2,1672319414),(137898,3,34332,2,1672319414),(137899,3,34333,2,1672319414),(137900,3,34334,2,1672319414),(137901,3,34335,2,1672319414),(137902,3,35185,2,1672319414),(137903,3,35186,2,1672319414),(137904,3,35187,2,1672319414),(137905,3,35188,2,1672319414),(137906,3,35189,2,1672319414),(137907,3,35190,2,1672319414),(137908,3,35191,2,1672319414),(137909,3,35192,2,1672319414),(137910,3,35193,2,1672319414),(137911,3,35194,2,1672319414),(137912,3,35195,2,1672319414),(137913,3,35196,2,1672319414),(137914,3,35197,2,1672319414),(137915,3,35198,2,1672319414),(137916,3,35199,2,1672319414),(137917,3,35200,2,1672319414),(137918,3,35201,2,1672319414),(137919,3,35202,2,1672319414),(137920,3,35203,2,1672319414),(137921,3,35204,2,1672319414),(137922,3,35205,2,1672319414),(137923,3,35206,2,1672319414),(137924,3,35207,2,1672319414),(137925,3,35208,2,1672319414),(137926,3,35209,2,1672319414),(137927,3,35210,2,1672319414),(137928,3,35211,2,1672319414),(137929,3,35212,2,1672319414),(137930,3,35213,2,1672319414),(137931,3,35214,2,1672319414),(137932,3,35215,2,1672319414),(137933,3,35216,2,1672319414),(137934,3,35217,2,1672319414),(137935,3,35218,2,1672319414),(137936,3,35219,2,1672319414),(137937,3,35220,2,1672319414),(137938,3,35221,2,1672319414),(137939,3,35222,2,1672319414),(137940,3,35223,2,1672319414),(137941,3,35224,2,1672319414),(137942,3,35225,2,1672319414),(137943,3,35226,2,1672319414),(137944,3,35227,2,1672319414),(137945,3,35228,2,1672319414),(137946,3,35229,2,1672319414),(137947,3,35230,2,1672319414),(137948,3,35231,2,1672319414),(137949,3,35232,2,1672319414),(137950,3,35233,2,1672319414),(137951,3,35234,2,1672319414),(137952,3,35235,2,1672319414),(137953,3,35236,2,1672319414),(137954,3,35237,2,1672319414),(137955,3,35238,2,1672319414),(137956,3,35239,2,1672319414),(137957,3,35240,2,1672319414),(137958,3,35241,2,1672319414),(137959,3,35242,2,1672319414),(137960,3,35243,2,1672319414),(137961,3,35244,2,1672319414),(137962,3,35245,2,1672319414),(137963,3,35246,2,1672319414),(137964,3,35247,2,1672319414),(137965,3,35248,2,1672319414),(137966,3,35249,2,1672319414),(137967,3,35250,2,1672319414),(137968,3,35251,2,1672319414),(137969,3,35252,2,1672319414),(137970,3,35253,2,1672319414),(137971,3,35254,2,1672319414),(137972,3,35255,2,1672319414),(137973,3,35256,2,1672319414),(137974,3,35257,2,1672319414),(137975,3,35258,2,1672319414),(137976,3,35259,2,1672319414),(137977,3,35260,2,1672319414),(137978,3,35261,2,1672319414),(137979,3,38589,2,1672319414),(137980,3,38590,2,1672319414),(137981,3,38591,2,1672319414),(137982,3,38592,2,1672319414),(137983,3,38593,2,1672319414),(137984,3,38594,2,1672319414),(137985,3,38595,2,1672319414),(137986,3,38596,2,1672319414),(137987,3,38597,2,1672319414),(137988,3,38598,2,1672319414),(137989,3,38599,2,1672319414),(137990,3,38600,2,1672319414),(137991,3,38601,2,1672319414),(137992,3,38602,2,1672319414),(137993,3,38603,2,1672319414),(137994,3,38604,2,1672319414),(137995,3,38605,2,1672319414),(137996,3,38606,2,1672319414),(137997,3,38607,2,1672319414),(137998,3,38643,2,1672319414),(137999,3,38644,2,1672319414),(138000,3,38645,2,1672319414),(138001,3,38646,2,1672319414),(138002,3,38647,2,1672319414),(138003,3,38648,2,1672319414),(138004,3,38649,2,1672319414),(138005,3,38650,2,1672319414),(138006,3,38651,2,1672319414),(138007,3,38652,2,1672319414),(138008,3,38653,2,1672319414),(138009,3,38654,2,1672319414),(138010,3,38655,2,1672319414),(138011,3,38656,2,1672319414),(138012,3,38657,2,1672319414),(138013,3,38658,2,1672319414),(138014,3,38659,2,1672319414),(138015,3,38660,2,1672319414),(138016,3,38661,2,1672319414),(138017,3,38697,2,1672319414),(138018,3,38698,2,1672319414),(138019,3,38699,2,1672319414),(138020,3,38700,2,1672319414),(138021,3,38701,2,1672319414),(138022,3,38702,2,1672319414),(138023,3,38703,2,1672319414),(138024,3,38704,2,1672319414),(138025,3,38705,2,1672319414),(138026,3,38706,2,1672319414),(138027,3,38707,2,1672319414),(138028,3,38708,2,1672319414),(138029,3,38709,2,1672319414),(138030,3,38710,2,1672319414),(138031,3,38711,2,1672319414),(138032,3,38712,2,1672319414),(138033,3,38713,2,1672319414),(138034,3,38714,2,1672319414),(138035,3,38715,2,1672319414),(138036,3,38751,2,1672319414),(138037,3,38752,2,1672319414),(138038,3,38753,2,1672319414),(138039,3,38754,2,1672319414),(138040,3,38755,2,1672319414),(138041,3,38756,2,1672319414),(138042,3,38757,2,1672319414),(138043,3,38758,2,1672319414),(138044,3,38759,2,1672319414),(138045,3,38760,2,1672319414),(138046,3,38761,2,1672319414),(138047,3,38762,2,1672319414),(138048,3,38763,2,1672319414),(138049,3,38764,2,1672319414),(138050,3,38765,2,1672319414),(138051,3,38766,2,1672319414),(138052,3,38767,2,1672319414),(138053,3,38768,2,1672319414),(138054,3,38769,2,1672319414),(138055,3,38805,2,1672319414),(138056,3,38806,2,1672319414),(138057,3,38807,2,1672319414),(138058,3,38808,2,1672319414),(138059,3,38809,2,1672319414),(138060,3,38810,2,1672319414),(138061,3,38811,2,1672319414),(138062,3,38812,2,1672319414),(138063,3,38813,2,1672319414),(138064,3,38814,2,1672319414),(138065,3,38815,2,1672319414),(138066,3,38816,2,1672319414),(138067,3,38817,2,1672319414),(138068,3,38818,2,1672319414),(138069,3,38819,2,1672319414),(138070,3,38820,2,1672319414),(138071,3,38821,2,1672319414),(138072,3,38822,2,1672319414),(138073,3,38823,2,1672319414),(138074,3,38859,2,1672319414),(138075,3,38860,2,1672319414),(138076,3,38861,2,1672319414),(138077,3,38862,2,1672319414),(138078,3,38863,2,1672319414),(138079,3,38864,2,1672319414),(138080,3,38865,2,1672319414),(138081,3,38866,2,1672319414),(138082,3,38867,2,1672319414),(138083,3,38868,2,1672319414),(138084,3,38869,2,1672319414),(138085,3,38870,2,1672319414),(138086,3,38871,2,1672319414),(138087,3,38872,2,1672319414),(138088,3,38873,2,1672319414),(138089,3,38874,2,1672319414),(138090,3,38875,2,1672319414),(138091,3,38876,2,1672319414),(138092,3,38877,2,1672319414),(138093,3,38913,2,1672319414),(138094,3,38914,2,1672319414),(138095,3,38915,2,1672319414),(138096,3,38916,2,1672319414),(138097,3,38917,2,1672319414),(138098,3,38918,2,1672319414),(138099,3,38919,2,1672319414),(138100,3,38920,2,1672319414),(138101,3,38921,2,1672319414),(138102,3,38922,2,1672319414),(138103,3,38923,2,1672319414),(138104,3,38924,2,1672319414),(138105,3,38925,2,1672319414),(138106,3,38926,2,1672319414),(138107,3,38927,2,1672319414),(138108,3,38928,2,1672319414),(138109,3,38929,2,1672319414),(138110,3,38930,2,1672319414),(138111,3,38931,2,1672319414),(138112,3,38967,2,1672319414),(138113,3,38968,2,1672319414),(138114,3,38969,2,1672319414),(138115,3,38970,2,1672319414),(138116,3,38971,2,1672319414),(138117,3,38972,2,1672319414),(138118,3,38973,2,1672319414),(138119,3,38974,2,1672319414),(138120,3,38975,2,1672319414),(138121,3,38976,2,1672319414),(138122,3,38977,2,1672319414),(138123,3,38978,2,1672319414),(138124,3,38979,2,1672319414),(138125,3,38980,2,1672319414),(138126,3,38981,2,1672319414),(138127,3,38982,2,1672319414),(138128,3,38983,2,1672319414),(138129,3,38984,2,1672319414),(138130,3,38985,2,1672319414),(138131,3,39021,2,1672319414),(138132,3,39022,2,1672319414),(138133,3,39023,2,1672319414),(138134,3,39024,2,1672319414),(138135,3,39025,2,1672319414),(138136,3,39026,2,1672319414),(138137,3,39027,2,1672319414),(138138,3,39028,2,1672319414),(138139,3,39029,2,1672319414),(138140,3,39030,2,1672319414),(138141,3,39031,2,1672319414),(138142,3,39032,2,1672319414),(138143,3,39033,2,1672319414),(138144,3,39034,2,1672319414),(138145,3,39035,2,1672319414),(138146,3,39036,2,1672319414),(138147,3,39037,2,1672319414),(138148,3,39038,2,1672319414),(138149,3,39039,2,1672319414),(138150,3,39075,2,1672319414),(138151,3,39076,2,1672319414),(138152,3,39077,2,1672319414),(138153,3,39078,2,1672319414),(138154,3,39079,2,1672319414),(138155,3,39080,2,1672319414),(138156,3,39081,2,1672319414),(138157,3,39082,2,1672319414),(138158,3,39083,2,1672319414),(138159,3,39084,2,1672319414),(138160,3,39085,2,1672319414),(138161,3,39086,2,1672319414),(138162,3,39087,2,1672319414),(138163,3,39088,2,1672319414),(138164,3,39089,2,1672319414),(138165,3,39090,2,1672319414),(138166,3,39091,2,1672319414),(138167,3,39092,2,1672319414),(138168,3,39093,2,1672319414),(138169,3,39129,2,1672319414),(138170,3,39130,2,1672319414),(138171,3,39131,2,1672319414),(138172,3,39132,2,1672319414),(138173,3,39133,2,1672319414),(138174,3,39134,2,1672319414),(138175,3,39135,2,1672319414),(138176,3,39136,2,1672319414),(138177,3,39137,2,1672319414),(138178,3,39138,2,1672319414),(138179,3,39139,2,1672319414),(138180,3,39140,2,1672319414),(138181,3,39141,2,1672319414),(138182,3,39142,2,1672319414),(138183,3,39143,2,1672319414),(138184,3,39144,2,1672319414),(138185,3,39145,2,1672319414),(138186,3,39146,2,1672319414),(138187,3,39147,2,1672319414),(138188,3,39183,2,1672319414),(138189,3,39184,2,1672319414),(138190,3,39185,2,1672319414),(138191,3,39186,2,1672319414),(138192,3,39187,2,1672319414),(138193,3,39188,2,1672319414),(138194,3,39189,2,1672319414),(138195,3,39190,2,1672319414),(138196,3,39191,2,1672319414),(138197,3,39192,2,1672319414),(138198,3,39193,2,1672319414),(138199,3,39194,2,1672319414),(138200,3,39195,2,1672319414),(138201,3,39196,2,1672319414),(138202,3,39197,2,1672319414),(138203,3,39198,2,1672319414),(138204,3,39199,2,1672319414),(138205,3,39200,2,1672319414),(138206,3,39201,2,1672319414),(138207,3,39237,2,1672319414),(138208,3,39238,2,1672319414),(138209,3,39239,2,1672319414),(138210,3,39240,2,1672319414),(138211,3,39241,2,1672319414),(138212,3,39242,2,1672319414),(138213,3,39243,2,1672319414),(138214,3,39244,2,1672319414),(138215,3,39245,2,1672319414),(138216,3,39246,2,1672319414),(138217,3,39247,2,1672319414),(138218,3,39248,2,1672319414),(138219,3,39249,2,1672319414),(138220,3,39250,2,1672319414),(138221,3,39251,2,1672319414),(138222,3,39252,2,1672319414),(138223,3,39253,2,1672319414),(138224,3,39254,2,1672319414),(138225,3,39255,2,1672319414),(138226,3,39291,2,1672319414),(138227,3,39292,2,1672319414),(138228,3,39293,2,1672319414),(138229,3,39294,2,1672319414),(138230,3,39295,2,1672319414),(138231,3,39296,2,1672319414),(138232,3,39297,2,1672319414),(138233,3,39298,2,1672319414),(138234,3,39299,2,1672319414),(138235,3,39300,2,1672319414),(138236,3,39301,2,1672319414),(138237,3,39302,2,1672319414),(138238,3,39303,2,1672319414),(138239,3,39304,2,1672319414),(138240,3,39305,2,1672319414),(138241,3,39306,2,1672319414),(138242,3,39307,2,1672319414),(138243,3,39308,2,1672319414),(138244,3,39309,2,1672319414),(138245,3,39615,2,1672319414),(138246,3,39616,2,1672319414),(138247,3,39617,2,1672319414),(138248,3,39618,2,1672319414),(138249,3,39619,2,1672319414),(138250,3,39620,2,1672319414),(138251,3,39621,2,1672319414),(138252,3,39622,2,1672319414),(138253,3,39623,2,1672319414),(138254,3,39624,2,1672319414),(138255,3,39625,2,1672319414),(138256,3,39626,2,1672319414),(138257,3,39627,2,1672319414),(138258,3,39628,2,1672319414),(138259,3,39629,2,1672319414),(138260,3,39630,2,1672319414),(138261,3,39631,2,1672319414),(138262,3,39632,2,1672319414),(138263,3,39633,2,1672319414),(138264,3,39669,2,1672319414),(138265,3,39670,2,1672319414),(138266,3,39671,2,1672319414),(138267,3,39672,2,1672319414),(138268,3,39673,2,1672319414),(138269,3,39674,2,1672319414),(138270,3,39675,2,1672319414),(138271,3,39676,2,1672319414),(138272,3,39677,2,1672319414),(138273,3,39678,2,1672319414),(138274,3,39679,2,1672319414),(138275,3,39680,2,1672319414),(138276,3,39681,2,1672319414),(138277,3,39682,2,1672319414),(138278,3,39683,2,1672319414),(138279,3,39684,2,1672319414),(138280,3,39685,2,1672319414),(138281,3,39686,2,1672319414),(138282,3,39687,2,1672319414),(138283,3,39723,2,1672319414),(138284,3,39724,2,1672319414),(138285,3,39725,2,1672319414),(138286,3,39726,2,1672319414),(138287,3,39727,2,1672319414),(138288,3,39728,2,1672319414),(138289,3,39729,2,1672319414),(138290,3,39730,2,1672319414),(138291,3,39731,2,1672319414),(138292,3,39732,2,1672319414),(138293,3,39733,2,1672319414),(138294,3,39734,2,1672319414),(138295,3,39735,2,1672319414),(138296,3,39736,2,1672319414),(138297,3,39737,2,1672319414),(138298,3,39738,2,1672319414),(138299,3,39739,2,1672319414),(138300,3,39740,2,1672319414),(138301,3,39741,2,1672319414),(138302,3,40147,2,1672319414),(138303,3,40148,2,1672319414),(138304,3,40149,2,1672319414),(138305,3,40150,2,1672319414),(138306,3,40151,2,1672319414),(138307,3,40152,2,1672319414),(138308,3,40153,2,1672319414),(138309,3,40154,2,1672319414),(138310,3,40155,2,1672319414),(138311,3,40156,2,1672319414),(138312,3,40157,2,1672319414),(138313,3,40158,2,1672319414),(138314,3,40159,2,1672319414),(138315,3,40160,2,1672319414),(138316,3,40161,2,1672319414),(138317,3,40162,2,1672319414),(138318,3,40163,2,1672319414),(138319,3,40164,2,1672319414),(138320,3,40165,2,1672319414),(138321,3,40166,2,1672319414),(138322,3,40167,2,1672319414),(138323,3,40168,2,1672319414),(138324,3,40169,2,1672319414),(138325,3,40170,2,1672319414),(138326,3,40171,2,1672319414),(138327,3,40172,2,1672319414),(138328,3,40811,2,1672319414),(138329,3,40812,2,1672319414),(138330,3,40813,2,1672319414),(138331,3,40814,2,1672319414),(138332,3,40815,2,1672319414),(138333,3,40816,2,1672319414),(138334,3,40817,2,1672319414),(138335,3,40818,2,1672319414),(138336,3,40819,2,1672319414),(138337,3,40820,2,1672319414),(138338,3,41618,2,1672319414),(138339,3,41619,2,1672319414),(138340,3,41620,2,1672319414),(138341,3,41621,2,1672319414),(138342,3,41622,2,1672319414),(138343,3,41623,2,1672319414),(138344,3,41624,2,1672319414),(138345,3,41625,2,1672319414),(138346,3,41626,2,1672319414),(138347,3,41639,2,1672319414),(138348,3,41640,2,1672319414),(138349,3,41641,2,1672319414),(138350,3,41642,2,1672319414),(138351,3,41643,2,1672319414),(138352,3,41644,2,1672319414),(138353,3,41645,2,1672319414),(138354,3,41646,2,1672319414),(138355,3,41647,2,1672319414),(138356,3,41660,2,1672319414),(138357,3,41661,2,1672319414),(138358,3,41662,2,1672319414),(138359,3,41663,2,1672319414),(138360,3,41664,2,1672319414),(138361,3,41665,2,1672319414),(138362,3,41666,2,1672319414),(138363,3,41667,2,1672319414),(138364,3,41668,2,1672319414),(138365,3,41681,2,1672319414),(138366,3,41682,2,1672319414),(138367,3,41683,2,1672319414),(138368,3,41684,2,1672319414),(138369,3,41685,2,1672319414),(138370,3,41686,2,1672319414),(138371,3,41687,2,1672319414),(138372,3,41688,2,1672319414),(138373,3,41689,2,1672319414),(138374,3,41702,2,1672319414),(138375,3,41703,2,1672319414),(138376,3,41704,2,1672319414),(138377,3,41705,2,1672319414),(138378,3,41706,2,1672319414),(138379,3,41707,2,1672319414),(138380,3,41708,2,1672319414),(138381,3,41709,2,1672319414),(138382,3,41710,2,1672319414),(138383,3,41723,2,1672319414),(138384,3,41724,2,1672319414),(138385,3,41725,2,1672319414),(138386,3,41726,2,1672319414),(138387,3,41727,2,1672319414),(138388,3,41728,2,1672319414),(138389,3,41729,2,1672319414),(138390,3,41730,2,1672319414),(138391,3,41731,2,1672319414),(138392,3,41744,2,1672319414),(138393,3,41745,2,1672319414),(138394,3,41746,2,1672319414),(138395,3,41747,2,1672319414),(138396,3,41748,2,1672319414),(138397,3,41749,2,1672319414),(138398,3,41750,2,1672319414),(138399,3,41751,2,1672319414),(138400,3,41752,2,1672319414),(138401,3,41765,2,1672319414),(138402,3,41766,2,1672319414),(138403,3,41767,2,1672319414),(138404,3,41768,2,1672319414),(138405,3,41769,2,1672319414),(138406,3,41770,2,1672319414),(138407,3,41771,2,1672319414),(138408,3,41772,2,1672319414),(138409,3,41773,2,1672319414),(138410,3,41786,2,1672319414),(138411,3,41787,2,1672319414),(138412,3,41788,2,1672319414),(138413,3,41789,2,1672319414),(138414,3,41790,2,1672319414),(138415,3,41791,2,1672319414),(138416,3,41792,2,1672319414),(138417,3,41793,2,1672319414),(138418,3,41794,2,1672319414),(138419,3,41807,2,1672319414),(138420,3,41808,2,1672319414),(138421,3,41809,2,1672319414),(138422,3,41810,2,1672319414),(138423,3,41811,2,1672319414),(138424,3,41812,2,1672319414),(138425,3,41813,2,1672319414),(138426,3,41814,2,1672319414),(138427,3,41815,2,1672319414),(138428,3,41828,2,1672319414),(138429,3,41829,2,1672319414),(138430,3,41830,2,1672319414),(138431,3,41831,2,1672319414),(138432,3,41832,2,1672319414),(138433,3,41833,2,1672319414),(138434,3,41834,2,1672319414),(138435,3,41835,2,1672319414),(138436,3,41836,2,1672319414),(138437,3,41849,2,1672319414),(138438,3,41850,2,1672319414),(138439,3,41851,2,1672319414),(138440,3,41852,2,1672319414),(138441,3,41853,2,1672319414),(138442,3,41854,2,1672319414),(138443,3,41855,2,1672319414),(138444,3,41856,2,1672319414),(138445,3,41857,2,1672319414),(138446,3,41870,2,1672319414),(138447,3,41871,2,1672319414),(138448,3,41872,2,1672319414),(138449,3,41873,2,1672319414),(138450,3,41874,2,1672319414),(138451,3,41875,2,1672319414),(138452,3,41876,2,1672319414),(138453,3,41877,2,1672319414),(138454,3,41878,2,1672319414),(138455,3,41891,2,1672319414),(138456,3,41892,2,1672319414),(138457,3,41893,2,1672319414),(138458,3,41894,2,1672319414),(138459,3,41895,2,1672319414),(138460,3,41896,2,1672319414),(138461,3,41897,2,1672319414),(138462,3,41898,2,1672319414),(138463,3,41899,2,1672319414),(138464,3,42017,2,1672319414),(138465,3,42018,2,1672319414),(138466,3,42019,2,1672319414),(138467,3,42020,2,1672319414),(138468,3,42021,2,1672319414),(138469,3,42022,2,1672319414),(138470,3,42023,2,1672319414),(138471,3,42024,2,1672319414),(138472,3,42025,2,1672319414),(138473,3,42038,2,1672319414),(138474,3,42039,2,1672319414),(138475,3,42040,2,1672319414),(138476,3,42041,2,1672319414),(138477,3,42042,2,1672319414),(138478,3,42043,2,1672319414),(138479,3,42044,2,1672319414),(138480,3,42045,2,1672319414),(138481,3,42046,2,1672319414),(138482,3,42059,2,1672319414),(138483,3,42060,2,1672319414),(138484,3,42061,2,1672319414),(138485,3,42062,2,1672319414),(138486,3,42063,2,1672319414),(138487,3,42064,2,1672319414),(138488,3,42065,2,1672319414),(138489,3,42066,2,1672319414),(138490,3,42067,2,1672319414),(138491,3,42101,2,1672319414),(138492,3,42102,2,1672319414),(138493,3,42103,2,1672319414),(138494,3,42104,2,1672319414),(138495,3,42105,2,1672319414),(138496,3,42106,2,1672319414),(138497,3,42107,2,1672319414),(138498,3,42108,2,1672319414),(138499,3,42109,2,1672319414),(138500,3,42727,2,1672319414),(138501,3,42728,2,1672319414),(138502,3,42729,2,1672319414),(138503,3,42730,2,1672319414),(138504,3,42731,2,1672319414),(138505,3,42732,2,1672319414),(138506,3,42733,2,1672319414),(138507,3,42734,2,1672319414),(138508,3,42735,2,1672319414),(138509,3,42736,2,1672319414),(138510,3,42737,2,1672319414),(138511,3,43566,2,1672319414),(138512,3,43567,2,1672319414),(138513,3,43568,2,1672319414),(138514,3,43569,2,1672319414),(138515,3,43570,2,1672319414),(138516,3,43571,2,1672319414),(138517,3,43572,2,1672319414),(138518,3,43573,2,1672319414),(138519,3,43574,2,1672319414),(138520,3,43575,2,1672319414),(138521,3,43576,2,1672319414),(138522,3,43577,2,1672319414),(138523,3,43578,2,1672319414),(138524,3,43579,2,1672319414),(138525,3,43580,2,1672319414),(138526,3,43581,2,1672319414),(138527,3,43582,2,1672319414),(138528,3,43583,2,1672319414),(138529,3,43584,2,1672319414),(138530,3,43585,2,1672319414),(138531,3,43586,2,1672319414),(138532,3,43587,2,1672319414),(138533,3,43588,2,1672319414),(138534,3,43589,2,1672319414),(138535,3,43590,2,1672319414),(138536,3,43591,2,1672319414),(138537,3,44237,2,1672319414),(138538,3,44238,2,1672319414),(138539,3,44239,2,1672319414),(138540,3,44240,2,1672319414),(138541,3,44241,2,1672319414),(138542,3,44242,2,1672319414),(138543,3,44243,2,1672319414),(138544,3,44244,2,1672319414),(138545,3,44245,2,1672319414),(138546,3,44345,2,1672319414),(138547,3,44346,2,1672319414),(138548,3,44347,2,1672319414),(138549,3,44348,2,1672319414),(138550,3,44349,2,1672319414),(138551,3,44350,2,1672319414),(138552,3,44353,2,1672319414),(138553,3,44354,2,1672319414),(138554,3,44355,2,1672319414),(138555,3,44356,2,1672319414),(138556,3,44357,2,1672319414),(138557,3,44358,2,1672319414),(138558,3,44448,2,1672319414),(138559,3,44449,2,1672319414),(138560,3,22868,3,1672319414),(138561,3,22869,3,1672319414),(138562,3,22870,3,1672319414),(138563,3,22871,3,1672319414),(138564,3,22872,3,1672319414),(138565,3,23075,3,1672319414),(138566,3,23076,3,1672319414),(138567,3,27940,3,1672319414),(138568,3,27941,3,1672319414),(138569,3,27942,3,1672319414),(138570,3,27943,3,1672319414),(138571,3,30474,3,1672319414),(138572,3,30475,3,1672319414),(138573,3,30476,3,1672319414),(138574,3,30477,3,1672319414),(138575,3,30478,3,1672319414),(138576,3,30522,3,1672319414),(138577,3,30523,3,1672319414),(138578,3,30524,3,1672319414),(138579,3,30525,3,1672319414),(138580,3,30526,3,1672319414),(138581,3,30680,3,1672319414),(138582,3,30681,3,1672319414),(138583,3,30682,3,1672319414),(138584,3,30683,3,1672319414),(138585,3,30684,3,1672319414),(138586,3,31128,3,1672319414),(138587,3,31129,3,1672319414),(138588,3,31130,3,1672319414),(138589,3,31132,3,1672319414),(138590,3,31133,3,1672319414),(138591,3,31134,3,1672319414),(138592,3,31135,3,1672319414),(138593,3,31136,3,1672319414),(138594,3,31137,3,1672319414),(138595,3,31138,3,1672319414),(138596,3,31139,3,1672319414),(138597,3,31140,3,1672319414),(138598,3,31141,3,1672319414),(138599,3,31142,3,1672319414),(138600,3,31143,3,1672319414),(138601,3,31144,3,1672319414),(138602,3,31145,3,1672319414),(138603,3,31146,3,1672319414),(138604,3,31147,3,1672319414),(138605,3,31148,3,1672319414),(138606,3,31149,3,1672319414),(138607,3,31150,3,1672319414),(138608,3,31151,3,1672319414),(138609,3,31152,3,1672319414),(138610,3,31153,3,1672319414),(138611,3,31154,3,1672319414),(138612,3,31155,3,1672319414),(138613,3,31156,3,1672319414),(138614,3,31157,3,1672319414),(138615,3,31158,3,1672319414),(138616,3,31161,3,1672319414),(138617,3,31162,3,1672319414),(138618,3,31163,3,1672319414),(138619,3,31164,3,1672319414),(138620,3,31165,3,1672319414),(138621,3,31166,3,1672319414),(138622,3,31167,3,1672319414),(138623,3,31258,3,1672319414),(138624,3,31259,3,1672319414),(138625,3,31260,3,1672319414),(138626,3,31261,3,1672319414),(138627,3,31262,3,1672319414),(138628,3,31263,3,1672319414),(138629,3,31264,3,1672319414),(138630,3,31265,3,1672319414),(138631,3,31266,3,1672319414),(138632,3,31267,3,1672319414),(138633,3,31268,3,1672319414),(138634,3,31269,3,1672319414),(138635,3,31270,3,1672319414),(138636,3,31271,3,1672319414),(138637,3,31272,3,1672319414),(138638,3,31273,3,1672319414),(138639,3,31766,3,1672319414),(138640,3,31767,3,1672319414),(138641,3,31768,3,1672319414),(138642,3,31769,3,1672319414),(138643,3,31770,3,1672319414),(138644,3,31771,3,1672319414),(138645,3,31772,3,1672319414),(138646,3,31773,3,1672319414),(138647,3,31774,3,1672319414),(138648,3,31775,3,1672319414),(138649,3,31776,3,1672319414),(138650,3,31777,3,1672319414),(138651,3,31778,3,1672319414),(138652,3,31779,3,1672319414),(138653,3,31780,3,1672319414),(138654,3,31781,3,1672319414),(138655,3,32405,3,1672319414),(138656,3,32406,3,1672319414),(138657,3,32407,3,1672319414),(138658,3,32408,3,1672319414),(138659,3,32409,3,1672319414),(138660,3,32410,3,1672319414),(138661,3,32411,3,1672319414),(138662,3,32412,3,1672319414),(138663,3,32413,3,1672319414),(138664,3,32414,3,1672319414),(138665,3,32415,3,1672319414),(138666,3,32416,3,1672319414),(138667,3,32417,3,1672319414),(138668,3,32418,3,1672319414),(138669,3,32419,3,1672319414),(138670,3,32420,3,1672319414),(138671,3,32421,3,1672319414),(138672,3,32422,3,1672319414),(138673,3,32423,3,1672319414),(138674,3,32424,3,1672319414),(138675,3,32425,3,1672319414),(138676,3,32426,3,1672319414),(138677,3,32427,3,1672319414),(138678,3,32428,3,1672319414),(138679,3,32429,3,1672319414),(138680,3,32430,3,1672319414),(138681,3,32431,3,1672319414),(138682,3,32432,3,1672319414),(138683,3,32433,3,1672319414),(138684,3,32434,3,1672319414),(138685,3,33134,3,1672319414),(138686,3,33135,3,1672319414),(138687,3,33136,3,1672319414),(138688,3,33137,3,1672319414),(138689,3,33138,3,1672319414),(138690,3,33139,3,1672319414),(138691,3,33148,3,1672319414),(138692,3,33149,3,1672319414),(138693,3,33150,3,1672319414),(138694,3,33151,3,1672319414),(138695,3,33152,3,1672319414),(138696,3,33153,3,1672319414),(138697,3,33162,3,1672319414),(138698,3,33163,3,1672319414),(138699,3,33164,3,1672319414),(138700,3,33165,3,1672319414),(138701,3,33166,3,1672319414),(138702,3,33167,3,1672319414),(138703,3,33168,3,1672319414),(138704,3,33169,3,1672319414),(138705,3,33170,3,1672319414),(138706,3,33171,3,1672319414),(138707,3,33206,3,1672319414),(138708,3,33226,3,1672319414),(138709,3,33249,3,1672319414),(138710,3,33258,3,1672319414),(138711,3,33277,3,1672319414),(138712,3,33296,3,1672319414),(138713,3,33312,3,1672319414),(138714,3,33313,3,1672319414),(138715,3,33314,3,1672319414),(138716,3,33315,3,1672319414),(138717,3,33316,3,1672319414),(138718,3,33317,3,1672319414),(138719,3,33318,3,1672319414),(138720,3,33319,3,1672319414),(138721,3,33320,3,1672319414),(138722,3,33357,3,1672319414),(138723,3,33358,3,1672319414),(138724,3,33359,3,1672319414),(138725,3,33360,3,1672319414),(138726,3,33361,3,1672319414),(138727,3,33362,3,1672319414),(138728,3,33363,3,1672319414),(138729,3,33364,3,1672319414),(138730,3,33365,3,1672319414),(138731,3,33366,3,1672319414),(138732,3,33367,3,1672319414),(138733,3,33368,3,1672319414),(138734,3,33369,3,1672319414),(138735,3,33370,3,1672319414),(138736,3,33371,3,1672319414),(138737,3,33372,3,1672319414),(138738,3,33373,3,1672319414),(138739,3,33374,3,1672319414),(138740,3,33375,3,1672319414),(138741,3,33376,3,1672319414),(138742,3,33377,3,1672319414),(138743,3,33378,3,1672319414),(138744,3,33379,3,1672319414),(138745,3,33380,3,1672319414),(138746,3,33381,3,1672319414),(138747,3,33382,3,1672319414),(138748,3,33383,3,1672319414),(138749,3,33384,3,1672319414),(138750,3,33385,3,1672319414),(138751,3,33386,3,1672319414),(138752,3,33387,3,1672319414),(138753,3,33388,3,1672319414),(138754,3,33812,3,1672319414),(138755,3,33813,3,1672319414),(138756,3,33814,3,1672319414),(138757,3,33815,3,1672319414),(138758,3,33816,3,1672319414),(138759,3,33817,3,1672319414),(138760,3,33818,3,1672319414),(138761,3,33819,3,1672319414),(138762,3,33820,3,1672319414),(138763,3,33821,3,1672319414),(138764,3,33822,3,1672319414),(138765,3,33823,3,1672319414),(138766,3,33824,3,1672319414),(138767,3,33825,3,1672319414),(138768,3,33826,3,1672319414),(138769,3,33827,3,1672319414),(138770,3,33828,3,1672319414),(138771,3,33829,3,1672319414),(138772,3,33830,3,1672319414),(138773,3,33831,3,1672319414),(138774,3,33832,3,1672319414),(138775,3,33833,3,1672319414),(138776,3,33834,3,1672319414),(138777,3,33835,3,1672319414),(138778,3,33836,3,1672319414),(138779,3,33837,3,1672319414),(138780,3,33838,3,1672319414),(138781,3,33839,3,1672319414),(138782,3,33840,3,1672319414),(138783,3,33841,3,1672319414),(138784,3,33842,3,1672319414),(138785,3,33843,3,1672319414),(138786,3,33844,3,1672319414),(138787,3,33845,3,1672319414),(138788,3,33846,3,1672319414),(138789,3,33847,3,1672319414),(138790,3,33848,3,1672319414),(138791,3,33849,3,1672319414),(138792,3,33850,3,1672319414),(138793,3,33851,3,1672319414),(138794,3,33852,3,1672319414),(138795,3,33853,3,1672319414),(138796,3,33854,3,1672319414),(138797,3,33855,3,1672319414),(138798,3,33856,3,1672319414),(138799,3,33857,3,1672319414),(138800,3,33858,3,1672319414),(138801,3,33859,3,1672319414),(138802,3,33860,3,1672319414),(138803,3,33861,3,1672319414),(138804,3,33862,3,1672319414),(138805,3,33863,3,1672319414),(138806,3,33864,3,1672319414),(138807,3,33865,3,1672319414),(138808,3,33866,3,1672319414),(138809,3,33867,3,1672319414),(138810,3,33868,3,1672319414),(138811,3,33869,3,1672319414),(138812,3,33870,3,1672319414),(138813,3,33871,3,1672319414),(138814,3,33872,3,1672319414),(138815,3,33873,3,1672319414),(138816,3,33874,3,1672319414),(138817,3,33875,3,1672319414),(138818,3,33876,3,1672319414),(138819,3,33877,3,1672319414),(138820,3,33878,3,1672319414),(138821,3,33879,3,1672319414),(138822,3,33880,3,1672319414),(138823,3,33881,3,1672319414),(138824,3,33882,3,1672319414),(138825,3,33883,3,1672319414),(138826,3,33884,3,1672319414),(138827,3,33885,3,1672319414),(138828,3,33924,3,1672319414),(138829,3,33925,3,1672319414),(138830,3,33926,3,1672319414),(138831,3,33927,3,1672319414),(138832,3,33928,3,1672319414),(138833,3,33929,3,1672319414),(138834,3,33930,3,1672319414),(138835,3,33931,3,1672319414),(138836,3,33932,3,1672319414),(138837,3,33933,3,1672319414),(138838,3,33934,3,1672319414),(138839,3,33935,3,1672319414),(138840,3,33936,3,1672319414),(138841,3,33937,3,1672319414),(138842,3,33938,3,1672319414),(138843,3,33939,3,1672319414),(138844,3,33940,3,1672319414),(138845,3,33941,3,1672319414),(138846,3,33942,3,1672319414),(138847,3,33943,3,1672319414),(138848,3,34269,3,1672319414),(138849,3,34270,3,1672319414),(138850,3,34271,3,1672319414),(138851,3,34272,3,1672319414),(138852,3,34273,3,1672319414),(138853,3,34274,3,1672319414),(138854,3,34275,3,1672319414),(138855,3,34276,3,1672319414),(138856,3,34277,3,1672319414),(138857,3,34278,3,1672319414),(138858,3,34279,3,1672319414),(138859,3,34280,3,1672319414),(138860,3,34281,3,1672319414),(138861,3,34282,3,1672319414),(138862,3,34283,3,1672319414),(138863,3,34284,3,1672319414),(138864,3,34285,3,1672319414),(138865,3,34286,3,1672319414),(138866,3,34287,3,1672319414),(138867,3,34288,3,1672319414),(138868,3,34289,3,1672319414),(138869,3,34290,3,1672319414),(138870,3,34291,3,1672319414),(138871,3,34292,3,1672319414),(138872,3,34293,3,1672319414),(138873,3,34294,3,1672319414),(138874,3,34295,3,1672319414),(138875,3,34296,3,1672319414),(138876,3,34297,3,1672319414),(138877,3,34298,3,1672319414),(138878,3,34299,3,1672319414),(138879,3,34300,3,1672319414),(138880,3,34301,3,1672319414),(138881,3,34302,3,1672319414),(138882,3,34303,3,1672319414),(138883,3,34304,3,1672319414),(138884,3,34305,3,1672319414),(138885,3,34306,3,1672319414),(138886,3,34307,3,1672319414),(138887,3,34308,3,1672319414),(138888,3,34309,3,1672319414),(138889,3,34310,3,1672319414),(138890,3,34311,3,1672319414),(138891,3,34312,3,1672319414),(138892,3,34313,3,1672319414),(138893,3,34325,3,1672319414),(138894,3,34326,3,1672319414),(138895,3,34327,3,1672319414),(138896,3,34328,3,1672319414),(138897,3,34329,3,1672319414),(138898,3,34330,3,1672319414),(138899,3,34331,3,1672319414),(138900,3,34332,3,1672319414),(138901,3,34333,3,1672319414),(138902,3,34334,3,1672319414),(138903,3,34335,3,1672319414),(138904,3,35185,3,1672319414),(138905,3,35186,3,1672319414),(138906,3,35187,3,1672319414),(138907,3,35188,3,1672319414),(138908,3,35189,3,1672319414),(138909,3,35190,3,1672319414),(138910,3,35191,3,1672319414),(138911,3,35192,3,1672319414),(138912,3,35193,3,1672319414),(138913,3,35194,3,1672319414),(138914,3,35195,3,1672319414),(138915,3,35196,3,1672319414),(138916,3,35197,3,1672319414),(138917,3,35198,3,1672319414),(138918,3,35199,3,1672319414),(138919,3,35200,3,1672319414),(138920,3,35201,3,1672319414),(138921,3,35202,3,1672319414),(138922,3,35203,3,1672319414),(138923,3,35204,3,1672319414),(138924,3,35205,3,1672319414),(138925,3,35206,3,1672319414),(138926,3,35207,3,1672319414),(138927,3,35208,3,1672319414),(138928,3,35209,3,1672319414),(138929,3,35210,3,1672319414),(138930,3,35211,3,1672319414),(138931,3,35212,3,1672319414),(138932,3,35213,3,1672319414),(138933,3,35214,3,1672319414),(138934,3,35215,3,1672319414),(138935,3,35216,3,1672319414),(138936,3,35217,3,1672319414),(138937,3,35218,3,1672319414),(138938,3,35219,3,1672319414),(138939,3,35220,3,1672319414),(138940,3,35221,3,1672319414),(138941,3,35222,3,1672319414),(138942,3,35223,3,1672319414),(138943,3,35224,3,1672319414),(138944,3,35225,3,1672319414),(138945,3,35226,3,1672319414),(138946,3,35227,3,1672319414),(138947,3,35228,3,1672319414),(138948,3,35229,3,1672319414),(138949,3,35230,3,1672319414),(138950,3,35231,3,1672319414),(138951,3,35232,3,1672319414),(138952,3,35233,3,1672319414),(138953,3,35234,3,1672319414),(138954,3,35235,3,1672319414),(138955,3,35236,3,1672319414),(138956,3,35237,3,1672319414),(138957,3,35238,3,1672319414),(138958,3,35239,3,1672319414),(138959,3,35240,3,1672319414),(138960,3,35241,3,1672319414),(138961,3,35242,3,1672319414),(138962,3,35243,3,1672319414),(138963,3,35244,3,1672319414),(138964,3,35245,3,1672319414),(138965,3,35246,3,1672319414),(138966,3,35247,3,1672319414),(138967,3,35248,3,1672319414),(138968,3,35249,3,1672319414),(138969,3,35250,3,1672319414),(138970,3,35251,3,1672319414),(138971,3,35252,3,1672319414),(138972,3,35253,3,1672319414),(138973,3,35254,3,1672319414),(138974,3,35255,3,1672319414),(138975,3,35256,3,1672319414),(138976,3,35257,3,1672319414),(138977,3,35258,3,1672319414),(138978,3,35259,3,1672319414),(138979,3,35260,3,1672319414),(138980,3,35261,3,1672319414),(138981,3,38589,3,1672319414),(138982,3,38590,3,1672319414),(138983,3,38591,3,1672319414),(138984,3,38592,3,1672319414),(138985,3,38593,3,1672319414),(138986,3,38594,3,1672319414),(138987,3,38595,3,1672319414),(138988,3,38596,3,1672319414),(138989,3,38597,3,1672319414),(138990,3,38598,3,1672319414),(138991,3,38599,3,1672319414),(138992,3,38600,3,1672319414),(138993,3,38601,3,1672319414),(138994,3,38602,3,1672319414),(138995,3,38603,3,1672319414),(138996,3,38604,3,1672319414),(138997,3,38605,3,1672319414),(138998,3,38606,3,1672319414),(138999,3,38607,3,1672319414),(139000,3,38643,3,1672319414),(139001,3,38644,3,1672319414),(139002,3,38645,3,1672319414),(139003,3,38646,3,1672319414),(139004,3,38647,3,1672319414),(139005,3,38648,3,1672319414),(139006,3,38649,3,1672319414),(139007,3,38650,3,1672319414),(139008,3,38651,3,1672319414),(139009,3,38652,3,1672319414),(139010,3,38653,3,1672319414),(139011,3,38654,3,1672319414),(139012,3,38655,3,1672319414),(139013,3,38656,3,1672319414),(139014,3,38657,3,1672319414),(139015,3,38658,3,1672319414),(139016,3,38659,3,1672319414),(139017,3,38660,3,1672319414),(139018,3,38661,3,1672319414),(139019,3,38697,3,1672319414),(139020,3,38698,3,1672319414),(139021,3,38699,3,1672319414),(139022,3,38700,3,1672319414),(139023,3,38701,3,1672319414),(139024,3,38702,3,1672319414),(139025,3,38703,3,1672319414),(139026,3,38704,3,1672319414),(139027,3,38705,3,1672319414),(139028,3,38706,3,1672319414),(139029,3,38707,3,1672319414),(139030,3,38708,3,1672319414),(139031,3,38709,3,1672319414),(139032,3,38710,3,1672319414),(139033,3,38711,3,1672319414),(139034,3,38712,3,1672319414),(139035,3,38713,3,1672319414),(139036,3,38714,3,1672319414),(139037,3,38715,3,1672319414),(139038,3,38751,3,1672319414),(139039,3,38752,3,1672319414),(139040,3,38753,3,1672319414),(139041,3,38754,3,1672319414),(139042,3,38755,3,1672319414),(139043,3,38756,3,1672319414),(139044,3,38757,3,1672319414),(139045,3,38758,3,1672319414),(139046,3,38759,3,1672319414),(139047,3,38760,3,1672319414),(139048,3,38761,3,1672319414),(139049,3,38762,3,1672319414),(139050,3,38763,3,1672319414),(139051,3,38764,3,1672319414),(139052,3,38765,3,1672319414),(139053,3,38766,3,1672319414),(139054,3,38767,3,1672319414),(139055,3,38768,3,1672319414),(139056,3,38769,3,1672319414),(139057,3,38805,3,1672319414),(139058,3,38806,3,1672319414),(139059,3,38807,3,1672319414),(139060,3,38808,3,1672319414),(139061,3,38809,3,1672319414),(139062,3,38810,3,1672319414),(139063,3,38811,3,1672319414),(139064,3,38812,3,1672319414),(139065,3,38813,3,1672319414),(139066,3,38814,3,1672319414),(139067,3,38815,3,1672319414),(139068,3,38816,3,1672319414),(139069,3,38817,3,1672319414),(139070,3,38818,3,1672319414),(139071,3,38819,3,1672319414),(139072,3,38820,3,1672319414),(139073,3,38821,3,1672319414),(139074,3,38822,3,1672319414),(139075,3,38823,3,1672319414),(139076,3,38859,3,1672319414),(139077,3,38860,3,1672319414),(139078,3,38861,3,1672319414),(139079,3,38862,3,1672319414),(139080,3,38863,3,1672319414),(139081,3,38864,3,1672319414),(139082,3,38865,3,1672319414),(139083,3,38866,3,1672319414),(139084,3,38867,3,1672319414),(139085,3,38868,3,1672319414),(139086,3,38869,3,1672319414),(139087,3,38870,3,1672319414),(139088,3,38871,3,1672319414),(139089,3,38872,3,1672319414),(139090,3,38873,3,1672319414),(139091,3,38874,3,1672319414),(139092,3,38875,3,1672319414),(139093,3,38876,3,1672319414),(139094,3,38877,3,1672319414),(139095,3,38913,3,1672319414),(139096,3,38914,3,1672319414),(139097,3,38915,3,1672319414),(139098,3,38916,3,1672319414),(139099,3,38917,3,1672319414),(139100,3,38918,3,1672319414),(139101,3,38919,3,1672319414),(139102,3,38920,3,1672319414),(139103,3,38921,3,1672319414),(139104,3,38922,3,1672319414),(139105,3,38923,3,1672319414),(139106,3,38924,3,1672319414),(139107,3,38925,3,1672319414),(139108,3,38926,3,1672319414),(139109,3,38927,3,1672319414),(139110,3,38928,3,1672319414),(139111,3,38929,3,1672319414),(139112,3,38930,3,1672319414),(139113,3,38931,3,1672319414),(139114,3,38967,3,1672319414),(139115,3,38968,3,1672319414),(139116,3,38969,3,1672319414),(139117,3,38970,3,1672319414),(139118,3,38971,3,1672319414),(139119,3,38972,3,1672319414),(139120,3,38973,3,1672319414),(139121,3,38974,3,1672319414),(139122,3,38975,3,1672319414),(139123,3,38976,3,1672319414),(139124,3,38977,3,1672319414),(139125,3,38978,3,1672319414),(139126,3,38979,3,1672319414),(139127,3,38980,3,1672319414),(139128,3,38981,3,1672319414),(139129,3,38982,3,1672319414),(139130,3,38983,3,1672319414),(139131,3,38984,3,1672319414),(139132,3,38985,3,1672319414),(139133,3,39021,3,1672319414),(139134,3,39022,3,1672319414),(139135,3,39023,3,1672319414),(139136,3,39024,3,1672319414),(139137,3,39025,3,1672319414),(139138,3,39026,3,1672319414),(139139,3,39027,3,1672319414),(139140,3,39028,3,1672319414),(139141,3,39029,3,1672319414),(139142,3,39030,3,1672319414),(139143,3,39031,3,1672319414),(139144,3,39032,3,1672319414),(139145,3,39033,3,1672319414),(139146,3,39034,3,1672319414),(139147,3,39035,3,1672319414),(139148,3,39036,3,1672319414),(139149,3,39037,3,1672319414),(139150,3,39038,3,1672319414),(139151,3,39039,3,1672319414),(139152,3,39075,3,1672319414),(139153,3,39076,3,1672319414),(139154,3,39077,3,1672319414),(139155,3,39078,3,1672319414),(139156,3,39079,3,1672319414),(139157,3,39080,3,1672319414),(139158,3,39081,3,1672319414),(139159,3,39082,3,1672319414),(139160,3,39083,3,1672319414),(139161,3,39084,3,1672319414),(139162,3,39085,3,1672319414),(139163,3,39086,3,1672319414),(139164,3,39087,3,1672319414),(139165,3,39088,3,1672319414),(139166,3,39089,3,1672319414),(139167,3,39090,3,1672319414),(139168,3,39091,3,1672319414),(139169,3,39092,3,1672319414),(139170,3,39093,3,1672319414),(139171,3,39129,3,1672319414),(139172,3,39130,3,1672319414),(139173,3,39131,3,1672319414),(139174,3,39132,3,1672319414),(139175,3,39133,3,1672319414),(139176,3,39134,3,1672319414),(139177,3,39135,3,1672319414),(139178,3,39136,3,1672319414),(139179,3,39137,3,1672319414),(139180,3,39138,3,1672319414),(139181,3,39139,3,1672319414),(139182,3,39140,3,1672319414),(139183,3,39141,3,1672319414),(139184,3,39142,3,1672319414),(139185,3,39143,3,1672319414),(139186,3,39144,3,1672319414),(139187,3,39145,3,1672319414),(139188,3,39146,3,1672319414),(139189,3,39147,3,1672319414),(139190,3,39183,3,1672319414),(139191,3,39184,3,1672319414),(139192,3,39185,3,1672319414),(139193,3,39186,3,1672319414),(139194,3,39187,3,1672319414),(139195,3,39188,3,1672319414),(139196,3,39189,3,1672319414),(139197,3,39190,3,1672319414),(139198,3,39191,3,1672319414),(139199,3,39192,3,1672319414),(139200,3,39193,3,1672319414),(139201,3,39194,3,1672319414),(139202,3,39195,3,1672319414),(139203,3,39196,3,1672319414),(139204,3,39197,3,1672319414),(139205,3,39198,3,1672319414),(139206,3,39199,3,1672319414),(139207,3,39200,3,1672319414),(139208,3,39201,3,1672319414),(139209,3,39237,3,1672319414),(139210,3,39238,3,1672319414),(139211,3,39239,3,1672319414),(139212,3,39240,3,1672319414),(139213,3,39241,3,1672319414),(139214,3,39242,3,1672319414),(139215,3,39243,3,1672319414),(139216,3,39244,3,1672319414),(139217,3,39245,3,1672319414),(139218,3,39246,3,1672319414),(139219,3,39247,3,1672319414),(139220,3,39248,3,1672319414),(139221,3,39249,3,1672319414),(139222,3,39250,3,1672319414),(139223,3,39251,3,1672319414),(139224,3,39252,3,1672319414),(139225,3,39253,3,1672319414),(139226,3,39254,3,1672319414),(139227,3,39255,3,1672319414),(139228,3,39291,3,1672319414),(139229,3,39292,3,1672319414),(139230,3,39293,3,1672319414),(139231,3,39294,3,1672319414),(139232,3,39295,3,1672319414),(139233,3,39296,3,1672319414),(139234,3,39297,3,1672319414),(139235,3,39298,3,1672319414),(139236,3,39299,3,1672319414),(139237,3,39300,3,1672319414),(139238,3,39301,3,1672319414),(139239,3,39302,3,1672319414),(139240,3,39303,3,1672319414),(139241,3,39304,3,1672319414),(139242,3,39305,3,1672319414),(139243,3,39306,3,1672319414),(139244,3,39307,3,1672319414),(139245,3,39308,3,1672319414),(139246,3,39309,3,1672319414),(139247,3,39615,3,1672319414),(139248,3,39616,3,1672319414),(139249,3,39617,3,1672319414),(139250,3,39618,3,1672319414),(139251,3,39619,3,1672319414),(139252,3,39620,3,1672319414),(139253,3,39621,3,1672319414),(139254,3,39622,3,1672319414),(139255,3,39623,3,1672319414),(139256,3,39624,3,1672319414),(139257,3,39625,3,1672319414),(139258,3,39626,3,1672319414),(139259,3,39627,3,1672319414),(139260,3,39628,3,1672319414),(139261,3,39629,3,1672319414),(139262,3,39630,3,1672319414),(139263,3,39631,3,1672319414),(139264,3,39632,3,1672319414),(139265,3,39633,3,1672319414),(139266,3,39669,3,1672319414),(139267,3,39670,3,1672319414),(139268,3,39671,3,1672319414),(139269,3,39672,3,1672319414),(139270,3,39673,3,1672319414),(139271,3,39674,3,1672319414),(139272,3,39675,3,1672319414),(139273,3,39676,3,1672319414),(139274,3,39677,3,1672319414),(139275,3,39678,3,1672319414),(139276,3,39679,3,1672319414),(139277,3,39680,3,1672319414),(139278,3,39681,3,1672319414),(139279,3,39682,3,1672319414),(139280,3,39683,3,1672319414),(139281,3,39684,3,1672319414),(139282,3,39685,3,1672319414),(139283,3,39686,3,1672319414),(139284,3,39687,3,1672319414),(139285,3,39723,3,1672319414),(139286,3,39724,3,1672319414),(139287,3,39725,3,1672319414),(139288,3,39726,3,1672319414),(139289,3,39727,3,1672319414),(139290,3,39728,3,1672319414),(139291,3,39729,3,1672319414),(139292,3,39730,3,1672319414),(139293,3,39731,3,1672319414),(139294,3,39732,3,1672319414),(139295,3,39733,3,1672319414),(139296,3,39734,3,1672319414),(139297,3,39735,3,1672319414),(139298,3,39736,3,1672319414),(139299,3,39737,3,1672319414),(139300,3,39738,3,1672319414),(139301,3,39739,3,1672319414),(139302,3,39740,3,1672319414),(139303,3,39741,3,1672319414),(139304,3,40147,3,1672319414),(139305,3,40148,3,1672319414),(139306,3,40149,3,1672319414),(139307,3,40150,3,1672319414),(139308,3,40151,3,1672319414),(139309,3,40152,3,1672319414),(139310,3,40153,3,1672319414),(139311,3,40154,3,1672319414),(139312,3,40155,3,1672319414),(139313,3,40156,3,1672319414),(139314,3,40157,3,1672319414),(139315,3,40158,3,1672319414),(139316,3,40159,3,1672319414),(139317,3,40160,3,1672319414),(139318,3,40161,3,1672319414),(139319,3,40162,3,1672319414),(139320,3,40163,3,1672319414),(139321,3,40164,3,1672319414),(139322,3,40165,3,1672319414),(139323,3,40166,3,1672319414),(139324,3,40167,3,1672319414),(139325,3,40168,3,1672319414),(139326,3,40169,3,1672319414),(139327,3,40170,3,1672319414),(139328,3,40171,3,1672319414),(139329,3,40172,3,1672319414),(139330,3,40811,3,1672319414),(139331,3,40812,3,1672319414),(139332,3,40813,3,1672319414),(139333,3,40814,3,1672319414),(139334,3,40815,3,1672319414),(139335,3,40816,3,1672319414),(139336,3,40817,3,1672319414),(139337,3,40818,3,1672319414),(139338,3,40819,3,1672319414),(139339,3,40820,3,1672319414),(139340,3,41618,3,1672319414),(139341,3,41619,3,1672319414),(139342,3,41620,3,1672319414),(139343,3,41621,3,1672319414),(139344,3,41622,3,1672319414),(139345,3,41623,3,1672319414),(139346,3,41624,3,1672319414),(139347,3,41625,3,1672319414),(139348,3,41626,3,1672319414),(139349,3,41639,3,1672319414),(139350,3,41640,3,1672319414),(139351,3,41641,3,1672319414),(139352,3,41642,3,1672319414),(139353,3,41643,3,1672319414),(139354,3,41644,3,1672319414),(139355,3,41645,3,1672319414),(139356,3,41646,3,1672319414),(139357,3,41647,3,1672319414),(139358,3,41660,3,1672319414),(139359,3,41661,3,1672319414),(139360,3,41662,3,1672319414),(139361,3,41663,3,1672319414),(139362,3,41664,3,1672319414),(139363,3,41665,3,1672319414),(139364,3,41666,3,1672319414),(139365,3,41667,3,1672319414),(139366,3,41668,3,1672319414),(139367,3,41681,3,1672319414),(139368,3,41682,3,1672319414),(139369,3,41683,3,1672319414),(139370,3,41684,3,1672319414),(139371,3,41685,3,1672319414),(139372,3,41686,3,1672319414),(139373,3,41687,3,1672319414),(139374,3,41688,3,1672319414),(139375,3,41689,3,1672319414),(139376,3,41702,3,1672319414),(139377,3,41703,3,1672319414),(139378,3,41704,3,1672319414),(139379,3,41705,3,1672319414),(139380,3,41706,3,1672319414),(139381,3,41707,3,1672319414),(139382,3,41708,3,1672319414),(139383,3,41709,3,1672319414),(139384,3,41710,3,1672319414),(139385,3,41723,3,1672319414),(139386,3,41724,3,1672319414),(139387,3,41725,3,1672319414),(139388,3,41726,3,1672319414),(139389,3,41727,3,1672319414),(139390,3,41728,3,1672319414),(139391,3,41729,3,1672319414),(139392,3,41730,3,1672319414),(139393,3,41731,3,1672319414),(139394,3,41744,3,1672319414),(139395,3,41745,3,1672319414),(139396,3,41746,3,1672319414),(139397,3,41747,3,1672319414),(139398,3,41748,3,1672319414),(139399,3,41749,3,1672319414),(139400,3,41750,3,1672319414),(139401,3,41751,3,1672319414),(139402,3,41752,3,1672319414),(139403,3,41765,3,1672319414),(139404,3,41766,3,1672319414),(139405,3,41767,3,1672319414),(139406,3,41768,3,1672319414),(139407,3,41769,3,1672319414),(139408,3,41770,3,1672319414),(139409,3,41771,3,1672319414),(139410,3,41772,3,1672319414),(139411,3,41773,3,1672319414),(139412,3,41786,3,1672319414),(139413,3,41787,3,1672319414),(139414,3,41788,3,1672319414),(139415,3,41789,3,1672319414),(139416,3,41790,3,1672319414),(139417,3,41791,3,1672319414),(139418,3,41792,3,1672319414),(139419,3,41793,3,1672319414),(139420,3,41794,3,1672319414),(139421,3,41807,3,1672319414),(139422,3,41808,3,1672319414),(139423,3,41809,3,1672319414),(139424,3,41810,3,1672319414),(139425,3,41811,3,1672319414),(139426,3,41812,3,1672319414),(139427,3,41813,3,1672319414),(139428,3,41814,3,1672319414),(139429,3,41815,3,1672319414),(139430,3,41828,3,1672319414),(139431,3,41829,3,1672319414),(139432,3,41830,3,1672319414),(139433,3,41831,3,1672319414),(139434,3,41832,3,1672319414),(139435,3,41833,3,1672319414),(139436,3,41834,3,1672319414),(139437,3,41835,3,1672319414),(139438,3,41836,3,1672319414),(139439,3,41849,3,1672319414),(139440,3,41850,3,1672319414),(139441,3,41851,3,1672319414),(139442,3,41852,3,1672319414),(139443,3,41853,3,1672319414),(139444,3,41854,3,1672319414),(139445,3,41855,3,1672319414),(139446,3,41856,3,1672319414),(139447,3,41857,3,1672319414),(139448,3,41870,3,1672319414),(139449,3,41871,3,1672319414),(139450,3,41872,3,1672319414),(139451,3,41873,3,1672319414),(139452,3,41874,3,1672319414),(139453,3,41875,3,1672319414),(139454,3,41876,3,1672319414),(139455,3,41877,3,1672319414),(139456,3,41878,3,1672319414),(139457,3,41891,3,1672319414),(139458,3,41892,3,1672319414),(139459,3,41893,3,1672319414),(139460,3,41894,3,1672319414),(139461,3,41895,3,1672319414),(139462,3,41896,3,1672319414),(139463,3,41897,3,1672319414),(139464,3,41898,3,1672319414),(139465,3,41899,3,1672319414),(139466,3,42017,3,1672319414),(139467,3,42018,3,1672319414),(139468,3,42019,3,1672319414),(139469,3,42020,3,1672319414),(139470,3,42021,3,1672319414),(139471,3,42022,3,1672319414),(139472,3,42023,3,1672319414),(139473,3,42024,3,1672319414),(139474,3,42025,3,1672319414),(139475,3,42038,3,1672319414),(139476,3,42039,3,1672319414),(139477,3,42040,3,1672319414),(139478,3,42041,3,1672319414),(139479,3,42042,3,1672319414),(139480,3,42043,3,1672319414),(139481,3,42044,3,1672319414),(139482,3,42045,3,1672319414),(139483,3,42046,3,1672319414),(139484,3,42059,3,1672319414),(139485,3,42060,3,1672319414),(139486,3,42061,3,1672319414),(139487,3,42062,3,1672319414),(139488,3,42063,3,1672319414),(139489,3,42064,3,1672319414),(139490,3,42065,3,1672319414),(139491,3,42066,3,1672319414),(139492,3,42067,3,1672319414),(139493,3,42101,3,1672319414),(139494,3,42102,3,1672319414),(139495,3,42103,3,1672319414),(139496,3,42104,3,1672319414),(139497,3,42105,3,1672319414),(139498,3,42106,3,1672319414),(139499,3,42107,3,1672319414),(139500,3,42108,3,1672319414),(139501,3,42109,3,1672319414),(139502,3,42727,3,1672319414),(139503,3,42728,3,1672319414),(139504,3,42729,3,1672319414),(139505,3,42730,3,1672319414),(139506,3,42731,3,1672319414),(139507,3,42732,3,1672319414),(139508,3,42733,3,1672319414),(139509,3,42734,3,1672319414),(139510,3,42735,3,1672319414),(139511,3,42736,3,1672319414),(139512,3,42737,3,1672319414),(139513,3,43566,3,1672319414),(139514,3,43567,3,1672319414),(139515,3,43568,3,1672319414),(139516,3,43569,3,1672319414),(139517,3,43570,3,1672319414),(139518,3,43571,3,1672319414),(139519,3,43572,3,1672319414),(139520,3,43573,3,1672319414),(139521,3,43574,3,1672319414),(139522,3,43575,3,1672319414),(139523,3,43576,3,1672319414),(139524,3,43577,3,1672319414),(139525,3,43578,3,1672319414),(139526,3,43579,3,1672319414),(139527,3,43580,3,1672319414),(139528,3,43581,3,1672319414),(139529,3,43582,3,1672319414),(139530,3,43583,3,1672319414),(139531,3,43584,3,1672319414),(139532,3,43585,3,1672319414),(139533,3,43586,3,1672319414),(139534,3,43587,3,1672319414),(139535,3,43588,3,1672319414),(139536,3,43589,3,1672319414),(139537,3,43590,3,1672319414),(139538,3,43591,3,1672319414),(139539,3,44237,3,1672319414),(139540,3,44238,3,1672319414),(139541,3,44239,3,1672319414),(139542,3,44240,3,1672319414),(139543,3,44241,3,1672319414),(139544,3,44242,3,1672319414),(139545,3,44243,3,1672319414),(139546,3,44244,3,1672319414),(139547,3,44245,3,1672319414),(139548,3,44345,3,1672319414),(139549,3,44346,3,1672319414),(139550,3,44347,3,1672319414),(139551,3,44348,3,1672319414),(139552,3,44349,3,1672319414),(139553,3,44350,3,1672319414),(139554,3,44353,3,1672319414),(139555,3,44354,3,1672319414),(139556,3,44355,3,1672319414),(139557,3,44356,3,1672319414),(139558,3,44357,3,1672319414),(139559,3,44358,3,1672319414),(139560,3,44448,3,1672319414),(139561,3,44449,3,1672319414),(139562,1,10388,2,1672319414),(139563,1,10389,2,1672319414),(139564,1,10388,3,1672319414),(139565,1,10389,3,1672319414),(139566,3,22867,2,1672319414),(139567,3,23329,2,1672319414),(139568,3,27937,2,1672319414),(139569,3,27938,2,1672319414),(139570,3,27939,2,1672319414),(139571,3,30472,2,1672319414),(139572,3,30473,2,1672319414),(139573,3,30520,2,1672319414),(139574,3,30521,2,1672319414),(139575,3,30678,2,1672319414),(139576,3,30679,2,1672319414),(139577,3,31122,2,1672319414),(139578,3,31123,2,1672319414),(139579,3,31124,2,1672319414),(139580,3,31125,2,1672319414),(139581,3,31126,2,1672319414),(139582,3,31127,2,1672319414),(139583,3,31253,2,1672319414),(139584,3,31254,2,1672319414),(139585,3,31255,2,1672319414),(139586,3,31256,2,1672319414),(139587,3,31257,2,1672319414),(139588,3,31761,2,1672319414),(139589,3,31762,2,1672319414),(139590,3,31763,2,1672319414),(139591,3,31764,2,1672319414),(139592,3,31765,2,1672319414),(139593,3,32404,2,1672319414),(139594,3,33133,2,1672319414),(139595,3,33147,2,1672319414),(139596,3,33161,2,1672319414),(139597,3,33205,2,1672319414),(139598,3,33225,2,1672319414),(139599,3,33248,2,1672319414),(139600,3,33257,2,1672319414),(139601,3,33276,2,1672319414),(139602,3,33295,2,1672319414),(139603,3,33306,2,1672319414),(139604,3,33307,2,1672319414),(139605,3,33308,2,1672319414),(139606,3,33309,2,1672319414),(139607,3,33310,2,1672319414),(139608,3,33311,2,1672319414),(139609,3,33352,2,1672319414),(139610,3,33353,2,1672319414),(139611,3,33354,2,1672319414),(139612,3,33355,2,1672319414),(139613,3,33356,2,1672319414),(139614,3,33808,2,1672319414),(139615,3,33809,2,1672319414),(139616,3,33810,2,1672319414),(139617,3,33811,2,1672319414),(139618,3,33920,2,1672319414),(139619,3,33921,2,1672319414),(139620,3,33922,2,1672319414),(139621,3,33923,2,1672319414),(139622,3,34260,2,1672319414),(139623,3,34261,2,1672319414),(139624,3,34262,2,1672319414),(139625,3,34263,2,1672319414),(139626,3,34264,2,1672319414),(139627,3,34265,2,1672319414),(139628,3,34266,2,1672319414),(139629,3,34267,2,1672319414),(139630,3,34268,2,1672319414),(139631,3,34324,2,1672319414),(139632,3,35177,2,1672319414),(139633,3,35178,2,1672319414),(139634,3,35179,2,1672319414),(139635,3,35180,2,1672319414),(139636,3,35181,2,1672319414),(139637,3,35182,2,1672319414),(139638,3,35183,2,1672319414),(139639,3,35184,2,1672319414),(139640,3,38582,2,1672319414),(139641,3,38583,2,1672319414),(139642,3,38584,2,1672319414),(139643,3,38585,2,1672319414),(139644,3,38586,2,1672319414),(139645,3,38587,2,1672319414),(139646,3,38588,2,1672319414),(139647,3,38636,2,1672319414),(139648,3,38637,2,1672319414),(139649,3,38638,2,1672319414),(139650,3,38639,2,1672319414),(139651,3,38640,2,1672319414),(139652,3,38641,2,1672319414),(139653,3,38642,2,1672319414),(139654,3,38690,2,1672319414),(139655,3,38691,2,1672319414),(139656,3,38692,2,1672319414),(139657,3,38693,2,1672319414),(139658,3,38694,2,1672319414),(139659,3,38695,2,1672319414),(139660,3,38696,2,1672319414),(139661,3,38744,2,1672319414),(139662,3,38745,2,1672319414),(139663,3,38746,2,1672319414),(139664,3,38747,2,1672319414),(139665,3,38748,2,1672319414),(139666,3,38749,2,1672319414),(139667,3,38750,2,1672319414),(139668,3,38798,2,1672319414),(139669,3,38799,2,1672319414),(139670,3,38800,2,1672319414),(139671,3,38801,2,1672319414),(139672,3,38802,2,1672319414),(139673,3,38803,2,1672319414),(139674,3,38804,2,1672319414),(139675,3,38852,2,1672319414),(139676,3,38853,2,1672319414),(139677,3,38854,2,1672319414),(139678,3,38855,2,1672319414),(139679,3,38856,2,1672319414),(139680,3,38857,2,1672319414),(139681,3,38858,2,1672319414),(139682,3,38906,2,1672319414),(139683,3,38907,2,1672319414),(139684,3,38908,2,1672319414),(139685,3,38909,2,1672319414),(139686,3,38910,2,1672319414),(139687,3,38911,2,1672319414),(139688,3,38912,2,1672319414),(139689,3,38960,2,1672319414),(139690,3,38961,2,1672319414),(139691,3,38962,2,1672319414),(139692,3,38963,2,1672319414),(139693,3,38964,2,1672319414),(139694,3,38965,2,1672319414),(139695,3,38966,2,1672319414),(139696,3,39014,2,1672319414),(139697,3,39015,2,1672319414),(139698,3,39016,2,1672319414),(139699,3,39017,2,1672319414),(139700,3,39018,2,1672319414),(139701,3,39019,2,1672319414),(139702,3,39020,2,1672319414),(139703,3,39068,2,1672319414),(139704,3,39069,2,1672319414),(139705,3,39070,2,1672319414),(139706,3,39071,2,1672319414),(139707,3,39072,2,1672319414),(139708,3,39073,2,1672319414),(139709,3,39074,2,1672319414),(139710,3,39122,2,1672319414),(139711,3,39123,2,1672319414),(139712,3,39124,2,1672319414),(139713,3,39125,2,1672319414),(139714,3,39126,2,1672319414),(139715,3,39127,2,1672319414),(139716,3,39128,2,1672319414),(139717,3,39176,2,1672319414),(139718,3,39177,2,1672319414),(139719,3,39178,2,1672319414),(139720,3,39179,2,1672319414),(139721,3,39180,2,1672319414),(139722,3,39181,2,1672319414),(139723,3,39182,2,1672319414),(139724,3,39230,2,1672319414),(139725,3,39231,2,1672319414),(139726,3,39232,2,1672319414),(139727,3,39233,2,1672319414),(139728,3,39234,2,1672319414),(139729,3,39235,2,1672319414),(139730,3,39236,2,1672319414),(139731,3,39284,2,1672319414),(139732,3,39285,2,1672319414),(139733,3,39286,2,1672319414),(139734,3,39287,2,1672319414),(139735,3,39288,2,1672319414),(139736,3,39289,2,1672319414),(139737,3,39290,2,1672319414),(139738,3,39608,2,1672319414),(139739,3,39609,2,1672319414),(139740,3,39610,2,1672319414),(139741,3,39611,2,1672319414),(139742,3,39612,2,1672319414),(139743,3,39613,2,1672319414),(139744,3,39614,2,1672319414),(139745,3,39662,2,1672319414),(139746,3,39663,2,1672319414),(139747,3,39664,2,1672319414),(139748,3,39665,2,1672319414),(139749,3,39666,2,1672319414),(139750,3,39667,2,1672319414),(139751,3,39668,2,1672319414),(139752,3,39716,2,1672319414),(139753,3,39717,2,1672319414),(139754,3,39718,2,1672319414),(139755,3,39719,2,1672319414),(139756,3,39720,2,1672319414),(139757,3,39721,2,1672319414),(139758,3,39722,2,1672319414),(139759,3,40138,2,1672319414),(139760,3,40809,2,1672319414),(139761,3,40810,2,1672319414),(139762,3,41617,2,1672319414),(139763,3,41638,2,1672319414),(139764,3,41659,2,1672319414),(139765,3,41680,2,1672319414),(139766,3,41701,2,1672319414),(139767,3,41722,2,1672319414),(139768,3,41743,2,1672319414),(139769,3,41764,2,1672319414),(139770,3,41785,2,1672319414),(139771,3,41806,2,1672319414),(139772,3,41827,2,1672319414),(139773,3,41848,2,1672319414),(139774,3,41869,2,1672319414),(139775,3,41890,2,1672319414),(139776,3,42016,2,1672319414),(139777,3,42037,2,1672319414),(139778,3,42058,2,1672319414),(139779,3,42100,2,1672319414),(139780,3,42726,2,1672319414),(139781,3,43565,2,1672319414),(139782,3,44236,2,1672319414),(139783,3,44344,2,1672319414),(139784,3,44352,2,1672319414),(139785,3,22867,3,1672319414),(139786,3,23329,3,1672319414),(139787,3,27937,3,1672319414),(139788,3,27938,3,1672319414),(139789,3,27939,3,1672319414),(139790,3,30472,3,1672319414),(139791,3,30473,3,1672319414),(139792,3,30520,3,1672319414),(139793,3,30521,3,1672319414),(139794,3,30678,3,1672319414),(139795,3,30679,3,1672319414),(139796,3,31122,3,1672319414),(139797,3,31123,3,1672319414),(139798,3,31124,3,1672319414),(139799,3,31125,3,1672319414),(139800,3,31126,3,1672319414),(139801,3,31127,3,1672319414),(139802,3,31253,3,1672319414),(139803,3,31254,3,1672319414),(139804,3,31255,3,1672319414),(139805,3,31256,3,1672319414),(139806,3,31257,3,1672319414),(139807,3,31761,3,1672319414),(139808,3,31762,3,1672319414),(139809,3,31763,3,1672319414),(139810,3,31764,3,1672319414),(139811,3,31765,3,1672319414),(139812,3,32404,3,1672319414),(139813,3,33133,3,1672319414),(139814,3,33147,3,1672319414),(139815,3,33161,3,1672319414),(139816,3,33205,3,1672319414),(139817,3,33225,3,1672319414),(139818,3,33248,3,1672319414),(139819,3,33257,3,1672319414),(139820,3,33276,3,1672319414),(139821,3,33295,3,1672319414),(139822,3,33306,3,1672319414),(139823,3,33307,3,1672319414),(139824,3,33308,3,1672319414),(139825,3,33309,3,1672319414),(139826,3,33310,3,1672319414),(139827,3,33311,3,1672319414),(139828,3,33352,3,1672319414),(139829,3,33353,3,1672319414),(139830,3,33354,3,1672319414),(139831,3,33355,3,1672319414),(139832,3,33356,3,1672319414),(139833,3,33808,3,1672319414),(139834,3,33809,3,1672319414),(139835,3,33810,3,1672319414),(139836,3,33811,3,1672319414),(139837,3,33920,3,1672319414),(139838,3,33921,3,1672319414),(139839,3,33922,3,1672319414),(139840,3,33923,3,1672319414),(139841,3,34260,3,1672319414),(139842,3,34261,3,1672319414),(139843,3,34262,3,1672319414),(139844,3,34263,3,1672319414),(139845,3,34264,3,1672319414),(139846,3,34265,3,1672319414),(139847,3,34266,3,1672319414),(139848,3,34267,3,1672319414),(139849,3,34268,3,1672319414),(139850,3,34324,3,1672319414),(139851,3,35177,3,1672319414),(139852,3,35178,3,1672319414),(139853,3,35179,3,1672319414),(139854,3,35180,3,1672319414),(139855,3,35181,3,1672319414),(139856,3,35182,3,1672319414),(139857,3,35183,3,1672319414),(139858,3,35184,3,1672319414),(139859,3,38582,3,1672319414),(139860,3,38583,3,1672319414),(139861,3,38584,3,1672319414),(139862,3,38585,3,1672319414),(139863,3,38586,3,1672319414),(139864,3,38587,3,1672319414),(139865,3,38588,3,1672319414),(139866,3,38636,3,1672319414),(139867,3,38637,3,1672319414),(139868,3,38638,3,1672319414),(139869,3,38639,3,1672319414),(139870,3,38640,3,1672319414),(139871,3,38641,3,1672319414),(139872,3,38642,3,1672319414),(139873,3,38690,3,1672319414),(139874,3,38691,3,1672319414),(139875,3,38692,3,1672319414),(139876,3,38693,3,1672319414),(139877,3,38694,3,1672319414),(139878,3,38695,3,1672319414),(139879,3,38696,3,1672319414),(139880,3,38744,3,1672319414),(139881,3,38745,3,1672319414),(139882,3,38746,3,1672319414),(139883,3,38747,3,1672319414),(139884,3,38748,3,1672319414),(139885,3,38749,3,1672319414),(139886,3,38750,3,1672319414),(139887,3,38798,3,1672319414),(139888,3,38799,3,1672319414),(139889,3,38800,3,1672319414),(139890,3,38801,3,1672319414),(139891,3,38802,3,1672319414),(139892,3,38803,3,1672319414),(139893,3,38804,3,1672319414),(139894,3,38852,3,1672319414),(139895,3,38853,3,1672319414),(139896,3,38854,3,1672319414),(139897,3,38855,3,1672319414),(139898,3,38856,3,1672319414),(139899,3,38857,3,1672319414),(139900,3,38858,3,1672319414),(139901,3,38906,3,1672319414),(139902,3,38907,3,1672319414),(139903,3,38908,3,1672319414),(139904,3,38909,3,1672319414),(139905,3,38910,3,1672319414),(139906,3,38911,3,1672319414),(139907,3,38912,3,1672319414),(139908,3,38960,3,1672319414),(139909,3,38961,3,1672319414),(139910,3,38962,3,1672319414),(139911,3,38963,3,1672319414),(139912,3,38964,3,1672319414),(139913,3,38965,3,1672319414),(139914,3,38966,3,1672319414),(139915,3,39014,3,1672319414),(139916,3,39015,3,1672319414),(139917,3,39016,3,1672319414),(139918,3,39017,3,1672319414),(139919,3,39018,3,1672319414),(139920,3,39019,3,1672319414),(139921,3,39020,3,1672319414),(139922,3,39068,3,1672319414),(139923,3,39069,3,1672319414),(139924,3,39070,3,1672319414),(139925,3,39071,3,1672319414),(139926,3,39072,3,1672319414),(139927,3,39073,3,1672319414),(139928,3,39074,3,1672319414),(139929,3,39122,3,1672319414),(139930,3,39123,3,1672319414),(139931,3,39124,3,1672319414),(139932,3,39125,3,1672319414),(139933,3,39126,3,1672319414),(139934,3,39127,3,1672319414),(139935,3,39128,3,1672319414),(139936,3,39176,3,1672319414),(139937,3,39177,3,1672319414),(139938,3,39178,3,1672319414),(139939,3,39179,3,1672319414),(139940,3,39180,3,1672319414),(139941,3,39181,3,1672319414),(139942,3,39182,3,1672319414),(139943,3,39230,3,1672319414),(139944,3,39231,3,1672319414),(139945,3,39232,3,1672319414),(139946,3,39233,3,1672319414),(139947,3,39234,3,1672319414),(139948,3,39235,3,1672319414),(139949,3,39236,3,1672319414),(139950,3,39284,3,1672319414),(139951,3,39285,3,1672319414),(139952,3,39286,3,1672319414),(139953,3,39287,3,1672319414),(139954,3,39288,3,1672319414),(139955,3,39289,3,1672319414),(139956,3,39290,3,1672319414),(139957,3,39608,3,1672319414),(139958,3,39609,3,1672319414),(139959,3,39610,3,1672319414),(139960,3,39611,3,1672319414),(139961,3,39612,3,1672319414),(139962,3,39613,3,1672319414),(139963,3,39614,3,1672319414),(139964,3,39662,3,1672319414),(139965,3,39663,3,1672319414),(139966,3,39664,3,1672319414),(139967,3,39665,3,1672319414),(139968,3,39666,3,1672319414),(139969,3,39667,3,1672319414),(139970,3,39668,3,1672319414),(139971,3,39716,3,1672319414),(139972,3,39717,3,1672319414),(139973,3,39718,3,1672319414),(139974,3,39719,3,1672319414),(139975,3,39720,3,1672319414),(139976,3,39721,3,1672319414),(139977,3,39722,3,1672319414),(139978,3,40138,3,1672319414),(139979,3,40809,3,1672319414),(139980,3,40810,3,1672319414),(139981,3,41617,3,1672319414),(139982,3,41638,3,1672319414),(139983,3,41659,3,1672319414),(139984,3,41680,3,1672319414),(139985,3,41701,3,1672319414),(139986,3,41722,3,1672319414),(139987,3,41743,3,1672319414),(139988,3,41764,3,1672319414),(139989,3,41785,3,1672319414),(139990,3,41806,3,1672319414),(139991,3,41827,3,1672319414),(139992,3,41848,3,1672319414),(139993,3,41869,3,1672319414),(139994,3,41890,3,1672319414),(139995,3,42016,3,1672319414),(139996,3,42037,3,1672319414),(139997,3,42058,3,1672319414),(139998,3,42100,3,1672319414),(139999,3,42726,3,1672319414),(140000,3,43565,3,1672319414),(140001,3,44236,3,1672319414),(140002,3,44344,3,1672319414),(140003,3,44352,3,1672319414),(140004,3,22835,2,1672319414),(140005,3,22836,2,1672319414),(140006,3,22837,2,1672319414),(140007,3,22838,2,1672319414),(140008,3,22839,2,1672319414),(140009,3,22840,2,1672319414),(140010,3,22841,2,1672319414),(140011,3,22842,2,1672319414),(140012,3,22843,2,1672319414),(140013,3,22844,2,1672319414),(140014,3,22845,2,1672319414),(140015,3,22846,2,1672319414),(140016,3,22848,2,1672319414),(140017,3,22851,2,1672319414),(140018,3,22852,2,1672319414),(140019,3,22853,2,1672319414),(140020,3,22854,2,1672319414),(140021,3,22855,2,1672319414),(140022,3,22856,2,1672319414),(140023,3,22857,2,1672319414),(140024,3,22858,2,1672319414),(140025,3,22859,2,1672319414),(140026,3,22860,2,1672319414),(140027,3,22861,2,1672319414),(140028,3,22862,2,1672319414),(140029,3,22863,2,1672319414),(140030,3,23649,2,1672319414),(140031,3,23650,2,1672319414),(140032,3,23651,2,1672319414),(140033,3,27930,2,1672319414),(140034,3,27931,2,1672319414),(140035,3,27935,2,1672319414),(140036,3,27936,2,1672319414),(140037,3,28804,2,1672319414),(140038,3,28805,2,1672319414),(140039,3,28810,2,1672319414),(140040,3,28811,2,1672319414),(140041,3,28812,2,1672319414),(140042,3,28813,2,1672319414),(140043,3,28814,2,1672319414),(140044,3,28815,2,1672319414),(140045,3,28816,2,1672319414),(140046,3,28817,2,1672319414),(140047,3,28818,2,1672319414),(140048,3,28819,2,1672319414),(140049,3,28820,2,1672319414),(140050,3,28821,2,1672319414),(140051,3,28822,2,1672319414),(140052,3,28823,2,1672319414),(140053,3,28824,2,1672319414),(140054,3,28825,2,1672319414),(140055,3,28826,2,1672319414),(140056,3,28827,2,1672319414),(140057,3,28828,2,1672319414),(140058,3,28829,2,1672319414),(140059,3,28830,2,1672319414),(140060,3,28831,2,1672319414),(140061,3,28832,2,1672319414),(140062,3,28833,2,1672319414),(140063,3,30121,2,1672319414),(140064,3,30122,2,1672319414),(140065,3,30123,2,1672319414),(140066,3,30431,2,1672319414),(140067,3,30432,2,1672319414),(140068,3,30433,2,1672319414),(140069,3,30434,2,1672319414),(140070,3,30435,2,1672319414),(140071,3,30436,2,1672319414),(140072,3,30437,2,1672319414),(140073,3,30438,2,1672319414),(140074,3,30439,2,1672319414),(140075,3,30440,2,1672319414),(140076,3,30441,2,1672319414),(140077,3,30442,2,1672319414),(140078,3,30443,2,1672319414),(140079,3,30444,2,1672319414),(140080,3,30445,2,1672319414),(140081,3,30446,2,1672319414),(140082,3,30447,2,1672319414),(140083,3,30449,2,1672319414),(140084,3,30450,2,1672319414),(140085,3,30451,2,1672319414),(140086,3,30452,2,1672319414),(140087,3,30453,2,1672319414),(140088,3,30454,2,1672319414),(140089,3,30455,2,1672319414),(140090,3,30456,2,1672319414),(140091,3,30457,2,1672319414),(140092,3,30458,2,1672319414),(140093,3,30459,2,1672319414),(140094,3,30460,2,1672319414),(140095,3,30461,2,1672319414),(140096,3,30462,2,1672319414),(140097,3,30463,2,1672319414),(140098,3,30464,2,1672319414),(140099,3,30465,2,1672319414),(140100,3,30466,2,1672319414),(140101,3,30470,2,1672319414),(140102,3,30471,2,1672319414),(140103,3,30479,2,1672319414),(140104,3,30480,2,1672319414),(140105,3,30481,2,1672319414),(140106,3,30482,2,1672319414),(140107,3,30483,2,1672319414),(140108,3,30484,2,1672319414),(140109,3,30485,2,1672319414),(140110,3,30486,2,1672319414),(140111,3,30487,2,1672319414),(140112,3,30488,2,1672319414),(140113,3,30489,2,1672319414),(140114,3,30490,2,1672319414),(140115,3,30491,2,1672319414),(140116,3,30492,2,1672319414),(140117,3,30493,2,1672319414),(140118,3,30494,2,1672319414),(140119,3,30495,2,1672319414),(140120,3,30496,2,1672319414),(140121,3,30497,2,1672319414),(140122,3,30499,2,1672319414),(140123,3,30500,2,1672319414),(140124,3,30503,2,1672319414),(140125,3,30504,2,1672319414),(140126,3,30505,2,1672319414),(140127,3,30506,2,1672319414),(140128,3,30507,2,1672319414),(140129,3,30508,2,1672319414),(140130,3,30509,2,1672319414),(140131,3,30510,2,1672319414),(140132,3,30512,2,1672319414),(140133,3,30513,2,1672319414),(140134,3,30514,2,1672319414),(140135,3,30515,2,1672319414),(140136,3,30516,2,1672319414),(140137,3,30517,2,1672319414),(140138,3,30518,2,1672319414),(140139,3,30519,2,1672319414),(140140,3,30637,2,1672319414),(140141,3,30638,2,1672319414),(140142,3,30639,2,1672319414),(140143,3,30640,2,1672319414),(140144,3,30641,2,1672319414),(140145,3,30642,2,1672319414),(140146,3,30643,2,1672319414),(140147,3,30644,2,1672319414),(140148,3,30645,2,1672319414),(140149,3,30646,2,1672319414),(140150,3,30647,2,1672319414),(140151,3,30648,2,1672319414),(140152,3,30649,2,1672319414),(140153,3,30650,2,1672319414),(140154,3,30651,2,1672319414),(140155,3,30652,2,1672319414),(140156,3,30653,2,1672319414),(140157,3,30655,2,1672319414),(140158,3,30656,2,1672319414),(140159,3,30657,2,1672319414),(140160,3,30658,2,1672319414),(140161,3,30659,2,1672319414),(140162,3,30660,2,1672319414),(140163,3,30661,2,1672319414),(140164,3,30662,2,1672319414),(140165,3,30663,2,1672319414),(140166,3,30664,2,1672319414),(140167,3,30665,2,1672319414),(140168,3,30666,2,1672319414),(140169,3,30667,2,1672319414),(140170,3,30668,2,1672319414),(140171,3,30669,2,1672319414),(140172,3,30670,2,1672319414),(140173,3,30671,2,1672319414),(140174,3,30672,2,1672319414),(140175,3,30676,2,1672319414),(140176,3,30677,2,1672319414),(140177,3,31055,2,1672319414),(140178,3,31056,2,1672319414),(140179,3,31057,2,1672319414),(140180,3,31058,2,1672319414),(140181,3,31059,2,1672319414),(140182,3,31060,2,1672319414),(140183,3,31061,2,1672319414),(140184,3,31062,2,1672319414),(140185,3,31063,2,1672319414),(140186,3,31064,2,1672319414),(140187,3,31065,2,1672319414),(140188,3,31066,2,1672319414),(140189,3,31067,2,1672319414),(140190,3,31068,2,1672319414),(140191,3,31069,2,1672319414),(140192,3,31070,2,1672319414),(140193,3,31071,2,1672319414),(140194,3,31072,2,1672319414),(140195,3,31073,2,1672319414),(140196,3,31074,2,1672319414),(140197,3,31075,2,1672319414),(140198,3,31076,2,1672319414),(140199,3,31077,2,1672319414),(140200,3,31078,2,1672319414),(140201,3,31079,2,1672319414),(140202,3,31080,2,1672319414),(140203,3,31081,2,1672319414),(140204,3,31082,2,1672319414),(140205,3,31083,2,1672319414),(140206,3,31084,2,1672319414),(140207,3,31085,2,1672319414),(140208,3,31086,2,1672319414),(140209,3,31087,2,1672319414),(140210,3,31088,2,1672319414),(140211,3,31089,2,1672319414),(140212,3,31090,2,1672319414),(140213,3,31091,2,1672319414),(140214,3,31092,2,1672319414),(140215,3,31093,2,1672319414),(140216,3,31094,2,1672319414),(140217,3,31095,2,1672319414),(140218,3,31096,2,1672319414),(140219,3,31097,2,1672319414),(140220,3,31098,2,1672319414),(140221,3,31099,2,1672319414),(140222,3,31100,2,1672319414),(140223,3,31101,2,1672319414),(140224,3,31102,2,1672319414),(140225,3,31103,2,1672319414),(140226,3,31104,2,1672319414),(140227,3,31105,2,1672319414),(140228,3,31106,2,1672319414),(140229,3,31107,2,1672319414),(140230,3,31108,2,1672319414),(140231,3,31109,2,1672319414),(140232,3,31110,2,1672319414),(140233,3,31111,2,1672319414),(140234,3,31112,2,1672319414),(140235,3,31113,2,1672319414),(140236,3,31114,2,1672319414),(140237,3,31115,2,1672319414),(140238,3,31116,2,1672319414),(140239,3,31117,2,1672319414),(140240,3,31118,2,1672319414),(140241,3,31119,2,1672319414),(140242,3,31120,2,1672319414),(140243,3,31121,2,1672319414),(140244,3,31168,2,1672319414),(140245,3,31169,2,1672319414),(140246,3,31170,2,1672319414),(140247,3,31171,2,1672319414),(140248,3,31172,2,1672319414),(140249,3,31173,2,1672319414),(140250,3,31174,2,1672319414),(140251,3,31175,2,1672319414),(140252,3,31176,2,1672319414),(140253,3,31177,2,1672319414),(140254,3,31178,2,1672319414),(140255,3,31179,2,1672319414),(140256,3,31180,2,1672319414),(140257,3,31181,2,1672319414),(140258,3,31182,2,1672319414),(140259,3,31183,2,1672319414),(140260,3,31184,2,1672319414),(140261,3,31185,2,1672319414),(140262,3,31186,2,1672319414),(140263,3,31187,2,1672319414),(140264,3,31188,2,1672319414),(140265,3,31189,2,1672319414),(140266,3,31190,2,1672319414),(140267,3,31191,2,1672319414),(140268,3,31192,2,1672319414),(140269,3,31193,2,1672319414),(140270,3,31194,2,1672319414),(140271,3,31195,2,1672319414),(140272,3,31196,2,1672319414),(140273,3,31197,2,1672319414),(140274,3,31198,2,1672319414),(140275,3,31199,2,1672319414),(140276,3,31200,2,1672319414),(140277,3,31201,2,1672319414),(140278,3,31202,2,1672319414),(140279,3,31203,2,1672319414),(140280,3,31204,2,1672319414),(140281,3,31205,2,1672319414),(140282,3,31206,2,1672319414),(140283,3,31207,2,1672319414),(140284,3,31208,2,1672319414),(140285,3,31209,2,1672319414),(140286,3,31210,2,1672319414),(140287,3,31211,2,1672319414),(140288,3,31212,2,1672319414),(140289,3,31213,2,1672319414),(140290,3,31214,2,1672319414),(140291,3,31215,2,1672319414),(140292,3,31216,2,1672319414),(140293,3,31217,2,1672319414),(140294,3,31218,2,1672319414),(140295,3,31219,2,1672319414),(140296,3,31220,2,1672319414),(140297,3,31221,2,1672319414),(140298,3,31222,2,1672319414),(140299,3,31223,2,1672319414),(140300,3,31224,2,1672319414),(140301,3,31225,2,1672319414),(140302,3,31226,2,1672319414),(140303,3,31227,2,1672319414),(140304,3,31228,2,1672319414),(140305,3,31229,2,1672319414),(140306,3,31230,2,1672319414),(140307,3,31231,2,1672319414),(140308,3,31232,2,1672319414),(140309,3,31233,2,1672319414),(140310,3,31234,2,1672319414),(140311,3,31235,2,1672319414),(140312,3,31236,2,1672319414),(140313,3,31237,2,1672319414),(140314,3,31238,2,1672319414),(140315,3,31239,2,1672319414),(140316,3,31240,2,1672319414),(140317,3,31241,2,1672319414),(140318,3,31242,2,1672319414),(140319,3,31243,2,1672319414),(140320,3,31244,2,1672319414),(140321,3,31245,2,1672319414),(140322,3,31246,2,1672319414),(140323,3,31247,2,1672319414),(140324,3,31248,2,1672319414),(140325,3,31249,2,1672319414),(140326,3,31250,2,1672319414),(140327,3,31251,2,1672319414),(140328,3,31252,2,1672319414),(140329,3,31554,2,1672319414),(140330,3,31555,2,1672319414),(140331,3,31556,2,1672319414),(140332,3,31570,2,1672319414),(140333,3,31571,2,1672319414),(140334,3,31573,2,1672319414),(140335,3,31577,2,1672319414),(140336,3,31578,2,1672319414),(140337,3,31579,2,1672319414),(140338,3,31580,2,1672319414),(140339,3,31581,2,1672319414),(140340,3,31582,2,1672319414),(140341,3,31583,2,1672319414),(140342,3,31584,2,1672319414),(140343,3,31585,2,1672319414),(140344,3,31586,2,1672319414),(140345,3,31587,2,1672319414),(140346,3,31588,2,1672319414),(140347,3,31589,2,1672319414),(140348,3,31590,2,1672319414),(140349,3,31591,2,1672319414),(140350,3,31592,2,1672319414),(140351,3,31593,2,1672319414),(140352,3,31594,2,1672319414),(140353,3,31595,2,1672319414),(140354,3,31596,2,1672319414),(140355,3,31597,2,1672319414),(140356,3,31598,2,1672319414),(140357,3,31599,2,1672319414),(140358,3,31600,2,1672319414),(140359,3,31601,2,1672319414),(140360,3,31602,2,1672319414),(140361,3,31603,2,1672319414),(140362,3,31604,2,1672319414),(140363,3,31605,2,1672319414),(140364,3,31606,2,1672319414),(140365,3,31607,2,1672319414),(140366,3,31608,2,1672319414),(140367,3,31609,2,1672319414),(140368,3,31610,2,1672319414),(140369,3,31611,2,1672319414),(140370,3,31684,2,1672319414),(140371,3,31685,2,1672319414),(140372,3,31686,2,1672319414),(140373,3,31687,2,1672319414),(140374,3,31688,2,1672319414),(140375,3,31689,2,1672319414),(140376,3,31690,2,1672319414),(140377,3,31691,2,1672319414),(140378,3,31692,2,1672319414),(140379,3,31693,2,1672319414),(140380,3,31694,2,1672319414),(140381,3,31695,2,1672319414),(140382,3,31696,2,1672319414),(140383,3,31697,2,1672319414),(140384,3,31698,2,1672319414),(140385,3,31699,2,1672319414),(140386,3,31700,2,1672319414),(140387,3,31701,2,1672319414),(140388,3,31702,2,1672319414),(140389,3,31703,2,1672319414),(140390,3,31704,2,1672319414),(140391,3,31705,2,1672319414),(140392,3,31706,2,1672319414),(140393,3,31707,2,1672319414),(140394,3,31708,2,1672319414),(140395,3,31709,2,1672319414),(140396,3,31710,2,1672319414),(140397,3,31711,2,1672319414),(140398,3,31712,2,1672319414),(140399,3,31713,2,1672319414),(140400,3,31714,2,1672319414),(140401,3,31715,2,1672319414),(140402,3,31716,2,1672319414),(140403,3,31717,2,1672319414),(140404,3,31718,2,1672319414),(140405,3,31719,2,1672319414),(140406,3,31720,2,1672319414),(140407,3,31721,2,1672319414),(140408,3,31722,2,1672319414),(140409,3,31723,2,1672319414),(140410,3,31724,2,1672319414),(140411,3,31725,2,1672319414),(140412,3,31726,2,1672319414),(140413,3,31727,2,1672319414),(140414,3,31728,2,1672319414),(140415,3,31729,2,1672319414),(140416,3,31730,2,1672319414),(140417,3,31731,2,1672319414),(140418,3,31732,2,1672319414),(140419,3,31733,2,1672319414),(140420,3,31734,2,1672319414),(140421,3,31735,2,1672319414),(140422,3,31736,2,1672319414),(140423,3,31737,2,1672319414),(140424,3,31738,2,1672319414),(140425,3,31739,2,1672319414),(140426,3,31740,2,1672319414),(140427,3,31741,2,1672319414),(140428,3,31742,2,1672319414),(140429,3,31743,2,1672319414),(140430,3,31744,2,1672319414),(140431,3,31745,2,1672319414),(140432,3,31746,2,1672319414),(140433,3,31747,2,1672319414),(140434,3,31748,2,1672319414),(140435,3,31749,2,1672319414),(140436,3,31750,2,1672319414),(140437,3,31751,2,1672319414),(140438,3,31752,2,1672319414),(140439,3,31753,2,1672319414),(140440,3,31754,2,1672319414),(140441,3,31755,2,1672319414),(140442,3,31756,2,1672319414),(140443,3,31757,2,1672319414),(140444,3,31758,2,1672319414),(140445,3,31759,2,1672319414),(140446,3,31760,2,1672319414),(140447,3,32364,2,1672319414),(140448,3,32365,2,1672319414),(140449,3,32366,2,1672319414),(140450,3,32367,2,1672319414),(140451,3,32368,2,1672319414),(140452,3,32369,2,1672319414),(140453,3,32370,2,1672319414),(140454,3,32371,2,1672319414),(140455,3,32372,2,1672319414),(140456,3,32373,2,1672319414),(140457,3,32374,2,1672319414),(140458,3,32375,2,1672319414),(140459,3,32376,2,1672319414),(140460,3,32377,2,1672319414),(140461,3,32378,2,1672319414),(140462,3,32379,2,1672319414),(140463,3,32380,2,1672319414),(140464,3,32381,2,1672319414),(140465,3,32382,2,1672319414),(140466,3,32383,2,1672319414),(140467,3,32384,2,1672319414),(140468,3,32385,2,1672319414),(140469,3,32386,2,1672319414),(140470,3,32387,2,1672319414),(140471,3,32388,2,1672319414),(140472,3,32389,2,1672319414),(140473,3,32390,2,1672319414),(140474,3,32391,2,1672319414),(140475,3,32392,2,1672319414),(140476,3,32393,2,1672319414),(140477,3,32394,2,1672319414),(140478,3,32395,2,1672319414),(140479,3,32396,2,1672319414),(140480,3,32397,2,1672319414),(140481,3,32398,2,1672319414),(140482,3,32399,2,1672319414),(140483,3,32400,2,1672319414),(140484,3,32401,2,1672319414),(140485,3,32402,2,1672319414),(140486,3,32403,2,1672319414),(140487,3,33126,2,1672319414),(140488,3,33127,2,1672319414),(140489,3,33128,2,1672319414),(140490,3,33129,2,1672319414),(140491,3,33130,2,1672319414),(140492,3,33131,2,1672319414),(140493,3,33132,2,1672319414),(140494,3,33140,2,1672319414),(140495,3,33141,2,1672319414),(140496,3,33142,2,1672319414),(140497,3,33143,2,1672319414),(140498,3,33144,2,1672319414),(140499,3,33145,2,1672319414),(140500,3,33146,2,1672319414),(140501,3,33154,2,1672319414),(140502,3,33155,2,1672319414),(140503,3,33156,2,1672319414),(140504,3,33157,2,1672319414),(140505,3,33158,2,1672319414),(140506,3,33159,2,1672319414),(140507,3,33160,2,1672319414),(140508,3,33184,2,1672319414),(140509,3,33185,2,1672319414),(140510,3,33186,2,1672319414),(140511,3,33187,2,1672319414),(140512,3,33188,2,1672319414),(140513,3,33189,2,1672319414),(140514,3,33190,2,1672319414),(140515,3,33191,2,1672319414),(140516,3,33192,2,1672319414),(140517,3,33193,2,1672319414),(140518,3,33194,2,1672319414),(140519,3,33195,2,1672319414),(140520,3,33196,2,1672319414),(140521,3,33197,2,1672319414),(140522,3,33198,2,1672319414),(140523,3,33199,2,1672319414),(140524,3,33200,2,1672319414),(140525,3,33201,2,1672319414),(140526,3,33202,2,1672319414),(140527,3,33203,2,1672319414),(140528,3,33204,2,1672319414),(140529,3,33207,2,1672319414),(140530,3,33208,2,1672319414),(140531,3,33209,2,1672319414),(140532,3,33210,2,1672319414),(140533,3,33211,2,1672319414),(140534,3,33212,2,1672319414),(140535,3,33213,2,1672319414),(140536,3,33214,2,1672319414),(140537,3,33215,2,1672319414),(140538,3,33216,2,1672319414),(140539,3,33217,2,1672319414),(140540,3,33218,2,1672319414),(140541,3,33219,2,1672319414),(140542,3,33220,2,1672319414),(140543,3,33221,2,1672319414),(140544,3,33222,2,1672319414),(140545,3,33223,2,1672319414),(140546,3,33224,2,1672319414),(140547,3,33227,2,1672319414),(140548,3,33228,2,1672319414),(140549,3,33229,2,1672319414),(140550,3,33230,2,1672319414),(140551,3,33231,2,1672319414),(140552,3,33232,2,1672319414),(140553,3,33233,2,1672319414),(140554,3,33234,2,1672319414),(140555,3,33235,2,1672319414),(140556,3,33236,2,1672319414),(140557,3,33237,2,1672319414),(140558,3,33238,2,1672319414),(140559,3,33239,2,1672319414),(140560,3,33240,2,1672319414),(140561,3,33241,2,1672319414),(140562,3,33242,2,1672319414),(140563,3,33243,2,1672319414),(140564,3,33244,2,1672319414),(140565,3,33245,2,1672319414),(140566,3,33246,2,1672319414),(140567,3,33247,2,1672319414),(140568,3,33250,2,1672319414),(140569,3,33251,2,1672319414),(140570,3,33252,2,1672319414),(140571,3,33253,2,1672319414),(140572,3,33254,2,1672319414),(140573,3,33255,2,1672319414),(140574,3,33256,2,1672319414),(140575,3,33259,2,1672319414),(140576,3,33260,2,1672319414),(140577,3,33261,2,1672319414),(140578,3,33262,2,1672319414),(140579,3,33263,2,1672319414),(140580,3,33264,2,1672319414),(140581,3,33265,2,1672319414),(140582,3,33266,2,1672319414),(140583,3,33267,2,1672319414),(140584,3,33268,2,1672319414),(140585,3,33269,2,1672319414),(140586,3,33270,2,1672319414),(140587,3,33271,2,1672319414),(140588,3,33272,2,1672319414),(140589,3,33273,2,1672319414),(140590,3,33274,2,1672319414),(140591,3,33275,2,1672319414),(140592,3,33278,2,1672319414),(140593,3,33279,2,1672319414),(140594,3,33280,2,1672319414),(140595,3,33281,2,1672319414),(140596,3,33282,2,1672319414),(140597,3,33283,2,1672319414),(140598,3,33284,2,1672319414),(140599,3,33285,2,1672319414),(140600,3,33286,2,1672319414),(140601,3,33287,2,1672319414),(140602,3,33288,2,1672319414),(140603,3,33289,2,1672319414),(140604,3,33290,2,1672319414),(140605,3,33291,2,1672319414),(140606,3,33292,2,1672319414),(140607,3,33293,2,1672319414),(140608,3,33294,2,1672319414),(140609,3,33297,2,1672319414),(140610,3,33298,2,1672319414),(140611,3,33299,2,1672319414),(140612,3,33300,2,1672319414),(140613,3,33301,2,1672319414),(140614,3,33302,2,1672319414),(140615,3,33303,2,1672319414),(140616,3,33304,2,1672319414),(140617,3,33305,2,1672319414),(140618,3,33348,2,1672319414),(140619,3,33349,2,1672319414),(140620,3,33350,2,1672319414),(140621,3,33351,2,1672319414),(140622,3,33764,2,1672319414),(140623,3,33765,2,1672319414),(140624,3,33766,2,1672319414),(140625,3,33767,2,1672319414),(140626,3,33768,2,1672319414),(140627,3,33769,2,1672319414),(140628,3,33770,2,1672319414),(140629,3,33771,2,1672319414),(140630,3,33772,2,1672319414),(140631,3,33773,2,1672319414),(140632,3,33774,2,1672319414),(140633,3,33775,2,1672319414),(140634,3,33776,2,1672319414),(140635,3,33777,2,1672319414),(140636,3,33778,2,1672319414),(140637,3,33779,2,1672319414),(140638,3,33780,2,1672319414),(140639,3,33781,2,1672319414),(140640,3,33782,2,1672319414),(140641,3,33783,2,1672319414),(140642,3,33784,2,1672319414),(140643,3,33785,2,1672319414),(140644,3,33786,2,1672319414),(140645,3,33787,2,1672319414),(140646,3,33788,2,1672319414),(140647,3,33789,2,1672319414),(140648,3,33790,2,1672319414),(140649,3,33791,2,1672319414),(140650,3,33792,2,1672319414),(140651,3,33793,2,1672319414),(140652,3,33794,2,1672319414),(140653,3,33795,2,1672319414),(140654,3,33796,2,1672319414),(140655,3,33797,2,1672319414),(140656,3,33798,2,1672319414),(140657,3,33799,2,1672319414),(140658,3,33800,2,1672319414),(140659,3,33801,2,1672319414),(140660,3,33802,2,1672319414),(140661,3,33803,2,1672319414),(140662,3,33804,2,1672319414),(140663,3,33805,2,1672319414),(140664,3,33806,2,1672319414),(140665,3,33807,2,1672319414),(140666,3,33886,2,1672319414),(140667,3,33887,2,1672319414),(140668,3,33888,2,1672319414),(140669,3,33889,2,1672319414),(140670,3,33891,2,1672319414),(140671,3,33892,2,1672319414),(140672,3,33893,2,1672319414),(140673,3,33894,2,1672319414),(140674,3,33895,2,1672319414),(140675,3,33896,2,1672319414),(140676,3,33897,2,1672319414),(140677,3,33898,2,1672319414),(140678,3,33899,2,1672319414),(140679,3,33900,2,1672319414),(140680,3,33901,2,1672319414),(140681,3,33902,2,1672319414),(140682,3,33903,2,1672319414),(140683,3,33904,2,1672319414),(140684,3,33905,2,1672319414),(140685,3,33906,2,1672319414),(140686,3,33907,2,1672319414),(140687,3,33908,2,1672319414),(140688,3,33909,2,1672319414),(140689,3,33910,2,1672319414),(140690,3,33911,2,1672319414),(140691,3,33912,2,1672319414),(140692,3,33913,2,1672319414),(140693,3,33914,2,1672319414),(140694,3,33915,2,1672319414),(140695,3,33916,2,1672319414),(140696,3,33917,2,1672319414),(140697,3,33918,2,1672319414),(140698,3,33919,2,1672319414),(140699,3,34226,2,1672319414),(140700,3,34227,2,1672319414),(140701,3,34228,2,1672319414),(140702,3,34229,2,1672319414),(140703,3,34230,2,1672319414),(140704,3,34231,2,1672319414),(140705,3,34232,2,1672319414),(140706,3,34233,2,1672319414),(140707,3,34234,2,1672319414),(140708,3,34235,2,1672319414),(140709,3,34236,2,1672319414),(140710,3,34237,2,1672319414),(140711,3,34238,2,1672319414),(140712,3,34239,2,1672319414),(140713,3,34240,2,1672319414),(140714,3,34241,2,1672319414),(140715,3,34242,2,1672319414),(140716,3,34243,2,1672319414),(140717,3,34244,2,1672319414),(140718,3,34245,2,1672319414),(140719,3,34246,2,1672319414),(140720,3,34247,2,1672319414),(140721,3,34248,2,1672319414),(140722,3,34249,2,1672319414),(140723,3,34250,2,1672319414),(140724,3,34251,2,1672319414),(140725,3,34252,2,1672319414),(140726,3,34253,2,1672319414),(140727,3,34254,2,1672319414),(140728,3,34255,2,1672319414),(140729,3,34256,2,1672319414),(140730,3,34257,2,1672319414),(140731,3,34258,2,1672319414),(140732,3,34259,2,1672319414),(140733,3,34321,2,1672319414),(140734,3,34322,2,1672319414),(140735,3,34323,2,1672319414),(140736,3,35153,2,1672319414),(140737,3,35154,2,1672319414),(140738,3,35155,2,1672319414),(140739,3,35156,2,1672319414),(140740,3,35157,2,1672319414),(140741,3,35158,2,1672319414),(140742,3,35159,2,1672319414),(140743,3,35160,2,1672319414),(140744,3,35161,2,1672319414),(140745,3,35162,2,1672319414),(140746,3,35163,2,1672319414),(140747,3,35164,2,1672319414),(140748,3,35165,2,1672319414),(140749,3,35166,2,1672319414),(140750,3,35167,2,1672319414),(140751,3,35168,2,1672319414),(140752,3,35169,2,1672319414),(140753,3,35170,2,1672319414),(140754,3,35171,2,1672319414),(140755,3,35172,2,1672319414),(140756,3,35173,2,1672319414),(140757,3,35174,2,1672319414),(140758,3,35175,2,1672319414),(140759,3,35176,2,1672319414),(140760,3,38575,2,1672319414),(140761,3,38576,2,1672319414),(140762,3,38577,2,1672319414),(140763,3,38578,2,1672319414),(140764,3,38579,2,1672319414),(140765,3,38580,2,1672319414),(140766,3,38581,2,1672319414),(140767,3,38629,2,1672319414),(140768,3,38630,2,1672319414),(140769,3,38631,2,1672319414),(140770,3,38632,2,1672319414),(140771,3,38633,2,1672319414),(140772,3,38634,2,1672319414),(140773,3,38635,2,1672319414),(140774,3,38683,2,1672319414),(140775,3,38684,2,1672319414),(140776,3,38685,2,1672319414),(140777,3,38686,2,1672319414),(140778,3,38687,2,1672319414),(140779,3,38688,2,1672319414),(140780,3,38689,2,1672319414),(140781,3,38737,2,1672319414),(140782,3,38738,2,1672319414),(140783,3,38739,2,1672319414),(140784,3,38740,2,1672319414),(140785,3,38741,2,1672319414),(140786,3,38742,2,1672319414),(140787,3,38743,2,1672319414),(140788,3,38791,2,1672319414),(140789,3,38792,2,1672319414),(140790,3,38793,2,1672319414),(140791,3,38794,2,1672319414),(140792,3,38795,2,1672319414),(140793,3,38796,2,1672319414),(140794,3,38797,2,1672319414),(140795,3,38845,2,1672319414),(140796,3,38846,2,1672319414),(140797,3,38847,2,1672319414),(140798,3,38848,2,1672319414),(140799,3,38849,2,1672319414),(140800,3,38850,2,1672319414),(140801,3,38851,2,1672319414),(140802,3,38899,2,1672319414),(140803,3,38900,2,1672319414),(140804,3,38901,2,1672319414),(140805,3,38902,2,1672319414),(140806,3,38903,2,1672319414),(140807,3,38904,2,1672319414),(140808,3,38905,2,1672319414),(140809,3,38953,2,1672319414),(140810,3,38954,2,1672319414),(140811,3,38955,2,1672319414),(140812,3,38956,2,1672319414),(140813,3,38957,2,1672319414),(140814,3,38958,2,1672319414),(140815,3,38959,2,1672319414),(140816,3,39007,2,1672319414),(140817,3,39008,2,1672319414),(140818,3,39009,2,1672319414),(140819,3,39010,2,1672319414),(140820,3,39011,2,1672319414),(140821,3,39012,2,1672319414),(140822,3,39013,2,1672319414),(140823,3,39061,2,1672319414),(140824,3,39062,2,1672319414),(140825,3,39063,2,1672319414),(140826,3,39064,2,1672319414),(140827,3,39065,2,1672319414),(140828,3,39066,2,1672319414),(140829,3,39067,2,1672319414),(140830,3,39115,2,1672319414),(140831,3,39116,2,1672319414),(140832,3,39117,2,1672319414),(140833,3,39118,2,1672319414),(140834,3,39119,2,1672319414),(140835,3,39120,2,1672319414),(140836,3,39121,2,1672319414),(140837,3,39169,2,1672319414),(140838,3,39170,2,1672319414),(140839,3,39171,2,1672319414),(140840,3,39172,2,1672319414),(140841,3,39173,2,1672319414),(140842,3,39174,2,1672319414),(140843,3,39175,2,1672319414),(140844,3,39223,2,1672319414),(140845,3,39224,2,1672319414),(140846,3,39225,2,1672319414),(140847,3,39226,2,1672319414),(140848,3,39227,2,1672319414),(140849,3,39228,2,1672319414),(140850,3,39229,2,1672319414),(140851,3,39277,2,1672319414),(140852,3,39278,2,1672319414),(140853,3,39279,2,1672319414),(140854,3,39280,2,1672319414),(140855,3,39281,2,1672319414),(140856,3,39282,2,1672319414),(140857,3,39283,2,1672319414),(140858,3,39601,2,1672319414),(140859,3,39602,2,1672319414),(140860,3,39603,2,1672319414),(140861,3,39604,2,1672319414),(140862,3,39605,2,1672319414),(140863,3,39606,2,1672319414),(140864,3,39607,2,1672319414),(140865,3,39655,2,1672319414),(140866,3,39656,2,1672319414),(140867,3,39657,2,1672319414),(140868,3,39658,2,1672319414),(140869,3,39659,2,1672319414),(140870,3,39660,2,1672319414),(140871,3,39661,2,1672319414),(140872,3,39709,2,1672319414),(140873,3,39710,2,1672319414),(140874,3,39711,2,1672319414),(140875,3,39712,2,1672319414),(140876,3,39713,2,1672319414),(140877,3,39714,2,1672319414),(140878,3,39715,2,1672319414),(140879,3,40117,2,1672319414),(140880,3,40119,2,1672319414),(140881,3,40120,2,1672319414),(140882,3,40121,2,1672319414),(140883,3,40122,2,1672319414),(140884,3,40123,2,1672319414),(140885,3,40124,2,1672319414),(140886,3,40125,2,1672319414),(140887,3,40126,2,1672319414),(140888,3,40128,2,1672319414),(140889,3,40129,2,1672319414),(140890,3,40130,2,1672319414),(140891,3,40131,2,1672319414),(140892,3,40132,2,1672319414),(140893,3,40133,2,1672319414),(140894,3,40134,2,1672319414),(140895,3,40135,2,1672319414),(140896,3,40136,2,1672319414),(140897,3,40798,2,1672319414),(140898,3,40799,2,1672319414),(140899,3,40800,2,1672319414),(140900,3,40801,2,1672319414),(140901,3,40802,2,1672319414),(140902,3,40803,2,1672319414),(140903,3,40804,2,1672319414),(140904,3,40805,2,1672319414),(140905,3,40806,2,1672319414),(140906,3,40807,2,1672319414),(140907,3,40808,2,1672319414),(140908,3,41606,2,1672319414),(140909,3,41607,2,1672319414),(140910,3,41608,2,1672319414),(140911,3,41609,2,1672319414),(140912,3,41610,2,1672319414),(140913,3,41611,2,1672319414),(140914,3,41612,2,1672319414),(140915,3,41613,2,1672319414),(140916,3,41614,2,1672319414),(140917,3,41615,2,1672319414),(140918,3,41616,2,1672319414),(140919,3,41627,2,1672319414),(140920,3,41628,2,1672319414),(140921,3,41629,2,1672319414),(140922,3,41630,2,1672319414),(140923,3,41631,2,1672319414),(140924,3,41632,2,1672319414),(140925,3,41633,2,1672319414),(140926,3,41634,2,1672319414),(140927,3,41635,2,1672319414),(140928,3,41636,2,1672319414),(140929,3,41637,2,1672319414),(140930,3,41648,2,1672319414),(140931,3,41649,2,1672319414),(140932,3,41650,2,1672319414),(140933,3,41651,2,1672319414),(140934,3,41652,2,1672319414),(140935,3,41653,2,1672319414),(140936,3,41654,2,1672319414),(140937,3,41655,2,1672319414),(140938,3,41656,2,1672319414),(140939,3,41657,2,1672319414),(140940,3,41658,2,1672319414),(140941,3,41669,2,1672319414),(140942,3,41670,2,1672319414),(140943,3,41671,2,1672319414),(140944,3,41672,2,1672319414),(140945,3,41673,2,1672319414),(140946,3,41674,2,1672319414),(140947,3,41675,2,1672319414),(140948,3,41676,2,1672319414),(140949,3,41677,2,1672319414),(140950,3,41678,2,1672319414),(140951,3,41679,2,1672319414),(140952,3,41690,2,1672319414),(140953,3,41691,2,1672319414),(140954,3,41692,2,1672319414),(140955,3,41693,2,1672319414),(140956,3,41694,2,1672319414),(140957,3,41695,2,1672319414),(140958,3,41696,2,1672319414),(140959,3,41697,2,1672319414),(140960,3,41698,2,1672319414),(140961,3,41699,2,1672319414),(140962,3,41700,2,1672319414),(140963,3,41711,2,1672319414),(140964,3,41712,2,1672319414),(140965,3,41713,2,1672319414),(140966,3,41714,2,1672319414),(140967,3,41715,2,1672319414),(140968,3,41716,2,1672319414),(140969,3,41717,2,1672319414),(140970,3,41718,2,1672319414),(140971,3,41719,2,1672319414),(140972,3,41720,2,1672319414),(140973,3,41721,2,1672319414),(140974,3,41732,2,1672319414),(140975,3,41733,2,1672319414),(140976,3,41734,2,1672319414),(140977,3,41735,2,1672319414),(140978,3,41736,2,1672319414),(140979,3,41737,2,1672319414),(140980,3,41738,2,1672319414),(140981,3,41739,2,1672319414),(140982,3,41740,2,1672319414),(140983,3,41741,2,1672319414),(140984,3,41742,2,1672319414),(140985,3,41753,2,1672319414),(140986,3,41754,2,1672319414),(140987,3,41755,2,1672319414),(140988,3,41756,2,1672319414),(140989,3,41757,2,1672319414),(140990,3,41758,2,1672319414),(140991,3,41759,2,1672319414),(140992,3,41760,2,1672319414),(140993,3,41761,2,1672319414),(140994,3,41762,2,1672319414),(140995,3,41763,2,1672319414),(140996,3,41774,2,1672319414),(140997,3,41775,2,1672319414),(140998,3,41776,2,1672319414),(140999,3,41777,2,1672319414),(141000,3,41778,2,1672319414),(141001,3,41779,2,1672319414),(141002,3,41780,2,1672319414),(141003,3,41781,2,1672319414),(141004,3,41782,2,1672319414),(141005,3,41783,2,1672319414),(141006,3,41784,2,1672319414),(141007,3,41795,2,1672319414),(141008,3,41796,2,1672319414),(141009,3,41797,2,1672319414),(141010,3,41798,2,1672319414),(141011,3,41799,2,1672319414),(141012,3,41800,2,1672319414),(141013,3,41801,2,1672319414),(141014,3,41802,2,1672319414),(141015,3,41803,2,1672319414),(141016,3,41804,2,1672319414),(141017,3,41805,2,1672319414),(141018,3,41816,2,1672319414),(141019,3,41817,2,1672319414),(141020,3,41818,2,1672319414),(141021,3,41819,2,1672319414),(141022,3,41820,2,1672319414),(141023,3,41821,2,1672319414),(141024,3,41822,2,1672319414),(141025,3,41823,2,1672319414),(141026,3,41824,2,1672319414),(141027,3,41825,2,1672319414),(141028,3,41826,2,1672319414),(141029,3,41837,2,1672319414),(141030,3,41838,2,1672319414),(141031,3,41839,2,1672319414),(141032,3,41840,2,1672319414),(141033,3,41841,2,1672319414),(141034,3,41842,2,1672319414),(141035,3,41843,2,1672319414),(141036,3,41844,2,1672319414),(141037,3,41845,2,1672319414),(141038,3,41846,2,1672319414),(141039,3,41847,2,1672319414),(141040,3,41858,2,1672319414),(141041,3,41859,2,1672319414),(141042,3,41860,2,1672319414),(141043,3,41861,2,1672319414),(141044,3,41862,2,1672319414),(141045,3,41863,2,1672319414),(141046,3,41864,2,1672319414),(141047,3,41865,2,1672319414),(141048,3,41866,2,1672319414),(141049,3,41867,2,1672319414),(141050,3,41868,2,1672319414),(141051,3,41879,2,1672319414),(141052,3,41880,2,1672319414),(141053,3,41881,2,1672319414),(141054,3,41882,2,1672319414),(141055,3,41883,2,1672319414),(141056,3,41884,2,1672319414),(141057,3,41885,2,1672319414),(141058,3,41886,2,1672319414),(141059,3,41887,2,1672319414),(141060,3,41888,2,1672319414),(141061,3,41889,2,1672319414),(141062,3,42005,2,1672319414),(141063,3,42006,2,1672319414),(141064,3,42007,2,1672319414),(141065,3,42008,2,1672319414),(141066,3,42009,2,1672319414),(141067,3,42010,2,1672319414),(141068,3,42011,2,1672319414),(141069,3,42012,2,1672319414),(141070,3,42013,2,1672319414),(141071,3,42014,2,1672319414),(141072,3,42015,2,1672319414),(141073,3,42026,2,1672319414),(141074,3,42027,2,1672319414),(141075,3,42028,2,1672319414),(141076,3,42029,2,1672319414),(141077,3,42030,2,1672319414),(141078,3,42031,2,1672319414),(141079,3,42032,2,1672319414),(141080,3,42033,2,1672319414),(141081,3,42034,2,1672319414),(141082,3,42035,2,1672319414),(141083,3,42036,2,1672319414),(141084,3,42047,2,1672319414),(141085,3,42048,2,1672319414),(141086,3,42049,2,1672319414),(141087,3,42050,2,1672319414),(141088,3,42051,2,1672319414),(141089,3,42052,2,1672319414),(141090,3,42053,2,1672319414),(141091,3,42054,2,1672319414),(141092,3,42055,2,1672319414),(141093,3,42056,2,1672319414),(141094,3,42057,2,1672319414),(141095,3,42089,2,1672319414),(141096,3,42090,2,1672319414),(141097,3,42091,2,1672319414),(141098,3,42092,2,1672319414),(141099,3,42093,2,1672319414),(141100,3,42094,2,1672319414),(141101,3,42095,2,1672319414),(141102,3,42096,2,1672319414),(141103,3,42097,2,1672319414),(141104,3,42098,2,1672319414),(141105,3,42099,2,1672319414),(141106,3,42447,2,1672319414),(141107,3,42448,2,1672319414),(141108,3,42449,2,1672319414),(141109,3,42450,2,1672319414),(141110,3,42609,2,1672319414),(141111,3,42610,2,1672319414),(141112,3,42611,2,1672319414),(141113,3,42612,2,1672319414),(141114,3,42613,2,1672319414),(141115,3,42614,2,1672319414),(141116,3,42615,2,1672319414),(141117,3,42616,2,1672319414),(141118,3,42617,2,1672319414),(141119,3,42618,2,1672319414),(141120,3,42619,2,1672319414),(141121,3,42724,2,1672319414),(141122,3,42725,2,1672319414),(141123,3,43547,2,1672319414),(141124,3,43548,2,1672319414),(141125,3,43549,2,1672319414),(141126,3,43550,2,1672319414),(141127,3,43551,2,1672319414),(141128,3,43552,2,1672319414),(141129,3,43553,2,1672319414),(141130,3,43554,2,1672319414),(141131,3,43555,2,1672319414),(141132,3,43556,2,1672319414),(141133,3,43557,2,1672319414),(141134,3,43558,2,1672319414),(141135,3,43559,2,1672319414),(141136,3,43560,2,1672319414),(141137,3,43561,2,1672319414),(141138,3,43562,2,1672319414),(141139,3,43563,2,1672319414),(141140,3,43564,2,1672319414),(141141,3,43787,2,1672319414),(141142,3,43826,2,1672319414),(141143,3,43827,2,1672319414),(141144,3,43828,2,1672319414),(141145,3,43829,2,1672319414),(141146,3,43830,2,1672319414),(141147,3,43831,2,1672319414),(141148,3,43832,2,1672319414),(141149,3,43833,2,1672319414),(141150,3,43834,2,1672319414),(141151,3,43835,2,1672319414),(141152,3,43836,2,1672319414),(141153,3,43837,2,1672319414),(141154,3,43838,2,1672319414),(141155,3,43839,2,1672319414),(141156,3,43845,2,1672319414),(141157,3,43846,2,1672319414),(141158,3,43847,2,1672319414),(141159,3,43849,2,1672319414),(141160,3,43850,2,1672319414),(141161,3,43851,2,1672319414),(141162,3,43852,2,1672319414),(141163,3,43853,2,1672319414),(141164,3,43854,2,1672319414),(141165,3,43855,2,1672319414),(141166,3,43856,2,1672319414),(141167,3,43888,2,1672319414),(141168,3,44235,2,1672319414),(141169,3,44343,2,1672319414),(141170,3,44351,2,1672319414),(141171,3,44447,2,1672319414),(141172,3,22835,3,1672319414),(141173,3,22836,3,1672319414),(141174,3,22837,3,1672319414),(141175,3,22838,3,1672319414),(141176,3,22839,3,1672319414),(141177,3,22840,3,1672319414),(141178,3,22841,3,1672319414),(141179,3,22842,3,1672319414),(141180,3,22843,3,1672319414),(141181,3,22844,3,1672319414),(141182,3,22845,3,1672319414),(141183,3,22846,3,1672319414),(141184,3,22848,3,1672319414),(141185,3,22851,3,1672319414),(141186,3,22852,3,1672319414),(141187,3,22853,3,1672319414),(141188,3,22854,3,1672319414),(141189,3,22855,3,1672319414),(141190,3,22856,3,1672319414),(141191,3,22857,3,1672319414),(141192,3,22858,3,1672319414),(141193,3,22859,3,1672319414),(141194,3,22860,3,1672319414),(141195,3,22861,3,1672319414),(141196,3,22862,3,1672319414),(141197,3,22863,3,1672319414),(141198,3,23649,3,1672319414),(141199,3,23650,3,1672319414),(141200,3,23651,3,1672319414),(141201,3,27930,3,1672319414),(141202,3,27931,3,1672319414),(141203,3,27935,3,1672319414),(141204,3,27936,3,1672319414),(141205,3,28804,3,1672319414),(141206,3,28805,3,1672319414),(141207,3,28810,3,1672319414),(141208,3,28811,3,1672319414),(141209,3,28812,3,1672319414),(141210,3,28813,3,1672319414),(141211,3,28814,3,1672319414),(141212,3,28815,3,1672319414),(141213,3,28816,3,1672319414),(141214,3,28817,3,1672319414),(141215,3,28818,3,1672319414),(141216,3,28819,3,1672319414),(141217,3,28820,3,1672319414),(141218,3,28821,3,1672319414),(141219,3,28822,3,1672319414),(141220,3,28823,3,1672319414),(141221,3,28824,3,1672319414),(141222,3,28825,3,1672319414),(141223,3,28826,3,1672319414),(141224,3,28827,3,1672319414),(141225,3,28828,3,1672319414),(141226,3,28829,3,1672319414),(141227,3,28830,3,1672319414),(141228,3,28831,3,1672319414),(141229,3,28832,3,1672319414),(141230,3,28833,3,1672319414),(141231,3,30121,3,1672319414),(141232,3,30122,3,1672319414),(141233,3,30123,3,1672319414),(141234,3,30431,3,1672319414),(141235,3,30432,3,1672319414),(141236,3,30433,3,1672319414),(141237,3,30434,3,1672319414),(141238,3,30435,3,1672319414),(141239,3,30436,3,1672319414),(141240,3,30437,3,1672319414),(141241,3,30438,3,1672319414),(141242,3,30439,3,1672319414),(141243,3,30440,3,1672319414),(141244,3,30441,3,1672319414),(141245,3,30442,3,1672319414),(141246,3,30443,3,1672319414),(141247,3,30444,3,1672319414),(141248,3,30445,3,1672319414),(141249,3,30446,3,1672319414),(141250,3,30447,3,1672319414),(141251,3,30449,3,1672319414),(141252,3,30450,3,1672319414),(141253,3,30451,3,1672319414),(141254,3,30452,3,1672319414),(141255,3,30453,3,1672319414),(141256,3,30454,3,1672319414),(141257,3,30455,3,1672319414),(141258,3,30456,3,1672319414),(141259,3,30457,3,1672319414),(141260,3,30458,3,1672319414),(141261,3,30459,3,1672319414),(141262,3,30460,3,1672319414),(141263,3,30461,3,1672319414),(141264,3,30462,3,1672319414),(141265,3,30463,3,1672319414),(141266,3,30464,3,1672319414),(141267,3,30465,3,1672319414),(141268,3,30466,3,1672319414),(141269,3,30470,3,1672319414),(141270,3,30471,3,1672319414),(141271,3,30479,3,1672319414),(141272,3,30480,3,1672319414),(141273,3,30481,3,1672319414),(141274,3,30482,3,1672319414),(141275,3,30483,3,1672319414),(141276,3,30484,3,1672319414),(141277,3,30485,3,1672319414),(141278,3,30486,3,1672319414),(141279,3,30487,3,1672319414),(141280,3,30488,3,1672319414),(141281,3,30489,3,1672319414),(141282,3,30490,3,1672319414),(141283,3,30491,3,1672319414),(141284,3,30492,3,1672319414),(141285,3,30493,3,1672319414),(141286,3,30494,3,1672319414),(141287,3,30495,3,1672319414),(141288,3,30496,3,1672319414),(141289,3,30497,3,1672319414),(141290,3,30499,3,1672319414),(141291,3,30500,3,1672319414),(141292,3,30503,3,1672319414),(141293,3,30504,3,1672319414),(141294,3,30505,3,1672319414),(141295,3,30506,3,1672319414),(141296,3,30507,3,1672319414),(141297,3,30508,3,1672319414),(141298,3,30509,3,1672319414),(141299,3,30510,3,1672319414),(141300,3,30512,3,1672319414),(141301,3,30513,3,1672319414),(141302,3,30514,3,1672319414),(141303,3,30515,3,1672319414),(141304,3,30516,3,1672319414),(141305,3,30517,3,1672319414),(141306,3,30518,3,1672319414),(141307,3,30519,3,1672319414),(141308,3,30637,3,1672319414),(141309,3,30638,3,1672319414),(141310,3,30639,3,1672319414),(141311,3,30640,3,1672319414),(141312,3,30641,3,1672319414),(141313,3,30642,3,1672319414),(141314,3,30643,3,1672319414),(141315,3,30644,3,1672319414),(141316,3,30645,3,1672319414),(141317,3,30646,3,1672319414),(141318,3,30647,3,1672319414),(141319,3,30648,3,1672319414),(141320,3,30649,3,1672319414),(141321,3,30650,3,1672319414),(141322,3,30651,3,1672319414),(141323,3,30652,3,1672319414),(141324,3,30653,3,1672319414),(141325,3,30655,3,1672319414),(141326,3,30656,3,1672319414),(141327,3,30657,3,1672319414),(141328,3,30658,3,1672319414),(141329,3,30659,3,1672319414),(141330,3,30660,3,1672319414),(141331,3,30661,3,1672319414),(141332,3,30662,3,1672319414),(141333,3,30663,3,1672319414),(141334,3,30664,3,1672319414),(141335,3,30665,3,1672319414),(141336,3,30666,3,1672319414),(141337,3,30667,3,1672319414),(141338,3,30668,3,1672319414),(141339,3,30669,3,1672319414),(141340,3,30670,3,1672319414),(141341,3,30671,3,1672319414),(141342,3,30672,3,1672319414),(141343,3,30676,3,1672319414),(141344,3,30677,3,1672319414),(141345,3,31055,3,1672319414),(141346,3,31056,3,1672319414),(141347,3,31057,3,1672319414),(141348,3,31058,3,1672319414),(141349,3,31059,3,1672319414),(141350,3,31060,3,1672319414),(141351,3,31061,3,1672319414),(141352,3,31062,3,1672319414),(141353,3,31063,3,1672319414),(141354,3,31064,3,1672319414),(141355,3,31065,3,1672319414),(141356,3,31066,3,1672319414),(141357,3,31067,3,1672319414),(141358,3,31068,3,1672319414),(141359,3,31069,3,1672319414),(141360,3,31070,3,1672319414),(141361,3,31071,3,1672319414),(141362,3,31072,3,1672319414),(141363,3,31073,3,1672319414),(141364,3,31074,3,1672319414),(141365,3,31075,3,1672319414),(141366,3,31076,3,1672319414),(141367,3,31077,3,1672319414),(141368,3,31078,3,1672319414),(141369,3,31079,3,1672319414),(141370,3,31080,3,1672319414),(141371,3,31081,3,1672319414),(141372,3,31082,3,1672319414),(141373,3,31083,3,1672319414),(141374,3,31084,3,1672319414),(141375,3,31085,3,1672319414),(141376,3,31086,3,1672319414),(141377,3,31087,3,1672319414),(141378,3,31088,3,1672319414),(141379,3,31089,3,1672319414),(141380,3,31090,3,1672319414),(141381,3,31091,3,1672319414),(141382,3,31092,3,1672319414),(141383,3,31093,3,1672319414),(141384,3,31094,3,1672319414),(141385,3,31095,3,1672319414),(141386,3,31096,3,1672319414),(141387,3,31097,3,1672319414),(141388,3,31098,3,1672319414),(141389,3,31099,3,1672319414),(141390,3,31100,3,1672319414),(141391,3,31101,3,1672319414),(141392,3,31102,3,1672319414),(141393,3,31103,3,1672319414),(141394,3,31104,3,1672319414),(141395,3,31105,3,1672319414),(141396,3,31106,3,1672319414),(141397,3,31107,3,1672319414),(141398,3,31108,3,1672319414),(141399,3,31109,3,1672319414),(141400,3,31110,3,1672319414),(141401,3,31111,3,1672319414),(141402,3,31112,3,1672319414),(141403,3,31113,3,1672319414),(141404,3,31114,3,1672319414),(141405,3,31115,3,1672319414),(141406,3,31116,3,1672319414),(141407,3,31117,3,1672319414),(141408,3,31118,3,1672319414),(141409,3,31119,3,1672319414),(141410,3,31120,3,1672319414),(141411,3,31121,3,1672319414),(141412,3,31168,3,1672319414),(141413,3,31169,3,1672319414),(141414,3,31170,3,1672319414),(141415,3,31171,3,1672319414),(141416,3,31172,3,1672319414),(141417,3,31173,3,1672319414),(141418,3,31174,3,1672319414),(141419,3,31175,3,1672319414),(141420,3,31176,3,1672319414),(141421,3,31177,3,1672319414),(141422,3,31178,3,1672319414),(141423,3,31179,3,1672319414),(141424,3,31180,3,1672319414),(141425,3,31181,3,1672319414),(141426,3,31182,3,1672319414),(141427,3,31183,3,1672319414),(141428,3,31184,3,1672319414),(141429,3,31185,3,1672319414),(141430,3,31186,3,1672319414),(141431,3,31187,3,1672319414),(141432,3,31188,3,1672319414),(141433,3,31189,3,1672319414),(141434,3,31190,3,1672319414),(141435,3,31191,3,1672319414),(141436,3,31192,3,1672319414),(141437,3,31193,3,1672319414),(141438,3,31194,3,1672319414),(141439,3,31195,3,1672319414),(141440,3,31196,3,1672319414),(141441,3,31197,3,1672319414),(141442,3,31198,3,1672319414),(141443,3,31199,3,1672319414),(141444,3,31200,3,1672319414),(141445,3,31201,3,1672319414),(141446,3,31202,3,1672319414),(141447,3,31203,3,1672319414),(141448,3,31204,3,1672319414),(141449,3,31205,3,1672319414),(141450,3,31206,3,1672319414),(141451,3,31207,3,1672319414),(141452,3,31208,3,1672319414),(141453,3,31209,3,1672319414),(141454,3,31210,3,1672319414),(141455,3,31211,3,1672319414),(141456,3,31212,3,1672319414),(141457,3,31213,3,1672319414),(141458,3,31214,3,1672319414),(141459,3,31215,3,1672319414),(141460,3,31216,3,1672319414),(141461,3,31217,3,1672319414),(141462,3,31218,3,1672319414),(141463,3,31219,3,1672319414),(141464,3,31220,3,1672319414),(141465,3,31221,3,1672319414),(141466,3,31222,3,1672319414),(141467,3,31223,3,1672319414),(141468,3,31224,3,1672319414),(141469,3,31225,3,1672319414),(141470,3,31226,3,1672319414),(141471,3,31227,3,1672319414),(141472,3,31228,3,1672319414),(141473,3,31229,3,1672319414),(141474,3,31230,3,1672319414),(141475,3,31231,3,1672319414),(141476,3,31232,3,1672319414),(141477,3,31233,3,1672319414),(141478,3,31234,3,1672319414),(141479,3,31235,3,1672319414),(141480,3,31236,3,1672319414),(141481,3,31237,3,1672319414),(141482,3,31238,3,1672319414),(141483,3,31239,3,1672319414),(141484,3,31240,3,1672319414),(141485,3,31241,3,1672319414),(141486,3,31242,3,1672319414),(141487,3,31243,3,1672319414),(141488,3,31244,3,1672319414),(141489,3,31245,3,1672319414),(141490,3,31246,3,1672319414),(141491,3,31247,3,1672319414),(141492,3,31248,3,1672319414),(141493,3,31249,3,1672319414),(141494,3,31250,3,1672319414),(141495,3,31251,3,1672319414),(141496,3,31252,3,1672319414),(141497,3,31554,3,1672319414),(141498,3,31555,3,1672319414),(141499,3,31556,3,1672319414),(141500,3,31570,3,1672319414),(141501,3,31571,3,1672319414),(141502,3,31573,3,1672319414),(141503,3,31577,3,1672319414),(141504,3,31578,3,1672319414),(141505,3,31579,3,1672319414),(141506,3,31580,3,1672319414),(141507,3,31581,3,1672319414),(141508,3,31582,3,1672319414),(141509,3,31583,3,1672319414),(141510,3,31584,3,1672319414),(141511,3,31585,3,1672319414),(141512,3,31586,3,1672319414),(141513,3,31587,3,1672319414),(141514,3,31588,3,1672319414),(141515,3,31589,3,1672319414),(141516,3,31590,3,1672319414),(141517,3,31591,3,1672319414),(141518,3,31592,3,1672319414),(141519,3,31593,3,1672319414),(141520,3,31594,3,1672319414),(141521,3,31595,3,1672319414),(141522,3,31596,3,1672319414),(141523,3,31597,3,1672319414),(141524,3,31598,3,1672319414),(141525,3,31599,3,1672319414),(141526,3,31600,3,1672319414),(141527,3,31601,3,1672319414),(141528,3,31602,3,1672319414),(141529,3,31603,3,1672319414),(141530,3,31604,3,1672319414),(141531,3,31605,3,1672319414),(141532,3,31606,3,1672319414),(141533,3,31607,3,1672319414),(141534,3,31608,3,1672319414),(141535,3,31609,3,1672319414),(141536,3,31610,3,1672319414),(141537,3,31611,3,1672319414),(141538,3,31684,3,1672319414),(141539,3,31685,3,1672319414),(141540,3,31686,3,1672319414),(141541,3,31687,3,1672319414),(141542,3,31688,3,1672319414),(141543,3,31689,3,1672319414),(141544,3,31690,3,1672319414),(141545,3,31691,3,1672319414),(141546,3,31692,3,1672319414),(141547,3,31693,3,1672319414),(141548,3,31694,3,1672319414),(141549,3,31695,3,1672319414),(141550,3,31696,3,1672319414),(141551,3,31697,3,1672319414),(141552,3,31698,3,1672319414),(141553,3,31699,3,1672319414),(141554,3,31700,3,1672319414),(141555,3,31701,3,1672319414),(141556,3,31702,3,1672319414),(141557,3,31703,3,1672319414),(141558,3,31704,3,1672319414),(141559,3,31705,3,1672319414),(141560,3,31706,3,1672319414),(141561,3,31707,3,1672319414),(141562,3,31708,3,1672319414),(141563,3,31709,3,1672319414),(141564,3,31710,3,1672319414),(141565,3,31711,3,1672319414),(141566,3,31712,3,1672319414),(141567,3,31713,3,1672319414),(141568,3,31714,3,1672319414),(141569,3,31715,3,1672319414),(141570,3,31716,3,1672319414),(141571,3,31717,3,1672319414),(141572,3,31718,3,1672319414),(141573,3,31719,3,1672319414),(141574,3,31720,3,1672319414),(141575,3,31721,3,1672319414),(141576,3,31722,3,1672319414),(141577,3,31723,3,1672319414),(141578,3,31724,3,1672319414),(141579,3,31725,3,1672319414),(141580,3,31726,3,1672319414),(141581,3,31727,3,1672319414),(141582,3,31728,3,1672319414),(141583,3,31729,3,1672319414),(141584,3,31730,3,1672319414),(141585,3,31731,3,1672319414),(141586,3,31732,3,1672319414),(141587,3,31733,3,1672319414),(141588,3,31734,3,1672319414),(141589,3,31735,3,1672319414),(141590,3,31736,3,1672319414),(141591,3,31737,3,1672319414),(141592,3,31738,3,1672319414),(141593,3,31739,3,1672319414),(141594,3,31740,3,1672319414),(141595,3,31741,3,1672319414),(141596,3,31742,3,1672319414),(141597,3,31743,3,1672319414),(141598,3,31744,3,1672319414),(141599,3,31745,3,1672319414),(141600,3,31746,3,1672319414),(141601,3,31747,3,1672319414),(141602,3,31748,3,1672319414),(141603,3,31749,3,1672319414),(141604,3,31750,3,1672319414),(141605,3,31751,3,1672319414),(141606,3,31752,3,1672319414),(141607,3,31753,3,1672319414),(141608,3,31754,3,1672319414),(141609,3,31755,3,1672319414),(141610,3,31756,3,1672319414),(141611,3,31757,3,1672319414),(141612,3,31758,3,1672319414),(141613,3,31759,3,1672319414),(141614,3,31760,3,1672319414),(141615,3,32364,3,1672319414),(141616,3,32365,3,1672319414),(141617,3,32366,3,1672319414),(141618,3,32367,3,1672319414),(141619,3,32368,3,1672319414),(141620,3,32369,3,1672319414),(141621,3,32370,3,1672319414),(141622,3,32371,3,1672319414),(141623,3,32372,3,1672319414),(141624,3,32373,3,1672319414),(141625,3,32374,3,1672319414),(141626,3,32375,3,1672319414),(141627,3,32376,3,1672319414),(141628,3,32377,3,1672319414),(141629,3,32378,3,1672319414),(141630,3,32379,3,1672319414),(141631,3,32380,3,1672319414),(141632,3,32381,3,1672319414),(141633,3,32382,3,1672319414),(141634,3,32383,3,1672319414),(141635,3,32384,3,1672319414),(141636,3,32385,3,1672319414),(141637,3,32386,3,1672319414),(141638,3,32387,3,1672319414),(141639,3,32388,3,1672319414),(141640,3,32389,3,1672319414),(141641,3,32390,3,1672319414),(141642,3,32391,3,1672319414),(141643,3,32392,3,1672319414),(141644,3,32393,3,1672319414),(141645,3,32394,3,1672319414),(141646,3,32395,3,1672319414),(141647,3,32396,3,1672319414),(141648,3,32397,3,1672319414),(141649,3,32398,3,1672319414),(141650,3,32399,3,1672319414),(141651,3,32400,3,1672319414),(141652,3,32401,3,1672319414),(141653,3,32402,3,1672319414),(141654,3,32403,3,1672319414),(141655,3,33126,3,1672319414),(141656,3,33127,3,1672319414),(141657,3,33128,3,1672319414),(141658,3,33129,3,1672319414),(141659,3,33130,3,1672319414),(141660,3,33131,3,1672319414),(141661,3,33132,3,1672319414),(141662,3,33140,3,1672319414),(141663,3,33141,3,1672319414),(141664,3,33142,3,1672319414),(141665,3,33143,3,1672319414),(141666,3,33144,3,1672319414),(141667,3,33145,3,1672319414),(141668,3,33146,3,1672319414),(141669,3,33154,3,1672319414),(141670,3,33155,3,1672319414),(141671,3,33156,3,1672319414),(141672,3,33157,3,1672319414),(141673,3,33158,3,1672319414),(141674,3,33159,3,1672319414),(141675,3,33160,3,1672319414),(141676,3,33184,3,1672319414),(141677,3,33185,3,1672319414),(141678,3,33186,3,1672319414),(141679,3,33187,3,1672319414),(141680,3,33188,3,1672319414),(141681,3,33189,3,1672319414),(141682,3,33190,3,1672319414),(141683,3,33191,3,1672319414),(141684,3,33192,3,1672319414),(141685,3,33193,3,1672319414),(141686,3,33194,3,1672319414),(141687,3,33195,3,1672319414),(141688,3,33196,3,1672319414),(141689,3,33197,3,1672319414),(141690,3,33198,3,1672319414),(141691,3,33199,3,1672319414),(141692,3,33200,3,1672319414),(141693,3,33201,3,1672319414),(141694,3,33202,3,1672319414),(141695,3,33203,3,1672319414),(141696,3,33204,3,1672319414),(141697,3,33207,3,1672319414),(141698,3,33208,3,1672319414),(141699,3,33209,3,1672319414),(141700,3,33210,3,1672319414),(141701,3,33211,3,1672319414),(141702,3,33212,3,1672319414),(141703,3,33213,3,1672319414),(141704,3,33214,3,1672319414),(141705,3,33215,3,1672319414),(141706,3,33216,3,1672319414),(141707,3,33217,3,1672319414),(141708,3,33218,3,1672319414),(141709,3,33219,3,1672319414),(141710,3,33220,3,1672319414),(141711,3,33221,3,1672319414),(141712,3,33222,3,1672319414),(141713,3,33223,3,1672319414),(141714,3,33224,3,1672319414),(141715,3,33227,3,1672319414),(141716,3,33228,3,1672319414),(141717,3,33229,3,1672319414),(141718,3,33230,3,1672319414),(141719,3,33231,3,1672319414),(141720,3,33232,3,1672319414),(141721,3,33233,3,1672319414),(141722,3,33234,3,1672319414),(141723,3,33235,3,1672319414),(141724,3,33236,3,1672319414),(141725,3,33237,3,1672319414),(141726,3,33238,3,1672319414),(141727,3,33239,3,1672319414),(141728,3,33240,3,1672319414),(141729,3,33241,3,1672319414),(141730,3,33242,3,1672319414),(141731,3,33243,3,1672319414),(141732,3,33244,3,1672319414),(141733,3,33245,3,1672319414),(141734,3,33246,3,1672319414),(141735,3,33247,3,1672319414),(141736,3,33250,3,1672319414),(141737,3,33251,3,1672319414),(141738,3,33252,3,1672319414),(141739,3,33253,3,1672319414),(141740,3,33254,3,1672319414),(141741,3,33255,3,1672319414),(141742,3,33256,3,1672319414),(141743,3,33259,3,1672319414),(141744,3,33260,3,1672319414),(141745,3,33261,3,1672319414),(141746,3,33262,3,1672319414),(141747,3,33263,3,1672319414),(141748,3,33264,3,1672319414),(141749,3,33265,3,1672319414),(141750,3,33266,3,1672319414),(141751,3,33267,3,1672319414),(141752,3,33268,3,1672319414),(141753,3,33269,3,1672319414),(141754,3,33270,3,1672319414),(141755,3,33271,3,1672319414),(141756,3,33272,3,1672319414),(141757,3,33273,3,1672319414),(141758,3,33274,3,1672319414),(141759,3,33275,3,1672319414),(141760,3,33278,3,1672319414),(141761,3,33279,3,1672319414),(141762,3,33280,3,1672319414),(141763,3,33281,3,1672319414),(141764,3,33282,3,1672319414),(141765,3,33283,3,1672319414),(141766,3,33284,3,1672319414),(141767,3,33285,3,1672319414),(141768,3,33286,3,1672319414),(141769,3,33287,3,1672319414),(141770,3,33288,3,1672319414),(141771,3,33289,3,1672319414),(141772,3,33290,3,1672319414),(141773,3,33291,3,1672319414),(141774,3,33292,3,1672319414),(141775,3,33293,3,1672319414),(141776,3,33294,3,1672319414),(141777,3,33297,3,1672319414),(141778,3,33298,3,1672319414),(141779,3,33299,3,1672319414),(141780,3,33300,3,1672319414),(141781,3,33301,3,1672319414),(141782,3,33302,3,1672319414),(141783,3,33303,3,1672319414),(141784,3,33304,3,1672319414),(141785,3,33305,3,1672319414),(141786,3,33348,3,1672319414),(141787,3,33349,3,1672319414),(141788,3,33350,3,1672319414),(141789,3,33351,3,1672319414),(141790,3,33764,3,1672319414),(141791,3,33765,3,1672319414),(141792,3,33766,3,1672319414),(141793,3,33767,3,1672319414),(141794,3,33768,3,1672319414),(141795,3,33769,3,1672319414),(141796,3,33770,3,1672319414),(141797,3,33771,3,1672319414),(141798,3,33772,3,1672319414),(141799,3,33773,3,1672319414),(141800,3,33774,3,1672319414),(141801,3,33775,3,1672319414),(141802,3,33776,3,1672319414),(141803,3,33777,3,1672319414),(141804,3,33778,3,1672319414),(141805,3,33779,3,1672319414),(141806,3,33780,3,1672319414),(141807,3,33781,3,1672319414),(141808,3,33782,3,1672319414),(141809,3,33783,3,1672319414),(141810,3,33784,3,1672319414),(141811,3,33785,3,1672319414),(141812,3,33786,3,1672319414),(141813,3,33787,3,1672319414),(141814,3,33788,3,1672319414),(141815,3,33789,3,1672319414),(141816,3,33790,3,1672319414),(141817,3,33791,3,1672319414),(141818,3,33792,3,1672319414),(141819,3,33793,3,1672319414),(141820,3,33794,3,1672319414),(141821,3,33795,3,1672319414),(141822,3,33796,3,1672319414),(141823,3,33797,3,1672319414),(141824,3,33798,3,1672319414),(141825,3,33799,3,1672319414),(141826,3,33800,3,1672319414),(141827,3,33801,3,1672319414),(141828,3,33802,3,1672319414),(141829,3,33803,3,1672319414),(141830,3,33804,3,1672319414),(141831,3,33805,3,1672319414),(141832,3,33806,3,1672319414),(141833,3,33807,3,1672319414),(141834,3,33886,3,1672319414),(141835,3,33887,3,1672319414),(141836,3,33888,3,1672319414),(141837,3,33889,3,1672319414),(141838,3,33891,3,1672319414),(141839,3,33892,3,1672319414),(141840,3,33893,3,1672319414),(141841,3,33894,3,1672319414),(141842,3,33895,3,1672319414),(141843,3,33896,3,1672319414),(141844,3,33897,3,1672319414),(141845,3,33898,3,1672319414),(141846,3,33899,3,1672319414),(141847,3,33900,3,1672319414),(141848,3,33901,3,1672319414),(141849,3,33902,3,1672319414),(141850,3,33903,3,1672319414),(141851,3,33904,3,1672319414),(141852,3,33905,3,1672319414),(141853,3,33906,3,1672319414),(141854,3,33907,3,1672319414),(141855,3,33908,3,1672319414),(141856,3,33909,3,1672319414),(141857,3,33910,3,1672319414),(141858,3,33911,3,1672319414),(141859,3,33912,3,1672319414),(141860,3,33913,3,1672319414),(141861,3,33914,3,1672319414),(141862,3,33915,3,1672319414),(141863,3,33916,3,1672319414),(141864,3,33917,3,1672319414),(141865,3,33918,3,1672319414),(141866,3,33919,3,1672319414),(141867,3,34226,3,1672319414),(141868,3,34227,3,1672319414),(141869,3,34228,3,1672319414),(141870,3,34229,3,1672319414),(141871,3,34230,3,1672319414),(141872,3,34231,3,1672319414),(141873,3,34232,3,1672319414),(141874,3,34233,3,1672319414),(141875,3,34234,3,1672319414),(141876,3,34235,3,1672319414),(141877,3,34236,3,1672319414),(141878,3,34237,3,1672319414),(141879,3,34238,3,1672319414),(141880,3,34239,3,1672319414),(141881,3,34240,3,1672319414),(141882,3,34241,3,1672319414),(141883,3,34242,3,1672319414),(141884,3,34243,3,1672319414),(141885,3,34244,3,1672319414),(141886,3,34245,3,1672319414),(141887,3,34246,3,1672319414),(141888,3,34247,3,1672319414),(141889,3,34248,3,1672319414),(141890,3,34249,3,1672319414),(141891,3,34250,3,1672319414),(141892,3,34251,3,1672319414),(141893,3,34252,3,1672319414),(141894,3,34253,3,1672319414),(141895,3,34254,3,1672319414),(141896,3,34255,3,1672319414),(141897,3,34256,3,1672319414),(141898,3,34257,3,1672319414),(141899,3,34258,3,1672319414),(141900,3,34259,3,1672319414),(141901,3,34321,3,1672319414),(141902,3,34322,3,1672319414),(141903,3,34323,3,1672319414),(141904,3,35153,3,1672319414),(141905,3,35154,3,1672319414),(141906,3,35155,3,1672319414),(141907,3,35156,3,1672319414),(141908,3,35157,3,1672319414),(141909,3,35158,3,1672319414),(141910,3,35159,3,1672319414),(141911,3,35160,3,1672319414),(141912,3,35161,3,1672319414),(141913,3,35162,3,1672319414),(141914,3,35163,3,1672319414),(141915,3,35164,3,1672319414),(141916,3,35165,3,1672319414),(141917,3,35166,3,1672319414),(141918,3,35167,3,1672319414),(141919,3,35168,3,1672319414),(141920,3,35169,3,1672319414),(141921,3,35170,3,1672319414),(141922,3,35171,3,1672319414),(141923,3,35172,3,1672319414),(141924,3,35173,3,1672319414),(141925,3,35174,3,1672319414),(141926,3,35175,3,1672319414),(141927,3,35176,3,1672319414),(141928,3,38575,3,1672319414),(141929,3,38576,3,1672319414),(141930,3,38577,3,1672319414),(141931,3,38578,3,1672319414),(141932,3,38579,3,1672319414),(141933,3,38580,3,1672319414),(141934,3,38581,3,1672319414),(141935,3,38629,3,1672319414),(141936,3,38630,3,1672319414),(141937,3,38631,3,1672319414),(141938,3,38632,3,1672319414),(141939,3,38633,3,1672319414),(141940,3,38634,3,1672319414),(141941,3,38635,3,1672319414),(141942,3,38683,3,1672319414),(141943,3,38684,3,1672319414),(141944,3,38685,3,1672319414),(141945,3,38686,3,1672319414),(141946,3,38687,3,1672319414),(141947,3,38688,3,1672319414),(141948,3,38689,3,1672319414),(141949,3,38737,3,1672319414),(141950,3,38738,3,1672319414),(141951,3,38739,3,1672319414),(141952,3,38740,3,1672319414),(141953,3,38741,3,1672319414),(141954,3,38742,3,1672319414),(141955,3,38743,3,1672319414),(141956,3,38791,3,1672319414),(141957,3,38792,3,1672319414),(141958,3,38793,3,1672319414),(141959,3,38794,3,1672319414),(141960,3,38795,3,1672319414),(141961,3,38796,3,1672319414),(141962,3,38797,3,1672319414),(141963,3,38845,3,1672319414),(141964,3,38846,3,1672319414),(141965,3,38847,3,1672319414),(141966,3,38848,3,1672319414),(141967,3,38849,3,1672319414),(141968,3,38850,3,1672319414),(141969,3,38851,3,1672319414),(141970,3,38899,3,1672319414),(141971,3,38900,3,1672319414),(141972,3,38901,3,1672319414),(141973,3,38902,3,1672319414),(141974,3,38903,3,1672319414),(141975,3,38904,3,1672319414),(141976,3,38905,3,1672319414),(141977,3,38953,3,1672319414),(141978,3,38954,3,1672319414),(141979,3,38955,3,1672319414),(141980,3,38956,3,1672319414),(141981,3,38957,3,1672319414),(141982,3,38958,3,1672319414),(141983,3,38959,3,1672319414),(141984,3,39007,3,1672319414),(141985,3,39008,3,1672319414),(141986,3,39009,3,1672319414),(141987,3,39010,3,1672319414),(141988,3,39011,3,1672319414),(141989,3,39012,3,1672319414),(141990,3,39013,3,1672319414),(141991,3,39061,3,1672319414),(141992,3,39062,3,1672319414),(141993,3,39063,3,1672319414),(141994,3,39064,3,1672319414),(141995,3,39065,3,1672319414),(141996,3,39066,3,1672319414),(141997,3,39067,3,1672319414),(141998,3,39115,3,1672319414),(141999,3,39116,3,1672319414),(142000,3,39117,3,1672319414),(142001,3,39118,3,1672319414),(142002,3,39119,3,1672319414),(142003,3,39120,3,1672319414),(142004,3,39121,3,1672319414),(142005,3,39169,3,1672319414),(142006,3,39170,3,1672319414),(142007,3,39171,3,1672319414),(142008,3,39172,3,1672319414),(142009,3,39173,3,1672319414),(142010,3,39174,3,1672319414),(142011,3,39175,3,1672319414),(142012,3,39223,3,1672319414),(142013,3,39224,3,1672319414),(142014,3,39225,3,1672319414),(142015,3,39226,3,1672319414),(142016,3,39227,3,1672319414),(142017,3,39228,3,1672319414),(142018,3,39229,3,1672319414),(142019,3,39277,3,1672319414),(142020,3,39278,3,1672319414),(142021,3,39279,3,1672319414),(142022,3,39280,3,1672319414),(142023,3,39281,3,1672319414),(142024,3,39282,3,1672319414),(142025,3,39283,3,1672319414),(142026,3,39601,3,1672319414),(142027,3,39602,3,1672319414),(142028,3,39603,3,1672319414),(142029,3,39604,3,1672319414),(142030,3,39605,3,1672319414),(142031,3,39606,3,1672319414),(142032,3,39607,3,1672319414),(142033,3,39655,3,1672319414),(142034,3,39656,3,1672319414),(142035,3,39657,3,1672319414),(142036,3,39658,3,1672319414),(142037,3,39659,3,1672319414),(142038,3,39660,3,1672319414),(142039,3,39661,3,1672319414),(142040,3,39709,3,1672319414),(142041,3,39710,3,1672319414),(142042,3,39711,3,1672319414),(142043,3,39712,3,1672319414),(142044,3,39713,3,1672319414),(142045,3,39714,3,1672319414),(142046,3,39715,3,1672319414),(142047,3,40117,3,1672319414),(142048,3,40119,3,1672319414),(142049,3,40120,3,1672319414),(142050,3,40121,3,1672319414),(142051,3,40122,3,1672319414),(142052,3,40123,3,1672319414),(142053,3,40124,3,1672319414),(142054,3,40125,3,1672319414),(142055,3,40126,3,1672319414),(142056,3,40128,3,1672319414),(142057,3,40129,3,1672319414),(142058,3,40130,3,1672319414),(142059,3,40131,3,1672319414),(142060,3,40132,3,1672319414),(142061,3,40133,3,1672319414),(142062,3,40134,3,1672319414),(142063,3,40135,3,1672319414),(142064,3,40136,3,1672319414),(142065,3,40798,3,1672319414),(142066,3,40799,3,1672319414),(142067,3,40800,3,1672319414),(142068,3,40801,3,1672319414),(142069,3,40802,3,1672319414),(142070,3,40803,3,1672319414),(142071,3,40804,3,1672319414),(142072,3,40805,3,1672319414),(142073,3,40806,3,1672319414),(142074,3,40807,3,1672319414),(142075,3,40808,3,1672319414),(142076,3,41606,3,1672319414),(142077,3,41607,3,1672319414),(142078,3,41608,3,1672319414),(142079,3,41609,3,1672319414),(142080,3,41610,3,1672319414),(142081,3,41611,3,1672319414),(142082,3,41612,3,1672319414),(142083,3,41613,3,1672319414),(142084,3,41614,3,1672319414),(142085,3,41615,3,1672319414),(142086,3,41616,3,1672319414),(142087,3,41627,3,1672319414),(142088,3,41628,3,1672319414),(142089,3,41629,3,1672319414),(142090,3,41630,3,1672319414),(142091,3,41631,3,1672319414),(142092,3,41632,3,1672319414),(142093,3,41633,3,1672319414),(142094,3,41634,3,1672319414),(142095,3,41635,3,1672319414),(142096,3,41636,3,1672319414),(142097,3,41637,3,1672319414),(142098,3,41648,3,1672319414),(142099,3,41649,3,1672319414),(142100,3,41650,3,1672319414),(142101,3,41651,3,1672319414),(142102,3,41652,3,1672319414),(142103,3,41653,3,1672319414),(142104,3,41654,3,1672319414),(142105,3,41655,3,1672319414),(142106,3,41656,3,1672319414),(142107,3,41657,3,1672319414),(142108,3,41658,3,1672319414),(142109,3,41669,3,1672319414),(142110,3,41670,3,1672319414),(142111,3,41671,3,1672319414),(142112,3,41672,3,1672319414),(142113,3,41673,3,1672319414),(142114,3,41674,3,1672319414),(142115,3,41675,3,1672319414),(142116,3,41676,3,1672319414),(142117,3,41677,3,1672319414),(142118,3,41678,3,1672319414),(142119,3,41679,3,1672319414),(142120,3,41690,3,1672319414),(142121,3,41691,3,1672319414),(142122,3,41692,3,1672319414),(142123,3,41693,3,1672319414),(142124,3,41694,3,1672319414),(142125,3,41695,3,1672319414),(142126,3,41696,3,1672319414),(142127,3,41697,3,1672319414),(142128,3,41698,3,1672319414),(142129,3,41699,3,1672319414),(142130,3,41700,3,1672319414),(142131,3,41711,3,1672319414),(142132,3,41712,3,1672319414),(142133,3,41713,3,1672319414),(142134,3,41714,3,1672319414),(142135,3,41715,3,1672319414),(142136,3,41716,3,1672319414),(142137,3,41717,3,1672319414),(142138,3,41718,3,1672319414),(142139,3,41719,3,1672319414),(142140,3,41720,3,1672319414),(142141,3,41721,3,1672319414),(142142,3,41732,3,1672319414),(142143,3,41733,3,1672319414),(142144,3,41734,3,1672319414),(142145,3,41735,3,1672319414),(142146,3,41736,3,1672319414),(142147,3,41737,3,1672319414),(142148,3,41738,3,1672319414),(142149,3,41739,3,1672319414),(142150,3,41740,3,1672319414),(142151,3,41741,3,1672319414),(142152,3,41742,3,1672319414),(142153,3,41753,3,1672319414),(142154,3,41754,3,1672319414),(142155,3,41755,3,1672319414),(142156,3,41756,3,1672319414),(142157,3,41757,3,1672319414),(142158,3,41758,3,1672319414),(142159,3,41759,3,1672319414),(142160,3,41760,3,1672319414),(142161,3,41761,3,1672319414),(142162,3,41762,3,1672319414),(142163,3,41763,3,1672319414),(142164,3,41774,3,1672319414),(142165,3,41775,3,1672319414),(142166,3,41776,3,1672319414),(142167,3,41777,3,1672319414),(142168,3,41778,3,1672319414),(142169,3,41779,3,1672319414),(142170,3,41780,3,1672319414),(142171,3,41781,3,1672319414),(142172,3,41782,3,1672319414),(142173,3,41783,3,1672319414),(142174,3,41784,3,1672319414),(142175,3,41795,3,1672319414),(142176,3,41796,3,1672319414),(142177,3,41797,3,1672319414),(142178,3,41798,3,1672319414),(142179,3,41799,3,1672319414),(142180,3,41800,3,1672319414),(142181,3,41801,3,1672319414),(142182,3,41802,3,1672319414),(142183,3,41803,3,1672319414),(142184,3,41804,3,1672319414),(142185,3,41805,3,1672319414),(142186,3,41816,3,1672319414),(142187,3,41817,3,1672319414),(142188,3,41818,3,1672319414),(142189,3,41819,3,1672319414),(142190,3,41820,3,1672319414),(142191,3,41821,3,1672319414),(142192,3,41822,3,1672319414),(142193,3,41823,3,1672319414),(142194,3,41824,3,1672319414),(142195,3,41825,3,1672319414),(142196,3,41826,3,1672319414),(142197,3,41837,3,1672319414),(142198,3,41838,3,1672319414),(142199,3,41839,3,1672319414),(142200,3,41840,3,1672319414),(142201,3,41841,3,1672319414),(142202,3,41842,3,1672319414),(142203,3,41843,3,1672319414),(142204,3,41844,3,1672319414),(142205,3,41845,3,1672319414),(142206,3,41846,3,1672319414),(142207,3,41847,3,1672319414),(142208,3,41858,3,1672319414),(142209,3,41859,3,1672319414),(142210,3,41860,3,1672319414),(142211,3,41861,3,1672319414),(142212,3,41862,3,1672319414),(142213,3,41863,3,1672319414),(142214,3,41864,3,1672319414),(142215,3,41865,3,1672319414),(142216,3,41866,3,1672319414),(142217,3,41867,3,1672319414),(142218,3,41868,3,1672319414),(142219,3,41879,3,1672319414),(142220,3,41880,3,1672319414),(142221,3,41881,3,1672319414),(142222,3,41882,3,1672319414),(142223,3,41883,3,1672319414),(142224,3,41884,3,1672319414),(142225,3,41885,3,1672319414),(142226,3,41886,3,1672319414),(142227,3,41887,3,1672319414),(142228,3,41888,3,1672319414),(142229,3,41889,3,1672319414),(142230,3,42005,3,1672319414),(142231,3,42006,3,1672319414),(142232,3,42007,3,1672319414),(142233,3,42008,3,1672319414),(142234,3,42009,3,1672319414),(142235,3,42010,3,1672319414),(142236,3,42011,3,1672319414),(142237,3,42012,3,1672319414),(142238,3,42013,3,1672319414),(142239,3,42014,3,1672319414),(142240,3,42015,3,1672319414),(142241,3,42026,3,1672319414),(142242,3,42027,3,1672319414),(142243,3,42028,3,1672319414),(142244,3,42029,3,1672319414),(142245,3,42030,3,1672319414),(142246,3,42031,3,1672319414),(142247,3,42032,3,1672319414),(142248,3,42033,3,1672319414),(142249,3,42034,3,1672319414),(142250,3,42035,3,1672319414),(142251,3,42036,3,1672319414),(142252,3,42047,3,1672319414),(142253,3,42048,3,1672319414),(142254,3,42049,3,1672319414),(142255,3,42050,3,1672319414),(142256,3,42051,3,1672319414),(142257,3,42052,3,1672319414),(142258,3,42053,3,1672319414),(142259,3,42054,3,1672319414),(142260,3,42055,3,1672319414),(142261,3,42056,3,1672319414),(142262,3,42057,3,1672319414),(142263,3,42089,3,1672319414),(142264,3,42090,3,1672319414),(142265,3,42091,3,1672319414),(142266,3,42092,3,1672319414),(142267,3,42093,3,1672319414),(142268,3,42094,3,1672319414),(142269,3,42095,3,1672319414),(142270,3,42096,3,1672319414),(142271,3,42097,3,1672319414),(142272,3,42098,3,1672319414),(142273,3,42099,3,1672319414),(142274,3,42447,3,1672319414),(142275,3,42448,3,1672319414),(142276,3,42449,3,1672319414),(142277,3,42450,3,1672319414),(142278,3,42609,3,1672319414),(142279,3,42610,3,1672319414),(142280,3,42611,3,1672319414),(142281,3,42612,3,1672319414),(142282,3,42613,3,1672319414),(142283,3,42614,3,1672319414),(142284,3,42615,3,1672319414),(142285,3,42616,3,1672319414),(142286,3,42617,3,1672319414),(142287,3,42618,3,1672319414),(142288,3,42619,3,1672319414),(142289,3,42724,3,1672319414),(142290,3,42725,3,1672319414),(142291,3,43547,3,1672319414),(142292,3,43548,3,1672319414),(142293,3,43549,3,1672319414),(142294,3,43550,3,1672319414),(142295,3,43551,3,1672319414),(142296,3,43552,3,1672319414),(142297,3,43553,3,1672319414),(142298,3,43554,3,1672319414),(142299,3,43555,3,1672319414),(142300,3,43556,3,1672319414),(142301,3,43557,3,1672319414),(142302,3,43558,3,1672319414),(142303,3,43559,3,1672319414),(142304,3,43560,3,1672319414),(142305,3,43561,3,1672319414),(142306,3,43562,3,1672319414),(142307,3,43563,3,1672319414),(142308,3,43564,3,1672319414),(142309,3,43787,3,1672319414),(142310,3,43826,3,1672319414),(142311,3,43827,3,1672319414),(142312,3,43828,3,1672319414),(142313,3,43829,3,1672319414),(142314,3,43830,3,1672319414),(142315,3,43831,3,1672319414),(142316,3,43832,3,1672319414),(142317,3,43833,3,1672319414),(142318,3,43834,3,1672319414),(142319,3,43835,3,1672319414),(142320,3,43836,3,1672319414),(142321,3,43837,3,1672319414),(142322,3,43838,3,1672319414),(142323,3,43839,3,1672319414),(142324,3,43845,3,1672319414),(142325,3,43846,3,1672319414),(142326,3,43847,3,1672319414),(142327,3,43849,3,1672319414),(142328,3,43850,3,1672319414),(142329,3,43851,3,1672319414),(142330,3,43852,3,1672319414),(142331,3,43853,3,1672319414),(142332,3,43854,3,1672319414),(142333,3,43855,3,1672319414),(142334,3,43856,3,1672319414),(142335,3,43888,3,1672319414),(142336,3,44235,3,1672319414),(142337,3,44343,3,1672319414),(142338,3,44351,3,1672319414),(142339,3,44447,3,1672319414),(142340,1,10074,3,1672319415),(142341,1,10098,3,1672319415),(142342,1,10099,3,1672319415),(142343,1,10100,3,1672319415),(142344,1,10226,3,1672319415),(142345,1,10234,3,1672319415),(142346,1,10266,3,1672319415),(142347,1,10267,3,1672319415),(142348,1,10316,3,1672319415),(142349,1,10317,3,1672319415),(142350,1,10320,3,1672319415),(142351,1,10327,3,1672319415),(142352,1,10328,3,1672319415),(142353,1,10330,3,1672319415),(142354,1,10331,3,1672319415),(142355,1,10335,3,1672319415),(142356,1,10357,3,1672319415),(142357,1,10371,3,1672319415),(142358,1,10372,3,1672319415),(142359,1,10373,3,1672319415),(142360,1,10374,3,1672319415),(142361,1,10375,3,1672319415),(142362,1,10376,3,1672319415),(142363,1,10377,3,1672319415),(142364,1,10378,3,1672319415),(142365,1,10386,3,1672319415),(142366,1,10387,3,1672319415),(142367,1,10396,3,1672319415),(142368,1,10415,3,1672319415),(142369,1,10481,3,1672319415),(142370,1,10482,3,1672319415),(142371,1,10483,3,1672319415),(142372,1,10484,3,1672319415),(142373,1,10485,3,1672319415),(142374,1,10486,3,1672319415),(142375,1,10487,3,1672319415),(142376,1,10488,3,1672319415),(142377,1,10489,3,1672319415),(142378,1,10490,3,1672319415),(142379,1,10491,3,1672319415),(142380,1,10492,3,1672319415),(142381,1,10493,3,1672319415),(142382,1,10494,3,1672319415),(142383,1,10500,3,1672319415),(142384,1,10501,3,1672319415),(142385,1,10502,3,1672319415),(142386,1,10515,3,1672319415),(142387,1,10516,3,1672319415),(142388,1,10528,3,1672319415),(142389,1,10542,3,1672319415),(142390,3,23025,2,1672319418),(142391,3,23026,2,1672319418),(142392,3,23028,2,1672319418),(142393,3,23029,2,1672319418),(142394,3,23030,2,1672319418),(142395,3,23031,2,1672319418),(142396,3,23032,2,1672319418),(142397,3,28003,2,1672319418),(142398,3,28495,2,1672319418),(142399,3,28496,2,1672319418),(142400,3,29512,2,1672319418),(142401,3,29513,2,1672319418),(142402,3,29514,2,1672319418),(142403,3,29720,2,1672319418),(142404,3,29721,2,1672319418),(142405,3,29722,2,1672319418),(142406,3,29723,2,1672319418),(142407,3,29724,2,1672319418),(142408,3,29725,2,1672319418),(142409,3,29726,2,1672319418),(142410,3,29727,2,1672319418),(142411,3,29728,2,1672319418),(142412,3,29729,2,1672319418),(142413,3,29730,2,1672319418),(142414,3,29731,2,1672319418),(142415,3,29732,2,1672319418),(142416,3,29733,2,1672319418),(142417,3,29734,2,1672319418),(142418,3,29735,2,1672319418),(142419,3,29736,2,1672319418),(142420,3,29737,2,1672319418),(142421,3,29787,2,1672319418),(142422,3,29788,2,1672319418),(142423,3,29789,2,1672319418),(142424,3,29790,2,1672319418),(142425,3,29791,2,1672319418),(142426,3,29792,2,1672319418),(142427,3,29793,2,1672319418),(142428,3,29794,2,1672319418),(142429,3,29795,2,1672319418),(142430,3,29796,2,1672319418),(142431,3,29797,2,1672319418),(142432,3,29798,2,1672319418),(142433,3,29799,2,1672319418),(142434,3,29800,2,1672319418),(142435,3,29801,2,1672319418),(142436,3,29802,2,1672319418),(142437,3,29803,2,1672319418),(142438,3,29804,2,1672319418),(142439,3,29805,2,1672319418),(142440,3,29806,2,1672319418),(142441,3,29807,2,1672319418),(142442,3,29808,2,1672319418),(142443,3,29809,2,1672319418),(142444,3,29810,2,1672319418),(142445,3,29811,2,1672319418),(142446,3,29812,2,1672319418),(142447,3,29813,2,1672319418),(142448,3,29814,2,1672319418),(142449,3,29815,2,1672319418),(142450,3,29816,2,1672319418),(142451,3,29817,2,1672319418),(142452,3,29818,2,1672319418),(142453,3,29819,2,1672319418),(142454,3,29820,2,1672319418),(142455,3,30027,2,1672319418),(142456,3,30028,2,1672319418),(142457,3,30029,2,1672319418),(142458,3,30030,2,1672319418),(142459,3,30031,2,1672319418),(142460,3,30032,2,1672319418),(142461,3,30033,2,1672319418),(142462,3,30034,2,1672319418),(142463,3,30035,2,1672319418),(142464,3,30036,2,1672319418),(142465,3,30037,2,1672319418),(142466,3,30038,2,1672319418),(142467,3,30039,2,1672319418),(142468,3,30040,2,1672319418),(142469,3,30041,2,1672319418),(142470,3,30042,2,1672319418),(142471,3,30129,2,1672319418),(142472,3,30130,2,1672319418),(142473,3,30131,2,1672319418),(142474,3,30344,2,1672319418),(142475,3,30345,2,1672319418),(142476,3,30346,2,1672319418),(142477,3,30347,2,1672319418),(142478,3,30348,2,1672319418),(142479,3,30349,2,1672319418),(142480,3,30350,2,1672319418),(142481,3,30351,2,1672319418),(142482,3,30352,2,1672319418),(142483,3,30353,2,1672319418),(142484,3,30354,2,1672319418),(142485,3,30355,2,1672319418),(142486,3,30356,2,1672319418),(142487,3,30357,2,1672319418),(142488,3,30358,2,1672319418),(142489,3,30359,2,1672319418),(142490,3,30360,2,1672319418),(142491,3,30361,2,1672319418),(142492,3,30362,2,1672319418),(142493,3,30363,2,1672319418),(142494,3,30364,2,1672319418),(142495,3,30365,2,1672319418),(142496,3,30366,2,1672319418),(142497,3,30367,2,1672319418),(142498,3,30368,2,1672319418),(142499,3,30369,2,1672319418),(142500,3,30370,2,1672319418),(142501,3,30371,2,1672319418),(142502,3,30372,2,1672319418),(142503,3,30373,2,1672319418),(142504,3,30374,2,1672319418),(142505,3,30375,2,1672319418),(142506,3,30376,2,1672319418),(142507,3,30377,2,1672319418),(142508,3,30378,2,1672319418),(142509,3,30379,2,1672319418),(142510,3,30380,2,1672319418),(142511,3,30381,2,1672319418),(142512,3,30382,2,1672319418),(142513,3,30383,2,1672319418),(142514,3,30384,2,1672319418),(142515,3,30385,2,1672319418),(142516,3,30386,2,1672319418),(142517,3,30387,2,1672319418),(142518,3,30388,2,1672319418),(142519,3,30389,2,1672319418),(142520,3,30390,2,1672319418),(142521,3,30391,2,1672319418),(142522,3,30392,2,1672319418),(142523,3,30393,2,1672319418),(142524,3,30394,2,1672319418),(142525,3,30395,2,1672319418),(142526,3,30396,2,1672319418),(142527,3,30397,2,1672319418),(142528,3,30398,2,1672319418),(142529,3,30399,2,1672319418),(142530,3,30400,2,1672319418),(142531,3,30401,2,1672319418),(142532,3,30402,2,1672319418),(142533,3,30403,2,1672319418),(142534,3,30404,2,1672319418),(142535,3,30425,2,1672319418),(142536,3,31335,2,1672319418),(142537,3,31336,2,1672319418),(142538,3,31337,2,1672319418),(142539,3,31338,2,1672319418),(142540,3,31339,2,1672319418),(142541,3,31340,2,1672319418),(142542,3,31341,2,1672319418),(142543,3,31342,2,1672319418),(142544,3,31343,2,1672319418),(142545,3,31344,2,1672319418),(142546,3,31345,2,1672319418),(142547,3,31346,2,1672319418),(142548,3,31347,2,1672319418),(142549,3,31348,2,1672319418),(142550,3,31349,2,1672319418),(142551,3,31350,2,1672319418),(142552,3,31351,2,1672319418),(142553,3,31352,2,1672319418),(142554,3,31353,2,1672319418),(142555,3,31354,2,1672319418),(142556,3,31355,2,1672319418),(142557,3,31356,2,1672319418),(142558,3,31357,2,1672319418),(142559,3,31358,2,1672319418),(142560,3,31359,2,1672319418),(142561,3,31360,2,1672319418),(142562,3,31361,2,1672319418),(142563,3,31362,2,1672319418),(142564,3,31363,2,1672319418),(142565,3,31433,2,1672319418),(142566,3,31434,2,1672319418),(142567,3,31435,2,1672319418),(142568,3,31436,2,1672319418),(142569,3,31437,2,1672319418),(142570,3,31438,2,1672319418),(142571,3,31439,2,1672319418),(142572,3,31440,2,1672319418),(142573,3,31441,2,1672319418),(142574,3,31442,2,1672319418),(142575,3,31453,2,1672319418),(142576,3,31454,2,1672319418),(142577,3,31455,2,1672319418),(142578,3,31663,2,1672319418),(142579,3,31664,2,1672319418),(142580,3,31665,2,1672319418),(142581,3,31666,2,1672319418),(142582,3,31667,2,1672319418),(142583,3,32012,2,1672319418),(142584,3,32013,2,1672319418),(142585,3,32014,2,1672319418),(142586,3,32015,2,1672319418),(142587,3,32016,2,1672319418),(142588,3,32017,2,1672319418),(142589,3,32018,2,1672319418),(142590,3,32019,2,1672319418),(142591,3,32020,2,1672319418),(142592,3,32021,2,1672319418),(142593,3,32022,2,1672319418),(142594,3,32023,2,1672319418),(142595,3,32024,2,1672319418),(142596,3,32040,2,1672319418),(142597,3,32041,2,1672319418),(142598,3,32042,2,1672319418),(142599,3,32935,2,1672319418),(142600,3,32936,2,1672319418),(142601,3,32937,2,1672319418),(142602,3,32938,2,1672319418),(142603,3,32939,2,1672319418),(142604,3,32940,2,1672319418),(142605,3,32941,2,1672319418),(142606,3,32942,2,1672319418),(142607,3,32943,2,1672319418),(142608,3,32944,2,1672319418),(142609,3,32945,2,1672319418),(142610,3,32946,2,1672319418),(142611,3,32947,2,1672319418),(142612,3,32948,2,1672319418),(142613,3,32949,2,1672319418),(142614,3,32950,2,1672319418),(142615,3,32958,2,1672319418),(142616,3,32959,2,1672319418),(142617,3,32960,2,1672319418),(142618,3,32961,2,1672319418),(142619,3,32962,2,1672319418),(142620,3,33178,2,1672319418),(142621,3,33179,2,1672319418),(142622,3,33180,2,1672319418),(142623,3,33321,2,1672319418),(142624,3,33322,2,1672319418),(142625,3,33323,2,1672319418),(142626,3,33324,2,1672319418),(142627,3,33329,2,1672319418),(142628,3,33330,2,1672319418),(142629,3,33331,2,1672319418),(142630,3,33332,2,1672319418),(142631,3,33650,2,1672319418),(142632,3,33651,2,1672319418),(142633,3,33652,2,1672319418),(142634,3,33653,2,1672319418),(142635,3,33654,2,1672319418),(142636,3,33655,2,1672319418),(142637,3,33747,2,1672319418),(142638,3,33748,2,1672319418),(142639,3,33749,2,1672319418),(142640,3,33750,2,1672319418),(142641,3,33751,2,1672319418),(142642,3,33752,2,1672319418),(142643,3,33753,2,1672319418),(142644,3,33757,2,1672319418),(142645,3,33758,2,1672319418),(142646,3,33759,2,1672319418),(142647,3,33760,2,1672319418),(142648,3,33761,2,1672319418),(142649,3,33762,2,1672319418),(142650,3,33763,2,1672319418),(142651,3,34348,2,1672319418),(142652,3,34349,2,1672319418),(142653,3,34350,2,1672319418),(142654,3,34351,2,1672319418),(142655,3,34352,2,1672319418),(142656,3,34353,2,1672319418),(142657,3,34354,2,1672319418),(142658,3,34355,2,1672319418),(142659,3,34356,2,1672319418),(142660,3,34357,2,1672319418),(142661,3,34358,2,1672319418),(142662,3,34359,2,1672319418),(142663,3,34360,2,1672319418),(142664,3,34361,2,1672319418),(142665,3,34362,2,1672319418),(142666,3,34363,2,1672319418),(142667,3,34364,2,1672319418),(142668,3,34365,2,1672319418),(142669,3,34366,2,1672319418),(142670,3,34405,2,1672319418),(142671,3,34406,2,1672319418),(142672,3,34407,2,1672319418),(142673,3,34408,2,1672319418),(142674,3,34409,2,1672319418),(142675,3,34410,2,1672319418),(142676,3,34411,2,1672319418),(142677,3,34444,2,1672319418),(142678,3,34445,2,1672319418),(142679,3,34446,2,1672319418),(142680,3,34447,2,1672319418),(142681,3,34448,2,1672319418),(142682,3,34449,2,1672319418),(142683,3,34450,2,1672319418),(142684,3,34944,2,1672319418),(142685,3,34945,2,1672319418),(142686,3,34946,2,1672319418),(142687,3,34947,2,1672319418),(142688,3,34948,2,1672319418),(142689,3,34970,2,1672319418),(142690,3,34971,2,1672319418),(142691,3,34972,2,1672319418),(142692,3,34973,2,1672319418),(142693,3,34974,2,1672319418),(142694,3,34975,2,1672319418),(142695,3,34976,2,1672319418),(142696,3,34977,2,1672319418),(142697,3,34978,2,1672319418),(142698,3,34979,2,1672319418),(142699,3,34980,2,1672319418),(142700,3,34981,2,1672319418),(142701,3,34982,2,1672319418),(142702,3,34983,2,1672319418),(142703,3,34984,2,1672319418),(142704,3,34985,2,1672319418),(142705,3,34986,2,1672319418),(142706,3,34987,2,1672319418),(142707,3,34988,2,1672319418),(142708,3,34989,2,1672319418),(142709,3,34990,2,1672319418),(142710,3,34991,2,1672319418),(142711,3,34992,2,1672319418),(142712,3,34993,2,1672319418),(142713,3,34994,2,1672319418),(142714,3,34995,2,1672319418),(142715,3,34996,2,1672319418),(142716,3,34997,2,1672319418),(142717,3,34998,2,1672319418),(142718,3,34999,2,1672319418),(142719,3,35000,2,1672319418),(142720,3,35001,2,1672319418),(142721,3,35002,2,1672319418),(142722,3,35003,2,1672319418),(142723,3,35004,2,1672319418),(142724,3,35005,2,1672319418),(142725,3,35006,2,1672319418),(142726,3,35007,2,1672319418),(142727,3,35008,2,1672319418),(142728,3,35009,2,1672319418),(142729,3,35010,2,1672319418),(142730,3,35011,2,1672319418),(142731,3,35012,2,1672319418),(142732,3,35013,2,1672319418),(142733,3,35014,2,1672319418),(142734,3,35015,2,1672319418),(142735,3,35264,2,1672319418),(142736,3,35265,2,1672319418),(142737,3,35266,2,1672319418),(142738,3,35267,2,1672319418),(142739,3,35268,2,1672319418),(142740,3,35269,2,1672319418),(142741,3,35270,2,1672319418),(142742,3,35271,2,1672319418),(142743,3,36782,2,1672319418),(142744,3,36783,2,1672319418),(142745,3,36784,2,1672319418),(142746,3,36785,2,1672319418),(142747,3,36786,2,1672319418),(142748,3,36787,2,1672319418),(142749,3,36788,2,1672319418),(142750,3,36789,2,1672319418),(142751,3,36790,2,1672319418),(142752,3,36791,2,1672319418),(142753,3,36792,2,1672319418),(142754,3,36793,2,1672319418),(142755,3,36794,2,1672319418),(142756,3,39754,2,1672319418),(142757,3,39755,2,1672319418),(142758,3,39756,2,1672319418),(142759,3,39757,2,1672319418),(142760,3,39758,2,1672319418),(142761,3,39759,2,1672319418),(142762,3,39760,2,1672319418),(142763,3,39761,2,1672319418),(142764,3,39762,2,1672319418),(142765,3,39763,2,1672319418),(142766,3,39764,2,1672319418),(142767,3,39765,2,1672319418),(142768,3,39766,2,1672319418),(142769,3,39767,2,1672319418),(142770,3,39768,2,1672319418),(142771,3,39769,2,1672319418),(142772,3,39770,2,1672319418),(142773,3,39771,2,1672319418),(142774,3,39772,2,1672319418),(142775,3,39773,2,1672319418),(142776,3,39774,2,1672319418),(142777,3,39775,2,1672319418),(142778,3,39776,2,1672319418),(142779,3,39777,2,1672319418),(142780,3,39778,2,1672319418),(142781,3,39779,2,1672319418),(142782,3,39780,2,1672319418),(142783,3,39781,2,1672319418),(142784,3,39782,2,1672319418),(142785,3,39783,2,1672319418),(142786,3,39784,2,1672319418),(142787,3,39785,2,1672319418),(142788,3,39786,2,1672319418),(142789,3,39787,2,1672319418),(142790,3,39788,2,1672319418),(142791,3,39789,2,1672319418),(142792,3,39790,2,1672319418),(142793,3,39791,2,1672319418),(142794,3,39792,2,1672319418),(142795,3,39793,2,1672319418),(142796,3,39794,2,1672319418),(142797,3,39795,2,1672319418),(142798,3,39796,2,1672319418),(142799,3,39817,2,1672319418),(142800,3,39818,2,1672319418),(142801,3,39819,2,1672319418),(142802,3,39820,2,1672319418),(142803,3,42123,2,1672319418),(142804,3,42124,2,1672319418),(142805,3,42125,2,1672319418),(142806,3,42126,2,1672319418),(142807,3,42127,2,1672319418),(142808,3,42128,2,1672319418),(142809,3,42129,2,1672319418),(142810,3,42130,2,1672319418),(142811,3,42131,2,1672319418),(142812,3,42132,2,1672319418),(142813,3,42145,2,1672319418),(142814,3,42146,2,1672319418),(142815,3,42147,2,1672319418),(142816,3,42148,2,1672319418),(142817,3,42149,2,1672319418),(142818,3,42150,2,1672319418),(142819,3,42151,2,1672319418),(142820,3,42152,2,1672319418),(142821,3,42153,2,1672319418),(142822,3,42166,2,1672319418),(142823,3,42167,2,1672319418),(142824,3,42168,2,1672319418),(142825,3,42169,2,1672319418),(142826,3,42170,2,1672319418),(142827,3,42171,2,1672319418),(142828,3,42172,2,1672319418),(142829,3,42173,2,1672319418),(142830,3,42174,2,1672319418),(142831,3,42491,2,1672319418),(142832,3,42492,2,1672319418),(142833,3,42493,2,1672319418),(142834,3,42494,2,1672319418),(142835,3,42495,2,1672319418),(142836,3,42496,2,1672319418),(142837,3,42497,2,1672319418),(142838,3,42498,2,1672319418),(142839,3,42499,2,1672319418),(142840,3,42500,2,1672319418),(142841,3,42501,2,1672319418),(142842,3,42502,2,1672319418),(142843,3,42503,2,1672319418),(142844,3,42504,2,1672319418),(142845,3,42505,2,1672319418),(142846,3,42506,2,1672319418),(142847,3,42507,2,1672319418),(142848,3,42508,2,1672319418),(142849,3,42509,2,1672319418),(142850,3,42510,2,1672319418),(142851,3,42511,2,1672319418),(142852,3,42547,2,1672319418),(142853,3,42548,2,1672319418),(142854,3,42549,2,1672319418),(142855,3,42550,2,1672319418),(142856,3,42551,2,1672319418),(142857,3,42552,2,1672319418),(142858,3,42553,2,1672319418),(142859,3,42554,2,1672319418),(142860,3,42555,2,1672319418),(142861,3,42556,2,1672319418),(142862,3,42557,2,1672319418),(142863,3,42558,2,1672319418),(142864,3,42559,2,1672319418),(142865,3,42560,2,1672319418),(142866,3,42561,2,1672319418),(142867,3,42562,2,1672319418),(142868,3,42563,2,1672319418),(142869,3,42564,2,1672319418),(142870,3,42565,2,1672319418),(142871,3,42566,2,1672319418),(142872,3,42567,2,1672319418),(142873,3,42583,2,1672319418),(142874,3,42584,2,1672319418),(142875,3,42585,2,1672319418),(142876,3,42586,2,1672319418),(142877,3,42587,2,1672319418),(142878,3,42588,2,1672319418),(142879,3,42589,2,1672319418),(142880,3,42590,2,1672319418),(142881,3,42591,2,1672319418),(142882,3,42592,2,1672319418),(142883,3,42593,2,1672319418),(142884,3,42594,2,1672319418),(142885,3,42595,2,1672319418),(142886,3,42596,2,1672319418),(142887,3,42597,2,1672319418),(142888,3,42746,2,1672319418),(142889,3,42747,2,1672319418),(142890,3,42748,2,1672319418),(142891,3,42749,2,1672319418),(142892,3,42750,2,1672319418),(142893,3,42751,2,1672319418),(142894,3,42752,2,1672319418),(142895,3,42753,2,1672319418),(142896,3,42754,2,1672319418),(142897,3,42755,2,1672319418),(142898,3,42756,2,1672319418),(142899,3,42757,2,1672319418),(142900,3,42758,2,1672319418),(142901,3,42759,2,1672319418),(142902,3,42760,2,1672319418),(142903,3,42761,2,1672319418),(142904,3,42762,2,1672319418),(142905,3,42763,2,1672319418),(142906,3,42764,2,1672319418),(142907,3,42765,2,1672319418),(142908,3,42766,2,1672319418),(142909,3,42767,2,1672319418),(142910,3,42768,2,1672319418),(142911,3,42769,2,1672319418),(142912,3,42770,2,1672319418),(142913,3,42771,2,1672319418),(142914,3,42772,2,1672319418),(142915,3,42773,2,1672319418),(142916,3,42774,2,1672319418),(142917,3,42775,2,1672319418),(142918,3,42776,2,1672319418),(142919,3,42777,2,1672319418),(142920,3,42778,2,1672319418),(142921,3,42779,2,1672319418),(142922,3,42780,2,1672319418),(142923,3,42781,2,1672319418),(142924,3,42782,2,1672319418),(142925,3,42783,2,1672319418),(142926,3,42784,2,1672319418),(142927,3,42785,2,1672319418),(142928,3,42786,2,1672319418),(142929,3,42787,2,1672319418),(142930,3,42788,2,1672319418),(142931,3,42789,2,1672319418),(142932,3,42790,2,1672319418),(142933,3,42791,2,1672319418),(142934,3,42841,2,1672319418),(142935,3,42842,2,1672319418),(142936,3,42843,2,1672319418),(142937,3,42844,2,1672319418),(142938,3,42845,2,1672319418),(142939,3,42846,2,1672319418),(142940,3,42847,2,1672319418),(142941,3,42848,2,1672319418),(142942,3,42849,2,1672319418),(142943,3,42850,2,1672319418),(142944,3,42851,2,1672319418),(142945,3,42852,2,1672319418),(142946,3,42853,2,1672319418),(142947,3,42854,2,1672319418),(142948,3,42855,2,1672319418),(142949,3,42856,2,1672319418),(142950,3,42857,2,1672319418),(142951,3,42858,2,1672319418),(142952,3,42859,2,1672319418),(142953,3,42860,2,1672319418),(142954,3,42861,2,1672319418),(142955,3,42862,2,1672319418),(142956,3,42863,2,1672319418),(142957,3,42864,2,1672319418),(142958,3,42865,2,1672319418),(142959,3,42866,2,1672319418),(142960,3,42867,2,1672319418),(142961,3,42868,2,1672319418),(142962,3,42869,2,1672319418),(142963,3,42870,2,1672319418),(142964,3,42871,2,1672319418),(142965,3,42872,2,1672319418),(142966,3,42873,2,1672319418),(142967,3,42874,2,1672319418),(142968,3,42875,2,1672319418),(142969,3,42876,2,1672319418),(142970,3,42879,2,1672319418),(142971,3,42881,2,1672319418),(142972,3,42882,2,1672319418),(142973,3,42883,2,1672319418),(142974,3,42884,2,1672319418),(142975,3,42885,2,1672319418),(142976,3,42886,2,1672319418),(142977,3,42887,2,1672319418),(142978,3,42888,2,1672319418),(142979,3,42889,2,1672319418),(142980,3,42890,2,1672319418),(142981,3,42891,2,1672319418),(142982,3,42892,2,1672319418),(142983,3,42893,2,1672319418),(142984,3,42894,2,1672319418),(142985,3,42895,2,1672319418),(142986,3,42896,2,1672319418),(142987,3,42897,2,1672319418),(142988,3,42898,2,1672319418),(142989,3,42899,2,1672319418),(142990,3,42900,2,1672319418),(142991,3,42901,2,1672319418),(142992,3,42902,2,1672319418),(142993,3,42903,2,1672319418),(142994,3,42904,2,1672319418),(142995,3,42905,2,1672319418),(142996,3,42906,2,1672319418),(142997,3,42907,2,1672319418),(142998,3,42908,2,1672319418),(142999,3,42909,2,1672319418),(143000,3,42910,2,1672319418),(143001,3,42911,2,1672319418),(143002,3,42912,2,1672319418),(143003,3,42913,2,1672319418),(143004,3,42914,2,1672319418),(143005,3,42915,2,1672319418),(143006,3,42916,2,1672319418),(143007,3,42917,2,1672319418),(143008,3,42918,2,1672319418),(143009,3,42919,2,1672319418),(143010,3,42920,2,1672319418),(143011,3,42921,2,1672319418),(143012,3,42922,2,1672319418),(143013,3,42923,2,1672319418),(143014,3,42924,2,1672319418),(143015,3,42925,2,1672319418),(143016,3,42926,2,1672319418),(143017,3,42927,2,1672319418),(143018,3,42928,2,1672319418),(143019,3,42929,2,1672319418),(143020,3,44083,2,1672319418),(143021,3,44084,2,1672319418),(143022,3,44085,2,1672319418),(143023,3,44086,2,1672319418),(143024,3,44087,2,1672319418),(143025,3,44088,2,1672319418),(143026,3,44089,2,1672319418),(143027,3,44090,2,1672319418),(143028,3,44091,2,1672319418),(143029,3,44092,2,1672319418),(143030,3,44093,2,1672319418),(143031,3,44361,2,1672319418),(143032,3,44362,2,1672319418),(143033,3,44363,2,1672319418),(143034,3,44364,2,1672319418),(143035,3,44365,2,1672319418),(143036,3,44366,2,1672319418),(143037,3,44367,2,1672319418),(143038,3,44368,2,1672319418),(143039,3,44369,2,1672319418),(143040,3,44370,2,1672319418),(143041,3,44378,2,1672319418),(143042,3,44380,2,1672319418),(143043,3,44422,2,1672319418),(143044,3,44423,2,1672319418),(143045,3,44424,2,1672319418),(143046,3,44425,2,1672319418),(143047,3,44426,2,1672319418),(143048,3,44451,2,1672319418),(143049,3,44452,2,1672319418),(143050,3,44454,2,1672319418),(143051,3,44456,2,1672319418),(143052,3,23025,3,1672319418),(143053,3,23026,3,1672319418),(143054,3,23028,3,1672319418),(143055,3,23029,3,1672319418),(143056,3,23030,3,1672319418),(143057,3,23031,3,1672319418),(143058,3,23032,3,1672319418),(143059,3,28003,3,1672319418),(143060,3,28495,3,1672319418),(143061,3,28496,3,1672319418),(143062,3,29512,3,1672319418),(143063,3,29513,3,1672319418),(143064,3,29514,3,1672319418),(143065,3,29720,3,1672319418),(143066,3,29721,3,1672319418),(143067,3,29722,3,1672319418),(143068,3,29723,3,1672319418),(143069,3,29724,3,1672319418),(143070,3,29725,3,1672319418),(143071,3,29726,3,1672319418),(143072,3,29727,3,1672319418),(143073,3,29728,3,1672319418),(143074,3,29729,3,1672319418),(143075,3,29730,3,1672319418),(143076,3,29731,3,1672319418),(143077,3,29732,3,1672319418),(143078,3,29733,3,1672319418),(143079,3,29734,3,1672319418),(143080,3,29735,3,1672319418),(143081,3,29736,3,1672319418),(143082,3,29737,3,1672319418),(143083,3,29787,3,1672319418),(143084,3,29788,3,1672319418),(143085,3,29789,3,1672319418),(143086,3,29790,3,1672319418),(143087,3,29791,3,1672319418),(143088,3,29792,3,1672319418),(143089,3,29793,3,1672319418),(143090,3,29794,3,1672319418),(143091,3,29795,3,1672319418),(143092,3,29796,3,1672319418),(143093,3,29797,3,1672319418),(143094,3,29798,3,1672319418),(143095,3,29799,3,1672319418),(143096,3,29800,3,1672319418),(143097,3,29801,3,1672319418),(143098,3,29802,3,1672319418),(143099,3,29803,3,1672319418),(143100,3,29804,3,1672319418),(143101,3,29805,3,1672319418),(143102,3,29806,3,1672319418),(143103,3,29807,3,1672319418),(143104,3,29808,3,1672319418),(143105,3,29809,3,1672319418),(143106,3,29810,3,1672319418),(143107,3,29811,3,1672319418),(143108,3,29812,3,1672319418),(143109,3,29813,3,1672319418),(143110,3,29814,3,1672319418),(143111,3,29815,3,1672319418),(143112,3,29816,3,1672319418),(143113,3,29817,3,1672319418),(143114,3,29818,3,1672319418),(143115,3,29819,3,1672319418),(143116,3,29820,3,1672319418),(143117,3,30027,3,1672319418),(143118,3,30028,3,1672319418),(143119,3,30029,3,1672319418),(143120,3,30030,3,1672319418),(143121,3,30031,3,1672319418),(143122,3,30032,3,1672319418),(143123,3,30033,3,1672319418),(143124,3,30034,3,1672319418),(143125,3,30035,3,1672319418),(143126,3,30036,3,1672319418),(143127,3,30037,3,1672319418),(143128,3,30038,3,1672319418),(143129,3,30039,3,1672319418),(143130,3,30040,3,1672319418),(143131,3,30041,3,1672319418),(143132,3,30042,3,1672319418),(143133,3,30129,3,1672319418),(143134,3,30130,3,1672319418),(143135,3,30131,3,1672319418),(143136,3,30344,3,1672319418),(143137,3,30345,3,1672319418),(143138,3,30346,3,1672319418),(143139,3,30347,3,1672319418),(143140,3,30348,3,1672319418),(143141,3,30349,3,1672319418),(143142,3,30350,3,1672319418),(143143,3,30351,3,1672319418),(143144,3,30352,3,1672319418),(143145,3,30353,3,1672319418),(143146,3,30354,3,1672319418),(143147,3,30355,3,1672319418),(143148,3,30356,3,1672319418),(143149,3,30357,3,1672319418),(143150,3,30358,3,1672319418),(143151,3,30359,3,1672319418),(143152,3,30360,3,1672319418),(143153,3,30361,3,1672319418),(143154,3,30362,3,1672319418),(143155,3,30363,3,1672319418),(143156,3,30364,3,1672319418),(143157,3,30365,3,1672319418),(143158,3,30366,3,1672319418),(143159,3,30367,3,1672319418),(143160,3,30368,3,1672319418),(143161,3,30369,3,1672319418),(143162,3,30370,3,1672319418),(143163,3,30371,3,1672319418),(143164,3,30372,3,1672319418),(143165,3,30373,3,1672319418),(143166,3,30374,3,1672319418),(143167,3,30375,3,1672319418),(143168,3,30376,3,1672319418),(143169,3,30377,3,1672319418),(143170,3,30378,3,1672319418),(143171,3,30379,3,1672319418),(143172,3,30380,3,1672319418),(143173,3,30381,3,1672319418),(143174,3,30382,3,1672319418),(143175,3,30383,3,1672319418),(143176,3,30384,3,1672319418),(143177,3,30385,3,1672319418),(143178,3,30386,3,1672319418),(143179,3,30387,3,1672319418),(143180,3,30388,3,1672319418),(143181,3,30389,3,1672319418),(143182,3,30390,3,1672319418),(143183,3,30391,3,1672319418),(143184,3,30392,3,1672319418),(143185,3,30393,3,1672319418),(143186,3,30394,3,1672319418),(143187,3,30395,3,1672319418),(143188,3,30396,3,1672319418),(143189,3,30397,3,1672319418),(143190,3,30398,3,1672319418),(143191,3,30399,3,1672319418),(143192,3,30400,3,1672319418),(143193,3,30401,3,1672319418),(143194,3,30402,3,1672319418),(143195,3,30403,3,1672319418),(143196,3,30404,3,1672319418),(143197,3,30425,3,1672319418),(143198,3,31335,3,1672319418),(143199,3,31336,3,1672319418),(143200,3,31337,3,1672319418),(143201,3,31338,3,1672319418),(143202,3,31339,3,1672319418),(143203,3,31340,3,1672319418),(143204,3,31341,3,1672319418),(143205,3,31342,3,1672319418),(143206,3,31343,3,1672319418),(143207,3,31344,3,1672319418),(143208,3,31345,3,1672319418),(143209,3,31346,3,1672319418),(143210,3,31347,3,1672319418),(143211,3,31348,3,1672319418),(143212,3,31349,3,1672319418),(143213,3,31350,3,1672319418),(143214,3,31351,3,1672319418),(143215,3,31352,3,1672319418),(143216,3,31353,3,1672319418),(143217,3,31354,3,1672319418),(143218,3,31355,3,1672319418),(143219,3,31356,3,1672319418),(143220,3,31357,3,1672319418),(143221,3,31358,3,1672319418),(143222,3,31359,3,1672319418),(143223,3,31360,3,1672319418),(143224,3,31361,3,1672319418),(143225,3,31362,3,1672319418),(143226,3,31363,3,1672319418),(143227,3,31433,3,1672319418),(143228,3,31434,3,1672319418),(143229,3,31435,3,1672319418),(143230,3,31436,3,1672319418),(143231,3,31437,3,1672319418),(143232,3,31438,3,1672319418),(143233,3,31439,3,1672319418),(143234,3,31440,3,1672319418),(143235,3,31441,3,1672319418),(143236,3,31442,3,1672319418),(143237,3,31453,3,1672319418),(143238,3,31454,3,1672319418),(143239,3,31455,3,1672319418),(143240,3,31663,3,1672319418),(143241,3,31664,3,1672319418),(143242,3,31665,3,1672319418),(143243,3,31666,3,1672319418),(143244,3,31667,3,1672319418),(143245,3,32012,3,1672319418),(143246,3,32013,3,1672319418),(143247,3,32014,3,1672319418),(143248,3,32015,3,1672319418),(143249,3,32016,3,1672319418),(143250,3,32017,3,1672319418),(143251,3,32018,3,1672319418),(143252,3,32019,3,1672319418),(143253,3,32020,3,1672319418),(143254,3,32021,3,1672319418),(143255,3,32022,3,1672319418),(143256,3,32023,3,1672319418),(143257,3,32024,3,1672319418),(143258,3,32040,3,1672319418),(143259,3,32041,3,1672319418),(143260,3,32042,3,1672319418),(143261,3,32935,3,1672319418),(143262,3,32936,3,1672319418),(143263,3,32937,3,1672319418),(143264,3,32938,3,1672319418),(143265,3,32939,3,1672319418),(143266,3,32940,3,1672319418),(143267,3,32941,3,1672319418),(143268,3,32942,3,1672319418),(143269,3,32943,3,1672319418),(143270,3,32944,3,1672319418),(143271,3,32945,3,1672319418),(143272,3,32946,3,1672319418),(143273,3,32947,3,1672319418),(143274,3,32948,3,1672319418),(143275,3,32949,3,1672319418),(143276,3,32950,3,1672319418),(143277,3,32958,3,1672319418),(143278,3,32959,3,1672319418),(143279,3,32960,3,1672319418),(143280,3,32961,3,1672319418),(143281,3,32962,3,1672319418),(143282,3,33178,3,1672319418),(143283,3,33179,3,1672319418),(143284,3,33180,3,1672319418),(143285,3,33321,3,1672319418),(143286,3,33322,3,1672319418),(143287,3,33323,3,1672319418),(143288,3,33324,3,1672319418),(143289,3,33329,3,1672319418),(143290,3,33330,3,1672319418),(143291,3,33331,3,1672319418),(143292,3,33332,3,1672319418),(143293,3,33650,3,1672319418),(143294,3,33651,3,1672319418),(143295,3,33652,3,1672319418),(143296,3,33653,3,1672319418),(143297,3,33654,3,1672319418),(143298,3,33655,3,1672319418),(143299,3,33747,3,1672319418),(143300,3,33748,3,1672319418),(143301,3,33749,3,1672319418),(143302,3,33750,3,1672319418),(143303,3,33751,3,1672319418),(143304,3,33752,3,1672319418),(143305,3,33753,3,1672319418),(143306,3,33757,3,1672319418),(143307,3,33758,3,1672319418),(143308,3,33759,3,1672319418),(143309,3,33760,3,1672319418),(143310,3,33761,3,1672319418),(143311,3,33762,3,1672319418),(143312,3,33763,3,1672319418),(143313,3,34348,3,1672319418),(143314,3,34349,3,1672319418),(143315,3,34350,3,1672319418),(143316,3,34351,3,1672319418),(143317,3,34352,3,1672319418),(143318,3,34353,3,1672319418),(143319,3,34354,3,1672319418),(143320,3,34355,3,1672319418),(143321,3,34356,3,1672319418),(143322,3,34357,3,1672319418),(143323,3,34358,3,1672319418),(143324,3,34359,3,1672319418),(143325,3,34360,3,1672319418),(143326,3,34361,3,1672319418),(143327,3,34362,3,1672319418),(143328,3,34363,3,1672319418),(143329,3,34364,3,1672319418),(143330,3,34365,3,1672319418),(143331,3,34366,3,1672319418),(143332,3,34405,3,1672319418),(143333,3,34406,3,1672319418),(143334,3,34407,3,1672319418),(143335,3,34408,3,1672319418),(143336,3,34409,3,1672319418),(143337,3,34410,3,1672319418),(143338,3,34411,3,1672319418),(143339,3,34444,3,1672319418),(143340,3,34445,3,1672319418),(143341,3,34446,3,1672319418),(143342,3,34447,3,1672319418),(143343,3,34448,3,1672319418),(143344,3,34449,3,1672319418),(143345,3,34450,3,1672319418),(143346,3,34944,3,1672319418),(143347,3,34945,3,1672319418),(143348,3,34946,3,1672319418),(143349,3,34947,3,1672319418),(143350,3,34948,3,1672319418),(143351,3,34970,3,1672319418),(143352,3,34971,3,1672319418),(143353,3,34972,3,1672319418),(143354,3,34973,3,1672319418),(143355,3,34974,3,1672319418),(143356,3,34975,3,1672319418),(143357,3,34976,3,1672319418),(143358,3,34977,3,1672319418),(143359,3,34978,3,1672319418),(143360,3,34979,3,1672319418),(143361,3,34980,3,1672319418),(143362,3,34981,3,1672319418),(143363,3,34982,3,1672319418),(143364,3,34983,3,1672319418),(143365,3,34984,3,1672319418),(143366,3,34985,3,1672319418),(143367,3,34986,3,1672319418),(143368,3,34987,3,1672319418),(143369,3,34988,3,1672319418),(143370,3,34989,3,1672319418),(143371,3,34990,3,1672319418),(143372,3,34991,3,1672319418),(143373,3,34992,3,1672319418),(143374,3,34993,3,1672319418),(143375,3,34994,3,1672319418),(143376,3,34995,3,1672319418),(143377,3,34996,3,1672319418),(143378,3,34997,3,1672319418),(143379,3,34998,3,1672319418),(143380,3,34999,3,1672319418),(143381,3,35000,3,1672319418),(143382,3,35001,3,1672319418),(143383,3,35002,3,1672319418),(143384,3,35003,3,1672319418),(143385,3,35004,3,1672319418),(143386,3,35005,3,1672319418),(143387,3,35006,3,1672319418),(143388,3,35007,3,1672319418),(143389,3,35008,3,1672319418),(143390,3,35009,3,1672319418),(143391,3,35010,3,1672319418),(143392,3,35011,3,1672319418),(143393,3,35012,3,1672319418),(143394,3,35013,3,1672319418),(143395,3,35014,3,1672319418),(143396,3,35015,3,1672319418),(143397,3,35264,3,1672319418),(143398,3,35265,3,1672319418),(143399,3,35266,3,1672319418),(143400,3,35267,3,1672319418),(143401,3,35268,3,1672319418),(143402,3,35269,3,1672319418),(143403,3,35270,3,1672319418),(143404,3,35271,3,1672319418),(143405,3,36782,3,1672319418),(143406,3,36783,3,1672319418),(143407,3,36784,3,1672319418),(143408,3,36785,3,1672319418),(143409,3,36786,3,1672319418),(143410,3,36787,3,1672319418),(143411,3,36788,3,1672319418),(143412,3,36789,3,1672319418),(143413,3,36790,3,1672319418),(143414,3,36791,3,1672319418),(143415,3,36792,3,1672319418),(143416,3,36793,3,1672319418),(143417,3,36794,3,1672319418),(143418,3,39754,3,1672319418),(143419,3,39755,3,1672319418),(143420,3,39756,3,1672319418),(143421,3,39757,3,1672319418),(143422,3,39758,3,1672319418),(143423,3,39759,3,1672319418),(143424,3,39760,3,1672319418),(143425,3,39761,3,1672319418),(143426,3,39762,3,1672319418),(143427,3,39763,3,1672319418),(143428,3,39764,3,1672319418),(143429,3,39765,3,1672319418),(143430,3,39766,3,1672319418),(143431,3,39767,3,1672319418),(143432,3,39768,3,1672319418),(143433,3,39769,3,1672319418),(143434,3,39770,3,1672319418),(143435,3,39771,3,1672319418),(143436,3,39772,3,1672319418),(143437,3,39773,3,1672319418),(143438,3,39774,3,1672319418),(143439,3,39775,3,1672319418),(143440,3,39776,3,1672319418),(143441,3,39777,3,1672319418),(143442,3,39778,3,1672319418),(143443,3,39779,3,1672319418),(143444,3,39780,3,1672319418),(143445,3,39781,3,1672319418),(143446,3,39782,3,1672319418),(143447,3,39783,3,1672319418),(143448,3,39784,3,1672319418),(143449,3,39785,3,1672319418),(143450,3,39786,3,1672319418),(143451,3,39787,3,1672319418),(143452,3,39788,3,1672319418),(143453,3,39789,3,1672319418),(143454,3,39790,3,1672319418),(143455,3,39791,3,1672319418),(143456,3,39792,3,1672319418),(143457,3,39793,3,1672319418),(143458,3,39794,3,1672319418),(143459,3,39795,3,1672319418),(143460,3,39796,3,1672319418),(143461,3,39817,3,1672319418),(143462,3,39818,3,1672319418),(143463,3,39819,3,1672319418),(143464,3,39820,3,1672319418),(143465,3,42123,3,1672319418),(143466,3,42124,3,1672319418),(143467,3,42125,3,1672319418),(143468,3,42126,3,1672319418),(143469,3,42127,3,1672319418),(143470,3,42128,3,1672319418),(143471,3,42129,3,1672319418),(143472,3,42130,3,1672319418),(143473,3,42131,3,1672319418),(143474,3,42132,3,1672319418),(143475,3,42145,3,1672319418),(143476,3,42146,3,1672319418),(143477,3,42147,3,1672319418),(143478,3,42148,3,1672319418),(143479,3,42149,3,1672319418),(143480,3,42150,3,1672319418),(143481,3,42151,3,1672319418),(143482,3,42152,3,1672319418),(143483,3,42153,3,1672319418),(143484,3,42166,3,1672319418),(143485,3,42167,3,1672319418),(143486,3,42168,3,1672319418),(143487,3,42169,3,1672319418),(143488,3,42170,3,1672319418),(143489,3,42171,3,1672319418),(143490,3,42172,3,1672319418),(143491,3,42173,3,1672319418),(143492,3,42174,3,1672319418),(143493,3,42491,3,1672319418),(143494,3,42492,3,1672319418),(143495,3,42493,3,1672319418),(143496,3,42494,3,1672319418),(143497,3,42495,3,1672319418),(143498,3,42496,3,1672319418),(143499,3,42497,3,1672319418),(143500,3,42498,3,1672319418),(143501,3,42499,3,1672319418),(143502,3,42500,3,1672319418),(143503,3,42501,3,1672319418),(143504,3,42502,3,1672319418),(143505,3,42503,3,1672319418),(143506,3,42504,3,1672319418),(143507,3,42505,3,1672319418),(143508,3,42506,3,1672319418),(143509,3,42507,3,1672319418),(143510,3,42508,3,1672319418),(143511,3,42509,3,1672319418),(143512,3,42510,3,1672319418),(143513,3,42511,3,1672319418),(143514,3,42547,3,1672319418),(143515,3,42548,3,1672319418),(143516,3,42549,3,1672319418),(143517,3,42550,3,1672319418),(143518,3,42551,3,1672319418),(143519,3,42552,3,1672319418),(143520,3,42553,3,1672319418),(143521,3,42554,3,1672319418),(143522,3,42555,3,1672319418),(143523,3,42556,3,1672319418),(143524,3,42557,3,1672319418),(143525,3,42558,3,1672319418),(143526,3,42559,3,1672319418),(143527,3,42560,3,1672319418),(143528,3,42561,3,1672319418),(143529,3,42562,3,1672319418),(143530,3,42563,3,1672319418),(143531,3,42564,3,1672319418),(143532,3,42565,3,1672319418),(143533,3,42566,3,1672319418),(143534,3,42567,3,1672319418),(143535,3,42583,3,1672319418),(143536,3,42584,3,1672319418),(143537,3,42585,3,1672319418),(143538,3,42586,3,1672319418),(143539,3,42587,3,1672319418),(143540,3,42588,3,1672319418),(143541,3,42589,3,1672319418),(143542,3,42590,3,1672319418),(143543,3,42591,3,1672319418),(143544,3,42592,3,1672319418),(143545,3,42593,3,1672319418),(143546,3,42594,3,1672319418),(143547,3,42595,3,1672319418),(143548,3,42596,3,1672319418),(143549,3,42597,3,1672319418),(143550,3,42746,3,1672319418),(143551,3,42747,3,1672319418),(143552,3,42748,3,1672319418),(143553,3,42749,3,1672319418),(143554,3,42750,3,1672319418),(143555,3,42751,3,1672319418),(143556,3,42752,3,1672319418),(143557,3,42753,3,1672319418),(143558,3,42754,3,1672319418),(143559,3,42755,3,1672319418),(143560,3,42756,3,1672319418),(143561,3,42757,3,1672319418),(143562,3,42758,3,1672319418),(143563,3,42759,3,1672319418),(143564,3,42760,3,1672319418),(143565,3,42761,3,1672319418),(143566,3,42762,3,1672319418),(143567,3,42763,3,1672319418),(143568,3,42764,3,1672319418),(143569,3,42765,3,1672319418),(143570,3,42766,3,1672319418),(143571,3,42767,3,1672319418),(143572,3,42768,3,1672319418),(143573,3,42769,3,1672319418),(143574,3,42770,3,1672319418),(143575,3,42771,3,1672319418),(143576,3,42772,3,1672319418),(143577,3,42773,3,1672319418),(143578,3,42774,3,1672319418),(143579,3,42775,3,1672319418),(143580,3,42776,3,1672319418),(143581,3,42777,3,1672319418),(143582,3,42778,3,1672319418),(143583,3,42779,3,1672319418),(143584,3,42780,3,1672319418),(143585,3,42781,3,1672319418),(143586,3,42782,3,1672319418),(143587,3,42783,3,1672319418),(143588,3,42784,3,1672319418),(143589,3,42785,3,1672319418),(143590,3,42786,3,1672319418),(143591,3,42787,3,1672319418),(143592,3,42788,3,1672319418),(143593,3,42789,3,1672319418),(143594,3,42790,3,1672319418),(143595,3,42791,3,1672319418),(143596,3,42841,3,1672319418),(143597,3,42842,3,1672319418),(143598,3,42843,3,1672319418),(143599,3,42844,3,1672319418),(143600,3,42845,3,1672319418),(143601,3,42846,3,1672319418),(143602,3,42847,3,1672319418),(143603,3,42848,3,1672319418),(143604,3,42849,3,1672319418),(143605,3,42850,3,1672319418),(143606,3,42851,3,1672319418),(143607,3,42852,3,1672319418),(143608,3,42853,3,1672319418),(143609,3,42854,3,1672319418),(143610,3,42855,3,1672319418),(143611,3,42856,3,1672319418),(143612,3,42857,3,1672319418),(143613,3,42858,3,1672319418),(143614,3,42859,3,1672319418),(143615,3,42860,3,1672319418),(143616,3,42861,3,1672319418),(143617,3,42862,3,1672319418),(143618,3,42863,3,1672319418),(143619,3,42864,3,1672319418),(143620,3,42865,3,1672319418),(143621,3,42866,3,1672319418),(143622,3,42867,3,1672319418),(143623,3,42868,3,1672319418),(143624,3,42869,3,1672319418),(143625,3,42870,3,1672319418),(143626,3,42871,3,1672319418),(143627,3,42872,3,1672319418),(143628,3,42873,3,1672319418),(143629,3,42874,3,1672319418),(143630,3,42875,3,1672319418),(143631,3,42876,3,1672319418),(143632,3,42879,3,1672319418),(143633,3,42881,3,1672319418),(143634,3,42882,3,1672319418),(143635,3,42883,3,1672319418),(143636,3,42884,3,1672319418),(143637,3,42885,3,1672319418),(143638,3,42886,3,1672319418),(143639,3,42887,3,1672319418),(143640,3,42888,3,1672319418),(143641,3,42889,3,1672319418),(143642,3,42890,3,1672319418),(143643,3,42891,3,1672319418),(143644,3,42892,3,1672319418),(143645,3,42893,3,1672319418),(143646,3,42894,3,1672319418),(143647,3,42895,3,1672319418),(143648,3,42896,3,1672319418),(143649,3,42897,3,1672319418),(143650,3,42898,3,1672319418),(143651,3,42899,3,1672319418),(143652,3,42900,3,1672319418),(143653,3,42901,3,1672319418),(143654,3,42902,3,1672319418),(143655,3,42903,3,1672319418),(143656,3,42904,3,1672319418),(143657,3,42905,3,1672319418),(143658,3,42906,3,1672319418),(143659,3,42907,3,1672319418),(143660,3,42908,3,1672319418),(143661,3,42909,3,1672319418),(143662,3,42910,3,1672319418),(143663,3,42911,3,1672319418),(143664,3,42912,3,1672319418),(143665,3,42913,3,1672319418),(143666,3,42914,3,1672319418),(143667,3,42915,3,1672319418),(143668,3,42916,3,1672319418),(143669,3,42917,3,1672319418),(143670,3,42918,3,1672319418),(143671,3,42919,3,1672319418),(143672,3,42920,3,1672319418),(143673,3,42921,3,1672319418),(143674,3,42922,3,1672319418),(143675,3,42923,3,1672319418),(143676,3,42924,3,1672319418),(143677,3,42925,3,1672319418),(143678,3,42926,3,1672319418),(143679,3,42927,3,1672319418),(143680,3,42928,3,1672319418),(143681,3,42929,3,1672319418),(143682,3,44083,3,1672319418),(143683,3,44084,3,1672319418),(143684,3,44085,3,1672319418),(143685,3,44086,3,1672319418),(143686,3,44087,3,1672319418),(143687,3,44088,3,1672319418),(143688,3,44089,3,1672319418),(143689,3,44090,3,1672319418),(143690,3,44091,3,1672319418),(143691,3,44092,3,1672319418),(143692,3,44093,3,1672319418),(143693,3,44361,3,1672319418),(143694,3,44362,3,1672319418),(143695,3,44363,3,1672319418),(143696,3,44364,3,1672319418),(143697,3,44365,3,1672319418),(143698,3,44366,3,1672319418),(143699,3,44367,3,1672319418),(143700,3,44368,3,1672319418),(143701,3,44369,3,1672319418),(143702,3,44370,3,1672319418),(143703,3,44378,3,1672319418),(143704,3,44380,3,1672319418),(143705,3,44422,3,1672319418),(143706,3,44423,3,1672319418),(143707,3,44424,3,1672319418),(143708,3,44425,3,1672319418),(143709,3,44426,3,1672319418),(143710,3,44451,3,1672319418),(143711,3,44452,3,1672319418),(143712,3,44454,3,1672319418),(143713,3,44456,3,1672319418),(143714,1,10333,2,1672319418),(143715,1,10334,2,1672319418),(143716,1,10367,2,1672319418),(143717,1,10368,2,1672319418),(143718,1,10333,3,1672319418),(143719,1,10334,3,1672319418),(143720,1,10367,3,1672319418),(143721,1,10368,3,1672319418),(143722,3,23024,2,1672319418),(143723,3,23027,2,1672319418),(143724,3,28001,2,1672319418),(143725,3,28002,2,1672319418),(143726,3,28493,2,1672319418),(143727,3,28494,2,1672319418),(143728,3,29506,2,1672319418),(143729,3,29703,2,1672319418),(143730,3,29785,2,1672319418),(143731,3,29786,2,1672319418),(143732,3,30026,2,1672319418),(143733,3,30127,2,1672319418),(143734,3,30128,2,1672319418),(143735,3,30337,2,1672319418),(143736,3,30338,2,1672319418),(143737,3,30339,2,1672319418),(143738,3,30340,2,1672319418),(143739,3,30341,2,1672319418),(143740,3,30342,2,1672319418),(143741,3,30343,2,1672319418),(143742,3,30423,2,1672319418),(143743,3,31334,2,1672319418),(143744,3,31429,2,1672319418),(143745,3,31430,2,1672319418),(143746,3,31655,2,1672319418),(143747,3,31656,2,1672319418),(143748,3,31657,2,1672319418),(143749,3,31658,2,1672319418),(143750,3,32004,2,1672319418),(143751,3,32005,2,1672319418),(143752,3,32006,2,1672319418),(143753,3,32931,2,1672319418),(143754,3,32932,2,1672319418),(143755,3,32933,2,1672319418),(143756,3,32934,2,1672319418),(143757,3,32954,2,1672319418),(143758,3,32955,2,1672319418),(143759,3,32956,2,1672319418),(143760,3,32957,2,1672319418),(143761,3,33177,2,1672319418),(143762,3,33658,2,1672319418),(143763,3,33670,2,1672319418),(143764,3,33744,2,1672319418),(143765,3,33745,2,1672319418),(143766,3,33746,2,1672319418),(143767,3,33754,2,1672319418),(143768,3,33755,2,1672319418),(143769,3,33756,2,1672319418),(143770,3,34342,2,1672319418),(143771,3,34343,2,1672319418),(143772,3,34344,2,1672319418),(143773,3,34345,2,1672319418),(143774,3,34346,2,1672319418),(143775,3,34347,2,1672319418),(143776,3,34399,2,1672319418),(143777,3,34400,2,1672319418),(143778,3,34401,2,1672319418),(143779,3,34402,2,1672319418),(143780,3,34403,2,1672319418),(143781,3,34404,2,1672319418),(143782,3,34440,2,1672319418),(143783,3,34441,2,1672319418),(143784,3,34442,2,1672319418),(143785,3,34443,2,1672319418),(143786,3,34942,2,1672319418),(143787,3,34943,2,1672319418),(143788,3,34966,2,1672319418),(143789,3,34967,2,1672319418),(143790,3,34968,2,1672319418),(143791,3,34969,2,1672319418),(143792,3,35262,2,1672319418),(143793,3,35263,2,1672319418),(143794,3,36781,2,1672319418),(143795,3,39749,2,1672319418),(143796,3,39750,2,1672319418),(143797,3,39751,2,1672319418),(143798,3,39752,2,1672319418),(143799,3,39753,2,1672319418),(143800,3,39816,2,1672319418),(143801,3,42121,2,1672319418),(143802,3,42122,2,1672319418),(143803,3,42144,2,1672319418),(143804,3,42165,2,1672319418),(143805,3,42487,2,1672319418),(143806,3,42488,2,1672319418),(143807,3,42489,2,1672319418),(143808,3,42490,2,1672319418),(143809,3,42543,2,1672319418),(143810,3,42544,2,1672319418),(143811,3,42545,2,1672319418),(143812,3,42546,2,1672319418),(143813,3,42580,2,1672319418),(143814,3,42581,2,1672319418),(143815,3,42582,2,1672319418),(143816,3,42741,2,1672319418),(143817,3,42742,2,1672319418),(143818,3,42743,2,1672319418),(143819,3,42744,2,1672319418),(143820,3,42745,2,1672319418),(143821,3,42834,2,1672319418),(143822,3,42835,2,1672319418),(143823,3,42836,2,1672319418),(143824,3,42837,2,1672319418),(143825,3,42838,2,1672319418),(143826,3,42839,2,1672319418),(143827,3,42840,2,1672319418),(143828,3,42878,2,1672319418),(143829,3,44082,2,1672319418),(143830,3,44360,2,1672319418),(143831,3,23024,3,1672319418),(143832,3,23027,3,1672319418),(143833,3,28001,3,1672319418),(143834,3,28002,3,1672319418),(143835,3,28493,3,1672319418),(143836,3,28494,3,1672319418),(143837,3,29506,3,1672319418),(143838,3,29703,3,1672319418),(143839,3,29785,3,1672319418),(143840,3,29786,3,1672319418),(143841,3,30026,3,1672319418),(143842,3,30127,3,1672319418),(143843,3,30128,3,1672319418),(143844,3,30337,3,1672319418),(143845,3,30338,3,1672319418),(143846,3,30339,3,1672319418),(143847,3,30340,3,1672319418),(143848,3,30341,3,1672319418),(143849,3,30342,3,1672319418),(143850,3,30343,3,1672319418),(143851,3,30423,3,1672319418),(143852,3,31334,3,1672319418),(143853,3,31429,3,1672319418),(143854,3,31430,3,1672319418),(143855,3,31655,3,1672319418),(143856,3,31656,3,1672319418),(143857,3,31657,3,1672319418),(143858,3,31658,3,1672319418),(143859,3,32004,3,1672319418),(143860,3,32005,3,1672319418),(143861,3,32006,3,1672319418),(143862,3,32931,3,1672319418),(143863,3,32932,3,1672319418),(143864,3,32933,3,1672319418),(143865,3,32934,3,1672319418),(143866,3,32954,3,1672319418),(143867,3,32955,3,1672319418),(143868,3,32956,3,1672319418),(143869,3,32957,3,1672319418),(143870,3,33177,3,1672319418),(143871,3,33658,3,1672319418),(143872,3,33670,3,1672319418),(143873,3,33744,3,1672319418),(143874,3,33745,3,1672319418),(143875,3,33746,3,1672319418),(143876,3,33754,3,1672319418),(143877,3,33755,3,1672319418),(143878,3,33756,3,1672319418),(143879,3,34342,3,1672319418),(143880,3,34343,3,1672319418),(143881,3,34344,3,1672319418); INSERT INTO `changelog` VALUES (143882,3,34345,3,1672319418),(143883,3,34346,3,1672319418),(143884,3,34347,3,1672319418),(143885,3,34399,3,1672319418),(143886,3,34400,3,1672319418),(143887,3,34401,3,1672319418),(143888,3,34402,3,1672319418),(143889,3,34403,3,1672319418),(143890,3,34404,3,1672319418),(143891,3,34440,3,1672319418),(143892,3,34441,3,1672319418),(143893,3,34442,3,1672319418),(143894,3,34443,3,1672319418),(143895,3,34942,3,1672319418),(143896,3,34943,3,1672319418),(143897,3,34966,3,1672319418),(143898,3,34967,3,1672319418),(143899,3,34968,3,1672319418),(143900,3,34969,3,1672319418),(143901,3,35262,3,1672319418),(143902,3,35263,3,1672319418),(143903,3,36781,3,1672319418),(143904,3,39749,3,1672319418),(143905,3,39750,3,1672319418),(143906,3,39751,3,1672319418),(143907,3,39752,3,1672319418),(143908,3,39753,3,1672319418),(143909,3,39816,3,1672319418),(143910,3,42121,3,1672319418),(143911,3,42122,3,1672319418),(143912,3,42144,3,1672319418),(143913,3,42165,3,1672319418),(143914,3,42487,3,1672319418),(143915,3,42488,3,1672319418),(143916,3,42489,3,1672319418),(143917,3,42490,3,1672319418),(143918,3,42543,3,1672319418),(143919,3,42544,3,1672319418),(143920,3,42545,3,1672319418),(143921,3,42546,3,1672319418),(143922,3,42580,3,1672319418),(143923,3,42581,3,1672319418),(143924,3,42582,3,1672319418),(143925,3,42741,3,1672319418),(143926,3,42742,3,1672319418),(143927,3,42743,3,1672319418),(143928,3,42744,3,1672319418),(143929,3,42745,3,1672319418),(143930,3,42834,3,1672319418),(143931,3,42835,3,1672319418),(143932,3,42836,3,1672319418),(143933,3,42837,3,1672319418),(143934,3,42838,3,1672319418),(143935,3,42839,3,1672319418),(143936,3,42840,3,1672319418),(143937,3,42878,3,1672319418),(143938,3,44082,3,1672319418),(143939,3,44360,3,1672319418),(143940,3,22996,2,1672319419),(143941,3,22997,2,1672319419),(143942,3,22998,2,1672319419),(143943,3,22999,2,1672319419),(143944,3,23000,2,1672319419),(143945,3,23001,2,1672319419),(143946,3,23002,2,1672319419),(143947,3,23003,2,1672319419),(143948,3,23004,2,1672319419),(143949,3,23005,2,1672319419),(143950,3,23007,2,1672319419),(143951,3,23011,2,1672319419),(143952,3,23012,2,1672319419),(143953,3,23013,2,1672319419),(143954,3,23014,2,1672319419),(143955,3,23015,2,1672319419),(143956,3,23016,2,1672319419),(143957,3,23017,2,1672319419),(143958,3,23018,2,1672319419),(143959,3,23019,2,1672319419),(143960,3,23020,2,1672319419),(143961,3,23021,2,1672319419),(143962,3,23022,2,1672319419),(143963,3,23023,2,1672319419),(143964,3,23652,2,1672319419),(143965,3,23653,2,1672319419),(143966,3,23654,2,1672319419),(143967,3,27967,2,1672319419),(143968,3,27968,2,1672319419),(143969,3,27970,2,1672319419),(143970,3,27971,2,1672319419),(143971,3,27972,2,1672319419),(143972,3,27973,2,1672319419),(143973,3,27975,2,1672319419),(143974,3,27997,2,1672319419),(143975,3,27998,2,1672319419),(143976,3,27999,2,1672319419),(143977,3,28000,2,1672319419),(143978,3,28026,2,1672319419),(143979,3,28027,2,1672319419),(143980,3,28031,2,1672319419),(143981,3,28539,2,1672319419),(143982,3,28540,2,1672319419),(143983,3,28541,2,1672319419),(143984,3,28542,2,1672319419),(143985,3,28543,2,1672319419),(143986,3,28544,2,1672319419),(143987,3,28545,2,1672319419),(143988,3,28546,2,1672319419),(143989,3,28547,2,1672319419),(143990,3,28548,2,1672319419),(143991,3,28549,2,1672319419),(143992,3,28550,2,1672319419),(143993,3,28551,2,1672319419),(143994,3,28552,2,1672319419),(143995,3,28553,2,1672319419),(143996,3,28554,2,1672319419),(143997,3,28555,2,1672319419),(143998,3,28556,2,1672319419),(143999,3,28557,2,1672319419),(144000,3,28558,2,1672319419),(144001,3,28559,2,1672319419),(144002,3,28560,2,1672319419),(144003,3,28561,2,1672319419),(144004,3,28562,2,1672319419),(144005,3,28563,2,1672319419),(144006,3,28564,2,1672319419),(144007,3,28565,2,1672319419),(144008,3,28566,2,1672319419),(144009,3,28567,2,1672319419),(144010,3,28568,2,1672319419),(144011,3,28569,2,1672319419),(144012,3,28570,2,1672319419),(144013,3,28571,2,1672319419),(144014,3,28572,2,1672319419),(144015,3,28573,2,1672319419),(144016,3,28574,2,1672319419),(144017,3,28575,2,1672319419),(144018,3,28576,2,1672319419),(144019,3,28577,2,1672319419),(144020,3,28578,2,1672319419),(144021,3,28579,2,1672319419),(144022,3,28580,2,1672319419),(144023,3,28581,2,1672319419),(144024,3,28582,2,1672319419),(144025,3,28583,2,1672319419),(144026,3,28584,2,1672319419),(144027,3,28585,2,1672319419),(144028,3,28586,2,1672319419),(144029,3,28587,2,1672319419),(144030,3,28588,2,1672319419),(144031,3,28589,2,1672319419),(144032,3,28590,2,1672319419),(144033,3,28591,2,1672319419),(144034,3,28592,2,1672319419),(144035,3,28593,2,1672319419),(144036,3,28594,2,1672319419),(144037,3,28595,2,1672319419),(144038,3,28596,2,1672319419),(144039,3,28597,2,1672319419),(144040,3,28598,2,1672319419),(144041,3,28599,2,1672319419),(144042,3,28600,2,1672319419),(144043,3,28601,2,1672319419),(144044,3,28602,2,1672319419),(144045,3,28603,2,1672319419),(144046,3,28604,2,1672319419),(144047,3,28605,2,1672319419),(144048,3,28606,2,1672319419),(144049,3,28607,2,1672319419),(144050,3,28608,2,1672319419),(144051,3,28609,2,1672319419),(144052,3,28610,2,1672319419),(144053,3,28611,2,1672319419),(144054,3,28612,2,1672319419),(144055,3,28613,2,1672319419),(144056,3,28615,2,1672319419),(144057,3,28616,2,1672319419),(144058,3,29454,2,1672319419),(144059,3,29455,2,1672319419),(144060,3,29456,2,1672319419),(144061,3,29457,2,1672319419),(144062,3,29458,2,1672319419),(144063,3,29459,2,1672319419),(144064,3,29460,2,1672319419),(144065,3,29461,2,1672319419),(144066,3,29462,2,1672319419),(144067,3,29463,2,1672319419),(144068,3,29466,2,1672319419),(144069,3,29467,2,1672319419),(144070,3,29468,2,1672319419),(144071,3,29469,2,1672319419),(144072,3,29470,2,1672319419),(144073,3,29472,2,1672319419),(144074,3,29473,2,1672319419),(144075,3,29474,2,1672319419),(144076,3,29475,2,1672319419),(144077,3,29476,2,1672319419),(144078,3,29477,2,1672319419),(144079,3,29478,2,1672319419),(144080,3,29653,2,1672319419),(144081,3,29654,2,1672319419),(144082,3,29655,2,1672319419),(144083,3,29660,2,1672319419),(144084,3,29661,2,1672319419),(144085,3,29687,2,1672319419),(144086,3,29688,2,1672319419),(144087,3,29691,2,1672319419),(144088,3,29692,2,1672319419),(144089,3,29693,2,1672319419),(144090,3,29694,2,1672319419),(144091,3,29695,2,1672319419),(144092,3,29696,2,1672319419),(144093,3,29697,2,1672319419),(144094,3,29698,2,1672319419),(144095,3,29699,2,1672319419),(144096,3,29700,2,1672319419),(144097,3,29701,2,1672319419),(144098,3,29738,2,1672319419),(144099,3,29739,2,1672319419),(144100,3,29741,2,1672319419),(144101,3,29742,2,1672319419),(144102,3,29743,2,1672319419),(144103,3,29745,2,1672319419),(144104,3,29746,2,1672319419),(144105,3,29747,2,1672319419),(144106,3,29748,2,1672319419),(144107,3,29749,2,1672319419),(144108,3,29750,2,1672319419),(144109,3,29751,2,1672319419),(144110,3,29752,2,1672319419),(144111,3,29753,2,1672319419),(144112,3,29754,2,1672319419),(144113,3,29755,2,1672319419),(144114,3,29756,2,1672319419),(144115,3,29757,2,1672319419),(144116,3,29758,2,1672319419),(144117,3,29759,2,1672319419),(144118,3,29760,2,1672319419),(144119,3,29761,2,1672319419),(144120,3,29762,2,1672319419),(144121,3,29763,2,1672319419),(144122,3,29764,2,1672319419),(144123,3,29765,2,1672319419),(144124,3,29766,2,1672319419),(144125,3,29767,2,1672319419),(144126,3,29768,2,1672319419),(144127,3,29769,2,1672319419),(144128,3,29771,2,1672319419),(144129,3,29772,2,1672319419),(144130,3,29773,2,1672319419),(144131,3,29774,2,1672319419),(144132,3,29775,2,1672319419),(144133,3,29776,2,1672319419),(144134,3,29777,2,1672319419),(144135,3,29779,2,1672319419),(144136,3,29780,2,1672319419),(144137,3,29781,2,1672319419),(144138,3,29782,2,1672319419),(144139,3,29783,2,1672319419),(144140,3,29784,2,1672319419),(144141,3,29821,2,1672319419),(144142,3,29998,2,1672319419),(144143,3,29999,2,1672319419),(144144,3,30000,2,1672319419),(144145,3,30001,2,1672319419),(144146,3,30002,2,1672319419),(144147,3,30003,2,1672319419),(144148,3,30004,2,1672319419),(144149,3,30005,2,1672319419),(144150,3,30006,2,1672319419),(144151,3,30007,2,1672319419),(144152,3,30008,2,1672319419),(144153,3,30009,2,1672319419),(144154,3,30010,2,1672319419),(144155,3,30011,2,1672319419),(144156,3,30012,2,1672319419),(144157,3,30013,2,1672319419),(144158,3,30014,2,1672319419),(144159,3,30015,2,1672319419),(144160,3,30016,2,1672319419),(144161,3,30017,2,1672319419),(144162,3,30018,2,1672319419),(144163,3,30019,2,1672319419),(144164,3,30020,2,1672319419),(144165,3,30021,2,1672319419),(144166,3,30022,2,1672319419),(144167,3,30023,2,1672319419),(144168,3,30024,2,1672319419),(144169,3,30025,2,1672319419),(144170,3,30043,2,1672319419),(144171,3,30044,2,1672319419),(144172,3,30045,2,1672319419),(144173,3,30124,2,1672319419),(144174,3,30125,2,1672319419),(144175,3,30126,2,1672319419),(144176,3,30132,2,1672319419),(144177,3,30133,2,1672319419),(144178,3,30134,2,1672319419),(144179,3,30135,2,1672319419),(144180,3,30136,2,1672319419),(144181,3,30137,2,1672319419),(144182,3,30273,2,1672319419),(144183,3,30274,2,1672319419),(144184,3,30275,2,1672319419),(144185,3,30276,2,1672319419),(144186,3,30277,2,1672319419),(144187,3,30278,2,1672319419),(144188,3,30279,2,1672319419),(144189,3,30280,2,1672319419),(144190,3,30281,2,1672319419),(144191,3,30282,2,1672319419),(144192,3,30283,2,1672319419),(144193,3,30284,2,1672319419),(144194,3,30285,2,1672319419),(144195,3,30286,2,1672319419),(144196,3,30287,2,1672319419),(144197,3,30288,2,1672319419),(144198,3,30289,2,1672319419),(144199,3,30290,2,1672319419),(144200,3,30291,2,1672319419),(144201,3,30292,2,1672319419),(144202,3,30293,2,1672319419),(144203,3,30294,2,1672319419),(144204,3,30295,2,1672319419),(144205,3,30296,2,1672319419),(144206,3,30297,2,1672319419),(144207,3,30298,2,1672319419),(144208,3,30299,2,1672319419),(144209,3,30300,2,1672319419),(144210,3,30301,2,1672319419),(144211,3,30302,2,1672319419),(144212,3,30303,2,1672319419),(144213,3,30304,2,1672319419),(144214,3,30305,2,1672319419),(144215,3,30306,2,1672319419),(144216,3,30307,2,1672319419),(144217,3,30308,2,1672319419),(144218,3,30309,2,1672319419),(144219,3,30310,2,1672319419),(144220,3,30311,2,1672319419),(144221,3,30312,2,1672319419),(144222,3,30313,2,1672319419),(144223,3,30314,2,1672319419),(144224,3,30315,2,1672319419),(144225,3,30316,2,1672319419),(144226,3,30317,2,1672319419),(144227,3,30318,2,1672319419),(144228,3,30319,2,1672319419),(144229,3,30320,2,1672319419),(144230,3,30321,2,1672319419),(144231,3,30322,2,1672319419),(144232,3,30323,2,1672319419),(144233,3,30324,2,1672319419),(144234,3,30325,2,1672319419),(144235,3,30326,2,1672319419),(144236,3,30327,2,1672319419),(144237,3,30328,2,1672319419),(144238,3,30329,2,1672319419),(144239,3,30330,2,1672319419),(144240,3,30331,2,1672319419),(144241,3,30332,2,1672319419),(144242,3,30333,2,1672319419),(144243,3,30334,2,1672319419),(144244,3,30335,2,1672319419),(144245,3,30336,2,1672319419),(144246,3,31052,2,1672319419),(144247,3,31053,2,1672319419),(144248,3,31274,2,1672319419),(144249,3,31275,2,1672319419),(144250,3,31276,2,1672319419),(144251,3,31277,2,1672319419),(144252,3,31279,2,1672319419),(144253,3,31280,2,1672319419),(144254,3,31282,2,1672319419),(144255,3,31283,2,1672319419),(144256,3,31284,2,1672319419),(144257,3,31285,2,1672319419),(144258,3,31286,2,1672319419),(144259,3,31287,2,1672319419),(144260,3,31288,2,1672319419),(144261,3,31289,2,1672319419),(144262,3,31290,2,1672319419),(144263,3,31291,2,1672319419),(144264,3,31292,2,1672319419),(144265,3,31293,2,1672319419),(144266,3,31294,2,1672319419),(144267,3,31295,2,1672319419),(144268,3,31296,2,1672319419),(144269,3,31297,2,1672319419),(144270,3,31298,2,1672319419),(144271,3,31299,2,1672319419),(144272,3,31300,2,1672319419),(144273,3,31301,2,1672319419),(144274,3,31302,2,1672319419),(144275,3,31303,2,1672319419),(144276,3,31304,2,1672319419),(144277,3,31305,2,1672319419),(144278,3,31306,2,1672319419),(144279,3,31307,2,1672319419),(144280,3,31309,2,1672319419),(144281,3,31310,2,1672319419),(144282,3,31311,2,1672319419),(144283,3,31312,2,1672319419),(144284,3,31313,2,1672319419),(144285,3,31314,2,1672319419),(144286,3,31315,2,1672319419),(144287,3,31316,2,1672319419),(144288,3,31317,2,1672319419),(144289,3,31318,2,1672319419),(144290,3,31319,2,1672319419),(144291,3,31320,2,1672319419),(144292,3,31321,2,1672319419),(144293,3,31322,2,1672319419),(144294,3,31323,2,1672319419),(144295,3,31324,2,1672319419),(144296,3,31325,2,1672319419),(144297,3,31326,2,1672319419),(144298,3,31327,2,1672319419),(144299,3,31328,2,1672319419),(144300,3,31329,2,1672319419),(144301,3,31330,2,1672319419),(144302,3,31331,2,1672319419),(144303,3,31332,2,1672319419),(144304,3,31333,2,1672319419),(144305,3,31419,2,1672319419),(144306,3,31420,2,1672319419),(144307,3,31421,2,1672319419),(144308,3,31422,2,1672319419),(144309,3,31427,2,1672319419),(144310,3,31612,2,1672319419),(144311,3,31613,2,1672319419),(144312,3,31614,2,1672319419),(144313,3,31948,2,1672319419),(144314,3,31949,2,1672319419),(144315,3,31950,2,1672319419),(144316,3,31951,2,1672319419),(144317,3,31952,2,1672319419),(144318,3,31953,2,1672319419),(144319,3,31954,2,1672319419),(144320,3,31955,2,1672319419),(144321,3,31956,2,1672319419),(144322,3,31957,2,1672319419),(144323,3,31958,2,1672319419),(144324,3,31959,2,1672319419),(144325,3,31960,2,1672319419),(144326,3,31961,2,1672319419),(144327,3,31962,2,1672319419),(144328,3,31963,2,1672319419),(144329,3,31964,2,1672319419),(144330,3,31965,2,1672319419),(144331,3,31966,2,1672319419),(144332,3,31967,2,1672319419),(144333,3,31968,2,1672319419),(144334,3,31969,2,1672319419),(144335,3,31970,2,1672319419),(144336,3,31971,2,1672319419),(144337,3,31972,2,1672319419),(144338,3,31973,2,1672319419),(144339,3,31974,2,1672319419),(144340,3,32002,2,1672319419),(144341,3,32239,2,1672319419),(144342,3,32240,2,1672319419),(144343,3,32241,2,1672319419),(144344,3,32242,2,1672319419),(144345,3,32243,2,1672319419),(144346,3,32244,2,1672319419),(144347,3,32245,2,1672319419),(144348,3,32246,2,1672319419),(144349,3,32247,2,1672319419),(144350,3,32248,2,1672319419),(144351,3,32249,2,1672319419),(144352,3,32250,2,1672319419),(144353,3,32251,2,1672319419),(144354,3,32252,2,1672319419),(144355,3,32253,2,1672319419),(144356,3,32254,2,1672319419),(144357,3,32255,2,1672319419),(144358,3,32256,2,1672319419),(144359,3,32257,2,1672319419),(144360,3,32258,2,1672319419),(144361,3,32259,2,1672319419),(144362,3,32260,2,1672319419),(144363,3,32261,2,1672319419),(144364,3,32262,2,1672319419),(144365,3,32263,2,1672319419),(144366,3,32264,2,1672319419),(144367,3,32265,2,1672319419),(144368,3,32266,2,1672319419),(144369,3,32267,2,1672319419),(144370,3,32268,2,1672319419),(144371,3,32269,2,1672319419),(144372,3,32270,2,1672319419),(144373,3,32271,2,1672319419),(144374,3,32272,2,1672319419),(144375,3,32273,2,1672319419),(144376,3,32274,2,1672319419),(144377,3,32275,2,1672319419),(144378,3,32276,2,1672319419),(144379,3,32277,2,1672319419),(144380,3,32278,2,1672319419),(144381,3,32279,2,1672319419),(144382,3,32280,2,1672319419),(144383,3,32281,2,1672319419),(144384,3,32282,2,1672319419),(144385,3,32283,2,1672319419),(144386,3,32284,2,1672319419),(144387,3,32285,2,1672319419),(144388,3,32286,2,1672319419),(144389,3,32287,2,1672319419),(144390,3,32288,2,1672319419),(144391,3,32289,2,1672319419),(144392,3,32290,2,1672319419),(144393,3,32291,2,1672319419),(144394,3,32292,2,1672319419),(144395,3,32890,2,1672319419),(144396,3,32891,2,1672319419),(144397,3,32892,2,1672319419),(144398,3,32893,2,1672319419),(144399,3,32894,2,1672319419),(144400,3,32895,2,1672319419),(144401,3,32896,2,1672319419),(144402,3,32897,2,1672319419),(144403,3,32898,2,1672319419),(144404,3,32899,2,1672319419),(144405,3,32900,2,1672319419),(144406,3,32901,2,1672319419),(144407,3,32902,2,1672319419),(144408,3,32903,2,1672319419),(144409,3,32904,2,1672319419),(144410,3,32905,2,1672319419),(144411,3,32906,2,1672319419),(144412,3,32907,2,1672319419),(144413,3,32908,2,1672319419),(144414,3,32909,2,1672319419),(144415,3,32910,2,1672319419),(144416,3,32911,2,1672319419),(144417,3,32912,2,1672319419),(144418,3,32913,2,1672319419),(144419,3,32915,2,1672319419),(144420,3,32916,2,1672319419),(144421,3,32917,2,1672319419),(144422,3,32918,2,1672319419),(144423,3,32919,2,1672319419),(144424,3,32920,2,1672319419),(144425,3,32921,2,1672319419),(144426,3,32922,2,1672319419),(144427,3,32923,2,1672319419),(144428,3,32924,2,1672319419),(144429,3,32925,2,1672319419),(144430,3,32926,2,1672319419),(144431,3,32927,2,1672319419),(144432,3,32928,2,1672319419),(144433,3,32929,2,1672319419),(144434,3,32930,2,1672319419),(144435,3,32951,2,1672319419),(144436,3,32952,2,1672319419),(144437,3,32953,2,1672319419),(144438,3,33012,2,1672319419),(144439,3,33013,2,1672319419),(144440,3,33014,2,1672319419),(144441,3,33015,2,1672319419),(144442,3,33016,2,1672319419),(144443,3,33017,2,1672319419),(144444,3,33172,2,1672319419),(144445,3,33173,2,1672319419),(144446,3,33174,2,1672319419),(144447,3,33175,2,1672319419),(144448,3,33176,2,1672319419),(144449,3,33638,2,1672319419),(144450,3,33639,2,1672319419),(144451,3,33640,2,1672319419),(144452,3,33641,2,1672319419),(144453,3,33642,2,1672319419),(144454,3,33643,2,1672319419),(144455,3,33644,2,1672319419),(144456,3,33645,2,1672319419),(144457,3,33646,2,1672319419),(144458,3,33647,2,1672319419),(144459,3,33648,2,1672319419),(144460,3,33649,2,1672319419),(144461,3,34314,2,1672319419),(144462,3,34315,2,1672319419),(144463,3,34336,2,1672319419),(144464,3,34337,2,1672319419),(144465,3,34338,2,1672319419),(144466,3,34339,2,1672319419),(144467,3,34340,2,1672319419),(144468,3,34341,2,1672319419),(144469,3,34367,2,1672319419),(144470,3,34368,2,1672319419),(144471,3,34369,2,1672319419),(144472,3,34370,2,1672319419),(144473,3,34371,2,1672319419),(144474,3,34372,2,1672319419),(144475,3,34373,2,1672319419),(144476,3,34374,2,1672319419),(144477,3,34375,2,1672319419),(144478,3,34376,2,1672319419),(144479,3,34377,2,1672319419),(144480,3,34378,2,1672319419),(144481,3,34379,2,1672319419),(144482,3,34380,2,1672319419),(144483,3,34381,2,1672319419),(144484,3,34382,2,1672319419),(144485,3,34383,2,1672319419),(144486,3,34384,2,1672319419),(144487,3,34385,2,1672319419),(144488,3,34386,2,1672319419),(144489,3,34387,2,1672319419),(144490,3,34388,2,1672319419),(144491,3,34389,2,1672319419),(144492,3,34390,2,1672319419),(144493,3,34391,2,1672319419),(144494,3,34392,2,1672319419),(144495,3,34393,2,1672319419),(144496,3,34394,2,1672319419),(144497,3,34395,2,1672319419),(144498,3,34396,2,1672319419),(144499,3,34397,2,1672319419),(144500,3,34398,2,1672319419),(144501,3,34412,2,1672319419),(144502,3,34413,2,1672319419),(144503,3,34414,2,1672319419),(144504,3,34415,2,1672319419),(144505,3,34416,2,1672319419),(144506,3,34417,2,1672319419),(144507,3,34418,2,1672319419),(144508,3,34419,2,1672319419),(144509,3,34420,2,1672319419),(144510,3,34421,2,1672319419),(144511,3,34422,2,1672319419),(144512,3,34423,2,1672319419),(144513,3,34424,2,1672319419),(144514,3,34425,2,1672319419),(144515,3,34426,2,1672319419),(144516,3,34427,2,1672319419),(144517,3,34428,2,1672319419),(144518,3,34429,2,1672319419),(144519,3,34430,2,1672319419),(144520,3,34431,2,1672319419),(144521,3,34432,2,1672319419),(144522,3,34433,2,1672319419),(144523,3,34434,2,1672319419),(144524,3,34435,2,1672319419),(144525,3,34436,2,1672319419),(144526,3,34437,2,1672319419),(144527,3,34438,2,1672319419),(144528,3,34439,2,1672319419),(144529,3,34937,2,1672319419),(144530,3,34938,2,1672319419),(144531,3,34939,2,1672319419),(144532,3,34940,2,1672319419),(144533,3,34941,2,1672319419),(144534,3,34949,2,1672319419),(144535,3,34950,2,1672319419),(144536,3,34951,2,1672319419),(144537,3,34952,2,1672319419),(144538,3,34953,2,1672319419),(144539,3,34954,2,1672319419),(144540,3,34955,2,1672319419),(144541,3,34956,2,1672319419),(144542,3,34957,2,1672319419),(144543,3,34958,2,1672319419),(144544,3,34959,2,1672319419),(144545,3,34960,2,1672319419),(144546,3,34961,2,1672319419),(144547,3,34962,2,1672319419),(144548,3,34963,2,1672319419),(144549,3,34964,2,1672319419),(144550,3,34965,2,1672319419),(144551,3,35064,2,1672319419),(144552,3,35065,2,1672319419),(144553,3,35066,2,1672319419),(144554,3,35067,2,1672319419),(144555,3,35068,2,1672319419),(144556,3,35069,2,1672319419),(144557,3,35070,2,1672319419),(144558,3,35071,2,1672319419),(144559,3,35072,2,1672319419),(144560,3,35073,2,1672319419),(144561,3,35074,2,1672319419),(144562,3,35075,2,1672319419),(144563,3,35076,2,1672319419),(144564,3,35278,2,1672319419),(144565,3,35279,2,1672319419),(144566,3,36772,2,1672319419),(144567,3,36773,2,1672319419),(144568,3,36774,2,1672319419),(144569,3,36775,2,1672319419),(144570,3,36776,2,1672319419),(144571,3,36777,2,1672319419),(144572,3,36778,2,1672319419),(144573,3,36779,2,1672319419),(144574,3,36780,2,1672319419),(144575,3,39742,2,1672319419),(144576,3,39743,2,1672319419),(144577,3,39744,2,1672319419),(144578,3,39745,2,1672319419),(144579,3,39746,2,1672319419),(144580,3,39747,2,1672319419),(144581,3,39748,2,1672319419),(144582,3,39821,2,1672319419),(144583,3,39824,2,1672319419),(144584,3,39825,2,1672319419),(144585,3,40185,2,1672319419),(144586,3,40186,2,1672319419),(144587,3,40187,2,1672319419),(144588,3,40188,2,1672319419),(144589,3,40189,2,1672319419),(144590,3,42110,2,1672319419),(144591,3,42111,2,1672319419),(144592,3,42112,2,1672319419),(144593,3,42113,2,1672319419),(144594,3,42114,2,1672319419),(144595,3,42115,2,1672319419),(144596,3,42116,2,1672319419),(144597,3,42117,2,1672319419),(144598,3,42118,2,1672319419),(144599,3,42119,2,1672319419),(144600,3,42120,2,1672319419),(144601,3,42133,2,1672319419),(144602,3,42134,2,1672319419),(144603,3,42135,2,1672319419),(144604,3,42136,2,1672319419),(144605,3,42137,2,1672319419),(144606,3,42138,2,1672319419),(144607,3,42139,2,1672319419),(144608,3,42140,2,1672319419),(144609,3,42141,2,1672319419),(144610,3,42142,2,1672319419),(144611,3,42143,2,1672319419),(144612,3,42154,2,1672319419),(144613,3,42155,2,1672319419),(144614,3,42156,2,1672319419),(144615,3,42157,2,1672319419),(144616,3,42158,2,1672319419),(144617,3,42159,2,1672319419),(144618,3,42160,2,1672319419),(144619,3,42161,2,1672319419),(144620,3,42162,2,1672319419),(144621,3,42163,2,1672319419),(144622,3,42164,2,1672319419),(144623,3,42451,2,1672319419),(144624,3,42452,2,1672319419),(144625,3,42453,2,1672319419),(144626,3,42454,2,1672319419),(144627,3,42455,2,1672319419),(144628,3,42456,2,1672319419),(144629,3,42457,2,1672319419),(144630,3,42458,2,1672319419),(144631,3,42459,2,1672319419),(144632,3,42460,2,1672319419),(144633,3,42461,2,1672319419),(144634,3,42462,2,1672319419),(144635,3,42463,2,1672319419),(144636,3,42464,2,1672319419),(144637,3,42465,2,1672319419),(144638,3,42466,2,1672319419),(144639,3,42467,2,1672319419),(144640,3,42468,2,1672319419),(144641,3,42469,2,1672319419),(144642,3,42470,2,1672319419),(144643,3,42471,2,1672319419),(144644,3,42472,2,1672319419),(144645,3,42473,2,1672319419),(144646,3,42474,2,1672319419),(144647,3,42475,2,1672319419),(144648,3,42476,2,1672319419),(144649,3,42477,2,1672319419),(144650,3,42478,2,1672319419),(144651,3,42479,2,1672319419),(144652,3,42480,2,1672319419),(144653,3,42481,2,1672319419),(144654,3,42482,2,1672319419),(144655,3,42483,2,1672319419),(144656,3,42484,2,1672319419),(144657,3,42485,2,1672319419),(144658,3,42486,2,1672319419),(144659,3,42512,2,1672319419),(144660,3,42513,2,1672319419),(144661,3,42514,2,1672319419),(144662,3,42515,2,1672319419),(144663,3,42516,2,1672319419),(144664,3,42517,2,1672319419),(144665,3,42518,2,1672319419),(144666,3,42519,2,1672319419),(144667,3,42520,2,1672319419),(144668,3,42521,2,1672319419),(144669,3,42522,2,1672319419),(144670,3,42523,2,1672319419),(144671,3,42524,2,1672319419),(144672,3,42525,2,1672319419),(144673,3,42526,2,1672319419),(144674,3,42527,2,1672319419),(144675,3,42528,2,1672319419),(144676,3,42529,2,1672319419),(144677,3,42530,2,1672319419),(144678,3,42531,2,1672319419),(144679,3,42532,2,1672319419),(144680,3,42533,2,1672319419),(144681,3,42534,2,1672319419),(144682,3,42535,2,1672319419),(144683,3,42536,2,1672319419),(144684,3,42537,2,1672319419),(144685,3,42538,2,1672319419),(144686,3,42539,2,1672319419),(144687,3,42540,2,1672319419),(144688,3,42541,2,1672319419),(144689,3,42542,2,1672319419),(144690,3,42568,2,1672319419),(144691,3,42569,2,1672319419),(144692,3,42570,2,1672319419),(144693,3,42571,2,1672319419),(144694,3,42572,2,1672319419),(144695,3,42573,2,1672319419),(144696,3,42574,2,1672319419),(144697,3,42575,2,1672319419),(144698,3,42576,2,1672319419),(144699,3,42577,2,1672319419),(144700,3,42578,2,1672319419),(144701,3,42579,2,1672319419),(144702,3,42664,2,1672319419),(144703,3,42665,2,1672319419),(144704,3,42666,2,1672319419),(144705,3,42667,2,1672319419),(144706,3,42668,2,1672319419),(144707,3,42669,2,1672319419),(144708,3,42670,2,1672319419),(144709,3,42671,2,1672319419),(144710,3,42672,2,1672319419),(144711,3,42673,2,1672319419),(144712,3,42674,2,1672319419),(144713,3,42676,2,1672319419),(144714,3,42677,2,1672319419),(144715,3,42738,2,1672319419),(144716,3,42739,2,1672319419),(144717,3,42740,2,1672319419),(144718,3,42792,2,1672319419),(144719,3,42793,2,1672319419),(144720,3,42794,2,1672319419),(144721,3,42795,2,1672319419),(144722,3,42796,2,1672319419),(144723,3,42797,2,1672319419),(144724,3,42798,2,1672319419),(144725,3,42799,2,1672319419),(144726,3,42800,2,1672319419),(144727,3,42801,2,1672319419),(144728,3,42802,2,1672319419),(144729,3,42803,2,1672319419),(144730,3,42804,2,1672319419),(144731,3,42805,2,1672319419),(144732,3,42806,2,1672319419),(144733,3,42807,2,1672319419),(144734,3,42808,2,1672319419),(144735,3,42809,2,1672319419),(144736,3,42810,2,1672319419),(144737,3,42811,2,1672319419),(144738,3,42812,2,1672319419),(144739,3,42813,2,1672319419),(144740,3,42814,2,1672319419),(144741,3,42815,2,1672319419),(144742,3,42816,2,1672319419),(144743,3,42817,2,1672319419),(144744,3,42818,2,1672319419),(144745,3,42819,2,1672319419),(144746,3,42820,2,1672319419),(144747,3,42821,2,1672319419),(144748,3,42822,2,1672319419),(144749,3,42823,2,1672319419),(144750,3,42824,2,1672319419),(144751,3,42825,2,1672319419),(144752,3,42826,2,1672319419),(144753,3,42827,2,1672319419),(144754,3,42828,2,1672319419),(144755,3,42829,2,1672319419),(144756,3,42830,2,1672319419),(144757,3,42831,2,1672319419),(144758,3,42832,2,1672319419),(144759,3,42833,2,1672319419),(144760,3,42877,2,1672319419),(144761,3,42880,2,1672319419),(144762,3,43080,2,1672319419),(144763,3,43857,2,1672319419),(144764,3,43858,2,1672319419),(144765,3,43859,2,1672319419),(144766,3,43875,2,1672319419),(144767,3,44051,2,1672319419),(144768,3,44081,2,1672319419),(144769,3,44359,2,1672319419),(144770,3,44377,2,1672319419),(144771,3,44379,2,1672319419),(144772,3,44450,2,1672319419),(144773,3,44453,2,1672319419),(144774,3,44455,2,1672319419),(144775,3,22996,3,1672319419),(144776,3,22997,3,1672319419),(144777,3,22998,3,1672319419),(144778,3,22999,3,1672319419),(144779,3,23000,3,1672319419),(144780,3,23001,3,1672319419),(144781,3,23002,3,1672319419),(144782,3,23003,3,1672319419),(144783,3,23004,3,1672319419),(144784,3,23005,3,1672319419),(144785,3,23007,3,1672319419),(144786,3,23011,3,1672319419),(144787,3,23012,3,1672319419),(144788,3,23013,3,1672319419),(144789,3,23014,3,1672319419),(144790,3,23015,3,1672319419),(144791,3,23016,3,1672319419),(144792,3,23017,3,1672319419),(144793,3,23018,3,1672319419),(144794,3,23019,3,1672319419),(144795,3,23020,3,1672319419),(144796,3,23021,3,1672319419),(144797,3,23022,3,1672319419),(144798,3,23023,3,1672319419),(144799,3,23652,3,1672319419),(144800,3,23653,3,1672319419),(144801,3,23654,3,1672319419),(144802,3,27967,3,1672319419),(144803,3,27968,3,1672319419),(144804,3,27970,3,1672319419),(144805,3,27971,3,1672319419),(144806,3,27972,3,1672319419),(144807,3,27973,3,1672319419),(144808,3,27975,3,1672319419),(144809,3,27997,3,1672319419),(144810,3,27998,3,1672319419),(144811,3,27999,3,1672319419),(144812,3,28000,3,1672319419),(144813,3,28026,3,1672319419),(144814,3,28027,3,1672319419),(144815,3,28031,3,1672319419),(144816,3,28539,3,1672319419),(144817,3,28540,3,1672319419),(144818,3,28541,3,1672319419),(144819,3,28542,3,1672319419),(144820,3,28543,3,1672319419),(144821,3,28544,3,1672319419),(144822,3,28545,3,1672319419),(144823,3,28546,3,1672319419),(144824,3,28547,3,1672319419),(144825,3,28548,3,1672319419),(144826,3,28549,3,1672319419),(144827,3,28550,3,1672319419),(144828,3,28551,3,1672319419),(144829,3,28552,3,1672319419),(144830,3,28553,3,1672319419),(144831,3,28554,3,1672319419),(144832,3,28555,3,1672319419),(144833,3,28556,3,1672319419),(144834,3,28557,3,1672319419),(144835,3,28558,3,1672319419),(144836,3,28559,3,1672319419),(144837,3,28560,3,1672319419),(144838,3,28561,3,1672319419),(144839,3,28562,3,1672319419),(144840,3,28563,3,1672319419),(144841,3,28564,3,1672319419),(144842,3,28565,3,1672319419),(144843,3,28566,3,1672319419),(144844,3,28567,3,1672319419),(144845,3,28568,3,1672319419),(144846,3,28569,3,1672319419),(144847,3,28570,3,1672319419),(144848,3,28571,3,1672319419),(144849,3,28572,3,1672319419),(144850,3,28573,3,1672319419),(144851,3,28574,3,1672319419),(144852,3,28575,3,1672319419),(144853,3,28576,3,1672319419),(144854,3,28577,3,1672319419),(144855,3,28578,3,1672319419),(144856,3,28579,3,1672319419),(144857,3,28580,3,1672319419),(144858,3,28581,3,1672319419),(144859,3,28582,3,1672319419),(144860,3,28583,3,1672319419),(144861,3,28584,3,1672319419),(144862,3,28585,3,1672319419),(144863,3,28586,3,1672319419),(144864,3,28587,3,1672319419),(144865,3,28588,3,1672319419),(144866,3,28589,3,1672319419),(144867,3,28590,3,1672319419),(144868,3,28591,3,1672319419),(144869,3,28592,3,1672319419),(144870,3,28593,3,1672319419),(144871,3,28594,3,1672319419),(144872,3,28595,3,1672319419),(144873,3,28596,3,1672319419),(144874,3,28597,3,1672319419),(144875,3,28598,3,1672319419),(144876,3,28599,3,1672319419),(144877,3,28600,3,1672319419),(144878,3,28601,3,1672319419),(144879,3,28602,3,1672319419),(144880,3,28603,3,1672319419),(144881,3,28604,3,1672319419),(144882,3,28605,3,1672319419),(144883,3,28606,3,1672319419),(144884,3,28607,3,1672319419),(144885,3,28608,3,1672319419),(144886,3,28609,3,1672319419),(144887,3,28610,3,1672319419),(144888,3,28611,3,1672319419),(144889,3,28612,3,1672319419),(144890,3,28613,3,1672319419),(144891,3,28615,3,1672319419),(144892,3,28616,3,1672319419),(144893,3,29454,3,1672319419),(144894,3,29455,3,1672319419),(144895,3,29456,3,1672319419),(144896,3,29457,3,1672319419),(144897,3,29458,3,1672319419),(144898,3,29459,3,1672319419),(144899,3,29460,3,1672319419),(144900,3,29461,3,1672319419),(144901,3,29462,3,1672319419),(144902,3,29463,3,1672319419),(144903,3,29466,3,1672319419),(144904,3,29467,3,1672319419),(144905,3,29468,3,1672319419),(144906,3,29469,3,1672319419),(144907,3,29470,3,1672319419),(144908,3,29472,3,1672319419),(144909,3,29473,3,1672319419),(144910,3,29474,3,1672319419),(144911,3,29475,3,1672319419),(144912,3,29476,3,1672319419),(144913,3,29477,3,1672319419),(144914,3,29478,3,1672319419),(144915,3,29653,3,1672319419),(144916,3,29654,3,1672319419),(144917,3,29655,3,1672319419),(144918,3,29660,3,1672319419),(144919,3,29661,3,1672319419),(144920,3,29687,3,1672319419),(144921,3,29688,3,1672319419),(144922,3,29691,3,1672319419),(144923,3,29692,3,1672319419),(144924,3,29693,3,1672319419),(144925,3,29694,3,1672319419),(144926,3,29695,3,1672319419),(144927,3,29696,3,1672319419),(144928,3,29697,3,1672319419),(144929,3,29698,3,1672319419),(144930,3,29699,3,1672319419),(144931,3,29700,3,1672319419),(144932,3,29701,3,1672319419),(144933,3,29738,3,1672319419),(144934,3,29739,3,1672319419),(144935,3,29741,3,1672319419),(144936,3,29742,3,1672319419),(144937,3,29743,3,1672319419),(144938,3,29745,3,1672319419),(144939,3,29746,3,1672319419),(144940,3,29747,3,1672319419),(144941,3,29748,3,1672319419),(144942,3,29749,3,1672319419),(144943,3,29750,3,1672319419),(144944,3,29751,3,1672319419),(144945,3,29752,3,1672319419),(144946,3,29753,3,1672319419),(144947,3,29754,3,1672319419),(144948,3,29755,3,1672319419),(144949,3,29756,3,1672319419),(144950,3,29757,3,1672319419),(144951,3,29758,3,1672319419),(144952,3,29759,3,1672319419),(144953,3,29760,3,1672319419),(144954,3,29761,3,1672319419),(144955,3,29762,3,1672319419),(144956,3,29763,3,1672319419),(144957,3,29764,3,1672319419),(144958,3,29765,3,1672319419),(144959,3,29766,3,1672319419),(144960,3,29767,3,1672319419),(144961,3,29768,3,1672319419),(144962,3,29769,3,1672319419),(144963,3,29771,3,1672319419),(144964,3,29772,3,1672319419),(144965,3,29773,3,1672319419),(144966,3,29774,3,1672319419),(144967,3,29775,3,1672319419),(144968,3,29776,3,1672319419),(144969,3,29777,3,1672319419),(144970,3,29779,3,1672319419),(144971,3,29780,3,1672319419),(144972,3,29781,3,1672319419),(144973,3,29782,3,1672319419),(144974,3,29783,3,1672319419),(144975,3,29784,3,1672319419),(144976,3,29821,3,1672319419),(144977,3,29998,3,1672319419),(144978,3,29999,3,1672319419),(144979,3,30000,3,1672319419),(144980,3,30001,3,1672319419),(144981,3,30002,3,1672319419),(144982,3,30003,3,1672319419),(144983,3,30004,3,1672319419),(144984,3,30005,3,1672319419),(144985,3,30006,3,1672319419),(144986,3,30007,3,1672319419),(144987,3,30008,3,1672319419),(144988,3,30009,3,1672319419),(144989,3,30010,3,1672319419),(144990,3,30011,3,1672319419),(144991,3,30012,3,1672319419),(144992,3,30013,3,1672319419),(144993,3,30014,3,1672319419),(144994,3,30015,3,1672319419),(144995,3,30016,3,1672319419),(144996,3,30017,3,1672319419),(144997,3,30018,3,1672319419),(144998,3,30019,3,1672319419),(144999,3,30020,3,1672319419),(145000,3,30021,3,1672319419),(145001,3,30022,3,1672319419),(145002,3,30023,3,1672319419),(145003,3,30024,3,1672319419),(145004,3,30025,3,1672319419),(145005,3,30043,3,1672319419),(145006,3,30044,3,1672319419),(145007,3,30045,3,1672319419),(145008,3,30124,3,1672319419),(145009,3,30125,3,1672319419),(145010,3,30126,3,1672319419),(145011,3,30132,3,1672319419),(145012,3,30133,3,1672319419),(145013,3,30134,3,1672319419),(145014,3,30135,3,1672319419),(145015,3,30136,3,1672319419),(145016,3,30137,3,1672319419),(145017,3,30273,3,1672319419),(145018,3,30274,3,1672319419),(145019,3,30275,3,1672319419),(145020,3,30276,3,1672319419),(145021,3,30277,3,1672319419),(145022,3,30278,3,1672319419),(145023,3,30279,3,1672319419),(145024,3,30280,3,1672319419),(145025,3,30281,3,1672319419),(145026,3,30282,3,1672319419),(145027,3,30283,3,1672319419),(145028,3,30284,3,1672319419),(145029,3,30285,3,1672319419),(145030,3,30286,3,1672319419),(145031,3,30287,3,1672319419),(145032,3,30288,3,1672319419),(145033,3,30289,3,1672319419),(145034,3,30290,3,1672319419),(145035,3,30291,3,1672319419),(145036,3,30292,3,1672319419),(145037,3,30293,3,1672319419),(145038,3,30294,3,1672319419),(145039,3,30295,3,1672319419),(145040,3,30296,3,1672319419),(145041,3,30297,3,1672319419),(145042,3,30298,3,1672319419),(145043,3,30299,3,1672319419),(145044,3,30300,3,1672319419),(145045,3,30301,3,1672319419),(145046,3,30302,3,1672319419),(145047,3,30303,3,1672319419),(145048,3,30304,3,1672319419),(145049,3,30305,3,1672319419),(145050,3,30306,3,1672319419),(145051,3,30307,3,1672319419),(145052,3,30308,3,1672319419),(145053,3,30309,3,1672319419),(145054,3,30310,3,1672319419),(145055,3,30311,3,1672319419),(145056,3,30312,3,1672319419),(145057,3,30313,3,1672319419),(145058,3,30314,3,1672319419),(145059,3,30315,3,1672319419),(145060,3,30316,3,1672319419),(145061,3,30317,3,1672319419),(145062,3,30318,3,1672319419),(145063,3,30319,3,1672319419),(145064,3,30320,3,1672319419),(145065,3,30321,3,1672319419),(145066,3,30322,3,1672319419),(145067,3,30323,3,1672319419),(145068,3,30324,3,1672319419),(145069,3,30325,3,1672319419),(145070,3,30326,3,1672319419),(145071,3,30327,3,1672319419),(145072,3,30328,3,1672319419),(145073,3,30329,3,1672319419),(145074,3,30330,3,1672319419),(145075,3,30331,3,1672319419),(145076,3,30332,3,1672319419),(145077,3,30333,3,1672319419),(145078,3,30334,3,1672319419),(145079,3,30335,3,1672319419),(145080,3,30336,3,1672319419),(145081,3,31052,3,1672319419),(145082,3,31053,3,1672319419),(145083,3,31274,3,1672319419),(145084,3,31275,3,1672319419),(145085,3,31276,3,1672319419),(145086,3,31277,3,1672319419),(145087,3,31279,3,1672319419),(145088,3,31280,3,1672319419),(145089,3,31282,3,1672319419),(145090,3,31283,3,1672319419),(145091,3,31284,3,1672319419),(145092,3,31285,3,1672319419),(145093,3,31286,3,1672319419),(145094,3,31287,3,1672319419),(145095,3,31288,3,1672319419),(145096,3,31289,3,1672319419),(145097,3,31290,3,1672319419),(145098,3,31291,3,1672319419),(145099,3,31292,3,1672319419),(145100,3,31293,3,1672319419),(145101,3,31294,3,1672319419),(145102,3,31295,3,1672319419),(145103,3,31296,3,1672319419),(145104,3,31297,3,1672319419),(145105,3,31298,3,1672319419),(145106,3,31299,3,1672319419),(145107,3,31300,3,1672319419),(145108,3,31301,3,1672319419),(145109,3,31302,3,1672319419),(145110,3,31303,3,1672319419),(145111,3,31304,3,1672319419),(145112,3,31305,3,1672319419),(145113,3,31306,3,1672319419),(145114,3,31307,3,1672319419),(145115,3,31309,3,1672319419),(145116,3,31310,3,1672319419),(145117,3,31311,3,1672319419),(145118,3,31312,3,1672319419),(145119,3,31313,3,1672319419),(145120,3,31314,3,1672319419),(145121,3,31315,3,1672319419),(145122,3,31316,3,1672319419),(145123,3,31317,3,1672319419),(145124,3,31318,3,1672319419),(145125,3,31319,3,1672319419),(145126,3,31320,3,1672319419),(145127,3,31321,3,1672319419),(145128,3,31322,3,1672319419),(145129,3,31323,3,1672319419),(145130,3,31324,3,1672319419),(145131,3,31325,3,1672319419),(145132,3,31326,3,1672319419),(145133,3,31327,3,1672319419),(145134,3,31328,3,1672319419),(145135,3,31329,3,1672319419),(145136,3,31330,3,1672319419),(145137,3,31331,3,1672319419),(145138,3,31332,3,1672319419),(145139,3,31333,3,1672319419),(145140,3,31419,3,1672319419),(145141,3,31420,3,1672319419),(145142,3,31421,3,1672319419),(145143,3,31422,3,1672319419),(145144,3,31427,3,1672319419),(145145,3,31612,3,1672319419),(145146,3,31613,3,1672319419),(145147,3,31614,3,1672319419),(145148,3,31948,3,1672319419),(145149,3,31949,3,1672319419),(145150,3,31950,3,1672319419),(145151,3,31951,3,1672319419),(145152,3,31952,3,1672319419),(145153,3,31953,3,1672319419),(145154,3,31954,3,1672319419),(145155,3,31955,3,1672319419),(145156,3,31956,3,1672319419),(145157,3,31957,3,1672319419),(145158,3,31958,3,1672319419),(145159,3,31959,3,1672319419),(145160,3,31960,3,1672319419),(145161,3,31961,3,1672319419),(145162,3,31962,3,1672319419),(145163,3,31963,3,1672319419),(145164,3,31964,3,1672319419),(145165,3,31965,3,1672319419),(145166,3,31966,3,1672319419),(145167,3,31967,3,1672319419),(145168,3,31968,3,1672319419),(145169,3,31969,3,1672319419),(145170,3,31970,3,1672319419),(145171,3,31971,3,1672319419),(145172,3,31972,3,1672319419),(145173,3,31973,3,1672319419),(145174,3,31974,3,1672319419),(145175,3,32002,3,1672319419),(145176,3,32239,3,1672319419),(145177,3,32240,3,1672319419),(145178,3,32241,3,1672319419),(145179,3,32242,3,1672319419),(145180,3,32243,3,1672319419),(145181,3,32244,3,1672319419),(145182,3,32245,3,1672319419),(145183,3,32246,3,1672319419),(145184,3,32247,3,1672319419),(145185,3,32248,3,1672319419),(145186,3,32249,3,1672319419),(145187,3,32250,3,1672319419),(145188,3,32251,3,1672319419),(145189,3,32252,3,1672319419),(145190,3,32253,3,1672319419),(145191,3,32254,3,1672319419),(145192,3,32255,3,1672319419),(145193,3,32256,3,1672319419),(145194,3,32257,3,1672319419),(145195,3,32258,3,1672319419),(145196,3,32259,3,1672319419),(145197,3,32260,3,1672319419),(145198,3,32261,3,1672319419),(145199,3,32262,3,1672319419),(145200,3,32263,3,1672319419),(145201,3,32264,3,1672319419),(145202,3,32265,3,1672319419),(145203,3,32266,3,1672319419),(145204,3,32267,3,1672319419),(145205,3,32268,3,1672319419),(145206,3,32269,3,1672319419),(145207,3,32270,3,1672319419),(145208,3,32271,3,1672319419),(145209,3,32272,3,1672319419),(145210,3,32273,3,1672319419),(145211,3,32274,3,1672319419),(145212,3,32275,3,1672319419),(145213,3,32276,3,1672319419),(145214,3,32277,3,1672319419),(145215,3,32278,3,1672319419),(145216,3,32279,3,1672319419),(145217,3,32280,3,1672319419),(145218,3,32281,3,1672319419),(145219,3,32282,3,1672319419),(145220,3,32283,3,1672319419),(145221,3,32284,3,1672319419),(145222,3,32285,3,1672319419),(145223,3,32286,3,1672319419),(145224,3,32287,3,1672319419),(145225,3,32288,3,1672319419),(145226,3,32289,3,1672319419),(145227,3,32290,3,1672319419),(145228,3,32291,3,1672319419),(145229,3,32292,3,1672319419),(145230,3,32890,3,1672319419),(145231,3,32891,3,1672319419),(145232,3,32892,3,1672319419),(145233,3,32893,3,1672319419),(145234,3,32894,3,1672319419),(145235,3,32895,3,1672319419),(145236,3,32896,3,1672319419),(145237,3,32897,3,1672319419),(145238,3,32898,3,1672319419),(145239,3,32899,3,1672319419),(145240,3,32900,3,1672319419),(145241,3,32901,3,1672319419),(145242,3,32902,3,1672319419),(145243,3,32903,3,1672319419),(145244,3,32904,3,1672319419),(145245,3,32905,3,1672319419),(145246,3,32906,3,1672319419),(145247,3,32907,3,1672319419),(145248,3,32908,3,1672319419),(145249,3,32909,3,1672319419),(145250,3,32910,3,1672319419),(145251,3,32911,3,1672319419),(145252,3,32912,3,1672319419),(145253,3,32913,3,1672319419),(145254,3,32915,3,1672319419),(145255,3,32916,3,1672319419),(145256,3,32917,3,1672319419),(145257,3,32918,3,1672319419),(145258,3,32919,3,1672319419),(145259,3,32920,3,1672319419),(145260,3,32921,3,1672319419),(145261,3,32922,3,1672319419),(145262,3,32923,3,1672319419),(145263,3,32924,3,1672319419),(145264,3,32925,3,1672319419),(145265,3,32926,3,1672319419),(145266,3,32927,3,1672319419),(145267,3,32928,3,1672319419),(145268,3,32929,3,1672319419),(145269,3,32930,3,1672319419),(145270,3,32951,3,1672319419),(145271,3,32952,3,1672319419),(145272,3,32953,3,1672319419),(145273,3,33012,3,1672319419),(145274,3,33013,3,1672319419),(145275,3,33014,3,1672319419),(145276,3,33015,3,1672319419),(145277,3,33016,3,1672319419),(145278,3,33017,3,1672319419),(145279,3,33172,3,1672319419),(145280,3,33173,3,1672319419),(145281,3,33174,3,1672319419),(145282,3,33175,3,1672319419),(145283,3,33176,3,1672319419),(145284,3,33638,3,1672319419),(145285,3,33639,3,1672319419),(145286,3,33640,3,1672319419),(145287,3,33641,3,1672319419),(145288,3,33642,3,1672319419),(145289,3,33643,3,1672319419),(145290,3,33644,3,1672319419),(145291,3,33645,3,1672319419),(145292,3,33646,3,1672319419),(145293,3,33647,3,1672319419),(145294,3,33648,3,1672319419),(145295,3,33649,3,1672319419),(145296,3,34314,3,1672319419),(145297,3,34315,3,1672319419),(145298,3,34336,3,1672319419),(145299,3,34337,3,1672319419),(145300,3,34338,3,1672319419),(145301,3,34339,3,1672319419),(145302,3,34340,3,1672319419),(145303,3,34341,3,1672319419),(145304,3,34367,3,1672319419),(145305,3,34368,3,1672319419),(145306,3,34369,3,1672319419),(145307,3,34370,3,1672319419),(145308,3,34371,3,1672319419),(145309,3,34372,3,1672319419),(145310,3,34373,3,1672319419),(145311,3,34374,3,1672319419),(145312,3,34375,3,1672319419),(145313,3,34376,3,1672319419),(145314,3,34377,3,1672319419),(145315,3,34378,3,1672319419),(145316,3,34379,3,1672319419),(145317,3,34380,3,1672319419),(145318,3,34381,3,1672319419),(145319,3,34382,3,1672319419),(145320,3,34383,3,1672319419),(145321,3,34384,3,1672319419),(145322,3,34385,3,1672319419),(145323,3,34386,3,1672319419),(145324,3,34387,3,1672319419),(145325,3,34388,3,1672319419),(145326,3,34389,3,1672319419),(145327,3,34390,3,1672319419),(145328,3,34391,3,1672319419),(145329,3,34392,3,1672319419),(145330,3,34393,3,1672319419),(145331,3,34394,3,1672319419),(145332,3,34395,3,1672319419),(145333,3,34396,3,1672319419),(145334,3,34397,3,1672319419),(145335,3,34398,3,1672319419),(145336,3,34412,3,1672319419),(145337,3,34413,3,1672319419),(145338,3,34414,3,1672319419),(145339,3,34415,3,1672319419),(145340,3,34416,3,1672319419),(145341,3,34417,3,1672319419),(145342,3,34418,3,1672319419),(145343,3,34419,3,1672319419),(145344,3,34420,3,1672319419),(145345,3,34421,3,1672319419),(145346,3,34422,3,1672319419),(145347,3,34423,3,1672319419),(145348,3,34424,3,1672319419),(145349,3,34425,3,1672319419),(145350,3,34426,3,1672319419),(145351,3,34427,3,1672319419),(145352,3,34428,3,1672319419),(145353,3,34429,3,1672319419),(145354,3,34430,3,1672319419),(145355,3,34431,3,1672319419),(145356,3,34432,3,1672319419),(145357,3,34433,3,1672319419),(145358,3,34434,3,1672319419),(145359,3,34435,3,1672319419),(145360,3,34436,3,1672319419),(145361,3,34437,3,1672319419),(145362,3,34438,3,1672319419),(145363,3,34439,3,1672319419),(145364,3,34937,3,1672319419),(145365,3,34938,3,1672319419),(145366,3,34939,3,1672319419),(145367,3,34940,3,1672319419),(145368,3,34941,3,1672319419),(145369,3,34949,3,1672319419),(145370,3,34950,3,1672319419),(145371,3,34951,3,1672319419),(145372,3,34952,3,1672319419),(145373,3,34953,3,1672319419),(145374,3,34954,3,1672319419),(145375,3,34955,3,1672319419),(145376,3,34956,3,1672319419),(145377,3,34957,3,1672319419),(145378,3,34958,3,1672319419),(145379,3,34959,3,1672319419),(145380,3,34960,3,1672319419),(145381,3,34961,3,1672319419),(145382,3,34962,3,1672319419),(145383,3,34963,3,1672319419),(145384,3,34964,3,1672319419),(145385,3,34965,3,1672319419),(145386,3,35064,3,1672319419),(145387,3,35065,3,1672319419),(145388,3,35066,3,1672319419),(145389,3,35067,3,1672319419),(145390,3,35068,3,1672319419),(145391,3,35069,3,1672319419),(145392,3,35070,3,1672319419),(145393,3,35071,3,1672319419),(145394,3,35072,3,1672319419),(145395,3,35073,3,1672319419),(145396,3,35074,3,1672319419),(145397,3,35075,3,1672319419),(145398,3,35076,3,1672319419),(145399,3,35278,3,1672319419),(145400,3,35279,3,1672319419),(145401,3,36772,3,1672319419),(145402,3,36773,3,1672319419),(145403,3,36774,3,1672319419),(145404,3,36775,3,1672319419),(145405,3,36776,3,1672319419),(145406,3,36777,3,1672319419),(145407,3,36778,3,1672319419),(145408,3,36779,3,1672319419),(145409,3,36780,3,1672319419),(145410,3,39742,3,1672319419),(145411,3,39743,3,1672319419),(145412,3,39744,3,1672319419),(145413,3,39745,3,1672319419),(145414,3,39746,3,1672319419),(145415,3,39747,3,1672319419),(145416,3,39748,3,1672319419),(145417,3,39821,3,1672319419),(145418,3,39824,3,1672319419),(145419,3,39825,3,1672319419),(145420,3,40185,3,1672319419),(145421,3,40186,3,1672319419),(145422,3,40187,3,1672319419),(145423,3,40188,3,1672319419),(145424,3,40189,3,1672319419),(145425,3,42110,3,1672319419),(145426,3,42111,3,1672319419),(145427,3,42112,3,1672319419),(145428,3,42113,3,1672319419),(145429,3,42114,3,1672319419),(145430,3,42115,3,1672319419),(145431,3,42116,3,1672319419),(145432,3,42117,3,1672319419),(145433,3,42118,3,1672319419),(145434,3,42119,3,1672319419),(145435,3,42120,3,1672319419),(145436,3,42133,3,1672319419),(145437,3,42134,3,1672319419),(145438,3,42135,3,1672319419),(145439,3,42136,3,1672319419),(145440,3,42137,3,1672319419),(145441,3,42138,3,1672319419),(145442,3,42139,3,1672319419),(145443,3,42140,3,1672319419),(145444,3,42141,3,1672319419),(145445,3,42142,3,1672319419),(145446,3,42143,3,1672319419),(145447,3,42154,3,1672319419),(145448,3,42155,3,1672319419),(145449,3,42156,3,1672319419),(145450,3,42157,3,1672319419),(145451,3,42158,3,1672319419),(145452,3,42159,3,1672319419),(145453,3,42160,3,1672319419),(145454,3,42161,3,1672319419),(145455,3,42162,3,1672319419),(145456,3,42163,3,1672319419),(145457,3,42164,3,1672319419),(145458,3,42451,3,1672319419),(145459,3,42452,3,1672319419),(145460,3,42453,3,1672319419),(145461,3,42454,3,1672319419),(145462,3,42455,3,1672319419),(145463,3,42456,3,1672319419),(145464,3,42457,3,1672319419),(145465,3,42458,3,1672319419),(145466,3,42459,3,1672319419),(145467,3,42460,3,1672319419),(145468,3,42461,3,1672319419),(145469,3,42462,3,1672319419),(145470,3,42463,3,1672319419),(145471,3,42464,3,1672319419),(145472,3,42465,3,1672319419),(145473,3,42466,3,1672319419),(145474,3,42467,3,1672319419),(145475,3,42468,3,1672319419),(145476,3,42469,3,1672319419),(145477,3,42470,3,1672319419),(145478,3,42471,3,1672319419),(145479,3,42472,3,1672319419),(145480,3,42473,3,1672319419),(145481,3,42474,3,1672319419),(145482,3,42475,3,1672319419),(145483,3,42476,3,1672319419),(145484,3,42477,3,1672319419),(145485,3,42478,3,1672319419),(145486,3,42479,3,1672319419),(145487,3,42480,3,1672319419),(145488,3,42481,3,1672319419),(145489,3,42482,3,1672319419),(145490,3,42483,3,1672319419),(145491,3,42484,3,1672319419),(145492,3,42485,3,1672319419),(145493,3,42486,3,1672319419),(145494,3,42512,3,1672319419),(145495,3,42513,3,1672319419),(145496,3,42514,3,1672319419),(145497,3,42515,3,1672319419),(145498,3,42516,3,1672319419),(145499,3,42517,3,1672319419),(145500,3,42518,3,1672319419),(145501,3,42519,3,1672319419),(145502,3,42520,3,1672319419),(145503,3,42521,3,1672319419),(145504,3,42522,3,1672319419),(145505,3,42523,3,1672319419),(145506,3,42524,3,1672319419),(145507,3,42525,3,1672319419),(145508,3,42526,3,1672319419),(145509,3,42527,3,1672319419),(145510,3,42528,3,1672319419),(145511,3,42529,3,1672319419),(145512,3,42530,3,1672319419),(145513,3,42531,3,1672319419),(145514,3,42532,3,1672319419),(145515,3,42533,3,1672319419),(145516,3,42534,3,1672319419),(145517,3,42535,3,1672319419),(145518,3,42536,3,1672319419),(145519,3,42537,3,1672319419),(145520,3,42538,3,1672319419),(145521,3,42539,3,1672319419),(145522,3,42540,3,1672319419),(145523,3,42541,3,1672319419),(145524,3,42542,3,1672319419),(145525,3,42568,3,1672319419),(145526,3,42569,3,1672319419),(145527,3,42570,3,1672319419),(145528,3,42571,3,1672319419),(145529,3,42572,3,1672319419),(145530,3,42573,3,1672319419),(145531,3,42574,3,1672319419),(145532,3,42575,3,1672319419),(145533,3,42576,3,1672319419),(145534,3,42577,3,1672319419),(145535,3,42578,3,1672319419),(145536,3,42579,3,1672319419),(145537,3,42664,3,1672319419),(145538,3,42665,3,1672319419),(145539,3,42666,3,1672319419),(145540,3,42667,3,1672319419),(145541,3,42668,3,1672319419),(145542,3,42669,3,1672319419),(145543,3,42670,3,1672319419),(145544,3,42671,3,1672319419),(145545,3,42672,3,1672319419),(145546,3,42673,3,1672319419),(145547,3,42674,3,1672319419),(145548,3,42676,3,1672319419),(145549,3,42677,3,1672319419),(145550,3,42738,3,1672319419),(145551,3,42739,3,1672319419),(145552,3,42740,3,1672319419),(145553,3,42792,3,1672319419),(145554,3,42793,3,1672319419),(145555,3,42794,3,1672319419),(145556,3,42795,3,1672319419),(145557,3,42796,3,1672319419),(145558,3,42797,3,1672319419),(145559,3,42798,3,1672319419),(145560,3,42799,3,1672319419),(145561,3,42800,3,1672319419),(145562,3,42801,3,1672319419),(145563,3,42802,3,1672319419),(145564,3,42803,3,1672319419),(145565,3,42804,3,1672319419),(145566,3,42805,3,1672319419),(145567,3,42806,3,1672319419),(145568,3,42807,3,1672319419),(145569,3,42808,3,1672319419),(145570,3,42809,3,1672319419),(145571,3,42810,3,1672319419),(145572,3,42811,3,1672319419),(145573,3,42812,3,1672319419),(145574,3,42813,3,1672319419),(145575,3,42814,3,1672319419),(145576,3,42815,3,1672319419),(145577,3,42816,3,1672319419),(145578,3,42817,3,1672319419),(145579,3,42818,3,1672319419),(145580,3,42819,3,1672319419),(145581,3,42820,3,1672319419),(145582,3,42821,3,1672319419),(145583,3,42822,3,1672319419),(145584,3,42823,3,1672319419),(145585,3,42824,3,1672319419),(145586,3,42825,3,1672319419),(145587,3,42826,3,1672319419),(145588,3,42827,3,1672319419),(145589,3,42828,3,1672319419),(145590,3,42829,3,1672319419),(145591,3,42830,3,1672319419),(145592,3,42831,3,1672319419),(145593,3,42832,3,1672319419),(145594,3,42833,3,1672319419),(145595,3,42877,3,1672319419),(145596,3,42880,3,1672319419),(145597,3,43080,3,1672319419),(145598,3,43857,3,1672319419),(145599,3,43858,3,1672319419),(145600,3,43859,3,1672319419),(145601,3,43875,3,1672319419),(145602,3,44051,3,1672319419),(145603,3,44081,3,1672319419),(145604,3,44359,3,1672319419),(145605,3,44377,3,1672319419),(145606,3,44379,3,1672319419),(145607,3,44450,3,1672319419),(145608,3,44453,3,1672319419),(145609,3,44455,3,1672319419),(145610,1,10078,3,1672319419),(145611,1,10081,3,1672319419),(145612,1,10101,3,1672319419),(145613,1,10102,3,1672319419),(145614,1,10103,3,1672319419),(145615,1,10173,3,1672319419),(145616,1,10174,3,1672319419),(145617,1,10175,3,1672319419),(145618,1,10235,3,1672319419),(145619,1,10236,3,1672319419),(145620,1,10237,3,1672319419),(145621,1,10249,3,1672319419),(145622,1,10259,3,1672319419),(145623,1,10261,3,1672319419),(145624,1,10262,3,1672319419),(145625,1,10286,3,1672319419),(145626,1,10287,3,1672319419),(145627,1,10288,3,1672319419),(145628,1,10289,3,1672319419),(145629,1,10290,3,1672319419),(145630,1,10291,3,1672319419),(145631,1,10300,3,1672319419),(145632,1,10301,3,1672319419),(145633,1,10302,3,1672319419),(145634,1,10303,3,1672319419),(145635,1,10310,3,1672319419),(145636,1,10314,3,1672319419),(145637,1,10329,3,1672319419),(145638,1,10344,3,1672319419),(145639,1,10345,3,1672319419),(145640,1,10346,3,1672319419),(145641,1,10347,3,1672319419),(145642,1,10348,3,1672319419),(145643,1,10349,3,1672319419),(145644,1,10351,3,1672319419),(145645,1,10355,3,1672319419),(145646,1,10366,3,1672319419),(145647,1,10383,3,1672319419),(145648,1,10384,3,1672319419),(145649,1,10397,3,1672319419),(145650,1,10398,3,1672319419),(145651,1,10399,3,1672319419),(145652,1,10410,3,1672319419),(145653,1,10411,3,1672319419),(145654,1,10413,3,1672319419),(145655,1,10416,3,1672319419),(145656,1,10447,3,1672319419),(145657,1,10503,3,1672319419),(145658,1,10517,3,1672319419),(145659,1,10518,3,1672319419),(145660,3,32025,2,1672319423),(145661,3,33000,2,1672319423),(145662,3,33001,2,1672319423),(145663,3,33002,2,1672319423),(145664,3,33003,2,1672319423),(145665,3,33004,2,1672319423),(145666,3,33005,2,1672319423),(145667,3,33006,2,1672319423),(145668,3,33007,2,1672319423),(145669,3,33008,2,1672319423),(145670,3,33009,2,1672319423),(145671,3,33010,2,1672319423),(145672,3,33011,2,1672319423),(145673,3,35546,2,1672319423),(145674,3,35547,2,1672319423),(145675,3,35548,2,1672319423),(145676,3,35549,2,1672319423),(145677,3,35550,2,1672319423),(145678,3,35551,2,1672319423),(145679,3,35552,2,1672319423),(145680,3,35553,2,1672319423),(145681,3,35554,2,1672319423),(145682,3,35555,2,1672319423),(145683,3,35556,2,1672319423),(145684,3,35557,2,1672319423),(145685,3,35558,2,1672319423),(145686,3,35559,2,1672319423),(145687,3,35560,2,1672319423),(145688,3,35561,2,1672319423),(145689,3,35562,2,1672319423),(145690,3,35563,2,1672319423),(145691,3,35580,2,1672319423),(145692,3,35581,2,1672319423),(145693,3,35582,2,1672319423),(145694,3,35583,2,1672319423),(145695,3,35584,2,1672319423),(145696,3,35585,2,1672319423),(145697,3,35586,2,1672319423),(145698,3,35587,2,1672319423),(145699,3,35588,2,1672319423),(145700,3,35589,2,1672319423),(145701,3,35590,2,1672319423),(145702,3,35591,2,1672319423),(145703,3,35592,2,1672319423),(145704,3,35593,2,1672319423),(145705,3,35594,2,1672319423),(145706,3,35595,2,1672319423),(145707,3,35596,2,1672319423),(145708,3,35597,2,1672319423),(145709,3,35598,2,1672319423),(145710,3,35599,2,1672319423),(145711,3,35600,2,1672319423),(145712,3,35601,2,1672319423),(145713,3,35602,2,1672319423),(145714,3,35603,2,1672319423),(145715,3,35604,2,1672319423),(145716,3,35605,2,1672319423),(145717,3,35606,2,1672319423),(145718,3,35607,2,1672319423),(145719,3,35622,2,1672319423),(145720,3,35623,2,1672319423),(145721,3,35624,2,1672319423),(145722,3,35625,2,1672319423),(145723,3,35626,2,1672319423),(145724,3,35627,2,1672319423),(145725,3,35628,2,1672319423),(145726,3,35629,2,1672319423),(145727,3,35630,2,1672319423),(145728,3,35631,2,1672319423),(145729,3,35632,2,1672319423),(145730,3,35633,2,1672319423),(145731,3,35634,2,1672319423),(145732,3,35635,2,1672319423),(145733,3,35636,2,1672319423),(145734,3,35637,2,1672319423),(145735,3,35638,2,1672319423),(145736,3,35639,2,1672319423),(145737,3,35640,2,1672319423),(145738,3,35641,2,1672319423),(145739,3,35658,2,1672319423),(145740,3,35659,2,1672319423),(145741,3,35660,2,1672319423),(145742,3,35661,2,1672319423),(145743,3,35662,2,1672319423),(145744,3,35663,2,1672319423),(145745,3,35664,2,1672319423),(145746,3,35665,2,1672319423),(145747,3,35666,2,1672319423),(145748,3,35667,2,1672319423),(145749,3,35668,2,1672319423),(145750,3,35669,2,1672319423),(145751,3,35670,2,1672319423),(145752,3,35671,2,1672319423),(145753,3,35672,2,1672319423),(145754,3,35673,2,1672319423),(145755,3,35674,2,1672319423),(145756,3,35675,2,1672319423),(145757,3,35676,2,1672319423),(145758,3,35677,2,1672319423),(145759,3,35678,2,1672319423),(145760,3,35679,2,1672319423),(145761,3,35680,2,1672319423),(145762,3,35681,2,1672319423),(145763,3,35682,2,1672319423),(145764,3,35683,2,1672319423),(145765,3,35684,2,1672319423),(145766,3,35685,2,1672319423),(145767,3,35686,2,1672319423),(145768,3,35687,2,1672319423),(145769,3,35688,2,1672319423),(145770,3,35689,2,1672319423),(145771,3,35690,2,1672319423),(145772,3,35691,2,1672319423),(145773,3,35692,2,1672319423),(145774,3,35693,2,1672319423),(145775,3,35694,2,1672319423),(145776,3,35695,2,1672319423),(145777,3,35696,2,1672319423),(145778,3,35697,2,1672319423),(145779,3,35698,2,1672319423),(145780,3,35699,2,1672319423),(145781,3,35700,2,1672319423),(145782,3,35701,2,1672319423),(145783,3,35702,2,1672319423),(145784,3,35703,2,1672319423),(145785,3,35704,2,1672319423),(145786,3,35705,2,1672319423),(145787,3,35706,2,1672319423),(145788,3,35707,2,1672319423),(145789,3,35708,2,1672319423),(145790,3,35725,2,1672319423),(145791,3,35726,2,1672319423),(145792,3,35727,2,1672319423),(145793,3,35728,2,1672319423),(145794,3,35729,2,1672319423),(145795,3,35730,2,1672319423),(145796,3,35731,2,1672319423),(145797,3,35732,2,1672319423),(145798,3,35733,2,1672319423),(145799,3,35734,2,1672319423),(145800,3,35735,2,1672319423),(145801,3,35736,2,1672319423),(145802,3,35737,2,1672319423),(145803,3,35738,2,1672319423),(145804,3,35739,2,1672319423),(145805,3,35740,2,1672319423),(145806,3,35741,2,1672319423),(145807,3,35742,2,1672319423),(145808,3,35743,2,1672319423),(145809,3,35744,2,1672319423),(145810,3,35745,2,1672319423),(145811,3,35746,2,1672319423),(145812,3,35747,2,1672319423),(145813,3,35748,2,1672319423),(145814,3,35749,2,1672319423),(145815,3,35750,2,1672319423),(145816,3,35751,2,1672319423),(145817,3,35752,2,1672319423),(145818,3,35753,2,1672319423),(145819,3,35754,2,1672319423),(145820,3,35755,2,1672319423),(145821,3,35756,2,1672319423),(145822,3,35757,2,1672319423),(145823,3,35758,2,1672319423),(145824,3,35759,2,1672319423),(145825,3,35760,2,1672319423),(145826,3,35761,2,1672319423),(145827,3,35762,2,1672319423),(145828,3,35763,2,1672319423),(145829,3,35764,2,1672319423),(145830,3,35765,2,1672319423),(145831,3,35766,2,1672319423),(145832,3,35767,2,1672319423),(145833,3,35768,2,1672319423),(145834,3,35769,2,1672319423),(145835,3,35770,2,1672319423),(145836,3,35771,2,1672319423),(145837,3,35772,2,1672319423),(145838,3,35773,2,1672319423),(145839,3,35774,2,1672319423),(145840,3,35775,2,1672319423),(145841,3,35791,2,1672319423),(145842,3,35792,2,1672319423),(145843,3,35793,2,1672319423),(145844,3,35794,2,1672319423),(145845,3,35795,2,1672319423),(145846,3,35796,2,1672319423),(145847,3,35797,2,1672319423),(145848,3,35798,2,1672319423),(145849,3,35799,2,1672319423),(145850,3,35800,2,1672319423),(145851,3,35801,2,1672319423),(145852,3,35802,2,1672319423),(145853,3,35803,2,1672319423),(145854,3,35804,2,1672319423),(145855,3,35805,2,1672319423),(145856,3,35806,2,1672319423),(145857,3,35807,2,1672319423),(145858,3,35808,2,1672319423),(145859,3,35809,2,1672319423),(145860,3,35823,2,1672319423),(145861,3,35824,2,1672319423),(145862,3,35825,2,1672319423),(145863,3,35826,2,1672319423),(145864,3,35827,2,1672319423),(145865,3,35828,2,1672319423),(145866,3,35829,2,1672319423),(145867,3,35830,2,1672319423),(145868,3,35831,2,1672319423),(145869,3,35832,2,1672319423),(145870,3,35833,2,1672319423),(145871,3,35834,2,1672319423),(145872,3,35835,2,1672319423),(145873,3,35836,2,1672319423),(145874,3,35837,2,1672319423),(145875,3,35838,2,1672319423),(145876,3,35839,2,1672319423),(145877,3,35840,2,1672319423),(145878,3,35841,2,1672319423),(145879,3,35842,2,1672319423),(145880,3,35843,2,1672319423),(145881,3,35844,2,1672319423),(145882,3,35845,2,1672319423),(145883,3,35846,2,1672319423),(145884,3,35847,2,1672319423),(145885,3,35864,2,1672319423),(145886,3,35865,2,1672319423),(145887,3,35866,2,1672319423),(145888,3,35867,2,1672319423),(145889,3,35868,2,1672319423),(145890,3,35869,2,1672319423),(145891,3,35870,2,1672319423),(145892,3,35871,2,1672319423),(145893,3,35872,2,1672319423),(145894,3,35873,2,1672319423),(145895,3,35874,2,1672319423),(145896,3,35875,2,1672319423),(145897,3,35876,2,1672319423),(145898,3,35877,2,1672319423),(145899,3,35878,2,1672319423),(145900,3,35879,2,1672319423),(145901,3,35880,2,1672319423),(145902,3,35881,2,1672319423),(145903,3,35882,2,1672319423),(145904,3,35883,2,1672319423),(145905,3,35884,2,1672319423),(145906,3,35885,2,1672319423),(145907,3,35886,2,1672319423),(145908,3,35887,2,1672319423),(145909,3,35888,2,1672319423),(145910,3,35889,2,1672319423),(145911,3,35890,2,1672319423),(145912,3,35891,2,1672319423),(145913,3,35908,2,1672319423),(145914,3,35909,2,1672319423),(145915,3,35910,2,1672319423),(145916,3,35911,2,1672319423),(145917,3,35912,2,1672319423),(145918,3,35913,2,1672319423),(145919,3,35914,2,1672319423),(145920,3,35915,2,1672319423),(145921,3,35916,2,1672319423),(145922,3,35917,2,1672319423),(145923,3,35918,2,1672319423),(145924,3,35919,2,1672319423),(145925,3,35920,2,1672319423),(145926,3,35921,2,1672319423),(145927,3,35922,2,1672319423),(145928,3,35923,2,1672319423),(145929,3,35924,2,1672319423),(145930,3,35925,2,1672319423),(145931,3,35926,2,1672319423),(145932,3,35927,2,1672319423),(145933,3,35928,2,1672319423),(145934,3,35929,2,1672319423),(145935,3,35930,2,1672319423),(145936,3,35931,2,1672319423),(145937,3,35932,2,1672319423),(145938,3,35933,2,1672319423),(145939,3,35934,2,1672319423),(145940,3,35935,2,1672319423),(145941,3,35952,2,1672319423),(145942,3,35953,2,1672319423),(145943,3,35954,2,1672319423),(145944,3,35955,2,1672319423),(145945,3,35956,2,1672319423),(145946,3,35957,2,1672319423),(145947,3,35958,2,1672319423),(145948,3,35959,2,1672319423),(145949,3,35960,2,1672319423),(145950,3,35961,2,1672319423),(145951,3,35962,2,1672319423),(145952,3,35963,2,1672319423),(145953,3,35964,2,1672319423),(145954,3,35965,2,1672319423),(145955,3,35966,2,1672319423),(145956,3,35967,2,1672319423),(145957,3,35968,2,1672319423),(145958,3,35969,2,1672319423),(145959,3,35970,2,1672319423),(145960,3,35971,2,1672319423),(145961,3,35972,2,1672319423),(145962,3,35973,2,1672319423),(145963,3,35974,2,1672319423),(145964,3,35975,2,1672319423),(145965,3,35976,2,1672319423),(145966,3,35977,2,1672319423),(145967,3,35978,2,1672319423),(145968,3,35979,2,1672319423),(145969,3,35996,2,1672319423),(145970,3,35997,2,1672319423),(145971,3,35998,2,1672319423),(145972,3,35999,2,1672319423),(145973,3,36000,2,1672319423),(145974,3,36001,2,1672319423),(145975,3,36002,2,1672319423),(145976,3,36003,2,1672319423),(145977,3,36004,2,1672319423),(145978,3,36005,2,1672319423),(145979,3,36006,2,1672319423),(145980,3,36007,2,1672319423),(145981,3,36008,2,1672319423),(145982,3,36009,2,1672319423),(145983,3,36010,2,1672319423),(145984,3,36011,2,1672319423),(145985,3,36012,2,1672319423),(145986,3,36013,2,1672319423),(145987,3,36014,2,1672319423),(145988,3,36015,2,1672319423),(145989,3,36016,2,1672319423),(145990,3,36017,2,1672319423),(145991,3,36018,2,1672319423),(145992,3,36019,2,1672319423),(145993,3,36020,2,1672319423),(145994,3,36021,2,1672319423),(145995,3,36022,2,1672319423),(145996,3,36023,2,1672319423),(145997,3,36041,2,1672319423),(145998,3,36042,2,1672319423),(145999,3,36043,2,1672319423),(146000,3,36044,2,1672319423),(146001,3,36045,2,1672319423),(146002,3,36046,2,1672319423),(146003,3,36047,2,1672319423),(146004,3,36048,2,1672319423),(146005,3,36049,2,1672319423),(146006,3,36050,2,1672319423),(146007,3,36051,2,1672319423),(146008,3,36052,2,1672319423),(146009,3,36053,2,1672319423),(146010,3,36054,2,1672319423),(146011,3,36055,2,1672319423),(146012,3,36056,2,1672319423),(146013,3,36057,2,1672319423),(146014,3,36058,2,1672319423),(146015,3,36059,2,1672319423),(146016,3,36060,2,1672319423),(146017,3,36061,2,1672319423),(146018,3,36062,2,1672319423),(146019,3,36063,2,1672319423),(146020,3,36064,2,1672319423),(146021,3,36065,2,1672319423),(146022,3,36066,2,1672319423),(146023,3,36067,2,1672319423),(146024,3,36068,2,1672319423),(146025,3,36086,2,1672319423),(146026,3,36087,2,1672319423),(146027,3,36088,2,1672319423),(146028,3,36089,2,1672319423),(146029,3,36090,2,1672319423),(146030,3,36091,2,1672319423),(146031,3,36092,2,1672319423),(146032,3,36093,2,1672319423),(146033,3,36094,2,1672319423),(146034,3,36095,2,1672319423),(146035,3,36096,2,1672319423),(146036,3,36097,2,1672319423),(146037,3,36098,2,1672319423),(146038,3,36099,2,1672319423),(146039,3,36100,2,1672319423),(146040,3,36101,2,1672319423),(146041,3,36102,2,1672319423),(146042,3,36103,2,1672319423),(146043,3,36104,2,1672319423),(146044,3,36105,2,1672319423),(146045,3,36106,2,1672319423),(146046,3,36107,2,1672319423),(146047,3,36108,2,1672319423),(146048,3,36109,2,1672319423),(146049,3,36110,2,1672319423),(146050,3,36111,2,1672319423),(146051,3,36112,2,1672319423),(146052,3,36113,2,1672319423),(146053,3,36131,2,1672319423),(146054,3,36132,2,1672319423),(146055,3,36133,2,1672319423),(146056,3,36134,2,1672319423),(146057,3,36135,2,1672319423),(146058,3,36136,2,1672319423),(146059,3,36137,2,1672319423),(146060,3,36138,2,1672319423),(146061,3,36139,2,1672319423),(146062,3,36140,2,1672319423),(146063,3,36141,2,1672319423),(146064,3,36142,2,1672319423),(146065,3,36143,2,1672319423),(146066,3,36144,2,1672319423),(146067,3,36145,2,1672319423),(146068,3,36146,2,1672319423),(146069,3,36147,2,1672319423),(146070,3,36148,2,1672319423),(146071,3,36149,2,1672319423),(146072,3,36150,2,1672319423),(146073,3,36151,2,1672319423),(146074,3,36152,2,1672319423),(146075,3,36153,2,1672319423),(146076,3,36154,2,1672319423),(146077,3,36155,2,1672319423),(146078,3,36156,2,1672319423),(146079,3,36157,2,1672319423),(146080,3,36158,2,1672319423),(146081,3,36159,2,1672319423),(146082,3,39808,2,1672319423),(146083,3,39809,2,1672319423),(146084,3,39810,2,1672319423),(146085,3,39811,2,1672319423),(146086,3,44059,2,1672319423),(146087,3,44060,2,1672319423),(146088,3,44061,2,1672319423),(146089,3,44062,2,1672319423),(146090,3,44063,2,1672319423),(146091,3,44064,2,1672319423),(146092,3,44065,2,1672319423),(146093,3,44066,2,1672319423),(146094,3,44067,2,1672319423),(146095,3,44068,2,1672319423),(146096,3,44069,2,1672319423),(146097,3,32025,3,1672319423),(146098,3,33000,3,1672319423),(146099,3,33001,3,1672319423),(146100,3,33002,3,1672319423),(146101,3,33003,3,1672319423),(146102,3,33004,3,1672319423),(146103,3,33005,3,1672319423),(146104,3,33006,3,1672319423),(146105,3,33007,3,1672319423),(146106,3,33008,3,1672319423),(146107,3,33009,3,1672319423),(146108,3,33010,3,1672319423),(146109,3,33011,3,1672319423),(146110,3,35546,3,1672319423),(146111,3,35547,3,1672319423),(146112,3,35548,3,1672319423),(146113,3,35549,3,1672319423),(146114,3,35550,3,1672319423),(146115,3,35551,3,1672319423),(146116,3,35552,3,1672319423),(146117,3,35553,3,1672319423),(146118,3,35554,3,1672319423),(146119,3,35555,3,1672319423),(146120,3,35556,3,1672319423),(146121,3,35557,3,1672319423),(146122,3,35558,3,1672319423),(146123,3,35559,3,1672319423),(146124,3,35560,3,1672319423),(146125,3,35561,3,1672319423),(146126,3,35562,3,1672319423),(146127,3,35563,3,1672319423),(146128,3,35580,3,1672319423),(146129,3,35581,3,1672319423),(146130,3,35582,3,1672319423),(146131,3,35583,3,1672319423),(146132,3,35584,3,1672319423),(146133,3,35585,3,1672319423),(146134,3,35586,3,1672319423),(146135,3,35587,3,1672319423),(146136,3,35588,3,1672319423),(146137,3,35589,3,1672319423),(146138,3,35590,3,1672319423),(146139,3,35591,3,1672319423),(146140,3,35592,3,1672319423),(146141,3,35593,3,1672319423),(146142,3,35594,3,1672319423),(146143,3,35595,3,1672319423),(146144,3,35596,3,1672319423),(146145,3,35597,3,1672319423),(146146,3,35598,3,1672319423),(146147,3,35599,3,1672319423),(146148,3,35600,3,1672319423),(146149,3,35601,3,1672319423),(146150,3,35602,3,1672319423),(146151,3,35603,3,1672319423),(146152,3,35604,3,1672319423),(146153,3,35605,3,1672319423),(146154,3,35606,3,1672319423),(146155,3,35607,3,1672319423),(146156,3,35622,3,1672319423),(146157,3,35623,3,1672319423),(146158,3,35624,3,1672319423),(146159,3,35625,3,1672319423),(146160,3,35626,3,1672319423),(146161,3,35627,3,1672319423),(146162,3,35628,3,1672319423),(146163,3,35629,3,1672319423),(146164,3,35630,3,1672319423),(146165,3,35631,3,1672319423),(146166,3,35632,3,1672319423),(146167,3,35633,3,1672319423),(146168,3,35634,3,1672319423),(146169,3,35635,3,1672319423),(146170,3,35636,3,1672319423),(146171,3,35637,3,1672319423),(146172,3,35638,3,1672319423),(146173,3,35639,3,1672319423),(146174,3,35640,3,1672319423),(146175,3,35641,3,1672319423),(146176,3,35658,3,1672319423),(146177,3,35659,3,1672319423),(146178,3,35660,3,1672319423),(146179,3,35661,3,1672319423),(146180,3,35662,3,1672319423),(146181,3,35663,3,1672319423),(146182,3,35664,3,1672319423),(146183,3,35665,3,1672319423),(146184,3,35666,3,1672319423),(146185,3,35667,3,1672319423),(146186,3,35668,3,1672319423),(146187,3,35669,3,1672319423),(146188,3,35670,3,1672319423),(146189,3,35671,3,1672319423),(146190,3,35672,3,1672319423),(146191,3,35673,3,1672319423),(146192,3,35674,3,1672319423),(146193,3,35675,3,1672319423),(146194,3,35676,3,1672319423),(146195,3,35677,3,1672319423),(146196,3,35678,3,1672319423),(146197,3,35679,3,1672319423),(146198,3,35680,3,1672319423),(146199,3,35681,3,1672319423),(146200,3,35682,3,1672319423),(146201,3,35683,3,1672319423),(146202,3,35684,3,1672319423),(146203,3,35685,3,1672319423),(146204,3,35686,3,1672319423),(146205,3,35687,3,1672319423),(146206,3,35688,3,1672319423),(146207,3,35689,3,1672319423),(146208,3,35690,3,1672319423),(146209,3,35691,3,1672319423),(146210,3,35692,3,1672319423),(146211,3,35693,3,1672319423),(146212,3,35694,3,1672319423),(146213,3,35695,3,1672319423),(146214,3,35696,3,1672319423),(146215,3,35697,3,1672319423),(146216,3,35698,3,1672319423),(146217,3,35699,3,1672319423),(146218,3,35700,3,1672319423),(146219,3,35701,3,1672319423),(146220,3,35702,3,1672319423),(146221,3,35703,3,1672319423),(146222,3,35704,3,1672319423),(146223,3,35705,3,1672319423),(146224,3,35706,3,1672319423),(146225,3,35707,3,1672319423),(146226,3,35708,3,1672319423),(146227,3,35725,3,1672319423),(146228,3,35726,3,1672319423),(146229,3,35727,3,1672319423),(146230,3,35728,3,1672319423),(146231,3,35729,3,1672319423),(146232,3,35730,3,1672319423),(146233,3,35731,3,1672319423),(146234,3,35732,3,1672319423),(146235,3,35733,3,1672319423),(146236,3,35734,3,1672319423),(146237,3,35735,3,1672319423),(146238,3,35736,3,1672319423),(146239,3,35737,3,1672319423),(146240,3,35738,3,1672319423),(146241,3,35739,3,1672319423),(146242,3,35740,3,1672319423),(146243,3,35741,3,1672319423),(146244,3,35742,3,1672319423),(146245,3,35743,3,1672319423),(146246,3,35744,3,1672319423),(146247,3,35745,3,1672319423),(146248,3,35746,3,1672319423),(146249,3,35747,3,1672319423),(146250,3,35748,3,1672319423),(146251,3,35749,3,1672319423),(146252,3,35750,3,1672319423),(146253,3,35751,3,1672319423),(146254,3,35752,3,1672319423),(146255,3,35753,3,1672319423),(146256,3,35754,3,1672319423),(146257,3,35755,3,1672319423),(146258,3,35756,3,1672319423),(146259,3,35757,3,1672319423),(146260,3,35758,3,1672319423),(146261,3,35759,3,1672319423),(146262,3,35760,3,1672319423),(146263,3,35761,3,1672319423),(146264,3,35762,3,1672319423),(146265,3,35763,3,1672319423),(146266,3,35764,3,1672319423),(146267,3,35765,3,1672319423),(146268,3,35766,3,1672319423),(146269,3,35767,3,1672319423),(146270,3,35768,3,1672319423),(146271,3,35769,3,1672319423),(146272,3,35770,3,1672319423),(146273,3,35771,3,1672319423),(146274,3,35772,3,1672319423),(146275,3,35773,3,1672319423),(146276,3,35774,3,1672319423),(146277,3,35775,3,1672319423),(146278,3,35791,3,1672319423),(146279,3,35792,3,1672319423),(146280,3,35793,3,1672319423),(146281,3,35794,3,1672319423),(146282,3,35795,3,1672319423),(146283,3,35796,3,1672319423),(146284,3,35797,3,1672319423),(146285,3,35798,3,1672319423),(146286,3,35799,3,1672319423),(146287,3,35800,3,1672319423),(146288,3,35801,3,1672319423),(146289,3,35802,3,1672319423),(146290,3,35803,3,1672319423),(146291,3,35804,3,1672319423),(146292,3,35805,3,1672319423),(146293,3,35806,3,1672319423),(146294,3,35807,3,1672319423),(146295,3,35808,3,1672319423),(146296,3,35809,3,1672319423),(146297,3,35823,3,1672319423),(146298,3,35824,3,1672319423),(146299,3,35825,3,1672319423),(146300,3,35826,3,1672319423),(146301,3,35827,3,1672319423),(146302,3,35828,3,1672319423),(146303,3,35829,3,1672319423),(146304,3,35830,3,1672319423),(146305,3,35831,3,1672319423),(146306,3,35832,3,1672319423),(146307,3,35833,3,1672319423),(146308,3,35834,3,1672319423),(146309,3,35835,3,1672319423),(146310,3,35836,3,1672319423),(146311,3,35837,3,1672319423),(146312,3,35838,3,1672319423),(146313,3,35839,3,1672319423),(146314,3,35840,3,1672319423),(146315,3,35841,3,1672319423),(146316,3,35842,3,1672319423),(146317,3,35843,3,1672319423),(146318,3,35844,3,1672319423),(146319,3,35845,3,1672319423),(146320,3,35846,3,1672319423),(146321,3,35847,3,1672319423),(146322,3,35864,3,1672319423),(146323,3,35865,3,1672319423),(146324,3,35866,3,1672319423),(146325,3,35867,3,1672319423),(146326,3,35868,3,1672319423),(146327,3,35869,3,1672319423),(146328,3,35870,3,1672319423),(146329,3,35871,3,1672319423),(146330,3,35872,3,1672319423),(146331,3,35873,3,1672319423),(146332,3,35874,3,1672319423),(146333,3,35875,3,1672319423),(146334,3,35876,3,1672319423),(146335,3,35877,3,1672319423),(146336,3,35878,3,1672319423),(146337,3,35879,3,1672319423),(146338,3,35880,3,1672319423),(146339,3,35881,3,1672319423),(146340,3,35882,3,1672319423),(146341,3,35883,3,1672319423),(146342,3,35884,3,1672319423),(146343,3,35885,3,1672319423),(146344,3,35886,3,1672319423),(146345,3,35887,3,1672319423),(146346,3,35888,3,1672319423),(146347,3,35889,3,1672319423),(146348,3,35890,3,1672319423),(146349,3,35891,3,1672319423),(146350,3,35908,3,1672319423),(146351,3,35909,3,1672319423),(146352,3,35910,3,1672319423),(146353,3,35911,3,1672319423),(146354,3,35912,3,1672319423),(146355,3,35913,3,1672319423),(146356,3,35914,3,1672319423),(146357,3,35915,3,1672319423),(146358,3,35916,3,1672319423),(146359,3,35917,3,1672319423),(146360,3,35918,3,1672319423),(146361,3,35919,3,1672319423),(146362,3,35920,3,1672319423),(146363,3,35921,3,1672319423),(146364,3,35922,3,1672319423),(146365,3,35923,3,1672319423),(146366,3,35924,3,1672319423),(146367,3,35925,3,1672319423),(146368,3,35926,3,1672319423),(146369,3,35927,3,1672319423),(146370,3,35928,3,1672319423),(146371,3,35929,3,1672319423),(146372,3,35930,3,1672319423),(146373,3,35931,3,1672319423),(146374,3,35932,3,1672319423),(146375,3,35933,3,1672319423),(146376,3,35934,3,1672319423),(146377,3,35935,3,1672319423),(146378,3,35952,3,1672319423),(146379,3,35953,3,1672319423),(146380,3,35954,3,1672319423),(146381,3,35955,3,1672319423),(146382,3,35956,3,1672319423),(146383,3,35957,3,1672319423),(146384,3,35958,3,1672319423),(146385,3,35959,3,1672319423),(146386,3,35960,3,1672319423),(146387,3,35961,3,1672319423),(146388,3,35962,3,1672319423),(146389,3,35963,3,1672319423),(146390,3,35964,3,1672319423),(146391,3,35965,3,1672319423),(146392,3,35966,3,1672319423),(146393,3,35967,3,1672319423),(146394,3,35968,3,1672319423),(146395,3,35969,3,1672319423),(146396,3,35970,3,1672319423),(146397,3,35971,3,1672319423),(146398,3,35972,3,1672319423),(146399,3,35973,3,1672319423),(146400,3,35974,3,1672319423),(146401,3,35975,3,1672319423),(146402,3,35976,3,1672319423),(146403,3,35977,3,1672319423),(146404,3,35978,3,1672319423),(146405,3,35979,3,1672319423),(146406,3,35996,3,1672319423),(146407,3,35997,3,1672319423),(146408,3,35998,3,1672319423),(146409,3,35999,3,1672319423),(146410,3,36000,3,1672319423),(146411,3,36001,3,1672319423),(146412,3,36002,3,1672319423),(146413,3,36003,3,1672319423),(146414,3,36004,3,1672319423),(146415,3,36005,3,1672319423),(146416,3,36006,3,1672319423),(146417,3,36007,3,1672319423),(146418,3,36008,3,1672319423),(146419,3,36009,3,1672319423),(146420,3,36010,3,1672319423),(146421,3,36011,3,1672319423),(146422,3,36012,3,1672319423),(146423,3,36013,3,1672319423),(146424,3,36014,3,1672319423),(146425,3,36015,3,1672319423),(146426,3,36016,3,1672319423),(146427,3,36017,3,1672319423),(146428,3,36018,3,1672319423),(146429,3,36019,3,1672319423),(146430,3,36020,3,1672319423),(146431,3,36021,3,1672319423),(146432,3,36022,3,1672319423),(146433,3,36023,3,1672319423),(146434,3,36041,3,1672319423),(146435,3,36042,3,1672319423),(146436,3,36043,3,1672319423),(146437,3,36044,3,1672319423),(146438,3,36045,3,1672319423),(146439,3,36046,3,1672319423),(146440,3,36047,3,1672319423),(146441,3,36048,3,1672319423),(146442,3,36049,3,1672319423),(146443,3,36050,3,1672319423),(146444,3,36051,3,1672319423),(146445,3,36052,3,1672319423),(146446,3,36053,3,1672319423),(146447,3,36054,3,1672319423),(146448,3,36055,3,1672319423),(146449,3,36056,3,1672319423),(146450,3,36057,3,1672319423),(146451,3,36058,3,1672319423),(146452,3,36059,3,1672319423),(146453,3,36060,3,1672319423),(146454,3,36061,3,1672319423),(146455,3,36062,3,1672319423),(146456,3,36063,3,1672319423),(146457,3,36064,3,1672319423),(146458,3,36065,3,1672319423),(146459,3,36066,3,1672319423),(146460,3,36067,3,1672319423),(146461,3,36068,3,1672319423),(146462,3,36086,3,1672319423),(146463,3,36087,3,1672319423),(146464,3,36088,3,1672319423),(146465,3,36089,3,1672319423),(146466,3,36090,3,1672319423),(146467,3,36091,3,1672319423),(146468,3,36092,3,1672319423),(146469,3,36093,3,1672319423),(146470,3,36094,3,1672319423),(146471,3,36095,3,1672319423),(146472,3,36096,3,1672319423),(146473,3,36097,3,1672319423),(146474,3,36098,3,1672319423),(146475,3,36099,3,1672319423),(146476,3,36100,3,1672319423),(146477,3,36101,3,1672319423),(146478,3,36102,3,1672319423),(146479,3,36103,3,1672319423),(146480,3,36104,3,1672319423),(146481,3,36105,3,1672319423),(146482,3,36106,3,1672319423),(146483,3,36107,3,1672319423),(146484,3,36108,3,1672319423),(146485,3,36109,3,1672319423),(146486,3,36110,3,1672319423),(146487,3,36111,3,1672319423),(146488,3,36112,3,1672319423),(146489,3,36113,3,1672319423),(146490,3,36131,3,1672319423),(146491,3,36132,3,1672319423),(146492,3,36133,3,1672319423),(146493,3,36134,3,1672319423),(146494,3,36135,3,1672319423),(146495,3,36136,3,1672319423),(146496,3,36137,3,1672319423),(146497,3,36138,3,1672319423),(146498,3,36139,3,1672319423),(146499,3,36140,3,1672319423),(146500,3,36141,3,1672319423),(146501,3,36142,3,1672319423),(146502,3,36143,3,1672319423),(146503,3,36144,3,1672319423),(146504,3,36145,3,1672319423),(146505,3,36146,3,1672319423),(146506,3,36147,3,1672319423),(146507,3,36148,3,1672319423),(146508,3,36149,3,1672319423),(146509,3,36150,3,1672319423),(146510,3,36151,3,1672319423),(146511,3,36152,3,1672319423),(146512,3,36153,3,1672319423),(146513,3,36154,3,1672319423),(146514,3,36155,3,1672319423),(146515,3,36156,3,1672319423),(146516,3,36157,3,1672319423),(146517,3,36158,3,1672319423),(146518,3,36159,3,1672319423),(146519,3,39808,3,1672319423),(146520,3,39809,3,1672319423),(146521,3,39810,3,1672319423),(146522,3,39811,3,1672319423),(146523,3,44059,3,1672319423),(146524,3,44060,3,1672319423),(146525,3,44061,3,1672319423),(146526,3,44062,3,1672319423),(146527,3,44063,3,1672319423),(146528,3,44064,3,1672319423),(146529,3,44065,3,1672319423),(146530,3,44066,3,1672319423),(146531,3,44067,3,1672319423),(146532,3,44068,3,1672319423),(146533,3,44069,3,1672319423),(146534,3,32007,2,1672319423),(146535,3,32998,2,1672319423),(146536,3,32999,2,1672319423),(146537,3,35542,2,1672319423),(146538,3,35543,2,1672319423),(146539,3,35544,2,1672319423),(146540,3,35545,2,1672319423),(146541,3,35574,2,1672319423),(146542,3,35575,2,1672319423),(146543,3,35576,2,1672319423),(146544,3,35577,2,1672319423),(146545,3,35578,2,1672319423),(146546,3,35579,2,1672319423),(146547,3,35618,2,1672319423),(146548,3,35619,2,1672319423),(146549,3,35620,2,1672319423),(146550,3,35621,2,1672319423),(146551,3,35649,2,1672319423),(146552,3,35650,2,1672319423),(146553,3,35651,2,1672319423),(146554,3,35652,2,1672319423),(146555,3,35653,2,1672319423),(146556,3,35654,2,1672319423),(146557,3,35655,2,1672319423),(146558,3,35656,2,1672319423),(146559,3,35657,2,1672319423),(146560,3,35716,2,1672319423),(146561,3,35717,2,1672319423),(146562,3,35718,2,1672319423),(146563,3,35719,2,1672319423),(146564,3,35720,2,1672319423),(146565,3,35721,2,1672319423),(146566,3,35722,2,1672319423),(146567,3,35723,2,1672319423),(146568,3,35724,2,1672319423),(146569,3,35786,2,1672319423),(146570,3,35787,2,1672319423),(146571,3,35788,2,1672319423),(146572,3,35789,2,1672319423),(146573,3,35790,2,1672319423),(146574,3,35820,2,1672319423),(146575,3,35821,2,1672319423),(146576,3,35822,2,1672319423),(146577,3,35858,2,1672319423),(146578,3,35859,2,1672319423),(146579,3,35860,2,1672319423),(146580,3,35861,2,1672319423),(146581,3,35862,2,1672319423),(146582,3,35863,2,1672319423),(146583,3,35902,2,1672319423),(146584,3,35903,2,1672319423),(146585,3,35904,2,1672319423),(146586,3,35905,2,1672319423),(146587,3,35906,2,1672319423),(146588,3,35907,2,1672319423),(146589,3,35946,2,1672319423),(146590,3,35947,2,1672319423),(146591,3,35948,2,1672319423),(146592,3,35949,2,1672319423),(146593,3,35950,2,1672319423),(146594,3,35951,2,1672319423),(146595,3,35990,2,1672319423),(146596,3,35991,2,1672319423),(146597,3,35992,2,1672319423),(146598,3,35993,2,1672319423),(146599,3,35994,2,1672319423),(146600,3,35995,2,1672319423),(146601,3,36035,2,1672319423),(146602,3,36036,2,1672319423),(146603,3,36037,2,1672319423),(146604,3,36038,2,1672319423),(146605,3,36039,2,1672319423),(146606,3,36040,2,1672319423),(146607,3,36080,2,1672319423),(146608,3,36081,2,1672319423),(146609,3,36082,2,1672319423),(146610,3,36083,2,1672319423),(146611,3,36084,2,1672319423),(146612,3,36085,2,1672319423),(146613,3,36124,2,1672319423),(146614,3,36125,2,1672319423),(146615,3,36126,2,1672319423),(146616,3,36127,2,1672319423),(146617,3,36128,2,1672319423),(146618,3,36129,2,1672319423),(146619,3,36130,2,1672319423),(146620,3,39806,2,1672319423),(146621,3,44057,2,1672319423),(146622,3,32007,3,1672319423),(146623,3,32998,3,1672319423),(146624,3,32999,3,1672319423),(146625,3,35542,3,1672319423),(146626,3,35543,3,1672319423),(146627,3,35544,3,1672319423),(146628,3,35545,3,1672319423),(146629,3,35574,3,1672319423),(146630,3,35575,3,1672319423),(146631,3,35576,3,1672319423),(146632,3,35577,3,1672319423),(146633,3,35578,3,1672319423),(146634,3,35579,3,1672319423),(146635,3,35618,3,1672319423),(146636,3,35619,3,1672319423),(146637,3,35620,3,1672319423),(146638,3,35621,3,1672319423),(146639,3,35649,3,1672319423),(146640,3,35650,3,1672319423),(146641,3,35651,3,1672319423),(146642,3,35652,3,1672319423),(146643,3,35653,3,1672319423),(146644,3,35654,3,1672319423),(146645,3,35655,3,1672319423),(146646,3,35656,3,1672319423),(146647,3,35657,3,1672319423),(146648,3,35716,3,1672319423),(146649,3,35717,3,1672319423),(146650,3,35718,3,1672319423),(146651,3,35719,3,1672319423),(146652,3,35720,3,1672319423),(146653,3,35721,3,1672319423),(146654,3,35722,3,1672319423),(146655,3,35723,3,1672319423),(146656,3,35724,3,1672319423),(146657,3,35786,3,1672319423),(146658,3,35787,3,1672319423),(146659,3,35788,3,1672319423),(146660,3,35789,3,1672319423),(146661,3,35790,3,1672319423),(146662,3,35820,3,1672319423),(146663,3,35821,3,1672319423),(146664,3,35822,3,1672319423),(146665,3,35858,3,1672319423),(146666,3,35859,3,1672319423),(146667,3,35860,3,1672319423),(146668,3,35861,3,1672319423),(146669,3,35862,3,1672319423),(146670,3,35863,3,1672319423),(146671,3,35902,3,1672319423),(146672,3,35903,3,1672319423),(146673,3,35904,3,1672319423),(146674,3,35905,3,1672319423),(146675,3,35906,3,1672319423),(146676,3,35907,3,1672319423),(146677,3,35946,3,1672319423),(146678,3,35947,3,1672319423),(146679,3,35948,3,1672319423),(146680,3,35949,3,1672319423),(146681,3,35950,3,1672319423),(146682,3,35951,3,1672319423),(146683,3,35990,3,1672319423),(146684,3,35991,3,1672319423),(146685,3,35992,3,1672319423),(146686,3,35993,3,1672319423),(146687,3,35994,3,1672319423),(146688,3,35995,3,1672319423),(146689,3,36035,3,1672319423),(146690,3,36036,3,1672319423),(146691,3,36037,3,1672319423),(146692,3,36038,3,1672319423),(146693,3,36039,3,1672319423),(146694,3,36040,3,1672319423),(146695,3,36080,3,1672319423),(146696,3,36081,3,1672319423),(146697,3,36082,3,1672319423),(146698,3,36083,3,1672319423),(146699,3,36084,3,1672319423),(146700,3,36085,3,1672319423),(146701,3,36124,3,1672319423),(146702,3,36125,3,1672319423),(146703,3,36126,3,1672319423),(146704,3,36127,3,1672319423),(146705,3,36128,3,1672319423),(146706,3,36129,3,1672319423),(146707,3,36130,3,1672319423),(146708,3,39806,3,1672319423),(146709,3,44057,3,1672319423),(146710,3,10061,2,1672319423),(146711,3,10062,2,1672319423),(146712,3,10063,2,1672319423),(146713,3,10064,2,1672319423),(146714,3,10065,2,1672319423),(146715,3,10066,2,1672319423),(146716,3,10067,2,1672319423),(146717,3,10068,2,1672319423),(146718,3,10069,2,1672319423),(146719,3,10070,2,1672319423),(146720,3,10071,2,1672319423),(146721,3,10072,2,1672319423),(146722,3,22183,2,1672319423),(146723,3,22185,2,1672319423),(146724,3,22187,2,1672319423),(146725,3,22189,2,1672319423),(146726,3,22191,2,1672319423),(146727,3,22196,2,1672319423),(146728,3,22199,2,1672319423),(146729,3,22219,2,1672319423),(146730,3,22231,2,1672319423),(146731,3,22232,2,1672319423),(146732,3,22396,2,1672319423),(146733,3,22399,2,1672319423),(146734,3,22400,2,1672319423),(146735,3,22401,2,1672319423),(146736,3,22402,2,1672319423),(146737,3,22404,2,1672319423),(146738,3,22406,2,1672319423),(146739,3,22408,2,1672319423),(146740,3,22412,2,1672319423),(146741,3,22414,2,1672319423),(146742,3,22416,2,1672319423),(146743,3,22418,2,1672319423),(146744,3,22420,2,1672319423),(146745,3,22422,2,1672319423),(146746,3,22424,2,1672319423),(146747,3,22426,2,1672319423),(146748,3,22430,2,1672319423),(146749,3,22689,2,1672319423),(146750,3,23171,2,1672319423),(146751,3,23251,2,1672319423),(146752,3,23318,2,1672319423),(146753,3,23340,2,1672319423),(146754,3,23341,2,1672319423),(146755,3,23342,2,1672319423),(146756,3,23343,2,1672319423),(146757,3,23344,2,1672319423),(146758,3,23345,2,1672319423),(146759,3,23346,2,1672319423),(146760,3,23347,2,1672319423),(146761,3,23348,2,1672319423),(146762,3,23349,2,1672319423),(146763,3,23350,2,1672319423),(146764,3,23352,2,1672319423),(146765,3,23353,2,1672319423),(146766,3,23354,2,1672319423),(146767,3,23355,2,1672319423),(146768,3,23356,2,1672319423),(146769,3,23357,2,1672319423),(146770,3,23358,2,1672319423),(146771,3,23359,2,1672319423),(146772,3,23360,2,1672319423),(146773,3,23634,2,1672319423),(146774,3,23661,2,1672319423),(146775,3,23663,2,1672319423),(146776,3,25366,2,1672319423),(146777,3,25368,2,1672319423),(146778,3,25369,2,1672319423),(146779,3,25370,2,1672319423),(146780,3,25665,2,1672319423),(146781,3,25666,2,1672319423),(146782,3,28248,2,1672319423),(146783,3,28250,2,1672319423),(146784,3,28251,2,1672319423),(146785,3,28533,2,1672319423),(146786,3,28535,2,1672319423),(146787,3,28537,2,1672319423),(146788,3,28617,2,1672319423),(146789,3,28618,2,1672319423),(146790,3,28619,2,1672319423),(146791,3,29544,2,1672319423),(146792,3,29545,2,1672319423),(146793,3,29546,2,1672319423),(146794,3,29547,2,1672319423),(146795,3,29822,2,1672319423),(146796,3,32963,2,1672319423),(146797,3,32964,2,1672319423),(146798,3,32965,2,1672319423),(146799,3,32966,2,1672319423),(146800,3,32967,2,1672319423),(146801,3,32968,2,1672319423),(146802,3,32969,2,1672319423),(146803,3,32970,2,1672319423),(146804,3,32971,2,1672319423),(146805,3,32972,2,1672319423),(146806,3,32973,2,1672319423),(146807,3,32974,2,1672319423),(146808,3,32975,2,1672319423),(146809,3,32976,2,1672319423),(146810,3,32977,2,1672319423),(146811,3,32978,2,1672319423),(146812,3,32979,2,1672319423),(146813,3,32980,2,1672319423),(146814,3,32981,2,1672319423),(146815,3,32982,2,1672319423),(146816,3,32983,2,1672319423),(146817,3,32984,2,1672319423),(146818,3,32985,2,1672319423),(146819,3,32986,2,1672319423),(146820,3,32987,2,1672319423),(146821,3,32988,2,1672319423),(146822,3,32989,2,1672319423),(146823,3,32990,2,1672319423),(146824,3,32991,2,1672319423),(146825,3,32992,2,1672319423),(146826,3,32993,2,1672319423),(146827,3,32994,2,1672319423),(146828,3,32995,2,1672319423),(146829,3,32996,2,1672319423),(146830,3,32997,2,1672319423),(146831,3,33018,2,1672319423),(146832,3,33019,2,1672319423),(146833,3,33020,2,1672319423),(146834,3,33021,2,1672319423),(146835,3,33022,2,1672319423),(146836,3,33023,2,1672319423),(146837,3,34316,2,1672319423),(146838,3,34317,2,1672319423),(146839,3,35272,2,1672319423),(146840,3,35273,2,1672319423),(146841,3,35274,2,1672319423),(146842,3,35532,2,1672319423),(146843,3,35533,2,1672319423),(146844,3,35534,2,1672319423),(146845,3,35535,2,1672319423),(146846,3,35536,2,1672319423),(146847,3,35537,2,1672319423),(146848,3,35538,2,1672319423),(146849,3,35539,2,1672319423),(146850,3,35540,2,1672319423),(146851,3,35541,2,1672319423),(146852,3,35564,2,1672319423),(146853,3,35565,2,1672319423),(146854,3,35566,2,1672319423),(146855,3,35567,2,1672319423),(146856,3,35568,2,1672319423),(146857,3,35569,2,1672319423),(146858,3,35570,2,1672319423),(146859,3,35571,2,1672319423),(146860,3,35572,2,1672319423),(146861,3,35573,2,1672319423),(146862,3,35608,2,1672319423),(146863,3,35609,2,1672319423),(146864,3,35610,2,1672319423),(146865,3,35611,2,1672319423),(146866,3,35612,2,1672319423),(146867,3,35613,2,1672319423),(146868,3,35614,2,1672319423),(146869,3,35615,2,1672319423),(146870,3,35616,2,1672319423),(146871,3,35617,2,1672319423),(146872,3,35642,2,1672319423),(146873,3,35643,2,1672319423),(146874,3,35644,2,1672319423),(146875,3,35645,2,1672319423),(146876,3,35646,2,1672319423),(146877,3,35647,2,1672319423),(146878,3,35648,2,1672319423),(146879,3,35709,2,1672319423),(146880,3,35710,2,1672319423),(146881,3,35711,2,1672319423),(146882,3,35712,2,1672319423),(146883,3,35713,2,1672319423),(146884,3,35714,2,1672319423),(146885,3,35715,2,1672319423),(146886,3,35776,2,1672319423),(146887,3,35777,2,1672319423),(146888,3,35778,2,1672319423),(146889,3,35779,2,1672319423),(146890,3,35780,2,1672319423),(146891,3,35781,2,1672319423),(146892,3,35782,2,1672319423),(146893,3,35783,2,1672319423),(146894,3,35784,2,1672319423),(146895,3,35785,2,1672319423),(146896,3,35810,2,1672319423),(146897,3,35811,2,1672319423),(146898,3,35812,2,1672319423),(146899,3,35813,2,1672319423),(146900,3,35814,2,1672319423),(146901,3,35815,2,1672319423),(146902,3,35816,2,1672319423),(146903,3,35817,2,1672319423),(146904,3,35818,2,1672319423),(146905,3,35819,2,1672319423),(146906,3,35848,2,1672319423),(146907,3,35849,2,1672319423),(146908,3,35850,2,1672319423),(146909,3,35851,2,1672319423),(146910,3,35852,2,1672319423),(146911,3,35853,2,1672319423),(146912,3,35854,2,1672319423),(146913,3,35855,2,1672319423),(146914,3,35856,2,1672319423),(146915,3,35857,2,1672319423),(146916,3,35892,2,1672319423),(146917,3,35893,2,1672319423),(146918,3,35894,2,1672319423),(146919,3,35895,2,1672319423),(146920,3,35896,2,1672319423),(146921,3,35897,2,1672319423),(146922,3,35898,2,1672319423),(146923,3,35899,2,1672319423),(146924,3,35900,2,1672319423),(146925,3,35901,2,1672319423),(146926,3,35936,2,1672319423),(146927,3,35937,2,1672319423),(146928,3,35938,2,1672319423),(146929,3,35939,2,1672319423),(146930,3,35940,2,1672319423),(146931,3,35941,2,1672319423),(146932,3,35942,2,1672319423),(146933,3,35943,2,1672319423),(146934,3,35944,2,1672319423),(146935,3,35945,2,1672319423),(146936,3,35980,2,1672319423),(146937,3,35981,2,1672319423),(146938,3,35982,2,1672319423),(146939,3,35983,2,1672319423),(146940,3,35984,2,1672319423),(146941,3,35985,2,1672319423),(146942,3,35986,2,1672319423),(146943,3,35987,2,1672319423),(146944,3,35988,2,1672319423),(146945,3,35989,2,1672319423),(146946,3,36024,2,1672319423),(146947,3,36025,2,1672319423),(146948,3,36026,2,1672319423),(146949,3,36027,2,1672319423),(146950,3,36028,2,1672319423),(146951,3,36029,2,1672319423),(146952,3,36030,2,1672319423),(146953,3,36031,2,1672319423),(146954,3,36032,2,1672319423),(146955,3,36033,2,1672319423),(146956,3,36034,2,1672319423),(146957,3,36069,2,1672319423),(146958,3,36070,2,1672319423),(146959,3,36071,2,1672319423),(146960,3,36072,2,1672319423),(146961,3,36073,2,1672319423),(146962,3,36074,2,1672319423),(146963,3,36075,2,1672319423),(146964,3,36076,2,1672319423),(146965,3,36077,2,1672319423),(146966,3,36078,2,1672319423),(146967,3,36079,2,1672319423),(146968,3,36114,2,1672319423),(146969,3,36115,2,1672319423),(146970,3,36116,2,1672319423),(146971,3,36117,2,1672319423),(146972,3,36118,2,1672319423),(146973,3,36119,2,1672319423),(146974,3,36120,2,1672319423),(146975,3,36121,2,1672319423),(146976,3,36122,2,1672319423),(146977,3,36123,2,1672319423),(146978,3,39804,2,1672319423),(146979,3,39822,2,1672319423),(146980,3,39826,2,1672319423),(146981,3,40181,2,1672319423),(146982,3,40182,2,1672319423),(146983,3,40183,2,1672319423),(146984,3,40184,2,1672319423),(146985,3,43173,2,1672319423),(146986,3,43860,2,1672319423),(146987,3,43861,2,1672319423),(146988,3,43862,2,1672319423),(146989,3,43863,2,1672319423),(146990,3,43864,2,1672319423),(146991,3,43865,2,1672319423),(146992,3,43866,2,1672319423),(146993,3,43867,2,1672319423),(146994,3,43868,2,1672319423),(146995,3,43869,2,1672319423),(146996,3,43870,2,1672319423),(146997,3,43871,2,1672319423),(146998,3,43872,2,1672319423),(146999,3,43873,2,1672319423),(147000,3,44055,2,1672319423),(147001,3,10061,3,1672319423),(147002,3,10062,3,1672319423),(147003,3,10063,3,1672319423),(147004,3,10064,3,1672319423),(147005,3,10065,3,1672319423),(147006,3,10066,3,1672319423),(147007,3,10067,3,1672319423),(147008,3,10068,3,1672319423),(147009,3,10069,3,1672319423),(147010,3,10070,3,1672319423),(147011,3,10071,3,1672319423),(147012,3,10072,3,1672319423),(147013,3,22183,3,1672319423),(147014,3,22185,3,1672319423),(147015,3,22187,3,1672319423),(147016,3,22189,3,1672319423),(147017,3,22191,3,1672319423),(147018,3,22196,3,1672319423),(147019,3,22199,3,1672319423),(147020,3,22219,3,1672319423),(147021,3,22231,3,1672319423),(147022,3,22232,3,1672319423),(147023,3,22396,3,1672319423),(147024,3,22399,3,1672319423),(147025,3,22400,3,1672319423),(147026,3,22401,3,1672319423),(147027,3,22402,3,1672319423),(147028,3,22404,3,1672319423),(147029,3,22406,3,1672319423),(147030,3,22408,3,1672319423),(147031,3,22412,3,1672319423),(147032,3,22414,3,1672319423),(147033,3,22416,3,1672319423),(147034,3,22418,3,1672319423),(147035,3,22420,3,1672319423),(147036,3,22422,3,1672319423),(147037,3,22424,3,1672319423),(147038,3,22426,3,1672319423),(147039,3,22430,3,1672319423),(147040,3,22689,3,1672319423),(147041,3,23171,3,1672319423),(147042,3,23251,3,1672319423),(147043,3,23318,3,1672319423),(147044,3,23340,3,1672319423),(147045,3,23341,3,1672319423),(147046,3,23342,3,1672319423),(147047,3,23343,3,1672319423),(147048,3,23344,3,1672319423),(147049,3,23345,3,1672319423),(147050,3,23346,3,1672319423),(147051,3,23347,3,1672319423),(147052,3,23348,3,1672319423),(147053,3,23349,3,1672319423),(147054,3,23350,3,1672319423),(147055,3,23352,3,1672319423),(147056,3,23353,3,1672319423),(147057,3,23354,3,1672319423),(147058,3,23355,3,1672319423),(147059,3,23356,3,1672319423),(147060,3,23357,3,1672319423),(147061,3,23358,3,1672319423),(147062,3,23359,3,1672319423),(147063,3,23360,3,1672319423),(147064,3,23634,3,1672319423),(147065,3,23661,3,1672319423),(147066,3,23663,3,1672319423),(147067,3,25366,3,1672319423),(147068,3,25368,3,1672319423),(147069,3,25369,3,1672319423),(147070,3,25370,3,1672319423),(147071,3,25665,3,1672319423),(147072,3,25666,3,1672319423),(147073,3,28248,3,1672319423),(147074,3,28250,3,1672319423),(147075,3,28251,3,1672319423),(147076,3,28533,3,1672319423),(147077,3,28535,3,1672319423),(147078,3,28537,3,1672319423),(147079,3,28617,3,1672319423),(147080,3,28618,3,1672319423),(147081,3,28619,3,1672319423),(147082,3,29544,3,1672319423),(147083,3,29545,3,1672319423),(147084,3,29546,3,1672319423),(147085,3,29547,3,1672319423),(147086,3,29822,3,1672319423),(147087,3,32963,3,1672319423),(147088,3,32964,3,1672319423),(147089,3,32965,3,1672319423),(147090,3,32966,3,1672319423),(147091,3,32967,3,1672319423),(147092,3,32968,3,1672319423),(147093,3,32969,3,1672319423),(147094,3,32970,3,1672319423),(147095,3,32971,3,1672319423),(147096,3,32972,3,1672319423),(147097,3,32973,3,1672319423),(147098,3,32974,3,1672319423),(147099,3,32975,3,1672319423),(147100,3,32976,3,1672319423),(147101,3,32977,3,1672319423),(147102,3,32978,3,1672319423),(147103,3,32979,3,1672319423),(147104,3,32980,3,1672319423),(147105,3,32981,3,1672319423),(147106,3,32982,3,1672319423),(147107,3,32983,3,1672319423),(147108,3,32984,3,1672319423),(147109,3,32985,3,1672319423),(147110,3,32986,3,1672319423),(147111,3,32987,3,1672319423),(147112,3,32988,3,1672319423),(147113,3,32989,3,1672319423),(147114,3,32990,3,1672319423),(147115,3,32991,3,1672319423),(147116,3,32992,3,1672319423),(147117,3,32993,3,1672319423),(147118,3,32994,3,1672319423),(147119,3,32995,3,1672319423),(147120,3,32996,3,1672319423),(147121,3,32997,3,1672319423),(147122,3,33018,3,1672319423),(147123,3,33019,3,1672319423),(147124,3,33020,3,1672319423),(147125,3,33021,3,1672319423),(147126,3,33022,3,1672319423),(147127,3,33023,3,1672319423),(147128,3,34316,3,1672319423),(147129,3,34317,3,1672319423),(147130,3,35272,3,1672319423),(147131,3,35273,3,1672319423),(147132,3,35274,3,1672319423),(147133,3,35532,3,1672319423),(147134,3,35533,3,1672319423),(147135,3,35534,3,1672319423),(147136,3,35535,3,1672319423),(147137,3,35536,3,1672319423),(147138,3,35537,3,1672319423),(147139,3,35538,3,1672319423),(147140,3,35539,3,1672319423),(147141,3,35540,3,1672319423),(147142,3,35541,3,1672319423),(147143,3,35564,3,1672319423),(147144,3,35565,3,1672319423),(147145,3,35566,3,1672319423),(147146,3,35567,3,1672319423),(147147,3,35568,3,1672319423),(147148,3,35569,3,1672319423),(147149,3,35570,3,1672319423),(147150,3,35571,3,1672319423),(147151,3,35572,3,1672319423),(147152,3,35573,3,1672319423),(147153,3,35608,3,1672319423),(147154,3,35609,3,1672319423),(147155,3,35610,3,1672319423),(147156,3,35611,3,1672319423),(147157,3,35612,3,1672319423),(147158,3,35613,3,1672319423),(147159,3,35614,3,1672319423),(147160,3,35615,3,1672319423),(147161,3,35616,3,1672319423),(147162,3,35617,3,1672319423),(147163,3,35642,3,1672319423),(147164,3,35643,3,1672319423),(147165,3,35644,3,1672319423),(147166,3,35645,3,1672319423),(147167,3,35646,3,1672319423),(147168,3,35647,3,1672319423),(147169,3,35648,3,1672319423),(147170,3,35709,3,1672319423),(147171,3,35710,3,1672319423),(147172,3,35711,3,1672319423),(147173,3,35712,3,1672319423),(147174,3,35713,3,1672319423),(147175,3,35714,3,1672319423),(147176,3,35715,3,1672319423),(147177,3,35776,3,1672319423),(147178,3,35777,3,1672319423),(147179,3,35778,3,1672319423),(147180,3,35779,3,1672319423),(147181,3,35780,3,1672319423),(147182,3,35781,3,1672319423),(147183,3,35782,3,1672319423),(147184,3,35783,3,1672319423),(147185,3,35784,3,1672319423),(147186,3,35785,3,1672319423),(147187,3,35810,3,1672319423),(147188,3,35811,3,1672319423),(147189,3,35812,3,1672319423),(147190,3,35813,3,1672319423),(147191,3,35814,3,1672319423),(147192,3,35815,3,1672319423),(147193,3,35816,3,1672319423),(147194,3,35817,3,1672319423),(147195,3,35818,3,1672319423),(147196,3,35819,3,1672319423),(147197,3,35848,3,1672319423),(147198,3,35849,3,1672319423),(147199,3,35850,3,1672319423),(147200,3,35851,3,1672319423),(147201,3,35852,3,1672319423),(147202,3,35853,3,1672319423),(147203,3,35854,3,1672319423),(147204,3,35855,3,1672319423),(147205,3,35856,3,1672319423),(147206,3,35857,3,1672319423),(147207,3,35892,3,1672319423),(147208,3,35893,3,1672319423),(147209,3,35894,3,1672319423),(147210,3,35895,3,1672319423),(147211,3,35896,3,1672319423),(147212,3,35897,3,1672319423),(147213,3,35898,3,1672319423),(147214,3,35899,3,1672319423),(147215,3,35900,3,1672319423),(147216,3,35901,3,1672319423),(147217,3,35936,3,1672319423),(147218,3,35937,3,1672319423),(147219,3,35938,3,1672319423),(147220,3,35939,3,1672319423),(147221,3,35940,3,1672319423),(147222,3,35941,3,1672319423),(147223,3,35942,3,1672319423),(147224,3,35943,3,1672319423),(147225,3,35944,3,1672319423),(147226,3,35945,3,1672319423),(147227,3,35980,3,1672319423),(147228,3,35981,3,1672319423),(147229,3,35982,3,1672319423),(147230,3,35983,3,1672319423),(147231,3,35984,3,1672319423),(147232,3,35985,3,1672319423),(147233,3,35986,3,1672319423),(147234,3,35987,3,1672319423),(147235,3,35988,3,1672319423),(147236,3,35989,3,1672319423),(147237,3,36024,3,1672319423),(147238,3,36025,3,1672319423),(147239,3,36026,3,1672319423),(147240,3,36027,3,1672319423),(147241,3,36028,3,1672319423),(147242,3,36029,3,1672319423),(147243,3,36030,3,1672319423),(147244,3,36031,3,1672319423),(147245,3,36032,3,1672319423),(147246,3,36033,3,1672319423),(147247,3,36034,3,1672319423),(147248,3,36069,3,1672319423),(147249,3,36070,3,1672319423),(147250,3,36071,3,1672319423),(147251,3,36072,3,1672319423),(147252,3,36073,3,1672319423),(147253,3,36074,3,1672319423),(147254,3,36075,3,1672319423),(147255,3,36076,3,1672319423),(147256,3,36077,3,1672319423),(147257,3,36078,3,1672319423),(147258,3,36079,3,1672319423),(147259,3,36114,3,1672319423),(147260,3,36115,3,1672319423),(147261,3,36116,3,1672319423),(147262,3,36117,3,1672319423),(147263,3,36118,3,1672319423),(147264,3,36119,3,1672319423),(147265,3,36120,3,1672319423),(147266,3,36121,3,1672319423),(147267,3,36122,3,1672319423),(147268,3,36123,3,1672319423),(147269,3,39804,3,1672319423),(147270,3,39822,3,1672319423),(147271,3,39826,3,1672319423),(147272,3,40181,3,1672319423),(147273,3,40182,3,1672319423),(147274,3,40183,3,1672319423),(147275,3,40184,3,1672319423),(147276,3,43173,3,1672319423),(147277,3,43860,3,1672319423),(147278,3,43861,3,1672319423),(147279,3,43862,3,1672319423),(147280,3,43863,3,1672319423),(147281,3,43864,3,1672319423),(147282,3,43865,3,1672319423),(147283,3,43866,3,1672319423),(147284,3,43867,3,1672319423),(147285,3,43868,3,1672319423),(147286,3,43869,3,1672319423),(147287,3,43870,3,1672319423),(147288,3,43871,3,1672319423),(147289,3,43872,3,1672319423),(147290,3,43873,3,1672319423),(147291,3,44055,3,1672319423),(147292,1,10047,3,1672319423),(147293,1,10048,3,1672319423),(147294,1,10050,3,1672319423),(147295,1,10292,3,1672319423),(147296,1,10350,3,1672319423),(147297,1,10369,3,1672319423),(147298,1,10420,3,1672319423),(147299,1,10421,3,1672319423),(147300,1,10422,3,1672319423),(147301,1,10423,3,1672319423),(147302,1,10424,3,1672319423),(147303,1,10425,3,1672319423),(147304,1,10426,3,1672319423),(147305,1,10427,3,1672319423),(147306,1,10428,3,1672319423),(147307,1,10429,3,1672319423),(147308,1,10430,3,1672319423),(147309,1,10431,3,1672319423),(147310,1,10432,3,1672319423),(147311,1,10433,3,1672319423),(147312,1,1,1,1672347528),(147313,1,2,1,1672347537),(147314,1,3,1,1672347546),(147315,2,1,1,1672347564),(147316,2,2,1,1672347564),(147317,2,3,1,1672347581),(147318,2,4,1,1672347581),(147319,2,4,3,1672347586),(147320,2,5,1,1672347586),(147321,1,1,2,1672347602),(147322,1,1,2,1672347630),(147323,3,1,1,1672347663),(147324,1,1,2,1672347695),(147325,5,23095,1,1672347728),(147326,7,1,1,1672347728),(147327,5,23095,2,1672347751),(147328,7,1,3,1672347751),(147329,7,2,1,1672347751),(147330,3,2,1,1672384876),(147331,3,3,1,1672384876),(147332,3,4,1,1672384876),(147333,3,3,2,1672385530),(147334,3,4,2,1672385530),(147335,3,3,3,1672385530),(147336,3,4,3,1672385530),(147337,3,2,2,1672385530),(147338,3,2,3,1672385530),(147339,2,3,3,1672385530),(147340,2,5,3,1672385530),(147341,2,1,3,1672385530),(147342,2,2,3,1672385530),(147343,1,2,3,1672385530),(147344,1,3,3,1672385530),(147345,7,2,3,1672385537),(147346,5,23095,2,1672385537),(147347,5,23095,3,1672385537),(147348,3,1,2,1672385537),(147349,3,1,3,1672385537),(147350,1,1,3,1672385537),(147351,1,4,1,1672385547),(147352,1,5,1,1672385557),(147353,1,6,1,1672385649),(147354,1,7,1,1672385655),(147355,1,8,1,1672385660),(147356,1,9,1,1672385665),(147357,1,10,1,1672385673),(147358,1,11,1,1672385738),(147359,1,12,1,1672385745),(147360,1,13,1,1672385752),(147361,1,14,1,1672385758),(147362,1,4,2,1672385981),(147363,1,5,2,1672385991),(147364,1,15,1,1672386119),(147366,3,5,1,1672386240),(147367,3,6,1,1672386240),(147368,3,7,1,1672386258),(147369,3,8,1,1672386258),(147370,3,5,2,1672386262),(147371,3,6,2,1672386262),(147372,3,9,1,1672386429),(147373,3,10,1,1672386429),(147374,3,11,1,1672386429),(147375,3,12,1,1672386438),(147376,3,13,1,1672386438),(147377,3,14,1,1672386438),(147378,3,5,2,1672386448),(147379,3,6,2,1672386448),(147381,3,7,2,1672386457),(147382,3,8,2,1672386457),(147383,3,15,1,1672386631),(147384,3,16,1,1672386631),(147385,3,15,2,1672386646),(147386,3,16,2,1672386646),(147387,3,17,1,1672386653),(147388,3,18,1,1672386653),(147389,3,19,1,1672386674),(147390,3,20,1,1672386674),(147391,3,21,1,1672386674),(147392,3,22,1,1672386674),(147393,3,19,2,1672386679),(147394,3,20,2,1672386679),(147395,3,21,2,1672386679),(147396,3,22,2,1672386679),(147397,3,23,1,1672386687),(147398,3,24,1,1672386687),(147399,3,25,1,1672386687),(147400,3,26,1,1672386687),(147401,3,27,1,1672386705),(147402,3,28,1,1672386705),(147403,3,29,1,1672386705),(147404,3,30,1,1672386713),(147405,3,31,1,1672386713),(147406,3,32,1,1672386713),(147409,3,33,1,1672386868),(147410,3,34,1,1672386868),(147411,3,35,1,1672386868),(147412,3,36,1,1672386877),(147413,3,37,1,1672386877),(147414,3,38,1,1672386877),(147415,3,27,2,1672386890),(147416,3,28,2,1672386890),(147417,3,29,2,1672386890),(147418,3,30,2,1672386898),(147419,3,31,2,1672386898),(147420,3,32,2,1672386898),(147421,3,19,2,1672386914),(147422,3,20,2,1672386914),(147423,3,21,2,1672386914),(147424,3,22,2,1672386914),(147425,3,23,2,1672386921),(147426,3,24,2,1672386921),(147427,3,25,2,1672386921),(147428,3,26,2,1672386921),(147429,3,15,2,1672386932),(147430,3,16,2,1672386932),(147431,3,17,2,1672386937),(147432,3,18,2,1672386937),(147433,3,19,2,1672386969),(147434,3,20,2,1672386969),(147435,3,21,2,1672386969),(147436,3,22,2,1672386969),(147437,3,19,2,1672386978),(147438,3,20,2,1672386978),(147439,3,21,2,1672386978),(147440,3,22,2,1672386978),(147441,3,33,2,1672386996),(147442,3,34,2,1672386996),(147443,3,35,2,1672386996),(147444,3,36,2,1672387001),(147445,3,37,2,1672387001),(147446,3,38,2,1672387001),(147447,3,39,1,1672387043),(147448,3,40,1,1672387043),(147449,3,41,1,1672387043),(147450,3,42,1,1672387043),(147451,3,43,1,1672387043),(147452,3,44,1,1672387160),(147453,3,45,1,1672387160),(147454,3,46,1,1672387160),(147455,3,47,1,1672387160),(147456,3,48,1,1672387160),(147457,3,49,1,1672387177),(147458,3,50,1,1672387177),(147459,3,51,1,1672387177),(147460,3,52,1,1672387177),(147461,3,53,1,1672387177),(147462,3,54,1,1672387183),(147463,3,55,1,1672387183),(147464,3,56,1,1672387183),(147465,3,57,1,1672387183),(147466,3,58,1,1672387183),(147467,3,59,1,1672387250),(147468,3,60,1,1672387250),(147469,3,61,1,1672387250),(147470,3,62,1,1672387250),(147471,3,63,1,1672387250),(147472,3,64,1,1672387250),(147473,3,65,1,1672387257),(147474,3,66,1,1672387257),(147475,3,67,1,1672387257),(147476,3,68,1,1672387257),(147477,3,69,1,1672387257),(147478,3,70,1,1672387257),(147479,3,71,1,1672387332),(147480,3,72,1,1672387332),(147481,3,73,1,1672387332),(147482,3,74,1,1672387332),(147483,3,75,1,1672387339),(147484,3,76,1,1672387339),(147485,3,77,1,1672387339),(147486,3,78,1,1672387339),(147487,5,23096,1,1672387603),(147488,7,3,1,1672387603),(147489,5,23097,1,1672387603),(147490,7,4,1,1672387603),(147491,5,23098,1,1672387626),(147492,7,5,1,1672387626),(147493,7,6,1,1672387626),(147494,5,23099,1,1672387626),(147495,7,7,1,1672387626),(147496,7,8,1,1672387626),(147497,5,23100,1,1672387694),(147498,7,9,1,1672387694),(147499,5,23101,1,1672387694),(147500,7,10,1,1672387694),(147501,5,23102,1,1672387694),(147502,7,11,1,1672387694),(147503,5,23098,2,1672387705),(147504,5,23099,2,1672387705),(147505,5,23096,2,1672387710),(147506,5,23097,2,1672387710),(147507,5,23103,1,1672387743),(147508,7,12,1,1672387743),(147509,5,23104,1,1672387743),(147510,7,13,1,1672387743),(147511,5,23105,1,1672387743),(147512,7,14,1,1672387743),(147513,3,79,1,1672387831),(147514,3,80,1,1672387831),(147515,3,81,1,1672387831),(147516,3,82,1,1672387831),(147517,3,83,1,1672387831),(147518,3,84,1,1672387831),(147519,5,23106,1,1672387831),(147520,7,15,1,1672387831),(147521,5,23107,1,1672387831),(147522,7,16,1,1672387831),(147523,5,23108,1,1672387831),(147524,7,17,1,1672387831),(147525,5,23109,1,1672387861),(147526,7,18,1,1672387861),(147527,7,19,1,1672387861),(147528,5,23110,1,1672387861),(147529,7,20,1,1672387861),(147530,7,21,1,1672387861),(147531,5,23111,1,1672387861),(147532,7,22,1,1672387861),(147533,7,23,1,1672387861),(147534,5,23112,1,1672388264),(147535,7,24,1,1672388264),(147536,5,23113,1,1672388264),(147537,7,25,1,1672388264),(147538,5,23114,1,1672388264),(147539,7,26,1,1672388264),(147540,5,23115,1,1672388264),(147541,7,27,1,1672388264),(147542,5,23116,1,1672388264),(147543,5,23117,1,1672388264),(147544,7,28,1,1672388264),(147545,7,29,1,1672388264),(147546,5,23118,1,1672388293),(147547,7,30,1,1672388293),(147548,5,23119,1,1672388293),(147549,7,31,1,1672388293),(147550,5,23120,1,1672388293),(147551,7,32,1,1672388293),(147552,5,23121,1,1672388293),(147553,5,23122,1,1672388293),(147554,7,33,1,1672388293),(147555,7,34,1,1672388293),(147556,5,23123,1,1672388326),(147557,7,35,1,1672388326),(147558,7,36,1,1672388326),(147559,5,23124,1,1672388326),(147560,7,37,1,1672388326),(147561,7,38,1,1672388326),(147562,5,23125,1,1672388326),(147563,7,39,1,1672388326),(147564,7,40,1,1672388326),(147565,5,23126,1,1672388326),(147566,5,23127,1,1672388326),(147567,7,41,1,1672388326),(147568,7,42,1,1672388326),(147569,7,43,1,1672388326),(147570,7,44,1,1672388326),(147571,5,23128,1,1672388340),(147572,7,45,1,1672388340),(147573,5,23129,1,1672388340),(147574,7,46,1,1672388340),(147575,5,23130,1,1672388340),(147576,7,47,1,1672388340),(147577,5,23131,1,1672388340),(147578,5,23132,1,1672388340),(147579,7,48,1,1672388340),(147580,7,49,1,1672388340),(147581,5,23128,2,1672388375),(147582,5,23129,2,1672388375),(147583,5,23130,2,1672388375),(147584,5,23131,2,1672388375),(147585,5,23132,2,1672388375),(147586,5,23112,2,1672388388),(147587,5,23113,2,1672388388),(147588,5,23114,2,1672388388),(147589,5,23115,2,1672388388),(147590,5,23116,2,1672388388),(147591,5,23117,2,1672388388),(147592,5,23133,1,1672388436),(147593,7,50,1,1672388436),(147594,5,23134,1,1672388436),(147595,7,51,1,1672388436),(147596,5,23135,1,1672388436),(147597,5,23136,1,1672388436),(147598,7,52,1,1672388436),(147599,7,53,1,1672388436),(147600,5,23137,1,1672388469),(147601,7,54,1,1672388469),(147602,7,55,1,1672388469),(147603,7,56,1,1672388469),(147604,7,57,1,1672388469),(147605,5,23138,1,1672388469),(147606,7,58,1,1672388469),(147607,7,59,1,1672388469),(147608,7,60,1,1672388469),(147609,7,61,1,1672388469),(147610,5,23139,1,1672388469),(147611,5,23140,1,1672388469),(147612,7,62,1,1672388469),(147613,7,63,1,1672388469),(147614,7,64,1,1672388469),(147615,7,65,1,1672388469),(147616,7,66,1,1672388469),(147617,7,67,1,1672388469),(147618,7,68,1,1672388469),(147619,7,69,1,1672388469),(147620,5,23141,1,1672388523),(147621,7,70,1,1672388523),(147622,5,23142,1,1672388523),(147623,7,71,1,1672388523),(147624,5,23143,1,1672388523),(147625,5,23144,1,1672388523),(147626,7,72,1,1672388523),(147627,7,73,1,1672388523),(147628,5,23145,1,1672388556),(147629,7,74,1,1672388556),(147630,5,23146,1,1672388556),(147631,5,23147,1,1672388556),(147632,7,75,1,1672388556),(147633,7,76,1,1672388556),(147634,5,23148,1,1672388597),(147635,7,77,1,1672388597),(147636,7,78,1,1672388597),(147637,7,79,1,1672388597),(147638,7,80,1,1672388597),(147639,7,81,1,1672388597),(147640,7,82,1,1672388597),(147641,5,23149,1,1672388597),(147642,5,23150,1,1672388597),(147643,7,83,1,1672388597),(147644,7,84,1,1672388597),(147645,7,85,1,1672388597),(147646,7,86,1,1672388597),(147647,7,87,1,1672388597),(147648,7,88,1,1672388597),(147649,7,89,1,1672388597),(147650,7,90,1,1672388597),(147651,7,91,1,1672388597),(147652,7,92,1,1672388597),(147653,7,93,1,1672388597),(147654,7,94,1,1672388597),(147655,3,75,2,1672388926),(147656,3,76,2,1672388926),(147657,3,77,2,1672388926),(147658,3,78,2,1672388926),(147659,3,5,2,1672388954),(147660,3,7,2,1672388954),(147661,3,6,2,1672388954),(147662,3,8,2,1672388954),(147663,3,9,2,1672388966),(147664,3,12,2,1672388966),(147665,3,10,2,1672388966),(147666,3,11,2,1672388966),(147667,3,13,2,1672388966),(147668,3,14,2,1672388966),(147669,3,27,2,1672388994),(147670,3,30,2,1672388994),(147671,3,28,2,1672388994),(147672,3,31,2,1672388994),(147673,3,29,2,1672388994),(147674,3,32,2,1672388994),(147675,3,33,2,1672389004),(147676,3,36,2,1672389004),(147677,3,34,2,1672389004),(147678,3,37,2,1672389004),(147679,3,79,2,1672389004),(147680,3,80,2,1672389004),(147681,3,35,2,1672389004),(147682,3,38,2,1672389004),(147683,3,81,2,1672389004),(147684,3,82,2,1672389004),(147685,3,83,2,1672389004),(147686,3,84,2,1672389004),(147687,3,49,2,1672389027),(147688,3,54,2,1672389027),(147689,3,50,2,1672389027),(147690,3,55,2,1672389027),(147691,3,51,2,1672389027),(147692,3,56,2,1672389027),(147693,3,52,2,1672389027),(147694,3,53,2,1672389027),(147695,3,57,2,1672389027),(147696,3,58,2,1672389027),(147697,3,59,2,1672389035),(147698,3,65,2,1672389035),(147699,3,60,2,1672389035),(147700,3,66,2,1672389035),(147701,3,61,2,1672389035),(147702,3,67,2,1672389035),(147703,3,62,2,1672389035),(147704,3,68,2,1672389035),(147705,3,63,2,1672389035),(147706,3,64,2,1672389035),(147707,3,69,2,1672389035),(147708,3,70,2,1672389035),(147709,3,71,2,1672389045),(147710,3,72,2,1672389045),(147711,3,73,2,1672389045),(147712,3,74,2,1672389045),(147713,7,15,3,1672389945),(147714,7,16,3,1672389945),(147715,7,17,3,1672389945),(147716,5,23106,2,1672389945),(147717,5,23107,2,1672389945),(147718,5,23108,2,1672389945),(147719,5,23106,3,1672389945),(147720,5,23107,3,1672389945),(147721,5,23108,3,1672389945),(147722,7,18,3,1672389945),(147723,7,19,3,1672389945),(147724,7,20,3,1672389945),(147725,7,21,3,1672389945),(147726,7,22,3,1672389945),(147727,7,23,3,1672389945),(147728,5,23109,2,1672389945),(147729,5,23110,2,1672389945),(147730,5,23111,2,1672389945),(147731,5,23109,3,1672389945),(147732,5,23110,3,1672389945),(147733,5,23111,3,1672389945),(147734,3,79,2,1672389945),(147735,3,80,2,1672389945),(147736,3,81,2,1672389945),(147737,3,82,2,1672389945),(147738,3,83,2,1672389945),(147739,3,84,2,1672389945),(147740,3,79,3,1672389945),(147741,3,80,3,1672389945),(147742,3,81,3,1672389945),(147743,3,82,3,1672389945),(147744,3,83,3,1672389945),(147745,3,84,3,1672389945); /*!40000 ALTER TABLE `changelog` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `conditions` -- DROP TABLE IF EXISTS `conditions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `conditions` ( `conditionid` bigint unsigned NOT NULL, `actionid` bigint unsigned NOT NULL, `conditiontype` int NOT NULL DEFAULT '0', `operator` int NOT NULL DEFAULT '0', `value` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `value2` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`conditionid`), KEY `conditions_1` (`actionid`), CONSTRAINT `c_conditions_1` FOREIGN KEY (`actionid`) REFERENCES `actions` (`actionid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `conditions` -- LOCK TABLES `conditions` WRITE; /*!40000 ALTER TABLE `conditions` DISABLE KEYS */; INSERT INTO `conditions` VALUES (2,2,10,0,'0',''),(3,2,8,0,'9',''),(4,2,12,2,'Linux',''),(6,4,23,0,'0',''),(7,5,23,0,'2',''),(8,6,23,0,'4',''); /*!40000 ALTER TABLE `conditions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `config` -- DROP TABLE IF EXISTS `config`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `config` ( `configid` bigint unsigned NOT NULL, `work_period` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '1-5,09:00-18:00', `alert_usrgrpid` bigint unsigned DEFAULT NULL, `default_theme` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'blue-theme', `authentication_type` int NOT NULL DEFAULT '0', `discovery_groupid` bigint unsigned DEFAULT NULL, `max_in_table` int NOT NULL DEFAULT '50', `search_limit` int NOT NULL DEFAULT '1000', `severity_color_0` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '97AAB3', `severity_color_1` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '7499FF', `severity_color_2` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'FFC859', `severity_color_3` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'FFA059', `severity_color_4` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'E97659', `severity_color_5` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'E45959', `severity_name_0` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'Not classified', `severity_name_1` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'Information', `severity_name_2` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'Warning', `severity_name_3` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'Average', `severity_name_4` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'High', `severity_name_5` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'Disaster', `ok_period` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '5m', `blink_period` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '2m', `problem_unack_color` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'CC0000', `problem_ack_color` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'CC0000', `ok_unack_color` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '009900', `ok_ack_color` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '009900', `problem_unack_style` int NOT NULL DEFAULT '1', `problem_ack_style` int NOT NULL DEFAULT '1', `ok_unack_style` int NOT NULL DEFAULT '1', `ok_ack_style` int NOT NULL DEFAULT '1', `snmptrap_logging` int NOT NULL DEFAULT '1', `server_check_interval` int NOT NULL DEFAULT '10', `hk_events_mode` int NOT NULL DEFAULT '1', `hk_events_trigger` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '365d', `hk_events_internal` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '1d', `hk_events_discovery` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '1d', `hk_events_autoreg` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '1d', `hk_services_mode` int NOT NULL DEFAULT '1', `hk_services` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '365d', `hk_audit_mode` int NOT NULL DEFAULT '1', `hk_audit` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '365d', `hk_sessions_mode` int NOT NULL DEFAULT '1', `hk_sessions` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '365d', `hk_history_mode` int NOT NULL DEFAULT '1', `hk_history_global` int NOT NULL DEFAULT '0', `hk_history` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '90d', `hk_trends_mode` int NOT NULL DEFAULT '1', `hk_trends_global` int NOT NULL DEFAULT '0', `hk_trends` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '365d', `default_inventory_mode` int NOT NULL DEFAULT '-1', `custom_color` int NOT NULL DEFAULT '0', `http_auth_enabled` int NOT NULL DEFAULT '0', `http_login_form` int NOT NULL DEFAULT '0', `http_strip_domains` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `http_case_sensitive` int NOT NULL DEFAULT '1', `ldap_auth_enabled` int NOT NULL DEFAULT '0', `ldap_case_sensitive` int NOT NULL DEFAULT '1', `db_extension` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `autoreg_tls_accept` int NOT NULL DEFAULT '1', `compression_status` int NOT NULL DEFAULT '0', `compress_older` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '7d', `instanceid` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `saml_auth_enabled` int NOT NULL DEFAULT '0', `saml_case_sensitive` int NOT NULL DEFAULT '0', `default_lang` varchar(5) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'en_US', `default_timezone` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'system', `login_attempts` int NOT NULL DEFAULT '5', `login_block` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '30s', `show_technical_errors` int NOT NULL DEFAULT '0', `validate_uri_schemes` int NOT NULL DEFAULT '1', `uri_valid_schemes` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'http,https,ftp,file,mailto,tel,ssh', `x_frame_options` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'SAMEORIGIN', `iframe_sandboxing_enabled` int NOT NULL DEFAULT '1', `iframe_sandboxing_exceptions` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `max_overview_table_size` int NOT NULL DEFAULT '50', `history_period` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '24h', `period_default` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '1h', `max_period` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '2y', `socket_timeout` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '3s', `connect_timeout` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '3s', `media_type_test_timeout` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '65s', `script_timeout` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '60s', `item_test_timeout` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '60s', `session_key` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `report_test_timeout` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '60s', `dbversion_status` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `hk_events_service` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '1d', `passwd_min_length` int NOT NULL DEFAULT '8', `passwd_check_rules` int NOT NULL DEFAULT '8', `auditlog_enabled` int NOT NULL DEFAULT '1', `ha_failover_delay` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '1m', `geomaps_tile_provider` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `geomaps_tile_url` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `geomaps_max_zoom` int NOT NULL DEFAULT '0', `geomaps_attribution` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `vault_provider` int NOT NULL DEFAULT '0', `ldap_userdirectoryid` bigint unsigned DEFAULT NULL, `server_status` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `jit_provision_interval` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '1h', `saml_jit_status` int NOT NULL DEFAULT '0', `ldap_jit_status` int NOT NULL DEFAULT '0', `disabled_usrgrpid` bigint unsigned DEFAULT NULL, PRIMARY KEY (`configid`), KEY `config_1` (`alert_usrgrpid`), KEY `config_2` (`discovery_groupid`), KEY `config_3` (`ldap_userdirectoryid`), KEY `config_4` (`disabled_usrgrpid`), CONSTRAINT `c_config_1` FOREIGN KEY (`alert_usrgrpid`) REFERENCES `usrgrp` (`usrgrpid`), CONSTRAINT `c_config_2` FOREIGN KEY (`discovery_groupid`) REFERENCES `hstgrp` (`groupid`), CONSTRAINT `c_config_3` FOREIGN KEY (`ldap_userdirectoryid`) REFERENCES `userdirectory` (`userdirectoryid`), CONSTRAINT `c_config_4` FOREIGN KEY (`disabled_usrgrpid`) REFERENCES `usrgrp` (`usrgrpid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `config` -- LOCK TABLES `config` WRITE; /*!40000 ALTER TABLE `config` DISABLE KEYS */; INSERT INTO `config` VALUES (1,'1-5,09:00-18:00',7,'blue-theme',0,5,50,1000,'97AAB3','7499FF','FFC859','FFA059','E97659','E45959','Not classified','Information','Warning','Average','High','Disaster','5m','2m','CC0000','CC0000','009900','009900',1,1,1,1,1,10,1,'365d','1d','1d','1d',1,'365d',1,'365d',1,'365d',1,0,'90d',1,0,'365d',-1,0,0,0,'',1,0,1,'',1,0,'7d','',0,0,'en_US','system',5,'30s',0,1,'http,https,ftp,file,mailto,tel,ssh','SAMEORIGIN',1,'',50,'24h','1h','2y','3s','3s','65s','60s','60s','2e2a68cf25d26a34bf4e52a6ee9de95e','','60s','','1d',8,8,1,'1m','OpenStreetMap.Mapnik','',0,'',0,NULL,'','1h',0,0,NULL); /*!40000 ALTER TABLE `config` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `config_autoreg_tls` -- DROP TABLE IF EXISTS `config_autoreg_tls`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `config_autoreg_tls` ( `autoreg_tlsid` bigint unsigned NOT NULL, `tls_psk_identity` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `tls_psk` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`autoreg_tlsid`), UNIQUE KEY `config_autoreg_tls_1` (`tls_psk_identity`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `config_autoreg_tls` -- LOCK TABLES `config_autoreg_tls` WRITE; /*!40000 ALTER TABLE `config_autoreg_tls` DISABLE KEYS */; INSERT INTO `config_autoreg_tls` VALUES (1,'',''); /*!40000 ALTER TABLE `config_autoreg_tls` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `corr_condition` -- DROP TABLE IF EXISTS `corr_condition`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `corr_condition` ( `corr_conditionid` bigint unsigned NOT NULL, `correlationid` bigint unsigned NOT NULL, `type` int NOT NULL DEFAULT '0', PRIMARY KEY (`corr_conditionid`), KEY `corr_condition_1` (`correlationid`), CONSTRAINT `c_corr_condition_1` FOREIGN KEY (`correlationid`) REFERENCES `correlation` (`correlationid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `corr_condition` -- LOCK TABLES `corr_condition` WRITE; /*!40000 ALTER TABLE `corr_condition` DISABLE KEYS */; /*!40000 ALTER TABLE `corr_condition` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `corr_condition_group` -- DROP TABLE IF EXISTS `corr_condition_group`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `corr_condition_group` ( `corr_conditionid` bigint unsigned NOT NULL, `operator` int NOT NULL DEFAULT '0', `groupid` bigint unsigned NOT NULL, PRIMARY KEY (`corr_conditionid`), KEY `corr_condition_group_1` (`groupid`), CONSTRAINT `c_corr_condition_group_1` FOREIGN KEY (`corr_conditionid`) REFERENCES `corr_condition` (`corr_conditionid`) ON DELETE CASCADE, CONSTRAINT `c_corr_condition_group_2` FOREIGN KEY (`groupid`) REFERENCES `hstgrp` (`groupid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `corr_condition_group` -- LOCK TABLES `corr_condition_group` WRITE; /*!40000 ALTER TABLE `corr_condition_group` DISABLE KEYS */; /*!40000 ALTER TABLE `corr_condition_group` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `corr_condition_tag` -- DROP TABLE IF EXISTS `corr_condition_tag`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `corr_condition_tag` ( `corr_conditionid` bigint unsigned NOT NULL, `tag` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`corr_conditionid`), CONSTRAINT `c_corr_condition_tag_1` FOREIGN KEY (`corr_conditionid`) REFERENCES `corr_condition` (`corr_conditionid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `corr_condition_tag` -- LOCK TABLES `corr_condition_tag` WRITE; /*!40000 ALTER TABLE `corr_condition_tag` DISABLE KEYS */; /*!40000 ALTER TABLE `corr_condition_tag` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `corr_condition_tagpair` -- DROP TABLE IF EXISTS `corr_condition_tagpair`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `corr_condition_tagpair` ( `corr_conditionid` bigint unsigned NOT NULL, `oldtag` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `newtag` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`corr_conditionid`), CONSTRAINT `c_corr_condition_tagpair_1` FOREIGN KEY (`corr_conditionid`) REFERENCES `corr_condition` (`corr_conditionid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `corr_condition_tagpair` -- LOCK TABLES `corr_condition_tagpair` WRITE; /*!40000 ALTER TABLE `corr_condition_tagpair` DISABLE KEYS */; /*!40000 ALTER TABLE `corr_condition_tagpair` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `corr_condition_tagvalue` -- DROP TABLE IF EXISTS `corr_condition_tagvalue`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `corr_condition_tagvalue` ( `corr_conditionid` bigint unsigned NOT NULL, `tag` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `operator` int NOT NULL DEFAULT '0', `value` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`corr_conditionid`), CONSTRAINT `c_corr_condition_tagvalue_1` FOREIGN KEY (`corr_conditionid`) REFERENCES `corr_condition` (`corr_conditionid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `corr_condition_tagvalue` -- LOCK TABLES `corr_condition_tagvalue` WRITE; /*!40000 ALTER TABLE `corr_condition_tagvalue` DISABLE KEYS */; /*!40000 ALTER TABLE `corr_condition_tagvalue` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `corr_operation` -- DROP TABLE IF EXISTS `corr_operation`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `corr_operation` ( `corr_operationid` bigint unsigned NOT NULL, `correlationid` bigint unsigned NOT NULL, `type` int NOT NULL DEFAULT '0', PRIMARY KEY (`corr_operationid`), KEY `corr_operation_1` (`correlationid`), CONSTRAINT `c_corr_operation_1` FOREIGN KEY (`correlationid`) REFERENCES `correlation` (`correlationid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `corr_operation` -- LOCK TABLES `corr_operation` WRITE; /*!40000 ALTER TABLE `corr_operation` DISABLE KEYS */; /*!40000 ALTER TABLE `corr_operation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `correlation` -- DROP TABLE IF EXISTS `correlation`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `correlation` ( `correlationid` bigint unsigned NOT NULL, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `evaltype` int NOT NULL DEFAULT '0', `status` int NOT NULL DEFAULT '0', `formula` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`correlationid`), UNIQUE KEY `correlation_2` (`name`), KEY `correlation_1` (`status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `correlation` -- LOCK TABLES `correlation` WRITE; /*!40000 ALTER TABLE `correlation` DISABLE KEYS */; /*!40000 ALTER TABLE `correlation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dashboard` -- DROP TABLE IF EXISTS `dashboard`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `dashboard` ( `dashboardid` bigint unsigned NOT NULL, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `userid` bigint unsigned DEFAULT NULL, `private` int NOT NULL DEFAULT '1', `templateid` bigint unsigned DEFAULT NULL, `display_period` int NOT NULL DEFAULT '30', `auto_start` int NOT NULL DEFAULT '1', `uuid` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`dashboardid`), KEY `dashboard_1` (`userid`), KEY `dashboard_2` (`templateid`), CONSTRAINT `c_dashboard_1` FOREIGN KEY (`userid`) REFERENCES `users` (`userid`), CONSTRAINT `c_dashboard_2` FOREIGN KEY (`templateid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dashboard` -- LOCK TABLES `dashboard` WRITE; /*!40000 ALTER TABLE `dashboard` DISABLE KEYS */; INSERT INTO `dashboard` VALUES (1,'Global view',1,0,NULL,30,1,''),(2,'Zabbix server health',1,1,NULL,30,1,''),(57,'Zabbix server',1,1,NULL,30,1,''),(58,'t1_1',NULL,1,6,30,1,'ca1874005633420fb7a102de7dc2ffe7'),(59,'t1_2',NULL,1,6,30,1,'c9fa84fe474b4631908ecc39b9b8b983'),(60,'t1_3',NULL,1,6,30,1,'007152ae172d409c844b456c7711a24d'),(61,'t2_1',NULL,1,7,30,1,'823cab9175314ab388318190c4529a9c'),(62,'t2_2',NULL,1,7,30,1,'8c80f2b035d047869021272fa547ee1a'),(63,'t2_3',NULL,1,7,30,1,'58feed816e7648bdb23cc59b4353f3a4'),(64,'t3_1',NULL,1,8,30,1,'fd4515aade0144acba62d3b36d53da6b'),(65,'t3_2',NULL,1,8,30,1,'24d94fbc340c445eb83a436f76dbcfe0'),(66,'t3_3',NULL,1,8,30,1,'bffd5541610e433e90e10c35e56cd3dc'),(67,'t4_1',NULL,1,9,30,1,'3224835a9cbf40d7a077d1cc9433ad65'),(68,'t4_2',NULL,1,9,30,1,'2a813c3bad4a48f9b778890cbdf6fb17'),(69,'t4_3',NULL,1,9,30,1,'6e7734bb107249c2b46a4ca3245c88c6'),(70,'t5_1',NULL,1,10,30,1,'156b22e22e2a46bb99a5cf1d4f7c3e07'),(71,'t5_2',NULL,1,10,30,1,'484b8022e817474e8b555cbd4eed6d30'),(72,'t5_3',NULL,1,10,30,1,'c1957d2208f44561abe0350081d7182a'),(73,'t6_1',NULL,1,11,30,1,'f6bb49da3a8d48bdb3c79dceb3202b6d'),(74,'t6_2',NULL,1,11,30,1,'63ea7334f9aa43c0a6b3572a7da908de'),(75,'t6_3',NULL,1,11,30,1,'ef5995be4ddb4877bf37bd5aa4e4e148'),(76,'t7_1',NULL,1,12,30,1,'13e50f68bd4b41e5afe44aac517ff989'),(77,'t7_2',NULL,1,12,30,1,'1088bd2ca08845478aeeac3813e17a2b'),(78,'t7_3',NULL,1,12,30,1,'797249a0beeb4f99a549aeb4bcd92e48'),(79,'t8_1',NULL,1,13,30,1,'343c6e486b3a4ff79a6050ffe9e8b23c'),(80,'t8_2',NULL,1,13,30,1,'b0595596f2044d9caeba93dbd355f489'),(81,'t8_3',NULL,1,13,30,1,'742afc18887247ed8fdd5eb8f33b8f56'),(82,'t9_1',NULL,1,14,30,1,'b1c077d19c194124b46fedffbc3ad29a'),(83,'t9_2',NULL,1,14,30,1,'c802a70b8f3e4b8f91e0f1ccc379beea'),(84,'t9_3',NULL,1,14,30,1,'c99367ebae2c4ad28766ee579df51952'),(85,'t10_1',NULL,1,15,30,1,'8feb14ec4c664a19b289cbd091706943'),(86,'t10_2',NULL,1,15,30,1,'babb87dae7b4483bb638f6c751438cef'),(87,'t10_3',NULL,1,15,30,1,'70a54fc51ff44060bb0959f24e66f5da'); /*!40000 ALTER TABLE `dashboard` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dashboard_page` -- DROP TABLE IF EXISTS `dashboard_page`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `dashboard_page` ( `dashboard_pageid` bigint unsigned NOT NULL, `dashboardid` bigint unsigned NOT NULL, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `display_period` int NOT NULL DEFAULT '0', `sortorder` int NOT NULL DEFAULT '0', PRIMARY KEY (`dashboard_pageid`), KEY `dashboard_page_1` (`dashboardid`), CONSTRAINT `c_dashboard_page_1` FOREIGN KEY (`dashboardid`) REFERENCES `dashboard` (`dashboardid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dashboard_page` -- LOCK TABLES `dashboard_page` WRITE; /*!40000 ALTER TABLE `dashboard_page` DISABLE KEYS */; INSERT INTO `dashboard_page` VALUES (1,1,'',0,0),(2,2,'',0,0),(57,57,'',0,0),(58,58,'',0,0),(59,59,'',0,0),(60,60,'',0,0),(61,61,'',0,0),(62,62,'',0,0),(63,63,'',0,0),(64,64,'',0,0),(65,65,'',0,0),(66,66,'',0,0),(67,67,'',0,0),(68,68,'',0,0),(69,69,'',0,0),(70,70,'',0,0),(71,71,'',0,0),(72,72,'',0,0),(73,73,'',0,0),(74,74,'',0,0),(75,75,'',0,0),(76,76,'',0,0),(77,77,'',0,0),(78,78,'',0,0),(79,79,'',0,0),(80,80,'',0,0),(81,81,'',0,0),(82,82,'',0,0),(83,83,'',0,0),(84,84,'',0,0),(85,85,'',0,0),(86,86,'',0,0),(87,87,'',0,0),(88,58,'p2',0,1),(89,59,'p2',0,1),(90,61,'p2',0,1),(91,62,'p2',0,1),(92,67,'p2',0,1),(93,68,'p2',0,1),(94,70,'p2',0,1),(95,71,'p2',0,1),(96,73,'p2',0,1),(97,74,'p2',0,1),(98,76,'p2',0,1),(99,77,'p2',0,1),(100,79,'p2',0,1),(101,80,'p2',0,1),(102,82,'p2',0,1),(103,83,'p2',0,1),(104,85,'p2',0,1),(105,86,'p2',0,1),(106,58,'p3',0,2),(107,59,'p3',0,2),(108,61,'p3',0,2),(109,62,'p3',0,2),(110,64,'p2',0,1),(111,64,'p3',0,2),(112,65,'p2',0,1),(113,65,'p3',0,2),(114,67,'p3',0,2),(115,68,'p3',0,2),(116,70,'p3',0,2),(117,71,'p3',0,2),(118,73,'p3',0,2),(119,74,'p3',0,2),(120,76,'p3',0,2),(121,77,'p3',0,2),(122,79,'p3',0,2),(123,80,'p3',0,2),(124,82,'p3',0,2),(125,83,'p3',0,2),(126,85,'p3',0,2),(127,86,'p3',0,2); /*!40000 ALTER TABLE `dashboard_page` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dashboard_user` -- DROP TABLE IF EXISTS `dashboard_user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `dashboard_user` ( `dashboard_userid` bigint unsigned NOT NULL, `dashboardid` bigint unsigned NOT NULL, `userid` bigint unsigned NOT NULL, `permission` int NOT NULL DEFAULT '2', PRIMARY KEY (`dashboard_userid`), UNIQUE KEY `dashboard_user_1` (`dashboardid`,`userid`), KEY `c_dashboard_user_2` (`userid`), CONSTRAINT `c_dashboard_user_1` FOREIGN KEY (`dashboardid`) REFERENCES `dashboard` (`dashboardid`) ON DELETE CASCADE, CONSTRAINT `c_dashboard_user_2` FOREIGN KEY (`userid`) REFERENCES `users` (`userid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dashboard_user` -- LOCK TABLES `dashboard_user` WRITE; /*!40000 ALTER TABLE `dashboard_user` DISABLE KEYS */; /*!40000 ALTER TABLE `dashboard_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dashboard_usrgrp` -- DROP TABLE IF EXISTS `dashboard_usrgrp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `dashboard_usrgrp` ( `dashboard_usrgrpid` bigint unsigned NOT NULL, `dashboardid` bigint unsigned NOT NULL, `usrgrpid` bigint unsigned NOT NULL, `permission` int NOT NULL DEFAULT '2', PRIMARY KEY (`dashboard_usrgrpid`), UNIQUE KEY `dashboard_usrgrp_1` (`dashboardid`,`usrgrpid`), KEY `c_dashboard_usrgrp_2` (`usrgrpid`), CONSTRAINT `c_dashboard_usrgrp_1` FOREIGN KEY (`dashboardid`) REFERENCES `dashboard` (`dashboardid`) ON DELETE CASCADE, CONSTRAINT `c_dashboard_usrgrp_2` FOREIGN KEY (`usrgrpid`) REFERENCES `usrgrp` (`usrgrpid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dashboard_usrgrp` -- LOCK TABLES `dashboard_usrgrp` WRITE; /*!40000 ALTER TABLE `dashboard_usrgrp` DISABLE KEYS */; INSERT INTO `dashboard_usrgrp` VALUES (1,2,7,3); /*!40000 ALTER TABLE `dashboard_usrgrp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dbversion` -- DROP TABLE IF EXISTS `dbversion`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `dbversion` ( `dbversionid` bigint unsigned NOT NULL, `mandatory` int NOT NULL DEFAULT '0', `optional` int NOT NULL DEFAULT '0', PRIMARY KEY (`dbversionid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dbversion` -- LOCK TABLES `dbversion` WRITE; /*!40000 ALTER TABLE `dbversion` DISABLE KEYS */; INSERT INTO `dbversion` VALUES (1,6030158,6030158); /*!40000 ALTER TABLE `dbversion` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dchecks` -- DROP TABLE IF EXISTS `dchecks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `dchecks` ( `dcheckid` bigint unsigned NOT NULL, `druleid` bigint unsigned NOT NULL, `type` int NOT NULL DEFAULT '0', `key_` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `snmp_community` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `ports` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '0', `snmpv3_securityname` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `snmpv3_securitylevel` int NOT NULL DEFAULT '0', `snmpv3_authpassphrase` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `snmpv3_privpassphrase` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `uniq` int NOT NULL DEFAULT '0', `snmpv3_authprotocol` int NOT NULL DEFAULT '0', `snmpv3_privprotocol` int NOT NULL DEFAULT '0', `snmpv3_contextname` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `host_source` int NOT NULL DEFAULT '1', `name_source` int NOT NULL DEFAULT '0', PRIMARY KEY (`dcheckid`), KEY `dchecks_1` (`druleid`,`host_source`,`name_source`), CONSTRAINT `c_dchecks_1` FOREIGN KEY (`druleid`) REFERENCES `drules` (`druleid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dchecks` -- LOCK TABLES `dchecks` WRITE; /*!40000 ALTER TABLE `dchecks` DISABLE KEYS */; INSERT INTO `dchecks` VALUES (2,2,9,'system.uname','','10050','',0,'','',0,0,0,'',1,0); /*!40000 ALTER TABLE `dchecks` ENABLE KEYS */; UNLOCK TABLES; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `dchecks_insert` AFTER INSERT ON `dchecks` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (10,new.dcheckid,1,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `dchecks_update` AFTER UPDATE ON `dchecks` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (10,old.dcheckid,2,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `dchecks_delete` BEFORE DELETE ON `dchecks` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (10,old.dcheckid,3,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; -- -- Table structure for table `dhosts` -- DROP TABLE IF EXISTS `dhosts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `dhosts` ( `dhostid` bigint unsigned NOT NULL, `druleid` bigint unsigned NOT NULL, `status` int NOT NULL DEFAULT '0', `lastup` int NOT NULL DEFAULT '0', `lastdown` int NOT NULL DEFAULT '0', PRIMARY KEY (`dhostid`), KEY `dhosts_1` (`druleid`), CONSTRAINT `c_dhosts_1` FOREIGN KEY (`druleid`) REFERENCES `drules` (`druleid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dhosts` -- LOCK TABLES `dhosts` WRITE; /*!40000 ALTER TABLE `dhosts` DISABLE KEYS */; /*!40000 ALTER TABLE `dhosts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `drules` -- DROP TABLE IF EXISTS `drules`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `drules` ( `druleid` bigint unsigned NOT NULL, `proxy_hostid` bigint unsigned DEFAULT NULL, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `iprange` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `delay` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '1h', `status` int NOT NULL DEFAULT '0', PRIMARY KEY (`druleid`), UNIQUE KEY `drules_2` (`name`), KEY `drules_1` (`proxy_hostid`), CONSTRAINT `c_drules_1` FOREIGN KEY (`proxy_hostid`) REFERENCES `hosts` (`hostid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `drules` -- LOCK TABLES `drules` WRITE; /*!40000 ALTER TABLE `drules` DISABLE KEYS */; INSERT INTO `drules` VALUES (2,NULL,'Local network','192.168.0.1-254','1h',1); /*!40000 ALTER TABLE `drules` ENABLE KEYS */; UNLOCK TABLES; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `drules_insert` AFTER INSERT ON `drules` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (9,new.druleid,1,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `drules_update` AFTER UPDATE ON `drules` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (9,old.druleid,2,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `drules_delete` BEFORE DELETE ON `drules` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (9,old.druleid,3,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; -- -- Table structure for table `dservices` -- DROP TABLE IF EXISTS `dservices`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `dservices` ( `dserviceid` bigint unsigned NOT NULL, `dhostid` bigint unsigned NOT NULL, `value` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `port` int NOT NULL DEFAULT '0', `status` int NOT NULL DEFAULT '0', `lastup` int NOT NULL DEFAULT '0', `lastdown` int NOT NULL DEFAULT '0', `dcheckid` bigint unsigned NOT NULL, `ip` varchar(39) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `dns` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`dserviceid`), UNIQUE KEY `dservices_1` (`dcheckid`,`ip`,`port`), KEY `dservices_2` (`dhostid`), CONSTRAINT `c_dservices_1` FOREIGN KEY (`dhostid`) REFERENCES `dhosts` (`dhostid`) ON DELETE CASCADE, CONSTRAINT `c_dservices_2` FOREIGN KEY (`dcheckid`) REFERENCES `dchecks` (`dcheckid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dservices` -- LOCK TABLES `dservices` WRITE; /*!40000 ALTER TABLE `dservices` DISABLE KEYS */; /*!40000 ALTER TABLE `dservices` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `escalations` -- DROP TABLE IF EXISTS `escalations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `escalations` ( `escalationid` bigint unsigned NOT NULL, `actionid` bigint unsigned NOT NULL, `triggerid` bigint unsigned DEFAULT NULL, `eventid` bigint unsigned DEFAULT NULL, `r_eventid` bigint unsigned DEFAULT NULL, `nextcheck` int NOT NULL DEFAULT '0', `esc_step` int NOT NULL DEFAULT '0', `status` int NOT NULL DEFAULT '0', `itemid` bigint unsigned DEFAULT NULL, `acknowledgeid` bigint unsigned DEFAULT NULL, `servicealarmid` bigint unsigned DEFAULT NULL, `serviceid` bigint unsigned DEFAULT NULL, PRIMARY KEY (`escalationid`), UNIQUE KEY `escalations_1` (`triggerid`,`itemid`,`serviceid`,`escalationid`), KEY `escalations_2` (`eventid`), KEY `escalations_3` (`nextcheck`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `escalations` -- LOCK TABLES `escalations` WRITE; /*!40000 ALTER TABLE `escalations` DISABLE KEYS */; /*!40000 ALTER TABLE `escalations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `event_recovery` -- DROP TABLE IF EXISTS `event_recovery`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `event_recovery` ( `eventid` bigint unsigned NOT NULL, `r_eventid` bigint unsigned NOT NULL, `c_eventid` bigint unsigned DEFAULT NULL, `correlationid` bigint unsigned DEFAULT NULL, `userid` bigint unsigned DEFAULT NULL, PRIMARY KEY (`eventid`), KEY `event_recovery_1` (`r_eventid`), KEY `event_recovery_2` (`c_eventid`), CONSTRAINT `c_event_recovery_1` FOREIGN KEY (`eventid`) REFERENCES `events` (`eventid`) ON DELETE CASCADE, CONSTRAINT `c_event_recovery_2` FOREIGN KEY (`r_eventid`) REFERENCES `events` (`eventid`) ON DELETE CASCADE, CONSTRAINT `c_event_recovery_3` FOREIGN KEY (`c_eventid`) REFERENCES `events` (`eventid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `event_recovery` -- LOCK TABLES `event_recovery` WRITE; /*!40000 ALTER TABLE `event_recovery` DISABLE KEYS */; /*!40000 ALTER TABLE `event_recovery` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `event_suppress` -- DROP TABLE IF EXISTS `event_suppress`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `event_suppress` ( `event_suppressid` bigint unsigned NOT NULL, `eventid` bigint unsigned NOT NULL, `maintenanceid` bigint unsigned DEFAULT NULL, `suppress_until` int NOT NULL DEFAULT '0', `userid` bigint unsigned DEFAULT NULL, PRIMARY KEY (`event_suppressid`), UNIQUE KEY `event_suppress_1` (`eventid`,`maintenanceid`), KEY `event_suppress_2` (`suppress_until`), KEY `event_suppress_3` (`maintenanceid`), KEY `c_event_suppress_3` (`userid`), CONSTRAINT `c_event_suppress_1` FOREIGN KEY (`eventid`) REFERENCES `events` (`eventid`) ON DELETE CASCADE, CONSTRAINT `c_event_suppress_2` FOREIGN KEY (`maintenanceid`) REFERENCES `maintenances` (`maintenanceid`) ON DELETE CASCADE, CONSTRAINT `c_event_suppress_3` FOREIGN KEY (`userid`) REFERENCES `users` (`userid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `event_suppress` -- LOCK TABLES `event_suppress` WRITE; /*!40000 ALTER TABLE `event_suppress` DISABLE KEYS */; /*!40000 ALTER TABLE `event_suppress` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `event_symptom` -- DROP TABLE IF EXISTS `event_symptom`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `event_symptom` ( `eventid` bigint unsigned NOT NULL, `cause_eventid` bigint unsigned NOT NULL, PRIMARY KEY (`eventid`), KEY `event_symptom_1` (`cause_eventid`), CONSTRAINT `c_event_symptom_1` FOREIGN KEY (`eventid`) REFERENCES `events` (`eventid`) ON DELETE CASCADE, CONSTRAINT `c_event_symptom_2` FOREIGN KEY (`cause_eventid`) REFERENCES `events` (`eventid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `event_symptom` -- LOCK TABLES `event_symptom` WRITE; /*!40000 ALTER TABLE `event_symptom` DISABLE KEYS */; /*!40000 ALTER TABLE `event_symptom` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `event_tag` -- DROP TABLE IF EXISTS `event_tag`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `event_tag` ( `eventtagid` bigint unsigned NOT NULL, `eventid` bigint unsigned NOT NULL, `tag` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `value` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`eventtagid`), KEY `event_tag_1` (`eventid`), CONSTRAINT `c_event_tag_1` FOREIGN KEY (`eventid`) REFERENCES `events` (`eventid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `event_tag` -- LOCK TABLES `event_tag` WRITE; /*!40000 ALTER TABLE `event_tag` DISABLE KEYS */; /*!40000 ALTER TABLE `event_tag` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `events` -- DROP TABLE IF EXISTS `events`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `events` ( `eventid` bigint unsigned NOT NULL, `source` int NOT NULL DEFAULT '0', `object` int NOT NULL DEFAULT '0', `objectid` bigint unsigned NOT NULL DEFAULT '0', `clock` int NOT NULL DEFAULT '0', `value` int NOT NULL DEFAULT '0', `acknowledged` int NOT NULL DEFAULT '0', `ns` int NOT NULL DEFAULT '0', `name` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `severity` int NOT NULL DEFAULT '0', PRIMARY KEY (`eventid`), KEY `events_1` (`source`,`object`,`objectid`,`clock`), KEY `events_2` (`source`,`object`,`clock`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `events` -- LOCK TABLES `events` WRITE; /*!40000 ALTER TABLE `events` DISABLE KEYS */; /*!40000 ALTER TABLE `events` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `expressions` -- DROP TABLE IF EXISTS `expressions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `expressions` ( `expressionid` bigint unsigned NOT NULL, `regexpid` bigint unsigned NOT NULL, `expression` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `expression_type` int NOT NULL DEFAULT '0', `exp_delimiter` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `case_sensitive` int NOT NULL DEFAULT '0', PRIMARY KEY (`expressionid`), KEY `expressions_1` (`regexpid`), CONSTRAINT `c_expressions_1` FOREIGN KEY (`regexpid`) REFERENCES `regexps` (`regexpid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `expressions` -- LOCK TABLES `expressions` WRITE; /*!40000 ALTER TABLE `expressions` DISABLE KEYS */; INSERT INTO `expressions` VALUES (1,1,'^(btrfs|ext2|ext3|ext4|reiser|xfs|ffs|ufs|jfs|jfs2|vxfs|hfs|apfs|refs|ntfs|fat32|zfs)$',3,',',0),(3,3,'^(Physical memory|Virtual memory|Memory buffers|Cached memory|Swap space)$',4,',',1),(5,4,'^(MMCSS|gupdate|SysmonLog|clr_optimization_v2.0.50727_32|clr_optimization_v4.0.30319_32)$',4,',',1),(6,5,'^(automatic|automatic delayed)$',3,',',1),(7,2,'^Software Loopback Interface',4,',',1),(8,2,'^(In)?[Ll]oop[Bb]ack[0-9._]*$',4,',',1),(9,2,'^NULL[0-9.]*$',4,',',1),(10,2,'^[Ll]o[0-9.]*$',4,',',1),(11,2,'^[Ss]ystem$',4,',',1),(12,2,'^Nu[0-9.]*$',4,',',1); /*!40000 ALTER TABLE `expressions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `functions` -- DROP TABLE IF EXISTS `functions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `functions` ( `functionid` bigint unsigned NOT NULL, `itemid` bigint unsigned NOT NULL, `triggerid` bigint unsigned NOT NULL, `name` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `parameter` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '0', PRIMARY KEY (`functionid`), KEY `functions_1` (`triggerid`), KEY `functions_2` (`itemid`,`name`,`parameter`), CONSTRAINT `c_functions_1` FOREIGN KEY (`itemid`) REFERENCES `items` (`itemid`), CONSTRAINT `c_functions_2` FOREIGN KEY (`triggerid`) REFERENCES `triggers` (`triggerid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `functions` -- LOCK TABLES `functions` WRITE; /*!40000 ALTER TABLE `functions` DISABLE KEYS */; INSERT INTO `functions` VALUES (3,5,23096,'last','$'),(4,6,23097,'last','$'),(5,5,23098,'last','$'),(6,28,23098,'last','$'),(7,6,23099,'last','$'),(8,29,23099,'last','$'),(9,27,23100,'last','$'),(10,28,23101,'last','$'),(11,29,23102,'last','$'),(12,33,23103,'last','$'),(13,34,23104,'last','$'),(14,35,23105,'last','$'),(24,59,23112,'last','$'),(25,60,23113,'last','$'),(26,61,23114,'last','$'),(27,62,23115,'last','$'),(28,63,23116,'last','$'),(29,64,23117,'last','$'),(30,39,23118,'last','$'),(31,40,23119,'last','$'),(32,41,23120,'last','$'),(33,42,23121,'last','$'),(34,43,23122,'last','$'),(35,39,23123,'last','$'),(36,60,23123,'last','$'),(37,40,23124,'last','$'),(38,61,23124,'last','$'),(39,41,23125,'last','$'),(40,62,23125,'last','$'),(41,42,23126,'last','$'),(42,63,23126,'last','$'),(43,43,23127,'last','$'),(44,64,23127,'last','$'),(45,49,23128,'last','$'),(46,50,23129,'last','$'),(47,51,23130,'last','$'),(48,52,23131,'last','$'),(49,53,23132,'last','$'),(50,19,23133,'last','$'),(51,20,23134,'last','$'),(52,21,23135,'last','$'),(53,22,23136,'last','$'),(54,19,23137,'last','$'),(55,40,23137,'last','$'),(56,50,23137,'last','$'),(57,61,23137,'last','$'),(58,20,23138,'last','$'),(59,41,23138,'last','$'),(60,51,23138,'last','$'),(61,62,23138,'last','$'),(62,21,23139,'last','$'),(63,42,23139,'last','$'),(64,52,23139,'last','$'),(65,63,23139,'last','$'),(66,22,23140,'last','$'),(67,43,23140,'last','$'),(68,53,23140,'last','$'),(69,64,23140,'last','$'),(70,71,23141,'last','$'),(71,72,23142,'last','$'),(72,73,23143,'last','$'),(73,74,23144,'last','$'),(74,9,23145,'last','$'),(75,10,23146,'last','$'),(76,11,23147,'last','$'),(77,9,23148,'last','$'),(78,20,23148,'last','$'),(79,41,23148,'last','$'),(80,51,23148,'last','$'),(81,62,23148,'last','$'),(82,72,23148,'last','$'),(83,10,23149,'last','$'),(84,21,23149,'last','$'),(85,42,23149,'last','$'),(86,52,23149,'last','$'),(87,63,23149,'last','$'),(88,73,23149,'last','$'),(89,11,23150,'last','$'),(90,22,23150,'last','$'),(91,43,23150,'last','$'),(92,53,23150,'last','$'),(93,64,23150,'last','$'),(94,74,23150,'last','$'); /*!40000 ALTER TABLE `functions` ENABLE KEYS */; UNLOCK TABLES; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `functions_insert` AFTER INSERT ON `functions` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (7,new.functionid,1,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `functions_update` AFTER UPDATE ON `functions` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (7,old.functionid,2,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `functions_delete` BEFORE DELETE ON `functions` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (7,old.functionid,3,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; -- -- Table structure for table `globalmacro` -- DROP TABLE IF EXISTS `globalmacro`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `globalmacro` ( `globalmacroid` bigint unsigned NOT NULL, `macro` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `value` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `type` int NOT NULL DEFAULT '0', PRIMARY KEY (`globalmacroid`), UNIQUE KEY `globalmacro_1` (`macro`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `globalmacro` -- LOCK TABLES `globalmacro` WRITE; /*!40000 ALTER TABLE `globalmacro` DISABLE KEYS */; INSERT INTO `globalmacro` VALUES (2,'{$SNMP_COMMUNITY}','public','',0); /*!40000 ALTER TABLE `globalmacro` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `globalvars` -- DROP TABLE IF EXISTS `globalvars`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `globalvars` ( `globalvarid` bigint unsigned NOT NULL, `snmp_lastsize` bigint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`globalvarid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `globalvars` -- LOCK TABLES `globalvars` WRITE; /*!40000 ALTER TABLE `globalvars` DISABLE KEYS */; /*!40000 ALTER TABLE `globalvars` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graph_discovery` -- DROP TABLE IF EXISTS `graph_discovery`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `graph_discovery` ( `graphid` bigint unsigned NOT NULL, `parent_graphid` bigint unsigned NOT NULL, `lastcheck` int NOT NULL DEFAULT '0', `ts_delete` int NOT NULL DEFAULT '0', PRIMARY KEY (`graphid`), KEY `graph_discovery_1` (`parent_graphid`), CONSTRAINT `c_graph_discovery_1` FOREIGN KEY (`graphid`) REFERENCES `graphs` (`graphid`) ON DELETE CASCADE, CONSTRAINT `c_graph_discovery_2` FOREIGN KEY (`parent_graphid`) REFERENCES `graphs` (`graphid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graph_discovery` -- LOCK TABLES `graph_discovery` WRITE; /*!40000 ALTER TABLE `graph_discovery` DISABLE KEYS */; /*!40000 ALTER TABLE `graph_discovery` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graph_theme` -- DROP TABLE IF EXISTS `graph_theme`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `graph_theme` ( `graphthemeid` bigint unsigned NOT NULL, `theme` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `backgroundcolor` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `graphcolor` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `gridcolor` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `maingridcolor` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `gridbordercolor` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `textcolor` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `highlightcolor` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `leftpercentilecolor` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `rightpercentilecolor` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `nonworktimecolor` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `colorpalette` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`graphthemeid`), UNIQUE KEY `graph_theme_1` (`theme`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graph_theme` -- LOCK TABLES `graph_theme` WRITE; /*!40000 ALTER TABLE `graph_theme` DISABLE KEYS */; INSERT INTO `graph_theme` 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'),(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'),(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'),(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'); /*!40000 ALTER TABLE `graph_theme` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graphs` -- DROP TABLE IF EXISTS `graphs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `graphs` ( `graphid` bigint unsigned NOT NULL, `name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `width` int NOT NULL DEFAULT '900', `height` int NOT NULL DEFAULT '200', `yaxismin` double NOT NULL DEFAULT '0', `yaxismax` double NOT NULL DEFAULT '100', `templateid` bigint unsigned DEFAULT NULL, `show_work_period` int NOT NULL DEFAULT '1', `show_triggers` int NOT NULL DEFAULT '1', `graphtype` int NOT NULL DEFAULT '0', `show_legend` int NOT NULL DEFAULT '1', `show_3d` int NOT NULL DEFAULT '0', `percent_left` double NOT NULL DEFAULT '0', `percent_right` double NOT NULL DEFAULT '0', `ymin_type` int NOT NULL DEFAULT '0', `ymax_type` int NOT NULL DEFAULT '0', `ymin_itemid` bigint unsigned DEFAULT NULL, `ymax_itemid` bigint unsigned DEFAULT NULL, `flags` int NOT NULL DEFAULT '0', `discover` int NOT NULL DEFAULT '0', `uuid` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`graphid`), KEY `graphs_1` (`name`), KEY `graphs_2` (`templateid`), KEY `graphs_3` (`ymin_itemid`), KEY `graphs_4` (`ymax_itemid`), CONSTRAINT `c_graphs_1` FOREIGN KEY (`templateid`) REFERENCES `graphs` (`graphid`) ON DELETE CASCADE, CONSTRAINT `c_graphs_2` FOREIGN KEY (`ymin_itemid`) REFERENCES `items` (`itemid`), CONSTRAINT `c_graphs_3` FOREIGN KEY (`ymax_itemid`) REFERENCES `items` (`itemid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graphs` -- LOCK TABLES `graphs` WRITE; /*!40000 ALTER TABLE `graphs` DISABLE KEYS */; INSERT INTO `graphs` VALUES (1,'g10_1',900,200,0,100,NULL,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,'237eac48d01a42e08b8d29d1d0887198'),(2,'g10_1',900,200,0,100,1,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(3,'g10_1',900,200,0,100,2,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(4,'g10_1',900,200,0,100,2,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(5,'g9_1',900,200,0,100,NULL,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,'5df38184ddd040de83f05f7eb7546dc6'),(6,'g9_1',900,200,0,100,5,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(7,'g9_1',900,200,0,100,6,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(8,'g9_1',900,200,0,100,7,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(9,'g9_1',900,200,0,100,8,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(10,'g9_1',900,200,0,100,8,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(11,'g8_1',900,200,0,100,NULL,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,'82e9498ddeb448e7bf2064c42beb32cc'),(12,'g8_1',900,200,0,100,11,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(13,'g8_1',900,200,0,100,12,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(14,'g8_1',900,200,0,100,13,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(15,'g8_1',900,200,0,100,13,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(16,'g6_1',900,200,0,100,NULL,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,'acb03c06365c41e99aacb3620c7a0a79'),(17,'g6_1',900,200,0,100,16,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(19,'g6_1',900,200,0,100,17,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(22,'g1_1',900,200,0,100,NULL,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,'a0652460dd264d7db8747a4de1ca20f1'),(23,'g1_1',900,200,0,100,22,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(24,'g2_1',900,200,0,100,NULL,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,'b8b498610d514d01906548f85b095a6b'),(25,'g2_1',900,200,0,100,24,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(26,'g2_1',900,200,0,100,24,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(27,'g3_1',900,200,0,100,NULL,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,'a345c475026b485ba75c8b5d6648691b'),(28,'g3_1',900,200,0,100,27,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(29,'g4_1',900,200,0,100,NULL,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,'e7769676e86c42fc9376b53fbe46d899'),(30,'g4_1',900,200,0,100,29,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(31,'g4_1',900,200,0,100,30,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(32,'g4_1',900,200,0,100,30,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(33,'g5_1',900,200,0,100,NULL,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,'486cb0239fa94412ad6d48a74ddbdbd6'),(34,'g5_1',900,200,0,100,33,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(35,'g5_1',900,200,0,100,34,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(36,'g7_1',900,200,0,100,NULL,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,'bcf65abc9e3d4632ab03daf6939c75f7'),(37,'g7_1',900,200,0,100,36,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(38,'g7_1',900,200,0,100,37,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(39,'g7_1',900,200,0,100,38,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''),(40,'g7_1',900,200,0,100,38,1,1,0,1,0,0,0,0,0,NULL,NULL,0,0,''); /*!40000 ALTER TABLE `graphs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `graphs_items` -- DROP TABLE IF EXISTS `graphs_items`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `graphs_items` ( `gitemid` bigint unsigned NOT NULL, `graphid` bigint unsigned NOT NULL, `itemid` bigint unsigned NOT NULL, `drawtype` int NOT NULL DEFAULT '0', `sortorder` int NOT NULL DEFAULT '0', `color` varchar(6) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '009600', `yaxisside` int NOT NULL DEFAULT '0', `calc_fnc` int NOT NULL DEFAULT '2', `type` int NOT NULL DEFAULT '0', PRIMARY KEY (`gitemid`), KEY `graphs_items_1` (`itemid`), KEY `graphs_items_2` (`graphid`), CONSTRAINT `c_graphs_items_1` FOREIGN KEY (`graphid`) REFERENCES `graphs` (`graphid`) ON DELETE CASCADE, CONSTRAINT `c_graphs_items_2` FOREIGN KEY (`itemid`) REFERENCES `items` (`itemid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `graphs_items` -- LOCK TABLES `graphs_items` WRITE; /*!40000 ALTER TABLE `graphs_items` DISABLE KEYS */; INSERT INTO `graphs_items` VALUES (1,1,75,0,0,'1A7C11',0,7,0),(2,2,76,0,0,'1A7C11',0,7,0),(3,3,77,0,0,'1A7C11',0,7,0),(4,4,78,0,0,'1A7C11',0,7,0),(5,5,59,0,0,'1A7C11',0,7,0),(6,5,65,0,1,'274482',0,7,0),(7,6,60,0,0,'1A7C11',0,7,0),(8,6,66,0,1,'274482',0,7,0),(9,7,61,0,0,'1A7C11',0,7,0),(10,7,67,0,1,'274482',0,7,0),(11,8,62,0,0,'1A7C11',0,7,0),(12,8,68,0,1,'274482',0,7,0),(13,9,63,0,0,'1A7C11',0,7,0),(14,9,69,0,1,'274482',0,7,0),(15,10,64,0,0,'1A7C11',0,7,0),(16,10,70,0,1,'274482',0,7,0),(17,1,71,0,1,'274482',0,7,0),(18,2,72,0,1,'274482',0,7,0),(19,3,73,0,1,'274482',0,7,0),(20,4,74,0,1,'274482',0,7,0),(21,11,49,0,0,'1A7C11',0,7,0),(22,11,54,0,1,'274482',0,7,0),(23,12,50,0,0,'1A7C11',0,7,0),(24,12,55,0,1,'274482',0,7,0),(25,13,51,0,0,'1A7C11',0,7,0),(26,13,56,0,1,'274482',0,7,0),(27,14,52,0,0,'1A7C11',0,7,0),(28,14,57,0,1,'274482',0,7,0),(29,15,53,0,0,'1A7C11',0,7,0),(30,15,58,0,1,'274482',0,7,0),(31,16,33,0,0,'1A7C11',0,7,0),(32,16,36,0,1,'274482',0,7,0),(33,17,34,0,0,'1A7C11',0,7,0),(34,17,37,0,1,'274482',0,7,0),(37,19,35,0,0,'1A7C11',0,7,0),(38,19,38,0,1,'274482',0,7,0),(43,22,5,0,0,'1A7C11',0,7,0),(44,22,7,0,1,'274482',0,7,0),(45,22,28,0,2,'F63100',0,7,0),(46,22,31,0,3,'2774A4',0,7,0),(49,23,6,0,0,'1A7C11',0,7,0),(50,23,8,0,1,'274482',0,7,0),(51,23,29,0,2,'F63100',0,7,0),(52,23,32,0,3,'2774A4',0,7,0),(55,24,9,0,0,'1A7C11',0,7,0),(56,24,12,0,1,'274482',0,7,0),(57,24,20,0,2,'F63100',0,7,0),(58,24,24,0,3,'2774A4',0,7,0),(59,24,41,0,4,'A54F10',0,7,0),(60,24,46,0,5,'FC6EA3',0,7,0),(61,24,51,0,6,'6C59DC',0,7,0),(62,24,56,0,7,'AC8C14',0,7,0),(63,24,62,0,8,'611F27',0,7,0),(64,24,68,0,9,'F230E0',0,7,0),(65,24,72,0,10,'5CCD18',0,7,0),(66,24,76,0,11,'BB2A02',0,7,0),(67,25,10,0,0,'1A7C11',0,7,0),(68,25,13,0,1,'274482',0,7,0),(69,25,21,0,2,'F63100',0,7,0),(70,25,25,0,3,'2774A4',0,7,0),(71,25,42,0,4,'A54F10',0,7,0),(72,25,47,0,5,'FC6EA3',0,7,0),(73,25,52,0,6,'6C59DC',0,7,0),(74,25,57,0,7,'AC8C14',0,7,0),(75,25,63,0,8,'611F27',0,7,0),(76,25,69,0,9,'F230E0',0,7,0),(77,25,73,0,10,'5CCD18',0,7,0),(78,25,77,0,11,'BB2A02',0,7,0),(79,26,11,0,0,'1A7C11',0,7,0),(80,26,14,0,1,'274482',0,7,0),(81,26,22,0,2,'F63100',0,7,0),(82,26,26,0,3,'2774A4',0,7,0),(83,26,43,0,4,'A54F10',0,7,0),(84,26,48,0,5,'FC6EA3',0,7,0),(85,26,53,0,6,'6C59DC',0,7,0),(86,26,58,0,7,'AC8C14',0,7,0),(87,26,64,0,8,'611F27',0,7,0),(88,26,70,0,9,'F230E0',0,7,0),(89,26,74,0,10,'5CCD18',0,7,0),(90,26,78,0,11,'BB2A02',0,7,0),(91,27,15,0,0,'1A7C11',0,7,0),(92,27,17,0,1,'274482',0,7,0),(93,27,34,0,2,'F63100',0,7,0),(94,27,37,0,3,'2774A4',0,7,0),(95,28,16,0,0,'1A7C11',0,7,0),(96,28,18,0,1,'274482',0,7,0),(97,28,35,0,2,'F63100',0,7,0),(98,28,38,0,3,'2774A4',0,7,0),(99,29,19,0,0,'1A7C11',0,7,0),(100,29,23,0,1,'274482',0,7,0),(101,29,40,0,2,'F63100',0,7,0),(102,29,45,0,3,'2774A4',0,7,0),(103,29,50,0,4,'A54F10',0,7,0),(104,29,55,0,5,'FC6EA3',0,7,0),(105,29,61,0,6,'6C59DC',0,7,0),(106,29,67,0,7,'AC8C14',0,7,0),(107,30,20,0,0,'1A7C11',0,7,0),(108,30,24,0,1,'274482',0,7,0),(109,30,41,0,2,'F63100',0,7,0),(110,30,46,0,3,'2774A4',0,7,0),(111,30,51,0,4,'A54F10',0,7,0),(112,30,56,0,5,'FC6EA3',0,7,0),(113,30,62,0,6,'6C59DC',0,7,0),(114,30,68,0,7,'AC8C14',0,7,0),(115,31,21,0,0,'1A7C11',0,7,0),(116,31,25,0,1,'274482',0,7,0),(117,31,42,0,2,'F63100',0,7,0),(118,31,47,0,3,'2774A4',0,7,0),(119,31,52,0,4,'A54F10',0,7,0),(120,31,57,0,5,'FC6EA3',0,7,0),(121,31,63,0,6,'6C59DC',0,7,0),(122,31,69,0,7,'AC8C14',0,7,0),(123,32,22,0,0,'1A7C11',0,7,0),(124,32,26,0,1,'274482',0,7,0),(125,32,43,0,2,'F63100',0,7,0),(126,32,48,0,3,'2774A4',0,7,0),(127,32,53,0,4,'A54F10',0,7,0),(128,32,58,0,5,'FC6EA3',0,7,0),(129,32,64,0,6,'6C59DC',0,7,0),(130,32,70,0,7,'AC8C14',0,7,0),(131,33,27,0,0,'1A7C11',0,7,0),(132,33,30,0,1,'274482',0,7,0),(135,34,28,0,0,'1A7C11',0,7,0),(136,34,31,0,1,'274482',0,7,0),(139,35,29,0,0,'1A7C11',0,7,0),(140,35,32,0,1,'274482',0,7,0),(143,36,39,0,0,'1A7C11',0,7,0),(144,36,44,0,1,'274482',0,7,0),(145,36,60,0,2,'F63100',0,7,0),(146,36,66,0,3,'2774A4',0,7,0),(147,37,40,0,0,'1A7C11',0,7,0),(148,37,45,0,1,'274482',0,7,0),(149,37,61,0,2,'F63100',0,7,0),(150,37,67,0,3,'2774A4',0,7,0),(151,38,41,0,0,'1A7C11',0,7,0),(152,38,46,0,1,'274482',0,7,0),(153,38,62,0,2,'F63100',0,7,0),(154,38,68,0,3,'2774A4',0,7,0),(155,39,42,0,0,'1A7C11',0,7,0),(156,39,47,0,1,'274482',0,7,0),(157,39,63,0,2,'F63100',0,7,0),(158,39,69,0,3,'2774A4',0,7,0),(159,40,43,0,0,'1A7C11',0,7,0),(160,40,48,0,1,'274482',0,7,0),(161,40,64,0,2,'F63100',0,7,0),(162,40,70,0,3,'2774A4',0,7,0); /*!40000 ALTER TABLE `graphs_items` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `group_discovery` -- DROP TABLE IF EXISTS `group_discovery`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `group_discovery` ( `groupid` bigint unsigned NOT NULL, `parent_group_prototypeid` bigint unsigned NOT NULL, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `lastcheck` int NOT NULL DEFAULT '0', `ts_delete` int NOT NULL DEFAULT '0', PRIMARY KEY (`groupid`), KEY `c_group_discovery_2` (`parent_group_prototypeid`), CONSTRAINT `c_group_discovery_1` FOREIGN KEY (`groupid`) REFERENCES `hstgrp` (`groupid`) ON DELETE CASCADE, CONSTRAINT `c_group_discovery_2` FOREIGN KEY (`parent_group_prototypeid`) REFERENCES `group_prototype` (`group_prototypeid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `group_discovery` -- LOCK TABLES `group_discovery` WRITE; /*!40000 ALTER TABLE `group_discovery` DISABLE KEYS */; /*!40000 ALTER TABLE `group_discovery` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `group_prototype` -- DROP TABLE IF EXISTS `group_prototype`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `group_prototype` ( `group_prototypeid` bigint unsigned NOT NULL, `hostid` bigint unsigned NOT NULL, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `groupid` bigint unsigned DEFAULT NULL, `templateid` bigint unsigned DEFAULT NULL, PRIMARY KEY (`group_prototypeid`), KEY `group_prototype_1` (`hostid`), KEY `c_group_prototype_2` (`groupid`), KEY `c_group_prototype_3` (`templateid`), CONSTRAINT `c_group_prototype_1` FOREIGN KEY (`hostid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE, CONSTRAINT `c_group_prototype_2` FOREIGN KEY (`groupid`) REFERENCES `hstgrp` (`groupid`), CONSTRAINT `c_group_prototype_3` FOREIGN KEY (`templateid`) REFERENCES `group_prototype` (`group_prototypeid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `group_prototype` -- LOCK TABLES `group_prototype` WRITE; /*!40000 ALTER TABLE `group_prototype` DISABLE KEYS */; /*!40000 ALTER TABLE `group_prototype` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ha_node` -- DROP TABLE IF EXISTS `ha_node`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ha_node` ( `ha_nodeid` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `address` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `port` int NOT NULL DEFAULT '10051', `lastaccess` int NOT NULL DEFAULT '0', `status` int NOT NULL DEFAULT '0', `ha_sessionid` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`ha_nodeid`), UNIQUE KEY `ha_node_1` (`name`), KEY `ha_node_2` (`status`,`lastaccess`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ha_node` -- LOCK TABLES `ha_node` WRITE; /*!40000 ALTER TABLE `ha_node` DISABLE KEYS */; /*!40000 ALTER TABLE `ha_node` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `history` -- DROP TABLE IF EXISTS `history`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `history` ( `itemid` bigint unsigned NOT NULL, `clock` int NOT NULL DEFAULT '0', `value` double NOT NULL DEFAULT '0', `ns` int NOT NULL DEFAULT '0', PRIMARY KEY (`itemid`,`clock`,`ns`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `history` -- LOCK TABLES `history` WRITE; /*!40000 ALTER TABLE `history` DISABLE KEYS */; /*!40000 ALTER TABLE `history` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `history_log` -- DROP TABLE IF EXISTS `history_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `history_log` ( `itemid` bigint unsigned NOT NULL, `clock` int NOT NULL DEFAULT '0', `timestamp` int NOT NULL DEFAULT '0', `source` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `severity` int NOT NULL DEFAULT '0', `value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `logeventid` int NOT NULL DEFAULT '0', `ns` int NOT NULL DEFAULT '0', PRIMARY KEY (`itemid`,`clock`,`ns`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `history_log` -- LOCK TABLES `history_log` WRITE; /*!40000 ALTER TABLE `history_log` DISABLE KEYS */; /*!40000 ALTER TABLE `history_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `history_str` -- DROP TABLE IF EXISTS `history_str`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `history_str` ( `itemid` bigint unsigned NOT NULL, `clock` int NOT NULL DEFAULT '0', `value` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `ns` int NOT NULL DEFAULT '0', PRIMARY KEY (`itemid`,`clock`,`ns`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `history_str` -- LOCK TABLES `history_str` WRITE; /*!40000 ALTER TABLE `history_str` DISABLE KEYS */; /*!40000 ALTER TABLE `history_str` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `history_text` -- DROP TABLE IF EXISTS `history_text`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `history_text` ( `itemid` bigint unsigned NOT NULL, `clock` int NOT NULL DEFAULT '0', `value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `ns` int NOT NULL DEFAULT '0', PRIMARY KEY (`itemid`,`clock`,`ns`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `history_text` -- LOCK TABLES `history_text` WRITE; /*!40000 ALTER TABLE `history_text` DISABLE KEYS */; /*!40000 ALTER TABLE `history_text` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `history_uint` -- DROP TABLE IF EXISTS `history_uint`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `history_uint` ( `itemid` bigint unsigned NOT NULL, `clock` int NOT NULL DEFAULT '0', `value` bigint unsigned NOT NULL DEFAULT '0', `ns` int NOT NULL DEFAULT '0', PRIMARY KEY (`itemid`,`clock`,`ns`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `history_uint` -- LOCK TABLES `history_uint` WRITE; /*!40000 ALTER TABLE `history_uint` DISABLE KEYS */; /*!40000 ALTER TABLE `history_uint` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `host_discovery` -- DROP TABLE IF EXISTS `host_discovery`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `host_discovery` ( `hostid` bigint unsigned NOT NULL, `parent_hostid` bigint unsigned DEFAULT NULL, `parent_itemid` bigint unsigned DEFAULT NULL, `host` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `lastcheck` int NOT NULL DEFAULT '0', `ts_delete` int NOT NULL DEFAULT '0', PRIMARY KEY (`hostid`), KEY `c_host_discovery_2` (`parent_hostid`), KEY `c_host_discovery_3` (`parent_itemid`), CONSTRAINT `c_host_discovery_1` FOREIGN KEY (`hostid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE, CONSTRAINT `c_host_discovery_2` FOREIGN KEY (`parent_hostid`) REFERENCES `hosts` (`hostid`), CONSTRAINT `c_host_discovery_3` FOREIGN KEY (`parent_itemid`) REFERENCES `items` (`itemid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `host_discovery` -- LOCK TABLES `host_discovery` WRITE; /*!40000 ALTER TABLE `host_discovery` DISABLE KEYS */; /*!40000 ALTER TABLE `host_discovery` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `host_inventory` -- DROP TABLE IF EXISTS `host_inventory`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `host_inventory` ( `hostid` bigint unsigned NOT NULL, `inventory_mode` int NOT NULL DEFAULT '0', `type` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `type_full` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `alias` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `os` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `os_full` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `os_short` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `serialno_a` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `serialno_b` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `tag` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `asset_tag` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `macaddress_a` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `macaddress_b` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `hardware` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `hardware_full` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `software` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `software_full` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `software_app_a` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `software_app_b` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `software_app_c` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `software_app_d` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `software_app_e` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `contact` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `location` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `location_lat` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `location_lon` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `chassis` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `model` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `hw_arch` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `vendor` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `contract_number` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `installer_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `deployment_status` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `url_a` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `url_b` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `url_c` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `host_networks` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `host_netmask` varchar(39) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `host_router` varchar(39) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `oob_ip` varchar(39) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `oob_netmask` varchar(39) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `oob_router` varchar(39) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `date_hw_purchase` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `date_hw_install` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `date_hw_expiry` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `date_hw_decomm` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `site_address_a` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `site_address_b` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `site_address_c` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `site_city` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `site_state` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `site_country` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `site_zip` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `site_rack` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `site_notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `poc_1_name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `poc_1_email` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `poc_1_phone_a` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `poc_1_phone_b` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `poc_1_cell` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `poc_1_screen` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `poc_1_notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `poc_2_name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `poc_2_email` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `poc_2_phone_a` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `poc_2_phone_b` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `poc_2_cell` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `poc_2_screen` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `poc_2_notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, PRIMARY KEY (`hostid`), CONSTRAINT `c_host_inventory_1` FOREIGN KEY (`hostid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `host_inventory` -- LOCK TABLES `host_inventory` WRITE; /*!40000 ALTER TABLE `host_inventory` DISABLE KEYS */; /*!40000 ALTER TABLE `host_inventory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `host_rtdata` -- DROP TABLE IF EXISTS `host_rtdata`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `host_rtdata` ( `hostid` bigint unsigned NOT NULL, `active_available` int NOT NULL DEFAULT '0', `lastaccess` int NOT NULL DEFAULT '0', `version` int NOT NULL DEFAULT '0', `compatibility` int NOT NULL DEFAULT '0', PRIMARY KEY (`hostid`), CONSTRAINT `c_host_rtdata_1` FOREIGN KEY (`hostid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `host_rtdata` -- LOCK TABLES `host_rtdata` WRITE; /*!40000 ALTER TABLE `host_rtdata` DISABLE KEYS */; INSERT INTO `host_rtdata` VALUES (4,0,0,0,0),(5,0,0,0,0); /*!40000 ALTER TABLE `host_rtdata` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `host_tag` -- DROP TABLE IF EXISTS `host_tag`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `host_tag` ( `hosttagid` bigint unsigned NOT NULL, `hostid` bigint unsigned NOT NULL, `tag` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `value` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `automatic` int NOT NULL DEFAULT '0', PRIMARY KEY (`hosttagid`), KEY `host_tag_1` (`hostid`), CONSTRAINT `c_host_tag_1` FOREIGN KEY (`hostid`) REFERENCES `hosts` (`hostid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `host_tag` -- LOCK TABLES `host_tag` WRITE; /*!40000 ALTER TABLE `host_tag` DISABLE KEYS */; /*!40000 ALTER TABLE `host_tag` ENABLE KEYS */; UNLOCK TABLES; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `host_tag_insert` AFTER INSERT ON `host_tag` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (2,new.hosttagid,1,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `host_tag_update` AFTER UPDATE ON `host_tag` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (2,old.hosttagid,2,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `host_tag_delete` BEFORE DELETE ON `host_tag` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (2,old.hosttagid,3,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; -- -- Table structure for table `hostmacro` -- DROP TABLE IF EXISTS `hostmacro`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `hostmacro` ( `hostmacroid` bigint unsigned NOT NULL, `hostid` bigint unsigned NOT NULL, `macro` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `value` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `type` int NOT NULL DEFAULT '0', `automatic` int NOT NULL DEFAULT '0', PRIMARY KEY (`hostmacroid`), UNIQUE KEY `hostmacro_1` (`hostid`,`macro`), CONSTRAINT `c_hostmacro_1` FOREIGN KEY (`hostid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `hostmacro` -- LOCK TABLES `hostmacro` WRITE; /*!40000 ALTER TABLE `hostmacro` DISABLE KEYS */; /*!40000 ALTER TABLE `hostmacro` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `hosts` -- DROP TABLE IF EXISTS `hosts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `hosts` ( `hostid` bigint unsigned NOT NULL, `proxy_hostid` bigint unsigned DEFAULT NULL, `host` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `status` int NOT NULL DEFAULT '0', `ipmi_authtype` int NOT NULL DEFAULT '-1', `ipmi_privilege` int NOT NULL DEFAULT '2', `ipmi_username` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `ipmi_password` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `maintenanceid` bigint unsigned DEFAULT NULL, `maintenance_status` int NOT NULL DEFAULT '0', `maintenance_type` int NOT NULL DEFAULT '0', `maintenance_from` int NOT NULL DEFAULT '0', `name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `flags` int NOT NULL DEFAULT '0', `templateid` bigint unsigned DEFAULT NULL, `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `tls_connect` int NOT NULL DEFAULT '1', `tls_accept` int NOT NULL DEFAULT '1', `tls_issuer` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `tls_subject` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `tls_psk_identity` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `tls_psk` varchar(512) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `proxy_address` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `auto_compress` int NOT NULL DEFAULT '1', `discover` int NOT NULL DEFAULT '0', `custom_interfaces` int NOT NULL DEFAULT '0', `uuid` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `name_upper` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`hostid`), KEY `hosts_1` (`host`), KEY `hosts_2` (`status`), KEY `hosts_3` (`proxy_hostid`), KEY `hosts_4` (`name`), KEY `hosts_5` (`maintenanceid`), KEY `hosts_6` (`name_upper`), KEY `c_hosts_3` (`templateid`), CONSTRAINT `c_hosts_1` FOREIGN KEY (`proxy_hostid`) REFERENCES `hosts` (`hostid`), CONSTRAINT `c_hosts_2` FOREIGN KEY (`maintenanceid`) REFERENCES `maintenances` (`maintenanceid`), CONSTRAINT `c_hosts_3` FOREIGN KEY (`templateid`) REFERENCES `hosts` (`hostid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `hosts` -- LOCK TABLES `hosts` WRITE; /*!40000 ALTER TABLE `hosts` DISABLE KEYS */; INSERT INTO `hosts` VALUES (4,NULL,'h',0,-1,2,'','',NULL,0,0,0,'h',0,NULL,'',1,1,'','','','','',1,0,0,'','H'),(5,NULL,'h2',0,-1,2,'','',NULL,0,0,0,'h2',0,NULL,'',1,1,'','','','','',1,0,0,'','H2'),(6,NULL,'t1',3,-1,2,'','',NULL,0,0,0,'t1',0,NULL,'',1,1,'','','','','',1,0,0,'7d58d4d4ba004ccfa7d78dfd97d6c1f1','T1'),(7,NULL,'t2',3,-1,2,'','',NULL,0,0,0,'t2',0,NULL,'',1,1,'','','','','',1,0,0,'01ef5965ec84463fb8e7cfa5c2ecf284','T2'),(8,NULL,'t3',3,-1,2,'','',NULL,0,0,0,'t3',0,NULL,'',1,1,'','','','','',1,0,0,'c13ca0808758460187e1ca282838f9a9','T3'),(9,NULL,'t4',3,-1,2,'','',NULL,0,0,0,'t4',0,NULL,'',1,1,'','','','','',1,0,0,'d34313cb8d7648e9b3dae4c83ab7f082','T4'),(10,NULL,'t5',3,-1,2,'','',NULL,0,0,0,'t5',0,NULL,'',1,1,'','','','','',1,0,0,'200847e3e71e4549b74000b8d24a4b7a','T5'),(11,NULL,'t6',3,-1,2,'','',NULL,0,0,0,'t6',0,NULL,'',1,1,'','','','','',1,0,0,'a1f09b64a1c24fb4ab4b580bbb4f7422','T6'),(12,NULL,'t7',3,-1,2,'','',NULL,0,0,0,'t7',0,NULL,'',1,1,'','','','','',1,0,0,'9fde7b6034a9497983f30da19a249308','T7'),(13,NULL,'t8',3,-1,2,'','',NULL,0,0,0,'t8',0,NULL,'',1,1,'','','','','',1,0,0,'f7cc6223463545898129a4b10eac9fdd','T8'),(14,NULL,'t9',3,-1,2,'','',NULL,0,0,0,'t9',0,NULL,'',1,1,'','','','','',1,0,0,'16cc006f3e8b47c4be0238ed75fc766a','T9'),(15,NULL,'t10',3,-1,2,'','',NULL,0,0,0,'t10',0,NULL,'',1,1,'','','','','',1,0,0,'2b4fa2906104419b87d9f2a62be402bb','T10'); /*!40000 ALTER TABLE `hosts` ENABLE KEYS */; UNLOCK TABLES; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `hosts_name_upper_insert` BEFORE INSERT ON `hosts` FOR EACH ROW set new.name_upper=upper(new.name) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `hosts_insert` AFTER INSERT ON `hosts` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (1,new.hostid,1,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `hosts_name_upper_update` BEFORE UPDATE ON `hosts` FOR EACH ROW begin if new.name<>old.name then set new.name_upper=upper(new.name); end if; end */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `hosts_update` AFTER UPDATE ON `hosts` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (1,old.hostid,2,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `hosts_delete` BEFORE DELETE ON `hosts` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (1,old.hostid,3,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; -- -- Table structure for table `hosts_groups` -- DROP TABLE IF EXISTS `hosts_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `hosts_groups` ( `hostgroupid` bigint unsigned NOT NULL, `hostid` bigint unsigned NOT NULL, `groupid` bigint unsigned NOT NULL, PRIMARY KEY (`hostgroupid`), UNIQUE KEY `hosts_groups_1` (`hostid`,`groupid`), KEY `hosts_groups_2` (`groupid`), CONSTRAINT `c_hosts_groups_1` FOREIGN KEY (`hostid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE, CONSTRAINT `c_hosts_groups_2` FOREIGN KEY (`groupid`) REFERENCES `hstgrp` (`groupid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `hosts_groups` -- LOCK TABLES `hosts_groups` WRITE; /*!40000 ALTER TABLE `hosts_groups` DISABLE KEYS */; INSERT INTO `hosts_groups` VALUES (4,4,19),(5,5,19),(6,6,1),(7,7,1),(8,8,1),(9,9,1),(10,10,1),(11,11,1),(12,12,1),(13,13,1),(14,14,1),(15,15,1); /*!40000 ALTER TABLE `hosts_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `hosts_templates` -- DROP TABLE IF EXISTS `hosts_templates`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `hosts_templates` ( `hosttemplateid` bigint unsigned NOT NULL, `hostid` bigint unsigned NOT NULL, `templateid` bigint unsigned NOT NULL, `link_type` int NOT NULL DEFAULT '0', PRIMARY KEY (`hosttemplateid`), UNIQUE KEY `hosts_templates_1` (`hostid`,`templateid`), KEY `hosts_templates_2` (`templateid`), CONSTRAINT `c_hosts_templates_1` FOREIGN KEY (`hostid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE, CONSTRAINT `c_hosts_templates_2` FOREIGN KEY (`templateid`) REFERENCES `hosts` (`hostid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `hosts_templates` -- LOCK TABLES `hosts_templates` WRITE; /*!40000 ALTER TABLE `hosts_templates` DISABLE KEYS */; INSERT INTO `hosts_templates` VALUES (4,6,10,0),(5,7,9,0),(6,9,12,0),(7,9,13,0),(8,12,14,0),(9,8,11,0),(10,4,6,0),(11,4,7,0),(12,5,7,0),(13,5,8,0),(14,7,15,0); /*!40000 ALTER TABLE `hosts_templates` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `housekeeper` -- DROP TABLE IF EXISTS `housekeeper`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `housekeeper` ( `housekeeperid` bigint unsigned NOT NULL, `tablename` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `field` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `value` bigint unsigned NOT NULL, PRIMARY KEY (`housekeeperid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `housekeeper` -- LOCK TABLES `housekeeper` WRITE; /*!40000 ALTER TABLE `housekeeper` DISABLE KEYS */; INSERT INTO `housekeeper` VALUES (1,'events','lldruleid',42274),(2,'events','lldruleid',42275),(3,'events','lldruleid',42276),(4,'events','lldruleid',39807),(5,'events','lldruleid',44058),(6,'events','triggerid',13467),(7,'events','triggerid',13468),(8,'events','triggerid',13470),(9,'events','triggerid',13471),(10,'events','triggerid',13472),(11,'events','triggerid',13473),(12,'events','triggerid',13474),(13,'events','triggerid',13475),(14,'events','triggerid',13476),(15,'events','triggerid',13477),(16,'events','triggerid',13479),(17,'events','triggerid',13480),(18,'events','triggerid',13481),(19,'events','triggerid',13482),(20,'events','triggerid',13483),(21,'events','triggerid',13484),(22,'events','triggerid',13485),(23,'events','triggerid',13486),(24,'events','triggerid',13487),(25,'events','triggerid',13488),(26,'events','triggerid',13489),(27,'events','triggerid',13490),(28,'events','triggerid',13436),(29,'events','triggerid',13075),(30,'events','triggerid',13537),(31,'events','triggerid',13558),(32,'events','triggerid',13560),(33,'events','triggerid',13563),(34,'events','triggerid',13567),(35,'events','triggerid',13570),(36,'events','triggerid',13571),(37,'events','triggerid',15854),(38,'events','triggerid',15856),(39,'events','triggerid',16274),(40,'events','triggerid',17537),(41,'events','triggerid',17538),(42,'events','triggerid',18533),(43,'events','triggerid',18532),(44,'events','triggerid',18982),(45,'events','triggerid',18983),(46,'events','triggerid',18981),(47,'events','triggerid',21198),(48,'events','triggerid',22385),(49,'events','triggerid',22386),(50,'events','triggerid',22387),(51,'events','triggerid',22393),(52,'events','triggerid',22388),(53,'events','triggerid',22389),(54,'events','triggerid',22394),(55,'events','triggerid',22395),(56,'events','triggerid',22382),(57,'events','triggerid',22383),(58,'events','triggerid',22392),(59,'events','triggerid',22391),(60,'events','triggerid',22384),(61,'events','triggerid',22390),(62,'events','itemid',42227),(63,'history','itemid',42227),(64,'history_log','itemid',42227),(65,'history_str','itemid',42227),(66,'history_text','itemid',42227),(67,'history_uint','itemid',42227),(68,'trends','itemid',42227),(69,'trends_uint','itemid',42227),(70,'events','itemid',42237),(71,'history','itemid',42237),(72,'history_log','itemid',42237),(73,'history_str','itemid',42237),(74,'history_text','itemid',42237),(75,'history_uint','itemid',42237),(76,'trends','itemid',42237),(77,'trends_uint','itemid',42237),(78,'events','itemid',42250),(79,'history','itemid',42250),(80,'history_log','itemid',42250),(81,'history_str','itemid',42250),(82,'history_text','itemid',42250),(83,'history_uint','itemid',42250),(84,'trends','itemid',42250),(85,'trends_uint','itemid',42250),(86,'events','itemid',42251),(87,'history','itemid',42251),(88,'history_log','itemid',42251),(89,'history_str','itemid',42251),(90,'history_text','itemid',42251),(91,'history_uint','itemid',42251),(92,'trends','itemid',42251),(93,'trends_uint','itemid',42251),(94,'events','itemid',42252),(95,'history','itemid',42252),(96,'history_log','itemid',42252),(97,'history_str','itemid',42252),(98,'history_text','itemid',42252),(99,'history_uint','itemid',42252),(100,'trends','itemid',42252),(101,'trends_uint','itemid',42252),(102,'events','itemid',42253),(103,'history','itemid',42253),(104,'history_log','itemid',42253),(105,'history_str','itemid',42253),(106,'history_text','itemid',42253),(107,'history_uint','itemid',42253),(108,'trends','itemid',42253),(109,'trends_uint','itemid',42253),(110,'events','itemid',42254),(111,'history','itemid',42254),(112,'history_log','itemid',42254),(113,'history_str','itemid',42254),(114,'history_text','itemid',42254),(115,'history_uint','itemid',42254),(116,'trends','itemid',42254),(117,'trends_uint','itemid',42254),(118,'events','itemid',42255),(119,'history','itemid',42255),(120,'history_log','itemid',42255),(121,'history_str','itemid',42255),(122,'history_text','itemid',42255),(123,'history_uint','itemid',42255),(124,'trends','itemid',42255),(125,'trends_uint','itemid',42255),(126,'events','itemid',42256),(127,'history','itemid',42256),(128,'history_log','itemid',42256),(129,'history_str','itemid',42256),(130,'history_text','itemid',42256),(131,'history_uint','itemid',42256),(132,'trends','itemid',42256),(133,'trends_uint','itemid',42256),(134,'events','itemid',42259),(135,'history','itemid',42259),(136,'history_log','itemid',42259),(137,'history_str','itemid',42259),(138,'history_text','itemid',42259),(139,'history_uint','itemid',42259),(140,'trends','itemid',42259),(141,'trends_uint','itemid',42259),(142,'events','itemid',42249),(143,'history','itemid',42249),(144,'history_log','itemid',42249),(145,'history_str','itemid',42249),(146,'history_text','itemid',42249),(147,'history_uint','itemid',42249),(148,'trends','itemid',42249),(149,'trends_uint','itemid',42249),(150,'events','itemid',42257),(151,'history','itemid',42257),(152,'history_log','itemid',42257),(153,'history_str','itemid',42257),(154,'history_text','itemid',42257),(155,'history_uint','itemid',42257),(156,'trends','itemid',42257),(157,'trends_uint','itemid',42257),(158,'events','itemid',42260),(159,'history','itemid',42260),(160,'history_log','itemid',42260),(161,'history_str','itemid',42260),(162,'history_text','itemid',42260),(163,'history_uint','itemid',42260),(164,'trends','itemid',42260),(165,'trends_uint','itemid',42260),(166,'events','itemid',42261),(167,'history','itemid',42261),(168,'history_log','itemid',42261),(169,'history_str','itemid',42261),(170,'history_text','itemid',42261),(171,'history_uint','itemid',42261),(172,'trends','itemid',42261),(173,'trends_uint','itemid',42261),(174,'events','itemid',42269),(175,'history','itemid',42269),(176,'history_log','itemid',42269),(177,'history_str','itemid',42269),(178,'history_text','itemid',42269),(179,'history_uint','itemid',42269),(180,'trends','itemid',42269),(181,'trends_uint','itemid',42269),(182,'events','itemid',42262),(183,'history','itemid',42262),(184,'history_log','itemid',42262),(185,'history_str','itemid',42262),(186,'history_text','itemid',42262),(187,'history_uint','itemid',42262),(188,'trends','itemid',42262),(189,'trends_uint','itemid',42262),(190,'events','itemid',42263),(191,'history','itemid',42263),(192,'history_log','itemid',42263),(193,'history_str','itemid',42263),(194,'history_text','itemid',42263),(195,'history_uint','itemid',42263),(196,'trends','itemid',42263),(197,'trends_uint','itemid',42263),(198,'events','itemid',42264),(199,'history','itemid',42264),(200,'history_log','itemid',42264),(201,'history_str','itemid',42264),(202,'history_text','itemid',42264),(203,'history_uint','itemid',42264),(204,'trends','itemid',42264),(205,'trends_uint','itemid',42264),(206,'events','itemid',42265),(207,'history','itemid',42265),(208,'history_log','itemid',42265),(209,'history_str','itemid',42265),(210,'history_text','itemid',42265),(211,'history_uint','itemid',42265),(212,'trends','itemid',42265),(213,'trends_uint','itemid',42265),(214,'events','itemid',42258),(215,'history','itemid',42258),(216,'history_log','itemid',42258),(217,'history_str','itemid',42258),(218,'history_text','itemid',42258),(219,'history_uint','itemid',42258),(220,'trends','itemid',42258),(221,'trends_uint','itemid',42258),(222,'events','itemid',42248),(223,'history','itemid',42248),(224,'history_log','itemid',42248),(225,'history_str','itemid',42248),(226,'history_text','itemid',42248),(227,'history_uint','itemid',42248),(228,'trends','itemid',42248),(229,'trends_uint','itemid',42248),(230,'events','itemid',42247),(231,'history','itemid',42247),(232,'history_log','itemid',42247),(233,'history_str','itemid',42247),(234,'history_text','itemid',42247),(235,'history_uint','itemid',42247),(236,'trends','itemid',42247),(237,'trends_uint','itemid',42247),(238,'events','itemid',42246),(239,'history','itemid',42246),(240,'history_log','itemid',42246),(241,'history_str','itemid',42246),(242,'history_text','itemid',42246),(243,'history_uint','itemid',42246),(244,'trends','itemid',42246),(245,'trends_uint','itemid',42246),(246,'events','itemid',42229),(247,'history','itemid',42229),(248,'history_log','itemid',42229),(249,'history_str','itemid',42229),(250,'history_text','itemid',42229),(251,'history_uint','itemid',42229),(252,'trends','itemid',42229),(253,'trends_uint','itemid',42229),(254,'events','itemid',42230),(255,'history','itemid',42230),(256,'history_log','itemid',42230),(257,'history_str','itemid',42230),(258,'history_text','itemid',42230),(259,'history_uint','itemid',42230),(260,'trends','itemid',42230),(261,'trends_uint','itemid',42230),(262,'events','itemid',42231),(263,'history','itemid',42231),(264,'history_log','itemid',42231),(265,'history_str','itemid',42231),(266,'history_text','itemid',42231),(267,'history_uint','itemid',42231),(268,'trends','itemid',42231),(269,'trends_uint','itemid',42231),(270,'events','itemid',42232),(271,'history','itemid',42232),(272,'history_log','itemid',42232),(273,'history_str','itemid',42232),(274,'history_text','itemid',42232),(275,'history_uint','itemid',42232),(276,'trends','itemid',42232),(277,'trends_uint','itemid',42232),(278,'events','itemid',42233),(279,'history','itemid',42233),(280,'history_log','itemid',42233),(281,'history_str','itemid',42233),(282,'history_text','itemid',42233),(283,'history_uint','itemid',42233),(284,'trends','itemid',42233),(285,'trends_uint','itemid',42233),(286,'events','itemid',42234),(287,'history','itemid',42234),(288,'history_log','itemid',42234),(289,'history_str','itemid',42234),(290,'history_text','itemid',42234),(291,'history_uint','itemid',42234),(292,'trends','itemid',42234),(293,'trends_uint','itemid',42234),(294,'events','itemid',42235),(295,'history','itemid',42235),(296,'history_log','itemid',42235),(297,'history_str','itemid',42235),(298,'history_text','itemid',42235),(299,'history_uint','itemid',42235),(300,'trends','itemid',42235),(301,'trends_uint','itemid',42235),(302,'events','itemid',42228),(303,'history','itemid',42228),(304,'history_log','itemid',42228),(305,'history_str','itemid',42228),(306,'history_text','itemid',42228),(307,'history_uint','itemid',42228),(308,'trends','itemid',42228),(309,'trends_uint','itemid',42228),(310,'events','itemid',42236),(311,'history','itemid',42236),(312,'history_log','itemid',42236),(313,'history_str','itemid',42236),(314,'history_text','itemid',42236),(315,'history_uint','itemid',42236),(316,'trends','itemid',42236),(317,'trends_uint','itemid',42236),(318,'events','itemid',42238),(319,'history','itemid',42238),(320,'history_log','itemid',42238),(321,'history_str','itemid',42238),(322,'history_text','itemid',42238),(323,'history_uint','itemid',42238),(324,'trends','itemid',42238),(325,'trends_uint','itemid',42238),(326,'events','itemid',42239),(327,'history','itemid',42239),(328,'history_log','itemid',42239),(329,'history_str','itemid',42239),(330,'history_text','itemid',42239),(331,'history_uint','itemid',42239),(332,'trends','itemid',42239),(333,'trends_uint','itemid',42239),(334,'events','itemid',42240),(335,'history','itemid',42240),(336,'history_log','itemid',42240),(337,'history_str','itemid',42240),(338,'history_text','itemid',42240),(339,'history_uint','itemid',42240),(340,'trends','itemid',42240),(341,'trends_uint','itemid',42240),(342,'events','itemid',42241),(343,'history','itemid',42241),(344,'history_log','itemid',42241),(345,'history_str','itemid',42241),(346,'history_text','itemid',42241),(347,'history_uint','itemid',42241),(348,'trends','itemid',42241),(349,'trends_uint','itemid',42241),(350,'events','itemid',42242),(351,'history','itemid',42242),(352,'history_log','itemid',42242),(353,'history_str','itemid',42242),(354,'history_text','itemid',42242),(355,'history_uint','itemid',42242),(356,'trends','itemid',42242),(357,'trends_uint','itemid',42242),(358,'events','itemid',44437),(359,'history','itemid',44437),(360,'history_log','itemid',44437),(361,'history_str','itemid',44437),(362,'history_text','itemid',44437),(363,'history_uint','itemid',44437),(364,'trends','itemid',44437),(365,'trends_uint','itemid',44437),(366,'events','itemid',42243),(367,'history','itemid',42243),(368,'history_log','itemid',42243),(369,'history_str','itemid',42243),(370,'history_text','itemid',42243),(371,'history_uint','itemid',42243),(372,'trends','itemid',42243),(373,'trends_uint','itemid',42243),(374,'events','itemid',42244),(375,'history','itemid',42244),(376,'history_log','itemid',42244),(377,'history_str','itemid',42244),(378,'history_text','itemid',42244),(379,'history_uint','itemid',42244),(380,'trends','itemid',42244),(381,'trends_uint','itemid',42244),(382,'events','itemid',42245),(383,'history','itemid',42245),(384,'history_log','itemid',42245),(385,'history_str','itemid',42245),(386,'history_text','itemid',42245),(387,'history_uint','itemid',42245),(388,'trends','itemid',42245),(389,'trends_uint','itemid',42245),(390,'events','itemid',42270),(391,'history','itemid',42270),(392,'history_log','itemid',42270),(393,'history_str','itemid',42270),(394,'history_text','itemid',42270),(395,'history_uint','itemid',42270),(396,'trends','itemid',42270),(397,'trends_uint','itemid',42270),(398,'events','itemid',39805),(399,'history','itemid',39805),(400,'history_log','itemid',39805),(401,'history_str','itemid',39805),(402,'history_text','itemid',39805),(403,'history_uint','itemid',39805),(404,'trends','itemid',39805),(405,'trends_uint','itemid',39805),(406,'events','itemid',42266),(407,'history','itemid',42266),(408,'history_log','itemid',42266),(409,'history_str','itemid',42266),(410,'history_text','itemid',42266),(411,'history_uint','itemid',42266),(412,'trends','itemid',42266),(413,'trends_uint','itemid',42266),(414,'events','itemid',28534),(415,'history','itemid',28534),(416,'history_log','itemid',28534),(417,'history_str','itemid',28534),(418,'history_text','itemid',28534),(419,'history_uint','itemid',28534),(420,'trends','itemid',28534),(421,'trends_uint','itemid',28534),(422,'events','itemid',28249),(423,'history','itemid',28249),(424,'history_log','itemid',28249),(425,'history_str','itemid',28249),(426,'history_text','itemid',28249),(427,'history_uint','itemid',28249),(428,'trends','itemid',28249),(429,'trends_uint','itemid',28249),(430,'events','itemid',25371),(431,'history','itemid',25371),(432,'history_log','itemid',25371),(433,'history_str','itemid',25371),(434,'history_text','itemid',25371),(435,'history_uint','itemid',25371),(436,'trends','itemid',25371),(437,'trends_uint','itemid',25371),(438,'events','itemid',29823),(439,'history','itemid',29823),(440,'history_log','itemid',29823),(441,'history_str','itemid',29823),(442,'history_text','itemid',29823),(443,'history_uint','itemid',29823),(444,'trends','itemid',29823),(445,'trends_uint','itemid',29823),(446,'events','itemid',23252),(447,'history','itemid',23252),(448,'history_log','itemid',23252),(449,'history_str','itemid',23252),(450,'history_text','itemid',23252),(451,'history_uint','itemid',23252),(452,'trends','itemid',23252),(453,'trends_uint','itemid',23252),(454,'events','itemid',33026),(455,'history','itemid',33026),(456,'history_log','itemid',33026),(457,'history_str','itemid',33026),(458,'history_text','itemid',33026),(459,'history_uint','itemid',33026),(460,'trends','itemid',33026),(461,'trends_uint','itemid',33026),(462,'events','itemid',23253),(463,'history','itemid',23253),(464,'history_log','itemid',23253),(465,'history_str','itemid',23253),(466,'history_text','itemid',23253),(467,'history_uint','itemid',23253),(468,'trends','itemid',23253),(469,'trends_uint','itemid',23253),(470,'events','itemid',23255),(471,'history','itemid',23255),(472,'history_log','itemid',23255),(473,'history_str','itemid',23255),(474,'history_text','itemid',23255),(475,'history_uint','itemid',23255),(476,'trends','itemid',23255),(477,'trends_uint','itemid',23255),(478,'events','itemid',23256),(479,'history','itemid',23256),(480,'history_log','itemid',23256),(481,'history_str','itemid',23256),(482,'history_text','itemid',23256),(483,'history_uint','itemid',23256),(484,'trends','itemid',23256),(485,'trends_uint','itemid',23256),(486,'events','itemid',33027),(487,'history','itemid',33027),(488,'history_log','itemid',33027),(489,'history_str','itemid',33027),(490,'history_text','itemid',33027),(491,'history_uint','itemid',33027),(492,'trends','itemid',33027),(493,'trends_uint','itemid',33027),(494,'events','itemid',23257),(495,'history','itemid',23257),(496,'history_log','itemid',23257),(497,'history_str','itemid',23257),(498,'history_text','itemid',23257),(499,'history_uint','itemid',23257),(500,'trends','itemid',23257),(501,'trends_uint','itemid',23257),(502,'events','itemid',23258),(503,'history','itemid',23258),(504,'history_log','itemid',23258),(505,'history_str','itemid',23258),(506,'history_text','itemid',23258),(507,'history_uint','itemid',23258),(508,'trends','itemid',23258),(509,'trends_uint','itemid',23258),(510,'events','itemid',23259),(511,'history','itemid',23259),(512,'history_log','itemid',23259),(513,'history_str','itemid',23259),(514,'history_text','itemid',23259),(515,'history_uint','itemid',23259),(516,'trends','itemid',23259),(517,'trends_uint','itemid',23259),(518,'events','itemid',23260),(519,'history','itemid',23260),(520,'history_log','itemid',23260),(521,'history_str','itemid',23260),(522,'history_text','itemid',23260),(523,'history_uint','itemid',23260),(524,'trends','itemid',23260),(525,'trends_uint','itemid',23260),(526,'events','itemid',25367),(527,'history','itemid',25367),(528,'history_log','itemid',25367),(529,'history_str','itemid',25367),(530,'history_text','itemid',25367),(531,'history_uint','itemid',25367),(532,'trends','itemid',25367),(533,'trends_uint','itemid',25367),(534,'events','itemid',23261),(535,'history','itemid',23261),(536,'history_log','itemid',23261),(537,'history_str','itemid',23261),(538,'history_text','itemid',23261),(539,'history_uint','itemid',23261),(540,'trends','itemid',23261),(541,'trends_uint','itemid',23261),(542,'events','itemid',23262),(543,'history','itemid',23262),(544,'history_log','itemid',23262),(545,'history_str','itemid',23262),(546,'history_text','itemid',23262),(547,'history_uint','itemid',23262),(548,'trends','itemid',23262),(549,'trends_uint','itemid',23262),(550,'events','itemid',28536),(551,'history','itemid',28536),(552,'history_log','itemid',28536),(553,'history_str','itemid',28536),(554,'history_text','itemid',28536),(555,'history_uint','itemid',28536),(556,'trends','itemid',28536),(557,'trends_uint','itemid',28536),(558,'events','itemid',28538),(559,'history','itemid',28538),(560,'history_log','itemid',28538),(561,'history_str','itemid',28538),(562,'history_text','itemid',28538),(563,'history_uint','itemid',28538),(564,'trends','itemid',28538),(565,'trends_uint','itemid',28538),(566,'events','itemid',39823),(567,'history','itemid',39823),(568,'history_log','itemid',39823),(569,'history_str','itemid',39823),(570,'history_text','itemid',39823),(571,'history_uint','itemid',39823),(572,'trends','itemid',39823),(573,'trends_uint','itemid',39823),(574,'events','itemid',23264),(575,'history','itemid',23264),(576,'history_log','itemid',23264),(577,'history_str','itemid',23264),(578,'history_text','itemid',23264),(579,'history_uint','itemid',23264),(580,'trends','itemid',23264),(581,'trends_uint','itemid',23264),(582,'events','itemid',25667),(583,'history','itemid',25667),(584,'history_log','itemid',25667),(585,'history_str','itemid',25667),(586,'history_text','itemid',25667),(587,'history_uint','itemid',25667),(588,'trends','itemid',25667),(589,'trends_uint','itemid',25667),(590,'events','itemid',25668),(591,'history','itemid',25668),(592,'history_log','itemid',25668),(593,'history_str','itemid',25668),(594,'history_text','itemid',25668),(595,'history_uint','itemid',25668),(596,'trends','itemid',25668),(597,'trends_uint','itemid',25668),(598,'events','itemid',23265),(599,'history','itemid',23265),(600,'history_log','itemid',23265),(601,'history_str','itemid',23265),(602,'history_text','itemid',23265),(603,'history_uint','itemid',23265),(604,'trends','itemid',23265),(605,'trends_uint','itemid',23265),(606,'events','itemid',34319),(607,'history','itemid',34319),(608,'history_log','itemid',34319),(609,'history_str','itemid',34319),(610,'history_text','itemid',34319),(611,'history_uint','itemid',34319),(612,'trends','itemid',34319),(613,'trends_uint','itemid',34319),(614,'events','itemid',34318),(615,'history','itemid',34318),(616,'history_log','itemid',34318),(617,'history_str','itemid',34318),(618,'history_text','itemid',34318),(619,'history_uint','itemid',34318),(620,'trends','itemid',34318),(621,'trends_uint','itemid',34318),(622,'events','itemid',23266),(623,'history','itemid',23266),(624,'history_log','itemid',23266),(625,'history_str','itemid',23266),(626,'history_text','itemid',23266),(627,'history_uint','itemid',23266),(628,'trends','itemid',23266),(629,'trends_uint','itemid',23266),(630,'events','itemid',35277),(631,'history','itemid',35277),(632,'history_log','itemid',35277),(633,'history_str','itemid',35277),(634,'history_text','itemid',35277),(635,'history_uint','itemid',35277),(636,'trends','itemid',35277),(637,'trends_uint','itemid',35277),(638,'events','itemid',23267),(639,'history','itemid',23267),(640,'history_log','itemid',23267),(641,'history_str','itemid',23267),(642,'history_text','itemid',23267),(643,'history_uint','itemid',23267),(644,'trends','itemid',23267),(645,'trends_uint','itemid',23267),(646,'events','itemid',23664),(647,'history','itemid',23664),(648,'history_log','itemid',23664),(649,'history_str','itemid',23664),(650,'history_text','itemid',23664),(651,'history_uint','itemid',23664),(652,'trends','itemid',23664),(653,'trends_uint','itemid',23664),(654,'events','itemid',23268),(655,'history','itemid',23268),(656,'history_log','itemid',23268),(657,'history_str','itemid',23268),(658,'history_text','itemid',23268),(659,'history_uint','itemid',23268),(660,'trends','itemid',23268),(661,'trends_uint','itemid',23268),(662,'events','itemid',23269),(663,'history','itemid',23269),(664,'history_log','itemid',23269),(665,'history_str','itemid',23269),(666,'history_text','itemid',23269),(667,'history_uint','itemid',23269),(668,'trends','itemid',23269),(669,'trends_uint','itemid',23269),(670,'events','itemid',35275),(671,'history','itemid',35275),(672,'history_log','itemid',35275),(673,'history_str','itemid',35275),(674,'history_text','itemid',35275),(675,'history_uint','itemid',35275),(676,'trends','itemid',35275),(677,'trends_uint','itemid',35275),(678,'events','itemid',23270),(679,'history','itemid',23270),(680,'history_log','itemid',23270),(681,'history_str','itemid',23270),(682,'history_text','itemid',23270),(683,'history_uint','itemid',23270),(684,'trends','itemid',23270),(685,'trends_uint','itemid',23270),(686,'events','itemid',23328),(687,'history','itemid',23328),(688,'history_log','itemid',23328),(689,'history_str','itemid',23328),(690,'history_text','itemid',23328),(691,'history_uint','itemid',23328),(692,'trends','itemid',23328),(693,'trends_uint','itemid',23328),(694,'events','itemid',44056),(695,'history','itemid',44056),(696,'history_log','itemid',44056),(697,'history_str','itemid',44056),(698,'history_text','itemid',44056),(699,'history_uint','itemid',44056),(700,'trends','itemid',44056),(701,'trends_uint','itemid',44056),(702,'events','itemid',23271),(703,'history','itemid',23271),(704,'history_log','itemid',23271),(705,'history_str','itemid',23271),(706,'history_text','itemid',23271),(707,'history_uint','itemid',23271),(708,'trends','itemid',23271),(709,'trends_uint','itemid',23271),(710,'events','itemid',23272),(711,'history','itemid',23272),(712,'history_log','itemid',23272),(713,'history_str','itemid',23272),(714,'history_text','itemid',23272),(715,'history_uint','itemid',23272),(716,'trends','itemid',23272),(717,'trends_uint','itemid',23272),(718,'events','itemid',23273),(719,'history','itemid',23273),(720,'history_log','itemid',23273),(721,'history_str','itemid',23273),(722,'history_text','itemid',23273),(723,'history_uint','itemid',23273),(724,'trends','itemid',23273),(725,'trends_uint','itemid',23273),(726,'events','itemid',33024),(727,'history','itemid',33024),(728,'history_log','itemid',33024),(729,'history_str','itemid',33024),(730,'history_text','itemid',33024),(731,'history_uint','itemid',33024),(732,'trends','itemid',33024),(733,'trends_uint','itemid',33024),(734,'events','itemid',33025),(735,'history','itemid',33025),(736,'history_log','itemid',33025),(737,'history_str','itemid',33025),(738,'history_text','itemid',33025),(739,'history_uint','itemid',33025),(740,'trends','itemid',33025),(741,'trends_uint','itemid',33025),(742,'events','itemid',23620),(743,'history','itemid',23620),(744,'history_log','itemid',23620),(745,'history_str','itemid',23620),(746,'history_text','itemid',23620),(747,'history_uint','itemid',23620),(748,'trends','itemid',23620),(749,'trends_uint','itemid',23620),(750,'events','itemid',23625),(751,'history','itemid',23625),(752,'history_log','itemid',23625),(753,'history_str','itemid',23625),(754,'history_text','itemid',23625),(755,'history_uint','itemid',23625),(756,'trends','itemid',23625),(757,'trends_uint','itemid',23625),(758,'events','itemid',23628),(759,'history','itemid',23628),(760,'history_log','itemid',23628),(761,'history_str','itemid',23628),(762,'history_text','itemid',23628),(763,'history_uint','itemid',23628),(764,'trends','itemid',23628),(765,'trends_uint','itemid',23628),(766,'events','itemid',23662),(767,'history','itemid',23662),(768,'history_log','itemid',23662),(769,'history_str','itemid',23662),(770,'history_text','itemid',23662),(771,'history_uint','itemid',23662),(772,'trends','itemid',23662),(773,'trends_uint','itemid',23662),(774,'events','itemid',35276),(775,'history','itemid',35276),(776,'history_log','itemid',35276),(777,'history_str','itemid',35276),(778,'history_text','itemid',35276),(779,'history_uint','itemid',35276),(780,'trends','itemid',35276),(781,'trends_uint','itemid',35276),(782,'events','itemid',23635),(783,'history','itemid',23635),(784,'history_log','itemid',23635),(785,'history_str','itemid',23635),(786,'history_text','itemid',23635),(787,'history_uint','itemid',23635),(788,'trends','itemid',23635),(789,'trends_uint','itemid',23635),(790,'events','itemid',23274),(791,'history','itemid',23274),(792,'history_log','itemid',23274),(793,'history_str','itemid',23274),(794,'history_text','itemid',23274),(795,'history_uint','itemid',23274),(796,'trends','itemid',23274),(797,'trends_uint','itemid',23274),(798,'events','itemid',23275),(799,'history','itemid',23275),(800,'history_log','itemid',23275),(801,'history_str','itemid',23275),(802,'history_text','itemid',23275),(803,'history_uint','itemid',23275),(804,'trends','itemid',23275),(805,'trends_uint','itemid',23275),(806,'events','itemid',23276),(807,'history','itemid',23276),(808,'history_log','itemid',23276),(809,'history_str','itemid',23276),(810,'history_text','itemid',23276),(811,'history_uint','itemid',23276),(812,'trends','itemid',23276),(813,'trends_uint','itemid',23276),(814,'events','itemid',10073),(815,'history','itemid',10073),(816,'history_log','itemid',10073),(817,'history_str','itemid',10073),(818,'history_text','itemid',10073),(819,'history_uint','itemid',10073),(820,'trends','itemid',10073),(821,'trends_uint','itemid',10073),(822,'events','itemid',10075),(823,'history','itemid',10075),(824,'history_log','itemid',10075),(825,'history_str','itemid',10075),(826,'history_text','itemid',10075),(827,'history_uint','itemid',10075),(828,'trends','itemid',10075),(829,'trends_uint','itemid',10075),(830,'events','itemid',10078),(831,'history','itemid',10078),(832,'history_log','itemid',10078),(833,'history_str','itemid',10078),(834,'history_text','itemid',10078),(835,'history_uint','itemid',10078),(836,'trends','itemid',10078),(837,'trends_uint','itemid',10078),(838,'events','itemid',10074),(839,'history','itemid',10074),(840,'history_log','itemid',10074),(841,'history_str','itemid',10074),(842,'history_text','itemid',10074),(843,'history_uint','itemid',10074),(844,'trends','itemid',10074),(845,'trends_uint','itemid',10074),(846,'events','itemid',10077),(847,'history','itemid',10077),(848,'history_log','itemid',10077),(849,'history_str','itemid',10077),(850,'history_text','itemid',10077),(851,'history_uint','itemid',10077),(852,'trends','itemid',10077),(853,'trends_uint','itemid',10077),(854,'events','itemid',10076),(855,'history','itemid',10076),(856,'history_log','itemid',10076),(857,'history_str','itemid',10076),(858,'history_text','itemid',10076),(859,'history_uint','itemid',10076),(860,'trends','itemid',10076),(861,'trends_uint','itemid',10076),(862,'events','itemid',23277),(863,'history','itemid',23277),(864,'history_log','itemid',23277),(865,'history_str','itemid',23277),(866,'history_text','itemid',23277),(867,'history_uint','itemid',23277),(868,'trends','itemid',23277),(869,'trends_uint','itemid',23277),(870,'events','lldruleid',22944),(871,'events','lldruleid',22947),(872,'events','lldruleid',27211),(873,'events','lldruleid',27210),(874,'events','lldruleid',40489),(875,'events','lldruleid',40490),(876,'events','lldruleid',30090),(877,'events','lldruleid',27209),(878,'events','lldruleid',27244),(879,'events','lldruleid',40544),(880,'events','lldruleid',27243),(881,'events','lldruleid',27242),(882,'events','lldruleid',27303),(883,'events','lldruleid',40580),(884,'events','lldruleid',27302),(885,'events','lldruleid',27306),(886,'events','lldruleid',27304),(887,'events','lldruleid',27311),(888,'events','lldruleid',27308),(889,'events','lldruleid',40581),(890,'events','lldruleid',27307),(891,'events','lldruleid',27310),(892,'events','lldruleid',27309),(893,'events','lldruleid',27390),(894,'events','lldruleid',27391),(895,'events','lldruleid',27393),(896,'events','lldruleid',27396),(897,'events','lldruleid',27395),(898,'events','lldruleid',27394),(899,'events','lldruleid',40648),(900,'events','lldruleid',40649),(901,'events','lldruleid',40650),(902,'events','lldruleid',40651),(903,'events','lldruleid',40652),(904,'events','lldruleid',40653),(905,'events','lldruleid',40654),(906,'events','lldruleid',40655),(907,'events','lldruleid',28244),(908,'events','lldruleid',28308),(909,'events','lldruleid',28307),(910,'events','lldruleid',40513),(911,'events','lldruleid',40514),(912,'events','lldruleid',28309),(913,'events','lldruleid',28306),(914,'events','lldruleid',40515),(915,'events','lldruleid',40516),(916,'events','lldruleid',33182),(917,'events','lldruleid',32762),(918,'events','lldruleid',32763),(919,'events','lldruleid',32764),(920,'events','lldruleid',32765),(921,'events','lldruleid',30916),(922,'events','lldruleid',44336),(923,'events','lldruleid',28797),(924,'events','lldruleid',30686),(925,'events','lldruleid',30687),(926,'events','lldruleid',31803),(927,'events','lldruleid',31804),(928,'events','lldruleid',31805),(929,'events','lldruleid',31806),(930,'events','lldruleid',32168),(931,'events','lldruleid',32169),(932,'events','lldruleid',32440),(933,'events','lldruleid',32441),(934,'events','lldruleid',32465),(935,'events','lldruleid',32466),(936,'events','lldruleid',32467),(937,'events','lldruleid',32468),(938,'events','lldruleid',32469),(939,'events','lldruleid',32470),(940,'events','lldruleid',32471),(941,'events','lldruleid',32472),(942,'events','lldruleid',32473),(943,'events','lldruleid',32474),(944,'events','lldruleid',32475),(945,'events','lldruleid',32476),(946,'events','lldruleid',32477),(947,'events','lldruleid',32478),(948,'events','lldruleid',32479),(949,'events','lldruleid',32480),(950,'events','lldruleid',32481),(951,'events','lldruleid',32482),(952,'events','lldruleid',32483),(953,'events','lldruleid',32484),(954,'events','lldruleid',32485),(955,'events','lldruleid',32755),(956,'events','lldruleid',32756),(957,'events','lldruleid',32757),(958,'events','lldruleid',33095),(959,'events','lldruleid',33958),(960,'events','lldruleid',33959),(961,'events','lldruleid',33960),(962,'events','lldruleid',33961),(963,'events','lldruleid',33962),(964,'events','lldruleid',33963),(965,'events','lldruleid',33964),(966,'events','lldruleid',33965),(967,'events','lldruleid',33999),(968,'events','lldruleid',34000),(969,'events','lldruleid',34001),(970,'events','lldruleid',34002),(971,'events','lldruleid',34003),(972,'events','lldruleid',34004),(973,'events','lldruleid',34005),(974,'events','lldruleid',34006),(975,'events','lldruleid',34040),(976,'events','lldruleid',34041),(977,'events','lldruleid',34042),(978,'events','lldruleid',34043),(979,'events','lldruleid',34044),(980,'events','lldruleid',34045),(981,'events','lldruleid',34046),(982,'events','lldruleid',34047),(983,'events','lldruleid',34081),(984,'events','lldruleid',34082),(985,'events','lldruleid',34083),(986,'events','lldruleid',34084),(987,'events','lldruleid',34085),(988,'events','lldruleid',34086),(989,'events','lldruleid',34087),(990,'events','lldruleid',34088),(991,'events','lldruleid',34122),(992,'events','lldruleid',34123),(993,'events','lldruleid',34124),(994,'events','lldruleid',34125),(995,'events','lldruleid',34126),(996,'events','lldruleid',34127),(997,'events','lldruleid',34128),(998,'events','lldruleid',34129),(999,'events','lldruleid',34207),(1000,'events','lldruleid',34208),(1001,'events','lldruleid',34209),(1002,'events','lldruleid',34210),(1003,'events','lldruleid',34211),(1004,'events','lldruleid',34789),(1005,'events','lldruleid',34476),(1006,'events','lldruleid',34477),(1007,'events','lldruleid',34478),(1008,'events','lldruleid',34479),(1009,'events','lldruleid',34480),(1010,'events','lldruleid',34481),(1011,'events','lldruleid',34524),(1012,'events','lldruleid',34525),(1013,'events','lldruleid',34526),(1014,'events','lldruleid',34527),(1015,'events','lldruleid',34528),(1016,'events','lldruleid',34529),(1017,'events','lldruleid',34572),(1018,'events','lldruleid',34573),(1019,'events','lldruleid',34574),(1020,'events','lldruleid',34575),(1021,'events','lldruleid',34576),(1022,'events','lldruleid',34577),(1023,'events','lldruleid',34620),(1024,'events','lldruleid',34621),(1025,'events','lldruleid',34622),(1026,'events','lldruleid',34623),(1027,'events','lldruleid',34624),(1028,'events','lldruleid',34625),(1029,'events','lldruleid',34668),(1030,'events','lldruleid',34669),(1031,'events','lldruleid',34670),(1032,'events','lldruleid',34671),(1033,'events','lldruleid',34672),(1034,'events','lldruleid',34673),(1035,'events','lldruleid',34764),(1036,'events','lldruleid',34765),(1037,'events','lldruleid',34766),(1038,'events','lldruleid',34767),(1039,'events','lldruleid',34768),(1040,'events','lldruleid',34769),(1041,'events','lldruleid',34818),(1042,'events','lldruleid',34819),(1043,'events','lldruleid',34820),(1044,'events','lldruleid',34821),(1045,'events','lldruleid',34822),(1046,'events','lldruleid',34823),(1047,'events','lldruleid',34866),(1048,'events','lldruleid',34867),(1049,'events','lldruleid',34868),(1050,'events','lldruleid',34869),(1051,'events','lldruleid',34870),(1052,'events','lldruleid',34871),(1053,'events','lldruleid',34914),(1054,'events','lldruleid',34915),(1055,'events','lldruleid',34916),(1056,'events','lldruleid',34917),(1057,'events','lldruleid',34918),(1058,'events','lldruleid',34919),(1059,'events','lldruleid',35041),(1060,'events','lldruleid',35042),(1061,'events','lldruleid',35043),(1062,'events','lldruleid',35044),(1063,'events','lldruleid',35045),(1064,'events','lldruleid',35046),(1065,'events','lldruleid',35364),(1066,'events','lldruleid',35365),(1067,'events','lldruleid',35366),(1068,'events','lldruleid',35367),(1069,'events','lldruleid',35368),(1070,'events','lldruleid',43526),(1071,'events','lldruleid',43527),(1072,'events','lldruleid',43642),(1073,'events','lldruleid',43643),(1074,'events','lldruleid',43644),(1075,'events','lldruleid',43645),(1076,'events','lldruleid',43711),(1077,'events','lldruleid',44200),(1078,'events','lldruleid',44293),(1079,'events','lldruleid',43768),(1080,'events','lldruleid',44052),(1081,'events','lldruleid',44053),(1082,'events','lldruleid',44054),(1083,'events','itemid',42175),(1084,'history','itemid',42175),(1085,'history_log','itemid',42175),(1086,'history_str','itemid',42175),(1087,'history_text','itemid',42175),(1088,'history_uint','itemid',42175),(1089,'trends','itemid',42175),(1090,'trends_uint','itemid',42175),(1091,'events','itemid',42176),(1092,'history','itemid',42176),(1093,'history_log','itemid',42176),(1094,'history_str','itemid',42176),(1095,'history_text','itemid',42176),(1096,'history_uint','itemid',42176),(1097,'trends','itemid',42176),(1098,'trends_uint','itemid',42176),(1099,'events','itemid',42177),(1100,'history','itemid',42177),(1101,'history_log','itemid',42177),(1102,'history_str','itemid',42177),(1103,'history_text','itemid',42177),(1104,'history_uint','itemid',42177),(1105,'trends','itemid',42177),(1106,'trends_uint','itemid',42177),(1107,'events','itemid',22917),(1108,'history','itemid',22917),(1109,'history_log','itemid',22917),(1110,'history_str','itemid',22917),(1111,'history_text','itemid',22917),(1112,'history_uint','itemid',22917),(1113,'trends','itemid',22917),(1114,'trends_uint','itemid',22917),(1115,'events','itemid',22918),(1116,'history','itemid',22918),(1117,'history_log','itemid',22918),(1118,'history_str','itemid',22918),(1119,'history_text','itemid',22918),(1120,'history_uint','itemid',22918),(1121,'trends','itemid',22918),(1122,'trends_uint','itemid',22918),(1123,'events','itemid',22920),(1124,'history','itemid',22920),(1125,'history_log','itemid',22920),(1126,'history_str','itemid',22920),(1127,'history_text','itemid',22920),(1128,'history_uint','itemid',22920),(1129,'trends','itemid',22920),(1130,'trends_uint','itemid',22920),(1131,'events','itemid',22921),(1132,'history','itemid',22921),(1133,'history_log','itemid',22921),(1134,'history_str','itemid',22921),(1135,'history_text','itemid',22921),(1136,'history_uint','itemid',22921),(1137,'trends','itemid',22921),(1138,'trends_uint','itemid',22921),(1139,'events','itemid',22922),(1140,'history','itemid',22922),(1141,'history_log','itemid',22922),(1142,'history_str','itemid',22922),(1143,'history_text','itemid',22922),(1144,'history_uint','itemid',22922),(1145,'trends','itemid',22922),(1146,'trends_uint','itemid',22922),(1147,'events','itemid',22923),(1148,'history','itemid',22923),(1149,'history_log','itemid',22923),(1150,'history_str','itemid',22923),(1151,'history_text','itemid',22923),(1152,'history_uint','itemid',22923),(1153,'trends','itemid',22923),(1154,'trends_uint','itemid',22923),(1155,'events','itemid',22924),(1156,'history','itemid',22924),(1157,'history_log','itemid',22924),(1158,'history_str','itemid',22924),(1159,'history_text','itemid',22924),(1160,'history_uint','itemid',22924),(1161,'trends','itemid',22924),(1162,'trends_uint','itemid',22924),(1163,'events','itemid',22933),(1164,'history','itemid',22933),(1165,'history_log','itemid',22933),(1166,'history_str','itemid',22933),(1167,'history_text','itemid',22933),(1168,'history_uint','itemid',22933),(1169,'trends','itemid',22933),(1170,'trends_uint','itemid',22933),(1171,'events','itemid',22934),(1172,'history','itemid',22934),(1173,'history_log','itemid',22934),(1174,'history_str','itemid',22934),(1175,'history_text','itemid',22934),(1176,'history_uint','itemid',22934),(1177,'trends','itemid',22934),(1178,'trends_uint','itemid',22934),(1179,'events','itemid',23108),(1180,'history','itemid',23108),(1181,'history_log','itemid',23108),(1182,'history_str','itemid',23108),(1183,'history_text','itemid',23108),(1184,'history_uint','itemid',23108),(1185,'trends','itemid',23108),(1186,'trends_uint','itemid',23108),(1187,'events','itemid',23109),(1188,'history','itemid',23109),(1189,'history_log','itemid',23109),(1190,'history_str','itemid',23109),(1191,'history_text','itemid',23109),(1192,'history_uint','itemid',23109),(1193,'trends','itemid',23109),(1194,'trends_uint','itemid',23109),(1195,'events','itemid',23110),(1196,'history','itemid',23110),(1197,'history_log','itemid',23110),(1198,'history_str','itemid',23110),(1199,'history_text','itemid',23110),(1200,'history_uint','itemid',23110),(1201,'trends','itemid',23110),(1202,'trends_uint','itemid',23110),(1203,'events','itemid',23111),(1204,'history','itemid',23111),(1205,'history_log','itemid',23111),(1206,'history_str','itemid',23111),(1207,'history_text','itemid',23111),(1208,'history_uint','itemid',23111),(1209,'trends','itemid',23111),(1210,'trends_uint','itemid',23111),(1211,'events','itemid',23112),(1212,'history','itemid',23112),(1213,'history_log','itemid',23112),(1214,'history_str','itemid',23112),(1215,'history_text','itemid',23112),(1216,'history_uint','itemid',23112),(1217,'trends','itemid',23112),(1218,'trends_uint','itemid',23112),(1219,'events','itemid',23113),(1220,'history','itemid',23113),(1221,'history_log','itemid',23113),(1222,'history_str','itemid',23113),(1223,'history_text','itemid',23113),(1224,'history_uint','itemid',23113),(1225,'trends','itemid',23113),(1226,'trends_uint','itemid',23113),(1227,'events','itemid',23114),(1228,'history','itemid',23114),(1229,'history_log','itemid',23114),(1230,'history_str','itemid',23114),(1231,'history_text','itemid',23114),(1232,'history_uint','itemid',23114),(1233,'trends','itemid',23114),(1234,'trends_uint','itemid',23114),(1235,'events','itemid',23115),(1236,'history','itemid',23115),(1237,'history_log','itemid',23115),(1238,'history_str','itemid',23115),(1239,'history_text','itemid',23115),(1240,'history_uint','itemid',23115),(1241,'trends','itemid',23115),(1242,'trends_uint','itemid',23115),(1243,'events','itemid',23116),(1244,'history','itemid',23116),(1245,'history_log','itemid',23116),(1246,'history_str','itemid',23116),(1247,'history_text','itemid',23116),(1248,'history_uint','itemid',23116),(1249,'trends','itemid',23116),(1250,'trends_uint','itemid',23116),(1251,'events','itemid',23117),(1252,'history','itemid',23117),(1253,'history_log','itemid',23117),(1254,'history_str','itemid',23117),(1255,'history_text','itemid',23117),(1256,'history_uint','itemid',23117),(1257,'trends','itemid',23117),(1258,'trends_uint','itemid',23117),(1259,'events','itemid',23118),(1260,'history','itemid',23118),(1261,'history_log','itemid',23118),(1262,'history_str','itemid',23118),(1263,'history_text','itemid',23118),(1264,'history_uint','itemid',23118),(1265,'trends','itemid',23118),(1266,'trends_uint','itemid',23118),(1267,'events','itemid',23119),(1268,'history','itemid',23119),(1269,'history_log','itemid',23119),(1270,'history_str','itemid',23119),(1271,'history_text','itemid',23119),(1272,'history_uint','itemid',23119),(1273,'trends','itemid',23119),(1274,'trends_uint','itemid',23119),(1275,'events','itemid',23120),(1276,'history','itemid',23120),(1277,'history_log','itemid',23120),(1278,'history_str','itemid',23120),(1279,'history_text','itemid',23120),(1280,'history_uint','itemid',23120),(1281,'trends','itemid',23120),(1282,'trends_uint','itemid',23120),(1283,'events','itemid',23121),(1284,'history','itemid',23121),(1285,'history_log','itemid',23121),(1286,'history_str','itemid',23121),(1287,'history_text','itemid',23121),(1288,'history_uint','itemid',23121),(1289,'trends','itemid',23121),(1290,'trends_uint','itemid',23121),(1291,'events','itemid',23122),(1292,'history','itemid',23122),(1293,'history_log','itemid',23122),(1294,'history_str','itemid',23122),(1295,'history_text','itemid',23122),(1296,'history_uint','itemid',23122),(1297,'trends','itemid',23122),(1298,'trends_uint','itemid',23122),(1299,'events','itemid',23123),(1300,'history','itemid',23123),(1301,'history_log','itemid',23123),(1302,'history_str','itemid',23123),(1303,'history_text','itemid',23123),(1304,'history_uint','itemid',23123),(1305,'trends','itemid',23123),(1306,'trends_uint','itemid',23123),(1307,'events','itemid',23124),(1308,'history','itemid',23124),(1309,'history_log','itemid',23124),(1310,'history_str','itemid',23124),(1311,'history_text','itemid',23124),(1312,'history_uint','itemid',23124),(1313,'trends','itemid',23124),(1314,'trends_uint','itemid',23124),(1315,'events','itemid',23125),(1316,'history','itemid',23125),(1317,'history_log','itemid',23125),(1318,'history_str','itemid',23125),(1319,'history_text','itemid',23125),(1320,'history_uint','itemid',23125),(1321,'trends','itemid',23125),(1322,'trends_uint','itemid',23125),(1323,'events','itemid',23126),(1324,'history','itemid',23126),(1325,'history_log','itemid',23126),(1326,'history_str','itemid',23126),(1327,'history_text','itemid',23126),(1328,'history_uint','itemid',23126),(1329,'trends','itemid',23126),(1330,'trends_uint','itemid',23126),(1331,'events','itemid',23127),(1332,'history','itemid',23127),(1333,'history_log','itemid',23127),(1334,'history_str','itemid',23127),(1335,'history_text','itemid',23127),(1336,'history_uint','itemid',23127),(1337,'trends','itemid',23127),(1338,'trends_uint','itemid',23127),(1339,'events','itemid',23128),(1340,'history','itemid',23128),(1341,'history_log','itemid',23128),(1342,'history_str','itemid',23128),(1343,'history_text','itemid',23128),(1344,'history_uint','itemid',23128),(1345,'trends','itemid',23128),(1346,'trends_uint','itemid',23128),(1347,'events','itemid',23129),(1348,'history','itemid',23129),(1349,'history_log','itemid',23129),(1350,'history_str','itemid',23129),(1351,'history_text','itemid',23129),(1352,'history_uint','itemid',23129),(1353,'trends','itemid',23129),(1354,'trends_uint','itemid',23129),(1355,'events','itemid',23130),(1356,'history','itemid',23130),(1357,'history_log','itemid',23130),(1358,'history_str','itemid',23130),(1359,'history_text','itemid',23130),(1360,'history_uint','itemid',23130),(1361,'trends','itemid',23130),(1362,'trends_uint','itemid',23130),(1363,'events','itemid',23131),(1364,'history','itemid',23131),(1365,'history_log','itemid',23131),(1366,'history_str','itemid',23131),(1367,'history_text','itemid',23131),(1368,'history_uint','itemid',23131),(1369,'trends','itemid',23131),(1370,'trends_uint','itemid',23131),(1371,'events','itemid',22938),(1372,'history','itemid',22938),(1373,'history_log','itemid',22938),(1374,'history_str','itemid',22938),(1375,'history_text','itemid',22938),(1376,'history_uint','itemid',22938),(1377,'trends','itemid',22938),(1378,'trends_uint','itemid',22938),(1379,'events','itemid',22939),(1380,'history','itemid',22939),(1381,'history_log','itemid',22939),(1382,'history_str','itemid',22939),(1383,'history_text','itemid',22939),(1384,'history_uint','itemid',22939),(1385,'trends','itemid',22939),(1386,'trends_uint','itemid',22939),(1387,'events','itemid',22940),(1388,'history','itemid',22940),(1389,'history_log','itemid',22940),(1390,'history_str','itemid',22940),(1391,'history_text','itemid',22940),(1392,'history_uint','itemid',22940),(1393,'trends','itemid',22940),(1394,'trends_uint','itemid',22940),(1395,'events','itemid',22941),(1396,'history','itemid',22941),(1397,'history_log','itemid',22941),(1398,'history_str','itemid',22941),(1399,'history_text','itemid',22941),(1400,'history_uint','itemid',22941),(1401,'trends','itemid',22941),(1402,'trends_uint','itemid',22941),(1403,'events','itemid',44427),(1404,'history','itemid',44427),(1405,'history_log','itemid',44427),(1406,'history_str','itemid',44427),(1407,'history_text','itemid',44427),(1408,'history_uint','itemid',44427),(1409,'trends','itemid',44427),(1410,'trends_uint','itemid',44427),(1411,'events','itemid',22942),(1412,'history','itemid',22942),(1413,'history_log','itemid',22942),(1414,'history_str','itemid',22942),(1415,'history_text','itemid',22942),(1416,'history_uint','itemid',22942),(1417,'trends','itemid',22942),(1418,'trends_uint','itemid',22942),(1419,'events','itemid',22943),(1420,'history','itemid',22943),(1421,'history_log','itemid',22943),(1422,'history_str','itemid',22943),(1423,'history_text','itemid',22943),(1424,'history_uint','itemid',22943),(1425,'trends','itemid',22943),(1426,'trends_uint','itemid',22943),(1427,'events','itemid',42178),(1428,'history','itemid',42178),(1429,'history_log','itemid',42178),(1430,'history_str','itemid',42178),(1431,'history_text','itemid',42178),(1432,'history_uint','itemid',42178),(1433,'trends','itemid',42178),(1434,'trends_uint','itemid',42178),(1435,'events','itemid',40478),(1436,'history','itemid',40478),(1437,'history_log','itemid',40478),(1438,'history_str','itemid',40478),(1439,'history_text','itemid',40478),(1440,'history_uint','itemid',40478),(1441,'trends','itemid',40478),(1442,'trends_uint','itemid',40478),(1443,'events','itemid',40482),(1444,'history','itemid',40482),(1445,'history_log','itemid',40482),(1446,'history_str','itemid',40482),(1447,'history_text','itemid',40482),(1448,'history_uint','itemid',40482),(1449,'trends','itemid',40482),(1450,'trends_uint','itemid',40482),(1451,'events','itemid',40487),(1452,'history','itemid',40487),(1453,'history_log','itemid',40487),(1454,'history_str','itemid',40487),(1455,'history_text','itemid',40487),(1456,'history_uint','itemid',40487),(1457,'trends','itemid',40487),(1458,'trends_uint','itemid',40487),(1459,'events','itemid',40486),(1460,'history','itemid',40486),(1461,'history_log','itemid',40486),(1462,'history_str','itemid',40486),(1463,'history_text','itemid',40486),(1464,'history_uint','itemid',40486),(1465,'trends','itemid',40486),(1466,'trends_uint','itemid',40486),(1467,'events','itemid',40485),(1468,'history','itemid',40485),(1469,'history_log','itemid',40485),(1470,'history_str','itemid',40485),(1471,'history_text','itemid',40485),(1472,'history_uint','itemid',40485),(1473,'trends','itemid',40485),(1474,'trends_uint','itemid',40485),(1475,'events','itemid',27208),(1476,'history','itemid',27208),(1477,'history_log','itemid',27208),(1478,'history_str','itemid',27208),(1479,'history_text','itemid',27208),(1480,'history_uint','itemid',27208),(1481,'trends','itemid',27208),(1482,'trends_uint','itemid',27208),(1483,'events','itemid',40484),(1484,'history','itemid',40484),(1485,'history_log','itemid',40484),(1486,'history_str','itemid',40484),(1487,'history_text','itemid',40484),(1488,'history_uint','itemid',40484),(1489,'trends','itemid',40484),(1490,'trends_uint','itemid',40484),(1491,'events','itemid',27203),(1492,'history','itemid',27203),(1493,'history_log','itemid',27203),(1494,'history_str','itemid',27203),(1495,'history_text','itemid',27203),(1496,'history_uint','itemid',27203),(1497,'trends','itemid',27203),(1498,'trends_uint','itemid',27203),(1499,'events','itemid',43770),(1500,'history','itemid',43770),(1501,'history_log','itemid',43770),(1502,'history_str','itemid',43770),(1503,'history_text','itemid',43770),(1504,'history_uint','itemid',43770),(1505,'trends','itemid',43770),(1506,'trends_uint','itemid',43770),(1507,'events','itemid',40483),(1508,'history','itemid',40483),(1509,'history_log','itemid',40483),(1510,'history_str','itemid',40483),(1511,'history_text','itemid',40483),(1512,'history_uint','itemid',40483),(1513,'trends','itemid',40483),(1514,'trends_uint','itemid',40483),(1515,'events','itemid',40481),(1516,'history','itemid',40481),(1517,'history_log','itemid',40481),(1518,'history_str','itemid',40481),(1519,'history_text','itemid',40481),(1520,'history_uint','itemid',40481),(1521,'trends','itemid',40481),(1522,'trends_uint','itemid',40481),(1523,'events','itemid',40480),(1524,'history','itemid',40480),(1525,'history_log','itemid',40480),(1526,'history_str','itemid',40480),(1527,'history_text','itemid',40480),(1528,'history_uint','itemid',40480),(1529,'trends','itemid',40480),(1530,'trends_uint','itemid',40480),(1531,'events','itemid',40479),(1532,'history','itemid',40479),(1533,'history_log','itemid',40479),(1534,'history_str','itemid',40479),(1535,'history_text','itemid',40479),(1536,'history_uint','itemid',40479),(1537,'trends','itemid',40479),(1538,'trends_uint','itemid',40479),(1539,'events','itemid',30086),(1540,'history','itemid',30086),(1541,'history_log','itemid',30086),(1542,'history_str','itemid',30086),(1543,'history_text','itemid',30086),(1544,'history_uint','itemid',30086),(1545,'trends','itemid',30086),(1546,'trends_uint','itemid',30086),(1547,'events','itemid',30087),(1548,'history','itemid',30087),(1549,'history_log','itemid',30087),(1550,'history_str','itemid',30087),(1551,'history_text','itemid',30087),(1552,'history_uint','itemid',30087),(1553,'trends','itemid',30087),(1554,'trends_uint','itemid',30087),(1555,'events','itemid',30088),(1556,'history','itemid',30088),(1557,'history_log','itemid',30088),(1558,'history_str','itemid',30088),(1559,'history_text','itemid',30088),(1560,'history_uint','itemid',30088),(1561,'trends','itemid',30088),(1562,'trends_uint','itemid',30088),(1563,'events','itemid',27207),(1564,'history','itemid',27207),(1565,'history_log','itemid',27207),(1566,'history_str','itemid',27207),(1567,'history_text','itemid',27207),(1568,'history_uint','itemid',27207),(1569,'trends','itemid',27207),(1570,'trends_uint','itemid',27207),(1571,'events','itemid',30089),(1572,'history','itemid',30089),(1573,'history_log','itemid',30089),(1574,'history_str','itemid',30089),(1575,'history_text','itemid',30089),(1576,'history_uint','itemid',30089),(1577,'trends','itemid',30089),(1578,'trends_uint','itemid',30089),(1579,'events','itemid',40488),(1580,'history','itemid',40488),(1581,'history_log','itemid',40488),(1582,'history_str','itemid',40488),(1583,'history_text','itemid',40488),(1584,'history_uint','itemid',40488),(1585,'trends','itemid',40488),(1586,'trends_uint','itemid',40488),(1587,'events','itemid',40533),(1588,'history','itemid',40533),(1589,'history_log','itemid',40533),(1590,'history_str','itemid',40533),(1591,'history_text','itemid',40533),(1592,'history_uint','itemid',40533),(1593,'trends','itemid',40533),(1594,'trends_uint','itemid',40533),(1595,'events','itemid',40534),(1596,'history','itemid',40534),(1597,'history_log','itemid',40534),(1598,'history_str','itemid',40534),(1599,'history_text','itemid',40534),(1600,'history_uint','itemid',40534),(1601,'trends','itemid',40534),(1602,'trends_uint','itemid',40534),(1603,'events','itemid',40535),(1604,'history','itemid',40535),(1605,'history_log','itemid',40535),(1606,'history_str','itemid',40535),(1607,'history_text','itemid',40535),(1608,'history_uint','itemid',40535),(1609,'trends','itemid',40535),(1610,'trends_uint','itemid',40535),(1611,'events','itemid',40536),(1612,'history','itemid',40536),(1613,'history_log','itemid',40536),(1614,'history_str','itemid',40536),(1615,'history_text','itemid',40536),(1616,'history_uint','itemid',40536),(1617,'trends','itemid',40536),(1618,'trends_uint','itemid',40536),(1619,'events','itemid',40537),(1620,'history','itemid',40537),(1621,'history_log','itemid',40537),(1622,'history_str','itemid',40537),(1623,'history_text','itemid',40537),(1624,'history_uint','itemid',40537),(1625,'trends','itemid',40537),(1626,'trends_uint','itemid',40537),(1627,'events','itemid',27240),(1628,'history','itemid',27240),(1629,'history_log','itemid',27240),(1630,'history_str','itemid',27240),(1631,'history_text','itemid',27240),(1632,'history_uint','itemid',27240),(1633,'trends','itemid',27240),(1634,'trends_uint','itemid',27240),(1635,'events','itemid',40538),(1636,'history','itemid',40538),(1637,'history_log','itemid',40538),(1638,'history_str','itemid',40538),(1639,'history_text','itemid',40538),(1640,'history_uint','itemid',40538),(1641,'trends','itemid',40538),(1642,'trends_uint','itemid',40538),(1643,'events','itemid',27236),(1644,'history','itemid',27236),(1645,'history_log','itemid',27236),(1646,'history_str','itemid',27236),(1647,'history_text','itemid',27236),(1648,'history_uint','itemid',27236),(1649,'trends','itemid',27236),(1650,'trends_uint','itemid',27236),(1651,'events','itemid',27237),(1652,'history','itemid',27237),(1653,'history_log','itemid',27237),(1654,'history_str','itemid',27237),(1655,'history_text','itemid',27237),(1656,'history_uint','itemid',27237),(1657,'trends','itemid',27237),(1658,'trends_uint','itemid',27237),(1659,'events','itemid',43772),(1660,'history','itemid',43772),(1661,'history_log','itemid',43772),(1662,'history_str','itemid',43772),(1663,'history_text','itemid',43772),(1664,'history_uint','itemid',43772),(1665,'trends','itemid',43772),(1666,'trends_uint','itemid',43772),(1667,'events','itemid',40539),(1668,'history','itemid',40539),(1669,'history_log','itemid',40539),(1670,'history_str','itemid',40539),(1671,'history_text','itemid',40539),(1672,'history_uint','itemid',40539),(1673,'trends','itemid',40539),(1674,'trends_uint','itemid',40539),(1675,'events','itemid',40540),(1676,'history','itemid',40540),(1677,'history_log','itemid',40540),(1678,'history_str','itemid',40540),(1679,'history_text','itemid',40540),(1680,'history_uint','itemid',40540),(1681,'trends','itemid',40540),(1682,'trends_uint','itemid',40540),(1683,'events','itemid',40542),(1684,'history','itemid',40542),(1685,'history_log','itemid',40542),(1686,'history_str','itemid',40542),(1687,'history_text','itemid',40542),(1688,'history_uint','itemid',40542),(1689,'trends','itemid',40542),(1690,'trends_uint','itemid',40542),(1691,'events','itemid',40541),(1692,'history','itemid',40541),(1693,'history_log','itemid',40541),(1694,'history_str','itemid',40541),(1695,'history_text','itemid',40541),(1696,'history_uint','itemid',40541),(1697,'trends','itemid',40541),(1698,'trends_uint','itemid',40541),(1699,'events','itemid',27238),(1700,'history','itemid',27238),(1701,'history_log','itemid',27238),(1702,'history_str','itemid',27238),(1703,'history_text','itemid',27238),(1704,'history_uint','itemid',27238),(1705,'trends','itemid',27238),(1706,'trends_uint','itemid',27238),(1707,'events','itemid',30093),(1708,'history','itemid',30093),(1709,'history_log','itemid',30093),(1710,'history_str','itemid',30093),(1711,'history_text','itemid',30093),(1712,'history_uint','itemid',30093),(1713,'trends','itemid',30093),(1714,'trends_uint','itemid',30093),(1715,'events','itemid',40543),(1716,'history','itemid',40543),(1717,'history_log','itemid',40543),(1718,'history_str','itemid',40543),(1719,'history_text','itemid',40543),(1720,'history_uint','itemid',40543),(1721,'trends','itemid',40543),(1722,'trends_uint','itemid',40543),(1723,'events','itemid',27294),(1724,'history','itemid',27294),(1725,'history_log','itemid',27294),(1726,'history_str','itemid',27294),(1727,'history_text','itemid',27294),(1728,'history_uint','itemid',27294),(1729,'trends','itemid',27294),(1730,'trends_uint','itemid',27294),(1731,'events','itemid',30094),(1732,'history','itemid',30094),(1733,'history_log','itemid',30094),(1734,'history_str','itemid',30094),(1735,'history_text','itemid',30094),(1736,'history_uint','itemid',30094),(1737,'trends','itemid',30094),(1738,'trends_uint','itemid',30094),(1739,'events','itemid',40554),(1740,'history','itemid',40554),(1741,'history_log','itemid',40554),(1742,'history_str','itemid',40554),(1743,'history_text','itemid',40554),(1744,'history_uint','itemid',40554),(1745,'trends','itemid',40554),(1746,'trends_uint','itemid',40554),(1747,'events','itemid',40555),(1748,'history','itemid',40555),(1749,'history_log','itemid',40555),(1750,'history_str','itemid',40555),(1751,'history_text','itemid',40555),(1752,'history_uint','itemid',40555),(1753,'trends','itemid',40555),(1754,'trends_uint','itemid',40555),(1755,'events','itemid',40556),(1756,'history','itemid',40556),(1757,'history_log','itemid',40556),(1758,'history_str','itemid',40556),(1759,'history_text','itemid',40556),(1760,'history_uint','itemid',40556),(1761,'trends','itemid',40556),(1762,'trends_uint','itemid',40556),(1763,'events','itemid',40557),(1764,'history','itemid',40557),(1765,'history_log','itemid',40557),(1766,'history_str','itemid',40557),(1767,'history_text','itemid',40557),(1768,'history_uint','itemid',40557),(1769,'trends','itemid',40557),(1770,'trends_uint','itemid',40557),(1771,'events','itemid',40558),(1772,'history','itemid',40558),(1773,'history_log','itemid',40558),(1774,'history_str','itemid',40558),(1775,'history_text','itemid',40558),(1776,'history_uint','itemid',40558),(1777,'trends','itemid',40558),(1778,'trends_uint','itemid',40558),(1779,'events','itemid',40559),(1780,'history','itemid',40559),(1781,'history_log','itemid',40559),(1782,'history_str','itemid',40559),(1783,'history_text','itemid',40559),(1784,'history_uint','itemid',40559),(1785,'trends','itemid',40559),(1786,'trends_uint','itemid',40559),(1787,'events','itemid',40560),(1788,'history','itemid',40560),(1789,'history_log','itemid',40560),(1790,'history_str','itemid',40560),(1791,'history_text','itemid',40560),(1792,'history_uint','itemid',40560),(1793,'trends','itemid',40560),(1794,'trends_uint','itemid',40560),(1795,'events','itemid',27295),(1796,'history','itemid',27295),(1797,'history_log','itemid',27295),(1798,'history_str','itemid',27295),(1799,'history_text','itemid',27295),(1800,'history_uint','itemid',27295),(1801,'trends','itemid',27295),(1802,'trends_uint','itemid',27295),(1803,'events','itemid',27296),(1804,'history','itemid',27296),(1805,'history_log','itemid',27296),(1806,'history_str','itemid',27296),(1807,'history_text','itemid',27296),(1808,'history_uint','itemid',27296),(1809,'trends','itemid',27296),(1810,'trends_uint','itemid',27296),(1811,'events','itemid',43773),(1812,'history','itemid',43773),(1813,'history_log','itemid',43773),(1814,'history_str','itemid',43773),(1815,'history_text','itemid',43773),(1816,'history_uint','itemid',43773),(1817,'trends','itemid',43773),(1818,'trends_uint','itemid',43773),(1819,'events','itemid',40561),(1820,'history','itemid',40561),(1821,'history_log','itemid',40561),(1822,'history_str','itemid',40561),(1823,'history_text','itemid',40561),(1824,'history_uint','itemid',40561),(1825,'trends','itemid',40561),(1826,'trends_uint','itemid',40561),(1827,'events','itemid',40562),(1828,'history','itemid',40562),(1829,'history_log','itemid',40562),(1830,'history_str','itemid',40562),(1831,'history_text','itemid',40562),(1832,'history_uint','itemid',40562),(1833,'trends','itemid',40562),(1834,'trends_uint','itemid',40562),(1835,'events','itemid',40564),(1836,'history','itemid',40564),(1837,'history_log','itemid',40564),(1838,'history_str','itemid',40564),(1839,'history_text','itemid',40564),(1840,'history_uint','itemid',40564),(1841,'trends','itemid',40564),(1842,'trends_uint','itemid',40564),(1843,'events','itemid',40563),(1844,'history','itemid',40563),(1845,'history_log','itemid',40563),(1846,'history_str','itemid',40563),(1847,'history_text','itemid',40563),(1848,'history_uint','itemid',40563),(1849,'trends','itemid',40563),(1850,'trends_uint','itemid',40563),(1851,'events','itemid',40565),(1852,'history','itemid',40565),(1853,'history_log','itemid',40565),(1854,'history_str','itemid',40565),(1855,'history_text','itemid',40565),(1856,'history_uint','itemid',40565),(1857,'trends','itemid',40565),(1858,'trends_uint','itemid',40565),(1859,'events','itemid',40566),(1860,'history','itemid',40566),(1861,'history_log','itemid',40566),(1862,'history_str','itemid',40566),(1863,'history_text','itemid',40566),(1864,'history_uint','itemid',40566),(1865,'trends','itemid',40566),(1866,'trends_uint','itemid',40566),(1867,'events','itemid',40567),(1868,'history','itemid',40567),(1869,'history_log','itemid',40567),(1870,'history_str','itemid',40567),(1871,'history_text','itemid',40567),(1872,'history_uint','itemid',40567),(1873,'trends','itemid',40567),(1874,'trends_uint','itemid',40567),(1875,'events','itemid',40568),(1876,'history','itemid',40568),(1877,'history_log','itemid',40568),(1878,'history_str','itemid',40568),(1879,'history_text','itemid',40568),(1880,'history_uint','itemid',40568),(1881,'trends','itemid',40568),(1882,'trends_uint','itemid',40568),(1883,'events','itemid',40569),(1884,'history','itemid',40569),(1885,'history_log','itemid',40569),(1886,'history_str','itemid',40569),(1887,'history_text','itemid',40569),(1888,'history_uint','itemid',40569),(1889,'trends','itemid',40569),(1890,'trends_uint','itemid',40569),(1891,'events','itemid',40570),(1892,'history','itemid',40570),(1893,'history_log','itemid',40570),(1894,'history_str','itemid',40570),(1895,'history_text','itemid',40570),(1896,'history_uint','itemid',40570),(1897,'trends','itemid',40570),(1898,'trends_uint','itemid',40570),(1899,'events','itemid',40571),(1900,'history','itemid',40571),(1901,'history_log','itemid',40571),(1902,'history_str','itemid',40571),(1903,'history_text','itemid',40571),(1904,'history_uint','itemid',40571),(1905,'trends','itemid',40571),(1906,'trends_uint','itemid',40571),(1907,'events','itemid',40572),(1908,'history','itemid',40572),(1909,'history_log','itemid',40572),(1910,'history_str','itemid',40572),(1911,'history_text','itemid',40572),(1912,'history_uint','itemid',40572),(1913,'trends','itemid',40572),(1914,'trends_uint','itemid',40572),(1915,'events','itemid',40573),(1916,'history','itemid',40573),(1917,'history_log','itemid',40573),(1918,'history_str','itemid',40573),(1919,'history_text','itemid',40573),(1920,'history_uint','itemid',40573),(1921,'trends','itemid',40573),(1922,'trends_uint','itemid',40573),(1923,'events','itemid',27297),(1924,'history','itemid',27297),(1925,'history_log','itemid',27297),(1926,'history_str','itemid',27297),(1927,'history_text','itemid',27297),(1928,'history_uint','itemid',27297),(1929,'trends','itemid',27297),(1930,'trends_uint','itemid',27297),(1931,'events','itemid',43774),(1932,'history','itemid',43774),(1933,'history_log','itemid',43774),(1934,'history_str','itemid',43774),(1935,'history_text','itemid',43774),(1936,'history_uint','itemid',43774),(1937,'trends','itemid',43774),(1938,'trends_uint','itemid',43774),(1939,'events','itemid',40574),(1940,'history','itemid',40574),(1941,'history_log','itemid',40574),(1942,'history_str','itemid',40574),(1943,'history_text','itemid',40574),(1944,'history_uint','itemid',40574),(1945,'trends','itemid',40574),(1946,'trends_uint','itemid',40574),(1947,'events','itemid',40575),(1948,'history','itemid',40575),(1949,'history_log','itemid',40575),(1950,'history_str','itemid',40575),(1951,'history_text','itemid',40575),(1952,'history_uint','itemid',40575),(1953,'trends','itemid',40575),(1954,'trends_uint','itemid',40575),(1955,'events','itemid',40577),(1956,'history','itemid',40577),(1957,'history_log','itemid',40577),(1958,'history_str','itemid',40577),(1959,'history_text','itemid',40577),(1960,'history_uint','itemid',40577),(1961,'trends','itemid',40577),(1962,'trends_uint','itemid',40577),(1963,'events','itemid',40576),(1964,'history','itemid',40576),(1965,'history_log','itemid',40576),(1966,'history_str','itemid',40576),(1967,'history_text','itemid',40576),(1968,'history_uint','itemid',40576),(1969,'trends','itemid',40576),(1970,'trends_uint','itemid',40576),(1971,'events','itemid',40578),(1972,'history','itemid',40578),(1973,'history_log','itemid',40578),(1974,'history_str','itemid',40578),(1975,'history_text','itemid',40578),(1976,'history_uint','itemid',40578),(1977,'trends','itemid',40578),(1978,'trends_uint','itemid',40578),(1979,'events','itemid',40579),(1980,'history','itemid',40579),(1981,'history_log','itemid',40579),(1982,'history_str','itemid',40579),(1983,'history_text','itemid',40579),(1984,'history_uint','itemid',40579),(1985,'trends','itemid',40579),(1986,'trends_uint','itemid',40579),(1987,'events','itemid',27379),(1988,'history','itemid',27379),(1989,'history_log','itemid',27379),(1990,'history_str','itemid',27379),(1991,'history_text','itemid',27379),(1992,'history_uint','itemid',27379),(1993,'trends','itemid',27379),(1994,'trends_uint','itemid',27379),(1995,'events','itemid',27378),(1996,'history','itemid',27378),(1997,'history_log','itemid',27378),(1998,'history_str','itemid',27378),(1999,'history_text','itemid',27378),(2000,'history_uint','itemid',27378),(2001,'trends','itemid',27378),(2002,'trends_uint','itemid',27378),(2003,'events','itemid',30097),(2004,'history','itemid',30097),(2005,'history_log','itemid',30097),(2006,'history_str','itemid',30097),(2007,'history_text','itemid',30097),(2008,'history_uint','itemid',30097),(2009,'trends','itemid',30097),(2010,'trends_uint','itemid',30097),(2011,'events','itemid',40615),(2012,'history','itemid',40615),(2013,'history_log','itemid',40615),(2014,'history_str','itemid',40615),(2015,'history_text','itemid',40615),(2016,'history_uint','itemid',40615),(2017,'trends','itemid',40615),(2018,'trends_uint','itemid',40615),(2019,'events','itemid',40616),(2020,'history','itemid',40616),(2021,'history_log','itemid',40616),(2022,'history_str','itemid',40616),(2023,'history_text','itemid',40616),(2024,'history_uint','itemid',40616),(2025,'trends','itemid',40616),(2026,'trends_uint','itemid',40616),(2027,'events','itemid',40617),(2028,'history','itemid',40617),(2029,'history_log','itemid',40617),(2030,'history_str','itemid',40617),(2031,'history_text','itemid',40617),(2032,'history_uint','itemid',40617),(2033,'trends','itemid',40617),(2034,'trends_uint','itemid',40617),(2035,'events','itemid',40618),(2036,'history','itemid',40618),(2037,'history_log','itemid',40618),(2038,'history_str','itemid',40618),(2039,'history_text','itemid',40618),(2040,'history_uint','itemid',40618),(2041,'trends','itemid',40618),(2042,'trends_uint','itemid',40618),(2043,'events','itemid',40619),(2044,'history','itemid',40619),(2045,'history_log','itemid',40619),(2046,'history_str','itemid',40619),(2047,'history_text','itemid',40619),(2048,'history_uint','itemid',40619),(2049,'trends','itemid',40619),(2050,'trends_uint','itemid',40619),(2051,'events','itemid',40620),(2052,'history','itemid',40620),(2053,'history_log','itemid',40620),(2054,'history_str','itemid',40620),(2055,'history_text','itemid',40620),(2056,'history_uint','itemid',40620),(2057,'trends','itemid',40620),(2058,'trends_uint','itemid',40620),(2059,'events','itemid',40621),(2060,'history','itemid',40621),(2061,'history_log','itemid',40621),(2062,'history_str','itemid',40621),(2063,'history_text','itemid',40621),(2064,'history_uint','itemid',40621),(2065,'trends','itemid',40621),(2066,'trends_uint','itemid',40621),(2067,'events','itemid',40622),(2068,'history','itemid',40622),(2069,'history_log','itemid',40622),(2070,'history_str','itemid',40622),(2071,'history_text','itemid',40622),(2072,'history_uint','itemid',40622),(2073,'trends','itemid',40622),(2074,'trends_uint','itemid',40622),(2075,'events','itemid',43781),(2076,'history','itemid',43781),(2077,'history_log','itemid',43781),(2078,'history_str','itemid',43781),(2079,'history_text','itemid',43781),(2080,'history_uint','itemid',43781),(2081,'trends','itemid',43781),(2082,'trends_uint','itemid',43781),(2083,'events','itemid',40623),(2084,'history','itemid',40623),(2085,'history_log','itemid',40623),(2086,'history_str','itemid',40623),(2087,'history_text','itemid',40623),(2088,'history_uint','itemid',40623),(2089,'trends','itemid',40623),(2090,'trends_uint','itemid',40623),(2091,'events','itemid',40624),(2092,'history','itemid',40624),(2093,'history_log','itemid',40624),(2094,'history_str','itemid',40624),(2095,'history_text','itemid',40624),(2096,'history_uint','itemid',40624),(2097,'trends','itemid',40624),(2098,'trends_uint','itemid',40624),(2099,'events','itemid',40627),(2100,'history','itemid',40627),(2101,'history_log','itemid',40627),(2102,'history_str','itemid',40627),(2103,'history_text','itemid',40627),(2104,'history_uint','itemid',40627),(2105,'trends','itemid',40627),(2106,'trends_uint','itemid',40627),(2107,'events','itemid',40625),(2108,'history','itemid',40625),(2109,'history_log','itemid',40625),(2110,'history_str','itemid',40625),(2111,'history_text','itemid',40625),(2112,'history_uint','itemid',40625),(2113,'trends','itemid',40625),(2114,'trends_uint','itemid',40625),(2115,'events','itemid',40626),(2116,'history','itemid',40626),(2117,'history_log','itemid',40626),(2118,'history_str','itemid',40626),(2119,'history_text','itemid',40626),(2120,'history_uint','itemid',40626),(2121,'trends','itemid',40626),(2122,'trends_uint','itemid',40626),(2123,'events','itemid',40628),(2124,'history','itemid',40628),(2125,'history_log','itemid',40628),(2126,'history_str','itemid',40628),(2127,'history_text','itemid',40628),(2128,'history_uint','itemid',40628),(2129,'trends','itemid',40628),(2130,'trends_uint','itemid',40628),(2131,'events','itemid',40501),(2132,'history','itemid',40501),(2133,'history_log','itemid',40501),(2134,'history_str','itemid',40501),(2135,'history_text','itemid',40501),(2136,'history_uint','itemid',40501),(2137,'trends','itemid',40501),(2138,'trends_uint','itemid',40501),(2139,'events','itemid',40502),(2140,'history','itemid',40502),(2141,'history_log','itemid',40502),(2142,'history_str','itemid',40502),(2143,'history_text','itemid',40502),(2144,'history_uint','itemid',40502),(2145,'trends','itemid',40502),(2146,'trends_uint','itemid',40502),(2147,'events','itemid',40503),(2148,'history','itemid',40503),(2149,'history_log','itemid',40503),(2150,'history_str','itemid',40503),(2151,'history_text','itemid',40503),(2152,'history_uint','itemid',40503),(2153,'trends','itemid',40503),(2154,'trends_uint','itemid',40503),(2155,'events','itemid',33181),(2156,'history','itemid',33181),(2157,'history_log','itemid',33181),(2158,'history_str','itemid',33181),(2159,'history_text','itemid',33181),(2160,'history_uint','itemid',33181),(2161,'trends','itemid',33181),(2162,'trends_uint','itemid',33181),(2163,'events','itemid',40504),(2164,'history','itemid',40504),(2165,'history_log','itemid',40504),(2166,'history_str','itemid',40504),(2167,'history_text','itemid',40504),(2168,'history_uint','itemid',40504),(2169,'trends','itemid',40504),(2170,'trends_uint','itemid',40504),(2171,'events','itemid',40505),(2172,'history','itemid',40505),(2173,'history_log','itemid',40505),(2174,'history_str','itemid',40505),(2175,'history_text','itemid',40505),(2176,'history_uint','itemid',40505),(2177,'trends','itemid',40505),(2178,'trends_uint','itemid',40505),(2179,'events','itemid',40506),(2180,'history','itemid',40506),(2181,'history_log','itemid',40506),(2182,'history_str','itemid',40506),(2183,'history_text','itemid',40506),(2184,'history_uint','itemid',40506),(2185,'trends','itemid',40506),(2186,'trends_uint','itemid',40506),(2187,'events','itemid',40507),(2188,'history','itemid',40507),(2189,'history_log','itemid',40507),(2190,'history_str','itemid',40507),(2191,'history_text','itemid',40507),(2192,'history_uint','itemid',40507),(2193,'trends','itemid',40507),(2194,'trends_uint','itemid',40507),(2195,'events','itemid',43771),(2196,'history','itemid',43771),(2197,'history_log','itemid',43771),(2198,'history_str','itemid',43771),(2199,'history_text','itemid',43771),(2200,'history_uint','itemid',43771),(2201,'trends','itemid',43771),(2202,'trends_uint','itemid',43771),(2203,'events','itemid',40508),(2204,'history','itemid',40508),(2205,'history_log','itemid',40508),(2206,'history_str','itemid',40508),(2207,'history_text','itemid',40508),(2208,'history_uint','itemid',40508),(2209,'trends','itemid',40508),(2210,'trends_uint','itemid',40508),(2211,'events','itemid',40509),(2212,'history','itemid',40509),(2213,'history_log','itemid',40509),(2214,'history_str','itemid',40509),(2215,'history_text','itemid',40509),(2216,'history_uint','itemid',40509),(2217,'trends','itemid',40509),(2218,'trends_uint','itemid',40509),(2219,'events','itemid',40511),(2220,'history','itemid',40511),(2221,'history_log','itemid',40511),(2222,'history_str','itemid',40511),(2223,'history_text','itemid',40511),(2224,'history_uint','itemid',40511),(2225,'trends','itemid',40511),(2226,'trends_uint','itemid',40511),(2227,'events','itemid',40510),(2228,'history','itemid',40510),(2229,'history_log','itemid',40510),(2230,'history_str','itemid',40510),(2231,'history_text','itemid',40510),(2232,'history_uint','itemid',40510),(2233,'trends','itemid',40510),(2234,'trends_uint','itemid',40510),(2235,'events','itemid',40512),(2236,'history','itemid',40512),(2237,'history_log','itemid',40512),(2238,'history_str','itemid',40512),(2239,'history_text','itemid',40512),(2240,'history_uint','itemid',40512),(2241,'trends','itemid',40512),(2242,'trends_uint','itemid',40512),(2243,'events','itemid',28511),(2244,'history','itemid',28511),(2245,'history_log','itemid',28511),(2246,'history_str','itemid',28511),(2247,'history_text','itemid',28511),(2248,'history_uint','itemid',28511),(2249,'trends','itemid',28511),(2250,'trends_uint','itemid',28511),(2251,'events','itemid',30902),(2252,'history','itemid',30902),(2253,'history_log','itemid',30902),(2254,'history_str','itemid',30902),(2255,'history_text','itemid',30902),(2256,'history_uint','itemid',30902),(2257,'trends','itemid',30902),(2258,'trends_uint','itemid',30902),(2259,'events','itemid',30903),(2260,'history','itemid',30903),(2261,'history_log','itemid',30903),(2262,'history_str','itemid',30903),(2263,'history_text','itemid',30903),(2264,'history_uint','itemid',30903),(2265,'trends','itemid',30903),(2266,'trends_uint','itemid',30903),(2267,'events','itemid',30914),(2268,'history','itemid',30914),(2269,'history_log','itemid',30914),(2270,'history_str','itemid',30914),(2271,'history_text','itemid',30914),(2272,'history_uint','itemid',30914),(2273,'trends','itemid',30914),(2274,'trends_uint','itemid',30914),(2275,'events','itemid',30913),(2276,'history','itemid',30913),(2277,'history_log','itemid',30913),(2278,'history_str','itemid',30913),(2279,'history_text','itemid',30913),(2280,'history_uint','itemid',30913),(2281,'trends','itemid',30913),(2282,'trends_uint','itemid',30913),(2283,'events','itemid',30912),(2284,'history','itemid',30912),(2285,'history_log','itemid',30912),(2286,'history_str','itemid',30912),(2287,'history_text','itemid',30912),(2288,'history_uint','itemid',30912),(2289,'trends','itemid',30912),(2290,'trends_uint','itemid',30912),(2291,'events','itemid',30911),(2292,'history','itemid',30911),(2293,'history_log','itemid',30911),(2294,'history_str','itemid',30911),(2295,'history_text','itemid',30911),(2296,'history_uint','itemid',30911),(2297,'trends','itemid',30911),(2298,'trends_uint','itemid',30911),(2299,'events','itemid',30908),(2300,'history','itemid',30908),(2301,'history_log','itemid',30908),(2302,'history_str','itemid',30908),(2303,'history_text','itemid',30908),(2304,'history_uint','itemid',30908),(2305,'trends','itemid',30908),(2306,'trends_uint','itemid',30908),(2307,'events','itemid',30907),(2308,'history','itemid',30907),(2309,'history_log','itemid',30907),(2310,'history_str','itemid',30907),(2311,'history_text','itemid',30907),(2312,'history_uint','itemid',30907),(2313,'trends','itemid',30907),(2314,'trends_uint','itemid',30907),(2315,'events','itemid',30906),(2316,'history','itemid',30906),(2317,'history_log','itemid',30906),(2318,'history_str','itemid',30906),(2319,'history_text','itemid',30906),(2320,'history_uint','itemid',30906),(2321,'trends','itemid',30906),(2322,'trends_uint','itemid',30906),(2323,'events','itemid',30905),(2324,'history','itemid',30905),(2325,'history_log','itemid',30905),(2326,'history_str','itemid',30905),(2327,'history_text','itemid',30905),(2328,'history_uint','itemid',30905),(2329,'trends','itemid',30905),(2330,'trends_uint','itemid',30905),(2331,'events','itemid',30904),(2332,'history','itemid',30904),(2333,'history_log','itemid',30904),(2334,'history_str','itemid',30904),(2335,'history_text','itemid',30904),(2336,'history_uint','itemid',30904),(2337,'trends','itemid',30904),(2338,'trends_uint','itemid',30904),(2339,'events','itemid',30915),(2340,'history','itemid',30915),(2341,'history_log','itemid',30915),(2342,'history_str','itemid',30915),(2343,'history_text','itemid',30915),(2344,'history_uint','itemid',30915),(2345,'trends','itemid',30915),(2346,'trends_uint','itemid',30915),(2347,'events','itemid',30897),(2348,'history','itemid',30897),(2349,'history_log','itemid',30897),(2350,'history_str','itemid',30897),(2351,'history_text','itemid',30897),(2352,'history_uint','itemid',30897),(2353,'trends','itemid',30897),(2354,'trends_uint','itemid',30897),(2355,'events','itemid',30901),(2356,'history','itemid',30901),(2357,'history_log','itemid',30901),(2358,'history_str','itemid',30901),(2359,'history_text','itemid',30901),(2360,'history_uint','itemid',30901),(2361,'trends','itemid',30901),(2362,'trends_uint','itemid',30901),(2363,'events','itemid',30900),(2364,'history','itemid',30900),(2365,'history_log','itemid',30900),(2366,'history_str','itemid',30900),(2367,'history_text','itemid',30900),(2368,'history_uint','itemid',30900),(2369,'trends','itemid',30900),(2370,'trends_uint','itemid',30900),(2371,'events','itemid',30899),(2372,'history','itemid',30899),(2373,'history_log','itemid',30899),(2374,'history_str','itemid',30899),(2375,'history_text','itemid',30899),(2376,'history_uint','itemid',30899),(2377,'trends','itemid',30899),(2378,'trends_uint','itemid',30899),(2379,'events','itemid',30898),(2380,'history','itemid',30898),(2381,'history_log','itemid',30898),(2382,'history_str','itemid',30898),(2383,'history_text','itemid',30898),(2384,'history_uint','itemid',30898),(2385,'trends','itemid',30898),(2386,'trends_uint','itemid',30898),(2387,'events','itemid',30910),(2388,'history','itemid',30910),(2389,'history_log','itemid',30910),(2390,'history_str','itemid',30910),(2391,'history_text','itemid',30910),(2392,'history_uint','itemid',30910),(2393,'trends','itemid',30910),(2394,'trends_uint','itemid',30910),(2395,'events','itemid',30909),(2396,'history','itemid',30909),(2397,'history_log','itemid',30909),(2398,'history_str','itemid',30909),(2399,'history_text','itemid',30909),(2400,'history_uint','itemid',30909),(2401,'trends','itemid',30909),(2402,'trends_uint','itemid',30909),(2403,'events','itemid',28748),(2404,'history','itemid',28748),(2405,'history_log','itemid',28748),(2406,'history_str','itemid',28748),(2407,'history_text','itemid',28748),(2408,'history_uint','itemid',28748),(2409,'trends','itemid',28748),(2410,'trends_uint','itemid',28748),(2411,'events','itemid',28743),(2412,'history','itemid',28743),(2413,'history_log','itemid',28743),(2414,'history_str','itemid',28743),(2415,'history_text','itemid',28743),(2416,'history_uint','itemid',28743),(2417,'trends','itemid',28743),(2418,'trends_uint','itemid',28743),(2419,'events','itemid',44335),(2420,'history','itemid',44335),(2421,'history_log','itemid',44335),(2422,'history_str','itemid',44335),(2423,'history_text','itemid',44335),(2424,'history_uint','itemid',44335),(2425,'trends','itemid',44335),(2426,'trends_uint','itemid',44335),(2427,'events','itemid',30896),(2428,'history','itemid',30896),(2429,'history_log','itemid',30896),(2430,'history_str','itemid',30896),(2431,'history_text','itemid',30896),(2432,'history_uint','itemid',30896),(2433,'trends','itemid',30896),(2434,'trends_uint','itemid',30896),(2435,'events','itemid',28795),(2436,'history','itemid',28795),(2437,'history_log','itemid',28795),(2438,'history_str','itemid',28795),(2439,'history_text','itemid',28795),(2440,'history_uint','itemid',28795),(2441,'trends','itemid',28795),(2442,'trends_uint','itemid',28795),(2443,'events','itemid',28794),(2444,'history','itemid',28794),(2445,'history_log','itemid',28794),(2446,'history_str','itemid',28794),(2447,'history_text','itemid',28794),(2448,'history_uint','itemid',28794),(2449,'trends','itemid',28794),(2450,'trends_uint','itemid',28794),(2451,'events','itemid',28775),(2452,'history','itemid',28775),(2453,'history_log','itemid',28775),(2454,'history_str','itemid',28775),(2455,'history_text','itemid',28775),(2456,'history_uint','itemid',28775),(2457,'trends','itemid',28775),(2458,'trends_uint','itemid',28775),(2459,'events','itemid',28792),(2460,'history','itemid',28792),(2461,'history_log','itemid',28792),(2462,'history_str','itemid',28792),(2463,'history_text','itemid',28792),(2464,'history_uint','itemid',28792),(2465,'trends','itemid',28792),(2466,'trends_uint','itemid',28792),(2467,'events','itemid',28793),(2468,'history','itemid',28793),(2469,'history_log','itemid',28793),(2470,'history_str','itemid',28793),(2471,'history_text','itemid',28793),(2472,'history_uint','itemid',28793),(2473,'trends','itemid',28793),(2474,'trends_uint','itemid',28793),(2475,'events','itemid',28791),(2476,'history','itemid',28791),(2477,'history_log','itemid',28791),(2478,'history_str','itemid',28791),(2479,'history_text','itemid',28791),(2480,'history_uint','itemid',28791),(2481,'trends','itemid',28791),(2482,'trends_uint','itemid',28791),(2483,'events','itemid',28790),(2484,'history','itemid',28790),(2485,'history_log','itemid',28790),(2486,'history_str','itemid',28790),(2487,'history_text','itemid',28790),(2488,'history_uint','itemid',28790),(2489,'trends','itemid',28790),(2490,'trends_uint','itemid',28790),(2491,'events','itemid',28784),(2492,'history','itemid',28784),(2493,'history_log','itemid',28784),(2494,'history_str','itemid',28784),(2495,'history_text','itemid',28784),(2496,'history_uint','itemid',28784),(2497,'trends','itemid',28784),(2498,'trends_uint','itemid',28784),(2499,'events','itemid',28786),(2500,'history','itemid',28786),(2501,'history_log','itemid',28786),(2502,'history_str','itemid',28786),(2503,'history_text','itemid',28786),(2504,'history_uint','itemid',28786),(2505,'trends','itemid',28786),(2506,'trends_uint','itemid',28786),(2507,'events','itemid',28787),(2508,'history','itemid',28787),(2509,'history_log','itemid',28787),(2510,'history_str','itemid',28787),(2511,'history_text','itemid',28787),(2512,'history_uint','itemid',28787),(2513,'trends','itemid',28787),(2514,'trends_uint','itemid',28787),(2515,'events','itemid',28785),(2516,'history','itemid',28785),(2517,'history_log','itemid',28785),(2518,'history_str','itemid',28785),(2519,'history_text','itemid',28785),(2520,'history_uint','itemid',28785),(2521,'trends','itemid',28785),(2522,'trends_uint','itemid',28785),(2523,'events','itemid',28783),(2524,'history','itemid',28783),(2525,'history_log','itemid',28783),(2526,'history_str','itemid',28783),(2527,'history_text','itemid',28783),(2528,'history_uint','itemid',28783),(2529,'trends','itemid',28783),(2530,'trends_uint','itemid',28783),(2531,'events','itemid',28782),(2532,'history','itemid',28782),(2533,'history_log','itemid',28782),(2534,'history_str','itemid',28782),(2535,'history_text','itemid',28782),(2536,'history_uint','itemid',28782),(2537,'trends','itemid',28782),(2538,'trends_uint','itemid',28782),(2539,'events','itemid',28781),(2540,'history','itemid',28781),(2541,'history_log','itemid',28781),(2542,'history_str','itemid',28781),(2543,'history_text','itemid',28781),(2544,'history_uint','itemid',28781),(2545,'trends','itemid',28781),(2546,'trends_uint','itemid',28781),(2547,'events','itemid',28780),(2548,'history','itemid',28780),(2549,'history_log','itemid',28780),(2550,'history_str','itemid',28780),(2551,'history_text','itemid',28780),(2552,'history_uint','itemid',28780),(2553,'trends','itemid',28780),(2554,'trends_uint','itemid',28780),(2555,'events','itemid',28779),(2556,'history','itemid',28779),(2557,'history_log','itemid',28779),(2558,'history_str','itemid',28779),(2559,'history_text','itemid',28779),(2560,'history_uint','itemid',28779),(2561,'trends','itemid',28779),(2562,'trends_uint','itemid',28779),(2563,'events','itemid',28778),(2564,'history','itemid',28778),(2565,'history_log','itemid',28778),(2566,'history_str','itemid',28778),(2567,'history_text','itemid',28778),(2568,'history_uint','itemid',28778),(2569,'trends','itemid',28778),(2570,'trends_uint','itemid',28778),(2571,'events','itemid',28796),(2572,'history','itemid',28796),(2573,'history_log','itemid',28796),(2574,'history_str','itemid',28796),(2575,'history_text','itemid',28796),(2576,'history_uint','itemid',28796),(2577,'trends','itemid',28796),(2578,'trends_uint','itemid',28796),(2579,'events','itemid',28789),(2580,'history','itemid',28789),(2581,'history_log','itemid',28789),(2582,'history_str','itemid',28789),(2583,'history_text','itemid',28789),(2584,'history_uint','itemid',28789),(2585,'trends','itemid',28789),(2586,'trends_uint','itemid',28789),(2587,'events','itemid',28788),(2588,'history','itemid',28788),(2589,'history_log','itemid',28788),(2590,'history_str','itemid',28788),(2591,'history_text','itemid',28788),(2592,'history_uint','itemid',28788),(2593,'trends','itemid',28788),(2594,'trends_uint','itemid',28788),(2595,'events','itemid',28777),(2596,'history','itemid',28777),(2597,'history_log','itemid',28777),(2598,'history_str','itemid',28777),(2599,'history_text','itemid',28777),(2600,'history_uint','itemid',28777),(2601,'trends','itemid',28777),(2602,'trends_uint','itemid',28777),(2603,'events','itemid',28776),(2604,'history','itemid',28776),(2605,'history_log','itemid',28776),(2606,'history_str','itemid',28776),(2607,'history_text','itemid',28776),(2608,'history_uint','itemid',28776),(2609,'trends','itemid',28776),(2610,'trends_uint','itemid',28776),(2611,'events','itemid',30685),(2612,'history','itemid',30685),(2613,'history_log','itemid',30685),(2614,'history_str','itemid',30685),(2615,'history_text','itemid',30685),(2616,'history_uint','itemid',30685),(2617,'trends','itemid',30685),(2618,'trends_uint','itemid',30685),(2619,'events','itemid',31792),(2620,'history','itemid',31792),(2621,'history_log','itemid',31792),(2622,'history_str','itemid',31792),(2623,'history_text','itemid',31792),(2624,'history_uint','itemid',31792),(2625,'trends','itemid',31792),(2626,'trends_uint','itemid',31792),(2627,'events','itemid',31794),(2628,'history','itemid',31794),(2629,'history_log','itemid',31794),(2630,'history_str','itemid',31794),(2631,'history_text','itemid',31794),(2632,'history_uint','itemid',31794),(2633,'trends','itemid',31794),(2634,'trends_uint','itemid',31794),(2635,'events','itemid',31801),(2636,'history','itemid',31801),(2637,'history_log','itemid',31801),(2638,'history_str','itemid',31801),(2639,'history_text','itemid',31801),(2640,'history_uint','itemid',31801),(2641,'trends','itemid',31801),(2642,'trends_uint','itemid',31801),(2643,'events','itemid',31800),(2644,'history','itemid',31800),(2645,'history_log','itemid',31800),(2646,'history_str','itemid',31800),(2647,'history_text','itemid',31800),(2648,'history_uint','itemid',31800),(2649,'trends','itemid',31800),(2650,'trends_uint','itemid',31800),(2651,'events','itemid',31784),(2652,'history','itemid',31784),(2653,'history_log','itemid',31784),(2654,'history_str','itemid',31784),(2655,'history_text','itemid',31784),(2656,'history_uint','itemid',31784),(2657,'trends','itemid',31784),(2658,'trends_uint','itemid',31784),(2659,'events','itemid',36771),(2660,'history','itemid',36771),(2661,'history_log','itemid',36771),(2662,'history_str','itemid',36771),(2663,'history_text','itemid',36771),(2664,'history_uint','itemid',36771),(2665,'trends','itemid',36771),(2666,'trends_uint','itemid',36771),(2667,'events','itemid',31799),(2668,'history','itemid',31799),(2669,'history_log','itemid',31799),(2670,'history_str','itemid',31799),(2671,'history_text','itemid',31799),(2672,'history_uint','itemid',31799),(2673,'trends','itemid',31799),(2674,'trends_uint','itemid',31799),(2675,'events','itemid',33390),(2676,'history','itemid',33390),(2677,'history_log','itemid',33390),(2678,'history_str','itemid',33390),(2679,'history_text','itemid',33390),(2680,'history_uint','itemid',33390),(2681,'trends','itemid',33390),(2682,'trends_uint','itemid',33390),(2683,'events','itemid',31798),(2684,'history','itemid',31798),(2685,'history_log','itemid',31798),(2686,'history_str','itemid',31798),(2687,'history_text','itemid',31798),(2688,'history_uint','itemid',31798),(2689,'trends','itemid',31798),(2690,'trends_uint','itemid',31798),(2691,'events','itemid',31797),(2692,'history','itemid',31797),(2693,'history_log','itemid',31797),(2694,'history_str','itemid',31797),(2695,'history_text','itemid',31797),(2696,'history_uint','itemid',31797),(2697,'trends','itemid',31797),(2698,'trends_uint','itemid',31797),(2699,'events','itemid',36770),(2700,'history','itemid',36770),(2701,'history_log','itemid',36770),(2702,'history_str','itemid',36770),(2703,'history_text','itemid',36770),(2704,'history_uint','itemid',36770),(2705,'trends','itemid',36770),(2706,'trends_uint','itemid',36770),(2707,'events','itemid',33389),(2708,'history','itemid',33389),(2709,'history_log','itemid',33389),(2710,'history_str','itemid',33389),(2711,'history_text','itemid',33389),(2712,'history_uint','itemid',33389),(2713,'trends','itemid',33389),(2714,'trends_uint','itemid',33389),(2715,'events','itemid',31796),(2716,'history','itemid',31796),(2717,'history_log','itemid',31796),(2718,'history_str','itemid',31796),(2719,'history_text','itemid',31796),(2720,'history_uint','itemid',31796),(2721,'trends','itemid',31796),(2722,'trends_uint','itemid',31796),(2723,'events','itemid',31795),(2724,'history','itemid',31795),(2725,'history_log','itemid',31795),(2726,'history_str','itemid',31795),(2727,'history_text','itemid',31795),(2728,'history_uint','itemid',31795),(2729,'trends','itemid',31795),(2730,'trends_uint','itemid',31795),(2731,'events','itemid',36769),(2732,'history','itemid',36769),(2733,'history_log','itemid',36769),(2734,'history_str','itemid',36769),(2735,'history_text','itemid',36769),(2736,'history_uint','itemid',36769),(2737,'trends','itemid',36769),(2738,'trends_uint','itemid',36769),(2739,'events','itemid',31802),(2740,'history','itemid',31802),(2741,'history_log','itemid',31802),(2742,'history_str','itemid',31802),(2743,'history_text','itemid',31802),(2744,'history_uint','itemid',31802),(2745,'trends','itemid',31802),(2746,'trends_uint','itemid',31802),(2747,'events','itemid',31793),(2748,'history','itemid',31793),(2749,'history_log','itemid',31793),(2750,'history_str','itemid',31793),(2751,'history_text','itemid',31793),(2752,'history_uint','itemid',31793),(2753,'trends','itemid',31793),(2754,'trends_uint','itemid',31793),(2755,'events','itemid',31785),(2756,'history','itemid',31785),(2757,'history_log','itemid',31785),(2758,'history_str','itemid',31785),(2759,'history_text','itemid',31785),(2760,'history_uint','itemid',31785),(2761,'trends','itemid',31785),(2762,'trends_uint','itemid',31785),(2763,'events','itemid',31791),(2764,'history','itemid',31791),(2765,'history_log','itemid',31791),(2766,'history_str','itemid',31791),(2767,'history_text','itemid',31791),(2768,'history_uint','itemid',31791),(2769,'trends','itemid',31791),(2770,'trends_uint','itemid',31791),(2771,'events','itemid',31790),(2772,'history','itemid',31790),(2773,'history_log','itemid',31790),(2774,'history_str','itemid',31790),(2775,'history_text','itemid',31790),(2776,'history_uint','itemid',31790),(2777,'trends','itemid',31790),(2778,'trends_uint','itemid',31790),(2779,'events','itemid',31789),(2780,'history','itemid',31789),(2781,'history_log','itemid',31789),(2782,'history_str','itemid',31789),(2783,'history_text','itemid',31789),(2784,'history_uint','itemid',31789),(2785,'trends','itemid',31789),(2786,'trends_uint','itemid',31789),(2787,'events','itemid',31788),(2788,'history','itemid',31788),(2789,'history_log','itemid',31788),(2790,'history_str','itemid',31788),(2791,'history_text','itemid',31788),(2792,'history_uint','itemid',31788),(2793,'trends','itemid',31788),(2794,'trends_uint','itemid',31788),(2795,'events','itemid',31787),(2796,'history','itemid',31787),(2797,'history_log','itemid',31787),(2798,'history_str','itemid',31787),(2799,'history_text','itemid',31787),(2800,'history_uint','itemid',31787),(2801,'trends','itemid',31787),(2802,'trends_uint','itemid',31787),(2803,'events','itemid',31786),(2804,'history','itemid',31786),(2805,'history_log','itemid',31786),(2806,'history_str','itemid',31786),(2807,'history_text','itemid',31786),(2808,'history_uint','itemid',31786),(2809,'trends','itemid',31786),(2810,'trends_uint','itemid',31786),(2811,'events','itemid',31783),(2812,'history','itemid',31783),(2813,'history_log','itemid',31783),(2814,'history_str','itemid',31783),(2815,'history_text','itemid',31783),(2816,'history_uint','itemid',31783),(2817,'trends','itemid',31783),(2818,'trends_uint','itemid',31783),(2819,'events','itemid',31782),(2820,'history','itemid',31782),(2821,'history_log','itemid',31782),(2822,'history_str','itemid',31782),(2823,'history_text','itemid',31782),(2824,'history_uint','itemid',31782),(2825,'trends','itemid',31782),(2826,'trends_uint','itemid',31782),(2827,'events','itemid',32117),(2828,'history','itemid',32117),(2829,'history_log','itemid',32117),(2830,'history_str','itemid',32117),(2831,'history_text','itemid',32117),(2832,'history_uint','itemid',32117),(2833,'trends','itemid',32117),(2834,'trends_uint','itemid',32117),(2835,'events','itemid',32165),(2836,'history','itemid',32165),(2837,'history_log','itemid',32165),(2838,'history_str','itemid',32165),(2839,'history_text','itemid',32165),(2840,'history_uint','itemid',32165),(2841,'trends','itemid',32165),(2842,'trends_uint','itemid',32165),(2843,'events','itemid',32137),(2844,'history','itemid',32137),(2845,'history_log','itemid',32137),(2846,'history_str','itemid',32137),(2847,'history_text','itemid',32137),(2848,'history_uint','itemid',32137),(2849,'trends','itemid',32137),(2850,'trends_uint','itemid',32137),(2851,'events','itemid',32134),(2852,'history','itemid',32134),(2853,'history_log','itemid',32134),(2854,'history_str','itemid',32134),(2855,'history_text','itemid',32134),(2856,'history_uint','itemid',32134),(2857,'trends','itemid',32134),(2858,'trends_uint','itemid',32134),(2859,'events','itemid',32164),(2860,'history','itemid',32164),(2861,'history_log','itemid',32164),(2862,'history_str','itemid',32164),(2863,'history_text','itemid',32164),(2864,'history_uint','itemid',32164),(2865,'trends','itemid',32164),(2866,'trends_uint','itemid',32164),(2867,'events','itemid',32122),(2868,'history','itemid',32122),(2869,'history_log','itemid',32122),(2870,'history_str','itemid',32122),(2871,'history_text','itemid',32122),(2872,'history_uint','itemid',32122),(2873,'trends','itemid',32122),(2874,'trends_uint','itemid',32122),(2875,'events','itemid',32145),(2876,'history','itemid',32145),(2877,'history_log','itemid',32145),(2878,'history_str','itemid',32145),(2879,'history_text','itemid',32145),(2880,'history_uint','itemid',32145),(2881,'trends','itemid',32145),(2882,'trends_uint','itemid',32145),(2883,'events','itemid',32147),(2884,'history','itemid',32147),(2885,'history_log','itemid',32147),(2886,'history_str','itemid',32147),(2887,'history_text','itemid',32147),(2888,'history_uint','itemid',32147),(2889,'trends','itemid',32147),(2890,'trends_uint','itemid',32147),(2891,'events','itemid',32148),(2892,'history','itemid',32148),(2893,'history_log','itemid',32148),(2894,'history_str','itemid',32148),(2895,'history_text','itemid',32148),(2896,'history_uint','itemid',32148),(2897,'trends','itemid',32148),(2898,'trends_uint','itemid',32148),(2899,'events','itemid',32118),(2900,'history','itemid',32118),(2901,'history_log','itemid',32118),(2902,'history_str','itemid',32118),(2903,'history_text','itemid',32118),(2904,'history_uint','itemid',32118),(2905,'trends','itemid',32118),(2906,'trends_uint','itemid',32118),(2907,'events','itemid',32121),(2908,'history','itemid',32121),(2909,'history_log','itemid',32121),(2910,'history_str','itemid',32121),(2911,'history_text','itemid',32121),(2912,'history_uint','itemid',32121),(2913,'trends','itemid',32121),(2914,'trends_uint','itemid',32121),(2915,'events','itemid',32149),(2916,'history','itemid',32149),(2917,'history_log','itemid',32149),(2918,'history_str','itemid',32149),(2919,'history_text','itemid',32149),(2920,'history_uint','itemid',32149),(2921,'trends','itemid',32149),(2922,'trends_uint','itemid',32149),(2923,'events','itemid',32150),(2924,'history','itemid',32150),(2925,'history_log','itemid',32150),(2926,'history_str','itemid',32150),(2927,'history_text','itemid',32150),(2928,'history_uint','itemid',32150),(2929,'trends','itemid',32150),(2930,'trends_uint','itemid',32150),(2931,'events','itemid',32151),(2932,'history','itemid',32151),(2933,'history_log','itemid',32151),(2934,'history_str','itemid',32151),(2935,'history_text','itemid',32151),(2936,'history_uint','itemid',32151),(2937,'trends','itemid',32151),(2938,'trends_uint','itemid',32151),(2939,'events','itemid',32152),(2940,'history','itemid',32152),(2941,'history_log','itemid',32152),(2942,'history_str','itemid',32152),(2943,'history_text','itemid',32152),(2944,'history_uint','itemid',32152),(2945,'trends','itemid',32152),(2946,'trends_uint','itemid',32152),(2947,'events','itemid',32153),(2948,'history','itemid',32153),(2949,'history_log','itemid',32153),(2950,'history_str','itemid',32153),(2951,'history_text','itemid',32153),(2952,'history_uint','itemid',32153),(2953,'trends','itemid',32153),(2954,'trends_uint','itemid',32153),(2955,'events','itemid',32154),(2956,'history','itemid',32154),(2957,'history_log','itemid',32154),(2958,'history_str','itemid',32154),(2959,'history_text','itemid',32154),(2960,'history_uint','itemid',32154),(2961,'trends','itemid',32154),(2962,'trends_uint','itemid',32154),(2963,'events','itemid',32155),(2964,'history','itemid',32155),(2965,'history_log','itemid',32155),(2966,'history_str','itemid',32155),(2967,'history_text','itemid',32155),(2968,'history_uint','itemid',32155),(2969,'trends','itemid',32155),(2970,'trends_uint','itemid',32155),(2971,'events','itemid',32146),(2972,'history','itemid',32146),(2973,'history_log','itemid',32146),(2974,'history_str','itemid',32146),(2975,'history_text','itemid',32146),(2976,'history_uint','itemid',32146),(2977,'trends','itemid',32146),(2978,'trends_uint','itemid',32146),(2979,'events','itemid',32156),(2980,'history','itemid',32156),(2981,'history_log','itemid',32156),(2982,'history_str','itemid',32156),(2983,'history_text','itemid',32156),(2984,'history_uint','itemid',32156),(2985,'trends','itemid',32156),(2986,'trends_uint','itemid',32156),(2987,'events','itemid',32158),(2988,'history','itemid',32158),(2989,'history_log','itemid',32158),(2990,'history_str','itemid',32158),(2991,'history_text','itemid',32158),(2992,'history_uint','itemid',32158),(2993,'trends','itemid',32158),(2994,'trends_uint','itemid',32158),(2995,'events','itemid',32159),(2996,'history','itemid',32159),(2997,'history_log','itemid',32159),(2998,'history_str','itemid',32159),(2999,'history_text','itemid',32159),(3000,'history_uint','itemid',32159),(3001,'trends','itemid',32159),(3002,'trends_uint','itemid',32159),(3003,'events','itemid',32160),(3004,'history','itemid',32160),(3005,'history_log','itemid',32160),(3006,'history_str','itemid',32160),(3007,'history_text','itemid',32160),(3008,'history_uint','itemid',32160),(3009,'trends','itemid',32160),(3010,'trends_uint','itemid',32160),(3011,'events','itemid',32161),(3012,'history','itemid',32161),(3013,'history_log','itemid',32161),(3014,'history_str','itemid',32161),(3015,'history_text','itemid',32161),(3016,'history_uint','itemid',32161),(3017,'trends','itemid',32161),(3018,'trends_uint','itemid',32161),(3019,'events','itemid',32162),(3020,'history','itemid',32162),(3021,'history_log','itemid',32162),(3022,'history_str','itemid',32162),(3023,'history_text','itemid',32162),(3024,'history_uint','itemid',32162),(3025,'trends','itemid',32162),(3026,'trends_uint','itemid',32162),(3027,'events','itemid',32163),(3028,'history','itemid',32163),(3029,'history_log','itemid',32163),(3030,'history_str','itemid',32163),(3031,'history_text','itemid',32163),(3032,'history_uint','itemid',32163),(3033,'trends','itemid',32163),(3034,'trends_uint','itemid',32163),(3035,'events','itemid',32166),(3036,'history','itemid',32166),(3037,'history_log','itemid',32166),(3038,'history_str','itemid',32166),(3039,'history_text','itemid',32166),(3040,'history_uint','itemid',32166),(3041,'trends','itemid',32166),(3042,'trends_uint','itemid',32166),(3043,'events','itemid',32157),(3044,'history','itemid',32157),(3045,'history_log','itemid',32157),(3046,'history_str','itemid',32157),(3047,'history_text','itemid',32157),(3048,'history_uint','itemid',32157),(3049,'trends','itemid',32157),(3050,'trends_uint','itemid',32157),(3051,'events','itemid',32144),(3052,'history','itemid',32144),(3053,'history_log','itemid',32144),(3054,'history_str','itemid',32144),(3055,'history_text','itemid',32144),(3056,'history_uint','itemid',32144),(3057,'trends','itemid',32144),(3058,'trends_uint','itemid',32144),(3059,'events','itemid',32133),(3060,'history','itemid',32133),(3061,'history_log','itemid',32133),(3062,'history_str','itemid',32133),(3063,'history_text','itemid',32133),(3064,'history_uint','itemid',32133),(3065,'trends','itemid',32133),(3066,'trends_uint','itemid',32133),(3067,'events','itemid',32143),(3068,'history','itemid',32143),(3069,'history_log','itemid',32143),(3070,'history_str','itemid',32143),(3071,'history_text','itemid',32143),(3072,'history_uint','itemid',32143),(3073,'trends','itemid',32143),(3074,'trends_uint','itemid',32143),(3075,'events','itemid',32124),(3076,'history','itemid',32124),(3077,'history_log','itemid',32124),(3078,'history_str','itemid',32124),(3079,'history_text','itemid',32124),(3080,'history_uint','itemid',32124),(3081,'trends','itemid',32124),(3082,'trends_uint','itemid',32124),(3083,'events','itemid',32125),(3084,'history','itemid',32125),(3085,'history_log','itemid',32125),(3086,'history_str','itemid',32125),(3087,'history_text','itemid',32125),(3088,'history_uint','itemid',32125),(3089,'trends','itemid',32125),(3090,'trends_uint','itemid',32125),(3091,'events','itemid',32126),(3092,'history','itemid',32126),(3093,'history_log','itemid',32126),(3094,'history_str','itemid',32126),(3095,'history_text','itemid',32126),(3096,'history_uint','itemid',32126),(3097,'trends','itemid',32126),(3098,'trends_uint','itemid',32126),(3099,'events','itemid',32127),(3100,'history','itemid',32127),(3101,'history_log','itemid',32127),(3102,'history_str','itemid',32127),(3103,'history_text','itemid',32127),(3104,'history_uint','itemid',32127),(3105,'trends','itemid',32127),(3106,'trends_uint','itemid',32127),(3107,'events','itemid',32128),(3108,'history','itemid',32128),(3109,'history_log','itemid',32128),(3110,'history_str','itemid',32128),(3111,'history_text','itemid',32128),(3112,'history_uint','itemid',32128),(3113,'trends','itemid',32128),(3114,'trends_uint','itemid',32128),(3115,'events','itemid',32129),(3116,'history','itemid',32129),(3117,'history_log','itemid',32129),(3118,'history_str','itemid',32129),(3119,'history_text','itemid',32129),(3120,'history_uint','itemid',32129),(3121,'trends','itemid',32129),(3122,'trends_uint','itemid',32129),(3123,'events','itemid',32130),(3124,'history','itemid',32130),(3125,'history_log','itemid',32130),(3126,'history_str','itemid',32130),(3127,'history_text','itemid',32130),(3128,'history_uint','itemid',32130),(3129,'trends','itemid',32130),(3130,'trends_uint','itemid',32130),(3131,'events','itemid',32131),(3132,'history','itemid',32131),(3133,'history_log','itemid',32131),(3134,'history_str','itemid',32131),(3135,'history_text','itemid',32131),(3136,'history_uint','itemid',32131),(3137,'trends','itemid',32131),(3138,'trends_uint','itemid',32131),(3139,'events','itemid',32123),(3140,'history','itemid',32123),(3141,'history_log','itemid',32123),(3142,'history_str','itemid',32123),(3143,'history_text','itemid',32123),(3144,'history_uint','itemid',32123),(3145,'trends','itemid',32123),(3146,'trends_uint','itemid',32123),(3147,'events','itemid',32132),(3148,'history','itemid',32132),(3149,'history_log','itemid',32132),(3150,'history_str','itemid',32132),(3151,'history_text','itemid',32132),(3152,'history_uint','itemid',32132),(3153,'trends','itemid',32132),(3154,'trends_uint','itemid',32132),(3155,'events','itemid',32120),(3156,'history','itemid',32120),(3157,'history_log','itemid',32120),(3158,'history_str','itemid',32120),(3159,'history_text','itemid',32120),(3160,'history_uint','itemid',32120),(3161,'trends','itemid',32120),(3162,'trends_uint','itemid',32120),(3163,'events','itemid',32135),(3164,'history','itemid',32135),(3165,'history_log','itemid',32135),(3166,'history_str','itemid',32135),(3167,'history_text','itemid',32135),(3168,'history_uint','itemid',32135),(3169,'trends','itemid',32135),(3170,'trends_uint','itemid',32135),(3171,'events','itemid',32136),(3172,'history','itemid',32136),(3173,'history_log','itemid',32136),(3174,'history_str','itemid',32136),(3175,'history_text','itemid',32136),(3176,'history_uint','itemid',32136),(3177,'trends','itemid',32136),(3178,'trends_uint','itemid',32136),(3179,'events','itemid',32119),(3180,'history','itemid',32119),(3181,'history_log','itemid',32119),(3182,'history_str','itemid',32119),(3183,'history_text','itemid',32119),(3184,'history_uint','itemid',32119),(3185,'trends','itemid',32119),(3186,'trends_uint','itemid',32119),(3187,'events','itemid',32138),(3188,'history','itemid',32138),(3189,'history_log','itemid',32138),(3190,'history_str','itemid',32138),(3191,'history_text','itemid',32138),(3192,'history_uint','itemid',32138),(3193,'trends','itemid',32138),(3194,'trends_uint','itemid',32138),(3195,'events','itemid',32139),(3196,'history','itemid',32139),(3197,'history_log','itemid',32139),(3198,'history_str','itemid',32139),(3199,'history_text','itemid',32139),(3200,'history_uint','itemid',32139),(3201,'trends','itemid',32139),(3202,'trends_uint','itemid',32139),(3203,'events','itemid',32140),(3204,'history','itemid',32140),(3205,'history_log','itemid',32140),(3206,'history_str','itemid',32140),(3207,'history_text','itemid',32140),(3208,'history_uint','itemid',32140),(3209,'trends','itemid',32140),(3210,'trends_uint','itemid',32140),(3211,'events','itemid',32141),(3212,'history','itemid',32141),(3213,'history_log','itemid',32141),(3214,'history_str','itemid',32141),(3215,'history_text','itemid',32141),(3216,'history_uint','itemid',32141),(3217,'trends','itemid',32141),(3218,'trends_uint','itemid',32141),(3219,'events','itemid',32142),(3220,'history','itemid',32142),(3221,'history_log','itemid',32142),(3222,'history_str','itemid',32142),(3223,'history_text','itemid',32142),(3224,'history_uint','itemid',32142),(3225,'trends','itemid',32142),(3226,'trends_uint','itemid',32142),(3227,'events','itemid',32167),(3228,'history','itemid',32167),(3229,'history_log','itemid',32167),(3230,'history_str','itemid',32167),(3231,'history_text','itemid',32167),(3232,'history_uint','itemid',32167),(3233,'trends','itemid',32167),(3234,'trends_uint','itemid',32167),(3235,'events','itemid',32463),(3236,'history','itemid',32463),(3237,'history_log','itemid',32463),(3238,'history_str','itemid',32463),(3239,'history_text','itemid',32463),(3240,'history_uint','itemid',32463),(3241,'trends','itemid',32463),(3242,'trends_uint','itemid',32463),(3243,'events','itemid',32464),(3244,'history','itemid',32464),(3245,'history_log','itemid',32464),(3246,'history_str','itemid',32464),(3247,'history_text','itemid',32464),(3248,'history_uint','itemid',32464),(3249,'trends','itemid',32464),(3250,'trends_uint','itemid',32464),(3251,'events','itemid',32693),(3252,'history','itemid',32693),(3253,'history_log','itemid',32693),(3254,'history_str','itemid',32693),(3255,'history_text','itemid',32693),(3256,'history_uint','itemid',32693),(3257,'trends','itemid',32693),(3258,'trends_uint','itemid',32693),(3259,'events','itemid',32724),(3260,'history','itemid',32724),(3261,'history_log','itemid',32724),(3262,'history_str','itemid',32724),(3263,'history_text','itemid',32724),(3264,'history_uint','itemid',32724),(3265,'trends','itemid',32724),(3266,'trends_uint','itemid',32724),(3267,'events','itemid',32726),(3268,'history','itemid',32726),(3269,'history_log','itemid',32726),(3270,'history_str','itemid',32726),(3271,'history_text','itemid',32726),(3272,'history_uint','itemid',32726),(3273,'trends','itemid',32726),(3274,'trends_uint','itemid',32726),(3275,'events','itemid',32727),(3276,'history','itemid',32727),(3277,'history_log','itemid',32727),(3278,'history_str','itemid',32727),(3279,'history_text','itemid',32727),(3280,'history_uint','itemid',32727),(3281,'trends','itemid',32727),(3282,'trends_uint','itemid',32727),(3283,'events','itemid',32728),(3284,'history','itemid',32728),(3285,'history_log','itemid',32728),(3286,'history_str','itemid',32728),(3287,'history_text','itemid',32728),(3288,'history_uint','itemid',32728),(3289,'trends','itemid',32728),(3290,'trends_uint','itemid',32728),(3291,'events','itemid',32729),(3292,'history','itemid',32729),(3293,'history_log','itemid',32729),(3294,'history_str','itemid',32729),(3295,'history_text','itemid',32729),(3296,'history_uint','itemid',32729),(3297,'trends','itemid',32729),(3298,'trends_uint','itemid',32729),(3299,'events','itemid',32730),(3300,'history','itemid',32730),(3301,'history_log','itemid',32730),(3302,'history_str','itemid',32730),(3303,'history_text','itemid',32730),(3304,'history_uint','itemid',32730),(3305,'trends','itemid',32730),(3306,'trends_uint','itemid',32730),(3307,'events','itemid',32731),(3308,'history','itemid',32731),(3309,'history_log','itemid',32731),(3310,'history_str','itemid',32731),(3311,'history_text','itemid',32731),(3312,'history_uint','itemid',32731),(3313,'trends','itemid',32731),(3314,'trends_uint','itemid',32731),(3315,'events','itemid',32732),(3316,'history','itemid',32732),(3317,'history_log','itemid',32732),(3318,'history_str','itemid',32732),(3319,'history_text','itemid',32732),(3320,'history_uint','itemid',32732),(3321,'trends','itemid',32732),(3322,'trends_uint','itemid',32732),(3323,'events','itemid',32733),(3324,'history','itemid',32733),(3325,'history_log','itemid',32733),(3326,'history_str','itemid',32733),(3327,'history_text','itemid',32733),(3328,'history_uint','itemid',32733),(3329,'trends','itemid',32733),(3330,'trends_uint','itemid',32733),(3331,'events','itemid',32734),(3332,'history','itemid',32734),(3333,'history_log','itemid',32734),(3334,'history_str','itemid',32734),(3335,'history_text','itemid',32734),(3336,'history_uint','itemid',32734),(3337,'trends','itemid',32734),(3338,'trends_uint','itemid',32734),(3339,'events','itemid',32735),(3340,'history','itemid',32735),(3341,'history_log','itemid',32735),(3342,'history_str','itemid',32735),(3343,'history_text','itemid',32735),(3344,'history_uint','itemid',32735),(3345,'trends','itemid',32735),(3346,'trends_uint','itemid',32735),(3347,'events','itemid',32736),(3348,'history','itemid',32736),(3349,'history_log','itemid',32736),(3350,'history_str','itemid',32736),(3351,'history_text','itemid',32736),(3352,'history_uint','itemid',32736),(3353,'trends','itemid',32736),(3354,'trends_uint','itemid',32736),(3355,'events','itemid',32737),(3356,'history','itemid',32737),(3357,'history_log','itemid',32737),(3358,'history_str','itemid',32737),(3359,'history_text','itemid',32737),(3360,'history_uint','itemid',32737),(3361,'trends','itemid',32737),(3362,'trends_uint','itemid',32737),(3363,'events','itemid',32738),(3364,'history','itemid',32738),(3365,'history_log','itemid',32738),(3366,'history_str','itemid',32738),(3367,'history_text','itemid',32738),(3368,'history_uint','itemid',32738),(3369,'trends','itemid',32738),(3370,'trends_uint','itemid',32738),(3371,'events','itemid',32725),(3372,'history','itemid',32725),(3373,'history_log','itemid',32725),(3374,'history_str','itemid',32725),(3375,'history_text','itemid',32725),(3376,'history_uint','itemid',32725),(3377,'trends','itemid',32725),(3378,'trends_uint','itemid',32725),(3379,'events','itemid',32739),(3380,'history','itemid',32739),(3381,'history_log','itemid',32739),(3382,'history_str','itemid',32739),(3383,'history_text','itemid',32739),(3384,'history_uint','itemid',32739),(3385,'trends','itemid',32739),(3386,'trends_uint','itemid',32739),(3387,'events','itemid',32741),(3388,'history','itemid',32741),(3389,'history_log','itemid',32741),(3390,'history_str','itemid',32741),(3391,'history_text','itemid',32741),(3392,'history_uint','itemid',32741),(3393,'trends','itemid',32741),(3394,'trends_uint','itemid',32741),(3395,'events','itemid',32742),(3396,'history','itemid',32742),(3397,'history_log','itemid',32742),(3398,'history_str','itemid',32742),(3399,'history_text','itemid',32742),(3400,'history_uint','itemid',32742),(3401,'trends','itemid',32742),(3402,'trends_uint','itemid',32742),(3403,'events','itemid',32743),(3404,'history','itemid',32743),(3405,'history_log','itemid',32743),(3406,'history_str','itemid',32743),(3407,'history_text','itemid',32743),(3408,'history_uint','itemid',32743),(3409,'trends','itemid',32743),(3410,'trends_uint','itemid',32743),(3411,'events','itemid',32744),(3412,'history','itemid',32744),(3413,'history_log','itemid',32744),(3414,'history_str','itemid',32744),(3415,'history_text','itemid',32744),(3416,'history_uint','itemid',32744),(3417,'trends','itemid',32744),(3418,'trends_uint','itemid',32744),(3419,'events','itemid',32745),(3420,'history','itemid',32745),(3421,'history_log','itemid',32745),(3422,'history_str','itemid',32745),(3423,'history_text','itemid',32745),(3424,'history_uint','itemid',32745),(3425,'trends','itemid',32745),(3426,'trends_uint','itemid',32745),(3427,'events','itemid',32746),(3428,'history','itemid',32746),(3429,'history_log','itemid',32746),(3430,'history_str','itemid',32746),(3431,'history_text','itemid',32746),(3432,'history_uint','itemid',32746),(3433,'trends','itemid',32746),(3434,'trends_uint','itemid',32746),(3435,'events','itemid',32747),(3436,'history','itemid',32747),(3437,'history_log','itemid',32747),(3438,'history_str','itemid',32747),(3439,'history_text','itemid',32747),(3440,'history_uint','itemid',32747),(3441,'trends','itemid',32747),(3442,'trends_uint','itemid',32747),(3443,'events','itemid',32748),(3444,'history','itemid',32748),(3445,'history_log','itemid',32748),(3446,'history_str','itemid',32748),(3447,'history_text','itemid',32748),(3448,'history_uint','itemid',32748),(3449,'trends','itemid',32748),(3450,'trends_uint','itemid',32748),(3451,'events','itemid',32749),(3452,'history','itemid',32749),(3453,'history_log','itemid',32749),(3454,'history_str','itemid',32749),(3455,'history_text','itemid',32749),(3456,'history_uint','itemid',32749),(3457,'trends','itemid',32749),(3458,'trends_uint','itemid',32749),(3459,'events','itemid',32750),(3460,'history','itemid',32750),(3461,'history_log','itemid',32750),(3462,'history_str','itemid',32750),(3463,'history_text','itemid',32750),(3464,'history_uint','itemid',32750),(3465,'trends','itemid',32750),(3466,'trends_uint','itemid',32750),(3467,'events','itemid',32751),(3468,'history','itemid',32751),(3469,'history_log','itemid',32751),(3470,'history_str','itemid',32751),(3471,'history_text','itemid',32751),(3472,'history_uint','itemid',32751),(3473,'trends','itemid',32751),(3474,'trends_uint','itemid',32751),(3475,'events','itemid',32752),(3476,'history','itemid',32752),(3477,'history_log','itemid',32752),(3478,'history_str','itemid',32752),(3479,'history_text','itemid',32752),(3480,'history_uint','itemid',32752),(3481,'trends','itemid',32752),(3482,'trends_uint','itemid',32752),(3483,'events','itemid',32753),(3484,'history','itemid',32753),(3485,'history_log','itemid',32753),(3486,'history_str','itemid',32753),(3487,'history_text','itemid',32753),(3488,'history_uint','itemid',32753),(3489,'trends','itemid',32753),(3490,'trends_uint','itemid',32753),(3491,'events','itemid',32740),(3492,'history','itemid',32740),(3493,'history_log','itemid',32740),(3494,'history_str','itemid',32740),(3495,'history_text','itemid',32740),(3496,'history_uint','itemid',32740),(3497,'trends','itemid',32740),(3498,'trends_uint','itemid',32740),(3499,'events','itemid',32723),(3500,'history','itemid',32723),(3501,'history_log','itemid',32723),(3502,'history_str','itemid',32723),(3503,'history_text','itemid',32723),(3504,'history_uint','itemid',32723),(3505,'trends','itemid',32723),(3506,'trends_uint','itemid',32723),(3507,'events','itemid',32708),(3508,'history','itemid',32708),(3509,'history_log','itemid',32708),(3510,'history_str','itemid',32708),(3511,'history_text','itemid',32708),(3512,'history_uint','itemid',32708),(3513,'trends','itemid',32708),(3514,'trends_uint','itemid',32708),(3515,'events','itemid',32722),(3516,'history','itemid',32722),(3517,'history_log','itemid',32722),(3518,'history_str','itemid',32722),(3519,'history_text','itemid',32722),(3520,'history_uint','itemid',32722),(3521,'trends','itemid',32722),(3522,'trends_uint','itemid',32722),(3523,'events','itemid',32695),(3524,'history','itemid',32695),(3525,'history_log','itemid',32695),(3526,'history_str','itemid',32695),(3527,'history_text','itemid',32695),(3528,'history_uint','itemid',32695),(3529,'trends','itemid',32695),(3530,'trends_uint','itemid',32695),(3531,'events','itemid',32696),(3532,'history','itemid',32696),(3533,'history_log','itemid',32696),(3534,'history_str','itemid',32696),(3535,'history_text','itemid',32696),(3536,'history_uint','itemid',32696),(3537,'trends','itemid',32696),(3538,'trends_uint','itemid',32696),(3539,'events','itemid',32699),(3540,'history','itemid',32699),(3541,'history_log','itemid',32699),(3542,'history_str','itemid',32699),(3543,'history_text','itemid',32699),(3544,'history_uint','itemid',32699),(3545,'trends','itemid',32699),(3546,'trends_uint','itemid',32699),(3547,'events','itemid',32700),(3548,'history','itemid',32700),(3549,'history_log','itemid',32700),(3550,'history_str','itemid',32700),(3551,'history_text','itemid',32700),(3552,'history_uint','itemid',32700),(3553,'trends','itemid',32700),(3554,'trends_uint','itemid',32700),(3555,'events','itemid',32701),(3556,'history','itemid',32701),(3557,'history_log','itemid',32701),(3558,'history_str','itemid',32701),(3559,'history_text','itemid',32701),(3560,'history_uint','itemid',32701),(3561,'trends','itemid',32701),(3562,'trends_uint','itemid',32701),(3563,'events','itemid',32702),(3564,'history','itemid',32702),(3565,'history_log','itemid',32702),(3566,'history_str','itemid',32702),(3567,'history_text','itemid',32702),(3568,'history_uint','itemid',32702),(3569,'trends','itemid',32702),(3570,'trends_uint','itemid',32702),(3571,'events','itemid',32703),(3572,'history','itemid',32703),(3573,'history_log','itemid',32703),(3574,'history_str','itemid',32703),(3575,'history_text','itemid',32703),(3576,'history_uint','itemid',32703),(3577,'trends','itemid',32703),(3578,'trends_uint','itemid',32703),(3579,'events','itemid',32704),(3580,'history','itemid',32704),(3581,'history_log','itemid',32704),(3582,'history_str','itemid',32704),(3583,'history_text','itemid',32704),(3584,'history_uint','itemid',32704),(3585,'trends','itemid',32704),(3586,'trends_uint','itemid',32704),(3587,'events','itemid',32705),(3588,'history','itemid',32705),(3589,'history_log','itemid',32705),(3590,'history_str','itemid',32705),(3591,'history_text','itemid',32705),(3592,'history_uint','itemid',32705),(3593,'trends','itemid',32705),(3594,'trends_uint','itemid',32705),(3595,'events','itemid',32706),(3596,'history','itemid',32706),(3597,'history_log','itemid',32706),(3598,'history_str','itemid',32706),(3599,'history_text','itemid',32706),(3600,'history_uint','itemid',32706),(3601,'trends','itemid',32706),(3602,'trends_uint','itemid',32706),(3603,'events','itemid',32694),(3604,'history','itemid',32694),(3605,'history_log','itemid',32694),(3606,'history_str','itemid',32694),(3607,'history_text','itemid',32694),(3608,'history_uint','itemid',32694),(3609,'trends','itemid',32694),(3610,'trends_uint','itemid',32694),(3611,'events','itemid',32707),(3612,'history','itemid',32707),(3613,'history_log','itemid',32707),(3614,'history_str','itemid',32707),(3615,'history_text','itemid',32707),(3616,'history_uint','itemid',32707),(3617,'trends','itemid',32707),(3618,'trends_uint','itemid',32707),(3619,'events','itemid',32709),(3620,'history','itemid',32709),(3621,'history_log','itemid',32709),(3622,'history_str','itemid',32709),(3623,'history_text','itemid',32709),(3624,'history_uint','itemid',32709),(3625,'trends','itemid',32709),(3626,'trends_uint','itemid',32709),(3627,'events','itemid',32710),(3628,'history','itemid',32710),(3629,'history_log','itemid',32710),(3630,'history_str','itemid',32710),(3631,'history_text','itemid',32710),(3632,'history_uint','itemid',32710),(3633,'trends','itemid',32710),(3634,'trends_uint','itemid',32710),(3635,'events','itemid',32711),(3636,'history','itemid',32711),(3637,'history_log','itemid',32711),(3638,'history_str','itemid',32711),(3639,'history_text','itemid',32711),(3640,'history_uint','itemid',32711),(3641,'trends','itemid',32711),(3642,'trends_uint','itemid',32711),(3643,'events','itemid',32712),(3644,'history','itemid',32712),(3645,'history_log','itemid',32712),(3646,'history_str','itemid',32712),(3647,'history_text','itemid',32712),(3648,'history_uint','itemid',32712),(3649,'trends','itemid',32712),(3650,'trends_uint','itemid',32712),(3651,'events','itemid',32713),(3652,'history','itemid',32713),(3653,'history_log','itemid',32713),(3654,'history_str','itemid',32713),(3655,'history_text','itemid',32713),(3656,'history_uint','itemid',32713),(3657,'trends','itemid',32713),(3658,'trends_uint','itemid',32713),(3659,'events','itemid',32714),(3660,'history','itemid',32714),(3661,'history_log','itemid',32714),(3662,'history_str','itemid',32714),(3663,'history_text','itemid',32714),(3664,'history_uint','itemid',32714),(3665,'trends','itemid',32714),(3666,'trends_uint','itemid',32714),(3667,'events','itemid',32715),(3668,'history','itemid',32715),(3669,'history_log','itemid',32715),(3670,'history_str','itemid',32715),(3671,'history_text','itemid',32715),(3672,'history_uint','itemid',32715),(3673,'trends','itemid',32715),(3674,'trends_uint','itemid',32715),(3675,'events','itemid',32716),(3676,'history','itemid',32716),(3677,'history_log','itemid',32716),(3678,'history_str','itemid',32716),(3679,'history_text','itemid',32716),(3680,'history_uint','itemid',32716),(3681,'trends','itemid',32716),(3682,'trends_uint','itemid',32716),(3683,'events','itemid',32717),(3684,'history','itemid',32717),(3685,'history_log','itemid',32717),(3686,'history_str','itemid',32717),(3687,'history_text','itemid',32717),(3688,'history_uint','itemid',32717),(3689,'trends','itemid',32717),(3690,'trends_uint','itemid',32717),(3691,'events','itemid',32718),(3692,'history','itemid',32718),(3693,'history_log','itemid',32718),(3694,'history_str','itemid',32718),(3695,'history_text','itemid',32718),(3696,'history_uint','itemid',32718),(3697,'trends','itemid',32718),(3698,'trends_uint','itemid',32718),(3699,'events','itemid',32719),(3700,'history','itemid',32719),(3701,'history_log','itemid',32719),(3702,'history_str','itemid',32719),(3703,'history_text','itemid',32719),(3704,'history_uint','itemid',32719),(3705,'trends','itemid',32719),(3706,'trends_uint','itemid',32719),(3707,'events','itemid',32720),(3708,'history','itemid',32720),(3709,'history_log','itemid',32720),(3710,'history_str','itemid',32720),(3711,'history_text','itemid',32720),(3712,'history_uint','itemid',32720),(3713,'trends','itemid',32720),(3714,'trends_uint','itemid',32720),(3715,'events','itemid',32721),(3716,'history','itemid',32721),(3717,'history_log','itemid',32721),(3718,'history_str','itemid',32721),(3719,'history_text','itemid',32721),(3720,'history_uint','itemid',32721),(3721,'trends','itemid',32721),(3722,'trends_uint','itemid',32721),(3723,'events','itemid',32754),(3724,'history','itemid',32754),(3725,'history_log','itemid',32754),(3726,'history_str','itemid',32754),(3727,'history_text','itemid',32754),(3728,'history_uint','itemid',32754),(3729,'trends','itemid',32754),(3730,'trends_uint','itemid',32754),(3731,'events','itemid',32697),(3732,'history','itemid',32697),(3733,'history_log','itemid',32697),(3734,'history_str','itemid',32697),(3735,'history_text','itemid',32697),(3736,'history_uint','itemid',32697),(3737,'trends','itemid',32697),(3738,'trends_uint','itemid',32697),(3739,'events','itemid',32698),(3740,'history','itemid',32698),(3741,'history_log','itemid',32698),(3742,'history_str','itemid',32698),(3743,'history_text','itemid',32698),(3744,'history_uint','itemid',32698),(3745,'trends','itemid',32698),(3746,'trends_uint','itemid',32698),(3747,'events','itemid',33028),(3748,'history','itemid',33028),(3749,'history_log','itemid',33028),(3750,'history_str','itemid',33028),(3751,'history_text','itemid',33028),(3752,'history_uint','itemid',33028),(3753,'trends','itemid',33028),(3754,'trends_uint','itemid',33028),(3755,'events','itemid',33062),(3756,'history','itemid',33062),(3757,'history_log','itemid',33062),(3758,'history_str','itemid',33062),(3759,'history_text','itemid',33062),(3760,'history_uint','itemid',33062),(3761,'trends','itemid',33062),(3762,'trends_uint','itemid',33062),(3763,'events','itemid',33064),(3764,'history','itemid',33064),(3765,'history_log','itemid',33064),(3766,'history_str','itemid',33064),(3767,'history_text','itemid',33064),(3768,'history_uint','itemid',33064),(3769,'trends','itemid',33064),(3770,'trends_uint','itemid',33064),(3771,'events','itemid',33065),(3772,'history','itemid',33065),(3773,'history_log','itemid',33065),(3774,'history_str','itemid',33065),(3775,'history_text','itemid',33065),(3776,'history_uint','itemid',33065),(3777,'trends','itemid',33065),(3778,'trends_uint','itemid',33065),(3779,'events','itemid',33066),(3780,'history','itemid',33066),(3781,'history_log','itemid',33066),(3782,'history_str','itemid',33066),(3783,'history_text','itemid',33066),(3784,'history_uint','itemid',33066),(3785,'trends','itemid',33066),(3786,'trends_uint','itemid',33066),(3787,'events','itemid',33067),(3788,'history','itemid',33067),(3789,'history_log','itemid',33067),(3790,'history_str','itemid',33067),(3791,'history_text','itemid',33067),(3792,'history_uint','itemid',33067),(3793,'trends','itemid',33067),(3794,'trends_uint','itemid',33067),(3795,'events','itemid',33068),(3796,'history','itemid',33068),(3797,'history_log','itemid',33068),(3798,'history_str','itemid',33068),(3799,'history_text','itemid',33068),(3800,'history_uint','itemid',33068),(3801,'trends','itemid',33068),(3802,'trends_uint','itemid',33068),(3803,'events','itemid',33069),(3804,'history','itemid',33069),(3805,'history_log','itemid',33069),(3806,'history_str','itemid',33069),(3807,'history_text','itemid',33069),(3808,'history_uint','itemid',33069),(3809,'trends','itemid',33069),(3810,'trends_uint','itemid',33069),(3811,'events','itemid',33070),(3812,'history','itemid',33070),(3813,'history_log','itemid',33070),(3814,'history_str','itemid',33070),(3815,'history_text','itemid',33070),(3816,'history_uint','itemid',33070),(3817,'trends','itemid',33070),(3818,'trends_uint','itemid',33070),(3819,'events','itemid',33071),(3820,'history','itemid',33071),(3821,'history_log','itemid',33071),(3822,'history_str','itemid',33071),(3823,'history_text','itemid',33071),(3824,'history_uint','itemid',33071),(3825,'trends','itemid',33071),(3826,'trends_uint','itemid',33071),(3827,'events','itemid',33072),(3828,'history','itemid',33072),(3829,'history_log','itemid',33072),(3830,'history_str','itemid',33072),(3831,'history_text','itemid',33072),(3832,'history_uint','itemid',33072),(3833,'trends','itemid',33072),(3834,'trends_uint','itemid',33072),(3835,'events','itemid',33073),(3836,'history','itemid',33073),(3837,'history_log','itemid',33073),(3838,'history_str','itemid',33073),(3839,'history_text','itemid',33073),(3840,'history_uint','itemid',33073),(3841,'trends','itemid',33073),(3842,'trends_uint','itemid',33073),(3843,'events','itemid',33074),(3844,'history','itemid',33074),(3845,'history_log','itemid',33074),(3846,'history_str','itemid',33074),(3847,'history_text','itemid',33074),(3848,'history_uint','itemid',33074),(3849,'trends','itemid',33074),(3850,'trends_uint','itemid',33074),(3851,'events','itemid',33075),(3852,'history','itemid',33075),(3853,'history_log','itemid',33075),(3854,'history_str','itemid',33075),(3855,'history_text','itemid',33075),(3856,'history_uint','itemid',33075),(3857,'trends','itemid',33075),(3858,'trends_uint','itemid',33075),(3859,'events','itemid',33076),(3860,'history','itemid',33076),(3861,'history_log','itemid',33076),(3862,'history_str','itemid',33076),(3863,'history_text','itemid',33076),(3864,'history_uint','itemid',33076),(3865,'trends','itemid',33076),(3866,'trends_uint','itemid',33076),(3867,'events','itemid',33077),(3868,'history','itemid',33077),(3869,'history_log','itemid',33077),(3870,'history_str','itemid',33077),(3871,'history_text','itemid',33077),(3872,'history_uint','itemid',33077),(3873,'trends','itemid',33077),(3874,'trends_uint','itemid',33077),(3875,'events','itemid',33063),(3876,'history','itemid',33063),(3877,'history_log','itemid',33063),(3878,'history_str','itemid',33063),(3879,'history_text','itemid',33063),(3880,'history_uint','itemid',33063),(3881,'trends','itemid',33063),(3882,'trends_uint','itemid',33063),(3883,'events','itemid',33078),(3884,'history','itemid',33078),(3885,'history_log','itemid',33078),(3886,'history_str','itemid',33078),(3887,'history_text','itemid',33078),(3888,'history_uint','itemid',33078),(3889,'trends','itemid',33078),(3890,'trends_uint','itemid',33078),(3891,'events','itemid',33080),(3892,'history','itemid',33080),(3893,'history_log','itemid',33080),(3894,'history_str','itemid',33080),(3895,'history_text','itemid',33080),(3896,'history_uint','itemid',33080),(3897,'trends','itemid',33080),(3898,'trends_uint','itemid',33080),(3899,'events','itemid',33081),(3900,'history','itemid',33081),(3901,'history_log','itemid',33081),(3902,'history_str','itemid',33081),(3903,'history_text','itemid',33081),(3904,'history_uint','itemid',33081),(3905,'trends','itemid',33081),(3906,'trends_uint','itemid',33081),(3907,'events','itemid',33082),(3908,'history','itemid',33082),(3909,'history_log','itemid',33082),(3910,'history_str','itemid',33082),(3911,'history_text','itemid',33082),(3912,'history_uint','itemid',33082),(3913,'trends','itemid',33082),(3914,'trends_uint','itemid',33082),(3915,'events','itemid',33083),(3916,'history','itemid',33083),(3917,'history_log','itemid',33083),(3918,'history_str','itemid',33083),(3919,'history_text','itemid',33083),(3920,'history_uint','itemid',33083),(3921,'trends','itemid',33083),(3922,'trends_uint','itemid',33083),(3923,'events','itemid',33084),(3924,'history','itemid',33084),(3925,'history_log','itemid',33084),(3926,'history_str','itemid',33084),(3927,'history_text','itemid',33084),(3928,'history_uint','itemid',33084),(3929,'trends','itemid',33084),(3930,'trends_uint','itemid',33084),(3931,'events','itemid',33085),(3932,'history','itemid',33085),(3933,'history_log','itemid',33085),(3934,'history_str','itemid',33085),(3935,'history_text','itemid',33085),(3936,'history_uint','itemid',33085),(3937,'trends','itemid',33085),(3938,'trends_uint','itemid',33085),(3939,'events','itemid',33086),(3940,'history','itemid',33086),(3941,'history_log','itemid',33086),(3942,'history_str','itemid',33086),(3943,'history_text','itemid',33086),(3944,'history_uint','itemid',33086),(3945,'trends','itemid',33086),(3946,'trends_uint','itemid',33086),(3947,'events','itemid',33087),(3948,'history','itemid',33087),(3949,'history_log','itemid',33087),(3950,'history_str','itemid',33087),(3951,'history_text','itemid',33087),(3952,'history_uint','itemid',33087),(3953,'trends','itemid',33087),(3954,'trends_uint','itemid',33087),(3955,'events','itemid',33088),(3956,'history','itemid',33088),(3957,'history_log','itemid',33088),(3958,'history_str','itemid',33088),(3959,'history_text','itemid',33088),(3960,'history_uint','itemid',33088),(3961,'trends','itemid',33088),(3962,'trends_uint','itemid',33088),(3963,'events','itemid',33089),(3964,'history','itemid',33089),(3965,'history_log','itemid',33089),(3966,'history_str','itemid',33089),(3967,'history_text','itemid',33089),(3968,'history_uint','itemid',33089),(3969,'trends','itemid',33089),(3970,'trends_uint','itemid',33089),(3971,'events','itemid',33090),(3972,'history','itemid',33090),(3973,'history_log','itemid',33090),(3974,'history_str','itemid',33090),(3975,'history_text','itemid',33090),(3976,'history_uint','itemid',33090),(3977,'trends','itemid',33090),(3978,'trends_uint','itemid',33090),(3979,'events','itemid',33091),(3980,'history','itemid',33091),(3981,'history_log','itemid',33091),(3982,'history_str','itemid',33091),(3983,'history_text','itemid',33091),(3984,'history_uint','itemid',33091),(3985,'trends','itemid',33091),(3986,'trends_uint','itemid',33091),(3987,'events','itemid',33092),(3988,'history','itemid',33092),(3989,'history_log','itemid',33092),(3990,'history_str','itemid',33092),(3991,'history_text','itemid',33092),(3992,'history_uint','itemid',33092),(3993,'trends','itemid',33092),(3994,'trends_uint','itemid',33092),(3995,'events','itemid',33093),(3996,'history','itemid',33093),(3997,'history_log','itemid',33093),(3998,'history_str','itemid',33093),(3999,'history_text','itemid',33093),(4000,'history_uint','itemid',33093),(4001,'trends','itemid',33093),(4002,'trends_uint','itemid',33093),(4003,'events','itemid',33079),(4004,'history','itemid',33079),(4005,'history_log','itemid',33079),(4006,'history_str','itemid',33079),(4007,'history_text','itemid',33079),(4008,'history_uint','itemid',33079),(4009,'trends','itemid',33079),(4010,'trends_uint','itemid',33079),(4011,'events','itemid',33061),(4012,'history','itemid',33061),(4013,'history_log','itemid',33061),(4014,'history_str','itemid',33061),(4015,'history_text','itemid',33061),(4016,'history_uint','itemid',33061),(4017,'trends','itemid',33061),(4018,'trends_uint','itemid',33061),(4019,'events','itemid',33045),(4020,'history','itemid',33045),(4021,'history_log','itemid',33045),(4022,'history_str','itemid',33045),(4023,'history_text','itemid',33045),(4024,'history_uint','itemid',33045),(4025,'trends','itemid',33045),(4026,'trends_uint','itemid',33045),(4027,'events','itemid',33060),(4028,'history','itemid',33060),(4029,'history_log','itemid',33060),(4030,'history_str','itemid',33060),(4031,'history_text','itemid',33060),(4032,'history_uint','itemid',33060),(4033,'trends','itemid',33060),(4034,'trends_uint','itemid',33060),(4035,'events','itemid',33030),(4036,'history','itemid',33030),(4037,'history_log','itemid',33030),(4038,'history_str','itemid',33030),(4039,'history_text','itemid',33030),(4040,'history_uint','itemid',33030),(4041,'trends','itemid',33030),(4042,'trends_uint','itemid',33030),(4043,'events','itemid',33031),(4044,'history','itemid',33031),(4045,'history_log','itemid',33031),(4046,'history_str','itemid',33031),(4047,'history_text','itemid',33031),(4048,'history_uint','itemid',33031),(4049,'trends','itemid',33031),(4050,'trends_uint','itemid',33031),(4051,'events','itemid',33032),(4052,'history','itemid',33032),(4053,'history_log','itemid',33032),(4054,'history_str','itemid',33032),(4055,'history_text','itemid',33032),(4056,'history_uint','itemid',33032),(4057,'trends','itemid',33032),(4058,'trends_uint','itemid',33032),(4059,'events','itemid',33033),(4060,'history','itemid',33033),(4061,'history_log','itemid',33033),(4062,'history_str','itemid',33033),(4063,'history_text','itemid',33033),(4064,'history_uint','itemid',33033),(4065,'trends','itemid',33033),(4066,'trends_uint','itemid',33033),(4067,'events','itemid',33034),(4068,'history','itemid',33034),(4069,'history_log','itemid',33034),(4070,'history_str','itemid',33034),(4071,'history_text','itemid',33034),(4072,'history_uint','itemid',33034),(4073,'trends','itemid',33034),(4074,'trends_uint','itemid',33034),(4075,'events','itemid',33035),(4076,'history','itemid',33035),(4077,'history_log','itemid',33035),(4078,'history_str','itemid',33035),(4079,'history_text','itemid',33035),(4080,'history_uint','itemid',33035),(4081,'trends','itemid',33035),(4082,'trends_uint','itemid',33035),(4083,'events','itemid',33036),(4084,'history','itemid',33036),(4085,'history_log','itemid',33036),(4086,'history_str','itemid',33036),(4087,'history_text','itemid',33036),(4088,'history_uint','itemid',33036),(4089,'trends','itemid',33036),(4090,'trends_uint','itemid',33036),(4091,'events','itemid',33037),(4092,'history','itemid',33037),(4093,'history_log','itemid',33037),(4094,'history_str','itemid',33037),(4095,'history_text','itemid',33037),(4096,'history_uint','itemid',33037),(4097,'trends','itemid',33037),(4098,'trends_uint','itemid',33037),(4099,'events','itemid',33038),(4100,'history','itemid',33038),(4101,'history_log','itemid',33038),(4102,'history_str','itemid',33038),(4103,'history_text','itemid',33038),(4104,'history_uint','itemid',33038),(4105,'trends','itemid',33038),(4106,'trends_uint','itemid',33038),(4107,'events','itemid',33039),(4108,'history','itemid',33039),(4109,'history_log','itemid',33039),(4110,'history_str','itemid',33039),(4111,'history_text','itemid',33039),(4112,'history_uint','itemid',33039),(4113,'trends','itemid',33039),(4114,'trends_uint','itemid',33039),(4115,'events','itemid',33040),(4116,'history','itemid',33040),(4117,'history_log','itemid',33040),(4118,'history_str','itemid',33040),(4119,'history_text','itemid',33040),(4120,'history_uint','itemid',33040),(4121,'trends','itemid',33040),(4122,'trends_uint','itemid',33040),(4123,'events','itemid',33041),(4124,'history','itemid',33041),(4125,'history_log','itemid',33041),(4126,'history_str','itemid',33041),(4127,'history_text','itemid',33041),(4128,'history_uint','itemid',33041),(4129,'trends','itemid',33041),(4130,'trends_uint','itemid',33041),(4131,'events','itemid',33042),(4132,'history','itemid',33042),(4133,'history_log','itemid',33042),(4134,'history_str','itemid',33042),(4135,'history_text','itemid',33042),(4136,'history_uint','itemid',33042),(4137,'trends','itemid',33042),(4138,'trends_uint','itemid',33042),(4139,'events','itemid',33043),(4140,'history','itemid',33043),(4141,'history_log','itemid',33043),(4142,'history_str','itemid',33043),(4143,'history_text','itemid',33043),(4144,'history_uint','itemid',33043),(4145,'trends','itemid',33043),(4146,'trends_uint','itemid',33043),(4147,'events','itemid',33029),(4148,'history','itemid',33029),(4149,'history_log','itemid',33029),(4150,'history_str','itemid',33029),(4151,'history_text','itemid',33029),(4152,'history_uint','itemid',33029),(4153,'trends','itemid',33029),(4154,'trends_uint','itemid',33029),(4155,'events','itemid',33044),(4156,'history','itemid',33044),(4157,'history_log','itemid',33044),(4158,'history_str','itemid',33044),(4159,'history_text','itemid',33044),(4160,'history_uint','itemid',33044),(4161,'trends','itemid',33044),(4162,'trends_uint','itemid',33044),(4163,'events','itemid',33046),(4164,'history','itemid',33046),(4165,'history_log','itemid',33046),(4166,'history_str','itemid',33046),(4167,'history_text','itemid',33046),(4168,'history_uint','itemid',33046),(4169,'trends','itemid',33046),(4170,'trends_uint','itemid',33046),(4171,'events','itemid',33047),(4172,'history','itemid',33047),(4173,'history_log','itemid',33047),(4174,'history_str','itemid',33047),(4175,'history_text','itemid',33047),(4176,'history_uint','itemid',33047),(4177,'trends','itemid',33047),(4178,'trends_uint','itemid',33047),(4179,'events','itemid',33048),(4180,'history','itemid',33048),(4181,'history_log','itemid',33048),(4182,'history_str','itemid',33048),(4183,'history_text','itemid',33048),(4184,'history_uint','itemid',33048),(4185,'trends','itemid',33048),(4186,'trends_uint','itemid',33048),(4187,'events','itemid',33049),(4188,'history','itemid',33049),(4189,'history_log','itemid',33049),(4190,'history_str','itemid',33049),(4191,'history_text','itemid',33049),(4192,'history_uint','itemid',33049),(4193,'trends','itemid',33049),(4194,'trends_uint','itemid',33049),(4195,'events','itemid',33050),(4196,'history','itemid',33050),(4197,'history_log','itemid',33050),(4198,'history_str','itemid',33050),(4199,'history_text','itemid',33050),(4200,'history_uint','itemid',33050),(4201,'trends','itemid',33050),(4202,'trends_uint','itemid',33050),(4203,'events','itemid',33051),(4204,'history','itemid',33051),(4205,'history_log','itemid',33051),(4206,'history_str','itemid',33051),(4207,'history_text','itemid',33051),(4208,'history_uint','itemid',33051),(4209,'trends','itemid',33051),(4210,'trends_uint','itemid',33051),(4211,'events','itemid',33052),(4212,'history','itemid',33052),(4213,'history_log','itemid',33052),(4214,'history_str','itemid',33052),(4215,'history_text','itemid',33052),(4216,'history_uint','itemid',33052),(4217,'trends','itemid',33052),(4218,'trends_uint','itemid',33052),(4219,'events','itemid',33053),(4220,'history','itemid',33053),(4221,'history_log','itemid',33053),(4222,'history_str','itemid',33053),(4223,'history_text','itemid',33053),(4224,'history_uint','itemid',33053),(4225,'trends','itemid',33053),(4226,'trends_uint','itemid',33053),(4227,'events','itemid',33054),(4228,'history','itemid',33054),(4229,'history_log','itemid',33054),(4230,'history_str','itemid',33054),(4231,'history_text','itemid',33054),(4232,'history_uint','itemid',33054),(4233,'trends','itemid',33054),(4234,'trends_uint','itemid',33054),(4235,'events','itemid',33055),(4236,'history','itemid',33055),(4237,'history_log','itemid',33055),(4238,'history_str','itemid',33055),(4239,'history_text','itemid',33055),(4240,'history_uint','itemid',33055),(4241,'trends','itemid',33055),(4242,'trends_uint','itemid',33055),(4243,'events','itemid',33056),(4244,'history','itemid',33056),(4245,'history_log','itemid',33056),(4246,'history_str','itemid',33056),(4247,'history_text','itemid',33056),(4248,'history_uint','itemid',33056),(4249,'trends','itemid',33056),(4250,'trends_uint','itemid',33056),(4251,'events','itemid',33057),(4252,'history','itemid',33057),(4253,'history_log','itemid',33057),(4254,'history_str','itemid',33057),(4255,'history_text','itemid',33057),(4256,'history_uint','itemid',33057),(4257,'trends','itemid',33057),(4258,'trends_uint','itemid',33057),(4259,'events','itemid',33058),(4260,'history','itemid',33058),(4261,'history_log','itemid',33058),(4262,'history_str','itemid',33058),(4263,'history_text','itemid',33058),(4264,'history_uint','itemid',33058),(4265,'trends','itemid',33058),(4266,'trends_uint','itemid',33058),(4267,'events','itemid',33059),(4268,'history','itemid',33059),(4269,'history_log','itemid',33059),(4270,'history_str','itemid',33059),(4271,'history_text','itemid',33059),(4272,'history_uint','itemid',33059),(4273,'trends','itemid',33059),(4274,'trends_uint','itemid',33059),(4275,'events','itemid',33094),(4276,'history','itemid',33094),(4277,'history_log','itemid',33094),(4278,'history_str','itemid',33094),(4279,'history_text','itemid',33094),(4280,'history_uint','itemid',33094),(4281,'trends','itemid',33094),(4282,'trends_uint','itemid',33094),(4283,'events','itemid',33944),(4284,'history','itemid',33944),(4285,'history_log','itemid',33944),(4286,'history_str','itemid',33944),(4287,'history_text','itemid',33944),(4288,'history_uint','itemid',33944),(4289,'trends','itemid',33944),(4290,'trends_uint','itemid',33944),(4291,'events','itemid',33945),(4292,'history','itemid',33945),(4293,'history_log','itemid',33945),(4294,'history_str','itemid',33945),(4295,'history_text','itemid',33945),(4296,'history_uint','itemid',33945),(4297,'trends','itemid',33945),(4298,'trends_uint','itemid',33945),(4299,'events','itemid',33946),(4300,'history','itemid',33946),(4301,'history_log','itemid',33946),(4302,'history_str','itemid',33946),(4303,'history_text','itemid',33946),(4304,'history_uint','itemid',33946),(4305,'trends','itemid',33946),(4306,'trends_uint','itemid',33946),(4307,'events','itemid',33947),(4308,'history','itemid',33947),(4309,'history_log','itemid',33947),(4310,'history_str','itemid',33947),(4311,'history_text','itemid',33947),(4312,'history_uint','itemid',33947),(4313,'trends','itemid',33947),(4314,'trends_uint','itemid',33947),(4315,'events','itemid',33948),(4316,'history','itemid',33948),(4317,'history_log','itemid',33948),(4318,'history_str','itemid',33948),(4319,'history_text','itemid',33948),(4320,'history_uint','itemid',33948),(4321,'trends','itemid',33948),(4322,'trends_uint','itemid',33948),(4323,'events','itemid',33949),(4324,'history','itemid',33949),(4325,'history_log','itemid',33949),(4326,'history_str','itemid',33949),(4327,'history_text','itemid',33949),(4328,'history_uint','itemid',33949),(4329,'trends','itemid',33949),(4330,'trends_uint','itemid',33949),(4331,'events','itemid',33950),(4332,'history','itemid',33950),(4333,'history_log','itemid',33950),(4334,'history_str','itemid',33950),(4335,'history_text','itemid',33950),(4336,'history_uint','itemid',33950),(4337,'trends','itemid',33950),(4338,'trends_uint','itemid',33950),(4339,'events','itemid',33951),(4340,'history','itemid',33951),(4341,'history_log','itemid',33951),(4342,'history_str','itemid',33951),(4343,'history_text','itemid',33951),(4344,'history_uint','itemid',33951),(4345,'trends','itemid',33951),(4346,'trends_uint','itemid',33951),(4347,'events','itemid',43775),(4348,'history','itemid',43775),(4349,'history_log','itemid',43775),(4350,'history_str','itemid',43775),(4351,'history_text','itemid',43775),(4352,'history_uint','itemid',43775),(4353,'trends','itemid',43775),(4354,'trends_uint','itemid',43775),(4355,'events','itemid',33952),(4356,'history','itemid',33952),(4357,'history_log','itemid',33952),(4358,'history_str','itemid',33952),(4359,'history_text','itemid',33952),(4360,'history_uint','itemid',33952),(4361,'trends','itemid',33952),(4362,'trends_uint','itemid',33952),(4363,'events','itemid',33953),(4364,'history','itemid',33953),(4365,'history_log','itemid',33953),(4366,'history_str','itemid',33953),(4367,'history_text','itemid',33953),(4368,'history_uint','itemid',33953),(4369,'trends','itemid',33953),(4370,'trends_uint','itemid',33953),(4371,'events','itemid',33956),(4372,'history','itemid',33956),(4373,'history_log','itemid',33956),(4374,'history_str','itemid',33956),(4375,'history_text','itemid',33956),(4376,'history_uint','itemid',33956),(4377,'trends','itemid',33956),(4378,'trends_uint','itemid',33956),(4379,'events','itemid',33954),(4380,'history','itemid',33954),(4381,'history_log','itemid',33954),(4382,'history_str','itemid',33954),(4383,'history_text','itemid',33954),(4384,'history_uint','itemid',33954),(4385,'trends','itemid',33954),(4386,'trends_uint','itemid',33954),(4387,'events','itemid',33955),(4388,'history','itemid',33955),(4389,'history_log','itemid',33955),(4390,'history_str','itemid',33955),(4391,'history_text','itemid',33955),(4392,'history_uint','itemid',33955),(4393,'trends','itemid',33955),(4394,'trends_uint','itemid',33955),(4395,'events','itemid',33957),(4396,'history','itemid',33957),(4397,'history_log','itemid',33957),(4398,'history_str','itemid',33957),(4399,'history_text','itemid',33957),(4400,'history_uint','itemid',33957),(4401,'trends','itemid',33957),(4402,'trends_uint','itemid',33957),(4403,'events','itemid',33985),(4404,'history','itemid',33985),(4405,'history_log','itemid',33985),(4406,'history_str','itemid',33985),(4407,'history_text','itemid',33985),(4408,'history_uint','itemid',33985),(4409,'trends','itemid',33985),(4410,'trends_uint','itemid',33985),(4411,'events','itemid',33986),(4412,'history','itemid',33986),(4413,'history_log','itemid',33986),(4414,'history_str','itemid',33986),(4415,'history_text','itemid',33986),(4416,'history_uint','itemid',33986),(4417,'trends','itemid',33986),(4418,'trends_uint','itemid',33986),(4419,'events','itemid',33987),(4420,'history','itemid',33987),(4421,'history_log','itemid',33987),(4422,'history_str','itemid',33987),(4423,'history_text','itemid',33987),(4424,'history_uint','itemid',33987),(4425,'trends','itemid',33987),(4426,'trends_uint','itemid',33987),(4427,'events','itemid',33988),(4428,'history','itemid',33988),(4429,'history_log','itemid',33988),(4430,'history_str','itemid',33988),(4431,'history_text','itemid',33988),(4432,'history_uint','itemid',33988),(4433,'trends','itemid',33988),(4434,'trends_uint','itemid',33988),(4435,'events','itemid',33989),(4436,'history','itemid',33989),(4437,'history_log','itemid',33989),(4438,'history_str','itemid',33989),(4439,'history_text','itemid',33989),(4440,'history_uint','itemid',33989),(4441,'trends','itemid',33989),(4442,'trends_uint','itemid',33989),(4443,'events','itemid',33990),(4444,'history','itemid',33990),(4445,'history_log','itemid',33990),(4446,'history_str','itemid',33990),(4447,'history_text','itemid',33990),(4448,'history_uint','itemid',33990),(4449,'trends','itemid',33990),(4450,'trends_uint','itemid',33990),(4451,'events','itemid',33991),(4452,'history','itemid',33991),(4453,'history_log','itemid',33991),(4454,'history_str','itemid',33991),(4455,'history_text','itemid',33991),(4456,'history_uint','itemid',33991),(4457,'trends','itemid',33991),(4458,'trends_uint','itemid',33991),(4459,'events','itemid',33992),(4460,'history','itemid',33992),(4461,'history_log','itemid',33992),(4462,'history_str','itemid',33992),(4463,'history_text','itemid',33992),(4464,'history_uint','itemid',33992),(4465,'trends','itemid',33992),(4466,'trends_uint','itemid',33992),(4467,'events','itemid',43776),(4468,'history','itemid',43776),(4469,'history_log','itemid',43776),(4470,'history_str','itemid',43776),(4471,'history_text','itemid',43776),(4472,'history_uint','itemid',43776),(4473,'trends','itemid',43776),(4474,'trends_uint','itemid',43776),(4475,'events','itemid',33993),(4476,'history','itemid',33993),(4477,'history_log','itemid',33993),(4478,'history_str','itemid',33993),(4479,'history_text','itemid',33993),(4480,'history_uint','itemid',33993),(4481,'trends','itemid',33993),(4482,'trends_uint','itemid',33993),(4483,'events','itemid',33994),(4484,'history','itemid',33994),(4485,'history_log','itemid',33994),(4486,'history_str','itemid',33994),(4487,'history_text','itemid',33994),(4488,'history_uint','itemid',33994),(4489,'trends','itemid',33994),(4490,'trends_uint','itemid',33994),(4491,'events','itemid',33997),(4492,'history','itemid',33997),(4493,'history_log','itemid',33997),(4494,'history_str','itemid',33997),(4495,'history_text','itemid',33997),(4496,'history_uint','itemid',33997),(4497,'trends','itemid',33997),(4498,'trends_uint','itemid',33997),(4499,'events','itemid',33995),(4500,'history','itemid',33995),(4501,'history_log','itemid',33995),(4502,'history_str','itemid',33995),(4503,'history_text','itemid',33995),(4504,'history_uint','itemid',33995),(4505,'trends','itemid',33995),(4506,'trends_uint','itemid',33995),(4507,'events','itemid',33996),(4508,'history','itemid',33996),(4509,'history_log','itemid',33996),(4510,'history_str','itemid',33996),(4511,'history_text','itemid',33996),(4512,'history_uint','itemid',33996),(4513,'trends','itemid',33996),(4514,'trends_uint','itemid',33996),(4515,'events','itemid',33998),(4516,'history','itemid',33998),(4517,'history_log','itemid',33998),(4518,'history_str','itemid',33998),(4519,'history_text','itemid',33998),(4520,'history_uint','itemid',33998),(4521,'trends','itemid',33998),(4522,'trends_uint','itemid',33998),(4523,'events','itemid',34026),(4524,'history','itemid',34026),(4525,'history_log','itemid',34026),(4526,'history_str','itemid',34026),(4527,'history_text','itemid',34026),(4528,'history_uint','itemid',34026),(4529,'trends','itemid',34026),(4530,'trends_uint','itemid',34026),(4531,'events','itemid',34027),(4532,'history','itemid',34027),(4533,'history_log','itemid',34027),(4534,'history_str','itemid',34027),(4535,'history_text','itemid',34027),(4536,'history_uint','itemid',34027),(4537,'trends','itemid',34027),(4538,'trends_uint','itemid',34027),(4539,'events','itemid',34028),(4540,'history','itemid',34028),(4541,'history_log','itemid',34028),(4542,'history_str','itemid',34028),(4543,'history_text','itemid',34028),(4544,'history_uint','itemid',34028),(4545,'trends','itemid',34028),(4546,'trends_uint','itemid',34028),(4547,'events','itemid',34029),(4548,'history','itemid',34029),(4549,'history_log','itemid',34029),(4550,'history_str','itemid',34029),(4551,'history_text','itemid',34029),(4552,'history_uint','itemid',34029),(4553,'trends','itemid',34029),(4554,'trends_uint','itemid',34029),(4555,'events','itemid',34030),(4556,'history','itemid',34030),(4557,'history_log','itemid',34030),(4558,'history_str','itemid',34030),(4559,'history_text','itemid',34030),(4560,'history_uint','itemid',34030),(4561,'trends','itemid',34030),(4562,'trends_uint','itemid',34030),(4563,'events','itemid',34031),(4564,'history','itemid',34031),(4565,'history_log','itemid',34031),(4566,'history_str','itemid',34031),(4567,'history_text','itemid',34031),(4568,'history_uint','itemid',34031),(4569,'trends','itemid',34031),(4570,'trends_uint','itemid',34031),(4571,'events','itemid',34032),(4572,'history','itemid',34032),(4573,'history_log','itemid',34032),(4574,'history_str','itemid',34032),(4575,'history_text','itemid',34032),(4576,'history_uint','itemid',34032),(4577,'trends','itemid',34032),(4578,'trends_uint','itemid',34032),(4579,'events','itemid',34033),(4580,'history','itemid',34033),(4581,'history_log','itemid',34033),(4582,'history_str','itemid',34033),(4583,'history_text','itemid',34033),(4584,'history_uint','itemid',34033),(4585,'trends','itemid',34033),(4586,'trends_uint','itemid',34033),(4587,'events','itemid',43777),(4588,'history','itemid',43777),(4589,'history_log','itemid',43777),(4590,'history_str','itemid',43777),(4591,'history_text','itemid',43777),(4592,'history_uint','itemid',43777),(4593,'trends','itemid',43777),(4594,'trends_uint','itemid',43777),(4595,'events','itemid',34034),(4596,'history','itemid',34034),(4597,'history_log','itemid',34034),(4598,'history_str','itemid',34034),(4599,'history_text','itemid',34034),(4600,'history_uint','itemid',34034),(4601,'trends','itemid',34034),(4602,'trends_uint','itemid',34034),(4603,'events','itemid',34035),(4604,'history','itemid',34035),(4605,'history_log','itemid',34035),(4606,'history_str','itemid',34035),(4607,'history_text','itemid',34035),(4608,'history_uint','itemid',34035),(4609,'trends','itemid',34035),(4610,'trends_uint','itemid',34035),(4611,'events','itemid',34038),(4612,'history','itemid',34038),(4613,'history_log','itemid',34038),(4614,'history_str','itemid',34038),(4615,'history_text','itemid',34038),(4616,'history_uint','itemid',34038),(4617,'trends','itemid',34038),(4618,'trends_uint','itemid',34038),(4619,'events','itemid',34036),(4620,'history','itemid',34036),(4621,'history_log','itemid',34036),(4622,'history_str','itemid',34036),(4623,'history_text','itemid',34036),(4624,'history_uint','itemid',34036),(4625,'trends','itemid',34036),(4626,'trends_uint','itemid',34036),(4627,'events','itemid',34037),(4628,'history','itemid',34037),(4629,'history_log','itemid',34037),(4630,'history_str','itemid',34037),(4631,'history_text','itemid',34037),(4632,'history_uint','itemid',34037),(4633,'trends','itemid',34037),(4634,'trends_uint','itemid',34037),(4635,'events','itemid',34039),(4636,'history','itemid',34039),(4637,'history_log','itemid',34039),(4638,'history_str','itemid',34039),(4639,'history_text','itemid',34039),(4640,'history_uint','itemid',34039),(4641,'trends','itemid',34039),(4642,'trends_uint','itemid',34039),(4643,'events','itemid',34067),(4644,'history','itemid',34067),(4645,'history_log','itemid',34067),(4646,'history_str','itemid',34067),(4647,'history_text','itemid',34067),(4648,'history_uint','itemid',34067),(4649,'trends','itemid',34067),(4650,'trends_uint','itemid',34067),(4651,'events','itemid',34068),(4652,'history','itemid',34068),(4653,'history_log','itemid',34068),(4654,'history_str','itemid',34068),(4655,'history_text','itemid',34068),(4656,'history_uint','itemid',34068),(4657,'trends','itemid',34068),(4658,'trends_uint','itemid',34068),(4659,'events','itemid',34069),(4660,'history','itemid',34069),(4661,'history_log','itemid',34069),(4662,'history_str','itemid',34069),(4663,'history_text','itemid',34069),(4664,'history_uint','itemid',34069),(4665,'trends','itemid',34069),(4666,'trends_uint','itemid',34069),(4667,'events','itemid',34070),(4668,'history','itemid',34070),(4669,'history_log','itemid',34070),(4670,'history_str','itemid',34070),(4671,'history_text','itemid',34070),(4672,'history_uint','itemid',34070),(4673,'trends','itemid',34070),(4674,'trends_uint','itemid',34070),(4675,'events','itemid',34071),(4676,'history','itemid',34071),(4677,'history_log','itemid',34071),(4678,'history_str','itemid',34071),(4679,'history_text','itemid',34071),(4680,'history_uint','itemid',34071),(4681,'trends','itemid',34071),(4682,'trends_uint','itemid',34071),(4683,'events','itemid',34072),(4684,'history','itemid',34072),(4685,'history_log','itemid',34072),(4686,'history_str','itemid',34072),(4687,'history_text','itemid',34072),(4688,'history_uint','itemid',34072),(4689,'trends','itemid',34072),(4690,'trends_uint','itemid',34072),(4691,'events','itemid',34073),(4692,'history','itemid',34073),(4693,'history_log','itemid',34073),(4694,'history_str','itemid',34073),(4695,'history_text','itemid',34073),(4696,'history_uint','itemid',34073),(4697,'trends','itemid',34073),(4698,'trends_uint','itemid',34073),(4699,'events','itemid',34074),(4700,'history','itemid',34074),(4701,'history_log','itemid',34074),(4702,'history_str','itemid',34074),(4703,'history_text','itemid',34074),(4704,'history_uint','itemid',34074),(4705,'trends','itemid',34074),(4706,'trends_uint','itemid',34074),(4707,'events','itemid',43778),(4708,'history','itemid',43778),(4709,'history_log','itemid',43778),(4710,'history_str','itemid',43778),(4711,'history_text','itemid',43778),(4712,'history_uint','itemid',43778),(4713,'trends','itemid',43778),(4714,'trends_uint','itemid',43778),(4715,'events','itemid',34075),(4716,'history','itemid',34075),(4717,'history_log','itemid',34075),(4718,'history_str','itemid',34075),(4719,'history_text','itemid',34075),(4720,'history_uint','itemid',34075),(4721,'trends','itemid',34075),(4722,'trends_uint','itemid',34075),(4723,'events','itemid',34076),(4724,'history','itemid',34076),(4725,'history_log','itemid',34076),(4726,'history_str','itemid',34076),(4727,'history_text','itemid',34076),(4728,'history_uint','itemid',34076),(4729,'trends','itemid',34076),(4730,'trends_uint','itemid',34076),(4731,'events','itemid',34079),(4732,'history','itemid',34079),(4733,'history_log','itemid',34079),(4734,'history_str','itemid',34079),(4735,'history_text','itemid',34079),(4736,'history_uint','itemid',34079),(4737,'trends','itemid',34079),(4738,'trends_uint','itemid',34079),(4739,'events','itemid',34077),(4740,'history','itemid',34077),(4741,'history_log','itemid',34077),(4742,'history_str','itemid',34077),(4743,'history_text','itemid',34077),(4744,'history_uint','itemid',34077),(4745,'trends','itemid',34077),(4746,'trends_uint','itemid',34077),(4747,'events','itemid',34078),(4748,'history','itemid',34078),(4749,'history_log','itemid',34078),(4750,'history_str','itemid',34078),(4751,'history_text','itemid',34078),(4752,'history_uint','itemid',34078),(4753,'trends','itemid',34078),(4754,'trends_uint','itemid',34078),(4755,'events','itemid',34080),(4756,'history','itemid',34080),(4757,'history_log','itemid',34080),(4758,'history_str','itemid',34080),(4759,'history_text','itemid',34080),(4760,'history_uint','itemid',34080),(4761,'trends','itemid',34080),(4762,'trends_uint','itemid',34080),(4763,'events','itemid',34108),(4764,'history','itemid',34108),(4765,'history_log','itemid',34108),(4766,'history_str','itemid',34108),(4767,'history_text','itemid',34108),(4768,'history_uint','itemid',34108),(4769,'trends','itemid',34108),(4770,'trends_uint','itemid',34108),(4771,'events','itemid',34109),(4772,'history','itemid',34109),(4773,'history_log','itemid',34109),(4774,'history_str','itemid',34109),(4775,'history_text','itemid',34109),(4776,'history_uint','itemid',34109),(4777,'trends','itemid',34109),(4778,'trends_uint','itemid',34109),(4779,'events','itemid',34110),(4780,'history','itemid',34110),(4781,'history_log','itemid',34110),(4782,'history_str','itemid',34110),(4783,'history_text','itemid',34110),(4784,'history_uint','itemid',34110),(4785,'trends','itemid',34110),(4786,'trends_uint','itemid',34110),(4787,'events','itemid',34111),(4788,'history','itemid',34111),(4789,'history_log','itemid',34111),(4790,'history_str','itemid',34111),(4791,'history_text','itemid',34111),(4792,'history_uint','itemid',34111),(4793,'trends','itemid',34111),(4794,'trends_uint','itemid',34111),(4795,'events','itemid',34112),(4796,'history','itemid',34112),(4797,'history_log','itemid',34112),(4798,'history_str','itemid',34112),(4799,'history_text','itemid',34112),(4800,'history_uint','itemid',34112),(4801,'trends','itemid',34112),(4802,'trends_uint','itemid',34112),(4803,'events','itemid',34113),(4804,'history','itemid',34113),(4805,'history_log','itemid',34113),(4806,'history_str','itemid',34113),(4807,'history_text','itemid',34113),(4808,'history_uint','itemid',34113),(4809,'trends','itemid',34113),(4810,'trends_uint','itemid',34113),(4811,'events','itemid',34114),(4812,'history','itemid',34114),(4813,'history_log','itemid',34114),(4814,'history_str','itemid',34114),(4815,'history_text','itemid',34114),(4816,'history_uint','itemid',34114),(4817,'trends','itemid',34114),(4818,'trends_uint','itemid',34114),(4819,'events','itemid',34115),(4820,'history','itemid',34115),(4821,'history_log','itemid',34115),(4822,'history_str','itemid',34115),(4823,'history_text','itemid',34115),(4824,'history_uint','itemid',34115),(4825,'trends','itemid',34115),(4826,'trends_uint','itemid',34115),(4827,'events','itemid',43779),(4828,'history','itemid',43779),(4829,'history_log','itemid',43779),(4830,'history_str','itemid',43779),(4831,'history_text','itemid',43779),(4832,'history_uint','itemid',43779),(4833,'trends','itemid',43779),(4834,'trends_uint','itemid',43779),(4835,'events','itemid',34116),(4836,'history','itemid',34116),(4837,'history_log','itemid',34116),(4838,'history_str','itemid',34116),(4839,'history_text','itemid',34116),(4840,'history_uint','itemid',34116),(4841,'trends','itemid',34116),(4842,'trends_uint','itemid',34116),(4843,'events','itemid',34117),(4844,'history','itemid',34117),(4845,'history_log','itemid',34117),(4846,'history_str','itemid',34117),(4847,'history_text','itemid',34117),(4848,'history_uint','itemid',34117),(4849,'trends','itemid',34117),(4850,'trends_uint','itemid',34117),(4851,'events','itemid',34120),(4852,'history','itemid',34120),(4853,'history_log','itemid',34120),(4854,'history_str','itemid',34120),(4855,'history_text','itemid',34120),(4856,'history_uint','itemid',34120),(4857,'trends','itemid',34120),(4858,'trends_uint','itemid',34120),(4859,'events','itemid',34118),(4860,'history','itemid',34118),(4861,'history_log','itemid',34118),(4862,'history_str','itemid',34118),(4863,'history_text','itemid',34118),(4864,'history_uint','itemid',34118),(4865,'trends','itemid',34118),(4866,'trends_uint','itemid',34118),(4867,'events','itemid',34119),(4868,'history','itemid',34119),(4869,'history_log','itemid',34119),(4870,'history_str','itemid',34119),(4871,'history_text','itemid',34119),(4872,'history_uint','itemid',34119),(4873,'trends','itemid',34119),(4874,'trends_uint','itemid',34119),(4875,'events','itemid',34121),(4876,'history','itemid',34121),(4877,'history_log','itemid',34121),(4878,'history_str','itemid',34121),(4879,'history_text','itemid',34121),(4880,'history_uint','itemid',34121),(4881,'trends','itemid',34121),(4882,'trends_uint','itemid',34121),(4883,'events','itemid',34787),(4884,'history','itemid',34787),(4885,'history_log','itemid',34787),(4886,'history_str','itemid',34787),(4887,'history_text','itemid',34787),(4888,'history_uint','itemid',34787),(4889,'trends','itemid',34787),(4890,'trends_uint','itemid',34787),(4891,'events','itemid',34193),(4892,'history','itemid',34193),(4893,'history_log','itemid',34193),(4894,'history_str','itemid',34193),(4895,'history_text','itemid',34193),(4896,'history_uint','itemid',34193),(4897,'trends','itemid',34193),(4898,'trends_uint','itemid',34193),(4899,'events','itemid',34205),(4900,'history','itemid',34205),(4901,'history_log','itemid',34205),(4902,'history_str','itemid',34205),(4903,'history_text','itemid',34205),(4904,'history_uint','itemid',34205),(4905,'trends','itemid',34205),(4906,'trends_uint','itemid',34205),(4907,'events','itemid',34204),(4908,'history','itemid',34204),(4909,'history_log','itemid',34204),(4910,'history_str','itemid',34204),(4911,'history_text','itemid',34204),(4912,'history_uint','itemid',34204),(4913,'trends','itemid',34204),(4914,'trends_uint','itemid',34204),(4915,'events','itemid',34203),(4916,'history','itemid',34203),(4917,'history_log','itemid',34203),(4918,'history_str','itemid',34203),(4919,'history_text','itemid',34203),(4920,'history_uint','itemid',34203),(4921,'trends','itemid',34203),(4922,'trends_uint','itemid',34203),(4923,'events','itemid',34202),(4924,'history','itemid',34202),(4925,'history_log','itemid',34202),(4926,'history_str','itemid',34202),(4927,'history_text','itemid',34202),(4928,'history_uint','itemid',34202),(4929,'trends','itemid',34202),(4930,'trends_uint','itemid',34202),(4931,'events','itemid',34201),(4932,'history','itemid',34201),(4933,'history_log','itemid',34201),(4934,'history_str','itemid',34201),(4935,'history_text','itemid',34201),(4936,'history_uint','itemid',34201),(4937,'trends','itemid',34201),(4938,'trends_uint','itemid',34201),(4939,'events','itemid',34200),(4940,'history','itemid',34200),(4941,'history_log','itemid',34200),(4942,'history_str','itemid',34200),(4943,'history_text','itemid',34200),(4944,'history_uint','itemid',34200),(4945,'trends','itemid',34200),(4946,'trends_uint','itemid',34200),(4947,'events','itemid',34196),(4948,'history','itemid',34196),(4949,'history_log','itemid',34196),(4950,'history_str','itemid',34196),(4951,'history_text','itemid',34196),(4952,'history_uint','itemid',34196),(4953,'trends','itemid',34196),(4954,'trends_uint','itemid',34196),(4955,'events','itemid',34195),(4956,'history','itemid',34195),(4957,'history_log','itemid',34195),(4958,'history_str','itemid',34195),(4959,'history_text','itemid',34195),(4960,'history_uint','itemid',34195),(4961,'trends','itemid',34195),(4962,'trends_uint','itemid',34195),(4963,'events','itemid',34194),(4964,'history','itemid',34194),(4965,'history_log','itemid',34194),(4966,'history_str','itemid',34194),(4967,'history_text','itemid',34194),(4968,'history_uint','itemid',34194),(4969,'trends','itemid',34194),(4970,'trends_uint','itemid',34194),(4971,'events','itemid',34192),(4972,'history','itemid',34192),(4973,'history_log','itemid',34192),(4974,'history_str','itemid',34192),(4975,'history_text','itemid',34192),(4976,'history_uint','itemid',34192),(4977,'trends','itemid',34192),(4978,'trends_uint','itemid',34192),(4979,'events','itemid',34180),(4980,'history','itemid',34180),(4981,'history_log','itemid',34180),(4982,'history_str','itemid',34180),(4983,'history_text','itemid',34180),(4984,'history_uint','itemid',34180),(4985,'trends','itemid',34180),(4986,'trends_uint','itemid',34180),(4987,'events','itemid',34191),(4988,'history','itemid',34191),(4989,'history_log','itemid',34191),(4990,'history_str','itemid',34191),(4991,'history_text','itemid',34191),(4992,'history_uint','itemid',34191),(4993,'trends','itemid',34191),(4994,'trends_uint','itemid',34191),(4995,'events','itemid',34190),(4996,'history','itemid',34190),(4997,'history_log','itemid',34190),(4998,'history_str','itemid',34190),(4999,'history_text','itemid',34190),(5000,'history_uint','itemid',34190),(5001,'trends','itemid',34190),(5002,'trends_uint','itemid',34190),(5003,'events','itemid',34189),(5004,'history','itemid',34189),(5005,'history_log','itemid',34189),(5006,'history_str','itemid',34189),(5007,'history_text','itemid',34189),(5008,'history_uint','itemid',34189),(5009,'trends','itemid',34189),(5010,'trends_uint','itemid',34189),(5011,'events','itemid',34188),(5012,'history','itemid',34188),(5013,'history_log','itemid',34188),(5014,'history_str','itemid',34188),(5015,'history_text','itemid',34188),(5016,'history_uint','itemid',34188),(5017,'trends','itemid',34188),(5018,'trends_uint','itemid',34188),(5019,'events','itemid',34187),(5020,'history','itemid',34187),(5021,'history_log','itemid',34187),(5022,'history_str','itemid',34187),(5023,'history_text','itemid',34187),(5024,'history_uint','itemid',34187),(5025,'trends','itemid',34187),(5026,'trends_uint','itemid',34187),(5027,'events','itemid',43883),(5028,'history','itemid',43883),(5029,'history_log','itemid',43883),(5030,'history_str','itemid',43883),(5031,'history_text','itemid',43883),(5032,'history_uint','itemid',43883),(5033,'trends','itemid',43883),(5034,'trends_uint','itemid',43883),(5035,'events','itemid',34186),(5036,'history','itemid',34186),(5037,'history_log','itemid',34186),(5038,'history_str','itemid',34186),(5039,'history_text','itemid',34186),(5040,'history_uint','itemid',34186),(5041,'trends','itemid',34186),(5042,'trends_uint','itemid',34186),(5043,'events','itemid',34185),(5044,'history','itemid',34185),(5045,'history_log','itemid',34185),(5046,'history_str','itemid',34185),(5047,'history_text','itemid',34185),(5048,'history_uint','itemid',34185),(5049,'trends','itemid',34185),(5050,'trends_uint','itemid',34185),(5051,'events','itemid',34788),(5052,'history','itemid',34788),(5053,'history_log','itemid',34788),(5054,'history_str','itemid',34788),(5055,'history_text','itemid',34788),(5056,'history_uint','itemid',34788),(5057,'trends','itemid',34788),(5058,'trends_uint','itemid',34788),(5059,'events','itemid',34181),(5060,'history','itemid',34181),(5061,'history_log','itemid',34181),(5062,'history_str','itemid',34181),(5063,'history_text','itemid',34181),(5064,'history_uint','itemid',34181),(5065,'trends','itemid',34181),(5066,'trends_uint','itemid',34181),(5067,'events','itemid',34183),(5068,'history','itemid',34183),(5069,'history_log','itemid',34183),(5070,'history_str','itemid',34183),(5071,'history_text','itemid',34183),(5072,'history_uint','itemid',34183),(5073,'trends','itemid',34183),(5074,'trends_uint','itemid',34183),(5075,'events','itemid',34182),(5076,'history','itemid',34182),(5077,'history_log','itemid',34182),(5078,'history_str','itemid',34182),(5079,'history_text','itemid',34182),(5080,'history_uint','itemid',34182),(5081,'trends','itemid',34182),(5082,'trends_uint','itemid',34182),(5083,'events','itemid',34206),(5084,'history','itemid',34206),(5085,'history_log','itemid',34206),(5086,'history_str','itemid',34206),(5087,'history_text','itemid',34206),(5088,'history_uint','itemid',34206),(5089,'trends','itemid',34206),(5090,'trends_uint','itemid',34206),(5091,'events','itemid',34451),(5092,'history','itemid',34451),(5093,'history_log','itemid',34451),(5094,'history_str','itemid',34451),(5095,'history_text','itemid',34451),(5096,'history_uint','itemid',34451),(5097,'trends','itemid',34451),(5098,'trends_uint','itemid',34451),(5099,'events','itemid',34464),(5100,'history','itemid',34464),(5101,'history_log','itemid',34464),(5102,'history_str','itemid',34464),(5103,'history_text','itemid',34464),(5104,'history_uint','itemid',34464),(5105,'trends','itemid',34464),(5106,'trends_uint','itemid',34464),(5107,'events','itemid',34474),(5108,'history','itemid',34474),(5109,'history_log','itemid',34474),(5110,'history_str','itemid',34474),(5111,'history_text','itemid',34474),(5112,'history_uint','itemid',34474),(5113,'trends','itemid',34474),(5114,'trends_uint','itemid',34474),(5115,'events','itemid',34473),(5116,'history','itemid',34473),(5117,'history_log','itemid',34473),(5118,'history_str','itemid',34473),(5119,'history_text','itemid',34473),(5120,'history_uint','itemid',34473),(5121,'trends','itemid',34473),(5122,'trends_uint','itemid',34473),(5123,'events','itemid',34472),(5124,'history','itemid',34472),(5125,'history_log','itemid',34472),(5126,'history_str','itemid',34472),(5127,'history_text','itemid',34472),(5128,'history_uint','itemid',34472),(5129,'trends','itemid',34472),(5130,'trends_uint','itemid',34472),(5131,'events','itemid',34471),(5132,'history','itemid',34471),(5133,'history_log','itemid',34471),(5134,'history_str','itemid',34471),(5135,'history_text','itemid',34471),(5136,'history_uint','itemid',34471),(5137,'trends','itemid',34471),(5138,'trends_uint','itemid',34471),(5139,'events','itemid',34470),(5140,'history','itemid',34470),(5141,'history_log','itemid',34470),(5142,'history_str','itemid',34470),(5143,'history_text','itemid',34470),(5144,'history_uint','itemid',34470),(5145,'trends','itemid',34470),(5146,'trends_uint','itemid',34470),(5147,'events','itemid',34469),(5148,'history','itemid',34469),(5149,'history_log','itemid',34469),(5150,'history_str','itemid',34469),(5151,'history_text','itemid',34469),(5152,'history_uint','itemid',34469),(5153,'trends','itemid',34469),(5154,'trends_uint','itemid',34469),(5155,'events','itemid',34468),(5156,'history','itemid',34468),(5157,'history_log','itemid',34468),(5158,'history_str','itemid',34468),(5159,'history_text','itemid',34468),(5160,'history_uint','itemid',34468),(5161,'trends','itemid',34468),(5162,'trends_uint','itemid',34468),(5163,'events','itemid',34467),(5164,'history','itemid',34467),(5165,'history_log','itemid',34467),(5166,'history_str','itemid',34467),(5167,'history_text','itemid',34467),(5168,'history_uint','itemid',34467),(5169,'trends','itemid',34467),(5170,'trends_uint','itemid',34467),(5171,'events','itemid',34466),(5172,'history','itemid',34466),(5173,'history_log','itemid',34466),(5174,'history_str','itemid',34466),(5175,'history_text','itemid',34466),(5176,'history_uint','itemid',34466),(5177,'trends','itemid',34466),(5178,'trends_uint','itemid',34466),(5179,'events','itemid',34465),(5180,'history','itemid',34465),(5181,'history_log','itemid',34465),(5182,'history_str','itemid',34465),(5183,'history_text','itemid',34465),(5184,'history_uint','itemid',34465),(5185,'trends','itemid',34465),(5186,'trends_uint','itemid',34465),(5187,'events','itemid',34463),(5188,'history','itemid',34463),(5189,'history_log','itemid',34463),(5190,'history_str','itemid',34463),(5191,'history_text','itemid',34463),(5192,'history_uint','itemid',34463),(5193,'trends','itemid',34463),(5194,'trends_uint','itemid',34463),(5195,'events','itemid',34452),(5196,'history','itemid',34452),(5197,'history_log','itemid',34452),(5198,'history_str','itemid',34452),(5199,'history_text','itemid',34452),(5200,'history_uint','itemid',34452),(5201,'trends','itemid',34452),(5202,'trends_uint','itemid',34452),(5203,'events','itemid',34462),(5204,'history','itemid',34462),(5205,'history_log','itemid',34462),(5206,'history_str','itemid',34462),(5207,'history_text','itemid',34462),(5208,'history_uint','itemid',34462),(5209,'trends','itemid',34462),(5210,'trends_uint','itemid',34462),(5211,'events','itemid',34461),(5212,'history','itemid',34461),(5213,'history_log','itemid',34461),(5214,'history_str','itemid',34461),(5215,'history_text','itemid',34461),(5216,'history_uint','itemid',34461),(5217,'trends','itemid',34461),(5218,'trends_uint','itemid',34461),(5219,'events','itemid',34460),(5220,'history','itemid',34460),(5221,'history_log','itemid',34460),(5222,'history_str','itemid',34460),(5223,'history_text','itemid',34460),(5224,'history_uint','itemid',34460),(5225,'trends','itemid',34460),(5226,'trends_uint','itemid',34460),(5227,'events','itemid',34459),(5228,'history','itemid',34459),(5229,'history_log','itemid',34459),(5230,'history_str','itemid',34459),(5231,'history_text','itemid',34459),(5232,'history_uint','itemid',34459),(5233,'trends','itemid',34459),(5234,'trends_uint','itemid',34459),(5235,'events','itemid',43876),(5236,'history','itemid',43876),(5237,'history_log','itemid',43876),(5238,'history_str','itemid',43876),(5239,'history_text','itemid',43876),(5240,'history_uint','itemid',43876),(5241,'trends','itemid',43876),(5242,'trends_uint','itemid',43876),(5243,'events','itemid',34458),(5244,'history','itemid',34458),(5245,'history_log','itemid',34458),(5246,'history_str','itemid',34458),(5247,'history_text','itemid',34458),(5248,'history_uint','itemid',34458),(5249,'trends','itemid',34458),(5250,'trends_uint','itemid',34458),(5251,'events','itemid',34457),(5252,'history','itemid',34457),(5253,'history_log','itemid',34457),(5254,'history_str','itemid',34457),(5255,'history_text','itemid',34457),(5256,'history_uint','itemid',34457),(5257,'trends','itemid',34457),(5258,'trends_uint','itemid',34457),(5259,'events','itemid',34456),(5260,'history','itemid',34456),(5261,'history_log','itemid',34456),(5262,'history_str','itemid',34456),(5263,'history_text','itemid',34456),(5264,'history_uint','itemid',34456),(5265,'trends','itemid',34456),(5266,'trends_uint','itemid',34456),(5267,'events','itemid',34453),(5268,'history','itemid',34453),(5269,'history_log','itemid',34453),(5270,'history_str','itemid',34453),(5271,'history_text','itemid',34453),(5272,'history_uint','itemid',34453),(5273,'trends','itemid',34453),(5274,'trends_uint','itemid',34453),(5275,'events','itemid',34455),(5276,'history','itemid',34455),(5277,'history_log','itemid',34455),(5278,'history_str','itemid',34455),(5279,'history_text','itemid',34455),(5280,'history_uint','itemid',34455),(5281,'trends','itemid',34455),(5282,'trends_uint','itemid',34455),(5283,'events','itemid',34454),(5284,'history','itemid',34454),(5285,'history_log','itemid',34454),(5286,'history_str','itemid',34454),(5287,'history_text','itemid',34454),(5288,'history_uint','itemid',34454),(5289,'trends','itemid',34454),(5290,'trends_uint','itemid',34454),(5291,'events','itemid',34475),(5292,'history','itemid',34475),(5293,'history_log','itemid',34475),(5294,'history_str','itemid',34475),(5295,'history_text','itemid',34475),(5296,'history_uint','itemid',34475),(5297,'trends','itemid',34475),(5298,'trends_uint','itemid',34475),(5299,'events','itemid',34499),(5300,'history','itemid',34499),(5301,'history_log','itemid',34499),(5302,'history_str','itemid',34499),(5303,'history_text','itemid',34499),(5304,'history_uint','itemid',34499),(5305,'trends','itemid',34499),(5306,'trends_uint','itemid',34499),(5307,'events','itemid',34512),(5308,'history','itemid',34512),(5309,'history_log','itemid',34512),(5310,'history_str','itemid',34512),(5311,'history_text','itemid',34512),(5312,'history_uint','itemid',34512),(5313,'trends','itemid',34512),(5314,'trends_uint','itemid',34512),(5315,'events','itemid',34522),(5316,'history','itemid',34522),(5317,'history_log','itemid',34522),(5318,'history_str','itemid',34522),(5319,'history_text','itemid',34522),(5320,'history_uint','itemid',34522),(5321,'trends','itemid',34522),(5322,'trends_uint','itemid',34522),(5323,'events','itemid',34521),(5324,'history','itemid',34521),(5325,'history_log','itemid',34521),(5326,'history_str','itemid',34521),(5327,'history_text','itemid',34521),(5328,'history_uint','itemid',34521),(5329,'trends','itemid',34521),(5330,'trends_uint','itemid',34521),(5331,'events','itemid',34520),(5332,'history','itemid',34520),(5333,'history_log','itemid',34520),(5334,'history_str','itemid',34520),(5335,'history_text','itemid',34520),(5336,'history_uint','itemid',34520),(5337,'trends','itemid',34520),(5338,'trends_uint','itemid',34520),(5339,'events','itemid',34519),(5340,'history','itemid',34519),(5341,'history_log','itemid',34519),(5342,'history_str','itemid',34519),(5343,'history_text','itemid',34519),(5344,'history_uint','itemid',34519),(5345,'trends','itemid',34519),(5346,'trends_uint','itemid',34519),(5347,'events','itemid',34518),(5348,'history','itemid',34518),(5349,'history_log','itemid',34518),(5350,'history_str','itemid',34518),(5351,'history_text','itemid',34518),(5352,'history_uint','itemid',34518),(5353,'trends','itemid',34518),(5354,'trends_uint','itemid',34518),(5355,'events','itemid',34517),(5356,'history','itemid',34517),(5357,'history_log','itemid',34517),(5358,'history_str','itemid',34517),(5359,'history_text','itemid',34517),(5360,'history_uint','itemid',34517),(5361,'trends','itemid',34517),(5362,'trends_uint','itemid',34517),(5363,'events','itemid',34516),(5364,'history','itemid',34516),(5365,'history_log','itemid',34516),(5366,'history_str','itemid',34516),(5367,'history_text','itemid',34516),(5368,'history_uint','itemid',34516),(5369,'trends','itemid',34516),(5370,'trends_uint','itemid',34516),(5371,'events','itemid',34515),(5372,'history','itemid',34515),(5373,'history_log','itemid',34515),(5374,'history_str','itemid',34515),(5375,'history_text','itemid',34515),(5376,'history_uint','itemid',34515),(5377,'trends','itemid',34515),(5378,'trends_uint','itemid',34515),(5379,'events','itemid',34514),(5380,'history','itemid',34514),(5381,'history_log','itemid',34514),(5382,'history_str','itemid',34514),(5383,'history_text','itemid',34514),(5384,'history_uint','itemid',34514),(5385,'trends','itemid',34514),(5386,'trends_uint','itemid',34514),(5387,'events','itemid',34513),(5388,'history','itemid',34513),(5389,'history_log','itemid',34513),(5390,'history_str','itemid',34513),(5391,'history_text','itemid',34513),(5392,'history_uint','itemid',34513),(5393,'trends','itemid',34513),(5394,'trends_uint','itemid',34513),(5395,'events','itemid',34511),(5396,'history','itemid',34511),(5397,'history_log','itemid',34511),(5398,'history_str','itemid',34511),(5399,'history_text','itemid',34511),(5400,'history_uint','itemid',34511),(5401,'trends','itemid',34511),(5402,'trends_uint','itemid',34511),(5403,'events','itemid',34500),(5404,'history','itemid',34500),(5405,'history_log','itemid',34500),(5406,'history_str','itemid',34500),(5407,'history_text','itemid',34500),(5408,'history_uint','itemid',34500),(5409,'trends','itemid',34500),(5410,'trends_uint','itemid',34500),(5411,'events','itemid',34510),(5412,'history','itemid',34510),(5413,'history_log','itemid',34510),(5414,'history_str','itemid',34510),(5415,'history_text','itemid',34510),(5416,'history_uint','itemid',34510),(5417,'trends','itemid',34510),(5418,'trends_uint','itemid',34510),(5419,'events','itemid',34509),(5420,'history','itemid',34509),(5421,'history_log','itemid',34509),(5422,'history_str','itemid',34509),(5423,'history_text','itemid',34509),(5424,'history_uint','itemid',34509),(5425,'trends','itemid',34509),(5426,'trends_uint','itemid',34509),(5427,'events','itemid',34508),(5428,'history','itemid',34508),(5429,'history_log','itemid',34508),(5430,'history_str','itemid',34508),(5431,'history_text','itemid',34508),(5432,'history_uint','itemid',34508),(5433,'trends','itemid',34508),(5434,'trends_uint','itemid',34508),(5435,'events','itemid',34507),(5436,'history','itemid',34507),(5437,'history_log','itemid',34507),(5438,'history_str','itemid',34507),(5439,'history_text','itemid',34507),(5440,'history_uint','itemid',34507),(5441,'trends','itemid',34507),(5442,'trends_uint','itemid',34507),(5443,'events','itemid',43877),(5444,'history','itemid',43877),(5445,'history_log','itemid',43877),(5446,'history_str','itemid',43877),(5447,'history_text','itemid',43877),(5448,'history_uint','itemid',43877),(5449,'trends','itemid',43877),(5450,'trends_uint','itemid',43877),(5451,'events','itemid',34506),(5452,'history','itemid',34506),(5453,'history_log','itemid',34506),(5454,'history_str','itemid',34506),(5455,'history_text','itemid',34506),(5456,'history_uint','itemid',34506),(5457,'trends','itemid',34506),(5458,'trends_uint','itemid',34506),(5459,'events','itemid',34505),(5460,'history','itemid',34505),(5461,'history_log','itemid',34505),(5462,'history_str','itemid',34505),(5463,'history_text','itemid',34505),(5464,'history_uint','itemid',34505),(5465,'trends','itemid',34505),(5466,'trends_uint','itemid',34505),(5467,'events','itemid',34504),(5468,'history','itemid',34504),(5469,'history_log','itemid',34504),(5470,'history_str','itemid',34504),(5471,'history_text','itemid',34504),(5472,'history_uint','itemid',34504),(5473,'trends','itemid',34504),(5474,'trends_uint','itemid',34504),(5475,'events','itemid',34501),(5476,'history','itemid',34501),(5477,'history_log','itemid',34501),(5478,'history_str','itemid',34501),(5479,'history_text','itemid',34501),(5480,'history_uint','itemid',34501),(5481,'trends','itemid',34501),(5482,'trends_uint','itemid',34501),(5483,'events','itemid',34503),(5484,'history','itemid',34503),(5485,'history_log','itemid',34503),(5486,'history_str','itemid',34503),(5487,'history_text','itemid',34503),(5488,'history_uint','itemid',34503),(5489,'trends','itemid',34503),(5490,'trends_uint','itemid',34503),(5491,'events','itemid',34502),(5492,'history','itemid',34502),(5493,'history_log','itemid',34502),(5494,'history_str','itemid',34502),(5495,'history_text','itemid',34502),(5496,'history_uint','itemid',34502),(5497,'trends','itemid',34502),(5498,'trends_uint','itemid',34502),(5499,'events','itemid',34523),(5500,'history','itemid',34523),(5501,'history_log','itemid',34523),(5502,'history_str','itemid',34523),(5503,'history_text','itemid',34523),(5504,'history_uint','itemid',34523),(5505,'trends','itemid',34523),(5506,'trends_uint','itemid',34523),(5507,'events','itemid',34547),(5508,'history','itemid',34547),(5509,'history_log','itemid',34547),(5510,'history_str','itemid',34547),(5511,'history_text','itemid',34547),(5512,'history_uint','itemid',34547),(5513,'trends','itemid',34547),(5514,'trends_uint','itemid',34547),(5515,'events','itemid',34560),(5516,'history','itemid',34560),(5517,'history_log','itemid',34560),(5518,'history_str','itemid',34560),(5519,'history_text','itemid',34560),(5520,'history_uint','itemid',34560),(5521,'trends','itemid',34560),(5522,'trends_uint','itemid',34560),(5523,'events','itemid',34570),(5524,'history','itemid',34570),(5525,'history_log','itemid',34570),(5526,'history_str','itemid',34570),(5527,'history_text','itemid',34570),(5528,'history_uint','itemid',34570),(5529,'trends','itemid',34570),(5530,'trends_uint','itemid',34570),(5531,'events','itemid',34569),(5532,'history','itemid',34569),(5533,'history_log','itemid',34569),(5534,'history_str','itemid',34569),(5535,'history_text','itemid',34569),(5536,'history_uint','itemid',34569),(5537,'trends','itemid',34569),(5538,'trends_uint','itemid',34569),(5539,'events','itemid',34568),(5540,'history','itemid',34568),(5541,'history_log','itemid',34568),(5542,'history_str','itemid',34568),(5543,'history_text','itemid',34568),(5544,'history_uint','itemid',34568),(5545,'trends','itemid',34568),(5546,'trends_uint','itemid',34568),(5547,'events','itemid',34567),(5548,'history','itemid',34567),(5549,'history_log','itemid',34567),(5550,'history_str','itemid',34567),(5551,'history_text','itemid',34567),(5552,'history_uint','itemid',34567),(5553,'trends','itemid',34567),(5554,'trends_uint','itemid',34567),(5555,'events','itemid',34566),(5556,'history','itemid',34566),(5557,'history_log','itemid',34566),(5558,'history_str','itemid',34566),(5559,'history_text','itemid',34566),(5560,'history_uint','itemid',34566),(5561,'trends','itemid',34566),(5562,'trends_uint','itemid',34566),(5563,'events','itemid',34565),(5564,'history','itemid',34565),(5565,'history_log','itemid',34565),(5566,'history_str','itemid',34565),(5567,'history_text','itemid',34565),(5568,'history_uint','itemid',34565),(5569,'trends','itemid',34565),(5570,'trends_uint','itemid',34565),(5571,'events','itemid',34564),(5572,'history','itemid',34564),(5573,'history_log','itemid',34564),(5574,'history_str','itemid',34564),(5575,'history_text','itemid',34564),(5576,'history_uint','itemid',34564),(5577,'trends','itemid',34564),(5578,'trends_uint','itemid',34564),(5579,'events','itemid',34563),(5580,'history','itemid',34563),(5581,'history_log','itemid',34563),(5582,'history_str','itemid',34563),(5583,'history_text','itemid',34563),(5584,'history_uint','itemid',34563),(5585,'trends','itemid',34563),(5586,'trends_uint','itemid',34563),(5587,'events','itemid',34562),(5588,'history','itemid',34562),(5589,'history_log','itemid',34562),(5590,'history_str','itemid',34562),(5591,'history_text','itemid',34562),(5592,'history_uint','itemid',34562),(5593,'trends','itemid',34562),(5594,'trends_uint','itemid',34562),(5595,'events','itemid',34561),(5596,'history','itemid',34561),(5597,'history_log','itemid',34561),(5598,'history_str','itemid',34561),(5599,'history_text','itemid',34561),(5600,'history_uint','itemid',34561),(5601,'trends','itemid',34561),(5602,'trends_uint','itemid',34561),(5603,'events','itemid',34559),(5604,'history','itemid',34559),(5605,'history_log','itemid',34559),(5606,'history_str','itemid',34559),(5607,'history_text','itemid',34559),(5608,'history_uint','itemid',34559),(5609,'trends','itemid',34559),(5610,'trends_uint','itemid',34559),(5611,'events','itemid',34548),(5612,'history','itemid',34548),(5613,'history_log','itemid',34548),(5614,'history_str','itemid',34548),(5615,'history_text','itemid',34548),(5616,'history_uint','itemid',34548),(5617,'trends','itemid',34548),(5618,'trends_uint','itemid',34548),(5619,'events','itemid',34558),(5620,'history','itemid',34558),(5621,'history_log','itemid',34558),(5622,'history_str','itemid',34558),(5623,'history_text','itemid',34558),(5624,'history_uint','itemid',34558),(5625,'trends','itemid',34558),(5626,'trends_uint','itemid',34558),(5627,'events','itemid',34557),(5628,'history','itemid',34557),(5629,'history_log','itemid',34557),(5630,'history_str','itemid',34557),(5631,'history_text','itemid',34557),(5632,'history_uint','itemid',34557),(5633,'trends','itemid',34557),(5634,'trends_uint','itemid',34557),(5635,'events','itemid',34556),(5636,'history','itemid',34556),(5637,'history_log','itemid',34556),(5638,'history_str','itemid',34556),(5639,'history_text','itemid',34556),(5640,'history_uint','itemid',34556),(5641,'trends','itemid',34556),(5642,'trends_uint','itemid',34556),(5643,'events','itemid',34555),(5644,'history','itemid',34555),(5645,'history_log','itemid',34555),(5646,'history_str','itemid',34555),(5647,'history_text','itemid',34555),(5648,'history_uint','itemid',34555),(5649,'trends','itemid',34555),(5650,'trends_uint','itemid',34555),(5651,'events','itemid',43878),(5652,'history','itemid',43878),(5653,'history_log','itemid',43878),(5654,'history_str','itemid',43878),(5655,'history_text','itemid',43878),(5656,'history_uint','itemid',43878),(5657,'trends','itemid',43878),(5658,'trends_uint','itemid',43878),(5659,'events','itemid',34554),(5660,'history','itemid',34554),(5661,'history_log','itemid',34554),(5662,'history_str','itemid',34554),(5663,'history_text','itemid',34554),(5664,'history_uint','itemid',34554),(5665,'trends','itemid',34554),(5666,'trends_uint','itemid',34554),(5667,'events','itemid',34553),(5668,'history','itemid',34553),(5669,'history_log','itemid',34553),(5670,'history_str','itemid',34553),(5671,'history_text','itemid',34553),(5672,'history_uint','itemid',34553),(5673,'trends','itemid',34553),(5674,'trends_uint','itemid',34553),(5675,'events','itemid',34552),(5676,'history','itemid',34552),(5677,'history_log','itemid',34552),(5678,'history_str','itemid',34552),(5679,'history_text','itemid',34552),(5680,'history_uint','itemid',34552),(5681,'trends','itemid',34552),(5682,'trends_uint','itemid',34552),(5683,'events','itemid',34549),(5684,'history','itemid',34549),(5685,'history_log','itemid',34549),(5686,'history_str','itemid',34549),(5687,'history_text','itemid',34549),(5688,'history_uint','itemid',34549),(5689,'trends','itemid',34549),(5690,'trends_uint','itemid',34549),(5691,'events','itemid',34551),(5692,'history','itemid',34551),(5693,'history_log','itemid',34551),(5694,'history_str','itemid',34551),(5695,'history_text','itemid',34551),(5696,'history_uint','itemid',34551),(5697,'trends','itemid',34551),(5698,'trends_uint','itemid',34551),(5699,'events','itemid',34550),(5700,'history','itemid',34550),(5701,'history_log','itemid',34550),(5702,'history_str','itemid',34550),(5703,'history_text','itemid',34550),(5704,'history_uint','itemid',34550),(5705,'trends','itemid',34550),(5706,'trends_uint','itemid',34550),(5707,'events','itemid',34571),(5708,'history','itemid',34571),(5709,'history_log','itemid',34571),(5710,'history_str','itemid',34571),(5711,'history_text','itemid',34571),(5712,'history_uint','itemid',34571),(5713,'trends','itemid',34571),(5714,'trends_uint','itemid',34571),(5715,'events','itemid',34595),(5716,'history','itemid',34595),(5717,'history_log','itemid',34595),(5718,'history_str','itemid',34595),(5719,'history_text','itemid',34595),(5720,'history_uint','itemid',34595),(5721,'trends','itemid',34595),(5722,'trends_uint','itemid',34595),(5723,'events','itemid',34608),(5724,'history','itemid',34608),(5725,'history_log','itemid',34608),(5726,'history_str','itemid',34608),(5727,'history_text','itemid',34608),(5728,'history_uint','itemid',34608),(5729,'trends','itemid',34608),(5730,'trends_uint','itemid',34608),(5731,'events','itemid',34618),(5732,'history','itemid',34618),(5733,'history_log','itemid',34618),(5734,'history_str','itemid',34618),(5735,'history_text','itemid',34618),(5736,'history_uint','itemid',34618),(5737,'trends','itemid',34618),(5738,'trends_uint','itemid',34618),(5739,'events','itemid',34617),(5740,'history','itemid',34617),(5741,'history_log','itemid',34617),(5742,'history_str','itemid',34617),(5743,'history_text','itemid',34617),(5744,'history_uint','itemid',34617),(5745,'trends','itemid',34617),(5746,'trends_uint','itemid',34617),(5747,'events','itemid',34616),(5748,'history','itemid',34616),(5749,'history_log','itemid',34616),(5750,'history_str','itemid',34616),(5751,'history_text','itemid',34616),(5752,'history_uint','itemid',34616),(5753,'trends','itemid',34616),(5754,'trends_uint','itemid',34616),(5755,'events','itemid',34615),(5756,'history','itemid',34615),(5757,'history_log','itemid',34615),(5758,'history_str','itemid',34615),(5759,'history_text','itemid',34615),(5760,'history_uint','itemid',34615),(5761,'trends','itemid',34615),(5762,'trends_uint','itemid',34615),(5763,'events','itemid',34614),(5764,'history','itemid',34614),(5765,'history_log','itemid',34614),(5766,'history_str','itemid',34614),(5767,'history_text','itemid',34614),(5768,'history_uint','itemid',34614),(5769,'trends','itemid',34614),(5770,'trends_uint','itemid',34614),(5771,'events','itemid',34613),(5772,'history','itemid',34613),(5773,'history_log','itemid',34613),(5774,'history_str','itemid',34613),(5775,'history_text','itemid',34613),(5776,'history_uint','itemid',34613),(5777,'trends','itemid',34613),(5778,'trends_uint','itemid',34613),(5779,'events','itemid',34612),(5780,'history','itemid',34612),(5781,'history_log','itemid',34612),(5782,'history_str','itemid',34612),(5783,'history_text','itemid',34612),(5784,'history_uint','itemid',34612),(5785,'trends','itemid',34612),(5786,'trends_uint','itemid',34612),(5787,'events','itemid',34611),(5788,'history','itemid',34611),(5789,'history_log','itemid',34611),(5790,'history_str','itemid',34611),(5791,'history_text','itemid',34611),(5792,'history_uint','itemid',34611),(5793,'trends','itemid',34611),(5794,'trends_uint','itemid',34611),(5795,'events','itemid',34610),(5796,'history','itemid',34610),(5797,'history_log','itemid',34610),(5798,'history_str','itemid',34610),(5799,'history_text','itemid',34610),(5800,'history_uint','itemid',34610),(5801,'trends','itemid',34610),(5802,'trends_uint','itemid',34610),(5803,'events','itemid',34609),(5804,'history','itemid',34609),(5805,'history_log','itemid',34609),(5806,'history_str','itemid',34609),(5807,'history_text','itemid',34609),(5808,'history_uint','itemid',34609),(5809,'trends','itemid',34609),(5810,'trends_uint','itemid',34609),(5811,'events','itemid',34607),(5812,'history','itemid',34607),(5813,'history_log','itemid',34607),(5814,'history_str','itemid',34607),(5815,'history_text','itemid',34607),(5816,'history_uint','itemid',34607),(5817,'trends','itemid',34607),(5818,'trends_uint','itemid',34607),(5819,'events','itemid',34596),(5820,'history','itemid',34596),(5821,'history_log','itemid',34596),(5822,'history_str','itemid',34596),(5823,'history_text','itemid',34596),(5824,'history_uint','itemid',34596),(5825,'trends','itemid',34596),(5826,'trends_uint','itemid',34596),(5827,'events','itemid',34606),(5828,'history','itemid',34606),(5829,'history_log','itemid',34606),(5830,'history_str','itemid',34606),(5831,'history_text','itemid',34606),(5832,'history_uint','itemid',34606),(5833,'trends','itemid',34606),(5834,'trends_uint','itemid',34606),(5835,'events','itemid',34605),(5836,'history','itemid',34605),(5837,'history_log','itemid',34605),(5838,'history_str','itemid',34605),(5839,'history_text','itemid',34605),(5840,'history_uint','itemid',34605),(5841,'trends','itemid',34605),(5842,'trends_uint','itemid',34605),(5843,'events','itemid',34604),(5844,'history','itemid',34604),(5845,'history_log','itemid',34604),(5846,'history_str','itemid',34604),(5847,'history_text','itemid',34604),(5848,'history_uint','itemid',34604),(5849,'trends','itemid',34604),(5850,'trends_uint','itemid',34604),(5851,'events','itemid',34603),(5852,'history','itemid',34603),(5853,'history_log','itemid',34603),(5854,'history_str','itemid',34603),(5855,'history_text','itemid',34603),(5856,'history_uint','itemid',34603),(5857,'trends','itemid',34603),(5858,'trends_uint','itemid',34603),(5859,'events','itemid',43879),(5860,'history','itemid',43879),(5861,'history_log','itemid',43879),(5862,'history_str','itemid',43879),(5863,'history_text','itemid',43879),(5864,'history_uint','itemid',43879),(5865,'trends','itemid',43879),(5866,'trends_uint','itemid',43879),(5867,'events','itemid',34602),(5868,'history','itemid',34602),(5869,'history_log','itemid',34602),(5870,'history_str','itemid',34602),(5871,'history_text','itemid',34602),(5872,'history_uint','itemid',34602),(5873,'trends','itemid',34602),(5874,'trends_uint','itemid',34602),(5875,'events','itemid',34601),(5876,'history','itemid',34601),(5877,'history_log','itemid',34601),(5878,'history_str','itemid',34601),(5879,'history_text','itemid',34601),(5880,'history_uint','itemid',34601),(5881,'trends','itemid',34601),(5882,'trends_uint','itemid',34601),(5883,'events','itemid',34600),(5884,'history','itemid',34600),(5885,'history_log','itemid',34600),(5886,'history_str','itemid',34600),(5887,'history_text','itemid',34600),(5888,'history_uint','itemid',34600),(5889,'trends','itemid',34600),(5890,'trends_uint','itemid',34600),(5891,'events','itemid',34597),(5892,'history','itemid',34597),(5893,'history_log','itemid',34597),(5894,'history_str','itemid',34597),(5895,'history_text','itemid',34597),(5896,'history_uint','itemid',34597),(5897,'trends','itemid',34597),(5898,'trends_uint','itemid',34597),(5899,'events','itemid',34599),(5900,'history','itemid',34599),(5901,'history_log','itemid',34599),(5902,'history_str','itemid',34599),(5903,'history_text','itemid',34599),(5904,'history_uint','itemid',34599),(5905,'trends','itemid',34599),(5906,'trends_uint','itemid',34599),(5907,'events','itemid',34598),(5908,'history','itemid',34598),(5909,'history_log','itemid',34598),(5910,'history_str','itemid',34598),(5911,'history_text','itemid',34598),(5912,'history_uint','itemid',34598),(5913,'trends','itemid',34598),(5914,'trends_uint','itemid',34598),(5915,'events','itemid',34619),(5916,'history','itemid',34619),(5917,'history_log','itemid',34619),(5918,'history_str','itemid',34619),(5919,'history_text','itemid',34619),(5920,'history_uint','itemid',34619),(5921,'trends','itemid',34619),(5922,'trends_uint','itemid',34619),(5923,'events','itemid',34643),(5924,'history','itemid',34643),(5925,'history_log','itemid',34643),(5926,'history_str','itemid',34643),(5927,'history_text','itemid',34643),(5928,'history_uint','itemid',34643),(5929,'trends','itemid',34643),(5930,'trends_uint','itemid',34643),(5931,'events','itemid',34656),(5932,'history','itemid',34656),(5933,'history_log','itemid',34656),(5934,'history_str','itemid',34656),(5935,'history_text','itemid',34656),(5936,'history_uint','itemid',34656),(5937,'trends','itemid',34656),(5938,'trends_uint','itemid',34656),(5939,'events','itemid',34666),(5940,'history','itemid',34666),(5941,'history_log','itemid',34666),(5942,'history_str','itemid',34666),(5943,'history_text','itemid',34666),(5944,'history_uint','itemid',34666),(5945,'trends','itemid',34666),(5946,'trends_uint','itemid',34666),(5947,'events','itemid',34665),(5948,'history','itemid',34665),(5949,'history_log','itemid',34665),(5950,'history_str','itemid',34665),(5951,'history_text','itemid',34665),(5952,'history_uint','itemid',34665),(5953,'trends','itemid',34665),(5954,'trends_uint','itemid',34665),(5955,'events','itemid',34664),(5956,'history','itemid',34664),(5957,'history_log','itemid',34664),(5958,'history_str','itemid',34664),(5959,'history_text','itemid',34664),(5960,'history_uint','itemid',34664),(5961,'trends','itemid',34664),(5962,'trends_uint','itemid',34664),(5963,'events','itemid',34663),(5964,'history','itemid',34663),(5965,'history_log','itemid',34663),(5966,'history_str','itemid',34663),(5967,'history_text','itemid',34663),(5968,'history_uint','itemid',34663),(5969,'trends','itemid',34663),(5970,'trends_uint','itemid',34663),(5971,'events','itemid',34662),(5972,'history','itemid',34662),(5973,'history_log','itemid',34662),(5974,'history_str','itemid',34662),(5975,'history_text','itemid',34662),(5976,'history_uint','itemid',34662),(5977,'trends','itemid',34662),(5978,'trends_uint','itemid',34662),(5979,'events','itemid',34661),(5980,'history','itemid',34661),(5981,'history_log','itemid',34661),(5982,'history_str','itemid',34661),(5983,'history_text','itemid',34661),(5984,'history_uint','itemid',34661),(5985,'trends','itemid',34661),(5986,'trends_uint','itemid',34661),(5987,'events','itemid',34660),(5988,'history','itemid',34660),(5989,'history_log','itemid',34660),(5990,'history_str','itemid',34660),(5991,'history_text','itemid',34660),(5992,'history_uint','itemid',34660),(5993,'trends','itemid',34660),(5994,'trends_uint','itemid',34660),(5995,'events','itemid',34659),(5996,'history','itemid',34659),(5997,'history_log','itemid',34659),(5998,'history_str','itemid',34659),(5999,'history_text','itemid',34659),(6000,'history_uint','itemid',34659),(6001,'trends','itemid',34659),(6002,'trends_uint','itemid',34659),(6003,'events','itemid',34658),(6004,'history','itemid',34658),(6005,'history_log','itemid',34658),(6006,'history_str','itemid',34658),(6007,'history_text','itemid',34658),(6008,'history_uint','itemid',34658),(6009,'trends','itemid',34658),(6010,'trends_uint','itemid',34658),(6011,'events','itemid',34657),(6012,'history','itemid',34657),(6013,'history_log','itemid',34657),(6014,'history_str','itemid',34657),(6015,'history_text','itemid',34657),(6016,'history_uint','itemid',34657),(6017,'trends','itemid',34657),(6018,'trends_uint','itemid',34657),(6019,'events','itemid',34655),(6020,'history','itemid',34655),(6021,'history_log','itemid',34655),(6022,'history_str','itemid',34655),(6023,'history_text','itemid',34655),(6024,'history_uint','itemid',34655),(6025,'trends','itemid',34655),(6026,'trends_uint','itemid',34655),(6027,'events','itemid',34644),(6028,'history','itemid',34644),(6029,'history_log','itemid',34644),(6030,'history_str','itemid',34644),(6031,'history_text','itemid',34644),(6032,'history_uint','itemid',34644),(6033,'trends','itemid',34644),(6034,'trends_uint','itemid',34644),(6035,'events','itemid',34654),(6036,'history','itemid',34654),(6037,'history_log','itemid',34654),(6038,'history_str','itemid',34654),(6039,'history_text','itemid',34654),(6040,'history_uint','itemid',34654),(6041,'trends','itemid',34654),(6042,'trends_uint','itemid',34654),(6043,'events','itemid',34653),(6044,'history','itemid',34653),(6045,'history_log','itemid',34653),(6046,'history_str','itemid',34653),(6047,'history_text','itemid',34653),(6048,'history_uint','itemid',34653),(6049,'trends','itemid',34653),(6050,'trends_uint','itemid',34653),(6051,'events','itemid',34652),(6052,'history','itemid',34652),(6053,'history_log','itemid',34652),(6054,'history_str','itemid',34652),(6055,'history_text','itemid',34652),(6056,'history_uint','itemid',34652),(6057,'trends','itemid',34652),(6058,'trends_uint','itemid',34652),(6059,'events','itemid',34651),(6060,'history','itemid',34651),(6061,'history_log','itemid',34651),(6062,'history_str','itemid',34651),(6063,'history_text','itemid',34651),(6064,'history_uint','itemid',34651),(6065,'trends','itemid',34651),(6066,'trends_uint','itemid',34651),(6067,'events','itemid',43880),(6068,'history','itemid',43880),(6069,'history_log','itemid',43880),(6070,'history_str','itemid',43880),(6071,'history_text','itemid',43880),(6072,'history_uint','itemid',43880),(6073,'trends','itemid',43880),(6074,'trends_uint','itemid',43880),(6075,'events','itemid',34650),(6076,'history','itemid',34650),(6077,'history_log','itemid',34650),(6078,'history_str','itemid',34650),(6079,'history_text','itemid',34650),(6080,'history_uint','itemid',34650),(6081,'trends','itemid',34650),(6082,'trends_uint','itemid',34650),(6083,'events','itemid',34649),(6084,'history','itemid',34649),(6085,'history_log','itemid',34649),(6086,'history_str','itemid',34649),(6087,'history_text','itemid',34649),(6088,'history_uint','itemid',34649),(6089,'trends','itemid',34649),(6090,'trends_uint','itemid',34649),(6091,'events','itemid',34648),(6092,'history','itemid',34648),(6093,'history_log','itemid',34648),(6094,'history_str','itemid',34648),(6095,'history_text','itemid',34648),(6096,'history_uint','itemid',34648),(6097,'trends','itemid',34648),(6098,'trends_uint','itemid',34648),(6099,'events','itemid',34645),(6100,'history','itemid',34645),(6101,'history_log','itemid',34645),(6102,'history_str','itemid',34645),(6103,'history_text','itemid',34645),(6104,'history_uint','itemid',34645),(6105,'trends','itemid',34645),(6106,'trends_uint','itemid',34645),(6107,'events','itemid',34647),(6108,'history','itemid',34647),(6109,'history_log','itemid',34647),(6110,'history_str','itemid',34647),(6111,'history_text','itemid',34647),(6112,'history_uint','itemid',34647),(6113,'trends','itemid',34647),(6114,'trends_uint','itemid',34647),(6115,'events','itemid',34646),(6116,'history','itemid',34646),(6117,'history_log','itemid',34646),(6118,'history_str','itemid',34646),(6119,'history_text','itemid',34646),(6120,'history_uint','itemid',34646),(6121,'trends','itemid',34646),(6122,'trends_uint','itemid',34646),(6123,'events','itemid',34667),(6124,'history','itemid',34667),(6125,'history_log','itemid',34667),(6126,'history_str','itemid',34667),(6127,'history_text','itemid',34667),(6128,'history_uint','itemid',34667),(6129,'trends','itemid',34667),(6130,'trends_uint','itemid',34667),(6131,'events','itemid',34739),(6132,'history','itemid',34739),(6133,'history_log','itemid',34739),(6134,'history_str','itemid',34739),(6135,'history_text','itemid',34739),(6136,'history_uint','itemid',34739),(6137,'trends','itemid',34739),(6138,'trends_uint','itemid',34739),(6139,'events','itemid',34752),(6140,'history','itemid',34752),(6141,'history_log','itemid',34752),(6142,'history_str','itemid',34752),(6143,'history_text','itemid',34752),(6144,'history_uint','itemid',34752),(6145,'trends','itemid',34752),(6146,'trends_uint','itemid',34752),(6147,'events','itemid',34762),(6148,'history','itemid',34762),(6149,'history_log','itemid',34762),(6150,'history_str','itemid',34762),(6151,'history_text','itemid',34762),(6152,'history_uint','itemid',34762),(6153,'trends','itemid',34762),(6154,'trends_uint','itemid',34762),(6155,'events','itemid',34761),(6156,'history','itemid',34761),(6157,'history_log','itemid',34761),(6158,'history_str','itemid',34761),(6159,'history_text','itemid',34761),(6160,'history_uint','itemid',34761),(6161,'trends','itemid',34761),(6162,'trends_uint','itemid',34761),(6163,'events','itemid',34760),(6164,'history','itemid',34760),(6165,'history_log','itemid',34760),(6166,'history_str','itemid',34760),(6167,'history_text','itemid',34760),(6168,'history_uint','itemid',34760),(6169,'trends','itemid',34760),(6170,'trends_uint','itemid',34760),(6171,'events','itemid',34759),(6172,'history','itemid',34759),(6173,'history_log','itemid',34759),(6174,'history_str','itemid',34759),(6175,'history_text','itemid',34759),(6176,'history_uint','itemid',34759),(6177,'trends','itemid',34759),(6178,'trends_uint','itemid',34759),(6179,'events','itemid',34758),(6180,'history','itemid',34758),(6181,'history_log','itemid',34758),(6182,'history_str','itemid',34758),(6183,'history_text','itemid',34758),(6184,'history_uint','itemid',34758),(6185,'trends','itemid',34758),(6186,'trends_uint','itemid',34758),(6187,'events','itemid',34757),(6188,'history','itemid',34757),(6189,'history_log','itemid',34757),(6190,'history_str','itemid',34757),(6191,'history_text','itemid',34757),(6192,'history_uint','itemid',34757),(6193,'trends','itemid',34757),(6194,'trends_uint','itemid',34757),(6195,'events','itemid',34756),(6196,'history','itemid',34756),(6197,'history_log','itemid',34756),(6198,'history_str','itemid',34756),(6199,'history_text','itemid',34756),(6200,'history_uint','itemid',34756),(6201,'trends','itemid',34756),(6202,'trends_uint','itemid',34756),(6203,'events','itemid',34755),(6204,'history','itemid',34755),(6205,'history_log','itemid',34755),(6206,'history_str','itemid',34755),(6207,'history_text','itemid',34755),(6208,'history_uint','itemid',34755),(6209,'trends','itemid',34755),(6210,'trends_uint','itemid',34755),(6211,'events','itemid',34754),(6212,'history','itemid',34754),(6213,'history_log','itemid',34754),(6214,'history_str','itemid',34754),(6215,'history_text','itemid',34754),(6216,'history_uint','itemid',34754),(6217,'trends','itemid',34754),(6218,'trends_uint','itemid',34754),(6219,'events','itemid',34753),(6220,'history','itemid',34753),(6221,'history_log','itemid',34753),(6222,'history_str','itemid',34753),(6223,'history_text','itemid',34753),(6224,'history_uint','itemid',34753),(6225,'trends','itemid',34753),(6226,'trends_uint','itemid',34753),(6227,'events','itemid',34751),(6228,'history','itemid',34751),(6229,'history_log','itemid',34751),(6230,'history_str','itemid',34751),(6231,'history_text','itemid',34751),(6232,'history_uint','itemid',34751),(6233,'trends','itemid',34751),(6234,'trends_uint','itemid',34751),(6235,'events','itemid',34740),(6236,'history','itemid',34740),(6237,'history_log','itemid',34740),(6238,'history_str','itemid',34740),(6239,'history_text','itemid',34740),(6240,'history_uint','itemid',34740),(6241,'trends','itemid',34740),(6242,'trends_uint','itemid',34740),(6243,'events','itemid',34750),(6244,'history','itemid',34750),(6245,'history_log','itemid',34750),(6246,'history_str','itemid',34750),(6247,'history_text','itemid',34750),(6248,'history_uint','itemid',34750),(6249,'trends','itemid',34750),(6250,'trends_uint','itemid',34750),(6251,'events','itemid',34749),(6252,'history','itemid',34749),(6253,'history_log','itemid',34749),(6254,'history_str','itemid',34749),(6255,'history_text','itemid',34749),(6256,'history_uint','itemid',34749),(6257,'trends','itemid',34749),(6258,'trends_uint','itemid',34749),(6259,'events','itemid',34748),(6260,'history','itemid',34748),(6261,'history_log','itemid',34748),(6262,'history_str','itemid',34748),(6263,'history_text','itemid',34748),(6264,'history_uint','itemid',34748),(6265,'trends','itemid',34748),(6266,'trends_uint','itemid',34748),(6267,'events','itemid',34747),(6268,'history','itemid',34747),(6269,'history_log','itemid',34747),(6270,'history_str','itemid',34747),(6271,'history_text','itemid',34747),(6272,'history_uint','itemid',34747),(6273,'trends','itemid',34747),(6274,'trends_uint','itemid',34747),(6275,'events','itemid',43882),(6276,'history','itemid',43882),(6277,'history_log','itemid',43882),(6278,'history_str','itemid',43882),(6279,'history_text','itemid',43882),(6280,'history_uint','itemid',43882),(6281,'trends','itemid',43882),(6282,'trends_uint','itemid',43882),(6283,'events','itemid',34746),(6284,'history','itemid',34746),(6285,'history_log','itemid',34746),(6286,'history_str','itemid',34746),(6287,'history_text','itemid',34746),(6288,'history_uint','itemid',34746),(6289,'trends','itemid',34746),(6290,'trends_uint','itemid',34746),(6291,'events','itemid',34745),(6292,'history','itemid',34745),(6293,'history_log','itemid',34745),(6294,'history_str','itemid',34745),(6295,'history_text','itemid',34745),(6296,'history_uint','itemid',34745),(6297,'trends','itemid',34745),(6298,'trends_uint','itemid',34745),(6299,'events','itemid',34744),(6300,'history','itemid',34744),(6301,'history_log','itemid',34744),(6302,'history_str','itemid',34744),(6303,'history_text','itemid',34744),(6304,'history_uint','itemid',34744),(6305,'trends','itemid',34744),(6306,'trends_uint','itemid',34744),(6307,'events','itemid',34741),(6308,'history','itemid',34741),(6309,'history_log','itemid',34741),(6310,'history_str','itemid',34741),(6311,'history_text','itemid',34741),(6312,'history_uint','itemid',34741),(6313,'trends','itemid',34741),(6314,'trends_uint','itemid',34741),(6315,'events','itemid',34743),(6316,'history','itemid',34743),(6317,'history_log','itemid',34743),(6318,'history_str','itemid',34743),(6319,'history_text','itemid',34743),(6320,'history_uint','itemid',34743),(6321,'trends','itemid',34743),(6322,'trends_uint','itemid',34743),(6323,'events','itemid',34742),(6324,'history','itemid',34742),(6325,'history_log','itemid',34742),(6326,'history_str','itemid',34742),(6327,'history_text','itemid',34742),(6328,'history_uint','itemid',34742),(6329,'trends','itemid',34742),(6330,'trends_uint','itemid',34742),(6331,'events','itemid',34763),(6332,'history','itemid',34763),(6333,'history_log','itemid',34763),(6334,'history_str','itemid',34763),(6335,'history_text','itemid',34763),(6336,'history_uint','itemid',34763),(6337,'trends','itemid',34763),(6338,'trends_uint','itemid',34763),(6339,'events','itemid',34793),(6340,'history','itemid',34793),(6341,'history_log','itemid',34793),(6342,'history_str','itemid',34793),(6343,'history_text','itemid',34793),(6344,'history_uint','itemid',34793),(6345,'trends','itemid',34793),(6346,'trends_uint','itemid',34793),(6347,'events','itemid',34806),(6348,'history','itemid',34806),(6349,'history_log','itemid',34806),(6350,'history_str','itemid',34806),(6351,'history_text','itemid',34806),(6352,'history_uint','itemid',34806),(6353,'trends','itemid',34806),(6354,'trends_uint','itemid',34806),(6355,'events','itemid',34816),(6356,'history','itemid',34816),(6357,'history_log','itemid',34816),(6358,'history_str','itemid',34816),(6359,'history_text','itemid',34816),(6360,'history_uint','itemid',34816),(6361,'trends','itemid',34816),(6362,'trends_uint','itemid',34816),(6363,'events','itemid',34815),(6364,'history','itemid',34815),(6365,'history_log','itemid',34815),(6366,'history_str','itemid',34815),(6367,'history_text','itemid',34815),(6368,'history_uint','itemid',34815),(6369,'trends','itemid',34815),(6370,'trends_uint','itemid',34815),(6371,'events','itemid',34814),(6372,'history','itemid',34814),(6373,'history_log','itemid',34814),(6374,'history_str','itemid',34814),(6375,'history_text','itemid',34814),(6376,'history_uint','itemid',34814),(6377,'trends','itemid',34814),(6378,'trends_uint','itemid',34814),(6379,'events','itemid',34813),(6380,'history','itemid',34813),(6381,'history_log','itemid',34813),(6382,'history_str','itemid',34813),(6383,'history_text','itemid',34813),(6384,'history_uint','itemid',34813),(6385,'trends','itemid',34813),(6386,'trends_uint','itemid',34813),(6387,'events','itemid',34812),(6388,'history','itemid',34812),(6389,'history_log','itemid',34812),(6390,'history_str','itemid',34812),(6391,'history_text','itemid',34812),(6392,'history_uint','itemid',34812),(6393,'trends','itemid',34812),(6394,'trends_uint','itemid',34812),(6395,'events','itemid',34811),(6396,'history','itemid',34811),(6397,'history_log','itemid',34811),(6398,'history_str','itemid',34811),(6399,'history_text','itemid',34811),(6400,'history_uint','itemid',34811),(6401,'trends','itemid',34811),(6402,'trends_uint','itemid',34811),(6403,'events','itemid',34810),(6404,'history','itemid',34810),(6405,'history_log','itemid',34810),(6406,'history_str','itemid',34810),(6407,'history_text','itemid',34810),(6408,'history_uint','itemid',34810),(6409,'trends','itemid',34810),(6410,'trends_uint','itemid',34810),(6411,'events','itemid',34809),(6412,'history','itemid',34809),(6413,'history_log','itemid',34809),(6414,'history_str','itemid',34809),(6415,'history_text','itemid',34809),(6416,'history_uint','itemid',34809),(6417,'trends','itemid',34809),(6418,'trends_uint','itemid',34809),(6419,'events','itemid',34808),(6420,'history','itemid',34808),(6421,'history_log','itemid',34808),(6422,'history_str','itemid',34808),(6423,'history_text','itemid',34808),(6424,'history_uint','itemid',34808),(6425,'trends','itemid',34808),(6426,'trends_uint','itemid',34808),(6427,'events','itemid',34807),(6428,'history','itemid',34807),(6429,'history_log','itemid',34807),(6430,'history_str','itemid',34807),(6431,'history_text','itemid',34807),(6432,'history_uint','itemid',34807),(6433,'trends','itemid',34807),(6434,'trends_uint','itemid',34807),(6435,'events','itemid',34805),(6436,'history','itemid',34805),(6437,'history_log','itemid',34805),(6438,'history_str','itemid',34805),(6439,'history_text','itemid',34805),(6440,'history_uint','itemid',34805),(6441,'trends','itemid',34805),(6442,'trends_uint','itemid',34805),(6443,'events','itemid',34794),(6444,'history','itemid',34794),(6445,'history_log','itemid',34794),(6446,'history_str','itemid',34794),(6447,'history_text','itemid',34794),(6448,'history_uint','itemid',34794),(6449,'trends','itemid',34794),(6450,'trends_uint','itemid',34794),(6451,'events','itemid',34804),(6452,'history','itemid',34804),(6453,'history_log','itemid',34804),(6454,'history_str','itemid',34804),(6455,'history_text','itemid',34804),(6456,'history_uint','itemid',34804),(6457,'trends','itemid',34804),(6458,'trends_uint','itemid',34804),(6459,'events','itemid',34803),(6460,'history','itemid',34803),(6461,'history_log','itemid',34803),(6462,'history_str','itemid',34803),(6463,'history_text','itemid',34803),(6464,'history_uint','itemid',34803),(6465,'trends','itemid',34803),(6466,'trends_uint','itemid',34803),(6467,'events','itemid',34802),(6468,'history','itemid',34802),(6469,'history_log','itemid',34802),(6470,'history_str','itemid',34802),(6471,'history_text','itemid',34802),(6472,'history_uint','itemid',34802),(6473,'trends','itemid',34802),(6474,'trends_uint','itemid',34802),(6475,'events','itemid',34801),(6476,'history','itemid',34801),(6477,'history_log','itemid',34801),(6478,'history_str','itemid',34801),(6479,'history_text','itemid',34801),(6480,'history_uint','itemid',34801),(6481,'trends','itemid',34801),(6482,'trends_uint','itemid',34801),(6483,'events','itemid',43884),(6484,'history','itemid',43884),(6485,'history_log','itemid',43884),(6486,'history_str','itemid',43884),(6487,'history_text','itemid',43884),(6488,'history_uint','itemid',43884),(6489,'trends','itemid',43884),(6490,'trends_uint','itemid',43884),(6491,'events','itemid',34800),(6492,'history','itemid',34800),(6493,'history_log','itemid',34800),(6494,'history_str','itemid',34800),(6495,'history_text','itemid',34800),(6496,'history_uint','itemid',34800),(6497,'trends','itemid',34800),(6498,'trends_uint','itemid',34800),(6499,'events','itemid',34799),(6500,'history','itemid',34799),(6501,'history_log','itemid',34799),(6502,'history_str','itemid',34799),(6503,'history_text','itemid',34799),(6504,'history_uint','itemid',34799),(6505,'trends','itemid',34799),(6506,'trends_uint','itemid',34799),(6507,'events','itemid',34798),(6508,'history','itemid',34798),(6509,'history_log','itemid',34798),(6510,'history_str','itemid',34798),(6511,'history_text','itemid',34798),(6512,'history_uint','itemid',34798),(6513,'trends','itemid',34798),(6514,'trends_uint','itemid',34798),(6515,'events','itemid',34795),(6516,'history','itemid',34795),(6517,'history_log','itemid',34795),(6518,'history_str','itemid',34795),(6519,'history_text','itemid',34795),(6520,'history_uint','itemid',34795),(6521,'trends','itemid',34795),(6522,'trends_uint','itemid',34795),(6523,'events','itemid',34797),(6524,'history','itemid',34797),(6525,'history_log','itemid',34797),(6526,'history_str','itemid',34797),(6527,'history_text','itemid',34797),(6528,'history_uint','itemid',34797),(6529,'trends','itemid',34797),(6530,'trends_uint','itemid',34797),(6531,'events','itemid',34796),(6532,'history','itemid',34796),(6533,'history_log','itemid',34796),(6534,'history_str','itemid',34796),(6535,'history_text','itemid',34796),(6536,'history_uint','itemid',34796),(6537,'trends','itemid',34796),(6538,'trends_uint','itemid',34796),(6539,'events','itemid',34817),(6540,'history','itemid',34817),(6541,'history_log','itemid',34817),(6542,'history_str','itemid',34817),(6543,'history_text','itemid',34817),(6544,'history_uint','itemid',34817),(6545,'trends','itemid',34817),(6546,'trends_uint','itemid',34817),(6547,'events','itemid',34841),(6548,'history','itemid',34841),(6549,'history_log','itemid',34841),(6550,'history_str','itemid',34841),(6551,'history_text','itemid',34841),(6552,'history_uint','itemid',34841),(6553,'trends','itemid',34841),(6554,'trends_uint','itemid',34841),(6555,'events','itemid',34854),(6556,'history','itemid',34854),(6557,'history_log','itemid',34854),(6558,'history_str','itemid',34854),(6559,'history_text','itemid',34854),(6560,'history_uint','itemid',34854),(6561,'trends','itemid',34854),(6562,'trends_uint','itemid',34854),(6563,'events','itemid',34864),(6564,'history','itemid',34864),(6565,'history_log','itemid',34864),(6566,'history_str','itemid',34864),(6567,'history_text','itemid',34864),(6568,'history_uint','itemid',34864),(6569,'trends','itemid',34864),(6570,'trends_uint','itemid',34864),(6571,'events','itemid',34863),(6572,'history','itemid',34863),(6573,'history_log','itemid',34863),(6574,'history_str','itemid',34863),(6575,'history_text','itemid',34863),(6576,'history_uint','itemid',34863),(6577,'trends','itemid',34863),(6578,'trends_uint','itemid',34863),(6579,'events','itemid',34862),(6580,'history','itemid',34862),(6581,'history_log','itemid',34862),(6582,'history_str','itemid',34862),(6583,'history_text','itemid',34862),(6584,'history_uint','itemid',34862),(6585,'trends','itemid',34862),(6586,'trends_uint','itemid',34862),(6587,'events','itemid',34861),(6588,'history','itemid',34861),(6589,'history_log','itemid',34861),(6590,'history_str','itemid',34861),(6591,'history_text','itemid',34861),(6592,'history_uint','itemid',34861),(6593,'trends','itemid',34861),(6594,'trends_uint','itemid',34861),(6595,'events','itemid',34860),(6596,'history','itemid',34860),(6597,'history_log','itemid',34860),(6598,'history_str','itemid',34860),(6599,'history_text','itemid',34860),(6600,'history_uint','itemid',34860),(6601,'trends','itemid',34860),(6602,'trends_uint','itemid',34860),(6603,'events','itemid',34859),(6604,'history','itemid',34859),(6605,'history_log','itemid',34859),(6606,'history_str','itemid',34859),(6607,'history_text','itemid',34859),(6608,'history_uint','itemid',34859),(6609,'trends','itemid',34859),(6610,'trends_uint','itemid',34859),(6611,'events','itemid',34858),(6612,'history','itemid',34858),(6613,'history_log','itemid',34858),(6614,'history_str','itemid',34858),(6615,'history_text','itemid',34858),(6616,'history_uint','itemid',34858),(6617,'trends','itemid',34858),(6618,'trends_uint','itemid',34858),(6619,'events','itemid',34857),(6620,'history','itemid',34857),(6621,'history_log','itemid',34857),(6622,'history_str','itemid',34857),(6623,'history_text','itemid',34857),(6624,'history_uint','itemid',34857),(6625,'trends','itemid',34857),(6626,'trends_uint','itemid',34857),(6627,'events','itemid',34856),(6628,'history','itemid',34856),(6629,'history_log','itemid',34856),(6630,'history_str','itemid',34856),(6631,'history_text','itemid',34856),(6632,'history_uint','itemid',34856),(6633,'trends','itemid',34856),(6634,'trends_uint','itemid',34856),(6635,'events','itemid',34855),(6636,'history','itemid',34855),(6637,'history_log','itemid',34855),(6638,'history_str','itemid',34855),(6639,'history_text','itemid',34855),(6640,'history_uint','itemid',34855),(6641,'trends','itemid',34855),(6642,'trends_uint','itemid',34855),(6643,'events','itemid',34853),(6644,'history','itemid',34853),(6645,'history_log','itemid',34853),(6646,'history_str','itemid',34853),(6647,'history_text','itemid',34853),(6648,'history_uint','itemid',34853),(6649,'trends','itemid',34853),(6650,'trends_uint','itemid',34853),(6651,'events','itemid',34842),(6652,'history','itemid',34842),(6653,'history_log','itemid',34842),(6654,'history_str','itemid',34842),(6655,'history_text','itemid',34842),(6656,'history_uint','itemid',34842),(6657,'trends','itemid',34842),(6658,'trends_uint','itemid',34842),(6659,'events','itemid',34852),(6660,'history','itemid',34852),(6661,'history_log','itemid',34852),(6662,'history_str','itemid',34852),(6663,'history_text','itemid',34852),(6664,'history_uint','itemid',34852),(6665,'trends','itemid',34852),(6666,'trends_uint','itemid',34852),(6667,'events','itemid',34851),(6668,'history','itemid',34851),(6669,'history_log','itemid',34851),(6670,'history_str','itemid',34851),(6671,'history_text','itemid',34851),(6672,'history_uint','itemid',34851),(6673,'trends','itemid',34851),(6674,'trends_uint','itemid',34851),(6675,'events','itemid',34850),(6676,'history','itemid',34850),(6677,'history_log','itemid',34850),(6678,'history_str','itemid',34850),(6679,'history_text','itemid',34850),(6680,'history_uint','itemid',34850),(6681,'trends','itemid',34850),(6682,'trends_uint','itemid',34850),(6683,'events','itemid',34849),(6684,'history','itemid',34849),(6685,'history_log','itemid',34849),(6686,'history_str','itemid',34849),(6687,'history_text','itemid',34849),(6688,'history_uint','itemid',34849),(6689,'trends','itemid',34849),(6690,'trends_uint','itemid',34849),(6691,'events','itemid',43885),(6692,'history','itemid',43885),(6693,'history_log','itemid',43885),(6694,'history_str','itemid',43885),(6695,'history_text','itemid',43885),(6696,'history_uint','itemid',43885),(6697,'trends','itemid',43885),(6698,'trends_uint','itemid',43885),(6699,'events','itemid',34848),(6700,'history','itemid',34848),(6701,'history_log','itemid',34848),(6702,'history_str','itemid',34848),(6703,'history_text','itemid',34848),(6704,'history_uint','itemid',34848),(6705,'trends','itemid',34848),(6706,'trends_uint','itemid',34848),(6707,'events','itemid',34847),(6708,'history','itemid',34847),(6709,'history_log','itemid',34847),(6710,'history_str','itemid',34847),(6711,'history_text','itemid',34847),(6712,'history_uint','itemid',34847),(6713,'trends','itemid',34847),(6714,'trends_uint','itemid',34847),(6715,'events','itemid',34846),(6716,'history','itemid',34846),(6717,'history_log','itemid',34846),(6718,'history_str','itemid',34846),(6719,'history_text','itemid',34846),(6720,'history_uint','itemid',34846),(6721,'trends','itemid',34846),(6722,'trends_uint','itemid',34846),(6723,'events','itemid',34843),(6724,'history','itemid',34843),(6725,'history_log','itemid',34843),(6726,'history_str','itemid',34843),(6727,'history_text','itemid',34843),(6728,'history_uint','itemid',34843),(6729,'trends','itemid',34843),(6730,'trends_uint','itemid',34843),(6731,'events','itemid',34845),(6732,'history','itemid',34845),(6733,'history_log','itemid',34845),(6734,'history_str','itemid',34845),(6735,'history_text','itemid',34845),(6736,'history_uint','itemid',34845),(6737,'trends','itemid',34845),(6738,'trends_uint','itemid',34845),(6739,'events','itemid',34844),(6740,'history','itemid',34844),(6741,'history_log','itemid',34844),(6742,'history_str','itemid',34844),(6743,'history_text','itemid',34844),(6744,'history_uint','itemid',34844),(6745,'trends','itemid',34844),(6746,'trends_uint','itemid',34844),(6747,'events','itemid',34865),(6748,'history','itemid',34865),(6749,'history_log','itemid',34865),(6750,'history_str','itemid',34865),(6751,'history_text','itemid',34865),(6752,'history_uint','itemid',34865),(6753,'trends','itemid',34865),(6754,'trends_uint','itemid',34865),(6755,'events','itemid',34889),(6756,'history','itemid',34889),(6757,'history_log','itemid',34889),(6758,'history_str','itemid',34889),(6759,'history_text','itemid',34889),(6760,'history_uint','itemid',34889),(6761,'trends','itemid',34889),(6762,'trends_uint','itemid',34889),(6763,'events','itemid',34902),(6764,'history','itemid',34902),(6765,'history_log','itemid',34902),(6766,'history_str','itemid',34902),(6767,'history_text','itemid',34902),(6768,'history_uint','itemid',34902),(6769,'trends','itemid',34902),(6770,'trends_uint','itemid',34902),(6771,'events','itemid',34912),(6772,'history','itemid',34912),(6773,'history_log','itemid',34912),(6774,'history_str','itemid',34912),(6775,'history_text','itemid',34912),(6776,'history_uint','itemid',34912),(6777,'trends','itemid',34912),(6778,'trends_uint','itemid',34912),(6779,'events','itemid',34911),(6780,'history','itemid',34911),(6781,'history_log','itemid',34911),(6782,'history_str','itemid',34911),(6783,'history_text','itemid',34911),(6784,'history_uint','itemid',34911),(6785,'trends','itemid',34911),(6786,'trends_uint','itemid',34911),(6787,'events','itemid',34910),(6788,'history','itemid',34910),(6789,'history_log','itemid',34910),(6790,'history_str','itemid',34910),(6791,'history_text','itemid',34910),(6792,'history_uint','itemid',34910),(6793,'trends','itemid',34910),(6794,'trends_uint','itemid',34910),(6795,'events','itemid',34909),(6796,'history','itemid',34909),(6797,'history_log','itemid',34909),(6798,'history_str','itemid',34909),(6799,'history_text','itemid',34909),(6800,'history_uint','itemid',34909),(6801,'trends','itemid',34909),(6802,'trends_uint','itemid',34909),(6803,'events','itemid',34908),(6804,'history','itemid',34908),(6805,'history_log','itemid',34908),(6806,'history_str','itemid',34908),(6807,'history_text','itemid',34908),(6808,'history_uint','itemid',34908),(6809,'trends','itemid',34908),(6810,'trends_uint','itemid',34908),(6811,'events','itemid',34907),(6812,'history','itemid',34907),(6813,'history_log','itemid',34907),(6814,'history_str','itemid',34907),(6815,'history_text','itemid',34907),(6816,'history_uint','itemid',34907),(6817,'trends','itemid',34907),(6818,'trends_uint','itemid',34907),(6819,'events','itemid',34906),(6820,'history','itemid',34906),(6821,'history_log','itemid',34906),(6822,'history_str','itemid',34906),(6823,'history_text','itemid',34906),(6824,'history_uint','itemid',34906),(6825,'trends','itemid',34906),(6826,'trends_uint','itemid',34906),(6827,'events','itemid',34905),(6828,'history','itemid',34905),(6829,'history_log','itemid',34905),(6830,'history_str','itemid',34905),(6831,'history_text','itemid',34905),(6832,'history_uint','itemid',34905),(6833,'trends','itemid',34905),(6834,'trends_uint','itemid',34905),(6835,'events','itemid',34904),(6836,'history','itemid',34904),(6837,'history_log','itemid',34904),(6838,'history_str','itemid',34904),(6839,'history_text','itemid',34904),(6840,'history_uint','itemid',34904),(6841,'trends','itemid',34904),(6842,'trends_uint','itemid',34904),(6843,'events','itemid',34903),(6844,'history','itemid',34903),(6845,'history_log','itemid',34903),(6846,'history_str','itemid',34903),(6847,'history_text','itemid',34903),(6848,'history_uint','itemid',34903),(6849,'trends','itemid',34903),(6850,'trends_uint','itemid',34903),(6851,'events','itemid',34901),(6852,'history','itemid',34901),(6853,'history_log','itemid',34901),(6854,'history_str','itemid',34901),(6855,'history_text','itemid',34901),(6856,'history_uint','itemid',34901),(6857,'trends','itemid',34901),(6858,'trends_uint','itemid',34901),(6859,'events','itemid',34890),(6860,'history','itemid',34890),(6861,'history_log','itemid',34890),(6862,'history_str','itemid',34890),(6863,'history_text','itemid',34890),(6864,'history_uint','itemid',34890),(6865,'trends','itemid',34890),(6866,'trends_uint','itemid',34890),(6867,'events','itemid',34900),(6868,'history','itemid',34900),(6869,'history_log','itemid',34900),(6870,'history_str','itemid',34900),(6871,'history_text','itemid',34900),(6872,'history_uint','itemid',34900),(6873,'trends','itemid',34900),(6874,'trends_uint','itemid',34900),(6875,'events','itemid',34899),(6876,'history','itemid',34899),(6877,'history_log','itemid',34899),(6878,'history_str','itemid',34899),(6879,'history_text','itemid',34899),(6880,'history_uint','itemid',34899),(6881,'trends','itemid',34899),(6882,'trends_uint','itemid',34899),(6883,'events','itemid',34898),(6884,'history','itemid',34898),(6885,'history_log','itemid',34898),(6886,'history_str','itemid',34898),(6887,'history_text','itemid',34898),(6888,'history_uint','itemid',34898),(6889,'trends','itemid',34898),(6890,'trends_uint','itemid',34898),(6891,'events','itemid',34897),(6892,'history','itemid',34897),(6893,'history_log','itemid',34897),(6894,'history_str','itemid',34897),(6895,'history_text','itemid',34897),(6896,'history_uint','itemid',34897),(6897,'trends','itemid',34897),(6898,'trends_uint','itemid',34897),(6899,'events','itemid',43886),(6900,'history','itemid',43886),(6901,'history_log','itemid',43886),(6902,'history_str','itemid',43886),(6903,'history_text','itemid',43886),(6904,'history_uint','itemid',43886),(6905,'trends','itemid',43886),(6906,'trends_uint','itemid',43886),(6907,'events','itemid',34896),(6908,'history','itemid',34896),(6909,'history_log','itemid',34896),(6910,'history_str','itemid',34896),(6911,'history_text','itemid',34896),(6912,'history_uint','itemid',34896),(6913,'trends','itemid',34896),(6914,'trends_uint','itemid',34896),(6915,'events','itemid',34895),(6916,'history','itemid',34895),(6917,'history_log','itemid',34895),(6918,'history_str','itemid',34895),(6919,'history_text','itemid',34895),(6920,'history_uint','itemid',34895),(6921,'trends','itemid',34895),(6922,'trends_uint','itemid',34895),(6923,'events','itemid',34894),(6924,'history','itemid',34894),(6925,'history_log','itemid',34894),(6926,'history_str','itemid',34894),(6927,'history_text','itemid',34894),(6928,'history_uint','itemid',34894),(6929,'trends','itemid',34894),(6930,'trends_uint','itemid',34894),(6931,'events','itemid',34891),(6932,'history','itemid',34891),(6933,'history_log','itemid',34891),(6934,'history_str','itemid',34891),(6935,'history_text','itemid',34891),(6936,'history_uint','itemid',34891),(6937,'trends','itemid',34891),(6938,'trends_uint','itemid',34891),(6939,'events','itemid',34893),(6940,'history','itemid',34893),(6941,'history_log','itemid',34893),(6942,'history_str','itemid',34893),(6943,'history_text','itemid',34893),(6944,'history_uint','itemid',34893),(6945,'trends','itemid',34893),(6946,'trends_uint','itemid',34893),(6947,'events','itemid',34892),(6948,'history','itemid',34892),(6949,'history_log','itemid',34892),(6950,'history_str','itemid',34892),(6951,'history_text','itemid',34892),(6952,'history_uint','itemid',34892),(6953,'trends','itemid',34892),(6954,'trends_uint','itemid',34892),(6955,'events','itemid',34913),(6956,'history','itemid',34913),(6957,'history_log','itemid',34913),(6958,'history_str','itemid',34913),(6959,'history_text','itemid',34913),(6960,'history_uint','itemid',34913),(6961,'trends','itemid',34913),(6962,'trends_uint','itemid',34913),(6963,'events','itemid',35016),(6964,'history','itemid',35016),(6965,'history_log','itemid',35016),(6966,'history_str','itemid',35016),(6967,'history_text','itemid',35016),(6968,'history_uint','itemid',35016),(6969,'trends','itemid',35016),(6970,'trends_uint','itemid',35016),(6971,'events','itemid',35029),(6972,'history','itemid',35029),(6973,'history_log','itemid',35029),(6974,'history_str','itemid',35029),(6975,'history_text','itemid',35029),(6976,'history_uint','itemid',35029),(6977,'trends','itemid',35029),(6978,'trends_uint','itemid',35029),(6979,'events','itemid',35039),(6980,'history','itemid',35039),(6981,'history_log','itemid',35039),(6982,'history_str','itemid',35039),(6983,'history_text','itemid',35039),(6984,'history_uint','itemid',35039),(6985,'trends','itemid',35039),(6986,'trends_uint','itemid',35039),(6987,'events','itemid',35038),(6988,'history','itemid',35038),(6989,'history_log','itemid',35038),(6990,'history_str','itemid',35038),(6991,'history_text','itemid',35038),(6992,'history_uint','itemid',35038),(6993,'trends','itemid',35038),(6994,'trends_uint','itemid',35038),(6995,'events','itemid',35037),(6996,'history','itemid',35037),(6997,'history_log','itemid',35037),(6998,'history_str','itemid',35037),(6999,'history_text','itemid',35037),(7000,'history_uint','itemid',35037),(7001,'trends','itemid',35037),(7002,'trends_uint','itemid',35037),(7003,'events','itemid',35036),(7004,'history','itemid',35036),(7005,'history_log','itemid',35036),(7006,'history_str','itemid',35036),(7007,'history_text','itemid',35036),(7008,'history_uint','itemid',35036),(7009,'trends','itemid',35036),(7010,'trends_uint','itemid',35036),(7011,'events','itemid',35035),(7012,'history','itemid',35035),(7013,'history_log','itemid',35035),(7014,'history_str','itemid',35035),(7015,'history_text','itemid',35035),(7016,'history_uint','itemid',35035),(7017,'trends','itemid',35035),(7018,'trends_uint','itemid',35035),(7019,'events','itemid',35034),(7020,'history','itemid',35034),(7021,'history_log','itemid',35034),(7022,'history_str','itemid',35034),(7023,'history_text','itemid',35034),(7024,'history_uint','itemid',35034),(7025,'trends','itemid',35034),(7026,'trends_uint','itemid',35034),(7027,'events','itemid',35033),(7028,'history','itemid',35033),(7029,'history_log','itemid',35033),(7030,'history_str','itemid',35033),(7031,'history_text','itemid',35033),(7032,'history_uint','itemid',35033),(7033,'trends','itemid',35033),(7034,'trends_uint','itemid',35033),(7035,'events','itemid',35032),(7036,'history','itemid',35032),(7037,'history_log','itemid',35032),(7038,'history_str','itemid',35032),(7039,'history_text','itemid',35032),(7040,'history_uint','itemid',35032),(7041,'trends','itemid',35032),(7042,'trends_uint','itemid',35032),(7043,'events','itemid',35031),(7044,'history','itemid',35031),(7045,'history_log','itemid',35031),(7046,'history_str','itemid',35031),(7047,'history_text','itemid',35031),(7048,'history_uint','itemid',35031),(7049,'trends','itemid',35031),(7050,'trends_uint','itemid',35031),(7051,'events','itemid',35030),(7052,'history','itemid',35030),(7053,'history_log','itemid',35030),(7054,'history_str','itemid',35030),(7055,'history_text','itemid',35030),(7056,'history_uint','itemid',35030),(7057,'trends','itemid',35030),(7058,'trends_uint','itemid',35030),(7059,'events','itemid',35028),(7060,'history','itemid',35028),(7061,'history_log','itemid',35028),(7062,'history_str','itemid',35028),(7063,'history_text','itemid',35028),(7064,'history_uint','itemid',35028),(7065,'trends','itemid',35028),(7066,'trends_uint','itemid',35028),(7067,'events','itemid',35017),(7068,'history','itemid',35017),(7069,'history_log','itemid',35017),(7070,'history_str','itemid',35017),(7071,'history_text','itemid',35017),(7072,'history_uint','itemid',35017),(7073,'trends','itemid',35017),(7074,'trends_uint','itemid',35017),(7075,'events','itemid',35027),(7076,'history','itemid',35027),(7077,'history_log','itemid',35027),(7078,'history_str','itemid',35027),(7079,'history_text','itemid',35027),(7080,'history_uint','itemid',35027),(7081,'trends','itemid',35027),(7082,'trends_uint','itemid',35027),(7083,'events','itemid',35026),(7084,'history','itemid',35026),(7085,'history_log','itemid',35026),(7086,'history_str','itemid',35026),(7087,'history_text','itemid',35026),(7088,'history_uint','itemid',35026),(7089,'trends','itemid',35026),(7090,'trends_uint','itemid',35026),(7091,'events','itemid',35025),(7092,'history','itemid',35025),(7093,'history_log','itemid',35025),(7094,'history_str','itemid',35025),(7095,'history_text','itemid',35025),(7096,'history_uint','itemid',35025),(7097,'trends','itemid',35025),(7098,'trends_uint','itemid',35025),(7099,'events','itemid',35024),(7100,'history','itemid',35024),(7101,'history_log','itemid',35024),(7102,'history_str','itemid',35024),(7103,'history_text','itemid',35024),(7104,'history_uint','itemid',35024),(7105,'trends','itemid',35024),(7106,'trends_uint','itemid',35024),(7107,'events','itemid',43881),(7108,'history','itemid',43881),(7109,'history_log','itemid',43881),(7110,'history_str','itemid',43881),(7111,'history_text','itemid',43881),(7112,'history_uint','itemid',43881),(7113,'trends','itemid',43881),(7114,'trends_uint','itemid',43881),(7115,'events','itemid',35023),(7116,'history','itemid',35023),(7117,'history_log','itemid',35023),(7118,'history_str','itemid',35023),(7119,'history_text','itemid',35023),(7120,'history_uint','itemid',35023),(7121,'trends','itemid',35023),(7122,'trends_uint','itemid',35023),(7123,'events','itemid',35022),(7124,'history','itemid',35022),(7125,'history_log','itemid',35022),(7126,'history_str','itemid',35022),(7127,'history_text','itemid',35022),(7128,'history_uint','itemid',35022),(7129,'trends','itemid',35022),(7130,'trends_uint','itemid',35022),(7131,'events','itemid',35021),(7132,'history','itemid',35021),(7133,'history_log','itemid',35021),(7134,'history_str','itemid',35021),(7135,'history_text','itemid',35021),(7136,'history_uint','itemid',35021),(7137,'trends','itemid',35021),(7138,'trends_uint','itemid',35021),(7139,'events','itemid',35018),(7140,'history','itemid',35018),(7141,'history_log','itemid',35018),(7142,'history_str','itemid',35018),(7143,'history_text','itemid',35018),(7144,'history_uint','itemid',35018),(7145,'trends','itemid',35018),(7146,'trends_uint','itemid',35018),(7147,'events','itemid',35020),(7148,'history','itemid',35020),(7149,'history_log','itemid',35020),(7150,'history_str','itemid',35020),(7151,'history_text','itemid',35020),(7152,'history_uint','itemid',35020),(7153,'trends','itemid',35020),(7154,'trends_uint','itemid',35020),(7155,'events','itemid',35019),(7156,'history','itemid',35019),(7157,'history_log','itemid',35019),(7158,'history_str','itemid',35019),(7159,'history_text','itemid',35019),(7160,'history_uint','itemid',35019),(7161,'trends','itemid',35019),(7162,'trends_uint','itemid',35019),(7163,'events','itemid',35040),(7164,'history','itemid',35040),(7165,'history_log','itemid',35040),(7166,'history_str','itemid',35040),(7167,'history_text','itemid',35040),(7168,'history_uint','itemid',35040),(7169,'trends','itemid',35040),(7170,'trends_uint','itemid',35040),(7171,'events','itemid',35358),(7172,'history','itemid',35358),(7173,'history_log','itemid',35358),(7174,'history_str','itemid',35358),(7175,'history_text','itemid',35358),(7176,'history_uint','itemid',35358),(7177,'trends','itemid',35358),(7178,'trends_uint','itemid',35358),(7179,'events','itemid',35359),(7180,'history','itemid',35359),(7181,'history_log','itemid',35359),(7182,'history_str','itemid',35359),(7183,'history_text','itemid',35359),(7184,'history_uint','itemid',35359),(7185,'trends','itemid',35359),(7186,'trends_uint','itemid',35359),(7187,'events','itemid',35360),(7188,'history','itemid',35360),(7189,'history_log','itemid',35360),(7190,'history_str','itemid',35360),(7191,'history_text','itemid',35360),(7192,'history_uint','itemid',35360),(7193,'trends','itemid',35360),(7194,'trends_uint','itemid',35360),(7195,'events','itemid',35361),(7196,'history','itemid',35361),(7197,'history_log','itemid',35361),(7198,'history_str','itemid',35361),(7199,'history_text','itemid',35361),(7200,'history_uint','itemid',35361),(7201,'trends','itemid',35361),(7202,'trends_uint','itemid',35361),(7203,'events','itemid',35362),(7204,'history','itemid',35362),(7205,'history_log','itemid',35362),(7206,'history_str','itemid',35362),(7207,'history_text','itemid',35362),(7208,'history_uint','itemid',35362),(7209,'trends','itemid',35362),(7210,'trends_uint','itemid',35362),(7211,'events','itemid',35363),(7212,'history','itemid',35363),(7213,'history_log','itemid',35363),(7214,'history_str','itemid',35363),(7215,'history_text','itemid',35363),(7216,'history_uint','itemid',35363),(7217,'trends','itemid',35363),(7218,'trends_uint','itemid',35363),(7219,'events','itemid',43500),(7220,'history','itemid',43500),(7221,'history_log','itemid',43500),(7222,'history_str','itemid',43500),(7223,'history_text','itemid',43500),(7224,'history_uint','itemid',43500),(7225,'trends','itemid',43500),(7226,'trends_uint','itemid',43500),(7227,'events','itemid',43512),(7228,'history','itemid',43512),(7229,'history_log','itemid',43512),(7230,'history_str','itemid',43512),(7231,'history_text','itemid',43512),(7232,'history_uint','itemid',43512),(7233,'trends','itemid',43512),(7234,'trends_uint','itemid',43512),(7235,'events','itemid',43524),(7236,'history','itemid',43524),(7237,'history_log','itemid',43524),(7238,'history_str','itemid',43524),(7239,'history_text','itemid',43524),(7240,'history_uint','itemid',43524),(7241,'trends','itemid',43524),(7242,'trends_uint','itemid',43524),(7243,'events','itemid',43523),(7244,'history','itemid',43523),(7245,'history_log','itemid',43523),(7246,'history_str','itemid',43523),(7247,'history_text','itemid',43523),(7248,'history_uint','itemid',43523),(7249,'trends','itemid',43523),(7250,'trends_uint','itemid',43523),(7251,'events','itemid',43522),(7252,'history','itemid',43522),(7253,'history_log','itemid',43522),(7254,'history_str','itemid',43522),(7255,'history_text','itemid',43522),(7256,'history_uint','itemid',43522),(7257,'trends','itemid',43522),(7258,'trends_uint','itemid',43522),(7259,'events','itemid',43521),(7260,'history','itemid',43521),(7261,'history_log','itemid',43521),(7262,'history_str','itemid',43521),(7263,'history_text','itemid',43521),(7264,'history_uint','itemid',43521),(7265,'trends','itemid',43521),(7266,'trends_uint','itemid',43521),(7267,'events','itemid',43520),(7268,'history','itemid',43520),(7269,'history_log','itemid',43520),(7270,'history_str','itemid',43520),(7271,'history_text','itemid',43520),(7272,'history_uint','itemid',43520),(7273,'trends','itemid',43520),(7274,'trends_uint','itemid',43520),(7275,'events','itemid',43519),(7276,'history','itemid',43519),(7277,'history_log','itemid',43519),(7278,'history_str','itemid',43519),(7279,'history_text','itemid',43519),(7280,'history_uint','itemid',43519),(7281,'trends','itemid',43519),(7282,'trends_uint','itemid',43519),(7283,'events','itemid',43518),(7284,'history','itemid',43518),(7285,'history_log','itemid',43518),(7286,'history_str','itemid',43518),(7287,'history_text','itemid',43518),(7288,'history_uint','itemid',43518),(7289,'trends','itemid',43518),(7290,'trends_uint','itemid',43518),(7291,'events','itemid',43517),(7292,'history','itemid',43517),(7293,'history_log','itemid',43517),(7294,'history_str','itemid',43517),(7295,'history_text','itemid',43517),(7296,'history_uint','itemid',43517),(7297,'trends','itemid',43517),(7298,'trends_uint','itemid',43517),(7299,'events','itemid',43516),(7300,'history','itemid',43516),(7301,'history_log','itemid',43516),(7302,'history_str','itemid',43516),(7303,'history_text','itemid',43516),(7304,'history_uint','itemid',43516),(7305,'trends','itemid',43516),(7306,'trends_uint','itemid',43516),(7307,'events','itemid',43515),(7308,'history','itemid',43515),(7309,'history_log','itemid',43515),(7310,'history_str','itemid',43515),(7311,'history_text','itemid',43515),(7312,'history_uint','itemid',43515),(7313,'trends','itemid',43515),(7314,'trends_uint','itemid',43515),(7315,'events','itemid',43514),(7316,'history','itemid',43514),(7317,'history_log','itemid',43514),(7318,'history_str','itemid',43514),(7319,'history_text','itemid',43514),(7320,'history_uint','itemid',43514),(7321,'trends','itemid',43514),(7322,'trends_uint','itemid',43514),(7323,'events','itemid',43513),(7324,'history','itemid',43513),(7325,'history_log','itemid',43513),(7326,'history_str','itemid',43513),(7327,'history_text','itemid',43513),(7328,'history_uint','itemid',43513),(7329,'trends','itemid',43513),(7330,'trends_uint','itemid',43513),(7331,'events','itemid',43511),(7332,'history','itemid',43511),(7333,'history_log','itemid',43511),(7334,'history_str','itemid',43511),(7335,'history_text','itemid',43511),(7336,'history_uint','itemid',43511),(7337,'trends','itemid',43511),(7338,'trends_uint','itemid',43511),(7339,'events','itemid',43501),(7340,'history','itemid',43501),(7341,'history_log','itemid',43501),(7342,'history_str','itemid',43501),(7343,'history_text','itemid',43501),(7344,'history_uint','itemid',43501),(7345,'trends','itemid',43501),(7346,'trends_uint','itemid',43501),(7347,'events','itemid',43499),(7348,'history','itemid',43499),(7349,'history_log','itemid',43499),(7350,'history_str','itemid',43499),(7351,'history_text','itemid',43499),(7352,'history_uint','itemid',43499),(7353,'trends','itemid',43499),(7354,'trends_uint','itemid',43499),(7355,'events','itemid',43497),(7356,'history','itemid',43497),(7357,'history_log','itemid',43497),(7358,'history_str','itemid',43497),(7359,'history_text','itemid',43497),(7360,'history_uint','itemid',43497),(7361,'trends','itemid',43497),(7362,'trends_uint','itemid',43497),(7363,'events','itemid',43498),(7364,'history','itemid',43498),(7365,'history_log','itemid',43498),(7366,'history_str','itemid',43498),(7367,'history_text','itemid',43498),(7368,'history_uint','itemid',43498),(7369,'trends','itemid',43498),(7370,'trends_uint','itemid',43498),(7371,'events','itemid',43510),(7372,'history','itemid',43510),(7373,'history_log','itemid',43510),(7374,'history_str','itemid',43510),(7375,'history_text','itemid',43510),(7376,'history_uint','itemid',43510),(7377,'trends','itemid',43510),(7378,'trends_uint','itemid',43510),(7379,'events','itemid',43509),(7380,'history','itemid',43509),(7381,'history_log','itemid',43509),(7382,'history_str','itemid',43509),(7383,'history_text','itemid',43509),(7384,'history_uint','itemid',43509),(7385,'trends','itemid',43509),(7386,'trends_uint','itemid',43509),(7387,'events','itemid',43508),(7388,'history','itemid',43508),(7389,'history_log','itemid',43508),(7390,'history_str','itemid',43508),(7391,'history_text','itemid',43508),(7392,'history_uint','itemid',43508),(7393,'trends','itemid',43508),(7394,'trends_uint','itemid',43508),(7395,'events','itemid',43507),(7396,'history','itemid',43507),(7397,'history_log','itemid',43507),(7398,'history_str','itemid',43507),(7399,'history_text','itemid',43507),(7400,'history_uint','itemid',43507),(7401,'trends','itemid',43507),(7402,'trends_uint','itemid',43507),(7403,'events','itemid',43506),(7404,'history','itemid',43506),(7405,'history_log','itemid',43506),(7406,'history_str','itemid',43506),(7407,'history_text','itemid',43506),(7408,'history_uint','itemid',43506),(7409,'trends','itemid',43506),(7410,'trends_uint','itemid',43506),(7411,'events','itemid',43505),(7412,'history','itemid',43505),(7413,'history_log','itemid',43505),(7414,'history_str','itemid',43505),(7415,'history_text','itemid',43505),(7416,'history_uint','itemid',43505),(7417,'trends','itemid',43505),(7418,'trends_uint','itemid',43505),(7419,'events','itemid',43504),(7420,'history','itemid',43504),(7421,'history_log','itemid',43504),(7422,'history_str','itemid',43504),(7423,'history_text','itemid',43504),(7424,'history_uint','itemid',43504),(7425,'trends','itemid',43504),(7426,'trends_uint','itemid',43504),(7427,'events','itemid',43503),(7428,'history','itemid',43503),(7429,'history_log','itemid',43503),(7430,'history_str','itemid',43503),(7431,'history_text','itemid',43503),(7432,'history_uint','itemid',43503),(7433,'trends','itemid',43503),(7434,'trends_uint','itemid',43503),(7435,'events','itemid',43502),(7436,'history','itemid',43502),(7437,'history_log','itemid',43502),(7438,'history_str','itemid',43502),(7439,'history_text','itemid',43502),(7440,'history_uint','itemid',43502),(7441,'trends','itemid',43502),(7442,'trends_uint','itemid',43502),(7443,'events','itemid',43525),(7444,'history','itemid',43525),(7445,'history_log','itemid',43525),(7446,'history_str','itemid',43525),(7447,'history_text','itemid',43525),(7448,'history_uint','itemid',43525),(7449,'trends','itemid',43525),(7450,'trends_uint','itemid',43525),(7451,'events','itemid',43596),(7452,'history','itemid',43596),(7453,'history_log','itemid',43596),(7454,'history_str','itemid',43596),(7455,'history_text','itemid',43596),(7456,'history_uint','itemid',43596),(7457,'trends','itemid',43596),(7458,'trends_uint','itemid',43596),(7459,'events','itemid',43640),(7460,'history','itemid',43640),(7461,'history_log','itemid',43640),(7462,'history_str','itemid',43640),(7463,'history_text','itemid',43640),(7464,'history_uint','itemid',43640),(7465,'trends','itemid',43640),(7466,'trends_uint','itemid',43640),(7467,'events','itemid',43621),(7468,'history','itemid',43621),(7469,'history_log','itemid',43621),(7470,'history_str','itemid',43621),(7471,'history_text','itemid',43621),(7472,'history_uint','itemid',43621),(7473,'trends','itemid',43621),(7474,'trends_uint','itemid',43621),(7475,'events','itemid',43622),(7476,'history','itemid',43622),(7477,'history_log','itemid',43622),(7478,'history_str','itemid',43622),(7479,'history_text','itemid',43622),(7480,'history_uint','itemid',43622),(7481,'trends','itemid',43622),(7482,'trends_uint','itemid',43622),(7483,'events','itemid',43623),(7484,'history','itemid',43623),(7485,'history_log','itemid',43623),(7486,'history_str','itemid',43623),(7487,'history_text','itemid',43623),(7488,'history_uint','itemid',43623),(7489,'trends','itemid',43623),(7490,'trends_uint','itemid',43623),(7491,'events','itemid',43624),(7492,'history','itemid',43624),(7493,'history_log','itemid',43624),(7494,'history_str','itemid',43624),(7495,'history_text','itemid',43624),(7496,'history_uint','itemid',43624),(7497,'trends','itemid',43624),(7498,'trends_uint','itemid',43624),(7499,'events','itemid',43625),(7500,'history','itemid',43625),(7501,'history_log','itemid',43625),(7502,'history_str','itemid',43625),(7503,'history_text','itemid',43625),(7504,'history_uint','itemid',43625),(7505,'trends','itemid',43625),(7506,'trends_uint','itemid',43625),(7507,'events','itemid',43626),(7508,'history','itemid',43626),(7509,'history_log','itemid',43626),(7510,'history_str','itemid',43626),(7511,'history_text','itemid',43626),(7512,'history_uint','itemid',43626),(7513,'trends','itemid',43626),(7514,'trends_uint','itemid',43626),(7515,'events','itemid',43627),(7516,'history','itemid',43627),(7517,'history_log','itemid',43627),(7518,'history_str','itemid',43627),(7519,'history_text','itemid',43627),(7520,'history_uint','itemid',43627),(7521,'trends','itemid',43627),(7522,'trends_uint','itemid',43627),(7523,'events','itemid',43628),(7524,'history','itemid',43628),(7525,'history_log','itemid',43628),(7526,'history_str','itemid',43628),(7527,'history_text','itemid',43628),(7528,'history_uint','itemid',43628),(7529,'trends','itemid',43628),(7530,'trends_uint','itemid',43628),(7531,'events','itemid',43629),(7532,'history','itemid',43629),(7533,'history_log','itemid',43629),(7534,'history_str','itemid',43629),(7535,'history_text','itemid',43629),(7536,'history_uint','itemid',43629),(7537,'trends','itemid',43629),(7538,'trends_uint','itemid',43629),(7539,'events','itemid',43620),(7540,'history','itemid',43620),(7541,'history_log','itemid',43620),(7542,'history_str','itemid',43620),(7543,'history_text','itemid',43620),(7544,'history_uint','itemid',43620),(7545,'trends','itemid',43620),(7546,'trends_uint','itemid',43620),(7547,'events','itemid',43630),(7548,'history','itemid',43630),(7549,'history_log','itemid',43630),(7550,'history_str','itemid',43630),(7551,'history_text','itemid',43630),(7552,'history_uint','itemid',43630),(7553,'trends','itemid',43630),(7554,'trends_uint','itemid',43630),(7555,'events','itemid',43632),(7556,'history','itemid',43632),(7557,'history_log','itemid',43632),(7558,'history_str','itemid',43632),(7559,'history_text','itemid',43632),(7560,'history_uint','itemid',43632),(7561,'trends','itemid',43632),(7562,'trends_uint','itemid',43632),(7563,'events','itemid',43633),(7564,'history','itemid',43633),(7565,'history_log','itemid',43633),(7566,'history_str','itemid',43633),(7567,'history_text','itemid',43633),(7568,'history_uint','itemid',43633),(7569,'trends','itemid',43633),(7570,'trends_uint','itemid',43633),(7571,'events','itemid',43634),(7572,'history','itemid',43634),(7573,'history_log','itemid',43634),(7574,'history_str','itemid',43634),(7575,'history_text','itemid',43634),(7576,'history_uint','itemid',43634),(7577,'trends','itemid',43634),(7578,'trends_uint','itemid',43634),(7579,'events','itemid',43636),(7580,'history','itemid',43636),(7581,'history_log','itemid',43636),(7582,'history_str','itemid',43636),(7583,'history_text','itemid',43636),(7584,'history_uint','itemid',43636),(7585,'trends','itemid',43636),(7586,'trends_uint','itemid',43636),(7587,'events','itemid',43637),(7588,'history','itemid',43637),(7589,'history_log','itemid',43637),(7590,'history_str','itemid',43637),(7591,'history_text','itemid',43637),(7592,'history_uint','itemid',43637),(7593,'trends','itemid',43637),(7594,'trends_uint','itemid',43637),(7595,'events','itemid',43635),(7596,'history','itemid',43635),(7597,'history_log','itemid',43635),(7598,'history_str','itemid',43635),(7599,'history_text','itemid',43635),(7600,'history_uint','itemid',43635),(7601,'trends','itemid',43635),(7602,'trends_uint','itemid',43635),(7603,'events','itemid',43595),(7604,'history','itemid',43595),(7605,'history_log','itemid',43595),(7606,'history_str','itemid',43595),(7607,'history_text','itemid',43595),(7608,'history_uint','itemid',43595),(7609,'trends','itemid',43595),(7610,'trends_uint','itemid',43595),(7611,'events','itemid',43594),(7612,'history','itemid',43594),(7613,'history_log','itemid',43594),(7614,'history_str','itemid',43594),(7615,'history_text','itemid',43594),(7616,'history_uint','itemid',43594),(7617,'trends','itemid',43594),(7618,'trends_uint','itemid',43594),(7619,'events','itemid',43593),(7620,'history','itemid',43593),(7621,'history_log','itemid',43593),(7622,'history_str','itemid',43593),(7623,'history_text','itemid',43593),(7624,'history_uint','itemid',43593),(7625,'trends','itemid',43593),(7626,'trends_uint','itemid',43593),(7627,'events','itemid',43592),(7628,'history','itemid',43592),(7629,'history_log','itemid',43592),(7630,'history_str','itemid',43592),(7631,'history_text','itemid',43592),(7632,'history_uint','itemid',43592),(7633,'trends','itemid',43592),(7634,'trends_uint','itemid',43592),(7635,'events','itemid',43638),(7636,'history','itemid',43638),(7637,'history_log','itemid',43638),(7638,'history_str','itemid',43638),(7639,'history_text','itemid',43638),(7640,'history_uint','itemid',43638),(7641,'trends','itemid',43638),(7642,'trends_uint','itemid',43638),(7643,'events','itemid',43639),(7644,'history','itemid',43639),(7645,'history_log','itemid',43639),(7646,'history_str','itemid',43639),(7647,'history_text','itemid',43639),(7648,'history_uint','itemid',43639),(7649,'trends','itemid',43639),(7650,'trends_uint','itemid',43639),(7651,'events','itemid',43618),(7652,'history','itemid',43618),(7653,'history_log','itemid',43618),(7654,'history_str','itemid',43618),(7655,'history_text','itemid',43618),(7656,'history_uint','itemid',43618),(7657,'trends','itemid',43618),(7658,'trends_uint','itemid',43618),(7659,'events','itemid',43631),(7660,'history','itemid',43631),(7661,'history_log','itemid',43631),(7662,'history_str','itemid',43631),(7663,'history_text','itemid',43631),(7664,'history_uint','itemid',43631),(7665,'trends','itemid',43631),(7666,'trends_uint','itemid',43631),(7667,'events','itemid',43619),(7668,'history','itemid',43619),(7669,'history_log','itemid',43619),(7670,'history_str','itemid',43619),(7671,'history_text','itemid',43619),(7672,'history_uint','itemid',43619),(7673,'trends','itemid',43619),(7674,'trends_uint','itemid',43619),(7675,'events','itemid',43605),(7676,'history','itemid',43605),(7677,'history_log','itemid',43605),(7678,'history_str','itemid',43605),(7679,'history_text','itemid',43605),(7680,'history_uint','itemid',43605),(7681,'trends','itemid',43605),(7682,'trends_uint','itemid',43605),(7683,'events','itemid',43617),(7684,'history','itemid',43617),(7685,'history_log','itemid',43617),(7686,'history_str','itemid',43617),(7687,'history_text','itemid',43617),(7688,'history_uint','itemid',43617),(7689,'trends','itemid',43617),(7690,'trends_uint','itemid',43617),(7691,'events','itemid',43598),(7692,'history','itemid',43598),(7693,'history_log','itemid',43598),(7694,'history_str','itemid',43598),(7695,'history_text','itemid',43598),(7696,'history_uint','itemid',43598),(7697,'trends','itemid',43598),(7698,'trends_uint','itemid',43598),(7699,'events','itemid',43599),(7700,'history','itemid',43599),(7701,'history_log','itemid',43599),(7702,'history_str','itemid',43599),(7703,'history_text','itemid',43599),(7704,'history_uint','itemid',43599),(7705,'trends','itemid',43599),(7706,'trends_uint','itemid',43599),(7707,'events','itemid',43600),(7708,'history','itemid',43600),(7709,'history_log','itemid',43600),(7710,'history_str','itemid',43600),(7711,'history_text','itemid',43600),(7712,'history_uint','itemid',43600),(7713,'trends','itemid',43600),(7714,'trends_uint','itemid',43600),(7715,'events','itemid',43601),(7716,'history','itemid',43601),(7717,'history_log','itemid',43601),(7718,'history_str','itemid',43601),(7719,'history_text','itemid',43601),(7720,'history_uint','itemid',43601),(7721,'trends','itemid',43601),(7722,'trends_uint','itemid',43601),(7723,'events','itemid',43602),(7724,'history','itemid',43602),(7725,'history_log','itemid',43602),(7726,'history_str','itemid',43602),(7727,'history_text','itemid',43602),(7728,'history_uint','itemid',43602),(7729,'trends','itemid',43602),(7730,'trends_uint','itemid',43602),(7731,'events','itemid',43603),(7732,'history','itemid',43603),(7733,'history_log','itemid',43603),(7734,'history_str','itemid',43603),(7735,'history_text','itemid',43603),(7736,'history_uint','itemid',43603),(7737,'trends','itemid',43603),(7738,'trends_uint','itemid',43603),(7739,'events','itemid',43597),(7740,'history','itemid',43597),(7741,'history_log','itemid',43597),(7742,'history_str','itemid',43597),(7743,'history_text','itemid',43597),(7744,'history_uint','itemid',43597),(7745,'trends','itemid',43597),(7746,'trends_uint','itemid',43597),(7747,'events','itemid',43604),(7748,'history','itemid',43604),(7749,'history_log','itemid',43604),(7750,'history_str','itemid',43604),(7751,'history_text','itemid',43604),(7752,'history_uint','itemid',43604),(7753,'trends','itemid',43604),(7754,'trends_uint','itemid',43604),(7755,'events','itemid',43606),(7756,'history','itemid',43606),(7757,'history_log','itemid',43606),(7758,'history_str','itemid',43606),(7759,'history_text','itemid',43606),(7760,'history_uint','itemid',43606),(7761,'trends','itemid',43606),(7762,'trends_uint','itemid',43606),(7763,'events','itemid',43607),(7764,'history','itemid',43607),(7765,'history_log','itemid',43607),(7766,'history_str','itemid',43607),(7767,'history_text','itemid',43607),(7768,'history_uint','itemid',43607),(7769,'trends','itemid',43607),(7770,'trends_uint','itemid',43607),(7771,'events','itemid',43608),(7772,'history','itemid',43608),(7773,'history_log','itemid',43608),(7774,'history_str','itemid',43608),(7775,'history_text','itemid',43608),(7776,'history_uint','itemid',43608),(7777,'trends','itemid',43608),(7778,'trends_uint','itemid',43608),(7779,'events','itemid',43609),(7780,'history','itemid',43609),(7781,'history_log','itemid',43609),(7782,'history_str','itemid',43609),(7783,'history_text','itemid',43609),(7784,'history_uint','itemid',43609),(7785,'trends','itemid',43609),(7786,'trends_uint','itemid',43609),(7787,'events','itemid',43610),(7788,'history','itemid',43610),(7789,'history_log','itemid',43610),(7790,'history_str','itemid',43610),(7791,'history_text','itemid',43610),(7792,'history_uint','itemid',43610),(7793,'trends','itemid',43610),(7794,'trends_uint','itemid',43610),(7795,'events','itemid',43611),(7796,'history','itemid',43611),(7797,'history_log','itemid',43611),(7798,'history_str','itemid',43611),(7799,'history_text','itemid',43611),(7800,'history_uint','itemid',43611),(7801,'trends','itemid',43611),(7802,'trends_uint','itemid',43611),(7803,'events','itemid',43612),(7804,'history','itemid',43612),(7805,'history_log','itemid',43612),(7806,'history_str','itemid',43612),(7807,'history_text','itemid',43612),(7808,'history_uint','itemid',43612),(7809,'trends','itemid',43612),(7810,'trends_uint','itemid',43612),(7811,'events','itemid',43613),(7812,'history','itemid',43613),(7813,'history_log','itemid',43613),(7814,'history_str','itemid',43613),(7815,'history_text','itemid',43613),(7816,'history_uint','itemid',43613),(7817,'trends','itemid',43613),(7818,'trends_uint','itemid',43613),(7819,'events','itemid',43614),(7820,'history','itemid',43614),(7821,'history_log','itemid',43614),(7822,'history_str','itemid',43614),(7823,'history_text','itemid',43614),(7824,'history_uint','itemid',43614),(7825,'trends','itemid',43614),(7826,'trends_uint','itemid',43614),(7827,'events','itemid',43615),(7828,'history','itemid',43615),(7829,'history_log','itemid',43615),(7830,'history_str','itemid',43615),(7831,'history_text','itemid',43615),(7832,'history_uint','itemid',43615),(7833,'trends','itemid',43615),(7834,'trends_uint','itemid',43615),(7835,'events','itemid',43616),(7836,'history','itemid',43616),(7837,'history_log','itemid',43616),(7838,'history_str','itemid',43616),(7839,'history_text','itemid',43616),(7840,'history_uint','itemid',43616),(7841,'trends','itemid',43616),(7842,'trends_uint','itemid',43616),(7843,'events','itemid',43641),(7844,'history','itemid',43641),(7845,'history_log','itemid',43641),(7846,'history_str','itemid',43641),(7847,'history_text','itemid',43641),(7848,'history_uint','itemid',43641),(7849,'trends','itemid',43641),(7850,'trends_uint','itemid',43641),(7851,'events','itemid',43686),(7852,'history','itemid',43686),(7853,'history_log','itemid',43686),(7854,'history_str','itemid',43686),(7855,'history_text','itemid',43686),(7856,'history_uint','itemid',43686),(7857,'trends','itemid',43686),(7858,'trends_uint','itemid',43686),(7859,'events','itemid',43700),(7860,'history','itemid',43700),(7861,'history_log','itemid',43700),(7862,'history_str','itemid',43700),(7863,'history_text','itemid',43700),(7864,'history_uint','itemid',43700),(7865,'trends','itemid',43700),(7866,'trends_uint','itemid',43700),(7867,'events','itemid',43709),(7868,'history','itemid',43709),(7869,'history_log','itemid',43709),(7870,'history_str','itemid',43709),(7871,'history_text','itemid',43709),(7872,'history_uint','itemid',43709),(7873,'trends','itemid',43709),(7874,'trends_uint','itemid',43709),(7875,'events','itemid',43708),(7876,'history','itemid',43708),(7877,'history_log','itemid',43708),(7878,'history_str','itemid',43708),(7879,'history_text','itemid',43708),(7880,'history_uint','itemid',43708),(7881,'trends','itemid',43708),(7882,'trends_uint','itemid',43708),(7883,'events','itemid',43707),(7884,'history','itemid',43707),(7885,'history_log','itemid',43707),(7886,'history_str','itemid',43707),(7887,'history_text','itemid',43707),(7888,'history_uint','itemid',43707),(7889,'trends','itemid',43707),(7890,'trends_uint','itemid',43707),(7891,'events','itemid',43706),(7892,'history','itemid',43706),(7893,'history_log','itemid',43706),(7894,'history_str','itemid',43706),(7895,'history_text','itemid',43706),(7896,'history_uint','itemid',43706),(7897,'trends','itemid',43706),(7898,'trends_uint','itemid',43706),(7899,'events','itemid',43705),(7900,'history','itemid',43705),(7901,'history_log','itemid',43705),(7902,'history_str','itemid',43705),(7903,'history_text','itemid',43705),(7904,'history_uint','itemid',43705),(7905,'trends','itemid',43705),(7906,'trends_uint','itemid',43705),(7907,'events','itemid',43704),(7908,'history','itemid',43704),(7909,'history_log','itemid',43704),(7910,'history_str','itemid',43704),(7911,'history_text','itemid',43704),(7912,'history_uint','itemid',43704),(7913,'trends','itemid',43704),(7914,'trends_uint','itemid',43704),(7915,'events','itemid',43703),(7916,'history','itemid',43703),(7917,'history_log','itemid',43703),(7918,'history_str','itemid',43703),(7919,'history_text','itemid',43703),(7920,'history_uint','itemid',43703),(7921,'trends','itemid',43703),(7922,'trends_uint','itemid',43703),(7923,'events','itemid',43702),(7924,'history','itemid',43702),(7925,'history_log','itemid',43702),(7926,'history_str','itemid',43702),(7927,'history_text','itemid',43702),(7928,'history_uint','itemid',43702),(7929,'trends','itemid',43702),(7930,'trends_uint','itemid',43702),(7931,'events','itemid',43701),(7932,'history','itemid',43701),(7933,'history_log','itemid',43701),(7934,'history_str','itemid',43701),(7935,'history_text','itemid',43701),(7936,'history_uint','itemid',43701),(7937,'trends','itemid',43701),(7938,'trends_uint','itemid',43701),(7939,'events','itemid',43685),(7940,'history','itemid',43685),(7941,'history_log','itemid',43685),(7942,'history_str','itemid',43685),(7943,'history_text','itemid',43685),(7944,'history_uint','itemid',43685),(7945,'trends','itemid',43685),(7946,'trends_uint','itemid',43685),(7947,'events','itemid',43684),(7948,'history','itemid',43684),(7949,'history_log','itemid',43684),(7950,'history_str','itemid',43684),(7951,'history_text','itemid',43684),(7952,'history_uint','itemid',43684),(7953,'trends','itemid',43684),(7954,'trends_uint','itemid',43684),(7955,'events','itemid',43698),(7956,'history','itemid',43698),(7957,'history_log','itemid',43698),(7958,'history_str','itemid',43698),(7959,'history_text','itemid',43698),(7960,'history_uint','itemid',43698),(7961,'trends','itemid',43698),(7962,'trends_uint','itemid',43698),(7963,'events','itemid',43699),(7964,'history','itemid',43699),(7965,'history_log','itemid',43699),(7966,'history_str','itemid',43699),(7967,'history_text','itemid',43699),(7968,'history_uint','itemid',43699),(7969,'trends','itemid',43699),(7970,'trends_uint','itemid',43699),(7971,'events','itemid',43687),(7972,'history','itemid',43687),(7973,'history_log','itemid',43687),(7974,'history_str','itemid',43687),(7975,'history_text','itemid',43687),(7976,'history_uint','itemid',43687),(7977,'trends','itemid',43687),(7978,'trends_uint','itemid',43687),(7979,'events','itemid',43697),(7980,'history','itemid',43697),(7981,'history_log','itemid',43697),(7982,'history_str','itemid',43697),(7983,'history_text','itemid',43697),(7984,'history_uint','itemid',43697),(7985,'trends','itemid',43697),(7986,'trends_uint','itemid',43697),(7987,'events','itemid',43696),(7988,'history','itemid',43696),(7989,'history_log','itemid',43696),(7990,'history_str','itemid',43696),(7991,'history_text','itemid',43696),(7992,'history_uint','itemid',43696),(7993,'trends','itemid',43696),(7994,'trends_uint','itemid',43696),(7995,'events','itemid',43695),(7996,'history','itemid',43695),(7997,'history_log','itemid',43695),(7998,'history_str','itemid',43695),(7999,'history_text','itemid',43695),(8000,'history_uint','itemid',43695),(8001,'trends','itemid',43695),(8002,'trends_uint','itemid',43695),(8003,'events','itemid',43694),(8004,'history','itemid',43694),(8005,'history_log','itemid',43694),(8006,'history_str','itemid',43694),(8007,'history_text','itemid',43694),(8008,'history_uint','itemid',43694),(8009,'trends','itemid',43694),(8010,'trends_uint','itemid',43694),(8011,'events','itemid',43693),(8012,'history','itemid',43693),(8013,'history_log','itemid',43693),(8014,'history_str','itemid',43693),(8015,'history_text','itemid',43693),(8016,'history_uint','itemid',43693),(8017,'trends','itemid',43693),(8018,'trends_uint','itemid',43693),(8019,'events','itemid',43692),(8020,'history','itemid',43692),(8021,'history_log','itemid',43692),(8022,'history_str','itemid',43692),(8023,'history_text','itemid',43692),(8024,'history_uint','itemid',43692),(8025,'trends','itemid',43692),(8026,'trends_uint','itemid',43692),(8027,'events','itemid',43691),(8028,'history','itemid',43691),(8029,'history_log','itemid',43691),(8030,'history_str','itemid',43691),(8031,'history_text','itemid',43691),(8032,'history_uint','itemid',43691),(8033,'trends','itemid',43691),(8034,'trends_uint','itemid',43691),(8035,'events','itemid',43690),(8036,'history','itemid',43690),(8037,'history_log','itemid',43690),(8038,'history_str','itemid',43690),(8039,'history_text','itemid',43690),(8040,'history_uint','itemid',43690),(8041,'trends','itemid',43690),(8042,'trends_uint','itemid',43690),(8043,'events','itemid',43689),(8044,'history','itemid',43689),(8045,'history_log','itemid',43689),(8046,'history_str','itemid',43689),(8047,'history_text','itemid',43689),(8048,'history_uint','itemid',43689),(8049,'trends','itemid',43689),(8050,'trends_uint','itemid',43689),(8051,'events','itemid',43688),(8052,'history','itemid',43688),(8053,'history_log','itemid',43688),(8054,'history_str','itemid',43688),(8055,'history_text','itemid',43688),(8056,'history_uint','itemid',43688),(8057,'trends','itemid',43688),(8058,'trends_uint','itemid',43688),(8059,'events','itemid',43710),(8060,'history','itemid',43710),(8061,'history_log','itemid',43710),(8062,'history_str','itemid',43710),(8063,'history_text','itemid',43710),(8064,'history_uint','itemid',43710),(8065,'trends','itemid',43710),(8066,'trends_uint','itemid',43710),(8067,'events','itemid',43716),(8068,'history','itemid',43716),(8069,'history_log','itemid',43716),(8070,'history_str','itemid',43716),(8071,'history_text','itemid',43716),(8072,'history_uint','itemid',43716),(8073,'trends','itemid',43716),(8074,'trends_uint','itemid',43716),(8075,'events','itemid',43714),(8076,'history','itemid',43714),(8077,'history_log','itemid',43714),(8078,'history_str','itemid',43714),(8079,'history_text','itemid',43714),(8080,'history_uint','itemid',43714),(8081,'trends','itemid',43714),(8082,'trends_uint','itemid',43714),(8083,'events','itemid',43717),(8084,'history','itemid',43717),(8085,'history_log','itemid',43717),(8086,'history_str','itemid',43717),(8087,'history_text','itemid',43717),(8088,'history_uint','itemid',43717),(8089,'trends','itemid',43717),(8090,'trends_uint','itemid',43717),(8091,'events','itemid',43743),(8092,'history','itemid',43743),(8093,'history_log','itemid',43743),(8094,'history_str','itemid',43743),(8095,'history_text','itemid',43743),(8096,'history_uint','itemid',43743),(8097,'trends','itemid',43743),(8098,'trends_uint','itemid',43743),(8099,'events','itemid',43745),(8100,'history','itemid',43745),(8101,'history_log','itemid',43745),(8102,'history_str','itemid',43745),(8103,'history_text','itemid',43745),(8104,'history_uint','itemid',43745),(8105,'trends','itemid',43745),(8106,'trends_uint','itemid',43745),(8107,'events','itemid',43746),(8108,'history','itemid',43746),(8109,'history_log','itemid',43746),(8110,'history_str','itemid',43746),(8111,'history_text','itemid',43746),(8112,'history_uint','itemid',43746),(8113,'trends','itemid',43746),(8114,'trends_uint','itemid',43746),(8115,'events','itemid',43747),(8116,'history','itemid',43747),(8117,'history_log','itemid',43747),(8118,'history_str','itemid',43747),(8119,'history_text','itemid',43747),(8120,'history_uint','itemid',43747),(8121,'trends','itemid',43747),(8122,'trends_uint','itemid',43747),(8123,'events','itemid',43748),(8124,'history','itemid',43748),(8125,'history_log','itemid',43748),(8126,'history_str','itemid',43748),(8127,'history_text','itemid',43748),(8128,'history_uint','itemid',43748),(8129,'trends','itemid',43748),(8130,'trends_uint','itemid',43748),(8131,'events','itemid',43749),(8132,'history','itemid',43749),(8133,'history_log','itemid',43749),(8134,'history_str','itemid',43749),(8135,'history_text','itemid',43749),(8136,'history_uint','itemid',43749),(8137,'trends','itemid',43749),(8138,'trends_uint','itemid',43749),(8139,'events','itemid',43750),(8140,'history','itemid',43750),(8141,'history_log','itemid',43750),(8142,'history_str','itemid',43750),(8143,'history_text','itemid',43750),(8144,'history_uint','itemid',43750),(8145,'trends','itemid',43750),(8146,'trends_uint','itemid',43750),(8147,'events','itemid',43751),(8148,'history','itemid',43751),(8149,'history_log','itemid',43751),(8150,'history_str','itemid',43751),(8151,'history_text','itemid',43751),(8152,'history_uint','itemid',43751),(8153,'trends','itemid',43751),(8154,'trends_uint','itemid',43751),(8155,'events','itemid',43752),(8156,'history','itemid',43752),(8157,'history_log','itemid',43752),(8158,'history_str','itemid',43752),(8159,'history_text','itemid',43752),(8160,'history_uint','itemid',43752),(8161,'trends','itemid',43752),(8162,'trends_uint','itemid',43752),(8163,'events','itemid',43753),(8164,'history','itemid',43753),(8165,'history_log','itemid',43753),(8166,'history_str','itemid',43753),(8167,'history_text','itemid',43753),(8168,'history_uint','itemid',43753),(8169,'trends','itemid',43753),(8170,'trends_uint','itemid',43753),(8171,'events','itemid',43754),(8172,'history','itemid',43754),(8173,'history_log','itemid',43754),(8174,'history_str','itemid',43754),(8175,'history_text','itemid',43754),(8176,'history_uint','itemid',43754),(8177,'trends','itemid',43754),(8178,'trends_uint','itemid',43754),(8179,'events','itemid',43744),(8180,'history','itemid',43744),(8181,'history_log','itemid',43744),(8182,'history_str','itemid',43744),(8183,'history_text','itemid',43744),(8184,'history_uint','itemid',43744),(8185,'trends','itemid',43744),(8186,'trends_uint','itemid',43744),(8187,'events','itemid',43755),(8188,'history','itemid',43755),(8189,'history_log','itemid',43755),(8190,'history_str','itemid',43755),(8191,'history_text','itemid',43755),(8192,'history_uint','itemid',43755),(8193,'trends','itemid',43755),(8194,'trends_uint','itemid',43755),(8195,'events','itemid',43757),(8196,'history','itemid',43757),(8197,'history_log','itemid',43757),(8198,'history_str','itemid',43757),(8199,'history_text','itemid',43757),(8200,'history_uint','itemid',43757),(8201,'trends','itemid',43757),(8202,'trends_uint','itemid',43757),(8203,'events','itemid',43758),(8204,'history','itemid',43758),(8205,'history_log','itemid',43758),(8206,'history_str','itemid',43758),(8207,'history_text','itemid',43758),(8208,'history_uint','itemid',43758),(8209,'trends','itemid',43758),(8210,'trends_uint','itemid',43758),(8211,'events','itemid',43759),(8212,'history','itemid',43759),(8213,'history_log','itemid',43759),(8214,'history_str','itemid',43759),(8215,'history_text','itemid',43759),(8216,'history_uint','itemid',43759),(8217,'trends','itemid',43759),(8218,'trends_uint','itemid',43759),(8219,'events','itemid',43760),(8220,'history','itemid',43760),(8221,'history_log','itemid',43760),(8222,'history_str','itemid',43760),(8223,'history_text','itemid',43760),(8224,'history_uint','itemid',43760),(8225,'trends','itemid',43760),(8226,'trends_uint','itemid',43760),(8227,'events','itemid',43761),(8228,'history','itemid',43761),(8229,'history_log','itemid',43761),(8230,'history_str','itemid',43761),(8231,'history_text','itemid',43761),(8232,'history_uint','itemid',43761),(8233,'trends','itemid',43761),(8234,'trends_uint','itemid',43761),(8235,'events','itemid',43762),(8236,'history','itemid',43762),(8237,'history_log','itemid',43762),(8238,'history_str','itemid',43762),(8239,'history_text','itemid',43762),(8240,'history_uint','itemid',43762),(8241,'trends','itemid',43762),(8242,'trends_uint','itemid',43762),(8243,'events','itemid',43763),(8244,'history','itemid',43763),(8245,'history_log','itemid',43763),(8246,'history_str','itemid',43763),(8247,'history_text','itemid',43763),(8248,'history_uint','itemid',43763),(8249,'trends','itemid',43763),(8250,'trends_uint','itemid',43763),(8251,'events','itemid',43715),(8252,'history','itemid',43715),(8253,'history_log','itemid',43715),(8254,'history_str','itemid',43715),(8255,'history_text','itemid',43715),(8256,'history_uint','itemid',43715),(8257,'trends','itemid',43715),(8258,'trends_uint','itemid',43715),(8259,'events','itemid',43764),(8260,'history','itemid',43764),(8261,'history_log','itemid',43764),(8262,'history_str','itemid',43764),(8263,'history_text','itemid',43764),(8264,'history_uint','itemid',43764),(8265,'trends','itemid',43764),(8266,'trends_uint','itemid',43764),(8267,'events','itemid',43765),(8268,'history','itemid',43765),(8269,'history_log','itemid',43765),(8270,'history_str','itemid',43765),(8271,'history_text','itemid',43765),(8272,'history_uint','itemid',43765),(8273,'trends','itemid',43765),(8274,'trends_uint','itemid',43765),(8275,'events','itemid',43766),(8276,'history','itemid',43766),(8277,'history_log','itemid',43766),(8278,'history_str','itemid',43766),(8279,'history_text','itemid',43766),(8280,'history_uint','itemid',43766),(8281,'trends','itemid',43766),(8282,'trends_uint','itemid',43766),(8283,'events','itemid',43756),(8284,'history','itemid',43756),(8285,'history_log','itemid',43756),(8286,'history_str','itemid',43756),(8287,'history_text','itemid',43756),(8288,'history_uint','itemid',43756),(8289,'trends','itemid',43756),(8290,'trends_uint','itemid',43756),(8291,'events','itemid',43742),(8292,'history','itemid',43742),(8293,'history_log','itemid',43742),(8294,'history_str','itemid',43742),(8295,'history_text','itemid',43742),(8296,'history_uint','itemid',43742),(8297,'trends','itemid',43742),(8298,'trends_uint','itemid',43742),(8299,'events','itemid',43729),(8300,'history','itemid',43729),(8301,'history_log','itemid',43729),(8302,'history_str','itemid',43729),(8303,'history_text','itemid',43729),(8304,'history_uint','itemid',43729),(8305,'trends','itemid',43729),(8306,'trends_uint','itemid',43729),(8307,'events','itemid',43741),(8308,'history','itemid',43741),(8309,'history_log','itemid',43741),(8310,'history_str','itemid',43741),(8311,'history_text','itemid',43741),(8312,'history_uint','itemid',43741),(8313,'trends','itemid',43741),(8314,'trends_uint','itemid',43741),(8315,'events','itemid',43719),(8316,'history','itemid',43719),(8317,'history_log','itemid',43719),(8318,'history_str','itemid',43719),(8319,'history_text','itemid',43719),(8320,'history_uint','itemid',43719),(8321,'trends','itemid',43719),(8322,'trends_uint','itemid',43719),(8323,'events','itemid',43720),(8324,'history','itemid',43720),(8325,'history_log','itemid',43720),(8326,'history_str','itemid',43720),(8327,'history_text','itemid',43720),(8328,'history_uint','itemid',43720),(8329,'trends','itemid',43720),(8330,'trends_uint','itemid',43720),(8331,'events','itemid',43721),(8332,'history','itemid',43721),(8333,'history_log','itemid',43721),(8334,'history_str','itemid',43721),(8335,'history_text','itemid',43721),(8336,'history_uint','itemid',43721),(8337,'trends','itemid',43721),(8338,'trends_uint','itemid',43721),(8339,'events','itemid',43722),(8340,'history','itemid',43722),(8341,'history_log','itemid',43722),(8342,'history_str','itemid',43722),(8343,'history_text','itemid',43722),(8344,'history_uint','itemid',43722),(8345,'trends','itemid',43722),(8346,'trends_uint','itemid',43722),(8347,'events','itemid',43723),(8348,'history','itemid',43723),(8349,'history_log','itemid',43723),(8350,'history_str','itemid',43723),(8351,'history_text','itemid',43723),(8352,'history_uint','itemid',43723),(8353,'trends','itemid',43723),(8354,'trends_uint','itemid',43723),(8355,'events','itemid',43724),(8356,'history','itemid',43724),(8357,'history_log','itemid',43724),(8358,'history_str','itemid',43724),(8359,'history_text','itemid',43724),(8360,'history_uint','itemid',43724),(8361,'trends','itemid',43724),(8362,'trends_uint','itemid',43724),(8363,'events','itemid',43725),(8364,'history','itemid',43725),(8365,'history_log','itemid',43725),(8366,'history_str','itemid',43725),(8367,'history_text','itemid',43725),(8368,'history_uint','itemid',43725),(8369,'trends','itemid',43725),(8370,'trends_uint','itemid',43725),(8371,'events','itemid',43726),(8372,'history','itemid',43726),(8373,'history_log','itemid',43726),(8374,'history_str','itemid',43726),(8375,'history_text','itemid',43726),(8376,'history_uint','itemid',43726),(8377,'trends','itemid',43726),(8378,'trends_uint','itemid',43726),(8379,'events','itemid',43727),(8380,'history','itemid',43727),(8381,'history_log','itemid',43727),(8382,'history_str','itemid',43727),(8383,'history_text','itemid',43727),(8384,'history_uint','itemid',43727),(8385,'trends','itemid',43727),(8386,'trends_uint','itemid',43727),(8387,'events','itemid',43718),(8388,'history','itemid',43718),(8389,'history_log','itemid',43718),(8390,'history_str','itemid',43718),(8391,'history_text','itemid',43718),(8392,'history_uint','itemid',43718),(8393,'trends','itemid',43718),(8394,'trends_uint','itemid',43718),(8395,'events','itemid',43728),(8396,'history','itemid',43728),(8397,'history_log','itemid',43728),(8398,'history_str','itemid',43728),(8399,'history_text','itemid',43728),(8400,'history_uint','itemid',43728),(8401,'trends','itemid',43728),(8402,'trends_uint','itemid',43728),(8403,'events','itemid',43730),(8404,'history','itemid',43730),(8405,'history_log','itemid',43730),(8406,'history_str','itemid',43730),(8407,'history_text','itemid',43730),(8408,'history_uint','itemid',43730),(8409,'trends','itemid',43730),(8410,'trends_uint','itemid',43730),(8411,'events','itemid',43731),(8412,'history','itemid',43731),(8413,'history_log','itemid',43731),(8414,'history_str','itemid',43731),(8415,'history_text','itemid',43731),(8416,'history_uint','itemid',43731),(8417,'trends','itemid',43731),(8418,'trends_uint','itemid',43731),(8419,'events','itemid',43732),(8420,'history','itemid',43732),(8421,'history_log','itemid',43732),(8422,'history_str','itemid',43732),(8423,'history_text','itemid',43732),(8424,'history_uint','itemid',43732),(8425,'trends','itemid',43732),(8426,'trends_uint','itemid',43732),(8427,'events','itemid',43733),(8428,'history','itemid',43733),(8429,'history_log','itemid',43733),(8430,'history_str','itemid',43733),(8431,'history_text','itemid',43733),(8432,'history_uint','itemid',43733),(8433,'trends','itemid',43733),(8434,'trends_uint','itemid',43733),(8435,'events','itemid',43734),(8436,'history','itemid',43734),(8437,'history_log','itemid',43734),(8438,'history_str','itemid',43734),(8439,'history_text','itemid',43734),(8440,'history_uint','itemid',43734),(8441,'trends','itemid',43734),(8442,'trends_uint','itemid',43734),(8443,'events','itemid',43735),(8444,'history','itemid',43735),(8445,'history_log','itemid',43735),(8446,'history_str','itemid',43735),(8447,'history_text','itemid',43735),(8448,'history_uint','itemid',43735),(8449,'trends','itemid',43735),(8450,'trends_uint','itemid',43735),(8451,'events','itemid',43736),(8452,'history','itemid',43736),(8453,'history_log','itemid',43736),(8454,'history_str','itemid',43736),(8455,'history_text','itemid',43736),(8456,'history_uint','itemid',43736),(8457,'trends','itemid',43736),(8458,'trends_uint','itemid',43736),(8459,'events','itemid',43737),(8460,'history','itemid',43737),(8461,'history_log','itemid',43737),(8462,'history_str','itemid',43737),(8463,'history_text','itemid',43737),(8464,'history_uint','itemid',43737),(8465,'trends','itemid',43737),(8466,'trends_uint','itemid',43737),(8467,'events','itemid',43738),(8468,'history','itemid',43738),(8469,'history_log','itemid',43738),(8470,'history_str','itemid',43738),(8471,'history_text','itemid',43738),(8472,'history_uint','itemid',43738),(8473,'trends','itemid',43738),(8474,'trends_uint','itemid',43738),(8475,'events','itemid',43739),(8476,'history','itemid',43739),(8477,'history_log','itemid',43739),(8478,'history_str','itemid',43739),(8479,'history_text','itemid',43739),(8480,'history_uint','itemid',43739),(8481,'trends','itemid',43739),(8482,'trends_uint','itemid',43739),(8483,'events','itemid',43740),(8484,'history','itemid',43740),(8485,'history_log','itemid',43740),(8486,'history_str','itemid',43740),(8487,'history_text','itemid',43740),(8488,'history_uint','itemid',43740),(8489,'trends','itemid',43740),(8490,'trends_uint','itemid',43740),(8491,'events','itemid',43767),(8492,'history','itemid',43767),(8493,'history_log','itemid',43767),(8494,'history_str','itemid',43767),(8495,'history_text','itemid',43767),(8496,'history_uint','itemid',43767),(8497,'trends','itemid',43767),(8498,'trends_uint','itemid',43767),(8499,'events','itemid',44163),(8500,'history','itemid',44163),(8501,'history_log','itemid',44163),(8502,'history_str','itemid',44163),(8503,'history_text','itemid',44163),(8504,'history_uint','itemid',44163),(8505,'trends','itemid',44163),(8506,'trends_uint','itemid',44163),(8507,'events','itemid',44173),(8508,'history','itemid',44173),(8509,'history_log','itemid',44173),(8510,'history_str','itemid',44173),(8511,'history_text','itemid',44173),(8512,'history_uint','itemid',44173),(8513,'trends','itemid',44173),(8514,'trends_uint','itemid',44173),(8515,'events','itemid',44180),(8516,'history','itemid',44180),(8517,'history_log','itemid',44180),(8518,'history_str','itemid',44180),(8519,'history_text','itemid',44180),(8520,'history_uint','itemid',44180),(8521,'trends','itemid',44180),(8522,'trends_uint','itemid',44180),(8523,'events','itemid',44179),(8524,'history','itemid',44179),(8525,'history_log','itemid',44179),(8526,'history_str','itemid',44179),(8527,'history_text','itemid',44179),(8528,'history_uint','itemid',44179),(8529,'trends','itemid',44179),(8530,'trends_uint','itemid',44179),(8531,'events','itemid',44178),(8532,'history','itemid',44178),(8533,'history_log','itemid',44178),(8534,'history_str','itemid',44178),(8535,'history_text','itemid',44178),(8536,'history_uint','itemid',44178),(8537,'trends','itemid',44178),(8538,'trends_uint','itemid',44178),(8539,'events','itemid',44177),(8540,'history','itemid',44177),(8541,'history_log','itemid',44177),(8542,'history_str','itemid',44177),(8543,'history_text','itemid',44177),(8544,'history_uint','itemid',44177),(8545,'trends','itemid',44177),(8546,'trends_uint','itemid',44177),(8547,'events','itemid',44176),(8548,'history','itemid',44176),(8549,'history_log','itemid',44176),(8550,'history_str','itemid',44176),(8551,'history_text','itemid',44176),(8552,'history_uint','itemid',44176),(8553,'trends','itemid',44176),(8554,'trends_uint','itemid',44176),(8555,'events','itemid',44175),(8556,'history','itemid',44175),(8557,'history_log','itemid',44175),(8558,'history_str','itemid',44175),(8559,'history_text','itemid',44175),(8560,'history_uint','itemid',44175),(8561,'trends','itemid',44175),(8562,'trends_uint','itemid',44175),(8563,'events','itemid',44174),(8564,'history','itemid',44174),(8565,'history_log','itemid',44174),(8566,'history_str','itemid',44174),(8567,'history_text','itemid',44174),(8568,'history_uint','itemid',44174),(8569,'trends','itemid',44174),(8570,'trends_uint','itemid',44174),(8571,'events','itemid',44161),(8572,'history','itemid',44161),(8573,'history_log','itemid',44161),(8574,'history_str','itemid',44161),(8575,'history_text','itemid',44161),(8576,'history_uint','itemid',44161),(8577,'trends','itemid',44161),(8578,'trends_uint','itemid',44161),(8579,'events','itemid',44172),(8580,'history','itemid',44172),(8581,'history_log','itemid',44172),(8582,'history_str','itemid',44172),(8583,'history_text','itemid',44172),(8584,'history_uint','itemid',44172),(8585,'trends','itemid',44172),(8586,'trends_uint','itemid',44172),(8587,'events','itemid',44164),(8588,'history','itemid',44164),(8589,'history_log','itemid',44164),(8590,'history_str','itemid',44164),(8591,'history_text','itemid',44164),(8592,'history_uint','itemid',44164),(8593,'trends','itemid',44164),(8594,'trends_uint','itemid',44164),(8595,'events','itemid',44171),(8596,'history','itemid',44171),(8597,'history_log','itemid',44171),(8598,'history_str','itemid',44171),(8599,'history_text','itemid',44171),(8600,'history_uint','itemid',44171),(8601,'trends','itemid',44171),(8602,'trends_uint','itemid',44171),(8603,'events','itemid',44170),(8604,'history','itemid',44170),(8605,'history_log','itemid',44170),(8606,'history_str','itemid',44170),(8607,'history_text','itemid',44170),(8608,'history_uint','itemid',44170),(8609,'trends','itemid',44170),(8610,'trends_uint','itemid',44170),(8611,'events','itemid',44169),(8612,'history','itemid',44169),(8613,'history_log','itemid',44169),(8614,'history_str','itemid',44169),(8615,'history_text','itemid',44169),(8616,'history_uint','itemid',44169),(8617,'trends','itemid',44169),(8618,'trends_uint','itemid',44169),(8619,'events','itemid',44168),(8620,'history','itemid',44168),(8621,'history_log','itemid',44168),(8622,'history_str','itemid',44168),(8623,'history_text','itemid',44168),(8624,'history_uint','itemid',44168),(8625,'trends','itemid',44168),(8626,'trends_uint','itemid',44168),(8627,'events','itemid',44167),(8628,'history','itemid',44167),(8629,'history_log','itemid',44167),(8630,'history_str','itemid',44167),(8631,'history_text','itemid',44167),(8632,'history_uint','itemid',44167),(8633,'trends','itemid',44167),(8634,'trends_uint','itemid',44167),(8635,'events','itemid',44166),(8636,'history','itemid',44166),(8637,'history_log','itemid',44166),(8638,'history_str','itemid',44166),(8639,'history_text','itemid',44166),(8640,'history_uint','itemid',44166),(8641,'trends','itemid',44166),(8642,'trends_uint','itemid',44166),(8643,'events','itemid',44165),(8644,'history','itemid',44165),(8645,'history_log','itemid',44165),(8646,'history_str','itemid',44165),(8647,'history_text','itemid',44165),(8648,'history_uint','itemid',44165),(8649,'trends','itemid',44165),(8650,'trends_uint','itemid',44165),(8651,'events','itemid',44181),(8652,'history','itemid',44181),(8653,'history_log','itemid',44181),(8654,'history_str','itemid',44181),(8655,'history_text','itemid',44181),(8656,'history_uint','itemid',44181),(8657,'trends','itemid',44181),(8658,'trends_uint','itemid',44181),(8659,'events','itemid',44182),(8660,'history','itemid',44182),(8661,'history_log','itemid',44182),(8662,'history_str','itemid',44182),(8663,'history_text','itemid',44182),(8664,'history_uint','itemid',44182),(8665,'trends','itemid',44182),(8666,'trends_uint','itemid',44182),(8667,'events','itemid',44192),(8668,'history','itemid',44192),(8669,'history_log','itemid',44192),(8670,'history_str','itemid',44192),(8671,'history_text','itemid',44192),(8672,'history_uint','itemid',44192),(8673,'trends','itemid',44192),(8674,'trends_uint','itemid',44192),(8675,'events','itemid',44198),(8676,'history','itemid',44198),(8677,'history_log','itemid',44198),(8678,'history_str','itemid',44198),(8679,'history_text','itemid',44198),(8680,'history_uint','itemid',44198),(8681,'trends','itemid',44198),(8682,'trends_uint','itemid',44198),(8683,'events','itemid',44197),(8684,'history','itemid',44197),(8685,'history_log','itemid',44197),(8686,'history_str','itemid',44197),(8687,'history_text','itemid',44197),(8688,'history_uint','itemid',44197),(8689,'trends','itemid',44197),(8690,'trends_uint','itemid',44197),(8691,'events','itemid',44196),(8692,'history','itemid',44196),(8693,'history_log','itemid',44196),(8694,'history_str','itemid',44196),(8695,'history_text','itemid',44196),(8696,'history_uint','itemid',44196),(8697,'trends','itemid',44196),(8698,'trends_uint','itemid',44196),(8699,'events','itemid',44195),(8700,'history','itemid',44195),(8701,'history_log','itemid',44195),(8702,'history_str','itemid',44195),(8703,'history_text','itemid',44195),(8704,'history_uint','itemid',44195),(8705,'trends','itemid',44195),(8706,'trends_uint','itemid',44195),(8707,'events','itemid',44162),(8708,'history','itemid',44162),(8709,'history_log','itemid',44162),(8710,'history_str','itemid',44162),(8711,'history_text','itemid',44162),(8712,'history_uint','itemid',44162),(8713,'trends','itemid',44162),(8714,'trends_uint','itemid',44162),(8715,'events','itemid',44194),(8716,'history','itemid',44194),(8717,'history_log','itemid',44194),(8718,'history_str','itemid',44194),(8719,'history_text','itemid',44194),(8720,'history_uint','itemid',44194),(8721,'trends','itemid',44194),(8722,'trends_uint','itemid',44194),(8723,'events','itemid',44193),(8724,'history','itemid',44193),(8725,'history_log','itemid',44193),(8726,'history_str','itemid',44193),(8727,'history_text','itemid',44193),(8728,'history_uint','itemid',44193),(8729,'trends','itemid',44193),(8730,'trends_uint','itemid',44193),(8731,'events','itemid',44190),(8732,'history','itemid',44190),(8733,'history_log','itemid',44190),(8734,'history_str','itemid',44190),(8735,'history_text','itemid',44190),(8736,'history_uint','itemid',44190),(8737,'trends','itemid',44190),(8738,'trends_uint','itemid',44190),(8739,'events','itemid',44191),(8740,'history','itemid',44191),(8741,'history_log','itemid',44191),(8742,'history_str','itemid',44191),(8743,'history_text','itemid',44191),(8744,'history_uint','itemid',44191),(8745,'trends','itemid',44191),(8746,'trends_uint','itemid',44191),(8747,'events','itemid',44183),(8748,'history','itemid',44183),(8749,'history_log','itemid',44183),(8750,'history_str','itemid',44183),(8751,'history_text','itemid',44183),(8752,'history_uint','itemid',44183),(8753,'trends','itemid',44183),(8754,'trends_uint','itemid',44183),(8755,'events','itemid',44189),(8756,'history','itemid',44189),(8757,'history_log','itemid',44189),(8758,'history_str','itemid',44189),(8759,'history_text','itemid',44189),(8760,'history_uint','itemid',44189),(8761,'trends','itemid',44189),(8762,'trends_uint','itemid',44189),(8763,'events','itemid',44188),(8764,'history','itemid',44188),(8765,'history_log','itemid',44188),(8766,'history_str','itemid',44188),(8767,'history_text','itemid',44188),(8768,'history_uint','itemid',44188),(8769,'trends','itemid',44188),(8770,'trends_uint','itemid',44188),(8771,'events','itemid',44187),(8772,'history','itemid',44187),(8773,'history_log','itemid',44187),(8774,'history_str','itemid',44187),(8775,'history_text','itemid',44187),(8776,'history_uint','itemid',44187),(8777,'trends','itemid',44187),(8778,'trends_uint','itemid',44187),(8779,'events','itemid',44186),(8780,'history','itemid',44186),(8781,'history_log','itemid',44186),(8782,'history_str','itemid',44186),(8783,'history_text','itemid',44186),(8784,'history_uint','itemid',44186),(8785,'trends','itemid',44186),(8786,'trends_uint','itemid',44186),(8787,'events','itemid',44185),(8788,'history','itemid',44185),(8789,'history_log','itemid',44185),(8790,'history_str','itemid',44185),(8791,'history_text','itemid',44185),(8792,'history_uint','itemid',44185),(8793,'trends','itemid',44185),(8794,'trends_uint','itemid',44185),(8795,'events','itemid',44184),(8796,'history','itemid',44184),(8797,'history_log','itemid',44184),(8798,'history_str','itemid',44184),(8799,'history_text','itemid',44184),(8800,'history_uint','itemid',44184),(8801,'trends','itemid',44184),(8802,'trends_uint','itemid',44184),(8803,'events','itemid',44199),(8804,'history','itemid',44199),(8805,'history_log','itemid',44199),(8806,'history_str','itemid',44199),(8807,'history_text','itemid',44199),(8808,'history_uint','itemid',44199),(8809,'trends','itemid',44199),(8810,'trends_uint','itemid',44199),(8811,'events','itemid',44250),(8812,'history','itemid',44250),(8813,'history_log','itemid',44250),(8814,'history_str','itemid',44250),(8815,'history_text','itemid',44250),(8816,'history_uint','itemid',44250),(8817,'trends','itemid',44250),(8818,'trends_uint','itemid',44250),(8819,'events','itemid',44263),(8820,'history','itemid',44263),(8821,'history_log','itemid',44263),(8822,'history_str','itemid',44263),(8823,'history_text','itemid',44263),(8824,'history_uint','itemid',44263),(8825,'trends','itemid',44263),(8826,'trends_uint','itemid',44263),(8827,'events','itemid',44272),(8828,'history','itemid',44272),(8829,'history_log','itemid',44272),(8830,'history_str','itemid',44272),(8831,'history_text','itemid',44272),(8832,'history_uint','itemid',44272),(8833,'trends','itemid',44272),(8834,'trends_uint','itemid',44272),(8835,'events','itemid',44271),(8836,'history','itemid',44271),(8837,'history_log','itemid',44271),(8838,'history_str','itemid',44271),(8839,'history_text','itemid',44271),(8840,'history_uint','itemid',44271),(8841,'trends','itemid',44271),(8842,'trends_uint','itemid',44271),(8843,'events','itemid',44270),(8844,'history','itemid',44270),(8845,'history_log','itemid',44270),(8846,'history_str','itemid',44270),(8847,'history_text','itemid',44270),(8848,'history_uint','itemid',44270),(8849,'trends','itemid',44270),(8850,'trends_uint','itemid',44270),(8851,'events','itemid',44269),(8852,'history','itemid',44269),(8853,'history_log','itemid',44269),(8854,'history_str','itemid',44269),(8855,'history_text','itemid',44269),(8856,'history_uint','itemid',44269),(8857,'trends','itemid',44269),(8858,'trends_uint','itemid',44269),(8859,'events','itemid',44268),(8860,'history','itemid',44268),(8861,'history_log','itemid',44268),(8862,'history_str','itemid',44268),(8863,'history_text','itemid',44268),(8864,'history_uint','itemid',44268),(8865,'trends','itemid',44268),(8866,'trends_uint','itemid',44268),(8867,'events','itemid',44267),(8868,'history','itemid',44267),(8869,'history_log','itemid',44267),(8870,'history_str','itemid',44267),(8871,'history_text','itemid',44267),(8872,'history_uint','itemid',44267),(8873,'trends','itemid',44267),(8874,'trends_uint','itemid',44267),(8875,'events','itemid',44266),(8876,'history','itemid',44266),(8877,'history_log','itemid',44266),(8878,'history_str','itemid',44266),(8879,'history_text','itemid',44266),(8880,'history_uint','itemid',44266),(8881,'trends','itemid',44266),(8882,'trends_uint','itemid',44266),(8883,'events','itemid',44248),(8884,'history','itemid',44248),(8885,'history_log','itemid',44248),(8886,'history_str','itemid',44248),(8887,'history_text','itemid',44248),(8888,'history_uint','itemid',44248),(8889,'trends','itemid',44248),(8890,'trends_uint','itemid',44248),(8891,'events','itemid',44265),(8892,'history','itemid',44265),(8893,'history_log','itemid',44265),(8894,'history_str','itemid',44265),(8895,'history_text','itemid',44265),(8896,'history_uint','itemid',44265),(8897,'trends','itemid',44265),(8898,'trends_uint','itemid',44265),(8899,'events','itemid',44264),(8900,'history','itemid',44264),(8901,'history_log','itemid',44264),(8902,'history_str','itemid',44264),(8903,'history_text','itemid',44264),(8904,'history_uint','itemid',44264),(8905,'trends','itemid',44264),(8906,'trends_uint','itemid',44264),(8907,'events','itemid',44261),(8908,'history','itemid',44261),(8909,'history_log','itemid',44261),(8910,'history_str','itemid',44261),(8911,'history_text','itemid',44261),(8912,'history_uint','itemid',44261),(8913,'trends','itemid',44261),(8914,'trends_uint','itemid',44261),(8915,'events','itemid',44262),(8916,'history','itemid',44262),(8917,'history_log','itemid',44262),(8918,'history_str','itemid',44262),(8919,'history_text','itemid',44262),(8920,'history_uint','itemid',44262),(8921,'trends','itemid',44262),(8922,'trends_uint','itemid',44262),(8923,'events','itemid',44251),(8924,'history','itemid',44251),(8925,'history_log','itemid',44251),(8926,'history_str','itemid',44251),(8927,'history_text','itemid',44251),(8928,'history_uint','itemid',44251),(8929,'trends','itemid',44251),(8930,'trends_uint','itemid',44251),(8931,'events','itemid',44260),(8932,'history','itemid',44260),(8933,'history_log','itemid',44260),(8934,'history_str','itemid',44260),(8935,'history_text','itemid',44260),(8936,'history_uint','itemid',44260),(8937,'trends','itemid',44260),(8938,'trends_uint','itemid',44260),(8939,'events','itemid',44259),(8940,'history','itemid',44259),(8941,'history_log','itemid',44259),(8942,'history_str','itemid',44259),(8943,'history_text','itemid',44259),(8944,'history_uint','itemid',44259),(8945,'trends','itemid',44259),(8946,'trends_uint','itemid',44259),(8947,'events','itemid',44258),(8948,'history','itemid',44258),(8949,'history_log','itemid',44258),(8950,'history_str','itemid',44258),(8951,'history_text','itemid',44258),(8952,'history_uint','itemid',44258),(8953,'trends','itemid',44258),(8954,'trends_uint','itemid',44258),(8955,'events','itemid',44257),(8956,'history','itemid',44257),(8957,'history_log','itemid',44257),(8958,'history_str','itemid',44257),(8959,'history_text','itemid',44257),(8960,'history_uint','itemid',44257),(8961,'trends','itemid',44257),(8962,'trends_uint','itemid',44257),(8963,'events','itemid',44256),(8964,'history','itemid',44256),(8965,'history_log','itemid',44256),(8966,'history_str','itemid',44256),(8967,'history_text','itemid',44256),(8968,'history_uint','itemid',44256),(8969,'trends','itemid',44256),(8970,'trends_uint','itemid',44256),(8971,'events','itemid',44255),(8972,'history','itemid',44255),(8973,'history_log','itemid',44255),(8974,'history_str','itemid',44255),(8975,'history_text','itemid',44255),(8976,'history_uint','itemid',44255),(8977,'trends','itemid',44255),(8978,'trends_uint','itemid',44255),(8979,'events','itemid',44254),(8980,'history','itemid',44254),(8981,'history_log','itemid',44254),(8982,'history_str','itemid',44254),(8983,'history_text','itemid',44254),(8984,'history_uint','itemid',44254),(8985,'trends','itemid',44254),(8986,'trends_uint','itemid',44254),(8987,'events','itemid',44253),(8988,'history','itemid',44253),(8989,'history_log','itemid',44253),(8990,'history_str','itemid',44253),(8991,'history_text','itemid',44253),(8992,'history_uint','itemid',44253),(8993,'trends','itemid',44253),(8994,'trends_uint','itemid',44253),(8995,'events','itemid',44252),(8996,'history','itemid',44252),(8997,'history_log','itemid',44252),(8998,'history_str','itemid',44252),(8999,'history_text','itemid',44252),(9000,'history_uint','itemid',44252),(9001,'trends','itemid',44252),(9002,'trends_uint','itemid',44252),(9003,'events','itemid',44273),(9004,'history','itemid',44273),(9005,'history_log','itemid',44273),(9006,'history_str','itemid',44273),(9007,'history_text','itemid',44273),(9008,'history_uint','itemid',44273),(9009,'trends','itemid',44273),(9010,'trends_uint','itemid',44273),(9011,'events','itemid',44274),(9012,'history','itemid',44274),(9013,'history_log','itemid',44274),(9014,'history_str','itemid',44274),(9015,'history_text','itemid',44274),(9016,'history_uint','itemid',44274),(9017,'trends','itemid',44274),(9018,'trends_uint','itemid',44274),(9019,'events','itemid',44284),(9020,'history','itemid',44284),(9021,'history_log','itemid',44284),(9022,'history_str','itemid',44284),(9023,'history_text','itemid',44284),(9024,'history_uint','itemid',44284),(9025,'trends','itemid',44284),(9026,'trends_uint','itemid',44284),(9027,'events','itemid',44291),(9028,'history','itemid',44291),(9029,'history_log','itemid',44291),(9030,'history_str','itemid',44291),(9031,'history_text','itemid',44291),(9032,'history_uint','itemid',44291),(9033,'trends','itemid',44291),(9034,'trends_uint','itemid',44291),(9035,'events','itemid',44290),(9036,'history','itemid',44290),(9037,'history_log','itemid',44290),(9038,'history_str','itemid',44290),(9039,'history_text','itemid',44290),(9040,'history_uint','itemid',44290),(9041,'trends','itemid',44290),(9042,'trends_uint','itemid',44290),(9043,'events','itemid',44289),(9044,'history','itemid',44289),(9045,'history_log','itemid',44289),(9046,'history_str','itemid',44289),(9047,'history_text','itemid',44289),(9048,'history_uint','itemid',44289),(9049,'trends','itemid',44289),(9050,'trends_uint','itemid',44289),(9051,'events','itemid',44288),(9052,'history','itemid',44288),(9053,'history_log','itemid',44288),(9054,'history_str','itemid',44288),(9055,'history_text','itemid',44288),(9056,'history_uint','itemid',44288),(9057,'trends','itemid',44288),(9058,'trends_uint','itemid',44288),(9059,'events','itemid',44249),(9060,'history','itemid',44249),(9061,'history_log','itemid',44249),(9062,'history_str','itemid',44249),(9063,'history_text','itemid',44249),(9064,'history_uint','itemid',44249),(9065,'trends','itemid',44249),(9066,'trends_uint','itemid',44249),(9067,'events','itemid',44287),(9068,'history','itemid',44287),(9069,'history_log','itemid',44287),(9070,'history_str','itemid',44287),(9071,'history_text','itemid',44287),(9072,'history_uint','itemid',44287),(9073,'trends','itemid',44287),(9074,'trends_uint','itemid',44287),(9075,'events','itemid',44286),(9076,'history','itemid',44286),(9077,'history_log','itemid',44286),(9078,'history_str','itemid',44286),(9079,'history_text','itemid',44286),(9080,'history_uint','itemid',44286),(9081,'trends','itemid',44286),(9082,'trends_uint','itemid',44286),(9083,'events','itemid',44285),(9084,'history','itemid',44285),(9085,'history_log','itemid',44285),(9086,'history_str','itemid',44285),(9087,'history_text','itemid',44285),(9088,'history_uint','itemid',44285),(9089,'trends','itemid',44285),(9090,'trends_uint','itemid',44285),(9091,'events','itemid',44283),(9092,'history','itemid',44283),(9093,'history_log','itemid',44283),(9094,'history_str','itemid',44283),(9095,'history_text','itemid',44283),(9096,'history_uint','itemid',44283),(9097,'trends','itemid',44283),(9098,'trends_uint','itemid',44283),(9099,'events','itemid',44275),(9100,'history','itemid',44275),(9101,'history_log','itemid',44275),(9102,'history_str','itemid',44275),(9103,'history_text','itemid',44275),(9104,'history_uint','itemid',44275),(9105,'trends','itemid',44275),(9106,'trends_uint','itemid',44275),(9107,'events','itemid',44282),(9108,'history','itemid',44282),(9109,'history_log','itemid',44282),(9110,'history_str','itemid',44282),(9111,'history_text','itemid',44282),(9112,'history_uint','itemid',44282),(9113,'trends','itemid',44282),(9114,'trends_uint','itemid',44282),(9115,'events','itemid',44281),(9116,'history','itemid',44281),(9117,'history_log','itemid',44281),(9118,'history_str','itemid',44281),(9119,'history_text','itemid',44281),(9120,'history_uint','itemid',44281),(9121,'trends','itemid',44281),(9122,'trends_uint','itemid',44281),(9123,'events','itemid',44280),(9124,'history','itemid',44280),(9125,'history_log','itemid',44280),(9126,'history_str','itemid',44280),(9127,'history_text','itemid',44280),(9128,'history_uint','itemid',44280),(9129,'trends','itemid',44280),(9130,'trends_uint','itemid',44280),(9131,'events','itemid',44279),(9132,'history','itemid',44279),(9133,'history_log','itemid',44279),(9134,'history_str','itemid',44279),(9135,'history_text','itemid',44279),(9136,'history_uint','itemid',44279),(9137,'trends','itemid',44279),(9138,'trends_uint','itemid',44279),(9139,'events','itemid',44278),(9140,'history','itemid',44278),(9141,'history_log','itemid',44278),(9142,'history_str','itemid',44278),(9143,'history_text','itemid',44278),(9144,'history_uint','itemid',44278),(9145,'trends','itemid',44278),(9146,'trends_uint','itemid',44278),(9147,'events','itemid',44277),(9148,'history','itemid',44277),(9149,'history_log','itemid',44277),(9150,'history_str','itemid',44277),(9151,'history_text','itemid',44277),(9152,'history_uint','itemid',44277),(9153,'trends','itemid',44277),(9154,'trends_uint','itemid',44277),(9155,'events','itemid',44276),(9156,'history','itemid',44276),(9157,'history_log','itemid',44276),(9158,'history_str','itemid',44276),(9159,'history_text','itemid',44276),(9160,'history_uint','itemid',44276),(9161,'trends','itemid',44276),(9162,'trends_uint','itemid',44276),(9163,'events','itemid',44292),(9164,'history','itemid',44292),(9165,'history_log','itemid',44292),(9166,'history_str','itemid',44292),(9167,'history_text','itemid',44292),(9168,'history_uint','itemid',44292),(9169,'trends','itemid',44292),(9170,'trends_uint','itemid',44292),(9171,'events','lldruleid',23540),(9172,'events','lldruleid',22907),(9173,'events','lldruleid',22984),(9174,'events','lldruleid',22987),(9175,'events','lldruleid',42684),(9176,'events','lldruleid',42685),(9177,'events','lldruleid',27031),(9178,'events','lldruleid',40454),(9179,'events','lldruleid',40455),(9180,'events','lldruleid',40643),(9181,'events','lldruleid',40644),(9182,'events','lldruleid',40645),(9183,'events','lldruleid',40646),(9184,'events','lldruleid',40647),(9185,'events','lldruleid',27475),(9186,'events','lldruleid',27473),(9187,'events','lldruleid',40719),(9188,'events','lldruleid',40720),(9189,'events','lldruleid',27474),(9190,'events','lldruleid',27476),(9191,'events','lldruleid',27515),(9192,'events','lldruleid',27512),(9193,'events','lldruleid',40742),(9194,'events','lldruleid',27514),(9195,'events','lldruleid',27513),(9196,'events','lldruleid',27551),(9197,'events','lldruleid',27548),(9198,'events','lldruleid',40763),(9199,'events','lldruleid',40764),(9200,'events','lldruleid',27550),(9201,'events','lldruleid',27549),(9202,'events','lldruleid',27589),(9203,'events','lldruleid',27587),(9204,'events','lldruleid',40786),(9205,'events','lldruleid',40787),(9206,'events','lldruleid',27588),(9207,'events','lldruleid',27669),(9208,'events','lldruleid',27667),(9209,'events','lldruleid',27665),(9210,'events','lldruleid',40832),(9211,'events','lldruleid',40833),(9212,'events','lldruleid',27668),(9213,'events','lldruleid',27666),(9214,'events','lldruleid',40656),(9215,'events','lldruleid',40657),(9216,'events','lldruleid',40658),(9217,'events','lldruleid',40659),(9218,'events','lldruleid',40660),(9219,'events','lldruleid',40661),(9220,'events','lldruleid',40662),(9221,'events','lldruleid',28353),(9222,'events','lldruleid',28349),(9223,'events','lldruleid',28352),(9224,'events','lldruleid',28350),(9225,'events','lldruleid',28348),(9226,'events','lldruleid',28347),(9227,'events','lldruleid',28346),(9228,'events','lldruleid',28351),(9229,'events','lldruleid',30065),(9230,'events','lldruleid',30064),(9231,'events','lldruleid',30061),(9232,'events','lldruleid',30062),(9233,'events','lldruleid',30059),(9234,'events','lldruleid',30058),(9235,'events','lldruleid',30057),(9236,'events','lldruleid',30060),(9237,'events','lldruleid',30063),(9238,'events','lldruleid',30147),(9239,'events','lldruleid',30148),(9240,'events','lldruleid',30193),(9241,'events','lldruleid',30194),(9242,'events','lldruleid',30195),(9243,'events','lldruleid',30236),(9244,'events','lldruleid',30237),(9245,'events','lldruleid',30238),(9246,'events','lldruleid',30571),(9247,'events','lldruleid',30572),(9248,'events','lldruleid',30713),(9249,'events','lldruleid',30874),(9250,'events','lldruleid',30875),(9251,'events','lldruleid',30876),(9252,'events','lldruleid',30961),(9253,'events','lldruleid',30962),(9254,'events','lldruleid',32619),(9255,'events','lldruleid',32620),(9256,'events','lldruleid',32668),(9257,'events','lldruleid',32669),(9258,'events','lldruleid',32866),(9259,'events','lldruleid',32867),(9260,'events','lldruleid',32868),(9261,'events','lldruleid',32869),(9262,'events','lldruleid',32870),(9263,'events','lldruleid',33520),(9264,'events','lldruleid',33521),(9265,'events','lldruleid',35280),(9266,'events','lldruleid',35281),(9267,'events','lldruleid',35282),(9268,'events','lldruleid',35283),(9269,'events','lldruleid',35284),(9270,'events','lldruleid',35285),(9271,'events','lldruleid',35286),(9272,'events','lldruleid',35287),(9273,'events','lldruleid',35288),(9274,'events','lldruleid',35289),(9275,'events','lldruleid',35424),(9276,'events','lldruleid',35425),(9277,'events','lldruleid',35426),(9278,'events','lldruleid',35427),(9279,'events','lldruleid',35428),(9280,'events','lldruleid',35429),(9281,'events','lldruleid',35430),(9282,'events','lldruleid',35431),(9283,'events','lldruleid',35432),(9284,'events','lldruleid',35433),(9285,'events','lldruleid',35434),(9286,'events','lldruleid',35435),(9287,'events','lldruleid',35436),(9288,'events','lldruleid',35437),(9289,'events','lldruleid',35438),(9290,'events','lldruleid',36168),(9291,'events','lldruleid',36169),(9292,'events','lldruleid',36170),(9293,'events','lldruleid',36171),(9294,'events','lldruleid',36172),(9295,'events','lldruleid',36173),(9296,'events','lldruleid',36174),(9297,'events','lldruleid',36175),(9298,'events','lldruleid',36176),(9299,'events','lldruleid',36177),(9300,'events','lldruleid',36219),(9301,'events','lldruleid',36220),(9302,'events','lldruleid',36221),(9303,'events','lldruleid',36222),(9304,'events','lldruleid',36223),(9305,'events','lldruleid',36224),(9306,'events','lldruleid',36225),(9307,'events','lldruleid',36226),(9308,'events','lldruleid',36268),(9309,'events','lldruleid',36269),(9310,'events','lldruleid',36270),(9311,'events','lldruleid',36271),(9312,'events','lldruleid',36272),(9313,'events','lldruleid',36273),(9314,'events','lldruleid',36274),(9315,'events','lldruleid',36301),(9316,'events','lldruleid',36302),(9317,'events','lldruleid',36303),(9318,'events','lldruleid',36304),(9319,'events','lldruleid',36305),(9320,'events','lldruleid',36306),(9321,'events','lldruleid',36307),(9322,'events','lldruleid',36308),(9323,'events','lldruleid',36350),(9324,'events','lldruleid',36351),(9325,'events','lldruleid',36352),(9326,'events','lldruleid',36353),(9327,'events','lldruleid',36354),(9328,'events','lldruleid',36355),(9329,'events','lldruleid',36356),(9330,'events','lldruleid',36383),(9331,'events','lldruleid',36384),(9332,'events','lldruleid',36385),(9333,'events','lldruleid',36386),(9334,'events','lldruleid',36387),(9335,'events','lldruleid',36388),(9336,'events','lldruleid',36389),(9337,'events','lldruleid',36390),(9338,'events','lldruleid',36432),(9339,'events','lldruleid',36433),(9340,'events','lldruleid',36434),(9341,'events','lldruleid',36435),(9342,'events','lldruleid',36436),(9343,'events','lldruleid',36437),(9344,'events','lldruleid',36438),(9345,'events','lldruleid',36465),(9346,'events','lldruleid',36466),(9347,'events','lldruleid',36467),(9348,'events','lldruleid',36468),(9349,'events','lldruleid',36469),(9350,'events','lldruleid',36470),(9351,'events','lldruleid',36471),(9352,'events','lldruleid',36472),(9353,'events','lldruleid',36514),(9354,'events','lldruleid',36515),(9355,'events','lldruleid',36516),(9356,'events','lldruleid',36517),(9357,'events','lldruleid',36518),(9358,'events','lldruleid',36519),(9359,'events','lldruleid',36520),(9360,'events','lldruleid',42986),(9361,'events','lldruleid',43047),(9362,'events','lldruleid',43048),(9363,'events','lldruleid',43049),(9364,'events','lldruleid',43133),(9365,'events','lldruleid',43134),(9366,'events','lldruleid',43135),(9367,'events','lldruleid',43136),(9368,'events','lldruleid',43166),(9369,'events','lldruleid',43167),(9370,'events','lldruleid',44314),(9371,'events','lldruleid',44315),(9372,'events','lldruleid',44316),(9373,'events','lldruleid',44317),(9374,'events','lldruleid',44318),(9375,'events','lldruleid',44395),(9376,'events','lldruleid',44396),(9377,'events','lldruleid',44397),(9378,'events','lldruleid',44398),(9379,'events','lldruleid',44399),(9380,'events','lldruleid',44400),(9381,'events','lldruleid',44401),(9382,'events','lldruleid',44402),(9383,'events','itemid',42179),(9384,'history','itemid',42179),(9385,'history_log','itemid',42179),(9386,'history_str','itemid',42179),(9387,'history_text','itemid',42179),(9388,'history_uint','itemid',42179),(9389,'trends','itemid',42179),(9390,'trends_uint','itemid',42179),(9391,'events','itemid',42180),(9392,'history','itemid',42180),(9393,'history_log','itemid',42180),(9394,'history_str','itemid',42180),(9395,'history_text','itemid',42180),(9396,'history_uint','itemid',42180),(9397,'trends','itemid',42180),(9398,'trends_uint','itemid',42180),(9399,'events','itemid',42181),(9400,'history','itemid',42181),(9401,'history_log','itemid',42181),(9402,'history_str','itemid',42181),(9403,'history_text','itemid',42181),(9404,'history_uint','itemid',42181),(9405,'trends','itemid',42181),(9406,'trends_uint','itemid',42181),(9407,'events','itemid',22875),(9408,'history','itemid',22875),(9409,'history_log','itemid',22875),(9410,'history_str','itemid',22875),(9411,'history_text','itemid',22875),(9412,'history_uint','itemid',22875),(9413,'trends','itemid',22875),(9414,'trends_uint','itemid',22875),(9415,'events','itemid',22876),(9416,'history','itemid',22876),(9417,'history_log','itemid',22876),(9418,'history_str','itemid',22876),(9419,'history_text','itemid',22876),(9420,'history_uint','itemid',22876),(9421,'trends','itemid',22876),(9422,'trends_uint','itemid',22876),(9423,'events','itemid',22877),(9424,'history','itemid',22877),(9425,'history_log','itemid',22877),(9426,'history_str','itemid',22877),(9427,'history_text','itemid',22877),(9428,'history_uint','itemid',22877),(9429,'trends','itemid',22877),(9430,'trends_uint','itemid',22877),(9431,'events','itemid',22878),(9432,'history','itemid',22878),(9433,'history_log','itemid',22878),(9434,'history_str','itemid',22878),(9435,'history_text','itemid',22878),(9436,'history_uint','itemid',22878),(9437,'trends','itemid',22878),(9438,'trends_uint','itemid',22878),(9439,'events','itemid',22879),(9440,'history','itemid',22879),(9441,'history_log','itemid',22879),(9442,'history_str','itemid',22879),(9443,'history_text','itemid',22879),(9444,'history_uint','itemid',22879),(9445,'trends','itemid',22879),(9446,'trends_uint','itemid',22879),(9447,'events','itemid',22880),(9448,'history','itemid',22880),(9449,'history_log','itemid',22880),(9450,'history_str','itemid',22880),(9451,'history_text','itemid',22880),(9452,'history_uint','itemid',22880),(9453,'trends','itemid',22880),(9454,'trends_uint','itemid',22880),(9455,'events','itemid',22881),(9456,'history','itemid',22881),(9457,'history_log','itemid',22881),(9458,'history_str','itemid',22881),(9459,'history_text','itemid',22881),(9460,'history_uint','itemid',22881),(9461,'trends','itemid',22881),(9462,'trends_uint','itemid',22881),(9463,'events','itemid',22882),(9464,'history','itemid',22882),(9465,'history_log','itemid',22882),(9466,'history_str','itemid',22882),(9467,'history_text','itemid',22882),(9468,'history_uint','itemid',22882),(9469,'trends','itemid',22882),(9470,'trends_uint','itemid',22882),(9471,'events','itemid',22883),(9472,'history','itemid',22883),(9473,'history_log','itemid',22883),(9474,'history_str','itemid',22883),(9475,'history_text','itemid',22883),(9476,'history_uint','itemid',22883),(9477,'trends','itemid',22883),(9478,'trends_uint','itemid',22883),(9479,'events','itemid',22884),(9480,'history','itemid',22884),(9481,'history_log','itemid',22884),(9482,'history_str','itemid',22884),(9483,'history_text','itemid',22884),(9484,'history_uint','itemid',22884),(9485,'trends','itemid',22884),(9486,'trends_uint','itemid',22884),(9487,'events','itemid',22885),(9488,'history','itemid',22885),(9489,'history_log','itemid',22885),(9490,'history_str','itemid',22885),(9491,'history_text','itemid',22885),(9492,'history_uint','itemid',22885),(9493,'trends','itemid',22885),(9494,'trends_uint','itemid',22885),(9495,'events','itemid',22886),(9496,'history','itemid',22886),(9497,'history_log','itemid',22886),(9498,'history_str','itemid',22886),(9499,'history_text','itemid',22886),(9500,'history_uint','itemid',22886),(9501,'trends','itemid',22886),(9502,'trends_uint','itemid',22886),(9503,'events','itemid',22888),(9504,'history','itemid',22888),(9505,'history_log','itemid',22888),(9506,'history_str','itemid',22888),(9507,'history_text','itemid',22888),(9508,'history_uint','itemid',22888),(9509,'trends','itemid',22888),(9510,'trends_uint','itemid',22888),(9511,'events','itemid',22891),(9512,'history','itemid',22891),(9513,'history_log','itemid',22891),(9514,'history_str','itemid',22891),(9515,'history_text','itemid',22891),(9516,'history_uint','itemid',22891),(9517,'trends','itemid',22891),(9518,'trends_uint','itemid',22891),(9519,'events','itemid',22892),(9520,'history','itemid',22892),(9521,'history_log','itemid',22892),(9522,'history_str','itemid',22892),(9523,'history_text','itemid',22892),(9524,'history_uint','itemid',22892),(9525,'trends','itemid',22892),(9526,'trends_uint','itemid',22892),(9527,'events','itemid',22893),(9528,'history','itemid',22893),(9529,'history_log','itemid',22893),(9530,'history_str','itemid',22893),(9531,'history_text','itemid',22893),(9532,'history_uint','itemid',22893),(9533,'trends','itemid',22893),(9534,'trends_uint','itemid',22893),(9535,'events','itemid',22894),(9536,'history','itemid',22894),(9537,'history_log','itemid',22894),(9538,'history_str','itemid',22894),(9539,'history_text','itemid',22894),(9540,'history_uint','itemid',22894),(9541,'trends','itemid',22894),(9542,'trends_uint','itemid',22894),(9543,'events','itemid',22895),(9544,'history','itemid',22895),(9545,'history_log','itemid',22895),(9546,'history_str','itemid',22895),(9547,'history_text','itemid',22895),(9548,'history_uint','itemid',22895),(9549,'trends','itemid',22895),(9550,'trends_uint','itemid',22895),(9551,'events','itemid',22896),(9552,'history','itemid',22896),(9553,'history_log','itemid',22896),(9554,'history_str','itemid',22896),(9555,'history_text','itemid',22896),(9556,'history_uint','itemid',22896),(9557,'trends','itemid',22896),(9558,'trends_uint','itemid',22896),(9559,'events','itemid',22897),(9560,'history','itemid',22897),(9561,'history_log','itemid',22897),(9562,'history_str','itemid',22897),(9563,'history_text','itemid',22897),(9564,'history_uint','itemid',22897),(9565,'trends','itemid',22897),(9566,'trends_uint','itemid',22897),(9567,'events','itemid',22898),(9568,'history','itemid',22898),(9569,'history_log','itemid',22898),(9570,'history_str','itemid',22898),(9571,'history_text','itemid',22898),(9572,'history_uint','itemid',22898),(9573,'trends','itemid',22898),(9574,'trends_uint','itemid',22898),(9575,'events','itemid',22899),(9576,'history','itemid',22899),(9577,'history_log','itemid',22899),(9578,'history_str','itemid',22899),(9579,'history_text','itemid',22899),(9580,'history_uint','itemid',22899),(9581,'trends','itemid',22899),(9582,'trends_uint','itemid',22899),(9583,'events','itemid',22900),(9584,'history','itemid',22900),(9585,'history_log','itemid',22900),(9586,'history_str','itemid',22900),(9587,'history_text','itemid',22900),(9588,'history_uint','itemid',22900),(9589,'trends','itemid',22900),(9590,'trends_uint','itemid',22900),(9591,'events','itemid',22901),(9592,'history','itemid',22901),(9593,'history_log','itemid',22901),(9594,'history_str','itemid',22901),(9595,'history_text','itemid',22901),(9596,'history_uint','itemid',22901),(9597,'trends','itemid',22901),(9598,'trends_uint','itemid',22901),(9599,'events','itemid',44430),(9600,'history','itemid',44430),(9601,'history_log','itemid',44430),(9602,'history_str','itemid',44430),(9603,'history_text','itemid',44430),(9604,'history_uint','itemid',44430),(9605,'trends','itemid',44430),(9606,'trends_uint','itemid',44430),(9607,'events','itemid',22902),(9608,'history','itemid',22902),(9609,'history_log','itemid',22902),(9610,'history_str','itemid',22902),(9611,'history_text','itemid',22902),(9612,'history_uint','itemid',22902),(9613,'trends','itemid',22902),(9614,'trends_uint','itemid',22902),(9615,'events','itemid',22903),(9616,'history','itemid',22903),(9617,'history_log','itemid',22903),(9618,'history_str','itemid',22903),(9619,'history_text','itemid',22903),(9620,'history_uint','itemid',22903),(9621,'trends','itemid',22903),(9622,'trends_uint','itemid',22903),(9623,'events','itemid',42182),(9624,'history','itemid',42182),(9625,'history_log','itemid',42182),(9626,'history_str','itemid',42182),(9627,'history_text','itemid',42182),(9628,'history_uint','itemid',42182),(9629,'trends','itemid',42182),(9630,'trends_uint','itemid',42182),(9631,'events','itemid',42183),(9632,'history','itemid',42183),(9633,'history_log','itemid',42183),(9634,'history_str','itemid',42183),(9635,'history_text','itemid',42183),(9636,'history_uint','itemid',42183),(9637,'trends','itemid',42183),(9638,'trends_uint','itemid',42183),(9639,'events','itemid',42184),(9640,'history','itemid',42184),(9641,'history_log','itemid',42184),(9642,'history_str','itemid',42184),(9643,'history_text','itemid',42184),(9644,'history_uint','itemid',42184),(9645,'trends','itemid',42184),(9646,'trends_uint','itemid',42184),(9647,'events','itemid',42185),(9648,'history','itemid',42185),(9649,'history_log','itemid',42185),(9650,'history_str','itemid',42185),(9651,'history_text','itemid',42185),(9652,'history_uint','itemid',42185),(9653,'trends','itemid',42185),(9654,'trends_uint','itemid',42185),(9655,'events','itemid',22961),(9656,'history','itemid',22961),(9657,'history_log','itemid',22961),(9658,'history_str','itemid',22961),(9659,'history_text','itemid',22961),(9660,'history_uint','itemid',22961),(9661,'trends','itemid',22961),(9662,'trends_uint','itemid',22961),(9663,'events','itemid',22962),(9664,'history','itemid',22962),(9665,'history_log','itemid',22962),(9666,'history_str','itemid',22962),(9667,'history_text','itemid',22962),(9668,'history_uint','itemid',22962),(9669,'trends','itemid',22962),(9670,'trends_uint','itemid',22962),(9671,'events','itemid',22963),(9672,'history','itemid',22963),(9673,'history_log','itemid',22963),(9674,'history_str','itemid',22963),(9675,'history_text','itemid',22963),(9676,'history_uint','itemid',22963),(9677,'trends','itemid',22963),(9678,'trends_uint','itemid',22963),(9679,'events','itemid',22965),(9680,'history','itemid',22965),(9681,'history_log','itemid',22965),(9682,'history_str','itemid',22965),(9683,'history_text','itemid',22965),(9684,'history_uint','itemid',22965),(9685,'trends','itemid',22965),(9686,'trends_uint','itemid',22965),(9687,'events','itemid',22968),(9688,'history','itemid',22968),(9689,'history_log','itemid',22968),(9690,'history_str','itemid',22968),(9691,'history_text','itemid',22968),(9692,'history_uint','itemid',22968),(9693,'trends','itemid',22968),(9694,'trends_uint','itemid',22968),(9695,'events','itemid',22971),(9696,'history','itemid',22971),(9697,'history_log','itemid',22971),(9698,'history_str','itemid',22971),(9699,'history_text','itemid',22971),(9700,'history_uint','itemid',22971),(9701,'trends','itemid',22971),(9702,'trends_uint','itemid',22971),(9703,'events','itemid',22972),(9704,'history','itemid',22972),(9705,'history_log','itemid',22972),(9706,'history_str','itemid',22972),(9707,'history_text','itemid',22972),(9708,'history_uint','itemid',22972),(9709,'trends','itemid',22972),(9710,'trends_uint','itemid',22972),(9711,'events','itemid',22973),(9712,'history','itemid',22973),(9713,'history_log','itemid',22973),(9714,'history_str','itemid',22973),(9715,'history_text','itemid',22973),(9716,'history_uint','itemid',22973),(9717,'trends','itemid',22973),(9718,'trends_uint','itemid',22973),(9719,'events','itemid',22974),(9720,'history','itemid',22974),(9721,'history_log','itemid',22974),(9722,'history_str','itemid',22974),(9723,'history_text','itemid',22974),(9724,'history_uint','itemid',22974),(9725,'trends','itemid',22974),(9726,'trends_uint','itemid',22974),(9727,'events','itemid',22978),(9728,'history','itemid',22978),(9729,'history_log','itemid',22978),(9730,'history_str','itemid',22978),(9731,'history_text','itemid',22978),(9732,'history_uint','itemid',22978),(9733,'trends','itemid',22978),(9734,'trends_uint','itemid',22978),(9735,'events','itemid',22980),(9736,'history','itemid',22980),(9737,'history_log','itemid',22980),(9738,'history_str','itemid',22980),(9739,'history_text','itemid',22980),(9740,'history_uint','itemid',22980),(9741,'trends','itemid',22980),(9742,'trends_uint','itemid',22980),(9743,'events','itemid',22981),(9744,'history','itemid',22981),(9745,'history_log','itemid',22981),(9746,'history_str','itemid',22981),(9747,'history_text','itemid',22981),(9748,'history_uint','itemid',22981),(9749,'trends','itemid',22981),(9750,'trends_uint','itemid',22981),(9751,'events','itemid',44433),(9752,'history','itemid',44433),(9753,'history_log','itemid',44433),(9754,'history_str','itemid',44433),(9755,'history_text','itemid',44433),(9756,'history_uint','itemid',44433),(9757,'trends','itemid',44433),(9758,'trends_uint','itemid',44433),(9759,'events','itemid',22982),(9760,'history','itemid',22982),(9761,'history_log','itemid',22982),(9762,'history_str','itemid',22982),(9763,'history_text','itemid',22982),(9764,'history_uint','itemid',22982),(9765,'trends','itemid',22982),(9766,'trends_uint','itemid',22982),(9767,'events','itemid',22983),(9768,'history','itemid',22983),(9769,'history_log','itemid',22983),(9770,'history_str','itemid',22983),(9771,'history_text','itemid',22983),(9772,'history_uint','itemid',22983),(9773,'trends','itemid',22983),(9774,'trends_uint','itemid',22983),(9775,'events','itemid',42186),(9776,'history','itemid',42186),(9777,'history_log','itemid',42186),(9778,'history_str','itemid',42186),(9779,'history_text','itemid',42186),(9780,'history_uint','itemid',42186),(9781,'trends','itemid',42186),(9782,'trends_uint','itemid',42186),(9783,'events','itemid',23644),(9784,'history','itemid',23644),(9785,'history_log','itemid',23644),(9786,'history_str','itemid',23644),(9787,'history_text','itemid',23644),(9788,'history_uint','itemid',23644),(9789,'trends','itemid',23644),(9790,'trends_uint','itemid',23644),(9791,'events','itemid',31499),(9792,'history','itemid',31499),(9793,'history_log','itemid',31499),(9794,'history_str','itemid',31499),(9795,'history_text','itemid',31499),(9796,'history_uint','itemid',31499),(9797,'trends','itemid',31499),(9798,'trends_uint','itemid',31499),(9799,'events','itemid',31527),(9800,'history','itemid',31527),(9801,'history_log','itemid',31527),(9802,'history_str','itemid',31527),(9803,'history_text','itemid',31527),(9804,'history_uint','itemid',31527),(9805,'trends','itemid',31527),(9806,'trends_uint','itemid',31527),(9807,'events','itemid',31529),(9808,'history','itemid',31529),(9809,'history_log','itemid',31529),(9810,'history_str','itemid',31529),(9811,'history_text','itemid',31529),(9812,'history_uint','itemid',31529),(9813,'trends','itemid',31529),(9814,'trends_uint','itemid',31529),(9815,'events','itemid',31530),(9816,'history','itemid',31530),(9817,'history_log','itemid',31530),(9818,'history_str','itemid',31530),(9819,'history_text','itemid',31530),(9820,'history_uint','itemid',31530),(9821,'trends','itemid',31530),(9822,'trends_uint','itemid',31530),(9823,'events','itemid',31531),(9824,'history','itemid',31531),(9825,'history_log','itemid',31531),(9826,'history_str','itemid',31531),(9827,'history_text','itemid',31531),(9828,'history_uint','itemid',31531),(9829,'trends','itemid',31531),(9830,'trends_uint','itemid',31531),(9831,'events','itemid',31544),(9832,'history','itemid',31544),(9833,'history_log','itemid',31544),(9834,'history_str','itemid',31544),(9835,'history_text','itemid',31544),(9836,'history_uint','itemid',31544),(9837,'trends','itemid',31544),(9838,'trends_uint','itemid',31544),(9839,'events','itemid',31545),(9840,'history','itemid',31545),(9841,'history_log','itemid',31545),(9842,'history_str','itemid',31545),(9843,'history_text','itemid',31545),(9844,'history_uint','itemid',31545),(9845,'trends','itemid',31545),(9846,'trends_uint','itemid',31545),(9847,'events','itemid',31546),(9848,'history','itemid',31546),(9849,'history_log','itemid',31546),(9850,'history_str','itemid',31546),(9851,'history_text','itemid',31546),(9852,'history_uint','itemid',31546),(9853,'trends','itemid',31546),(9854,'trends_uint','itemid',31546),(9855,'events','itemid',31547),(9856,'history','itemid',31547),(9857,'history_log','itemid',31547),(9858,'history_str','itemid',31547),(9859,'history_text','itemid',31547),(9860,'history_uint','itemid',31547),(9861,'trends','itemid',31547),(9862,'trends_uint','itemid',31547),(9863,'events','itemid',31548),(9864,'history','itemid',31548),(9865,'history_log','itemid',31548),(9866,'history_str','itemid',31548),(9867,'history_text','itemid',31548),(9868,'history_uint','itemid',31548),(9869,'trends','itemid',31548),(9870,'trends_uint','itemid',31548),(9871,'events','itemid',31549),(9872,'history','itemid',31549),(9873,'history_log','itemid',31549),(9874,'history_str','itemid',31549),(9875,'history_text','itemid',31549),(9876,'history_uint','itemid',31549),(9877,'trends','itemid',31549),(9878,'trends_uint','itemid',31549),(9879,'events','itemid',31550),(9880,'history','itemid',31550),(9881,'history_log','itemid',31550),(9882,'history_str','itemid',31550),(9883,'history_text','itemid',31550),(9884,'history_uint','itemid',31550),(9885,'trends','itemid',31550),(9886,'trends_uint','itemid',31550),(9887,'events','itemid',31516),(9888,'history','itemid',31516),(9889,'history_log','itemid',31516),(9890,'history_str','itemid',31516),(9891,'history_text','itemid',31516),(9892,'history_uint','itemid',31516),(9893,'trends','itemid',31516),(9894,'trends_uint','itemid',31516),(9895,'events','itemid',31517),(9896,'history','itemid',31517),(9897,'history_log','itemid',31517),(9898,'history_str','itemid',31517),(9899,'history_text','itemid',31517),(9900,'history_uint','itemid',31517),(9901,'trends','itemid',31517),(9902,'trends_uint','itemid',31517),(9903,'events','itemid',31518),(9904,'history','itemid',31518),(9905,'history_log','itemid',31518),(9906,'history_str','itemid',31518),(9907,'history_text','itemid',31518),(9908,'history_uint','itemid',31518),(9909,'trends','itemid',31518),(9910,'trends_uint','itemid',31518),(9911,'events','itemid',31519),(9912,'history','itemid',31519),(9913,'history_log','itemid',31519),(9914,'history_str','itemid',31519),(9915,'history_text','itemid',31519),(9916,'history_uint','itemid',31519),(9917,'trends','itemid',31519),(9918,'trends_uint','itemid',31519),(9919,'events','itemid',31520),(9920,'history','itemid',31520),(9921,'history_log','itemid',31520),(9922,'history_str','itemid',31520),(9923,'history_text','itemid',31520),(9924,'history_uint','itemid',31520),(9925,'trends','itemid',31520),(9926,'trends_uint','itemid',31520),(9927,'events','itemid',31521),(9928,'history','itemid',31521),(9929,'history_log','itemid',31521),(9930,'history_str','itemid',31521),(9931,'history_text','itemid',31521),(9932,'history_uint','itemid',31521),(9933,'trends','itemid',31521),(9934,'trends_uint','itemid',31521),(9935,'events','itemid',31522),(9936,'history','itemid',31522),(9937,'history_log','itemid',31522),(9938,'history_str','itemid',31522),(9939,'history_text','itemid',31522),(9940,'history_uint','itemid',31522),(9941,'trends','itemid',31522),(9942,'trends_uint','itemid',31522),(9943,'events','itemid',31523),(9944,'history','itemid',31523),(9945,'history_log','itemid',31523),(9946,'history_str','itemid',31523),(9947,'history_text','itemid',31523),(9948,'history_uint','itemid',31523),(9949,'trends','itemid',31523),(9950,'trends_uint','itemid',31523),(9951,'events','itemid',31524),(9952,'history','itemid',31524),(9953,'history_log','itemid',31524),(9954,'history_str','itemid',31524),(9955,'history_text','itemid',31524),(9956,'history_uint','itemid',31524),(9957,'trends','itemid',31524),(9958,'trends_uint','itemid',31524),(9959,'events','itemid',31553),(9960,'history','itemid',31553),(9961,'history_log','itemid',31553),(9962,'history_str','itemid',31553),(9963,'history_text','itemid',31553),(9964,'history_uint','itemid',31553),(9965,'trends','itemid',31553),(9966,'trends_uint','itemid',31553),(9967,'events','itemid',40451),(9968,'history','itemid',40451),(9969,'history_log','itemid',40451),(9970,'history_str','itemid',40451),(9971,'history_text','itemid',40451),(9972,'history_uint','itemid',40451),(9973,'trends','itemid',40451),(9974,'trends_uint','itemid',40451),(9975,'events','itemid',40190),(9976,'history','itemid',40190),(9977,'history_log','itemid',40190),(9978,'history_str','itemid',40190),(9979,'history_text','itemid',40190),(9980,'history_uint','itemid',40190),(9981,'trends','itemid',40190),(9982,'trends_uint','itemid',40190),(9983,'events','itemid',40191),(9984,'history','itemid',40191),(9985,'history_log','itemid',40191),(9986,'history_str','itemid',40191),(9987,'history_text','itemid',40191),(9988,'history_uint','itemid',40191),(9989,'trends','itemid',40191),(9990,'trends_uint','itemid',40191),(9991,'events','itemid',40192),(9992,'history','itemid',40192),(9993,'history_log','itemid',40192),(9994,'history_str','itemid',40192),(9995,'history_text','itemid',40192),(9996,'history_uint','itemid',40192),(9997,'trends','itemid',40192),(9998,'trends_uint','itemid',40192),(9999,'events','itemid',27157),(10000,'history','itemid',27157),(10001,'history_log','itemid',27157),(10002,'history_str','itemid',27157),(10003,'history_text','itemid',27157),(10004,'history_uint','itemid',27157),(10005,'trends','itemid',27157),(10006,'trends_uint','itemid',27157),(10007,'events','itemid',29846),(10008,'history','itemid',29846),(10009,'history_log','itemid',29846),(10010,'history_str','itemid',29846),(10011,'history_text','itemid',29846),(10012,'history_uint','itemid',29846),(10013,'trends','itemid',29846),(10014,'trends_uint','itemid',29846),(10015,'events','itemid',29848),(10016,'history','itemid',29848),(10017,'history_log','itemid',29848),(10018,'history_str','itemid',29848),(10019,'history_text','itemid',29848),(10020,'history_uint','itemid',29848),(10021,'trends','itemid',29848),(10022,'trends_uint','itemid',29848),(10023,'events','itemid',43769),(10024,'history','itemid',43769),(10025,'history_log','itemid',43769),(10026,'history_str','itemid',43769),(10027,'history_text','itemid',43769),(10028,'history_uint','itemid',43769),(10029,'trends','itemid',43769),(10030,'trends_uint','itemid',43769),(10031,'events','itemid',29845),(10032,'history','itemid',29845),(10033,'history_log','itemid',29845),(10034,'history_str','itemid',29845),(10035,'history_text','itemid',29845),(10036,'history_uint','itemid',29845),(10037,'trends','itemid',29845),(10038,'trends_uint','itemid',29845),(10039,'events','itemid',27152),(10040,'history','itemid',27152),(10041,'history_log','itemid',27152),(10042,'history_str','itemid',27152),(10043,'history_text','itemid',27152),(10044,'history_uint','itemid',27152),(10045,'trends','itemid',27152),(10046,'trends_uint','itemid',27152),(10047,'events','itemid',29844),(10048,'history','itemid',29844),(10049,'history_log','itemid',29844),(10050,'history_str','itemid',29844),(10051,'history_text','itemid',29844),(10052,'history_uint','itemid',29844),(10053,'trends','itemid',29844),(10054,'trends_uint','itemid',29844),(10055,'events','itemid',29847),(10056,'history','itemid',29847),(10057,'history_log','itemid',29847),(10058,'history_str','itemid',29847),(10059,'history_text','itemid',29847),(10060,'history_uint','itemid',29847),(10061,'trends','itemid',29847),(10062,'trends_uint','itemid',29847),(10063,'events','itemid',27154),(10064,'history','itemid',27154),(10065,'history_log','itemid',27154),(10066,'history_str','itemid',27154),(10067,'history_text','itemid',27154),(10068,'history_uint','itemid',27154),(10069,'trends','itemid',27154),(10070,'trends_uint','itemid',27154),(10071,'events','itemid',27376),(10072,'history','itemid',27376),(10073,'history_log','itemid',27376),(10074,'history_str','itemid',27376),(10075,'history_text','itemid',27376),(10076,'history_uint','itemid',27376),(10077,'trends','itemid',27376),(10078,'trends_uint','itemid',27376),(10079,'events','itemid',40600),(10080,'history','itemid',40600),(10081,'history_log','itemid',40600),(10082,'history_str','itemid',40600),(10083,'history_text','itemid',40600),(10084,'history_uint','itemid',40600),(10085,'trends','itemid',40600),(10086,'trends_uint','itemid',40600),(10087,'events','itemid',40601),(10088,'history','itemid',40601),(10089,'history_log','itemid',40601),(10090,'history_str','itemid',40601),(10091,'history_text','itemid',40601),(10092,'history_uint','itemid',40601),(10093,'trends','itemid',40601),(10094,'trends_uint','itemid',40601),(10095,'events','itemid',40602),(10096,'history','itemid',40602),(10097,'history_log','itemid',40602),(10098,'history_str','itemid',40602),(10099,'history_text','itemid',40602),(10100,'history_uint','itemid',40602),(10101,'trends','itemid',40602),(10102,'trends_uint','itemid',40602),(10103,'events','itemid',40603),(10104,'history','itemid',40603),(10105,'history_log','itemid',40603),(10106,'history_str','itemid',40603),(10107,'history_text','itemid',40603),(10108,'history_uint','itemid',40603),(10109,'trends','itemid',40603),(10110,'trends_uint','itemid',40603),(10111,'events','itemid',40604),(10112,'history','itemid',40604),(10113,'history_log','itemid',40604),(10114,'history_str','itemid',40604),(10115,'history_text','itemid',40604),(10116,'history_uint','itemid',40604),(10117,'trends','itemid',40604),(10118,'trends_uint','itemid',40604),(10119,'events','itemid',40605),(10120,'history','itemid',40605),(10121,'history_log','itemid',40605),(10122,'history_str','itemid',40605),(10123,'history_text','itemid',40605),(10124,'history_uint','itemid',40605),(10125,'trends','itemid',40605),(10126,'trends_uint','itemid',40605),(10127,'events','itemid',40606),(10128,'history','itemid',40606),(10129,'history_log','itemid',40606),(10130,'history_str','itemid',40606),(10131,'history_text','itemid',40606),(10132,'history_uint','itemid',40606),(10133,'trends','itemid',40606),(10134,'trends_uint','itemid',40606),(10135,'events','itemid',40607),(10136,'history','itemid',40607),(10137,'history_log','itemid',40607),(10138,'history_str','itemid',40607),(10139,'history_text','itemid',40607),(10140,'history_uint','itemid',40607),(10141,'trends','itemid',40607),(10142,'trends_uint','itemid',40607),(10143,'events','itemid',40608),(10144,'history','itemid',40608),(10145,'history_log','itemid',40608),(10146,'history_str','itemid',40608),(10147,'history_text','itemid',40608),(10148,'history_uint','itemid',40608),(10149,'trends','itemid',40608),(10150,'trends_uint','itemid',40608),(10151,'events','itemid',43780),(10152,'history','itemid',43780),(10153,'history_log','itemid',43780),(10154,'history_str','itemid',43780),(10155,'history_text','itemid',43780),(10156,'history_uint','itemid',43780),(10157,'trends','itemid',43780),(10158,'trends_uint','itemid',43780),(10159,'events','itemid',40609),(10160,'history','itemid',40609),(10161,'history_log','itemid',40609),(10162,'history_str','itemid',40609),(10163,'history_text','itemid',40609),(10164,'history_uint','itemid',40609),(10165,'trends','itemid',40609),(10166,'trends_uint','itemid',40609),(10167,'events','itemid',40610),(10168,'history','itemid',40610),(10169,'history_log','itemid',40610),(10170,'history_str','itemid',40610),(10171,'history_text','itemid',40610),(10172,'history_uint','itemid',40610),(10173,'trends','itemid',40610),(10174,'trends_uint','itemid',40610),(10175,'events','itemid',40613),(10176,'history','itemid',40613),(10177,'history_log','itemid',40613),(10178,'history_str','itemid',40613),(10179,'history_text','itemid',40613),(10180,'history_uint','itemid',40613),(10181,'trends','itemid',40613),(10182,'trends_uint','itemid',40613),(10183,'events','itemid',40611),(10184,'history','itemid',40611),(10185,'history_log','itemid',40611),(10186,'history_str','itemid',40611),(10187,'history_text','itemid',40611),(10188,'history_uint','itemid',40611),(10189,'trends','itemid',40611),(10190,'trends_uint','itemid',40611),(10191,'events','itemid',40612),(10192,'history','itemid',40612),(10193,'history_log','itemid',40612),(10194,'history_str','itemid',40612),(10195,'history_text','itemid',40612),(10196,'history_uint','itemid',40612),(10197,'trends','itemid',40612),(10198,'trends_uint','itemid',40612),(10199,'events','itemid',40614),(10200,'history','itemid',40614),(10201,'history_log','itemid',40614),(10202,'history_str','itemid',40614),(10203,'history_text','itemid',40614),(10204,'history_uint','itemid',40614),(10205,'trends','itemid',40614),(10206,'trends_uint','itemid',40614),(10207,'events','itemid',40708),(10208,'history','itemid',40708),(10209,'history_log','itemid',40708),(10210,'history_str','itemid',40708),(10211,'history_text','itemid',40708),(10212,'history_uint','itemid',40708),(10213,'trends','itemid',40708),(10214,'trends_uint','itemid',40708),(10215,'events','itemid',40709),(10216,'history','itemid',40709),(10217,'history_log','itemid',40709),(10218,'history_str','itemid',40709),(10219,'history_text','itemid',40709),(10220,'history_uint','itemid',40709),(10221,'trends','itemid',40709),(10222,'trends_uint','itemid',40709),(10223,'events','itemid',40710),(10224,'history','itemid',40710),(10225,'history_log','itemid',40710),(10226,'history_str','itemid',40710),(10227,'history_text','itemid',40710),(10228,'history_uint','itemid',40710),(10229,'trends','itemid',40710),(10230,'trends_uint','itemid',40710),(10231,'events','itemid',40711),(10232,'history','itemid',40711),(10233,'history_log','itemid',40711),(10234,'history_str','itemid',40711),(10235,'history_text','itemid',40711),(10236,'history_uint','itemid',40711),(10237,'trends','itemid',40711),(10238,'trends_uint','itemid',40711),(10239,'events','itemid',40712),(10240,'history','itemid',40712),(10241,'history_log','itemid',40712),(10242,'history_str','itemid',40712),(10243,'history_text','itemid',40712),(10244,'history_uint','itemid',40712),(10245,'trends','itemid',40712),(10246,'trends_uint','itemid',40712),(10247,'events','itemid',40713),(10248,'history','itemid',40713),(10249,'history_log','itemid',40713),(10250,'history_str','itemid',40713),(10251,'history_text','itemid',40713),(10252,'history_uint','itemid',40713),(10253,'trends','itemid',40713),(10254,'trends_uint','itemid',40713),(10255,'events','itemid',43783),(10256,'history','itemid',43783),(10257,'history_log','itemid',43783),(10258,'history_str','itemid',43783),(10259,'history_text','itemid',43783),(10260,'history_uint','itemid',43783),(10261,'trends','itemid',43783),(10262,'trends_uint','itemid',43783),(10263,'events','itemid',40714),(10264,'history','itemid',40714),(10265,'history_log','itemid',40714),(10266,'history_str','itemid',40714),(10267,'history_text','itemid',40714),(10268,'history_uint','itemid',40714),(10269,'trends','itemid',40714),(10270,'trends_uint','itemid',40714),(10271,'events','itemid',40715),(10272,'history','itemid',40715),(10273,'history_log','itemid',40715),(10274,'history_str','itemid',40715),(10275,'history_text','itemid',40715),(10276,'history_uint','itemid',40715),(10277,'trends','itemid',40715),(10278,'trends_uint','itemid',40715),(10279,'events','itemid',40717),(10280,'history','itemid',40717),(10281,'history_log','itemid',40717),(10282,'history_str','itemid',40717),(10283,'history_text','itemid',40717),(10284,'history_uint','itemid',40717),(10285,'trends','itemid',40717),(10286,'trends_uint','itemid',40717),(10287,'events','itemid',40716),(10288,'history','itemid',40716),(10289,'history_log','itemid',40716),(10290,'history_str','itemid',40716),(10291,'history_text','itemid',40716),(10292,'history_uint','itemid',40716),(10293,'trends','itemid',40716),(10294,'trends_uint','itemid',40716),(10295,'events','itemid',40718),(10296,'history','itemid',40718),(10297,'history_log','itemid',40718),(10298,'history_str','itemid',40718),(10299,'history_text','itemid',40718),(10300,'history_uint','itemid',40718),(10301,'trends','itemid',40718),(10302,'trends_uint','itemid',40718),(10303,'events','itemid',40731),(10304,'history','itemid',40731),(10305,'history_log','itemid',40731),(10306,'history_str','itemid',40731),(10307,'history_text','itemid',40731),(10308,'history_uint','itemid',40731),(10309,'trends','itemid',40731),(10310,'trends_uint','itemid',40731),(10311,'events','itemid',40732),(10312,'history','itemid',40732),(10313,'history_log','itemid',40732),(10314,'history_str','itemid',40732),(10315,'history_text','itemid',40732),(10316,'history_uint','itemid',40732),(10317,'trends','itemid',40732),(10318,'trends_uint','itemid',40732),(10319,'events','itemid',40733),(10320,'history','itemid',40733),(10321,'history_log','itemid',40733),(10322,'history_str','itemid',40733),(10323,'history_text','itemid',40733),(10324,'history_uint','itemid',40733),(10325,'trends','itemid',40733),(10326,'trends_uint','itemid',40733),(10327,'events','itemid',40734),(10328,'history','itemid',40734),(10329,'history_log','itemid',40734),(10330,'history_str','itemid',40734),(10331,'history_text','itemid',40734),(10332,'history_uint','itemid',40734),(10333,'trends','itemid',40734),(10334,'trends_uint','itemid',40734),(10335,'events','itemid',40735),(10336,'history','itemid',40735),(10337,'history_log','itemid',40735),(10338,'history_str','itemid',40735),(10339,'history_text','itemid',40735),(10340,'history_uint','itemid',40735),(10341,'trends','itemid',40735),(10342,'trends_uint','itemid',40735),(10343,'events','itemid',27511),(10344,'history','itemid',27511),(10345,'history_log','itemid',27511),(10346,'history_str','itemid',27511),(10347,'history_text','itemid',27511),(10348,'history_uint','itemid',27511),(10349,'trends','itemid',27511),(10350,'trends_uint','itemid',27511),(10351,'events','itemid',40736),(10352,'history','itemid',40736),(10353,'history_log','itemid',40736),(10354,'history_str','itemid',40736),(10355,'history_text','itemid',40736),(10356,'history_uint','itemid',40736),(10357,'trends','itemid',40736),(10358,'trends_uint','itemid',40736),(10359,'events','itemid',27509),(10360,'history','itemid',27509),(10361,'history_log','itemid',27509),(10362,'history_str','itemid',27509),(10363,'history_text','itemid',27509),(10364,'history_uint','itemid',27509),(10365,'trends','itemid',27509),(10366,'trends_uint','itemid',27509),(10367,'events','itemid',27510),(10368,'history','itemid',27510),(10369,'history_log','itemid',27510),(10370,'history_str','itemid',27510),(10371,'history_text','itemid',27510),(10372,'history_uint','itemid',27510),(10373,'trends','itemid',27510),(10374,'trends_uint','itemid',27510),(10375,'events','itemid',43784),(10376,'history','itemid',43784),(10377,'history_log','itemid',43784),(10378,'history_str','itemid',43784),(10379,'history_text','itemid',43784),(10380,'history_uint','itemid',43784),(10381,'trends','itemid',43784),(10382,'trends_uint','itemid',43784),(10383,'events','itemid',27508),(10384,'history','itemid',27508),(10385,'history_log','itemid',27508),(10386,'history_str','itemid',27508),(10387,'history_text','itemid',27508),(10388,'history_uint','itemid',27508),(10389,'trends','itemid',27508),(10390,'trends_uint','itemid',27508),(10391,'events','itemid',40737),(10392,'history','itemid',40737),(10393,'history_log','itemid',40737),(10394,'history_str','itemid',40737),(10395,'history_text','itemid',40737),(10396,'history_uint','itemid',40737),(10397,'trends','itemid',40737),(10398,'trends_uint','itemid',40737),(10399,'events','itemid',40738),(10400,'history','itemid',40738),(10401,'history_log','itemid',40738),(10402,'history_str','itemid',40738),(10403,'history_text','itemid',40738),(10404,'history_uint','itemid',40738),(10405,'trends','itemid',40738),(10406,'trends_uint','itemid',40738),(10407,'events','itemid',40740),(10408,'history','itemid',40740),(10409,'history_log','itemid',40740),(10410,'history_str','itemid',40740),(10411,'history_text','itemid',40740),(10412,'history_uint','itemid',40740),(10413,'trends','itemid',40740),(10414,'trends_uint','itemid',40740),(10415,'events','itemid',40739),(10416,'history','itemid',40739),(10417,'history_log','itemid',40739),(10418,'history_str','itemid',40739),(10419,'history_text','itemid',40739),(10420,'history_uint','itemid',40739),(10421,'trends','itemid',40739),(10422,'trends_uint','itemid',40739),(10423,'events','itemid',30106),(10424,'history','itemid',30106),(10425,'history_log','itemid',30106),(10426,'history_str','itemid',30106),(10427,'history_text','itemid',30106),(10428,'history_uint','itemid',30106),(10429,'trends','itemid',30106),(10430,'trends_uint','itemid',30106),(10431,'events','itemid',40741),(10432,'history','itemid',40741),(10433,'history_log','itemid',40741),(10434,'history_str','itemid',40741),(10435,'history_text','itemid',40741),(10436,'history_uint','itemid',40741),(10437,'trends','itemid',40741),(10438,'trends_uint','itemid',40741),(10439,'events','itemid',40752),(10440,'history','itemid',40752),(10441,'history_log','itemid',40752),(10442,'history_str','itemid',40752),(10443,'history_text','itemid',40752),(10444,'history_uint','itemid',40752),(10445,'trends','itemid',40752),(10446,'trends_uint','itemid',40752),(10447,'events','itemid',40753),(10448,'history','itemid',40753),(10449,'history_log','itemid',40753),(10450,'history_str','itemid',40753),(10451,'history_text','itemid',40753),(10452,'history_uint','itemid',40753),(10453,'trends','itemid',40753),(10454,'trends_uint','itemid',40753),(10455,'events','itemid',40754),(10456,'history','itemid',40754),(10457,'history_log','itemid',40754),(10458,'history_str','itemid',40754),(10459,'history_text','itemid',40754),(10460,'history_uint','itemid',40754),(10461,'trends','itemid',40754),(10462,'trends_uint','itemid',40754),(10463,'events','itemid',40755),(10464,'history','itemid',40755),(10465,'history_log','itemid',40755),(10466,'history_str','itemid',40755),(10467,'history_text','itemid',40755),(10468,'history_uint','itemid',40755),(10469,'trends','itemid',40755),(10470,'trends_uint','itemid',40755),(10471,'events','itemid',40756),(10472,'history','itemid',40756),(10473,'history_log','itemid',40756),(10474,'history_str','itemid',40756),(10475,'history_text','itemid',40756),(10476,'history_uint','itemid',40756),(10477,'trends','itemid',40756),(10478,'trends_uint','itemid',40756),(10479,'events','itemid',27547),(10480,'history','itemid',27547),(10481,'history_log','itemid',27547),(10482,'history_str','itemid',27547),(10483,'history_text','itemid',27547),(10484,'history_uint','itemid',27547),(10485,'trends','itemid',27547),(10486,'trends_uint','itemid',27547),(10487,'events','itemid',40757),(10488,'history','itemid',40757),(10489,'history_log','itemid',40757),(10490,'history_str','itemid',40757),(10491,'history_text','itemid',40757),(10492,'history_uint','itemid',40757),(10493,'trends','itemid',40757),(10494,'trends_uint','itemid',40757),(10495,'events','itemid',27544),(10496,'history','itemid',27544),(10497,'history_log','itemid',27544),(10498,'history_str','itemid',27544),(10499,'history_text','itemid',27544),(10500,'history_uint','itemid',27544),(10501,'trends','itemid',27544),(10502,'trends_uint','itemid',27544),(10503,'events','itemid',27546),(10504,'history','itemid',27546),(10505,'history_log','itemid',27546),(10506,'history_str','itemid',27546),(10507,'history_text','itemid',27546),(10508,'history_uint','itemid',27546),(10509,'trends','itemid',27546),(10510,'trends_uint','itemid',27546),(10511,'events','itemid',27545),(10512,'history','itemid',27545),(10513,'history_log','itemid',27545),(10514,'history_str','itemid',27545),(10515,'history_text','itemid',27545),(10516,'history_uint','itemid',27545),(10517,'trends','itemid',27545),(10518,'trends_uint','itemid',27545),(10519,'events','itemid',43785),(10520,'history','itemid',43785),(10521,'history_log','itemid',43785),(10522,'history_str','itemid',43785),(10523,'history_text','itemid',43785),(10524,'history_uint','itemid',43785),(10525,'trends','itemid',43785),(10526,'trends_uint','itemid',43785),(10527,'events','itemid',27543),(10528,'history','itemid',27543),(10529,'history_log','itemid',27543),(10530,'history_str','itemid',27543),(10531,'history_text','itemid',27543),(10532,'history_uint','itemid',27543),(10533,'trends','itemid',27543),(10534,'trends_uint','itemid',27543),(10535,'events','itemid',40758),(10536,'history','itemid',40758),(10537,'history_log','itemid',40758),(10538,'history_str','itemid',40758),(10539,'history_text','itemid',40758),(10540,'history_uint','itemid',40758),(10541,'trends','itemid',40758),(10542,'trends_uint','itemid',40758),(10543,'events','itemid',40759),(10544,'history','itemid',40759),(10545,'history_log','itemid',40759),(10546,'history_str','itemid',40759),(10547,'history_text','itemid',40759),(10548,'history_uint','itemid',40759),(10549,'trends','itemid',40759),(10550,'trends_uint','itemid',40759),(10551,'events','itemid',40761),(10552,'history','itemid',40761),(10553,'history_log','itemid',40761),(10554,'history_str','itemid',40761),(10555,'history_text','itemid',40761),(10556,'history_uint','itemid',40761),(10557,'trends','itemid',40761),(10558,'trends_uint','itemid',40761),(10559,'events','itemid',40760),(10560,'history','itemid',40760),(10561,'history_log','itemid',40760),(10562,'history_str','itemid',40760),(10563,'history_text','itemid',40760),(10564,'history_uint','itemid',40760),(10565,'trends','itemid',40760),(10566,'trends_uint','itemid',40760),(10567,'events','itemid',40762),(10568,'history','itemid',40762),(10569,'history_log','itemid',40762),(10570,'history_str','itemid',40762),(10571,'history_text','itemid',40762),(10572,'history_uint','itemid',40762),(10573,'trends','itemid',40762),(10574,'trends_uint','itemid',40762),(10575,'events','itemid',40775),(10576,'history','itemid',40775),(10577,'history_log','itemid',40775),(10578,'history_str','itemid',40775),(10579,'history_text','itemid',40775),(10580,'history_uint','itemid',40775),(10581,'trends','itemid',40775),(10582,'trends_uint','itemid',40775),(10583,'events','itemid',40780),(10584,'history','itemid',40780),(10585,'history_log','itemid',40780),(10586,'history_str','itemid',40780),(10587,'history_text','itemid',40780),(10588,'history_uint','itemid',40780),(10589,'trends','itemid',40780),(10590,'trends_uint','itemid',40780),(10591,'events','itemid',40784),(10592,'history','itemid',40784),(10593,'history_log','itemid',40784),(10594,'history_str','itemid',40784),(10595,'history_text','itemid',40784),(10596,'history_uint','itemid',40784),(10597,'trends','itemid',40784),(10598,'trends_uint','itemid',40784),(10599,'events','itemid',27585),(10600,'history','itemid',27585),(10601,'history_log','itemid',27585),(10602,'history_str','itemid',27585),(10603,'history_text','itemid',27585),(10604,'history_uint','itemid',27585),(10605,'trends','itemid',27585),(10606,'trends_uint','itemid',27585),(10607,'events','itemid',27584),(10608,'history','itemid',27584),(10609,'history_log','itemid',27584),(10610,'history_str','itemid',27584),(10611,'history_text','itemid',27584),(10612,'history_uint','itemid',27584),(10613,'trends','itemid',27584),(10614,'trends_uint','itemid',27584),(10615,'events','itemid',40783),(10616,'history','itemid',40783),(10617,'history_log','itemid',40783),(10618,'history_str','itemid',40783),(10619,'history_text','itemid',40783),(10620,'history_uint','itemid',40783),(10621,'trends','itemid',40783),(10622,'trends_uint','itemid',40783),(10623,'events','itemid',40782),(10624,'history','itemid',40782),(10625,'history_log','itemid',40782),(10626,'history_str','itemid',40782),(10627,'history_text','itemid',40782),(10628,'history_uint','itemid',40782),(10629,'trends','itemid',40782),(10630,'trends_uint','itemid',40782),(10631,'events','itemid',27586),(10632,'history','itemid',27586),(10633,'history_log','itemid',27586),(10634,'history_str','itemid',27586),(10635,'history_text','itemid',27586),(10636,'history_uint','itemid',27586),(10637,'trends','itemid',27586),(10638,'trends_uint','itemid',27586),(10639,'events','itemid',40781),(10640,'history','itemid',40781),(10641,'history_log','itemid',40781),(10642,'history_str','itemid',40781),(10643,'history_text','itemid',40781),(10644,'history_uint','itemid',40781),(10645,'trends','itemid',40781),(10646,'trends_uint','itemid',40781),(10647,'events','itemid',27579),(10648,'history','itemid',27579),(10649,'history_log','itemid',27579),(10650,'history_str','itemid',27579),(10651,'history_text','itemid',27579),(10652,'history_uint','itemid',27579),(10653,'trends','itemid',27579),(10654,'trends_uint','itemid',27579),(10655,'events','itemid',27583),(10656,'history','itemid',27583),(10657,'history_log','itemid',27583),(10658,'history_str','itemid',27583),(10659,'history_text','itemid',27583),(10660,'history_uint','itemid',27583),(10661,'trends','itemid',27583),(10662,'trends_uint','itemid',27583),(10663,'events','itemid',27582),(10664,'history','itemid',27582),(10665,'history_log','itemid',27582),(10666,'history_str','itemid',27582),(10667,'history_text','itemid',27582),(10668,'history_uint','itemid',27582),(10669,'trends','itemid',27582),(10670,'trends_uint','itemid',27582),(10671,'events','itemid',43786),(10672,'history','itemid',43786),(10673,'history_log','itemid',43786),(10674,'history_str','itemid',43786),(10675,'history_text','itemid',43786),(10676,'history_uint','itemid',43786),(10677,'trends','itemid',43786),(10678,'trends_uint','itemid',43786),(10679,'events','itemid',27580),(10680,'history','itemid',27580),(10681,'history_log','itemid',27580),(10682,'history_str','itemid',27580),(10683,'history_text','itemid',27580),(10684,'history_uint','itemid',27580),(10685,'trends','itemid',27580),(10686,'trends_uint','itemid',27580),(10687,'events','itemid',40779),(10688,'history','itemid',40779),(10689,'history_log','itemid',40779),(10690,'history_str','itemid',40779),(10691,'history_text','itemid',40779),(10692,'history_uint','itemid',40779),(10693,'trends','itemid',40779),(10694,'trends_uint','itemid',40779),(10695,'events','itemid',40778),(10696,'history','itemid',40778),(10697,'history_log','itemid',40778),(10698,'history_str','itemid',40778),(10699,'history_text','itemid',40778),(10700,'history_uint','itemid',40778),(10701,'trends','itemid',40778),(10702,'trends_uint','itemid',40778),(10703,'events','itemid',40776),(10704,'history','itemid',40776),(10705,'history_log','itemid',40776),(10706,'history_str','itemid',40776),(10707,'history_text','itemid',40776),(10708,'history_uint','itemid',40776),(10709,'trends','itemid',40776),(10710,'trends_uint','itemid',40776),(10711,'events','itemid',40777),(10712,'history','itemid',40777),(10713,'history_log','itemid',40777),(10714,'history_str','itemid',40777),(10715,'history_text','itemid',40777),(10716,'history_uint','itemid',40777),(10717,'trends','itemid',40777),(10718,'trends_uint','itemid',40777),(10719,'events','itemid',30109),(10720,'history','itemid',30109),(10721,'history_log','itemid',30109),(10722,'history_str','itemid',30109),(10723,'history_text','itemid',30109),(10724,'history_uint','itemid',30109),(10725,'trends','itemid',30109),(10726,'trends_uint','itemid',30109),(10727,'events','itemid',40785),(10728,'history','itemid',40785),(10729,'history_log','itemid',40785),(10730,'history_str','itemid',40785),(10731,'history_text','itemid',40785),(10732,'history_uint','itemid',40785),(10733,'trends','itemid',40785),(10734,'trends_uint','itemid',40785),(10735,'events','itemid',40821),(10736,'history','itemid',40821),(10737,'history_log','itemid',40821),(10738,'history_str','itemid',40821),(10739,'history_text','itemid',40821),(10740,'history_uint','itemid',40821),(10741,'trends','itemid',40821),(10742,'trends_uint','itemid',40821),(10743,'events','itemid',40822),(10744,'history','itemid',40822),(10745,'history_log','itemid',40822),(10746,'history_str','itemid',40822),(10747,'history_text','itemid',40822),(10748,'history_uint','itemid',40822),(10749,'trends','itemid',40822),(10750,'trends_uint','itemid',40822),(10751,'events','itemid',40823),(10752,'history','itemid',40823),(10753,'history_log','itemid',40823),(10754,'history_str','itemid',40823),(10755,'history_text','itemid',40823),(10756,'history_uint','itemid',40823),(10757,'trends','itemid',40823),(10758,'trends_uint','itemid',40823),(10759,'events','itemid',40824),(10760,'history','itemid',40824),(10761,'history_log','itemid',40824),(10762,'history_str','itemid',40824),(10763,'history_text','itemid',40824),(10764,'history_uint','itemid',40824),(10765,'trends','itemid',40824),(10766,'trends_uint','itemid',40824),(10767,'events','itemid',40825),(10768,'history','itemid',40825),(10769,'history_log','itemid',40825),(10770,'history_str','itemid',40825),(10771,'history_text','itemid',40825),(10772,'history_uint','itemid',40825),(10773,'trends','itemid',40825),(10774,'trends_uint','itemid',40825),(10775,'events','itemid',40826),(10776,'history','itemid',40826),(10777,'history_log','itemid',40826),(10778,'history_str','itemid',40826),(10779,'history_text','itemid',40826),(10780,'history_uint','itemid',40826),(10781,'trends','itemid',40826),(10782,'trends_uint','itemid',40826),(10783,'events','itemid',43788),(10784,'history','itemid',43788),(10785,'history_log','itemid',43788),(10786,'history_str','itemid',43788),(10787,'history_text','itemid',43788),(10788,'history_uint','itemid',43788),(10789,'trends','itemid',43788),(10790,'trends_uint','itemid',43788),(10791,'events','itemid',40827),(10792,'history','itemid',40827),(10793,'history_log','itemid',40827),(10794,'history_str','itemid',40827),(10795,'history_text','itemid',40827),(10796,'history_uint','itemid',40827),(10797,'trends','itemid',40827),(10798,'trends_uint','itemid',40827),(10799,'events','itemid',40828),(10800,'history','itemid',40828),(10801,'history_log','itemid',40828),(10802,'history_str','itemid',40828),(10803,'history_text','itemid',40828),(10804,'history_uint','itemid',40828),(10805,'trends','itemid',40828),(10806,'trends_uint','itemid',40828),(10807,'events','itemid',40830),(10808,'history','itemid',40830),(10809,'history_log','itemid',40830),(10810,'history_str','itemid',40830),(10811,'history_text','itemid',40830),(10812,'history_uint','itemid',40830),(10813,'trends','itemid',40830),(10814,'trends_uint','itemid',40830),(10815,'events','itemid',40829),(10816,'history','itemid',40829),(10817,'history_log','itemid',40829),(10818,'history_str','itemid',40829),(10819,'history_text','itemid',40829),(10820,'history_uint','itemid',40829),(10821,'trends','itemid',40829),(10822,'trends_uint','itemid',40829),(10823,'events','itemid',40831),(10824,'history','itemid',40831),(10825,'history_log','itemid',40831),(10826,'history_str','itemid',40831),(10827,'history_text','itemid',40831),(10828,'history_uint','itemid',40831),(10829,'trends','itemid',40831),(10830,'trends_uint','itemid',40831),(10831,'events','itemid',40629),(10832,'history','itemid',40629),(10833,'history_log','itemid',40629),(10834,'history_str','itemid',40629),(10835,'history_text','itemid',40629),(10836,'history_uint','itemid',40629),(10837,'trends','itemid',40629),(10838,'trends_uint','itemid',40629),(10839,'events','itemid',40630),(10840,'history','itemid',40630),(10841,'history_log','itemid',40630),(10842,'history_str','itemid',40630),(10843,'history_text','itemid',40630),(10844,'history_uint','itemid',40630),(10845,'trends','itemid',40630),(10846,'trends_uint','itemid',40630),(10847,'events','itemid',40631),(10848,'history','itemid',40631),(10849,'history_log','itemid',40631),(10850,'history_str','itemid',40631),(10851,'history_text','itemid',40631),(10852,'history_uint','itemid',40631),(10853,'trends','itemid',40631),(10854,'trends_uint','itemid',40631),(10855,'events','itemid',40632),(10856,'history','itemid',40632),(10857,'history_log','itemid',40632),(10858,'history_str','itemid',40632),(10859,'history_text','itemid',40632),(10860,'history_uint','itemid',40632),(10861,'trends','itemid',40632),(10862,'trends_uint','itemid',40632),(10863,'events','itemid',40633),(10864,'history','itemid',40633),(10865,'history_log','itemid',40633),(10866,'history_str','itemid',40633),(10867,'history_text','itemid',40633),(10868,'history_uint','itemid',40633),(10869,'trends','itemid',40633),(10870,'trends_uint','itemid',40633),(10871,'events','itemid',40634),(10872,'history','itemid',40634),(10873,'history_log','itemid',40634),(10874,'history_str','itemid',40634),(10875,'history_text','itemid',40634),(10876,'history_uint','itemid',40634),(10877,'trends','itemid',40634),(10878,'trends_uint','itemid',40634),(10879,'events','itemid',40635),(10880,'history','itemid',40635),(10881,'history_log','itemid',40635),(10882,'history_str','itemid',40635),(10883,'history_text','itemid',40635),(10884,'history_uint','itemid',40635),(10885,'trends','itemid',40635),(10886,'trends_uint','itemid',40635),(10887,'events','itemid',40636),(10888,'history','itemid',40636),(10889,'history_log','itemid',40636),(10890,'history_str','itemid',40636),(10891,'history_text','itemid',40636),(10892,'history_uint','itemid',40636),(10893,'trends','itemid',40636),(10894,'trends_uint','itemid',40636),(10895,'events','itemid',43782),(10896,'history','itemid',43782),(10897,'history_log','itemid',43782),(10898,'history_str','itemid',43782),(10899,'history_text','itemid',43782),(10900,'history_uint','itemid',43782),(10901,'trends','itemid',43782),(10902,'trends_uint','itemid',43782),(10903,'events','itemid',40637),(10904,'history','itemid',40637),(10905,'history_log','itemid',40637),(10906,'history_str','itemid',40637),(10907,'history_text','itemid',40637),(10908,'history_uint','itemid',40637),(10909,'trends','itemid',40637),(10910,'trends_uint','itemid',40637),(10911,'events','itemid',40638),(10912,'history','itemid',40638),(10913,'history_log','itemid',40638),(10914,'history_str','itemid',40638),(10915,'history_text','itemid',40638),(10916,'history_uint','itemid',40638),(10917,'trends','itemid',40638),(10918,'trends_uint','itemid',40638),(10919,'events','itemid',40641),(10920,'history','itemid',40641),(10921,'history_log','itemid',40641),(10922,'history_str','itemid',40641),(10923,'history_text','itemid',40641),(10924,'history_uint','itemid',40641),(10925,'trends','itemid',40641),(10926,'trends_uint','itemid',40641),(10927,'events','itemid',40639),(10928,'history','itemid',40639),(10929,'history_log','itemid',40639),(10930,'history_str','itemid',40639),(10931,'history_text','itemid',40639),(10932,'history_uint','itemid',40639),(10933,'trends','itemid',40639),(10934,'trends_uint','itemid',40639),(10935,'events','itemid',40640),(10936,'history','itemid',40640),(10937,'history_log','itemid',40640),(10938,'history_str','itemid',40640),(10939,'history_text','itemid',40640),(10940,'history_uint','itemid',40640),(10941,'trends','itemid',40640),(10942,'trends_uint','itemid',40640),(10943,'events','itemid',40642),(10944,'history','itemid',40642),(10945,'history_log','itemid',40642),(10946,'history_str','itemid',40642),(10947,'history_text','itemid',40642),(10948,'history_uint','itemid',40642),(10949,'trends','itemid',40642),(10950,'trends_uint','itemid',40642),(10951,'events','itemid',42631),(10952,'history','itemid',42631),(10953,'history_log','itemid',42631),(10954,'history_str','itemid',42631),(10955,'history_text','itemid',42631),(10956,'history_uint','itemid',42631),(10957,'trends','itemid',42631),(10958,'trends_uint','itemid',42631),(10959,'events','itemid',42632),(10960,'history','itemid',42632),(10961,'history_log','itemid',42632),(10962,'history_str','itemid',42632),(10963,'history_text','itemid',42632),(10964,'history_uint','itemid',42632),(10965,'trends','itemid',42632),(10966,'trends_uint','itemid',42632),(10967,'events','itemid',42633),(10968,'history','itemid',42633),(10969,'history_log','itemid',42633),(10970,'history_str','itemid',42633),(10971,'history_text','itemid',42633),(10972,'history_uint','itemid',42633),(10973,'trends','itemid',42633),(10974,'trends_uint','itemid',42633),(10975,'events','itemid',42634),(10976,'history','itemid',42634),(10977,'history_log','itemid',42634),(10978,'history_str','itemid',42634),(10979,'history_text','itemid',42634),(10980,'history_uint','itemid',42634),(10981,'trends','itemid',42634),(10982,'trends_uint','itemid',42634),(10983,'events','itemid',42635),(10984,'history','itemid',42635),(10985,'history_log','itemid',42635),(10986,'history_str','itemid',42635),(10987,'history_text','itemid',42635),(10988,'history_uint','itemid',42635),(10989,'trends','itemid',42635),(10990,'trends_uint','itemid',42635),(10991,'events','itemid',42636),(10992,'history','itemid',42636),(10993,'history_log','itemid',42636),(10994,'history_str','itemid',42636),(10995,'history_text','itemid',42636),(10996,'history_uint','itemid',42636),(10997,'trends','itemid',42636),(10998,'trends_uint','itemid',42636),(10999,'events','itemid',28345),(11000,'history','itemid',28345),(11001,'history_log','itemid',28345),(11002,'history_str','itemid',28345),(11003,'history_text','itemid',28345),(11004,'history_uint','itemid',28345),(11005,'trends','itemid',28345),(11006,'trends_uint','itemid',28345),(11007,'events','itemid',28342),(11008,'history','itemid',28342),(11009,'history_log','itemid',28342),(11010,'history_str','itemid',28342),(11011,'history_text','itemid',28342),(11012,'history_uint','itemid',28342),(11013,'trends','itemid',28342),(11014,'trends_uint','itemid',28342),(11015,'events','itemid',28344),(11016,'history','itemid',28344),(11017,'history_log','itemid',28344),(11018,'history_str','itemid',28344),(11019,'history_text','itemid',28344),(11020,'history_uint','itemid',28344),(11021,'trends','itemid',28344),(11022,'trends_uint','itemid',28344),(11023,'events','itemid',43895),(11024,'history','itemid',43895),(11025,'history_log','itemid',43895),(11026,'history_str','itemid',43895),(11027,'history_text','itemid',43895),(11028,'history_uint','itemid',43895),(11029,'trends','itemid',43895),(11030,'trends_uint','itemid',43895),(11031,'events','itemid',42637),(11032,'history','itemid',42637),(11033,'history_log','itemid',42637),(11034,'history_str','itemid',42637),(11035,'history_text','itemid',42637),(11036,'history_uint','itemid',42637),(11037,'trends','itemid',42637),(11038,'trends_uint','itemid',42637),(11039,'events','itemid',42638),(11040,'history','itemid',42638),(11041,'history_log','itemid',42638),(11042,'history_str','itemid',42638),(11043,'history_text','itemid',42638),(11044,'history_uint','itemid',42638),(11045,'trends','itemid',42638),(11046,'trends_uint','itemid',42638),(11047,'events','itemid',42640),(11048,'history','itemid',42640),(11049,'history_log','itemid',42640),(11050,'history_str','itemid',42640),(11051,'history_text','itemid',42640),(11052,'history_uint','itemid',42640),(11053,'trends','itemid',42640),(11054,'trends_uint','itemid',42640),(11055,'events','itemid',42639),(11056,'history','itemid',42639),(11057,'history_log','itemid',42639),(11058,'history_str','itemid',42639),(11059,'history_text','itemid',42639),(11060,'history_uint','itemid',42639),(11061,'trends','itemid',42639),(11062,'trends_uint','itemid',42639),(11063,'events','itemid',28341),(11064,'history','itemid',28341),(11065,'history_log','itemid',28341),(11066,'history_str','itemid',28341),(11067,'history_text','itemid',28341),(11068,'history_uint','itemid',28341),(11069,'trends','itemid',28341),(11070,'trends_uint','itemid',28341),(11071,'events','itemid',30141),(11072,'history','itemid',30141),(11073,'history_log','itemid',30141),(11074,'history_str','itemid',30141),(11075,'history_text','itemid',30141),(11076,'history_uint','itemid',30141),(11077,'trends','itemid',30141),(11078,'trends_uint','itemid',30141),(11079,'events','itemid',42641),(11080,'history','itemid',42641),(11081,'history_log','itemid',42641),(11082,'history_str','itemid',42641),(11083,'history_text','itemid',42641),(11084,'history_uint','itemid',42641),(11085,'trends','itemid',42641),(11086,'trends_uint','itemid',42641),(11087,'events','itemid',42620),(11088,'history','itemid',42620),(11089,'history_log','itemid',42620),(11090,'history_str','itemid',42620),(11091,'history_text','itemid',42620),(11092,'history_uint','itemid',42620),(11093,'trends','itemid',42620),(11094,'trends_uint','itemid',42620),(11095,'events','itemid',42621),(11096,'history','itemid',42621),(11097,'history_log','itemid',42621),(11098,'history_str','itemid',42621),(11099,'history_text','itemid',42621),(11100,'history_uint','itemid',42621),(11101,'trends','itemid',42621),(11102,'trends_uint','itemid',42621),(11103,'events','itemid',42622),(11104,'history','itemid',42622),(11105,'history_log','itemid',42622),(11106,'history_str','itemid',42622),(11107,'history_text','itemid',42622),(11108,'history_uint','itemid',42622),(11109,'trends','itemid',42622),(11110,'trends_uint','itemid',42622),(11111,'events','itemid',42623),(11112,'history','itemid',42623),(11113,'history_log','itemid',42623),(11114,'history_str','itemid',42623),(11115,'history_text','itemid',42623),(11116,'history_uint','itemid',42623),(11117,'trends','itemid',42623),(11118,'trends_uint','itemid',42623),(11119,'events','itemid',42624),(11120,'history','itemid',42624),(11121,'history_log','itemid',42624),(11122,'history_str','itemid',42624),(11123,'history_text','itemid',42624),(11124,'history_uint','itemid',42624),(11125,'trends','itemid',42624),(11126,'trends_uint','itemid',42624),(11127,'events','itemid',42625),(11128,'history','itemid',42625),(11129,'history_log','itemid',42625),(11130,'history_str','itemid',42625),(11131,'history_text','itemid',42625),(11132,'history_uint','itemid',42625),(11133,'trends','itemid',42625),(11134,'trends_uint','itemid',42625),(11135,'events','itemid',43890),(11136,'history','itemid',43890),(11137,'history_log','itemid',43890),(11138,'history_str','itemid',43890),(11139,'history_text','itemid',43890),(11140,'history_uint','itemid',43890),(11141,'trends','itemid',43890),(11142,'trends_uint','itemid',43890),(11143,'events','itemid',42626),(11144,'history','itemid',42626),(11145,'history_log','itemid',42626),(11146,'history_str','itemid',42626),(11147,'history_text','itemid',42626),(11148,'history_uint','itemid',42626),(11149,'trends','itemid',42626),(11150,'trends_uint','itemid',42626),(11151,'events','itemid',42627),(11152,'history','itemid',42627),(11153,'history_log','itemid',42627),(11154,'history_str','itemid',42627),(11155,'history_text','itemid',42627),(11156,'history_uint','itemid',42627),(11157,'trends','itemid',42627),(11158,'trends_uint','itemid',42627),(11159,'events','itemid',42629),(11160,'history','itemid',42629),(11161,'history_log','itemid',42629),(11162,'history_str','itemid',42629),(11163,'history_text','itemid',42629),(11164,'history_uint','itemid',42629),(11165,'trends','itemid',42629),(11166,'trends_uint','itemid',42629),(11167,'events','itemid',42628),(11168,'history','itemid',42628),(11169,'history_log','itemid',42628),(11170,'history_str','itemid',42628),(11171,'history_text','itemid',42628),(11172,'history_uint','itemid',42628),(11173,'trends','itemid',42628),(11174,'trends_uint','itemid',42628),(11175,'events','itemid',42630),(11176,'history','itemid',42630),(11177,'history_log','itemid',42630),(11178,'history_str','itemid',42630),(11179,'history_text','itemid',42630),(11180,'history_uint','itemid',42630),(11181,'trends','itemid',42630),(11182,'trends_uint','itemid',42630),(11183,'events','itemid',30142),(11184,'history','itemid',30142),(11185,'history_log','itemid',30142),(11186,'history_str','itemid',30142),(11187,'history_text','itemid',30142),(11188,'history_uint','itemid',30142),(11189,'trends','itemid',30142),(11190,'trends_uint','itemid',30142),(11191,'events','itemid',35103),(11192,'history','itemid',35103),(11193,'history_log','itemid',35103),(11194,'history_str','itemid',35103),(11195,'history_text','itemid',35103),(11196,'history_uint','itemid',35103),(11197,'trends','itemid',35103),(11198,'trends_uint','itemid',35103),(11199,'events','itemid',30191),(11200,'history','itemid',30191),(11201,'history_log','itemid',30191),(11202,'history_str','itemid',30191),(11203,'history_text','itemid',30191),(11204,'history_uint','itemid',30191),(11205,'trends','itemid',30191),(11206,'trends_uint','itemid',30191),(11207,'events','itemid',30192),(11208,'history','itemid',30192),(11209,'history_log','itemid',30192),(11210,'history_str','itemid',30192),(11211,'history_text','itemid',30192),(11212,'history_uint','itemid',30192),(11213,'trends','itemid',30192),(11214,'trends_uint','itemid',30192),(11215,'events','itemid',30187),(11216,'history','itemid',30187),(11217,'history_log','itemid',30187),(11218,'history_str','itemid',30187),(11219,'history_text','itemid',30187),(11220,'history_uint','itemid',30187),(11221,'trends','itemid',30187),(11222,'trends_uint','itemid',30187),(11223,'events','itemid',30188),(11224,'history','itemid',30188),(11225,'history_log','itemid',30188),(11226,'history_str','itemid',30188),(11227,'history_text','itemid',30188),(11228,'history_uint','itemid',30188),(11229,'trends','itemid',30188),(11230,'trends_uint','itemid',30188),(11231,'events','itemid',30190),(11232,'history','itemid',30190),(11233,'history_log','itemid',30190),(11234,'history_str','itemid',30190),(11235,'history_text','itemid',30190),(11236,'history_uint','itemid',30190),(11237,'trends','itemid',30190),(11238,'trends_uint','itemid',30190),(11239,'events','itemid',30189),(11240,'history','itemid',30189),(11241,'history_log','itemid',30189),(11242,'history_str','itemid',30189),(11243,'history_text','itemid',30189),(11244,'history_uint','itemid',30189),(11245,'trends','itemid',30189),(11246,'trends_uint','itemid',30189),(11247,'events','itemid',30230),(11248,'history','itemid',30230),(11249,'history_log','itemid',30230),(11250,'history_str','itemid',30230),(11251,'history_text','itemid',30230),(11252,'history_uint','itemid',30230),(11253,'trends','itemid',30230),(11254,'trends_uint','itemid',30230),(11255,'events','itemid',35128),(11256,'history','itemid',35128),(11257,'history_log','itemid',35128),(11258,'history_str','itemid',35128),(11259,'history_text','itemid',35128),(11260,'history_uint','itemid',35128),(11261,'trends','itemid',35128),(11262,'trends_uint','itemid',35128),(11263,'events','itemid',30231),(11264,'history','itemid',30231),(11265,'history_log','itemid',30231),(11266,'history_str','itemid',30231),(11267,'history_text','itemid',30231),(11268,'history_uint','itemid',30231),(11269,'trends','itemid',30231),(11270,'trends_uint','itemid',30231),(11271,'events','itemid',30234),(11272,'history','itemid',30234),(11273,'history_log','itemid',30234),(11274,'history_str','itemid',30234),(11275,'history_text','itemid',30234),(11276,'history_uint','itemid',30234),(11277,'trends','itemid',30234),(11278,'trends_uint','itemid',30234),(11279,'events','itemid',30235),(11280,'history','itemid',30235),(11281,'history_log','itemid',30235),(11282,'history_str','itemid',30235),(11283,'history_text','itemid',30235),(11284,'history_uint','itemid',30235),(11285,'trends','itemid',30235),(11286,'trends_uint','itemid',30235),(11287,'events','itemid',30789),(11288,'history','itemid',30789),(11289,'history_log','itemid',30789),(11290,'history_str','itemid',30789),(11291,'history_text','itemid',30789),(11292,'history_uint','itemid',30789),(11293,'trends','itemid',30789),(11294,'trends_uint','itemid',30789),(11295,'events','itemid',30790),(11296,'history','itemid',30790),(11297,'history_log','itemid',30790),(11298,'history_str','itemid',30790),(11299,'history_text','itemid',30790),(11300,'history_uint','itemid',30790),(11301,'trends','itemid',30790),(11302,'trends_uint','itemid',30790),(11303,'events','itemid',30532),(11304,'history','itemid',30532),(11305,'history_log','itemid',30532),(11306,'history_str','itemid',30532),(11307,'history_text','itemid',30532),(11308,'history_uint','itemid',30532),(11309,'trends','itemid',30532),(11310,'trends_uint','itemid',30532),(11311,'events','itemid',30569),(11312,'history','itemid',30569),(11313,'history_log','itemid',30569),(11314,'history_str','itemid',30569),(11315,'history_text','itemid',30569),(11316,'history_uint','itemid',30569),(11317,'trends','itemid',30569),(11318,'trends_uint','itemid',30569),(11319,'events','itemid',30528),(11320,'history','itemid',30528),(11321,'history_log','itemid',30528),(11322,'history_str','itemid',30528),(11323,'history_text','itemid',30528),(11324,'history_uint','itemid',30528),(11325,'trends','itemid',30528),(11326,'trends_uint','itemid',30528),(11327,'events','itemid',30554),(11328,'history','itemid',30554),(11329,'history_log','itemid',30554),(11330,'history_str','itemid',30554),(11331,'history_text','itemid',30554),(11332,'history_uint','itemid',30554),(11333,'trends','itemid',30554),(11334,'trends_uint','itemid',30554),(11335,'events','itemid',30555),(11336,'history','itemid',30555),(11337,'history_log','itemid',30555),(11338,'history_str','itemid',30555),(11339,'history_text','itemid',30555),(11340,'history_uint','itemid',30555),(11341,'trends','itemid',30555),(11342,'trends_uint','itemid',30555),(11343,'events','itemid',30556),(11344,'history','itemid',30556),(11345,'history_log','itemid',30556),(11346,'history_str','itemid',30556),(11347,'history_text','itemid',30556),(11348,'history_uint','itemid',30556),(11349,'trends','itemid',30556),(11350,'trends_uint','itemid',30556),(11351,'events','itemid',30557),(11352,'history','itemid',30557),(11353,'history_log','itemid',30557),(11354,'history_str','itemid',30557),(11355,'history_text','itemid',30557),(11356,'history_uint','itemid',30557),(11357,'trends','itemid',30557),(11358,'trends_uint','itemid',30557),(11359,'events','itemid',30553),(11360,'history','itemid',30553),(11361,'history_log','itemid',30553),(11362,'history_str','itemid',30553),(11363,'history_text','itemid',30553),(11364,'history_uint','itemid',30553),(11365,'trends','itemid',30553),(11366,'trends_uint','itemid',30553),(11367,'events','itemid',30558),(11368,'history','itemid',30558),(11369,'history_log','itemid',30558),(11370,'history_str','itemid',30558),(11371,'history_text','itemid',30558),(11372,'history_uint','itemid',30558),(11373,'trends','itemid',30558),(11374,'trends_uint','itemid',30558),(11375,'events','itemid',30559),(11376,'history','itemid',30559),(11377,'history_log','itemid',30559),(11378,'history_str','itemid',30559),(11379,'history_text','itemid',30559),(11380,'history_uint','itemid',30559),(11381,'trends','itemid',30559),(11382,'trends_uint','itemid',30559),(11383,'events','itemid',30552),(11384,'history','itemid',30552),(11385,'history_log','itemid',30552),(11386,'history_str','itemid',30552),(11387,'history_text','itemid',30552),(11388,'history_uint','itemid',30552),(11389,'trends','itemid',30552),(11390,'trends_uint','itemid',30552),(11391,'events','itemid',30560),(11392,'history','itemid',30560),(11393,'history_log','itemid',30560),(11394,'history_str','itemid',30560),(11395,'history_text','itemid',30560),(11396,'history_uint','itemid',30560),(11397,'trends','itemid',30560),(11398,'trends_uint','itemid',30560),(11399,'events','itemid',30527),(11400,'history','itemid',30527),(11401,'history_log','itemid',30527),(11402,'history_str','itemid',30527),(11403,'history_text','itemid',30527),(11404,'history_uint','itemid',30527),(11405,'trends','itemid',30527),(11406,'trends_uint','itemid',30527),(11407,'events','itemid',30562),(11408,'history','itemid',30562),(11409,'history_log','itemid',30562),(11410,'history_str','itemid',30562),(11411,'history_text','itemid',30562),(11412,'history_uint','itemid',30562),(11413,'trends','itemid',30562),(11414,'trends_uint','itemid',30562),(11415,'events','itemid',30563),(11416,'history','itemid',30563),(11417,'history_log','itemid',30563),(11418,'history_str','itemid',30563),(11419,'history_text','itemid',30563),(11420,'history_uint','itemid',30563),(11421,'trends','itemid',30563),(11422,'trends_uint','itemid',30563),(11423,'events','itemid',30564),(11424,'history','itemid',30564),(11425,'history_log','itemid',30564),(11426,'history_str','itemid',30564),(11427,'history_text','itemid',30564),(11428,'history_uint','itemid',30564),(11429,'trends','itemid',30564),(11430,'trends_uint','itemid',30564),(11431,'events','itemid',30565),(11432,'history','itemid',30565),(11433,'history_log','itemid',30565),(11434,'history_str','itemid',30565),(11435,'history_text','itemid',30565),(11436,'history_uint','itemid',30565),(11437,'trends','itemid',30565),(11438,'trends_uint','itemid',30565),(11439,'events','itemid',30531),(11440,'history','itemid',30531),(11441,'history_log','itemid',30531),(11442,'history_str','itemid',30531),(11443,'history_text','itemid',30531),(11444,'history_uint','itemid',30531),(11445,'trends','itemid',30531),(11446,'trends_uint','itemid',30531),(11447,'events','itemid',30567),(11448,'history','itemid',30567),(11449,'history_log','itemid',30567),(11450,'history_str','itemid',30567),(11451,'history_text','itemid',30567),(11452,'history_uint','itemid',30567),(11453,'trends','itemid',30567),(11454,'trends_uint','itemid',30567),(11455,'events','itemid',30568),(11456,'history','itemid',30568),(11457,'history_log','itemid',30568),(11458,'history_str','itemid',30568),(11459,'history_text','itemid',30568),(11460,'history_uint','itemid',30568),(11461,'trends','itemid',30568),(11462,'trends_uint','itemid',30568),(11463,'events','itemid',30566),(11464,'history','itemid',30566),(11465,'history_log','itemid',30566),(11466,'history_str','itemid',30566),(11467,'history_text','itemid',30566),(11468,'history_uint','itemid',30566),(11469,'trends','itemid',30566),(11470,'trends_uint','itemid',30566),(11471,'events','itemid',30529),(11472,'history','itemid',30529),(11473,'history_log','itemid',30529),(11474,'history_str','itemid',30529),(11475,'history_text','itemid',30529),(11476,'history_uint','itemid',30529),(11477,'trends','itemid',30529),(11478,'trends_uint','itemid',30529),(11479,'events','itemid',30550),(11480,'history','itemid',30550),(11481,'history_log','itemid',30550),(11482,'history_str','itemid',30550),(11483,'history_text','itemid',30550),(11484,'history_uint','itemid',30550),(11485,'trends','itemid',30550),(11486,'trends_uint','itemid',30550),(11487,'events','itemid',30551),(11488,'history','itemid',30551),(11489,'history_log','itemid',30551),(11490,'history_str','itemid',30551),(11491,'history_text','itemid',30551),(11492,'history_uint','itemid',30551),(11493,'trends','itemid',30551),(11494,'trends_uint','itemid',30551),(11495,'events','itemid',30561),(11496,'history','itemid',30561),(11497,'history_log','itemid',30561),(11498,'history_str','itemid',30561),(11499,'history_text','itemid',30561),(11500,'history_uint','itemid',30561),(11501,'trends','itemid',30561),(11502,'trends_uint','itemid',30561),(11503,'events','itemid',30541),(11504,'history','itemid',30541),(11505,'history_log','itemid',30541),(11506,'history_str','itemid',30541),(11507,'history_text','itemid',30541),(11508,'history_uint','itemid',30541),(11509,'trends','itemid',30541),(11510,'trends_uint','itemid',30541),(11511,'events','itemid',30549),(11512,'history','itemid',30549),(11513,'history_log','itemid',30549),(11514,'history_str','itemid',30549),(11515,'history_text','itemid',30549),(11516,'history_uint','itemid',30549),(11517,'trends','itemid',30549),(11518,'trends_uint','itemid',30549),(11519,'events','itemid',30533),(11520,'history','itemid',30533),(11521,'history_log','itemid',30533),(11522,'history_str','itemid',30533),(11523,'history_text','itemid',30533),(11524,'history_uint','itemid',30533),(11525,'trends','itemid',30533),(11526,'trends_uint','itemid',30533),(11527,'events','itemid',30534),(11528,'history','itemid',30534),(11529,'history_log','itemid',30534),(11530,'history_str','itemid',30534),(11531,'history_text','itemid',30534),(11532,'history_uint','itemid',30534),(11533,'trends','itemid',30534),(11534,'trends_uint','itemid',30534),(11535,'events','itemid',30536),(11536,'history','itemid',30536),(11537,'history_log','itemid',30536),(11538,'history_str','itemid',30536),(11539,'history_text','itemid',30536),(11540,'history_uint','itemid',30536),(11541,'trends','itemid',30536),(11542,'trends_uint','itemid',30536),(11543,'events','itemid',30535),(11544,'history','itemid',30535),(11545,'history_log','itemid',30535),(11546,'history_str','itemid',30535),(11547,'history_text','itemid',30535),(11548,'history_uint','itemid',30535),(11549,'trends','itemid',30535),(11550,'trends_uint','itemid',30535),(11551,'events','itemid',30537),(11552,'history','itemid',30537),(11553,'history_log','itemid',30537),(11554,'history_str','itemid',30537),(11555,'history_text','itemid',30537),(11556,'history_uint','itemid',30537),(11557,'trends','itemid',30537),(11558,'trends_uint','itemid',30537),(11559,'events','itemid',30538),(11560,'history','itemid',30538),(11561,'history_log','itemid',30538),(11562,'history_str','itemid',30538),(11563,'history_text','itemid',30538),(11564,'history_uint','itemid',30538),(11565,'trends','itemid',30538),(11566,'trends_uint','itemid',30538),(11567,'events','itemid',30540),(11568,'history','itemid',30540),(11569,'history_log','itemid',30540),(11570,'history_str','itemid',30540),(11571,'history_text','itemid',30540),(11572,'history_uint','itemid',30540),(11573,'trends','itemid',30540),(11574,'trends_uint','itemid',30540),(11575,'events','itemid',30539),(11576,'history','itemid',30539),(11577,'history_log','itemid',30539),(11578,'history_str','itemid',30539),(11579,'history_text','itemid',30539),(11580,'history_uint','itemid',30539),(11581,'trends','itemid',30539),(11582,'trends_uint','itemid',30539),(11583,'events','itemid',30542),(11584,'history','itemid',30542),(11585,'history_log','itemid',30542),(11586,'history_str','itemid',30542),(11587,'history_text','itemid',30542),(11588,'history_uint','itemid',30542),(11589,'trends','itemid',30542),(11590,'trends_uint','itemid',30542),(11591,'events','itemid',30543),(11592,'history','itemid',30543),(11593,'history_log','itemid',30543),(11594,'history_str','itemid',30543),(11595,'history_text','itemid',30543),(11596,'history_uint','itemid',30543),(11597,'trends','itemid',30543),(11598,'trends_uint','itemid',30543),(11599,'events','itemid',30544),(11600,'history','itemid',30544),(11601,'history_log','itemid',30544),(11602,'history_str','itemid',30544),(11603,'history_text','itemid',30544),(11604,'history_uint','itemid',30544),(11605,'trends','itemid',30544),(11606,'trends_uint','itemid',30544),(11607,'events','itemid',30545),(11608,'history','itemid',30545),(11609,'history_log','itemid',30545),(11610,'history_str','itemid',30545),(11611,'history_text','itemid',30545),(11612,'history_uint','itemid',30545),(11613,'trends','itemid',30545),(11614,'trends_uint','itemid',30545),(11615,'events','itemid',30530),(11616,'history','itemid',30530),(11617,'history_log','itemid',30530),(11618,'history_str','itemid',30530),(11619,'history_text','itemid',30530),(11620,'history_uint','itemid',30530),(11621,'trends','itemid',30530),(11622,'trends_uint','itemid',30530),(11623,'events','itemid',30546),(11624,'history','itemid',30546),(11625,'history_log','itemid',30546),(11626,'history_str','itemid',30546),(11627,'history_text','itemid',30546),(11628,'history_uint','itemid',30546),(11629,'trends','itemid',30546),(11630,'trends_uint','itemid',30546),(11631,'events','itemid',30547),(11632,'history','itemid',30547),(11633,'history_log','itemid',30547),(11634,'history_str','itemid',30547),(11635,'history_text','itemid',30547),(11636,'history_uint','itemid',30547),(11637,'trends','itemid',30547),(11638,'trends_uint','itemid',30547),(11639,'events','itemid',30548),(11640,'history','itemid',30548),(11641,'history_log','itemid',30548),(11642,'history_str','itemid',30548),(11643,'history_text','itemid',30548),(11644,'history_uint','itemid',30548),(11645,'trends','itemid',30548),(11646,'trends_uint','itemid',30548),(11647,'events','itemid',30570),(11648,'history','itemid',30570),(11649,'history_log','itemid',30570),(11650,'history_str','itemid',30570),(11651,'history_text','itemid',30570),(11652,'history_uint','itemid',30570),(11653,'trends','itemid',30570),(11654,'trends_uint','itemid',30570),(11655,'events','itemid',30702),(11656,'history','itemid',30702),(11657,'history_log','itemid',30702),(11658,'history_str','itemid',30702),(11659,'history_text','itemid',30702),(11660,'history_uint','itemid',30702),(11661,'trends','itemid',30702),(11662,'trends_uint','itemid',30702),(11663,'events','itemid',30694),(11664,'history','itemid',30694),(11665,'history_log','itemid',30694),(11666,'history_str','itemid',30694),(11667,'history_text','itemid',30694),(11668,'history_uint','itemid',30694),(11669,'trends','itemid',30694),(11670,'trends_uint','itemid',30694),(11671,'events','itemid',30691),(11672,'history','itemid',30691),(11673,'history_log','itemid',30691),(11674,'history_str','itemid',30691),(11675,'history_text','itemid',30691),(11676,'history_uint','itemid',30691),(11677,'trends','itemid',30691),(11678,'trends_uint','itemid',30691),(11679,'events','itemid',30711),(11680,'history','itemid',30711),(11681,'history_log','itemid',30711),(11682,'history_str','itemid',30711),(11683,'history_text','itemid',30711),(11684,'history_uint','itemid',30711),(11685,'trends','itemid',30711),(11686,'trends_uint','itemid',30711),(11687,'events','itemid',30710),(11688,'history','itemid',30710),(11689,'history_log','itemid',30710),(11690,'history_str','itemid',30710),(11691,'history_text','itemid',30710),(11692,'history_uint','itemid',30710),(11693,'trends','itemid',30710),(11694,'trends_uint','itemid',30710),(11695,'events','itemid',30709),(11696,'history','itemid',30709),(11697,'history_log','itemid',30709),(11698,'history_str','itemid',30709),(11699,'history_text','itemid',30709),(11700,'history_uint','itemid',30709),(11701,'trends','itemid',30709),(11702,'trends_uint','itemid',30709),(11703,'events','itemid',30708),(11704,'history','itemid',30708),(11705,'history_log','itemid',30708),(11706,'history_str','itemid',30708),(11707,'history_text','itemid',30708),(11708,'history_uint','itemid',30708),(11709,'trends','itemid',30708),(11710,'trends_uint','itemid',30708),(11711,'events','itemid',30707),(11712,'history','itemid',30707),(11713,'history_log','itemid',30707),(11714,'history_str','itemid',30707),(11715,'history_text','itemid',30707),(11716,'history_uint','itemid',30707),(11717,'trends','itemid',30707),(11718,'trends_uint','itemid',30707),(11719,'events','itemid',30706),(11720,'history','itemid',30706),(11721,'history_log','itemid',30706),(11722,'history_str','itemid',30706),(11723,'history_text','itemid',30706),(11724,'history_uint','itemid',30706),(11725,'trends','itemid',30706),(11726,'trends_uint','itemid',30706),(11727,'events','itemid',30705),(11728,'history','itemid',30705),(11729,'history_log','itemid',30705),(11730,'history_str','itemid',30705),(11731,'history_text','itemid',30705),(11732,'history_uint','itemid',30705),(11733,'trends','itemid',30705),(11734,'trends_uint','itemid',30705),(11735,'events','itemid',30704),(11736,'history','itemid',30704),(11737,'history_log','itemid',30704),(11738,'history_str','itemid',30704),(11739,'history_text','itemid',30704),(11740,'history_uint','itemid',30704),(11741,'trends','itemid',30704),(11742,'trends_uint','itemid',30704),(11743,'events','itemid',30712),(11744,'history','itemid',30712),(11745,'history_log','itemid',30712),(11746,'history_str','itemid',30712),(11747,'history_text','itemid',30712),(11748,'history_uint','itemid',30712),(11749,'trends','itemid',30712),(11750,'trends_uint','itemid',30712),(11751,'events','itemid',30703),(11752,'history','itemid',30703),(11753,'history_log','itemid',30703),(11754,'history_str','itemid',30703),(11755,'history_text','itemid',30703),(11756,'history_uint','itemid',30703),(11757,'trends','itemid',30703),(11758,'trends_uint','itemid',30703),(11759,'events','itemid',30695),(11760,'history','itemid',30695),(11761,'history_log','itemid',30695),(11762,'history_str','itemid',30695),(11763,'history_text','itemid',30695),(11764,'history_uint','itemid',30695),(11765,'trends','itemid',30695),(11766,'trends_uint','itemid',30695),(11767,'events','itemid',30701),(11768,'history','itemid',30701),(11769,'history_log','itemid',30701),(11770,'history_str','itemid',30701),(11771,'history_text','itemid',30701),(11772,'history_uint','itemid',30701),(11773,'trends','itemid',30701),(11774,'trends_uint','itemid',30701),(11775,'events','itemid',30700),(11776,'history','itemid',30700),(11777,'history_log','itemid',30700),(11778,'history_str','itemid',30700),(11779,'history_text','itemid',30700),(11780,'history_uint','itemid',30700),(11781,'trends','itemid',30700),(11782,'trends_uint','itemid',30700),(11783,'events','itemid',30699),(11784,'history','itemid',30699),(11785,'history_log','itemid',30699),(11786,'history_str','itemid',30699),(11787,'history_text','itemid',30699),(11788,'history_uint','itemid',30699),(11789,'trends','itemid',30699),(11790,'trends_uint','itemid',30699),(11791,'events','itemid',30698),(11792,'history','itemid',30698),(11793,'history_log','itemid',30698),(11794,'history_str','itemid',30698),(11795,'history_text','itemid',30698),(11796,'history_uint','itemid',30698),(11797,'trends','itemid',30698),(11798,'trends_uint','itemid',30698),(11799,'events','itemid',30697),(11800,'history','itemid',30697),(11801,'history_log','itemid',30697),(11802,'history_str','itemid',30697),(11803,'history_text','itemid',30697),(11804,'history_uint','itemid',30697),(11805,'trends','itemid',30697),(11806,'trends_uint','itemid',30697),(11807,'events','itemid',30693),(11808,'history','itemid',30693),(11809,'history_log','itemid',30693),(11810,'history_str','itemid',30693),(11811,'history_text','itemid',30693),(11812,'history_uint','itemid',30693),(11813,'trends','itemid',30693),(11814,'trends_uint','itemid',30693),(11815,'events','itemid',30696),(11816,'history','itemid',30696),(11817,'history_log','itemid',30696),(11818,'history_str','itemid',30696),(11819,'history_text','itemid',30696),(11820,'history_uint','itemid',30696),(11821,'trends','itemid',30696),(11822,'trends_uint','itemid',30696),(11823,'events','itemid',30692),(11824,'history','itemid',30692),(11825,'history_log','itemid',30692),(11826,'history_str','itemid',30692),(11827,'history_text','itemid',30692),(11828,'history_uint','itemid',30692),(11829,'trends','itemid',30692),(11830,'trends_uint','itemid',30692),(11831,'events','itemid',30690),(11832,'history','itemid',30690),(11833,'history_log','itemid',30690),(11834,'history_str','itemid',30690),(11835,'history_text','itemid',30690),(11836,'history_uint','itemid',30690),(11837,'trends','itemid',30690),(11838,'trends_uint','itemid',30690),(11839,'events','itemid',30848),(11840,'history','itemid',30848),(11841,'history_log','itemid',30848),(11842,'history_str','itemid',30848),(11843,'history_text','itemid',30848),(11844,'history_uint','itemid',30848),(11845,'trends','itemid',30848),(11846,'trends_uint','itemid',30848),(11847,'events','itemid',30849),(11848,'history','itemid',30849),(11849,'history_log','itemid',30849),(11850,'history_str','itemid',30849),(11851,'history_text','itemid',30849),(11852,'history_uint','itemid',30849),(11853,'trends','itemid',30849),(11854,'trends_uint','itemid',30849),(11855,'events','itemid',30851),(11856,'history','itemid',30851),(11857,'history_log','itemid',30851),(11858,'history_str','itemid',30851),(11859,'history_text','itemid',30851),(11860,'history_uint','itemid',30851),(11861,'trends','itemid',30851),(11862,'trends_uint','itemid',30851),(11863,'events','itemid',30852),(11864,'history','itemid',30852),(11865,'history_log','itemid',30852),(11866,'history_str','itemid',30852),(11867,'history_text','itemid',30852),(11868,'history_uint','itemid',30852),(11869,'trends','itemid',30852),(11870,'trends_uint','itemid',30852),(11871,'events','itemid',30853),(11872,'history','itemid',30853),(11873,'history_log','itemid',30853),(11874,'history_str','itemid',30853),(11875,'history_text','itemid',30853),(11876,'history_uint','itemid',30853),(11877,'trends','itemid',30853),(11878,'trends_uint','itemid',30853),(11879,'events','itemid',30830),(11880,'history','itemid',30830),(11881,'history_log','itemid',30830),(11882,'history_str','itemid',30830),(11883,'history_text','itemid',30830),(11884,'history_uint','itemid',30830),(11885,'trends','itemid',30830),(11886,'trends_uint','itemid',30830),(11887,'events','itemid',30854),(11888,'history','itemid',30854),(11889,'history_log','itemid',30854),(11890,'history_str','itemid',30854),(11891,'history_text','itemid',30854),(11892,'history_uint','itemid',30854),(11893,'trends','itemid',30854),(11894,'trends_uint','itemid',30854),(11895,'events','itemid',30855),(11896,'history','itemid',30855),(11897,'history_log','itemid',30855),(11898,'history_str','itemid',30855),(11899,'history_text','itemid',30855),(11900,'history_uint','itemid',30855),(11901,'trends','itemid',30855),(11902,'trends_uint','itemid',30855),(11903,'events','itemid',30856),(11904,'history','itemid',30856),(11905,'history_log','itemid',30856),(11906,'history_str','itemid',30856),(11907,'history_text','itemid',30856),(11908,'history_uint','itemid',30856),(11909,'trends','itemid',30856),(11910,'trends_uint','itemid',30856),(11911,'events','itemid',30858),(11912,'history','itemid',30858),(11913,'history_log','itemid',30858),(11914,'history_str','itemid',30858),(11915,'history_text','itemid',30858),(11916,'history_uint','itemid',30858),(11917,'trends','itemid',30858),(11918,'trends_uint','itemid',30858),(11919,'events','itemid',30857),(11920,'history','itemid',30857),(11921,'history_log','itemid',30857),(11922,'history_str','itemid',30857),(11923,'history_text','itemid',30857),(11924,'history_uint','itemid',30857),(11925,'trends','itemid',30857),(11926,'trends_uint','itemid',30857),(11927,'events','itemid',30859),(11928,'history','itemid',30859),(11929,'history_log','itemid',30859),(11930,'history_str','itemid',30859),(11931,'history_text','itemid',30859),(11932,'history_uint','itemid',30859),(11933,'trends','itemid',30859),(11934,'trends_uint','itemid',30859),(11935,'events','itemid',30860),(11936,'history','itemid',30860),(11937,'history_log','itemid',30860),(11938,'history_str','itemid',30860),(11939,'history_text','itemid',30860),(11940,'history_uint','itemid',30860),(11941,'trends','itemid',30860),(11942,'trends_uint','itemid',30860),(11943,'events','itemid',30850),(11944,'history','itemid',30850),(11945,'history_log','itemid',30850),(11946,'history_str','itemid',30850),(11947,'history_text','itemid',30850),(11948,'history_uint','itemid',30850),(11949,'trends','itemid',30850),(11950,'trends_uint','itemid',30850),(11951,'events','itemid',30861),(11952,'history','itemid',30861),(11953,'history_log','itemid',30861),(11954,'history_str','itemid',30861),(11955,'history_text','itemid',30861),(11956,'history_uint','itemid',30861),(11957,'trends','itemid',30861),(11958,'trends_uint','itemid',30861),(11959,'events','itemid',30863),(11960,'history','itemid',30863),(11961,'history_log','itemid',30863),(11962,'history_str','itemid',30863),(11963,'history_text','itemid',30863),(11964,'history_uint','itemid',30863),(11965,'trends','itemid',30863),(11966,'trends_uint','itemid',30863),(11967,'events','itemid',30864),(11968,'history','itemid',30864),(11969,'history_log','itemid',30864),(11970,'history_str','itemid',30864),(11971,'history_text','itemid',30864),(11972,'history_uint','itemid',30864),(11973,'trends','itemid',30864),(11974,'trends_uint','itemid',30864),(11975,'events','itemid',30865),(11976,'history','itemid',30865),(11977,'history_log','itemid',30865),(11978,'history_str','itemid',30865),(11979,'history_text','itemid',30865),(11980,'history_uint','itemid',30865),(11981,'trends','itemid',30865),(11982,'trends_uint','itemid',30865),(11983,'events','itemid',30866),(11984,'history','itemid',30866),(11985,'history_log','itemid',30866),(11986,'history_str','itemid',30866),(11987,'history_text','itemid',30866),(11988,'history_uint','itemid',30866),(11989,'trends','itemid',30866),(11990,'trends_uint','itemid',30866),(11991,'events','itemid',30867),(11992,'history','itemid',30867),(11993,'history_log','itemid',30867),(11994,'history_str','itemid',30867),(11995,'history_text','itemid',30867),(11996,'history_uint','itemid',30867),(11997,'trends','itemid',30867),(11998,'trends_uint','itemid',30867),(11999,'events','itemid',30868),(12000,'history','itemid',30868),(12001,'history_log','itemid',30868),(12002,'history_str','itemid',30868),(12003,'history_text','itemid',30868),(12004,'history_uint','itemid',30868),(12005,'trends','itemid',30868),(12006,'trends_uint','itemid',30868),(12007,'events','itemid',30869),(12008,'history','itemid',30869),(12009,'history_log','itemid',30869),(12010,'history_str','itemid',30869),(12011,'history_text','itemid',30869),(12012,'history_uint','itemid',30869),(12013,'trends','itemid',30869),(12014,'trends_uint','itemid',30869),(12015,'events','itemid',30872),(12016,'history','itemid',30872),(12017,'history_log','itemid',30872),(12018,'history_str','itemid',30872),(12019,'history_text','itemid',30872),(12020,'history_uint','itemid',30872),(12021,'trends','itemid',30872),(12022,'trends_uint','itemid',30872),(12023,'events','itemid',30870),(12024,'history','itemid',30870),(12025,'history_log','itemid',30870),(12026,'history_str','itemid',30870),(12027,'history_text','itemid',30870),(12028,'history_uint','itemid',30870),(12029,'trends','itemid',30870),(12030,'trends_uint','itemid',30870),(12031,'events','itemid',30871),(12032,'history','itemid',30871),(12033,'history_log','itemid',30871),(12034,'history_str','itemid',30871),(12035,'history_text','itemid',30871),(12036,'history_uint','itemid',30871),(12037,'trends','itemid',30871),(12038,'trends_uint','itemid',30871),(12039,'events','itemid',30862),(12040,'history','itemid',30862),(12041,'history_log','itemid',30862),(12042,'history_str','itemid',30862),(12043,'history_text','itemid',30862),(12044,'history_uint','itemid',30862),(12045,'trends','itemid',30862),(12046,'trends_uint','itemid',30862),(12047,'events','itemid',30821),(12048,'history','itemid',30821),(12049,'history_log','itemid',30821),(12050,'history_str','itemid',30821),(12051,'history_text','itemid',30821),(12052,'history_uint','itemid',30821),(12053,'trends','itemid',30821),(12054,'trends_uint','itemid',30821),(12055,'events','itemid',30827),(12056,'history','itemid',30827),(12057,'history_log','itemid',30827),(12058,'history_str','itemid',30827),(12059,'history_text','itemid',30827),(12060,'history_uint','itemid',30827),(12061,'trends','itemid',30827),(12062,'trends_uint','itemid',30827),(12063,'events','itemid',30847),(12064,'history','itemid',30847),(12065,'history_log','itemid',30847),(12066,'history_str','itemid',30847),(12067,'history_text','itemid',30847),(12068,'history_uint','itemid',30847),(12069,'trends','itemid',30847),(12070,'trends_uint','itemid',30847),(12071,'events','itemid',30833),(12072,'history','itemid',30833),(12073,'history_log','itemid',30833),(12074,'history_str','itemid',30833),(12075,'history_text','itemid',30833),(12076,'history_uint','itemid',30833),(12077,'trends','itemid',30833),(12078,'trends_uint','itemid',30833),(12079,'events','itemid',30834),(12080,'history','itemid',30834),(12081,'history_log','itemid',30834),(12082,'history_str','itemid',30834),(12083,'history_text','itemid',30834),(12084,'history_uint','itemid',30834),(12085,'trends','itemid',30834),(12086,'trends_uint','itemid',30834),(12087,'events','itemid',30835),(12088,'history','itemid',30835),(12089,'history_log','itemid',30835),(12090,'history_str','itemid',30835),(12091,'history_text','itemid',30835),(12092,'history_uint','itemid',30835),(12093,'trends','itemid',30835),(12094,'trends_uint','itemid',30835),(12095,'events','itemid',30823),(12096,'history','itemid',30823),(12097,'history_log','itemid',30823),(12098,'history_str','itemid',30823),(12099,'history_text','itemid',30823),(12100,'history_uint','itemid',30823),(12101,'trends','itemid',30823),(12102,'trends_uint','itemid',30823),(12103,'events','itemid',30837),(12104,'history','itemid',30837),(12105,'history_log','itemid',30837),(12106,'history_str','itemid',30837),(12107,'history_text','itemid',30837),(12108,'history_uint','itemid',30837),(12109,'trends','itemid',30837),(12110,'trends_uint','itemid',30837),(12111,'events','itemid',30838),(12112,'history','itemid',30838),(12113,'history_log','itemid',30838),(12114,'history_str','itemid',30838),(12115,'history_text','itemid',30838),(12116,'history_uint','itemid',30838),(12117,'trends','itemid',30838),(12118,'trends_uint','itemid',30838),(12119,'events','itemid',30832),(12120,'history','itemid',30832),(12121,'history_log','itemid',30832),(12122,'history_str','itemid',30832),(12123,'history_text','itemid',30832),(12124,'history_uint','itemid',30832),(12125,'trends','itemid',30832),(12126,'trends_uint','itemid',30832),(12127,'events','itemid',30839),(12128,'history','itemid',30839),(12129,'history_log','itemid',30839),(12130,'history_str','itemid',30839),(12131,'history_text','itemid',30839),(12132,'history_uint','itemid',30839),(12133,'trends','itemid',30839),(12134,'trends_uint','itemid',30839),(12135,'events','itemid',30841),(12136,'history','itemid',30841),(12137,'history_log','itemid',30841),(12138,'history_str','itemid',30841),(12139,'history_text','itemid',30841),(12140,'history_uint','itemid',30841),(12141,'trends','itemid',30841),(12142,'trends_uint','itemid',30841),(12143,'events','itemid',30824),(12144,'history','itemid',30824),(12145,'history_log','itemid',30824),(12146,'history_str','itemid',30824),(12147,'history_text','itemid',30824),(12148,'history_uint','itemid',30824),(12149,'trends','itemid',30824),(12150,'trends_uint','itemid',30824),(12151,'events','itemid',30825),(12152,'history','itemid',30825),(12153,'history_log','itemid',30825),(12154,'history_str','itemid',30825),(12155,'history_text','itemid',30825),(12156,'history_uint','itemid',30825),(12157,'trends','itemid',30825),(12158,'trends_uint','itemid',30825),(12159,'events','itemid',30826),(12160,'history','itemid',30826),(12161,'history_log','itemid',30826),(12162,'history_str','itemid',30826),(12163,'history_text','itemid',30826),(12164,'history_uint','itemid',30826),(12165,'trends','itemid',30826),(12166,'trends_uint','itemid',30826),(12167,'events','itemid',30829),(12168,'history','itemid',30829),(12169,'history_log','itemid',30829),(12170,'history_str','itemid',30829),(12171,'history_text','itemid',30829),(12172,'history_uint','itemid',30829),(12173,'trends','itemid',30829),(12174,'trends_uint','itemid',30829),(12175,'events','itemid',30828),(12176,'history','itemid',30828),(12177,'history_log','itemid',30828),(12178,'history_str','itemid',30828),(12179,'history_text','itemid',30828),(12180,'history_uint','itemid',30828),(12181,'trends','itemid',30828),(12182,'trends_uint','itemid',30828),(12183,'events','itemid',30846),(12184,'history','itemid',30846),(12185,'history_log','itemid',30846),(12186,'history_str','itemid',30846),(12187,'history_text','itemid',30846),(12188,'history_uint','itemid',30846),(12189,'trends','itemid',30846),(12190,'trends_uint','itemid',30846),(12191,'events','itemid',30822),(12192,'history','itemid',30822),(12193,'history_log','itemid',30822),(12194,'history_str','itemid',30822),(12195,'history_text','itemid',30822),(12196,'history_uint','itemid',30822),(12197,'trends','itemid',30822),(12198,'trends_uint','itemid',30822),(12199,'events','itemid',30831),(12200,'history','itemid',30831),(12201,'history_log','itemid',30831),(12202,'history_str','itemid',30831),(12203,'history_text','itemid',30831),(12204,'history_uint','itemid',30831),(12205,'trends','itemid',30831),(12206,'trends_uint','itemid',30831),(12207,'events','itemid',34320),(12208,'history','itemid',34320),(12209,'history_log','itemid',34320),(12210,'history_str','itemid',34320),(12211,'history_text','itemid',34320),(12212,'history_uint','itemid',34320),(12213,'trends','itemid',34320),(12214,'trends_uint','itemid',34320),(12215,'events','itemid',30845),(12216,'history','itemid',30845),(12217,'history_log','itemid',30845),(12218,'history_str','itemid',30845),(12219,'history_text','itemid',30845),(12220,'history_uint','itemid',30845),(12221,'trends','itemid',30845),(12222,'trends_uint','itemid',30845),(12223,'events','itemid',30844),(12224,'history','itemid',30844),(12225,'history_log','itemid',30844),(12226,'history_str','itemid',30844),(12227,'history_text','itemid',30844),(12228,'history_uint','itemid',30844),(12229,'trends','itemid',30844),(12230,'trends_uint','itemid',30844),(12231,'events','itemid',30843),(12232,'history','itemid',30843),(12233,'history_log','itemid',30843),(12234,'history_str','itemid',30843),(12235,'history_text','itemid',30843),(12236,'history_uint','itemid',30843),(12237,'trends','itemid',30843),(12238,'trends_uint','itemid',30843),(12239,'events','itemid',30842),(12240,'history','itemid',30842),(12241,'history_log','itemid',30842),(12242,'history_str','itemid',30842),(12243,'history_text','itemid',30842),(12244,'history_uint','itemid',30842),(12245,'trends','itemid',30842),(12246,'trends_uint','itemid',30842),(12247,'events','itemid',30836),(12248,'history','itemid',30836),(12249,'history_log','itemid',30836),(12250,'history_str','itemid',30836),(12251,'history_text','itemid',30836),(12252,'history_uint','itemid',30836),(12253,'trends','itemid',30836),(12254,'trends_uint','itemid',30836),(12255,'events','itemid',30873),(12256,'history','itemid',30873),(12257,'history_log','itemid',30873),(12258,'history_str','itemid',30873),(12259,'history_text','itemid',30873),(12260,'history_uint','itemid',30873),(12261,'trends','itemid',30873),(12262,'trends_uint','itemid',30873),(12263,'events','itemid',31054),(12264,'history','itemid',31054),(12265,'history_log','itemid',31054),(12266,'history_str','itemid',31054),(12267,'history_text','itemid',31054),(12268,'history_uint','itemid',31054),(12269,'trends','itemid',31054),(12270,'trends_uint','itemid',31054),(12271,'events','itemid',30943),(12272,'history','itemid',30943),(12273,'history_log','itemid',30943),(12274,'history_str','itemid',30943),(12275,'history_text','itemid',30943),(12276,'history_uint','itemid',30943),(12277,'trends','itemid',30943),(12278,'trends_uint','itemid',30943),(12279,'events','itemid',30953),(12280,'history','itemid',30953),(12281,'history_log','itemid',30953),(12282,'history_str','itemid',30953),(12283,'history_text','itemid',30953),(12284,'history_uint','itemid',30953),(12285,'trends','itemid',30953),(12286,'trends_uint','itemid',30953),(12287,'events','itemid',30946),(12288,'history','itemid',30946),(12289,'history_log','itemid',30946),(12290,'history_str','itemid',30946),(12291,'history_text','itemid',30946),(12292,'history_uint','itemid',30946),(12293,'trends','itemid',30946),(12294,'trends_uint','itemid',30946),(12295,'events','itemid',30947),(12296,'history','itemid',30947),(12297,'history_log','itemid',30947),(12298,'history_str','itemid',30947),(12299,'history_text','itemid',30947),(12300,'history_uint','itemid',30947),(12301,'trends','itemid',30947),(12302,'trends_uint','itemid',30947),(12303,'events','itemid',30948),(12304,'history','itemid',30948),(12305,'history_log','itemid',30948),(12306,'history_str','itemid',30948),(12307,'history_text','itemid',30948),(12308,'history_uint','itemid',30948),(12309,'trends','itemid',30948),(12310,'trends_uint','itemid',30948),(12311,'events','itemid',30925),(12312,'history','itemid',30925),(12313,'history_log','itemid',30925),(12314,'history_str','itemid',30925),(12315,'history_text','itemid',30925),(12316,'history_uint','itemid',30925),(12317,'trends','itemid',30925),(12318,'trends_uint','itemid',30925),(12319,'events','itemid',30926),(12320,'history','itemid',30926),(12321,'history_log','itemid',30926),(12322,'history_str','itemid',30926),(12323,'history_text','itemid',30926),(12324,'history_uint','itemid',30926),(12325,'trends','itemid',30926),(12326,'trends_uint','itemid',30926),(12327,'events','itemid',30949),(12328,'history','itemid',30949),(12329,'history_log','itemid',30949),(12330,'history_str','itemid',30949),(12331,'history_text','itemid',30949),(12332,'history_uint','itemid',30949),(12333,'trends','itemid',30949),(12334,'trends_uint','itemid',30949),(12335,'events','itemid',30950),(12336,'history','itemid',30950),(12337,'history_log','itemid',30950),(12338,'history_str','itemid',30950),(12339,'history_text','itemid',30950),(12340,'history_uint','itemid',30950),(12341,'trends','itemid',30950),(12342,'trends_uint','itemid',30950),(12343,'events','itemid',30951),(12344,'history','itemid',30951),(12345,'history_log','itemid',30951),(12346,'history_str','itemid',30951),(12347,'history_text','itemid',30951),(12348,'history_uint','itemid',30951),(12349,'trends','itemid',30951),(12350,'trends_uint','itemid',30951),(12351,'events','itemid',30945),(12352,'history','itemid',30945),(12353,'history_log','itemid',30945),(12354,'history_str','itemid',30945),(12355,'history_text','itemid',30945),(12356,'history_uint','itemid',30945),(12357,'trends','itemid',30945),(12358,'trends_uint','itemid',30945),(12359,'events','itemid',30924),(12360,'history','itemid',30924),(12361,'history_log','itemid',30924),(12362,'history_str','itemid',30924),(12363,'history_text','itemid',30924),(12364,'history_uint','itemid',30924),(12365,'trends','itemid',30924),(12366,'trends_uint','itemid',30924),(12367,'events','itemid',30952),(12368,'history','itemid',30952),(12369,'history_log','itemid',30952),(12370,'history_str','itemid',30952),(12371,'history_text','itemid',30952),(12372,'history_uint','itemid',30952),(12373,'trends','itemid',30952),(12374,'trends_uint','itemid',30952),(12375,'events','itemid',30954),(12376,'history','itemid',30954),(12377,'history_log','itemid',30954),(12378,'history_str','itemid',30954),(12379,'history_text','itemid',30954),(12380,'history_uint','itemid',30954),(12381,'trends','itemid',30954),(12382,'trends_uint','itemid',30954),(12383,'events','itemid',30955),(12384,'history','itemid',30955),(12385,'history_log','itemid',30955),(12386,'history_str','itemid',30955),(12387,'history_text','itemid',30955),(12388,'history_uint','itemid',30955),(12389,'trends','itemid',30955),(12390,'trends_uint','itemid',30955),(12391,'events','itemid',30956),(12392,'history','itemid',30956),(12393,'history_log','itemid',30956),(12394,'history_str','itemid',30956),(12395,'history_text','itemid',30956),(12396,'history_uint','itemid',30956),(12397,'trends','itemid',30956),(12398,'trends_uint','itemid',30956),(12399,'events','itemid',30957),(12400,'history','itemid',30957),(12401,'history_log','itemid',30957),(12402,'history_str','itemid',30957),(12403,'history_text','itemid',30957),(12404,'history_uint','itemid',30957),(12405,'trends','itemid',30957),(12406,'trends_uint','itemid',30957),(12407,'events','itemid',30958),(12408,'history','itemid',30958),(12409,'history_log','itemid',30958),(12410,'history_str','itemid',30958),(12411,'history_text','itemid',30958),(12412,'history_uint','itemid',30958),(12413,'trends','itemid',30958),(12414,'trends_uint','itemid',30958),(12415,'events','itemid',30959),(12416,'history','itemid',30959),(12417,'history_log','itemid',30959),(12418,'history_str','itemid',30959),(12419,'history_text','itemid',30959),(12420,'history_uint','itemid',30959),(12421,'trends','itemid',30959),(12422,'trends_uint','itemid',30959),(12423,'events','itemid',30960),(12424,'history','itemid',30960),(12425,'history_log','itemid',30960),(12426,'history_str','itemid',30960),(12427,'history_text','itemid',30960),(12428,'history_uint','itemid',30960),(12429,'trends','itemid',30960),(12430,'trends_uint','itemid',30960),(12431,'events','itemid',30944),(12432,'history','itemid',30944),(12433,'history_log','itemid',30944),(12434,'history_str','itemid',30944),(12435,'history_text','itemid',30944),(12436,'history_uint','itemid',30944),(12437,'trends','itemid',30944),(12438,'trends_uint','itemid',30944),(12439,'events','itemid',30935),(12440,'history','itemid',30935),(12441,'history_log','itemid',30935),(12442,'history_str','itemid',30935),(12443,'history_text','itemid',30935),(12444,'history_uint','itemid',30935),(12445,'trends','itemid',30935),(12446,'trends_uint','itemid',30935),(12447,'events','itemid',30942),(12448,'history','itemid',30942),(12449,'history_log','itemid',30942),(12450,'history_str','itemid',30942),(12451,'history_text','itemid',30942),(12452,'history_uint','itemid',30942),(12453,'trends','itemid',30942),(12454,'trends_uint','itemid',30942),(12455,'events','itemid',30927),(12456,'history','itemid',30927),(12457,'history_log','itemid',30927),(12458,'history_str','itemid',30927),(12459,'history_text','itemid',30927),(12460,'history_uint','itemid',30927),(12461,'trends','itemid',30927),(12462,'trends_uint','itemid',30927),(12463,'events','itemid',30928),(12464,'history','itemid',30928),(12465,'history_log','itemid',30928),(12466,'history_str','itemid',30928),(12467,'history_text','itemid',30928),(12468,'history_uint','itemid',30928),(12469,'trends','itemid',30928),(12470,'trends_uint','itemid',30928),(12471,'events','itemid',30929),(12472,'history','itemid',30929),(12473,'history_log','itemid',30929),(12474,'history_str','itemid',30929),(12475,'history_text','itemid',30929),(12476,'history_uint','itemid',30929),(12477,'trends','itemid',30929),(12478,'trends_uint','itemid',30929),(12479,'events','itemid',30930),(12480,'history','itemid',30930),(12481,'history_log','itemid',30930),(12482,'history_str','itemid',30930),(12483,'history_text','itemid',30930),(12484,'history_uint','itemid',30930),(12485,'trends','itemid',30930),(12486,'trends_uint','itemid',30930),(12487,'events','itemid',30931),(12488,'history','itemid',30931),(12489,'history_log','itemid',30931),(12490,'history_str','itemid',30931),(12491,'history_text','itemid',30931),(12492,'history_uint','itemid',30931),(12493,'trends','itemid',30931),(12494,'trends_uint','itemid',30931),(12495,'events','itemid',30932),(12496,'history','itemid',30932),(12497,'history_log','itemid',30932),(12498,'history_str','itemid',30932),(12499,'history_text','itemid',30932),(12500,'history_uint','itemid',30932),(12501,'trends','itemid',30932),(12502,'trends_uint','itemid',30932),(12503,'events','itemid',30933),(12504,'history','itemid',30933),(12505,'history_log','itemid',30933),(12506,'history_str','itemid',30933),(12507,'history_text','itemid',30933),(12508,'history_uint','itemid',30933),(12509,'trends','itemid',30933),(12510,'trends_uint','itemid',30933),(12511,'events','itemid',30934),(12512,'history','itemid',30934),(12513,'history_log','itemid',30934),(12514,'history_str','itemid',30934),(12515,'history_text','itemid',30934),(12516,'history_uint','itemid',30934),(12517,'trends','itemid',30934),(12518,'trends_uint','itemid',30934),(12519,'events','itemid',30936),(12520,'history','itemid',30936),(12521,'history_log','itemid',30936),(12522,'history_str','itemid',30936),(12523,'history_text','itemid',30936),(12524,'history_uint','itemid',30936),(12525,'trends','itemid',30936),(12526,'trends_uint','itemid',30936),(12527,'events','itemid',30937),(12528,'history','itemid',30937),(12529,'history_log','itemid',30937),(12530,'history_str','itemid',30937),(12531,'history_text','itemid',30937),(12532,'history_uint','itemid',30937),(12533,'trends','itemid',30937),(12534,'trends_uint','itemid',30937),(12535,'events','itemid',30938),(12536,'history','itemid',30938),(12537,'history_log','itemid',30938),(12538,'history_str','itemid',30938),(12539,'history_text','itemid',30938),(12540,'history_uint','itemid',30938),(12541,'trends','itemid',30938),(12542,'trends_uint','itemid',30938),(12543,'events','itemid',30939),(12544,'history','itemid',30939),(12545,'history_log','itemid',30939),(12546,'history_str','itemid',30939),(12547,'history_text','itemid',30939),(12548,'history_uint','itemid',30939),(12549,'trends','itemid',30939),(12550,'trends_uint','itemid',30939),(12551,'events','itemid',30940),(12552,'history','itemid',30940),(12553,'history_log','itemid',30940),(12554,'history_str','itemid',30940),(12555,'history_text','itemid',30940),(12556,'history_uint','itemid',30940),(12557,'trends','itemid',30940),(12558,'trends_uint','itemid',30940),(12559,'events','itemid',30941),(12560,'history','itemid',30941),(12561,'history_log','itemid',30941),(12562,'history_str','itemid',30941),(12563,'history_text','itemid',30941),(12564,'history_uint','itemid',30941),(12565,'trends','itemid',30941),(12566,'trends_uint','itemid',30941),(12567,'events','itemid',30923),(12568,'history','itemid',30923),(12569,'history_log','itemid',30923),(12570,'history_str','itemid',30923),(12571,'history_text','itemid',30923),(12572,'history_uint','itemid',30923),(12573,'trends','itemid',30923),(12574,'trends_uint','itemid',30923),(12575,'events','itemid',32598),(12576,'history','itemid',32598),(12577,'history_log','itemid',32598),(12578,'history_str','itemid',32598),(12579,'history_text','itemid',32598),(12580,'history_uint','itemid',32598),(12581,'trends','itemid',32598),(12582,'trends_uint','itemid',32598),(12583,'events','itemid',32609),(12584,'history','itemid',32609),(12585,'history_log','itemid',32609),(12586,'history_str','itemid',32609),(12587,'history_text','itemid',32609),(12588,'history_uint','itemid',32609),(12589,'trends','itemid',32609),(12590,'trends_uint','itemid',32609),(12591,'events','itemid',32601),(12592,'history','itemid',32601),(12593,'history_log','itemid',32601),(12594,'history_str','itemid',32601),(12595,'history_text','itemid',32601),(12596,'history_uint','itemid',32601),(12597,'trends','itemid',32601),(12598,'trends_uint','itemid',32601),(12599,'events','itemid',32602),(12600,'history','itemid',32602),(12601,'history_log','itemid',32602),(12602,'history_str','itemid',32602),(12603,'history_text','itemid',32602),(12604,'history_uint','itemid',32602),(12605,'trends','itemid',32602),(12606,'trends_uint','itemid',32602),(12607,'events','itemid',32603),(12608,'history','itemid',32603),(12609,'history_log','itemid',32603),(12610,'history_str','itemid',32603),(12611,'history_text','itemid',32603),(12612,'history_uint','itemid',32603),(12613,'trends','itemid',32603),(12614,'trends_uint','itemid',32603),(12615,'events','itemid',32604),(12616,'history','itemid',32604),(12617,'history_log','itemid',32604),(12618,'history_str','itemid',32604),(12619,'history_text','itemid',32604),(12620,'history_uint','itemid',32604),(12621,'trends','itemid',32604),(12622,'trends_uint','itemid',32604),(12623,'events','itemid',32605),(12624,'history','itemid',32605),(12625,'history_log','itemid',32605),(12626,'history_str','itemid',32605),(12627,'history_text','itemid',32605),(12628,'history_uint','itemid',32605),(12629,'trends','itemid',32605),(12630,'trends_uint','itemid',32605),(12631,'events','itemid',32606),(12632,'history','itemid',32606),(12633,'history_log','itemid',32606),(12634,'history_str','itemid',32606),(12635,'history_text','itemid',32606),(12636,'history_uint','itemid',32606),(12637,'trends','itemid',32606),(12638,'trends_uint','itemid',32606),(12639,'events','itemid',32607),(12640,'history','itemid',32607),(12641,'history_log','itemid',32607),(12642,'history_str','itemid',32607),(12643,'history_text','itemid',32607),(12644,'history_uint','itemid',32607),(12645,'trends','itemid',32607),(12646,'trends_uint','itemid',32607),(12647,'events','itemid',32600),(12648,'history','itemid',32600),(12649,'history_log','itemid',32600),(12650,'history_str','itemid',32600),(12651,'history_text','itemid',32600),(12652,'history_uint','itemid',32600),(12653,'trends','itemid',32600),(12654,'trends_uint','itemid',32600),(12655,'events','itemid',32578),(12656,'history','itemid',32578),(12657,'history_log','itemid',32578),(12658,'history_str','itemid',32578),(12659,'history_text','itemid',32578),(12660,'history_uint','itemid',32578),(12661,'trends','itemid',32578),(12662,'trends_uint','itemid',32578),(12663,'events','itemid',32608),(12664,'history','itemid',32608),(12665,'history_log','itemid',32608),(12666,'history_str','itemid',32608),(12667,'history_text','itemid',32608),(12668,'history_uint','itemid',32608),(12669,'trends','itemid',32608),(12670,'trends_uint','itemid',32608),(12671,'events','itemid',32610),(12672,'history','itemid',32610),(12673,'history_log','itemid',32610),(12674,'history_str','itemid',32610),(12675,'history_text','itemid',32610),(12676,'history_uint','itemid',32610),(12677,'trends','itemid',32610),(12678,'trends_uint','itemid',32610),(12679,'events','itemid',32611),(12680,'history','itemid',32611),(12681,'history_log','itemid',32611),(12682,'history_str','itemid',32611),(12683,'history_text','itemid',32611),(12684,'history_uint','itemid',32611),(12685,'trends','itemid',32611),(12686,'trends_uint','itemid',32611),(12687,'events','itemid',32576),(12688,'history','itemid',32576),(12689,'history_log','itemid',32576),(12690,'history_str','itemid',32576),(12691,'history_text','itemid',32576),(12692,'history_uint','itemid',32576),(12693,'trends','itemid',32576),(12694,'trends_uint','itemid',32576),(12695,'events','itemid',32612),(12696,'history','itemid',32612),(12697,'history_log','itemid',32612),(12698,'history_str','itemid',32612),(12699,'history_text','itemid',32612),(12700,'history_uint','itemid',32612),(12701,'trends','itemid',32612),(12702,'trends_uint','itemid',32612),(12703,'events','itemid',32613),(12704,'history','itemid',32613),(12705,'history_log','itemid',32613),(12706,'history_str','itemid',32613),(12707,'history_text','itemid',32613),(12708,'history_uint','itemid',32613),(12709,'trends','itemid',32613),(12710,'trends_uint','itemid',32613),(12711,'events','itemid',32614),(12712,'history','itemid',32614),(12713,'history_log','itemid',32614),(12714,'history_str','itemid',32614),(12715,'history_text','itemid',32614),(12716,'history_uint','itemid',32614),(12717,'trends','itemid',32614),(12718,'trends_uint','itemid',32614),(12719,'events','itemid',32615),(12720,'history','itemid',32615),(12721,'history_log','itemid',32615),(12722,'history_str','itemid',32615),(12723,'history_text','itemid',32615),(12724,'history_uint','itemid',32615),(12725,'trends','itemid',32615),(12726,'trends_uint','itemid',32615),(12727,'events','itemid',32616),(12728,'history','itemid',32616),(12729,'history_log','itemid',32616),(12730,'history_str','itemid',32616),(12731,'history_text','itemid',32616),(12732,'history_uint','itemid',32616),(12733,'trends','itemid',32616),(12734,'trends_uint','itemid',32616),(12735,'events','itemid',32617),(12736,'history','itemid',32617),(12737,'history_log','itemid',32617),(12738,'history_str','itemid',32617),(12739,'history_text','itemid',32617),(12740,'history_uint','itemid',32617),(12741,'trends','itemid',32617),(12742,'trends_uint','itemid',32617),(12743,'events','itemid',32577),(12744,'history','itemid',32577),(12745,'history_log','itemid',32577),(12746,'history_str','itemid',32577),(12747,'history_text','itemid',32577),(12748,'history_uint','itemid',32577),(12749,'trends','itemid',32577),(12750,'trends_uint','itemid',32577),(12751,'events','itemid',32599),(12752,'history','itemid',32599),(12753,'history_log','itemid',32599),(12754,'history_str','itemid',32599),(12755,'history_text','itemid',32599),(12756,'history_uint','itemid',32599),(12757,'trends','itemid',32599),(12758,'trends_uint','itemid',32599),(12759,'events','itemid',32588),(12760,'history','itemid',32588),(12761,'history_log','itemid',32588),(12762,'history_str','itemid',32588),(12763,'history_text','itemid',32588),(12764,'history_uint','itemid',32588),(12765,'trends','itemid',32588),(12766,'trends_uint','itemid',32588),(12767,'events','itemid',32597),(12768,'history','itemid',32597),(12769,'history_log','itemid',32597),(12770,'history_str','itemid',32597),(12771,'history_text','itemid',32597),(12772,'history_uint','itemid',32597),(12773,'trends','itemid',32597),(12774,'trends_uint','itemid',32597),(12775,'events','itemid',32580),(12776,'history','itemid',32580),(12777,'history_log','itemid',32580),(12778,'history_str','itemid',32580),(12779,'history_text','itemid',32580),(12780,'history_uint','itemid',32580),(12781,'trends','itemid',32580),(12782,'trends_uint','itemid',32580),(12783,'events','itemid',32581),(12784,'history','itemid',32581),(12785,'history_log','itemid',32581),(12786,'history_str','itemid',32581),(12787,'history_text','itemid',32581),(12788,'history_uint','itemid',32581),(12789,'trends','itemid',32581),(12790,'trends_uint','itemid',32581),(12791,'events','itemid',32582),(12792,'history','itemid',32582),(12793,'history_log','itemid',32582),(12794,'history_str','itemid',32582),(12795,'history_text','itemid',32582),(12796,'history_uint','itemid',32582),(12797,'trends','itemid',32582),(12798,'trends_uint','itemid',32582),(12799,'events','itemid',32583),(12800,'history','itemid',32583),(12801,'history_log','itemid',32583),(12802,'history_str','itemid',32583),(12803,'history_text','itemid',32583),(12804,'history_uint','itemid',32583),(12805,'trends','itemid',32583),(12806,'trends_uint','itemid',32583),(12807,'events','itemid',32584),(12808,'history','itemid',32584),(12809,'history_log','itemid',32584),(12810,'history_str','itemid',32584),(12811,'history_text','itemid',32584),(12812,'history_uint','itemid',32584),(12813,'trends','itemid',32584),(12814,'trends_uint','itemid',32584),(12815,'events','itemid',32585),(12816,'history','itemid',32585),(12817,'history_log','itemid',32585),(12818,'history_str','itemid',32585),(12819,'history_text','itemid',32585),(12820,'history_uint','itemid',32585),(12821,'trends','itemid',32585),(12822,'trends_uint','itemid',32585),(12823,'events','itemid',32586),(12824,'history','itemid',32586),(12825,'history_log','itemid',32586),(12826,'history_str','itemid',32586),(12827,'history_text','itemid',32586),(12828,'history_uint','itemid',32586),(12829,'trends','itemid',32586),(12830,'trends_uint','itemid',32586),(12831,'events','itemid',32579),(12832,'history','itemid',32579),(12833,'history_log','itemid',32579),(12834,'history_str','itemid',32579),(12835,'history_text','itemid',32579),(12836,'history_uint','itemid',32579),(12837,'trends','itemid',32579),(12838,'trends_uint','itemid',32579),(12839,'events','itemid',32587),(12840,'history','itemid',32587),(12841,'history_log','itemid',32587),(12842,'history_str','itemid',32587),(12843,'history_text','itemid',32587),(12844,'history_uint','itemid',32587),(12845,'trends','itemid',32587),(12846,'trends_uint','itemid',32587),(12847,'events','itemid',32589),(12848,'history','itemid',32589),(12849,'history_log','itemid',32589),(12850,'history_str','itemid',32589),(12851,'history_text','itemid',32589),(12852,'history_uint','itemid',32589),(12853,'trends','itemid',32589),(12854,'trends_uint','itemid',32589),(12855,'events','itemid',32590),(12856,'history','itemid',32590),(12857,'history_log','itemid',32590),(12858,'history_str','itemid',32590),(12859,'history_text','itemid',32590),(12860,'history_uint','itemid',32590),(12861,'trends','itemid',32590),(12862,'trends_uint','itemid',32590),(12863,'events','itemid',32591),(12864,'history','itemid',32591),(12865,'history_log','itemid',32591),(12866,'history_str','itemid',32591),(12867,'history_text','itemid',32591),(12868,'history_uint','itemid',32591),(12869,'trends','itemid',32591),(12870,'trends_uint','itemid',32591),(12871,'events','itemid',32592),(12872,'history','itemid',32592),(12873,'history_log','itemid',32592),(12874,'history_str','itemid',32592),(12875,'history_text','itemid',32592),(12876,'history_uint','itemid',32592),(12877,'trends','itemid',32592),(12878,'trends_uint','itemid',32592),(12879,'events','itemid',32593),(12880,'history','itemid',32593),(12881,'history_log','itemid',32593),(12882,'history_str','itemid',32593),(12883,'history_text','itemid',32593),(12884,'history_uint','itemid',32593),(12885,'trends','itemid',32593),(12886,'trends_uint','itemid',32593),(12887,'events','itemid',32594),(12888,'history','itemid',32594),(12889,'history_log','itemid',32594),(12890,'history_str','itemid',32594),(12891,'history_text','itemid',32594),(12892,'history_uint','itemid',32594),(12893,'trends','itemid',32594),(12894,'trends_uint','itemid',32594),(12895,'events','itemid',32595),(12896,'history','itemid',32595),(12897,'history_log','itemid',32595),(12898,'history_str','itemid',32595),(12899,'history_text','itemid',32595),(12900,'history_uint','itemid',32595),(12901,'trends','itemid',32595),(12902,'trends_uint','itemid',32595),(12903,'events','itemid',32596),(12904,'history','itemid',32596),(12905,'history_log','itemid',32596),(12906,'history_str','itemid',32596),(12907,'history_text','itemid',32596),(12908,'history_uint','itemid',32596),(12909,'trends','itemid',32596),(12910,'trends_uint','itemid',32596),(12911,'events','itemid',32618),(12912,'history','itemid',32618),(12913,'history_log','itemid',32618),(12914,'history_str','itemid',32618),(12915,'history_text','itemid',32618),(12916,'history_uint','itemid',32618),(12917,'trends','itemid',32618),(12918,'trends_uint','itemid',32618),(12919,'events','itemid',32634),(12920,'history','itemid',32634),(12921,'history_log','itemid',32634),(12922,'history_str','itemid',32634),(12923,'history_text','itemid',32634),(12924,'history_uint','itemid',32634),(12925,'trends','itemid',32634),(12926,'trends_uint','itemid',32634),(12927,'events','itemid',32644),(12928,'history','itemid',32644),(12929,'history_log','itemid',32644),(12930,'history_str','itemid',32644),(12931,'history_text','itemid',32644),(12932,'history_uint','itemid',32644),(12933,'trends','itemid',32644),(12934,'trends_uint','itemid',32644),(12935,'events','itemid',32658),(12936,'history','itemid',32658),(12937,'history_log','itemid',32658),(12938,'history_str','itemid',32658),(12939,'history_text','itemid',32658),(12940,'history_uint','itemid',32658),(12941,'trends','itemid',32658),(12942,'trends_uint','itemid',32658),(12943,'events','itemid',32645),(12944,'history','itemid',32645),(12945,'history_log','itemid',32645),(12946,'history_str','itemid',32645),(12947,'history_text','itemid',32645),(12948,'history_uint','itemid',32645),(12949,'trends','itemid',32645),(12950,'trends_uint','itemid',32645),(12951,'events','itemid',32646),(12952,'history','itemid',32646),(12953,'history_log','itemid',32646),(12954,'history_str','itemid',32646),(12955,'history_text','itemid',32646),(12956,'history_uint','itemid',32646),(12957,'trends','itemid',32646),(12958,'trends_uint','itemid',32646),(12959,'events','itemid',32654),(12960,'history','itemid',32654),(12961,'history_log','itemid',32654),(12962,'history_str','itemid',32654),(12963,'history_text','itemid',32654),(12964,'history_uint','itemid',32654),(12965,'trends','itemid',32654),(12966,'trends_uint','itemid',32654),(12967,'events','itemid',32641),(12968,'history','itemid',32641),(12969,'history_log','itemid',32641),(12970,'history_str','itemid',32641),(12971,'history_text','itemid',32641),(12972,'history_uint','itemid',32641),(12973,'trends','itemid',32641),(12974,'trends_uint','itemid',32641),(12975,'events','itemid',32642),(12976,'history','itemid',32642),(12977,'history_log','itemid',32642),(12978,'history_str','itemid',32642),(12979,'history_text','itemid',32642),(12980,'history_uint','itemid',32642),(12981,'trends','itemid',32642),(12982,'trends_uint','itemid',32642),(12983,'events','itemid',32656),(12984,'history','itemid',32656),(12985,'history_log','itemid',32656),(12986,'history_str','itemid',32656),(12987,'history_text','itemid',32656),(12988,'history_uint','itemid',32656),(12989,'trends','itemid',32656),(12990,'trends_uint','itemid',32656),(12991,'events','itemid',32666),(12992,'history','itemid',32666),(12993,'history_log','itemid',32666),(12994,'history_str','itemid',32666),(12995,'history_text','itemid',32666),(12996,'history_uint','itemid',32666),(12997,'trends','itemid',32666),(12998,'trends_uint','itemid',32666),(12999,'events','itemid',32665),(13000,'history','itemid',32665),(13001,'history_log','itemid',32665),(13002,'history_str','itemid',32665),(13003,'history_text','itemid',32665),(13004,'history_uint','itemid',32665),(13005,'trends','itemid',32665),(13006,'trends_uint','itemid',32665),(13007,'events','itemid',32664),(13008,'history','itemid',32664),(13009,'history_log','itemid',32664),(13010,'history_str','itemid',32664),(13011,'history_text','itemid',32664),(13012,'history_uint','itemid',32664),(13013,'trends','itemid',32664),(13014,'trends_uint','itemid',32664),(13015,'events','itemid',32663),(13016,'history','itemid',32663),(13017,'history_log','itemid',32663),(13018,'history_str','itemid',32663),(13019,'history_text','itemid',32663),(13020,'history_uint','itemid',32663),(13021,'trends','itemid',32663),(13022,'trends_uint','itemid',32663),(13023,'events','itemid',32662),(13024,'history','itemid',32662),(13025,'history_log','itemid',32662),(13026,'history_str','itemid',32662),(13027,'history_text','itemid',32662),(13028,'history_uint','itemid',32662),(13029,'trends','itemid',32662),(13030,'trends_uint','itemid',32662),(13031,'events','itemid',32661),(13032,'history','itemid',32661),(13033,'history_log','itemid',32661),(13034,'history_str','itemid',32661),(13035,'history_text','itemid',32661),(13036,'history_uint','itemid',32661),(13037,'trends','itemid',32661),(13038,'trends_uint','itemid',32661),(13039,'events','itemid',32660),(13040,'history','itemid',32660),(13041,'history_log','itemid',32660),(13042,'history_str','itemid',32660),(13043,'history_text','itemid',32660),(13044,'history_uint','itemid',32660),(13045,'trends','itemid',32660),(13046,'trends_uint','itemid',32660),(13047,'events','itemid',32659),(13048,'history','itemid',32659),(13049,'history_log','itemid',32659),(13050,'history_str','itemid',32659),(13051,'history_text','itemid',32659),(13052,'history_uint','itemid',32659),(13053,'trends','itemid',32659),(13054,'trends_uint','itemid',32659),(13055,'events','itemid',32667),(13056,'history','itemid',32667),(13057,'history_log','itemid',32667),(13058,'history_str','itemid',32667),(13059,'history_text','itemid',32667),(13060,'history_uint','itemid',32667),(13061,'trends','itemid',32667),(13062,'trends_uint','itemid',32667),(13063,'events','itemid',32657),(13064,'history','itemid',32657),(13065,'history_log','itemid',32657),(13066,'history_str','itemid',32657),(13067,'history_text','itemid',32657),(13068,'history_uint','itemid',32657),(13069,'trends','itemid',32657),(13070,'trends_uint','itemid',32657),(13071,'events','itemid',32635),(13072,'history','itemid',32635),(13073,'history_log','itemid',32635),(13074,'history_str','itemid',32635),(13075,'history_text','itemid',32635),(13076,'history_uint','itemid',32635),(13077,'trends','itemid',32635),(13078,'trends_uint','itemid',32635),(13079,'events','itemid',32639),(13080,'history','itemid',32639),(13081,'history_log','itemid',32639),(13082,'history_str','itemid',32639),(13083,'history_text','itemid',32639),(13084,'history_uint','itemid',32639),(13085,'trends','itemid',32639),(13086,'trends_uint','itemid',32639),(13087,'events','itemid',32655),(13088,'history','itemid',32655),(13089,'history_log','itemid',32655),(13090,'history_str','itemid',32655),(13091,'history_text','itemid',32655),(13092,'history_uint','itemid',32655),(13093,'trends','itemid',32655),(13094,'trends_uint','itemid',32655),(13095,'events','itemid',32643),(13096,'history','itemid',32643),(13097,'history_log','itemid',32643),(13098,'history_str','itemid',32643),(13099,'history_text','itemid',32643),(13100,'history_uint','itemid',32643),(13101,'trends','itemid',32643),(13102,'trends_uint','itemid',32643),(13103,'events','itemid',32653),(13104,'history','itemid',32653),(13105,'history_log','itemid',32653),(13106,'history_str','itemid',32653),(13107,'history_text','itemid',32653),(13108,'history_uint','itemid',32653),(13109,'trends','itemid',32653),(13110,'trends_uint','itemid',32653),(13111,'events','itemid',32652),(13112,'history','itemid',32652),(13113,'history_log','itemid',32652),(13114,'history_str','itemid',32652),(13115,'history_text','itemid',32652),(13116,'history_uint','itemid',32652),(13117,'trends','itemid',32652),(13118,'trends_uint','itemid',32652),(13119,'events','itemid',32651),(13120,'history','itemid',32651),(13121,'history_log','itemid',32651),(13122,'history_str','itemid',32651),(13123,'history_text','itemid',32651),(13124,'history_uint','itemid',32651),(13125,'trends','itemid',32651),(13126,'trends_uint','itemid',32651),(13127,'events','itemid',32650),(13128,'history','itemid',32650),(13129,'history_log','itemid',32650),(13130,'history_str','itemid',32650),(13131,'history_text','itemid',32650),(13132,'history_uint','itemid',32650),(13133,'trends','itemid',32650),(13134,'trends_uint','itemid',32650),(13135,'events','itemid',32649),(13136,'history','itemid',32649),(13137,'history_log','itemid',32649),(13138,'history_str','itemid',32649),(13139,'history_text','itemid',32649),(13140,'history_uint','itemid',32649),(13141,'trends','itemid',32649),(13142,'trends_uint','itemid',32649),(13143,'events','itemid',32648),(13144,'history','itemid',32648),(13145,'history_log','itemid',32648),(13146,'history_str','itemid',32648),(13147,'history_text','itemid',32648),(13148,'history_uint','itemid',32648),(13149,'trends','itemid',32648),(13150,'trends_uint','itemid',32648),(13151,'events','itemid',32647),(13152,'history','itemid',32647),(13153,'history_log','itemid',32647),(13154,'history_str','itemid',32647),(13155,'history_text','itemid',32647),(13156,'history_uint','itemid',32647),(13157,'trends','itemid',32647),(13158,'trends_uint','itemid',32647),(13159,'events','itemid',32638),(13160,'history','itemid',32638),(13161,'history_log','itemid',32638),(13162,'history_str','itemid',32638),(13163,'history_text','itemid',32638),(13164,'history_uint','itemid',32638),(13165,'trends','itemid',32638),(13166,'trends_uint','itemid',32638),(13167,'events','itemid',32637),(13168,'history','itemid',32637),(13169,'history_log','itemid',32637),(13170,'history_str','itemid',32637),(13171,'history_text','itemid',32637),(13172,'history_uint','itemid',32637),(13173,'trends','itemid',32637),(13174,'trends_uint','itemid',32637),(13175,'events','itemid',32636),(13176,'history','itemid',32636),(13177,'history_log','itemid',32636),(13178,'history_str','itemid',32636),(13179,'history_text','itemid',32636),(13180,'history_uint','itemid',32636),(13181,'trends','itemid',32636),(13182,'trends_uint','itemid',32636),(13183,'events','itemid',32640),(13184,'history','itemid',32640),(13185,'history_log','itemid',32640),(13186,'history_str','itemid',32640),(13187,'history_text','itemid',32640),(13188,'history_uint','itemid',32640),(13189,'trends','itemid',32640),(13190,'trends_uint','itemid',32640),(13191,'events','itemid',32803),(13192,'history','itemid',32803),(13193,'history_log','itemid',32803),(13194,'history_str','itemid',32803),(13195,'history_text','itemid',32803),(13196,'history_uint','itemid',32803),(13197,'trends','itemid',32803),(13198,'trends_uint','itemid',32803),(13199,'events','itemid',32850),(13200,'history','itemid',32850),(13201,'history_log','itemid',32850),(13202,'history_str','itemid',32850),(13203,'history_text','itemid',32850),(13204,'history_uint','itemid',32850),(13205,'trends','itemid',32850),(13206,'trends_uint','itemid',32850),(13207,'events','itemid',32846),(13208,'history','itemid',32846),(13209,'history_log','itemid',32846),(13210,'history_str','itemid',32846),(13211,'history_text','itemid',32846),(13212,'history_uint','itemid',32846),(13213,'trends','itemid',32846),(13214,'trends_uint','itemid',32846),(13215,'events','itemid',32845),(13216,'history','itemid',32845),(13217,'history_log','itemid',32845),(13218,'history_str','itemid',32845),(13219,'history_text','itemid',32845),(13220,'history_uint','itemid',32845),(13221,'trends','itemid',32845),(13222,'trends_uint','itemid',32845),(13223,'events','itemid',32795),(13224,'history','itemid',32795),(13225,'history_log','itemid',32795),(13226,'history_str','itemid',32795),(13227,'history_text','itemid',32795),(13228,'history_uint','itemid',32795),(13229,'trends','itemid',32795),(13230,'trends_uint','itemid',32795),(13231,'events','itemid',32781),(13232,'history','itemid',32781),(13233,'history_log','itemid',32781),(13234,'history_str','itemid',32781),(13235,'history_text','itemid',32781),(13236,'history_uint','itemid',32781),(13237,'trends','itemid',32781),(13238,'trends_uint','itemid',32781),(13239,'events','itemid',32780),(13240,'history','itemid',32780),(13241,'history_log','itemid',32780),(13242,'history_str','itemid',32780),(13243,'history_text','itemid',32780),(13244,'history_uint','itemid',32780),(13245,'trends','itemid',32780),(13246,'trends_uint','itemid',32780),(13247,'events','itemid',32782),(13248,'history','itemid',32782),(13249,'history_log','itemid',32782),(13250,'history_str','itemid',32782),(13251,'history_text','itemid',32782),(13252,'history_uint','itemid',32782),(13253,'trends','itemid',32782),(13254,'trends_uint','itemid',32782),(13255,'events','itemid',32794),(13256,'history','itemid',32794),(13257,'history_log','itemid',32794),(13258,'history_str','itemid',32794),(13259,'history_text','itemid',32794),(13260,'history_uint','itemid',32794),(13261,'trends','itemid',32794),(13262,'trends_uint','itemid',32794),(13263,'events','itemid',32783),(13264,'history','itemid',32783),(13265,'history_log','itemid',32783),(13266,'history_str','itemid',32783),(13267,'history_text','itemid',32783),(13268,'history_uint','itemid',32783),(13269,'trends','itemid',32783),(13270,'trends_uint','itemid',32783),(13271,'events','itemid',32793),(13272,'history','itemid',32793),(13273,'history_log','itemid',32793),(13274,'history_str','itemid',32793),(13275,'history_text','itemid',32793),(13276,'history_uint','itemid',32793),(13277,'trends','itemid',32793),(13278,'trends_uint','itemid',32793),(13279,'events','itemid',32791),(13280,'history','itemid',32791),(13281,'history_log','itemid',32791),(13282,'history_str','itemid',32791),(13283,'history_text','itemid',32791),(13284,'history_uint','itemid',32791),(13285,'trends','itemid',32791),(13286,'trends_uint','itemid',32791),(13287,'events','itemid',32792),(13288,'history','itemid',32792),(13289,'history_log','itemid',32792),(13290,'history_str','itemid',32792),(13291,'history_text','itemid',32792),(13292,'history_uint','itemid',32792),(13293,'trends','itemid',32792),(13294,'trends_uint','itemid',32792),(13295,'events','itemid',32785),(13296,'history','itemid',32785),(13297,'history_log','itemid',32785),(13298,'history_str','itemid',32785),(13299,'history_text','itemid',32785),(13300,'history_uint','itemid',32785),(13301,'trends','itemid',32785),(13302,'trends_uint','itemid',32785),(13303,'events','itemid',32790),(13304,'history','itemid',32790),(13305,'history_log','itemid',32790),(13306,'history_str','itemid',32790),(13307,'history_text','itemid',32790),(13308,'history_uint','itemid',32790),(13309,'trends','itemid',32790),(13310,'trends_uint','itemid',32790),(13311,'events','itemid',32789),(13312,'history','itemid',32789),(13313,'history_log','itemid',32789),(13314,'history_str','itemid',32789),(13315,'history_text','itemid',32789),(13316,'history_uint','itemid',32789),(13317,'trends','itemid',32789),(13318,'trends_uint','itemid',32789),(13319,'events','itemid',32784),(13320,'history','itemid',32784),(13321,'history_log','itemid',32784),(13322,'history_str','itemid',32784),(13323,'history_text','itemid',32784),(13324,'history_uint','itemid',32784),(13325,'trends','itemid',32784),(13326,'trends_uint','itemid',32784),(13327,'events','itemid',32788),(13328,'history','itemid',32788),(13329,'history_log','itemid',32788),(13330,'history_str','itemid',32788),(13331,'history_text','itemid',32788),(13332,'history_uint','itemid',32788),(13333,'trends','itemid',32788),(13334,'trends_uint','itemid',32788),(13335,'events','itemid',32787),(13336,'history','itemid',32787),(13337,'history_log','itemid',32787),(13338,'history_str','itemid',32787),(13339,'history_text','itemid',32787),(13340,'history_uint','itemid',32787),(13341,'trends','itemid',32787),(13342,'trends_uint','itemid',32787),(13343,'events','itemid',32786),(13344,'history','itemid',32786),(13345,'history_log','itemid',32786),(13346,'history_str','itemid',32786),(13347,'history_text','itemid',32786),(13348,'history_uint','itemid',32786),(13349,'trends','itemid',32786),(13350,'trends_uint','itemid',32786),(13351,'events','itemid',32844),(13352,'history','itemid',32844),(13353,'history_log','itemid',32844),(13354,'history_str','itemid',32844),(13355,'history_text','itemid',32844),(13356,'history_uint','itemid',32844),(13357,'trends','itemid',32844),(13358,'trends_uint','itemid',32844),(13359,'events','itemid',32843),(13360,'history','itemid',32843),(13361,'history_log','itemid',32843),(13362,'history_str','itemid',32843),(13363,'history_text','itemid',32843),(13364,'history_uint','itemid',32843),(13365,'trends','itemid',32843),(13366,'trends_uint','itemid',32843),(13367,'events','itemid',32842),(13368,'history','itemid',32842),(13369,'history_log','itemid',32842),(13370,'history_str','itemid',32842),(13371,'history_text','itemid',32842),(13372,'history_uint','itemid',32842),(13373,'trends','itemid',32842),(13374,'trends_uint','itemid',32842),(13375,'events','itemid',32841),(13376,'history','itemid',32841),(13377,'history_log','itemid',32841),(13378,'history_str','itemid',32841),(13379,'history_text','itemid',32841),(13380,'history_uint','itemid',32841),(13381,'trends','itemid',32841),(13382,'trends_uint','itemid',32841),(13383,'events','itemid',32839),(13384,'history','itemid',32839),(13385,'history_log','itemid',32839),(13386,'history_str','itemid',32839),(13387,'history_text','itemid',32839),(13388,'history_uint','itemid',32839),(13389,'trends','itemid',32839),(13390,'trends_uint','itemid',32839),(13391,'events','itemid',32832),(13392,'history','itemid',32832),(13393,'history_log','itemid',32832),(13394,'history_str','itemid',32832),(13395,'history_text','itemid',32832),(13396,'history_uint','itemid',32832),(13397,'trends','itemid',32832),(13398,'trends_uint','itemid',32832),(13399,'events','itemid',32838),(13400,'history','itemid',32838),(13401,'history_log','itemid',32838),(13402,'history_str','itemid',32838),(13403,'history_text','itemid',32838),(13404,'history_uint','itemid',32838),(13405,'trends','itemid',32838),(13406,'trends_uint','itemid',32838),(13407,'events','itemid',32837),(13408,'history','itemid',32837),(13409,'history_log','itemid',32837),(13410,'history_str','itemid',32837),(13411,'history_text','itemid',32837),(13412,'history_uint','itemid',32837),(13413,'trends','itemid',32837),(13414,'trends_uint','itemid',32837),(13415,'events','itemid',32836),(13416,'history','itemid',32836),(13417,'history_log','itemid',32836),(13418,'history_str','itemid',32836),(13419,'history_text','itemid',32836),(13420,'history_uint','itemid',32836),(13421,'trends','itemid',32836),(13422,'trends_uint','itemid',32836),(13423,'events','itemid',32835),(13424,'history','itemid',32835),(13425,'history_log','itemid',32835),(13426,'history_str','itemid',32835),(13427,'history_text','itemid',32835),(13428,'history_uint','itemid',32835),(13429,'trends','itemid',32835),(13430,'trends_uint','itemid',32835),(13431,'events','itemid',32834),(13432,'history','itemid',32834),(13433,'history_log','itemid',32834),(13434,'history_str','itemid',32834),(13435,'history_text','itemid',32834),(13436,'history_uint','itemid',32834),(13437,'trends','itemid',32834),(13438,'trends_uint','itemid',32834),(13439,'events','itemid',32833),(13440,'history','itemid',32833),(13441,'history_log','itemid',32833),(13442,'history_str','itemid',32833),(13443,'history_text','itemid',32833),(13444,'history_uint','itemid',32833),(13445,'trends','itemid',32833),(13446,'trends_uint','itemid',32833),(13447,'events','itemid',32847),(13448,'history','itemid',32847),(13449,'history_log','itemid',32847),(13450,'history_str','itemid',32847),(13451,'history_text','itemid',32847),(13452,'history_uint','itemid',32847),(13453,'trends','itemid',32847),(13454,'trends_uint','itemid',32847),(13455,'events','itemid',32840),(13456,'history','itemid',32840),(13457,'history_log','itemid',32840),(13458,'history_str','itemid',32840),(13459,'history_text','itemid',32840),(13460,'history_uint','itemid',32840),(13461,'trends','itemid',32840),(13462,'trends_uint','itemid',32840),(13463,'events','itemid',32848),(13464,'history','itemid',32848),(13465,'history_log','itemid',32848),(13466,'history_str','itemid',32848),(13467,'history_text','itemid',32848),(13468,'history_uint','itemid',32848),(13469,'trends','itemid',32848),(13470,'trends_uint','itemid',32848),(13471,'events','itemid',32858),(13472,'history','itemid',32858),(13473,'history_log','itemid',32858),(13474,'history_str','itemid',32858),(13475,'history_text','itemid',32858),(13476,'history_uint','itemid',32858),(13477,'trends','itemid',32858),(13478,'trends_uint','itemid',32858),(13479,'events','itemid',32864),(13480,'history','itemid',32864),(13481,'history_log','itemid',32864),(13482,'history_str','itemid',32864),(13483,'history_text','itemid',32864),(13484,'history_uint','itemid',32864),(13485,'trends','itemid',32864),(13486,'trends_uint','itemid',32864),(13487,'events','itemid',32863),(13488,'history','itemid',32863),(13489,'history_log','itemid',32863),(13490,'history_str','itemid',32863),(13491,'history_text','itemid',32863),(13492,'history_uint','itemid',32863),(13493,'trends','itemid',32863),(13494,'trends_uint','itemid',32863),(13495,'events','itemid',32862),(13496,'history','itemid',32862),(13497,'history_log','itemid',32862),(13498,'history_str','itemid',32862),(13499,'history_text','itemid',32862),(13500,'history_uint','itemid',32862),(13501,'trends','itemid',32862),(13502,'trends_uint','itemid',32862),(13503,'events','itemid',32861),(13504,'history','itemid',32861),(13505,'history_log','itemid',32861),(13506,'history_str','itemid',32861),(13507,'history_text','itemid',32861),(13508,'history_uint','itemid',32861),(13509,'trends','itemid',32861),(13510,'trends_uint','itemid',32861),(13511,'events','itemid',32860),(13512,'history','itemid',32860),(13513,'history_log','itemid',32860),(13514,'history_str','itemid',32860),(13515,'history_text','itemid',32860),(13516,'history_uint','itemid',32860),(13517,'trends','itemid',32860),(13518,'trends_uint','itemid',32860),(13519,'events','itemid',32859),(13520,'history','itemid',32859),(13521,'history_log','itemid',32859),(13522,'history_str','itemid',32859),(13523,'history_text','itemid',32859),(13524,'history_uint','itemid',32859),(13525,'trends','itemid',32859),(13526,'trends_uint','itemid',32859),(13527,'events','itemid',32857),(13528,'history','itemid',32857),(13529,'history_log','itemid',32857),(13530,'history_str','itemid',32857),(13531,'history_text','itemid',32857),(13532,'history_uint','itemid',32857),(13533,'trends','itemid',32857),(13534,'trends_uint','itemid',32857),(13535,'events','itemid',32830),(13536,'history','itemid',32830),(13537,'history_log','itemid',32830),(13538,'history_str','itemid',32830),(13539,'history_text','itemid',32830),(13540,'history_uint','itemid',32830),(13541,'trends','itemid',32830),(13542,'trends_uint','itemid',32830),(13543,'events','itemid',32856),(13544,'history','itemid',32856),(13545,'history_log','itemid',32856),(13546,'history_str','itemid',32856),(13547,'history_text','itemid',32856),(13548,'history_uint','itemid',32856),(13549,'trends','itemid',32856),(13550,'trends_uint','itemid',32856),(13551,'events','itemid',32855),(13552,'history','itemid',32855),(13553,'history_log','itemid',32855),(13554,'history_str','itemid',32855),(13555,'history_text','itemid',32855),(13556,'history_uint','itemid',32855),(13557,'trends','itemid',32855),(13558,'trends_uint','itemid',32855),(13559,'events','itemid',32854),(13560,'history','itemid',32854),(13561,'history_log','itemid',32854),(13562,'history_str','itemid',32854),(13563,'history_text','itemid',32854),(13564,'history_uint','itemid',32854),(13565,'trends','itemid',32854),(13566,'trends_uint','itemid',32854),(13567,'events','itemid',32853),(13568,'history','itemid',32853),(13569,'history_log','itemid',32853),(13570,'history_str','itemid',32853),(13571,'history_text','itemid',32853),(13572,'history_uint','itemid',32853),(13573,'trends','itemid',32853),(13574,'trends_uint','itemid',32853),(13575,'events','itemid',32852),(13576,'history','itemid',32852),(13577,'history_log','itemid',32852),(13578,'history_str','itemid',32852),(13579,'history_text','itemid',32852),(13580,'history_uint','itemid',32852),(13581,'trends','itemid',32852),(13582,'trends_uint','itemid',32852),(13583,'events','itemid',32851),(13584,'history','itemid',32851),(13585,'history_log','itemid',32851),(13586,'history_str','itemid',32851),(13587,'history_text','itemid',32851),(13588,'history_uint','itemid',32851),(13589,'trends','itemid',32851),(13590,'trends_uint','itemid',32851),(13591,'events','itemid',32849),(13592,'history','itemid',32849),(13593,'history_log','itemid',32849),(13594,'history_str','itemid',32849),(13595,'history_text','itemid',32849),(13596,'history_uint','itemid',32849),(13597,'trends','itemid',32849),(13598,'trends_uint','itemid',32849),(13599,'events','itemid',32831),(13600,'history','itemid',32831),(13601,'history_log','itemid',32831),(13602,'history_str','itemid',32831),(13603,'history_text','itemid',32831),(13604,'history_uint','itemid',32831),(13605,'trends','itemid',32831),(13606,'trends_uint','itemid',32831),(13607,'events','itemid',32821),(13608,'history','itemid',32821),(13609,'history_log','itemid',32821),(13610,'history_str','itemid',32821),(13611,'history_text','itemid',32821),(13612,'history_uint','itemid',32821),(13613,'trends','itemid',32821),(13614,'trends_uint','itemid',32821),(13615,'events','itemid',32829),(13616,'history','itemid',32829),(13617,'history_log','itemid',32829),(13618,'history_str','itemid',32829),(13619,'history_text','itemid',32829),(13620,'history_uint','itemid',32829),(13621,'trends','itemid',32829),(13622,'trends_uint','itemid',32829),(13623,'events','itemid',32810),(13624,'history','itemid',32810),(13625,'history_log','itemid',32810),(13626,'history_str','itemid',32810),(13627,'history_text','itemid',32810),(13628,'history_uint','itemid',32810),(13629,'trends','itemid',32810),(13630,'trends_uint','itemid',32810),(13631,'events','itemid',32809),(13632,'history','itemid',32809),(13633,'history_log','itemid',32809),(13634,'history_str','itemid',32809),(13635,'history_text','itemid',32809),(13636,'history_uint','itemid',32809),(13637,'trends','itemid',32809),(13638,'trends_uint','itemid',32809),(13639,'events','itemid',32807),(13640,'history','itemid',32807),(13641,'history_log','itemid',32807),(13642,'history_str','itemid',32807),(13643,'history_text','itemid',32807),(13644,'history_uint','itemid',32807),(13645,'trends','itemid',32807),(13646,'trends_uint','itemid',32807),(13647,'events','itemid',32806),(13648,'history','itemid',32806),(13649,'history_log','itemid',32806),(13650,'history_str','itemid',32806),(13651,'history_text','itemid',32806),(13652,'history_uint','itemid',32806),(13653,'trends','itemid',32806),(13654,'trends_uint','itemid',32806),(13655,'events','itemid',32805),(13656,'history','itemid',32805),(13657,'history_log','itemid',32805),(13658,'history_str','itemid',32805),(13659,'history_text','itemid',32805),(13660,'history_uint','itemid',32805),(13661,'trends','itemid',32805),(13662,'trends_uint','itemid',32805),(13663,'events','itemid',32804),(13664,'history','itemid',32804),(13665,'history_log','itemid',32804),(13666,'history_str','itemid',32804),(13667,'history_text','itemid',32804),(13668,'history_uint','itemid',32804),(13669,'trends','itemid',32804),(13670,'trends_uint','itemid',32804),(13671,'events','itemid',32796),(13672,'history','itemid',32796),(13673,'history_log','itemid',32796),(13674,'history_str','itemid',32796),(13675,'history_text','itemid',32796),(13676,'history_uint','itemid',32796),(13677,'trends','itemid',32796),(13678,'trends_uint','itemid',32796),(13679,'events','itemid',32802),(13680,'history','itemid',32802),(13681,'history_log','itemid',32802),(13682,'history_str','itemid',32802),(13683,'history_text','itemid',32802),(13684,'history_uint','itemid',32802),(13685,'trends','itemid',32802),(13686,'trends_uint','itemid',32802),(13687,'events','itemid',32801),(13688,'history','itemid',32801),(13689,'history_log','itemid',32801),(13690,'history_str','itemid',32801),(13691,'history_text','itemid',32801),(13692,'history_uint','itemid',32801),(13693,'trends','itemid',32801),(13694,'trends_uint','itemid',32801),(13695,'events','itemid',32800),(13696,'history','itemid',32800),(13697,'history_log','itemid',32800),(13698,'history_str','itemid',32800),(13699,'history_text','itemid',32800),(13700,'history_uint','itemid',32800),(13701,'trends','itemid',32800),(13702,'trends_uint','itemid',32800),(13703,'events','itemid',32797),(13704,'history','itemid',32797),(13705,'history_log','itemid',32797),(13706,'history_str','itemid',32797),(13707,'history_text','itemid',32797),(13708,'history_uint','itemid',32797),(13709,'trends','itemid',32797),(13710,'trends_uint','itemid',32797),(13711,'events','itemid',32798),(13712,'history','itemid',32798),(13713,'history_log','itemid',32798),(13714,'history_str','itemid',32798),(13715,'history_text','itemid',32798),(13716,'history_uint','itemid',32798),(13717,'trends','itemid',32798),(13718,'trends_uint','itemid',32798),(13719,'events','itemid',32799),(13720,'history','itemid',32799),(13721,'history_log','itemid',32799),(13722,'history_str','itemid',32799),(13723,'history_text','itemid',32799),(13724,'history_uint','itemid',32799),(13725,'trends','itemid',32799),(13726,'trends_uint','itemid',32799),(13727,'events','itemid',32811),(13728,'history','itemid',32811),(13729,'history_log','itemid',32811),(13730,'history_str','itemid',32811),(13731,'history_text','itemid',32811),(13732,'history_uint','itemid',32811),(13733,'trends','itemid',32811),(13734,'trends_uint','itemid',32811),(13735,'events','itemid',32808),(13736,'history','itemid',32808),(13737,'history_log','itemid',32808),(13738,'history_str','itemid',32808),(13739,'history_text','itemid',32808),(13740,'history_uint','itemid',32808),(13741,'trends','itemid',32808),(13742,'trends_uint','itemid',32808),(13743,'events','itemid',32813),(13744,'history','itemid',32813),(13745,'history_log','itemid',32813),(13746,'history_str','itemid',32813),(13747,'history_text','itemid',32813),(13748,'history_uint','itemid',32813),(13749,'trends','itemid',32813),(13750,'trends_uint','itemid',32813),(13751,'events','itemid',32822),(13752,'history','itemid',32822),(13753,'history_log','itemid',32822),(13754,'history_str','itemid',32822),(13755,'history_text','itemid',32822),(13756,'history_uint','itemid',32822),(13757,'trends','itemid',32822),(13758,'trends_uint','itemid',32822),(13759,'events','itemid',32828),(13760,'history','itemid',32828),(13761,'history_log','itemid',32828),(13762,'history_str','itemid',32828),(13763,'history_text','itemid',32828),(13764,'history_uint','itemid',32828),(13765,'trends','itemid',32828),(13766,'trends_uint','itemid',32828),(13767,'events','itemid',32827),(13768,'history','itemid',32827),(13769,'history_log','itemid',32827),(13770,'history_str','itemid',32827),(13771,'history_text','itemid',32827),(13772,'history_uint','itemid',32827),(13773,'trends','itemid',32827),(13774,'trends_uint','itemid',32827),(13775,'events','itemid',32826),(13776,'history','itemid',32826),(13777,'history_log','itemid',32826),(13778,'history_str','itemid',32826),(13779,'history_text','itemid',32826),(13780,'history_uint','itemid',32826),(13781,'trends','itemid',32826),(13782,'trends_uint','itemid',32826),(13783,'events','itemid',32825),(13784,'history','itemid',32825),(13785,'history_log','itemid',32825),(13786,'history_str','itemid',32825),(13787,'history_text','itemid',32825),(13788,'history_uint','itemid',32825),(13789,'trends','itemid',32825),(13790,'trends_uint','itemid',32825),(13791,'events','itemid',32824),(13792,'history','itemid',32824),(13793,'history_log','itemid',32824),(13794,'history_str','itemid',32824),(13795,'history_text','itemid',32824),(13796,'history_uint','itemid',32824),(13797,'trends','itemid',32824),(13798,'trends_uint','itemid',32824),(13799,'events','itemid',32823),(13800,'history','itemid',32823),(13801,'history_log','itemid',32823),(13802,'history_str','itemid',32823),(13803,'history_text','itemid',32823),(13804,'history_uint','itemid',32823),(13805,'trends','itemid',32823),(13806,'trends_uint','itemid',32823),(13807,'events','itemid',32812),(13808,'history','itemid',32812),(13809,'history_log','itemid',32812),(13810,'history_str','itemid',32812),(13811,'history_text','itemid',32812),(13812,'history_uint','itemid',32812),(13813,'trends','itemid',32812),(13814,'trends_uint','itemid',32812),(13815,'events','itemid',32814),(13816,'history','itemid',32814),(13817,'history_log','itemid',32814),(13818,'history_str','itemid',32814),(13819,'history_text','itemid',32814),(13820,'history_uint','itemid',32814),(13821,'trends','itemid',32814),(13822,'trends_uint','itemid',32814),(13823,'events','itemid',32820),(13824,'history','itemid',32820),(13825,'history_log','itemid',32820),(13826,'history_str','itemid',32820),(13827,'history_text','itemid',32820),(13828,'history_uint','itemid',32820),(13829,'trends','itemid',32820),(13830,'trends_uint','itemid',32820),(13831,'events','itemid',32819),(13832,'history','itemid',32819),(13833,'history_log','itemid',32819),(13834,'history_str','itemid',32819),(13835,'history_text','itemid',32819),(13836,'history_uint','itemid',32819),(13837,'trends','itemid',32819),(13838,'trends_uint','itemid',32819),(13839,'events','itemid',32818),(13840,'history','itemid',32818),(13841,'history_log','itemid',32818),(13842,'history_str','itemid',32818),(13843,'history_text','itemid',32818),(13844,'history_uint','itemid',32818),(13845,'trends','itemid',32818),(13846,'trends_uint','itemid',32818),(13847,'events','itemid',32817),(13848,'history','itemid',32817),(13849,'history_log','itemid',32817),(13850,'history_str','itemid',32817),(13851,'history_text','itemid',32817),(13852,'history_uint','itemid',32817),(13853,'trends','itemid',32817),(13854,'trends_uint','itemid',32817),(13855,'events','itemid',32816),(13856,'history','itemid',32816),(13857,'history_log','itemid',32816),(13858,'history_str','itemid',32816),(13859,'history_text','itemid',32816),(13860,'history_uint','itemid',32816),(13861,'trends','itemid',32816),(13862,'trends_uint','itemid',32816),(13863,'events','itemid',32815),(13864,'history','itemid',32815),(13865,'history_log','itemid',32815),(13866,'history_str','itemid',32815),(13867,'history_text','itemid',32815),(13868,'history_uint','itemid',32815),(13869,'trends','itemid',32815),(13870,'trends_uint','itemid',32815),(13871,'events','itemid',32865),(13872,'history','itemid',32865),(13873,'history_log','itemid',32865),(13874,'history_str','itemid',32865),(13875,'history_text','itemid',32865),(13876,'history_uint','itemid',32865),(13877,'trends','itemid',32865),(13878,'trends_uint','itemid',32865),(13879,'events','itemid',33494),(13880,'history','itemid',33494),(13881,'history_log','itemid',33494),(13882,'history_str','itemid',33494),(13883,'history_text','itemid',33494),(13884,'history_uint','itemid',33494),(13885,'trends','itemid',33494),(13886,'trends_uint','itemid',33494),(13887,'events','itemid',33507),(13888,'history','itemid',33507),(13889,'history_log','itemid',33507),(13890,'history_str','itemid',33507),(13891,'history_text','itemid',33507),(13892,'history_uint','itemid',33507),(13893,'trends','itemid',33507),(13894,'trends_uint','itemid',33507),(13895,'events','itemid',33518),(13896,'history','itemid',33518),(13897,'history_log','itemid',33518),(13898,'history_str','itemid',33518),(13899,'history_text','itemid',33518),(13900,'history_uint','itemid',33518),(13901,'trends','itemid',33518),(13902,'trends_uint','itemid',33518),(13903,'events','itemid',33517),(13904,'history','itemid',33517),(13905,'history_log','itemid',33517),(13906,'history_str','itemid',33517),(13907,'history_text','itemid',33517),(13908,'history_uint','itemid',33517),(13909,'trends','itemid',33517),(13910,'trends_uint','itemid',33517),(13911,'events','itemid',33516),(13912,'history','itemid',33516),(13913,'history_log','itemid',33516),(13914,'history_str','itemid',33516),(13915,'history_text','itemid',33516),(13916,'history_uint','itemid',33516),(13917,'trends','itemid',33516),(13918,'trends_uint','itemid',33516),(13919,'events','itemid',33515),(13920,'history','itemid',33515),(13921,'history_log','itemid',33515),(13922,'history_str','itemid',33515),(13923,'history_text','itemid',33515),(13924,'history_uint','itemid',33515),(13925,'trends','itemid',33515),(13926,'trends_uint','itemid',33515),(13927,'events','itemid',33514),(13928,'history','itemid',33514),(13929,'history_log','itemid',33514),(13930,'history_str','itemid',33514),(13931,'history_text','itemid',33514),(13932,'history_uint','itemid',33514),(13933,'trends','itemid',33514),(13934,'trends_uint','itemid',33514),(13935,'events','itemid',33513),(13936,'history','itemid',33513),(13937,'history_log','itemid',33513),(13938,'history_str','itemid',33513),(13939,'history_text','itemid',33513),(13940,'history_uint','itemid',33513),(13941,'trends','itemid',33513),(13942,'trends_uint','itemid',33513),(13943,'events','itemid',33512),(13944,'history','itemid',33512),(13945,'history_log','itemid',33512),(13946,'history_str','itemid',33512),(13947,'history_text','itemid',33512),(13948,'history_uint','itemid',33512),(13949,'trends','itemid',33512),(13950,'trends_uint','itemid',33512),(13951,'events','itemid',33511),(13952,'history','itemid',33511),(13953,'history_log','itemid',33511),(13954,'history_str','itemid',33511),(13955,'history_text','itemid',33511),(13956,'history_uint','itemid',33511),(13957,'trends','itemid',33511),(13958,'trends_uint','itemid',33511),(13959,'events','itemid',33510),(13960,'history','itemid',33510),(13961,'history_log','itemid',33510),(13962,'history_str','itemid',33510),(13963,'history_text','itemid',33510),(13964,'history_uint','itemid',33510),(13965,'trends','itemid',33510),(13966,'trends_uint','itemid',33510),(13967,'events','itemid',33509),(13968,'history','itemid',33509),(13969,'history_log','itemid',33509),(13970,'history_str','itemid',33509),(13971,'history_text','itemid',33509),(13972,'history_uint','itemid',33509),(13973,'trends','itemid',33509),(13974,'trends_uint','itemid',33509),(13975,'events','itemid',33508),(13976,'history','itemid',33508),(13977,'history_log','itemid',33508),(13978,'history_str','itemid',33508),(13979,'history_text','itemid',33508),(13980,'history_uint','itemid',33508),(13981,'trends','itemid',33508),(13982,'trends_uint','itemid',33508),(13983,'events','itemid',33493),(13984,'history','itemid',33493),(13985,'history_log','itemid',33493),(13986,'history_str','itemid',33493),(13987,'history_text','itemid',33493),(13988,'history_uint','itemid',33493),(13989,'trends','itemid',33493),(13990,'trends_uint','itemid',33493),(13991,'events','itemid',33506),(13992,'history','itemid',33506),(13993,'history_log','itemid',33506),(13994,'history_str','itemid',33506),(13995,'history_text','itemid',33506),(13996,'history_uint','itemid',33506),(13997,'trends','itemid',33506),(13998,'trends_uint','itemid',33506),(13999,'events','itemid',33492),(14000,'history','itemid',33492),(14001,'history_log','itemid',33492),(14002,'history_str','itemid',33492),(14003,'history_text','itemid',33492),(14004,'history_uint','itemid',33492),(14005,'trends','itemid',33492),(14006,'trends_uint','itemid',33492),(14007,'events','itemid',33505),(14008,'history','itemid',33505),(14009,'history_log','itemid',33505),(14010,'history_str','itemid',33505),(14011,'history_text','itemid',33505),(14012,'history_uint','itemid',33505),(14013,'trends','itemid',33505),(14014,'trends_uint','itemid',33505),(14015,'events','itemid',33491),(14016,'history','itemid',33491),(14017,'history_log','itemid',33491),(14018,'history_str','itemid',33491),(14019,'history_text','itemid',33491),(14020,'history_uint','itemid',33491),(14021,'trends','itemid',33491),(14022,'trends_uint','itemid',33491),(14023,'events','itemid',33504),(14024,'history','itemid',33504),(14025,'history_log','itemid',33504),(14026,'history_str','itemid',33504),(14027,'history_text','itemid',33504),(14028,'history_uint','itemid',33504),(14029,'trends','itemid',33504),(14030,'trends_uint','itemid',33504),(14031,'events','itemid',33503),(14032,'history','itemid',33503),(14033,'history_log','itemid',33503),(14034,'history_str','itemid',33503),(14035,'history_text','itemid',33503),(14036,'history_uint','itemid',33503),(14037,'trends','itemid',33503),(14038,'trends_uint','itemid',33503),(14039,'events','itemid',33502),(14040,'history','itemid',33502),(14041,'history_log','itemid',33502),(14042,'history_str','itemid',33502),(14043,'history_text','itemid',33502),(14044,'history_uint','itemid',33502),(14045,'trends','itemid',33502),(14046,'trends_uint','itemid',33502),(14047,'events','itemid',33501),(14048,'history','itemid',33501),(14049,'history_log','itemid',33501),(14050,'history_str','itemid',33501),(14051,'history_text','itemid',33501),(14052,'history_uint','itemid',33501),(14053,'trends','itemid',33501),(14054,'trends_uint','itemid',33501),(14055,'events','itemid',33500),(14056,'history','itemid',33500),(14057,'history_log','itemid',33500),(14058,'history_str','itemid',33500),(14059,'history_text','itemid',33500),(14060,'history_uint','itemid',33500),(14061,'trends','itemid',33500),(14062,'trends_uint','itemid',33500),(14063,'events','itemid',33499),(14064,'history','itemid',33499),(14065,'history_log','itemid',33499),(14066,'history_str','itemid',33499),(14067,'history_text','itemid',33499),(14068,'history_uint','itemid',33499),(14069,'trends','itemid',33499),(14070,'trends_uint','itemid',33499),(14071,'events','itemid',33498),(14072,'history','itemid',33498),(14073,'history_log','itemid',33498),(14074,'history_str','itemid',33498),(14075,'history_text','itemid',33498),(14076,'history_uint','itemid',33498),(14077,'trends','itemid',33498),(14078,'trends_uint','itemid',33498),(14079,'events','itemid',33497),(14080,'history','itemid',33497),(14081,'history_log','itemid',33497),(14082,'history_str','itemid',33497),(14083,'history_text','itemid',33497),(14084,'history_uint','itemid',33497),(14085,'trends','itemid',33497),(14086,'trends_uint','itemid',33497),(14087,'events','itemid',33496),(14088,'history','itemid',33496),(14089,'history_log','itemid',33496),(14090,'history_str','itemid',33496),(14091,'history_text','itemid',33496),(14092,'history_uint','itemid',33496),(14093,'trends','itemid',33496),(14094,'trends_uint','itemid',33496),(14095,'events','itemid',33495),(14096,'history','itemid',33495),(14097,'history_log','itemid',33495),(14098,'history_str','itemid',33495),(14099,'history_text','itemid',33495),(14100,'history_uint','itemid',33495),(14101,'trends','itemid',33495),(14102,'trends_uint','itemid',33495),(14103,'events','itemid',33519),(14104,'history','itemid',33519),(14105,'history_log','itemid',33519),(14106,'history_str','itemid',33519),(14107,'history_text','itemid',33519),(14108,'history_uint','itemid',33519),(14109,'trends','itemid',33519),(14110,'trends_uint','itemid',33519),(14111,'events','itemid',35078),(14112,'history','itemid',35078),(14113,'history_log','itemid',35078),(14114,'history_str','itemid',35078),(14115,'history_text','itemid',35078),(14116,'history_uint','itemid',35078),(14117,'trends','itemid',35078),(14118,'trends_uint','itemid',35078),(14119,'events','itemid',35101),(14120,'history','itemid',35101),(14121,'history_log','itemid',35101),(14122,'history_str','itemid',35101),(14123,'history_text','itemid',35101),(14124,'history_uint','itemid',35101),(14125,'trends','itemid',35101),(14126,'trends_uint','itemid',35101),(14127,'events','itemid',35091),(14128,'history','itemid',35091),(14129,'history_log','itemid',35091),(14130,'history_str','itemid',35091),(14131,'history_text','itemid',35091),(14132,'history_uint','itemid',35091),(14133,'trends','itemid',35091),(14134,'trends_uint','itemid',35091),(14135,'events','itemid',35100),(14136,'history','itemid',35100),(14137,'history_log','itemid',35100),(14138,'history_str','itemid',35100),(14139,'history_text','itemid',35100),(14140,'history_uint','itemid',35100),(14141,'trends','itemid',35100),(14142,'trends_uint','itemid',35100),(14143,'events','itemid',35099),(14144,'history','itemid',35099),(14145,'history_log','itemid',35099),(14146,'history_str','itemid',35099),(14147,'history_text','itemid',35099),(14148,'history_uint','itemid',35099),(14149,'trends','itemid',35099),(14150,'trends_uint','itemid',35099),(14151,'events','itemid',35098),(14152,'history','itemid',35098),(14153,'history_log','itemid',35098),(14154,'history_str','itemid',35098),(14155,'history_text','itemid',35098),(14156,'history_uint','itemid',35098),(14157,'trends','itemid',35098),(14158,'trends_uint','itemid',35098),(14159,'events','itemid',35097),(14160,'history','itemid',35097),(14161,'history_log','itemid',35097),(14162,'history_str','itemid',35097),(14163,'history_text','itemid',35097),(14164,'history_uint','itemid',35097),(14165,'trends','itemid',35097),(14166,'trends_uint','itemid',35097),(14167,'events','itemid',35096),(14168,'history','itemid',35096),(14169,'history_log','itemid',35096),(14170,'history_str','itemid',35096),(14171,'history_text','itemid',35096),(14172,'history_uint','itemid',35096),(14173,'trends','itemid',35096),(14174,'trends_uint','itemid',35096),(14175,'events','itemid',35095),(14176,'history','itemid',35095),(14177,'history_log','itemid',35095),(14178,'history_str','itemid',35095),(14179,'history_text','itemid',35095),(14180,'history_uint','itemid',35095),(14181,'trends','itemid',35095),(14182,'trends_uint','itemid',35095),(14183,'events','itemid',35077),(14184,'history','itemid',35077),(14185,'history_log','itemid',35077),(14186,'history_str','itemid',35077),(14187,'history_text','itemid',35077),(14188,'history_uint','itemid',35077),(14189,'trends','itemid',35077),(14190,'trends_uint','itemid',35077),(14191,'events','itemid',35094),(14192,'history','itemid',35094),(14193,'history_log','itemid',35094),(14194,'history_str','itemid',35094),(14195,'history_text','itemid',35094),(14196,'history_uint','itemid',35094),(14197,'trends','itemid',35094),(14198,'trends_uint','itemid',35094),(14199,'events','itemid',35093),(14200,'history','itemid',35093),(14201,'history_log','itemid',35093),(14202,'history_str','itemid',35093),(14203,'history_text','itemid',35093),(14204,'history_uint','itemid',35093),(14205,'trends','itemid',35093),(14206,'trends_uint','itemid',35093),(14207,'events','itemid',35090),(14208,'history','itemid',35090),(14209,'history_log','itemid',35090),(14210,'history_str','itemid',35090),(14211,'history_text','itemid',35090),(14212,'history_uint','itemid',35090),(14213,'trends','itemid',35090),(14214,'trends_uint','itemid',35090),(14215,'events','itemid',35092),(14216,'history','itemid',35092),(14217,'history_log','itemid',35092),(14218,'history_str','itemid',35092),(14219,'history_text','itemid',35092),(14220,'history_uint','itemid',35092),(14221,'trends','itemid',35092),(14222,'trends_uint','itemid',35092),(14223,'events','itemid',35079),(14224,'history','itemid',35079),(14225,'history_log','itemid',35079),(14226,'history_str','itemid',35079),(14227,'history_text','itemid',35079),(14228,'history_uint','itemid',35079),(14229,'trends','itemid',35079),(14230,'trends_uint','itemid',35079),(14231,'events','itemid',35089),(14232,'history','itemid',35089),(14233,'history_log','itemid',35089),(14234,'history_str','itemid',35089),(14235,'history_text','itemid',35089),(14236,'history_uint','itemid',35089),(14237,'trends','itemid',35089),(14238,'trends_uint','itemid',35089),(14239,'events','itemid',35088),(14240,'history','itemid',35088),(14241,'history_log','itemid',35088),(14242,'history_str','itemid',35088),(14243,'history_text','itemid',35088),(14244,'history_uint','itemid',35088),(14245,'trends','itemid',35088),(14246,'trends_uint','itemid',35088),(14247,'events','itemid',35087),(14248,'history','itemid',35087),(14249,'history_log','itemid',35087),(14250,'history_str','itemid',35087),(14251,'history_text','itemid',35087),(14252,'history_uint','itemid',35087),(14253,'trends','itemid',35087),(14254,'trends_uint','itemid',35087),(14255,'events','itemid',35086),(14256,'history','itemid',35086),(14257,'history_log','itemid',35086),(14258,'history_str','itemid',35086),(14259,'history_text','itemid',35086),(14260,'history_uint','itemid',35086),(14261,'trends','itemid',35086),(14262,'trends_uint','itemid',35086),(14263,'events','itemid',35085),(14264,'history','itemid',35085),(14265,'history_log','itemid',35085),(14266,'history_str','itemid',35085),(14267,'history_text','itemid',35085),(14268,'history_uint','itemid',35085),(14269,'trends','itemid',35085),(14270,'trends_uint','itemid',35085),(14271,'events','itemid',35084),(14272,'history','itemid',35084),(14273,'history_log','itemid',35084),(14274,'history_str','itemid',35084),(14275,'history_text','itemid',35084),(14276,'history_uint','itemid',35084),(14277,'trends','itemid',35084),(14278,'trends_uint','itemid',35084),(14279,'events','itemid',35083),(14280,'history','itemid',35083),(14281,'history_log','itemid',35083),(14282,'history_str','itemid',35083),(14283,'history_text','itemid',35083),(14284,'history_uint','itemid',35083),(14285,'trends','itemid',35083),(14286,'trends_uint','itemid',35083),(14287,'events','itemid',35082),(14288,'history','itemid',35082),(14289,'history_log','itemid',35082),(14290,'history_str','itemid',35082),(14291,'history_text','itemid',35082),(14292,'history_uint','itemid',35082),(14293,'trends','itemid',35082),(14294,'trends_uint','itemid',35082),(14295,'events','itemid',35081),(14296,'history','itemid',35081),(14297,'history_log','itemid',35081),(14298,'history_str','itemid',35081),(14299,'history_text','itemid',35081),(14300,'history_uint','itemid',35081),(14301,'trends','itemid',35081),(14302,'trends_uint','itemid',35081),(14303,'events','itemid',35080),(14304,'history','itemid',35080),(14305,'history_log','itemid',35080),(14306,'history_str','itemid',35080),(14307,'history_text','itemid',35080),(14308,'history_uint','itemid',35080),(14309,'trends','itemid',35080),(14310,'trends_uint','itemid',35080),(14311,'events','itemid',35102),(14312,'history','itemid',35102),(14313,'history_log','itemid',35102),(14314,'history_str','itemid',35102),(14315,'history_text','itemid',35102),(14316,'history_uint','itemid',35102),(14317,'trends','itemid',35102),(14318,'trends_uint','itemid',35102),(14319,'events','itemid',35406),(14320,'history','itemid',35406),(14321,'history_log','itemid',35406),(14322,'history_str','itemid',35406),(14323,'history_text','itemid',35406),(14324,'history_uint','itemid',35406),(14325,'trends','itemid',35406),(14326,'trends_uint','itemid',35406),(14327,'events','itemid',36823),(14328,'history','itemid',36823),(14329,'history_log','itemid',36823),(14330,'history_str','itemid',36823),(14331,'history_text','itemid',36823),(14332,'history_uint','itemid',36823),(14333,'trends','itemid',36823),(14334,'trends_uint','itemid',36823),(14335,'events','itemid',35415),(14336,'history','itemid',35415),(14337,'history_log','itemid',35415),(14338,'history_str','itemid',35415),(14339,'history_text','itemid',35415),(14340,'history_uint','itemid',35415),(14341,'trends','itemid',35415),(14342,'trends_uint','itemid',35415),(14343,'events','itemid',35422),(14344,'history','itemid',35422),(14345,'history_log','itemid',35422),(14346,'history_str','itemid',35422),(14347,'history_text','itemid',35422),(14348,'history_uint','itemid',35422),(14349,'trends','itemid',35422),(14350,'trends_uint','itemid',35422),(14351,'events','itemid',35421),(14352,'history','itemid',35421),(14353,'history_log','itemid',35421),(14354,'history_str','itemid',35421),(14355,'history_text','itemid',35421),(14356,'history_uint','itemid',35421),(14357,'trends','itemid',35421),(14358,'trends_uint','itemid',35421),(14359,'events','itemid',35420),(14360,'history','itemid',35420),(14361,'history_log','itemid',35420),(14362,'history_str','itemid',35420),(14363,'history_text','itemid',35420),(14364,'history_uint','itemid',35420),(14365,'trends','itemid',35420),(14366,'trends_uint','itemid',35420),(14367,'events','itemid',35419),(14368,'history','itemid',35419),(14369,'history_log','itemid',35419),(14370,'history_str','itemid',35419),(14371,'history_text','itemid',35419),(14372,'history_uint','itemid',35419),(14373,'trends','itemid',35419),(14374,'trends_uint','itemid',35419),(14375,'events','itemid',35418),(14376,'history','itemid',35418),(14377,'history_log','itemid',35418),(14378,'history_str','itemid',35418),(14379,'history_text','itemid',35418),(14380,'history_uint','itemid',35418),(14381,'trends','itemid',35418),(14382,'trends_uint','itemid',35418),(14383,'events','itemid',35417),(14384,'history','itemid',35417),(14385,'history_log','itemid',35417),(14386,'history_str','itemid',35417),(14387,'history_text','itemid',35417),(14388,'history_uint','itemid',35417),(14389,'trends','itemid',35417),(14390,'trends_uint','itemid',35417),(14391,'events','itemid',35416),(14392,'history','itemid',35416),(14393,'history_log','itemid',35416),(14394,'history_str','itemid',35416),(14395,'history_text','itemid',35416),(14396,'history_uint','itemid',35416),(14397,'trends','itemid',35416),(14398,'trends_uint','itemid',35416),(14399,'events','itemid',35414),(14400,'history','itemid',35414),(14401,'history_log','itemid',35414),(14402,'history_str','itemid',35414),(14403,'history_text','itemid',35414),(14404,'history_uint','itemid',35414),(14405,'trends','itemid',35414),(14406,'trends_uint','itemid',35414),(14407,'events','itemid',36822),(14408,'history','itemid',36822),(14409,'history_log','itemid',36822),(14410,'history_str','itemid',36822),(14411,'history_text','itemid',36822),(14412,'history_uint','itemid',36822),(14413,'trends','itemid',36822),(14414,'trends_uint','itemid',36822),(14415,'events','itemid',35407),(14416,'history','itemid',35407),(14417,'history_log','itemid',35407),(14418,'history_str','itemid',35407),(14419,'history_text','itemid',35407),(14420,'history_uint','itemid',35407),(14421,'trends','itemid',35407),(14422,'trends_uint','itemid',35407),(14423,'events','itemid',35413),(14424,'history','itemid',35413),(14425,'history_log','itemid',35413),(14426,'history_str','itemid',35413),(14427,'history_text','itemid',35413),(14428,'history_uint','itemid',35413),(14429,'trends','itemid',35413),(14430,'trends_uint','itemid',35413),(14431,'events','itemid',35412),(14432,'history','itemid',35412),(14433,'history_log','itemid',35412),(14434,'history_str','itemid',35412),(14435,'history_text','itemid',35412),(14436,'history_uint','itemid',35412),(14437,'trends','itemid',35412),(14438,'trends_uint','itemid',35412),(14439,'events','itemid',35411),(14440,'history','itemid',35411),(14441,'history_log','itemid',35411),(14442,'history_str','itemid',35411),(14443,'history_text','itemid',35411),(14444,'history_uint','itemid',35411),(14445,'trends','itemid',35411),(14446,'trends_uint','itemid',35411),(14447,'events','itemid',35410),(14448,'history','itemid',35410),(14449,'history_log','itemid',35410),(14450,'history_str','itemid',35410),(14451,'history_text','itemid',35410),(14452,'history_uint','itemid',35410),(14453,'trends','itemid',35410),(14454,'trends_uint','itemid',35410),(14455,'events','itemid',35409),(14456,'history','itemid',35409),(14457,'history_log','itemid',35409),(14458,'history_str','itemid',35409),(14459,'history_text','itemid',35409),(14460,'history_uint','itemid',35409),(14461,'trends','itemid',35409),(14462,'trends_uint','itemid',35409),(14463,'events','itemid',35408),(14464,'history','itemid',35408),(14465,'history_log','itemid',35408),(14466,'history_str','itemid',35408),(14467,'history_text','itemid',35408),(14468,'history_uint','itemid',35408),(14469,'trends','itemid',35408),(14470,'trends_uint','itemid',35408),(14471,'events','itemid',35423),(14472,'history','itemid',35423),(14473,'history_log','itemid',35423),(14474,'history_str','itemid',35423),(14475,'history_text','itemid',35423),(14476,'history_uint','itemid',35423),(14477,'trends','itemid',35423),(14478,'trends_uint','itemid',35423),(14479,'events','itemid',36160),(14480,'history','itemid',36160),(14481,'history_log','itemid',36160),(14482,'history_str','itemid',36160),(14483,'history_text','itemid',36160),(14484,'history_uint','itemid',36160),(14485,'trends','itemid',36160),(14486,'trends_uint','itemid',36160),(14487,'events','itemid',36161),(14488,'history','itemid',36161),(14489,'history_log','itemid',36161),(14490,'history_str','itemid',36161),(14491,'history_text','itemid',36161),(14492,'history_uint','itemid',36161),(14493,'trends','itemid',36161),(14494,'trends_uint','itemid',36161),(14495,'events','itemid',43889),(14496,'history','itemid',43889),(14497,'history_log','itemid',43889),(14498,'history_str','itemid',43889),(14499,'history_text','itemid',43889),(14500,'history_uint','itemid',43889),(14501,'trends','itemid',43889),(14502,'trends_uint','itemid',43889),(14503,'events','itemid',36162),(14504,'history','itemid',36162),(14505,'history_log','itemid',36162),(14506,'history_str','itemid',36162),(14507,'history_text','itemid',36162),(14508,'history_uint','itemid',36162),(14509,'trends','itemid',36162),(14510,'trends_uint','itemid',36162),(14511,'events','itemid',36163),(14512,'history','itemid',36163),(14513,'history_log','itemid',36163),(14514,'history_str','itemid',36163),(14515,'history_text','itemid',36163),(14516,'history_uint','itemid',36163),(14517,'trends','itemid',36163),(14518,'trends_uint','itemid',36163),(14519,'events','itemid',36165),(14520,'history','itemid',36165),(14521,'history_log','itemid',36165),(14522,'history_str','itemid',36165),(14523,'history_text','itemid',36165),(14524,'history_uint','itemid',36165),(14525,'trends','itemid',36165),(14526,'trends_uint','itemid',36165),(14527,'events','itemid',36164),(14528,'history','itemid',36164),(14529,'history_log','itemid',36164),(14530,'history_str','itemid',36164),(14531,'history_text','itemid',36164),(14532,'history_uint','itemid',36164),(14533,'trends','itemid',36164),(14534,'trends_uint','itemid',36164),(14535,'events','itemid',36166),(14536,'history','itemid',36166),(14537,'history_log','itemid',36166),(14538,'history_str','itemid',36166),(14539,'history_text','itemid',36166),(14540,'history_uint','itemid',36166),(14541,'trends','itemid',36166),(14542,'trends_uint','itemid',36166),(14543,'events','itemid',36167),(14544,'history','itemid',36167),(14545,'history_log','itemid',36167),(14546,'history_str','itemid',36167),(14547,'history_text','itemid',36167),(14548,'history_uint','itemid',36167),(14549,'trends','itemid',36167),(14550,'trends_uint','itemid',36167),(14551,'events','itemid',36215),(14552,'history','itemid',36215),(14553,'history_log','itemid',36215),(14554,'history_str','itemid',36215),(14555,'history_text','itemid',36215),(14556,'history_uint','itemid',36215),(14557,'trends','itemid',36215),(14558,'trends_uint','itemid',36215),(14559,'events','itemid',36216),(14560,'history','itemid',36216),(14561,'history_log','itemid',36216),(14562,'history_str','itemid',36216),(14563,'history_text','itemid',36216),(14564,'history_uint','itemid',36216),(14565,'trends','itemid',36216),(14566,'trends_uint','itemid',36216),(14567,'events','itemid',36217),(14568,'history','itemid',36217),(14569,'history_log','itemid',36217),(14570,'history_str','itemid',36217),(14571,'history_text','itemid',36217),(14572,'history_uint','itemid',36217),(14573,'trends','itemid',36217),(14574,'trends_uint','itemid',36217),(14575,'events','itemid',36218),(14576,'history','itemid',36218),(14577,'history_log','itemid',36218),(14578,'history_str','itemid',36218),(14579,'history_text','itemid',36218),(14580,'history_uint','itemid',36218),(14581,'trends','itemid',36218),(14582,'trends_uint','itemid',36218),(14583,'events','itemid',36213),(14584,'history','itemid',36213),(14585,'history_log','itemid',36213),(14586,'history_str','itemid',36213),(14587,'history_text','itemid',36213),(14588,'history_uint','itemid',36213),(14589,'trends','itemid',36213),(14590,'trends_uint','itemid',36213),(14591,'events','itemid',36214),(14592,'history','itemid',36214),(14593,'history_log','itemid',36214),(14594,'history_str','itemid',36214),(14595,'history_text','itemid',36214),(14596,'history_uint','itemid',36214),(14597,'trends','itemid',36214),(14598,'trends_uint','itemid',36214),(14599,'events','itemid',36255),(14600,'history','itemid',36255),(14601,'history_log','itemid',36255),(14602,'history_str','itemid',36255),(14603,'history_text','itemid',36255),(14604,'history_uint','itemid',36255),(14605,'trends','itemid',36255),(14606,'trends_uint','itemid',36255),(14607,'events','itemid',36256),(14608,'history','itemid',36256),(14609,'history_log','itemid',36256),(14610,'history_str','itemid',36256),(14611,'history_text','itemid',36256),(14612,'history_uint','itemid',36256),(14613,'trends','itemid',36256),(14614,'trends_uint','itemid',36256),(14615,'events','itemid',36257),(14616,'history','itemid',36257),(14617,'history_log','itemid',36257),(14618,'history_str','itemid',36257),(14619,'history_text','itemid',36257),(14620,'history_uint','itemid',36257),(14621,'trends','itemid',36257),(14622,'trends_uint','itemid',36257),(14623,'events','itemid',36258),(14624,'history','itemid',36258),(14625,'history_log','itemid',36258),(14626,'history_str','itemid',36258),(14627,'history_text','itemid',36258),(14628,'history_uint','itemid',36258),(14629,'trends','itemid',36258),(14630,'trends_uint','itemid',36258),(14631,'events','itemid',36259),(14632,'history','itemid',36259),(14633,'history_log','itemid',36259),(14634,'history_str','itemid',36259),(14635,'history_text','itemid',36259),(14636,'history_uint','itemid',36259),(14637,'trends','itemid',36259),(14638,'trends_uint','itemid',36259),(14639,'events','itemid',43891),(14640,'history','itemid',43891),(14641,'history_log','itemid',43891),(14642,'history_str','itemid',43891),(14643,'history_text','itemid',43891),(14644,'history_uint','itemid',43891),(14645,'trends','itemid',43891),(14646,'trends_uint','itemid',43891),(14647,'events','itemid',36260),(14648,'history','itemid',36260),(14649,'history_log','itemid',36260),(14650,'history_str','itemid',36260),(14651,'history_text','itemid',36260),(14652,'history_uint','itemid',36260),(14653,'trends','itemid',36260),(14654,'trends_uint','itemid',36260),(14655,'events','itemid',36261),(14656,'history','itemid',36261),(14657,'history_log','itemid',36261),(14658,'history_str','itemid',36261),(14659,'history_text','itemid',36261),(14660,'history_uint','itemid',36261),(14661,'trends','itemid',36261),(14662,'trends_uint','itemid',36261),(14663,'events','itemid',36265),(14664,'history','itemid',36265),(14665,'history_log','itemid',36265),(14666,'history_str','itemid',36265),(14667,'history_text','itemid',36265),(14668,'history_uint','itemid',36265),(14669,'trends','itemid',36265),(14670,'trends_uint','itemid',36265),(14671,'events','itemid',36262),(14672,'history','itemid',36262),(14673,'history_log','itemid',36262),(14674,'history_str','itemid',36262),(14675,'history_text','itemid',36262),(14676,'history_uint','itemid',36262),(14677,'trends','itemid',36262),(14678,'trends_uint','itemid',36262),(14679,'events','itemid',36263),(14680,'history','itemid',36263),(14681,'history_log','itemid',36263),(14682,'history_str','itemid',36263),(14683,'history_text','itemid',36263),(14684,'history_uint','itemid',36263),(14685,'trends','itemid',36263),(14686,'trends_uint','itemid',36263),(14687,'events','itemid',36264),(14688,'history','itemid',36264),(14689,'history_log','itemid',36264),(14690,'history_str','itemid',36264),(14691,'history_text','itemid',36264),(14692,'history_uint','itemid',36264),(14693,'trends','itemid',36264),(14694,'trends_uint','itemid',36264),(14695,'events','itemid',36266),(14696,'history','itemid',36266),(14697,'history_log','itemid',36266),(14698,'history_str','itemid',36266),(14699,'history_text','itemid',36266),(14700,'history_uint','itemid',36266),(14701,'trends','itemid',36266),(14702,'trends_uint','itemid',36266),(14703,'events','itemid',36267),(14704,'history','itemid',36267),(14705,'history_log','itemid',36267),(14706,'history_str','itemid',36267),(14707,'history_text','itemid',36267),(14708,'history_uint','itemid',36267),(14709,'trends','itemid',36267),(14710,'trends_uint','itemid',36267),(14711,'events','itemid',36297),(14712,'history','itemid',36297),(14713,'history_log','itemid',36297),(14714,'history_str','itemid',36297),(14715,'history_text','itemid',36297),(14716,'history_uint','itemid',36297),(14717,'trends','itemid',36297),(14718,'trends_uint','itemid',36297),(14719,'events','itemid',36298),(14720,'history','itemid',36298),(14721,'history_log','itemid',36298),(14722,'history_str','itemid',36298),(14723,'history_text','itemid',36298),(14724,'history_uint','itemid',36298),(14725,'trends','itemid',36298),(14726,'trends_uint','itemid',36298),(14727,'events','itemid',36299),(14728,'history','itemid',36299),(14729,'history_log','itemid',36299),(14730,'history_str','itemid',36299),(14731,'history_text','itemid',36299),(14732,'history_uint','itemid',36299),(14733,'trends','itemid',36299),(14734,'trends_uint','itemid',36299),(14735,'events','itemid',36300),(14736,'history','itemid',36300),(14737,'history_log','itemid',36300),(14738,'history_str','itemid',36300),(14739,'history_text','itemid',36300),(14740,'history_uint','itemid',36300),(14741,'trends','itemid',36300),(14742,'trends_uint','itemid',36300),(14743,'events','itemid',36295),(14744,'history','itemid',36295),(14745,'history_log','itemid',36295),(14746,'history_str','itemid',36295),(14747,'history_text','itemid',36295),(14748,'history_uint','itemid',36295),(14749,'trends','itemid',36295),(14750,'trends_uint','itemid',36295),(14751,'events','itemid',36296),(14752,'history','itemid',36296),(14753,'history_log','itemid',36296),(14754,'history_str','itemid',36296),(14755,'history_text','itemid',36296),(14756,'history_uint','itemid',36296),(14757,'trends','itemid',36296),(14758,'trends_uint','itemid',36296),(14759,'events','itemid',36337),(14760,'history','itemid',36337),(14761,'history_log','itemid',36337),(14762,'history_str','itemid',36337),(14763,'history_text','itemid',36337),(14764,'history_uint','itemid',36337),(14765,'trends','itemid',36337),(14766,'trends_uint','itemid',36337),(14767,'events','itemid',36338),(14768,'history','itemid',36338),(14769,'history_log','itemid',36338),(14770,'history_str','itemid',36338),(14771,'history_text','itemid',36338),(14772,'history_uint','itemid',36338),(14773,'trends','itemid',36338),(14774,'trends_uint','itemid',36338),(14775,'events','itemid',36339),(14776,'history','itemid',36339),(14777,'history_log','itemid',36339),(14778,'history_str','itemid',36339),(14779,'history_text','itemid',36339),(14780,'history_uint','itemid',36339),(14781,'trends','itemid',36339),(14782,'trends_uint','itemid',36339),(14783,'events','itemid',36340),(14784,'history','itemid',36340),(14785,'history_log','itemid',36340),(14786,'history_str','itemid',36340),(14787,'history_text','itemid',36340),(14788,'history_uint','itemid',36340),(14789,'trends','itemid',36340),(14790,'trends_uint','itemid',36340),(14791,'events','itemid',36341),(14792,'history','itemid',36341),(14793,'history_log','itemid',36341),(14794,'history_str','itemid',36341),(14795,'history_text','itemid',36341),(14796,'history_uint','itemid',36341),(14797,'trends','itemid',36341),(14798,'trends_uint','itemid',36341),(14799,'events','itemid',43892),(14800,'history','itemid',43892),(14801,'history_log','itemid',43892),(14802,'history_str','itemid',43892),(14803,'history_text','itemid',43892),(14804,'history_uint','itemid',43892),(14805,'trends','itemid',43892),(14806,'trends_uint','itemid',43892),(14807,'events','itemid',36342),(14808,'history','itemid',36342),(14809,'history_log','itemid',36342),(14810,'history_str','itemid',36342),(14811,'history_text','itemid',36342),(14812,'history_uint','itemid',36342),(14813,'trends','itemid',36342),(14814,'trends_uint','itemid',36342),(14815,'events','itemid',36343),(14816,'history','itemid',36343),(14817,'history_log','itemid',36343),(14818,'history_str','itemid',36343),(14819,'history_text','itemid',36343),(14820,'history_uint','itemid',36343),(14821,'trends','itemid',36343),(14822,'trends_uint','itemid',36343),(14823,'events','itemid',36347),(14824,'history','itemid',36347),(14825,'history_log','itemid',36347),(14826,'history_str','itemid',36347),(14827,'history_text','itemid',36347),(14828,'history_uint','itemid',36347),(14829,'trends','itemid',36347),(14830,'trends_uint','itemid',36347),(14831,'events','itemid',36344),(14832,'history','itemid',36344),(14833,'history_log','itemid',36344),(14834,'history_str','itemid',36344),(14835,'history_text','itemid',36344),(14836,'history_uint','itemid',36344),(14837,'trends','itemid',36344),(14838,'trends_uint','itemid',36344),(14839,'events','itemid',36345),(14840,'history','itemid',36345),(14841,'history_log','itemid',36345),(14842,'history_str','itemid',36345),(14843,'history_text','itemid',36345),(14844,'history_uint','itemid',36345),(14845,'trends','itemid',36345),(14846,'trends_uint','itemid',36345),(14847,'events','itemid',36346),(14848,'history','itemid',36346),(14849,'history_log','itemid',36346),(14850,'history_str','itemid',36346),(14851,'history_text','itemid',36346),(14852,'history_uint','itemid',36346),(14853,'trends','itemid',36346),(14854,'trends_uint','itemid',36346),(14855,'events','itemid',36348),(14856,'history','itemid',36348),(14857,'history_log','itemid',36348),(14858,'history_str','itemid',36348),(14859,'history_text','itemid',36348),(14860,'history_uint','itemid',36348),(14861,'trends','itemid',36348),(14862,'trends_uint','itemid',36348),(14863,'events','itemid',36349),(14864,'history','itemid',36349),(14865,'history_log','itemid',36349),(14866,'history_str','itemid',36349),(14867,'history_text','itemid',36349),(14868,'history_uint','itemid',36349),(14869,'trends','itemid',36349),(14870,'trends_uint','itemid',36349),(14871,'events','itemid',36379),(14872,'history','itemid',36379),(14873,'history_log','itemid',36379),(14874,'history_str','itemid',36379),(14875,'history_text','itemid',36379),(14876,'history_uint','itemid',36379),(14877,'trends','itemid',36379),(14878,'trends_uint','itemid',36379),(14879,'events','itemid',36380),(14880,'history','itemid',36380),(14881,'history_log','itemid',36380),(14882,'history_str','itemid',36380),(14883,'history_text','itemid',36380),(14884,'history_uint','itemid',36380),(14885,'trends','itemid',36380),(14886,'trends_uint','itemid',36380),(14887,'events','itemid',36381),(14888,'history','itemid',36381),(14889,'history_log','itemid',36381),(14890,'history_str','itemid',36381),(14891,'history_text','itemid',36381),(14892,'history_uint','itemid',36381),(14893,'trends','itemid',36381),(14894,'trends_uint','itemid',36381),(14895,'events','itemid',36382),(14896,'history','itemid',36382),(14897,'history_log','itemid',36382),(14898,'history_str','itemid',36382),(14899,'history_text','itemid',36382),(14900,'history_uint','itemid',36382),(14901,'trends','itemid',36382),(14902,'trends_uint','itemid',36382),(14903,'events','itemid',36377),(14904,'history','itemid',36377),(14905,'history_log','itemid',36377),(14906,'history_str','itemid',36377),(14907,'history_text','itemid',36377),(14908,'history_uint','itemid',36377),(14909,'trends','itemid',36377),(14910,'trends_uint','itemid',36377),(14911,'events','itemid',36378),(14912,'history','itemid',36378),(14913,'history_log','itemid',36378),(14914,'history_str','itemid',36378),(14915,'history_text','itemid',36378),(14916,'history_uint','itemid',36378),(14917,'trends','itemid',36378),(14918,'trends_uint','itemid',36378),(14919,'events','itemid',36419),(14920,'history','itemid',36419),(14921,'history_log','itemid',36419),(14922,'history_str','itemid',36419),(14923,'history_text','itemid',36419),(14924,'history_uint','itemid',36419),(14925,'trends','itemid',36419),(14926,'trends_uint','itemid',36419),(14927,'events','itemid',36420),(14928,'history','itemid',36420),(14929,'history_log','itemid',36420),(14930,'history_str','itemid',36420),(14931,'history_text','itemid',36420),(14932,'history_uint','itemid',36420),(14933,'trends','itemid',36420),(14934,'trends_uint','itemid',36420),(14935,'events','itemid',36421),(14936,'history','itemid',36421),(14937,'history_log','itemid',36421),(14938,'history_str','itemid',36421),(14939,'history_text','itemid',36421),(14940,'history_uint','itemid',36421),(14941,'trends','itemid',36421),(14942,'trends_uint','itemid',36421),(14943,'events','itemid',36422),(14944,'history','itemid',36422),(14945,'history_log','itemid',36422),(14946,'history_str','itemid',36422),(14947,'history_text','itemid',36422),(14948,'history_uint','itemid',36422),(14949,'trends','itemid',36422),(14950,'trends_uint','itemid',36422),(14951,'events','itemid',36423),(14952,'history','itemid',36423),(14953,'history_log','itemid',36423),(14954,'history_str','itemid',36423),(14955,'history_text','itemid',36423),(14956,'history_uint','itemid',36423),(14957,'trends','itemid',36423),(14958,'trends_uint','itemid',36423),(14959,'events','itemid',43893),(14960,'history','itemid',43893),(14961,'history_log','itemid',43893),(14962,'history_str','itemid',43893),(14963,'history_text','itemid',43893),(14964,'history_uint','itemid',43893),(14965,'trends','itemid',43893),(14966,'trends_uint','itemid',43893),(14967,'events','itemid',36424),(14968,'history','itemid',36424),(14969,'history_log','itemid',36424),(14970,'history_str','itemid',36424),(14971,'history_text','itemid',36424),(14972,'history_uint','itemid',36424),(14973,'trends','itemid',36424),(14974,'trends_uint','itemid',36424),(14975,'events','itemid',36425),(14976,'history','itemid',36425),(14977,'history_log','itemid',36425),(14978,'history_str','itemid',36425),(14979,'history_text','itemid',36425),(14980,'history_uint','itemid',36425),(14981,'trends','itemid',36425),(14982,'trends_uint','itemid',36425),(14983,'events','itemid',36429),(14984,'history','itemid',36429),(14985,'history_log','itemid',36429),(14986,'history_str','itemid',36429),(14987,'history_text','itemid',36429),(14988,'history_uint','itemid',36429),(14989,'trends','itemid',36429),(14990,'trends_uint','itemid',36429),(14991,'events','itemid',36426),(14992,'history','itemid',36426),(14993,'history_log','itemid',36426),(14994,'history_str','itemid',36426),(14995,'history_text','itemid',36426),(14996,'history_uint','itemid',36426),(14997,'trends','itemid',36426),(14998,'trends_uint','itemid',36426),(14999,'events','itemid',36427),(15000,'history','itemid',36427),(15001,'history_log','itemid',36427),(15002,'history_str','itemid',36427),(15003,'history_text','itemid',36427),(15004,'history_uint','itemid',36427),(15005,'trends','itemid',36427),(15006,'trends_uint','itemid',36427),(15007,'events','itemid',36428),(15008,'history','itemid',36428),(15009,'history_log','itemid',36428),(15010,'history_str','itemid',36428),(15011,'history_text','itemid',36428),(15012,'history_uint','itemid',36428),(15013,'trends','itemid',36428),(15014,'trends_uint','itemid',36428),(15015,'events','itemid',36430),(15016,'history','itemid',36430),(15017,'history_log','itemid',36430),(15018,'history_str','itemid',36430),(15019,'history_text','itemid',36430),(15020,'history_uint','itemid',36430),(15021,'trends','itemid',36430),(15022,'trends_uint','itemid',36430),(15023,'events','itemid',36431),(15024,'history','itemid',36431),(15025,'history_log','itemid',36431),(15026,'history_str','itemid',36431),(15027,'history_text','itemid',36431),(15028,'history_uint','itemid',36431),(15029,'trends','itemid',36431),(15030,'trends_uint','itemid',36431),(15031,'events','itemid',36461),(15032,'history','itemid',36461),(15033,'history_log','itemid',36461),(15034,'history_str','itemid',36461),(15035,'history_text','itemid',36461),(15036,'history_uint','itemid',36461),(15037,'trends','itemid',36461),(15038,'trends_uint','itemid',36461),(15039,'events','itemid',36462),(15040,'history','itemid',36462),(15041,'history_log','itemid',36462),(15042,'history_str','itemid',36462),(15043,'history_text','itemid',36462),(15044,'history_uint','itemid',36462),(15045,'trends','itemid',36462),(15046,'trends_uint','itemid',36462),(15047,'events','itemid',36463),(15048,'history','itemid',36463),(15049,'history_log','itemid',36463),(15050,'history_str','itemid',36463),(15051,'history_text','itemid',36463),(15052,'history_uint','itemid',36463),(15053,'trends','itemid',36463),(15054,'trends_uint','itemid',36463),(15055,'events','itemid',36464),(15056,'history','itemid',36464),(15057,'history_log','itemid',36464),(15058,'history_str','itemid',36464),(15059,'history_text','itemid',36464),(15060,'history_uint','itemid',36464),(15061,'trends','itemid',36464),(15062,'trends_uint','itemid',36464),(15063,'events','itemid',36459),(15064,'history','itemid',36459),(15065,'history_log','itemid',36459),(15066,'history_str','itemid',36459),(15067,'history_text','itemid',36459),(15068,'history_uint','itemid',36459),(15069,'trends','itemid',36459),(15070,'trends_uint','itemid',36459),(15071,'events','itemid',36460),(15072,'history','itemid',36460),(15073,'history_log','itemid',36460),(15074,'history_str','itemid',36460),(15075,'history_text','itemid',36460),(15076,'history_uint','itemid',36460),(15077,'trends','itemid',36460),(15078,'trends_uint','itemid',36460),(15079,'events','itemid',36501),(15080,'history','itemid',36501),(15081,'history_log','itemid',36501),(15082,'history_str','itemid',36501),(15083,'history_text','itemid',36501),(15084,'history_uint','itemid',36501),(15085,'trends','itemid',36501),(15086,'trends_uint','itemid',36501),(15087,'events','itemid',36502),(15088,'history','itemid',36502),(15089,'history_log','itemid',36502),(15090,'history_str','itemid',36502),(15091,'history_text','itemid',36502),(15092,'history_uint','itemid',36502),(15093,'trends','itemid',36502),(15094,'trends_uint','itemid',36502),(15095,'events','itemid',36503),(15096,'history','itemid',36503),(15097,'history_log','itemid',36503),(15098,'history_str','itemid',36503),(15099,'history_text','itemid',36503),(15100,'history_uint','itemid',36503),(15101,'trends','itemid',36503),(15102,'trends_uint','itemid',36503),(15103,'events','itemid',36504),(15104,'history','itemid',36504),(15105,'history_log','itemid',36504),(15106,'history_str','itemid',36504),(15107,'history_text','itemid',36504),(15108,'history_uint','itemid',36504),(15109,'trends','itemid',36504),(15110,'trends_uint','itemid',36504),(15111,'events','itemid',36505),(15112,'history','itemid',36505),(15113,'history_log','itemid',36505),(15114,'history_str','itemid',36505),(15115,'history_text','itemid',36505),(15116,'history_uint','itemid',36505),(15117,'trends','itemid',36505),(15118,'trends_uint','itemid',36505),(15119,'events','itemid',43894),(15120,'history','itemid',43894),(15121,'history_log','itemid',43894),(15122,'history_str','itemid',43894),(15123,'history_text','itemid',43894),(15124,'history_uint','itemid',43894),(15125,'trends','itemid',43894),(15126,'trends_uint','itemid',43894),(15127,'events','itemid',36506),(15128,'history','itemid',36506),(15129,'history_log','itemid',36506),(15130,'history_str','itemid',36506),(15131,'history_text','itemid',36506),(15132,'history_uint','itemid',36506),(15133,'trends','itemid',36506),(15134,'trends_uint','itemid',36506),(15135,'events','itemid',36507),(15136,'history','itemid',36507),(15137,'history_log','itemid',36507),(15138,'history_str','itemid',36507),(15139,'history_text','itemid',36507),(15140,'history_uint','itemid',36507),(15141,'trends','itemid',36507),(15142,'trends_uint','itemid',36507),(15143,'events','itemid',36511),(15144,'history','itemid',36511),(15145,'history_log','itemid',36511),(15146,'history_str','itemid',36511),(15147,'history_text','itemid',36511),(15148,'history_uint','itemid',36511),(15149,'trends','itemid',36511),(15150,'trends_uint','itemid',36511),(15151,'events','itemid',36508),(15152,'history','itemid',36508),(15153,'history_log','itemid',36508),(15154,'history_str','itemid',36508),(15155,'history_text','itemid',36508),(15156,'history_uint','itemid',36508),(15157,'trends','itemid',36508),(15158,'trends_uint','itemid',36508),(15159,'events','itemid',36509),(15160,'history','itemid',36509),(15161,'history_log','itemid',36509),(15162,'history_str','itemid',36509),(15163,'history_text','itemid',36509),(15164,'history_uint','itemid',36509),(15165,'trends','itemid',36509),(15166,'trends_uint','itemid',36509),(15167,'events','itemid',36510),(15168,'history','itemid',36510),(15169,'history_log','itemid',36510),(15170,'history_str','itemid',36510),(15171,'history_text','itemid',36510),(15172,'history_uint','itemid',36510),(15173,'trends','itemid',36510),(15174,'trends_uint','itemid',36510),(15175,'events','itemid',36512),(15176,'history','itemid',36512),(15177,'history_log','itemid',36512),(15178,'history_str','itemid',36512),(15179,'history_text','itemid',36512),(15180,'history_uint','itemid',36512),(15181,'trends','itemid',36512),(15182,'trends_uint','itemid',36512),(15183,'events','itemid',36513),(15184,'history','itemid',36513),(15185,'history_log','itemid',36513),(15186,'history_str','itemid',36513),(15187,'history_text','itemid',36513),(15188,'history_uint','itemid',36513),(15189,'trends','itemid',36513),(15190,'trends_uint','itemid',36513),(15191,'events','itemid',42959),(15192,'history','itemid',42959),(15193,'history_log','itemid',42959),(15194,'history_str','itemid',42959),(15195,'history_text','itemid',42959),(15196,'history_uint','itemid',42959),(15197,'trends','itemid',42959),(15198,'trends_uint','itemid',42959),(15199,'events','itemid',42973),(15200,'history','itemid',42973),(15201,'history_log','itemid',42973),(15202,'history_str','itemid',42973),(15203,'history_text','itemid',42973),(15204,'history_uint','itemid',42973),(15205,'trends','itemid',42973),(15206,'trends_uint','itemid',42973),(15207,'events','itemid',42962),(15208,'history','itemid',42962),(15209,'history_log','itemid',42962),(15210,'history_str','itemid',42962),(15211,'history_text','itemid',42962),(15212,'history_uint','itemid',42962),(15213,'trends','itemid',42962),(15214,'trends_uint','itemid',42962),(15215,'events','itemid',42963),(15216,'history','itemid',42963),(15217,'history_log','itemid',42963),(15218,'history_str','itemid',42963),(15219,'history_text','itemid',42963),(15220,'history_uint','itemid',42963),(15221,'trends','itemid',42963),(15222,'trends_uint','itemid',42963),(15223,'events','itemid',42964),(15224,'history','itemid',42964),(15225,'history_log','itemid',42964),(15226,'history_str','itemid',42964),(15227,'history_text','itemid',42964),(15228,'history_uint','itemid',42964),(15229,'trends','itemid',42964),(15230,'trends_uint','itemid',42964),(15231,'events','itemid',42965),(15232,'history','itemid',42965),(15233,'history_log','itemid',42965),(15234,'history_str','itemid',42965),(15235,'history_text','itemid',42965),(15236,'history_uint','itemid',42965),(15237,'trends','itemid',42965),(15238,'trends_uint','itemid',42965),(15239,'events','itemid',42966),(15240,'history','itemid',42966),(15241,'history_log','itemid',42966),(15242,'history_str','itemid',42966),(15243,'history_text','itemid',42966),(15244,'history_uint','itemid',42966),(15245,'trends','itemid',42966),(15246,'trends_uint','itemid',42966),(15247,'events','itemid',42967),(15248,'history','itemid',42967),(15249,'history_log','itemid',42967),(15250,'history_str','itemid',42967),(15251,'history_text','itemid',42967),(15252,'history_uint','itemid',42967),(15253,'trends','itemid',42967),(15254,'trends_uint','itemid',42967),(15255,'events','itemid',42968),(15256,'history','itemid',42968),(15257,'history_log','itemid',42968),(15258,'history_str','itemid',42968),(15259,'history_text','itemid',42968),(15260,'history_uint','itemid',42968),(15261,'trends','itemid',42968),(15262,'trends_uint','itemid',42968),(15263,'events','itemid',42969),(15264,'history','itemid',42969),(15265,'history_log','itemid',42969),(15266,'history_str','itemid',42969),(15267,'history_text','itemid',42969),(15268,'history_uint','itemid',42969),(15269,'trends','itemid',42969),(15270,'trends_uint','itemid',42969),(15271,'events','itemid',42970),(15272,'history','itemid',42970),(15273,'history_log','itemid',42970),(15274,'history_str','itemid',42970),(15275,'history_text','itemid',42970),(15276,'history_uint','itemid',42970),(15277,'trends','itemid',42970),(15278,'trends_uint','itemid',42970),(15279,'events','itemid',42971),(15280,'history','itemid',42971),(15281,'history_log','itemid',42971),(15282,'history_str','itemid',42971),(15283,'history_text','itemid',42971),(15284,'history_uint','itemid',42971),(15285,'trends','itemid',42971),(15286,'trends_uint','itemid',42971),(15287,'events','itemid',42961),(15288,'history','itemid',42961),(15289,'history_log','itemid',42961),(15290,'history_str','itemid',42961),(15291,'history_text','itemid',42961),(15292,'history_uint','itemid',42961),(15293,'trends','itemid',42961),(15294,'trends_uint','itemid',42961),(15295,'events','itemid',42972),(15296,'history','itemid',42972),(15297,'history_log','itemid',42972),(15298,'history_str','itemid',42972),(15299,'history_text','itemid',42972),(15300,'history_uint','itemid',42972),(15301,'trends','itemid',42972),(15302,'trends_uint','itemid',42972),(15303,'events','itemid',42974),(15304,'history','itemid',42974),(15305,'history_log','itemid',42974),(15306,'history_str','itemid',42974),(15307,'history_text','itemid',42974),(15308,'history_uint','itemid',42974),(15309,'trends','itemid',42974),(15310,'trends_uint','itemid',42974),(15311,'events','itemid',42931),(15312,'history','itemid',42931),(15313,'history_log','itemid',42931),(15314,'history_str','itemid',42931),(15315,'history_text','itemid',42931),(15316,'history_uint','itemid',42931),(15317,'trends','itemid',42931),(15318,'trends_uint','itemid',42931),(15319,'events','itemid',42933),(15320,'history','itemid',42933),(15321,'history_log','itemid',42933),(15322,'history_str','itemid',42933),(15323,'history_text','itemid',42933),(15324,'history_uint','itemid',42933),(15325,'trends','itemid',42933),(15326,'trends_uint','itemid',42933),(15327,'events','itemid',42932),(15328,'history','itemid',42932),(15329,'history_log','itemid',42932),(15330,'history_str','itemid',42932),(15331,'history_text','itemid',42932),(15332,'history_uint','itemid',42932),(15333,'trends','itemid',42932),(15334,'trends_uint','itemid',42932),(15335,'events','itemid',42975),(15336,'history','itemid',42975),(15337,'history_log','itemid',42975),(15338,'history_str','itemid',42975),(15339,'history_text','itemid',42975),(15340,'history_uint','itemid',42975),(15341,'trends','itemid',42975),(15342,'trends_uint','itemid',42975),(15343,'events','itemid',42976),(15344,'history','itemid',42976),(15345,'history_log','itemid',42976),(15346,'history_str','itemid',42976),(15347,'history_text','itemid',42976),(15348,'history_uint','itemid',42976),(15349,'trends','itemid',42976),(15350,'trends_uint','itemid',42976),(15351,'events','itemid',42977),(15352,'history','itemid',42977),(15353,'history_log','itemid',42977),(15354,'history_str','itemid',42977),(15355,'history_text','itemid',42977),(15356,'history_uint','itemid',42977),(15357,'trends','itemid',42977),(15358,'trends_uint','itemid',42977),(15359,'events','itemid',42978),(15360,'history','itemid',42978),(15361,'history_log','itemid',42978),(15362,'history_str','itemid',42978),(15363,'history_text','itemid',42978),(15364,'history_uint','itemid',42978),(15365,'trends','itemid',42978),(15366,'trends_uint','itemid',42978),(15367,'events','itemid',42979),(15368,'history','itemid',42979),(15369,'history_log','itemid',42979),(15370,'history_str','itemid',42979),(15371,'history_text','itemid',42979),(15372,'history_uint','itemid',42979),(15373,'trends','itemid',42979),(15374,'trends_uint','itemid',42979),(15375,'events','itemid',42980),(15376,'history','itemid',42980),(15377,'history_log','itemid',42980),(15378,'history_str','itemid',42980),(15379,'history_text','itemid',42980),(15380,'history_uint','itemid',42980),(15381,'trends','itemid',42980),(15382,'trends_uint','itemid',42980),(15383,'events','itemid',42981),(15384,'history','itemid',42981),(15385,'history_log','itemid',42981),(15386,'history_str','itemid',42981),(15387,'history_text','itemid',42981),(15388,'history_uint','itemid',42981),(15389,'trends','itemid',42981),(15390,'trends_uint','itemid',42981),(15391,'events','itemid',42982),(15392,'history','itemid',42982),(15393,'history_log','itemid',42982),(15394,'history_str','itemid',42982),(15395,'history_text','itemid',42982),(15396,'history_uint','itemid',42982),(15397,'trends','itemid',42982),(15398,'trends_uint','itemid',42982),(15399,'events','itemid',42983),(15400,'history','itemid',42983),(15401,'history_log','itemid',42983),(15402,'history_str','itemid',42983),(15403,'history_text','itemid',42983),(15404,'history_uint','itemid',42983),(15405,'trends','itemid',42983),(15406,'trends_uint','itemid',42983),(15407,'events','itemid',42984),(15408,'history','itemid',42984),(15409,'history_log','itemid',42984),(15410,'history_str','itemid',42984),(15411,'history_text','itemid',42984),(15412,'history_uint','itemid',42984),(15413,'trends','itemid',42984),(15414,'trends_uint','itemid',42984),(15415,'events','itemid',42985),(15416,'history','itemid',42985),(15417,'history_log','itemid',42985),(15418,'history_str','itemid',42985),(15419,'history_text','itemid',42985),(15420,'history_uint','itemid',42985),(15421,'trends','itemid',42985),(15422,'trends_uint','itemid',42985),(15423,'events','itemid',42960),(15424,'history','itemid',42960),(15425,'history_log','itemid',42960),(15426,'history_str','itemid',42960),(15427,'history_text','itemid',42960),(15428,'history_uint','itemid',42960),(15429,'trends','itemid',42960),(15430,'trends_uint','itemid',42960),(15431,'events','itemid',42945),(15432,'history','itemid',42945),(15433,'history_log','itemid',42945),(15434,'history_str','itemid',42945),(15435,'history_text','itemid',42945),(15436,'history_uint','itemid',42945),(15437,'trends','itemid',42945),(15438,'trends_uint','itemid',42945),(15439,'events','itemid',42958),(15440,'history','itemid',42958),(15441,'history_log','itemid',42958),(15442,'history_str','itemid',42958),(15443,'history_text','itemid',42958),(15444,'history_uint','itemid',42958),(15445,'trends','itemid',42958),(15446,'trends_uint','itemid',42958),(15447,'events','itemid',42934),(15448,'history','itemid',42934),(15449,'history_log','itemid',42934),(15450,'history_str','itemid',42934),(15451,'history_text','itemid',42934),(15452,'history_uint','itemid',42934),(15453,'trends','itemid',42934),(15454,'trends_uint','itemid',42934),(15455,'events','itemid',42935),(15456,'history','itemid',42935),(15457,'history_log','itemid',42935),(15458,'history_str','itemid',42935),(15459,'history_text','itemid',42935),(15460,'history_uint','itemid',42935),(15461,'trends','itemid',42935),(15462,'trends_uint','itemid',42935),(15463,'events','itemid',42936),(15464,'history','itemid',42936),(15465,'history_log','itemid',42936),(15466,'history_str','itemid',42936),(15467,'history_text','itemid',42936),(15468,'history_uint','itemid',42936),(15469,'trends','itemid',42936),(15470,'trends_uint','itemid',42936),(15471,'events','itemid',42937),(15472,'history','itemid',42937),(15473,'history_log','itemid',42937),(15474,'history_str','itemid',42937),(15475,'history_text','itemid',42937),(15476,'history_uint','itemid',42937),(15477,'trends','itemid',42937),(15478,'trends_uint','itemid',42937),(15479,'events','itemid',42938),(15480,'history','itemid',42938),(15481,'history_log','itemid',42938),(15482,'history_str','itemid',42938),(15483,'history_text','itemid',42938),(15484,'history_uint','itemid',42938),(15485,'trends','itemid',42938),(15486,'trends_uint','itemid',42938),(15487,'events','itemid',42939),(15488,'history','itemid',42939),(15489,'history_log','itemid',42939),(15490,'history_str','itemid',42939),(15491,'history_text','itemid',42939),(15492,'history_uint','itemid',42939),(15493,'trends','itemid',42939),(15494,'trends_uint','itemid',42939),(15495,'events','itemid',42940),(15496,'history','itemid',42940),(15497,'history_log','itemid',42940),(15498,'history_str','itemid',42940),(15499,'history_text','itemid',42940),(15500,'history_uint','itemid',42940),(15501,'trends','itemid',42940),(15502,'trends_uint','itemid',42940),(15503,'events','itemid',42941),(15504,'history','itemid',42941),(15505,'history_log','itemid',42941),(15506,'history_str','itemid',42941),(15507,'history_text','itemid',42941),(15508,'history_uint','itemid',42941),(15509,'trends','itemid',42941),(15510,'trends_uint','itemid',42941),(15511,'events','itemid',42942),(15512,'history','itemid',42942),(15513,'history_log','itemid',42942),(15514,'history_str','itemid',42942),(15515,'history_text','itemid',42942),(15516,'history_uint','itemid',42942),(15517,'trends','itemid',42942),(15518,'trends_uint','itemid',42942),(15519,'events','itemid',42943),(15520,'history','itemid',42943),(15521,'history_log','itemid',42943),(15522,'history_str','itemid',42943),(15523,'history_text','itemid',42943),(15524,'history_uint','itemid',42943),(15525,'trends','itemid',42943),(15526,'trends_uint','itemid',42943),(15527,'events','itemid',42944),(15528,'history','itemid',42944),(15529,'history_log','itemid',42944),(15530,'history_str','itemid',42944),(15531,'history_text','itemid',42944),(15532,'history_uint','itemid',42944),(15533,'trends','itemid',42944),(15534,'trends_uint','itemid',42944),(15535,'events','itemid',42946),(15536,'history','itemid',42946),(15537,'history_log','itemid',42946),(15538,'history_str','itemid',42946),(15539,'history_text','itemid',42946),(15540,'history_uint','itemid',42946),(15541,'trends','itemid',42946),(15542,'trends_uint','itemid',42946),(15543,'events','itemid',42947),(15544,'history','itemid',42947),(15545,'history_log','itemid',42947),(15546,'history_str','itemid',42947),(15547,'history_text','itemid',42947),(15548,'history_uint','itemid',42947),(15549,'trends','itemid',42947),(15550,'trends_uint','itemid',42947),(15551,'events','itemid',42948),(15552,'history','itemid',42948),(15553,'history_log','itemid',42948),(15554,'history_str','itemid',42948),(15555,'history_text','itemid',42948),(15556,'history_uint','itemid',42948),(15557,'trends','itemid',42948),(15558,'trends_uint','itemid',42948),(15559,'events','itemid',42949),(15560,'history','itemid',42949),(15561,'history_log','itemid',42949),(15562,'history_str','itemid',42949),(15563,'history_text','itemid',42949),(15564,'history_uint','itemid',42949),(15565,'trends','itemid',42949),(15566,'trends_uint','itemid',42949),(15567,'events','itemid',42950),(15568,'history','itemid',42950),(15569,'history_log','itemid',42950),(15570,'history_str','itemid',42950),(15571,'history_text','itemid',42950),(15572,'history_uint','itemid',42950),(15573,'trends','itemid',42950),(15574,'trends_uint','itemid',42950),(15575,'events','itemid',42951),(15576,'history','itemid',42951),(15577,'history_log','itemid',42951),(15578,'history_str','itemid',42951),(15579,'history_text','itemid',42951),(15580,'history_uint','itemid',42951),(15581,'trends','itemid',42951),(15582,'trends_uint','itemid',42951),(15583,'events','itemid',42952),(15584,'history','itemid',42952),(15585,'history_log','itemid',42952),(15586,'history_str','itemid',42952),(15587,'history_text','itemid',42952),(15588,'history_uint','itemid',42952),(15589,'trends','itemid',42952),(15590,'trends_uint','itemid',42952),(15591,'events','itemid',42953),(15592,'history','itemid',42953),(15593,'history_log','itemid',42953),(15594,'history_str','itemid',42953),(15595,'history_text','itemid',42953),(15596,'history_uint','itemid',42953),(15597,'trends','itemid',42953),(15598,'trends_uint','itemid',42953),(15599,'events','itemid',42954),(15600,'history','itemid',42954),(15601,'history_log','itemid',42954),(15602,'history_str','itemid',42954),(15603,'history_text','itemid',42954),(15604,'history_uint','itemid',42954),(15605,'trends','itemid',42954),(15606,'trends_uint','itemid',42954),(15607,'events','itemid',42955),(15608,'history','itemid',42955),(15609,'history_log','itemid',42955),(15610,'history_str','itemid',42955),(15611,'history_text','itemid',42955),(15612,'history_uint','itemid',42955),(15613,'trends','itemid',42955),(15614,'trends_uint','itemid',42955),(15615,'events','itemid',42956),(15616,'history','itemid',42956),(15617,'history_log','itemid',42956),(15618,'history_str','itemid',42956),(15619,'history_text','itemid',42956),(15620,'history_uint','itemid',42956),(15621,'trends','itemid',42956),(15622,'trends_uint','itemid',42956),(15623,'events','itemid',42957),(15624,'history','itemid',42957),(15625,'history_log','itemid',42957),(15626,'history_str','itemid',42957),(15627,'history_text','itemid',42957),(15628,'history_uint','itemid',42957),(15629,'trends','itemid',42957),(15630,'trends_uint','itemid',42957),(15631,'events','itemid',42930),(15632,'history','itemid',42930),(15633,'history_log','itemid',42930),(15634,'history_str','itemid',42930),(15635,'history_text','itemid',42930),(15636,'history_uint','itemid',42930),(15637,'trends','itemid',42930),(15638,'trends_uint','itemid',42930),(15639,'events','itemid',43019),(15640,'history','itemid',43019),(15641,'history_log','itemid',43019),(15642,'history_str','itemid',43019),(15643,'history_text','itemid',43019),(15644,'history_uint','itemid',43019),(15645,'trends','itemid',43019),(15646,'trends_uint','itemid',43019),(15647,'events','itemid',43034),(15648,'history','itemid',43034),(15649,'history_log','itemid',43034),(15650,'history_str','itemid',43034),(15651,'history_text','itemid',43034),(15652,'history_uint','itemid',43034),(15653,'trends','itemid',43034),(15654,'trends_uint','itemid',43034),(15655,'events','itemid',43045),(15656,'history','itemid',43045),(15657,'history_log','itemid',43045),(15658,'history_str','itemid',43045),(15659,'history_text','itemid',43045),(15660,'history_uint','itemid',43045),(15661,'trends','itemid',43045),(15662,'trends_uint','itemid',43045),(15663,'events','itemid',43044),(15664,'history','itemid',43044),(15665,'history_log','itemid',43044),(15666,'history_str','itemid',43044),(15667,'history_text','itemid',43044),(15668,'history_uint','itemid',43044),(15669,'trends','itemid',43044),(15670,'trends_uint','itemid',43044),(15671,'events','itemid',43043),(15672,'history','itemid',43043),(15673,'history_log','itemid',43043),(15674,'history_str','itemid',43043),(15675,'history_text','itemid',43043),(15676,'history_uint','itemid',43043),(15677,'trends','itemid',43043),(15678,'trends_uint','itemid',43043),(15679,'events','itemid',43042),(15680,'history','itemid',43042),(15681,'history_log','itemid',43042),(15682,'history_str','itemid',43042),(15683,'history_text','itemid',43042),(15684,'history_uint','itemid',43042),(15685,'trends','itemid',43042),(15686,'trends_uint','itemid',43042),(15687,'events','itemid',43041),(15688,'history','itemid',43041),(15689,'history_log','itemid',43041),(15690,'history_str','itemid',43041),(15691,'history_text','itemid',43041),(15692,'history_uint','itemid',43041),(15693,'trends','itemid',43041),(15694,'trends_uint','itemid',43041),(15695,'events','itemid',43040),(15696,'history','itemid',43040),(15697,'history_log','itemid',43040),(15698,'history_str','itemid',43040),(15699,'history_text','itemid',43040),(15700,'history_uint','itemid',43040),(15701,'trends','itemid',43040),(15702,'trends_uint','itemid',43040),(15703,'events','itemid',43039),(15704,'history','itemid',43039),(15705,'history_log','itemid',43039),(15706,'history_str','itemid',43039),(15707,'history_text','itemid',43039),(15708,'history_uint','itemid',43039),(15709,'trends','itemid',43039),(15710,'trends_uint','itemid',43039),(15711,'events','itemid',43038),(15712,'history','itemid',43038),(15713,'history_log','itemid',43038),(15714,'history_str','itemid',43038),(15715,'history_text','itemid',43038),(15716,'history_uint','itemid',43038),(15717,'trends','itemid',43038),(15718,'trends_uint','itemid',43038),(15719,'events','itemid',43018),(15720,'history','itemid',43018),(15721,'history_log','itemid',43018),(15722,'history_str','itemid',43018),(15723,'history_text','itemid',43018),(15724,'history_uint','itemid',43018),(15725,'trends','itemid',43018),(15726,'trends_uint','itemid',43018),(15727,'events','itemid',43037),(15728,'history','itemid',43037),(15729,'history_log','itemid',43037),(15730,'history_str','itemid',43037),(15731,'history_text','itemid',43037),(15732,'history_uint','itemid',43037),(15733,'trends','itemid',43037),(15734,'trends_uint','itemid',43037),(15735,'events','itemid',43036),(15736,'history','itemid',43036),(15737,'history_log','itemid',43036),(15738,'history_str','itemid',43036),(15739,'history_text','itemid',43036),(15740,'history_uint','itemid',43036),(15741,'trends','itemid',43036),(15742,'trends_uint','itemid',43036),(15743,'events','itemid',43035),(15744,'history','itemid',43035),(15745,'history_log','itemid',43035),(15746,'history_str','itemid',43035),(15747,'history_text','itemid',43035),(15748,'history_uint','itemid',43035),(15749,'trends','itemid',43035),(15750,'trends_uint','itemid',43035),(15751,'events','itemid',43032),(15752,'history','itemid',43032),(15753,'history_log','itemid',43032),(15754,'history_str','itemid',43032),(15755,'history_text','itemid',43032),(15756,'history_uint','itemid',43032),(15757,'trends','itemid',43032),(15758,'trends_uint','itemid',43032),(15759,'events','itemid',43033),(15760,'history','itemid',43033),(15761,'history_log','itemid',43033),(15762,'history_str','itemid',43033),(15763,'history_text','itemid',43033),(15764,'history_uint','itemid',43033),(15765,'trends','itemid',43033),(15766,'trends_uint','itemid',43033),(15767,'events','itemid',43020),(15768,'history','itemid',43020),(15769,'history_log','itemid',43020),(15770,'history_str','itemid',43020),(15771,'history_text','itemid',43020),(15772,'history_uint','itemid',43020),(15773,'trends','itemid',43020),(15774,'trends_uint','itemid',43020),(15775,'events','itemid',43031),(15776,'history','itemid',43031),(15777,'history_log','itemid',43031),(15778,'history_str','itemid',43031),(15779,'history_text','itemid',43031),(15780,'history_uint','itemid',43031),(15781,'trends','itemid',43031),(15782,'trends_uint','itemid',43031),(15783,'events','itemid',43030),(15784,'history','itemid',43030),(15785,'history_log','itemid',43030),(15786,'history_str','itemid',43030),(15787,'history_text','itemid',43030),(15788,'history_uint','itemid',43030),(15789,'trends','itemid',43030),(15790,'trends_uint','itemid',43030),(15791,'events','itemid',43029),(15792,'history','itemid',43029),(15793,'history_log','itemid',43029),(15794,'history_str','itemid',43029),(15795,'history_text','itemid',43029),(15796,'history_uint','itemid',43029),(15797,'trends','itemid',43029),(15798,'trends_uint','itemid',43029),(15799,'events','itemid',43028),(15800,'history','itemid',43028),(15801,'history_log','itemid',43028),(15802,'history_str','itemid',43028),(15803,'history_text','itemid',43028),(15804,'history_uint','itemid',43028),(15805,'trends','itemid',43028),(15806,'trends_uint','itemid',43028),(15807,'events','itemid',43027),(15808,'history','itemid',43027),(15809,'history_log','itemid',43027),(15810,'history_str','itemid',43027),(15811,'history_text','itemid',43027),(15812,'history_uint','itemid',43027),(15813,'trends','itemid',43027),(15814,'trends_uint','itemid',43027),(15815,'events','itemid',43026),(15816,'history','itemid',43026),(15817,'history_log','itemid',43026),(15818,'history_str','itemid',43026),(15819,'history_text','itemid',43026),(15820,'history_uint','itemid',43026),(15821,'trends','itemid',43026),(15822,'trends_uint','itemid',43026),(15823,'events','itemid',43025),(15824,'history','itemid',43025),(15825,'history_log','itemid',43025),(15826,'history_str','itemid',43025),(15827,'history_text','itemid',43025),(15828,'history_uint','itemid',43025),(15829,'trends','itemid',43025),(15830,'trends_uint','itemid',43025),(15831,'events','itemid',43024),(15832,'history','itemid',43024),(15833,'history_log','itemid',43024),(15834,'history_str','itemid',43024),(15835,'history_text','itemid',43024),(15836,'history_uint','itemid',43024),(15837,'trends','itemid',43024),(15838,'trends_uint','itemid',43024),(15839,'events','itemid',43023),(15840,'history','itemid',43023),(15841,'history_log','itemid',43023),(15842,'history_str','itemid',43023),(15843,'history_text','itemid',43023),(15844,'history_uint','itemid',43023),(15845,'trends','itemid',43023),(15846,'trends_uint','itemid',43023),(15847,'events','itemid',43022),(15848,'history','itemid',43022),(15849,'history_log','itemid',43022),(15850,'history_str','itemid',43022),(15851,'history_text','itemid',43022),(15852,'history_uint','itemid',43022),(15853,'trends','itemid',43022),(15854,'trends_uint','itemid',43022),(15855,'events','itemid',43021),(15856,'history','itemid',43021),(15857,'history_log','itemid',43021),(15858,'history_str','itemid',43021),(15859,'history_text','itemid',43021),(15860,'history_uint','itemid',43021),(15861,'trends','itemid',43021),(15862,'trends_uint','itemid',43021),(15863,'events','itemid',43046),(15864,'history','itemid',43046),(15865,'history_log','itemid',43046),(15866,'history_str','itemid',43046),(15867,'history_text','itemid',43046),(15868,'history_uint','itemid',43046),(15869,'trends','itemid',43046),(15870,'trends_uint','itemid',43046),(15871,'events','itemid',43095),(15872,'history','itemid',43095),(15873,'history_log','itemid',43095),(15874,'history_str','itemid',43095),(15875,'history_text','itemid',43095),(15876,'history_uint','itemid',43095),(15877,'trends','itemid',43095),(15878,'trends_uint','itemid',43095),(15879,'events','itemid',43121),(15880,'history','itemid',43121),(15881,'history_log','itemid',43121),(15882,'history_str','itemid',43121),(15883,'history_text','itemid',43121),(15884,'history_uint','itemid',43121),(15885,'trends','itemid',43121),(15886,'trends_uint','itemid',43121),(15887,'events','itemid',43111),(15888,'history','itemid',43111),(15889,'history_log','itemid',43111),(15890,'history_str','itemid',43111),(15891,'history_text','itemid',43111),(15892,'history_uint','itemid',43111),(15893,'trends','itemid',43111),(15894,'trends_uint','itemid',43111),(15895,'events','itemid',43113),(15896,'history','itemid',43113),(15897,'history_log','itemid',43113),(15898,'history_str','itemid',43113),(15899,'history_text','itemid',43113),(15900,'history_uint','itemid',43113),(15901,'trends','itemid',43113),(15902,'trends_uint','itemid',43113),(15903,'events','itemid',43112),(15904,'history','itemid',43112),(15905,'history_log','itemid',43112),(15906,'history_str','itemid',43112),(15907,'history_text','itemid',43112),(15908,'history_uint','itemid',43112),(15909,'trends','itemid',43112),(15910,'trends_uint','itemid',43112),(15911,'events','itemid',43114),(15912,'history','itemid',43114),(15913,'history_log','itemid',43114),(15914,'history_str','itemid',43114),(15915,'history_text','itemid',43114),(15916,'history_uint','itemid',43114),(15917,'trends','itemid',43114),(15918,'trends_uint','itemid',43114),(15919,'events','itemid',43115),(15920,'history','itemid',43115),(15921,'history_log','itemid',43115),(15922,'history_str','itemid',43115),(15923,'history_text','itemid',43115),(15924,'history_uint','itemid',43115),(15925,'trends','itemid',43115),(15926,'trends_uint','itemid',43115),(15927,'events','itemid',43116),(15928,'history','itemid',43116),(15929,'history_log','itemid',43116),(15930,'history_str','itemid',43116),(15931,'history_text','itemid',43116),(15932,'history_uint','itemid',43116),(15933,'trends','itemid',43116),(15934,'trends_uint','itemid',43116),(15935,'events','itemid',43117),(15936,'history','itemid',43117),(15937,'history_log','itemid',43117),(15938,'history_str','itemid',43117),(15939,'history_text','itemid',43117),(15940,'history_uint','itemid',43117),(15941,'trends','itemid',43117),(15942,'trends_uint','itemid',43117),(15943,'events','itemid',43118),(15944,'history','itemid',43118),(15945,'history_log','itemid',43118),(15946,'history_str','itemid',43118),(15947,'history_text','itemid',43118),(15948,'history_uint','itemid',43118),(15949,'trends','itemid',43118),(15950,'trends_uint','itemid',43118),(15951,'events','itemid',43081),(15952,'history','itemid',43081),(15953,'history_log','itemid',43081),(15954,'history_str','itemid',43081),(15955,'history_text','itemid',43081),(15956,'history_uint','itemid',43081),(15957,'trends','itemid',43081),(15958,'trends_uint','itemid',43081),(15959,'events','itemid',43119),(15960,'history','itemid',43119),(15961,'history_log','itemid',43119),(15962,'history_str','itemid',43119),(15963,'history_text','itemid',43119),(15964,'history_uint','itemid',43119),(15965,'trends','itemid',43119),(15966,'trends_uint','itemid',43119),(15967,'events','itemid',43083),(15968,'history','itemid',43083),(15969,'history_log','itemid',43083),(15970,'history_str','itemid',43083),(15971,'history_text','itemid',43083),(15972,'history_uint','itemid',43083),(15973,'trends','itemid',43083),(15974,'trends_uint','itemid',43083),(15975,'events','itemid',43082),(15976,'history','itemid',43082),(15977,'history_log','itemid',43082),(15978,'history_str','itemid',43082),(15979,'history_text','itemid',43082),(15980,'history_uint','itemid',43082),(15981,'trends','itemid',43082),(15982,'trends_uint','itemid',43082),(15983,'events','itemid',43110),(15984,'history','itemid',43110),(15985,'history_log','itemid',43110),(15986,'history_str','itemid',43110),(15987,'history_text','itemid',43110),(15988,'history_uint','itemid',43110),(15989,'trends','itemid',43110),(15990,'trends_uint','itemid',43110),(15991,'events','itemid',43120),(15992,'history','itemid',43120),(15993,'history_log','itemid',43120),(15994,'history_str','itemid',43120),(15995,'history_text','itemid',43120),(15996,'history_uint','itemid',43120),(15997,'trends','itemid',43120),(15998,'trends_uint','itemid',43120),(15999,'events','itemid',43122),(16000,'history','itemid',43122),(16001,'history_log','itemid',43122),(16002,'history_str','itemid',43122),(16003,'history_text','itemid',43122),(16004,'history_uint','itemid',43122),(16005,'trends','itemid',43122),(16006,'trends_uint','itemid',43122),(16007,'events','itemid',43123),(16008,'history','itemid',43123),(16009,'history_log','itemid',43123),(16010,'history_str','itemid',43123),(16011,'history_text','itemid',43123),(16012,'history_uint','itemid',43123),(16013,'trends','itemid',43123),(16014,'trends_uint','itemid',43123),(16015,'events','itemid',43124),(16016,'history','itemid',43124),(16017,'history_log','itemid',43124),(16018,'history_str','itemid',43124),(16019,'history_text','itemid',43124),(16020,'history_uint','itemid',43124),(16021,'trends','itemid',43124),(16022,'trends_uint','itemid',43124),(16023,'events','itemid',43125),(16024,'history','itemid',43125),(16025,'history_log','itemid',43125),(16026,'history_str','itemid',43125),(16027,'history_text','itemid',43125),(16028,'history_uint','itemid',43125),(16029,'trends','itemid',43125),(16030,'trends_uint','itemid',43125),(16031,'events','itemid',43126),(16032,'history','itemid',43126),(16033,'history_log','itemid',43126),(16034,'history_str','itemid',43126),(16035,'history_text','itemid',43126),(16036,'history_uint','itemid',43126),(16037,'trends','itemid',43126),(16038,'trends_uint','itemid',43126),(16039,'events','itemid',43127),(16040,'history','itemid',43127),(16041,'history_log','itemid',43127),(16042,'history_str','itemid',43127),(16043,'history_text','itemid',43127),(16044,'history_uint','itemid',43127),(16045,'trends','itemid',43127),(16046,'trends_uint','itemid',43127),(16047,'events','itemid',43128),(16048,'history','itemid',43128),(16049,'history_log','itemid',43128),(16050,'history_str','itemid',43128),(16051,'history_text','itemid',43128),(16052,'history_uint','itemid',43128),(16053,'trends','itemid',43128),(16054,'trends_uint','itemid',43128),(16055,'events','itemid',43129),(16056,'history','itemid',43129),(16057,'history_log','itemid',43129),(16058,'history_str','itemid',43129),(16059,'history_text','itemid',43129),(16060,'history_uint','itemid',43129),(16061,'trends','itemid',43129),(16062,'trends_uint','itemid',43129),(16063,'events','itemid',43130),(16064,'history','itemid',43130),(16065,'history_log','itemid',43130),(16066,'history_str','itemid',43130),(16067,'history_text','itemid',43130),(16068,'history_uint','itemid',43130),(16069,'trends','itemid',43130),(16070,'trends_uint','itemid',43130),(16071,'events','itemid',43131),(16072,'history','itemid',43131),(16073,'history_log','itemid',43131),(16074,'history_str','itemid',43131),(16075,'history_text','itemid',43131),(16076,'history_uint','itemid',43131),(16077,'trends','itemid',43131),(16078,'trends_uint','itemid',43131),(16079,'events','itemid',43108),(16080,'history','itemid',43108),(16081,'history_log','itemid',43108),(16082,'history_str','itemid',43108),(16083,'history_text','itemid',43108),(16084,'history_uint','itemid',43108),(16085,'trends','itemid',43108),(16086,'trends_uint','itemid',43108),(16087,'events','itemid',43109),(16088,'history','itemid',43109),(16089,'history_log','itemid',43109),(16090,'history_str','itemid',43109),(16091,'history_text','itemid',43109),(16092,'history_uint','itemid',43109),(16093,'trends','itemid',43109),(16094,'trends_uint','itemid',43109),(16095,'events','itemid',43097),(16096,'history','itemid',43097),(16097,'history_log','itemid',43097),(16098,'history_str','itemid',43097),(16099,'history_text','itemid',43097),(16100,'history_uint','itemid',43097),(16101,'trends','itemid',43097),(16102,'trends_uint','itemid',43097),(16103,'events','itemid',43107),(16104,'history','itemid',43107),(16105,'history_log','itemid',43107),(16106,'history_str','itemid',43107),(16107,'history_text','itemid',43107),(16108,'history_uint','itemid',43107),(16109,'trends','itemid',43107),(16110,'trends_uint','itemid',43107),(16111,'events','itemid',43085),(16112,'history','itemid',43085),(16113,'history_log','itemid',43085),(16114,'history_str','itemid',43085),(16115,'history_text','itemid',43085),(16116,'history_uint','itemid',43085),(16117,'trends','itemid',43085),(16118,'trends_uint','itemid',43085),(16119,'events','itemid',43086),(16120,'history','itemid',43086),(16121,'history_log','itemid',43086),(16122,'history_str','itemid',43086),(16123,'history_text','itemid',43086),(16124,'history_uint','itemid',43086),(16125,'trends','itemid',43086),(16126,'trends_uint','itemid',43086),(16127,'events','itemid',43087),(16128,'history','itemid',43087),(16129,'history_log','itemid',43087),(16130,'history_str','itemid',43087),(16131,'history_text','itemid',43087),(16132,'history_uint','itemid',43087),(16133,'trends','itemid',43087),(16134,'trends_uint','itemid',43087),(16135,'events','itemid',43088),(16136,'history','itemid',43088),(16137,'history_log','itemid',43088),(16138,'history_str','itemid',43088),(16139,'history_text','itemid',43088),(16140,'history_uint','itemid',43088),(16141,'trends','itemid',43088),(16142,'trends_uint','itemid',43088),(16143,'events','itemid',43089),(16144,'history','itemid',43089),(16145,'history_log','itemid',43089),(16146,'history_str','itemid',43089),(16147,'history_text','itemid',43089),(16148,'history_uint','itemid',43089),(16149,'trends','itemid',43089),(16150,'trends_uint','itemid',43089),(16151,'events','itemid',43090),(16152,'history','itemid',43090),(16153,'history_log','itemid',43090),(16154,'history_str','itemid',43090),(16155,'history_text','itemid',43090),(16156,'history_uint','itemid',43090),(16157,'trends','itemid',43090),(16158,'trends_uint','itemid',43090),(16159,'events','itemid',43091),(16160,'history','itemid',43091),(16161,'history_log','itemid',43091),(16162,'history_str','itemid',43091),(16163,'history_text','itemid',43091),(16164,'history_uint','itemid',43091),(16165,'trends','itemid',43091),(16166,'trends_uint','itemid',43091),(16167,'events','itemid',43092),(16168,'history','itemid',43092),(16169,'history_log','itemid',43092),(16170,'history_str','itemid',43092),(16171,'history_text','itemid',43092),(16172,'history_uint','itemid',43092),(16173,'trends','itemid',43092),(16174,'trends_uint','itemid',43092),(16175,'events','itemid',43093),(16176,'history','itemid',43093),(16177,'history_log','itemid',43093),(16178,'history_str','itemid',43093),(16179,'history_text','itemid',43093),(16180,'history_uint','itemid',43093),(16181,'trends','itemid',43093),(16182,'trends_uint','itemid',43093),(16183,'events','itemid',43094),(16184,'history','itemid',43094),(16185,'history_log','itemid',43094),(16186,'history_str','itemid',43094),(16187,'history_text','itemid',43094),(16188,'history_uint','itemid',43094),(16189,'trends','itemid',43094),(16190,'trends_uint','itemid',43094),(16191,'events','itemid',43084),(16192,'history','itemid',43084),(16193,'history_log','itemid',43084),(16194,'history_str','itemid',43084),(16195,'history_text','itemid',43084),(16196,'history_uint','itemid',43084),(16197,'trends','itemid',43084),(16198,'trends_uint','itemid',43084),(16199,'events','itemid',43096),(16200,'history','itemid',43096),(16201,'history_log','itemid',43096),(16202,'history_str','itemid',43096),(16203,'history_text','itemid',43096),(16204,'history_uint','itemid',43096),(16205,'trends','itemid',43096),(16206,'trends_uint','itemid',43096),(16207,'events','itemid',43098),(16208,'history','itemid',43098),(16209,'history_log','itemid',43098),(16210,'history_str','itemid',43098),(16211,'history_text','itemid',43098),(16212,'history_uint','itemid',43098),(16213,'trends','itemid',43098),(16214,'trends_uint','itemid',43098),(16215,'events','itemid',43099),(16216,'history','itemid',43099),(16217,'history_log','itemid',43099),(16218,'history_str','itemid',43099),(16219,'history_text','itemid',43099),(16220,'history_uint','itemid',43099),(16221,'trends','itemid',43099),(16222,'trends_uint','itemid',43099),(16223,'events','itemid',43100),(16224,'history','itemid',43100),(16225,'history_log','itemid',43100),(16226,'history_str','itemid',43100),(16227,'history_text','itemid',43100),(16228,'history_uint','itemid',43100),(16229,'trends','itemid',43100),(16230,'trends_uint','itemid',43100),(16231,'events','itemid',43101),(16232,'history','itemid',43101),(16233,'history_log','itemid',43101),(16234,'history_str','itemid',43101),(16235,'history_text','itemid',43101),(16236,'history_uint','itemid',43101),(16237,'trends','itemid',43101),(16238,'trends_uint','itemid',43101),(16239,'events','itemid',43102),(16240,'history','itemid',43102),(16241,'history_log','itemid',43102),(16242,'history_str','itemid',43102),(16243,'history_text','itemid',43102),(16244,'history_uint','itemid',43102),(16245,'trends','itemid',43102),(16246,'trends_uint','itemid',43102),(16247,'events','itemid',43103),(16248,'history','itemid',43103),(16249,'history_log','itemid',43103),(16250,'history_str','itemid',43103),(16251,'history_text','itemid',43103),(16252,'history_uint','itemid',43103),(16253,'trends','itemid',43103),(16254,'trends_uint','itemid',43103),(16255,'events','itemid',43104),(16256,'history','itemid',43104),(16257,'history_log','itemid',43104),(16258,'history_str','itemid',43104),(16259,'history_text','itemid',43104),(16260,'history_uint','itemid',43104),(16261,'trends','itemid',43104),(16262,'trends_uint','itemid',43104),(16263,'events','itemid',43105),(16264,'history','itemid',43105),(16265,'history_log','itemid',43105),(16266,'history_str','itemid',43105),(16267,'history_text','itemid',43105),(16268,'history_uint','itemid',43105),(16269,'trends','itemid',43105),(16270,'trends_uint','itemid',43105),(16271,'events','itemid',43106),(16272,'history','itemid',43106),(16273,'history_log','itemid',43106),(16274,'history_str','itemid',43106),(16275,'history_text','itemid',43106),(16276,'history_uint','itemid',43106),(16277,'trends','itemid',43106),(16278,'trends_uint','itemid',43106),(16279,'events','itemid',43132),(16280,'history','itemid',43132),(16281,'history_log','itemid',43132),(16282,'history_str','itemid',43132),(16283,'history_text','itemid',43132),(16284,'history_uint','itemid',43132),(16285,'trends','itemid',43132),(16286,'trends_uint','itemid',43132),(16287,'events','itemid',43156),(16288,'history','itemid',43156),(16289,'history_log','itemid',43156),(16290,'history_str','itemid',43156),(16291,'history_text','itemid',43156),(16292,'history_uint','itemid',43156),(16293,'trends','itemid',43156),(16294,'trends_uint','itemid',43156),(16295,'events','itemid',43157),(16296,'history','itemid',43157),(16297,'history_log','itemid',43157),(16298,'history_str','itemid',43157),(16299,'history_text','itemid',43157),(16300,'history_uint','itemid',43157),(16301,'trends','itemid',43157),(16302,'trends_uint','itemid',43157),(16303,'events','itemid',43158),(16304,'history','itemid',43158),(16305,'history_log','itemid',43158),(16306,'history_str','itemid',43158),(16307,'history_text','itemid',43158),(16308,'history_uint','itemid',43158),(16309,'trends','itemid',43158),(16310,'trends_uint','itemid',43158),(16311,'events','itemid',43159),(16312,'history','itemid',43159),(16313,'history_log','itemid',43159),(16314,'history_str','itemid',43159),(16315,'history_text','itemid',43159),(16316,'history_uint','itemid',43159),(16317,'trends','itemid',43159),(16318,'trends_uint','itemid',43159),(16319,'events','itemid',43160),(16320,'history','itemid',43160),(16321,'history_log','itemid',43160),(16322,'history_str','itemid',43160),(16323,'history_text','itemid',43160),(16324,'history_uint','itemid',43160),(16325,'trends','itemid',43160),(16326,'trends_uint','itemid',43160),(16327,'events','itemid',43161),(16328,'history','itemid',43161),(16329,'history_log','itemid',43161),(16330,'history_str','itemid',43161),(16331,'history_text','itemid',43161),(16332,'history_uint','itemid',43161),(16333,'trends','itemid',43161),(16334,'trends_uint','itemid',43161),(16335,'events','itemid',43162),(16336,'history','itemid',43162),(16337,'history_log','itemid',43162),(16338,'history_str','itemid',43162),(16339,'history_text','itemid',43162),(16340,'history_uint','itemid',43162),(16341,'trends','itemid',43162),(16342,'trends_uint','itemid',43162),(16343,'events','itemid',43163),(16344,'history','itemid',43163),(16345,'history_log','itemid',43163),(16346,'history_str','itemid',43163),(16347,'history_text','itemid',43163),(16348,'history_uint','itemid',43163),(16349,'trends','itemid',43163),(16350,'trends_uint','itemid',43163),(16351,'events','itemid',43164),(16352,'history','itemid',43164),(16353,'history_log','itemid',43164),(16354,'history_str','itemid',43164),(16355,'history_text','itemid',43164),(16356,'history_uint','itemid',43164),(16357,'trends','itemid',43164),(16358,'trends_uint','itemid',43164),(16359,'events','itemid',43165),(16360,'history','itemid',43165),(16361,'history_log','itemid',43165),(16362,'history_str','itemid',43165),(16363,'history_text','itemid',43165),(16364,'history_uint','itemid',43165),(16365,'trends','itemid',43165),(16366,'trends_uint','itemid',43165),(16367,'events','itemid',44294),(16368,'history','itemid',44294),(16369,'history_log','itemid',44294),(16370,'history_str','itemid',44294),(16371,'history_text','itemid',44294),(16372,'history_uint','itemid',44294),(16373,'trends','itemid',44294),(16374,'trends_uint','itemid',44294),(16375,'events','itemid',44301),(16376,'history','itemid',44301),(16377,'history_log','itemid',44301),(16378,'history_str','itemid',44301),(16379,'history_text','itemid',44301),(16380,'history_uint','itemid',44301),(16381,'trends','itemid',44301),(16382,'trends_uint','itemid',44301),(16383,'events','itemid',44302),(16384,'history','itemid',44302),(16385,'history_log','itemid',44302),(16386,'history_str','itemid',44302),(16387,'history_text','itemid',44302),(16388,'history_uint','itemid',44302),(16389,'trends','itemid',44302),(16390,'trends_uint','itemid',44302),(16391,'events','itemid',44303),(16392,'history','itemid',44303),(16393,'history_log','itemid',44303),(16394,'history_str','itemid',44303),(16395,'history_text','itemid',44303),(16396,'history_uint','itemid',44303),(16397,'trends','itemid',44303),(16398,'trends_uint','itemid',44303),(16399,'events','itemid',44295),(16400,'history','itemid',44295),(16401,'history_log','itemid',44295),(16402,'history_str','itemid',44295),(16403,'history_text','itemid',44295),(16404,'history_uint','itemid',44295),(16405,'trends','itemid',44295),(16406,'trends_uint','itemid',44295),(16407,'events','itemid',44304),(16408,'history','itemid',44304),(16409,'history_log','itemid',44304),(16410,'history_str','itemid',44304),(16411,'history_text','itemid',44304),(16412,'history_uint','itemid',44304),(16413,'trends','itemid',44304),(16414,'trends_uint','itemid',44304),(16415,'events','itemid',44296),(16416,'history','itemid',44296),(16417,'history_log','itemid',44296),(16418,'history_str','itemid',44296),(16419,'history_text','itemid',44296),(16420,'history_uint','itemid',44296),(16421,'trends','itemid',44296),(16422,'trends_uint','itemid',44296),(16423,'events','itemid',44297),(16424,'history','itemid',44297),(16425,'history_log','itemid',44297),(16426,'history_str','itemid',44297),(16427,'history_text','itemid',44297),(16428,'history_uint','itemid',44297),(16429,'trends','itemid',44297),(16430,'trends_uint','itemid',44297),(16431,'events','itemid',44298),(16432,'history','itemid',44298),(16433,'history_log','itemid',44298),(16434,'history_str','itemid',44298),(16435,'history_text','itemid',44298),(16436,'history_uint','itemid',44298),(16437,'trends','itemid',44298),(16438,'trends_uint','itemid',44298),(16439,'events','itemid',44299),(16440,'history','itemid',44299),(16441,'history_log','itemid',44299),(16442,'history_str','itemid',44299),(16443,'history_text','itemid',44299),(16444,'history_uint','itemid',44299),(16445,'trends','itemid',44299),(16446,'trends_uint','itemid',44299),(16447,'events','itemid',44305),(16448,'history','itemid',44305),(16449,'history_log','itemid',44305),(16450,'history_str','itemid',44305),(16451,'history_text','itemid',44305),(16452,'history_uint','itemid',44305),(16453,'trends','itemid',44305),(16454,'trends_uint','itemid',44305),(16455,'events','itemid',44300),(16456,'history','itemid',44300),(16457,'history_log','itemid',44300),(16458,'history_str','itemid',44300),(16459,'history_text','itemid',44300),(16460,'history_uint','itemid',44300),(16461,'trends','itemid',44300),(16462,'trends_uint','itemid',44300),(16463,'events','itemid',44306),(16464,'history','itemid',44306),(16465,'history_log','itemid',44306),(16466,'history_str','itemid',44306),(16467,'history_text','itemid',44306),(16468,'history_uint','itemid',44306),(16469,'trends','itemid',44306),(16470,'trends_uint','itemid',44306),(16471,'events','itemid',44307),(16472,'history','itemid',44307),(16473,'history_log','itemid',44307),(16474,'history_str','itemid',44307),(16475,'history_text','itemid',44307),(16476,'history_uint','itemid',44307),(16477,'trends','itemid',44307),(16478,'trends_uint','itemid',44307),(16479,'events','itemid',44308),(16480,'history','itemid',44308),(16481,'history_log','itemid',44308),(16482,'history_str','itemid',44308),(16483,'history_text','itemid',44308),(16484,'history_uint','itemid',44308),(16485,'trends','itemid',44308),(16486,'trends_uint','itemid',44308),(16487,'events','itemid',44309),(16488,'history','itemid',44309),(16489,'history_log','itemid',44309),(16490,'history_str','itemid',44309),(16491,'history_text','itemid',44309),(16492,'history_uint','itemid',44309),(16493,'trends','itemid',44309),(16494,'trends_uint','itemid',44309),(16495,'events','itemid',44310),(16496,'history','itemid',44310),(16497,'history_log','itemid',44310),(16498,'history_str','itemid',44310),(16499,'history_text','itemid',44310),(16500,'history_uint','itemid',44310),(16501,'trends','itemid',44310),(16502,'trends_uint','itemid',44310),(16503,'events','itemid',44311),(16504,'history','itemid',44311),(16505,'history_log','itemid',44311),(16506,'history_str','itemid',44311),(16507,'history_text','itemid',44311),(16508,'history_uint','itemid',44311),(16509,'trends','itemid',44311),(16510,'trends_uint','itemid',44311),(16511,'events','itemid',44312),(16512,'history','itemid',44312),(16513,'history_log','itemid',44312),(16514,'history_str','itemid',44312),(16515,'history_text','itemid',44312),(16516,'history_uint','itemid',44312),(16517,'trends','itemid',44312),(16518,'trends_uint','itemid',44312),(16519,'events','itemid',44313),(16520,'history','itemid',44313),(16521,'history_log','itemid',44313),(16522,'history_str','itemid',44313),(16523,'history_text','itemid',44313),(16524,'history_uint','itemid',44313),(16525,'trends','itemid',44313),(16526,'trends_uint','itemid',44313),(16527,'events','itemid',44381),(16528,'history','itemid',44381),(16529,'history_log','itemid',44381),(16530,'history_str','itemid',44381),(16531,'history_text','itemid',44381),(16532,'history_uint','itemid',44381),(16533,'trends','itemid',44381),(16534,'trends_uint','itemid',44381),(16535,'events','itemid',44382),(16536,'history','itemid',44382),(16537,'history_log','itemid',44382),(16538,'history_str','itemid',44382),(16539,'history_text','itemid',44382),(16540,'history_uint','itemid',44382),(16541,'trends','itemid',44382),(16542,'trends_uint','itemid',44382),(16543,'events','itemid',44383),(16544,'history','itemid',44383),(16545,'history_log','itemid',44383),(16546,'history_str','itemid',44383),(16547,'history_text','itemid',44383),(16548,'history_uint','itemid',44383),(16549,'trends','itemid',44383),(16550,'trends_uint','itemid',44383),(16551,'events','itemid',44384),(16552,'history','itemid',44384),(16553,'history_log','itemid',44384),(16554,'history_str','itemid',44384),(16555,'history_text','itemid',44384),(16556,'history_uint','itemid',44384),(16557,'trends','itemid',44384),(16558,'trends_uint','itemid',44384),(16559,'events','itemid',44385),(16560,'history','itemid',44385),(16561,'history_log','itemid',44385),(16562,'history_str','itemid',44385),(16563,'history_text','itemid',44385),(16564,'history_uint','itemid',44385),(16565,'trends','itemid',44385),(16566,'trends_uint','itemid',44385),(16567,'events','itemid',44386),(16568,'history','itemid',44386),(16569,'history_log','itemid',44386),(16570,'history_str','itemid',44386),(16571,'history_text','itemid',44386),(16572,'history_uint','itemid',44386),(16573,'trends','itemid',44386),(16574,'trends_uint','itemid',44386),(16575,'events','itemid',44387),(16576,'history','itemid',44387),(16577,'history_log','itemid',44387),(16578,'history_str','itemid',44387),(16579,'history_text','itemid',44387),(16580,'history_uint','itemid',44387),(16581,'trends','itemid',44387),(16582,'trends_uint','itemid',44387),(16583,'events','itemid',44388),(16584,'history','itemid',44388),(16585,'history_log','itemid',44388),(16586,'history_str','itemid',44388),(16587,'history_text','itemid',44388),(16588,'history_uint','itemid',44388),(16589,'trends','itemid',44388),(16590,'trends_uint','itemid',44388),(16591,'events','itemid',44389),(16592,'history','itemid',44389),(16593,'history_log','itemid',44389),(16594,'history_str','itemid',44389),(16595,'history_text','itemid',44389),(16596,'history_uint','itemid',44389),(16597,'trends','itemid',44389),(16598,'trends_uint','itemid',44389),(16599,'events','itemid',44390),(16600,'history','itemid',44390),(16601,'history_log','itemid',44390),(16602,'history_str','itemid',44390),(16603,'history_text','itemid',44390),(16604,'history_uint','itemid',44390),(16605,'trends','itemid',44390),(16606,'trends_uint','itemid',44390),(16607,'events','itemid',44391),(16608,'history','itemid',44391),(16609,'history_log','itemid',44391),(16610,'history_str','itemid',44391),(16611,'history_text','itemid',44391),(16612,'history_uint','itemid',44391),(16613,'trends','itemid',44391),(16614,'trends_uint','itemid',44391),(16615,'events','itemid',44392),(16616,'history','itemid',44392),(16617,'history_log','itemid',44392),(16618,'history_str','itemid',44392),(16619,'history_text','itemid',44392),(16620,'history_uint','itemid',44392),(16621,'trends','itemid',44392),(16622,'trends_uint','itemid',44392),(16623,'events','itemid',44393),(16624,'history','itemid',44393),(16625,'history_log','itemid',44393),(16626,'history_str','itemid',44393),(16627,'history_text','itemid',44393),(16628,'history_uint','itemid',44393),(16629,'trends','itemid',44393),(16630,'trends_uint','itemid',44393),(16631,'events','itemid',44394),(16632,'history','itemid',44394),(16633,'history_log','itemid',44394),(16634,'history_str','itemid',44394),(16635,'history_text','itemid',44394),(16636,'history_uint','itemid',44394),(16637,'trends','itemid',44394),(16638,'trends_uint','itemid',44394),(16639,'events','lldruleid',42271),(16640,'events','lldruleid',42272),(16641,'events','lldruleid',42273),(16642,'events','lldruleid',27078),(16643,'events','lldruleid',27098),(16644,'events','lldruleid',27118),(16645,'events','lldruleid',27747),(16646,'events','lldruleid',27746),(16647,'events','lldruleid',27745),(16648,'events','lldruleid',40878),(16649,'events','lldruleid',40879),(16650,'events','lldruleid',27782),(16651,'events','lldruleid',40901),(16652,'events','lldruleid',27781),(16653,'events','lldruleid',27779),(16654,'events','lldruleid',27780),(16655,'events','lldruleid',27815),(16656,'events','lldruleid',27817),(16657,'events','lldruleid',27818),(16658,'events','lldruleid',27816),(16659,'events','lldruleid',40922),(16660,'events','lldruleid',40923),(16661,'events','lldruleid',42410),(16662,'events','lldruleid',42411),(16663,'events','lldruleid',42412),(16664,'events','lldruleid',42413),(16665,'events','lldruleid',42414),(16666,'events','lldruleid',28149),(16667,'events','lldruleid',28146),(16668,'events','lldruleid',28145),(16669,'events','lldruleid',40855),(16670,'events','lldruleid',40856),(16671,'events','lldruleid',28147),(16672,'events','lldruleid',28144),(16673,'events','lldruleid',28148),(16674,'events','lldruleid',28401),(16675,'events','lldruleid',28400),(16676,'events','lldruleid',28399),(16677,'events','lldruleid',28402),(16678,'events','lldruleid',28398),(16679,'events','lldruleid',28392),(16680,'events','lldruleid',28393),(16681,'events','lldruleid',28394),(16682,'events','lldruleid',28397),(16683,'events','lldruleid',28395),(16684,'events','lldruleid',28396),(16685,'events','lldruleid',33620),(16686,'events','lldruleid',28403),(16687,'events','lldruleid',28472),(16688,'events','lldruleid',28473),(16689,'events','lldruleid',28471),(16690,'events','lldruleid',28468),(16691,'events','lldruleid',28469),(16692,'events','lldruleid',28470),(16693,'events','lldruleid',29008),(16694,'events','lldruleid',29009),(16695,'events','lldruleid',29010),(16696,'events','lldruleid',29201),(16697,'events','lldruleid',31367),(16698,'events','lldruleid',29429),(16699,'events','lldruleid',29431),(16700,'events','lldruleid',29430),(16701,'events','lldruleid',31005),(16702,'events','lldruleid',31047),(16703,'events','lldruleid',31896),(16704,'events','lldruleid',31897),(16705,'events','lldruleid',42360),(16706,'events','lldruleid',42361),(16707,'events','lldruleid',42362),(16708,'events','lldruleid',33465),(16709,'events','lldruleid',33466),(16710,'events','lldruleid',33542),(16711,'events','lldruleid',33543),(16712,'events','lldruleid',33544),(16713,'events','lldruleid',33545),(16714,'events','lldruleid',33546),(16715,'events','lldruleid',33547),(16716,'events','lldruleid',33548),(16717,'events','lldruleid',33549),(16718,'events','lldruleid',33550),(16719,'events','lldruleid',33551),(16720,'events','lldruleid',33695),(16721,'events','lldruleid',33696),(16722,'events','lldruleid',33697),(16723,'events','lldruleid',33698),(16724,'events','lldruleid',33699),(16725,'events','lldruleid',33700),(16726,'events','lldruleid',33701),(16727,'events','lldruleid',33702),(16728,'events','lldruleid',36553),(16729,'events','lldruleid',36554),(16730,'events','lldruleid',36555),(16731,'events','lldruleid',36556),(16732,'events','lldruleid',36557),(16733,'events','lldruleid',36558),(16734,'events','lldruleid',36559),(16735,'events','lldruleid',36560),(16736,'events','lldruleid',36561),(16737,'events','lldruleid',36562),(16738,'events','lldruleid',36563),(16739,'events','lldruleid',36564),(16740,'events','lldruleid',36565),(16741,'events','lldruleid',36566),(16742,'events','lldruleid',36610),(16743,'events','lldruleid',36611),(16744,'events','lldruleid',36612),(16745,'events','lldruleid',36613),(16746,'events','lldruleid',36614),(16747,'events','lldruleid',36615),(16748,'events','lldruleid',36616),(16749,'events','lldruleid',36617),(16750,'events','lldruleid',36618),(16751,'events','lldruleid',36619),(16752,'events','lldruleid',36620),(16753,'events','lldruleid',36621),(16754,'events','lldruleid',36622),(16755,'events','lldruleid',36623),(16756,'events','lldruleid',36667),(16757,'events','lldruleid',36668),(16758,'events','lldruleid',36669),(16759,'events','lldruleid',36670),(16760,'events','lldruleid',36671),(16761,'events','lldruleid',36672),(16762,'events','lldruleid',36673),(16763,'events','lldruleid',36674),(16764,'events','lldruleid',36675),(16765,'events','lldruleid',36676),(16766,'events','lldruleid',36677),(16767,'events','lldruleid',36678),(16768,'events','lldruleid',36679),(16769,'events','lldruleid',36680),(16770,'events','lldruleid',36724),(16771,'events','lldruleid',36725),(16772,'events','lldruleid',36726),(16773,'events','lldruleid',36727),(16774,'events','lldruleid',36728),(16775,'events','lldruleid',36729),(16776,'events','lldruleid',36730),(16777,'events','lldruleid',36731),(16778,'events','lldruleid',36732),(16779,'events','lldruleid',36733),(16780,'events','lldruleid',36734),(16781,'events','lldruleid',36735),(16782,'events','lldruleid',36736),(16783,'events','lldruleid',36737),(16784,'events','lldruleid',36813),(16785,'events','lldruleid',39851),(16786,'events','lldruleid',39852),(16787,'events','lldruleid',39853),(16788,'events','lldruleid',39854),(16789,'events','lldruleid',39855),(16790,'events','lldruleid',39856),(16791,'events','lldruleid',39857),(16792,'events','lldruleid',39858),(16793,'events','lldruleid',39859),(16794,'events','lldruleid',39860),(16795,'events','lldruleid',39889),(16796,'events','lldruleid',39917),(16797,'events','lldruleid',39918),(16798,'events','lldruleid',39919),(16799,'events','lldruleid',39920),(16800,'events','lldruleid',39940),(16801,'events','lldruleid',39941),(16802,'events','lldruleid',39942),(16803,'events','lldruleid',40000),(16804,'events','lldruleid',40001),(16805,'events','lldruleid',40002),(16806,'events','lldruleid',40021),(16807,'events','lldruleid',40022),(16808,'events','lldruleid',40023),(16809,'events','lldruleid',42703),(16810,'events','lldruleid',40024),(16811,'events','lldruleid',40025),(16812,'events','lldruleid',40026),(16813,'events','lldruleid',42704),(16814,'events','lldruleid',40035),(16815,'events','lldruleid',40027),(16816,'events','lldruleid',40028),(16817,'events','lldruleid',42705),(16818,'events','lldruleid',40029),(16819,'events','lldruleid',40030),(16820,'events','lldruleid',40031),(16821,'events','lldruleid',40032),(16822,'events','lldruleid',40033),(16823,'events','lldruleid',40034),(16824,'events','lldruleid',43184),(16825,'events','lldruleid',43185),(16826,'events','lldruleid',43186),(16827,'events','lldruleid',43187),(16828,'events','lldruleid',43188),(16829,'events','lldruleid',43189),(16830,'events','lldruleid',43190),(16831,'events','lldruleid',43191),(16832,'events','lldruleid',43192),(16833,'events','lldruleid',43193),(16834,'events','lldruleid',43291),(16835,'events','lldruleid',43292),(16836,'events','lldruleid',43293),(16837,'events','lldruleid',43294),(16838,'events','lldruleid',43295),(16839,'events','lldruleid',43296),(16840,'events','lldruleid',43297),(16841,'events','lldruleid',43298),(16842,'events','lldruleid',43299),(16843,'events','lldruleid',43300),(16844,'events','lldruleid',43415),(16845,'events','lldruleid',43416),(16846,'events','lldruleid',43417),(16847,'events','lldruleid',43418),(16848,'events','lldruleid',43419),(16849,'events','lldruleid',43420),(16850,'events','lldruleid',43905),(16851,'events','lldruleid',43906),(16852,'events','lldruleid',43907),(16853,'events','lldruleid',43908),(16854,'events','lldruleid',43909),(16855,'events','lldruleid',43910),(16856,'events','lldruleid',43911),(16857,'events','lldruleid',43912),(16858,'events','lldruleid',43913),(16859,'events','lldruleid',43914),(16860,'events','lldruleid',43915),(16861,'events','lldruleid',43916),(16862,'events','lldruleid',43917),(16863,'events','lldruleid',43918),(16864,'events','lldruleid',43919),(16865,'events','lldruleid',43920),(16866,'events','lldruleid',43921),(16867,'events','lldruleid',43922),(16868,'events','lldruleid',43923),(16869,'events','lldruleid',43924),(16870,'events','lldruleid',43925),(16871,'events','itemid',42187),(16872,'history','itemid',42187),(16873,'history_log','itemid',42187),(16874,'history_str','itemid',42187),(16875,'history_text','itemid',42187),(16876,'history_uint','itemid',42187),(16877,'trends','itemid',42187),(16878,'trends_uint','itemid',42187),(16879,'events','itemid',42197),(16880,'history','itemid',42197),(16881,'history_log','itemid',42197),(16882,'history_str','itemid',42197),(16883,'history_text','itemid',42197),(16884,'history_uint','itemid',42197),(16885,'trends','itemid',42197),(16886,'trends_uint','itemid',42197),(16887,'events','itemid',42210),(16888,'history','itemid',42210),(16889,'history_log','itemid',42210),(16890,'history_str','itemid',42210),(16891,'history_text','itemid',42210),(16892,'history_uint','itemid',42210),(16893,'trends','itemid',42210),(16894,'trends_uint','itemid',42210),(16895,'events','itemid',42211),(16896,'history','itemid',42211),(16897,'history_log','itemid',42211),(16898,'history_str','itemid',42211),(16899,'history_text','itemid',42211),(16900,'history_uint','itemid',42211),(16901,'trends','itemid',42211),(16902,'trends_uint','itemid',42211),(16903,'events','itemid',42212),(16904,'history','itemid',42212),(16905,'history_log','itemid',42212),(16906,'history_str','itemid',42212),(16907,'history_text','itemid',42212),(16908,'history_uint','itemid',42212),(16909,'trends','itemid',42212),(16910,'trends_uint','itemid',42212),(16911,'events','itemid',42213),(16912,'history','itemid',42213),(16913,'history_log','itemid',42213),(16914,'history_str','itemid',42213),(16915,'history_text','itemid',42213),(16916,'history_uint','itemid',42213),(16917,'trends','itemid',42213),(16918,'trends_uint','itemid',42213),(16919,'events','itemid',42214),(16920,'history','itemid',42214),(16921,'history_log','itemid',42214),(16922,'history_str','itemid',42214),(16923,'history_text','itemid',42214),(16924,'history_uint','itemid',42214),(16925,'trends','itemid',42214),(16926,'trends_uint','itemid',42214),(16927,'events','itemid',42215),(16928,'history','itemid',42215),(16929,'history_log','itemid',42215),(16930,'history_str','itemid',42215),(16931,'history_text','itemid',42215),(16932,'history_uint','itemid',42215),(16933,'trends','itemid',42215),(16934,'trends_uint','itemid',42215),(16935,'events','itemid',42216),(16936,'history','itemid',42216),(16937,'history_log','itemid',42216),(16938,'history_str','itemid',42216),(16939,'history_text','itemid',42216),(16940,'history_uint','itemid',42216),(16941,'trends','itemid',42216),(16942,'trends_uint','itemid',42216),(16943,'events','itemid',42219),(16944,'history','itemid',42219),(16945,'history_log','itemid',42219),(16946,'history_str','itemid',42219),(16947,'history_text','itemid',42219),(16948,'history_uint','itemid',42219),(16949,'trends','itemid',42219),(16950,'trends_uint','itemid',42219),(16951,'events','itemid',42209),(16952,'history','itemid',42209),(16953,'history_log','itemid',42209),(16954,'history_str','itemid',42209),(16955,'history_text','itemid',42209),(16956,'history_uint','itemid',42209),(16957,'trends','itemid',42209),(16958,'trends_uint','itemid',42209),(16959,'events','itemid',42217),(16960,'history','itemid',42217),(16961,'history_log','itemid',42217),(16962,'history_str','itemid',42217),(16963,'history_text','itemid',42217),(16964,'history_uint','itemid',42217),(16965,'trends','itemid',42217),(16966,'trends_uint','itemid',42217),(16967,'events','itemid',42220),(16968,'history','itemid',42220),(16969,'history_log','itemid',42220),(16970,'history_str','itemid',42220),(16971,'history_text','itemid',42220),(16972,'history_uint','itemid',42220),(16973,'trends','itemid',42220),(16974,'trends_uint','itemid',42220),(16975,'events','itemid',42221),(16976,'history','itemid',42221),(16977,'history_log','itemid',42221),(16978,'history_str','itemid',42221),(16979,'history_text','itemid',42221),(16980,'history_uint','itemid',42221),(16981,'trends','itemid',42221),(16982,'trends_uint','itemid',42221),(16983,'events','itemid',42267),(16984,'history','itemid',42267),(16985,'history_log','itemid',42267),(16986,'history_str','itemid',42267),(16987,'history_text','itemid',42267),(16988,'history_uint','itemid',42267),(16989,'trends','itemid',42267),(16990,'trends_uint','itemid',42267),(16991,'events','itemid',42222),(16992,'history','itemid',42222),(16993,'history_log','itemid',42222),(16994,'history_str','itemid',42222),(16995,'history_text','itemid',42222),(16996,'history_uint','itemid',42222),(16997,'trends','itemid',42222),(16998,'trends_uint','itemid',42222),(16999,'events','itemid',42223),(17000,'history','itemid',42223),(17001,'history_log','itemid',42223),(17002,'history_str','itemid',42223),(17003,'history_text','itemid',42223),(17004,'history_uint','itemid',42223),(17005,'trends','itemid',42223),(17006,'trends_uint','itemid',42223),(17007,'events','itemid',42224),(17008,'history','itemid',42224),(17009,'history_log','itemid',42224),(17010,'history_str','itemid',42224),(17011,'history_text','itemid',42224),(17012,'history_uint','itemid',42224),(17013,'trends','itemid',42224),(17014,'trends_uint','itemid',42224),(17015,'events','itemid',42225),(17016,'history','itemid',42225),(17017,'history_log','itemid',42225),(17018,'history_str','itemid',42225),(17019,'history_text','itemid',42225),(17020,'history_uint','itemid',42225),(17021,'trends','itemid',42225),(17022,'trends_uint','itemid',42225),(17023,'events','itemid',42218),(17024,'history','itemid',42218),(17025,'history_log','itemid',42218),(17026,'history_str','itemid',42218),(17027,'history_text','itemid',42218),(17028,'history_uint','itemid',42218),(17029,'trends','itemid',42218),(17030,'trends_uint','itemid',42218),(17031,'events','itemid',42208),(17032,'history','itemid',42208),(17033,'history_log','itemid',42208),(17034,'history_str','itemid',42208),(17035,'history_text','itemid',42208),(17036,'history_uint','itemid',42208),(17037,'trends','itemid',42208),(17038,'trends_uint','itemid',42208),(17039,'events','itemid',42207),(17040,'history','itemid',42207),(17041,'history_log','itemid',42207),(17042,'history_str','itemid',42207),(17043,'history_text','itemid',42207),(17044,'history_uint','itemid',42207),(17045,'trends','itemid',42207),(17046,'trends_uint','itemid',42207),(17047,'events','itemid',42206),(17048,'history','itemid',42206),(17049,'history_log','itemid',42206),(17050,'history_str','itemid',42206),(17051,'history_text','itemid',42206),(17052,'history_uint','itemid',42206),(17053,'trends','itemid',42206),(17054,'trends_uint','itemid',42206),(17055,'events','itemid',42189),(17056,'history','itemid',42189),(17057,'history_log','itemid',42189),(17058,'history_str','itemid',42189),(17059,'history_text','itemid',42189),(17060,'history_uint','itemid',42189),(17061,'trends','itemid',42189),(17062,'trends_uint','itemid',42189),(17063,'events','itemid',42190),(17064,'history','itemid',42190),(17065,'history_log','itemid',42190),(17066,'history_str','itemid',42190),(17067,'history_text','itemid',42190),(17068,'history_uint','itemid',42190),(17069,'trends','itemid',42190),(17070,'trends_uint','itemid',42190),(17071,'events','itemid',42191),(17072,'history','itemid',42191),(17073,'history_log','itemid',42191),(17074,'history_str','itemid',42191),(17075,'history_text','itemid',42191),(17076,'history_uint','itemid',42191),(17077,'trends','itemid',42191),(17078,'trends_uint','itemid',42191),(17079,'events','itemid',42192),(17080,'history','itemid',42192),(17081,'history_log','itemid',42192),(17082,'history_str','itemid',42192),(17083,'history_text','itemid',42192),(17084,'history_uint','itemid',42192),(17085,'trends','itemid',42192),(17086,'trends_uint','itemid',42192),(17087,'events','itemid',42193),(17088,'history','itemid',42193),(17089,'history_log','itemid',42193),(17090,'history_str','itemid',42193),(17091,'history_text','itemid',42193),(17092,'history_uint','itemid',42193),(17093,'trends','itemid',42193),(17094,'trends_uint','itemid',42193),(17095,'events','itemid',42194),(17096,'history','itemid',42194),(17097,'history_log','itemid',42194),(17098,'history_str','itemid',42194),(17099,'history_text','itemid',42194),(17100,'history_uint','itemid',42194),(17101,'trends','itemid',42194),(17102,'trends_uint','itemid',42194),(17103,'events','itemid',42195),(17104,'history','itemid',42195),(17105,'history_log','itemid',42195),(17106,'history_str','itemid',42195),(17107,'history_text','itemid',42195),(17108,'history_uint','itemid',42195),(17109,'trends','itemid',42195),(17110,'trends_uint','itemid',42195),(17111,'events','itemid',42188),(17112,'history','itemid',42188),(17113,'history_log','itemid',42188),(17114,'history_str','itemid',42188),(17115,'history_text','itemid',42188),(17116,'history_uint','itemid',42188),(17117,'trends','itemid',42188),(17118,'trends_uint','itemid',42188),(17119,'events','itemid',42196),(17120,'history','itemid',42196),(17121,'history_log','itemid',42196),(17122,'history_str','itemid',42196),(17123,'history_text','itemid',42196),(17124,'history_uint','itemid',42196),(17125,'trends','itemid',42196),(17126,'trends_uint','itemid',42196),(17127,'events','itemid',42198),(17128,'history','itemid',42198),(17129,'history_log','itemid',42198),(17130,'history_str','itemid',42198),(17131,'history_text','itemid',42198),(17132,'history_uint','itemid',42198),(17133,'trends','itemid',42198),(17134,'trends_uint','itemid',42198),(17135,'events','itemid',42199),(17136,'history','itemid',42199),(17137,'history_log','itemid',42199),(17138,'history_str','itemid',42199),(17139,'history_text','itemid',42199),(17140,'history_uint','itemid',42199),(17141,'trends','itemid',42199),(17142,'trends_uint','itemid',42199),(17143,'events','itemid',42200),(17144,'history','itemid',42200),(17145,'history_log','itemid',42200),(17146,'history_str','itemid',42200),(17147,'history_text','itemid',42200),(17148,'history_uint','itemid',42200),(17149,'trends','itemid',42200),(17150,'trends_uint','itemid',42200),(17151,'events','itemid',42201),(17152,'history','itemid',42201),(17153,'history_log','itemid',42201),(17154,'history_str','itemid',42201),(17155,'history_text','itemid',42201),(17156,'history_uint','itemid',42201),(17157,'trends','itemid',42201),(17158,'trends_uint','itemid',42201),(17159,'events','itemid',42202),(17160,'history','itemid',42202),(17161,'history_log','itemid',42202),(17162,'history_str','itemid',42202),(17163,'history_text','itemid',42202),(17164,'history_uint','itemid',42202),(17165,'trends','itemid',42202),(17166,'trends_uint','itemid',42202),(17167,'events','itemid',44436),(17168,'history','itemid',44436),(17169,'history_log','itemid',44436),(17170,'history_str','itemid',44436),(17171,'history_text','itemid',44436),(17172,'history_uint','itemid',44436),(17173,'trends','itemid',44436),(17174,'trends_uint','itemid',44436),(17175,'events','itemid',42203),(17176,'history','itemid',42203),(17177,'history_log','itemid',42203),(17178,'history_str','itemid',42203),(17179,'history_text','itemid',42203),(17180,'history_uint','itemid',42203),(17181,'trends','itemid',42203),(17182,'trends_uint','itemid',42203),(17183,'events','itemid',42204),(17184,'history','itemid',42204),(17185,'history_log','itemid',42204),(17186,'history_str','itemid',42204),(17187,'history_text','itemid',42204),(17188,'history_uint','itemid',42204),(17189,'trends','itemid',42204),(17190,'trends_uint','itemid',42204),(17191,'events','itemid',42205),(17192,'history','itemid',42205),(17193,'history_log','itemid',42205),(17194,'history_str','itemid',42205),(17195,'history_text','itemid',42205),(17196,'history_uint','itemid',42205),(17197,'trends','itemid',42205),(17198,'trends_uint','itemid',42205),(17199,'events','itemid',42268),(17200,'history','itemid',42268),(17201,'history_log','itemid',42268),(17202,'history_str','itemid',42268),(17203,'history_text','itemid',42268),(17204,'history_uint','itemid',42268),(17205,'trends','itemid',42268),(17206,'trends_uint','itemid',42268),(17207,'events','itemid',42226),(17208,'history','itemid',42226),(17209,'history_log','itemid',42226),(17210,'history_str','itemid',42226),(17211,'history_text','itemid',42226),(17212,'history_uint','itemid',42226),(17213,'trends','itemid',42226),(17214,'trends_uint','itemid',42226),(17215,'events','itemid',42675),(17216,'history','itemid',42675),(17217,'history_log','itemid',42675),(17218,'history_str','itemid',42675),(17219,'history_text','itemid',42675),(17220,'history_uint','itemid',42675),(17221,'trends','itemid',42675),(17222,'trends_uint','itemid',42675),(17223,'events','itemid',23646),(17224,'history','itemid',23646),(17225,'history_log','itemid',23646),(17226,'history_str','itemid',23646),(17227,'history_text','itemid',23646),(17228,'history_uint','itemid',23646),(17229,'trends','itemid',23646),(17230,'trends_uint','itemid',23646),(17231,'events','itemid',23647),(17232,'history','itemid',23647),(17233,'history_log','itemid',23647),(17234,'history_str','itemid',23647),(17235,'history_text','itemid',23647),(17236,'history_uint','itemid',23647),(17237,'trends','itemid',23647),(17238,'trends_uint','itemid',23647),(17239,'events','itemid',23648),(17240,'history','itemid',23648),(17241,'history_log','itemid',23648),(17242,'history_str','itemid',23648),(17243,'history_text','itemid',23648),(17244,'history_uint','itemid',23648),(17245,'trends','itemid',23648),(17246,'trends_uint','itemid',23648),(17247,'events','itemid',26932),(17248,'history','itemid',26932),(17249,'history_log','itemid',26932),(17250,'history_str','itemid',26932),(17251,'history_text','itemid',26932),(17252,'history_uint','itemid',26932),(17253,'trends','itemid',26932),(17254,'trends_uint','itemid',26932),(17255,'events','itemid',26930),(17256,'history','itemid',26930),(17257,'history_log','itemid',26930),(17258,'history_str','itemid',26930),(17259,'history_text','itemid',26930),(17260,'history_uint','itemid',26930),(17261,'trends','itemid',26930),(17262,'trends_uint','itemid',26930),(17263,'events','itemid',26931),(17264,'history','itemid',26931),(17265,'history_log','itemid',26931),(17266,'history_str','itemid',26931),(17267,'history_text','itemid',26931),(17268,'history_uint','itemid',26931),(17269,'trends','itemid',26931),(17270,'trends_uint','itemid',26931),(17271,'events','itemid',26929),(17272,'history','itemid',26929),(17273,'history_log','itemid',26929),(17274,'history_str','itemid',26929),(17275,'history_text','itemid',26929),(17276,'history_uint','itemid',26929),(17277,'trends','itemid',26929),(17278,'trends_uint','itemid',26929),(17279,'events','itemid',26928),(17280,'history','itemid',26928),(17281,'history_log','itemid',26928),(17282,'history_str','itemid',26928),(17283,'history_text','itemid',26928),(17284,'history_uint','itemid',26928),(17285,'trends','itemid',26928),(17286,'trends_uint','itemid',26928),(17287,'events','itemid',26925),(17288,'history','itemid',26925),(17289,'history_log','itemid',26925),(17290,'history_str','itemid',26925),(17291,'history_text','itemid',26925),(17292,'history_uint','itemid',26925),(17293,'trends','itemid',26925),(17294,'trends_uint','itemid',26925),(17295,'events','itemid',26926),(17296,'history','itemid',26926),(17297,'history_log','itemid',26926),(17298,'history_str','itemid',26926),(17299,'history_text','itemid',26926),(17300,'history_uint','itemid',26926),(17301,'trends','itemid',26926),(17302,'trends_uint','itemid',26926),(17303,'events','itemid',26927),(17304,'history','itemid',26927),(17305,'history_log','itemid',26927),(17306,'history_str','itemid',26927),(17307,'history_text','itemid',26927),(17308,'history_uint','itemid',26927),(17309,'trends','itemid',26927),(17310,'trends_uint','itemid',26927),(17311,'events','itemid',26943),(17312,'history','itemid',26943),(17313,'history_log','itemid',26943),(17314,'history_str','itemid',26943),(17315,'history_text','itemid',26943),(17316,'history_uint','itemid',26943),(17317,'trends','itemid',26943),(17318,'trends_uint','itemid',26943),(17319,'events','itemid',26939),(17320,'history','itemid',26939),(17321,'history_log','itemid',26939),(17322,'history_str','itemid',26939),(17323,'history_text','itemid',26939),(17324,'history_uint','itemid',26939),(17325,'trends','itemid',26939),(17326,'trends_uint','itemid',26939),(17327,'events','itemid',26940),(17328,'history','itemid',26940),(17329,'history_log','itemid',26940),(17330,'history_str','itemid',26940),(17331,'history_text','itemid',26940),(17332,'history_uint','itemid',26940),(17333,'trends','itemid',26940),(17334,'trends_uint','itemid',26940),(17335,'events','itemid',26941),(17336,'history','itemid',26941),(17337,'history_log','itemid',26941),(17338,'history_str','itemid',26941),(17339,'history_text','itemid',26941),(17340,'history_uint','itemid',26941),(17341,'trends','itemid',26941),(17342,'trends_uint','itemid',26941),(17343,'events','itemid',26942),(17344,'history','itemid',26942),(17345,'history_log','itemid',26942),(17346,'history_str','itemid',26942),(17347,'history_text','itemid',26942),(17348,'history_uint','itemid',26942),(17349,'trends','itemid',26942),(17350,'trends_uint','itemid',26942),(17351,'events','itemid',26938),(17352,'history','itemid',26938),(17353,'history_log','itemid',26938),(17354,'history_str','itemid',26938),(17355,'history_text','itemid',26938),(17356,'history_uint','itemid',26938),(17357,'trends','itemid',26938),(17358,'trends_uint','itemid',26938),(17359,'events','itemid',26937),(17360,'history','itemid',26937),(17361,'history_log','itemid',26937),(17362,'history_str','itemid',26937),(17363,'history_text','itemid',26937),(17364,'history_uint','itemid',26937),(17365,'trends','itemid',26937),(17366,'trends_uint','itemid',26937),(17367,'events','itemid',26933),(17368,'history','itemid',26933),(17369,'history_log','itemid',26933),(17370,'history_str','itemid',26933),(17371,'history_text','itemid',26933),(17372,'history_uint','itemid',26933),(17373,'trends','itemid',26933),(17374,'trends_uint','itemid',26933),(17375,'events','itemid',26934),(17376,'history','itemid',26934),(17377,'history_log','itemid',26934),(17378,'history_str','itemid',26934),(17379,'history_text','itemid',26934),(17380,'history_uint','itemid',26934),(17381,'trends','itemid',26934),(17382,'trends_uint','itemid',26934),(17383,'events','itemid',26935),(17384,'history','itemid',26935),(17385,'history_log','itemid',26935),(17386,'history_str','itemid',26935),(17387,'history_text','itemid',26935),(17388,'history_uint','itemid',26935),(17389,'trends','itemid',26935),(17390,'trends_uint','itemid',26935),(17391,'events','itemid',26936),(17392,'history','itemid',26936),(17393,'history_log','itemid',26936),(17394,'history_str','itemid',26936),(17395,'history_text','itemid',26936),(17396,'history_uint','itemid',26936),(17397,'trends','itemid',26936),(17398,'trends_uint','itemid',26936),(17399,'events','itemid',27067),(17400,'history','itemid',27067),(17401,'history_log','itemid',27067),(17402,'history_str','itemid',27067),(17403,'history_text','itemid',27067),(17404,'history_uint','itemid',27067),(17405,'trends','itemid',27067),(17406,'trends_uint','itemid',27067),(17407,'events','itemid',27066),(17408,'history','itemid',27066),(17409,'history_log','itemid',27066),(17410,'history_str','itemid',27066),(17411,'history_text','itemid',27066),(17412,'history_uint','itemid',27066),(17413,'trends','itemid',27066),(17414,'trends_uint','itemid',27066),(17415,'events','itemid',27065),(17416,'history','itemid',27065),(17417,'history_log','itemid',27065),(17418,'history_str','itemid',27065),(17419,'history_text','itemid',27065),(17420,'history_uint','itemid',27065),(17421,'trends','itemid',27065),(17422,'trends_uint','itemid',27065),(17423,'events','itemid',40867),(17424,'history','itemid',40867),(17425,'history_log','itemid',40867),(17426,'history_str','itemid',40867),(17427,'history_text','itemid',40867),(17428,'history_uint','itemid',40867),(17429,'trends','itemid',40867),(17430,'trends_uint','itemid',40867),(17431,'events','itemid',40868),(17432,'history','itemid',40868),(17433,'history_log','itemid',40868),(17434,'history_str','itemid',40868),(17435,'history_text','itemid',40868),(17436,'history_uint','itemid',40868),(17437,'trends','itemid',40868),(17438,'trends_uint','itemid',40868),(17439,'events','itemid',40869),(17440,'history','itemid',40869),(17441,'history_log','itemid',40869),(17442,'history_str','itemid',40869),(17443,'history_text','itemid',40869),(17444,'history_uint','itemid',40869),(17445,'trends','itemid',40869),(17446,'trends_uint','itemid',40869),(17447,'events','itemid',40870),(17448,'history','itemid',40870),(17449,'history_log','itemid',40870),(17450,'history_str','itemid',40870),(17451,'history_text','itemid',40870),(17452,'history_uint','itemid',40870),(17453,'trends','itemid',40870),(17454,'trends_uint','itemid',40870),(17455,'events','itemid',40871),(17456,'history','itemid',40871),(17457,'history_log','itemid',40871),(17458,'history_str','itemid',40871),(17459,'history_text','itemid',40871),(17460,'history_uint','itemid',40871),(17461,'trends','itemid',40871),(17462,'trends_uint','itemid',40871),(17463,'events','itemid',40872),(17464,'history','itemid',40872),(17465,'history_log','itemid',40872),(17466,'history_str','itemid',40872),(17467,'history_text','itemid',40872),(17468,'history_uint','itemid',40872),(17469,'trends','itemid',40872),(17470,'trends_uint','itemid',40872),(17471,'events','itemid',43790),(17472,'history','itemid',43790),(17473,'history_log','itemid',43790),(17474,'history_str','itemid',43790),(17475,'history_text','itemid',43790),(17476,'history_uint','itemid',43790),(17477,'trends','itemid',43790),(17478,'trends_uint','itemid',43790),(17479,'events','itemid',40873),(17480,'history','itemid',40873),(17481,'history_log','itemid',40873),(17482,'history_str','itemid',40873),(17483,'history_text','itemid',40873),(17484,'history_uint','itemid',40873),(17485,'trends','itemid',40873),(17486,'trends_uint','itemid',40873),(17487,'events','itemid',40874),(17488,'history','itemid',40874),(17489,'history_log','itemid',40874),(17490,'history_str','itemid',40874),(17491,'history_text','itemid',40874),(17492,'history_uint','itemid',40874),(17493,'trends','itemid',40874),(17494,'trends_uint','itemid',40874),(17495,'events','itemid',40876),(17496,'history','itemid',40876),(17497,'history_log','itemid',40876),(17498,'history_str','itemid',40876),(17499,'history_text','itemid',40876),(17500,'history_uint','itemid',40876),(17501,'trends','itemid',40876),(17502,'trends_uint','itemid',40876),(17503,'events','itemid',40875),(17504,'history','itemid',40875),(17505,'history_log','itemid',40875),(17506,'history_str','itemid',40875),(17507,'history_text','itemid',40875),(17508,'history_uint','itemid',40875),(17509,'trends','itemid',40875),(17510,'trends_uint','itemid',40875),(17511,'events','itemid',40877),(17512,'history','itemid',40877),(17513,'history_log','itemid',40877),(17514,'history_str','itemid',40877),(17515,'history_text','itemid',40877),(17516,'history_uint','itemid',40877),(17517,'trends','itemid',40877),(17518,'trends_uint','itemid',40877),(17519,'events','itemid',40890),(17520,'history','itemid',40890),(17521,'history_log','itemid',40890),(17522,'history_str','itemid',40890),(17523,'history_text','itemid',40890),(17524,'history_uint','itemid',40890),(17525,'trends','itemid',40890),(17526,'trends_uint','itemid',40890),(17527,'events','itemid',40891),(17528,'history','itemid',40891),(17529,'history_log','itemid',40891),(17530,'history_str','itemid',40891),(17531,'history_text','itemid',40891),(17532,'history_uint','itemid',40891),(17533,'trends','itemid',40891),(17534,'trends_uint','itemid',40891),(17535,'events','itemid',40892),(17536,'history','itemid',40892),(17537,'history_log','itemid',40892),(17538,'history_str','itemid',40892),(17539,'history_text','itemid',40892),(17540,'history_uint','itemid',40892),(17541,'trends','itemid',40892),(17542,'trends_uint','itemid',40892),(17543,'events','itemid',40893),(17544,'history','itemid',40893),(17545,'history_log','itemid',40893),(17546,'history_str','itemid',40893),(17547,'history_text','itemid',40893),(17548,'history_uint','itemid',40893),(17549,'trends','itemid',40893),(17550,'trends_uint','itemid',40893),(17551,'events','itemid',40894),(17552,'history','itemid',40894),(17553,'history_log','itemid',40894),(17554,'history_str','itemid',40894),(17555,'history_text','itemid',40894),(17556,'history_uint','itemid',40894),(17557,'trends','itemid',40894),(17558,'trends_uint','itemid',40894),(17559,'events','itemid',40895),(17560,'history','itemid',40895),(17561,'history_log','itemid',40895),(17562,'history_str','itemid',40895),(17563,'history_text','itemid',40895),(17564,'history_uint','itemid',40895),(17565,'trends','itemid',40895),(17566,'trends_uint','itemid',40895),(17567,'events','itemid',27777),(17568,'history','itemid',27777),(17569,'history_log','itemid',27777),(17570,'history_str','itemid',27777),(17571,'history_text','itemid',27777),(17572,'history_uint','itemid',27777),(17573,'trends','itemid',27777),(17574,'trends_uint','itemid',27777),(17575,'events','itemid',27778),(17576,'history','itemid',27778),(17577,'history_log','itemid',27778),(17578,'history_str','itemid',27778),(17579,'history_text','itemid',27778),(17580,'history_uint','itemid',27778),(17581,'trends','itemid',27778),(17582,'trends_uint','itemid',27778),(17583,'events','itemid',43791),(17584,'history','itemid',43791),(17585,'history_log','itemid',43791),(17586,'history_str','itemid',43791),(17587,'history_text','itemid',43791),(17588,'history_uint','itemid',43791),(17589,'trends','itemid',43791),(17590,'trends_uint','itemid',43791),(17591,'events','itemid',40896),(17592,'history','itemid',40896),(17593,'history_log','itemid',40896),(17594,'history_str','itemid',40896),(17595,'history_text','itemid',40896),(17596,'history_uint','itemid',40896),(17597,'trends','itemid',40896),(17598,'trends_uint','itemid',40896),(17599,'events','itemid',40897),(17600,'history','itemid',40897),(17601,'history_log','itemid',40897),(17602,'history_str','itemid',40897),(17603,'history_text','itemid',40897),(17604,'history_uint','itemid',40897),(17605,'trends','itemid',40897),(17606,'trends_uint','itemid',40897),(17607,'events','itemid',40899),(17608,'history','itemid',40899),(17609,'history_log','itemid',40899),(17610,'history_str','itemid',40899),(17611,'history_text','itemid',40899),(17612,'history_uint','itemid',40899),(17613,'trends','itemid',40899),(17614,'trends_uint','itemid',40899),(17615,'events','itemid',40898),(17616,'history','itemid',40898),(17617,'history_log','itemid',40898),(17618,'history_str','itemid',40898),(17619,'history_text','itemid',40898),(17620,'history_uint','itemid',40898),(17621,'trends','itemid',40898),(17622,'trends_uint','itemid',40898),(17623,'events','itemid',40900),(17624,'history','itemid',40900),(17625,'history_log','itemid',40900),(17626,'history_str','itemid',40900),(17627,'history_text','itemid',40900),(17628,'history_uint','itemid',40900),(17629,'trends','itemid',40900),(17630,'trends_uint','itemid',40900),(17631,'events','itemid',40911),(17632,'history','itemid',40911),(17633,'history_log','itemid',40911),(17634,'history_str','itemid',40911),(17635,'history_text','itemid',40911),(17636,'history_uint','itemid',40911),(17637,'trends','itemid',40911),(17638,'trends_uint','itemid',40911),(17639,'events','itemid',40912),(17640,'history','itemid',40912),(17641,'history_log','itemid',40912),(17642,'history_str','itemid',40912),(17643,'history_text','itemid',40912),(17644,'history_uint','itemid',40912),(17645,'trends','itemid',40912),(17646,'trends_uint','itemid',40912),(17647,'events','itemid',40913),(17648,'history','itemid',40913),(17649,'history_log','itemid',40913),(17650,'history_str','itemid',40913),(17651,'history_text','itemid',40913),(17652,'history_uint','itemid',40913),(17653,'trends','itemid',40913),(17654,'trends_uint','itemid',40913),(17655,'events','itemid',40914),(17656,'history','itemid',40914),(17657,'history_log','itemid',40914),(17658,'history_str','itemid',40914),(17659,'history_text','itemid',40914),(17660,'history_uint','itemid',40914),(17661,'trends','itemid',40914),(17662,'trends_uint','itemid',40914),(17663,'events','itemid',40915),(17664,'history','itemid',40915),(17665,'history_log','itemid',40915),(17666,'history_str','itemid',40915),(17667,'history_text','itemid',40915),(17668,'history_uint','itemid',40915),(17669,'trends','itemid',40915),(17670,'trends_uint','itemid',40915),(17671,'events','itemid',40916),(17672,'history','itemid',40916),(17673,'history_log','itemid',40916),(17674,'history_str','itemid',40916),(17675,'history_text','itemid',40916),(17676,'history_uint','itemid',40916),(17677,'trends','itemid',40916),(17678,'trends_uint','itemid',40916),(17679,'events','itemid',27812),(17680,'history','itemid',27812),(17681,'history_log','itemid',27812),(17682,'history_str','itemid',27812),(17683,'history_text','itemid',27812),(17684,'history_uint','itemid',27812),(17685,'trends','itemid',27812),(17686,'trends_uint','itemid',27812),(17687,'events','itemid',27813),(17688,'history','itemid',27813),(17689,'history_log','itemid',27813),(17690,'history_str','itemid',27813),(17691,'history_text','itemid',27813),(17692,'history_uint','itemid',27813),(17693,'trends','itemid',27813),(17694,'trends_uint','itemid',27813),(17695,'events','itemid',43792),(17696,'history','itemid',43792),(17697,'history_log','itemid',43792),(17698,'history_str','itemid',43792),(17699,'history_text','itemid',43792),(17700,'history_uint','itemid',43792),(17701,'trends','itemid',43792),(17702,'trends_uint','itemid',43792),(17703,'events','itemid',40917),(17704,'history','itemid',40917),(17705,'history_log','itemid',40917),(17706,'history_str','itemid',40917),(17707,'history_text','itemid',40917),(17708,'history_uint','itemid',40917),(17709,'trends','itemid',40917),(17710,'trends_uint','itemid',40917),(17711,'events','itemid',40918),(17712,'history','itemid',40918),(17713,'history_log','itemid',40918),(17714,'history_str','itemid',40918),(17715,'history_text','itemid',40918),(17716,'history_uint','itemid',40918),(17717,'trends','itemid',40918),(17718,'trends_uint','itemid',40918),(17719,'events','itemid',40920),(17720,'history','itemid',40920),(17721,'history_log','itemid',40920),(17722,'history_str','itemid',40920),(17723,'history_text','itemid',40920),(17724,'history_uint','itemid',40920),(17725,'trends','itemid',40920),(17726,'trends_uint','itemid',40920),(17727,'events','itemid',40919),(17728,'history','itemid',40919),(17729,'history_log','itemid',40919),(17730,'history_str','itemid',40919),(17731,'history_text','itemid',40919),(17732,'history_uint','itemid',40919),(17733,'trends','itemid',40919),(17734,'trends_uint','itemid',40919),(17735,'events','itemid',27814),(17736,'history','itemid',27814),(17737,'history_log','itemid',27814),(17738,'history_str','itemid',27814),(17739,'history_text','itemid',27814),(17740,'history_uint','itemid',27814),(17741,'trends','itemid',27814),(17742,'trends_uint','itemid',27814),(17743,'events','itemid',30117),(17744,'history','itemid',30117),(17745,'history_log','itemid',30117),(17746,'history_str','itemid',30117),(17747,'history_text','itemid',30117),(17748,'history_uint','itemid',30117),(17749,'trends','itemid',30117),(17750,'trends_uint','itemid',30117),(17751,'events','itemid',40921),(17752,'history','itemid',40921),(17753,'history_log','itemid',40921),(17754,'history_str','itemid',40921),(17755,'history_text','itemid',40921),(17756,'history_uint','itemid',40921),(17757,'trends','itemid',40921),(17758,'trends_uint','itemid',40921),(17759,'events','itemid',42384),(17760,'history','itemid',42384),(17761,'history_log','itemid',42384),(17762,'history_str','itemid',42384),(17763,'history_text','itemid',42384),(17764,'history_uint','itemid',42384),(17765,'trends','itemid',42384),(17766,'trends_uint','itemid',42384),(17767,'events','itemid',42397),(17768,'history','itemid',42397),(17769,'history_log','itemid',42397),(17770,'history_str','itemid',42397),(17771,'history_text','itemid',42397),(17772,'history_uint','itemid',42397),(17773,'trends','itemid',42397),(17774,'trends_uint','itemid',42397),(17775,'events','itemid',42408),(17776,'history','itemid',42408),(17777,'history_log','itemid',42408),(17778,'history_str','itemid',42408),(17779,'history_text','itemid',42408),(17780,'history_uint','itemid',42408),(17781,'trends','itemid',42408),(17782,'trends_uint','itemid',42408),(17783,'events','itemid',42407),(17784,'history','itemid',42407),(17785,'history_log','itemid',42407),(17786,'history_str','itemid',42407),(17787,'history_text','itemid',42407),(17788,'history_uint','itemid',42407),(17789,'trends','itemid',42407),(17790,'trends_uint','itemid',42407),(17791,'events','itemid',42406),(17792,'history','itemid',42406),(17793,'history_log','itemid',42406),(17794,'history_str','itemid',42406),(17795,'history_text','itemid',42406),(17796,'history_uint','itemid',42406),(17797,'trends','itemid',42406),(17798,'trends_uint','itemid',42406),(17799,'events','itemid',42405),(17800,'history','itemid',42405),(17801,'history_log','itemid',42405),(17802,'history_str','itemid',42405),(17803,'history_text','itemid',42405),(17804,'history_uint','itemid',42405),(17805,'trends','itemid',42405),(17806,'trends_uint','itemid',42405),(17807,'events','itemid',42402),(17808,'history','itemid',42402),(17809,'history_log','itemid',42402),(17810,'history_str','itemid',42402),(17811,'history_text','itemid',42402),(17812,'history_uint','itemid',42402),(17813,'trends','itemid',42402),(17814,'trends_uint','itemid',42402),(17815,'events','itemid',42404),(17816,'history','itemid',42404),(17817,'history_log','itemid',42404),(17818,'history_str','itemid',42404),(17819,'history_text','itemid',42404),(17820,'history_uint','itemid',42404),(17821,'trends','itemid',42404),(17822,'trends_uint','itemid',42404),(17823,'events','itemid',42403),(17824,'history','itemid',42403),(17825,'history_log','itemid',42403),(17826,'history_str','itemid',42403),(17827,'history_text','itemid',42403),(17828,'history_uint','itemid',42403),(17829,'trends','itemid',42403),(17830,'trends_uint','itemid',42403),(17831,'events','itemid',42401),(17832,'history','itemid',42401),(17833,'history_log','itemid',42401),(17834,'history_str','itemid',42401),(17835,'history_text','itemid',42401),(17836,'history_uint','itemid',42401),(17837,'trends','itemid',42401),(17838,'trends_uint','itemid',42401),(17839,'events','itemid',42400),(17840,'history','itemid',42400),(17841,'history_log','itemid',42400),(17842,'history_str','itemid',42400),(17843,'history_text','itemid',42400),(17844,'history_uint','itemid',42400),(17845,'trends','itemid',42400),(17846,'trends_uint','itemid',42400),(17847,'events','itemid',42399),(17848,'history','itemid',42399),(17849,'history_log','itemid',42399),(17850,'history_str','itemid',42399),(17851,'history_text','itemid',42399),(17852,'history_uint','itemid',42399),(17853,'trends','itemid',42399),(17854,'trends_uint','itemid',42399),(17855,'events','itemid',43874),(17856,'history','itemid',43874),(17857,'history_log','itemid',43874),(17858,'history_str','itemid',43874),(17859,'history_text','itemid',43874),(17860,'history_uint','itemid',43874),(17861,'trends','itemid',43874),(17862,'trends_uint','itemid',43874),(17863,'events','itemid',42398),(17864,'history','itemid',42398),(17865,'history_log','itemid',42398),(17866,'history_str','itemid',42398),(17867,'history_text','itemid',42398),(17868,'history_uint','itemid',42398),(17869,'trends','itemid',42398),(17870,'trends_uint','itemid',42398),(17871,'events','itemid',42396),(17872,'history','itemid',42396),(17873,'history_log','itemid',42396),(17874,'history_str','itemid',42396),(17875,'history_text','itemid',42396),(17876,'history_uint','itemid',42396),(17877,'trends','itemid',42396),(17878,'trends_uint','itemid',42396),(17879,'events','itemid',42392),(17880,'history','itemid',42392),(17881,'history_log','itemid',42392),(17882,'history_str','itemid',42392),(17883,'history_text','itemid',42392),(17884,'history_uint','itemid',42392),(17885,'trends','itemid',42392),(17886,'trends_uint','itemid',42392),(17887,'events','itemid',42385),(17888,'history','itemid',42385),(17889,'history_log','itemid',42385),(17890,'history_str','itemid',42385),(17891,'history_text','itemid',42385),(17892,'history_uint','itemid',42385),(17893,'trends','itemid',42385),(17894,'trends_uint','itemid',42385),(17895,'events','itemid',42395),(17896,'history','itemid',42395),(17897,'history_log','itemid',42395),(17898,'history_str','itemid',42395),(17899,'history_text','itemid',42395),(17900,'history_uint','itemid',42395),(17901,'trends','itemid',42395),(17902,'trends_uint','itemid',42395),(17903,'events','itemid',42394),(17904,'history','itemid',42394),(17905,'history_log','itemid',42394),(17906,'history_str','itemid',42394),(17907,'history_text','itemid',42394),(17908,'history_uint','itemid',42394),(17909,'trends','itemid',42394),(17910,'trends_uint','itemid',42394),(17911,'events','itemid',42393),(17912,'history','itemid',42393),(17913,'history_log','itemid',42393),(17914,'history_str','itemid',42393),(17915,'history_text','itemid',42393),(17916,'history_uint','itemid',42393),(17917,'trends','itemid',42393),(17918,'trends_uint','itemid',42393),(17919,'events','itemid',42391),(17920,'history','itemid',42391),(17921,'history_log','itemid',42391),(17922,'history_str','itemid',42391),(17923,'history_text','itemid',42391),(17924,'history_uint','itemid',42391),(17925,'trends','itemid',42391),(17926,'trends_uint','itemid',42391),(17927,'events','itemid',42390),(17928,'history','itemid',42390),(17929,'history_log','itemid',42390),(17930,'history_str','itemid',42390),(17931,'history_text','itemid',42390),(17932,'history_uint','itemid',42390),(17933,'trends','itemid',42390),(17934,'trends_uint','itemid',42390),(17935,'events','itemid',42389),(17936,'history','itemid',42389),(17937,'history_log','itemid',42389),(17938,'history_str','itemid',42389),(17939,'history_text','itemid',42389),(17940,'history_uint','itemid',42389),(17941,'trends','itemid',42389),(17942,'trends_uint','itemid',42389),(17943,'events','itemid',42388),(17944,'history','itemid',42388),(17945,'history_log','itemid',42388),(17946,'history_str','itemid',42388),(17947,'history_text','itemid',42388),(17948,'history_uint','itemid',42388),(17949,'trends','itemid',42388),(17950,'trends_uint','itemid',42388),(17951,'events','itemid',42387),(17952,'history','itemid',42387),(17953,'history_log','itemid',42387),(17954,'history_str','itemid',42387),(17955,'history_text','itemid',42387),(17956,'history_uint','itemid',42387),(17957,'trends','itemid',42387),(17958,'trends_uint','itemid',42387),(17959,'events','itemid',42386),(17960,'history','itemid',42386),(17961,'history_log','itemid',42386),(17962,'history_str','itemid',42386),(17963,'history_text','itemid',42386),(17964,'history_uint','itemid',42386),(17965,'trends','itemid',42386),(17966,'trends_uint','itemid',42386),(17967,'events','itemid',42409),(17968,'history','itemid',42409),(17969,'history_log','itemid',42409),(17970,'history_str','itemid',42409),(17971,'history_text','itemid',42409),(17972,'history_uint','itemid',42409),(17973,'trends','itemid',42409),(17974,'trends_uint','itemid',42409),(17975,'events','itemid',40844),(17976,'history','itemid',40844),(17977,'history_log','itemid',40844),(17978,'history_str','itemid',40844),(17979,'history_text','itemid',40844),(17980,'history_uint','itemid',40844),(17981,'trends','itemid',40844),(17982,'trends_uint','itemid',40844),(17983,'events','itemid',40845),(17984,'history','itemid',40845),(17985,'history_log','itemid',40845),(17986,'history_str','itemid',40845),(17987,'history_text','itemid',40845),(17988,'history_uint','itemid',40845),(17989,'trends','itemid',40845),(17990,'trends_uint','itemid',40845),(17991,'events','itemid',40846),(17992,'history','itemid',40846),(17993,'history_log','itemid',40846),(17994,'history_str','itemid',40846),(17995,'history_text','itemid',40846),(17996,'history_uint','itemid',40846),(17997,'trends','itemid',40846),(17998,'trends_uint','itemid',40846),(17999,'events','itemid',40847),(18000,'history','itemid',40847),(18001,'history_log','itemid',40847),(18002,'history_str','itemid',40847),(18003,'history_text','itemid',40847),(18004,'history_uint','itemid',40847),(18005,'trends','itemid',40847),(18006,'trends_uint','itemid',40847),(18007,'events','itemid',40848),(18008,'history','itemid',40848),(18009,'history_log','itemid',40848),(18010,'history_str','itemid',40848),(18011,'history_text','itemid',40848),(18012,'history_uint','itemid',40848),(18013,'trends','itemid',40848),(18014,'trends_uint','itemid',40848),(18015,'events','itemid',28143),(18016,'history','itemid',28143),(18017,'history_log','itemid',28143),(18018,'history_str','itemid',28143),(18019,'history_text','itemid',28143),(18020,'history_uint','itemid',28143),(18021,'trends','itemid',28143),(18022,'trends_uint','itemid',28143),(18023,'events','itemid',40849),(18024,'history','itemid',40849),(18025,'history_log','itemid',40849),(18026,'history_str','itemid',40849),(18027,'history_text','itemid',40849),(18028,'history_uint','itemid',40849),(18029,'trends','itemid',40849),(18030,'trends_uint','itemid',40849),(18031,'events','itemid',28141),(18032,'history','itemid',28141),(18033,'history_log','itemid',28141),(18034,'history_str','itemid',28141),(18035,'history_text','itemid',28141),(18036,'history_uint','itemid',28141),(18037,'trends','itemid',28141),(18038,'trends_uint','itemid',28141),(18039,'events','itemid',28142),(18040,'history','itemid',28142),(18041,'history_log','itemid',28142),(18042,'history_str','itemid',28142),(18043,'history_text','itemid',28142),(18044,'history_uint','itemid',28142),(18045,'trends','itemid',28142),(18046,'trends_uint','itemid',28142),(18047,'events','itemid',43789),(18048,'history','itemid',43789),(18049,'history_log','itemid',43789),(18050,'history_str','itemid',43789),(18051,'history_text','itemid',43789),(18052,'history_uint','itemid',43789),(18053,'trends','itemid',43789),(18054,'trends_uint','itemid',43789),(18055,'events','itemid',40850),(18056,'history','itemid',40850),(18057,'history_log','itemid',40850),(18058,'history_str','itemid',40850),(18059,'history_text','itemid',40850),(18060,'history_uint','itemid',40850),(18061,'trends','itemid',40850),(18062,'trends_uint','itemid',40850),(18063,'events','itemid',40851),(18064,'history','itemid',40851),(18065,'history_log','itemid',40851),(18066,'history_str','itemid',40851),(18067,'history_text','itemid',40851),(18068,'history_uint','itemid',40851),(18069,'trends','itemid',40851),(18070,'trends_uint','itemid',40851),(18071,'events','itemid',40853),(18072,'history','itemid',40853),(18073,'history_log','itemid',40853),(18074,'history_str','itemid',40853),(18075,'history_text','itemid',40853),(18076,'history_uint','itemid',40853),(18077,'trends','itemid',40853),(18078,'trends_uint','itemid',40853),(18079,'events','itemid',40852),(18080,'history','itemid',40852),(18081,'history_log','itemid',40852),(18082,'history_str','itemid',40852),(18083,'history_text','itemid',40852),(18084,'history_uint','itemid',40852),(18085,'trends','itemid',40852),(18086,'trends_uint','itemid',40852),(18087,'events','itemid',40854),(18088,'history','itemid',40854),(18089,'history_log','itemid',40854),(18090,'history_str','itemid',40854),(18091,'history_text','itemid',40854),(18092,'history_uint','itemid',40854),(18093,'trends','itemid',40854),(18094,'trends_uint','itemid',40854),(18095,'events','itemid',42642),(18096,'history','itemid',42642),(18097,'history_log','itemid',42642),(18098,'history_str','itemid',42642),(18099,'history_text','itemid',42642),(18100,'history_uint','itemid',42642),(18101,'trends','itemid',42642),(18102,'trends_uint','itemid',42642),(18103,'events','itemid',42643),(18104,'history','itemid',42643),(18105,'history_log','itemid',42643),(18106,'history_str','itemid',42643),(18107,'history_text','itemid',42643),(18108,'history_uint','itemid',42643),(18109,'trends','itemid',42643),(18110,'trends_uint','itemid',42643),(18111,'events','itemid',42644),(18112,'history','itemid',42644),(18113,'history_log','itemid',42644),(18114,'history_str','itemid',42644),(18115,'history_text','itemid',42644),(18116,'history_uint','itemid',42644),(18117,'trends','itemid',42644),(18118,'trends_uint','itemid',42644),(18119,'events','itemid',28388),(18120,'history','itemid',28388),(18121,'history_log','itemid',28388),(18122,'history_str','itemid',28388),(18123,'history_text','itemid',28388),(18124,'history_uint','itemid',28388),(18125,'trends','itemid',28388),(18126,'trends_uint','itemid',28388),(18127,'events','itemid',42645),(18128,'history','itemid',42645),(18129,'history_log','itemid',42645),(18130,'history_str','itemid',42645),(18131,'history_text','itemid',42645),(18132,'history_uint','itemid',42645),(18133,'trends','itemid',42645),(18134,'trends_uint','itemid',42645),(18135,'events','itemid',42646),(18136,'history','itemid',42646),(18137,'history_log','itemid',42646),(18138,'history_str','itemid',42646),(18139,'history_text','itemid',42646),(18140,'history_uint','itemid',42646),(18141,'trends','itemid',42646),(18142,'trends_uint','itemid',42646),(18143,'events','itemid',42647),(18144,'history','itemid',42647),(18145,'history_log','itemid',42647),(18146,'history_str','itemid',42647),(18147,'history_text','itemid',42647),(18148,'history_uint','itemid',42647),(18149,'trends','itemid',42647),(18150,'trends_uint','itemid',42647),(18151,'events','itemid',28390),(18152,'history','itemid',28390),(18153,'history_log','itemid',28390),(18154,'history_str','itemid',28390),(18155,'history_text','itemid',28390),(18156,'history_uint','itemid',28390),(18157,'trends','itemid',28390),(18158,'trends_uint','itemid',28390),(18159,'events','itemid',28391),(18160,'history','itemid',28391),(18161,'history_log','itemid',28391),(18162,'history_str','itemid',28391),(18163,'history_text','itemid',28391),(18164,'history_uint','itemid',28391),(18165,'trends','itemid',28391),(18166,'trends_uint','itemid',28391),(18167,'events','itemid',43900),(18168,'history','itemid',43900),(18169,'history_log','itemid',43900),(18170,'history_str','itemid',43900),(18171,'history_text','itemid',43900),(18172,'history_uint','itemid',43900),(18173,'trends','itemid',43900),(18174,'trends_uint','itemid',43900),(18175,'events','itemid',42648),(18176,'history','itemid',42648),(18177,'history_log','itemid',42648),(18178,'history_str','itemid',42648),(18179,'history_text','itemid',42648),(18180,'history_uint','itemid',42648),(18181,'trends','itemid',42648),(18182,'trends_uint','itemid',42648),(18183,'events','itemid',42649),(18184,'history','itemid',42649),(18185,'history_log','itemid',42649),(18186,'history_str','itemid',42649),(18187,'history_text','itemid',42649),(18188,'history_uint','itemid',42649),(18189,'trends','itemid',42649),(18190,'trends_uint','itemid',42649),(18191,'events','itemid',42651),(18192,'history','itemid',42651),(18193,'history_log','itemid',42651),(18194,'history_str','itemid',42651),(18195,'history_text','itemid',42651),(18196,'history_uint','itemid',42651),(18197,'trends','itemid',42651),(18198,'trends_uint','itemid',42651),(18199,'events','itemid',42650),(18200,'history','itemid',42650),(18201,'history_log','itemid',42650),(18202,'history_str','itemid',42650),(18203,'history_text','itemid',42650),(18204,'history_uint','itemid',42650),(18205,'trends','itemid',42650),(18206,'trends_uint','itemid',42650),(18207,'events','itemid',29994),(18208,'history','itemid',29994),(18209,'history_log','itemid',29994),(18210,'history_str','itemid',29994),(18211,'history_text','itemid',29994),(18212,'history_uint','itemid',29994),(18213,'trends','itemid',29994),(18214,'trends_uint','itemid',29994),(18215,'events','itemid',42652),(18216,'history','itemid',42652),(18217,'history_log','itemid',42652),(18218,'history_str','itemid',42652),(18219,'history_text','itemid',42652),(18220,'history_uint','itemid',42652),(18221,'trends','itemid',42652),(18222,'trends_uint','itemid',42652),(18223,'events','itemid',42653),(18224,'history','itemid',42653),(18225,'history_log','itemid',42653),(18226,'history_str','itemid',42653),(18227,'history_text','itemid',42653),(18228,'history_uint','itemid',42653),(18229,'trends','itemid',42653),(18230,'trends_uint','itemid',42653),(18231,'events','itemid',42654),(18232,'history','itemid',42654),(18233,'history_log','itemid',42654),(18234,'history_str','itemid',42654),(18235,'history_text','itemid',42654),(18236,'history_uint','itemid',42654),(18237,'trends','itemid',42654),(18238,'trends_uint','itemid',42654),(18239,'events','itemid',42655),(18240,'history','itemid',42655),(18241,'history_log','itemid',42655),(18242,'history_str','itemid',42655),(18243,'history_text','itemid',42655),(18244,'history_uint','itemid',42655),(18245,'trends','itemid',42655),(18246,'trends_uint','itemid',42655),(18247,'events','itemid',42656),(18248,'history','itemid',42656),(18249,'history_log','itemid',42656),(18250,'history_str','itemid',42656),(18251,'history_text','itemid',42656),(18252,'history_uint','itemid',42656),(18253,'trends','itemid',42656),(18254,'trends_uint','itemid',42656),(18255,'events','itemid',42657),(18256,'history','itemid',42657),(18257,'history_log','itemid',42657),(18258,'history_str','itemid',42657),(18259,'history_text','itemid',42657),(18260,'history_uint','itemid',42657),(18261,'trends','itemid',42657),(18262,'trends_uint','itemid',42657),(18263,'events','itemid',42658),(18264,'history','itemid',42658),(18265,'history_log','itemid',42658),(18266,'history_str','itemid',42658),(18267,'history_text','itemid',42658),(18268,'history_uint','itemid',42658),(18269,'trends','itemid',42658),(18270,'trends_uint','itemid',42658),(18271,'events','itemid',28466),(18272,'history','itemid',28466),(18273,'history_log','itemid',28466),(18274,'history_str','itemid',28466),(18275,'history_text','itemid',28466),(18276,'history_uint','itemid',28466),(18277,'trends','itemid',28466),(18278,'trends_uint','itemid',28466),(18279,'events','itemid',28467),(18280,'history','itemid',28467),(18281,'history_log','itemid',28467),(18282,'history_str','itemid',28467),(18283,'history_text','itemid',28467),(18284,'history_uint','itemid',28467),(18285,'trends','itemid',28467),(18286,'trends_uint','itemid',28467),(18287,'events','itemid',44050),(18288,'history','itemid',44050),(18289,'history_log','itemid',44050),(18290,'history_str','itemid',44050),(18291,'history_text','itemid',44050),(18292,'history_uint','itemid',44050),(18293,'trends','itemid',44050),(18294,'trends_uint','itemid',44050),(18295,'events','itemid',42659),(18296,'history','itemid',42659),(18297,'history_log','itemid',42659),(18298,'history_str','itemid',42659),(18299,'history_text','itemid',42659),(18300,'history_uint','itemid',42659),(18301,'trends','itemid',42659),(18302,'trends_uint','itemid',42659),(18303,'events','itemid',42660),(18304,'history','itemid',42660),(18305,'history_log','itemid',42660),(18306,'history_str','itemid',42660),(18307,'history_text','itemid',42660),(18308,'history_uint','itemid',42660),(18309,'trends','itemid',42660),(18310,'trends_uint','itemid',42660),(18311,'events','itemid',42662),(18312,'history','itemid',42662),(18313,'history_log','itemid',42662),(18314,'history_str','itemid',42662),(18315,'history_text','itemid',42662),(18316,'history_uint','itemid',42662),(18317,'trends','itemid',42662),(18318,'trends_uint','itemid',42662),(18319,'events','itemid',42661),(18320,'history','itemid',42661),(18321,'history_log','itemid',42661),(18322,'history_str','itemid',42661),(18323,'history_text','itemid',42661),(18324,'history_uint','itemid',42661),(18325,'trends','itemid',42661),(18326,'trends_uint','itemid',42661),(18327,'events','itemid',28465),(18328,'history','itemid',28465),(18329,'history_log','itemid',28465),(18330,'history_str','itemid',28465),(18331,'history_text','itemid',28465),(18332,'history_uint','itemid',28465),(18333,'trends','itemid',28465),(18334,'trends_uint','itemid',28465),(18335,'events','itemid',42663),(18336,'history','itemid',42663),(18337,'history_log','itemid',42663),(18338,'history_str','itemid',42663),(18339,'history_text','itemid',42663),(18340,'history_uint','itemid',42663),(18341,'trends','itemid',42663),(18342,'trends_uint','itemid',42663),(18343,'events','itemid',28991),(18344,'history','itemid',28991),(18345,'history_log','itemid',28991),(18346,'history_str','itemid',28991),(18347,'history_text','itemid',28991),(18348,'history_uint','itemid',28991),(18349,'trends','itemid',28991),(18350,'trends_uint','itemid',28991),(18351,'events','itemid',28989),(18352,'history','itemid',28989),(18353,'history_log','itemid',28989),(18354,'history_str','itemid',28989),(18355,'history_text','itemid',28989),(18356,'history_uint','itemid',28989),(18357,'trends','itemid',28989),(18358,'trends_uint','itemid',28989),(18359,'events','itemid',28987),(18360,'history','itemid',28987),(18361,'history_log','itemid',28987),(18362,'history_str','itemid',28987),(18363,'history_text','itemid',28987),(18364,'history_uint','itemid',28987),(18365,'trends','itemid',28987),(18366,'trends_uint','itemid',28987),(18367,'events','itemid',28988),(18368,'history','itemid',28988),(18369,'history_log','itemid',28988),(18370,'history_str','itemid',28988),(18371,'history_text','itemid',28988),(18372,'history_uint','itemid',28988),(18373,'trends','itemid',28988),(18374,'trends_uint','itemid',28988),(18375,'events','itemid',28990),(18376,'history','itemid',28990),(18377,'history_log','itemid',28990),(18378,'history_str','itemid',28990),(18379,'history_text','itemid',28990),(18380,'history_uint','itemid',28990),(18381,'trends','itemid',28990),(18382,'trends_uint','itemid',28990),(18383,'events','itemid',28992),(18384,'history','itemid',28992),(18385,'history_log','itemid',28992),(18386,'history_str','itemid',28992),(18387,'history_text','itemid',28992),(18388,'history_uint','itemid',28992),(18389,'trends','itemid',28992),(18390,'trends_uint','itemid',28992),(18391,'events','itemid',29102),(18392,'history','itemid',29102),(18393,'history_log','itemid',29102),(18394,'history_str','itemid',29102),(18395,'history_text','itemid',29102),(18396,'history_uint','itemid',29102),(18397,'trends','itemid',29102),(18398,'trends_uint','itemid',29102),(18399,'events','itemid',29100),(18400,'history','itemid',29100),(18401,'history_log','itemid',29100),(18402,'history_str','itemid',29100),(18403,'history_text','itemid',29100),(18404,'history_uint','itemid',29100),(18405,'trends','itemid',29100),(18406,'trends_uint','itemid',29100),(18407,'events','itemid',29096),(18408,'history','itemid',29096),(18409,'history_log','itemid',29096),(18410,'history_str','itemid',29096),(18411,'history_text','itemid',29096),(18412,'history_uint','itemid',29096),(18413,'trends','itemid',29096),(18414,'trends_uint','itemid',29096),(18415,'events','itemid',29101),(18416,'history','itemid',29101),(18417,'history_log','itemid',29101),(18418,'history_str','itemid',29101),(18419,'history_text','itemid',29101),(18420,'history_uint','itemid',29101),(18421,'trends','itemid',29101),(18422,'trends_uint','itemid',29101),(18423,'events','itemid',29087),(18424,'history','itemid',29087),(18425,'history_log','itemid',29087),(18426,'history_str','itemid',29087),(18427,'history_text','itemid',29087),(18428,'history_uint','itemid',29087),(18429,'trends','itemid',29087),(18430,'trends_uint','itemid',29087),(18431,'events','itemid',29089),(18432,'history','itemid',29089),(18433,'history_log','itemid',29089),(18434,'history_str','itemid',29089),(18435,'history_text','itemid',29089),(18436,'history_uint','itemid',29089),(18437,'trends','itemid',29089),(18438,'trends_uint','itemid',29089),(18439,'events','itemid',29198),(18440,'history','itemid',29198),(18441,'history_log','itemid',29198),(18442,'history_str','itemid',29198),(18443,'history_text','itemid',29198),(18444,'history_uint','itemid',29198),(18445,'trends','itemid',29198),(18446,'trends_uint','itemid',29198),(18447,'events','itemid',29091),(18448,'history','itemid',29091),(18449,'history_log','itemid',29091),(18450,'history_str','itemid',29091),(18451,'history_text','itemid',29091),(18452,'history_uint','itemid',29091),(18453,'trends','itemid',29091),(18454,'trends_uint','itemid',29091),(18455,'events','itemid',29090),(18456,'history','itemid',29090),(18457,'history_log','itemid',29090),(18458,'history_str','itemid',29090),(18459,'history_text','itemid',29090),(18460,'history_uint','itemid',29090),(18461,'trends','itemid',29090),(18462,'trends_uint','itemid',29090),(18463,'events','itemid',29099),(18464,'history','itemid',29099),(18465,'history_log','itemid',29099),(18466,'history_str','itemid',29099),(18467,'history_text','itemid',29099),(18468,'history_uint','itemid',29099),(18469,'trends','itemid',29099),(18470,'trends_uint','itemid',29099),(18471,'events','itemid',29093),(18472,'history','itemid',29093),(18473,'history_log','itemid',29093),(18474,'history_str','itemid',29093),(18475,'history_text','itemid',29093),(18476,'history_uint','itemid',29093),(18477,'trends','itemid',29093),(18478,'trends_uint','itemid',29093),(18479,'events','itemid',29088),(18480,'history','itemid',29088),(18481,'history_log','itemid',29088),(18482,'history_str','itemid',29088),(18483,'history_text','itemid',29088),(18484,'history_uint','itemid',29088),(18485,'trends','itemid',29088),(18486,'trends_uint','itemid',29088),(18487,'events','itemid',29095),(18488,'history','itemid',29095),(18489,'history_log','itemid',29095),(18490,'history_str','itemid',29095),(18491,'history_text','itemid',29095),(18492,'history_uint','itemid',29095),(18493,'trends','itemid',29095),(18494,'trends_uint','itemid',29095),(18495,'events','itemid',29092),(18496,'history','itemid',29092),(18497,'history_log','itemid',29092),(18498,'history_str','itemid',29092),(18499,'history_text','itemid',29092),(18500,'history_uint','itemid',29092),(18501,'trends','itemid',29092),(18502,'trends_uint','itemid',29092),(18503,'events','itemid',29094),(18504,'history','itemid',29094),(18505,'history_log','itemid',29094),(18506,'history_str','itemid',29094),(18507,'history_text','itemid',29094),(18508,'history_uint','itemid',29094),(18509,'trends','itemid',29094),(18510,'trends_uint','itemid',29094),(18511,'events','itemid',29098),(18512,'history','itemid',29098),(18513,'history_log','itemid',29098),(18514,'history_str','itemid',29098),(18515,'history_text','itemid',29098),(18516,'history_uint','itemid',29098),(18517,'trends','itemid',29098),(18518,'trends_uint','itemid',29098),(18519,'events','itemid',29097),(18520,'history','itemid',29097),(18521,'history_log','itemid',29097),(18522,'history_str','itemid',29097),(18523,'history_text','itemid',29097),(18524,'history_uint','itemid',29097),(18525,'trends','itemid',29097),(18526,'trends_uint','itemid',29097),(18527,'events','itemid',44371),(18528,'history','itemid',44371),(18529,'history_log','itemid',44371),(18530,'history_str','itemid',44371),(18531,'history_text','itemid',44371),(18532,'history_uint','itemid',44371),(18533,'trends','itemid',44371),(18534,'trends_uint','itemid',44371),(18535,'events','itemid',29116),(18536,'history','itemid',29116),(18537,'history_log','itemid',29116),(18538,'history_str','itemid',29116),(18539,'history_text','itemid',29116),(18540,'history_uint','itemid',29116),(18541,'trends','itemid',29116),(18542,'trends_uint','itemid',29116),(18543,'events','itemid',29117),(18544,'history','itemid',29117),(18545,'history_log','itemid',29117),(18546,'history_str','itemid',29117),(18547,'history_text','itemid',29117),(18548,'history_uint','itemid',29117),(18549,'trends','itemid',29117),(18550,'trends_uint','itemid',29117),(18551,'events','itemid',29118),(18552,'history','itemid',29118),(18553,'history_log','itemid',29118),(18554,'history_str','itemid',29118),(18555,'history_text','itemid',29118),(18556,'history_uint','itemid',29118),(18557,'trends','itemid',29118),(18558,'trends_uint','itemid',29118),(18559,'events','itemid',29119),(18560,'history','itemid',29119),(18561,'history_log','itemid',29119),(18562,'history_str','itemid',29119),(18563,'history_text','itemid',29119),(18564,'history_uint','itemid',29119),(18565,'trends','itemid',29119),(18566,'trends_uint','itemid',29119),(18567,'events','itemid',29111),(18568,'history','itemid',29111),(18569,'history_log','itemid',29111),(18570,'history_str','itemid',29111),(18571,'history_text','itemid',29111),(18572,'history_uint','itemid',29111),(18573,'trends','itemid',29111),(18574,'trends_uint','itemid',29111),(18575,'events','itemid',29113),(18576,'history','itemid',29113),(18577,'history_log','itemid',29113),(18578,'history_str','itemid',29113),(18579,'history_text','itemid',29113),(18580,'history_uint','itemid',29113),(18581,'trends','itemid',29113),(18582,'trends_uint','itemid',29113),(18583,'events','itemid',29112),(18584,'history','itemid',29112),(18585,'history_log','itemid',29112),(18586,'history_str','itemid',29112),(18587,'history_text','itemid',29112),(18588,'history_uint','itemid',29112),(18589,'trends','itemid',29112),(18590,'trends_uint','itemid',29112),(18591,'events','itemid',29122),(18592,'history','itemid',29122),(18593,'history_log','itemid',29122),(18594,'history_str','itemid',29122),(18595,'history_text','itemid',29122),(18596,'history_uint','itemid',29122),(18597,'trends','itemid',29122),(18598,'trends_uint','itemid',29122),(18599,'events','itemid',29121),(18600,'history','itemid',29121),(18601,'history_log','itemid',29121),(18602,'history_str','itemid',29121),(18603,'history_text','itemid',29121),(18604,'history_uint','itemid',29121),(18605,'trends','itemid',29121),(18606,'trends_uint','itemid',29121),(18607,'events','itemid',29123),(18608,'history','itemid',29123),(18609,'history_log','itemid',29123),(18610,'history_str','itemid',29123),(18611,'history_text','itemid',29123),(18612,'history_uint','itemid',29123),(18613,'trends','itemid',29123),(18614,'trends_uint','itemid',29123),(18615,'events','itemid',29114),(18616,'history','itemid',29114),(18617,'history_log','itemid',29114),(18618,'history_str','itemid',29114),(18619,'history_text','itemid',29114),(18620,'history_uint','itemid',29114),(18621,'trends','itemid',29114),(18622,'trends_uint','itemid',29114),(18623,'events','itemid',29110),(18624,'history','itemid',29110),(18625,'history_log','itemid',29110),(18626,'history_str','itemid',29110),(18627,'history_text','itemid',29110),(18628,'history_uint','itemid',29110),(18629,'trends','itemid',29110),(18630,'trends_uint','itemid',29110),(18631,'events','itemid',29115),(18632,'history','itemid',29115),(18633,'history_log','itemid',29115),(18634,'history_str','itemid',29115),(18635,'history_text','itemid',29115),(18636,'history_uint','itemid',29115),(18637,'trends','itemid',29115),(18638,'trends_uint','itemid',29115),(18639,'events','itemid',29120),(18640,'history','itemid',29120),(18641,'history_log','itemid',29120),(18642,'history_str','itemid',29120),(18643,'history_text','itemid',29120),(18644,'history_uint','itemid',29120),(18645,'trends','itemid',29120),(18646,'trends_uint','itemid',29120),(18647,'events','itemid',29415),(18648,'history','itemid',29415),(18649,'history_log','itemid',29415),(18650,'history_str','itemid',29415),(18651,'history_text','itemid',29415),(18652,'history_uint','itemid',29415),(18653,'trends','itemid',29415),(18654,'trends_uint','itemid',29415),(18655,'events','itemid',29423),(18656,'history','itemid',29423),(18657,'history_log','itemid',29423),(18658,'history_str','itemid',29423),(18659,'history_text','itemid',29423),(18660,'history_uint','itemid',29423),(18661,'trends','itemid',29423),(18662,'trends_uint','itemid',29423),(18663,'events','itemid',29424),(18664,'history','itemid',29424),(18665,'history_log','itemid',29424),(18666,'history_str','itemid',29424),(18667,'history_text','itemid',29424),(18668,'history_uint','itemid',29424),(18669,'trends','itemid',29424),(18670,'trends_uint','itemid',29424),(18671,'events','itemid',29395),(18672,'history','itemid',29395),(18673,'history_log','itemid',29395),(18674,'history_str','itemid',29395),(18675,'history_text','itemid',29395),(18676,'history_uint','itemid',29395),(18677,'trends','itemid',29395),(18678,'trends_uint','itemid',29395),(18679,'events','itemid',29404),(18680,'history','itemid',29404),(18681,'history_log','itemid',29404),(18682,'history_str','itemid',29404),(18683,'history_text','itemid',29404),(18684,'history_uint','itemid',29404),(18685,'trends','itemid',29404),(18686,'trends_uint','itemid',29404),(18687,'events','itemid',29408),(18688,'history','itemid',29408),(18689,'history_log','itemid',29408),(18690,'history_str','itemid',29408),(18691,'history_text','itemid',29408),(18692,'history_uint','itemid',29408),(18693,'trends','itemid',29408),(18694,'trends_uint','itemid',29408),(18695,'events','itemid',29407),(18696,'history','itemid',29407),(18697,'history_log','itemid',29407),(18698,'history_str','itemid',29407),(18699,'history_text','itemid',29407),(18700,'history_uint','itemid',29407),(18701,'trends','itemid',29407),(18702,'trends_uint','itemid',29407),(18703,'events','itemid',29416),(18704,'history','itemid',29416),(18705,'history_log','itemid',29416),(18706,'history_str','itemid',29416),(18707,'history_text','itemid',29416),(18708,'history_uint','itemid',29416),(18709,'trends','itemid',29416),(18710,'trends_uint','itemid',29416),(18711,'events','itemid',29409),(18712,'history','itemid',29409),(18713,'history_log','itemid',29409),(18714,'history_str','itemid',29409),(18715,'history_text','itemid',29409),(18716,'history_uint','itemid',29409),(18717,'trends','itemid',29409),(18718,'trends_uint','itemid',29409),(18719,'events','itemid',29406),(18720,'history','itemid',29406),(18721,'history_log','itemid',29406),(18722,'history_str','itemid',29406),(18723,'history_text','itemid',29406),(18724,'history_uint','itemid',29406),(18725,'trends','itemid',29406),(18726,'trends_uint','itemid',29406),(18727,'events','itemid',29410),(18728,'history','itemid',29410),(18729,'history_log','itemid',29410),(18730,'history_str','itemid',29410),(18731,'history_text','itemid',29410),(18732,'history_uint','itemid',29410),(18733,'trends','itemid',29410),(18734,'trends_uint','itemid',29410),(18735,'events','itemid',29418),(18736,'history','itemid',29418),(18737,'history_log','itemid',29418),(18738,'history_str','itemid',29418),(18739,'history_text','itemid',29418),(18740,'history_uint','itemid',29418),(18741,'trends','itemid',29418),(18742,'trends_uint','itemid',29418),(18743,'events','itemid',29420),(18744,'history','itemid',29420),(18745,'history_log','itemid',29420),(18746,'history_str','itemid',29420),(18747,'history_text','itemid',29420),(18748,'history_uint','itemid',29420),(18749,'trends','itemid',29420),(18750,'trends_uint','itemid',29420),(18751,'events','itemid',29419),(18752,'history','itemid',29419),(18753,'history_log','itemid',29419),(18754,'history_str','itemid',29419),(18755,'history_text','itemid',29419),(18756,'history_uint','itemid',29419),(18757,'trends','itemid',29419),(18758,'trends_uint','itemid',29419),(18759,'events','itemid',29411),(18760,'history','itemid',29411),(18761,'history_log','itemid',29411),(18762,'history_str','itemid',29411),(18763,'history_text','itemid',29411),(18764,'history_uint','itemid',29411),(18765,'trends','itemid',29411),(18766,'trends_uint','itemid',29411),(18767,'events','itemid',29417),(18768,'history','itemid',29417),(18769,'history_log','itemid',29417),(18770,'history_str','itemid',29417),(18771,'history_text','itemid',29417),(18772,'history_uint','itemid',29417),(18773,'trends','itemid',29417),(18774,'trends_uint','itemid',29417),(18775,'events','itemid',29412),(18776,'history','itemid',29412),(18777,'history_log','itemid',29412),(18778,'history_str','itemid',29412),(18779,'history_text','itemid',29412),(18780,'history_uint','itemid',29412),(18781,'trends','itemid',29412),(18782,'trends_uint','itemid',29412),(18783,'events','itemid',29399),(18784,'history','itemid',29399),(18785,'history_log','itemid',29399),(18786,'history_str','itemid',29399),(18787,'history_text','itemid',29399),(18788,'history_uint','itemid',29399),(18789,'trends','itemid',29399),(18790,'trends_uint','itemid',29399),(18791,'events','itemid',29405),(18792,'history','itemid',29405),(18793,'history_log','itemid',29405),(18794,'history_str','itemid',29405),(18795,'history_text','itemid',29405),(18796,'history_uint','itemid',29405),(18797,'trends','itemid',29405),(18798,'trends_uint','itemid',29405),(18799,'events','itemid',29426),(18800,'history','itemid',29426),(18801,'history_log','itemid',29426),(18802,'history_str','itemid',29426),(18803,'history_text','itemid',29426),(18804,'history_uint','itemid',29426),(18805,'trends','itemid',29426),(18806,'trends_uint','itemid',29426),(18807,'events','itemid',29413),(18808,'history','itemid',29413),(18809,'history_log','itemid',29413),(18810,'history_str','itemid',29413),(18811,'history_text','itemid',29413),(18812,'history_uint','itemid',29413),(18813,'trends','itemid',29413),(18814,'trends_uint','itemid',29413),(18815,'events','itemid',29427),(18816,'history','itemid',29427),(18817,'history_log','itemid',29427),(18818,'history_str','itemid',29427),(18819,'history_text','itemid',29427),(18820,'history_uint','itemid',29427),(18821,'trends','itemid',29427),(18822,'trends_uint','itemid',29427),(18823,'events','itemid',29425),(18824,'history','itemid',29425),(18825,'history_log','itemid',29425),(18826,'history_str','itemid',29425),(18827,'history_text','itemid',29425),(18828,'history_uint','itemid',29425),(18829,'trends','itemid',29425),(18830,'trends_uint','itemid',29425),(18831,'events','itemid',29398),(18832,'history','itemid',29398),(18833,'history_log','itemid',29398),(18834,'history_str','itemid',29398),(18835,'history_text','itemid',29398),(18836,'history_uint','itemid',29398),(18837,'trends','itemid',29398),(18838,'trends_uint','itemid',29398),(18839,'events','itemid',29414),(18840,'history','itemid',29414),(18841,'history_log','itemid',29414),(18842,'history_str','itemid',29414),(18843,'history_text','itemid',29414),(18844,'history_uint','itemid',29414),(18845,'trends','itemid',29414),(18846,'trends_uint','itemid',29414),(18847,'events','itemid',29422),(18848,'history','itemid',29422),(18849,'history_log','itemid',29422),(18850,'history_str','itemid',29422),(18851,'history_text','itemid',29422),(18852,'history_uint','itemid',29422),(18853,'trends','itemid',29422),(18854,'trends_uint','itemid',29422),(18855,'events','itemid',29428),(18856,'history','itemid',29428),(18857,'history_log','itemid',29428),(18858,'history_str','itemid',29428),(18859,'history_text','itemid',29428),(18860,'history_uint','itemid',29428),(18861,'trends','itemid',29428),(18862,'trends_uint','itemid',29428),(18863,'events','itemid',29400),(18864,'history','itemid',29400),(18865,'history_log','itemid',29400),(18866,'history_str','itemid',29400),(18867,'history_text','itemid',29400),(18868,'history_uint','itemid',29400),(18869,'trends','itemid',29400),(18870,'trends_uint','itemid',29400),(18871,'events','itemid',29397),(18872,'history','itemid',29397),(18873,'history_log','itemid',29397),(18874,'history_str','itemid',29397),(18875,'history_text','itemid',29397),(18876,'history_uint','itemid',29397),(18877,'trends','itemid',29397),(18878,'trends_uint','itemid',29397),(18879,'events','itemid',29401),(18880,'history','itemid',29401),(18881,'history_log','itemid',29401),(18882,'history_str','itemid',29401),(18883,'history_text','itemid',29401),(18884,'history_uint','itemid',29401),(18885,'trends','itemid',29401),(18886,'trends_uint','itemid',29401),(18887,'events','itemid',29421),(18888,'history','itemid',29421),(18889,'history_log','itemid',29421),(18890,'history_str','itemid',29421),(18891,'history_text','itemid',29421),(18892,'history_uint','itemid',29421),(18893,'trends','itemid',29421),(18894,'trends_uint','itemid',29421),(18895,'events','itemid',29402),(18896,'history','itemid',29402),(18897,'history_log','itemid',29402),(18898,'history_str','itemid',29402),(18899,'history_text','itemid',29402),(18900,'history_uint','itemid',29402),(18901,'trends','itemid',29402),(18902,'trends_uint','itemid',29402),(18903,'events','itemid',29403),(18904,'history','itemid',29403),(18905,'history_log','itemid',29403),(18906,'history_str','itemid',29403),(18907,'history_text','itemid',29403),(18908,'history_uint','itemid',29403),(18909,'trends','itemid',29403),(18910,'trends_uint','itemid',29403),(18911,'events','itemid',29396),(18912,'history','itemid',29396),(18913,'history_log','itemid',29396),(18914,'history_str','itemid',29396),(18915,'history_text','itemid',29396),(18916,'history_uint','itemid',29396),(18917,'trends','itemid',29396),(18918,'trends_uint','itemid',29396),(18919,'events','itemid',30968),(18920,'history','itemid',30968),(18921,'history_log','itemid',30968),(18922,'history_str','itemid',30968),(18923,'history_text','itemid',30968),(18924,'history_uint','itemid',30968),(18925,'trends','itemid',30968),(18926,'trends_uint','itemid',30968),(18927,'events','itemid',30980),(18928,'history','itemid',30980),(18929,'history_log','itemid',30980),(18930,'history_str','itemid',30980),(18931,'history_text','itemid',30980),(18932,'history_uint','itemid',30980),(18933,'trends','itemid',30980),(18934,'trends_uint','itemid',30980),(18935,'events','itemid',30981),(18936,'history','itemid',30981),(18937,'history_log','itemid',30981),(18938,'history_str','itemid',30981),(18939,'history_text','itemid',30981),(18940,'history_uint','itemid',30981),(18941,'trends','itemid',30981),(18942,'trends_uint','itemid',30981),(18943,'events','itemid',30982),(18944,'history','itemid',30982),(18945,'history_log','itemid',30982),(18946,'history_str','itemid',30982),(18947,'history_text','itemid',30982),(18948,'history_uint','itemid',30982),(18949,'trends','itemid',30982),(18950,'trends_uint','itemid',30982),(18951,'events','itemid',30983),(18952,'history','itemid',30983),(18953,'history_log','itemid',30983),(18954,'history_str','itemid',30983),(18955,'history_text','itemid',30983),(18956,'history_uint','itemid',30983),(18957,'trends','itemid',30983),(18958,'trends_uint','itemid',30983),(18959,'events','itemid',30987),(18960,'history','itemid',30987),(18961,'history_log','itemid',30987),(18962,'history_str','itemid',30987),(18963,'history_text','itemid',30987),(18964,'history_uint','itemid',30987),(18965,'trends','itemid',30987),(18966,'trends_uint','itemid',30987),(18967,'events','itemid',30989),(18968,'history','itemid',30989),(18969,'history_log','itemid',30989),(18970,'history_str','itemid',30989),(18971,'history_text','itemid',30989),(18972,'history_uint','itemid',30989),(18973,'trends','itemid',30989),(18974,'trends_uint','itemid',30989),(18975,'events','itemid',30990),(18976,'history','itemid',30990),(18977,'history_log','itemid',30990),(18978,'history_str','itemid',30990),(18979,'history_text','itemid',30990),(18980,'history_uint','itemid',30990),(18981,'trends','itemid',30990),(18982,'trends_uint','itemid',30990),(18983,'events','itemid',30991),(18984,'history','itemid',30991),(18985,'history_log','itemid',30991),(18986,'history_str','itemid',30991),(18987,'history_text','itemid',30991),(18988,'history_uint','itemid',30991),(18989,'trends','itemid',30991),(18990,'trends_uint','itemid',30991),(18991,'events','itemid',30992),(18992,'history','itemid',30992),(18993,'history_log','itemid',30992),(18994,'history_str','itemid',30992),(18995,'history_text','itemid',30992),(18996,'history_uint','itemid',30992),(18997,'trends','itemid',30992),(18998,'trends_uint','itemid',30992),(18999,'events','itemid',30993),(19000,'history','itemid',30993),(19001,'history_log','itemid',30993),(19002,'history_str','itemid',30993),(19003,'history_text','itemid',30993),(19004,'history_uint','itemid',30993),(19005,'trends','itemid',30993),(19006,'trends_uint','itemid',30993),(19007,'events','itemid',30994),(19008,'history','itemid',30994),(19009,'history_log','itemid',30994),(19010,'history_str','itemid',30994),(19011,'history_text','itemid',30994),(19012,'history_uint','itemid',30994),(19013,'trends','itemid',30994),(19014,'trends_uint','itemid',30994),(19015,'events','itemid',30988),(19016,'history','itemid',30988),(19017,'history_log','itemid',30988),(19018,'history_str','itemid',30988),(19019,'history_text','itemid',30988),(19020,'history_uint','itemid',30988),(19021,'trends','itemid',30988),(19022,'trends_uint','itemid',30988),(19023,'events','itemid',30995),(19024,'history','itemid',30995),(19025,'history_log','itemid',30995),(19026,'history_str','itemid',30995),(19027,'history_text','itemid',30995),(19028,'history_uint','itemid',30995),(19029,'trends','itemid',30995),(19030,'trends_uint','itemid',30995),(19031,'events','itemid',30997),(19032,'history','itemid',30997),(19033,'history_log','itemid',30997),(19034,'history_str','itemid',30997),(19035,'history_text','itemid',30997),(19036,'history_uint','itemid',30997),(19037,'trends','itemid',30997),(19038,'trends_uint','itemid',30997),(19039,'events','itemid',30998),(19040,'history','itemid',30998),(19041,'history_log','itemid',30998),(19042,'history_str','itemid',30998),(19043,'history_text','itemid',30998),(19044,'history_uint','itemid',30998),(19045,'trends','itemid',30998),(19046,'trends_uint','itemid',30998),(19047,'events','itemid',30999),(19048,'history','itemid',30999),(19049,'history_log','itemid',30999),(19050,'history_str','itemid',30999),(19051,'history_text','itemid',30999),(19052,'history_uint','itemid',30999),(19053,'trends','itemid',30999),(19054,'trends_uint','itemid',30999),(19055,'events','itemid',31001),(19056,'history','itemid',31001),(19057,'history_log','itemid',31001),(19058,'history_str','itemid',31001),(19059,'history_text','itemid',31001),(19060,'history_uint','itemid',31001),(19061,'trends','itemid',31001),(19062,'trends_uint','itemid',31001),(19063,'events','itemid',31000),(19064,'history','itemid',31000),(19065,'history_log','itemid',31000),(19066,'history_str','itemid',31000),(19067,'history_text','itemid',31000),(19068,'history_uint','itemid',31000),(19069,'trends','itemid',31000),(19070,'trends_uint','itemid',31000),(19071,'events','itemid',31002),(19072,'history','itemid',31002),(19073,'history_log','itemid',31002),(19074,'history_str','itemid',31002),(19075,'history_text','itemid',31002),(19076,'history_uint','itemid',31002),(19077,'trends','itemid',31002),(19078,'trends_uint','itemid',31002),(19079,'events','itemid',31003),(19080,'history','itemid',31003),(19081,'history_log','itemid',31003),(19082,'history_str','itemid',31003),(19083,'history_text','itemid',31003),(19084,'history_uint','itemid',31003),(19085,'trends','itemid',31003),(19086,'trends_uint','itemid',31003),(19087,'events','itemid',30996),(19088,'history','itemid',30996),(19089,'history_log','itemid',30996),(19090,'history_str','itemid',30996),(19091,'history_text','itemid',30996),(19092,'history_uint','itemid',30996),(19093,'trends','itemid',30996),(19094,'trends_uint','itemid',30996),(19095,'events','itemid',30986),(19096,'history','itemid',30986),(19097,'history_log','itemid',30986),(19098,'history_str','itemid',30986),(19099,'history_text','itemid',30986),(19100,'history_uint','itemid',30986),(19101,'trends','itemid',30986),(19102,'trends_uint','itemid',30986),(19103,'events','itemid',30977),(19104,'history','itemid',30977),(19105,'history_log','itemid',30977),(19106,'history_str','itemid',30977),(19107,'history_text','itemid',30977),(19108,'history_uint','itemid',30977),(19109,'trends','itemid',30977),(19110,'trends_uint','itemid',30977),(19111,'events','itemid',30985),(19112,'history','itemid',30985),(19113,'history_log','itemid',30985),(19114,'history_str','itemid',30985),(19115,'history_text','itemid',30985),(19116,'history_uint','itemid',30985),(19117,'trends','itemid',30985),(19118,'trends_uint','itemid',30985),(19119,'events','itemid',30970),(19120,'history','itemid',30970),(19121,'history_log','itemid',30970),(19122,'history_str','itemid',30970),(19123,'history_text','itemid',30970),(19124,'history_uint','itemid',30970),(19125,'trends','itemid',30970),(19126,'trends_uint','itemid',30970),(19127,'events','itemid',30971),(19128,'history','itemid',30971),(19129,'history_log','itemid',30971),(19130,'history_str','itemid',30971),(19131,'history_text','itemid',30971),(19132,'history_uint','itemid',30971),(19133,'trends','itemid',30971),(19134,'trends_uint','itemid',30971),(19135,'events','itemid',30972),(19136,'history','itemid',30972),(19137,'history_log','itemid',30972),(19138,'history_str','itemid',30972),(19139,'history_text','itemid',30972),(19140,'history_uint','itemid',30972),(19141,'trends','itemid',30972),(19142,'trends_uint','itemid',30972),(19143,'events','itemid',30973),(19144,'history','itemid',30973),(19145,'history_log','itemid',30973),(19146,'history_str','itemid',30973),(19147,'history_text','itemid',30973),(19148,'history_uint','itemid',30973),(19149,'trends','itemid',30973),(19150,'trends_uint','itemid',30973),(19151,'events','itemid',30974),(19152,'history','itemid',30974),(19153,'history_log','itemid',30974),(19154,'history_str','itemid',30974),(19155,'history_text','itemid',30974),(19156,'history_uint','itemid',30974),(19157,'trends','itemid',30974),(19158,'trends_uint','itemid',30974),(19159,'events','itemid',30975),(19160,'history','itemid',30975),(19161,'history_log','itemid',30975),(19162,'history_str','itemid',30975),(19163,'history_text','itemid',30975),(19164,'history_uint','itemid',30975),(19165,'trends','itemid',30975),(19166,'trends_uint','itemid',30975),(19167,'events','itemid',30969),(19168,'history','itemid',30969),(19169,'history_log','itemid',30969),(19170,'history_str','itemid',30969),(19171,'history_text','itemid',30969),(19172,'history_uint','itemid',30969),(19173,'trends','itemid',30969),(19174,'trends_uint','itemid',30969),(19175,'events','itemid',30976),(19176,'history','itemid',30976),(19177,'history_log','itemid',30976),(19178,'history_str','itemid',30976),(19179,'history_text','itemid',30976),(19180,'history_uint','itemid',30976),(19181,'trends','itemid',30976),(19182,'trends_uint','itemid',30976),(19183,'events','itemid',30978),(19184,'history','itemid',30978),(19185,'history_log','itemid',30978),(19186,'history_str','itemid',30978),(19187,'history_text','itemid',30978),(19188,'history_uint','itemid',30978),(19189,'trends','itemid',30978),(19190,'trends_uint','itemid',30978),(19191,'events','itemid',30979),(19192,'history','itemid',30979),(19193,'history_log','itemid',30979),(19194,'history_str','itemid',30979),(19195,'history_text','itemid',30979),(19196,'history_uint','itemid',30979),(19197,'trends','itemid',30979),(19198,'trends_uint','itemid',30979),(19199,'events','itemid',30984),(19200,'history','itemid',30984),(19201,'history_log','itemid',30984),(19202,'history_str','itemid',30984),(19203,'history_text','itemid',30984),(19204,'history_uint','itemid',30984),(19205,'trends','itemid',30984),(19206,'trends_uint','itemid',30984),(19207,'events','itemid',31004),(19208,'history','itemid',31004),(19209,'history_log','itemid',31004),(19210,'history_str','itemid',31004),(19211,'history_text','itemid',31004),(19212,'history_uint','itemid',31004),(19213,'trends','itemid',31004),(19214,'trends_uint','itemid',31004),(19215,'events','itemid',31010),(19216,'history','itemid',31010),(19217,'history_log','itemid',31010),(19218,'history_str','itemid',31010),(19219,'history_text','itemid',31010),(19220,'history_uint','itemid',31010),(19221,'trends','itemid',31010),(19222,'trends_uint','itemid',31010),(19223,'events','itemid',31022),(19224,'history','itemid',31022),(19225,'history_log','itemid',31022),(19226,'history_str','itemid',31022),(19227,'history_text','itemid',31022),(19228,'history_uint','itemid',31022),(19229,'trends','itemid',31022),(19230,'trends_uint','itemid',31022),(19231,'events','itemid',31023),(19232,'history','itemid',31023),(19233,'history_log','itemid',31023),(19234,'history_str','itemid',31023),(19235,'history_text','itemid',31023),(19236,'history_uint','itemid',31023),(19237,'trends','itemid',31023),(19238,'trends_uint','itemid',31023),(19239,'events','itemid',31024),(19240,'history','itemid',31024),(19241,'history_log','itemid',31024),(19242,'history_str','itemid',31024),(19243,'history_text','itemid',31024),(19244,'history_uint','itemid',31024),(19245,'trends','itemid',31024),(19246,'trends_uint','itemid',31024),(19247,'events','itemid',31025),(19248,'history','itemid',31025),(19249,'history_log','itemid',31025),(19250,'history_str','itemid',31025),(19251,'history_text','itemid',31025),(19252,'history_uint','itemid',31025),(19253,'trends','itemid',31025),(19254,'trends_uint','itemid',31025),(19255,'events','itemid',31029),(19256,'history','itemid',31029),(19257,'history_log','itemid',31029),(19258,'history_str','itemid',31029),(19259,'history_text','itemid',31029),(19260,'history_uint','itemid',31029),(19261,'trends','itemid',31029),(19262,'trends_uint','itemid',31029),(19263,'events','itemid',31031),(19264,'history','itemid',31031),(19265,'history_log','itemid',31031),(19266,'history_str','itemid',31031),(19267,'history_text','itemid',31031),(19268,'history_uint','itemid',31031),(19269,'trends','itemid',31031),(19270,'trends_uint','itemid',31031),(19271,'events','itemid',31032),(19272,'history','itemid',31032),(19273,'history_log','itemid',31032),(19274,'history_str','itemid',31032),(19275,'history_text','itemid',31032),(19276,'history_uint','itemid',31032),(19277,'trends','itemid',31032),(19278,'trends_uint','itemid',31032),(19279,'events','itemid',31033),(19280,'history','itemid',31033),(19281,'history_log','itemid',31033),(19282,'history_str','itemid',31033),(19283,'history_text','itemid',31033),(19284,'history_uint','itemid',31033),(19285,'trends','itemid',31033),(19286,'trends_uint','itemid',31033),(19287,'events','itemid',31034),(19288,'history','itemid',31034),(19289,'history_log','itemid',31034),(19290,'history_str','itemid',31034),(19291,'history_text','itemid',31034),(19292,'history_uint','itemid',31034),(19293,'trends','itemid',31034),(19294,'trends_uint','itemid',31034),(19295,'events','itemid',31035),(19296,'history','itemid',31035),(19297,'history_log','itemid',31035),(19298,'history_str','itemid',31035),(19299,'history_text','itemid',31035),(19300,'history_uint','itemid',31035),(19301,'trends','itemid',31035),(19302,'trends_uint','itemid',31035),(19303,'events','itemid',31036),(19304,'history','itemid',31036),(19305,'history_log','itemid',31036),(19306,'history_str','itemid',31036),(19307,'history_text','itemid',31036),(19308,'history_uint','itemid',31036),(19309,'trends','itemid',31036),(19310,'trends_uint','itemid',31036),(19311,'events','itemid',31030),(19312,'history','itemid',31030),(19313,'history_log','itemid',31030),(19314,'history_str','itemid',31030),(19315,'history_text','itemid',31030),(19316,'history_uint','itemid',31030),(19317,'trends','itemid',31030),(19318,'trends_uint','itemid',31030),(19319,'events','itemid',31037),(19320,'history','itemid',31037),(19321,'history_log','itemid',31037),(19322,'history_str','itemid',31037),(19323,'history_text','itemid',31037),(19324,'history_uint','itemid',31037),(19325,'trends','itemid',31037),(19326,'trends_uint','itemid',31037),(19327,'events','itemid',31039),(19328,'history','itemid',31039),(19329,'history_log','itemid',31039),(19330,'history_str','itemid',31039),(19331,'history_text','itemid',31039),(19332,'history_uint','itemid',31039),(19333,'trends','itemid',31039),(19334,'trends_uint','itemid',31039),(19335,'events','itemid',31040),(19336,'history','itemid',31040),(19337,'history_log','itemid',31040),(19338,'history_str','itemid',31040),(19339,'history_text','itemid',31040),(19340,'history_uint','itemid',31040),(19341,'trends','itemid',31040),(19342,'trends_uint','itemid',31040),(19343,'events','itemid',31041),(19344,'history','itemid',31041),(19345,'history_log','itemid',31041),(19346,'history_str','itemid',31041),(19347,'history_text','itemid',31041),(19348,'history_uint','itemid',31041),(19349,'trends','itemid',31041),(19350,'trends_uint','itemid',31041),(19351,'events','itemid',31043),(19352,'history','itemid',31043),(19353,'history_log','itemid',31043),(19354,'history_str','itemid',31043),(19355,'history_text','itemid',31043),(19356,'history_uint','itemid',31043),(19357,'trends','itemid',31043),(19358,'trends_uint','itemid',31043),(19359,'events','itemid',31042),(19360,'history','itemid',31042),(19361,'history_log','itemid',31042),(19362,'history_str','itemid',31042),(19363,'history_text','itemid',31042),(19364,'history_uint','itemid',31042),(19365,'trends','itemid',31042),(19366,'trends_uint','itemid',31042),(19367,'events','itemid',31044),(19368,'history','itemid',31044),(19369,'history_log','itemid',31044),(19370,'history_str','itemid',31044),(19371,'history_text','itemid',31044),(19372,'history_uint','itemid',31044),(19373,'trends','itemid',31044),(19374,'trends_uint','itemid',31044),(19375,'events','itemid',31045),(19376,'history','itemid',31045),(19377,'history_log','itemid',31045),(19378,'history_str','itemid',31045),(19379,'history_text','itemid',31045),(19380,'history_uint','itemid',31045),(19381,'trends','itemid',31045),(19382,'trends_uint','itemid',31045),(19383,'events','itemid',31038),(19384,'history','itemid',31038),(19385,'history_log','itemid',31038),(19386,'history_str','itemid',31038),(19387,'history_text','itemid',31038),(19388,'history_uint','itemid',31038),(19389,'trends','itemid',31038),(19390,'trends_uint','itemid',31038),(19391,'events','itemid',31028),(19392,'history','itemid',31028),(19393,'history_log','itemid',31028),(19394,'history_str','itemid',31028),(19395,'history_text','itemid',31028),(19396,'history_uint','itemid',31028),(19397,'trends','itemid',31028),(19398,'trends_uint','itemid',31028),(19399,'events','itemid',31019),(19400,'history','itemid',31019),(19401,'history_log','itemid',31019),(19402,'history_str','itemid',31019),(19403,'history_text','itemid',31019),(19404,'history_uint','itemid',31019),(19405,'trends','itemid',31019),(19406,'trends_uint','itemid',31019),(19407,'events','itemid',31027),(19408,'history','itemid',31027),(19409,'history_log','itemid',31027),(19410,'history_str','itemid',31027),(19411,'history_text','itemid',31027),(19412,'history_uint','itemid',31027),(19413,'trends','itemid',31027),(19414,'trends_uint','itemid',31027),(19415,'events','itemid',31012),(19416,'history','itemid',31012),(19417,'history_log','itemid',31012),(19418,'history_str','itemid',31012),(19419,'history_text','itemid',31012),(19420,'history_uint','itemid',31012),(19421,'trends','itemid',31012),(19422,'trends_uint','itemid',31012),(19423,'events','itemid',31013),(19424,'history','itemid',31013),(19425,'history_log','itemid',31013),(19426,'history_str','itemid',31013),(19427,'history_text','itemid',31013),(19428,'history_uint','itemid',31013),(19429,'trends','itemid',31013),(19430,'trends_uint','itemid',31013),(19431,'events','itemid',31014),(19432,'history','itemid',31014),(19433,'history_log','itemid',31014),(19434,'history_str','itemid',31014),(19435,'history_text','itemid',31014),(19436,'history_uint','itemid',31014),(19437,'trends','itemid',31014),(19438,'trends_uint','itemid',31014),(19439,'events','itemid',31015),(19440,'history','itemid',31015),(19441,'history_log','itemid',31015),(19442,'history_str','itemid',31015),(19443,'history_text','itemid',31015),(19444,'history_uint','itemid',31015),(19445,'trends','itemid',31015),(19446,'trends_uint','itemid',31015),(19447,'events','itemid',31016),(19448,'history','itemid',31016),(19449,'history_log','itemid',31016),(19450,'history_str','itemid',31016),(19451,'history_text','itemid',31016),(19452,'history_uint','itemid',31016),(19453,'trends','itemid',31016),(19454,'trends_uint','itemid',31016),(19455,'events','itemid',31017),(19456,'history','itemid',31017),(19457,'history_log','itemid',31017),(19458,'history_str','itemid',31017),(19459,'history_text','itemid',31017),(19460,'history_uint','itemid',31017),(19461,'trends','itemid',31017),(19462,'trends_uint','itemid',31017),(19463,'events','itemid',31011),(19464,'history','itemid',31011),(19465,'history_log','itemid',31011),(19466,'history_str','itemid',31011),(19467,'history_text','itemid',31011),(19468,'history_uint','itemid',31011),(19469,'trends','itemid',31011),(19470,'trends_uint','itemid',31011),(19471,'events','itemid',31018),(19472,'history','itemid',31018),(19473,'history_log','itemid',31018),(19474,'history_str','itemid',31018),(19475,'history_text','itemid',31018),(19476,'history_uint','itemid',31018),(19477,'trends','itemid',31018),(19478,'trends_uint','itemid',31018),(19479,'events','itemid',31020),(19480,'history','itemid',31020),(19481,'history_log','itemid',31020),(19482,'history_str','itemid',31020),(19483,'history_text','itemid',31020),(19484,'history_uint','itemid',31020),(19485,'trends','itemid',31020),(19486,'trends_uint','itemid',31020),(19487,'events','itemid',31021),(19488,'history','itemid',31021),(19489,'history_log','itemid',31021),(19490,'history_str','itemid',31021),(19491,'history_text','itemid',31021),(19492,'history_uint','itemid',31021),(19493,'trends','itemid',31021),(19494,'trends_uint','itemid',31021),(19495,'events','itemid',31026),(19496,'history','itemid',31026),(19497,'history_log','itemid',31026),(19498,'history_str','itemid',31026),(19499,'history_text','itemid',31026),(19500,'history_uint','itemid',31026),(19501,'trends','itemid',31026),(19502,'trends_uint','itemid',31026),(19503,'events','itemid',31046),(19504,'history','itemid',31046),(19505,'history_log','itemid',31046),(19506,'history_str','itemid',31046),(19507,'history_text','itemid',31046),(19508,'history_uint','itemid',31046),(19509,'trends','itemid',31046),(19510,'trends_uint','itemid',31046),(19511,'events','itemid',43078),(19512,'history','itemid',43078),(19513,'history_log','itemid',43078),(19514,'history_str','itemid',43078),(19515,'history_text','itemid',43078),(19516,'history_uint','itemid',43078),(19517,'trends','itemid',43078),(19518,'trends_uint','itemid',43078),(19519,'events','itemid',31820),(19520,'history','itemid',31820),(19521,'history_log','itemid',31820),(19522,'history_str','itemid',31820),(19523,'history_text','itemid',31820),(19524,'history_uint','itemid',31820),(19525,'trends','itemid',31820),(19526,'trends_uint','itemid',31820),(19527,'events','itemid',31834),(19528,'history','itemid',31834),(19529,'history_log','itemid',31834),(19530,'history_str','itemid',31834),(19531,'history_text','itemid',31834),(19532,'history_uint','itemid',31834),(19533,'trends','itemid',31834),(19534,'trends_uint','itemid',31834),(19535,'events','itemid',31829),(19536,'history','itemid',31829),(19537,'history_log','itemid',31829),(19538,'history_str','itemid',31829),(19539,'history_text','itemid',31829),(19540,'history_uint','itemid',31829),(19541,'trends','itemid',31829),(19542,'trends_uint','itemid',31829),(19543,'events','itemid',31833),(19544,'history','itemid',31833),(19545,'history_log','itemid',31833),(19546,'history_str','itemid',31833),(19547,'history_text','itemid',31833),(19548,'history_uint','itemid',31833),(19549,'trends','itemid',31833),(19550,'trends_uint','itemid',31833),(19551,'events','itemid',31832),(19552,'history','itemid',31832),(19553,'history_log','itemid',31832),(19554,'history_str','itemid',31832),(19555,'history_text','itemid',31832),(19556,'history_uint','itemid',31832),(19557,'trends','itemid',31832),(19558,'trends_uint','itemid',31832),(19559,'events','itemid',31831),(19560,'history','itemid',31831),(19561,'history_log','itemid',31831),(19562,'history_str','itemid',31831),(19563,'history_text','itemid',31831),(19564,'history_uint','itemid',31831),(19565,'trends','itemid',31831),(19566,'trends_uint','itemid',31831),(19567,'events','itemid',31892),(19568,'history','itemid',31892),(19569,'history_log','itemid',31892),(19570,'history_str','itemid',31892),(19571,'history_text','itemid',31892),(19572,'history_uint','itemid',31892),(19573,'trends','itemid',31892),(19574,'trends_uint','itemid',31892),(19575,'events','itemid',31828),(19576,'history','itemid',31828),(19577,'history_log','itemid',31828),(19578,'history_str','itemid',31828),(19579,'history_text','itemid',31828),(19580,'history_uint','itemid',31828),(19581,'trends','itemid',31828),(19582,'trends_uint','itemid',31828),(19583,'events','itemid',31830),(19584,'history','itemid',31830),(19585,'history_log','itemid',31830),(19586,'history_str','itemid',31830),(19587,'history_text','itemid',31830),(19588,'history_uint','itemid',31830),(19589,'trends','itemid',31830),(19590,'trends_uint','itemid',31830),(19591,'events','itemid',31821),(19592,'history','itemid',31821),(19593,'history_log','itemid',31821),(19594,'history_str','itemid',31821),(19595,'history_text','itemid',31821),(19596,'history_uint','itemid',31821),(19597,'trends','itemid',31821),(19598,'trends_uint','itemid',31821),(19599,'events','itemid',31827),(19600,'history','itemid',31827),(19601,'history_log','itemid',31827),(19602,'history_str','itemid',31827),(19603,'history_text','itemid',31827),(19604,'history_uint','itemid',31827),(19605,'trends','itemid',31827),(19606,'trends_uint','itemid',31827),(19607,'events','itemid',31826),(19608,'history','itemid',31826),(19609,'history_log','itemid',31826),(19610,'history_str','itemid',31826),(19611,'history_text','itemid',31826),(19612,'history_uint','itemid',31826),(19613,'trends','itemid',31826),(19614,'trends_uint','itemid',31826),(19615,'events','itemid',31825),(19616,'history','itemid',31825),(19617,'history_log','itemid',31825),(19618,'history_str','itemid',31825),(19619,'history_text','itemid',31825),(19620,'history_uint','itemid',31825),(19621,'trends','itemid',31825),(19622,'trends_uint','itemid',31825),(19623,'events','itemid',31824),(19624,'history','itemid',31824),(19625,'history_log','itemid',31824),(19626,'history_str','itemid',31824),(19627,'history_text','itemid',31824),(19628,'history_uint','itemid',31824),(19629,'trends','itemid',31824),(19630,'trends_uint','itemid',31824),(19631,'events','itemid',31823),(19632,'history','itemid',31823),(19633,'history_log','itemid',31823),(19634,'history_str','itemid',31823),(19635,'history_text','itemid',31823),(19636,'history_uint','itemid',31823),(19637,'trends','itemid',31823),(19638,'trends_uint','itemid',31823),(19639,'events','itemid',31822),(19640,'history','itemid',31822),(19641,'history_log','itemid',31822),(19642,'history_str','itemid',31822),(19643,'history_text','itemid',31822),(19644,'history_uint','itemid',31822),(19645,'trends','itemid',31822),(19646,'trends_uint','itemid',31822),(19647,'events','itemid',31835),(19648,'history','itemid',31835),(19649,'history_log','itemid',31835),(19650,'history_str','itemid',31835),(19651,'history_text','itemid',31835),(19652,'history_uint','itemid',31835),(19653,'trends','itemid',31835),(19654,'trends_uint','itemid',31835),(19655,'events','itemid',44374),(19656,'history','itemid',44374),(19657,'history_log','itemid',44374),(19658,'history_str','itemid',44374),(19659,'history_text','itemid',44374),(19660,'history_uint','itemid',44374),(19661,'trends','itemid',44374),(19662,'trends_uint','itemid',44374),(19663,'events','itemid',42319),(19664,'history','itemid',42319),(19665,'history_log','itemid',42319),(19666,'history_str','itemid',42319),(19667,'history_text','itemid',42319),(19668,'history_uint','itemid',42319),(19669,'trends','itemid',42319),(19670,'trends_uint','itemid',42319),(19671,'events','itemid',42340),(19672,'history','itemid',42340),(19673,'history_log','itemid',42340),(19674,'history_str','itemid',42340),(19675,'history_text','itemid',42340),(19676,'history_uint','itemid',42340),(19677,'trends','itemid',42340),(19678,'trends_uint','itemid',42340),(19679,'events','itemid',42342),(19680,'history','itemid',42342),(19681,'history_log','itemid',42342),(19682,'history_str','itemid',42342),(19683,'history_text','itemid',42342),(19684,'history_uint','itemid',42342),(19685,'trends','itemid',42342),(19686,'trends_uint','itemid',42342),(19687,'events','itemid',42343),(19688,'history','itemid',42343),(19689,'history_log','itemid',42343),(19690,'history_str','itemid',42343),(19691,'history_text','itemid',42343),(19692,'history_uint','itemid',42343),(19693,'trends','itemid',42343),(19694,'trends_uint','itemid',42343),(19695,'events','itemid',42344),(19696,'history','itemid',42344),(19697,'history_log','itemid',42344),(19698,'history_str','itemid',42344),(19699,'history_text','itemid',42344),(19700,'history_uint','itemid',42344),(19701,'trends','itemid',42344),(19702,'trends_uint','itemid',42344),(19703,'events','itemid',42345),(19704,'history','itemid',42345),(19705,'history_log','itemid',42345),(19706,'history_str','itemid',42345),(19707,'history_text','itemid',42345),(19708,'history_uint','itemid',42345),(19709,'trends','itemid',42345),(19710,'trends_uint','itemid',42345),(19711,'events','itemid',42346),(19712,'history','itemid',42346),(19713,'history_log','itemid',42346),(19714,'history_str','itemid',42346),(19715,'history_text','itemid',42346),(19716,'history_uint','itemid',42346),(19717,'trends','itemid',42346),(19718,'trends_uint','itemid',42346),(19719,'events','itemid',42347),(19720,'history','itemid',42347),(19721,'history_log','itemid',42347),(19722,'history_str','itemid',42347),(19723,'history_text','itemid',42347),(19724,'history_uint','itemid',42347),(19725,'trends','itemid',42347),(19726,'trends_uint','itemid',42347),(19727,'events','itemid',42348),(19728,'history','itemid',42348),(19729,'history_log','itemid',42348),(19730,'history_str','itemid',42348),(19731,'history_text','itemid',42348),(19732,'history_uint','itemid',42348),(19733,'trends','itemid',42348),(19734,'trends_uint','itemid',42348),(19735,'events','itemid',42351),(19736,'history','itemid',42351),(19737,'history_log','itemid',42351),(19738,'history_str','itemid',42351),(19739,'history_text','itemid',42351),(19740,'history_uint','itemid',42351),(19741,'trends','itemid',42351),(19742,'trends_uint','itemid',42351),(19743,'events','itemid',42341),(19744,'history','itemid',42341),(19745,'history_log','itemid',42341),(19746,'history_str','itemid',42341),(19747,'history_text','itemid',42341),(19748,'history_uint','itemid',42341),(19749,'trends','itemid',42341),(19750,'trends_uint','itemid',42341),(19751,'events','itemid',42349),(19752,'history','itemid',42349),(19753,'history_log','itemid',42349),(19754,'history_str','itemid',42349),(19755,'history_text','itemid',42349),(19756,'history_uint','itemid',42349),(19757,'trends','itemid',42349),(19758,'trends_uint','itemid',42349),(19759,'events','itemid',42352),(19760,'history','itemid',42352),(19761,'history_log','itemid',42352),(19762,'history_str','itemid',42352),(19763,'history_text','itemid',42352),(19764,'history_uint','itemid',42352),(19765,'trends','itemid',42352),(19766,'trends_uint','itemid',42352),(19767,'events','itemid',42353),(19768,'history','itemid',42353),(19769,'history_log','itemid',42353),(19770,'history_str','itemid',42353),(19771,'history_text','itemid',42353),(19772,'history_uint','itemid',42353),(19773,'trends','itemid',42353),(19774,'trends_uint','itemid',42353),(19775,'events','itemid',42358),(19776,'history','itemid',42358),(19777,'history_log','itemid',42358),(19778,'history_str','itemid',42358),(19779,'history_text','itemid',42358),(19780,'history_uint','itemid',42358),(19781,'trends','itemid',42358),(19782,'trends_uint','itemid',42358),(19783,'events','itemid',42354),(19784,'history','itemid',42354),(19785,'history_log','itemid',42354),(19786,'history_str','itemid',42354),(19787,'history_text','itemid',42354),(19788,'history_uint','itemid',42354),(19789,'trends','itemid',42354),(19790,'trends_uint','itemid',42354),(19791,'events','itemid',42355),(19792,'history','itemid',42355),(19793,'history_log','itemid',42355),(19794,'history_str','itemid',42355),(19795,'history_text','itemid',42355),(19796,'history_uint','itemid',42355),(19797,'trends','itemid',42355),(19798,'trends_uint','itemid',42355),(19799,'events','itemid',42356),(19800,'history','itemid',42356),(19801,'history_log','itemid',42356),(19802,'history_str','itemid',42356),(19803,'history_text','itemid',42356),(19804,'history_uint','itemid',42356),(19805,'trends','itemid',42356),(19806,'trends_uint','itemid',42356),(19807,'events','itemid',42357),(19808,'history','itemid',42357),(19809,'history_log','itemid',42357),(19810,'history_str','itemid',42357),(19811,'history_text','itemid',42357),(19812,'history_uint','itemid',42357),(19813,'trends','itemid',42357),(19814,'trends_uint','itemid',42357),(19815,'events','itemid',42350),(19816,'history','itemid',42350),(19817,'history_log','itemid',42350),(19818,'history_str','itemid',42350),(19819,'history_text','itemid',42350),(19820,'history_uint','itemid',42350),(19821,'trends','itemid',42350),(19822,'trends_uint','itemid',42350),(19823,'events','itemid',42339),(19824,'history','itemid',42339),(19825,'history_log','itemid',42339),(19826,'history_str','itemid',42339),(19827,'history_text','itemid',42339),(19828,'history_uint','itemid',42339),(19829,'trends','itemid',42339),(19830,'trends_uint','itemid',42339),(19831,'events','itemid',42329),(19832,'history','itemid',42329),(19833,'history_log','itemid',42329),(19834,'history_str','itemid',42329),(19835,'history_text','itemid',42329),(19836,'history_uint','itemid',42329),(19837,'trends','itemid',42329),(19838,'trends_uint','itemid',42329),(19839,'events','itemid',42338),(19840,'history','itemid',42338),(19841,'history_log','itemid',42338),(19842,'history_str','itemid',42338),(19843,'history_text','itemid',42338),(19844,'history_uint','itemid',42338),(19845,'trends','itemid',42338),(19846,'trends_uint','itemid',42338),(19847,'events','itemid',42321),(19848,'history','itemid',42321),(19849,'history_log','itemid',42321),(19850,'history_str','itemid',42321),(19851,'history_text','itemid',42321),(19852,'history_uint','itemid',42321),(19853,'trends','itemid',42321),(19854,'trends_uint','itemid',42321),(19855,'events','itemid',42322),(19856,'history','itemid',42322),(19857,'history_log','itemid',42322),(19858,'history_str','itemid',42322),(19859,'history_text','itemid',42322),(19860,'history_uint','itemid',42322),(19861,'trends','itemid',42322),(19862,'trends_uint','itemid',42322),(19863,'events','itemid',42323),(19864,'history','itemid',42323),(19865,'history_log','itemid',42323),(19866,'history_str','itemid',42323),(19867,'history_text','itemid',42323),(19868,'history_uint','itemid',42323),(19869,'trends','itemid',42323),(19870,'trends_uint','itemid',42323),(19871,'events','itemid',42324),(19872,'history','itemid',42324),(19873,'history_log','itemid',42324),(19874,'history_str','itemid',42324),(19875,'history_text','itemid',42324),(19876,'history_uint','itemid',42324),(19877,'trends','itemid',42324),(19878,'trends_uint','itemid',42324),(19879,'events','itemid',42325),(19880,'history','itemid',42325),(19881,'history_log','itemid',42325),(19882,'history_str','itemid',42325),(19883,'history_text','itemid',42325),(19884,'history_uint','itemid',42325),(19885,'trends','itemid',42325),(19886,'trends_uint','itemid',42325),(19887,'events','itemid',42326),(19888,'history','itemid',42326),(19889,'history_log','itemid',42326),(19890,'history_str','itemid',42326),(19891,'history_text','itemid',42326),(19892,'history_uint','itemid',42326),(19893,'trends','itemid',42326),(19894,'trends_uint','itemid',42326),(19895,'events','itemid',42327),(19896,'history','itemid',42327),(19897,'history_log','itemid',42327),(19898,'history_str','itemid',42327),(19899,'history_text','itemid',42327),(19900,'history_uint','itemid',42327),(19901,'trends','itemid',42327),(19902,'trends_uint','itemid',42327),(19903,'events','itemid',42320),(19904,'history','itemid',42320),(19905,'history_log','itemid',42320),(19906,'history_str','itemid',42320),(19907,'history_text','itemid',42320),(19908,'history_uint','itemid',42320),(19909,'trends','itemid',42320),(19910,'trends_uint','itemid',42320),(19911,'events','itemid',42328),(19912,'history','itemid',42328),(19913,'history_log','itemid',42328),(19914,'history_str','itemid',42328),(19915,'history_text','itemid',42328),(19916,'history_uint','itemid',42328),(19917,'trends','itemid',42328),(19918,'trends_uint','itemid',42328),(19919,'events','itemid',42330),(19920,'history','itemid',42330),(19921,'history_log','itemid',42330),(19922,'history_str','itemid',42330),(19923,'history_text','itemid',42330),(19924,'history_uint','itemid',42330),(19925,'trends','itemid',42330),(19926,'trends_uint','itemid',42330),(19927,'events','itemid',42331),(19928,'history','itemid',42331),(19929,'history_log','itemid',42331),(19930,'history_str','itemid',42331),(19931,'history_text','itemid',42331),(19932,'history_uint','itemid',42331),(19933,'trends','itemid',42331),(19934,'trends_uint','itemid',42331),(19935,'events','itemid',42332),(19936,'history','itemid',42332),(19937,'history_log','itemid',42332),(19938,'history_str','itemid',42332),(19939,'history_text','itemid',42332),(19940,'history_uint','itemid',42332),(19941,'trends','itemid',42332),(19942,'trends_uint','itemid',42332),(19943,'events','itemid',42333),(19944,'history','itemid',42333),(19945,'history_log','itemid',42333),(19946,'history_str','itemid',42333),(19947,'history_text','itemid',42333),(19948,'history_uint','itemid',42333),(19949,'trends','itemid',42333),(19950,'trends_uint','itemid',42333),(19951,'events','itemid',42334),(19952,'history','itemid',42334),(19953,'history_log','itemid',42334),(19954,'history_str','itemid',42334),(19955,'history_text','itemid',42334),(19956,'history_uint','itemid',42334),(19957,'trends','itemid',42334),(19958,'trends_uint','itemid',42334),(19959,'events','itemid',44442),(19960,'history','itemid',44442),(19961,'history_log','itemid',44442),(19962,'history_str','itemid',44442),(19963,'history_text','itemid',44442),(19964,'history_uint','itemid',44442),(19965,'trends','itemid',44442),(19966,'trends_uint','itemid',44442),(19967,'events','itemid',42335),(19968,'history','itemid',42335),(19969,'history_log','itemid',42335),(19970,'history_str','itemid',42335),(19971,'history_text','itemid',42335),(19972,'history_uint','itemid',42335),(19973,'trends','itemid',42335),(19974,'trends_uint','itemid',42335),(19975,'events','itemid',42336),(19976,'history','itemid',42336),(19977,'history_log','itemid',42336),(19978,'history_str','itemid',42336),(19979,'history_text','itemid',42336),(19980,'history_uint','itemid',42336),(19981,'trends','itemid',42336),(19982,'trends_uint','itemid',42336),(19983,'events','itemid',42337),(19984,'history','itemid',42337),(19985,'history_log','itemid',42337),(19986,'history_str','itemid',42337),(19987,'history_text','itemid',42337),(19988,'history_uint','itemid',42337),(19989,'trends','itemid',42337),(19990,'trends_uint','itemid',42337),(19991,'events','itemid',42359),(19992,'history','itemid',42359),(19993,'history_log','itemid',42359),(19994,'history_str','itemid',42359),(19995,'history_text','itemid',42359),(19996,'history_uint','itemid',42359),(19997,'trends','itemid',42359),(19998,'trends_uint','itemid',42359),(19999,'events','itemid',43079),(20000,'history','itemid',43079),(20001,'history_log','itemid',43079),(20002,'history_str','itemid',43079),(20003,'history_text','itemid',43079),(20004,'history_uint','itemid',43079),(20005,'trends','itemid',43079),(20006,'trends_uint','itemid',43079),(20007,'events','itemid',33391),(20008,'history','itemid',33391),(20009,'history_log','itemid',33391),(20010,'history_str','itemid',33391),(20011,'history_text','itemid',33391),(20012,'history_uint','itemid',33391),(20013,'trends','itemid',33391),(20014,'trends_uint','itemid',33391),(20015,'events','itemid',33447),(20016,'history','itemid',33447),(20017,'history_log','itemid',33447),(20018,'history_str','itemid',33447),(20019,'history_text','itemid',33447),(20020,'history_uint','itemid',33447),(20021,'trends','itemid',33447),(20022,'trends_uint','itemid',33447),(20023,'events','itemid',33444),(20024,'history','itemid',33444),(20025,'history_log','itemid',33444),(20026,'history_str','itemid',33444),(20027,'history_text','itemid',33444),(20028,'history_uint','itemid',33444),(20029,'trends','itemid',33444),(20030,'trends_uint','itemid',33444),(20031,'events','itemid',33443),(20032,'history','itemid',33443),(20033,'history_log','itemid',33443),(20034,'history_str','itemid',33443),(20035,'history_text','itemid',33443),(20036,'history_uint','itemid',33443),(20037,'trends','itemid',33443),(20038,'trends_uint','itemid',33443),(20039,'events','itemid',33442),(20040,'history','itemid',33442),(20041,'history_log','itemid',33442),(20042,'history_str','itemid',33442),(20043,'history_text','itemid',33442),(20044,'history_uint','itemid',33442),(20045,'trends','itemid',33442),(20046,'trends_uint','itemid',33442),(20047,'events','itemid',33441),(20048,'history','itemid',33441),(20049,'history_log','itemid',33441),(20050,'history_str','itemid',33441),(20051,'history_text','itemid',33441),(20052,'history_uint','itemid',33441),(20053,'trends','itemid',33441),(20054,'trends_uint','itemid',33441),(20055,'events','itemid',33440),(20056,'history','itemid',33440),(20057,'history_log','itemid',33440),(20058,'history_str','itemid',33440),(20059,'history_text','itemid',33440),(20060,'history_uint','itemid',33440),(20061,'trends','itemid',33440),(20062,'trends_uint','itemid',33440),(20063,'events','itemid',33394),(20064,'history','itemid',33394),(20065,'history_log','itemid',33394),(20066,'history_str','itemid',33394),(20067,'history_text','itemid',33394),(20068,'history_uint','itemid',33394),(20069,'trends','itemid',33394),(20070,'trends_uint','itemid',33394),(20071,'events','itemid',33395),(20072,'history','itemid',33395),(20073,'history_log','itemid',33395),(20074,'history_str','itemid',33395),(20075,'history_text','itemid',33395),(20076,'history_uint','itemid',33395),(20077,'trends','itemid',33395),(20078,'trends_uint','itemid',33395),(20079,'events','itemid',33439),(20080,'history','itemid',33439),(20081,'history_log','itemid',33439),(20082,'history_str','itemid',33439),(20083,'history_text','itemid',33439),(20084,'history_uint','itemid',33439),(20085,'trends','itemid',33439),(20086,'trends_uint','itemid',33439),(20087,'events','itemid',33437),(20088,'history','itemid',33437),(20089,'history_log','itemid',33437),(20090,'history_str','itemid',33437),(20091,'history_text','itemid',33437),(20092,'history_uint','itemid',33437),(20093,'trends','itemid',33437),(20094,'trends_uint','itemid',33437),(20095,'events','itemid',33430),(20096,'history','itemid',33430),(20097,'history_log','itemid',33430),(20098,'history_str','itemid',33430),(20099,'history_text','itemid',33430),(20100,'history_uint','itemid',33430),(20101,'trends','itemid',33430),(20102,'trends_uint','itemid',33430),(20103,'events','itemid',33436),(20104,'history','itemid',33436),(20105,'history_log','itemid',33436),(20106,'history_str','itemid',33436),(20107,'history_text','itemid',33436),(20108,'history_uint','itemid',33436),(20109,'trends','itemid',33436),(20110,'trends_uint','itemid',33436),(20111,'events','itemid',33433),(20112,'history','itemid',33433),(20113,'history_log','itemid',33433),(20114,'history_str','itemid',33433),(20115,'history_text','itemid',33433),(20116,'history_uint','itemid',33433),(20117,'trends','itemid',33433),(20118,'trends_uint','itemid',33433),(20119,'events','itemid',33435),(20120,'history','itemid',33435),(20121,'history_log','itemid',33435),(20122,'history_str','itemid',33435),(20123,'history_text','itemid',33435),(20124,'history_uint','itemid',33435),(20125,'trends','itemid',33435),(20126,'trends_uint','itemid',33435),(20127,'events','itemid',33434),(20128,'history','itemid',33434),(20129,'history_log','itemid',33434),(20130,'history_str','itemid',33434),(20131,'history_text','itemid',33434),(20132,'history_uint','itemid',33434),(20133,'trends','itemid',33434),(20134,'trends_uint','itemid',33434),(20135,'events','itemid',33432),(20136,'history','itemid',33432),(20137,'history_log','itemid',33432),(20138,'history_str','itemid',33432),(20139,'history_text','itemid',33432),(20140,'history_uint','itemid',33432),(20141,'trends','itemid',33432),(20142,'trends_uint','itemid',33432),(20143,'events','itemid',33431),(20144,'history','itemid',33431),(20145,'history_log','itemid',33431),(20146,'history_str','itemid',33431),(20147,'history_text','itemid',33431),(20148,'history_uint','itemid',33431),(20149,'trends','itemid',33431),(20150,'trends_uint','itemid',33431),(20151,'events','itemid',33445),(20152,'history','itemid',33445),(20153,'history_log','itemid',33445),(20154,'history_str','itemid',33445),(20155,'history_text','itemid',33445),(20156,'history_uint','itemid',33445),(20157,'trends','itemid',33445),(20158,'trends_uint','itemid',33445),(20159,'events','itemid',33438),(20160,'history','itemid',33438),(20161,'history_log','itemid',33438),(20162,'history_str','itemid',33438),(20163,'history_text','itemid',33438),(20164,'history_uint','itemid',33438),(20165,'trends','itemid',33438),(20166,'trends_uint','itemid',33438),(20167,'events','itemid',33446),(20168,'history','itemid',33446),(20169,'history_log','itemid',33446),(20170,'history_str','itemid',33446),(20171,'history_text','itemid',33446),(20172,'history_uint','itemid',33446),(20173,'trends','itemid',33446),(20174,'trends_uint','itemid',33446),(20175,'events','itemid',33456),(20176,'history','itemid',33456),(20177,'history_log','itemid',33456),(20178,'history_str','itemid',33456),(20179,'history_text','itemid',33456),(20180,'history_uint','itemid',33456),(20181,'trends','itemid',33456),(20182,'trends_uint','itemid',33456),(20183,'events','itemid',33463),(20184,'history','itemid',33463),(20185,'history_log','itemid',33463),(20186,'history_str','itemid',33463),(20187,'history_text','itemid',33463),(20188,'history_uint','itemid',33463),(20189,'trends','itemid',33463),(20190,'trends_uint','itemid',33463),(20191,'events','itemid',33462),(20192,'history','itemid',33462),(20193,'history_log','itemid',33462),(20194,'history_str','itemid',33462),(20195,'history_text','itemid',33462),(20196,'history_uint','itemid',33462),(20197,'trends','itemid',33462),(20198,'trends_uint','itemid',33462),(20199,'events','itemid',33461),(20200,'history','itemid',33461),(20201,'history_log','itemid',33461),(20202,'history_str','itemid',33461),(20203,'history_text','itemid',33461),(20204,'history_uint','itemid',33461),(20205,'trends','itemid',33461),(20206,'trends_uint','itemid',33461),(20207,'events','itemid',33460),(20208,'history','itemid',33460),(20209,'history_log','itemid',33460),(20210,'history_str','itemid',33460),(20211,'history_text','itemid',33460),(20212,'history_uint','itemid',33460),(20213,'trends','itemid',33460),(20214,'trends_uint','itemid',33460),(20215,'events','itemid',33459),(20216,'history','itemid',33459),(20217,'history_log','itemid',33459),(20218,'history_str','itemid',33459),(20219,'history_text','itemid',33459),(20220,'history_uint','itemid',33459),(20221,'trends','itemid',33459),(20222,'trends_uint','itemid',33459),(20223,'events','itemid',33458),(20224,'history','itemid',33458),(20225,'history_log','itemid',33458),(20226,'history_str','itemid',33458),(20227,'history_text','itemid',33458),(20228,'history_uint','itemid',33458),(20229,'trends','itemid',33458),(20230,'trends_uint','itemid',33458),(20231,'events','itemid',33457),(20232,'history','itemid',33457),(20233,'history_log','itemid',33457),(20234,'history_str','itemid',33457),(20235,'history_text','itemid',33457),(20236,'history_uint','itemid',33457),(20237,'trends','itemid',33457),(20238,'trends_uint','itemid',33457),(20239,'events','itemid',33455),(20240,'history','itemid',33455),(20241,'history_log','itemid',33455),(20242,'history_str','itemid',33455),(20243,'history_text','itemid',33455),(20244,'history_uint','itemid',33455),(20245,'trends','itemid',33455),(20246,'trends_uint','itemid',33455),(20247,'events','itemid',33448),(20248,'history','itemid',33448),(20249,'history_log','itemid',33448),(20250,'history_str','itemid',33448),(20251,'history_text','itemid',33448),(20252,'history_uint','itemid',33448),(20253,'trends','itemid',33448),(20254,'trends_uint','itemid',33448),(20255,'events','itemid',33454),(20256,'history','itemid',33454),(20257,'history_log','itemid',33454),(20258,'history_str','itemid',33454),(20259,'history_text','itemid',33454),(20260,'history_uint','itemid',33454),(20261,'trends','itemid',33454),(20262,'trends_uint','itemid',33454),(20263,'events','itemid',33453),(20264,'history','itemid',33453),(20265,'history_log','itemid',33453),(20266,'history_str','itemid',33453),(20267,'history_text','itemid',33453),(20268,'history_uint','itemid',33453),(20269,'trends','itemid',33453),(20270,'trends_uint','itemid',33453),(20271,'events','itemid',33452),(20272,'history','itemid',33452),(20273,'history_log','itemid',33452),(20274,'history_str','itemid',33452),(20275,'history_text','itemid',33452),(20276,'history_uint','itemid',33452),(20277,'trends','itemid',33452),(20278,'trends_uint','itemid',33452),(20279,'events','itemid',33451),(20280,'history','itemid',33451),(20281,'history_log','itemid',33451),(20282,'history_str','itemid',33451),(20283,'history_text','itemid',33451),(20284,'history_uint','itemid',33451),(20285,'trends','itemid',33451),(20286,'trends_uint','itemid',33451),(20287,'events','itemid',33450),(20288,'history','itemid',33450),(20289,'history_log','itemid',33450),(20290,'history_str','itemid',33450),(20291,'history_text','itemid',33450),(20292,'history_uint','itemid',33450),(20293,'trends','itemid',33450),(20294,'trends_uint','itemid',33450),(20295,'events','itemid',33449),(20296,'history','itemid',33449),(20297,'history_log','itemid',33449),(20298,'history_str','itemid',33449),(20299,'history_text','itemid',33449),(20300,'history_uint','itemid',33449),(20301,'trends','itemid',33449),(20302,'trends_uint','itemid',33449),(20303,'events','itemid',33428),(20304,'history','itemid',33428),(20305,'history_log','itemid',33428),(20306,'history_str','itemid',33428),(20307,'history_text','itemid',33428),(20308,'history_uint','itemid',33428),(20309,'trends','itemid',33428),(20310,'trends_uint','itemid',33428),(20311,'events','itemid',33429),(20312,'history','itemid',33429),(20313,'history_log','itemid',33429),(20314,'history_str','itemid',33429),(20315,'history_text','itemid',33429),(20316,'history_uint','itemid',33429),(20317,'trends','itemid',33429),(20318,'trends_uint','itemid',33429),(20319,'events','itemid',33420),(20320,'history','itemid',33420),(20321,'history_log','itemid',33420),(20322,'history_str','itemid',33420),(20323,'history_text','itemid',33420),(20324,'history_uint','itemid',33420),(20325,'trends','itemid',33420),(20326,'trends_uint','itemid',33420),(20327,'events','itemid',33427),(20328,'history','itemid',33427),(20329,'history_log','itemid',33427),(20330,'history_str','itemid',33427),(20331,'history_text','itemid',33427),(20332,'history_uint','itemid',33427),(20333,'trends','itemid',33427),(20334,'trends_uint','itemid',33427),(20335,'events','itemid',33408),(20336,'history','itemid',33408),(20337,'history_log','itemid',33408),(20338,'history_str','itemid',33408),(20339,'history_text','itemid',33408),(20340,'history_uint','itemid',33408),(20341,'trends','itemid',33408),(20342,'trends_uint','itemid',33408),(20343,'events','itemid',33407),(20344,'history','itemid',33407),(20345,'history_log','itemid',33407),(20346,'history_str','itemid',33407),(20347,'history_text','itemid',33407),(20348,'history_uint','itemid',33407),(20349,'trends','itemid',33407),(20350,'trends_uint','itemid',33407),(20351,'events','itemid',33406),(20352,'history','itemid',33406),(20353,'history_log','itemid',33406),(20354,'history_str','itemid',33406),(20355,'history_text','itemid',33406),(20356,'history_uint','itemid',33406),(20357,'trends','itemid',33406),(20358,'trends_uint','itemid',33406),(20359,'events','itemid',33405),(20360,'history','itemid',33405),(20361,'history_log','itemid',33405),(20362,'history_str','itemid',33405),(20363,'history_text','itemid',33405),(20364,'history_uint','itemid',33405),(20365,'trends','itemid',33405),(20366,'trends_uint','itemid',33405),(20367,'events','itemid',33404),(20368,'history','itemid',33404),(20369,'history_log','itemid',33404),(20370,'history_str','itemid',33404),(20371,'history_text','itemid',33404),(20372,'history_uint','itemid',33404),(20373,'trends','itemid',33404),(20374,'trends_uint','itemid',33404),(20375,'events','itemid',33401),(20376,'history','itemid',33401),(20377,'history_log','itemid',33401),(20378,'history_str','itemid',33401),(20379,'history_text','itemid',33401),(20380,'history_uint','itemid',33401),(20381,'trends','itemid',33401),(20382,'trends_uint','itemid',33401),(20383,'events','itemid',33402),(20384,'history','itemid',33402),(20385,'history_log','itemid',33402),(20386,'history_str','itemid',33402),(20387,'history_text','itemid',33402),(20388,'history_uint','itemid',33402),(20389,'trends','itemid',33402),(20390,'trends_uint','itemid',33402),(20391,'events','itemid',33396),(20392,'history','itemid',33396),(20393,'history_log','itemid',33396),(20394,'history_str','itemid',33396),(20395,'history_text','itemid',33396),(20396,'history_uint','itemid',33396),(20397,'trends','itemid',33396),(20398,'trends_uint','itemid',33396),(20399,'events','itemid',33400),(20400,'history','itemid',33400),(20401,'history_log','itemid',33400),(20402,'history_str','itemid',33400),(20403,'history_text','itemid',33400),(20404,'history_uint','itemid',33400),(20405,'trends','itemid',33400),(20406,'trends_uint','itemid',33400),(20407,'events','itemid',33393),(20408,'history','itemid',33393),(20409,'history_log','itemid',33393),(20410,'history_str','itemid',33393),(20411,'history_text','itemid',33393),(20412,'history_uint','itemid',33393),(20413,'trends','itemid',33393),(20414,'trends_uint','itemid',33393),(20415,'events','itemid',33399),(20416,'history','itemid',33399),(20417,'history_log','itemid',33399),(20418,'history_str','itemid',33399),(20419,'history_text','itemid',33399),(20420,'history_uint','itemid',33399),(20421,'trends','itemid',33399),(20422,'trends_uint','itemid',33399),(20423,'events','itemid',33398),(20424,'history','itemid',33398),(20425,'history_log','itemid',33398),(20426,'history_str','itemid',33398),(20427,'history_text','itemid',33398),(20428,'history_uint','itemid',33398),(20429,'trends','itemid',33398),(20430,'trends_uint','itemid',33398),(20431,'events','itemid',33397),(20432,'history','itemid',33397),(20433,'history_log','itemid',33397),(20434,'history_str','itemid',33397),(20435,'history_text','itemid',33397),(20436,'history_uint','itemid',33397),(20437,'trends','itemid',33397),(20438,'trends_uint','itemid',33397),(20439,'events','itemid',33392),(20440,'history','itemid',33392),(20441,'history_log','itemid',33392),(20442,'history_str','itemid',33392),(20443,'history_text','itemid',33392),(20444,'history_uint','itemid',33392),(20445,'trends','itemid',33392),(20446,'trends_uint','itemid',33392),(20447,'events','itemid',33409),(20448,'history','itemid',33409),(20449,'history_log','itemid',33409),(20450,'history_str','itemid',33409),(20451,'history_text','itemid',33409),(20452,'history_uint','itemid',33409),(20453,'trends','itemid',33409),(20454,'trends_uint','itemid',33409),(20455,'events','itemid',33403),(20456,'history','itemid',33403),(20457,'history_log','itemid',33403),(20458,'history_str','itemid',33403),(20459,'history_text','itemid',33403),(20460,'history_uint','itemid',33403),(20461,'trends','itemid',33403),(20462,'trends_uint','itemid',33403),(20463,'events','itemid',33411),(20464,'history','itemid',33411),(20465,'history_log','itemid',33411),(20466,'history_str','itemid',33411),(20467,'history_text','itemid',33411),(20468,'history_uint','itemid',33411),(20469,'trends','itemid',33411),(20470,'trends_uint','itemid',33411),(20471,'events','itemid',33410),(20472,'history','itemid',33410),(20473,'history_log','itemid',33410),(20474,'history_str','itemid',33410),(20475,'history_text','itemid',33410),(20476,'history_uint','itemid',33410),(20477,'trends','itemid',33410),(20478,'trends_uint','itemid',33410),(20479,'events','itemid',33426),(20480,'history','itemid',33426),(20481,'history_log','itemid',33426),(20482,'history_str','itemid',33426),(20483,'history_text','itemid',33426),(20484,'history_uint','itemid',33426),(20485,'trends','itemid',33426),(20486,'trends_uint','itemid',33426),(20487,'events','itemid',33425),(20488,'history','itemid',33425),(20489,'history_log','itemid',33425),(20490,'history_str','itemid',33425),(20491,'history_text','itemid',33425),(20492,'history_uint','itemid',33425),(20493,'trends','itemid',33425),(20494,'trends_uint','itemid',33425),(20495,'events','itemid',33424),(20496,'history','itemid',33424),(20497,'history_log','itemid',33424),(20498,'history_str','itemid',33424),(20499,'history_text','itemid',33424),(20500,'history_uint','itemid',33424),(20501,'trends','itemid',33424),(20502,'trends_uint','itemid',33424),(20503,'events','itemid',33423),(20504,'history','itemid',33423),(20505,'history_log','itemid',33423),(20506,'history_str','itemid',33423),(20507,'history_text','itemid',33423),(20508,'history_uint','itemid',33423),(20509,'trends','itemid',33423),(20510,'trends_uint','itemid',33423),(20511,'events','itemid',33422),(20512,'history','itemid',33422),(20513,'history_log','itemid',33422),(20514,'history_str','itemid',33422),(20515,'history_text','itemid',33422),(20516,'history_uint','itemid',33422),(20517,'trends','itemid',33422),(20518,'trends_uint','itemid',33422),(20519,'events','itemid',33421),(20520,'history','itemid',33421),(20521,'history_log','itemid',33421),(20522,'history_str','itemid',33421),(20523,'history_text','itemid',33421),(20524,'history_uint','itemid',33421),(20525,'trends','itemid',33421),(20526,'trends_uint','itemid',33421),(20527,'events','itemid',33419),(20528,'history','itemid',33419),(20529,'history_log','itemid',33419),(20530,'history_str','itemid',33419),(20531,'history_text','itemid',33419),(20532,'history_uint','itemid',33419),(20533,'trends','itemid',33419),(20534,'trends_uint','itemid',33419),(20535,'events','itemid',33412),(20536,'history','itemid',33412),(20537,'history_log','itemid',33412),(20538,'history_str','itemid',33412),(20539,'history_text','itemid',33412),(20540,'history_uint','itemid',33412),(20541,'trends','itemid',33412),(20542,'trends_uint','itemid',33412),(20543,'events','itemid',33418),(20544,'history','itemid',33418),(20545,'history_log','itemid',33418),(20546,'history_str','itemid',33418),(20547,'history_text','itemid',33418),(20548,'history_uint','itemid',33418),(20549,'trends','itemid',33418),(20550,'trends_uint','itemid',33418),(20551,'events','itemid',33417),(20552,'history','itemid',33417),(20553,'history_log','itemid',33417),(20554,'history_str','itemid',33417),(20555,'history_text','itemid',33417),(20556,'history_uint','itemid',33417),(20557,'trends','itemid',33417),(20558,'trends_uint','itemid',33417),(20559,'events','itemid',33416),(20560,'history','itemid',33416),(20561,'history_log','itemid',33416),(20562,'history_str','itemid',33416),(20563,'history_text','itemid',33416),(20564,'history_uint','itemid',33416),(20565,'trends','itemid',33416),(20566,'trends_uint','itemid',33416),(20567,'events','itemid',33415),(20568,'history','itemid',33415),(20569,'history_log','itemid',33415),(20570,'history_str','itemid',33415),(20571,'history_text','itemid',33415),(20572,'history_uint','itemid',33415),(20573,'trends','itemid',33415),(20574,'trends_uint','itemid',33415),(20575,'events','itemid',33414),(20576,'history','itemid',33414),(20577,'history_log','itemid',33414),(20578,'history_str','itemid',33414),(20579,'history_text','itemid',33414),(20580,'history_uint','itemid',33414),(20581,'trends','itemid',33414),(20582,'trends_uint','itemid',33414),(20583,'events','itemid',33413),(20584,'history','itemid',33413),(20585,'history_log','itemid',33413),(20586,'history_str','itemid',33413),(20587,'history_text','itemid',33413),(20588,'history_uint','itemid',33413),(20589,'trends','itemid',33413),(20590,'trends_uint','itemid',33413),(20591,'events','itemid',33464),(20592,'history','itemid',33464),(20593,'history_log','itemid',33464),(20594,'history_str','itemid',33464),(20595,'history_text','itemid',33464),(20596,'history_uint','itemid',33464),(20597,'trends','itemid',33464),(20598,'trends_uint','itemid',33464),(20599,'events','itemid',33691),(20600,'history','itemid',33691),(20601,'history_log','itemid',33691),(20602,'history_str','itemid',33691),(20603,'history_text','itemid',33691),(20604,'history_uint','itemid',33691),(20605,'trends','itemid',33691),(20606,'trends_uint','itemid',33691),(20607,'events','itemid',33692),(20608,'history','itemid',33692),(20609,'history_log','itemid',33692),(20610,'history_str','itemid',33692),(20611,'history_text','itemid',33692),(20612,'history_uint','itemid',33692),(20613,'trends','itemid',33692),(20614,'trends_uint','itemid',33692),(20615,'events','itemid',33693),(20616,'history','itemid',33693),(20617,'history_log','itemid',33693),(20618,'history_str','itemid',33693),(20619,'history_text','itemid',33693),(20620,'history_uint','itemid',33693),(20621,'trends','itemid',33693),(20622,'trends_uint','itemid',33693),(20623,'events','itemid',33694),(20624,'history','itemid',33694),(20625,'history_log','itemid',33694),(20626,'history_str','itemid',33694),(20627,'history_text','itemid',33694),(20628,'history_uint','itemid',33694),(20629,'trends','itemid',33694),(20630,'trends_uint','itemid',33694),(20631,'events','itemid',42598),(20632,'history','itemid',42598),(20633,'history_log','itemid',42598),(20634,'history_str','itemid',42598),(20635,'history_text','itemid',42598),(20636,'history_uint','itemid',42598),(20637,'trends','itemid',42598),(20638,'trends_uint','itemid',42598),(20639,'events','itemid',42599),(20640,'history','itemid',42599),(20641,'history_log','itemid',42599),(20642,'history_str','itemid',42599),(20643,'history_text','itemid',42599),(20644,'history_uint','itemid',42599),(20645,'trends','itemid',42599),(20646,'trends_uint','itemid',42599),(20647,'events','itemid',42600),(20648,'history','itemid',42600),(20649,'history_log','itemid',42600),(20650,'history_str','itemid',42600),(20651,'history_text','itemid',42600),(20652,'history_uint','itemid',42600),(20653,'trends','itemid',42600),(20654,'trends_uint','itemid',42600),(20655,'events','itemid',42601),(20656,'history','itemid',42601),(20657,'history_log','itemid',42601),(20658,'history_str','itemid',42601),(20659,'history_text','itemid',42601),(20660,'history_uint','itemid',42601),(20661,'trends','itemid',42601),(20662,'trends_uint','itemid',42601),(20663,'events','itemid',42602),(20664,'history','itemid',42602),(20665,'history_log','itemid',42602),(20666,'history_str','itemid',42602),(20667,'history_text','itemid',42602),(20668,'history_uint','itemid',42602),(20669,'trends','itemid',42602),(20670,'trends_uint','itemid',42602),(20671,'events','itemid',42603),(20672,'history','itemid',42603),(20673,'history_log','itemid',42603),(20674,'history_str','itemid',42603),(20675,'history_text','itemid',42603),(20676,'history_uint','itemid',42603),(20677,'trends','itemid',42603),(20678,'trends_uint','itemid',42603),(20679,'events','itemid',43887),(20680,'history','itemid',43887),(20681,'history_log','itemid',43887),(20682,'history_str','itemid',43887),(20683,'history_text','itemid',43887),(20684,'history_uint','itemid',43887),(20685,'trends','itemid',43887),(20686,'trends_uint','itemid',43887),(20687,'events','itemid',42604),(20688,'history','itemid',42604),(20689,'history_log','itemid',42604),(20690,'history_str','itemid',42604),(20691,'history_text','itemid',42604),(20692,'history_uint','itemid',42604),(20693,'trends','itemid',42604),(20694,'trends_uint','itemid',42604),(20695,'events','itemid',42605),(20696,'history','itemid',42605),(20697,'history_log','itemid',42605),(20698,'history_str','itemid',42605),(20699,'history_text','itemid',42605),(20700,'history_uint','itemid',42605),(20701,'trends','itemid',42605),(20702,'trends_uint','itemid',42605),(20703,'events','itemid',42607),(20704,'history','itemid',42607),(20705,'history_log','itemid',42607),(20706,'history_str','itemid',42607),(20707,'history_text','itemid',42607),(20708,'history_uint','itemid',42607),(20709,'trends','itemid',42607),(20710,'trends_uint','itemid',42607),(20711,'events','itemid',42606),(20712,'history','itemid',42606),(20713,'history_log','itemid',42606),(20714,'history_str','itemid',42606),(20715,'history_text','itemid',42606),(20716,'history_uint','itemid',42606),(20717,'trends','itemid',42606),(20718,'trends_uint','itemid',42606),(20719,'events','itemid',42608),(20720,'history','itemid',42608),(20721,'history_log','itemid',42608),(20722,'history_str','itemid',42608),(20723,'history_text','itemid',42608),(20724,'history_uint','itemid',42608),(20725,'trends','itemid',42608),(20726,'trends_uint','itemid',42608),(20727,'events','itemid',36541),(20728,'history','itemid',36541),(20729,'history_log','itemid',36541),(20730,'history_str','itemid',36541),(20731,'history_text','itemid',36541),(20732,'history_uint','itemid',36541),(20733,'trends','itemid',36541),(20734,'trends_uint','itemid',36541),(20735,'events','itemid',36542),(20736,'history','itemid',36542),(20737,'history_log','itemid',36542),(20738,'history_str','itemid',36542),(20739,'history_text','itemid',36542),(20740,'history_uint','itemid',36542),(20741,'trends','itemid',36542),(20742,'trends_uint','itemid',36542),(20743,'events','itemid',36543),(20744,'history','itemid',36543),(20745,'history_log','itemid',36543),(20746,'history_str','itemid',36543),(20747,'history_text','itemid',36543),(20748,'history_uint','itemid',36543),(20749,'trends','itemid',36543),(20750,'trends_uint','itemid',36543),(20751,'events','itemid',36544),(20752,'history','itemid',36544),(20753,'history_log','itemid',36544),(20754,'history_str','itemid',36544),(20755,'history_text','itemid',36544),(20756,'history_uint','itemid',36544),(20757,'trends','itemid',36544),(20758,'trends_uint','itemid',36544),(20759,'events','itemid',43896),(20760,'history','itemid',43896),(20761,'history_log','itemid',43896),(20762,'history_str','itemid',43896),(20763,'history_text','itemid',43896),(20764,'history_uint','itemid',43896),(20765,'trends','itemid',43896),(20766,'trends_uint','itemid',43896),(20767,'events','itemid',36545),(20768,'history','itemid',36545),(20769,'history_log','itemid',36545),(20770,'history_str','itemid',36545),(20771,'history_text','itemid',36545),(20772,'history_uint','itemid',36545),(20773,'trends','itemid',36545),(20774,'trends_uint','itemid',36545),(20775,'events','itemid',36546),(20776,'history','itemid',36546),(20777,'history_log','itemid',36546),(20778,'history_str','itemid',36546),(20779,'history_text','itemid',36546),(20780,'history_uint','itemid',36546),(20781,'trends','itemid',36546),(20782,'trends_uint','itemid',36546),(20783,'events','itemid',36550),(20784,'history','itemid',36550),(20785,'history_log','itemid',36550),(20786,'history_str','itemid',36550),(20787,'history_text','itemid',36550),(20788,'history_uint','itemid',36550),(20789,'trends','itemid',36550),(20790,'trends_uint','itemid',36550),(20791,'events','itemid',36547),(20792,'history','itemid',36547),(20793,'history_log','itemid',36547),(20794,'history_str','itemid',36547),(20795,'history_text','itemid',36547),(20796,'history_uint','itemid',36547),(20797,'trends','itemid',36547),(20798,'trends_uint','itemid',36547),(20799,'events','itemid',36548),(20800,'history','itemid',36548),(20801,'history_log','itemid',36548),(20802,'history_str','itemid',36548),(20803,'history_text','itemid',36548),(20804,'history_uint','itemid',36548),(20805,'trends','itemid',36548),(20806,'trends_uint','itemid',36548),(20807,'events','itemid',36549),(20808,'history','itemid',36549),(20809,'history_log','itemid',36549),(20810,'history_str','itemid',36549),(20811,'history_text','itemid',36549),(20812,'history_uint','itemid',36549),(20813,'trends','itemid',36549),(20814,'trends_uint','itemid',36549),(20815,'events','itemid',36551),(20816,'history','itemid',36551),(20817,'history_log','itemid',36551),(20818,'history_str','itemid',36551),(20819,'history_text','itemid',36551),(20820,'history_uint','itemid',36551),(20821,'trends','itemid',36551),(20822,'trends_uint','itemid',36551),(20823,'events','itemid',36552),(20824,'history','itemid',36552),(20825,'history_log','itemid',36552),(20826,'history_str','itemid',36552),(20827,'history_text','itemid',36552),(20828,'history_uint','itemid',36552),(20829,'trends','itemid',36552),(20830,'trends_uint','itemid',36552),(20831,'events','itemid',36598),(20832,'history','itemid',36598),(20833,'history_log','itemid',36598),(20834,'history_str','itemid',36598),(20835,'history_text','itemid',36598),(20836,'history_uint','itemid',36598),(20837,'trends','itemid',36598),(20838,'trends_uint','itemid',36598),(20839,'events','itemid',36599),(20840,'history','itemid',36599),(20841,'history_log','itemid',36599),(20842,'history_str','itemid',36599),(20843,'history_text','itemid',36599),(20844,'history_uint','itemid',36599),(20845,'trends','itemid',36599),(20846,'trends_uint','itemid',36599),(20847,'events','itemid',36600),(20848,'history','itemid',36600),(20849,'history_log','itemid',36600),(20850,'history_str','itemid',36600),(20851,'history_text','itemid',36600),(20852,'history_uint','itemid',36600),(20853,'trends','itemid',36600),(20854,'trends_uint','itemid',36600),(20855,'events','itemid',36601),(20856,'history','itemid',36601),(20857,'history_log','itemid',36601),(20858,'history_str','itemid',36601),(20859,'history_text','itemid',36601),(20860,'history_uint','itemid',36601),(20861,'trends','itemid',36601),(20862,'trends_uint','itemid',36601),(20863,'events','itemid',43897),(20864,'history','itemid',43897),(20865,'history_log','itemid',43897),(20866,'history_str','itemid',43897),(20867,'history_text','itemid',43897),(20868,'history_uint','itemid',43897),(20869,'trends','itemid',43897),(20870,'trends_uint','itemid',43897),(20871,'events','itemid',36602),(20872,'history','itemid',36602),(20873,'history_log','itemid',36602),(20874,'history_str','itemid',36602),(20875,'history_text','itemid',36602),(20876,'history_uint','itemid',36602),(20877,'trends','itemid',36602),(20878,'trends_uint','itemid',36602),(20879,'events','itemid',36603),(20880,'history','itemid',36603),(20881,'history_log','itemid',36603),(20882,'history_str','itemid',36603),(20883,'history_text','itemid',36603),(20884,'history_uint','itemid',36603),(20885,'trends','itemid',36603),(20886,'trends_uint','itemid',36603),(20887,'events','itemid',36607),(20888,'history','itemid',36607),(20889,'history_log','itemid',36607),(20890,'history_str','itemid',36607),(20891,'history_text','itemid',36607),(20892,'history_uint','itemid',36607),(20893,'trends','itemid',36607),(20894,'trends_uint','itemid',36607),(20895,'events','itemid',36604),(20896,'history','itemid',36604),(20897,'history_log','itemid',36604),(20898,'history_str','itemid',36604),(20899,'history_text','itemid',36604),(20900,'history_uint','itemid',36604),(20901,'trends','itemid',36604),(20902,'trends_uint','itemid',36604),(20903,'events','itemid',36605),(20904,'history','itemid',36605),(20905,'history_log','itemid',36605),(20906,'history_str','itemid',36605),(20907,'history_text','itemid',36605),(20908,'history_uint','itemid',36605),(20909,'trends','itemid',36605),(20910,'trends_uint','itemid',36605),(20911,'events','itemid',36606),(20912,'history','itemid',36606),(20913,'history_log','itemid',36606),(20914,'history_str','itemid',36606),(20915,'history_text','itemid',36606),(20916,'history_uint','itemid',36606),(20917,'trends','itemid',36606),(20918,'trends_uint','itemid',36606),(20919,'events','itemid',36608),(20920,'history','itemid',36608),(20921,'history_log','itemid',36608),(20922,'history_str','itemid',36608),(20923,'history_text','itemid',36608),(20924,'history_uint','itemid',36608),(20925,'trends','itemid',36608),(20926,'trends_uint','itemid',36608),(20927,'events','itemid',36609),(20928,'history','itemid',36609),(20929,'history_log','itemid',36609),(20930,'history_str','itemid',36609),(20931,'history_text','itemid',36609),(20932,'history_uint','itemid',36609),(20933,'trends','itemid',36609),(20934,'trends_uint','itemid',36609),(20935,'events','itemid',36655),(20936,'history','itemid',36655),(20937,'history_log','itemid',36655),(20938,'history_str','itemid',36655),(20939,'history_text','itemid',36655),(20940,'history_uint','itemid',36655),(20941,'trends','itemid',36655),(20942,'trends_uint','itemid',36655),(20943,'events','itemid',36656),(20944,'history','itemid',36656),(20945,'history_log','itemid',36656),(20946,'history_str','itemid',36656),(20947,'history_text','itemid',36656),(20948,'history_uint','itemid',36656),(20949,'trends','itemid',36656),(20950,'trends_uint','itemid',36656),(20951,'events','itemid',36657),(20952,'history','itemid',36657),(20953,'history_log','itemid',36657),(20954,'history_str','itemid',36657),(20955,'history_text','itemid',36657),(20956,'history_uint','itemid',36657),(20957,'trends','itemid',36657),(20958,'trends_uint','itemid',36657),(20959,'events','itemid',36658),(20960,'history','itemid',36658),(20961,'history_log','itemid',36658),(20962,'history_str','itemid',36658),(20963,'history_text','itemid',36658),(20964,'history_uint','itemid',36658),(20965,'trends','itemid',36658),(20966,'trends_uint','itemid',36658),(20967,'events','itemid',43898),(20968,'history','itemid',43898),(20969,'history_log','itemid',43898),(20970,'history_str','itemid',43898),(20971,'history_text','itemid',43898),(20972,'history_uint','itemid',43898),(20973,'trends','itemid',43898),(20974,'trends_uint','itemid',43898),(20975,'events','itemid',36659),(20976,'history','itemid',36659),(20977,'history_log','itemid',36659),(20978,'history_str','itemid',36659),(20979,'history_text','itemid',36659),(20980,'history_uint','itemid',36659),(20981,'trends','itemid',36659),(20982,'trends_uint','itemid',36659),(20983,'events','itemid',36660),(20984,'history','itemid',36660),(20985,'history_log','itemid',36660),(20986,'history_str','itemid',36660),(20987,'history_text','itemid',36660),(20988,'history_uint','itemid',36660),(20989,'trends','itemid',36660),(20990,'trends_uint','itemid',36660),(20991,'events','itemid',36664),(20992,'history','itemid',36664),(20993,'history_log','itemid',36664),(20994,'history_str','itemid',36664),(20995,'history_text','itemid',36664),(20996,'history_uint','itemid',36664),(20997,'trends','itemid',36664),(20998,'trends_uint','itemid',36664),(20999,'events','itemid',36661),(21000,'history','itemid',36661),(21001,'history_log','itemid',36661),(21002,'history_str','itemid',36661),(21003,'history_text','itemid',36661),(21004,'history_uint','itemid',36661),(21005,'trends','itemid',36661),(21006,'trends_uint','itemid',36661),(21007,'events','itemid',36662),(21008,'history','itemid',36662),(21009,'history_log','itemid',36662),(21010,'history_str','itemid',36662),(21011,'history_text','itemid',36662),(21012,'history_uint','itemid',36662),(21013,'trends','itemid',36662),(21014,'trends_uint','itemid',36662),(21015,'events','itemid',36663),(21016,'history','itemid',36663),(21017,'history_log','itemid',36663),(21018,'history_str','itemid',36663),(21019,'history_text','itemid',36663),(21020,'history_uint','itemid',36663),(21021,'trends','itemid',36663),(21022,'trends_uint','itemid',36663),(21023,'events','itemid',36665),(21024,'history','itemid',36665),(21025,'history_log','itemid',36665),(21026,'history_str','itemid',36665),(21027,'history_text','itemid',36665),(21028,'history_uint','itemid',36665),(21029,'trends','itemid',36665),(21030,'trends_uint','itemid',36665),(21031,'events','itemid',36666),(21032,'history','itemid',36666),(21033,'history_log','itemid',36666),(21034,'history_str','itemid',36666),(21035,'history_text','itemid',36666),(21036,'history_uint','itemid',36666),(21037,'trends','itemid',36666),(21038,'trends_uint','itemid',36666),(21039,'events','itemid',36712),(21040,'history','itemid',36712),(21041,'history_log','itemid',36712),(21042,'history_str','itemid',36712),(21043,'history_text','itemid',36712),(21044,'history_uint','itemid',36712),(21045,'trends','itemid',36712),(21046,'trends_uint','itemid',36712),(21047,'events','itemid',36713),(21048,'history','itemid',36713),(21049,'history_log','itemid',36713),(21050,'history_str','itemid',36713),(21051,'history_text','itemid',36713),(21052,'history_uint','itemid',36713),(21053,'trends','itemid',36713),(21054,'trends_uint','itemid',36713),(21055,'events','itemid',36714),(21056,'history','itemid',36714),(21057,'history_log','itemid',36714),(21058,'history_str','itemid',36714),(21059,'history_text','itemid',36714),(21060,'history_uint','itemid',36714),(21061,'trends','itemid',36714),(21062,'trends_uint','itemid',36714),(21063,'events','itemid',36715),(21064,'history','itemid',36715),(21065,'history_log','itemid',36715),(21066,'history_str','itemid',36715),(21067,'history_text','itemid',36715),(21068,'history_uint','itemid',36715),(21069,'trends','itemid',36715),(21070,'trends_uint','itemid',36715),(21071,'events','itemid',43899),(21072,'history','itemid',43899),(21073,'history_log','itemid',43899),(21074,'history_str','itemid',43899),(21075,'history_text','itemid',43899),(21076,'history_uint','itemid',43899),(21077,'trends','itemid',43899),(21078,'trends_uint','itemid',43899),(21079,'events','itemid',36716),(21080,'history','itemid',36716),(21081,'history_log','itemid',36716),(21082,'history_str','itemid',36716),(21083,'history_text','itemid',36716),(21084,'history_uint','itemid',36716),(21085,'trends','itemid',36716),(21086,'trends_uint','itemid',36716),(21087,'events','itemid',36717),(21088,'history','itemid',36717),(21089,'history_log','itemid',36717),(21090,'history_str','itemid',36717),(21091,'history_text','itemid',36717),(21092,'history_uint','itemid',36717),(21093,'trends','itemid',36717),(21094,'trends_uint','itemid',36717),(21095,'events','itemid',36721),(21096,'history','itemid',36721),(21097,'history_log','itemid',36721),(21098,'history_str','itemid',36721),(21099,'history_text','itemid',36721),(21100,'history_uint','itemid',36721),(21101,'trends','itemid',36721),(21102,'trends_uint','itemid',36721),(21103,'events','itemid',36718),(21104,'history','itemid',36718),(21105,'history_log','itemid',36718),(21106,'history_str','itemid',36718),(21107,'history_text','itemid',36718),(21108,'history_uint','itemid',36718),(21109,'trends','itemid',36718),(21110,'trends_uint','itemid',36718),(21111,'events','itemid',36719),(21112,'history','itemid',36719),(21113,'history_log','itemid',36719),(21114,'history_str','itemid',36719),(21115,'history_text','itemid',36719),(21116,'history_uint','itemid',36719),(21117,'trends','itemid',36719),(21118,'trends_uint','itemid',36719),(21119,'events','itemid',36720),(21120,'history','itemid',36720),(21121,'history_log','itemid',36720),(21122,'history_str','itemid',36720),(21123,'history_text','itemid',36720),(21124,'history_uint','itemid',36720),(21125,'trends','itemid',36720),(21126,'trends_uint','itemid',36720),(21127,'events','itemid',36722),(21128,'history','itemid',36722),(21129,'history_log','itemid',36722),(21130,'history_str','itemid',36722),(21131,'history_text','itemid',36722),(21132,'history_uint','itemid',36722),(21133,'trends','itemid',36722),(21134,'trends_uint','itemid',36722),(21135,'events','itemid',36723),(21136,'history','itemid',36723),(21137,'history_log','itemid',36723),(21138,'history_str','itemid',36723),(21139,'history_text','itemid',36723),(21140,'history_uint','itemid',36723),(21141,'trends','itemid',36723),(21142,'trends_uint','itemid',36723),(21143,'events','itemid',36795),(21144,'history','itemid',36795),(21145,'history_log','itemid',36795),(21146,'history_str','itemid',36795),(21147,'history_text','itemid',36795),(21148,'history_uint','itemid',36795),(21149,'trends','itemid',36795),(21150,'trends_uint','itemid',36795),(21151,'events','itemid',36796),(21152,'history','itemid',36796),(21153,'history_log','itemid',36796),(21154,'history_str','itemid',36796),(21155,'history_text','itemid',36796),(21156,'history_uint','itemid',36796),(21157,'trends','itemid',36796),(21158,'trends_uint','itemid',36796),(21159,'events','itemid',36811),(21160,'history','itemid',36811),(21161,'history_log','itemid',36811),(21162,'history_str','itemid',36811),(21163,'history_text','itemid',36811),(21164,'history_uint','itemid',36811),(21165,'trends','itemid',36811),(21166,'trends_uint','itemid',36811),(21167,'events','itemid',36810),(21168,'history','itemid',36810),(21169,'history_log','itemid',36810),(21170,'history_str','itemid',36810),(21171,'history_text','itemid',36810),(21172,'history_uint','itemid',36810),(21173,'trends','itemid',36810),(21174,'trends_uint','itemid',36810),(21175,'events','itemid',36809),(21176,'history','itemid',36809),(21177,'history_log','itemid',36809),(21178,'history_str','itemid',36809),(21179,'history_text','itemid',36809),(21180,'history_uint','itemid',36809),(21181,'trends','itemid',36809),(21182,'trends_uint','itemid',36809),(21183,'events','itemid',36808),(21184,'history','itemid',36808),(21185,'history_log','itemid',36808),(21186,'history_str','itemid',36808),(21187,'history_text','itemid',36808),(21188,'history_uint','itemid',36808),(21189,'trends','itemid',36808),(21190,'trends_uint','itemid',36808),(21191,'events','itemid',36807),(21192,'history','itemid',36807),(21193,'history_log','itemid',36807),(21194,'history_str','itemid',36807),(21195,'history_text','itemid',36807),(21196,'history_uint','itemid',36807),(21197,'trends','itemid',36807),(21198,'trends_uint','itemid',36807),(21199,'events','itemid',36806),(21200,'history','itemid',36806),(21201,'history_log','itemid',36806),(21202,'history_str','itemid',36806),(21203,'history_text','itemid',36806),(21204,'history_uint','itemid',36806),(21205,'trends','itemid',36806),(21206,'trends_uint','itemid',36806),(21207,'events','itemid',36805),(21208,'history','itemid',36805),(21209,'history_log','itemid',36805),(21210,'history_str','itemid',36805),(21211,'history_text','itemid',36805),(21212,'history_uint','itemid',36805),(21213,'trends','itemid',36805),(21214,'trends_uint','itemid',36805),(21215,'events','itemid',36804),(21216,'history','itemid',36804),(21217,'history_log','itemid',36804),(21218,'history_str','itemid',36804),(21219,'history_text','itemid',36804),(21220,'history_uint','itemid',36804),(21221,'trends','itemid',36804),(21222,'trends_uint','itemid',36804),(21223,'events','itemid',36803),(21224,'history','itemid',36803),(21225,'history_log','itemid',36803),(21226,'history_str','itemid',36803),(21227,'history_text','itemid',36803),(21228,'history_uint','itemid',36803),(21229,'trends','itemid',36803),(21230,'trends_uint','itemid',36803),(21231,'events','itemid',36802),(21232,'history','itemid',36802),(21233,'history_log','itemid',36802),(21234,'history_str','itemid',36802),(21235,'history_text','itemid',36802),(21236,'history_uint','itemid',36802),(21237,'trends','itemid',36802),(21238,'trends_uint','itemid',36802),(21239,'events','itemid',36800),(21240,'history','itemid',36800),(21241,'history_log','itemid',36800),(21242,'history_str','itemid',36800),(21243,'history_text','itemid',36800),(21244,'history_uint','itemid',36800),(21245,'trends','itemid',36800),(21246,'trends_uint','itemid',36800),(21247,'events','itemid',36801),(21248,'history','itemid',36801),(21249,'history_log','itemid',36801),(21250,'history_str','itemid',36801),(21251,'history_text','itemid',36801),(21252,'history_uint','itemid',36801),(21253,'trends','itemid',36801),(21254,'trends_uint','itemid',36801),(21255,'events','itemid',36799),(21256,'history','itemid',36799),(21257,'history_log','itemid',36799),(21258,'history_str','itemid',36799),(21259,'history_text','itemid',36799),(21260,'history_uint','itemid',36799),(21261,'trends','itemid',36799),(21262,'trends_uint','itemid',36799),(21263,'events','itemid',36798),(21264,'history','itemid',36798),(21265,'history_log','itemid',36798),(21266,'history_str','itemid',36798),(21267,'history_text','itemid',36798),(21268,'history_uint','itemid',36798),(21269,'trends','itemid',36798),(21270,'trends_uint','itemid',36798),(21271,'events','itemid',36797),(21272,'history','itemid',36797),(21273,'history_log','itemid',36797),(21274,'history_str','itemid',36797),(21275,'history_text','itemid',36797),(21276,'history_uint','itemid',36797),(21277,'trends','itemid',36797),(21278,'trends_uint','itemid',36797),(21279,'events','itemid',36812),(21280,'history','itemid',36812),(21281,'history_log','itemid',36812),(21282,'history_str','itemid',36812),(21283,'history_text','itemid',36812),(21284,'history_uint','itemid',36812),(21285,'trends','itemid',36812),(21286,'trends_uint','itemid',36812),(21287,'events','itemid',39829),(21288,'history','itemid',39829),(21289,'history_log','itemid',39829),(21290,'history_str','itemid',39829),(21291,'history_text','itemid',39829),(21292,'history_uint','itemid',39829),(21293,'trends','itemid',39829),(21294,'trends_uint','itemid',39829),(21295,'events','itemid',39841),(21296,'history','itemid',39841),(21297,'history_log','itemid',39841),(21298,'history_str','itemid',39841),(21299,'history_text','itemid',39841),(21300,'history_uint','itemid',39841),(21301,'trends','itemid',39841),(21302,'trends_uint','itemid',39841),(21303,'events','itemid',39849),(21304,'history','itemid',39849),(21305,'history_log','itemid',39849),(21306,'history_str','itemid',39849),(21307,'history_text','itemid',39849),(21308,'history_uint','itemid',39849),(21309,'trends','itemid',39849),(21310,'trends_uint','itemid',39849),(21311,'events','itemid',39848),(21312,'history','itemid',39848),(21313,'history_log','itemid',39848),(21314,'history_str','itemid',39848),(21315,'history_text','itemid',39848),(21316,'history_uint','itemid',39848),(21317,'trends','itemid',39848),(21318,'trends_uint','itemid',39848),(21319,'events','itemid',39847),(21320,'history','itemid',39847),(21321,'history_log','itemid',39847),(21322,'history_str','itemid',39847),(21323,'history_text','itemid',39847),(21324,'history_uint','itemid',39847),(21325,'trends','itemid',39847),(21326,'trends_uint','itemid',39847),(21327,'events','itemid',39846),(21328,'history','itemid',39846),(21329,'history_log','itemid',39846),(21330,'history_str','itemid',39846),(21331,'history_text','itemid',39846),(21332,'history_uint','itemid',39846),(21333,'trends','itemid',39846),(21334,'trends_uint','itemid',39846),(21335,'events','itemid',39845),(21336,'history','itemid',39845),(21337,'history_log','itemid',39845),(21338,'history_str','itemid',39845),(21339,'history_text','itemid',39845),(21340,'history_uint','itemid',39845),(21341,'trends','itemid',39845),(21342,'trends_uint','itemid',39845),(21343,'events','itemid',39844),(21344,'history','itemid',39844),(21345,'history_log','itemid',39844),(21346,'history_str','itemid',39844),(21347,'history_text','itemid',39844),(21348,'history_uint','itemid',39844),(21349,'trends','itemid',39844),(21350,'trends_uint','itemid',39844),(21351,'events','itemid',39843),(21352,'history','itemid',39843),(21353,'history_log','itemid',39843),(21354,'history_str','itemid',39843),(21355,'history_text','itemid',39843),(21356,'history_uint','itemid',39843),(21357,'trends','itemid',39843),(21358,'trends_uint','itemid',39843),(21359,'events','itemid',39827),(21360,'history','itemid',39827),(21361,'history_log','itemid',39827),(21362,'history_str','itemid',39827),(21363,'history_text','itemid',39827),(21364,'history_uint','itemid',39827),(21365,'trends','itemid',39827),(21366,'trends_uint','itemid',39827),(21367,'events','itemid',39842),(21368,'history','itemid',39842),(21369,'history_log','itemid',39842),(21370,'history_str','itemid',39842),(21371,'history_text','itemid',39842),(21372,'history_uint','itemid',39842),(21373,'trends','itemid',39842),(21374,'trends_uint','itemid',39842),(21375,'events','itemid',39839),(21376,'history','itemid',39839),(21377,'history_log','itemid',39839),(21378,'history_str','itemid',39839),(21379,'history_text','itemid',39839),(21380,'history_uint','itemid',39839),(21381,'trends','itemid',39839),(21382,'trends_uint','itemid',39839),(21383,'events','itemid',39840),(21384,'history','itemid',39840),(21385,'history_log','itemid',39840),(21386,'history_str','itemid',39840),(21387,'history_text','itemid',39840),(21388,'history_uint','itemid',39840),(21389,'trends','itemid',39840),(21390,'trends_uint','itemid',39840),(21391,'events','itemid',39830),(21392,'history','itemid',39830),(21393,'history_log','itemid',39830),(21394,'history_str','itemid',39830),(21395,'history_text','itemid',39830),(21396,'history_uint','itemid',39830),(21397,'trends','itemid',39830),(21398,'trends_uint','itemid',39830),(21399,'events','itemid',39838),(21400,'history','itemid',39838),(21401,'history_log','itemid',39838),(21402,'history_str','itemid',39838),(21403,'history_text','itemid',39838),(21404,'history_uint','itemid',39838),(21405,'trends','itemid',39838),(21406,'trends_uint','itemid',39838),(21407,'events','itemid',39837),(21408,'history','itemid',39837),(21409,'history_log','itemid',39837),(21410,'history_str','itemid',39837),(21411,'history_text','itemid',39837),(21412,'history_uint','itemid',39837),(21413,'trends','itemid',39837),(21414,'trends_uint','itemid',39837),(21415,'events','itemid',39836),(21416,'history','itemid',39836),(21417,'history_log','itemid',39836),(21418,'history_str','itemid',39836),(21419,'history_text','itemid',39836),(21420,'history_uint','itemid',39836),(21421,'trends','itemid',39836),(21422,'trends_uint','itemid',39836),(21423,'events','itemid',39835),(21424,'history','itemid',39835),(21425,'history_log','itemid',39835),(21426,'history_str','itemid',39835),(21427,'history_text','itemid',39835),(21428,'history_uint','itemid',39835),(21429,'trends','itemid',39835),(21430,'trends_uint','itemid',39835),(21431,'events','itemid',39834),(21432,'history','itemid',39834),(21433,'history_log','itemid',39834),(21434,'history_str','itemid',39834),(21435,'history_text','itemid',39834),(21436,'history_uint','itemid',39834),(21437,'trends','itemid',39834),(21438,'trends_uint','itemid',39834),(21439,'events','itemid',39833),(21440,'history','itemid',39833),(21441,'history_log','itemid',39833),(21442,'history_str','itemid',39833),(21443,'history_text','itemid',39833),(21444,'history_uint','itemid',39833),(21445,'trends','itemid',39833),(21446,'trends_uint','itemid',39833),(21447,'events','itemid',39832),(21448,'history','itemid',39832),(21449,'history_log','itemid',39832),(21450,'history_str','itemid',39832),(21451,'history_text','itemid',39832),(21452,'history_uint','itemid',39832),(21453,'trends','itemid',39832),(21454,'trends_uint','itemid',39832),(21455,'events','itemid',39831),(21456,'history','itemid',39831),(21457,'history_log','itemid',39831),(21458,'history_str','itemid',39831),(21459,'history_text','itemid',39831),(21460,'history_uint','itemid',39831),(21461,'trends','itemid',39831),(21462,'trends_uint','itemid',39831),(21463,'events','itemid',39850),(21464,'history','itemid',39850),(21465,'history_log','itemid',39850),(21466,'history_str','itemid',39850),(21467,'history_text','itemid',39850),(21468,'history_uint','itemid',39850),(21469,'trends','itemid',39850),(21470,'trends_uint','itemid',39850),(21471,'events','itemid',39877),(21472,'history','itemid',39877),(21473,'history_log','itemid',39877),(21474,'history_str','itemid',39877),(21475,'history_text','itemid',39877),(21476,'history_uint','itemid',39877),(21477,'trends','itemid',39877),(21478,'trends_uint','itemid',39877),(21479,'events','itemid',39878),(21480,'history','itemid',39878),(21481,'history_log','itemid',39878),(21482,'history_str','itemid',39878),(21483,'history_text','itemid',39878),(21484,'history_uint','itemid',39878),(21485,'trends','itemid',39878),(21486,'trends_uint','itemid',39878),(21487,'events','itemid',39879),(21488,'history','itemid',39879),(21489,'history_log','itemid',39879),(21490,'history_str','itemid',39879),(21491,'history_text','itemid',39879),(21492,'history_uint','itemid',39879),(21493,'trends','itemid',39879),(21494,'trends_uint','itemid',39879),(21495,'events','itemid',39880),(21496,'history','itemid',39880),(21497,'history_log','itemid',39880),(21498,'history_str','itemid',39880),(21499,'history_text','itemid',39880),(21500,'history_uint','itemid',39880),(21501,'trends','itemid',39880),(21502,'trends_uint','itemid',39880),(21503,'events','itemid',39881),(21504,'history','itemid',39881),(21505,'history_log','itemid',39881),(21506,'history_str','itemid',39881),(21507,'history_text','itemid',39881),(21508,'history_uint','itemid',39881),(21509,'trends','itemid',39881),(21510,'trends_uint','itemid',39881),(21511,'events','itemid',39876),(21512,'history','itemid',39876),(21513,'history_log','itemid',39876),(21514,'history_str','itemid',39876),(21515,'history_text','itemid',39876),(21516,'history_uint','itemid',39876),(21517,'trends','itemid',39876),(21518,'trends_uint','itemid',39876),(21519,'events','itemid',39882),(21520,'history','itemid',39882),(21521,'history_log','itemid',39882),(21522,'history_str','itemid',39882),(21523,'history_text','itemid',39882),(21524,'history_uint','itemid',39882),(21525,'trends','itemid',39882),(21526,'trends_uint','itemid',39882),(21527,'events','itemid',39883),(21528,'history','itemid',39883),(21529,'history_log','itemid',39883),(21530,'history_str','itemid',39883),(21531,'history_text','itemid',39883),(21532,'history_uint','itemid',39883),(21533,'trends','itemid',39883),(21534,'trends_uint','itemid',39883),(21535,'events','itemid',39884),(21536,'history','itemid',39884),(21537,'history_log','itemid',39884),(21538,'history_str','itemid',39884),(21539,'history_text','itemid',39884),(21540,'history_uint','itemid',39884),(21541,'trends','itemid',39884),(21542,'trends_uint','itemid',39884),(21543,'events','itemid',39885),(21544,'history','itemid',39885),(21545,'history_log','itemid',39885),(21546,'history_str','itemid',39885),(21547,'history_text','itemid',39885),(21548,'history_uint','itemid',39885),(21549,'trends','itemid',39885),(21550,'trends_uint','itemid',39885),(21551,'events','itemid',39886),(21552,'history','itemid',39886),(21553,'history_log','itemid',39886),(21554,'history_str','itemid',39886),(21555,'history_text','itemid',39886),(21556,'history_uint','itemid',39886),(21557,'trends','itemid',39886),(21558,'trends_uint','itemid',39886),(21559,'events','itemid',39887),(21560,'history','itemid',39887),(21561,'history_log','itemid',39887),(21562,'history_str','itemid',39887),(21563,'history_text','itemid',39887),(21564,'history_uint','itemid',39887),(21565,'trends','itemid',39887),(21566,'trends_uint','itemid',39887),(21567,'events','itemid',39888),(21568,'history','itemid',39888),(21569,'history_log','itemid',39888),(21570,'history_str','itemid',39888),(21571,'history_text','itemid',39888),(21572,'history_uint','itemid',39888),(21573,'trends','itemid',39888),(21574,'trends_uint','itemid',39888),(21575,'events','itemid',39905),(21576,'history','itemid',39905),(21577,'history_log','itemid',39905),(21578,'history_str','itemid',39905),(21579,'history_text','itemid',39905),(21580,'history_uint','itemid',39905),(21581,'trends','itemid',39905),(21582,'trends_uint','itemid',39905),(21583,'events','itemid',39908),(21584,'history','itemid',39908),(21585,'history_log','itemid',39908),(21586,'history_str','itemid',39908),(21587,'history_text','itemid',39908),(21588,'history_uint','itemid',39908),(21589,'trends','itemid',39908),(21590,'trends_uint','itemid',39908),(21591,'events','itemid',39909),(21592,'history','itemid',39909),(21593,'history_log','itemid',39909),(21594,'history_str','itemid',39909),(21595,'history_text','itemid',39909),(21596,'history_uint','itemid',39909),(21597,'trends','itemid',39909),(21598,'trends_uint','itemid',39909),(21599,'events','itemid',39910),(21600,'history','itemid',39910),(21601,'history_log','itemid',39910),(21602,'history_str','itemid',39910),(21603,'history_text','itemid',39910),(21604,'history_uint','itemid',39910),(21605,'trends','itemid',39910),(21606,'trends_uint','itemid',39910),(21607,'events','itemid',39911),(21608,'history','itemid',39911),(21609,'history_log','itemid',39911),(21610,'history_str','itemid',39911),(21611,'history_text','itemid',39911),(21612,'history_uint','itemid',39911),(21613,'trends','itemid',39911),(21614,'trends_uint','itemid',39911),(21615,'events','itemid',39906),(21616,'history','itemid',39906),(21617,'history_log','itemid',39906),(21618,'history_str','itemid',39906),(21619,'history_text','itemid',39906),(21620,'history_uint','itemid',39906),(21621,'trends','itemid',39906),(21622,'trends_uint','itemid',39906),(21623,'events','itemid',39912),(21624,'history','itemid',39912),(21625,'history_log','itemid',39912),(21626,'history_str','itemid',39912),(21627,'history_text','itemid',39912),(21628,'history_uint','itemid',39912),(21629,'trends','itemid',39912),(21630,'trends_uint','itemid',39912),(21631,'events','itemid',39913),(21632,'history','itemid',39913),(21633,'history_log','itemid',39913),(21634,'history_str','itemid',39913),(21635,'history_text','itemid',39913),(21636,'history_uint','itemid',39913),(21637,'trends','itemid',39913),(21638,'trends_uint','itemid',39913),(21639,'events','itemid',39914),(21640,'history','itemid',39914),(21641,'history_log','itemid',39914),(21642,'history_str','itemid',39914),(21643,'history_text','itemid',39914),(21644,'history_uint','itemid',39914),(21645,'trends','itemid',39914),(21646,'trends_uint','itemid',39914),(21647,'events','itemid',39915),(21648,'history','itemid',39915),(21649,'history_log','itemid',39915),(21650,'history_str','itemid',39915),(21651,'history_text','itemid',39915),(21652,'history_uint','itemid',39915),(21653,'trends','itemid',39915),(21654,'trends_uint','itemid',39915),(21655,'events','itemid',39916),(21656,'history','itemid',39916),(21657,'history_log','itemid',39916),(21658,'history_str','itemid',39916),(21659,'history_text','itemid',39916),(21660,'history_uint','itemid',39916),(21661,'trends','itemid',39916),(21662,'trends_uint','itemid',39916),(21663,'events','itemid',39907),(21664,'history','itemid',39907),(21665,'history_log','itemid',39907),(21666,'history_str','itemid',39907),(21667,'history_text','itemid',39907),(21668,'history_uint','itemid',39907),(21669,'trends','itemid',39907),(21670,'trends_uint','itemid',39907),(21671,'events','itemid',39937),(21672,'history','itemid',39937),(21673,'history_log','itemid',39937),(21674,'history_str','itemid',39937),(21675,'history_text','itemid',39937),(21676,'history_uint','itemid',39937),(21677,'trends','itemid',39937),(21678,'trends_uint','itemid',39937),(21679,'events','itemid',39938),(21680,'history','itemid',39938),(21681,'history_log','itemid',39938),(21682,'history_str','itemid',39938),(21683,'history_text','itemid',39938),(21684,'history_uint','itemid',39938),(21685,'trends','itemid',39938),(21686,'trends_uint','itemid',39938),(21687,'events','itemid',39939),(21688,'history','itemid',39939),(21689,'history_log','itemid',39939),(21690,'history_str','itemid',39939),(21691,'history_text','itemid',39939),(21692,'history_uint','itemid',39939),(21693,'trends','itemid',39939),(21694,'trends_uint','itemid',39939),(21695,'events','itemid',39998),(21696,'history','itemid',39998),(21697,'history_log','itemid',39998),(21698,'history_str','itemid',39998),(21699,'history_text','itemid',39998),(21700,'history_uint','itemid',39998),(21701,'trends','itemid',39998),(21702,'trends_uint','itemid',39998),(21703,'events','itemid',39990),(21704,'history','itemid',39990),(21705,'history_log','itemid',39990),(21706,'history_str','itemid',39990),(21707,'history_text','itemid',39990),(21708,'history_uint','itemid',39990),(21709,'trends','itemid',39990),(21710,'trends_uint','itemid',39990),(21711,'events','itemid',39988),(21712,'history','itemid',39988),(21713,'history_log','itemid',39988),(21714,'history_str','itemid',39988),(21715,'history_text','itemid',39988),(21716,'history_uint','itemid',39988),(21717,'trends','itemid',39988),(21718,'trends_uint','itemid',39988),(21719,'events','itemid',39986),(21720,'history','itemid',39986),(21721,'history_log','itemid',39986),(21722,'history_str','itemid',39986),(21723,'history_text','itemid',39986),(21724,'history_uint','itemid',39986),(21725,'trends','itemid',39986),(21726,'trends_uint','itemid',39986),(21727,'events','itemid',39987),(21728,'history','itemid',39987),(21729,'history_log','itemid',39987),(21730,'history_str','itemid',39987),(21731,'history_text','itemid',39987),(21732,'history_uint','itemid',39987),(21733,'trends','itemid',39987),(21734,'trends_uint','itemid',39987),(21735,'events','itemid',39978),(21736,'history','itemid',39978),(21737,'history_log','itemid',39978),(21738,'history_str','itemid',39978),(21739,'history_text','itemid',39978),(21740,'history_uint','itemid',39978),(21741,'trends','itemid',39978),(21742,'trends_uint','itemid',39978),(21743,'events','itemid',39989),(21744,'history','itemid',39989),(21745,'history_log','itemid',39989),(21746,'history_str','itemid',39989),(21747,'history_text','itemid',39989),(21748,'history_uint','itemid',39989),(21749,'trends','itemid',39989),(21750,'trends_uint','itemid',39989),(21751,'events','itemid',39999),(21752,'history','itemid',39999),(21753,'history_log','itemid',39999),(21754,'history_str','itemid',39999),(21755,'history_text','itemid',39999),(21756,'history_uint','itemid',39999),(21757,'trends','itemid',39999),(21758,'trends_uint','itemid',39999),(21759,'events','itemid',39991),(21760,'history','itemid',39991),(21761,'history_log','itemid',39991),(21762,'history_str','itemid',39991),(21763,'history_text','itemid',39991),(21764,'history_uint','itemid',39991),(21765,'trends','itemid',39991),(21766,'trends_uint','itemid',39991),(21767,'events','itemid',39992),(21768,'history','itemid',39992),(21769,'history_log','itemid',39992),(21770,'history_str','itemid',39992),(21771,'history_text','itemid',39992),(21772,'history_uint','itemid',39992),(21773,'trends','itemid',39992),(21774,'trends_uint','itemid',39992),(21775,'events','itemid',39993),(21776,'history','itemid',39993),(21777,'history_log','itemid',39993),(21778,'history_str','itemid',39993),(21779,'history_text','itemid',39993),(21780,'history_uint','itemid',39993),(21781,'trends','itemid',39993),(21782,'trends_uint','itemid',39993),(21783,'events','itemid',39994),(21784,'history','itemid',39994),(21785,'history_log','itemid',39994),(21786,'history_str','itemid',39994),(21787,'history_text','itemid',39994),(21788,'history_uint','itemid',39994),(21789,'trends','itemid',39994),(21790,'trends_uint','itemid',39994),(21791,'events','itemid',39995),(21792,'history','itemid',39995),(21793,'history_log','itemid',39995),(21794,'history_str','itemid',39995),(21795,'history_text','itemid',39995),(21796,'history_uint','itemid',39995),(21797,'trends','itemid',39995),(21798,'trends_uint','itemid',39995),(21799,'events','itemid',39996),(21800,'history','itemid',39996),(21801,'history_log','itemid',39996),(21802,'history_str','itemid',39996),(21803,'history_text','itemid',39996),(21804,'history_uint','itemid',39996),(21805,'trends','itemid',39996),(21806,'trends_uint','itemid',39996),(21807,'events','itemid',39997),(21808,'history','itemid',39997),(21809,'history_log','itemid',39997),(21810,'history_str','itemid',39997),(21811,'history_text','itemid',39997),(21812,'history_uint','itemid',39997),(21813,'trends','itemid',39997),(21814,'trends_uint','itemid',39997),(21815,'events','itemid',40010),(21816,'history','itemid',40010),(21817,'history_log','itemid',40010),(21818,'history_str','itemid',40010),(21819,'history_text','itemid',40010),(21820,'history_uint','itemid',40010),(21821,'trends','itemid',40010),(21822,'trends_uint','itemid',40010),(21823,'events','itemid',40011),(21824,'history','itemid',40011),(21825,'history_log','itemid',40011),(21826,'history_str','itemid',40011),(21827,'history_text','itemid',40011),(21828,'history_uint','itemid',40011),(21829,'trends','itemid',40011),(21830,'trends_uint','itemid',40011),(21831,'events','itemid',42700),(21832,'history','itemid',42700),(21833,'history_log','itemid',42700),(21834,'history_str','itemid',42700),(21835,'history_text','itemid',42700),(21836,'history_uint','itemid',42700),(21837,'trends','itemid',42700),(21838,'trends_uint','itemid',42700),(21839,'events','itemid',40016),(21840,'history','itemid',40016),(21841,'history_log','itemid',40016),(21842,'history_str','itemid',40016),(21843,'history_text','itemid',40016),(21844,'history_uint','itemid',40016),(21845,'trends','itemid',40016),(21846,'trends_uint','itemid',40016),(21847,'events','itemid',42701),(21848,'history','itemid',42701),(21849,'history_log','itemid',42701),(21850,'history_str','itemid',42701),(21851,'history_text','itemid',42701),(21852,'history_uint','itemid',42701),(21853,'trends','itemid',42701),(21854,'trends_uint','itemid',42701),(21855,'events','itemid',42702),(21856,'history','itemid',42702),(21857,'history_log','itemid',42702),(21858,'history_str','itemid',42702),(21859,'history_text','itemid',42702),(21860,'history_uint','itemid',42702),(21861,'trends','itemid',42702),(21862,'trends_uint','itemid',42702),(21863,'events','itemid',40012),(21864,'history','itemid',40012),(21865,'history_log','itemid',40012),(21866,'history_str','itemid',40012),(21867,'history_text','itemid',40012),(21868,'history_uint','itemid',40012),(21869,'trends','itemid',40012),(21870,'trends_uint','itemid',40012),(21871,'events','itemid',40017),(21872,'history','itemid',40017),(21873,'history_log','itemid',40017),(21874,'history_str','itemid',40017),(21875,'history_text','itemid',40017),(21876,'history_uint','itemid',40017),(21877,'trends','itemid',40017),(21878,'trends_uint','itemid',40017),(21879,'events','itemid',40018),(21880,'history','itemid',40018),(21881,'history_log','itemid',40018),(21882,'history_str','itemid',40018),(21883,'history_text','itemid',40018),(21884,'history_uint','itemid',40018),(21885,'trends','itemid',40018),(21886,'trends_uint','itemid',40018),(21887,'events','itemid',40015),(21888,'history','itemid',40015),(21889,'history_log','itemid',40015),(21890,'history_str','itemid',40015),(21891,'history_text','itemid',40015),(21892,'history_uint','itemid',40015),(21893,'trends','itemid',40015),(21894,'trends_uint','itemid',40015),(21895,'events','itemid',40013),(21896,'history','itemid',40013),(21897,'history_log','itemid',40013),(21898,'history_str','itemid',40013),(21899,'history_text','itemid',40013),(21900,'history_uint','itemid',40013),(21901,'trends','itemid',40013),(21902,'trends_uint','itemid',40013),(21903,'events','itemid',40019),(21904,'history','itemid',40019),(21905,'history_log','itemid',40019),(21906,'history_str','itemid',40019),(21907,'history_text','itemid',40019),(21908,'history_uint','itemid',40019),(21909,'trends','itemid',40019),(21910,'trends_uint','itemid',40019),(21911,'events','itemid',40014),(21912,'history','itemid',40014),(21913,'history_log','itemid',40014),(21914,'history_str','itemid',40014),(21915,'history_text','itemid',40014),(21916,'history_uint','itemid',40014),(21917,'trends','itemid',40014),(21918,'trends_uint','itemid',40014),(21919,'events','itemid',40020),(21920,'history','itemid',40020),(21921,'history_log','itemid',40020),(21922,'history_str','itemid',40020),(21923,'history_text','itemid',40020),(21924,'history_uint','itemid',40020),(21925,'trends','itemid',40020),(21926,'trends_uint','itemid',40020),(21927,'events','itemid',44100),(21928,'history','itemid',44100),(21929,'history_log','itemid',44100),(21930,'history_str','itemid',44100),(21931,'history_text','itemid',44100),(21932,'history_uint','itemid',44100),(21933,'trends','itemid',44100),(21934,'trends_uint','itemid',44100),(21935,'events','itemid',44106),(21936,'history','itemid',44106),(21937,'history_log','itemid',44106),(21938,'history_str','itemid',44106),(21939,'history_text','itemid',44106),(21940,'history_uint','itemid',44106),(21941,'trends','itemid',44106),(21942,'trends_uint','itemid',44106),(21943,'events','itemid',44098),(21944,'history','itemid',44098),(21945,'history_log','itemid',44098),(21946,'history_str','itemid',44098),(21947,'history_text','itemid',44098),(21948,'history_uint','itemid',44098),(21949,'trends','itemid',44098),(21950,'trends_uint','itemid',44098),(21951,'events','itemid',43174),(21952,'history','itemid',43174),(21953,'history_log','itemid',43174),(21954,'history_str','itemid',43174),(21955,'history_text','itemid',43174),(21956,'history_uint','itemid',43174),(21957,'trends','itemid',43174),(21958,'trends_uint','itemid',43174),(21959,'events','itemid',44105),(21960,'history','itemid',44105),(21961,'history_log','itemid',44105),(21962,'history_str','itemid',44105),(21963,'history_text','itemid',44105),(21964,'history_uint','itemid',44105),(21965,'trends','itemid',44105),(21966,'trends_uint','itemid',44105),(21967,'events','itemid',44104),(21968,'history','itemid',44104),(21969,'history_log','itemid',44104),(21970,'history_str','itemid',44104),(21971,'history_text','itemid',44104),(21972,'history_uint','itemid',44104),(21973,'trends','itemid',44104),(21974,'trends_uint','itemid',44104),(21975,'events','itemid',44103),(21976,'history','itemid',44103),(21977,'history_log','itemid',44103),(21978,'history_str','itemid',44103),(21979,'history_text','itemid',44103),(21980,'history_uint','itemid',44103),(21981,'trends','itemid',44103),(21982,'trends_uint','itemid',44103),(21983,'events','itemid',43176),(21984,'history','itemid',43176),(21985,'history_log','itemid',43176),(21986,'history_str','itemid',43176),(21987,'history_text','itemid',43176),(21988,'history_uint','itemid',43176),(21989,'trends','itemid',43176),(21990,'trends_uint','itemid',43176),(21991,'events','itemid',44102),(21992,'history','itemid',44102),(21993,'history_log','itemid',44102),(21994,'history_str','itemid',44102),(21995,'history_text','itemid',44102),(21996,'history_uint','itemid',44102),(21997,'trends','itemid',44102),(21998,'trends_uint','itemid',44102),(21999,'events','itemid',44101),(22000,'history','itemid',44101),(22001,'history_log','itemid',44101),(22002,'history_str','itemid',44101),(22003,'history_text','itemid',44101),(22004,'history_uint','itemid',44101),(22005,'trends','itemid',44101),(22006,'trends_uint','itemid',44101),(22007,'events','itemid',44094),(22008,'history','itemid',44094),(22009,'history_log','itemid',44094),(22010,'history_str','itemid',44094),(22011,'history_text','itemid',44094),(22012,'history_uint','itemid',44094),(22013,'trends','itemid',44094),(22014,'trends_uint','itemid',44094),(22015,'events','itemid',44099),(22016,'history','itemid',44099),(22017,'history_log','itemid',44099),(22018,'history_str','itemid',44099),(22019,'history_text','itemid',44099),(22020,'history_uint','itemid',44099),(22021,'trends','itemid',44099),(22022,'trends_uint','itemid',44099),(22023,'events','itemid',44107),(22024,'history','itemid',44107),(22025,'history_log','itemid',44107),(22026,'history_str','itemid',44107),(22027,'history_text','itemid',44107),(22028,'history_uint','itemid',44107),(22029,'trends','itemid',44107),(22030,'trends_uint','itemid',44107),(22031,'events','itemid',44097),(22032,'history','itemid',44097),(22033,'history_log','itemid',44097),(22034,'history_str','itemid',44097),(22035,'history_text','itemid',44097),(22036,'history_uint','itemid',44097),(22037,'trends','itemid',44097),(22038,'trends_uint','itemid',44097),(22039,'events','itemid',44096),(22040,'history','itemid',44096),(22041,'history_log','itemid',44096),(22042,'history_str','itemid',44096),(22043,'history_text','itemid',44096),(22044,'history_uint','itemid',44096),(22045,'trends','itemid',44096),(22046,'trends_uint','itemid',44096),(22047,'events','itemid',44095),(22048,'history','itemid',44095),(22049,'history_log','itemid',44095),(22050,'history_str','itemid',44095),(22051,'history_text','itemid',44095),(22052,'history_uint','itemid',44095),(22053,'trends','itemid',44095),(22054,'trends_uint','itemid',44095),(22055,'events','itemid',43177),(22056,'history','itemid',43177),(22057,'history_log','itemid',43177),(22058,'history_str','itemid',43177),(22059,'history_text','itemid',43177),(22060,'history_uint','itemid',43177),(22061,'trends','itemid',43177),(22062,'trends_uint','itemid',43177),(22063,'events','itemid',43178),(22064,'history','itemid',43178),(22065,'history_log','itemid',43178),(22066,'history_str','itemid',43178),(22067,'history_text','itemid',43178),(22068,'history_uint','itemid',43178),(22069,'trends','itemid',43178),(22070,'trends_uint','itemid',43178),(22071,'events','itemid',43179),(22072,'history','itemid',43179),(22073,'history_log','itemid',43179),(22074,'history_str','itemid',43179),(22075,'history_text','itemid',43179),(22076,'history_uint','itemid',43179),(22077,'trends','itemid',43179),(22078,'trends_uint','itemid',43179),(22079,'events','itemid',43180),(22080,'history','itemid',43180),(22081,'history_log','itemid',43180),(22082,'history_str','itemid',43180),(22083,'history_text','itemid',43180),(22084,'history_uint','itemid',43180),(22085,'trends','itemid',43180),(22086,'trends_uint','itemid',43180),(22087,'events','itemid',43181),(22088,'history','itemid',43181),(22089,'history_log','itemid',43181),(22090,'history_str','itemid',43181),(22091,'history_text','itemid',43181),(22092,'history_uint','itemid',43181),(22093,'trends','itemid',43181),(22094,'trends_uint','itemid',43181),(22095,'events','itemid',43182),(22096,'history','itemid',43182),(22097,'history_log','itemid',43182),(22098,'history_str','itemid',43182),(22099,'history_text','itemid',43182),(22100,'history_uint','itemid',43182),(22101,'trends','itemid',43182),(22102,'trends_uint','itemid',43182),(22103,'events','itemid',43183),(22104,'history','itemid',43183),(22105,'history_log','itemid',43183),(22106,'history_str','itemid',43183),(22107,'history_text','itemid',43183),(22108,'history_uint','itemid',43183),(22109,'trends','itemid',43183),(22110,'trends_uint','itemid',43183),(22111,'events','itemid',43175),(22112,'history','itemid',43175),(22113,'history_log','itemid',43175),(22114,'history_str','itemid',43175),(22115,'history_text','itemid',43175),(22116,'history_uint','itemid',43175),(22117,'trends','itemid',43175),(22118,'trends_uint','itemid',43175),(22119,'events','itemid',44127),(22120,'history','itemid',44127),(22121,'history_log','itemid',44127),(22122,'history_str','itemid',44127),(22123,'history_text','itemid',44127),(22124,'history_uint','itemid',44127),(22125,'trends','itemid',44127),(22126,'trends_uint','itemid',44127),(22127,'events','itemid',44133),(22128,'history','itemid',44133),(22129,'history_log','itemid',44133),(22130,'history_str','itemid',44133),(22131,'history_text','itemid',44133),(22132,'history_uint','itemid',44133),(22133,'trends','itemid',44133),(22134,'trends_uint','itemid',44133),(22135,'events','itemid',44125),(22136,'history','itemid',44125),(22137,'history_log','itemid',44125),(22138,'history_str','itemid',44125),(22139,'history_text','itemid',44125),(22140,'history_uint','itemid',44125),(22141,'trends','itemid',44125),(22142,'trends_uint','itemid',44125),(22143,'events','itemid',43281),(22144,'history','itemid',43281),(22145,'history_log','itemid',43281),(22146,'history_str','itemid',43281),(22147,'history_text','itemid',43281),(22148,'history_uint','itemid',43281),(22149,'trends','itemid',43281),(22150,'trends_uint','itemid',43281),(22151,'events','itemid',44132),(22152,'history','itemid',44132),(22153,'history_log','itemid',44132),(22154,'history_str','itemid',44132),(22155,'history_text','itemid',44132),(22156,'history_uint','itemid',44132),(22157,'trends','itemid',44132),(22158,'trends_uint','itemid',44132),(22159,'events','itemid',44131),(22160,'history','itemid',44131),(22161,'history_log','itemid',44131),(22162,'history_str','itemid',44131),(22163,'history_text','itemid',44131),(22164,'history_uint','itemid',44131),(22165,'trends','itemid',44131),(22166,'trends_uint','itemid',44131),(22167,'events','itemid',44130),(22168,'history','itemid',44130),(22169,'history_log','itemid',44130),(22170,'history_str','itemid',44130),(22171,'history_text','itemid',44130),(22172,'history_uint','itemid',44130),(22173,'trends','itemid',44130),(22174,'trends_uint','itemid',44130),(22175,'events','itemid',43283),(22176,'history','itemid',43283),(22177,'history_log','itemid',43283),(22178,'history_str','itemid',43283),(22179,'history_text','itemid',43283),(22180,'history_uint','itemid',43283),(22181,'trends','itemid',43283),(22182,'trends_uint','itemid',43283),(22183,'events','itemid',44129),(22184,'history','itemid',44129),(22185,'history_log','itemid',44129),(22186,'history_str','itemid',44129),(22187,'history_text','itemid',44129),(22188,'history_uint','itemid',44129),(22189,'trends','itemid',44129),(22190,'trends_uint','itemid',44129),(22191,'events','itemid',44128),(22192,'history','itemid',44128),(22193,'history_log','itemid',44128),(22194,'history_str','itemid',44128),(22195,'history_text','itemid',44128),(22196,'history_uint','itemid',44128),(22197,'trends','itemid',44128),(22198,'trends_uint','itemid',44128),(22199,'events','itemid',44121),(22200,'history','itemid',44121),(22201,'history_log','itemid',44121),(22202,'history_str','itemid',44121),(22203,'history_text','itemid',44121),(22204,'history_uint','itemid',44121),(22205,'trends','itemid',44121),(22206,'trends_uint','itemid',44121),(22207,'events','itemid',44126),(22208,'history','itemid',44126),(22209,'history_log','itemid',44126),(22210,'history_str','itemid',44126),(22211,'history_text','itemid',44126),(22212,'history_uint','itemid',44126),(22213,'trends','itemid',44126),(22214,'trends_uint','itemid',44126),(22215,'events','itemid',44134),(22216,'history','itemid',44134),(22217,'history_log','itemid',44134),(22218,'history_str','itemid',44134),(22219,'history_text','itemid',44134),(22220,'history_uint','itemid',44134),(22221,'trends','itemid',44134),(22222,'trends_uint','itemid',44134),(22223,'events','itemid',44124),(22224,'history','itemid',44124),(22225,'history_log','itemid',44124),(22226,'history_str','itemid',44124),(22227,'history_text','itemid',44124),(22228,'history_uint','itemid',44124),(22229,'trends','itemid',44124),(22230,'trends_uint','itemid',44124),(22231,'events','itemid',44123),(22232,'history','itemid',44123),(22233,'history_log','itemid',44123),(22234,'history_str','itemid',44123),(22235,'history_text','itemid',44123),(22236,'history_uint','itemid',44123),(22237,'trends','itemid',44123),(22238,'trends_uint','itemid',44123),(22239,'events','itemid',44122),(22240,'history','itemid',44122),(22241,'history_log','itemid',44122),(22242,'history_str','itemid',44122),(22243,'history_text','itemid',44122),(22244,'history_uint','itemid',44122),(22245,'trends','itemid',44122),(22246,'trends_uint','itemid',44122),(22247,'events','itemid',43284),(22248,'history','itemid',43284),(22249,'history_log','itemid',43284),(22250,'history_str','itemid',43284),(22251,'history_text','itemid',43284),(22252,'history_uint','itemid',43284),(22253,'trends','itemid',43284),(22254,'trends_uint','itemid',43284),(22255,'events','itemid',43285),(22256,'history','itemid',43285),(22257,'history_log','itemid',43285),(22258,'history_str','itemid',43285),(22259,'history_text','itemid',43285),(22260,'history_uint','itemid',43285),(22261,'trends','itemid',43285),(22262,'trends_uint','itemid',43285),(22263,'events','itemid',43286),(22264,'history','itemid',43286),(22265,'history_log','itemid',43286),(22266,'history_str','itemid',43286),(22267,'history_text','itemid',43286),(22268,'history_uint','itemid',43286),(22269,'trends','itemid',43286),(22270,'trends_uint','itemid',43286),(22271,'events','itemid',43287),(22272,'history','itemid',43287),(22273,'history_log','itemid',43287),(22274,'history_str','itemid',43287),(22275,'history_text','itemid',43287),(22276,'history_uint','itemid',43287),(22277,'trends','itemid',43287),(22278,'trends_uint','itemid',43287),(22279,'events','itemid',43288),(22280,'history','itemid',43288),(22281,'history_log','itemid',43288),(22282,'history_str','itemid',43288),(22283,'history_text','itemid',43288),(22284,'history_uint','itemid',43288),(22285,'trends','itemid',43288),(22286,'trends_uint','itemid',43288),(22287,'events','itemid',43289),(22288,'history','itemid',43289),(22289,'history_log','itemid',43289),(22290,'history_str','itemid',43289),(22291,'history_text','itemid',43289),(22292,'history_uint','itemid',43289),(22293,'trends','itemid',43289),(22294,'trends_uint','itemid',43289),(22295,'events','itemid',43290),(22296,'history','itemid',43290),(22297,'history_log','itemid',43290),(22298,'history_str','itemid',43290),(22299,'history_text','itemid',43290),(22300,'history_uint','itemid',43290),(22301,'trends','itemid',43290),(22302,'trends_uint','itemid',43290),(22303,'events','itemid',43282),(22304,'history','itemid',43282),(22305,'history_log','itemid',43282),(22306,'history_str','itemid',43282),(22307,'history_text','itemid',43282),(22308,'history_uint','itemid',43282),(22309,'trends','itemid',43282),(22310,'trends_uint','itemid',43282),(22311,'events','itemid',43413),(22312,'history','itemid',43413),(22313,'history_log','itemid',43413),(22314,'history_str','itemid',43413),(22315,'history_text','itemid',43413),(22316,'history_uint','itemid',43413),(22317,'trends','itemid',43413),(22318,'trends_uint','itemid',43413),(22319,'events','itemid',44154),(22320,'history','itemid',44154),(22321,'history_log','itemid',44154),(22322,'history_str','itemid',44154),(22323,'history_text','itemid',44154),(22324,'history_uint','itemid',44154),(22325,'trends','itemid',44154),(22326,'trends_uint','itemid',44154),(22327,'events','itemid',43399),(22328,'history','itemid',43399),(22329,'history_log','itemid',43399),(22330,'history_str','itemid',43399),(22331,'history_text','itemid',43399),(22332,'history_uint','itemid',43399),(22333,'trends','itemid',43399),(22334,'trends_uint','itemid',43399),(22335,'events','itemid',44148),(22336,'history','itemid',44148),(22337,'history_log','itemid',44148),(22338,'history_str','itemid',44148),(22339,'history_text','itemid',44148),(22340,'history_uint','itemid',44148),(22341,'trends','itemid',44148),(22342,'trends_uint','itemid',44148),(22343,'events','itemid',43406),(22344,'history','itemid',43406),(22345,'history_log','itemid',43406),(22346,'history_str','itemid',43406),(22347,'history_text','itemid',43406),(22348,'history_uint','itemid',43406),(22349,'trends','itemid',43406),(22350,'trends_uint','itemid',43406),(22351,'events','itemid',44149),(22352,'history','itemid',44149),(22353,'history_log','itemid',44149),(22354,'history_str','itemid',44149),(22355,'history_text','itemid',44149),(22356,'history_uint','itemid',44149),(22357,'trends','itemid',44149),(22358,'trends_uint','itemid',44149),(22359,'events','itemid',44150),(22360,'history','itemid',44150),(22361,'history_log','itemid',44150),(22362,'history_str','itemid',44150),(22363,'history_text','itemid',44150),(22364,'history_uint','itemid',44150),(22365,'trends','itemid',44150),(22366,'trends_uint','itemid',44150),(22367,'events','itemid',44151),(22368,'history','itemid',44151),(22369,'history_log','itemid',44151),(22370,'history_str','itemid',44151),(22371,'history_text','itemid',44151),(22372,'history_uint','itemid',44151),(22373,'trends','itemid',44151),(22374,'trends_uint','itemid',44151),(22375,'events','itemid',44152),(22376,'history','itemid',44152),(22377,'history_log','itemid',44152),(22378,'history_str','itemid',44152),(22379,'history_text','itemid',44152),(22380,'history_uint','itemid',44152),(22381,'trends','itemid',44152),(22382,'trends_uint','itemid',44152),(22383,'events','itemid',44153),(22384,'history','itemid',44153),(22385,'history_log','itemid',44153),(22386,'history_str','itemid',44153),(22387,'history_text','itemid',44153),(22388,'history_uint','itemid',44153),(22389,'trends','itemid',44153),(22390,'trends_uint','itemid',44153),(22391,'events','itemid',43412),(22392,'history','itemid',43412),(22393,'history_log','itemid',43412),(22394,'history_str','itemid',43412),(22395,'history_text','itemid',43412),(22396,'history_uint','itemid',43412),(22397,'trends','itemid',43412),(22398,'trends_uint','itemid',43412),(22399,'events','itemid',43411),(22400,'history','itemid',43411),(22401,'history_log','itemid',43411),(22402,'history_str','itemid',43411),(22403,'history_text','itemid',43411),(22404,'history_uint','itemid',43411),(22405,'trends','itemid',43411),(22406,'trends_uint','itemid',43411),(22407,'events','itemid',43410),(22408,'history','itemid',43410),(22409,'history_log','itemid',43410),(22410,'history_str','itemid',43410),(22411,'history_text','itemid',43410),(22412,'history_uint','itemid',43410),(22413,'trends','itemid',43410),(22414,'trends_uint','itemid',43410),(22415,'events','itemid',43409),(22416,'history','itemid',43409),(22417,'history_log','itemid',43409),(22418,'history_str','itemid',43409),(22419,'history_text','itemid',43409),(22420,'history_uint','itemid',43409),(22421,'trends','itemid',43409),(22422,'trends_uint','itemid',43409),(22423,'events','itemid',43408),(22424,'history','itemid',43408),(22425,'history_log','itemid',43408),(22426,'history_str','itemid',43408),(22427,'history_text','itemid',43408),(22428,'history_uint','itemid',43408),(22429,'trends','itemid',43408),(22430,'trends_uint','itemid',43408),(22431,'events','itemid',43414),(22432,'history','itemid',43414),(22433,'history_log','itemid',43414),(22434,'history_str','itemid',43414),(22435,'history_text','itemid',43414),(22436,'history_uint','itemid',43414),(22437,'trends','itemid',43414),(22438,'trends_uint','itemid',43414),(22439,'events','itemid',43407),(22440,'history','itemid',43407),(22441,'history_log','itemid',43407),(22442,'history_str','itemid',43407),(22443,'history_text','itemid',43407),(22444,'history_uint','itemid',43407),(22445,'trends','itemid',43407),(22446,'trends_uint','itemid',43407),(22447,'events','itemid',43405),(22448,'history','itemid',43405),(22449,'history_log','itemid',43405),(22450,'history_str','itemid',43405),(22451,'history_text','itemid',43405),(22452,'history_uint','itemid',43405),(22453,'trends','itemid',43405),(22454,'trends_uint','itemid',43405),(22455,'events','itemid',43404),(22456,'history','itemid',43404),(22457,'history_log','itemid',43404),(22458,'history_str','itemid',43404),(22459,'history_text','itemid',43404),(22460,'history_uint','itemid',43404),(22461,'trends','itemid',43404),(22462,'trends_uint','itemid',43404),(22463,'events','itemid',43403),(22464,'history','itemid',43403),(22465,'history_log','itemid',43403),(22466,'history_str','itemid',43403),(22467,'history_text','itemid',43403),(22468,'history_uint','itemid',43403),(22469,'trends','itemid',43403),(22470,'trends_uint','itemid',43403),(22471,'events','itemid',43402),(22472,'history','itemid',43402),(22473,'history_log','itemid',43402),(22474,'history_str','itemid',43402),(22475,'history_text','itemid',43402),(22476,'history_uint','itemid',43402),(22477,'trends','itemid',43402),(22478,'trends_uint','itemid',43402),(22479,'events','itemid',43401),(22480,'history','itemid',43401),(22481,'history_log','itemid',43401),(22482,'history_str','itemid',43401),(22483,'history_text','itemid',43401),(22484,'history_uint','itemid',43401),(22485,'trends','itemid',43401),(22486,'trends_uint','itemid',43401),(22487,'events','itemid',43400),(22488,'history','itemid',43400),(22489,'history_log','itemid',43400),(22490,'history_str','itemid',43400),(22491,'history_text','itemid',43400),(22492,'history_uint','itemid',43400),(22493,'trends','itemid',43400),(22494,'trends_uint','itemid',43400),(22495,'events','itemid',43398),(22496,'history','itemid',43398),(22497,'history_log','itemid',43398),(22498,'history_str','itemid',43398),(22499,'history_text','itemid',43398),(22500,'history_uint','itemid',43398),(22501,'trends','itemid',43398),(22502,'trends_uint','itemid',43398),(22503,'events','itemid',43901),(22504,'history','itemid',43901),(22505,'history_log','itemid',43901),(22506,'history_str','itemid',43901),(22507,'history_text','itemid',43901),(22508,'history_uint','itemid',43901),(22509,'trends','itemid',43901),(22510,'trends_uint','itemid',43901),(22511,'events','itemid',44205),(22512,'history','itemid',44205),(22513,'history_log','itemid',44205),(22514,'history_str','itemid',44205),(22515,'history_text','itemid',44205),(22516,'history_uint','itemid',44205),(22517,'trends','itemid',44205),(22518,'trends_uint','itemid',44205),(22519,'events','itemid',43903),(22520,'history','itemid',43903),(22521,'history_log','itemid',43903),(22522,'history_str','itemid',43903),(22523,'history_text','itemid',43903),(22524,'history_uint','itemid',43903),(22525,'trends','itemid',43903),(22526,'trends_uint','itemid',43903),(22527,'events','itemid',43904),(22528,'history','itemid',43904),(22529,'history_log','itemid',43904),(22530,'history_str','itemid',43904),(22531,'history_text','itemid',43904),(22532,'history_uint','itemid',43904),(22533,'trends','itemid',43904),(22534,'trends_uint','itemid',43904),(22535,'events','itemid',44201),(22536,'history','itemid',44201),(22537,'history_log','itemid',44201),(22538,'history_str','itemid',44201),(22539,'history_text','itemid',44201),(22540,'history_uint','itemid',44201),(22541,'trends','itemid',44201),(22542,'trends_uint','itemid',44201),(22543,'events','itemid',44202),(22544,'history','itemid',44202),(22545,'history_log','itemid',44202),(22546,'history_str','itemid',44202),(22547,'history_text','itemid',44202),(22548,'history_uint','itemid',44202),(22549,'trends','itemid',44202),(22550,'trends_uint','itemid',44202),(22551,'events','itemid',44203),(22552,'history','itemid',44203),(22553,'history_log','itemid',44203),(22554,'history_str','itemid',44203),(22555,'history_text','itemid',44203),(22556,'history_uint','itemid',44203),(22557,'trends','itemid',44203),(22558,'trends_uint','itemid',44203),(22559,'events','itemid',44204),(22560,'history','itemid',44204),(22561,'history_log','itemid',44204),(22562,'history_str','itemid',44204),(22563,'history_text','itemid',44204),(22564,'history_uint','itemid',44204),(22565,'trends','itemid',44204),(22566,'trends_uint','itemid',44204),(22567,'events','itemid',44213),(22568,'history','itemid',44213),(22569,'history_log','itemid',44213),(22570,'history_str','itemid',44213),(22571,'history_text','itemid',44213),(22572,'history_uint','itemid',44213),(22573,'trends','itemid',44213),(22574,'trends_uint','itemid',44213),(22575,'events','itemid',44206),(22576,'history','itemid',44206),(22577,'history_log','itemid',44206),(22578,'history_str','itemid',44206),(22579,'history_text','itemid',44206),(22580,'history_uint','itemid',44206),(22581,'trends','itemid',44206),(22582,'trends_uint','itemid',44206),(22583,'events','itemid',44207),(22584,'history','itemid',44207),(22585,'history_log','itemid',44207),(22586,'history_str','itemid',44207),(22587,'history_text','itemid',44207),(22588,'history_uint','itemid',44207),(22589,'trends','itemid',44207),(22590,'trends_uint','itemid',44207),(22591,'events','itemid',44208),(22592,'history','itemid',44208),(22593,'history_log','itemid',44208),(22594,'history_str','itemid',44208),(22595,'history_text','itemid',44208),(22596,'history_uint','itemid',44208),(22597,'trends','itemid',44208),(22598,'trends_uint','itemid',44208),(22599,'events','itemid',44209),(22600,'history','itemid',44209),(22601,'history_log','itemid',44209),(22602,'history_str','itemid',44209),(22603,'history_text','itemid',44209),(22604,'history_uint','itemid',44209),(22605,'trends','itemid',44209),(22606,'trends_uint','itemid',44209),(22607,'events','itemid',44210),(22608,'history','itemid',44210),(22609,'history_log','itemid',44210),(22610,'history_str','itemid',44210),(22611,'history_text','itemid',44210),(22612,'history_uint','itemid',44210),(22613,'trends','itemid',44210),(22614,'trends_uint','itemid',44210),(22615,'events','itemid',44211),(22616,'history','itemid',44211),(22617,'history_log','itemid',44211),(22618,'history_str','itemid',44211),(22619,'history_text','itemid',44211),(22620,'history_uint','itemid',44211),(22621,'trends','itemid',44211),(22622,'trends_uint','itemid',44211),(22623,'events','itemid',44212),(22624,'history','itemid',44212),(22625,'history_log','itemid',44212),(22626,'history_str','itemid',44212),(22627,'history_text','itemid',44212),(22628,'history_uint','itemid',44212),(22629,'trends','itemid',44212),(22630,'trends_uint','itemid',44212),(22631,'events','itemid',43902),(22632,'history','itemid',43902),(22633,'history_log','itemid',43902),(22634,'history_str','itemid',43902),(22635,'history_text','itemid',43902),(22636,'history_uint','itemid',43902),(22637,'trends','itemid',43902),(22638,'trends_uint','itemid',43902),(22639,'events','lldruleid',23067),(22640,'events','lldruleid',27901),(22641,'events','lldruleid',27902),(22642,'events','lldruleid',27903),(22643,'events','lldruleid',28196),(22644,'events','lldruleid',28197),(22645,'events','lldruleid',28198),(22646,'events','lldruleid',28199),(22647,'events','lldruleid',29203),(22648,'events','lldruleid',31557),(22649,'events','lldruleid',31558),(22650,'events','lldruleid',31559),(22651,'events','lldruleid',31898),(22652,'events','lldruleid',32435),(22653,'events','lldruleid',32525),(22654,'events','lldruleid',32526),(22655,'events','lldruleid',32527),(22656,'events','lldruleid',32555),(22657,'events','lldruleid',32556),(22658,'events','lldruleid',32557),(22659,'events','lldruleid',33634),(22660,'events','lldruleid',34161),(22661,'events','lldruleid',34162),(22662,'events','lldruleid',34163),(22663,'events','lldruleid',36854),(22664,'events','lldruleid',36855),(22665,'events','lldruleid',36856),(22666,'events','lldruleid',36857),(22667,'events','lldruleid',36858),(22668,'events','lldruleid',36859),(22669,'events','lldruleid',36860),(22670,'events','lldruleid',36908),(22671,'events','lldruleid',36909),(22672,'events','lldruleid',36910),(22673,'events','lldruleid',36911),(22674,'events','lldruleid',36912),(22675,'events','lldruleid',36913),(22676,'events','lldruleid',36914),(22677,'events','lldruleid',36962),(22678,'events','lldruleid',36963),(22679,'events','lldruleid',36964),(22680,'events','lldruleid',36965),(22681,'events','lldruleid',36966),(22682,'events','lldruleid',36967),(22683,'events','lldruleid',36968),(22684,'events','lldruleid',37016),(22685,'events','lldruleid',37017),(22686,'events','lldruleid',37018),(22687,'events','lldruleid',37019),(22688,'events','lldruleid',37020),(22689,'events','lldruleid',37021),(22690,'events','lldruleid',37022),(22691,'events','lldruleid',37070),(22692,'events','lldruleid',37071),(22693,'events','lldruleid',37072),(22694,'events','lldruleid',37073),(22695,'events','lldruleid',37074),(22696,'events','lldruleid',37075),(22697,'events','lldruleid',37076),(22698,'events','lldruleid',37124),(22699,'events','lldruleid',37125),(22700,'events','lldruleid',37126),(22701,'events','lldruleid',37127),(22702,'events','lldruleid',37128),(22703,'events','lldruleid',37129),(22704,'events','lldruleid',37130),(22705,'events','lldruleid',37178),(22706,'events','lldruleid',37179),(22707,'events','lldruleid',37180),(22708,'events','lldruleid',37181),(22709,'events','lldruleid',37182),(22710,'events','lldruleid',37183),(22711,'events','lldruleid',37184),(22712,'events','lldruleid',37232),(22713,'events','lldruleid',37233),(22714,'events','lldruleid',37234),(22715,'events','lldruleid',37235),(22716,'events','lldruleid',37236),(22717,'events','lldruleid',37237),(22718,'events','lldruleid',37238),(22719,'events','lldruleid',37286),(22720,'events','lldruleid',37287),(22721,'events','lldruleid',37288),(22722,'events','lldruleid',37289),(22723,'events','lldruleid',37290),(22724,'events','lldruleid',37291),(22725,'events','lldruleid',37292),(22726,'events','lldruleid',37340),(22727,'events','lldruleid',37341),(22728,'events','lldruleid',37342),(22729,'events','lldruleid',37343),(22730,'events','lldruleid',37344),(22731,'events','lldruleid',37345),(22732,'events','lldruleid',37346),(22733,'events','lldruleid',37394),(22734,'events','lldruleid',37395),(22735,'events','lldruleid',37396),(22736,'events','lldruleid',37397),(22737,'events','lldruleid',37398),(22738,'events','lldruleid',37399),(22739,'events','lldruleid',37400),(22740,'events','lldruleid',37448),(22741,'events','lldruleid',37449),(22742,'events','lldruleid',37450),(22743,'events','lldruleid',37451),(22744,'events','lldruleid',37452),(22745,'events','lldruleid',37453),(22746,'events','lldruleid',37454),(22747,'events','lldruleid',37502),(22748,'events','lldruleid',37503),(22749,'events','lldruleid',37504),(22750,'events','lldruleid',37505),(22751,'events','lldruleid',37506),(22752,'events','lldruleid',37507),(22753,'events','lldruleid',37508),(22754,'events','lldruleid',37556),(22755,'events','lldruleid',37557),(22756,'events','lldruleid',37558),(22757,'events','lldruleid',37559),(22758,'events','lldruleid',37560),(22759,'events','lldruleid',37561),(22760,'events','lldruleid',37562),(22761,'events','lldruleid',37610),(22762,'events','lldruleid',37611),(22763,'events','lldruleid',37612),(22764,'events','lldruleid',37613),(22765,'events','lldruleid',37614),(22766,'events','lldruleid',37615),(22767,'events','lldruleid',37616),(22768,'events','lldruleid',37664),(22769,'events','lldruleid',37665),(22770,'events','lldruleid',37666),(22771,'events','lldruleid',37667),(22772,'events','lldruleid',37668),(22773,'events','lldruleid',37669),(22774,'events','lldruleid',37670),(22775,'events','lldruleid',37718),(22776,'events','lldruleid',37719),(22777,'events','lldruleid',37720),(22778,'events','lldruleid',37721),(22779,'events','lldruleid',37722),(22780,'events','lldruleid',37723),(22781,'events','lldruleid',37724),(22782,'events','lldruleid',37772),(22783,'events','lldruleid',37773),(22784,'events','lldruleid',37774),(22785,'events','lldruleid',37775),(22786,'events','lldruleid',37776),(22787,'events','lldruleid',37777),(22788,'events','lldruleid',37778),(22789,'events','lldruleid',37826),(22790,'events','lldruleid',37827),(22791,'events','lldruleid',37828),(22792,'events','lldruleid',37829),(22793,'events','lldruleid',37830),(22794,'events','lldruleid',37831),(22795,'events','lldruleid',37832),(22796,'events','lldruleid',37880),(22797,'events','lldruleid',37881),(22798,'events','lldruleid',37882),(22799,'events','lldruleid',37883),(22800,'events','lldruleid',37884),(22801,'events','lldruleid',37885),(22802,'events','lldruleid',37886),(22803,'events','lldruleid',37934),(22804,'events','lldruleid',37935),(22805,'events','lldruleid',37936),(22806,'events','lldruleid',37937),(22807,'events','lldruleid',37938),(22808,'events','lldruleid',37939),(22809,'events','lldruleid',37940),(22810,'events','lldruleid',37988),(22811,'events','lldruleid',37989),(22812,'events','lldruleid',37990),(22813,'events','lldruleid',37991),(22814,'events','lldruleid',37992),(22815,'events','lldruleid',37993),(22816,'events','lldruleid',37994),(22817,'events','lldruleid',38042),(22818,'events','lldruleid',38043),(22819,'events','lldruleid',38044),(22820,'events','lldruleid',38045),(22821,'events','lldruleid',38046),(22822,'events','lldruleid',38047),(22823,'events','lldruleid',38048),(22824,'events','lldruleid',38096),(22825,'events','lldruleid',38097),(22826,'events','lldruleid',38098),(22827,'events','lldruleid',38099),(22828,'events','lldruleid',38100),(22829,'events','lldruleid',38101),(22830,'events','lldruleid',38102),(22831,'events','lldruleid',38150),(22832,'events','lldruleid',38151),(22833,'events','lldruleid',38152),(22834,'events','lldruleid',38153),(22835,'events','lldruleid',38154),(22836,'events','lldruleid',38155),(22837,'events','lldruleid',38156),(22838,'events','lldruleid',38204),(22839,'events','lldruleid',38205),(22840,'events','lldruleid',38206),(22841,'events','lldruleid',38207),(22842,'events','lldruleid',38208),(22843,'events','lldruleid',38209),(22844,'events','lldruleid',38210),(22845,'events','lldruleid',38258),(22846,'events','lldruleid',38259),(22847,'events','lldruleid',38260),(22848,'events','lldruleid',38261),(22849,'events','lldruleid',38262),(22850,'events','lldruleid',38263),(22851,'events','lldruleid',38264),(22852,'events','lldruleid',38312),(22853,'events','lldruleid',38313),(22854,'events','lldruleid',38314),(22855,'events','lldruleid',38315),(22856,'events','lldruleid',38316),(22857,'events','lldruleid',38317),(22858,'events','lldruleid',38318),(22859,'events','lldruleid',38366),(22860,'events','lldruleid',38367),(22861,'events','lldruleid',38368),(22862,'events','lldruleid',38369),(22863,'events','lldruleid',38370),(22864,'events','lldruleid',38371),(22865,'events','lldruleid',38372),(22866,'events','lldruleid',38420),(22867,'events','lldruleid',38421),(22868,'events','lldruleid',38422),(22869,'events','lldruleid',38423),(22870,'events','lldruleid',38424),(22871,'events','lldruleid',38425),(22872,'events','lldruleid',38426),(22873,'events','lldruleid',38474),(22874,'events','lldruleid',38475),(22875,'events','lldruleid',38476),(22876,'events','lldruleid',38477),(22877,'events','lldruleid',38478),(22878,'events','lldruleid',38479),(22879,'events','lldruleid',38480),(22880,'events','lldruleid',38528),(22881,'events','lldruleid',38529),(22882,'events','lldruleid',38530),(22883,'events','lldruleid',38531),(22884,'events','lldruleid',38532),(22885,'events','lldruleid',38533),(22886,'events','lldruleid',38534),(22887,'events','lldruleid',39338),(22888,'events','lldruleid',39339),(22889,'events','lldruleid',39340),(22890,'events','lldruleid',39341),(22891,'events','lldruleid',39342),(22892,'events','lldruleid',39343),(22893,'events','lldruleid',39344),(22894,'events','lldruleid',39392),(22895,'events','lldruleid',39393),(22896,'events','lldruleid',39394),(22897,'events','lldruleid',39395),(22898,'events','lldruleid',39396),(22899,'events','lldruleid',39397),(22900,'events','lldruleid',39398),(22901,'events','lldruleid',39446),(22902,'events','lldruleid',39447),(22903,'events','lldruleid',39448),(22904,'events','lldruleid',39449),(22905,'events','lldruleid',39450),(22906,'events','lldruleid',39451),(22907,'events','lldruleid',39452),(22908,'events','lldruleid',39500),(22909,'events','lldruleid',39501),(22910,'events','lldruleid',39502),(22911,'events','lldruleid',39503),(22912,'events','lldruleid',39504),(22913,'events','lldruleid',39505),(22914,'events','lldruleid',39506),(22915,'events','lldruleid',39554),(22916,'events','lldruleid',39555),(22917,'events','lldruleid',39556),(22918,'events','lldruleid',39557),(22919,'events','lldruleid',39558),(22920,'events','lldruleid',39559),(22921,'events','lldruleid',39560),(22922,'events','lldruleid',40945),(22923,'events','lldruleid',40966),(22924,'events','lldruleid',40987),(22925,'events','lldruleid',41008),(22926,'events','lldruleid',41029),(22927,'events','lldruleid',41050),(22928,'events','lldruleid',41071),(22929,'events','lldruleid',41092),(22930,'events','lldruleid',41113),(22931,'events','lldruleid',41134),(22932,'events','lldruleid',41155),(22933,'events','lldruleid',41176),(22934,'events','lldruleid',41197),(22935,'events','lldruleid',41218),(22936,'events','lldruleid',41239),(22937,'events','lldruleid',41260),(22938,'events','lldruleid',41281),(22939,'events','lldruleid',41302),(22940,'events','lldruleid',41323),(22941,'events','lldruleid',41344),(22942,'events','lldruleid',41365),(22943,'events','lldruleid',41386),(22944,'events','lldruleid',41407),(22945,'events','lldruleid',41428),(22946,'events','lldruleid',41449),(22947,'events','lldruleid',41470),(22948,'events','lldruleid',41491),(22949,'events','lldruleid',41512),(22950,'events','lldruleid',41533),(22951,'events','lldruleid',41554),(22952,'events','lldruleid',41575),(22953,'events','lldruleid',41596),(22954,'events','lldruleid',41911),(22955,'events','lldruleid',41932),(22956,'events','lldruleid',41953),(22957,'events','lldruleid',41974),(22958,'events','lldruleid',41995),(22959,'events','lldruleid',42079),(22960,'events','itemid',23035),(22961,'history','itemid',23035),(22962,'history_log','itemid',23035),(22963,'history_str','itemid',23035),(22964,'history_text','itemid',23035),(22965,'history_uint','itemid',23035),(22966,'trends','itemid',23035),(22967,'trends_uint','itemid',23035),(22968,'events','itemid',23036),(22969,'history','itemid',23036),(22970,'history_log','itemid',23036),(22971,'history_str','itemid',23036),(22972,'history_text','itemid',23036),(22973,'history_uint','itemid',23036),(22974,'trends','itemid',23036),(22975,'trends_uint','itemid',23036),(22976,'events','itemid',23039),(22977,'history','itemid',23039),(22978,'history_log','itemid',23039),(22979,'history_str','itemid',23039),(22980,'history_text','itemid',23039),(22981,'history_uint','itemid',23039),(22982,'trends','itemid',23039),(22983,'trends_uint','itemid',23039),(22984,'events','itemid',23041),(22985,'history','itemid',23041),(22986,'history_log','itemid',23041),(22987,'history_str','itemid',23041),(22988,'history_text','itemid',23041),(22989,'history_uint','itemid',23041),(22990,'trends','itemid',23041),(22991,'trends_uint','itemid',23041),(22992,'events','itemid',23042),(22993,'history','itemid',23042),(22994,'history_log','itemid',23042),(22995,'history_str','itemid',23042),(22996,'history_text','itemid',23042),(22997,'history_uint','itemid',23042),(22998,'trends','itemid',23042),(22999,'trends_uint','itemid',23042),(23000,'events','itemid',23043),(23001,'history','itemid',23043),(23002,'history_log','itemid',23043),(23003,'history_str','itemid',23043),(23004,'history_text','itemid',23043),(23005,'history_uint','itemid',23043),(23006,'trends','itemid',23043),(23007,'trends_uint','itemid',23043),(23008,'events','itemid',23053),(23009,'history','itemid',23053),(23010,'history_log','itemid',23053),(23011,'history_str','itemid',23053),(23012,'history_text','itemid',23053),(23013,'history_uint','itemid',23053),(23014,'trends','itemid',23053),(23015,'trends_uint','itemid',23053),(23016,'events','itemid',23054),(23017,'history','itemid',23054),(23018,'history_log','itemid',23054),(23019,'history_str','itemid',23054),(23020,'history_text','itemid',23054),(23021,'history_uint','itemid',23054),(23022,'trends','itemid',23054),(23023,'trends_uint','itemid',23054),(23024,'events','itemid',23058),(23025,'history','itemid',23058),(23026,'history_log','itemid',23058),(23027,'history_str','itemid',23058),(23028,'history_text','itemid',23058),(23029,'history_uint','itemid',23058),(23030,'trends','itemid',23058),(23031,'trends_uint','itemid',23058),(23032,'events','itemid',23059),(23033,'history','itemid',23059),(23034,'history_log','itemid',23059),(23035,'history_str','itemid',23059),(23036,'history_text','itemid',23059),(23037,'history_uint','itemid',23059),(23038,'trends','itemid',23059),(23039,'trends_uint','itemid',23059),(23040,'events','itemid',23060),(23041,'history','itemid',23060),(23042,'history_log','itemid',23060),(23043,'history_str','itemid',23060),(23044,'history_text','itemid',23060),(23045,'history_uint','itemid',23060),(23046,'trends','itemid',23060),(23047,'trends_uint','itemid',23060),(23048,'events','itemid',23061),(23049,'history','itemid',23061),(23050,'history_log','itemid',23061),(23051,'history_str','itemid',23061),(23052,'history_text','itemid',23061),(23053,'history_uint','itemid',23061),(23054,'trends','itemid',23061),(23055,'trends_uint','itemid',23061),(23056,'events','itemid',23062),(23057,'history','itemid',23062),(23058,'history_log','itemid',23062),(23059,'history_str','itemid',23062),(23060,'history_text','itemid',23062),(23061,'history_uint','itemid',23062),(23062,'trends','itemid',23062),(23063,'trends_uint','itemid',23062),(23064,'events','itemid',23063),(23065,'history','itemid',23063),(23066,'history_log','itemid',23063),(23067,'history_str','itemid',23063),(23068,'history_text','itemid',23063),(23069,'history_uint','itemid',23063),(23070,'trends','itemid',23063),(23071,'trends_uint','itemid',23063),(23072,'events','itemid',23077),(23073,'history','itemid',23077),(23074,'history_log','itemid',23077),(23075,'history_str','itemid',23077),(23076,'history_text','itemid',23077),(23077,'history_uint','itemid',23077),(23078,'trends','itemid',23077),(23079,'trends_uint','itemid',23077),(23080,'events','itemid',23078),(23081,'history','itemid',23078),(23082,'history_log','itemid',23078),(23083,'history_str','itemid',23078),(23084,'history_text','itemid',23078),(23085,'history_uint','itemid',23078),(23086,'trends','itemid',23078),(23087,'trends_uint','itemid',23078),(23088,'events','itemid',27893),(23089,'history','itemid',27893),(23090,'history_log','itemid',27893),(23091,'history_str','itemid',27893),(23092,'history_text','itemid',27893),(23093,'history_uint','itemid',27893),(23094,'trends','itemid',27893),(23095,'trends_uint','itemid',27893),(23096,'events','itemid',27894),(23097,'history','itemid',27894),(23098,'history_log','itemid',27894),(23099,'history_str','itemid',27894),(23100,'history_text','itemid',27894),(23101,'history_uint','itemid',27894),(23102,'trends','itemid',27894),(23103,'trends_uint','itemid',27894),(23104,'events','itemid',27895),(23105,'history','itemid',27895),(23106,'history_log','itemid',27895),(23107,'history_str','itemid',27895),(23108,'history_text','itemid',27895),(23109,'history_uint','itemid',27895),(23110,'trends','itemid',27895),(23111,'trends_uint','itemid',27895),(23112,'events','itemid',27898),(23113,'history','itemid',27898),(23114,'history_log','itemid',27898),(23115,'history_str','itemid',27898),(23116,'history_text','itemid',27898),(23117,'history_uint','itemid',27898),(23118,'trends','itemid',27898),(23119,'trends_uint','itemid',27898),(23120,'events','itemid',27900),(23121,'history','itemid',27900),(23122,'history_log','itemid',27900),(23123,'history_str','itemid',27900),(23124,'history_text','itemid',27900),(23125,'history_uint','itemid',27900),(23126,'trends','itemid',27900),(23127,'trends_uint','itemid',27900),(23128,'events','itemid',28978),(23129,'history','itemid',28978),(23130,'history_log','itemid',28978),(23131,'history_str','itemid',28978),(23132,'history_text','itemid',28978),(23133,'history_uint','itemid',28978),(23134,'trends','itemid',28978),(23135,'trends_uint','itemid',28978),(23136,'events','itemid',28979),(23137,'history','itemid',28979),(23138,'history_log','itemid',28979),(23139,'history_str','itemid',28979),(23140,'history_text','itemid',28979),(23141,'history_uint','itemid',28979),(23142,'trends','itemid',28979),(23143,'trends_uint','itemid',28979),(23144,'events','itemid',28980),(23145,'history','itemid',28980),(23146,'history_log','itemid',28980),(23147,'history_str','itemid',28980),(23148,'history_text','itemid',28980),(23149,'history_uint','itemid',28980),(23150,'trends','itemid',28980),(23151,'trends_uint','itemid',28980),(23152,'events','itemid',28981),(23153,'history','itemid',28981),(23154,'history_log','itemid',28981),(23155,'history_str','itemid',28981),(23156,'history_text','itemid',28981),(23157,'history_uint','itemid',28981),(23158,'trends','itemid',28981),(23159,'trends_uint','itemid',28981),(23160,'events','itemid',28982),(23161,'history','itemid',28982),(23162,'history_log','itemid',28982),(23163,'history_str','itemid',28982),(23164,'history_text','itemid',28982),(23165,'history_uint','itemid',28982),(23166,'trends','itemid',28982),(23167,'trends_uint','itemid',28982),(23168,'events','itemid',28983),(23169,'history','itemid',28983),(23170,'history_log','itemid',28983),(23171,'history_str','itemid',28983),(23172,'history_text','itemid',28983),(23173,'history_uint','itemid',28983),(23174,'trends','itemid',28983),(23175,'trends_uint','itemid',28983),(23176,'events','itemid',28984),(23177,'history','itemid',28984),(23178,'history_log','itemid',28984),(23179,'history_str','itemid',28984),(23180,'history_text','itemid',28984),(23181,'history_uint','itemid',28984),(23182,'trends','itemid',28984),(23183,'trends_uint','itemid',28984),(23184,'events','itemid',28985),(23185,'history','itemid',28985),(23186,'history_log','itemid',28985),(23187,'history_str','itemid',28985),(23188,'history_text','itemid',28985),(23189,'history_uint','itemid',28985),(23190,'trends','itemid',28985),(23191,'trends_uint','itemid',28985),(23192,'events','itemid',28986),(23193,'history','itemid',28986),(23194,'history_log','itemid',28986),(23195,'history_str','itemid',28986),(23196,'history_text','itemid',28986),(23197,'history_uint','itemid',28986),(23198,'trends','itemid',28986),(23199,'trends_uint','itemid',28986),(23200,'events','itemid',29103),(23201,'history','itemid',29103),(23202,'history_log','itemid',29103),(23203,'history_str','itemid',29103),(23204,'history_text','itemid',29103),(23205,'history_uint','itemid',29103),(23206,'trends','itemid',29103),(23207,'trends_uint','itemid',29103),(23208,'events','itemid',29104),(23209,'history','itemid',29104),(23210,'history_log','itemid',29104),(23211,'history_str','itemid',29104),(23212,'history_text','itemid',29104),(23213,'history_uint','itemid',29104),(23214,'trends','itemid',29104),(23215,'trends_uint','itemid',29104),(23216,'events','itemid',29105),(23217,'history','itemid',29105),(23218,'history_log','itemid',29105),(23219,'history_str','itemid',29105),(23220,'history_text','itemid',29105),(23221,'history_uint','itemid',29105),(23222,'trends','itemid',29105),(23223,'trends_uint','itemid',29105),(23224,'events','itemid',29106),(23225,'history','itemid',29106),(23226,'history_log','itemid',29106),(23227,'history_str','itemid',29106),(23228,'history_text','itemid',29106),(23229,'history_uint','itemid',29106),(23230,'trends','itemid',29106),(23231,'trends_uint','itemid',29106),(23232,'events','itemid',29107),(23233,'history','itemid',29107),(23234,'history_log','itemid',29107),(23235,'history_str','itemid',29107),(23236,'history_text','itemid',29107),(23237,'history_uint','itemid',29107),(23238,'trends','itemid',29107),(23239,'trends_uint','itemid',29107),(23240,'events','itemid',29108),(23241,'history','itemid',29108),(23242,'history_log','itemid',29108),(23243,'history_str','itemid',29108),(23244,'history_text','itemid',29108),(23245,'history_uint','itemid',29108),(23246,'trends','itemid',29108),(23247,'trends_uint','itemid',29108),(23248,'events','itemid',30119),(23249,'history','itemid',30119),(23250,'history_log','itemid',30119),(23251,'history_str','itemid',30119),(23252,'history_text','itemid',30119),(23253,'history_uint','itemid',30119),(23254,'trends','itemid',30119),(23255,'trends_uint','itemid',30119),(23256,'events','itemid',30120),(23257,'history','itemid',30120),(23258,'history_log','itemid',30120),(23259,'history_str','itemid',30120),(23260,'history_text','itemid',30120),(23261,'history_uint','itemid',30120),(23262,'trends','itemid',30120),(23263,'trends_uint','itemid',30120),(23264,'events','itemid',30611),(23265,'history','itemid',30611),(23266,'history_log','itemid',30611),(23267,'history_str','itemid',30611),(23268,'history_text','itemid',30611),(23269,'history_uint','itemid',30611),(23270,'trends','itemid',30611),(23271,'trends_uint','itemid',30611),(23272,'events','itemid',30612),(23273,'history','itemid',30612),(23274,'history_log','itemid',30612),(23275,'history_str','itemid',30612),(23276,'history_text','itemid',30612),(23277,'history_uint','itemid',30612),(23278,'trends','itemid',30612),(23279,'trends_uint','itemid',30612),(23280,'events','itemid',30613),(23281,'history','itemid',30613),(23282,'history_log','itemid',30613),(23283,'history_str','itemid',30613),(23284,'history_text','itemid',30613),(23285,'history_uint','itemid',30613),(23286,'trends','itemid',30613),(23287,'trends_uint','itemid',30613),(23288,'events','itemid',30614),(23289,'history','itemid',30614),(23290,'history_log','itemid',30614),(23291,'history_str','itemid',30614),(23292,'history_text','itemid',30614),(23293,'history_uint','itemid',30614),(23294,'trends','itemid',30614),(23295,'trends_uint','itemid',30614),(23296,'events','itemid',30615),(23297,'history','itemid',30615),(23298,'history_log','itemid',30615),(23299,'history_str','itemid',30615),(23300,'history_text','itemid',30615),(23301,'history_uint','itemid',30615),(23302,'trends','itemid',30615),(23303,'trends_uint','itemid',30615),(23304,'events','itemid',30616),(23305,'history','itemid',30616),(23306,'history_log','itemid',30616),(23307,'history_str','itemid',30616),(23308,'history_text','itemid',30616),(23309,'history_uint','itemid',30616),(23310,'trends','itemid',30616),(23311,'trends_uint','itemid',30616),(23312,'events','itemid',30617),(23313,'history','itemid',30617),(23314,'history_log','itemid',30617),(23315,'history_str','itemid',30617),(23316,'history_text','itemid',30617),(23317,'history_uint','itemid',30617),(23318,'trends','itemid',30617),(23319,'trends_uint','itemid',30617),(23320,'events','itemid',30618),(23321,'history','itemid',30618),(23322,'history_log','itemid',30618),(23323,'history_str','itemid',30618),(23324,'history_text','itemid',30618),(23325,'history_uint','itemid',30618),(23326,'trends','itemid',30618),(23327,'trends_uint','itemid',30618),(23328,'events','itemid',30619),(23329,'history','itemid',30619),(23330,'history_log','itemid',30619),(23331,'history_str','itemid',30619),(23332,'history_text','itemid',30619),(23333,'history_uint','itemid',30619),(23334,'trends','itemid',30619),(23335,'trends_uint','itemid',30619),(23336,'events','itemid',30620),(23337,'history','itemid',30620),(23338,'history_log','itemid',30620),(23339,'history_str','itemid',30620),(23340,'history_text','itemid',30620),(23341,'history_uint','itemid',30620),(23342,'trends','itemid',30620),(23343,'trends_uint','itemid',30620),(23344,'events','itemid',30621),(23345,'history','itemid',30621),(23346,'history_log','itemid',30621),(23347,'history_str','itemid',30621),(23348,'history_text','itemid',30621),(23349,'history_uint','itemid',30621),(23350,'trends','itemid',30621),(23351,'trends_uint','itemid',30621),(23352,'events','itemid',30622),(23353,'history','itemid',30622),(23354,'history_log','itemid',30622),(23355,'history_str','itemid',30622),(23356,'history_text','itemid',30622),(23357,'history_uint','itemid',30622),(23358,'trends','itemid',30622),(23359,'trends_uint','itemid',30622),(23360,'events','itemid',30623),(23361,'history','itemid',30623),(23362,'history_log','itemid',30623),(23363,'history_str','itemid',30623),(23364,'history_text','itemid',30623),(23365,'history_uint','itemid',30623),(23366,'trends','itemid',30623),(23367,'trends_uint','itemid',30623),(23368,'events','itemid',30624),(23369,'history','itemid',30624),(23370,'history_log','itemid',30624),(23371,'history_str','itemid',30624),(23372,'history_text','itemid',30624),(23373,'history_uint','itemid',30624),(23374,'trends','itemid',30624),(23375,'trends_uint','itemid',30624),(23376,'events','itemid',30625),(23377,'history','itemid',30625),(23378,'history_log','itemid',30625),(23379,'history_str','itemid',30625),(23380,'history_text','itemid',30625),(23381,'history_uint','itemid',30625),(23382,'trends','itemid',30625),(23383,'trends_uint','itemid',30625),(23384,'events','itemid',30626),(23385,'history','itemid',30626),(23386,'history_log','itemid',30626),(23387,'history_str','itemid',30626),(23388,'history_text','itemid',30626),(23389,'history_uint','itemid',30626),(23390,'trends','itemid',30626),(23391,'trends_uint','itemid',30626),(23392,'events','itemid',30627),(23393,'history','itemid',30627),(23394,'history_log','itemid',30627),(23395,'history_str','itemid',30627),(23396,'history_text','itemid',30627),(23397,'history_uint','itemid',30627),(23398,'trends','itemid',30627),(23399,'trends_uint','itemid',30627),(23400,'events','itemid',30628),(23401,'history','itemid',30628),(23402,'history_log','itemid',30628),(23403,'history_str','itemid',30628),(23404,'history_text','itemid',30628),(23405,'history_uint','itemid',30628),(23406,'trends','itemid',30628),(23407,'trends_uint','itemid',30628),(23408,'events','itemid',30629),(23409,'history','itemid',30629),(23410,'history_log','itemid',30629),(23411,'history_str','itemid',30629),(23412,'history_text','itemid',30629),(23413,'history_uint','itemid',30629),(23414,'trends','itemid',30629),(23415,'trends_uint','itemid',30629),(23416,'events','itemid',30630),(23417,'history','itemid',30630),(23418,'history_log','itemid',30630),(23419,'history_str','itemid',30630),(23420,'history_text','itemid',30630),(23421,'history_uint','itemid',30630),(23422,'trends','itemid',30630),(23423,'trends_uint','itemid',30630),(23424,'events','itemid',30631),(23425,'history','itemid',30631),(23426,'history_log','itemid',30631),(23427,'history_str','itemid',30631),(23428,'history_text','itemid',30631),(23429,'history_uint','itemid',30631),(23430,'trends','itemid',30631),(23431,'trends_uint','itemid',30631),(23432,'events','itemid',30632),(23433,'history','itemid',30632),(23434,'history_log','itemid',30632),(23435,'history_str','itemid',30632),(23436,'history_text','itemid',30632),(23437,'history_uint','itemid',30632),(23438,'trends','itemid',30632),(23439,'trends_uint','itemid',30632),(23440,'events','itemid',30633),(23441,'history','itemid',30633),(23442,'history_log','itemid',30633),(23443,'history_str','itemid',30633),(23444,'history_text','itemid',30633),(23445,'history_uint','itemid',30633),(23446,'trends','itemid',30633),(23447,'trends_uint','itemid',30633),(23448,'events','itemid',30634),(23449,'history','itemid',30634),(23450,'history_log','itemid',30634),(23451,'history_str','itemid',30634),(23452,'history_text','itemid',30634),(23453,'history_uint','itemid',30634),(23454,'trends','itemid',30634),(23455,'trends_uint','itemid',30634),(23456,'events','itemid',30635),(23457,'history','itemid',30635),(23458,'history_log','itemid',30635),(23459,'history_str','itemid',30635),(23460,'history_text','itemid',30635),(23461,'history_uint','itemid',30635),(23462,'trends','itemid',30635),(23463,'trends_uint','itemid',30635),(23464,'events','itemid',30636),(23465,'history','itemid',30636),(23466,'history_log','itemid',30636),(23467,'history_str','itemid',30636),(23468,'history_text','itemid',30636),(23469,'history_uint','itemid',30636),(23470,'trends','itemid',30636),(23471,'trends_uint','itemid',30636),(23472,'events','itemid',31364),(23473,'history','itemid',31364),(23474,'history_log','itemid',31364),(23475,'history_str','itemid',31364),(23476,'history_text','itemid',31364),(23477,'history_uint','itemid',31364),(23478,'trends','itemid',31364),(23479,'trends_uint','itemid',31364),(23480,'events','itemid',31836),(23481,'history','itemid',31836),(23482,'history_log','itemid',31836),(23483,'history_str','itemid',31836),(23484,'history_text','itemid',31836),(23485,'history_uint','itemid',31836),(23486,'trends','itemid',31836),(23487,'trends_uint','itemid',31836),(23488,'events','itemid',31837),(23489,'history','itemid',31837),(23490,'history_log','itemid',31837),(23491,'history_str','itemid',31837),(23492,'history_text','itemid',31837),(23493,'history_uint','itemid',31837),(23494,'trends','itemid',31837),(23495,'trends_uint','itemid',31837),(23496,'events','itemid',31838),(23497,'history','itemid',31838),(23498,'history_log','itemid',31838),(23499,'history_str','itemid',31838),(23500,'history_text','itemid',31838),(23501,'history_uint','itemid',31838),(23502,'trends','itemid',31838),(23503,'trends_uint','itemid',31838),(23504,'events','itemid',31839),(23505,'history','itemid',31839),(23506,'history_log','itemid',31839),(23507,'history_str','itemid',31839),(23508,'history_text','itemid',31839),(23509,'history_uint','itemid',31839),(23510,'trends','itemid',31839),(23511,'trends_uint','itemid',31839),(23512,'events','itemid',31840),(23513,'history','itemid',31840),(23514,'history_log','itemid',31840),(23515,'history_str','itemid',31840),(23516,'history_text','itemid',31840),(23517,'history_uint','itemid',31840),(23518,'trends','itemid',31840),(23519,'trends_uint','itemid',31840),(23520,'events','itemid',31841),(23521,'history','itemid',31841),(23522,'history_log','itemid',31841),(23523,'history_str','itemid',31841),(23524,'history_text','itemid',31841),(23525,'history_uint','itemid',31841),(23526,'trends','itemid',31841),(23527,'trends_uint','itemid',31841),(23528,'events','itemid',31842),(23529,'history','itemid',31842),(23530,'history_log','itemid',31842),(23531,'history_str','itemid',31842),(23532,'history_text','itemid',31842),(23533,'history_uint','itemid',31842),(23534,'trends','itemid',31842),(23535,'trends_uint','itemid',31842),(23536,'events','itemid',31843),(23537,'history','itemid',31843),(23538,'history_log','itemid',31843),(23539,'history_str','itemid',31843),(23540,'history_text','itemid',31843),(23541,'history_uint','itemid',31843),(23542,'trends','itemid',31843),(23543,'trends_uint','itemid',31843),(23544,'events','itemid',31844),(23545,'history','itemid',31844),(23546,'history_log','itemid',31844),(23547,'history_str','itemid',31844),(23548,'history_text','itemid',31844),(23549,'history_uint','itemid',31844),(23550,'trends','itemid',31844),(23551,'trends_uint','itemid',31844),(23552,'events','itemid',31845),(23553,'history','itemid',31845),(23554,'history_log','itemid',31845),(23555,'history_str','itemid',31845),(23556,'history_text','itemid',31845),(23557,'history_uint','itemid',31845),(23558,'trends','itemid',31845),(23559,'trends_uint','itemid',31845),(23560,'events','itemid',31846),(23561,'history','itemid',31846),(23562,'history_log','itemid',31846),(23563,'history_str','itemid',31846),(23564,'history_text','itemid',31846),(23565,'history_uint','itemid',31846),(23566,'trends','itemid',31846),(23567,'trends_uint','itemid',31846),(23568,'events','itemid',31847),(23569,'history','itemid',31847),(23570,'history_log','itemid',31847),(23571,'history_str','itemid',31847),(23572,'history_text','itemid',31847),(23573,'history_uint','itemid',31847),(23574,'trends','itemid',31847),(23575,'trends_uint','itemid',31847),(23576,'events','itemid',31848),(23577,'history','itemid',31848),(23578,'history_log','itemid',31848),(23579,'history_str','itemid',31848),(23580,'history_text','itemid',31848),(23581,'history_uint','itemid',31848),(23582,'trends','itemid',31848),(23583,'trends_uint','itemid',31848),(23584,'events','itemid',31849),(23585,'history','itemid',31849),(23586,'history_log','itemid',31849),(23587,'history_str','itemid',31849),(23588,'history_text','itemid',31849),(23589,'history_uint','itemid',31849),(23590,'trends','itemid',31849),(23591,'trends_uint','itemid',31849),(23592,'events','itemid',31850),(23593,'history','itemid',31850),(23594,'history_log','itemid',31850),(23595,'history_str','itemid',31850),(23596,'history_text','itemid',31850),(23597,'history_uint','itemid',31850),(23598,'trends','itemid',31850),(23599,'trends_uint','itemid',31850),(23600,'events','itemid',31851),(23601,'history','itemid',31851),(23602,'history_log','itemid',31851),(23603,'history_str','itemid',31851),(23604,'history_text','itemid',31851),(23605,'history_uint','itemid',31851),(23606,'trends','itemid',31851),(23607,'trends_uint','itemid',31851),(23608,'events','itemid',31852),(23609,'history','itemid',31852),(23610,'history_log','itemid',31852),(23611,'history_str','itemid',31852),(23612,'history_text','itemid',31852),(23613,'history_uint','itemid',31852),(23614,'trends','itemid',31852),(23615,'trends_uint','itemid',31852),(23616,'events','itemid',31853),(23617,'history','itemid',31853),(23618,'history_log','itemid',31853),(23619,'history_str','itemid',31853),(23620,'history_text','itemid',31853),(23621,'history_uint','itemid',31853),(23622,'trends','itemid',31853),(23623,'trends_uint','itemid',31853),(23624,'events','itemid',31854),(23625,'history','itemid',31854),(23626,'history_log','itemid',31854),(23627,'history_str','itemid',31854),(23628,'history_text','itemid',31854),(23629,'history_uint','itemid',31854),(23630,'trends','itemid',31854),(23631,'trends_uint','itemid',31854),(23632,'events','itemid',31855),(23633,'history','itemid',31855),(23634,'history_log','itemid',31855),(23635,'history_str','itemid',31855),(23636,'history_text','itemid',31855),(23637,'history_uint','itemid',31855),(23638,'trends','itemid',31855),(23639,'trends_uint','itemid',31855),(23640,'events','itemid',31893),(23641,'history','itemid',31893),(23642,'history_log','itemid',31893),(23643,'history_str','itemid',31893),(23644,'history_text','itemid',31893),(23645,'history_uint','itemid',31893),(23646,'trends','itemid',31893),(23647,'trends_uint','itemid',31893),(23648,'events','itemid',32516),(23649,'history','itemid',32516),(23650,'history_log','itemid',32516),(23651,'history_str','itemid',32516),(23652,'history_text','itemid',32516),(23653,'history_uint','itemid',32516),(23654,'trends','itemid',32516),(23655,'trends_uint','itemid',32516),(23656,'events','itemid',32517),(23657,'history','itemid',32517),(23658,'history_log','itemid',32517),(23659,'history_str','itemid',32517),(23660,'history_text','itemid',32517),(23661,'history_uint','itemid',32517),(23662,'trends','itemid',32517),(23663,'trends_uint','itemid',32517),(23664,'events','itemid',32518),(23665,'history','itemid',32518),(23666,'history_log','itemid',32518),(23667,'history_str','itemid',32518),(23668,'history_text','itemid',32518),(23669,'history_uint','itemid',32518),(23670,'trends','itemid',32518),(23671,'trends_uint','itemid',32518),(23672,'events','itemid',32519),(23673,'history','itemid',32519),(23674,'history_log','itemid',32519),(23675,'history_str','itemid',32519),(23676,'history_text','itemid',32519),(23677,'history_uint','itemid',32519),(23678,'trends','itemid',32519),(23679,'trends_uint','itemid',32519),(23680,'events','itemid',32520),(23681,'history','itemid',32520),(23682,'history_log','itemid',32520),(23683,'history_str','itemid',32520),(23684,'history_text','itemid',32520),(23685,'history_uint','itemid',32520),(23686,'trends','itemid',32520),(23687,'trends_uint','itemid',32520),(23688,'events','itemid',32521),(23689,'history','itemid',32521),(23690,'history_log','itemid',32521),(23691,'history_str','itemid',32521),(23692,'history_text','itemid',32521),(23693,'history_uint','itemid',32521),(23694,'trends','itemid',32521),(23695,'trends_uint','itemid',32521),(23696,'events','itemid',32522),(23697,'history','itemid',32522),(23698,'history_log','itemid',32522),(23699,'history_str','itemid',32522),(23700,'history_text','itemid',32522),(23701,'history_uint','itemid',32522),(23702,'trends','itemid',32522),(23703,'trends_uint','itemid',32522),(23704,'events','itemid',32523),(23705,'history','itemid',32523),(23706,'history_log','itemid',32523),(23707,'history_str','itemid',32523),(23708,'history_text','itemid',32523),(23709,'history_uint','itemid',32523),(23710,'trends','itemid',32523),(23711,'trends_uint','itemid',32523),(23712,'events','itemid',32524),(23713,'history','itemid',32524),(23714,'history_log','itemid',32524),(23715,'history_str','itemid',32524),(23716,'history_text','itemid',32524),(23717,'history_uint','itemid',32524),(23718,'trends','itemid',32524),(23719,'trends_uint','itemid',32524),(23720,'events','itemid',32546),(23721,'history','itemid',32546),(23722,'history_log','itemid',32546),(23723,'history_str','itemid',32546),(23724,'history_text','itemid',32546),(23725,'history_uint','itemid',32546),(23726,'trends','itemid',32546),(23727,'trends_uint','itemid',32546),(23728,'events','itemid',32547),(23729,'history','itemid',32547),(23730,'history_log','itemid',32547),(23731,'history_str','itemid',32547),(23732,'history_text','itemid',32547),(23733,'history_uint','itemid',32547),(23734,'trends','itemid',32547),(23735,'trends_uint','itemid',32547),(23736,'events','itemid',32548),(23737,'history','itemid',32548),(23738,'history_log','itemid',32548),(23739,'history_str','itemid',32548),(23740,'history_text','itemid',32548),(23741,'history_uint','itemid',32548),(23742,'trends','itemid',32548),(23743,'trends_uint','itemid',32548),(23744,'events','itemid',32549),(23745,'history','itemid',32549),(23746,'history_log','itemid',32549),(23747,'history_str','itemid',32549),(23748,'history_text','itemid',32549),(23749,'history_uint','itemid',32549),(23750,'trends','itemid',32549),(23751,'trends_uint','itemid',32549),(23752,'events','itemid',32550),(23753,'history','itemid',32550),(23754,'history_log','itemid',32550),(23755,'history_str','itemid',32550),(23756,'history_text','itemid',32550),(23757,'history_uint','itemid',32550),(23758,'trends','itemid',32550),(23759,'trends_uint','itemid',32550),(23760,'events','itemid',32551),(23761,'history','itemid',32551),(23762,'history_log','itemid',32551),(23763,'history_str','itemid',32551),(23764,'history_text','itemid',32551),(23765,'history_uint','itemid',32551),(23766,'trends','itemid',32551),(23767,'trends_uint','itemid',32551),(23768,'events','itemid',32552),(23769,'history','itemid',32552),(23770,'history_log','itemid',32552),(23771,'history_str','itemid',32552),(23772,'history_text','itemid',32552),(23773,'history_uint','itemid',32552),(23774,'trends','itemid',32552),(23775,'trends_uint','itemid',32552),(23776,'events','itemid',32553),(23777,'history','itemid',32553),(23778,'history_log','itemid',32553),(23779,'history_str','itemid',32553),(23780,'history_text','itemid',32553),(23781,'history_uint','itemid',32553),(23782,'trends','itemid',32553),(23783,'trends_uint','itemid',32553),(23784,'events','itemid',32554),(23785,'history','itemid',32554),(23786,'history_log','itemid',32554),(23787,'history_str','itemid',32554),(23788,'history_text','itemid',32554),(23789,'history_uint','itemid',32554),(23790,'trends','itemid',32554),(23791,'trends_uint','itemid',32554),(23792,'events','itemid',33630),(23793,'history','itemid',33630),(23794,'history_log','itemid',33630),(23795,'history_str','itemid',33630),(23796,'history_text','itemid',33630),(23797,'history_uint','itemid',33630),(23798,'trends','itemid',33630),(23799,'trends_uint','itemid',33630),(23800,'events','itemid',33631),(23801,'history','itemid',33631),(23802,'history_log','itemid',33631),(23803,'history_str','itemid',33631),(23804,'history_text','itemid',33631),(23805,'history_uint','itemid',33631),(23806,'trends','itemid',33631),(23807,'trends_uint','itemid',33631),(23808,'events','itemid',33632),(23809,'history','itemid',33632),(23810,'history_log','itemid',33632),(23811,'history_str','itemid',33632),(23812,'history_text','itemid',33632),(23813,'history_uint','itemid',33632),(23814,'trends','itemid',33632),(23815,'trends_uint','itemid',33632),(23816,'events','itemid',33633),(23817,'history','itemid',33633),(23818,'history_log','itemid',33633),(23819,'history_str','itemid',33633),(23820,'history_text','itemid',33633),(23821,'history_uint','itemid',33633),(23822,'trends','itemid',33633),(23823,'trends_uint','itemid',33633),(23824,'events','itemid',34149),(23825,'history','itemid',34149),(23826,'history_log','itemid',34149),(23827,'history_str','itemid',34149),(23828,'history_text','itemid',34149),(23829,'history_uint','itemid',34149),(23830,'trends','itemid',34149),(23831,'trends_uint','itemid',34149),(23832,'events','itemid',34150),(23833,'history','itemid',34150),(23834,'history_log','itemid',34150),(23835,'history_str','itemid',34150),(23836,'history_text','itemid',34150),(23837,'history_uint','itemid',34150),(23838,'trends','itemid',34150),(23839,'trends_uint','itemid',34150),(23840,'events','itemid',34151),(23841,'history','itemid',34151),(23842,'history_log','itemid',34151),(23843,'history_str','itemid',34151),(23844,'history_text','itemid',34151),(23845,'history_uint','itemid',34151),(23846,'trends','itemid',34151),(23847,'trends_uint','itemid',34151),(23848,'events','itemid',34152),(23849,'history','itemid',34152),(23850,'history_log','itemid',34152),(23851,'history_str','itemid',34152),(23852,'history_text','itemid',34152),(23853,'history_uint','itemid',34152),(23854,'trends','itemid',34152),(23855,'trends_uint','itemid',34152),(23856,'events','itemid',34153),(23857,'history','itemid',34153),(23858,'history_log','itemid',34153),(23859,'history_str','itemid',34153),(23860,'history_text','itemid',34153),(23861,'history_uint','itemid',34153),(23862,'trends','itemid',34153),(23863,'trends_uint','itemid',34153),(23864,'events','itemid',34154),(23865,'history','itemid',34154),(23866,'history_log','itemid',34154),(23867,'history_str','itemid',34154),(23868,'history_text','itemid',34154),(23869,'history_uint','itemid',34154),(23870,'trends','itemid',34154),(23871,'trends_uint','itemid',34154),(23872,'events','itemid',34155),(23873,'history','itemid',34155),(23874,'history_log','itemid',34155),(23875,'history_str','itemid',34155),(23876,'history_text','itemid',34155),(23877,'history_uint','itemid',34155),(23878,'trends','itemid',34155),(23879,'trends_uint','itemid',34155),(23880,'events','itemid',34156),(23881,'history','itemid',34156),(23882,'history_log','itemid',34156),(23883,'history_str','itemid',34156),(23884,'history_text','itemid',34156),(23885,'history_uint','itemid',34156),(23886,'trends','itemid',34156),(23887,'trends_uint','itemid',34156),(23888,'events','itemid',34157),(23889,'history','itemid',34157),(23890,'history_log','itemid',34157),(23891,'history_str','itemid',34157),(23892,'history_text','itemid',34157),(23893,'history_uint','itemid',34157),(23894,'trends','itemid',34157),(23895,'trends_uint','itemid',34157),(23896,'events','itemid',34158),(23897,'history','itemid',34158),(23898,'history_log','itemid',34158),(23899,'history_str','itemid',34158),(23900,'history_text','itemid',34158),(23901,'history_uint','itemid',34158),(23902,'trends','itemid',34158),(23903,'trends_uint','itemid',34158),(23904,'events','itemid',34159),(23905,'history','itemid',34159),(23906,'history_log','itemid',34159),(23907,'history_str','itemid',34159),(23908,'history_text','itemid',34159),(23909,'history_uint','itemid',34159),(23910,'trends','itemid',34159),(23911,'trends_uint','itemid',34159),(23912,'events','itemid',34160),(23913,'history','itemid',34160),(23914,'history_log','itemid',34160),(23915,'history_str','itemid',34160),(23916,'history_text','itemid',34160),(23917,'history_uint','itemid',34160),(23918,'trends','itemid',34160),(23919,'trends_uint','itemid',34160),(23920,'events','itemid',36847),(23921,'history','itemid',36847),(23922,'history_log','itemid',36847),(23923,'history_str','itemid',36847),(23924,'history_text','itemid',36847),(23925,'history_uint','itemid',36847),(23926,'trends','itemid',36847),(23927,'trends_uint','itemid',36847),(23928,'events','itemid',36848),(23929,'history','itemid',36848),(23930,'history_log','itemid',36848),(23931,'history_str','itemid',36848),(23932,'history_text','itemid',36848),(23933,'history_uint','itemid',36848),(23934,'trends','itemid',36848),(23935,'trends_uint','itemid',36848),(23936,'events','itemid',36849),(23937,'history','itemid',36849),(23938,'history_log','itemid',36849),(23939,'history_str','itemid',36849),(23940,'history_text','itemid',36849),(23941,'history_uint','itemid',36849),(23942,'trends','itemid',36849),(23943,'trends_uint','itemid',36849),(23944,'events','itemid',36850),(23945,'history','itemid',36850),(23946,'history_log','itemid',36850),(23947,'history_str','itemid',36850),(23948,'history_text','itemid',36850),(23949,'history_uint','itemid',36850),(23950,'trends','itemid',36850),(23951,'trends_uint','itemid',36850),(23952,'events','itemid',36851),(23953,'history','itemid',36851),(23954,'history_log','itemid',36851),(23955,'history_str','itemid',36851),(23956,'history_text','itemid',36851),(23957,'history_uint','itemid',36851),(23958,'trends','itemid',36851),(23959,'trends_uint','itemid',36851),(23960,'events','itemid',36852),(23961,'history','itemid',36852),(23962,'history_log','itemid',36852),(23963,'history_str','itemid',36852),(23964,'history_text','itemid',36852),(23965,'history_uint','itemid',36852),(23966,'trends','itemid',36852),(23967,'trends_uint','itemid',36852),(23968,'events','itemid',36853),(23969,'history','itemid',36853),(23970,'history_log','itemid',36853),(23971,'history_str','itemid',36853),(23972,'history_text','itemid',36853),(23973,'history_uint','itemid',36853),(23974,'trends','itemid',36853),(23975,'trends_uint','itemid',36853),(23976,'events','itemid',36901),(23977,'history','itemid',36901),(23978,'history_log','itemid',36901),(23979,'history_str','itemid',36901),(23980,'history_text','itemid',36901),(23981,'history_uint','itemid',36901),(23982,'trends','itemid',36901),(23983,'trends_uint','itemid',36901),(23984,'events','itemid',36902),(23985,'history','itemid',36902),(23986,'history_log','itemid',36902),(23987,'history_str','itemid',36902),(23988,'history_text','itemid',36902),(23989,'history_uint','itemid',36902),(23990,'trends','itemid',36902),(23991,'trends_uint','itemid',36902),(23992,'events','itemid',36903),(23993,'history','itemid',36903),(23994,'history_log','itemid',36903),(23995,'history_str','itemid',36903),(23996,'history_text','itemid',36903),(23997,'history_uint','itemid',36903),(23998,'trends','itemid',36903),(23999,'trends_uint','itemid',36903),(24000,'events','itemid',36904),(24001,'history','itemid',36904),(24002,'history_log','itemid',36904),(24003,'history_str','itemid',36904),(24004,'history_text','itemid',36904),(24005,'history_uint','itemid',36904),(24006,'trends','itemid',36904),(24007,'trends_uint','itemid',36904),(24008,'events','itemid',36905),(24009,'history','itemid',36905),(24010,'history_log','itemid',36905),(24011,'history_str','itemid',36905),(24012,'history_text','itemid',36905),(24013,'history_uint','itemid',36905),(24014,'trends','itemid',36905),(24015,'trends_uint','itemid',36905),(24016,'events','itemid',36906),(24017,'history','itemid',36906),(24018,'history_log','itemid',36906),(24019,'history_str','itemid',36906),(24020,'history_text','itemid',36906),(24021,'history_uint','itemid',36906),(24022,'trends','itemid',36906),(24023,'trends_uint','itemid',36906),(24024,'events','itemid',36907),(24025,'history','itemid',36907),(24026,'history_log','itemid',36907),(24027,'history_str','itemid',36907),(24028,'history_text','itemid',36907),(24029,'history_uint','itemid',36907),(24030,'trends','itemid',36907),(24031,'trends_uint','itemid',36907),(24032,'events','itemid',36955),(24033,'history','itemid',36955),(24034,'history_log','itemid',36955),(24035,'history_str','itemid',36955),(24036,'history_text','itemid',36955),(24037,'history_uint','itemid',36955),(24038,'trends','itemid',36955),(24039,'trends_uint','itemid',36955),(24040,'events','itemid',36956),(24041,'history','itemid',36956),(24042,'history_log','itemid',36956),(24043,'history_str','itemid',36956),(24044,'history_text','itemid',36956),(24045,'history_uint','itemid',36956),(24046,'trends','itemid',36956),(24047,'trends_uint','itemid',36956),(24048,'events','itemid',36957),(24049,'history','itemid',36957),(24050,'history_log','itemid',36957),(24051,'history_str','itemid',36957),(24052,'history_text','itemid',36957),(24053,'history_uint','itemid',36957),(24054,'trends','itemid',36957),(24055,'trends_uint','itemid',36957),(24056,'events','itemid',36958),(24057,'history','itemid',36958),(24058,'history_log','itemid',36958),(24059,'history_str','itemid',36958),(24060,'history_text','itemid',36958),(24061,'history_uint','itemid',36958),(24062,'trends','itemid',36958),(24063,'trends_uint','itemid',36958),(24064,'events','itemid',36959),(24065,'history','itemid',36959),(24066,'history_log','itemid',36959),(24067,'history_str','itemid',36959),(24068,'history_text','itemid',36959),(24069,'history_uint','itemid',36959),(24070,'trends','itemid',36959),(24071,'trends_uint','itemid',36959),(24072,'events','itemid',36960),(24073,'history','itemid',36960),(24074,'history_log','itemid',36960),(24075,'history_str','itemid',36960),(24076,'history_text','itemid',36960),(24077,'history_uint','itemid',36960),(24078,'trends','itemid',36960),(24079,'trends_uint','itemid',36960),(24080,'events','itemid',36961),(24081,'history','itemid',36961),(24082,'history_log','itemid',36961),(24083,'history_str','itemid',36961),(24084,'history_text','itemid',36961),(24085,'history_uint','itemid',36961),(24086,'trends','itemid',36961),(24087,'trends_uint','itemid',36961),(24088,'events','itemid',37009),(24089,'history','itemid',37009),(24090,'history_log','itemid',37009),(24091,'history_str','itemid',37009),(24092,'history_text','itemid',37009),(24093,'history_uint','itemid',37009),(24094,'trends','itemid',37009),(24095,'trends_uint','itemid',37009),(24096,'events','itemid',37010),(24097,'history','itemid',37010),(24098,'history_log','itemid',37010),(24099,'history_str','itemid',37010),(24100,'history_text','itemid',37010),(24101,'history_uint','itemid',37010),(24102,'trends','itemid',37010),(24103,'trends_uint','itemid',37010),(24104,'events','itemid',37011),(24105,'history','itemid',37011),(24106,'history_log','itemid',37011),(24107,'history_str','itemid',37011),(24108,'history_text','itemid',37011),(24109,'history_uint','itemid',37011),(24110,'trends','itemid',37011),(24111,'trends_uint','itemid',37011),(24112,'events','itemid',37012),(24113,'history','itemid',37012),(24114,'history_log','itemid',37012),(24115,'history_str','itemid',37012),(24116,'history_text','itemid',37012),(24117,'history_uint','itemid',37012),(24118,'trends','itemid',37012),(24119,'trends_uint','itemid',37012),(24120,'events','itemid',37013),(24121,'history','itemid',37013),(24122,'history_log','itemid',37013),(24123,'history_str','itemid',37013),(24124,'history_text','itemid',37013),(24125,'history_uint','itemid',37013),(24126,'trends','itemid',37013),(24127,'trends_uint','itemid',37013),(24128,'events','itemid',37014),(24129,'history','itemid',37014),(24130,'history_log','itemid',37014),(24131,'history_str','itemid',37014),(24132,'history_text','itemid',37014),(24133,'history_uint','itemid',37014),(24134,'trends','itemid',37014),(24135,'trends_uint','itemid',37014),(24136,'events','itemid',37015),(24137,'history','itemid',37015),(24138,'history_log','itemid',37015),(24139,'history_str','itemid',37015),(24140,'history_text','itemid',37015),(24141,'history_uint','itemid',37015),(24142,'trends','itemid',37015),(24143,'trends_uint','itemid',37015),(24144,'events','itemid',37063),(24145,'history','itemid',37063),(24146,'history_log','itemid',37063),(24147,'history_str','itemid',37063),(24148,'history_text','itemid',37063),(24149,'history_uint','itemid',37063),(24150,'trends','itemid',37063),(24151,'trends_uint','itemid',37063),(24152,'events','itemid',37064),(24153,'history','itemid',37064),(24154,'history_log','itemid',37064),(24155,'history_str','itemid',37064),(24156,'history_text','itemid',37064),(24157,'history_uint','itemid',37064),(24158,'trends','itemid',37064),(24159,'trends_uint','itemid',37064),(24160,'events','itemid',37065),(24161,'history','itemid',37065),(24162,'history_log','itemid',37065),(24163,'history_str','itemid',37065),(24164,'history_text','itemid',37065),(24165,'history_uint','itemid',37065),(24166,'trends','itemid',37065),(24167,'trends_uint','itemid',37065),(24168,'events','itemid',37066),(24169,'history','itemid',37066),(24170,'history_log','itemid',37066),(24171,'history_str','itemid',37066),(24172,'history_text','itemid',37066),(24173,'history_uint','itemid',37066),(24174,'trends','itemid',37066),(24175,'trends_uint','itemid',37066),(24176,'events','itemid',37067),(24177,'history','itemid',37067),(24178,'history_log','itemid',37067),(24179,'history_str','itemid',37067),(24180,'history_text','itemid',37067),(24181,'history_uint','itemid',37067),(24182,'trends','itemid',37067),(24183,'trends_uint','itemid',37067),(24184,'events','itemid',37068),(24185,'history','itemid',37068),(24186,'history_log','itemid',37068),(24187,'history_str','itemid',37068),(24188,'history_text','itemid',37068),(24189,'history_uint','itemid',37068),(24190,'trends','itemid',37068),(24191,'trends_uint','itemid',37068),(24192,'events','itemid',37069),(24193,'history','itemid',37069),(24194,'history_log','itemid',37069),(24195,'history_str','itemid',37069),(24196,'history_text','itemid',37069),(24197,'history_uint','itemid',37069),(24198,'trends','itemid',37069),(24199,'trends_uint','itemid',37069),(24200,'events','itemid',37117),(24201,'history','itemid',37117),(24202,'history_log','itemid',37117),(24203,'history_str','itemid',37117),(24204,'history_text','itemid',37117),(24205,'history_uint','itemid',37117),(24206,'trends','itemid',37117),(24207,'trends_uint','itemid',37117),(24208,'events','itemid',37118),(24209,'history','itemid',37118),(24210,'history_log','itemid',37118),(24211,'history_str','itemid',37118),(24212,'history_text','itemid',37118),(24213,'history_uint','itemid',37118),(24214,'trends','itemid',37118),(24215,'trends_uint','itemid',37118),(24216,'events','itemid',37119),(24217,'history','itemid',37119),(24218,'history_log','itemid',37119),(24219,'history_str','itemid',37119),(24220,'history_text','itemid',37119),(24221,'history_uint','itemid',37119),(24222,'trends','itemid',37119),(24223,'trends_uint','itemid',37119),(24224,'events','itemid',37120),(24225,'history','itemid',37120),(24226,'history_log','itemid',37120),(24227,'history_str','itemid',37120),(24228,'history_text','itemid',37120),(24229,'history_uint','itemid',37120),(24230,'trends','itemid',37120),(24231,'trends_uint','itemid',37120),(24232,'events','itemid',37121),(24233,'history','itemid',37121),(24234,'history_log','itemid',37121),(24235,'history_str','itemid',37121),(24236,'history_text','itemid',37121),(24237,'history_uint','itemid',37121),(24238,'trends','itemid',37121),(24239,'trends_uint','itemid',37121),(24240,'events','itemid',37122),(24241,'history','itemid',37122),(24242,'history_log','itemid',37122),(24243,'history_str','itemid',37122),(24244,'history_text','itemid',37122),(24245,'history_uint','itemid',37122),(24246,'trends','itemid',37122),(24247,'trends_uint','itemid',37122),(24248,'events','itemid',37123),(24249,'history','itemid',37123),(24250,'history_log','itemid',37123),(24251,'history_str','itemid',37123),(24252,'history_text','itemid',37123),(24253,'history_uint','itemid',37123),(24254,'trends','itemid',37123),(24255,'trends_uint','itemid',37123),(24256,'events','itemid',37171),(24257,'history','itemid',37171),(24258,'history_log','itemid',37171),(24259,'history_str','itemid',37171),(24260,'history_text','itemid',37171),(24261,'history_uint','itemid',37171),(24262,'trends','itemid',37171),(24263,'trends_uint','itemid',37171),(24264,'events','itemid',37172),(24265,'history','itemid',37172),(24266,'history_log','itemid',37172),(24267,'history_str','itemid',37172),(24268,'history_text','itemid',37172),(24269,'history_uint','itemid',37172),(24270,'trends','itemid',37172),(24271,'trends_uint','itemid',37172),(24272,'events','itemid',37173),(24273,'history','itemid',37173),(24274,'history_log','itemid',37173),(24275,'history_str','itemid',37173),(24276,'history_text','itemid',37173),(24277,'history_uint','itemid',37173),(24278,'trends','itemid',37173),(24279,'trends_uint','itemid',37173),(24280,'events','itemid',37174),(24281,'history','itemid',37174),(24282,'history_log','itemid',37174),(24283,'history_str','itemid',37174),(24284,'history_text','itemid',37174),(24285,'history_uint','itemid',37174),(24286,'trends','itemid',37174),(24287,'trends_uint','itemid',37174),(24288,'events','itemid',37175),(24289,'history','itemid',37175),(24290,'history_log','itemid',37175),(24291,'history_str','itemid',37175),(24292,'history_text','itemid',37175),(24293,'history_uint','itemid',37175),(24294,'trends','itemid',37175),(24295,'trends_uint','itemid',37175),(24296,'events','itemid',37176),(24297,'history','itemid',37176),(24298,'history_log','itemid',37176),(24299,'history_str','itemid',37176),(24300,'history_text','itemid',37176),(24301,'history_uint','itemid',37176),(24302,'trends','itemid',37176),(24303,'trends_uint','itemid',37176),(24304,'events','itemid',37177),(24305,'history','itemid',37177),(24306,'history_log','itemid',37177),(24307,'history_str','itemid',37177),(24308,'history_text','itemid',37177),(24309,'history_uint','itemid',37177),(24310,'trends','itemid',37177),(24311,'trends_uint','itemid',37177),(24312,'events','itemid',37225),(24313,'history','itemid',37225),(24314,'history_log','itemid',37225),(24315,'history_str','itemid',37225),(24316,'history_text','itemid',37225),(24317,'history_uint','itemid',37225),(24318,'trends','itemid',37225),(24319,'trends_uint','itemid',37225),(24320,'events','itemid',37226),(24321,'history','itemid',37226),(24322,'history_log','itemid',37226),(24323,'history_str','itemid',37226),(24324,'history_text','itemid',37226),(24325,'history_uint','itemid',37226),(24326,'trends','itemid',37226),(24327,'trends_uint','itemid',37226),(24328,'events','itemid',37227),(24329,'history','itemid',37227),(24330,'history_log','itemid',37227),(24331,'history_str','itemid',37227),(24332,'history_text','itemid',37227),(24333,'history_uint','itemid',37227),(24334,'trends','itemid',37227),(24335,'trends_uint','itemid',37227),(24336,'events','itemid',37228),(24337,'history','itemid',37228),(24338,'history_log','itemid',37228),(24339,'history_str','itemid',37228),(24340,'history_text','itemid',37228),(24341,'history_uint','itemid',37228),(24342,'trends','itemid',37228),(24343,'trends_uint','itemid',37228),(24344,'events','itemid',37229),(24345,'history','itemid',37229),(24346,'history_log','itemid',37229),(24347,'history_str','itemid',37229),(24348,'history_text','itemid',37229),(24349,'history_uint','itemid',37229),(24350,'trends','itemid',37229),(24351,'trends_uint','itemid',37229),(24352,'events','itemid',37230),(24353,'history','itemid',37230),(24354,'history_log','itemid',37230),(24355,'history_str','itemid',37230),(24356,'history_text','itemid',37230),(24357,'history_uint','itemid',37230),(24358,'trends','itemid',37230),(24359,'trends_uint','itemid',37230),(24360,'events','itemid',37231),(24361,'history','itemid',37231),(24362,'history_log','itemid',37231),(24363,'history_str','itemid',37231),(24364,'history_text','itemid',37231),(24365,'history_uint','itemid',37231),(24366,'trends','itemid',37231),(24367,'trends_uint','itemid',37231),(24368,'events','itemid',37279),(24369,'history','itemid',37279),(24370,'history_log','itemid',37279),(24371,'history_str','itemid',37279),(24372,'history_text','itemid',37279),(24373,'history_uint','itemid',37279),(24374,'trends','itemid',37279),(24375,'trends_uint','itemid',37279),(24376,'events','itemid',37280),(24377,'history','itemid',37280),(24378,'history_log','itemid',37280),(24379,'history_str','itemid',37280),(24380,'history_text','itemid',37280),(24381,'history_uint','itemid',37280),(24382,'trends','itemid',37280),(24383,'trends_uint','itemid',37280),(24384,'events','itemid',37281),(24385,'history','itemid',37281),(24386,'history_log','itemid',37281),(24387,'history_str','itemid',37281),(24388,'history_text','itemid',37281),(24389,'history_uint','itemid',37281),(24390,'trends','itemid',37281),(24391,'trends_uint','itemid',37281),(24392,'events','itemid',37282),(24393,'history','itemid',37282),(24394,'history_log','itemid',37282),(24395,'history_str','itemid',37282),(24396,'history_text','itemid',37282),(24397,'history_uint','itemid',37282),(24398,'trends','itemid',37282),(24399,'trends_uint','itemid',37282),(24400,'events','itemid',37283),(24401,'history','itemid',37283),(24402,'history_log','itemid',37283),(24403,'history_str','itemid',37283),(24404,'history_text','itemid',37283),(24405,'history_uint','itemid',37283),(24406,'trends','itemid',37283),(24407,'trends_uint','itemid',37283),(24408,'events','itemid',37284),(24409,'history','itemid',37284),(24410,'history_log','itemid',37284),(24411,'history_str','itemid',37284),(24412,'history_text','itemid',37284),(24413,'history_uint','itemid',37284),(24414,'trends','itemid',37284),(24415,'trends_uint','itemid',37284),(24416,'events','itemid',37285),(24417,'history','itemid',37285),(24418,'history_log','itemid',37285),(24419,'history_str','itemid',37285),(24420,'history_text','itemid',37285),(24421,'history_uint','itemid',37285),(24422,'trends','itemid',37285),(24423,'trends_uint','itemid',37285),(24424,'events','itemid',37333),(24425,'history','itemid',37333),(24426,'history_log','itemid',37333),(24427,'history_str','itemid',37333),(24428,'history_text','itemid',37333),(24429,'history_uint','itemid',37333),(24430,'trends','itemid',37333),(24431,'trends_uint','itemid',37333),(24432,'events','itemid',37334),(24433,'history','itemid',37334),(24434,'history_log','itemid',37334),(24435,'history_str','itemid',37334),(24436,'history_text','itemid',37334),(24437,'history_uint','itemid',37334),(24438,'trends','itemid',37334),(24439,'trends_uint','itemid',37334),(24440,'events','itemid',37335),(24441,'history','itemid',37335),(24442,'history_log','itemid',37335),(24443,'history_str','itemid',37335),(24444,'history_text','itemid',37335),(24445,'history_uint','itemid',37335),(24446,'trends','itemid',37335),(24447,'trends_uint','itemid',37335),(24448,'events','itemid',37336),(24449,'history','itemid',37336),(24450,'history_log','itemid',37336),(24451,'history_str','itemid',37336),(24452,'history_text','itemid',37336),(24453,'history_uint','itemid',37336),(24454,'trends','itemid',37336),(24455,'trends_uint','itemid',37336),(24456,'events','itemid',37337),(24457,'history','itemid',37337),(24458,'history_log','itemid',37337),(24459,'history_str','itemid',37337),(24460,'history_text','itemid',37337),(24461,'history_uint','itemid',37337),(24462,'trends','itemid',37337),(24463,'trends_uint','itemid',37337),(24464,'events','itemid',37338),(24465,'history','itemid',37338),(24466,'history_log','itemid',37338),(24467,'history_str','itemid',37338),(24468,'history_text','itemid',37338),(24469,'history_uint','itemid',37338),(24470,'trends','itemid',37338),(24471,'trends_uint','itemid',37338),(24472,'events','itemid',37339),(24473,'history','itemid',37339),(24474,'history_log','itemid',37339),(24475,'history_str','itemid',37339),(24476,'history_text','itemid',37339),(24477,'history_uint','itemid',37339),(24478,'trends','itemid',37339),(24479,'trends_uint','itemid',37339),(24480,'events','itemid',37387),(24481,'history','itemid',37387),(24482,'history_log','itemid',37387),(24483,'history_str','itemid',37387),(24484,'history_text','itemid',37387),(24485,'history_uint','itemid',37387),(24486,'trends','itemid',37387),(24487,'trends_uint','itemid',37387),(24488,'events','itemid',37388),(24489,'history','itemid',37388),(24490,'history_log','itemid',37388),(24491,'history_str','itemid',37388),(24492,'history_text','itemid',37388),(24493,'history_uint','itemid',37388),(24494,'trends','itemid',37388),(24495,'trends_uint','itemid',37388),(24496,'events','itemid',37389),(24497,'history','itemid',37389),(24498,'history_log','itemid',37389),(24499,'history_str','itemid',37389),(24500,'history_text','itemid',37389),(24501,'history_uint','itemid',37389),(24502,'trends','itemid',37389),(24503,'trends_uint','itemid',37389),(24504,'events','itemid',37390),(24505,'history','itemid',37390),(24506,'history_log','itemid',37390),(24507,'history_str','itemid',37390),(24508,'history_text','itemid',37390),(24509,'history_uint','itemid',37390),(24510,'trends','itemid',37390),(24511,'trends_uint','itemid',37390),(24512,'events','itemid',37391),(24513,'history','itemid',37391),(24514,'history_log','itemid',37391),(24515,'history_str','itemid',37391),(24516,'history_text','itemid',37391),(24517,'history_uint','itemid',37391),(24518,'trends','itemid',37391),(24519,'trends_uint','itemid',37391),(24520,'events','itemid',37392),(24521,'history','itemid',37392),(24522,'history_log','itemid',37392),(24523,'history_str','itemid',37392),(24524,'history_text','itemid',37392),(24525,'history_uint','itemid',37392),(24526,'trends','itemid',37392),(24527,'trends_uint','itemid',37392),(24528,'events','itemid',37393),(24529,'history','itemid',37393),(24530,'history_log','itemid',37393),(24531,'history_str','itemid',37393),(24532,'history_text','itemid',37393),(24533,'history_uint','itemid',37393),(24534,'trends','itemid',37393),(24535,'trends_uint','itemid',37393),(24536,'events','itemid',37441),(24537,'history','itemid',37441),(24538,'history_log','itemid',37441),(24539,'history_str','itemid',37441),(24540,'history_text','itemid',37441),(24541,'history_uint','itemid',37441),(24542,'trends','itemid',37441),(24543,'trends_uint','itemid',37441),(24544,'events','itemid',37442),(24545,'history','itemid',37442),(24546,'history_log','itemid',37442),(24547,'history_str','itemid',37442),(24548,'history_text','itemid',37442),(24549,'history_uint','itemid',37442),(24550,'trends','itemid',37442),(24551,'trends_uint','itemid',37442),(24552,'events','itemid',37443),(24553,'history','itemid',37443),(24554,'history_log','itemid',37443),(24555,'history_str','itemid',37443),(24556,'history_text','itemid',37443),(24557,'history_uint','itemid',37443),(24558,'trends','itemid',37443),(24559,'trends_uint','itemid',37443),(24560,'events','itemid',37444),(24561,'history','itemid',37444),(24562,'history_log','itemid',37444),(24563,'history_str','itemid',37444),(24564,'history_text','itemid',37444),(24565,'history_uint','itemid',37444),(24566,'trends','itemid',37444),(24567,'trends_uint','itemid',37444),(24568,'events','itemid',37445),(24569,'history','itemid',37445),(24570,'history_log','itemid',37445),(24571,'history_str','itemid',37445),(24572,'history_text','itemid',37445),(24573,'history_uint','itemid',37445),(24574,'trends','itemid',37445),(24575,'trends_uint','itemid',37445),(24576,'events','itemid',37446),(24577,'history','itemid',37446),(24578,'history_log','itemid',37446),(24579,'history_str','itemid',37446),(24580,'history_text','itemid',37446),(24581,'history_uint','itemid',37446),(24582,'trends','itemid',37446),(24583,'trends_uint','itemid',37446),(24584,'events','itemid',37447),(24585,'history','itemid',37447),(24586,'history_log','itemid',37447),(24587,'history_str','itemid',37447),(24588,'history_text','itemid',37447),(24589,'history_uint','itemid',37447),(24590,'trends','itemid',37447),(24591,'trends_uint','itemid',37447),(24592,'events','itemid',37495),(24593,'history','itemid',37495),(24594,'history_log','itemid',37495),(24595,'history_str','itemid',37495),(24596,'history_text','itemid',37495),(24597,'history_uint','itemid',37495),(24598,'trends','itemid',37495),(24599,'trends_uint','itemid',37495),(24600,'events','itemid',37496),(24601,'history','itemid',37496),(24602,'history_log','itemid',37496),(24603,'history_str','itemid',37496),(24604,'history_text','itemid',37496),(24605,'history_uint','itemid',37496),(24606,'trends','itemid',37496),(24607,'trends_uint','itemid',37496),(24608,'events','itemid',37497),(24609,'history','itemid',37497),(24610,'history_log','itemid',37497),(24611,'history_str','itemid',37497),(24612,'history_text','itemid',37497),(24613,'history_uint','itemid',37497),(24614,'trends','itemid',37497),(24615,'trends_uint','itemid',37497),(24616,'events','itemid',37498),(24617,'history','itemid',37498),(24618,'history_log','itemid',37498),(24619,'history_str','itemid',37498),(24620,'history_text','itemid',37498),(24621,'history_uint','itemid',37498),(24622,'trends','itemid',37498),(24623,'trends_uint','itemid',37498),(24624,'events','itemid',37499),(24625,'history','itemid',37499),(24626,'history_log','itemid',37499),(24627,'history_str','itemid',37499),(24628,'history_text','itemid',37499),(24629,'history_uint','itemid',37499),(24630,'trends','itemid',37499),(24631,'trends_uint','itemid',37499),(24632,'events','itemid',37500),(24633,'history','itemid',37500),(24634,'history_log','itemid',37500),(24635,'history_str','itemid',37500),(24636,'history_text','itemid',37500),(24637,'history_uint','itemid',37500),(24638,'trends','itemid',37500),(24639,'trends_uint','itemid',37500),(24640,'events','itemid',37501),(24641,'history','itemid',37501),(24642,'history_log','itemid',37501),(24643,'history_str','itemid',37501),(24644,'history_text','itemid',37501),(24645,'history_uint','itemid',37501),(24646,'trends','itemid',37501),(24647,'trends_uint','itemid',37501),(24648,'events','itemid',37549),(24649,'history','itemid',37549),(24650,'history_log','itemid',37549),(24651,'history_str','itemid',37549),(24652,'history_text','itemid',37549),(24653,'history_uint','itemid',37549),(24654,'trends','itemid',37549),(24655,'trends_uint','itemid',37549),(24656,'events','itemid',37550),(24657,'history','itemid',37550),(24658,'history_log','itemid',37550),(24659,'history_str','itemid',37550),(24660,'history_text','itemid',37550),(24661,'history_uint','itemid',37550),(24662,'trends','itemid',37550),(24663,'trends_uint','itemid',37550),(24664,'events','itemid',37551),(24665,'history','itemid',37551),(24666,'history_log','itemid',37551),(24667,'history_str','itemid',37551),(24668,'history_text','itemid',37551),(24669,'history_uint','itemid',37551),(24670,'trends','itemid',37551),(24671,'trends_uint','itemid',37551),(24672,'events','itemid',37552),(24673,'history','itemid',37552),(24674,'history_log','itemid',37552),(24675,'history_str','itemid',37552),(24676,'history_text','itemid',37552),(24677,'history_uint','itemid',37552),(24678,'trends','itemid',37552),(24679,'trends_uint','itemid',37552),(24680,'events','itemid',37553),(24681,'history','itemid',37553),(24682,'history_log','itemid',37553),(24683,'history_str','itemid',37553),(24684,'history_text','itemid',37553),(24685,'history_uint','itemid',37553),(24686,'trends','itemid',37553),(24687,'trends_uint','itemid',37553),(24688,'events','itemid',37554),(24689,'history','itemid',37554),(24690,'history_log','itemid',37554),(24691,'history_str','itemid',37554),(24692,'history_text','itemid',37554),(24693,'history_uint','itemid',37554),(24694,'trends','itemid',37554),(24695,'trends_uint','itemid',37554),(24696,'events','itemid',37555),(24697,'history','itemid',37555),(24698,'history_log','itemid',37555),(24699,'history_str','itemid',37555),(24700,'history_text','itemid',37555),(24701,'history_uint','itemid',37555),(24702,'trends','itemid',37555),(24703,'trends_uint','itemid',37555),(24704,'events','itemid',37603),(24705,'history','itemid',37603),(24706,'history_log','itemid',37603),(24707,'history_str','itemid',37603),(24708,'history_text','itemid',37603),(24709,'history_uint','itemid',37603),(24710,'trends','itemid',37603),(24711,'trends_uint','itemid',37603),(24712,'events','itemid',37604),(24713,'history','itemid',37604),(24714,'history_log','itemid',37604),(24715,'history_str','itemid',37604),(24716,'history_text','itemid',37604),(24717,'history_uint','itemid',37604),(24718,'trends','itemid',37604),(24719,'trends_uint','itemid',37604),(24720,'events','itemid',37605),(24721,'history','itemid',37605),(24722,'history_log','itemid',37605),(24723,'history_str','itemid',37605),(24724,'history_text','itemid',37605),(24725,'history_uint','itemid',37605),(24726,'trends','itemid',37605),(24727,'trends_uint','itemid',37605),(24728,'events','itemid',37606),(24729,'history','itemid',37606),(24730,'history_log','itemid',37606),(24731,'history_str','itemid',37606),(24732,'history_text','itemid',37606),(24733,'history_uint','itemid',37606),(24734,'trends','itemid',37606),(24735,'trends_uint','itemid',37606),(24736,'events','itemid',37607),(24737,'history','itemid',37607),(24738,'history_log','itemid',37607),(24739,'history_str','itemid',37607),(24740,'history_text','itemid',37607),(24741,'history_uint','itemid',37607),(24742,'trends','itemid',37607),(24743,'trends_uint','itemid',37607),(24744,'events','itemid',37608),(24745,'history','itemid',37608),(24746,'history_log','itemid',37608),(24747,'history_str','itemid',37608),(24748,'history_text','itemid',37608),(24749,'history_uint','itemid',37608),(24750,'trends','itemid',37608),(24751,'trends_uint','itemid',37608),(24752,'events','itemid',37609),(24753,'history','itemid',37609),(24754,'history_log','itemid',37609),(24755,'history_str','itemid',37609),(24756,'history_text','itemid',37609),(24757,'history_uint','itemid',37609),(24758,'trends','itemid',37609),(24759,'trends_uint','itemid',37609),(24760,'events','itemid',37657),(24761,'history','itemid',37657),(24762,'history_log','itemid',37657),(24763,'history_str','itemid',37657),(24764,'history_text','itemid',37657),(24765,'history_uint','itemid',37657),(24766,'trends','itemid',37657),(24767,'trends_uint','itemid',37657),(24768,'events','itemid',37658),(24769,'history','itemid',37658),(24770,'history_log','itemid',37658),(24771,'history_str','itemid',37658),(24772,'history_text','itemid',37658),(24773,'history_uint','itemid',37658),(24774,'trends','itemid',37658),(24775,'trends_uint','itemid',37658),(24776,'events','itemid',37659),(24777,'history','itemid',37659),(24778,'history_log','itemid',37659),(24779,'history_str','itemid',37659),(24780,'history_text','itemid',37659),(24781,'history_uint','itemid',37659),(24782,'trends','itemid',37659),(24783,'trends_uint','itemid',37659),(24784,'events','itemid',37660),(24785,'history','itemid',37660),(24786,'history_log','itemid',37660),(24787,'history_str','itemid',37660),(24788,'history_text','itemid',37660),(24789,'history_uint','itemid',37660),(24790,'trends','itemid',37660),(24791,'trends_uint','itemid',37660),(24792,'events','itemid',37661),(24793,'history','itemid',37661),(24794,'history_log','itemid',37661),(24795,'history_str','itemid',37661),(24796,'history_text','itemid',37661),(24797,'history_uint','itemid',37661),(24798,'trends','itemid',37661),(24799,'trends_uint','itemid',37661),(24800,'events','itemid',37662),(24801,'history','itemid',37662),(24802,'history_log','itemid',37662),(24803,'history_str','itemid',37662),(24804,'history_text','itemid',37662),(24805,'history_uint','itemid',37662),(24806,'trends','itemid',37662),(24807,'trends_uint','itemid',37662),(24808,'events','itemid',37663),(24809,'history','itemid',37663),(24810,'history_log','itemid',37663),(24811,'history_str','itemid',37663),(24812,'history_text','itemid',37663),(24813,'history_uint','itemid',37663),(24814,'trends','itemid',37663),(24815,'trends_uint','itemid',37663),(24816,'events','itemid',37711),(24817,'history','itemid',37711),(24818,'history_log','itemid',37711),(24819,'history_str','itemid',37711),(24820,'history_text','itemid',37711),(24821,'history_uint','itemid',37711),(24822,'trends','itemid',37711),(24823,'trends_uint','itemid',37711),(24824,'events','itemid',37712),(24825,'history','itemid',37712),(24826,'history_log','itemid',37712),(24827,'history_str','itemid',37712),(24828,'history_text','itemid',37712),(24829,'history_uint','itemid',37712),(24830,'trends','itemid',37712),(24831,'trends_uint','itemid',37712),(24832,'events','itemid',37713),(24833,'history','itemid',37713),(24834,'history_log','itemid',37713),(24835,'history_str','itemid',37713),(24836,'history_text','itemid',37713),(24837,'history_uint','itemid',37713),(24838,'trends','itemid',37713),(24839,'trends_uint','itemid',37713),(24840,'events','itemid',37714),(24841,'history','itemid',37714),(24842,'history_log','itemid',37714),(24843,'history_str','itemid',37714),(24844,'history_text','itemid',37714),(24845,'history_uint','itemid',37714),(24846,'trends','itemid',37714),(24847,'trends_uint','itemid',37714),(24848,'events','itemid',37715),(24849,'history','itemid',37715),(24850,'history_log','itemid',37715),(24851,'history_str','itemid',37715),(24852,'history_text','itemid',37715),(24853,'history_uint','itemid',37715),(24854,'trends','itemid',37715),(24855,'trends_uint','itemid',37715),(24856,'events','itemid',37716),(24857,'history','itemid',37716),(24858,'history_log','itemid',37716),(24859,'history_str','itemid',37716),(24860,'history_text','itemid',37716),(24861,'history_uint','itemid',37716),(24862,'trends','itemid',37716),(24863,'trends_uint','itemid',37716),(24864,'events','itemid',37717),(24865,'history','itemid',37717),(24866,'history_log','itemid',37717),(24867,'history_str','itemid',37717),(24868,'history_text','itemid',37717),(24869,'history_uint','itemid',37717),(24870,'trends','itemid',37717),(24871,'trends_uint','itemid',37717),(24872,'events','itemid',37765),(24873,'history','itemid',37765),(24874,'history_log','itemid',37765),(24875,'history_str','itemid',37765),(24876,'history_text','itemid',37765),(24877,'history_uint','itemid',37765),(24878,'trends','itemid',37765),(24879,'trends_uint','itemid',37765),(24880,'events','itemid',37766),(24881,'history','itemid',37766),(24882,'history_log','itemid',37766),(24883,'history_str','itemid',37766),(24884,'history_text','itemid',37766),(24885,'history_uint','itemid',37766),(24886,'trends','itemid',37766),(24887,'trends_uint','itemid',37766),(24888,'events','itemid',37767),(24889,'history','itemid',37767),(24890,'history_log','itemid',37767),(24891,'history_str','itemid',37767),(24892,'history_text','itemid',37767),(24893,'history_uint','itemid',37767),(24894,'trends','itemid',37767),(24895,'trends_uint','itemid',37767),(24896,'events','itemid',37768),(24897,'history','itemid',37768),(24898,'history_log','itemid',37768),(24899,'history_str','itemid',37768),(24900,'history_text','itemid',37768),(24901,'history_uint','itemid',37768),(24902,'trends','itemid',37768),(24903,'trends_uint','itemid',37768),(24904,'events','itemid',37769),(24905,'history','itemid',37769),(24906,'history_log','itemid',37769),(24907,'history_str','itemid',37769),(24908,'history_text','itemid',37769),(24909,'history_uint','itemid',37769),(24910,'trends','itemid',37769),(24911,'trends_uint','itemid',37769),(24912,'events','itemid',37770),(24913,'history','itemid',37770),(24914,'history_log','itemid',37770),(24915,'history_str','itemid',37770),(24916,'history_text','itemid',37770),(24917,'history_uint','itemid',37770),(24918,'trends','itemid',37770),(24919,'trends_uint','itemid',37770),(24920,'events','itemid',37771),(24921,'history','itemid',37771),(24922,'history_log','itemid',37771),(24923,'history_str','itemid',37771),(24924,'history_text','itemid',37771),(24925,'history_uint','itemid',37771),(24926,'trends','itemid',37771),(24927,'trends_uint','itemid',37771),(24928,'events','itemid',37819),(24929,'history','itemid',37819),(24930,'history_log','itemid',37819),(24931,'history_str','itemid',37819),(24932,'history_text','itemid',37819),(24933,'history_uint','itemid',37819),(24934,'trends','itemid',37819),(24935,'trends_uint','itemid',37819),(24936,'events','itemid',37820),(24937,'history','itemid',37820),(24938,'history_log','itemid',37820),(24939,'history_str','itemid',37820),(24940,'history_text','itemid',37820),(24941,'history_uint','itemid',37820),(24942,'trends','itemid',37820),(24943,'trends_uint','itemid',37820),(24944,'events','itemid',37821),(24945,'history','itemid',37821),(24946,'history_log','itemid',37821),(24947,'history_str','itemid',37821),(24948,'history_text','itemid',37821),(24949,'history_uint','itemid',37821),(24950,'trends','itemid',37821),(24951,'trends_uint','itemid',37821),(24952,'events','itemid',37822),(24953,'history','itemid',37822),(24954,'history_log','itemid',37822),(24955,'history_str','itemid',37822),(24956,'history_text','itemid',37822),(24957,'history_uint','itemid',37822),(24958,'trends','itemid',37822),(24959,'trends_uint','itemid',37822),(24960,'events','itemid',37823),(24961,'history','itemid',37823),(24962,'history_log','itemid',37823),(24963,'history_str','itemid',37823),(24964,'history_text','itemid',37823),(24965,'history_uint','itemid',37823),(24966,'trends','itemid',37823),(24967,'trends_uint','itemid',37823),(24968,'events','itemid',37824),(24969,'history','itemid',37824),(24970,'history_log','itemid',37824),(24971,'history_str','itemid',37824),(24972,'history_text','itemid',37824),(24973,'history_uint','itemid',37824),(24974,'trends','itemid',37824),(24975,'trends_uint','itemid',37824),(24976,'events','itemid',37825),(24977,'history','itemid',37825),(24978,'history_log','itemid',37825),(24979,'history_str','itemid',37825),(24980,'history_text','itemid',37825),(24981,'history_uint','itemid',37825),(24982,'trends','itemid',37825),(24983,'trends_uint','itemid',37825),(24984,'events','itemid',37873),(24985,'history','itemid',37873),(24986,'history_log','itemid',37873),(24987,'history_str','itemid',37873),(24988,'history_text','itemid',37873),(24989,'history_uint','itemid',37873),(24990,'trends','itemid',37873),(24991,'trends_uint','itemid',37873),(24992,'events','itemid',37874),(24993,'history','itemid',37874),(24994,'history_log','itemid',37874),(24995,'history_str','itemid',37874),(24996,'history_text','itemid',37874),(24997,'history_uint','itemid',37874),(24998,'trends','itemid',37874),(24999,'trends_uint','itemid',37874),(25000,'events','itemid',37875),(25001,'history','itemid',37875),(25002,'history_log','itemid',37875),(25003,'history_str','itemid',37875),(25004,'history_text','itemid',37875),(25005,'history_uint','itemid',37875),(25006,'trends','itemid',37875),(25007,'trends_uint','itemid',37875),(25008,'events','itemid',37876),(25009,'history','itemid',37876),(25010,'history_log','itemid',37876),(25011,'history_str','itemid',37876),(25012,'history_text','itemid',37876),(25013,'history_uint','itemid',37876),(25014,'trends','itemid',37876),(25015,'trends_uint','itemid',37876),(25016,'events','itemid',37877),(25017,'history','itemid',37877),(25018,'history_log','itemid',37877),(25019,'history_str','itemid',37877),(25020,'history_text','itemid',37877),(25021,'history_uint','itemid',37877),(25022,'trends','itemid',37877),(25023,'trends_uint','itemid',37877),(25024,'events','itemid',37878),(25025,'history','itemid',37878),(25026,'history_log','itemid',37878),(25027,'history_str','itemid',37878),(25028,'history_text','itemid',37878),(25029,'history_uint','itemid',37878),(25030,'trends','itemid',37878),(25031,'trends_uint','itemid',37878),(25032,'events','itemid',37879),(25033,'history','itemid',37879),(25034,'history_log','itemid',37879),(25035,'history_str','itemid',37879),(25036,'history_text','itemid',37879),(25037,'history_uint','itemid',37879),(25038,'trends','itemid',37879),(25039,'trends_uint','itemid',37879),(25040,'events','itemid',37927),(25041,'history','itemid',37927),(25042,'history_log','itemid',37927),(25043,'history_str','itemid',37927),(25044,'history_text','itemid',37927),(25045,'history_uint','itemid',37927),(25046,'trends','itemid',37927),(25047,'trends_uint','itemid',37927),(25048,'events','itemid',37928),(25049,'history','itemid',37928),(25050,'history_log','itemid',37928),(25051,'history_str','itemid',37928),(25052,'history_text','itemid',37928),(25053,'history_uint','itemid',37928),(25054,'trends','itemid',37928),(25055,'trends_uint','itemid',37928),(25056,'events','itemid',37929),(25057,'history','itemid',37929),(25058,'history_log','itemid',37929),(25059,'history_str','itemid',37929),(25060,'history_text','itemid',37929),(25061,'history_uint','itemid',37929),(25062,'trends','itemid',37929),(25063,'trends_uint','itemid',37929),(25064,'events','itemid',37930),(25065,'history','itemid',37930),(25066,'history_log','itemid',37930),(25067,'history_str','itemid',37930),(25068,'history_text','itemid',37930),(25069,'history_uint','itemid',37930),(25070,'trends','itemid',37930),(25071,'trends_uint','itemid',37930),(25072,'events','itemid',37931),(25073,'history','itemid',37931),(25074,'history_log','itemid',37931),(25075,'history_str','itemid',37931),(25076,'history_text','itemid',37931),(25077,'history_uint','itemid',37931),(25078,'trends','itemid',37931),(25079,'trends_uint','itemid',37931),(25080,'events','itemid',37932),(25081,'history','itemid',37932),(25082,'history_log','itemid',37932),(25083,'history_str','itemid',37932),(25084,'history_text','itemid',37932),(25085,'history_uint','itemid',37932),(25086,'trends','itemid',37932),(25087,'trends_uint','itemid',37932),(25088,'events','itemid',37933),(25089,'history','itemid',37933),(25090,'history_log','itemid',37933),(25091,'history_str','itemid',37933),(25092,'history_text','itemid',37933),(25093,'history_uint','itemid',37933),(25094,'trends','itemid',37933),(25095,'trends_uint','itemid',37933),(25096,'events','itemid',37981),(25097,'history','itemid',37981),(25098,'history_log','itemid',37981),(25099,'history_str','itemid',37981),(25100,'history_text','itemid',37981),(25101,'history_uint','itemid',37981),(25102,'trends','itemid',37981),(25103,'trends_uint','itemid',37981),(25104,'events','itemid',37982),(25105,'history','itemid',37982),(25106,'history_log','itemid',37982),(25107,'history_str','itemid',37982),(25108,'history_text','itemid',37982),(25109,'history_uint','itemid',37982),(25110,'trends','itemid',37982),(25111,'trends_uint','itemid',37982),(25112,'events','itemid',37983),(25113,'history','itemid',37983),(25114,'history_log','itemid',37983),(25115,'history_str','itemid',37983),(25116,'history_text','itemid',37983),(25117,'history_uint','itemid',37983),(25118,'trends','itemid',37983),(25119,'trends_uint','itemid',37983),(25120,'events','itemid',37984),(25121,'history','itemid',37984),(25122,'history_log','itemid',37984),(25123,'history_str','itemid',37984),(25124,'history_text','itemid',37984),(25125,'history_uint','itemid',37984),(25126,'trends','itemid',37984),(25127,'trends_uint','itemid',37984),(25128,'events','itemid',37985),(25129,'history','itemid',37985),(25130,'history_log','itemid',37985),(25131,'history_str','itemid',37985),(25132,'history_text','itemid',37985),(25133,'history_uint','itemid',37985),(25134,'trends','itemid',37985),(25135,'trends_uint','itemid',37985),(25136,'events','itemid',37986),(25137,'history','itemid',37986),(25138,'history_log','itemid',37986),(25139,'history_str','itemid',37986),(25140,'history_text','itemid',37986),(25141,'history_uint','itemid',37986),(25142,'trends','itemid',37986),(25143,'trends_uint','itemid',37986),(25144,'events','itemid',37987),(25145,'history','itemid',37987),(25146,'history_log','itemid',37987),(25147,'history_str','itemid',37987),(25148,'history_text','itemid',37987),(25149,'history_uint','itemid',37987),(25150,'trends','itemid',37987),(25151,'trends_uint','itemid',37987),(25152,'events','itemid',38035),(25153,'history','itemid',38035),(25154,'history_log','itemid',38035),(25155,'history_str','itemid',38035),(25156,'history_text','itemid',38035),(25157,'history_uint','itemid',38035),(25158,'trends','itemid',38035),(25159,'trends_uint','itemid',38035),(25160,'events','itemid',38036),(25161,'history','itemid',38036),(25162,'history_log','itemid',38036),(25163,'history_str','itemid',38036),(25164,'history_text','itemid',38036),(25165,'history_uint','itemid',38036),(25166,'trends','itemid',38036),(25167,'trends_uint','itemid',38036),(25168,'events','itemid',38037),(25169,'history','itemid',38037),(25170,'history_log','itemid',38037),(25171,'history_str','itemid',38037),(25172,'history_text','itemid',38037),(25173,'history_uint','itemid',38037),(25174,'trends','itemid',38037),(25175,'trends_uint','itemid',38037),(25176,'events','itemid',38038),(25177,'history','itemid',38038),(25178,'history_log','itemid',38038),(25179,'history_str','itemid',38038),(25180,'history_text','itemid',38038),(25181,'history_uint','itemid',38038),(25182,'trends','itemid',38038),(25183,'trends_uint','itemid',38038),(25184,'events','itemid',38039),(25185,'history','itemid',38039),(25186,'history_log','itemid',38039),(25187,'history_str','itemid',38039),(25188,'history_text','itemid',38039),(25189,'history_uint','itemid',38039),(25190,'trends','itemid',38039),(25191,'trends_uint','itemid',38039),(25192,'events','itemid',38040),(25193,'history','itemid',38040),(25194,'history_log','itemid',38040),(25195,'history_str','itemid',38040),(25196,'history_text','itemid',38040),(25197,'history_uint','itemid',38040),(25198,'trends','itemid',38040),(25199,'trends_uint','itemid',38040),(25200,'events','itemid',38041),(25201,'history','itemid',38041),(25202,'history_log','itemid',38041),(25203,'history_str','itemid',38041),(25204,'history_text','itemid',38041),(25205,'history_uint','itemid',38041),(25206,'trends','itemid',38041),(25207,'trends_uint','itemid',38041),(25208,'events','itemid',38089),(25209,'history','itemid',38089),(25210,'history_log','itemid',38089),(25211,'history_str','itemid',38089),(25212,'history_text','itemid',38089),(25213,'history_uint','itemid',38089),(25214,'trends','itemid',38089),(25215,'trends_uint','itemid',38089),(25216,'events','itemid',38090),(25217,'history','itemid',38090),(25218,'history_log','itemid',38090),(25219,'history_str','itemid',38090),(25220,'history_text','itemid',38090),(25221,'history_uint','itemid',38090),(25222,'trends','itemid',38090),(25223,'trends_uint','itemid',38090),(25224,'events','itemid',38091),(25225,'history','itemid',38091),(25226,'history_log','itemid',38091),(25227,'history_str','itemid',38091),(25228,'history_text','itemid',38091),(25229,'history_uint','itemid',38091),(25230,'trends','itemid',38091),(25231,'trends_uint','itemid',38091),(25232,'events','itemid',38092),(25233,'history','itemid',38092),(25234,'history_log','itemid',38092),(25235,'history_str','itemid',38092),(25236,'history_text','itemid',38092),(25237,'history_uint','itemid',38092),(25238,'trends','itemid',38092),(25239,'trends_uint','itemid',38092),(25240,'events','itemid',38093),(25241,'history','itemid',38093),(25242,'history_log','itemid',38093),(25243,'history_str','itemid',38093),(25244,'history_text','itemid',38093),(25245,'history_uint','itemid',38093),(25246,'trends','itemid',38093),(25247,'trends_uint','itemid',38093),(25248,'events','itemid',38094),(25249,'history','itemid',38094),(25250,'history_log','itemid',38094),(25251,'history_str','itemid',38094),(25252,'history_text','itemid',38094),(25253,'history_uint','itemid',38094),(25254,'trends','itemid',38094),(25255,'trends_uint','itemid',38094),(25256,'events','itemid',38095),(25257,'history','itemid',38095),(25258,'history_log','itemid',38095),(25259,'history_str','itemid',38095),(25260,'history_text','itemid',38095),(25261,'history_uint','itemid',38095),(25262,'trends','itemid',38095),(25263,'trends_uint','itemid',38095),(25264,'events','itemid',38143),(25265,'history','itemid',38143),(25266,'history_log','itemid',38143),(25267,'history_str','itemid',38143),(25268,'history_text','itemid',38143),(25269,'history_uint','itemid',38143),(25270,'trends','itemid',38143),(25271,'trends_uint','itemid',38143),(25272,'events','itemid',38144),(25273,'history','itemid',38144),(25274,'history_log','itemid',38144),(25275,'history_str','itemid',38144),(25276,'history_text','itemid',38144),(25277,'history_uint','itemid',38144),(25278,'trends','itemid',38144),(25279,'trends_uint','itemid',38144),(25280,'events','itemid',38145),(25281,'history','itemid',38145),(25282,'history_log','itemid',38145),(25283,'history_str','itemid',38145),(25284,'history_text','itemid',38145),(25285,'history_uint','itemid',38145),(25286,'trends','itemid',38145),(25287,'trends_uint','itemid',38145),(25288,'events','itemid',38146),(25289,'history','itemid',38146),(25290,'history_log','itemid',38146),(25291,'history_str','itemid',38146),(25292,'history_text','itemid',38146),(25293,'history_uint','itemid',38146),(25294,'trends','itemid',38146),(25295,'trends_uint','itemid',38146),(25296,'events','itemid',38147),(25297,'history','itemid',38147),(25298,'history_log','itemid',38147),(25299,'history_str','itemid',38147),(25300,'history_text','itemid',38147),(25301,'history_uint','itemid',38147),(25302,'trends','itemid',38147),(25303,'trends_uint','itemid',38147),(25304,'events','itemid',38148),(25305,'history','itemid',38148),(25306,'history_log','itemid',38148),(25307,'history_str','itemid',38148),(25308,'history_text','itemid',38148),(25309,'history_uint','itemid',38148),(25310,'trends','itemid',38148),(25311,'trends_uint','itemid',38148),(25312,'events','itemid',38149),(25313,'history','itemid',38149),(25314,'history_log','itemid',38149),(25315,'history_str','itemid',38149),(25316,'history_text','itemid',38149),(25317,'history_uint','itemid',38149),(25318,'trends','itemid',38149),(25319,'trends_uint','itemid',38149),(25320,'events','itemid',38197),(25321,'history','itemid',38197),(25322,'history_log','itemid',38197),(25323,'history_str','itemid',38197),(25324,'history_text','itemid',38197),(25325,'history_uint','itemid',38197),(25326,'trends','itemid',38197),(25327,'trends_uint','itemid',38197),(25328,'events','itemid',38198),(25329,'history','itemid',38198),(25330,'history_log','itemid',38198),(25331,'history_str','itemid',38198),(25332,'history_text','itemid',38198),(25333,'history_uint','itemid',38198),(25334,'trends','itemid',38198),(25335,'trends_uint','itemid',38198),(25336,'events','itemid',38199),(25337,'history','itemid',38199),(25338,'history_log','itemid',38199),(25339,'history_str','itemid',38199),(25340,'history_text','itemid',38199),(25341,'history_uint','itemid',38199),(25342,'trends','itemid',38199),(25343,'trends_uint','itemid',38199),(25344,'events','itemid',38200),(25345,'history','itemid',38200),(25346,'history_log','itemid',38200),(25347,'history_str','itemid',38200),(25348,'history_text','itemid',38200),(25349,'history_uint','itemid',38200),(25350,'trends','itemid',38200),(25351,'trends_uint','itemid',38200),(25352,'events','itemid',38201),(25353,'history','itemid',38201),(25354,'history_log','itemid',38201),(25355,'history_str','itemid',38201),(25356,'history_text','itemid',38201),(25357,'history_uint','itemid',38201),(25358,'trends','itemid',38201),(25359,'trends_uint','itemid',38201),(25360,'events','itemid',38202),(25361,'history','itemid',38202),(25362,'history_log','itemid',38202),(25363,'history_str','itemid',38202),(25364,'history_text','itemid',38202),(25365,'history_uint','itemid',38202),(25366,'trends','itemid',38202),(25367,'trends_uint','itemid',38202),(25368,'events','itemid',38203),(25369,'history','itemid',38203),(25370,'history_log','itemid',38203),(25371,'history_str','itemid',38203),(25372,'history_text','itemid',38203),(25373,'history_uint','itemid',38203),(25374,'trends','itemid',38203),(25375,'trends_uint','itemid',38203),(25376,'events','itemid',38251),(25377,'history','itemid',38251),(25378,'history_log','itemid',38251),(25379,'history_str','itemid',38251),(25380,'history_text','itemid',38251),(25381,'history_uint','itemid',38251),(25382,'trends','itemid',38251),(25383,'trends_uint','itemid',38251),(25384,'events','itemid',38252),(25385,'history','itemid',38252),(25386,'history_log','itemid',38252),(25387,'history_str','itemid',38252),(25388,'history_text','itemid',38252),(25389,'history_uint','itemid',38252),(25390,'trends','itemid',38252),(25391,'trends_uint','itemid',38252),(25392,'events','itemid',38253),(25393,'history','itemid',38253),(25394,'history_log','itemid',38253),(25395,'history_str','itemid',38253),(25396,'history_text','itemid',38253),(25397,'history_uint','itemid',38253),(25398,'trends','itemid',38253),(25399,'trends_uint','itemid',38253),(25400,'events','itemid',38254),(25401,'history','itemid',38254),(25402,'history_log','itemid',38254),(25403,'history_str','itemid',38254),(25404,'history_text','itemid',38254),(25405,'history_uint','itemid',38254),(25406,'trends','itemid',38254),(25407,'trends_uint','itemid',38254),(25408,'events','itemid',38255),(25409,'history','itemid',38255),(25410,'history_log','itemid',38255),(25411,'history_str','itemid',38255),(25412,'history_text','itemid',38255),(25413,'history_uint','itemid',38255),(25414,'trends','itemid',38255),(25415,'trends_uint','itemid',38255),(25416,'events','itemid',38256),(25417,'history','itemid',38256),(25418,'history_log','itemid',38256),(25419,'history_str','itemid',38256),(25420,'history_text','itemid',38256),(25421,'history_uint','itemid',38256),(25422,'trends','itemid',38256),(25423,'trends_uint','itemid',38256),(25424,'events','itemid',38257),(25425,'history','itemid',38257),(25426,'history_log','itemid',38257),(25427,'history_str','itemid',38257),(25428,'history_text','itemid',38257),(25429,'history_uint','itemid',38257),(25430,'trends','itemid',38257),(25431,'trends_uint','itemid',38257),(25432,'events','itemid',38305),(25433,'history','itemid',38305),(25434,'history_log','itemid',38305),(25435,'history_str','itemid',38305),(25436,'history_text','itemid',38305),(25437,'history_uint','itemid',38305),(25438,'trends','itemid',38305),(25439,'trends_uint','itemid',38305),(25440,'events','itemid',38306),(25441,'history','itemid',38306),(25442,'history_log','itemid',38306),(25443,'history_str','itemid',38306),(25444,'history_text','itemid',38306),(25445,'history_uint','itemid',38306),(25446,'trends','itemid',38306),(25447,'trends_uint','itemid',38306),(25448,'events','itemid',38307),(25449,'history','itemid',38307),(25450,'history_log','itemid',38307),(25451,'history_str','itemid',38307),(25452,'history_text','itemid',38307),(25453,'history_uint','itemid',38307),(25454,'trends','itemid',38307),(25455,'trends_uint','itemid',38307),(25456,'events','itemid',38308),(25457,'history','itemid',38308),(25458,'history_log','itemid',38308),(25459,'history_str','itemid',38308),(25460,'history_text','itemid',38308),(25461,'history_uint','itemid',38308),(25462,'trends','itemid',38308),(25463,'trends_uint','itemid',38308),(25464,'events','itemid',38309),(25465,'history','itemid',38309),(25466,'history_log','itemid',38309),(25467,'history_str','itemid',38309),(25468,'history_text','itemid',38309),(25469,'history_uint','itemid',38309),(25470,'trends','itemid',38309),(25471,'trends_uint','itemid',38309),(25472,'events','itemid',38310),(25473,'history','itemid',38310),(25474,'history_log','itemid',38310),(25475,'history_str','itemid',38310),(25476,'history_text','itemid',38310),(25477,'history_uint','itemid',38310),(25478,'trends','itemid',38310),(25479,'trends_uint','itemid',38310),(25480,'events','itemid',38311),(25481,'history','itemid',38311),(25482,'history_log','itemid',38311),(25483,'history_str','itemid',38311),(25484,'history_text','itemid',38311),(25485,'history_uint','itemid',38311),(25486,'trends','itemid',38311),(25487,'trends_uint','itemid',38311),(25488,'events','itemid',38359),(25489,'history','itemid',38359),(25490,'history_log','itemid',38359),(25491,'history_str','itemid',38359),(25492,'history_text','itemid',38359),(25493,'history_uint','itemid',38359),(25494,'trends','itemid',38359),(25495,'trends_uint','itemid',38359),(25496,'events','itemid',38360),(25497,'history','itemid',38360),(25498,'history_log','itemid',38360),(25499,'history_str','itemid',38360),(25500,'history_text','itemid',38360),(25501,'history_uint','itemid',38360),(25502,'trends','itemid',38360),(25503,'trends_uint','itemid',38360),(25504,'events','itemid',38361),(25505,'history','itemid',38361),(25506,'history_log','itemid',38361),(25507,'history_str','itemid',38361),(25508,'history_text','itemid',38361),(25509,'history_uint','itemid',38361),(25510,'trends','itemid',38361),(25511,'trends_uint','itemid',38361),(25512,'events','itemid',38362),(25513,'history','itemid',38362),(25514,'history_log','itemid',38362),(25515,'history_str','itemid',38362),(25516,'history_text','itemid',38362),(25517,'history_uint','itemid',38362),(25518,'trends','itemid',38362),(25519,'trends_uint','itemid',38362),(25520,'events','itemid',38363),(25521,'history','itemid',38363),(25522,'history_log','itemid',38363),(25523,'history_str','itemid',38363),(25524,'history_text','itemid',38363),(25525,'history_uint','itemid',38363),(25526,'trends','itemid',38363),(25527,'trends_uint','itemid',38363),(25528,'events','itemid',38364),(25529,'history','itemid',38364),(25530,'history_log','itemid',38364),(25531,'history_str','itemid',38364),(25532,'history_text','itemid',38364),(25533,'history_uint','itemid',38364),(25534,'trends','itemid',38364),(25535,'trends_uint','itemid',38364),(25536,'events','itemid',38365),(25537,'history','itemid',38365),(25538,'history_log','itemid',38365),(25539,'history_str','itemid',38365),(25540,'history_text','itemid',38365),(25541,'history_uint','itemid',38365),(25542,'trends','itemid',38365),(25543,'trends_uint','itemid',38365),(25544,'events','itemid',38413),(25545,'history','itemid',38413),(25546,'history_log','itemid',38413),(25547,'history_str','itemid',38413),(25548,'history_text','itemid',38413),(25549,'history_uint','itemid',38413),(25550,'trends','itemid',38413),(25551,'trends_uint','itemid',38413),(25552,'events','itemid',38414),(25553,'history','itemid',38414),(25554,'history_log','itemid',38414),(25555,'history_str','itemid',38414),(25556,'history_text','itemid',38414),(25557,'history_uint','itemid',38414),(25558,'trends','itemid',38414),(25559,'trends_uint','itemid',38414),(25560,'events','itemid',38415),(25561,'history','itemid',38415),(25562,'history_log','itemid',38415),(25563,'history_str','itemid',38415),(25564,'history_text','itemid',38415),(25565,'history_uint','itemid',38415),(25566,'trends','itemid',38415),(25567,'trends_uint','itemid',38415),(25568,'events','itemid',38416),(25569,'history','itemid',38416),(25570,'history_log','itemid',38416),(25571,'history_str','itemid',38416),(25572,'history_text','itemid',38416),(25573,'history_uint','itemid',38416),(25574,'trends','itemid',38416),(25575,'trends_uint','itemid',38416),(25576,'events','itemid',38417),(25577,'history','itemid',38417),(25578,'history_log','itemid',38417),(25579,'history_str','itemid',38417),(25580,'history_text','itemid',38417),(25581,'history_uint','itemid',38417),(25582,'trends','itemid',38417),(25583,'trends_uint','itemid',38417),(25584,'events','itemid',38418),(25585,'history','itemid',38418),(25586,'history_log','itemid',38418),(25587,'history_str','itemid',38418),(25588,'history_text','itemid',38418),(25589,'history_uint','itemid',38418),(25590,'trends','itemid',38418),(25591,'trends_uint','itemid',38418),(25592,'events','itemid',38419),(25593,'history','itemid',38419),(25594,'history_log','itemid',38419),(25595,'history_str','itemid',38419),(25596,'history_text','itemid',38419),(25597,'history_uint','itemid',38419),(25598,'trends','itemid',38419),(25599,'trends_uint','itemid',38419),(25600,'events','itemid',38467),(25601,'history','itemid',38467),(25602,'history_log','itemid',38467),(25603,'history_str','itemid',38467),(25604,'history_text','itemid',38467),(25605,'history_uint','itemid',38467),(25606,'trends','itemid',38467),(25607,'trends_uint','itemid',38467),(25608,'events','itemid',38468),(25609,'history','itemid',38468),(25610,'history_log','itemid',38468),(25611,'history_str','itemid',38468),(25612,'history_text','itemid',38468),(25613,'history_uint','itemid',38468),(25614,'trends','itemid',38468),(25615,'trends_uint','itemid',38468),(25616,'events','itemid',38469),(25617,'history','itemid',38469),(25618,'history_log','itemid',38469),(25619,'history_str','itemid',38469),(25620,'history_text','itemid',38469),(25621,'history_uint','itemid',38469),(25622,'trends','itemid',38469),(25623,'trends_uint','itemid',38469),(25624,'events','itemid',38470),(25625,'history','itemid',38470),(25626,'history_log','itemid',38470),(25627,'history_str','itemid',38470),(25628,'history_text','itemid',38470),(25629,'history_uint','itemid',38470),(25630,'trends','itemid',38470),(25631,'trends_uint','itemid',38470),(25632,'events','itemid',38471),(25633,'history','itemid',38471),(25634,'history_log','itemid',38471),(25635,'history_str','itemid',38471),(25636,'history_text','itemid',38471),(25637,'history_uint','itemid',38471),(25638,'trends','itemid',38471),(25639,'trends_uint','itemid',38471),(25640,'events','itemid',38472),(25641,'history','itemid',38472),(25642,'history_log','itemid',38472),(25643,'history_str','itemid',38472),(25644,'history_text','itemid',38472),(25645,'history_uint','itemid',38472),(25646,'trends','itemid',38472),(25647,'trends_uint','itemid',38472),(25648,'events','itemid',38473),(25649,'history','itemid',38473),(25650,'history_log','itemid',38473),(25651,'history_str','itemid',38473),(25652,'history_text','itemid',38473),(25653,'history_uint','itemid',38473),(25654,'trends','itemid',38473),(25655,'trends_uint','itemid',38473),(25656,'events','itemid',38521),(25657,'history','itemid',38521),(25658,'history_log','itemid',38521),(25659,'history_str','itemid',38521),(25660,'history_text','itemid',38521),(25661,'history_uint','itemid',38521),(25662,'trends','itemid',38521),(25663,'trends_uint','itemid',38521),(25664,'events','itemid',38522),(25665,'history','itemid',38522),(25666,'history_log','itemid',38522),(25667,'history_str','itemid',38522),(25668,'history_text','itemid',38522),(25669,'history_uint','itemid',38522),(25670,'trends','itemid',38522),(25671,'trends_uint','itemid',38522),(25672,'events','itemid',38523),(25673,'history','itemid',38523),(25674,'history_log','itemid',38523),(25675,'history_str','itemid',38523),(25676,'history_text','itemid',38523),(25677,'history_uint','itemid',38523),(25678,'trends','itemid',38523),(25679,'trends_uint','itemid',38523),(25680,'events','itemid',38524),(25681,'history','itemid',38524),(25682,'history_log','itemid',38524),(25683,'history_str','itemid',38524),(25684,'history_text','itemid',38524),(25685,'history_uint','itemid',38524),(25686,'trends','itemid',38524),(25687,'trends_uint','itemid',38524),(25688,'events','itemid',38525),(25689,'history','itemid',38525),(25690,'history_log','itemid',38525),(25691,'history_str','itemid',38525),(25692,'history_text','itemid',38525),(25693,'history_uint','itemid',38525),(25694,'trends','itemid',38525),(25695,'trends_uint','itemid',38525),(25696,'events','itemid',38526),(25697,'history','itemid',38526),(25698,'history_log','itemid',38526),(25699,'history_str','itemid',38526),(25700,'history_text','itemid',38526),(25701,'history_uint','itemid',38526),(25702,'trends','itemid',38526),(25703,'trends_uint','itemid',38526),(25704,'events','itemid',38527),(25705,'history','itemid',38527),(25706,'history_log','itemid',38527),(25707,'history_str','itemid',38527),(25708,'history_text','itemid',38527),(25709,'history_uint','itemid',38527),(25710,'trends','itemid',38527),(25711,'trends_uint','itemid',38527),(25712,'events','itemid',39331),(25713,'history','itemid',39331),(25714,'history_log','itemid',39331),(25715,'history_str','itemid',39331),(25716,'history_text','itemid',39331),(25717,'history_uint','itemid',39331),(25718,'trends','itemid',39331),(25719,'trends_uint','itemid',39331),(25720,'events','itemid',39332),(25721,'history','itemid',39332),(25722,'history_log','itemid',39332),(25723,'history_str','itemid',39332),(25724,'history_text','itemid',39332),(25725,'history_uint','itemid',39332),(25726,'trends','itemid',39332),(25727,'trends_uint','itemid',39332),(25728,'events','itemid',39333),(25729,'history','itemid',39333),(25730,'history_log','itemid',39333),(25731,'history_str','itemid',39333),(25732,'history_text','itemid',39333),(25733,'history_uint','itemid',39333),(25734,'trends','itemid',39333),(25735,'trends_uint','itemid',39333),(25736,'events','itemid',39334),(25737,'history','itemid',39334),(25738,'history_log','itemid',39334),(25739,'history_str','itemid',39334),(25740,'history_text','itemid',39334),(25741,'history_uint','itemid',39334),(25742,'trends','itemid',39334),(25743,'trends_uint','itemid',39334),(25744,'events','itemid',39335),(25745,'history','itemid',39335),(25746,'history_log','itemid',39335),(25747,'history_str','itemid',39335),(25748,'history_text','itemid',39335),(25749,'history_uint','itemid',39335),(25750,'trends','itemid',39335),(25751,'trends_uint','itemid',39335),(25752,'events','itemid',39336),(25753,'history','itemid',39336),(25754,'history_log','itemid',39336),(25755,'history_str','itemid',39336),(25756,'history_text','itemid',39336),(25757,'history_uint','itemid',39336),(25758,'trends','itemid',39336),(25759,'trends_uint','itemid',39336),(25760,'events','itemid',39337),(25761,'history','itemid',39337),(25762,'history_log','itemid',39337),(25763,'history_str','itemid',39337),(25764,'history_text','itemid',39337),(25765,'history_uint','itemid',39337),(25766,'trends','itemid',39337),(25767,'trends_uint','itemid',39337),(25768,'events','itemid',39385),(25769,'history','itemid',39385),(25770,'history_log','itemid',39385),(25771,'history_str','itemid',39385),(25772,'history_text','itemid',39385),(25773,'history_uint','itemid',39385),(25774,'trends','itemid',39385),(25775,'trends_uint','itemid',39385),(25776,'events','itemid',39386),(25777,'history','itemid',39386),(25778,'history_log','itemid',39386),(25779,'history_str','itemid',39386),(25780,'history_text','itemid',39386),(25781,'history_uint','itemid',39386),(25782,'trends','itemid',39386),(25783,'trends_uint','itemid',39386),(25784,'events','itemid',39387),(25785,'history','itemid',39387),(25786,'history_log','itemid',39387),(25787,'history_str','itemid',39387),(25788,'history_text','itemid',39387),(25789,'history_uint','itemid',39387),(25790,'trends','itemid',39387),(25791,'trends_uint','itemid',39387),(25792,'events','itemid',39388),(25793,'history','itemid',39388),(25794,'history_log','itemid',39388),(25795,'history_str','itemid',39388),(25796,'history_text','itemid',39388),(25797,'history_uint','itemid',39388),(25798,'trends','itemid',39388),(25799,'trends_uint','itemid',39388),(25800,'events','itemid',39389),(25801,'history','itemid',39389),(25802,'history_log','itemid',39389),(25803,'history_str','itemid',39389),(25804,'history_text','itemid',39389),(25805,'history_uint','itemid',39389),(25806,'trends','itemid',39389),(25807,'trends_uint','itemid',39389),(25808,'events','itemid',39390),(25809,'history','itemid',39390),(25810,'history_log','itemid',39390),(25811,'history_str','itemid',39390),(25812,'history_text','itemid',39390),(25813,'history_uint','itemid',39390),(25814,'trends','itemid',39390),(25815,'trends_uint','itemid',39390),(25816,'events','itemid',39391),(25817,'history','itemid',39391),(25818,'history_log','itemid',39391),(25819,'history_str','itemid',39391),(25820,'history_text','itemid',39391),(25821,'history_uint','itemid',39391),(25822,'trends','itemid',39391),(25823,'trends_uint','itemid',39391),(25824,'events','itemid',39439),(25825,'history','itemid',39439),(25826,'history_log','itemid',39439),(25827,'history_str','itemid',39439),(25828,'history_text','itemid',39439),(25829,'history_uint','itemid',39439),(25830,'trends','itemid',39439),(25831,'trends_uint','itemid',39439),(25832,'events','itemid',39440),(25833,'history','itemid',39440),(25834,'history_log','itemid',39440),(25835,'history_str','itemid',39440),(25836,'history_text','itemid',39440),(25837,'history_uint','itemid',39440),(25838,'trends','itemid',39440),(25839,'trends_uint','itemid',39440),(25840,'events','itemid',39441),(25841,'history','itemid',39441),(25842,'history_log','itemid',39441),(25843,'history_str','itemid',39441),(25844,'history_text','itemid',39441),(25845,'history_uint','itemid',39441),(25846,'trends','itemid',39441),(25847,'trends_uint','itemid',39441),(25848,'events','itemid',39442),(25849,'history','itemid',39442),(25850,'history_log','itemid',39442),(25851,'history_str','itemid',39442),(25852,'history_text','itemid',39442),(25853,'history_uint','itemid',39442),(25854,'trends','itemid',39442),(25855,'trends_uint','itemid',39442),(25856,'events','itemid',39443),(25857,'history','itemid',39443),(25858,'history_log','itemid',39443),(25859,'history_str','itemid',39443),(25860,'history_text','itemid',39443),(25861,'history_uint','itemid',39443),(25862,'trends','itemid',39443),(25863,'trends_uint','itemid',39443),(25864,'events','itemid',39444),(25865,'history','itemid',39444),(25866,'history_log','itemid',39444),(25867,'history_str','itemid',39444),(25868,'history_text','itemid',39444),(25869,'history_uint','itemid',39444),(25870,'trends','itemid',39444),(25871,'trends_uint','itemid',39444),(25872,'events','itemid',39445),(25873,'history','itemid',39445),(25874,'history_log','itemid',39445),(25875,'history_str','itemid',39445),(25876,'history_text','itemid',39445),(25877,'history_uint','itemid',39445),(25878,'trends','itemid',39445),(25879,'trends_uint','itemid',39445),(25880,'events','itemid',39493),(25881,'history','itemid',39493),(25882,'history_log','itemid',39493),(25883,'history_str','itemid',39493),(25884,'history_text','itemid',39493),(25885,'history_uint','itemid',39493),(25886,'trends','itemid',39493),(25887,'trends_uint','itemid',39493),(25888,'events','itemid',39494),(25889,'history','itemid',39494),(25890,'history_log','itemid',39494),(25891,'history_str','itemid',39494),(25892,'history_text','itemid',39494),(25893,'history_uint','itemid',39494),(25894,'trends','itemid',39494),(25895,'trends_uint','itemid',39494),(25896,'events','itemid',39495),(25897,'history','itemid',39495),(25898,'history_log','itemid',39495),(25899,'history_str','itemid',39495),(25900,'history_text','itemid',39495),(25901,'history_uint','itemid',39495),(25902,'trends','itemid',39495),(25903,'trends_uint','itemid',39495),(25904,'events','itemid',39496),(25905,'history','itemid',39496),(25906,'history_log','itemid',39496),(25907,'history_str','itemid',39496),(25908,'history_text','itemid',39496),(25909,'history_uint','itemid',39496),(25910,'trends','itemid',39496),(25911,'trends_uint','itemid',39496),(25912,'events','itemid',39497),(25913,'history','itemid',39497),(25914,'history_log','itemid',39497),(25915,'history_str','itemid',39497),(25916,'history_text','itemid',39497),(25917,'history_uint','itemid',39497),(25918,'trends','itemid',39497),(25919,'trends_uint','itemid',39497),(25920,'events','itemid',39498),(25921,'history','itemid',39498),(25922,'history_log','itemid',39498),(25923,'history_str','itemid',39498),(25924,'history_text','itemid',39498),(25925,'history_uint','itemid',39498),(25926,'trends','itemid',39498),(25927,'trends_uint','itemid',39498),(25928,'events','itemid',39499),(25929,'history','itemid',39499),(25930,'history_log','itemid',39499),(25931,'history_str','itemid',39499),(25932,'history_text','itemid',39499),(25933,'history_uint','itemid',39499),(25934,'trends','itemid',39499),(25935,'trends_uint','itemid',39499),(25936,'events','itemid',39547),(25937,'history','itemid',39547),(25938,'history_log','itemid',39547),(25939,'history_str','itemid',39547),(25940,'history_text','itemid',39547),(25941,'history_uint','itemid',39547),(25942,'trends','itemid',39547),(25943,'trends_uint','itemid',39547),(25944,'events','itemid',39548),(25945,'history','itemid',39548),(25946,'history_log','itemid',39548),(25947,'history_str','itemid',39548),(25948,'history_text','itemid',39548),(25949,'history_uint','itemid',39548),(25950,'trends','itemid',39548),(25951,'trends_uint','itemid',39548),(25952,'events','itemid',39549),(25953,'history','itemid',39549),(25954,'history_log','itemid',39549),(25955,'history_str','itemid',39549),(25956,'history_text','itemid',39549),(25957,'history_uint','itemid',39549),(25958,'trends','itemid',39549),(25959,'trends_uint','itemid',39549),(25960,'events','itemid',39550),(25961,'history','itemid',39550),(25962,'history_log','itemid',39550),(25963,'history_str','itemid',39550),(25964,'history_text','itemid',39550),(25965,'history_uint','itemid',39550),(25966,'trends','itemid',39550),(25967,'trends_uint','itemid',39550),(25968,'events','itemid',39551),(25969,'history','itemid',39551),(25970,'history_log','itemid',39551),(25971,'history_str','itemid',39551),(25972,'history_text','itemid',39551),(25973,'history_uint','itemid',39551),(25974,'trends','itemid',39551),(25975,'trends_uint','itemid',39551),(25976,'events','itemid',39552),(25977,'history','itemid',39552),(25978,'history_log','itemid',39552),(25979,'history_str','itemid',39552),(25980,'history_text','itemid',39552),(25981,'history_uint','itemid',39552),(25982,'trends','itemid',39552),(25983,'trends_uint','itemid',39552),(25984,'events','itemid',39553),(25985,'history','itemid',39553),(25986,'history_log','itemid',39553),(25987,'history_str','itemid',39553),(25988,'history_text','itemid',39553),(25989,'history_uint','itemid',39553),(25990,'trends','itemid',39553),(25991,'trends_uint','itemid',39553),(25992,'events','itemid',40934),(25993,'history','itemid',40934),(25994,'history_log','itemid',40934),(25995,'history_str','itemid',40934),(25996,'history_text','itemid',40934),(25997,'history_uint','itemid',40934),(25998,'trends','itemid',40934),(25999,'trends_uint','itemid',40934),(26000,'events','itemid',40935),(26001,'history','itemid',40935),(26002,'history_log','itemid',40935),(26003,'history_str','itemid',40935),(26004,'history_text','itemid',40935),(26005,'history_uint','itemid',40935),(26006,'trends','itemid',40935),(26007,'trends_uint','itemid',40935),(26008,'events','itemid',40936),(26009,'history','itemid',40936),(26010,'history_log','itemid',40936),(26011,'history_str','itemid',40936),(26012,'history_text','itemid',40936),(26013,'history_uint','itemid',40936),(26014,'trends','itemid',40936),(26015,'trends_uint','itemid',40936),(26016,'events','itemid',40937),(26017,'history','itemid',40937),(26018,'history_log','itemid',40937),(26019,'history_str','itemid',40937),(26020,'history_text','itemid',40937),(26021,'history_uint','itemid',40937),(26022,'trends','itemid',40937),(26023,'trends_uint','itemid',40937),(26024,'events','itemid',40938),(26025,'history','itemid',40938),(26026,'history_log','itemid',40938),(26027,'history_str','itemid',40938),(26028,'history_text','itemid',40938),(26029,'history_uint','itemid',40938),(26030,'trends','itemid',40938),(26031,'trends_uint','itemid',40938),(26032,'events','itemid',40939),(26033,'history','itemid',40939),(26034,'history_log','itemid',40939),(26035,'history_str','itemid',40939),(26036,'history_text','itemid',40939),(26037,'history_uint','itemid',40939),(26038,'trends','itemid',40939),(26039,'trends_uint','itemid',40939),(26040,'events','itemid',40940),(26041,'history','itemid',40940),(26042,'history_log','itemid',40940),(26043,'history_str','itemid',40940),(26044,'history_text','itemid',40940),(26045,'history_uint','itemid',40940),(26046,'trends','itemid',40940),(26047,'trends_uint','itemid',40940),(26048,'events','itemid',40941),(26049,'history','itemid',40941),(26050,'history_log','itemid',40941),(26051,'history_str','itemid',40941),(26052,'history_text','itemid',40941),(26053,'history_uint','itemid',40941),(26054,'trends','itemid',40941),(26055,'trends_uint','itemid',40941),(26056,'events','itemid',40942),(26057,'history','itemid',40942),(26058,'history_log','itemid',40942),(26059,'history_str','itemid',40942),(26060,'history_text','itemid',40942),(26061,'history_uint','itemid',40942),(26062,'trends','itemid',40942),(26063,'trends_uint','itemid',40942),(26064,'events','itemid',40943),(26065,'history','itemid',40943),(26066,'history_log','itemid',40943),(26067,'history_str','itemid',40943),(26068,'history_text','itemid',40943),(26069,'history_uint','itemid',40943),(26070,'trends','itemid',40943),(26071,'trends_uint','itemid',40943),(26072,'events','itemid',40944),(26073,'history','itemid',40944),(26074,'history_log','itemid',40944),(26075,'history_str','itemid',40944),(26076,'history_text','itemid',40944),(26077,'history_uint','itemid',40944),(26078,'trends','itemid',40944),(26079,'trends_uint','itemid',40944),(26080,'events','itemid',40955),(26081,'history','itemid',40955),(26082,'history_log','itemid',40955),(26083,'history_str','itemid',40955),(26084,'history_text','itemid',40955),(26085,'history_uint','itemid',40955),(26086,'trends','itemid',40955),(26087,'trends_uint','itemid',40955),(26088,'events','itemid',40956),(26089,'history','itemid',40956),(26090,'history_log','itemid',40956),(26091,'history_str','itemid',40956),(26092,'history_text','itemid',40956),(26093,'history_uint','itemid',40956),(26094,'trends','itemid',40956),(26095,'trends_uint','itemid',40956),(26096,'events','itemid',40957),(26097,'history','itemid',40957),(26098,'history_log','itemid',40957),(26099,'history_str','itemid',40957),(26100,'history_text','itemid',40957),(26101,'history_uint','itemid',40957),(26102,'trends','itemid',40957),(26103,'trends_uint','itemid',40957),(26104,'events','itemid',40958),(26105,'history','itemid',40958),(26106,'history_log','itemid',40958),(26107,'history_str','itemid',40958),(26108,'history_text','itemid',40958),(26109,'history_uint','itemid',40958),(26110,'trends','itemid',40958),(26111,'trends_uint','itemid',40958),(26112,'events','itemid',40959),(26113,'history','itemid',40959),(26114,'history_log','itemid',40959),(26115,'history_str','itemid',40959),(26116,'history_text','itemid',40959),(26117,'history_uint','itemid',40959),(26118,'trends','itemid',40959),(26119,'trends_uint','itemid',40959),(26120,'events','itemid',40960),(26121,'history','itemid',40960),(26122,'history_log','itemid',40960),(26123,'history_str','itemid',40960),(26124,'history_text','itemid',40960),(26125,'history_uint','itemid',40960),(26126,'trends','itemid',40960),(26127,'trends_uint','itemid',40960),(26128,'events','itemid',40961),(26129,'history','itemid',40961),(26130,'history_log','itemid',40961),(26131,'history_str','itemid',40961),(26132,'history_text','itemid',40961),(26133,'history_uint','itemid',40961),(26134,'trends','itemid',40961),(26135,'trends_uint','itemid',40961),(26136,'events','itemid',40962),(26137,'history','itemid',40962),(26138,'history_log','itemid',40962),(26139,'history_str','itemid',40962),(26140,'history_text','itemid',40962),(26141,'history_uint','itemid',40962),(26142,'trends','itemid',40962),(26143,'trends_uint','itemid',40962),(26144,'events','itemid',40963),(26145,'history','itemid',40963),(26146,'history_log','itemid',40963),(26147,'history_str','itemid',40963),(26148,'history_text','itemid',40963),(26149,'history_uint','itemid',40963),(26150,'trends','itemid',40963),(26151,'trends_uint','itemid',40963),(26152,'events','itemid',40964),(26153,'history','itemid',40964),(26154,'history_log','itemid',40964),(26155,'history_str','itemid',40964),(26156,'history_text','itemid',40964),(26157,'history_uint','itemid',40964),(26158,'trends','itemid',40964),(26159,'trends_uint','itemid',40964),(26160,'events','itemid',40965),(26161,'history','itemid',40965),(26162,'history_log','itemid',40965),(26163,'history_str','itemid',40965),(26164,'history_text','itemid',40965),(26165,'history_uint','itemid',40965),(26166,'trends','itemid',40965),(26167,'trends_uint','itemid',40965),(26168,'events','itemid',40976),(26169,'history','itemid',40976),(26170,'history_log','itemid',40976),(26171,'history_str','itemid',40976),(26172,'history_text','itemid',40976),(26173,'history_uint','itemid',40976),(26174,'trends','itemid',40976),(26175,'trends_uint','itemid',40976),(26176,'events','itemid',40977),(26177,'history','itemid',40977),(26178,'history_log','itemid',40977),(26179,'history_str','itemid',40977),(26180,'history_text','itemid',40977),(26181,'history_uint','itemid',40977),(26182,'trends','itemid',40977),(26183,'trends_uint','itemid',40977),(26184,'events','itemid',40978),(26185,'history','itemid',40978),(26186,'history_log','itemid',40978),(26187,'history_str','itemid',40978),(26188,'history_text','itemid',40978),(26189,'history_uint','itemid',40978),(26190,'trends','itemid',40978),(26191,'trends_uint','itemid',40978),(26192,'events','itemid',40979),(26193,'history','itemid',40979),(26194,'history_log','itemid',40979),(26195,'history_str','itemid',40979),(26196,'history_text','itemid',40979),(26197,'history_uint','itemid',40979),(26198,'trends','itemid',40979),(26199,'trends_uint','itemid',40979),(26200,'events','itemid',40980),(26201,'history','itemid',40980),(26202,'history_log','itemid',40980),(26203,'history_str','itemid',40980),(26204,'history_text','itemid',40980),(26205,'history_uint','itemid',40980),(26206,'trends','itemid',40980),(26207,'trends_uint','itemid',40980),(26208,'events','itemid',40981),(26209,'history','itemid',40981),(26210,'history_log','itemid',40981),(26211,'history_str','itemid',40981),(26212,'history_text','itemid',40981),(26213,'history_uint','itemid',40981),(26214,'trends','itemid',40981),(26215,'trends_uint','itemid',40981),(26216,'events','itemid',40982),(26217,'history','itemid',40982),(26218,'history_log','itemid',40982),(26219,'history_str','itemid',40982),(26220,'history_text','itemid',40982),(26221,'history_uint','itemid',40982),(26222,'trends','itemid',40982),(26223,'trends_uint','itemid',40982),(26224,'events','itemid',40983),(26225,'history','itemid',40983),(26226,'history_log','itemid',40983),(26227,'history_str','itemid',40983),(26228,'history_text','itemid',40983),(26229,'history_uint','itemid',40983),(26230,'trends','itemid',40983),(26231,'trends_uint','itemid',40983),(26232,'events','itemid',40984),(26233,'history','itemid',40984),(26234,'history_log','itemid',40984),(26235,'history_str','itemid',40984),(26236,'history_text','itemid',40984),(26237,'history_uint','itemid',40984),(26238,'trends','itemid',40984),(26239,'trends_uint','itemid',40984),(26240,'events','itemid',40985),(26241,'history','itemid',40985),(26242,'history_log','itemid',40985),(26243,'history_str','itemid',40985),(26244,'history_text','itemid',40985),(26245,'history_uint','itemid',40985),(26246,'trends','itemid',40985),(26247,'trends_uint','itemid',40985),(26248,'events','itemid',40986),(26249,'history','itemid',40986),(26250,'history_log','itemid',40986),(26251,'history_str','itemid',40986),(26252,'history_text','itemid',40986),(26253,'history_uint','itemid',40986),(26254,'trends','itemid',40986),(26255,'trends_uint','itemid',40986),(26256,'events','itemid',40997),(26257,'history','itemid',40997),(26258,'history_log','itemid',40997),(26259,'history_str','itemid',40997),(26260,'history_text','itemid',40997),(26261,'history_uint','itemid',40997),(26262,'trends','itemid',40997),(26263,'trends_uint','itemid',40997),(26264,'events','itemid',40998),(26265,'history','itemid',40998),(26266,'history_log','itemid',40998),(26267,'history_str','itemid',40998),(26268,'history_text','itemid',40998),(26269,'history_uint','itemid',40998),(26270,'trends','itemid',40998),(26271,'trends_uint','itemid',40998),(26272,'events','itemid',40999),(26273,'history','itemid',40999),(26274,'history_log','itemid',40999),(26275,'history_str','itemid',40999),(26276,'history_text','itemid',40999),(26277,'history_uint','itemid',40999),(26278,'trends','itemid',40999),(26279,'trends_uint','itemid',40999),(26280,'events','itemid',41000),(26281,'history','itemid',41000),(26282,'history_log','itemid',41000),(26283,'history_str','itemid',41000),(26284,'history_text','itemid',41000),(26285,'history_uint','itemid',41000),(26286,'trends','itemid',41000),(26287,'trends_uint','itemid',41000),(26288,'events','itemid',41001),(26289,'history','itemid',41001),(26290,'history_log','itemid',41001),(26291,'history_str','itemid',41001),(26292,'history_text','itemid',41001),(26293,'history_uint','itemid',41001),(26294,'trends','itemid',41001),(26295,'trends_uint','itemid',41001),(26296,'events','itemid',41002),(26297,'history','itemid',41002),(26298,'history_log','itemid',41002),(26299,'history_str','itemid',41002),(26300,'history_text','itemid',41002),(26301,'history_uint','itemid',41002),(26302,'trends','itemid',41002),(26303,'trends_uint','itemid',41002),(26304,'events','itemid',41003),(26305,'history','itemid',41003),(26306,'history_log','itemid',41003),(26307,'history_str','itemid',41003),(26308,'history_text','itemid',41003),(26309,'history_uint','itemid',41003),(26310,'trends','itemid',41003),(26311,'trends_uint','itemid',41003),(26312,'events','itemid',41004),(26313,'history','itemid',41004),(26314,'history_log','itemid',41004),(26315,'history_str','itemid',41004),(26316,'history_text','itemid',41004),(26317,'history_uint','itemid',41004),(26318,'trends','itemid',41004),(26319,'trends_uint','itemid',41004),(26320,'events','itemid',41005),(26321,'history','itemid',41005),(26322,'history_log','itemid',41005),(26323,'history_str','itemid',41005),(26324,'history_text','itemid',41005),(26325,'history_uint','itemid',41005),(26326,'trends','itemid',41005),(26327,'trends_uint','itemid',41005),(26328,'events','itemid',41006),(26329,'history','itemid',41006),(26330,'history_log','itemid',41006),(26331,'history_str','itemid',41006),(26332,'history_text','itemid',41006),(26333,'history_uint','itemid',41006),(26334,'trends','itemid',41006),(26335,'trends_uint','itemid',41006),(26336,'events','itemid',41007),(26337,'history','itemid',41007),(26338,'history_log','itemid',41007),(26339,'history_str','itemid',41007),(26340,'history_text','itemid',41007),(26341,'history_uint','itemid',41007),(26342,'trends','itemid',41007),(26343,'trends_uint','itemid',41007),(26344,'events','itemid',41018),(26345,'history','itemid',41018),(26346,'history_log','itemid',41018),(26347,'history_str','itemid',41018),(26348,'history_text','itemid',41018),(26349,'history_uint','itemid',41018),(26350,'trends','itemid',41018),(26351,'trends_uint','itemid',41018),(26352,'events','itemid',41019),(26353,'history','itemid',41019),(26354,'history_log','itemid',41019),(26355,'history_str','itemid',41019),(26356,'history_text','itemid',41019),(26357,'history_uint','itemid',41019),(26358,'trends','itemid',41019),(26359,'trends_uint','itemid',41019),(26360,'events','itemid',41020),(26361,'history','itemid',41020),(26362,'history_log','itemid',41020),(26363,'history_str','itemid',41020),(26364,'history_text','itemid',41020),(26365,'history_uint','itemid',41020),(26366,'trends','itemid',41020),(26367,'trends_uint','itemid',41020),(26368,'events','itemid',41021),(26369,'history','itemid',41021),(26370,'history_log','itemid',41021),(26371,'history_str','itemid',41021),(26372,'history_text','itemid',41021),(26373,'history_uint','itemid',41021),(26374,'trends','itemid',41021),(26375,'trends_uint','itemid',41021),(26376,'events','itemid',41022),(26377,'history','itemid',41022),(26378,'history_log','itemid',41022),(26379,'history_str','itemid',41022),(26380,'history_text','itemid',41022),(26381,'history_uint','itemid',41022),(26382,'trends','itemid',41022),(26383,'trends_uint','itemid',41022),(26384,'events','itemid',41023),(26385,'history','itemid',41023),(26386,'history_log','itemid',41023),(26387,'history_str','itemid',41023),(26388,'history_text','itemid',41023),(26389,'history_uint','itemid',41023),(26390,'trends','itemid',41023),(26391,'trends_uint','itemid',41023),(26392,'events','itemid',41024),(26393,'history','itemid',41024),(26394,'history_log','itemid',41024),(26395,'history_str','itemid',41024),(26396,'history_text','itemid',41024),(26397,'history_uint','itemid',41024),(26398,'trends','itemid',41024),(26399,'trends_uint','itemid',41024),(26400,'events','itemid',41025),(26401,'history','itemid',41025),(26402,'history_log','itemid',41025),(26403,'history_str','itemid',41025),(26404,'history_text','itemid',41025),(26405,'history_uint','itemid',41025),(26406,'trends','itemid',41025),(26407,'trends_uint','itemid',41025),(26408,'events','itemid',41026),(26409,'history','itemid',41026),(26410,'history_log','itemid',41026),(26411,'history_str','itemid',41026),(26412,'history_text','itemid',41026),(26413,'history_uint','itemid',41026),(26414,'trends','itemid',41026),(26415,'trends_uint','itemid',41026),(26416,'events','itemid',41027),(26417,'history','itemid',41027),(26418,'history_log','itemid',41027),(26419,'history_str','itemid',41027),(26420,'history_text','itemid',41027),(26421,'history_uint','itemid',41027),(26422,'trends','itemid',41027),(26423,'trends_uint','itemid',41027),(26424,'events','itemid',41028),(26425,'history','itemid',41028),(26426,'history_log','itemid',41028),(26427,'history_str','itemid',41028),(26428,'history_text','itemid',41028),(26429,'history_uint','itemid',41028),(26430,'trends','itemid',41028),(26431,'trends_uint','itemid',41028),(26432,'events','itemid',41039),(26433,'history','itemid',41039),(26434,'history_log','itemid',41039),(26435,'history_str','itemid',41039),(26436,'history_text','itemid',41039),(26437,'history_uint','itemid',41039),(26438,'trends','itemid',41039),(26439,'trends_uint','itemid',41039),(26440,'events','itemid',41040),(26441,'history','itemid',41040),(26442,'history_log','itemid',41040),(26443,'history_str','itemid',41040),(26444,'history_text','itemid',41040),(26445,'history_uint','itemid',41040),(26446,'trends','itemid',41040),(26447,'trends_uint','itemid',41040),(26448,'events','itemid',41041),(26449,'history','itemid',41041),(26450,'history_log','itemid',41041),(26451,'history_str','itemid',41041),(26452,'history_text','itemid',41041),(26453,'history_uint','itemid',41041),(26454,'trends','itemid',41041),(26455,'trends_uint','itemid',41041),(26456,'events','itemid',41042),(26457,'history','itemid',41042),(26458,'history_log','itemid',41042),(26459,'history_str','itemid',41042),(26460,'history_text','itemid',41042),(26461,'history_uint','itemid',41042),(26462,'trends','itemid',41042),(26463,'trends_uint','itemid',41042),(26464,'events','itemid',41043),(26465,'history','itemid',41043),(26466,'history_log','itemid',41043),(26467,'history_str','itemid',41043),(26468,'history_text','itemid',41043),(26469,'history_uint','itemid',41043),(26470,'trends','itemid',41043),(26471,'trends_uint','itemid',41043),(26472,'events','itemid',41044),(26473,'history','itemid',41044),(26474,'history_log','itemid',41044),(26475,'history_str','itemid',41044),(26476,'history_text','itemid',41044),(26477,'history_uint','itemid',41044),(26478,'trends','itemid',41044),(26479,'trends_uint','itemid',41044),(26480,'events','itemid',41045),(26481,'history','itemid',41045),(26482,'history_log','itemid',41045),(26483,'history_str','itemid',41045),(26484,'history_text','itemid',41045),(26485,'history_uint','itemid',41045),(26486,'trends','itemid',41045),(26487,'trends_uint','itemid',41045),(26488,'events','itemid',41046),(26489,'history','itemid',41046),(26490,'history_log','itemid',41046),(26491,'history_str','itemid',41046),(26492,'history_text','itemid',41046),(26493,'history_uint','itemid',41046),(26494,'trends','itemid',41046),(26495,'trends_uint','itemid',41046),(26496,'events','itemid',41047),(26497,'history','itemid',41047),(26498,'history_log','itemid',41047),(26499,'history_str','itemid',41047),(26500,'history_text','itemid',41047),(26501,'history_uint','itemid',41047),(26502,'trends','itemid',41047),(26503,'trends_uint','itemid',41047),(26504,'events','itemid',41048),(26505,'history','itemid',41048),(26506,'history_log','itemid',41048),(26507,'history_str','itemid',41048),(26508,'history_text','itemid',41048),(26509,'history_uint','itemid',41048),(26510,'trends','itemid',41048),(26511,'trends_uint','itemid',41048),(26512,'events','itemid',41049),(26513,'history','itemid',41049),(26514,'history_log','itemid',41049),(26515,'history_str','itemid',41049),(26516,'history_text','itemid',41049),(26517,'history_uint','itemid',41049),(26518,'trends','itemid',41049),(26519,'trends_uint','itemid',41049),(26520,'events','itemid',41060),(26521,'history','itemid',41060),(26522,'history_log','itemid',41060),(26523,'history_str','itemid',41060),(26524,'history_text','itemid',41060),(26525,'history_uint','itemid',41060),(26526,'trends','itemid',41060),(26527,'trends_uint','itemid',41060),(26528,'events','itemid',41061),(26529,'history','itemid',41061),(26530,'history_log','itemid',41061),(26531,'history_str','itemid',41061),(26532,'history_text','itemid',41061),(26533,'history_uint','itemid',41061),(26534,'trends','itemid',41061),(26535,'trends_uint','itemid',41061),(26536,'events','itemid',41062),(26537,'history','itemid',41062),(26538,'history_log','itemid',41062),(26539,'history_str','itemid',41062),(26540,'history_text','itemid',41062),(26541,'history_uint','itemid',41062),(26542,'trends','itemid',41062),(26543,'trends_uint','itemid',41062),(26544,'events','itemid',41063),(26545,'history','itemid',41063),(26546,'history_log','itemid',41063),(26547,'history_str','itemid',41063),(26548,'history_text','itemid',41063),(26549,'history_uint','itemid',41063),(26550,'trends','itemid',41063),(26551,'trends_uint','itemid',41063),(26552,'events','itemid',41064),(26553,'history','itemid',41064),(26554,'history_log','itemid',41064),(26555,'history_str','itemid',41064),(26556,'history_text','itemid',41064),(26557,'history_uint','itemid',41064),(26558,'trends','itemid',41064),(26559,'trends_uint','itemid',41064),(26560,'events','itemid',41065),(26561,'history','itemid',41065),(26562,'history_log','itemid',41065),(26563,'history_str','itemid',41065),(26564,'history_text','itemid',41065),(26565,'history_uint','itemid',41065),(26566,'trends','itemid',41065),(26567,'trends_uint','itemid',41065),(26568,'events','itemid',41066),(26569,'history','itemid',41066),(26570,'history_log','itemid',41066),(26571,'history_str','itemid',41066),(26572,'history_text','itemid',41066),(26573,'history_uint','itemid',41066),(26574,'trends','itemid',41066),(26575,'trends_uint','itemid',41066),(26576,'events','itemid',41067),(26577,'history','itemid',41067),(26578,'history_log','itemid',41067),(26579,'history_str','itemid',41067),(26580,'history_text','itemid',41067),(26581,'history_uint','itemid',41067),(26582,'trends','itemid',41067),(26583,'trends_uint','itemid',41067),(26584,'events','itemid',41068),(26585,'history','itemid',41068),(26586,'history_log','itemid',41068),(26587,'history_str','itemid',41068),(26588,'history_text','itemid',41068),(26589,'history_uint','itemid',41068),(26590,'trends','itemid',41068),(26591,'trends_uint','itemid',41068),(26592,'events','itemid',41069),(26593,'history','itemid',41069),(26594,'history_log','itemid',41069),(26595,'history_str','itemid',41069),(26596,'history_text','itemid',41069),(26597,'history_uint','itemid',41069),(26598,'trends','itemid',41069),(26599,'trends_uint','itemid',41069),(26600,'events','itemid',41070),(26601,'history','itemid',41070),(26602,'history_log','itemid',41070),(26603,'history_str','itemid',41070),(26604,'history_text','itemid',41070),(26605,'history_uint','itemid',41070),(26606,'trends','itemid',41070),(26607,'trends_uint','itemid',41070),(26608,'events','itemid',41081),(26609,'history','itemid',41081),(26610,'history_log','itemid',41081),(26611,'history_str','itemid',41081),(26612,'history_text','itemid',41081),(26613,'history_uint','itemid',41081),(26614,'trends','itemid',41081),(26615,'trends_uint','itemid',41081),(26616,'events','itemid',41082),(26617,'history','itemid',41082),(26618,'history_log','itemid',41082),(26619,'history_str','itemid',41082),(26620,'history_text','itemid',41082),(26621,'history_uint','itemid',41082),(26622,'trends','itemid',41082),(26623,'trends_uint','itemid',41082),(26624,'events','itemid',41083),(26625,'history','itemid',41083),(26626,'history_log','itemid',41083),(26627,'history_str','itemid',41083),(26628,'history_text','itemid',41083),(26629,'history_uint','itemid',41083),(26630,'trends','itemid',41083),(26631,'trends_uint','itemid',41083),(26632,'events','itemid',41084),(26633,'history','itemid',41084),(26634,'history_log','itemid',41084),(26635,'history_str','itemid',41084),(26636,'history_text','itemid',41084),(26637,'history_uint','itemid',41084),(26638,'trends','itemid',41084),(26639,'trends_uint','itemid',41084),(26640,'events','itemid',41085),(26641,'history','itemid',41085),(26642,'history_log','itemid',41085),(26643,'history_str','itemid',41085),(26644,'history_text','itemid',41085),(26645,'history_uint','itemid',41085),(26646,'trends','itemid',41085),(26647,'trends_uint','itemid',41085),(26648,'events','itemid',41086),(26649,'history','itemid',41086),(26650,'history_log','itemid',41086),(26651,'history_str','itemid',41086),(26652,'history_text','itemid',41086),(26653,'history_uint','itemid',41086),(26654,'trends','itemid',41086),(26655,'trends_uint','itemid',41086),(26656,'events','itemid',41087),(26657,'history','itemid',41087),(26658,'history_log','itemid',41087),(26659,'history_str','itemid',41087),(26660,'history_text','itemid',41087),(26661,'history_uint','itemid',41087),(26662,'trends','itemid',41087),(26663,'trends_uint','itemid',41087),(26664,'events','itemid',41088),(26665,'history','itemid',41088),(26666,'history_log','itemid',41088),(26667,'history_str','itemid',41088),(26668,'history_text','itemid',41088),(26669,'history_uint','itemid',41088),(26670,'trends','itemid',41088),(26671,'trends_uint','itemid',41088),(26672,'events','itemid',41089),(26673,'history','itemid',41089),(26674,'history_log','itemid',41089),(26675,'history_str','itemid',41089),(26676,'history_text','itemid',41089),(26677,'history_uint','itemid',41089),(26678,'trends','itemid',41089),(26679,'trends_uint','itemid',41089),(26680,'events','itemid',41090),(26681,'history','itemid',41090),(26682,'history_log','itemid',41090),(26683,'history_str','itemid',41090),(26684,'history_text','itemid',41090),(26685,'history_uint','itemid',41090),(26686,'trends','itemid',41090),(26687,'trends_uint','itemid',41090),(26688,'events','itemid',41091),(26689,'history','itemid',41091),(26690,'history_log','itemid',41091),(26691,'history_str','itemid',41091),(26692,'history_text','itemid',41091),(26693,'history_uint','itemid',41091),(26694,'trends','itemid',41091),(26695,'trends_uint','itemid',41091),(26696,'events','itemid',41102),(26697,'history','itemid',41102),(26698,'history_log','itemid',41102),(26699,'history_str','itemid',41102),(26700,'history_text','itemid',41102),(26701,'history_uint','itemid',41102),(26702,'trends','itemid',41102),(26703,'trends_uint','itemid',41102),(26704,'events','itemid',41103),(26705,'history','itemid',41103),(26706,'history_log','itemid',41103),(26707,'history_str','itemid',41103),(26708,'history_text','itemid',41103),(26709,'history_uint','itemid',41103),(26710,'trends','itemid',41103),(26711,'trends_uint','itemid',41103),(26712,'events','itemid',41104),(26713,'history','itemid',41104),(26714,'history_log','itemid',41104),(26715,'history_str','itemid',41104),(26716,'history_text','itemid',41104),(26717,'history_uint','itemid',41104),(26718,'trends','itemid',41104),(26719,'trends_uint','itemid',41104),(26720,'events','itemid',41105),(26721,'history','itemid',41105),(26722,'history_log','itemid',41105),(26723,'history_str','itemid',41105),(26724,'history_text','itemid',41105),(26725,'history_uint','itemid',41105),(26726,'trends','itemid',41105),(26727,'trends_uint','itemid',41105),(26728,'events','itemid',41106),(26729,'history','itemid',41106),(26730,'history_log','itemid',41106),(26731,'history_str','itemid',41106),(26732,'history_text','itemid',41106),(26733,'history_uint','itemid',41106),(26734,'trends','itemid',41106),(26735,'trends_uint','itemid',41106),(26736,'events','itemid',41107),(26737,'history','itemid',41107),(26738,'history_log','itemid',41107),(26739,'history_str','itemid',41107),(26740,'history_text','itemid',41107),(26741,'history_uint','itemid',41107),(26742,'trends','itemid',41107),(26743,'trends_uint','itemid',41107),(26744,'events','itemid',41108),(26745,'history','itemid',41108),(26746,'history_log','itemid',41108),(26747,'history_str','itemid',41108),(26748,'history_text','itemid',41108),(26749,'history_uint','itemid',41108),(26750,'trends','itemid',41108),(26751,'trends_uint','itemid',41108),(26752,'events','itemid',41109),(26753,'history','itemid',41109),(26754,'history_log','itemid',41109),(26755,'history_str','itemid',41109),(26756,'history_text','itemid',41109),(26757,'history_uint','itemid',41109),(26758,'trends','itemid',41109),(26759,'trends_uint','itemid',41109),(26760,'events','itemid',41110),(26761,'history','itemid',41110),(26762,'history_log','itemid',41110),(26763,'history_str','itemid',41110),(26764,'history_text','itemid',41110),(26765,'history_uint','itemid',41110),(26766,'trends','itemid',41110),(26767,'trends_uint','itemid',41110),(26768,'events','itemid',41111),(26769,'history','itemid',41111),(26770,'history_log','itemid',41111),(26771,'history_str','itemid',41111),(26772,'history_text','itemid',41111),(26773,'history_uint','itemid',41111),(26774,'trends','itemid',41111),(26775,'trends_uint','itemid',41111),(26776,'events','itemid',41112),(26777,'history','itemid',41112),(26778,'history_log','itemid',41112),(26779,'history_str','itemid',41112),(26780,'history_text','itemid',41112),(26781,'history_uint','itemid',41112),(26782,'trends','itemid',41112),(26783,'trends_uint','itemid',41112),(26784,'events','itemid',41123),(26785,'history','itemid',41123),(26786,'history_log','itemid',41123),(26787,'history_str','itemid',41123),(26788,'history_text','itemid',41123),(26789,'history_uint','itemid',41123),(26790,'trends','itemid',41123),(26791,'trends_uint','itemid',41123),(26792,'events','itemid',41124),(26793,'history','itemid',41124),(26794,'history_log','itemid',41124),(26795,'history_str','itemid',41124),(26796,'history_text','itemid',41124),(26797,'history_uint','itemid',41124),(26798,'trends','itemid',41124),(26799,'trends_uint','itemid',41124),(26800,'events','itemid',41125),(26801,'history','itemid',41125),(26802,'history_log','itemid',41125),(26803,'history_str','itemid',41125),(26804,'history_text','itemid',41125),(26805,'history_uint','itemid',41125),(26806,'trends','itemid',41125),(26807,'trends_uint','itemid',41125),(26808,'events','itemid',41126),(26809,'history','itemid',41126),(26810,'history_log','itemid',41126),(26811,'history_str','itemid',41126),(26812,'history_text','itemid',41126),(26813,'history_uint','itemid',41126),(26814,'trends','itemid',41126),(26815,'trends_uint','itemid',41126),(26816,'events','itemid',41127),(26817,'history','itemid',41127),(26818,'history_log','itemid',41127),(26819,'history_str','itemid',41127),(26820,'history_text','itemid',41127),(26821,'history_uint','itemid',41127),(26822,'trends','itemid',41127),(26823,'trends_uint','itemid',41127),(26824,'events','itemid',41128),(26825,'history','itemid',41128),(26826,'history_log','itemid',41128),(26827,'history_str','itemid',41128),(26828,'history_text','itemid',41128),(26829,'history_uint','itemid',41128),(26830,'trends','itemid',41128),(26831,'trends_uint','itemid',41128),(26832,'events','itemid',41129),(26833,'history','itemid',41129),(26834,'history_log','itemid',41129),(26835,'history_str','itemid',41129),(26836,'history_text','itemid',41129),(26837,'history_uint','itemid',41129),(26838,'trends','itemid',41129),(26839,'trends_uint','itemid',41129),(26840,'events','itemid',41130),(26841,'history','itemid',41130),(26842,'history_log','itemid',41130),(26843,'history_str','itemid',41130),(26844,'history_text','itemid',41130),(26845,'history_uint','itemid',41130),(26846,'trends','itemid',41130),(26847,'trends_uint','itemid',41130),(26848,'events','itemid',41131),(26849,'history','itemid',41131),(26850,'history_log','itemid',41131),(26851,'history_str','itemid',41131),(26852,'history_text','itemid',41131),(26853,'history_uint','itemid',41131),(26854,'trends','itemid',41131),(26855,'trends_uint','itemid',41131),(26856,'events','itemid',41132),(26857,'history','itemid',41132),(26858,'history_log','itemid',41132),(26859,'history_str','itemid',41132),(26860,'history_text','itemid',41132),(26861,'history_uint','itemid',41132),(26862,'trends','itemid',41132),(26863,'trends_uint','itemid',41132),(26864,'events','itemid',41133),(26865,'history','itemid',41133),(26866,'history_log','itemid',41133),(26867,'history_str','itemid',41133),(26868,'history_text','itemid',41133),(26869,'history_uint','itemid',41133),(26870,'trends','itemid',41133),(26871,'trends_uint','itemid',41133),(26872,'events','itemid',41144),(26873,'history','itemid',41144),(26874,'history_log','itemid',41144),(26875,'history_str','itemid',41144),(26876,'history_text','itemid',41144),(26877,'history_uint','itemid',41144),(26878,'trends','itemid',41144),(26879,'trends_uint','itemid',41144),(26880,'events','itemid',41145),(26881,'history','itemid',41145),(26882,'history_log','itemid',41145),(26883,'history_str','itemid',41145),(26884,'history_text','itemid',41145),(26885,'history_uint','itemid',41145),(26886,'trends','itemid',41145),(26887,'trends_uint','itemid',41145),(26888,'events','itemid',41146),(26889,'history','itemid',41146),(26890,'history_log','itemid',41146),(26891,'history_str','itemid',41146),(26892,'history_text','itemid',41146),(26893,'history_uint','itemid',41146),(26894,'trends','itemid',41146),(26895,'trends_uint','itemid',41146),(26896,'events','itemid',41147),(26897,'history','itemid',41147),(26898,'history_log','itemid',41147),(26899,'history_str','itemid',41147),(26900,'history_text','itemid',41147),(26901,'history_uint','itemid',41147),(26902,'trends','itemid',41147),(26903,'trends_uint','itemid',41147),(26904,'events','itemid',41148),(26905,'history','itemid',41148),(26906,'history_log','itemid',41148),(26907,'history_str','itemid',41148),(26908,'history_text','itemid',41148),(26909,'history_uint','itemid',41148),(26910,'trends','itemid',41148),(26911,'trends_uint','itemid',41148),(26912,'events','itemid',41149),(26913,'history','itemid',41149),(26914,'history_log','itemid',41149),(26915,'history_str','itemid',41149),(26916,'history_text','itemid',41149),(26917,'history_uint','itemid',41149),(26918,'trends','itemid',41149),(26919,'trends_uint','itemid',41149),(26920,'events','itemid',41150),(26921,'history','itemid',41150),(26922,'history_log','itemid',41150),(26923,'history_str','itemid',41150),(26924,'history_text','itemid',41150),(26925,'history_uint','itemid',41150),(26926,'trends','itemid',41150),(26927,'trends_uint','itemid',41150),(26928,'events','itemid',41151),(26929,'history','itemid',41151),(26930,'history_log','itemid',41151),(26931,'history_str','itemid',41151),(26932,'history_text','itemid',41151),(26933,'history_uint','itemid',41151),(26934,'trends','itemid',41151),(26935,'trends_uint','itemid',41151),(26936,'events','itemid',41152),(26937,'history','itemid',41152),(26938,'history_log','itemid',41152),(26939,'history_str','itemid',41152),(26940,'history_text','itemid',41152),(26941,'history_uint','itemid',41152),(26942,'trends','itemid',41152),(26943,'trends_uint','itemid',41152),(26944,'events','itemid',41153),(26945,'history','itemid',41153),(26946,'history_log','itemid',41153),(26947,'history_str','itemid',41153),(26948,'history_text','itemid',41153),(26949,'history_uint','itemid',41153),(26950,'trends','itemid',41153),(26951,'trends_uint','itemid',41153),(26952,'events','itemid',41154),(26953,'history','itemid',41154),(26954,'history_log','itemid',41154),(26955,'history_str','itemid',41154),(26956,'history_text','itemid',41154),(26957,'history_uint','itemid',41154),(26958,'trends','itemid',41154),(26959,'trends_uint','itemid',41154),(26960,'events','itemid',41165),(26961,'history','itemid',41165),(26962,'history_log','itemid',41165),(26963,'history_str','itemid',41165),(26964,'history_text','itemid',41165),(26965,'history_uint','itemid',41165),(26966,'trends','itemid',41165),(26967,'trends_uint','itemid',41165),(26968,'events','itemid',41166),(26969,'history','itemid',41166),(26970,'history_log','itemid',41166),(26971,'history_str','itemid',41166),(26972,'history_text','itemid',41166),(26973,'history_uint','itemid',41166),(26974,'trends','itemid',41166),(26975,'trends_uint','itemid',41166),(26976,'events','itemid',41167),(26977,'history','itemid',41167),(26978,'history_log','itemid',41167),(26979,'history_str','itemid',41167),(26980,'history_text','itemid',41167),(26981,'history_uint','itemid',41167),(26982,'trends','itemid',41167),(26983,'trends_uint','itemid',41167),(26984,'events','itemid',41168),(26985,'history','itemid',41168),(26986,'history_log','itemid',41168),(26987,'history_str','itemid',41168),(26988,'history_text','itemid',41168),(26989,'history_uint','itemid',41168),(26990,'trends','itemid',41168),(26991,'trends_uint','itemid',41168),(26992,'events','itemid',41169),(26993,'history','itemid',41169),(26994,'history_log','itemid',41169),(26995,'history_str','itemid',41169),(26996,'history_text','itemid',41169),(26997,'history_uint','itemid',41169),(26998,'trends','itemid',41169),(26999,'trends_uint','itemid',41169),(27000,'events','itemid',41170),(27001,'history','itemid',41170),(27002,'history_log','itemid',41170),(27003,'history_str','itemid',41170),(27004,'history_text','itemid',41170),(27005,'history_uint','itemid',41170),(27006,'trends','itemid',41170),(27007,'trends_uint','itemid',41170),(27008,'events','itemid',41171),(27009,'history','itemid',41171),(27010,'history_log','itemid',41171),(27011,'history_str','itemid',41171),(27012,'history_text','itemid',41171),(27013,'history_uint','itemid',41171),(27014,'trends','itemid',41171),(27015,'trends_uint','itemid',41171),(27016,'events','itemid',41172),(27017,'history','itemid',41172),(27018,'history_log','itemid',41172),(27019,'history_str','itemid',41172),(27020,'history_text','itemid',41172),(27021,'history_uint','itemid',41172),(27022,'trends','itemid',41172),(27023,'trends_uint','itemid',41172),(27024,'events','itemid',41173),(27025,'history','itemid',41173),(27026,'history_log','itemid',41173),(27027,'history_str','itemid',41173),(27028,'history_text','itemid',41173),(27029,'history_uint','itemid',41173),(27030,'trends','itemid',41173),(27031,'trends_uint','itemid',41173),(27032,'events','itemid',41174),(27033,'history','itemid',41174),(27034,'history_log','itemid',41174),(27035,'history_str','itemid',41174),(27036,'history_text','itemid',41174),(27037,'history_uint','itemid',41174),(27038,'trends','itemid',41174),(27039,'trends_uint','itemid',41174),(27040,'events','itemid',41175),(27041,'history','itemid',41175),(27042,'history_log','itemid',41175),(27043,'history_str','itemid',41175),(27044,'history_text','itemid',41175),(27045,'history_uint','itemid',41175),(27046,'trends','itemid',41175),(27047,'trends_uint','itemid',41175),(27048,'events','itemid',41186),(27049,'history','itemid',41186),(27050,'history_log','itemid',41186),(27051,'history_str','itemid',41186),(27052,'history_text','itemid',41186),(27053,'history_uint','itemid',41186),(27054,'trends','itemid',41186),(27055,'trends_uint','itemid',41186),(27056,'events','itemid',41187),(27057,'history','itemid',41187),(27058,'history_log','itemid',41187),(27059,'history_str','itemid',41187),(27060,'history_text','itemid',41187),(27061,'history_uint','itemid',41187),(27062,'trends','itemid',41187),(27063,'trends_uint','itemid',41187),(27064,'events','itemid',41188),(27065,'history','itemid',41188),(27066,'history_log','itemid',41188),(27067,'history_str','itemid',41188),(27068,'history_text','itemid',41188),(27069,'history_uint','itemid',41188),(27070,'trends','itemid',41188),(27071,'trends_uint','itemid',41188),(27072,'events','itemid',41189),(27073,'history','itemid',41189),(27074,'history_log','itemid',41189),(27075,'history_str','itemid',41189),(27076,'history_text','itemid',41189),(27077,'history_uint','itemid',41189),(27078,'trends','itemid',41189),(27079,'trends_uint','itemid',41189),(27080,'events','itemid',41190),(27081,'history','itemid',41190),(27082,'history_log','itemid',41190),(27083,'history_str','itemid',41190),(27084,'history_text','itemid',41190),(27085,'history_uint','itemid',41190),(27086,'trends','itemid',41190),(27087,'trends_uint','itemid',41190),(27088,'events','itemid',41191),(27089,'history','itemid',41191),(27090,'history_log','itemid',41191),(27091,'history_str','itemid',41191),(27092,'history_text','itemid',41191),(27093,'history_uint','itemid',41191),(27094,'trends','itemid',41191),(27095,'trends_uint','itemid',41191),(27096,'events','itemid',41192),(27097,'history','itemid',41192),(27098,'history_log','itemid',41192),(27099,'history_str','itemid',41192),(27100,'history_text','itemid',41192),(27101,'history_uint','itemid',41192),(27102,'trends','itemid',41192),(27103,'trends_uint','itemid',41192),(27104,'events','itemid',41193),(27105,'history','itemid',41193),(27106,'history_log','itemid',41193),(27107,'history_str','itemid',41193),(27108,'history_text','itemid',41193),(27109,'history_uint','itemid',41193),(27110,'trends','itemid',41193),(27111,'trends_uint','itemid',41193),(27112,'events','itemid',41194),(27113,'history','itemid',41194),(27114,'history_log','itemid',41194),(27115,'history_str','itemid',41194),(27116,'history_text','itemid',41194),(27117,'history_uint','itemid',41194),(27118,'trends','itemid',41194),(27119,'trends_uint','itemid',41194),(27120,'events','itemid',41195),(27121,'history','itemid',41195),(27122,'history_log','itemid',41195),(27123,'history_str','itemid',41195),(27124,'history_text','itemid',41195),(27125,'history_uint','itemid',41195),(27126,'trends','itemid',41195),(27127,'trends_uint','itemid',41195),(27128,'events','itemid',41196),(27129,'history','itemid',41196),(27130,'history_log','itemid',41196),(27131,'history_str','itemid',41196),(27132,'history_text','itemid',41196),(27133,'history_uint','itemid',41196),(27134,'trends','itemid',41196),(27135,'trends_uint','itemid',41196),(27136,'events','itemid',41207),(27137,'history','itemid',41207),(27138,'history_log','itemid',41207),(27139,'history_str','itemid',41207),(27140,'history_text','itemid',41207),(27141,'history_uint','itemid',41207),(27142,'trends','itemid',41207),(27143,'trends_uint','itemid',41207),(27144,'events','itemid',41208),(27145,'history','itemid',41208),(27146,'history_log','itemid',41208),(27147,'history_str','itemid',41208),(27148,'history_text','itemid',41208),(27149,'history_uint','itemid',41208),(27150,'trends','itemid',41208),(27151,'trends_uint','itemid',41208),(27152,'events','itemid',41209),(27153,'history','itemid',41209),(27154,'history_log','itemid',41209),(27155,'history_str','itemid',41209),(27156,'history_text','itemid',41209),(27157,'history_uint','itemid',41209),(27158,'trends','itemid',41209),(27159,'trends_uint','itemid',41209),(27160,'events','itemid',41210),(27161,'history','itemid',41210),(27162,'history_log','itemid',41210),(27163,'history_str','itemid',41210),(27164,'history_text','itemid',41210),(27165,'history_uint','itemid',41210),(27166,'trends','itemid',41210),(27167,'trends_uint','itemid',41210),(27168,'events','itemid',41211),(27169,'history','itemid',41211),(27170,'history_log','itemid',41211),(27171,'history_str','itemid',41211),(27172,'history_text','itemid',41211),(27173,'history_uint','itemid',41211),(27174,'trends','itemid',41211),(27175,'trends_uint','itemid',41211),(27176,'events','itemid',41212),(27177,'history','itemid',41212),(27178,'history_log','itemid',41212),(27179,'history_str','itemid',41212),(27180,'history_text','itemid',41212),(27181,'history_uint','itemid',41212),(27182,'trends','itemid',41212),(27183,'trends_uint','itemid',41212),(27184,'events','itemid',41213),(27185,'history','itemid',41213),(27186,'history_log','itemid',41213),(27187,'history_str','itemid',41213),(27188,'history_text','itemid',41213),(27189,'history_uint','itemid',41213),(27190,'trends','itemid',41213),(27191,'trends_uint','itemid',41213),(27192,'events','itemid',41214),(27193,'history','itemid',41214),(27194,'history_log','itemid',41214),(27195,'history_str','itemid',41214),(27196,'history_text','itemid',41214),(27197,'history_uint','itemid',41214),(27198,'trends','itemid',41214),(27199,'trends_uint','itemid',41214),(27200,'events','itemid',41215),(27201,'history','itemid',41215),(27202,'history_log','itemid',41215),(27203,'history_str','itemid',41215),(27204,'history_text','itemid',41215),(27205,'history_uint','itemid',41215),(27206,'trends','itemid',41215),(27207,'trends_uint','itemid',41215),(27208,'events','itemid',41216),(27209,'history','itemid',41216),(27210,'history_log','itemid',41216),(27211,'history_str','itemid',41216),(27212,'history_text','itemid',41216),(27213,'history_uint','itemid',41216),(27214,'trends','itemid',41216),(27215,'trends_uint','itemid',41216),(27216,'events','itemid',41217),(27217,'history','itemid',41217),(27218,'history_log','itemid',41217),(27219,'history_str','itemid',41217),(27220,'history_text','itemid',41217),(27221,'history_uint','itemid',41217),(27222,'trends','itemid',41217),(27223,'trends_uint','itemid',41217),(27224,'events','itemid',41228),(27225,'history','itemid',41228),(27226,'history_log','itemid',41228),(27227,'history_str','itemid',41228),(27228,'history_text','itemid',41228),(27229,'history_uint','itemid',41228),(27230,'trends','itemid',41228),(27231,'trends_uint','itemid',41228),(27232,'events','itemid',41229),(27233,'history','itemid',41229),(27234,'history_log','itemid',41229),(27235,'history_str','itemid',41229),(27236,'history_text','itemid',41229),(27237,'history_uint','itemid',41229),(27238,'trends','itemid',41229),(27239,'trends_uint','itemid',41229),(27240,'events','itemid',41230),(27241,'history','itemid',41230),(27242,'history_log','itemid',41230),(27243,'history_str','itemid',41230),(27244,'history_text','itemid',41230),(27245,'history_uint','itemid',41230),(27246,'trends','itemid',41230),(27247,'trends_uint','itemid',41230),(27248,'events','itemid',41231),(27249,'history','itemid',41231),(27250,'history_log','itemid',41231),(27251,'history_str','itemid',41231),(27252,'history_text','itemid',41231),(27253,'history_uint','itemid',41231),(27254,'trends','itemid',41231),(27255,'trends_uint','itemid',41231),(27256,'events','itemid',41232),(27257,'history','itemid',41232),(27258,'history_log','itemid',41232),(27259,'history_str','itemid',41232),(27260,'history_text','itemid',41232),(27261,'history_uint','itemid',41232),(27262,'trends','itemid',41232),(27263,'trends_uint','itemid',41232),(27264,'events','itemid',41233),(27265,'history','itemid',41233),(27266,'history_log','itemid',41233),(27267,'history_str','itemid',41233),(27268,'history_text','itemid',41233),(27269,'history_uint','itemid',41233),(27270,'trends','itemid',41233),(27271,'trends_uint','itemid',41233),(27272,'events','itemid',41234),(27273,'history','itemid',41234),(27274,'history_log','itemid',41234),(27275,'history_str','itemid',41234),(27276,'history_text','itemid',41234),(27277,'history_uint','itemid',41234),(27278,'trends','itemid',41234),(27279,'trends_uint','itemid',41234),(27280,'events','itemid',41235),(27281,'history','itemid',41235),(27282,'history_log','itemid',41235),(27283,'history_str','itemid',41235),(27284,'history_text','itemid',41235),(27285,'history_uint','itemid',41235),(27286,'trends','itemid',41235),(27287,'trends_uint','itemid',41235),(27288,'events','itemid',41236),(27289,'history','itemid',41236),(27290,'history_log','itemid',41236),(27291,'history_str','itemid',41236),(27292,'history_text','itemid',41236),(27293,'history_uint','itemid',41236),(27294,'trends','itemid',41236),(27295,'trends_uint','itemid',41236),(27296,'events','itemid',41237),(27297,'history','itemid',41237),(27298,'history_log','itemid',41237),(27299,'history_str','itemid',41237),(27300,'history_text','itemid',41237),(27301,'history_uint','itemid',41237),(27302,'trends','itemid',41237),(27303,'trends_uint','itemid',41237),(27304,'events','itemid',41238),(27305,'history','itemid',41238),(27306,'history_log','itemid',41238),(27307,'history_str','itemid',41238),(27308,'history_text','itemid',41238),(27309,'history_uint','itemid',41238),(27310,'trends','itemid',41238),(27311,'trends_uint','itemid',41238),(27312,'events','itemid',41249),(27313,'history','itemid',41249),(27314,'history_log','itemid',41249),(27315,'history_str','itemid',41249),(27316,'history_text','itemid',41249),(27317,'history_uint','itemid',41249),(27318,'trends','itemid',41249),(27319,'trends_uint','itemid',41249),(27320,'events','itemid',41250),(27321,'history','itemid',41250),(27322,'history_log','itemid',41250),(27323,'history_str','itemid',41250),(27324,'history_text','itemid',41250),(27325,'history_uint','itemid',41250),(27326,'trends','itemid',41250),(27327,'trends_uint','itemid',41250),(27328,'events','itemid',41251),(27329,'history','itemid',41251),(27330,'history_log','itemid',41251),(27331,'history_str','itemid',41251),(27332,'history_text','itemid',41251),(27333,'history_uint','itemid',41251),(27334,'trends','itemid',41251),(27335,'trends_uint','itemid',41251),(27336,'events','itemid',41252),(27337,'history','itemid',41252),(27338,'history_log','itemid',41252),(27339,'history_str','itemid',41252),(27340,'history_text','itemid',41252),(27341,'history_uint','itemid',41252),(27342,'trends','itemid',41252),(27343,'trends_uint','itemid',41252),(27344,'events','itemid',41253),(27345,'history','itemid',41253),(27346,'history_log','itemid',41253),(27347,'history_str','itemid',41253),(27348,'history_text','itemid',41253),(27349,'history_uint','itemid',41253),(27350,'trends','itemid',41253),(27351,'trends_uint','itemid',41253),(27352,'events','itemid',41254),(27353,'history','itemid',41254),(27354,'history_log','itemid',41254),(27355,'history_str','itemid',41254),(27356,'history_text','itemid',41254),(27357,'history_uint','itemid',41254),(27358,'trends','itemid',41254),(27359,'trends_uint','itemid',41254),(27360,'events','itemid',41255),(27361,'history','itemid',41255),(27362,'history_log','itemid',41255),(27363,'history_str','itemid',41255),(27364,'history_text','itemid',41255),(27365,'history_uint','itemid',41255),(27366,'trends','itemid',41255),(27367,'trends_uint','itemid',41255),(27368,'events','itemid',41256),(27369,'history','itemid',41256),(27370,'history_log','itemid',41256),(27371,'history_str','itemid',41256),(27372,'history_text','itemid',41256),(27373,'history_uint','itemid',41256),(27374,'trends','itemid',41256),(27375,'trends_uint','itemid',41256),(27376,'events','itemid',41257),(27377,'history','itemid',41257),(27378,'history_log','itemid',41257),(27379,'history_str','itemid',41257),(27380,'history_text','itemid',41257),(27381,'history_uint','itemid',41257),(27382,'trends','itemid',41257),(27383,'trends_uint','itemid',41257),(27384,'events','itemid',41258),(27385,'history','itemid',41258),(27386,'history_log','itemid',41258),(27387,'history_str','itemid',41258),(27388,'history_text','itemid',41258),(27389,'history_uint','itemid',41258),(27390,'trends','itemid',41258),(27391,'trends_uint','itemid',41258),(27392,'events','itemid',41259),(27393,'history','itemid',41259),(27394,'history_log','itemid',41259),(27395,'history_str','itemid',41259),(27396,'history_text','itemid',41259),(27397,'history_uint','itemid',41259),(27398,'trends','itemid',41259),(27399,'trends_uint','itemid',41259),(27400,'events','itemid',41270),(27401,'history','itemid',41270),(27402,'history_log','itemid',41270),(27403,'history_str','itemid',41270),(27404,'history_text','itemid',41270),(27405,'history_uint','itemid',41270),(27406,'trends','itemid',41270),(27407,'trends_uint','itemid',41270),(27408,'events','itemid',41271),(27409,'history','itemid',41271),(27410,'history_log','itemid',41271),(27411,'history_str','itemid',41271),(27412,'history_text','itemid',41271),(27413,'history_uint','itemid',41271),(27414,'trends','itemid',41271),(27415,'trends_uint','itemid',41271),(27416,'events','itemid',41272),(27417,'history','itemid',41272),(27418,'history_log','itemid',41272),(27419,'history_str','itemid',41272),(27420,'history_text','itemid',41272),(27421,'history_uint','itemid',41272),(27422,'trends','itemid',41272),(27423,'trends_uint','itemid',41272),(27424,'events','itemid',41273),(27425,'history','itemid',41273),(27426,'history_log','itemid',41273),(27427,'history_str','itemid',41273),(27428,'history_text','itemid',41273),(27429,'history_uint','itemid',41273),(27430,'trends','itemid',41273),(27431,'trends_uint','itemid',41273),(27432,'events','itemid',41274),(27433,'history','itemid',41274),(27434,'history_log','itemid',41274),(27435,'history_str','itemid',41274),(27436,'history_text','itemid',41274),(27437,'history_uint','itemid',41274),(27438,'trends','itemid',41274),(27439,'trends_uint','itemid',41274),(27440,'events','itemid',41275),(27441,'history','itemid',41275),(27442,'history_log','itemid',41275),(27443,'history_str','itemid',41275),(27444,'history_text','itemid',41275),(27445,'history_uint','itemid',41275),(27446,'trends','itemid',41275),(27447,'trends_uint','itemid',41275),(27448,'events','itemid',41276),(27449,'history','itemid',41276),(27450,'history_log','itemid',41276),(27451,'history_str','itemid',41276),(27452,'history_text','itemid',41276),(27453,'history_uint','itemid',41276),(27454,'trends','itemid',41276),(27455,'trends_uint','itemid',41276),(27456,'events','itemid',41277),(27457,'history','itemid',41277),(27458,'history_log','itemid',41277),(27459,'history_str','itemid',41277),(27460,'history_text','itemid',41277),(27461,'history_uint','itemid',41277),(27462,'trends','itemid',41277),(27463,'trends_uint','itemid',41277),(27464,'events','itemid',41278),(27465,'history','itemid',41278),(27466,'history_log','itemid',41278),(27467,'history_str','itemid',41278),(27468,'history_text','itemid',41278),(27469,'history_uint','itemid',41278),(27470,'trends','itemid',41278),(27471,'trends_uint','itemid',41278),(27472,'events','itemid',41279),(27473,'history','itemid',41279),(27474,'history_log','itemid',41279),(27475,'history_str','itemid',41279),(27476,'history_text','itemid',41279),(27477,'history_uint','itemid',41279),(27478,'trends','itemid',41279),(27479,'trends_uint','itemid',41279),(27480,'events','itemid',41280),(27481,'history','itemid',41280),(27482,'history_log','itemid',41280),(27483,'history_str','itemid',41280),(27484,'history_text','itemid',41280),(27485,'history_uint','itemid',41280),(27486,'trends','itemid',41280),(27487,'trends_uint','itemid',41280),(27488,'events','itemid',41291),(27489,'history','itemid',41291),(27490,'history_log','itemid',41291),(27491,'history_str','itemid',41291),(27492,'history_text','itemid',41291),(27493,'history_uint','itemid',41291),(27494,'trends','itemid',41291),(27495,'trends_uint','itemid',41291),(27496,'events','itemid',41292),(27497,'history','itemid',41292),(27498,'history_log','itemid',41292),(27499,'history_str','itemid',41292),(27500,'history_text','itemid',41292),(27501,'history_uint','itemid',41292),(27502,'trends','itemid',41292),(27503,'trends_uint','itemid',41292),(27504,'events','itemid',41293),(27505,'history','itemid',41293),(27506,'history_log','itemid',41293),(27507,'history_str','itemid',41293),(27508,'history_text','itemid',41293),(27509,'history_uint','itemid',41293),(27510,'trends','itemid',41293),(27511,'trends_uint','itemid',41293),(27512,'events','itemid',41294),(27513,'history','itemid',41294),(27514,'history_log','itemid',41294),(27515,'history_str','itemid',41294),(27516,'history_text','itemid',41294),(27517,'history_uint','itemid',41294),(27518,'trends','itemid',41294),(27519,'trends_uint','itemid',41294),(27520,'events','itemid',41295),(27521,'history','itemid',41295),(27522,'history_log','itemid',41295),(27523,'history_str','itemid',41295),(27524,'history_text','itemid',41295),(27525,'history_uint','itemid',41295),(27526,'trends','itemid',41295),(27527,'trends_uint','itemid',41295),(27528,'events','itemid',41296),(27529,'history','itemid',41296),(27530,'history_log','itemid',41296),(27531,'history_str','itemid',41296),(27532,'history_text','itemid',41296),(27533,'history_uint','itemid',41296),(27534,'trends','itemid',41296),(27535,'trends_uint','itemid',41296),(27536,'events','itemid',41297),(27537,'history','itemid',41297),(27538,'history_log','itemid',41297),(27539,'history_str','itemid',41297),(27540,'history_text','itemid',41297),(27541,'history_uint','itemid',41297),(27542,'trends','itemid',41297),(27543,'trends_uint','itemid',41297),(27544,'events','itemid',41298),(27545,'history','itemid',41298),(27546,'history_log','itemid',41298),(27547,'history_str','itemid',41298),(27548,'history_text','itemid',41298),(27549,'history_uint','itemid',41298),(27550,'trends','itemid',41298),(27551,'trends_uint','itemid',41298),(27552,'events','itemid',41299),(27553,'history','itemid',41299),(27554,'history_log','itemid',41299),(27555,'history_str','itemid',41299),(27556,'history_text','itemid',41299),(27557,'history_uint','itemid',41299),(27558,'trends','itemid',41299),(27559,'trends_uint','itemid',41299),(27560,'events','itemid',41300),(27561,'history','itemid',41300),(27562,'history_log','itemid',41300),(27563,'history_str','itemid',41300),(27564,'history_text','itemid',41300),(27565,'history_uint','itemid',41300),(27566,'trends','itemid',41300),(27567,'trends_uint','itemid',41300),(27568,'events','itemid',41301),(27569,'history','itemid',41301),(27570,'history_log','itemid',41301),(27571,'history_str','itemid',41301),(27572,'history_text','itemid',41301),(27573,'history_uint','itemid',41301),(27574,'trends','itemid',41301),(27575,'trends_uint','itemid',41301),(27576,'events','itemid',41312),(27577,'history','itemid',41312),(27578,'history_log','itemid',41312),(27579,'history_str','itemid',41312),(27580,'history_text','itemid',41312),(27581,'history_uint','itemid',41312),(27582,'trends','itemid',41312),(27583,'trends_uint','itemid',41312),(27584,'events','itemid',41313),(27585,'history','itemid',41313),(27586,'history_log','itemid',41313),(27587,'history_str','itemid',41313),(27588,'history_text','itemid',41313),(27589,'history_uint','itemid',41313),(27590,'trends','itemid',41313),(27591,'trends_uint','itemid',41313),(27592,'events','itemid',41314),(27593,'history','itemid',41314),(27594,'history_log','itemid',41314),(27595,'history_str','itemid',41314),(27596,'history_text','itemid',41314),(27597,'history_uint','itemid',41314),(27598,'trends','itemid',41314),(27599,'trends_uint','itemid',41314),(27600,'events','itemid',41315),(27601,'history','itemid',41315),(27602,'history_log','itemid',41315),(27603,'history_str','itemid',41315),(27604,'history_text','itemid',41315),(27605,'history_uint','itemid',41315),(27606,'trends','itemid',41315),(27607,'trends_uint','itemid',41315),(27608,'events','itemid',41316),(27609,'history','itemid',41316),(27610,'history_log','itemid',41316),(27611,'history_str','itemid',41316),(27612,'history_text','itemid',41316),(27613,'history_uint','itemid',41316),(27614,'trends','itemid',41316),(27615,'trends_uint','itemid',41316),(27616,'events','itemid',41317),(27617,'history','itemid',41317),(27618,'history_log','itemid',41317),(27619,'history_str','itemid',41317),(27620,'history_text','itemid',41317),(27621,'history_uint','itemid',41317),(27622,'trends','itemid',41317),(27623,'trends_uint','itemid',41317),(27624,'events','itemid',41318),(27625,'history','itemid',41318),(27626,'history_log','itemid',41318),(27627,'history_str','itemid',41318),(27628,'history_text','itemid',41318),(27629,'history_uint','itemid',41318),(27630,'trends','itemid',41318),(27631,'trends_uint','itemid',41318),(27632,'events','itemid',41319),(27633,'history','itemid',41319),(27634,'history_log','itemid',41319),(27635,'history_str','itemid',41319),(27636,'history_text','itemid',41319),(27637,'history_uint','itemid',41319),(27638,'trends','itemid',41319),(27639,'trends_uint','itemid',41319),(27640,'events','itemid',41320),(27641,'history','itemid',41320),(27642,'history_log','itemid',41320),(27643,'history_str','itemid',41320),(27644,'history_text','itemid',41320),(27645,'history_uint','itemid',41320),(27646,'trends','itemid',41320),(27647,'trends_uint','itemid',41320),(27648,'events','itemid',41321),(27649,'history','itemid',41321),(27650,'history_log','itemid',41321),(27651,'history_str','itemid',41321),(27652,'history_text','itemid',41321),(27653,'history_uint','itemid',41321),(27654,'trends','itemid',41321),(27655,'trends_uint','itemid',41321),(27656,'events','itemid',41322),(27657,'history','itemid',41322),(27658,'history_log','itemid',41322),(27659,'history_str','itemid',41322),(27660,'history_text','itemid',41322),(27661,'history_uint','itemid',41322),(27662,'trends','itemid',41322),(27663,'trends_uint','itemid',41322),(27664,'events','itemid',41333),(27665,'history','itemid',41333),(27666,'history_log','itemid',41333),(27667,'history_str','itemid',41333),(27668,'history_text','itemid',41333),(27669,'history_uint','itemid',41333),(27670,'trends','itemid',41333),(27671,'trends_uint','itemid',41333),(27672,'events','itemid',41334),(27673,'history','itemid',41334),(27674,'history_log','itemid',41334),(27675,'history_str','itemid',41334),(27676,'history_text','itemid',41334),(27677,'history_uint','itemid',41334),(27678,'trends','itemid',41334),(27679,'trends_uint','itemid',41334),(27680,'events','itemid',41335),(27681,'history','itemid',41335),(27682,'history_log','itemid',41335),(27683,'history_str','itemid',41335),(27684,'history_text','itemid',41335),(27685,'history_uint','itemid',41335),(27686,'trends','itemid',41335),(27687,'trends_uint','itemid',41335),(27688,'events','itemid',41336),(27689,'history','itemid',41336),(27690,'history_log','itemid',41336),(27691,'history_str','itemid',41336),(27692,'history_text','itemid',41336),(27693,'history_uint','itemid',41336),(27694,'trends','itemid',41336),(27695,'trends_uint','itemid',41336),(27696,'events','itemid',41337),(27697,'history','itemid',41337),(27698,'history_log','itemid',41337),(27699,'history_str','itemid',41337),(27700,'history_text','itemid',41337),(27701,'history_uint','itemid',41337),(27702,'trends','itemid',41337),(27703,'trends_uint','itemid',41337),(27704,'events','itemid',41338),(27705,'history','itemid',41338),(27706,'history_log','itemid',41338),(27707,'history_str','itemid',41338),(27708,'history_text','itemid',41338),(27709,'history_uint','itemid',41338),(27710,'trends','itemid',41338),(27711,'trends_uint','itemid',41338),(27712,'events','itemid',41339),(27713,'history','itemid',41339),(27714,'history_log','itemid',41339),(27715,'history_str','itemid',41339),(27716,'history_text','itemid',41339),(27717,'history_uint','itemid',41339),(27718,'trends','itemid',41339),(27719,'trends_uint','itemid',41339),(27720,'events','itemid',41340),(27721,'history','itemid',41340),(27722,'history_log','itemid',41340),(27723,'history_str','itemid',41340),(27724,'history_text','itemid',41340),(27725,'history_uint','itemid',41340),(27726,'trends','itemid',41340),(27727,'trends_uint','itemid',41340),(27728,'events','itemid',41341),(27729,'history','itemid',41341),(27730,'history_log','itemid',41341),(27731,'history_str','itemid',41341),(27732,'history_text','itemid',41341),(27733,'history_uint','itemid',41341),(27734,'trends','itemid',41341),(27735,'trends_uint','itemid',41341),(27736,'events','itemid',41342),(27737,'history','itemid',41342),(27738,'history_log','itemid',41342),(27739,'history_str','itemid',41342),(27740,'history_text','itemid',41342),(27741,'history_uint','itemid',41342),(27742,'trends','itemid',41342),(27743,'trends_uint','itemid',41342),(27744,'events','itemid',41343),(27745,'history','itemid',41343),(27746,'history_log','itemid',41343),(27747,'history_str','itemid',41343),(27748,'history_text','itemid',41343),(27749,'history_uint','itemid',41343),(27750,'trends','itemid',41343),(27751,'trends_uint','itemid',41343),(27752,'events','itemid',41354),(27753,'history','itemid',41354),(27754,'history_log','itemid',41354),(27755,'history_str','itemid',41354),(27756,'history_text','itemid',41354),(27757,'history_uint','itemid',41354),(27758,'trends','itemid',41354),(27759,'trends_uint','itemid',41354),(27760,'events','itemid',41355),(27761,'history','itemid',41355),(27762,'history_log','itemid',41355),(27763,'history_str','itemid',41355),(27764,'history_text','itemid',41355),(27765,'history_uint','itemid',41355),(27766,'trends','itemid',41355),(27767,'trends_uint','itemid',41355),(27768,'events','itemid',41356),(27769,'history','itemid',41356),(27770,'history_log','itemid',41356),(27771,'history_str','itemid',41356),(27772,'history_text','itemid',41356),(27773,'history_uint','itemid',41356),(27774,'trends','itemid',41356),(27775,'trends_uint','itemid',41356),(27776,'events','itemid',41357),(27777,'history','itemid',41357),(27778,'history_log','itemid',41357),(27779,'history_str','itemid',41357),(27780,'history_text','itemid',41357),(27781,'history_uint','itemid',41357),(27782,'trends','itemid',41357),(27783,'trends_uint','itemid',41357),(27784,'events','itemid',41358),(27785,'history','itemid',41358),(27786,'history_log','itemid',41358),(27787,'history_str','itemid',41358),(27788,'history_text','itemid',41358),(27789,'history_uint','itemid',41358),(27790,'trends','itemid',41358),(27791,'trends_uint','itemid',41358),(27792,'events','itemid',41359),(27793,'history','itemid',41359),(27794,'history_log','itemid',41359),(27795,'history_str','itemid',41359),(27796,'history_text','itemid',41359),(27797,'history_uint','itemid',41359),(27798,'trends','itemid',41359),(27799,'trends_uint','itemid',41359),(27800,'events','itemid',41360),(27801,'history','itemid',41360),(27802,'history_log','itemid',41360),(27803,'history_str','itemid',41360),(27804,'history_text','itemid',41360),(27805,'history_uint','itemid',41360),(27806,'trends','itemid',41360),(27807,'trends_uint','itemid',41360),(27808,'events','itemid',41361),(27809,'history','itemid',41361),(27810,'history_log','itemid',41361),(27811,'history_str','itemid',41361),(27812,'history_text','itemid',41361),(27813,'history_uint','itemid',41361),(27814,'trends','itemid',41361),(27815,'trends_uint','itemid',41361),(27816,'events','itemid',41362),(27817,'history','itemid',41362),(27818,'history_log','itemid',41362),(27819,'history_str','itemid',41362),(27820,'history_text','itemid',41362),(27821,'history_uint','itemid',41362),(27822,'trends','itemid',41362),(27823,'trends_uint','itemid',41362),(27824,'events','itemid',41363),(27825,'history','itemid',41363),(27826,'history_log','itemid',41363),(27827,'history_str','itemid',41363),(27828,'history_text','itemid',41363),(27829,'history_uint','itemid',41363),(27830,'trends','itemid',41363),(27831,'trends_uint','itemid',41363),(27832,'events','itemid',41364),(27833,'history','itemid',41364),(27834,'history_log','itemid',41364),(27835,'history_str','itemid',41364),(27836,'history_text','itemid',41364),(27837,'history_uint','itemid',41364),(27838,'trends','itemid',41364),(27839,'trends_uint','itemid',41364),(27840,'events','itemid',41375),(27841,'history','itemid',41375),(27842,'history_log','itemid',41375),(27843,'history_str','itemid',41375),(27844,'history_text','itemid',41375),(27845,'history_uint','itemid',41375),(27846,'trends','itemid',41375),(27847,'trends_uint','itemid',41375),(27848,'events','itemid',41376),(27849,'history','itemid',41376),(27850,'history_log','itemid',41376),(27851,'history_str','itemid',41376),(27852,'history_text','itemid',41376),(27853,'history_uint','itemid',41376),(27854,'trends','itemid',41376),(27855,'trends_uint','itemid',41376),(27856,'events','itemid',41377),(27857,'history','itemid',41377),(27858,'history_log','itemid',41377),(27859,'history_str','itemid',41377),(27860,'history_text','itemid',41377),(27861,'history_uint','itemid',41377),(27862,'trends','itemid',41377),(27863,'trends_uint','itemid',41377),(27864,'events','itemid',41378),(27865,'history','itemid',41378),(27866,'history_log','itemid',41378),(27867,'history_str','itemid',41378),(27868,'history_text','itemid',41378),(27869,'history_uint','itemid',41378),(27870,'trends','itemid',41378),(27871,'trends_uint','itemid',41378),(27872,'events','itemid',41379),(27873,'history','itemid',41379),(27874,'history_log','itemid',41379),(27875,'history_str','itemid',41379),(27876,'history_text','itemid',41379),(27877,'history_uint','itemid',41379),(27878,'trends','itemid',41379),(27879,'trends_uint','itemid',41379),(27880,'events','itemid',41380),(27881,'history','itemid',41380),(27882,'history_log','itemid',41380),(27883,'history_str','itemid',41380),(27884,'history_text','itemid',41380),(27885,'history_uint','itemid',41380),(27886,'trends','itemid',41380),(27887,'trends_uint','itemid',41380),(27888,'events','itemid',41381),(27889,'history','itemid',41381),(27890,'history_log','itemid',41381),(27891,'history_str','itemid',41381),(27892,'history_text','itemid',41381),(27893,'history_uint','itemid',41381),(27894,'trends','itemid',41381),(27895,'trends_uint','itemid',41381),(27896,'events','itemid',41382),(27897,'history','itemid',41382),(27898,'history_log','itemid',41382),(27899,'history_str','itemid',41382),(27900,'history_text','itemid',41382),(27901,'history_uint','itemid',41382),(27902,'trends','itemid',41382),(27903,'trends_uint','itemid',41382),(27904,'events','itemid',41383),(27905,'history','itemid',41383),(27906,'history_log','itemid',41383),(27907,'history_str','itemid',41383),(27908,'history_text','itemid',41383),(27909,'history_uint','itemid',41383),(27910,'trends','itemid',41383),(27911,'trends_uint','itemid',41383),(27912,'events','itemid',41384),(27913,'history','itemid',41384),(27914,'history_log','itemid',41384),(27915,'history_str','itemid',41384),(27916,'history_text','itemid',41384),(27917,'history_uint','itemid',41384),(27918,'trends','itemid',41384),(27919,'trends_uint','itemid',41384),(27920,'events','itemid',41385),(27921,'history','itemid',41385),(27922,'history_log','itemid',41385),(27923,'history_str','itemid',41385),(27924,'history_text','itemid',41385),(27925,'history_uint','itemid',41385),(27926,'trends','itemid',41385),(27927,'trends_uint','itemid',41385),(27928,'events','itemid',41396),(27929,'history','itemid',41396),(27930,'history_log','itemid',41396),(27931,'history_str','itemid',41396),(27932,'history_text','itemid',41396),(27933,'history_uint','itemid',41396),(27934,'trends','itemid',41396),(27935,'trends_uint','itemid',41396),(27936,'events','itemid',41397),(27937,'history','itemid',41397),(27938,'history_log','itemid',41397),(27939,'history_str','itemid',41397),(27940,'history_text','itemid',41397),(27941,'history_uint','itemid',41397),(27942,'trends','itemid',41397),(27943,'trends_uint','itemid',41397),(27944,'events','itemid',41398),(27945,'history','itemid',41398),(27946,'history_log','itemid',41398),(27947,'history_str','itemid',41398),(27948,'history_text','itemid',41398),(27949,'history_uint','itemid',41398),(27950,'trends','itemid',41398),(27951,'trends_uint','itemid',41398),(27952,'events','itemid',41399),(27953,'history','itemid',41399),(27954,'history_log','itemid',41399),(27955,'history_str','itemid',41399),(27956,'history_text','itemid',41399),(27957,'history_uint','itemid',41399),(27958,'trends','itemid',41399),(27959,'trends_uint','itemid',41399),(27960,'events','itemid',41400),(27961,'history','itemid',41400),(27962,'history_log','itemid',41400),(27963,'history_str','itemid',41400),(27964,'history_text','itemid',41400),(27965,'history_uint','itemid',41400),(27966,'trends','itemid',41400),(27967,'trends_uint','itemid',41400),(27968,'events','itemid',41401),(27969,'history','itemid',41401),(27970,'history_log','itemid',41401),(27971,'history_str','itemid',41401),(27972,'history_text','itemid',41401),(27973,'history_uint','itemid',41401),(27974,'trends','itemid',41401),(27975,'trends_uint','itemid',41401),(27976,'events','itemid',41402),(27977,'history','itemid',41402),(27978,'history_log','itemid',41402),(27979,'history_str','itemid',41402),(27980,'history_text','itemid',41402),(27981,'history_uint','itemid',41402),(27982,'trends','itemid',41402),(27983,'trends_uint','itemid',41402),(27984,'events','itemid',41403),(27985,'history','itemid',41403),(27986,'history_log','itemid',41403),(27987,'history_str','itemid',41403),(27988,'history_text','itemid',41403),(27989,'history_uint','itemid',41403),(27990,'trends','itemid',41403),(27991,'trends_uint','itemid',41403),(27992,'events','itemid',41404),(27993,'history','itemid',41404),(27994,'history_log','itemid',41404),(27995,'history_str','itemid',41404),(27996,'history_text','itemid',41404),(27997,'history_uint','itemid',41404),(27998,'trends','itemid',41404),(27999,'trends_uint','itemid',41404),(28000,'events','itemid',41405),(28001,'history','itemid',41405),(28002,'history_log','itemid',41405),(28003,'history_str','itemid',41405),(28004,'history_text','itemid',41405),(28005,'history_uint','itemid',41405),(28006,'trends','itemid',41405),(28007,'trends_uint','itemid',41405),(28008,'events','itemid',41406),(28009,'history','itemid',41406),(28010,'history_log','itemid',41406),(28011,'history_str','itemid',41406),(28012,'history_text','itemid',41406),(28013,'history_uint','itemid',41406),(28014,'trends','itemid',41406),(28015,'trends_uint','itemid',41406),(28016,'events','itemid',41417),(28017,'history','itemid',41417),(28018,'history_log','itemid',41417),(28019,'history_str','itemid',41417),(28020,'history_text','itemid',41417),(28021,'history_uint','itemid',41417),(28022,'trends','itemid',41417),(28023,'trends_uint','itemid',41417),(28024,'events','itemid',41418),(28025,'history','itemid',41418),(28026,'history_log','itemid',41418),(28027,'history_str','itemid',41418),(28028,'history_text','itemid',41418),(28029,'history_uint','itemid',41418),(28030,'trends','itemid',41418),(28031,'trends_uint','itemid',41418),(28032,'events','itemid',41419),(28033,'history','itemid',41419),(28034,'history_log','itemid',41419),(28035,'history_str','itemid',41419),(28036,'history_text','itemid',41419),(28037,'history_uint','itemid',41419),(28038,'trends','itemid',41419),(28039,'trends_uint','itemid',41419),(28040,'events','itemid',41420),(28041,'history','itemid',41420),(28042,'history_log','itemid',41420),(28043,'history_str','itemid',41420),(28044,'history_text','itemid',41420),(28045,'history_uint','itemid',41420),(28046,'trends','itemid',41420),(28047,'trends_uint','itemid',41420),(28048,'events','itemid',41421),(28049,'history','itemid',41421),(28050,'history_log','itemid',41421),(28051,'history_str','itemid',41421),(28052,'history_text','itemid',41421),(28053,'history_uint','itemid',41421),(28054,'trends','itemid',41421),(28055,'trends_uint','itemid',41421),(28056,'events','itemid',41422),(28057,'history','itemid',41422),(28058,'history_log','itemid',41422),(28059,'history_str','itemid',41422),(28060,'history_text','itemid',41422),(28061,'history_uint','itemid',41422),(28062,'trends','itemid',41422),(28063,'trends_uint','itemid',41422),(28064,'events','itemid',41423),(28065,'history','itemid',41423),(28066,'history_log','itemid',41423),(28067,'history_str','itemid',41423),(28068,'history_text','itemid',41423),(28069,'history_uint','itemid',41423),(28070,'trends','itemid',41423),(28071,'trends_uint','itemid',41423),(28072,'events','itemid',41424),(28073,'history','itemid',41424),(28074,'history_log','itemid',41424),(28075,'history_str','itemid',41424),(28076,'history_text','itemid',41424),(28077,'history_uint','itemid',41424),(28078,'trends','itemid',41424),(28079,'trends_uint','itemid',41424),(28080,'events','itemid',41425),(28081,'history','itemid',41425),(28082,'history_log','itemid',41425),(28083,'history_str','itemid',41425),(28084,'history_text','itemid',41425),(28085,'history_uint','itemid',41425),(28086,'trends','itemid',41425),(28087,'trends_uint','itemid',41425),(28088,'events','itemid',41426),(28089,'history','itemid',41426),(28090,'history_log','itemid',41426),(28091,'history_str','itemid',41426),(28092,'history_text','itemid',41426),(28093,'history_uint','itemid',41426),(28094,'trends','itemid',41426),(28095,'trends_uint','itemid',41426),(28096,'events','itemid',41427),(28097,'history','itemid',41427),(28098,'history_log','itemid',41427),(28099,'history_str','itemid',41427),(28100,'history_text','itemid',41427),(28101,'history_uint','itemid',41427),(28102,'trends','itemid',41427),(28103,'trends_uint','itemid',41427),(28104,'events','itemid',41438),(28105,'history','itemid',41438),(28106,'history_log','itemid',41438),(28107,'history_str','itemid',41438),(28108,'history_text','itemid',41438),(28109,'history_uint','itemid',41438),(28110,'trends','itemid',41438),(28111,'trends_uint','itemid',41438),(28112,'events','itemid',41439),(28113,'history','itemid',41439),(28114,'history_log','itemid',41439),(28115,'history_str','itemid',41439),(28116,'history_text','itemid',41439),(28117,'history_uint','itemid',41439),(28118,'trends','itemid',41439),(28119,'trends_uint','itemid',41439),(28120,'events','itemid',41440),(28121,'history','itemid',41440),(28122,'history_log','itemid',41440),(28123,'history_str','itemid',41440),(28124,'history_text','itemid',41440),(28125,'history_uint','itemid',41440),(28126,'trends','itemid',41440),(28127,'trends_uint','itemid',41440),(28128,'events','itemid',41441),(28129,'history','itemid',41441),(28130,'history_log','itemid',41441),(28131,'history_str','itemid',41441),(28132,'history_text','itemid',41441),(28133,'history_uint','itemid',41441),(28134,'trends','itemid',41441),(28135,'trends_uint','itemid',41441),(28136,'events','itemid',41442),(28137,'history','itemid',41442),(28138,'history_log','itemid',41442),(28139,'history_str','itemid',41442),(28140,'history_text','itemid',41442),(28141,'history_uint','itemid',41442),(28142,'trends','itemid',41442),(28143,'trends_uint','itemid',41442),(28144,'events','itemid',41443),(28145,'history','itemid',41443),(28146,'history_log','itemid',41443),(28147,'history_str','itemid',41443),(28148,'history_text','itemid',41443),(28149,'history_uint','itemid',41443),(28150,'trends','itemid',41443),(28151,'trends_uint','itemid',41443),(28152,'events','itemid',41444),(28153,'history','itemid',41444),(28154,'history_log','itemid',41444),(28155,'history_str','itemid',41444),(28156,'history_text','itemid',41444),(28157,'history_uint','itemid',41444),(28158,'trends','itemid',41444),(28159,'trends_uint','itemid',41444),(28160,'events','itemid',41445),(28161,'history','itemid',41445),(28162,'history_log','itemid',41445),(28163,'history_str','itemid',41445),(28164,'history_text','itemid',41445),(28165,'history_uint','itemid',41445),(28166,'trends','itemid',41445),(28167,'trends_uint','itemid',41445),(28168,'events','itemid',41446),(28169,'history','itemid',41446),(28170,'history_log','itemid',41446),(28171,'history_str','itemid',41446),(28172,'history_text','itemid',41446),(28173,'history_uint','itemid',41446),(28174,'trends','itemid',41446),(28175,'trends_uint','itemid',41446),(28176,'events','itemid',41447),(28177,'history','itemid',41447),(28178,'history_log','itemid',41447),(28179,'history_str','itemid',41447),(28180,'history_text','itemid',41447),(28181,'history_uint','itemid',41447),(28182,'trends','itemid',41447),(28183,'trends_uint','itemid',41447),(28184,'events','itemid',41448),(28185,'history','itemid',41448),(28186,'history_log','itemid',41448),(28187,'history_str','itemid',41448),(28188,'history_text','itemid',41448),(28189,'history_uint','itemid',41448),(28190,'trends','itemid',41448),(28191,'trends_uint','itemid',41448),(28192,'events','itemid',41459),(28193,'history','itemid',41459),(28194,'history_log','itemid',41459),(28195,'history_str','itemid',41459),(28196,'history_text','itemid',41459),(28197,'history_uint','itemid',41459),(28198,'trends','itemid',41459),(28199,'trends_uint','itemid',41459),(28200,'events','itemid',41460),(28201,'history','itemid',41460),(28202,'history_log','itemid',41460),(28203,'history_str','itemid',41460),(28204,'history_text','itemid',41460),(28205,'history_uint','itemid',41460),(28206,'trends','itemid',41460),(28207,'trends_uint','itemid',41460),(28208,'events','itemid',41461),(28209,'history','itemid',41461),(28210,'history_log','itemid',41461),(28211,'history_str','itemid',41461),(28212,'history_text','itemid',41461),(28213,'history_uint','itemid',41461),(28214,'trends','itemid',41461),(28215,'trends_uint','itemid',41461),(28216,'events','itemid',41462),(28217,'history','itemid',41462),(28218,'history_log','itemid',41462),(28219,'history_str','itemid',41462),(28220,'history_text','itemid',41462),(28221,'history_uint','itemid',41462),(28222,'trends','itemid',41462),(28223,'trends_uint','itemid',41462),(28224,'events','itemid',41463),(28225,'history','itemid',41463),(28226,'history_log','itemid',41463),(28227,'history_str','itemid',41463),(28228,'history_text','itemid',41463),(28229,'history_uint','itemid',41463),(28230,'trends','itemid',41463),(28231,'trends_uint','itemid',41463),(28232,'events','itemid',41464),(28233,'history','itemid',41464),(28234,'history_log','itemid',41464),(28235,'history_str','itemid',41464),(28236,'history_text','itemid',41464),(28237,'history_uint','itemid',41464),(28238,'trends','itemid',41464),(28239,'trends_uint','itemid',41464),(28240,'events','itemid',41465),(28241,'history','itemid',41465),(28242,'history_log','itemid',41465),(28243,'history_str','itemid',41465),(28244,'history_text','itemid',41465),(28245,'history_uint','itemid',41465),(28246,'trends','itemid',41465),(28247,'trends_uint','itemid',41465),(28248,'events','itemid',41466),(28249,'history','itemid',41466),(28250,'history_log','itemid',41466),(28251,'history_str','itemid',41466),(28252,'history_text','itemid',41466),(28253,'history_uint','itemid',41466),(28254,'trends','itemid',41466),(28255,'trends_uint','itemid',41466),(28256,'events','itemid',41467),(28257,'history','itemid',41467),(28258,'history_log','itemid',41467),(28259,'history_str','itemid',41467),(28260,'history_text','itemid',41467),(28261,'history_uint','itemid',41467),(28262,'trends','itemid',41467),(28263,'trends_uint','itemid',41467),(28264,'events','itemid',41468),(28265,'history','itemid',41468),(28266,'history_log','itemid',41468),(28267,'history_str','itemid',41468),(28268,'history_text','itemid',41468),(28269,'history_uint','itemid',41468),(28270,'trends','itemid',41468),(28271,'trends_uint','itemid',41468),(28272,'events','itemid',41469),(28273,'history','itemid',41469),(28274,'history_log','itemid',41469),(28275,'history_str','itemid',41469),(28276,'history_text','itemid',41469),(28277,'history_uint','itemid',41469),(28278,'trends','itemid',41469),(28279,'trends_uint','itemid',41469),(28280,'events','itemid',41480),(28281,'history','itemid',41480),(28282,'history_log','itemid',41480),(28283,'history_str','itemid',41480),(28284,'history_text','itemid',41480),(28285,'history_uint','itemid',41480),(28286,'trends','itemid',41480),(28287,'trends_uint','itemid',41480),(28288,'events','itemid',41481),(28289,'history','itemid',41481),(28290,'history_log','itemid',41481),(28291,'history_str','itemid',41481),(28292,'history_text','itemid',41481),(28293,'history_uint','itemid',41481),(28294,'trends','itemid',41481),(28295,'trends_uint','itemid',41481),(28296,'events','itemid',41482),(28297,'history','itemid',41482),(28298,'history_log','itemid',41482),(28299,'history_str','itemid',41482),(28300,'history_text','itemid',41482),(28301,'history_uint','itemid',41482),(28302,'trends','itemid',41482),(28303,'trends_uint','itemid',41482),(28304,'events','itemid',41483),(28305,'history','itemid',41483),(28306,'history_log','itemid',41483),(28307,'history_str','itemid',41483),(28308,'history_text','itemid',41483),(28309,'history_uint','itemid',41483),(28310,'trends','itemid',41483),(28311,'trends_uint','itemid',41483),(28312,'events','itemid',41484),(28313,'history','itemid',41484),(28314,'history_log','itemid',41484),(28315,'history_str','itemid',41484),(28316,'history_text','itemid',41484),(28317,'history_uint','itemid',41484),(28318,'trends','itemid',41484),(28319,'trends_uint','itemid',41484),(28320,'events','itemid',41485),(28321,'history','itemid',41485),(28322,'history_log','itemid',41485),(28323,'history_str','itemid',41485),(28324,'history_text','itemid',41485),(28325,'history_uint','itemid',41485),(28326,'trends','itemid',41485),(28327,'trends_uint','itemid',41485),(28328,'events','itemid',41486),(28329,'history','itemid',41486),(28330,'history_log','itemid',41486),(28331,'history_str','itemid',41486),(28332,'history_text','itemid',41486),(28333,'history_uint','itemid',41486),(28334,'trends','itemid',41486),(28335,'trends_uint','itemid',41486),(28336,'events','itemid',41487),(28337,'history','itemid',41487),(28338,'history_log','itemid',41487),(28339,'history_str','itemid',41487),(28340,'history_text','itemid',41487),(28341,'history_uint','itemid',41487),(28342,'trends','itemid',41487),(28343,'trends_uint','itemid',41487),(28344,'events','itemid',41488),(28345,'history','itemid',41488),(28346,'history_log','itemid',41488),(28347,'history_str','itemid',41488),(28348,'history_text','itemid',41488),(28349,'history_uint','itemid',41488),(28350,'trends','itemid',41488),(28351,'trends_uint','itemid',41488),(28352,'events','itemid',41489),(28353,'history','itemid',41489),(28354,'history_log','itemid',41489),(28355,'history_str','itemid',41489),(28356,'history_text','itemid',41489),(28357,'history_uint','itemid',41489),(28358,'trends','itemid',41489),(28359,'trends_uint','itemid',41489),(28360,'events','itemid',41490),(28361,'history','itemid',41490),(28362,'history_log','itemid',41490),(28363,'history_str','itemid',41490),(28364,'history_text','itemid',41490),(28365,'history_uint','itemid',41490),(28366,'trends','itemid',41490),(28367,'trends_uint','itemid',41490),(28368,'events','itemid',41501),(28369,'history','itemid',41501),(28370,'history_log','itemid',41501),(28371,'history_str','itemid',41501),(28372,'history_text','itemid',41501),(28373,'history_uint','itemid',41501),(28374,'trends','itemid',41501),(28375,'trends_uint','itemid',41501),(28376,'events','itemid',41502),(28377,'history','itemid',41502),(28378,'history_log','itemid',41502),(28379,'history_str','itemid',41502),(28380,'history_text','itemid',41502),(28381,'history_uint','itemid',41502),(28382,'trends','itemid',41502),(28383,'trends_uint','itemid',41502),(28384,'events','itemid',41503),(28385,'history','itemid',41503),(28386,'history_log','itemid',41503),(28387,'history_str','itemid',41503),(28388,'history_text','itemid',41503),(28389,'history_uint','itemid',41503),(28390,'trends','itemid',41503),(28391,'trends_uint','itemid',41503),(28392,'events','itemid',41504),(28393,'history','itemid',41504),(28394,'history_log','itemid',41504),(28395,'history_str','itemid',41504),(28396,'history_text','itemid',41504),(28397,'history_uint','itemid',41504),(28398,'trends','itemid',41504),(28399,'trends_uint','itemid',41504),(28400,'events','itemid',41505),(28401,'history','itemid',41505),(28402,'history_log','itemid',41505),(28403,'history_str','itemid',41505),(28404,'history_text','itemid',41505),(28405,'history_uint','itemid',41505),(28406,'trends','itemid',41505),(28407,'trends_uint','itemid',41505),(28408,'events','itemid',41506),(28409,'history','itemid',41506),(28410,'history_log','itemid',41506),(28411,'history_str','itemid',41506),(28412,'history_text','itemid',41506),(28413,'history_uint','itemid',41506),(28414,'trends','itemid',41506),(28415,'trends_uint','itemid',41506),(28416,'events','itemid',41507),(28417,'history','itemid',41507),(28418,'history_log','itemid',41507),(28419,'history_str','itemid',41507),(28420,'history_text','itemid',41507),(28421,'history_uint','itemid',41507),(28422,'trends','itemid',41507),(28423,'trends_uint','itemid',41507),(28424,'events','itemid',41508),(28425,'history','itemid',41508),(28426,'history_log','itemid',41508),(28427,'history_str','itemid',41508),(28428,'history_text','itemid',41508),(28429,'history_uint','itemid',41508),(28430,'trends','itemid',41508),(28431,'trends_uint','itemid',41508),(28432,'events','itemid',41509),(28433,'history','itemid',41509),(28434,'history_log','itemid',41509),(28435,'history_str','itemid',41509),(28436,'history_text','itemid',41509),(28437,'history_uint','itemid',41509),(28438,'trends','itemid',41509),(28439,'trends_uint','itemid',41509),(28440,'events','itemid',41510),(28441,'history','itemid',41510),(28442,'history_log','itemid',41510),(28443,'history_str','itemid',41510),(28444,'history_text','itemid',41510),(28445,'history_uint','itemid',41510),(28446,'trends','itemid',41510),(28447,'trends_uint','itemid',41510),(28448,'events','itemid',41511),(28449,'history','itemid',41511),(28450,'history_log','itemid',41511),(28451,'history_str','itemid',41511),(28452,'history_text','itemid',41511),(28453,'history_uint','itemid',41511),(28454,'trends','itemid',41511),(28455,'trends_uint','itemid',41511),(28456,'events','itemid',41522),(28457,'history','itemid',41522),(28458,'history_log','itemid',41522),(28459,'history_str','itemid',41522),(28460,'history_text','itemid',41522),(28461,'history_uint','itemid',41522),(28462,'trends','itemid',41522),(28463,'trends_uint','itemid',41522),(28464,'events','itemid',41523),(28465,'history','itemid',41523),(28466,'history_log','itemid',41523),(28467,'history_str','itemid',41523),(28468,'history_text','itemid',41523),(28469,'history_uint','itemid',41523),(28470,'trends','itemid',41523),(28471,'trends_uint','itemid',41523),(28472,'events','itemid',41524),(28473,'history','itemid',41524),(28474,'history_log','itemid',41524),(28475,'history_str','itemid',41524),(28476,'history_text','itemid',41524),(28477,'history_uint','itemid',41524),(28478,'trends','itemid',41524),(28479,'trends_uint','itemid',41524),(28480,'events','itemid',41525),(28481,'history','itemid',41525),(28482,'history_log','itemid',41525),(28483,'history_str','itemid',41525),(28484,'history_text','itemid',41525),(28485,'history_uint','itemid',41525),(28486,'trends','itemid',41525),(28487,'trends_uint','itemid',41525),(28488,'events','itemid',41526),(28489,'history','itemid',41526),(28490,'history_log','itemid',41526),(28491,'history_str','itemid',41526),(28492,'history_text','itemid',41526),(28493,'history_uint','itemid',41526),(28494,'trends','itemid',41526),(28495,'trends_uint','itemid',41526),(28496,'events','itemid',41527),(28497,'history','itemid',41527),(28498,'history_log','itemid',41527),(28499,'history_str','itemid',41527),(28500,'history_text','itemid',41527),(28501,'history_uint','itemid',41527),(28502,'trends','itemid',41527),(28503,'trends_uint','itemid',41527),(28504,'events','itemid',41528),(28505,'history','itemid',41528),(28506,'history_log','itemid',41528),(28507,'history_str','itemid',41528),(28508,'history_text','itemid',41528),(28509,'history_uint','itemid',41528),(28510,'trends','itemid',41528),(28511,'trends_uint','itemid',41528),(28512,'events','itemid',41529),(28513,'history','itemid',41529),(28514,'history_log','itemid',41529),(28515,'history_str','itemid',41529),(28516,'history_text','itemid',41529),(28517,'history_uint','itemid',41529),(28518,'trends','itemid',41529),(28519,'trends_uint','itemid',41529),(28520,'events','itemid',41530),(28521,'history','itemid',41530),(28522,'history_log','itemid',41530),(28523,'history_str','itemid',41530),(28524,'history_text','itemid',41530),(28525,'history_uint','itemid',41530),(28526,'trends','itemid',41530),(28527,'trends_uint','itemid',41530),(28528,'events','itemid',41531),(28529,'history','itemid',41531),(28530,'history_log','itemid',41531),(28531,'history_str','itemid',41531),(28532,'history_text','itemid',41531),(28533,'history_uint','itemid',41531),(28534,'trends','itemid',41531),(28535,'trends_uint','itemid',41531),(28536,'events','itemid',41532),(28537,'history','itemid',41532),(28538,'history_log','itemid',41532),(28539,'history_str','itemid',41532),(28540,'history_text','itemid',41532),(28541,'history_uint','itemid',41532),(28542,'trends','itemid',41532),(28543,'trends_uint','itemid',41532),(28544,'events','itemid',41543),(28545,'history','itemid',41543),(28546,'history_log','itemid',41543),(28547,'history_str','itemid',41543),(28548,'history_text','itemid',41543),(28549,'history_uint','itemid',41543),(28550,'trends','itemid',41543),(28551,'trends_uint','itemid',41543),(28552,'events','itemid',41544),(28553,'history','itemid',41544),(28554,'history_log','itemid',41544),(28555,'history_str','itemid',41544),(28556,'history_text','itemid',41544),(28557,'history_uint','itemid',41544),(28558,'trends','itemid',41544),(28559,'trends_uint','itemid',41544),(28560,'events','itemid',41545),(28561,'history','itemid',41545),(28562,'history_log','itemid',41545),(28563,'history_str','itemid',41545),(28564,'history_text','itemid',41545),(28565,'history_uint','itemid',41545),(28566,'trends','itemid',41545),(28567,'trends_uint','itemid',41545),(28568,'events','itemid',41546),(28569,'history','itemid',41546),(28570,'history_log','itemid',41546),(28571,'history_str','itemid',41546),(28572,'history_text','itemid',41546),(28573,'history_uint','itemid',41546),(28574,'trends','itemid',41546),(28575,'trends_uint','itemid',41546),(28576,'events','itemid',41547),(28577,'history','itemid',41547),(28578,'history_log','itemid',41547),(28579,'history_str','itemid',41547),(28580,'history_text','itemid',41547),(28581,'history_uint','itemid',41547),(28582,'trends','itemid',41547),(28583,'trends_uint','itemid',41547),(28584,'events','itemid',41548),(28585,'history','itemid',41548),(28586,'history_log','itemid',41548),(28587,'history_str','itemid',41548),(28588,'history_text','itemid',41548),(28589,'history_uint','itemid',41548),(28590,'trends','itemid',41548),(28591,'trends_uint','itemid',41548),(28592,'events','itemid',41549),(28593,'history','itemid',41549),(28594,'history_log','itemid',41549),(28595,'history_str','itemid',41549),(28596,'history_text','itemid',41549),(28597,'history_uint','itemid',41549),(28598,'trends','itemid',41549),(28599,'trends_uint','itemid',41549),(28600,'events','itemid',41550),(28601,'history','itemid',41550),(28602,'history_log','itemid',41550),(28603,'history_str','itemid',41550),(28604,'history_text','itemid',41550),(28605,'history_uint','itemid',41550),(28606,'trends','itemid',41550),(28607,'trends_uint','itemid',41550),(28608,'events','itemid',41551),(28609,'history','itemid',41551),(28610,'history_log','itemid',41551),(28611,'history_str','itemid',41551),(28612,'history_text','itemid',41551),(28613,'history_uint','itemid',41551),(28614,'trends','itemid',41551),(28615,'trends_uint','itemid',41551),(28616,'events','itemid',41552),(28617,'history','itemid',41552),(28618,'history_log','itemid',41552),(28619,'history_str','itemid',41552),(28620,'history_text','itemid',41552),(28621,'history_uint','itemid',41552),(28622,'trends','itemid',41552),(28623,'trends_uint','itemid',41552),(28624,'events','itemid',41553),(28625,'history','itemid',41553),(28626,'history_log','itemid',41553),(28627,'history_str','itemid',41553),(28628,'history_text','itemid',41553),(28629,'history_uint','itemid',41553),(28630,'trends','itemid',41553),(28631,'trends_uint','itemid',41553),(28632,'events','itemid',41564),(28633,'history','itemid',41564),(28634,'history_log','itemid',41564),(28635,'history_str','itemid',41564),(28636,'history_text','itemid',41564),(28637,'history_uint','itemid',41564),(28638,'trends','itemid',41564),(28639,'trends_uint','itemid',41564),(28640,'events','itemid',41565),(28641,'history','itemid',41565),(28642,'history_log','itemid',41565),(28643,'history_str','itemid',41565),(28644,'history_text','itemid',41565),(28645,'history_uint','itemid',41565),(28646,'trends','itemid',41565),(28647,'trends_uint','itemid',41565),(28648,'events','itemid',41566),(28649,'history','itemid',41566),(28650,'history_log','itemid',41566),(28651,'history_str','itemid',41566),(28652,'history_text','itemid',41566),(28653,'history_uint','itemid',41566),(28654,'trends','itemid',41566),(28655,'trends_uint','itemid',41566),(28656,'events','itemid',41567),(28657,'history','itemid',41567),(28658,'history_log','itemid',41567),(28659,'history_str','itemid',41567),(28660,'history_text','itemid',41567),(28661,'history_uint','itemid',41567),(28662,'trends','itemid',41567),(28663,'trends_uint','itemid',41567),(28664,'events','itemid',41568),(28665,'history','itemid',41568),(28666,'history_log','itemid',41568),(28667,'history_str','itemid',41568),(28668,'history_text','itemid',41568),(28669,'history_uint','itemid',41568),(28670,'trends','itemid',41568),(28671,'trends_uint','itemid',41568),(28672,'events','itemid',41569),(28673,'history','itemid',41569),(28674,'history_log','itemid',41569),(28675,'history_str','itemid',41569),(28676,'history_text','itemid',41569),(28677,'history_uint','itemid',41569),(28678,'trends','itemid',41569),(28679,'trends_uint','itemid',41569),(28680,'events','itemid',41570),(28681,'history','itemid',41570),(28682,'history_log','itemid',41570),(28683,'history_str','itemid',41570),(28684,'history_text','itemid',41570),(28685,'history_uint','itemid',41570),(28686,'trends','itemid',41570),(28687,'trends_uint','itemid',41570),(28688,'events','itemid',41571),(28689,'history','itemid',41571),(28690,'history_log','itemid',41571),(28691,'history_str','itemid',41571),(28692,'history_text','itemid',41571),(28693,'history_uint','itemid',41571),(28694,'trends','itemid',41571),(28695,'trends_uint','itemid',41571),(28696,'events','itemid',41572),(28697,'history','itemid',41572),(28698,'history_log','itemid',41572),(28699,'history_str','itemid',41572),(28700,'history_text','itemid',41572),(28701,'history_uint','itemid',41572),(28702,'trends','itemid',41572),(28703,'trends_uint','itemid',41572),(28704,'events','itemid',41573),(28705,'history','itemid',41573),(28706,'history_log','itemid',41573),(28707,'history_str','itemid',41573),(28708,'history_text','itemid',41573),(28709,'history_uint','itemid',41573),(28710,'trends','itemid',41573),(28711,'trends_uint','itemid',41573),(28712,'events','itemid',41574),(28713,'history','itemid',41574),(28714,'history_log','itemid',41574),(28715,'history_str','itemid',41574),(28716,'history_text','itemid',41574),(28717,'history_uint','itemid',41574),(28718,'trends','itemid',41574),(28719,'trends_uint','itemid',41574),(28720,'events','itemid',41585),(28721,'history','itemid',41585),(28722,'history_log','itemid',41585),(28723,'history_str','itemid',41585),(28724,'history_text','itemid',41585),(28725,'history_uint','itemid',41585),(28726,'trends','itemid',41585),(28727,'trends_uint','itemid',41585),(28728,'events','itemid',41586),(28729,'history','itemid',41586),(28730,'history_log','itemid',41586),(28731,'history_str','itemid',41586),(28732,'history_text','itemid',41586),(28733,'history_uint','itemid',41586),(28734,'trends','itemid',41586),(28735,'trends_uint','itemid',41586),(28736,'events','itemid',41587),(28737,'history','itemid',41587),(28738,'history_log','itemid',41587),(28739,'history_str','itemid',41587),(28740,'history_text','itemid',41587),(28741,'history_uint','itemid',41587),(28742,'trends','itemid',41587),(28743,'trends_uint','itemid',41587),(28744,'events','itemid',41588),(28745,'history','itemid',41588),(28746,'history_log','itemid',41588),(28747,'history_str','itemid',41588),(28748,'history_text','itemid',41588),(28749,'history_uint','itemid',41588),(28750,'trends','itemid',41588),(28751,'trends_uint','itemid',41588),(28752,'events','itemid',41589),(28753,'history','itemid',41589),(28754,'history_log','itemid',41589),(28755,'history_str','itemid',41589),(28756,'history_text','itemid',41589),(28757,'history_uint','itemid',41589),(28758,'trends','itemid',41589),(28759,'trends_uint','itemid',41589),(28760,'events','itemid',41590),(28761,'history','itemid',41590),(28762,'history_log','itemid',41590),(28763,'history_str','itemid',41590),(28764,'history_text','itemid',41590),(28765,'history_uint','itemid',41590),(28766,'trends','itemid',41590),(28767,'trends_uint','itemid',41590),(28768,'events','itemid',41591),(28769,'history','itemid',41591),(28770,'history_log','itemid',41591),(28771,'history_str','itemid',41591),(28772,'history_text','itemid',41591),(28773,'history_uint','itemid',41591),(28774,'trends','itemid',41591),(28775,'trends_uint','itemid',41591),(28776,'events','itemid',41592),(28777,'history','itemid',41592),(28778,'history_log','itemid',41592),(28779,'history_str','itemid',41592),(28780,'history_text','itemid',41592),(28781,'history_uint','itemid',41592),(28782,'trends','itemid',41592),(28783,'trends_uint','itemid',41592),(28784,'events','itemid',41593),(28785,'history','itemid',41593),(28786,'history_log','itemid',41593),(28787,'history_str','itemid',41593),(28788,'history_text','itemid',41593),(28789,'history_uint','itemid',41593),(28790,'trends','itemid',41593),(28791,'trends_uint','itemid',41593),(28792,'events','itemid',41594),(28793,'history','itemid',41594),(28794,'history_log','itemid',41594),(28795,'history_str','itemid',41594),(28796,'history_text','itemid',41594),(28797,'history_uint','itemid',41594),(28798,'trends','itemid',41594),(28799,'trends_uint','itemid',41594),(28800,'events','itemid',41595),(28801,'history','itemid',41595),(28802,'history_log','itemid',41595),(28803,'history_str','itemid',41595),(28804,'history_text','itemid',41595),(28805,'history_uint','itemid',41595),(28806,'trends','itemid',41595),(28807,'trends_uint','itemid',41595),(28808,'events','itemid',41900),(28809,'history','itemid',41900),(28810,'history_log','itemid',41900),(28811,'history_str','itemid',41900),(28812,'history_text','itemid',41900),(28813,'history_uint','itemid',41900),(28814,'trends','itemid',41900),(28815,'trends_uint','itemid',41900),(28816,'events','itemid',41901),(28817,'history','itemid',41901),(28818,'history_log','itemid',41901),(28819,'history_str','itemid',41901),(28820,'history_text','itemid',41901),(28821,'history_uint','itemid',41901),(28822,'trends','itemid',41901),(28823,'trends_uint','itemid',41901),(28824,'events','itemid',41902),(28825,'history','itemid',41902),(28826,'history_log','itemid',41902),(28827,'history_str','itemid',41902),(28828,'history_text','itemid',41902),(28829,'history_uint','itemid',41902),(28830,'trends','itemid',41902),(28831,'trends_uint','itemid',41902),(28832,'events','itemid',41903),(28833,'history','itemid',41903),(28834,'history_log','itemid',41903),(28835,'history_str','itemid',41903),(28836,'history_text','itemid',41903),(28837,'history_uint','itemid',41903),(28838,'trends','itemid',41903),(28839,'trends_uint','itemid',41903),(28840,'events','itemid',41904),(28841,'history','itemid',41904),(28842,'history_log','itemid',41904),(28843,'history_str','itemid',41904),(28844,'history_text','itemid',41904),(28845,'history_uint','itemid',41904),(28846,'trends','itemid',41904),(28847,'trends_uint','itemid',41904),(28848,'events','itemid',41905),(28849,'history','itemid',41905),(28850,'history_log','itemid',41905),(28851,'history_str','itemid',41905),(28852,'history_text','itemid',41905),(28853,'history_uint','itemid',41905),(28854,'trends','itemid',41905),(28855,'trends_uint','itemid',41905),(28856,'events','itemid',41906),(28857,'history','itemid',41906),(28858,'history_log','itemid',41906),(28859,'history_str','itemid',41906),(28860,'history_text','itemid',41906),(28861,'history_uint','itemid',41906),(28862,'trends','itemid',41906),(28863,'trends_uint','itemid',41906),(28864,'events','itemid',41907),(28865,'history','itemid',41907),(28866,'history_log','itemid',41907),(28867,'history_str','itemid',41907),(28868,'history_text','itemid',41907),(28869,'history_uint','itemid',41907),(28870,'trends','itemid',41907),(28871,'trends_uint','itemid',41907),(28872,'events','itemid',41908),(28873,'history','itemid',41908),(28874,'history_log','itemid',41908),(28875,'history_str','itemid',41908),(28876,'history_text','itemid',41908),(28877,'history_uint','itemid',41908),(28878,'trends','itemid',41908),(28879,'trends_uint','itemid',41908),(28880,'events','itemid',41909),(28881,'history','itemid',41909),(28882,'history_log','itemid',41909),(28883,'history_str','itemid',41909),(28884,'history_text','itemid',41909),(28885,'history_uint','itemid',41909),(28886,'trends','itemid',41909),(28887,'trends_uint','itemid',41909),(28888,'events','itemid',41910),(28889,'history','itemid',41910),(28890,'history_log','itemid',41910),(28891,'history_str','itemid',41910),(28892,'history_text','itemid',41910),(28893,'history_uint','itemid',41910),(28894,'trends','itemid',41910),(28895,'trends_uint','itemid',41910),(28896,'events','itemid',41921),(28897,'history','itemid',41921),(28898,'history_log','itemid',41921),(28899,'history_str','itemid',41921),(28900,'history_text','itemid',41921),(28901,'history_uint','itemid',41921),(28902,'trends','itemid',41921),(28903,'trends_uint','itemid',41921),(28904,'events','itemid',41922),(28905,'history','itemid',41922),(28906,'history_log','itemid',41922),(28907,'history_str','itemid',41922),(28908,'history_text','itemid',41922),(28909,'history_uint','itemid',41922),(28910,'trends','itemid',41922),(28911,'trends_uint','itemid',41922),(28912,'events','itemid',41923),(28913,'history','itemid',41923),(28914,'history_log','itemid',41923),(28915,'history_str','itemid',41923),(28916,'history_text','itemid',41923),(28917,'history_uint','itemid',41923),(28918,'trends','itemid',41923),(28919,'trends_uint','itemid',41923),(28920,'events','itemid',41924),(28921,'history','itemid',41924),(28922,'history_log','itemid',41924),(28923,'history_str','itemid',41924),(28924,'history_text','itemid',41924),(28925,'history_uint','itemid',41924),(28926,'trends','itemid',41924),(28927,'trends_uint','itemid',41924),(28928,'events','itemid',41925),(28929,'history','itemid',41925),(28930,'history_log','itemid',41925),(28931,'history_str','itemid',41925),(28932,'history_text','itemid',41925),(28933,'history_uint','itemid',41925),(28934,'trends','itemid',41925),(28935,'trends_uint','itemid',41925),(28936,'events','itemid',41926),(28937,'history','itemid',41926),(28938,'history_log','itemid',41926),(28939,'history_str','itemid',41926),(28940,'history_text','itemid',41926),(28941,'history_uint','itemid',41926),(28942,'trends','itemid',41926),(28943,'trends_uint','itemid',41926),(28944,'events','itemid',41927),(28945,'history','itemid',41927),(28946,'history_log','itemid',41927),(28947,'history_str','itemid',41927),(28948,'history_text','itemid',41927),(28949,'history_uint','itemid',41927),(28950,'trends','itemid',41927),(28951,'trends_uint','itemid',41927),(28952,'events','itemid',41928),(28953,'history','itemid',41928),(28954,'history_log','itemid',41928),(28955,'history_str','itemid',41928),(28956,'history_text','itemid',41928),(28957,'history_uint','itemid',41928),(28958,'trends','itemid',41928),(28959,'trends_uint','itemid',41928),(28960,'events','itemid',41929),(28961,'history','itemid',41929),(28962,'history_log','itemid',41929),(28963,'history_str','itemid',41929),(28964,'history_text','itemid',41929),(28965,'history_uint','itemid',41929),(28966,'trends','itemid',41929),(28967,'trends_uint','itemid',41929),(28968,'events','itemid',41930),(28969,'history','itemid',41930),(28970,'history_log','itemid',41930),(28971,'history_str','itemid',41930),(28972,'history_text','itemid',41930),(28973,'history_uint','itemid',41930),(28974,'trends','itemid',41930),(28975,'trends_uint','itemid',41930),(28976,'events','itemid',41931),(28977,'history','itemid',41931),(28978,'history_log','itemid',41931),(28979,'history_str','itemid',41931),(28980,'history_text','itemid',41931),(28981,'history_uint','itemid',41931),(28982,'trends','itemid',41931),(28983,'trends_uint','itemid',41931),(28984,'events','itemid',41942),(28985,'history','itemid',41942),(28986,'history_log','itemid',41942),(28987,'history_str','itemid',41942),(28988,'history_text','itemid',41942),(28989,'history_uint','itemid',41942); INSERT INTO `housekeeper` VALUES (28990,'trends','itemid',41942),(28991,'trends_uint','itemid',41942),(28992,'events','itemid',41943),(28993,'history','itemid',41943),(28994,'history_log','itemid',41943),(28995,'history_str','itemid',41943),(28996,'history_text','itemid',41943),(28997,'history_uint','itemid',41943),(28998,'trends','itemid',41943),(28999,'trends_uint','itemid',41943),(29000,'events','itemid',41944),(29001,'history','itemid',41944),(29002,'history_log','itemid',41944),(29003,'history_str','itemid',41944),(29004,'history_text','itemid',41944),(29005,'history_uint','itemid',41944),(29006,'trends','itemid',41944),(29007,'trends_uint','itemid',41944),(29008,'events','itemid',41945),(29009,'history','itemid',41945),(29010,'history_log','itemid',41945),(29011,'history_str','itemid',41945),(29012,'history_text','itemid',41945),(29013,'history_uint','itemid',41945),(29014,'trends','itemid',41945),(29015,'trends_uint','itemid',41945),(29016,'events','itemid',41946),(29017,'history','itemid',41946),(29018,'history_log','itemid',41946),(29019,'history_str','itemid',41946),(29020,'history_text','itemid',41946),(29021,'history_uint','itemid',41946),(29022,'trends','itemid',41946),(29023,'trends_uint','itemid',41946),(29024,'events','itemid',41947),(29025,'history','itemid',41947),(29026,'history_log','itemid',41947),(29027,'history_str','itemid',41947),(29028,'history_text','itemid',41947),(29029,'history_uint','itemid',41947),(29030,'trends','itemid',41947),(29031,'trends_uint','itemid',41947),(29032,'events','itemid',41948),(29033,'history','itemid',41948),(29034,'history_log','itemid',41948),(29035,'history_str','itemid',41948),(29036,'history_text','itemid',41948),(29037,'history_uint','itemid',41948),(29038,'trends','itemid',41948),(29039,'trends_uint','itemid',41948),(29040,'events','itemid',41949),(29041,'history','itemid',41949),(29042,'history_log','itemid',41949),(29043,'history_str','itemid',41949),(29044,'history_text','itemid',41949),(29045,'history_uint','itemid',41949),(29046,'trends','itemid',41949),(29047,'trends_uint','itemid',41949),(29048,'events','itemid',41950),(29049,'history','itemid',41950),(29050,'history_log','itemid',41950),(29051,'history_str','itemid',41950),(29052,'history_text','itemid',41950),(29053,'history_uint','itemid',41950),(29054,'trends','itemid',41950),(29055,'trends_uint','itemid',41950),(29056,'events','itemid',41951),(29057,'history','itemid',41951),(29058,'history_log','itemid',41951),(29059,'history_str','itemid',41951),(29060,'history_text','itemid',41951),(29061,'history_uint','itemid',41951),(29062,'trends','itemid',41951),(29063,'trends_uint','itemid',41951),(29064,'events','itemid',41952),(29065,'history','itemid',41952),(29066,'history_log','itemid',41952),(29067,'history_str','itemid',41952),(29068,'history_text','itemid',41952),(29069,'history_uint','itemid',41952),(29070,'trends','itemid',41952),(29071,'trends_uint','itemid',41952),(29072,'events','itemid',41963),(29073,'history','itemid',41963),(29074,'history_log','itemid',41963),(29075,'history_str','itemid',41963),(29076,'history_text','itemid',41963),(29077,'history_uint','itemid',41963),(29078,'trends','itemid',41963),(29079,'trends_uint','itemid',41963),(29080,'events','itemid',41964),(29081,'history','itemid',41964),(29082,'history_log','itemid',41964),(29083,'history_str','itemid',41964),(29084,'history_text','itemid',41964),(29085,'history_uint','itemid',41964),(29086,'trends','itemid',41964),(29087,'trends_uint','itemid',41964),(29088,'events','itemid',41965),(29089,'history','itemid',41965),(29090,'history_log','itemid',41965),(29091,'history_str','itemid',41965),(29092,'history_text','itemid',41965),(29093,'history_uint','itemid',41965),(29094,'trends','itemid',41965),(29095,'trends_uint','itemid',41965),(29096,'events','itemid',41966),(29097,'history','itemid',41966),(29098,'history_log','itemid',41966),(29099,'history_str','itemid',41966),(29100,'history_text','itemid',41966),(29101,'history_uint','itemid',41966),(29102,'trends','itemid',41966),(29103,'trends_uint','itemid',41966),(29104,'events','itemid',41967),(29105,'history','itemid',41967),(29106,'history_log','itemid',41967),(29107,'history_str','itemid',41967),(29108,'history_text','itemid',41967),(29109,'history_uint','itemid',41967),(29110,'trends','itemid',41967),(29111,'trends_uint','itemid',41967),(29112,'events','itemid',41968),(29113,'history','itemid',41968),(29114,'history_log','itemid',41968),(29115,'history_str','itemid',41968),(29116,'history_text','itemid',41968),(29117,'history_uint','itemid',41968),(29118,'trends','itemid',41968),(29119,'trends_uint','itemid',41968),(29120,'events','itemid',41969),(29121,'history','itemid',41969),(29122,'history_log','itemid',41969),(29123,'history_str','itemid',41969),(29124,'history_text','itemid',41969),(29125,'history_uint','itemid',41969),(29126,'trends','itemid',41969),(29127,'trends_uint','itemid',41969),(29128,'events','itemid',41970),(29129,'history','itemid',41970),(29130,'history_log','itemid',41970),(29131,'history_str','itemid',41970),(29132,'history_text','itemid',41970),(29133,'history_uint','itemid',41970),(29134,'trends','itemid',41970),(29135,'trends_uint','itemid',41970),(29136,'events','itemid',41971),(29137,'history','itemid',41971),(29138,'history_log','itemid',41971),(29139,'history_str','itemid',41971),(29140,'history_text','itemid',41971),(29141,'history_uint','itemid',41971),(29142,'trends','itemid',41971),(29143,'trends_uint','itemid',41971),(29144,'events','itemid',41972),(29145,'history','itemid',41972),(29146,'history_log','itemid',41972),(29147,'history_str','itemid',41972),(29148,'history_text','itemid',41972),(29149,'history_uint','itemid',41972),(29150,'trends','itemid',41972),(29151,'trends_uint','itemid',41972),(29152,'events','itemid',41973),(29153,'history','itemid',41973),(29154,'history_log','itemid',41973),(29155,'history_str','itemid',41973),(29156,'history_text','itemid',41973),(29157,'history_uint','itemid',41973),(29158,'trends','itemid',41973),(29159,'trends_uint','itemid',41973),(29160,'events','itemid',41984),(29161,'history','itemid',41984),(29162,'history_log','itemid',41984),(29163,'history_str','itemid',41984),(29164,'history_text','itemid',41984),(29165,'history_uint','itemid',41984),(29166,'trends','itemid',41984),(29167,'trends_uint','itemid',41984),(29168,'events','itemid',41985),(29169,'history','itemid',41985),(29170,'history_log','itemid',41985),(29171,'history_str','itemid',41985),(29172,'history_text','itemid',41985),(29173,'history_uint','itemid',41985),(29174,'trends','itemid',41985),(29175,'trends_uint','itemid',41985),(29176,'events','itemid',41986),(29177,'history','itemid',41986),(29178,'history_log','itemid',41986),(29179,'history_str','itemid',41986),(29180,'history_text','itemid',41986),(29181,'history_uint','itemid',41986),(29182,'trends','itemid',41986),(29183,'trends_uint','itemid',41986),(29184,'events','itemid',41987),(29185,'history','itemid',41987),(29186,'history_log','itemid',41987),(29187,'history_str','itemid',41987),(29188,'history_text','itemid',41987),(29189,'history_uint','itemid',41987),(29190,'trends','itemid',41987),(29191,'trends_uint','itemid',41987),(29192,'events','itemid',41988),(29193,'history','itemid',41988),(29194,'history_log','itemid',41988),(29195,'history_str','itemid',41988),(29196,'history_text','itemid',41988),(29197,'history_uint','itemid',41988),(29198,'trends','itemid',41988),(29199,'trends_uint','itemid',41988),(29200,'events','itemid',41989),(29201,'history','itemid',41989),(29202,'history_log','itemid',41989),(29203,'history_str','itemid',41989),(29204,'history_text','itemid',41989),(29205,'history_uint','itemid',41989),(29206,'trends','itemid',41989),(29207,'trends_uint','itemid',41989),(29208,'events','itemid',41990),(29209,'history','itemid',41990),(29210,'history_log','itemid',41990),(29211,'history_str','itemid',41990),(29212,'history_text','itemid',41990),(29213,'history_uint','itemid',41990),(29214,'trends','itemid',41990),(29215,'trends_uint','itemid',41990),(29216,'events','itemid',41991),(29217,'history','itemid',41991),(29218,'history_log','itemid',41991),(29219,'history_str','itemid',41991),(29220,'history_text','itemid',41991),(29221,'history_uint','itemid',41991),(29222,'trends','itemid',41991),(29223,'trends_uint','itemid',41991),(29224,'events','itemid',41992),(29225,'history','itemid',41992),(29226,'history_log','itemid',41992),(29227,'history_str','itemid',41992),(29228,'history_text','itemid',41992),(29229,'history_uint','itemid',41992),(29230,'trends','itemid',41992),(29231,'trends_uint','itemid',41992),(29232,'events','itemid',41993),(29233,'history','itemid',41993),(29234,'history_log','itemid',41993),(29235,'history_str','itemid',41993),(29236,'history_text','itemid',41993),(29237,'history_uint','itemid',41993),(29238,'trends','itemid',41993),(29239,'trends_uint','itemid',41993),(29240,'events','itemid',41994),(29241,'history','itemid',41994),(29242,'history_log','itemid',41994),(29243,'history_str','itemid',41994),(29244,'history_text','itemid',41994),(29245,'history_uint','itemid',41994),(29246,'trends','itemid',41994),(29247,'trends_uint','itemid',41994),(29248,'events','itemid',42068),(29249,'history','itemid',42068),(29250,'history_log','itemid',42068),(29251,'history_str','itemid',42068),(29252,'history_text','itemid',42068),(29253,'history_uint','itemid',42068),(29254,'trends','itemid',42068),(29255,'trends_uint','itemid',42068),(29256,'events','itemid',42069),(29257,'history','itemid',42069),(29258,'history_log','itemid',42069),(29259,'history_str','itemid',42069),(29260,'history_text','itemid',42069),(29261,'history_uint','itemid',42069),(29262,'trends','itemid',42069),(29263,'trends_uint','itemid',42069),(29264,'events','itemid',42070),(29265,'history','itemid',42070),(29266,'history_log','itemid',42070),(29267,'history_str','itemid',42070),(29268,'history_text','itemid',42070),(29269,'history_uint','itemid',42070),(29270,'trends','itemid',42070),(29271,'trends_uint','itemid',42070),(29272,'events','itemid',42071),(29273,'history','itemid',42071),(29274,'history_log','itemid',42071),(29275,'history_str','itemid',42071),(29276,'history_text','itemid',42071),(29277,'history_uint','itemid',42071),(29278,'trends','itemid',42071),(29279,'trends_uint','itemid',42071),(29280,'events','itemid',42072),(29281,'history','itemid',42072),(29282,'history_log','itemid',42072),(29283,'history_str','itemid',42072),(29284,'history_text','itemid',42072),(29285,'history_uint','itemid',42072),(29286,'trends','itemid',42072),(29287,'trends_uint','itemid',42072),(29288,'events','itemid',42073),(29289,'history','itemid',42073),(29290,'history_log','itemid',42073),(29291,'history_str','itemid',42073),(29292,'history_text','itemid',42073),(29293,'history_uint','itemid',42073),(29294,'trends','itemid',42073),(29295,'trends_uint','itemid',42073),(29296,'events','itemid',42074),(29297,'history','itemid',42074),(29298,'history_log','itemid',42074),(29299,'history_str','itemid',42074),(29300,'history_text','itemid',42074),(29301,'history_uint','itemid',42074),(29302,'trends','itemid',42074),(29303,'trends_uint','itemid',42074),(29304,'events','itemid',42075),(29305,'history','itemid',42075),(29306,'history_log','itemid',42075),(29307,'history_str','itemid',42075),(29308,'history_text','itemid',42075),(29309,'history_uint','itemid',42075),(29310,'trends','itemid',42075),(29311,'trends_uint','itemid',42075),(29312,'events','itemid',42076),(29313,'history','itemid',42076),(29314,'history_log','itemid',42076),(29315,'history_str','itemid',42076),(29316,'history_text','itemid',42076),(29317,'history_uint','itemid',42076),(29318,'trends','itemid',42076),(29319,'trends_uint','itemid',42076),(29320,'events','itemid',42077),(29321,'history','itemid',42077),(29322,'history_log','itemid',42077),(29323,'history_str','itemid',42077),(29324,'history_text','itemid',42077),(29325,'history_uint','itemid',42077),(29326,'trends','itemid',42077),(29327,'trends_uint','itemid',42077),(29328,'events','itemid',42078),(29329,'history','itemid',42078),(29330,'history_log','itemid',42078),(29331,'history_str','itemid',42078),(29332,'history_text','itemid',42078),(29333,'history_uint','itemid',42078),(29334,'trends','itemid',42078),(29335,'trends_uint','itemid',42078),(29336,'events','itemid',42443),(29337,'history','itemid',42443),(29338,'history_log','itemid',42443),(29339,'history_str','itemid',42443),(29340,'history_text','itemid',42443),(29341,'history_uint','itemid',42443),(29342,'trends','itemid',42443),(29343,'trends_uint','itemid',42443),(29344,'events','itemid',42444),(29345,'history','itemid',42444),(29346,'history_log','itemid',42444),(29347,'history_str','itemid',42444),(29348,'history_text','itemid',42444),(29349,'history_uint','itemid',42444),(29350,'trends','itemid',42444),(29351,'trends_uint','itemid',42444),(29352,'events','itemid',42445),(29353,'history','itemid',42445),(29354,'history_log','itemid',42445),(29355,'history_str','itemid',42445),(29356,'history_text','itemid',42445),(29357,'history_uint','itemid',42445),(29358,'trends','itemid',42445),(29359,'trends_uint','itemid',42445),(29360,'events','itemid',42446),(29361,'history','itemid',42446),(29362,'history_log','itemid',42446),(29363,'history_str','itemid',42446),(29364,'history_text','itemid',42446),(29365,'history_uint','itemid',42446),(29366,'trends','itemid',42446),(29367,'trends_uint','itemid',42446),(29368,'events','itemid',43077),(29369,'history','itemid',43077),(29370,'history_log','itemid',43077),(29371,'history_str','itemid',43077),(29372,'history_text','itemid',43077),(29373,'history_uint','itemid',43077),(29374,'trends','itemid',43077),(29375,'trends_uint','itemid',43077),(29376,'events','itemid',43793),(29377,'history','itemid',43793),(29378,'history_log','itemid',43793),(29379,'history_str','itemid',43793),(29380,'history_text','itemid',43793),(29381,'history_uint','itemid',43793),(29382,'trends','itemid',43793),(29383,'trends_uint','itemid',43793),(29384,'events','itemid',43794),(29385,'history','itemid',43794),(29386,'history_log','itemid',43794),(29387,'history_str','itemid',43794),(29388,'history_text','itemid',43794),(29389,'history_uint','itemid',43794),(29390,'trends','itemid',43794),(29391,'trends_uint','itemid',43794),(29392,'events','itemid',43795),(29393,'history','itemid',43795),(29394,'history_log','itemid',43795),(29395,'history_str','itemid',43795),(29396,'history_text','itemid',43795),(29397,'history_uint','itemid',43795),(29398,'trends','itemid',43795),(29399,'trends_uint','itemid',43795),(29400,'events','itemid',43796),(29401,'history','itemid',43796),(29402,'history_log','itemid',43796),(29403,'history_str','itemid',43796),(29404,'history_text','itemid',43796),(29405,'history_uint','itemid',43796),(29406,'trends','itemid',43796),(29407,'trends_uint','itemid',43796),(29408,'events','itemid',43797),(29409,'history','itemid',43797),(29410,'history_log','itemid',43797),(29411,'history_str','itemid',43797),(29412,'history_text','itemid',43797),(29413,'history_uint','itemid',43797),(29414,'trends','itemid',43797),(29415,'trends_uint','itemid',43797),(29416,'events','itemid',43798),(29417,'history','itemid',43798),(29418,'history_log','itemid',43798),(29419,'history_str','itemid',43798),(29420,'history_text','itemid',43798),(29421,'history_uint','itemid',43798),(29422,'trends','itemid',43798),(29423,'trends_uint','itemid',43798),(29424,'events','itemid',43799),(29425,'history','itemid',43799),(29426,'history_log','itemid',43799),(29427,'history_str','itemid',43799),(29428,'history_text','itemid',43799),(29429,'history_uint','itemid',43799),(29430,'trends','itemid',43799),(29431,'trends_uint','itemid',43799),(29432,'events','itemid',43800),(29433,'history','itemid',43800),(29434,'history_log','itemid',43800),(29435,'history_str','itemid',43800),(29436,'history_text','itemid',43800),(29437,'history_uint','itemid',43800),(29438,'trends','itemid',43800),(29439,'trends_uint','itemid',43800),(29440,'events','itemid',43801),(29441,'history','itemid',43801),(29442,'history_log','itemid',43801),(29443,'history_str','itemid',43801),(29444,'history_text','itemid',43801),(29445,'history_uint','itemid',43801),(29446,'trends','itemid',43801),(29447,'trends_uint','itemid',43801),(29448,'events','itemid',43802),(29449,'history','itemid',43802),(29450,'history_log','itemid',43802),(29451,'history_str','itemid',43802),(29452,'history_text','itemid',43802),(29453,'history_uint','itemid',43802),(29454,'trends','itemid',43802),(29455,'trends_uint','itemid',43802),(29456,'events','itemid',43803),(29457,'history','itemid',43803),(29458,'history_log','itemid',43803),(29459,'history_str','itemid',43803),(29460,'history_text','itemid',43803),(29461,'history_uint','itemid',43803),(29462,'trends','itemid',43803),(29463,'trends_uint','itemid',43803),(29464,'events','itemid',43804),(29465,'history','itemid',43804),(29466,'history_log','itemid',43804),(29467,'history_str','itemid',43804),(29468,'history_text','itemid',43804),(29469,'history_uint','itemid',43804),(29470,'trends','itemid',43804),(29471,'trends_uint','itemid',43804),(29472,'events','itemid',43805),(29473,'history','itemid',43805),(29474,'history_log','itemid',43805),(29475,'history_str','itemid',43805),(29476,'history_text','itemid',43805),(29477,'history_uint','itemid',43805),(29478,'trends','itemid',43805),(29479,'trends_uint','itemid',43805),(29480,'events','itemid',43806),(29481,'history','itemid',43806),(29482,'history_log','itemid',43806),(29483,'history_str','itemid',43806),(29484,'history_text','itemid',43806),(29485,'history_uint','itemid',43806),(29486,'trends','itemid',43806),(29487,'trends_uint','itemid',43806),(29488,'events','itemid',43807),(29489,'history','itemid',43807),(29490,'history_log','itemid',43807),(29491,'history_str','itemid',43807),(29492,'history_text','itemid',43807),(29493,'history_uint','itemid',43807),(29494,'trends','itemid',43807),(29495,'trends_uint','itemid',43807),(29496,'events','itemid',43808),(29497,'history','itemid',43808),(29498,'history_log','itemid',43808),(29499,'history_str','itemid',43808),(29500,'history_text','itemid',43808),(29501,'history_uint','itemid',43808),(29502,'trends','itemid',43808),(29503,'trends_uint','itemid',43808),(29504,'events','itemid',43809),(29505,'history','itemid',43809),(29506,'history_log','itemid',43809),(29507,'history_str','itemid',43809),(29508,'history_text','itemid',43809),(29509,'history_uint','itemid',43809),(29510,'trends','itemid',43809),(29511,'trends_uint','itemid',43809),(29512,'events','itemid',43810),(29513,'history','itemid',43810),(29514,'history_log','itemid',43810),(29515,'history_str','itemid',43810),(29516,'history_text','itemid',43810),(29517,'history_uint','itemid',43810),(29518,'trends','itemid',43810),(29519,'trends_uint','itemid',43810),(29520,'events','itemid',43811),(29521,'history','itemid',43811),(29522,'history_log','itemid',43811),(29523,'history_str','itemid',43811),(29524,'history_text','itemid',43811),(29525,'history_uint','itemid',43811),(29526,'trends','itemid',43811),(29527,'trends_uint','itemid',43811),(29528,'events','itemid',43812),(29529,'history','itemid',43812),(29530,'history_log','itemid',43812),(29531,'history_str','itemid',43812),(29532,'history_text','itemid',43812),(29533,'history_uint','itemid',43812),(29534,'trends','itemid',43812),(29535,'trends_uint','itemid',43812),(29536,'events','itemid',43813),(29537,'history','itemid',43813),(29538,'history_log','itemid',43813),(29539,'history_str','itemid',43813),(29540,'history_text','itemid',43813),(29541,'history_uint','itemid',43813),(29542,'trends','itemid',43813),(29543,'trends_uint','itemid',43813),(29544,'events','itemid',43814),(29545,'history','itemid',43814),(29546,'history_log','itemid',43814),(29547,'history_str','itemid',43814),(29548,'history_text','itemid',43814),(29549,'history_uint','itemid',43814),(29550,'trends','itemid',43814),(29551,'trends_uint','itemid',43814),(29552,'events','itemid',43815),(29553,'history','itemid',43815),(29554,'history_log','itemid',43815),(29555,'history_str','itemid',43815),(29556,'history_text','itemid',43815),(29557,'history_uint','itemid',43815),(29558,'trends','itemid',43815),(29559,'trends_uint','itemid',43815),(29560,'events','itemid',43816),(29561,'history','itemid',43816),(29562,'history_log','itemid',43816),(29563,'history_str','itemid',43816),(29564,'history_text','itemid',43816),(29565,'history_uint','itemid',43816),(29566,'trends','itemid',43816),(29567,'trends_uint','itemid',43816),(29568,'events','itemid',43817),(29569,'history','itemid',43817),(29570,'history_log','itemid',43817),(29571,'history_str','itemid',43817),(29572,'history_text','itemid',43817),(29573,'history_uint','itemid',43817),(29574,'trends','itemid',43817),(29575,'trends_uint','itemid',43817),(29576,'events','itemid',43818),(29577,'history','itemid',43818),(29578,'history_log','itemid',43818),(29579,'history_str','itemid',43818),(29580,'history_text','itemid',43818),(29581,'history_uint','itemid',43818),(29582,'trends','itemid',43818),(29583,'trends_uint','itemid',43818),(29584,'events','itemid',43819),(29585,'history','itemid',43819),(29586,'history_log','itemid',43819),(29587,'history_str','itemid',43819),(29588,'history_text','itemid',43819),(29589,'history_uint','itemid',43819),(29590,'trends','itemid',43819),(29591,'trends_uint','itemid',43819),(29592,'events','itemid',43820),(29593,'history','itemid',43820),(29594,'history_log','itemid',43820),(29595,'history_str','itemid',43820),(29596,'history_text','itemid',43820),(29597,'history_uint','itemid',43820),(29598,'trends','itemid',43820),(29599,'trends_uint','itemid',43820),(29600,'events','itemid',43821),(29601,'history','itemid',43821),(29602,'history_log','itemid',43821),(29603,'history_str','itemid',43821),(29604,'history_text','itemid',43821),(29605,'history_uint','itemid',43821),(29606,'trends','itemid',43821),(29607,'trends_uint','itemid',43821),(29608,'events','itemid',43822),(29609,'history','itemid',43822),(29610,'history_log','itemid',43822),(29611,'history_str','itemid',43822),(29612,'history_text','itemid',43822),(29613,'history_uint','itemid',43822),(29614,'trends','itemid',43822),(29615,'trends_uint','itemid',43822),(29616,'events','itemid',43823),(29617,'history','itemid',43823),(29618,'history_log','itemid',43823),(29619,'history_str','itemid',43823),(29620,'history_text','itemid',43823),(29621,'history_uint','itemid',43823),(29622,'trends','itemid',43823),(29623,'trends_uint','itemid',43823),(29624,'events','itemid',43824),(29625,'history','itemid',43824),(29626,'history_log','itemid',43824),(29627,'history_str','itemid',43824),(29628,'history_text','itemid',43824),(29629,'history_uint','itemid',43824),(29630,'trends','itemid',43824),(29631,'trends_uint','itemid',43824),(29632,'events','itemid',43825),(29633,'history','itemid',43825),(29634,'history_log','itemid',43825),(29635,'history_str','itemid',43825),(29636,'history_text','itemid',43825),(29637,'history_uint','itemid',43825),(29638,'trends','itemid',43825),(29639,'trends_uint','itemid',43825),(29640,'events','itemid',43840),(29641,'history','itemid',43840),(29642,'history_log','itemid',43840),(29643,'history_str','itemid',43840),(29644,'history_text','itemid',43840),(29645,'history_uint','itemid',43840),(29646,'trends','itemid',43840),(29647,'trends_uint','itemid',43840),(29648,'events','itemid',43841),(29649,'history','itemid',43841),(29650,'history_log','itemid',43841),(29651,'history_str','itemid',43841),(29652,'history_text','itemid',43841),(29653,'history_uint','itemid',43841),(29654,'trends','itemid',43841),(29655,'trends_uint','itemid',43841),(29656,'events','itemid',43842),(29657,'history','itemid',43842),(29658,'history_log','itemid',43842),(29659,'history_str','itemid',43842),(29660,'history_text','itemid',43842),(29661,'history_uint','itemid',43842),(29662,'trends','itemid',43842),(29663,'trends_uint','itemid',43842),(29664,'events','itemid',43843),(29665,'history','itemid',43843),(29666,'history_log','itemid',43843),(29667,'history_str','itemid',43843),(29668,'history_text','itemid',43843),(29669,'history_uint','itemid',43843),(29670,'trends','itemid',43843),(29671,'trends_uint','itemid',43843),(29672,'events','itemid',43844),(29673,'history','itemid',43844),(29674,'history_log','itemid',43844),(29675,'history_str','itemid',43844),(29676,'history_text','itemid',43844),(29677,'history_uint','itemid',43844),(29678,'trends','itemid',43844),(29679,'trends_uint','itemid',43844),(29680,'events','itemid',43848),(29681,'history','itemid',43848),(29682,'history_log','itemid',43848),(29683,'history_str','itemid',43848),(29684,'history_text','itemid',43848),(29685,'history_uint','itemid',43848),(29686,'trends','itemid',43848),(29687,'trends_uint','itemid',43848),(29688,'events','itemid',44445),(29689,'history','itemid',44445),(29690,'history_log','itemid',44445),(29691,'history_str','itemid',44445),(29692,'history_text','itemid',44445),(29693,'history_uint','itemid',44445),(29694,'trends','itemid',44445),(29695,'trends_uint','itemid',44445),(29696,'events','lldruleid',22867),(29697,'events','lldruleid',23329),(29698,'events','lldruleid',27937),(29699,'events','lldruleid',27938),(29700,'events','lldruleid',27939),(29701,'events','lldruleid',30472),(29702,'events','lldruleid',30473),(29703,'events','lldruleid',30520),(29704,'events','lldruleid',30521),(29705,'events','lldruleid',30678),(29706,'events','lldruleid',30679),(29707,'events','lldruleid',31122),(29708,'events','lldruleid',31123),(29709,'events','lldruleid',31124),(29710,'events','lldruleid',31125),(29711,'events','lldruleid',31126),(29712,'events','lldruleid',31127),(29713,'events','lldruleid',31253),(29714,'events','lldruleid',31254),(29715,'events','lldruleid',31255),(29716,'events','lldruleid',31256),(29717,'events','lldruleid',31257),(29718,'events','lldruleid',31761),(29719,'events','lldruleid',31762),(29720,'events','lldruleid',31763),(29721,'events','lldruleid',31764),(29722,'events','lldruleid',31765),(29723,'events','lldruleid',32404),(29724,'events','lldruleid',33133),(29725,'events','lldruleid',33147),(29726,'events','lldruleid',33161),(29727,'events','lldruleid',33205),(29728,'events','lldruleid',33225),(29729,'events','lldruleid',33248),(29730,'events','lldruleid',33257),(29731,'events','lldruleid',33276),(29732,'events','lldruleid',33295),(29733,'events','lldruleid',33306),(29734,'events','lldruleid',33307),(29735,'events','lldruleid',33308),(29736,'events','lldruleid',33309),(29737,'events','lldruleid',33310),(29738,'events','lldruleid',33311),(29739,'events','lldruleid',33352),(29740,'events','lldruleid',33353),(29741,'events','lldruleid',33354),(29742,'events','lldruleid',33355),(29743,'events','lldruleid',33356),(29744,'events','lldruleid',33808),(29745,'events','lldruleid',33809),(29746,'events','lldruleid',33810),(29747,'events','lldruleid',33811),(29748,'events','lldruleid',33920),(29749,'events','lldruleid',33921),(29750,'events','lldruleid',33922),(29751,'events','lldruleid',33923),(29752,'events','lldruleid',34260),(29753,'events','lldruleid',34261),(29754,'events','lldruleid',34262),(29755,'events','lldruleid',34263),(29756,'events','lldruleid',34264),(29757,'events','lldruleid',34265),(29758,'events','lldruleid',34266),(29759,'events','lldruleid',34267),(29760,'events','lldruleid',34268),(29761,'events','lldruleid',34324),(29762,'events','lldruleid',35177),(29763,'events','lldruleid',35178),(29764,'events','lldruleid',35179),(29765,'events','lldruleid',35180),(29766,'events','lldruleid',35181),(29767,'events','lldruleid',35182),(29768,'events','lldruleid',35183),(29769,'events','lldruleid',35184),(29770,'events','lldruleid',38582),(29771,'events','lldruleid',38583),(29772,'events','lldruleid',38584),(29773,'events','lldruleid',38585),(29774,'events','lldruleid',38586),(29775,'events','lldruleid',38587),(29776,'events','lldruleid',38588),(29777,'events','lldruleid',38636),(29778,'events','lldruleid',38637),(29779,'events','lldruleid',38638),(29780,'events','lldruleid',38639),(29781,'events','lldruleid',38640),(29782,'events','lldruleid',38641),(29783,'events','lldruleid',38642),(29784,'events','lldruleid',38690),(29785,'events','lldruleid',38691),(29786,'events','lldruleid',38692),(29787,'events','lldruleid',38693),(29788,'events','lldruleid',38694),(29789,'events','lldruleid',38695),(29790,'events','lldruleid',38696),(29791,'events','lldruleid',38744),(29792,'events','lldruleid',38745),(29793,'events','lldruleid',38746),(29794,'events','lldruleid',38747),(29795,'events','lldruleid',38748),(29796,'events','lldruleid',38749),(29797,'events','lldruleid',38750),(29798,'events','lldruleid',38798),(29799,'events','lldruleid',38799),(29800,'events','lldruleid',38800),(29801,'events','lldruleid',38801),(29802,'events','lldruleid',38802),(29803,'events','lldruleid',38803),(29804,'events','lldruleid',38804),(29805,'events','lldruleid',38852),(29806,'events','lldruleid',38853),(29807,'events','lldruleid',38854),(29808,'events','lldruleid',38855),(29809,'events','lldruleid',38856),(29810,'events','lldruleid',38857),(29811,'events','lldruleid',38858),(29812,'events','lldruleid',38906),(29813,'events','lldruleid',38907),(29814,'events','lldruleid',38908),(29815,'events','lldruleid',38909),(29816,'events','lldruleid',38910),(29817,'events','lldruleid',38911),(29818,'events','lldruleid',38912),(29819,'events','lldruleid',38960),(29820,'events','lldruleid',38961),(29821,'events','lldruleid',38962),(29822,'events','lldruleid',38963),(29823,'events','lldruleid',38964),(29824,'events','lldruleid',38965),(29825,'events','lldruleid',38966),(29826,'events','lldruleid',39014),(29827,'events','lldruleid',39015),(29828,'events','lldruleid',39016),(29829,'events','lldruleid',39017),(29830,'events','lldruleid',39018),(29831,'events','lldruleid',39019),(29832,'events','lldruleid',39020),(29833,'events','lldruleid',39068),(29834,'events','lldruleid',39069),(29835,'events','lldruleid',39070),(29836,'events','lldruleid',39071),(29837,'events','lldruleid',39072),(29838,'events','lldruleid',39073),(29839,'events','lldruleid',39074),(29840,'events','lldruleid',39122),(29841,'events','lldruleid',39123),(29842,'events','lldruleid',39124),(29843,'events','lldruleid',39125),(29844,'events','lldruleid',39126),(29845,'events','lldruleid',39127),(29846,'events','lldruleid',39128),(29847,'events','lldruleid',39176),(29848,'events','lldruleid',39177),(29849,'events','lldruleid',39178),(29850,'events','lldruleid',39179),(29851,'events','lldruleid',39180),(29852,'events','lldruleid',39181),(29853,'events','lldruleid',39182),(29854,'events','lldruleid',39230),(29855,'events','lldruleid',39231),(29856,'events','lldruleid',39232),(29857,'events','lldruleid',39233),(29858,'events','lldruleid',39234),(29859,'events','lldruleid',39235),(29860,'events','lldruleid',39236),(29861,'events','lldruleid',39284),(29862,'events','lldruleid',39285),(29863,'events','lldruleid',39286),(29864,'events','lldruleid',39287),(29865,'events','lldruleid',39288),(29866,'events','lldruleid',39289),(29867,'events','lldruleid',39290),(29868,'events','lldruleid',39608),(29869,'events','lldruleid',39609),(29870,'events','lldruleid',39610),(29871,'events','lldruleid',39611),(29872,'events','lldruleid',39612),(29873,'events','lldruleid',39613),(29874,'events','lldruleid',39614),(29875,'events','lldruleid',39662),(29876,'events','lldruleid',39663),(29877,'events','lldruleid',39664),(29878,'events','lldruleid',39665),(29879,'events','lldruleid',39666),(29880,'events','lldruleid',39667),(29881,'events','lldruleid',39668),(29882,'events','lldruleid',39716),(29883,'events','lldruleid',39717),(29884,'events','lldruleid',39718),(29885,'events','lldruleid',39719),(29886,'events','lldruleid',39720),(29887,'events','lldruleid',39721),(29888,'events','lldruleid',39722),(29889,'events','lldruleid',40138),(29890,'events','lldruleid',40809),(29891,'events','lldruleid',40810),(29892,'events','lldruleid',41617),(29893,'events','lldruleid',41638),(29894,'events','lldruleid',41659),(29895,'events','lldruleid',41680),(29896,'events','lldruleid',41701),(29897,'events','lldruleid',41722),(29898,'events','lldruleid',41743),(29899,'events','lldruleid',41764),(29900,'events','lldruleid',41785),(29901,'events','lldruleid',41806),(29902,'events','lldruleid',41827),(29903,'events','lldruleid',41848),(29904,'events','lldruleid',41869),(29905,'events','lldruleid',41890),(29906,'events','lldruleid',42016),(29907,'events','lldruleid',42037),(29908,'events','lldruleid',42058),(29909,'events','lldruleid',42100),(29910,'events','lldruleid',42726),(29911,'events','lldruleid',43565),(29912,'events','lldruleid',44236),(29913,'events','lldruleid',44344),(29914,'events','lldruleid',44352),(29915,'events','itemid',22835),(29916,'history','itemid',22835),(29917,'history_log','itemid',22835),(29918,'history_str','itemid',22835),(29919,'history_text','itemid',22835),(29920,'history_uint','itemid',22835),(29921,'trends','itemid',22835),(29922,'trends_uint','itemid',22835),(29923,'events','itemid',22836),(29924,'history','itemid',22836),(29925,'history_log','itemid',22836),(29926,'history_str','itemid',22836),(29927,'history_text','itemid',22836),(29928,'history_uint','itemid',22836),(29929,'trends','itemid',22836),(29930,'trends_uint','itemid',22836),(29931,'events','itemid',22837),(29932,'history','itemid',22837),(29933,'history_log','itemid',22837),(29934,'history_str','itemid',22837),(29935,'history_text','itemid',22837),(29936,'history_uint','itemid',22837),(29937,'trends','itemid',22837),(29938,'trends_uint','itemid',22837),(29939,'events','itemid',22838),(29940,'history','itemid',22838),(29941,'history_log','itemid',22838),(29942,'history_str','itemid',22838),(29943,'history_text','itemid',22838),(29944,'history_uint','itemid',22838),(29945,'trends','itemid',22838),(29946,'trends_uint','itemid',22838),(29947,'events','itemid',22839),(29948,'history','itemid',22839),(29949,'history_log','itemid',22839),(29950,'history_str','itemid',22839),(29951,'history_text','itemid',22839),(29952,'history_uint','itemid',22839),(29953,'trends','itemid',22839),(29954,'trends_uint','itemid',22839),(29955,'events','itemid',22840),(29956,'history','itemid',22840),(29957,'history_log','itemid',22840),(29958,'history_str','itemid',22840),(29959,'history_text','itemid',22840),(29960,'history_uint','itemid',22840),(29961,'trends','itemid',22840),(29962,'trends_uint','itemid',22840),(29963,'events','itemid',22841),(29964,'history','itemid',22841),(29965,'history_log','itemid',22841),(29966,'history_str','itemid',22841),(29967,'history_text','itemid',22841),(29968,'history_uint','itemid',22841),(29969,'trends','itemid',22841),(29970,'trends_uint','itemid',22841),(29971,'events','itemid',22842),(29972,'history','itemid',22842),(29973,'history_log','itemid',22842),(29974,'history_str','itemid',22842),(29975,'history_text','itemid',22842),(29976,'history_uint','itemid',22842),(29977,'trends','itemid',22842),(29978,'trends_uint','itemid',22842),(29979,'events','itemid',22843),(29980,'history','itemid',22843),(29981,'history_log','itemid',22843),(29982,'history_str','itemid',22843),(29983,'history_text','itemid',22843),(29984,'history_uint','itemid',22843),(29985,'trends','itemid',22843),(29986,'trends_uint','itemid',22843),(29987,'events','itemid',22844),(29988,'history','itemid',22844),(29989,'history_log','itemid',22844),(29990,'history_str','itemid',22844),(29991,'history_text','itemid',22844),(29992,'history_uint','itemid',22844),(29993,'trends','itemid',22844),(29994,'trends_uint','itemid',22844),(29995,'events','itemid',22845),(29996,'history','itemid',22845),(29997,'history_log','itemid',22845),(29998,'history_str','itemid',22845),(29999,'history_text','itemid',22845),(30000,'history_uint','itemid',22845),(30001,'trends','itemid',22845),(30002,'trends_uint','itemid',22845),(30003,'events','itemid',22846),(30004,'history','itemid',22846),(30005,'history_log','itemid',22846),(30006,'history_str','itemid',22846),(30007,'history_text','itemid',22846),(30008,'history_uint','itemid',22846),(30009,'trends','itemid',22846),(30010,'trends_uint','itemid',22846),(30011,'events','itemid',22848),(30012,'history','itemid',22848),(30013,'history_log','itemid',22848),(30014,'history_str','itemid',22848),(30015,'history_text','itemid',22848),(30016,'history_uint','itemid',22848),(30017,'trends','itemid',22848),(30018,'trends_uint','itemid',22848),(30019,'events','itemid',22851),(30020,'history','itemid',22851),(30021,'history_log','itemid',22851),(30022,'history_str','itemid',22851),(30023,'history_text','itemid',22851),(30024,'history_uint','itemid',22851),(30025,'trends','itemid',22851),(30026,'trends_uint','itemid',22851),(30027,'events','itemid',22852),(30028,'history','itemid',22852),(30029,'history_log','itemid',22852),(30030,'history_str','itemid',22852),(30031,'history_text','itemid',22852),(30032,'history_uint','itemid',22852),(30033,'trends','itemid',22852),(30034,'trends_uint','itemid',22852),(30035,'events','itemid',22853),(30036,'history','itemid',22853),(30037,'history_log','itemid',22853),(30038,'history_str','itemid',22853),(30039,'history_text','itemid',22853),(30040,'history_uint','itemid',22853),(30041,'trends','itemid',22853),(30042,'trends_uint','itemid',22853),(30043,'events','itemid',22854),(30044,'history','itemid',22854),(30045,'history_log','itemid',22854),(30046,'history_str','itemid',22854),(30047,'history_text','itemid',22854),(30048,'history_uint','itemid',22854),(30049,'trends','itemid',22854),(30050,'trends_uint','itemid',22854),(30051,'events','itemid',22855),(30052,'history','itemid',22855),(30053,'history_log','itemid',22855),(30054,'history_str','itemid',22855),(30055,'history_text','itemid',22855),(30056,'history_uint','itemid',22855),(30057,'trends','itemid',22855),(30058,'trends_uint','itemid',22855),(30059,'events','itemid',22856),(30060,'history','itemid',22856),(30061,'history_log','itemid',22856),(30062,'history_str','itemid',22856),(30063,'history_text','itemid',22856),(30064,'history_uint','itemid',22856),(30065,'trends','itemid',22856),(30066,'trends_uint','itemid',22856),(30067,'events','itemid',22857),(30068,'history','itemid',22857),(30069,'history_log','itemid',22857),(30070,'history_str','itemid',22857),(30071,'history_text','itemid',22857),(30072,'history_uint','itemid',22857),(30073,'trends','itemid',22857),(30074,'trends_uint','itemid',22857),(30075,'events','itemid',22858),(30076,'history','itemid',22858),(30077,'history_log','itemid',22858),(30078,'history_str','itemid',22858),(30079,'history_text','itemid',22858),(30080,'history_uint','itemid',22858),(30081,'trends','itemid',22858),(30082,'trends_uint','itemid',22858),(30083,'events','itemid',22859),(30084,'history','itemid',22859),(30085,'history_log','itemid',22859),(30086,'history_str','itemid',22859),(30087,'history_text','itemid',22859),(30088,'history_uint','itemid',22859),(30089,'trends','itemid',22859),(30090,'trends_uint','itemid',22859),(30091,'events','itemid',22860),(30092,'history','itemid',22860),(30093,'history_log','itemid',22860),(30094,'history_str','itemid',22860),(30095,'history_text','itemid',22860),(30096,'history_uint','itemid',22860),(30097,'trends','itemid',22860),(30098,'trends_uint','itemid',22860),(30099,'events','itemid',22861),(30100,'history','itemid',22861),(30101,'history_log','itemid',22861),(30102,'history_str','itemid',22861),(30103,'history_text','itemid',22861),(30104,'history_uint','itemid',22861),(30105,'trends','itemid',22861),(30106,'trends_uint','itemid',22861),(30107,'events','itemid',22862),(30108,'history','itemid',22862),(30109,'history_log','itemid',22862),(30110,'history_str','itemid',22862),(30111,'history_text','itemid',22862),(30112,'history_uint','itemid',22862),(30113,'trends','itemid',22862),(30114,'trends_uint','itemid',22862),(30115,'events','itemid',22863),(30116,'history','itemid',22863),(30117,'history_log','itemid',22863),(30118,'history_str','itemid',22863),(30119,'history_text','itemid',22863),(30120,'history_uint','itemid',22863),(30121,'trends','itemid',22863),(30122,'trends_uint','itemid',22863),(30123,'events','itemid',23649),(30124,'history','itemid',23649),(30125,'history_log','itemid',23649),(30126,'history_str','itemid',23649),(30127,'history_text','itemid',23649),(30128,'history_uint','itemid',23649),(30129,'trends','itemid',23649),(30130,'trends_uint','itemid',23649),(30131,'events','itemid',23650),(30132,'history','itemid',23650),(30133,'history_log','itemid',23650),(30134,'history_str','itemid',23650),(30135,'history_text','itemid',23650),(30136,'history_uint','itemid',23650),(30137,'trends','itemid',23650),(30138,'trends_uint','itemid',23650),(30139,'events','itemid',23651),(30140,'history','itemid',23651),(30141,'history_log','itemid',23651),(30142,'history_str','itemid',23651),(30143,'history_text','itemid',23651),(30144,'history_uint','itemid',23651),(30145,'trends','itemid',23651),(30146,'trends_uint','itemid',23651),(30147,'events','itemid',27930),(30148,'history','itemid',27930),(30149,'history_log','itemid',27930),(30150,'history_str','itemid',27930),(30151,'history_text','itemid',27930),(30152,'history_uint','itemid',27930),(30153,'trends','itemid',27930),(30154,'trends_uint','itemid',27930),(30155,'events','itemid',27931),(30156,'history','itemid',27931),(30157,'history_log','itemid',27931),(30158,'history_str','itemid',27931),(30159,'history_text','itemid',27931),(30160,'history_uint','itemid',27931),(30161,'trends','itemid',27931),(30162,'trends_uint','itemid',27931),(30163,'events','itemid',27935),(30164,'history','itemid',27935),(30165,'history_log','itemid',27935),(30166,'history_str','itemid',27935),(30167,'history_text','itemid',27935),(30168,'history_uint','itemid',27935),(30169,'trends','itemid',27935),(30170,'trends_uint','itemid',27935),(30171,'events','itemid',27936),(30172,'history','itemid',27936),(30173,'history_log','itemid',27936),(30174,'history_str','itemid',27936),(30175,'history_text','itemid',27936),(30176,'history_uint','itemid',27936),(30177,'trends','itemid',27936),(30178,'trends_uint','itemid',27936),(30179,'events','itemid',28804),(30180,'history','itemid',28804),(30181,'history_log','itemid',28804),(30182,'history_str','itemid',28804),(30183,'history_text','itemid',28804),(30184,'history_uint','itemid',28804),(30185,'trends','itemid',28804),(30186,'trends_uint','itemid',28804),(30187,'events','itemid',28805),(30188,'history','itemid',28805),(30189,'history_log','itemid',28805),(30190,'history_str','itemid',28805),(30191,'history_text','itemid',28805),(30192,'history_uint','itemid',28805),(30193,'trends','itemid',28805),(30194,'trends_uint','itemid',28805),(30195,'events','itemid',28810),(30196,'history','itemid',28810),(30197,'history_log','itemid',28810),(30198,'history_str','itemid',28810),(30199,'history_text','itemid',28810),(30200,'history_uint','itemid',28810),(30201,'trends','itemid',28810),(30202,'trends_uint','itemid',28810),(30203,'events','itemid',28811),(30204,'history','itemid',28811),(30205,'history_log','itemid',28811),(30206,'history_str','itemid',28811),(30207,'history_text','itemid',28811),(30208,'history_uint','itemid',28811),(30209,'trends','itemid',28811),(30210,'trends_uint','itemid',28811),(30211,'events','itemid',28812),(30212,'history','itemid',28812),(30213,'history_log','itemid',28812),(30214,'history_str','itemid',28812),(30215,'history_text','itemid',28812),(30216,'history_uint','itemid',28812),(30217,'trends','itemid',28812),(30218,'trends_uint','itemid',28812),(30219,'events','itemid',28813),(30220,'history','itemid',28813),(30221,'history_log','itemid',28813),(30222,'history_str','itemid',28813),(30223,'history_text','itemid',28813),(30224,'history_uint','itemid',28813),(30225,'trends','itemid',28813),(30226,'trends_uint','itemid',28813),(30227,'events','itemid',28814),(30228,'history','itemid',28814),(30229,'history_log','itemid',28814),(30230,'history_str','itemid',28814),(30231,'history_text','itemid',28814),(30232,'history_uint','itemid',28814),(30233,'trends','itemid',28814),(30234,'trends_uint','itemid',28814),(30235,'events','itemid',28815),(30236,'history','itemid',28815),(30237,'history_log','itemid',28815),(30238,'history_str','itemid',28815),(30239,'history_text','itemid',28815),(30240,'history_uint','itemid',28815),(30241,'trends','itemid',28815),(30242,'trends_uint','itemid',28815),(30243,'events','itemid',28816),(30244,'history','itemid',28816),(30245,'history_log','itemid',28816),(30246,'history_str','itemid',28816),(30247,'history_text','itemid',28816),(30248,'history_uint','itemid',28816),(30249,'trends','itemid',28816),(30250,'trends_uint','itemid',28816),(30251,'events','itemid',28817),(30252,'history','itemid',28817),(30253,'history_log','itemid',28817),(30254,'history_str','itemid',28817),(30255,'history_text','itemid',28817),(30256,'history_uint','itemid',28817),(30257,'trends','itemid',28817),(30258,'trends_uint','itemid',28817),(30259,'events','itemid',28818),(30260,'history','itemid',28818),(30261,'history_log','itemid',28818),(30262,'history_str','itemid',28818),(30263,'history_text','itemid',28818),(30264,'history_uint','itemid',28818),(30265,'trends','itemid',28818),(30266,'trends_uint','itemid',28818),(30267,'events','itemid',28819),(30268,'history','itemid',28819),(30269,'history_log','itemid',28819),(30270,'history_str','itemid',28819),(30271,'history_text','itemid',28819),(30272,'history_uint','itemid',28819),(30273,'trends','itemid',28819),(30274,'trends_uint','itemid',28819),(30275,'events','itemid',28820),(30276,'history','itemid',28820),(30277,'history_log','itemid',28820),(30278,'history_str','itemid',28820),(30279,'history_text','itemid',28820),(30280,'history_uint','itemid',28820),(30281,'trends','itemid',28820),(30282,'trends_uint','itemid',28820),(30283,'events','itemid',28821),(30284,'history','itemid',28821),(30285,'history_log','itemid',28821),(30286,'history_str','itemid',28821),(30287,'history_text','itemid',28821),(30288,'history_uint','itemid',28821),(30289,'trends','itemid',28821),(30290,'trends_uint','itemid',28821),(30291,'events','itemid',28822),(30292,'history','itemid',28822),(30293,'history_log','itemid',28822),(30294,'history_str','itemid',28822),(30295,'history_text','itemid',28822),(30296,'history_uint','itemid',28822),(30297,'trends','itemid',28822),(30298,'trends_uint','itemid',28822),(30299,'events','itemid',28823),(30300,'history','itemid',28823),(30301,'history_log','itemid',28823),(30302,'history_str','itemid',28823),(30303,'history_text','itemid',28823),(30304,'history_uint','itemid',28823),(30305,'trends','itemid',28823),(30306,'trends_uint','itemid',28823),(30307,'events','itemid',28824),(30308,'history','itemid',28824),(30309,'history_log','itemid',28824),(30310,'history_str','itemid',28824),(30311,'history_text','itemid',28824),(30312,'history_uint','itemid',28824),(30313,'trends','itemid',28824),(30314,'trends_uint','itemid',28824),(30315,'events','itemid',28825),(30316,'history','itemid',28825),(30317,'history_log','itemid',28825),(30318,'history_str','itemid',28825),(30319,'history_text','itemid',28825),(30320,'history_uint','itemid',28825),(30321,'trends','itemid',28825),(30322,'trends_uint','itemid',28825),(30323,'events','itemid',28826),(30324,'history','itemid',28826),(30325,'history_log','itemid',28826),(30326,'history_str','itemid',28826),(30327,'history_text','itemid',28826),(30328,'history_uint','itemid',28826),(30329,'trends','itemid',28826),(30330,'trends_uint','itemid',28826),(30331,'events','itemid',28827),(30332,'history','itemid',28827),(30333,'history_log','itemid',28827),(30334,'history_str','itemid',28827),(30335,'history_text','itemid',28827),(30336,'history_uint','itemid',28827),(30337,'trends','itemid',28827),(30338,'trends_uint','itemid',28827),(30339,'events','itemid',28828),(30340,'history','itemid',28828),(30341,'history_log','itemid',28828),(30342,'history_str','itemid',28828),(30343,'history_text','itemid',28828),(30344,'history_uint','itemid',28828),(30345,'trends','itemid',28828),(30346,'trends_uint','itemid',28828),(30347,'events','itemid',28829),(30348,'history','itemid',28829),(30349,'history_log','itemid',28829),(30350,'history_str','itemid',28829),(30351,'history_text','itemid',28829),(30352,'history_uint','itemid',28829),(30353,'trends','itemid',28829),(30354,'trends_uint','itemid',28829),(30355,'events','itemid',28830),(30356,'history','itemid',28830),(30357,'history_log','itemid',28830),(30358,'history_str','itemid',28830),(30359,'history_text','itemid',28830),(30360,'history_uint','itemid',28830),(30361,'trends','itemid',28830),(30362,'trends_uint','itemid',28830),(30363,'events','itemid',28831),(30364,'history','itemid',28831),(30365,'history_log','itemid',28831),(30366,'history_str','itemid',28831),(30367,'history_text','itemid',28831),(30368,'history_uint','itemid',28831),(30369,'trends','itemid',28831),(30370,'trends_uint','itemid',28831),(30371,'events','itemid',28832),(30372,'history','itemid',28832),(30373,'history_log','itemid',28832),(30374,'history_str','itemid',28832),(30375,'history_text','itemid',28832),(30376,'history_uint','itemid',28832),(30377,'trends','itemid',28832),(30378,'trends_uint','itemid',28832),(30379,'events','itemid',28833),(30380,'history','itemid',28833),(30381,'history_log','itemid',28833),(30382,'history_str','itemid',28833),(30383,'history_text','itemid',28833),(30384,'history_uint','itemid',28833),(30385,'trends','itemid',28833),(30386,'trends_uint','itemid',28833),(30387,'events','itemid',30121),(30388,'history','itemid',30121),(30389,'history_log','itemid',30121),(30390,'history_str','itemid',30121),(30391,'history_text','itemid',30121),(30392,'history_uint','itemid',30121),(30393,'trends','itemid',30121),(30394,'trends_uint','itemid',30121),(30395,'events','itemid',30122),(30396,'history','itemid',30122),(30397,'history_log','itemid',30122),(30398,'history_str','itemid',30122),(30399,'history_text','itemid',30122),(30400,'history_uint','itemid',30122),(30401,'trends','itemid',30122),(30402,'trends_uint','itemid',30122),(30403,'events','itemid',30123),(30404,'history','itemid',30123),(30405,'history_log','itemid',30123),(30406,'history_str','itemid',30123),(30407,'history_text','itemid',30123),(30408,'history_uint','itemid',30123),(30409,'trends','itemid',30123),(30410,'trends_uint','itemid',30123),(30411,'events','itemid',30431),(30412,'history','itemid',30431),(30413,'history_log','itemid',30431),(30414,'history_str','itemid',30431),(30415,'history_text','itemid',30431),(30416,'history_uint','itemid',30431),(30417,'trends','itemid',30431),(30418,'trends_uint','itemid',30431),(30419,'events','itemid',30432),(30420,'history','itemid',30432),(30421,'history_log','itemid',30432),(30422,'history_str','itemid',30432),(30423,'history_text','itemid',30432),(30424,'history_uint','itemid',30432),(30425,'trends','itemid',30432),(30426,'trends_uint','itemid',30432),(30427,'events','itemid',30433),(30428,'history','itemid',30433),(30429,'history_log','itemid',30433),(30430,'history_str','itemid',30433),(30431,'history_text','itemid',30433),(30432,'history_uint','itemid',30433),(30433,'trends','itemid',30433),(30434,'trends_uint','itemid',30433),(30435,'events','itemid',30434),(30436,'history','itemid',30434),(30437,'history_log','itemid',30434),(30438,'history_str','itemid',30434),(30439,'history_text','itemid',30434),(30440,'history_uint','itemid',30434),(30441,'trends','itemid',30434),(30442,'trends_uint','itemid',30434),(30443,'events','itemid',30435),(30444,'history','itemid',30435),(30445,'history_log','itemid',30435),(30446,'history_str','itemid',30435),(30447,'history_text','itemid',30435),(30448,'history_uint','itemid',30435),(30449,'trends','itemid',30435),(30450,'trends_uint','itemid',30435),(30451,'events','itemid',30436),(30452,'history','itemid',30436),(30453,'history_log','itemid',30436),(30454,'history_str','itemid',30436),(30455,'history_text','itemid',30436),(30456,'history_uint','itemid',30436),(30457,'trends','itemid',30436),(30458,'trends_uint','itemid',30436),(30459,'events','itemid',30437),(30460,'history','itemid',30437),(30461,'history_log','itemid',30437),(30462,'history_str','itemid',30437),(30463,'history_text','itemid',30437),(30464,'history_uint','itemid',30437),(30465,'trends','itemid',30437),(30466,'trends_uint','itemid',30437),(30467,'events','itemid',30438),(30468,'history','itemid',30438),(30469,'history_log','itemid',30438),(30470,'history_str','itemid',30438),(30471,'history_text','itemid',30438),(30472,'history_uint','itemid',30438),(30473,'trends','itemid',30438),(30474,'trends_uint','itemid',30438),(30475,'events','itemid',30439),(30476,'history','itemid',30439),(30477,'history_log','itemid',30439),(30478,'history_str','itemid',30439),(30479,'history_text','itemid',30439),(30480,'history_uint','itemid',30439),(30481,'trends','itemid',30439),(30482,'trends_uint','itemid',30439),(30483,'events','itemid',30440),(30484,'history','itemid',30440),(30485,'history_log','itemid',30440),(30486,'history_str','itemid',30440),(30487,'history_text','itemid',30440),(30488,'history_uint','itemid',30440),(30489,'trends','itemid',30440),(30490,'trends_uint','itemid',30440),(30491,'events','itemid',30441),(30492,'history','itemid',30441),(30493,'history_log','itemid',30441),(30494,'history_str','itemid',30441),(30495,'history_text','itemid',30441),(30496,'history_uint','itemid',30441),(30497,'trends','itemid',30441),(30498,'trends_uint','itemid',30441),(30499,'events','itemid',30442),(30500,'history','itemid',30442),(30501,'history_log','itemid',30442),(30502,'history_str','itemid',30442),(30503,'history_text','itemid',30442),(30504,'history_uint','itemid',30442),(30505,'trends','itemid',30442),(30506,'trends_uint','itemid',30442),(30507,'events','itemid',30443),(30508,'history','itemid',30443),(30509,'history_log','itemid',30443),(30510,'history_str','itemid',30443),(30511,'history_text','itemid',30443),(30512,'history_uint','itemid',30443),(30513,'trends','itemid',30443),(30514,'trends_uint','itemid',30443),(30515,'events','itemid',30444),(30516,'history','itemid',30444),(30517,'history_log','itemid',30444),(30518,'history_str','itemid',30444),(30519,'history_text','itemid',30444),(30520,'history_uint','itemid',30444),(30521,'trends','itemid',30444),(30522,'trends_uint','itemid',30444),(30523,'events','itemid',30445),(30524,'history','itemid',30445),(30525,'history_log','itemid',30445),(30526,'history_str','itemid',30445),(30527,'history_text','itemid',30445),(30528,'history_uint','itemid',30445),(30529,'trends','itemid',30445),(30530,'trends_uint','itemid',30445),(30531,'events','itemid',30446),(30532,'history','itemid',30446),(30533,'history_log','itemid',30446),(30534,'history_str','itemid',30446),(30535,'history_text','itemid',30446),(30536,'history_uint','itemid',30446),(30537,'trends','itemid',30446),(30538,'trends_uint','itemid',30446),(30539,'events','itemid',30447),(30540,'history','itemid',30447),(30541,'history_log','itemid',30447),(30542,'history_str','itemid',30447),(30543,'history_text','itemid',30447),(30544,'history_uint','itemid',30447),(30545,'trends','itemid',30447),(30546,'trends_uint','itemid',30447),(30547,'events','itemid',30449),(30548,'history','itemid',30449),(30549,'history_log','itemid',30449),(30550,'history_str','itemid',30449),(30551,'history_text','itemid',30449),(30552,'history_uint','itemid',30449),(30553,'trends','itemid',30449),(30554,'trends_uint','itemid',30449),(30555,'events','itemid',30450),(30556,'history','itemid',30450),(30557,'history_log','itemid',30450),(30558,'history_str','itemid',30450),(30559,'history_text','itemid',30450),(30560,'history_uint','itemid',30450),(30561,'trends','itemid',30450),(30562,'trends_uint','itemid',30450),(30563,'events','itemid',30451),(30564,'history','itemid',30451),(30565,'history_log','itemid',30451),(30566,'history_str','itemid',30451),(30567,'history_text','itemid',30451),(30568,'history_uint','itemid',30451),(30569,'trends','itemid',30451),(30570,'trends_uint','itemid',30451),(30571,'events','itemid',30452),(30572,'history','itemid',30452),(30573,'history_log','itemid',30452),(30574,'history_str','itemid',30452),(30575,'history_text','itemid',30452),(30576,'history_uint','itemid',30452),(30577,'trends','itemid',30452),(30578,'trends_uint','itemid',30452),(30579,'events','itemid',30453),(30580,'history','itemid',30453),(30581,'history_log','itemid',30453),(30582,'history_str','itemid',30453),(30583,'history_text','itemid',30453),(30584,'history_uint','itemid',30453),(30585,'trends','itemid',30453),(30586,'trends_uint','itemid',30453),(30587,'events','itemid',30454),(30588,'history','itemid',30454),(30589,'history_log','itemid',30454),(30590,'history_str','itemid',30454),(30591,'history_text','itemid',30454),(30592,'history_uint','itemid',30454),(30593,'trends','itemid',30454),(30594,'trends_uint','itemid',30454),(30595,'events','itemid',30455),(30596,'history','itemid',30455),(30597,'history_log','itemid',30455),(30598,'history_str','itemid',30455),(30599,'history_text','itemid',30455),(30600,'history_uint','itemid',30455),(30601,'trends','itemid',30455),(30602,'trends_uint','itemid',30455),(30603,'events','itemid',30456),(30604,'history','itemid',30456),(30605,'history_log','itemid',30456),(30606,'history_str','itemid',30456),(30607,'history_text','itemid',30456),(30608,'history_uint','itemid',30456),(30609,'trends','itemid',30456),(30610,'trends_uint','itemid',30456),(30611,'events','itemid',30457),(30612,'history','itemid',30457),(30613,'history_log','itemid',30457),(30614,'history_str','itemid',30457),(30615,'history_text','itemid',30457),(30616,'history_uint','itemid',30457),(30617,'trends','itemid',30457),(30618,'trends_uint','itemid',30457),(30619,'events','itemid',30458),(30620,'history','itemid',30458),(30621,'history_log','itemid',30458),(30622,'history_str','itemid',30458),(30623,'history_text','itemid',30458),(30624,'history_uint','itemid',30458),(30625,'trends','itemid',30458),(30626,'trends_uint','itemid',30458),(30627,'events','itemid',30459),(30628,'history','itemid',30459),(30629,'history_log','itemid',30459),(30630,'history_str','itemid',30459),(30631,'history_text','itemid',30459),(30632,'history_uint','itemid',30459),(30633,'trends','itemid',30459),(30634,'trends_uint','itemid',30459),(30635,'events','itemid',30460),(30636,'history','itemid',30460),(30637,'history_log','itemid',30460),(30638,'history_str','itemid',30460),(30639,'history_text','itemid',30460),(30640,'history_uint','itemid',30460),(30641,'trends','itemid',30460),(30642,'trends_uint','itemid',30460),(30643,'events','itemid',30461),(30644,'history','itemid',30461),(30645,'history_log','itemid',30461),(30646,'history_str','itemid',30461),(30647,'history_text','itemid',30461),(30648,'history_uint','itemid',30461),(30649,'trends','itemid',30461),(30650,'trends_uint','itemid',30461),(30651,'events','itemid',30462),(30652,'history','itemid',30462),(30653,'history_log','itemid',30462),(30654,'history_str','itemid',30462),(30655,'history_text','itemid',30462),(30656,'history_uint','itemid',30462),(30657,'trends','itemid',30462),(30658,'trends_uint','itemid',30462),(30659,'events','itemid',30463),(30660,'history','itemid',30463),(30661,'history_log','itemid',30463),(30662,'history_str','itemid',30463),(30663,'history_text','itemid',30463),(30664,'history_uint','itemid',30463),(30665,'trends','itemid',30463),(30666,'trends_uint','itemid',30463),(30667,'events','itemid',30464),(30668,'history','itemid',30464),(30669,'history_log','itemid',30464),(30670,'history_str','itemid',30464),(30671,'history_text','itemid',30464),(30672,'history_uint','itemid',30464),(30673,'trends','itemid',30464),(30674,'trends_uint','itemid',30464),(30675,'events','itemid',30465),(30676,'history','itemid',30465),(30677,'history_log','itemid',30465),(30678,'history_str','itemid',30465),(30679,'history_text','itemid',30465),(30680,'history_uint','itemid',30465),(30681,'trends','itemid',30465),(30682,'trends_uint','itemid',30465),(30683,'events','itemid',30466),(30684,'history','itemid',30466),(30685,'history_log','itemid',30466),(30686,'history_str','itemid',30466),(30687,'history_text','itemid',30466),(30688,'history_uint','itemid',30466),(30689,'trends','itemid',30466),(30690,'trends_uint','itemid',30466),(30691,'events','itemid',30470),(30692,'history','itemid',30470),(30693,'history_log','itemid',30470),(30694,'history_str','itemid',30470),(30695,'history_text','itemid',30470),(30696,'history_uint','itemid',30470),(30697,'trends','itemid',30470),(30698,'trends_uint','itemid',30470),(30699,'events','itemid',30471),(30700,'history','itemid',30471),(30701,'history_log','itemid',30471),(30702,'history_str','itemid',30471),(30703,'history_text','itemid',30471),(30704,'history_uint','itemid',30471),(30705,'trends','itemid',30471),(30706,'trends_uint','itemid',30471),(30707,'events','itemid',30479),(30708,'history','itemid',30479),(30709,'history_log','itemid',30479),(30710,'history_str','itemid',30479),(30711,'history_text','itemid',30479),(30712,'history_uint','itemid',30479),(30713,'trends','itemid',30479),(30714,'trends_uint','itemid',30479),(30715,'events','itemid',30480),(30716,'history','itemid',30480),(30717,'history_log','itemid',30480),(30718,'history_str','itemid',30480),(30719,'history_text','itemid',30480),(30720,'history_uint','itemid',30480),(30721,'trends','itemid',30480),(30722,'trends_uint','itemid',30480),(30723,'events','itemid',30481),(30724,'history','itemid',30481),(30725,'history_log','itemid',30481),(30726,'history_str','itemid',30481),(30727,'history_text','itemid',30481),(30728,'history_uint','itemid',30481),(30729,'trends','itemid',30481),(30730,'trends_uint','itemid',30481),(30731,'events','itemid',30482),(30732,'history','itemid',30482),(30733,'history_log','itemid',30482),(30734,'history_str','itemid',30482),(30735,'history_text','itemid',30482),(30736,'history_uint','itemid',30482),(30737,'trends','itemid',30482),(30738,'trends_uint','itemid',30482),(30739,'events','itemid',30483),(30740,'history','itemid',30483),(30741,'history_log','itemid',30483),(30742,'history_str','itemid',30483),(30743,'history_text','itemid',30483),(30744,'history_uint','itemid',30483),(30745,'trends','itemid',30483),(30746,'trends_uint','itemid',30483),(30747,'events','itemid',30484),(30748,'history','itemid',30484),(30749,'history_log','itemid',30484),(30750,'history_str','itemid',30484),(30751,'history_text','itemid',30484),(30752,'history_uint','itemid',30484),(30753,'trends','itemid',30484),(30754,'trends_uint','itemid',30484),(30755,'events','itemid',30485),(30756,'history','itemid',30485),(30757,'history_log','itemid',30485),(30758,'history_str','itemid',30485),(30759,'history_text','itemid',30485),(30760,'history_uint','itemid',30485),(30761,'trends','itemid',30485),(30762,'trends_uint','itemid',30485),(30763,'events','itemid',30486),(30764,'history','itemid',30486),(30765,'history_log','itemid',30486),(30766,'history_str','itemid',30486),(30767,'history_text','itemid',30486),(30768,'history_uint','itemid',30486),(30769,'trends','itemid',30486),(30770,'trends_uint','itemid',30486),(30771,'events','itemid',30487),(30772,'history','itemid',30487),(30773,'history_log','itemid',30487),(30774,'history_str','itemid',30487),(30775,'history_text','itemid',30487),(30776,'history_uint','itemid',30487),(30777,'trends','itemid',30487),(30778,'trends_uint','itemid',30487),(30779,'events','itemid',30488),(30780,'history','itemid',30488),(30781,'history_log','itemid',30488),(30782,'history_str','itemid',30488),(30783,'history_text','itemid',30488),(30784,'history_uint','itemid',30488),(30785,'trends','itemid',30488),(30786,'trends_uint','itemid',30488),(30787,'events','itemid',30489),(30788,'history','itemid',30489),(30789,'history_log','itemid',30489),(30790,'history_str','itemid',30489),(30791,'history_text','itemid',30489),(30792,'history_uint','itemid',30489),(30793,'trends','itemid',30489),(30794,'trends_uint','itemid',30489),(30795,'events','itemid',30490),(30796,'history','itemid',30490),(30797,'history_log','itemid',30490),(30798,'history_str','itemid',30490),(30799,'history_text','itemid',30490),(30800,'history_uint','itemid',30490),(30801,'trends','itemid',30490),(30802,'trends_uint','itemid',30490),(30803,'events','itemid',30491),(30804,'history','itemid',30491),(30805,'history_log','itemid',30491),(30806,'history_str','itemid',30491),(30807,'history_text','itemid',30491),(30808,'history_uint','itemid',30491),(30809,'trends','itemid',30491),(30810,'trends_uint','itemid',30491),(30811,'events','itemid',30492),(30812,'history','itemid',30492),(30813,'history_log','itemid',30492),(30814,'history_str','itemid',30492),(30815,'history_text','itemid',30492),(30816,'history_uint','itemid',30492),(30817,'trends','itemid',30492),(30818,'trends_uint','itemid',30492),(30819,'events','itemid',30493),(30820,'history','itemid',30493),(30821,'history_log','itemid',30493),(30822,'history_str','itemid',30493),(30823,'history_text','itemid',30493),(30824,'history_uint','itemid',30493),(30825,'trends','itemid',30493),(30826,'trends_uint','itemid',30493),(30827,'events','itemid',30494),(30828,'history','itemid',30494),(30829,'history_log','itemid',30494),(30830,'history_str','itemid',30494),(30831,'history_text','itemid',30494),(30832,'history_uint','itemid',30494),(30833,'trends','itemid',30494),(30834,'trends_uint','itemid',30494),(30835,'events','itemid',30495),(30836,'history','itemid',30495),(30837,'history_log','itemid',30495),(30838,'history_str','itemid',30495),(30839,'history_text','itemid',30495),(30840,'history_uint','itemid',30495),(30841,'trends','itemid',30495),(30842,'trends_uint','itemid',30495),(30843,'events','itemid',30496),(30844,'history','itemid',30496),(30845,'history_log','itemid',30496),(30846,'history_str','itemid',30496),(30847,'history_text','itemid',30496),(30848,'history_uint','itemid',30496),(30849,'trends','itemid',30496),(30850,'trends_uint','itemid',30496),(30851,'events','itemid',30497),(30852,'history','itemid',30497),(30853,'history_log','itemid',30497),(30854,'history_str','itemid',30497),(30855,'history_text','itemid',30497),(30856,'history_uint','itemid',30497),(30857,'trends','itemid',30497),(30858,'trends_uint','itemid',30497),(30859,'events','itemid',30499),(30860,'history','itemid',30499),(30861,'history_log','itemid',30499),(30862,'history_str','itemid',30499),(30863,'history_text','itemid',30499),(30864,'history_uint','itemid',30499),(30865,'trends','itemid',30499),(30866,'trends_uint','itemid',30499),(30867,'events','itemid',30500),(30868,'history','itemid',30500),(30869,'history_log','itemid',30500),(30870,'history_str','itemid',30500),(30871,'history_text','itemid',30500),(30872,'history_uint','itemid',30500),(30873,'trends','itemid',30500),(30874,'trends_uint','itemid',30500),(30875,'events','itemid',30503),(30876,'history','itemid',30503),(30877,'history_log','itemid',30503),(30878,'history_str','itemid',30503),(30879,'history_text','itemid',30503),(30880,'history_uint','itemid',30503),(30881,'trends','itemid',30503),(30882,'trends_uint','itemid',30503),(30883,'events','itemid',30504),(30884,'history','itemid',30504),(30885,'history_log','itemid',30504),(30886,'history_str','itemid',30504),(30887,'history_text','itemid',30504),(30888,'history_uint','itemid',30504),(30889,'trends','itemid',30504),(30890,'trends_uint','itemid',30504),(30891,'events','itemid',30505),(30892,'history','itemid',30505),(30893,'history_log','itemid',30505),(30894,'history_str','itemid',30505),(30895,'history_text','itemid',30505),(30896,'history_uint','itemid',30505),(30897,'trends','itemid',30505),(30898,'trends_uint','itemid',30505),(30899,'events','itemid',30506),(30900,'history','itemid',30506),(30901,'history_log','itemid',30506),(30902,'history_str','itemid',30506),(30903,'history_text','itemid',30506),(30904,'history_uint','itemid',30506),(30905,'trends','itemid',30506),(30906,'trends_uint','itemid',30506),(30907,'events','itemid',30507),(30908,'history','itemid',30507),(30909,'history_log','itemid',30507),(30910,'history_str','itemid',30507),(30911,'history_text','itemid',30507),(30912,'history_uint','itemid',30507),(30913,'trends','itemid',30507),(30914,'trends_uint','itemid',30507),(30915,'events','itemid',30508),(30916,'history','itemid',30508),(30917,'history_log','itemid',30508),(30918,'history_str','itemid',30508),(30919,'history_text','itemid',30508),(30920,'history_uint','itemid',30508),(30921,'trends','itemid',30508),(30922,'trends_uint','itemid',30508),(30923,'events','itemid',30509),(30924,'history','itemid',30509),(30925,'history_log','itemid',30509),(30926,'history_str','itemid',30509),(30927,'history_text','itemid',30509),(30928,'history_uint','itemid',30509),(30929,'trends','itemid',30509),(30930,'trends_uint','itemid',30509),(30931,'events','itemid',30510),(30932,'history','itemid',30510),(30933,'history_log','itemid',30510),(30934,'history_str','itemid',30510),(30935,'history_text','itemid',30510),(30936,'history_uint','itemid',30510),(30937,'trends','itemid',30510),(30938,'trends_uint','itemid',30510),(30939,'events','itemid',30512),(30940,'history','itemid',30512),(30941,'history_log','itemid',30512),(30942,'history_str','itemid',30512),(30943,'history_text','itemid',30512),(30944,'history_uint','itemid',30512),(30945,'trends','itemid',30512),(30946,'trends_uint','itemid',30512),(30947,'events','itemid',30513),(30948,'history','itemid',30513),(30949,'history_log','itemid',30513),(30950,'history_str','itemid',30513),(30951,'history_text','itemid',30513),(30952,'history_uint','itemid',30513),(30953,'trends','itemid',30513),(30954,'trends_uint','itemid',30513),(30955,'events','itemid',30514),(30956,'history','itemid',30514),(30957,'history_log','itemid',30514),(30958,'history_str','itemid',30514),(30959,'history_text','itemid',30514),(30960,'history_uint','itemid',30514),(30961,'trends','itemid',30514),(30962,'trends_uint','itemid',30514),(30963,'events','itemid',30515),(30964,'history','itemid',30515),(30965,'history_log','itemid',30515),(30966,'history_str','itemid',30515),(30967,'history_text','itemid',30515),(30968,'history_uint','itemid',30515),(30969,'trends','itemid',30515),(30970,'trends_uint','itemid',30515),(30971,'events','itemid',30516),(30972,'history','itemid',30516),(30973,'history_log','itemid',30516),(30974,'history_str','itemid',30516),(30975,'history_text','itemid',30516),(30976,'history_uint','itemid',30516),(30977,'trends','itemid',30516),(30978,'trends_uint','itemid',30516),(30979,'events','itemid',30517),(30980,'history','itemid',30517),(30981,'history_log','itemid',30517),(30982,'history_str','itemid',30517),(30983,'history_text','itemid',30517),(30984,'history_uint','itemid',30517),(30985,'trends','itemid',30517),(30986,'trends_uint','itemid',30517),(30987,'events','itemid',30518),(30988,'history','itemid',30518),(30989,'history_log','itemid',30518),(30990,'history_str','itemid',30518),(30991,'history_text','itemid',30518),(30992,'history_uint','itemid',30518),(30993,'trends','itemid',30518),(30994,'trends_uint','itemid',30518),(30995,'events','itemid',30519),(30996,'history','itemid',30519),(30997,'history_log','itemid',30519),(30998,'history_str','itemid',30519),(30999,'history_text','itemid',30519),(31000,'history_uint','itemid',30519),(31001,'trends','itemid',30519),(31002,'trends_uint','itemid',30519),(31003,'events','itemid',30637),(31004,'history','itemid',30637),(31005,'history_log','itemid',30637),(31006,'history_str','itemid',30637),(31007,'history_text','itemid',30637),(31008,'history_uint','itemid',30637),(31009,'trends','itemid',30637),(31010,'trends_uint','itemid',30637),(31011,'events','itemid',30638),(31012,'history','itemid',30638),(31013,'history_log','itemid',30638),(31014,'history_str','itemid',30638),(31015,'history_text','itemid',30638),(31016,'history_uint','itemid',30638),(31017,'trends','itemid',30638),(31018,'trends_uint','itemid',30638),(31019,'events','itemid',30639),(31020,'history','itemid',30639),(31021,'history_log','itemid',30639),(31022,'history_str','itemid',30639),(31023,'history_text','itemid',30639),(31024,'history_uint','itemid',30639),(31025,'trends','itemid',30639),(31026,'trends_uint','itemid',30639),(31027,'events','itemid',30640),(31028,'history','itemid',30640),(31029,'history_log','itemid',30640),(31030,'history_str','itemid',30640),(31031,'history_text','itemid',30640),(31032,'history_uint','itemid',30640),(31033,'trends','itemid',30640),(31034,'trends_uint','itemid',30640),(31035,'events','itemid',30641),(31036,'history','itemid',30641),(31037,'history_log','itemid',30641),(31038,'history_str','itemid',30641),(31039,'history_text','itemid',30641),(31040,'history_uint','itemid',30641),(31041,'trends','itemid',30641),(31042,'trends_uint','itemid',30641),(31043,'events','itemid',30642),(31044,'history','itemid',30642),(31045,'history_log','itemid',30642),(31046,'history_str','itemid',30642),(31047,'history_text','itemid',30642),(31048,'history_uint','itemid',30642),(31049,'trends','itemid',30642),(31050,'trends_uint','itemid',30642),(31051,'events','itemid',30643),(31052,'history','itemid',30643),(31053,'history_log','itemid',30643),(31054,'history_str','itemid',30643),(31055,'history_text','itemid',30643),(31056,'history_uint','itemid',30643),(31057,'trends','itemid',30643),(31058,'trends_uint','itemid',30643),(31059,'events','itemid',30644),(31060,'history','itemid',30644),(31061,'history_log','itemid',30644),(31062,'history_str','itemid',30644),(31063,'history_text','itemid',30644),(31064,'history_uint','itemid',30644),(31065,'trends','itemid',30644),(31066,'trends_uint','itemid',30644),(31067,'events','itemid',30645),(31068,'history','itemid',30645),(31069,'history_log','itemid',30645),(31070,'history_str','itemid',30645),(31071,'history_text','itemid',30645),(31072,'history_uint','itemid',30645),(31073,'trends','itemid',30645),(31074,'trends_uint','itemid',30645),(31075,'events','itemid',30646),(31076,'history','itemid',30646),(31077,'history_log','itemid',30646),(31078,'history_str','itemid',30646),(31079,'history_text','itemid',30646),(31080,'history_uint','itemid',30646),(31081,'trends','itemid',30646),(31082,'trends_uint','itemid',30646),(31083,'events','itemid',30647),(31084,'history','itemid',30647),(31085,'history_log','itemid',30647),(31086,'history_str','itemid',30647),(31087,'history_text','itemid',30647),(31088,'history_uint','itemid',30647),(31089,'trends','itemid',30647),(31090,'trends_uint','itemid',30647),(31091,'events','itemid',30648),(31092,'history','itemid',30648),(31093,'history_log','itemid',30648),(31094,'history_str','itemid',30648),(31095,'history_text','itemid',30648),(31096,'history_uint','itemid',30648),(31097,'trends','itemid',30648),(31098,'trends_uint','itemid',30648),(31099,'events','itemid',30649),(31100,'history','itemid',30649),(31101,'history_log','itemid',30649),(31102,'history_str','itemid',30649),(31103,'history_text','itemid',30649),(31104,'history_uint','itemid',30649),(31105,'trends','itemid',30649),(31106,'trends_uint','itemid',30649),(31107,'events','itemid',30650),(31108,'history','itemid',30650),(31109,'history_log','itemid',30650),(31110,'history_str','itemid',30650),(31111,'history_text','itemid',30650),(31112,'history_uint','itemid',30650),(31113,'trends','itemid',30650),(31114,'trends_uint','itemid',30650),(31115,'events','itemid',30651),(31116,'history','itemid',30651),(31117,'history_log','itemid',30651),(31118,'history_str','itemid',30651),(31119,'history_text','itemid',30651),(31120,'history_uint','itemid',30651),(31121,'trends','itemid',30651),(31122,'trends_uint','itemid',30651),(31123,'events','itemid',30652),(31124,'history','itemid',30652),(31125,'history_log','itemid',30652),(31126,'history_str','itemid',30652),(31127,'history_text','itemid',30652),(31128,'history_uint','itemid',30652),(31129,'trends','itemid',30652),(31130,'trends_uint','itemid',30652),(31131,'events','itemid',30653),(31132,'history','itemid',30653),(31133,'history_log','itemid',30653),(31134,'history_str','itemid',30653),(31135,'history_text','itemid',30653),(31136,'history_uint','itemid',30653),(31137,'trends','itemid',30653),(31138,'trends_uint','itemid',30653),(31139,'events','itemid',30655),(31140,'history','itemid',30655),(31141,'history_log','itemid',30655),(31142,'history_str','itemid',30655),(31143,'history_text','itemid',30655),(31144,'history_uint','itemid',30655),(31145,'trends','itemid',30655),(31146,'trends_uint','itemid',30655),(31147,'events','itemid',30656),(31148,'history','itemid',30656),(31149,'history_log','itemid',30656),(31150,'history_str','itemid',30656),(31151,'history_text','itemid',30656),(31152,'history_uint','itemid',30656),(31153,'trends','itemid',30656),(31154,'trends_uint','itemid',30656),(31155,'events','itemid',30657),(31156,'history','itemid',30657),(31157,'history_log','itemid',30657),(31158,'history_str','itemid',30657),(31159,'history_text','itemid',30657),(31160,'history_uint','itemid',30657),(31161,'trends','itemid',30657),(31162,'trends_uint','itemid',30657),(31163,'events','itemid',30658),(31164,'history','itemid',30658),(31165,'history_log','itemid',30658),(31166,'history_str','itemid',30658),(31167,'history_text','itemid',30658),(31168,'history_uint','itemid',30658),(31169,'trends','itemid',30658),(31170,'trends_uint','itemid',30658),(31171,'events','itemid',30659),(31172,'history','itemid',30659),(31173,'history_log','itemid',30659),(31174,'history_str','itemid',30659),(31175,'history_text','itemid',30659),(31176,'history_uint','itemid',30659),(31177,'trends','itemid',30659),(31178,'trends_uint','itemid',30659),(31179,'events','itemid',30660),(31180,'history','itemid',30660),(31181,'history_log','itemid',30660),(31182,'history_str','itemid',30660),(31183,'history_text','itemid',30660),(31184,'history_uint','itemid',30660),(31185,'trends','itemid',30660),(31186,'trends_uint','itemid',30660),(31187,'events','itemid',30661),(31188,'history','itemid',30661),(31189,'history_log','itemid',30661),(31190,'history_str','itemid',30661),(31191,'history_text','itemid',30661),(31192,'history_uint','itemid',30661),(31193,'trends','itemid',30661),(31194,'trends_uint','itemid',30661),(31195,'events','itemid',30662),(31196,'history','itemid',30662),(31197,'history_log','itemid',30662),(31198,'history_str','itemid',30662),(31199,'history_text','itemid',30662),(31200,'history_uint','itemid',30662),(31201,'trends','itemid',30662),(31202,'trends_uint','itemid',30662),(31203,'events','itemid',30663),(31204,'history','itemid',30663),(31205,'history_log','itemid',30663),(31206,'history_str','itemid',30663),(31207,'history_text','itemid',30663),(31208,'history_uint','itemid',30663),(31209,'trends','itemid',30663),(31210,'trends_uint','itemid',30663),(31211,'events','itemid',30664),(31212,'history','itemid',30664),(31213,'history_log','itemid',30664),(31214,'history_str','itemid',30664),(31215,'history_text','itemid',30664),(31216,'history_uint','itemid',30664),(31217,'trends','itemid',30664),(31218,'trends_uint','itemid',30664),(31219,'events','itemid',30665),(31220,'history','itemid',30665),(31221,'history_log','itemid',30665),(31222,'history_str','itemid',30665),(31223,'history_text','itemid',30665),(31224,'history_uint','itemid',30665),(31225,'trends','itemid',30665),(31226,'trends_uint','itemid',30665),(31227,'events','itemid',30666),(31228,'history','itemid',30666),(31229,'history_log','itemid',30666),(31230,'history_str','itemid',30666),(31231,'history_text','itemid',30666),(31232,'history_uint','itemid',30666),(31233,'trends','itemid',30666),(31234,'trends_uint','itemid',30666),(31235,'events','itemid',30667),(31236,'history','itemid',30667),(31237,'history_log','itemid',30667),(31238,'history_str','itemid',30667),(31239,'history_text','itemid',30667),(31240,'history_uint','itemid',30667),(31241,'trends','itemid',30667),(31242,'trends_uint','itemid',30667),(31243,'events','itemid',30668),(31244,'history','itemid',30668),(31245,'history_log','itemid',30668),(31246,'history_str','itemid',30668),(31247,'history_text','itemid',30668),(31248,'history_uint','itemid',30668),(31249,'trends','itemid',30668),(31250,'trends_uint','itemid',30668),(31251,'events','itemid',30669),(31252,'history','itemid',30669),(31253,'history_log','itemid',30669),(31254,'history_str','itemid',30669),(31255,'history_text','itemid',30669),(31256,'history_uint','itemid',30669),(31257,'trends','itemid',30669),(31258,'trends_uint','itemid',30669),(31259,'events','itemid',30670),(31260,'history','itemid',30670),(31261,'history_log','itemid',30670),(31262,'history_str','itemid',30670),(31263,'history_text','itemid',30670),(31264,'history_uint','itemid',30670),(31265,'trends','itemid',30670),(31266,'trends_uint','itemid',30670),(31267,'events','itemid',30671),(31268,'history','itemid',30671),(31269,'history_log','itemid',30671),(31270,'history_str','itemid',30671),(31271,'history_text','itemid',30671),(31272,'history_uint','itemid',30671),(31273,'trends','itemid',30671),(31274,'trends_uint','itemid',30671),(31275,'events','itemid',30672),(31276,'history','itemid',30672),(31277,'history_log','itemid',30672),(31278,'history_str','itemid',30672),(31279,'history_text','itemid',30672),(31280,'history_uint','itemid',30672),(31281,'trends','itemid',30672),(31282,'trends_uint','itemid',30672),(31283,'events','itemid',30676),(31284,'history','itemid',30676),(31285,'history_log','itemid',30676),(31286,'history_str','itemid',30676),(31287,'history_text','itemid',30676),(31288,'history_uint','itemid',30676),(31289,'trends','itemid',30676),(31290,'trends_uint','itemid',30676),(31291,'events','itemid',30677),(31292,'history','itemid',30677),(31293,'history_log','itemid',30677),(31294,'history_str','itemid',30677),(31295,'history_text','itemid',30677),(31296,'history_uint','itemid',30677),(31297,'trends','itemid',30677),(31298,'trends_uint','itemid',30677),(31299,'events','itemid',31055),(31300,'history','itemid',31055),(31301,'history_log','itemid',31055),(31302,'history_str','itemid',31055),(31303,'history_text','itemid',31055),(31304,'history_uint','itemid',31055),(31305,'trends','itemid',31055),(31306,'trends_uint','itemid',31055),(31307,'events','itemid',31056),(31308,'history','itemid',31056),(31309,'history_log','itemid',31056),(31310,'history_str','itemid',31056),(31311,'history_text','itemid',31056),(31312,'history_uint','itemid',31056),(31313,'trends','itemid',31056),(31314,'trends_uint','itemid',31056),(31315,'events','itemid',31057),(31316,'history','itemid',31057),(31317,'history_log','itemid',31057),(31318,'history_str','itemid',31057),(31319,'history_text','itemid',31057),(31320,'history_uint','itemid',31057),(31321,'trends','itemid',31057),(31322,'trends_uint','itemid',31057),(31323,'events','itemid',31058),(31324,'history','itemid',31058),(31325,'history_log','itemid',31058),(31326,'history_str','itemid',31058),(31327,'history_text','itemid',31058),(31328,'history_uint','itemid',31058),(31329,'trends','itemid',31058),(31330,'trends_uint','itemid',31058),(31331,'events','itemid',31059),(31332,'history','itemid',31059),(31333,'history_log','itemid',31059),(31334,'history_str','itemid',31059),(31335,'history_text','itemid',31059),(31336,'history_uint','itemid',31059),(31337,'trends','itemid',31059),(31338,'trends_uint','itemid',31059),(31339,'events','itemid',31060),(31340,'history','itemid',31060),(31341,'history_log','itemid',31060),(31342,'history_str','itemid',31060),(31343,'history_text','itemid',31060),(31344,'history_uint','itemid',31060),(31345,'trends','itemid',31060),(31346,'trends_uint','itemid',31060),(31347,'events','itemid',31061),(31348,'history','itemid',31061),(31349,'history_log','itemid',31061),(31350,'history_str','itemid',31061),(31351,'history_text','itemid',31061),(31352,'history_uint','itemid',31061),(31353,'trends','itemid',31061),(31354,'trends_uint','itemid',31061),(31355,'events','itemid',31062),(31356,'history','itemid',31062),(31357,'history_log','itemid',31062),(31358,'history_str','itemid',31062),(31359,'history_text','itemid',31062),(31360,'history_uint','itemid',31062),(31361,'trends','itemid',31062),(31362,'trends_uint','itemid',31062),(31363,'events','itemid',31063),(31364,'history','itemid',31063),(31365,'history_log','itemid',31063),(31366,'history_str','itemid',31063),(31367,'history_text','itemid',31063),(31368,'history_uint','itemid',31063),(31369,'trends','itemid',31063),(31370,'trends_uint','itemid',31063),(31371,'events','itemid',31064),(31372,'history','itemid',31064),(31373,'history_log','itemid',31064),(31374,'history_str','itemid',31064),(31375,'history_text','itemid',31064),(31376,'history_uint','itemid',31064),(31377,'trends','itemid',31064),(31378,'trends_uint','itemid',31064),(31379,'events','itemid',31065),(31380,'history','itemid',31065),(31381,'history_log','itemid',31065),(31382,'history_str','itemid',31065),(31383,'history_text','itemid',31065),(31384,'history_uint','itemid',31065),(31385,'trends','itemid',31065),(31386,'trends_uint','itemid',31065),(31387,'events','itemid',31066),(31388,'history','itemid',31066),(31389,'history_log','itemid',31066),(31390,'history_str','itemid',31066),(31391,'history_text','itemid',31066),(31392,'history_uint','itemid',31066),(31393,'trends','itemid',31066),(31394,'trends_uint','itemid',31066),(31395,'events','itemid',31067),(31396,'history','itemid',31067),(31397,'history_log','itemid',31067),(31398,'history_str','itemid',31067),(31399,'history_text','itemid',31067),(31400,'history_uint','itemid',31067),(31401,'trends','itemid',31067),(31402,'trends_uint','itemid',31067),(31403,'events','itemid',31068),(31404,'history','itemid',31068),(31405,'history_log','itemid',31068),(31406,'history_str','itemid',31068),(31407,'history_text','itemid',31068),(31408,'history_uint','itemid',31068),(31409,'trends','itemid',31068),(31410,'trends_uint','itemid',31068),(31411,'events','itemid',31069),(31412,'history','itemid',31069),(31413,'history_log','itemid',31069),(31414,'history_str','itemid',31069),(31415,'history_text','itemid',31069),(31416,'history_uint','itemid',31069),(31417,'trends','itemid',31069),(31418,'trends_uint','itemid',31069),(31419,'events','itemid',31070),(31420,'history','itemid',31070),(31421,'history_log','itemid',31070),(31422,'history_str','itemid',31070),(31423,'history_text','itemid',31070),(31424,'history_uint','itemid',31070),(31425,'trends','itemid',31070),(31426,'trends_uint','itemid',31070),(31427,'events','itemid',31071),(31428,'history','itemid',31071),(31429,'history_log','itemid',31071),(31430,'history_str','itemid',31071),(31431,'history_text','itemid',31071),(31432,'history_uint','itemid',31071),(31433,'trends','itemid',31071),(31434,'trends_uint','itemid',31071),(31435,'events','itemid',31072),(31436,'history','itemid',31072),(31437,'history_log','itemid',31072),(31438,'history_str','itemid',31072),(31439,'history_text','itemid',31072),(31440,'history_uint','itemid',31072),(31441,'trends','itemid',31072),(31442,'trends_uint','itemid',31072),(31443,'events','itemid',31073),(31444,'history','itemid',31073),(31445,'history_log','itemid',31073),(31446,'history_str','itemid',31073),(31447,'history_text','itemid',31073),(31448,'history_uint','itemid',31073),(31449,'trends','itemid',31073),(31450,'trends_uint','itemid',31073),(31451,'events','itemid',31074),(31452,'history','itemid',31074),(31453,'history_log','itemid',31074),(31454,'history_str','itemid',31074),(31455,'history_text','itemid',31074),(31456,'history_uint','itemid',31074),(31457,'trends','itemid',31074),(31458,'trends_uint','itemid',31074),(31459,'events','itemid',31075),(31460,'history','itemid',31075),(31461,'history_log','itemid',31075),(31462,'history_str','itemid',31075),(31463,'history_text','itemid',31075),(31464,'history_uint','itemid',31075),(31465,'trends','itemid',31075),(31466,'trends_uint','itemid',31075),(31467,'events','itemid',31076),(31468,'history','itemid',31076),(31469,'history_log','itemid',31076),(31470,'history_str','itemid',31076),(31471,'history_text','itemid',31076),(31472,'history_uint','itemid',31076),(31473,'trends','itemid',31076),(31474,'trends_uint','itemid',31076),(31475,'events','itemid',31077),(31476,'history','itemid',31077),(31477,'history_log','itemid',31077),(31478,'history_str','itemid',31077),(31479,'history_text','itemid',31077),(31480,'history_uint','itemid',31077),(31481,'trends','itemid',31077),(31482,'trends_uint','itemid',31077),(31483,'events','itemid',31078),(31484,'history','itemid',31078),(31485,'history_log','itemid',31078),(31486,'history_str','itemid',31078),(31487,'history_text','itemid',31078),(31488,'history_uint','itemid',31078),(31489,'trends','itemid',31078),(31490,'trends_uint','itemid',31078),(31491,'events','itemid',31079),(31492,'history','itemid',31079),(31493,'history_log','itemid',31079),(31494,'history_str','itemid',31079),(31495,'history_text','itemid',31079),(31496,'history_uint','itemid',31079),(31497,'trends','itemid',31079),(31498,'trends_uint','itemid',31079),(31499,'events','itemid',31080),(31500,'history','itemid',31080),(31501,'history_log','itemid',31080),(31502,'history_str','itemid',31080),(31503,'history_text','itemid',31080),(31504,'history_uint','itemid',31080),(31505,'trends','itemid',31080),(31506,'trends_uint','itemid',31080),(31507,'events','itemid',31081),(31508,'history','itemid',31081),(31509,'history_log','itemid',31081),(31510,'history_str','itemid',31081),(31511,'history_text','itemid',31081),(31512,'history_uint','itemid',31081),(31513,'trends','itemid',31081),(31514,'trends_uint','itemid',31081),(31515,'events','itemid',31082),(31516,'history','itemid',31082),(31517,'history_log','itemid',31082),(31518,'history_str','itemid',31082),(31519,'history_text','itemid',31082),(31520,'history_uint','itemid',31082),(31521,'trends','itemid',31082),(31522,'trends_uint','itemid',31082),(31523,'events','itemid',31083),(31524,'history','itemid',31083),(31525,'history_log','itemid',31083),(31526,'history_str','itemid',31083),(31527,'history_text','itemid',31083),(31528,'history_uint','itemid',31083),(31529,'trends','itemid',31083),(31530,'trends_uint','itemid',31083),(31531,'events','itemid',31084),(31532,'history','itemid',31084),(31533,'history_log','itemid',31084),(31534,'history_str','itemid',31084),(31535,'history_text','itemid',31084),(31536,'history_uint','itemid',31084),(31537,'trends','itemid',31084),(31538,'trends_uint','itemid',31084),(31539,'events','itemid',31085),(31540,'history','itemid',31085),(31541,'history_log','itemid',31085),(31542,'history_str','itemid',31085),(31543,'history_text','itemid',31085),(31544,'history_uint','itemid',31085),(31545,'trends','itemid',31085),(31546,'trends_uint','itemid',31085),(31547,'events','itemid',31086),(31548,'history','itemid',31086),(31549,'history_log','itemid',31086),(31550,'history_str','itemid',31086),(31551,'history_text','itemid',31086),(31552,'history_uint','itemid',31086),(31553,'trends','itemid',31086),(31554,'trends_uint','itemid',31086),(31555,'events','itemid',31087),(31556,'history','itemid',31087),(31557,'history_log','itemid',31087),(31558,'history_str','itemid',31087),(31559,'history_text','itemid',31087),(31560,'history_uint','itemid',31087),(31561,'trends','itemid',31087),(31562,'trends_uint','itemid',31087),(31563,'events','itemid',31088),(31564,'history','itemid',31088),(31565,'history_log','itemid',31088),(31566,'history_str','itemid',31088),(31567,'history_text','itemid',31088),(31568,'history_uint','itemid',31088),(31569,'trends','itemid',31088),(31570,'trends_uint','itemid',31088),(31571,'events','itemid',31089),(31572,'history','itemid',31089),(31573,'history_log','itemid',31089),(31574,'history_str','itemid',31089),(31575,'history_text','itemid',31089),(31576,'history_uint','itemid',31089),(31577,'trends','itemid',31089),(31578,'trends_uint','itemid',31089),(31579,'events','itemid',31090),(31580,'history','itemid',31090),(31581,'history_log','itemid',31090),(31582,'history_str','itemid',31090),(31583,'history_text','itemid',31090),(31584,'history_uint','itemid',31090),(31585,'trends','itemid',31090),(31586,'trends_uint','itemid',31090),(31587,'events','itemid',31091),(31588,'history','itemid',31091),(31589,'history_log','itemid',31091),(31590,'history_str','itemid',31091),(31591,'history_text','itemid',31091),(31592,'history_uint','itemid',31091),(31593,'trends','itemid',31091),(31594,'trends_uint','itemid',31091),(31595,'events','itemid',31092),(31596,'history','itemid',31092),(31597,'history_log','itemid',31092),(31598,'history_str','itemid',31092),(31599,'history_text','itemid',31092),(31600,'history_uint','itemid',31092),(31601,'trends','itemid',31092),(31602,'trends_uint','itemid',31092),(31603,'events','itemid',31093),(31604,'history','itemid',31093),(31605,'history_log','itemid',31093),(31606,'history_str','itemid',31093),(31607,'history_text','itemid',31093),(31608,'history_uint','itemid',31093),(31609,'trends','itemid',31093),(31610,'trends_uint','itemid',31093),(31611,'events','itemid',31094),(31612,'history','itemid',31094),(31613,'history_log','itemid',31094),(31614,'history_str','itemid',31094),(31615,'history_text','itemid',31094),(31616,'history_uint','itemid',31094),(31617,'trends','itemid',31094),(31618,'trends_uint','itemid',31094),(31619,'events','itemid',31095),(31620,'history','itemid',31095),(31621,'history_log','itemid',31095),(31622,'history_str','itemid',31095),(31623,'history_text','itemid',31095),(31624,'history_uint','itemid',31095),(31625,'trends','itemid',31095),(31626,'trends_uint','itemid',31095),(31627,'events','itemid',31096),(31628,'history','itemid',31096),(31629,'history_log','itemid',31096),(31630,'history_str','itemid',31096),(31631,'history_text','itemid',31096),(31632,'history_uint','itemid',31096),(31633,'trends','itemid',31096),(31634,'trends_uint','itemid',31096),(31635,'events','itemid',31097),(31636,'history','itemid',31097),(31637,'history_log','itemid',31097),(31638,'history_str','itemid',31097),(31639,'history_text','itemid',31097),(31640,'history_uint','itemid',31097),(31641,'trends','itemid',31097),(31642,'trends_uint','itemid',31097),(31643,'events','itemid',31098),(31644,'history','itemid',31098),(31645,'history_log','itemid',31098),(31646,'history_str','itemid',31098),(31647,'history_text','itemid',31098),(31648,'history_uint','itemid',31098),(31649,'trends','itemid',31098),(31650,'trends_uint','itemid',31098),(31651,'events','itemid',31099),(31652,'history','itemid',31099),(31653,'history_log','itemid',31099),(31654,'history_str','itemid',31099),(31655,'history_text','itemid',31099),(31656,'history_uint','itemid',31099),(31657,'trends','itemid',31099),(31658,'trends_uint','itemid',31099),(31659,'events','itemid',31100),(31660,'history','itemid',31100),(31661,'history_log','itemid',31100),(31662,'history_str','itemid',31100),(31663,'history_text','itemid',31100),(31664,'history_uint','itemid',31100),(31665,'trends','itemid',31100),(31666,'trends_uint','itemid',31100),(31667,'events','itemid',31101),(31668,'history','itemid',31101),(31669,'history_log','itemid',31101),(31670,'history_str','itemid',31101),(31671,'history_text','itemid',31101),(31672,'history_uint','itemid',31101),(31673,'trends','itemid',31101),(31674,'trends_uint','itemid',31101),(31675,'events','itemid',31102),(31676,'history','itemid',31102),(31677,'history_log','itemid',31102),(31678,'history_str','itemid',31102),(31679,'history_text','itemid',31102),(31680,'history_uint','itemid',31102),(31681,'trends','itemid',31102),(31682,'trends_uint','itemid',31102),(31683,'events','itemid',31103),(31684,'history','itemid',31103),(31685,'history_log','itemid',31103),(31686,'history_str','itemid',31103),(31687,'history_text','itemid',31103),(31688,'history_uint','itemid',31103),(31689,'trends','itemid',31103),(31690,'trends_uint','itemid',31103),(31691,'events','itemid',31104),(31692,'history','itemid',31104),(31693,'history_log','itemid',31104),(31694,'history_str','itemid',31104),(31695,'history_text','itemid',31104),(31696,'history_uint','itemid',31104),(31697,'trends','itemid',31104),(31698,'trends_uint','itemid',31104),(31699,'events','itemid',31105),(31700,'history','itemid',31105),(31701,'history_log','itemid',31105),(31702,'history_str','itemid',31105),(31703,'history_text','itemid',31105),(31704,'history_uint','itemid',31105),(31705,'trends','itemid',31105),(31706,'trends_uint','itemid',31105),(31707,'events','itemid',31106),(31708,'history','itemid',31106),(31709,'history_log','itemid',31106),(31710,'history_str','itemid',31106),(31711,'history_text','itemid',31106),(31712,'history_uint','itemid',31106),(31713,'trends','itemid',31106),(31714,'trends_uint','itemid',31106),(31715,'events','itemid',31107),(31716,'history','itemid',31107),(31717,'history_log','itemid',31107),(31718,'history_str','itemid',31107),(31719,'history_text','itemid',31107),(31720,'history_uint','itemid',31107),(31721,'trends','itemid',31107),(31722,'trends_uint','itemid',31107),(31723,'events','itemid',31108),(31724,'history','itemid',31108),(31725,'history_log','itemid',31108),(31726,'history_str','itemid',31108),(31727,'history_text','itemid',31108),(31728,'history_uint','itemid',31108),(31729,'trends','itemid',31108),(31730,'trends_uint','itemid',31108),(31731,'events','itemid',31109),(31732,'history','itemid',31109),(31733,'history_log','itemid',31109),(31734,'history_str','itemid',31109),(31735,'history_text','itemid',31109),(31736,'history_uint','itemid',31109),(31737,'trends','itemid',31109),(31738,'trends_uint','itemid',31109),(31739,'events','itemid',31110),(31740,'history','itemid',31110),(31741,'history_log','itemid',31110),(31742,'history_str','itemid',31110),(31743,'history_text','itemid',31110),(31744,'history_uint','itemid',31110),(31745,'trends','itemid',31110),(31746,'trends_uint','itemid',31110),(31747,'events','itemid',31111),(31748,'history','itemid',31111),(31749,'history_log','itemid',31111),(31750,'history_str','itemid',31111),(31751,'history_text','itemid',31111),(31752,'history_uint','itemid',31111),(31753,'trends','itemid',31111),(31754,'trends_uint','itemid',31111),(31755,'events','itemid',31112),(31756,'history','itemid',31112),(31757,'history_log','itemid',31112),(31758,'history_str','itemid',31112),(31759,'history_text','itemid',31112),(31760,'history_uint','itemid',31112),(31761,'trends','itemid',31112),(31762,'trends_uint','itemid',31112),(31763,'events','itemid',31113),(31764,'history','itemid',31113),(31765,'history_log','itemid',31113),(31766,'history_str','itemid',31113),(31767,'history_text','itemid',31113),(31768,'history_uint','itemid',31113),(31769,'trends','itemid',31113),(31770,'trends_uint','itemid',31113),(31771,'events','itemid',31114),(31772,'history','itemid',31114),(31773,'history_log','itemid',31114),(31774,'history_str','itemid',31114),(31775,'history_text','itemid',31114),(31776,'history_uint','itemid',31114),(31777,'trends','itemid',31114),(31778,'trends_uint','itemid',31114),(31779,'events','itemid',31115),(31780,'history','itemid',31115),(31781,'history_log','itemid',31115),(31782,'history_str','itemid',31115),(31783,'history_text','itemid',31115),(31784,'history_uint','itemid',31115),(31785,'trends','itemid',31115),(31786,'trends_uint','itemid',31115),(31787,'events','itemid',31116),(31788,'history','itemid',31116),(31789,'history_log','itemid',31116),(31790,'history_str','itemid',31116),(31791,'history_text','itemid',31116),(31792,'history_uint','itemid',31116),(31793,'trends','itemid',31116),(31794,'trends_uint','itemid',31116),(31795,'events','itemid',31117),(31796,'history','itemid',31117),(31797,'history_log','itemid',31117),(31798,'history_str','itemid',31117),(31799,'history_text','itemid',31117),(31800,'history_uint','itemid',31117),(31801,'trends','itemid',31117),(31802,'trends_uint','itemid',31117),(31803,'events','itemid',31118),(31804,'history','itemid',31118),(31805,'history_log','itemid',31118),(31806,'history_str','itemid',31118),(31807,'history_text','itemid',31118),(31808,'history_uint','itemid',31118),(31809,'trends','itemid',31118),(31810,'trends_uint','itemid',31118),(31811,'events','itemid',31119),(31812,'history','itemid',31119),(31813,'history_log','itemid',31119),(31814,'history_str','itemid',31119),(31815,'history_text','itemid',31119),(31816,'history_uint','itemid',31119),(31817,'trends','itemid',31119),(31818,'trends_uint','itemid',31119),(31819,'events','itemid',31120),(31820,'history','itemid',31120),(31821,'history_log','itemid',31120),(31822,'history_str','itemid',31120),(31823,'history_text','itemid',31120),(31824,'history_uint','itemid',31120),(31825,'trends','itemid',31120),(31826,'trends_uint','itemid',31120),(31827,'events','itemid',31121),(31828,'history','itemid',31121),(31829,'history_log','itemid',31121),(31830,'history_str','itemid',31121),(31831,'history_text','itemid',31121),(31832,'history_uint','itemid',31121),(31833,'trends','itemid',31121),(31834,'trends_uint','itemid',31121),(31835,'events','itemid',31168),(31836,'history','itemid',31168),(31837,'history_log','itemid',31168),(31838,'history_str','itemid',31168),(31839,'history_text','itemid',31168),(31840,'history_uint','itemid',31168),(31841,'trends','itemid',31168),(31842,'trends_uint','itemid',31168),(31843,'events','itemid',31169),(31844,'history','itemid',31169),(31845,'history_log','itemid',31169),(31846,'history_str','itemid',31169),(31847,'history_text','itemid',31169),(31848,'history_uint','itemid',31169),(31849,'trends','itemid',31169),(31850,'trends_uint','itemid',31169),(31851,'events','itemid',31170),(31852,'history','itemid',31170),(31853,'history_log','itemid',31170),(31854,'history_str','itemid',31170),(31855,'history_text','itemid',31170),(31856,'history_uint','itemid',31170),(31857,'trends','itemid',31170),(31858,'trends_uint','itemid',31170),(31859,'events','itemid',31171),(31860,'history','itemid',31171),(31861,'history_log','itemid',31171),(31862,'history_str','itemid',31171),(31863,'history_text','itemid',31171),(31864,'history_uint','itemid',31171),(31865,'trends','itemid',31171),(31866,'trends_uint','itemid',31171),(31867,'events','itemid',31172),(31868,'history','itemid',31172),(31869,'history_log','itemid',31172),(31870,'history_str','itemid',31172),(31871,'history_text','itemid',31172),(31872,'history_uint','itemid',31172),(31873,'trends','itemid',31172),(31874,'trends_uint','itemid',31172),(31875,'events','itemid',31173),(31876,'history','itemid',31173),(31877,'history_log','itemid',31173),(31878,'history_str','itemid',31173),(31879,'history_text','itemid',31173),(31880,'history_uint','itemid',31173),(31881,'trends','itemid',31173),(31882,'trends_uint','itemid',31173),(31883,'events','itemid',31174),(31884,'history','itemid',31174),(31885,'history_log','itemid',31174),(31886,'history_str','itemid',31174),(31887,'history_text','itemid',31174),(31888,'history_uint','itemid',31174),(31889,'trends','itemid',31174),(31890,'trends_uint','itemid',31174),(31891,'events','itemid',31175),(31892,'history','itemid',31175),(31893,'history_log','itemid',31175),(31894,'history_str','itemid',31175),(31895,'history_text','itemid',31175),(31896,'history_uint','itemid',31175),(31897,'trends','itemid',31175),(31898,'trends_uint','itemid',31175),(31899,'events','itemid',31176),(31900,'history','itemid',31176),(31901,'history_log','itemid',31176),(31902,'history_str','itemid',31176),(31903,'history_text','itemid',31176),(31904,'history_uint','itemid',31176),(31905,'trends','itemid',31176),(31906,'trends_uint','itemid',31176),(31907,'events','itemid',31177),(31908,'history','itemid',31177),(31909,'history_log','itemid',31177),(31910,'history_str','itemid',31177),(31911,'history_text','itemid',31177),(31912,'history_uint','itemid',31177),(31913,'trends','itemid',31177),(31914,'trends_uint','itemid',31177),(31915,'events','itemid',31178),(31916,'history','itemid',31178),(31917,'history_log','itemid',31178),(31918,'history_str','itemid',31178),(31919,'history_text','itemid',31178),(31920,'history_uint','itemid',31178),(31921,'trends','itemid',31178),(31922,'trends_uint','itemid',31178),(31923,'events','itemid',31179),(31924,'history','itemid',31179),(31925,'history_log','itemid',31179),(31926,'history_str','itemid',31179),(31927,'history_text','itemid',31179),(31928,'history_uint','itemid',31179),(31929,'trends','itemid',31179),(31930,'trends_uint','itemid',31179),(31931,'events','itemid',31180),(31932,'history','itemid',31180),(31933,'history_log','itemid',31180),(31934,'history_str','itemid',31180),(31935,'history_text','itemid',31180),(31936,'history_uint','itemid',31180),(31937,'trends','itemid',31180),(31938,'trends_uint','itemid',31180),(31939,'events','itemid',31181),(31940,'history','itemid',31181),(31941,'history_log','itemid',31181),(31942,'history_str','itemid',31181),(31943,'history_text','itemid',31181),(31944,'history_uint','itemid',31181),(31945,'trends','itemid',31181),(31946,'trends_uint','itemid',31181),(31947,'events','itemid',31182),(31948,'history','itemid',31182),(31949,'history_log','itemid',31182),(31950,'history_str','itemid',31182),(31951,'history_text','itemid',31182),(31952,'history_uint','itemid',31182),(31953,'trends','itemid',31182),(31954,'trends_uint','itemid',31182),(31955,'events','itemid',31183),(31956,'history','itemid',31183),(31957,'history_log','itemid',31183),(31958,'history_str','itemid',31183),(31959,'history_text','itemid',31183),(31960,'history_uint','itemid',31183),(31961,'trends','itemid',31183),(31962,'trends_uint','itemid',31183),(31963,'events','itemid',31184),(31964,'history','itemid',31184),(31965,'history_log','itemid',31184),(31966,'history_str','itemid',31184),(31967,'history_text','itemid',31184),(31968,'history_uint','itemid',31184),(31969,'trends','itemid',31184),(31970,'trends_uint','itemid',31184),(31971,'events','itemid',31185),(31972,'history','itemid',31185),(31973,'history_log','itemid',31185),(31974,'history_str','itemid',31185),(31975,'history_text','itemid',31185),(31976,'history_uint','itemid',31185),(31977,'trends','itemid',31185),(31978,'trends_uint','itemid',31185),(31979,'events','itemid',31186),(31980,'history','itemid',31186),(31981,'history_log','itemid',31186),(31982,'history_str','itemid',31186),(31983,'history_text','itemid',31186),(31984,'history_uint','itemid',31186),(31985,'trends','itemid',31186),(31986,'trends_uint','itemid',31186),(31987,'events','itemid',31187),(31988,'history','itemid',31187),(31989,'history_log','itemid',31187),(31990,'history_str','itemid',31187),(31991,'history_text','itemid',31187),(31992,'history_uint','itemid',31187),(31993,'trends','itemid',31187),(31994,'trends_uint','itemid',31187),(31995,'events','itemid',31188),(31996,'history','itemid',31188),(31997,'history_log','itemid',31188),(31998,'history_str','itemid',31188),(31999,'history_text','itemid',31188),(32000,'history_uint','itemid',31188),(32001,'trends','itemid',31188),(32002,'trends_uint','itemid',31188),(32003,'events','itemid',31189),(32004,'history','itemid',31189),(32005,'history_log','itemid',31189),(32006,'history_str','itemid',31189),(32007,'history_text','itemid',31189),(32008,'history_uint','itemid',31189),(32009,'trends','itemid',31189),(32010,'trends_uint','itemid',31189),(32011,'events','itemid',31190),(32012,'history','itemid',31190),(32013,'history_log','itemid',31190),(32014,'history_str','itemid',31190),(32015,'history_text','itemid',31190),(32016,'history_uint','itemid',31190),(32017,'trends','itemid',31190),(32018,'trends_uint','itemid',31190),(32019,'events','itemid',31191),(32020,'history','itemid',31191),(32021,'history_log','itemid',31191),(32022,'history_str','itemid',31191),(32023,'history_text','itemid',31191),(32024,'history_uint','itemid',31191),(32025,'trends','itemid',31191),(32026,'trends_uint','itemid',31191),(32027,'events','itemid',31192),(32028,'history','itemid',31192),(32029,'history_log','itemid',31192),(32030,'history_str','itemid',31192),(32031,'history_text','itemid',31192),(32032,'history_uint','itemid',31192),(32033,'trends','itemid',31192),(32034,'trends_uint','itemid',31192),(32035,'events','itemid',31193),(32036,'history','itemid',31193),(32037,'history_log','itemid',31193),(32038,'history_str','itemid',31193),(32039,'history_text','itemid',31193),(32040,'history_uint','itemid',31193),(32041,'trends','itemid',31193),(32042,'trends_uint','itemid',31193),(32043,'events','itemid',31194),(32044,'history','itemid',31194),(32045,'history_log','itemid',31194),(32046,'history_str','itemid',31194),(32047,'history_text','itemid',31194),(32048,'history_uint','itemid',31194),(32049,'trends','itemid',31194),(32050,'trends_uint','itemid',31194),(32051,'events','itemid',31195),(32052,'history','itemid',31195),(32053,'history_log','itemid',31195),(32054,'history_str','itemid',31195),(32055,'history_text','itemid',31195),(32056,'history_uint','itemid',31195),(32057,'trends','itemid',31195),(32058,'trends_uint','itemid',31195),(32059,'events','itemid',31196),(32060,'history','itemid',31196),(32061,'history_log','itemid',31196),(32062,'history_str','itemid',31196),(32063,'history_text','itemid',31196),(32064,'history_uint','itemid',31196),(32065,'trends','itemid',31196),(32066,'trends_uint','itemid',31196),(32067,'events','itemid',31197),(32068,'history','itemid',31197),(32069,'history_log','itemid',31197),(32070,'history_str','itemid',31197),(32071,'history_text','itemid',31197),(32072,'history_uint','itemid',31197),(32073,'trends','itemid',31197),(32074,'trends_uint','itemid',31197),(32075,'events','itemid',31198),(32076,'history','itemid',31198),(32077,'history_log','itemid',31198),(32078,'history_str','itemid',31198),(32079,'history_text','itemid',31198),(32080,'history_uint','itemid',31198),(32081,'trends','itemid',31198),(32082,'trends_uint','itemid',31198),(32083,'events','itemid',31199),(32084,'history','itemid',31199),(32085,'history_log','itemid',31199),(32086,'history_str','itemid',31199),(32087,'history_text','itemid',31199),(32088,'history_uint','itemid',31199),(32089,'trends','itemid',31199),(32090,'trends_uint','itemid',31199),(32091,'events','itemid',31200),(32092,'history','itemid',31200),(32093,'history_log','itemid',31200),(32094,'history_str','itemid',31200),(32095,'history_text','itemid',31200),(32096,'history_uint','itemid',31200),(32097,'trends','itemid',31200),(32098,'trends_uint','itemid',31200),(32099,'events','itemid',31201),(32100,'history','itemid',31201),(32101,'history_log','itemid',31201),(32102,'history_str','itemid',31201),(32103,'history_text','itemid',31201),(32104,'history_uint','itemid',31201),(32105,'trends','itemid',31201),(32106,'trends_uint','itemid',31201),(32107,'events','itemid',31202),(32108,'history','itemid',31202),(32109,'history_log','itemid',31202),(32110,'history_str','itemid',31202),(32111,'history_text','itemid',31202),(32112,'history_uint','itemid',31202),(32113,'trends','itemid',31202),(32114,'trends_uint','itemid',31202),(32115,'events','itemid',31203),(32116,'history','itemid',31203),(32117,'history_log','itemid',31203),(32118,'history_str','itemid',31203),(32119,'history_text','itemid',31203),(32120,'history_uint','itemid',31203),(32121,'trends','itemid',31203),(32122,'trends_uint','itemid',31203),(32123,'events','itemid',31204),(32124,'history','itemid',31204),(32125,'history_log','itemid',31204),(32126,'history_str','itemid',31204),(32127,'history_text','itemid',31204),(32128,'history_uint','itemid',31204),(32129,'trends','itemid',31204),(32130,'trends_uint','itemid',31204),(32131,'events','itemid',31205),(32132,'history','itemid',31205),(32133,'history_log','itemid',31205),(32134,'history_str','itemid',31205),(32135,'history_text','itemid',31205),(32136,'history_uint','itemid',31205),(32137,'trends','itemid',31205),(32138,'trends_uint','itemid',31205),(32139,'events','itemid',31206),(32140,'history','itemid',31206),(32141,'history_log','itemid',31206),(32142,'history_str','itemid',31206),(32143,'history_text','itemid',31206),(32144,'history_uint','itemid',31206),(32145,'trends','itemid',31206),(32146,'trends_uint','itemid',31206),(32147,'events','itemid',31207),(32148,'history','itemid',31207),(32149,'history_log','itemid',31207),(32150,'history_str','itemid',31207),(32151,'history_text','itemid',31207),(32152,'history_uint','itemid',31207),(32153,'trends','itemid',31207),(32154,'trends_uint','itemid',31207),(32155,'events','itemid',31208),(32156,'history','itemid',31208),(32157,'history_log','itemid',31208),(32158,'history_str','itemid',31208),(32159,'history_text','itemid',31208),(32160,'history_uint','itemid',31208),(32161,'trends','itemid',31208),(32162,'trends_uint','itemid',31208),(32163,'events','itemid',31209),(32164,'history','itemid',31209),(32165,'history_log','itemid',31209),(32166,'history_str','itemid',31209),(32167,'history_text','itemid',31209),(32168,'history_uint','itemid',31209),(32169,'trends','itemid',31209),(32170,'trends_uint','itemid',31209),(32171,'events','itemid',31210),(32172,'history','itemid',31210),(32173,'history_log','itemid',31210),(32174,'history_str','itemid',31210),(32175,'history_text','itemid',31210),(32176,'history_uint','itemid',31210),(32177,'trends','itemid',31210),(32178,'trends_uint','itemid',31210),(32179,'events','itemid',31211),(32180,'history','itemid',31211),(32181,'history_log','itemid',31211),(32182,'history_str','itemid',31211),(32183,'history_text','itemid',31211),(32184,'history_uint','itemid',31211),(32185,'trends','itemid',31211),(32186,'trends_uint','itemid',31211),(32187,'events','itemid',31212),(32188,'history','itemid',31212),(32189,'history_log','itemid',31212),(32190,'history_str','itemid',31212),(32191,'history_text','itemid',31212),(32192,'history_uint','itemid',31212),(32193,'trends','itemid',31212),(32194,'trends_uint','itemid',31212),(32195,'events','itemid',31213),(32196,'history','itemid',31213),(32197,'history_log','itemid',31213),(32198,'history_str','itemid',31213),(32199,'history_text','itemid',31213),(32200,'history_uint','itemid',31213),(32201,'trends','itemid',31213),(32202,'trends_uint','itemid',31213),(32203,'events','itemid',31214),(32204,'history','itemid',31214),(32205,'history_log','itemid',31214),(32206,'history_str','itemid',31214),(32207,'history_text','itemid',31214),(32208,'history_uint','itemid',31214),(32209,'trends','itemid',31214),(32210,'trends_uint','itemid',31214),(32211,'events','itemid',31215),(32212,'history','itemid',31215),(32213,'history_log','itemid',31215),(32214,'history_str','itemid',31215),(32215,'history_text','itemid',31215),(32216,'history_uint','itemid',31215),(32217,'trends','itemid',31215),(32218,'trends_uint','itemid',31215),(32219,'events','itemid',31216),(32220,'history','itemid',31216),(32221,'history_log','itemid',31216),(32222,'history_str','itemid',31216),(32223,'history_text','itemid',31216),(32224,'history_uint','itemid',31216),(32225,'trends','itemid',31216),(32226,'trends_uint','itemid',31216),(32227,'events','itemid',31217),(32228,'history','itemid',31217),(32229,'history_log','itemid',31217),(32230,'history_str','itemid',31217),(32231,'history_text','itemid',31217),(32232,'history_uint','itemid',31217),(32233,'trends','itemid',31217),(32234,'trends_uint','itemid',31217),(32235,'events','itemid',31218),(32236,'history','itemid',31218),(32237,'history_log','itemid',31218),(32238,'history_str','itemid',31218),(32239,'history_text','itemid',31218),(32240,'history_uint','itemid',31218),(32241,'trends','itemid',31218),(32242,'trends_uint','itemid',31218),(32243,'events','itemid',31219),(32244,'history','itemid',31219),(32245,'history_log','itemid',31219),(32246,'history_str','itemid',31219),(32247,'history_text','itemid',31219),(32248,'history_uint','itemid',31219),(32249,'trends','itemid',31219),(32250,'trends_uint','itemid',31219),(32251,'events','itemid',31220),(32252,'history','itemid',31220),(32253,'history_log','itemid',31220),(32254,'history_str','itemid',31220),(32255,'history_text','itemid',31220),(32256,'history_uint','itemid',31220),(32257,'trends','itemid',31220),(32258,'trends_uint','itemid',31220),(32259,'events','itemid',31221),(32260,'history','itemid',31221),(32261,'history_log','itemid',31221),(32262,'history_str','itemid',31221),(32263,'history_text','itemid',31221),(32264,'history_uint','itemid',31221),(32265,'trends','itemid',31221),(32266,'trends_uint','itemid',31221),(32267,'events','itemid',31222),(32268,'history','itemid',31222),(32269,'history_log','itemid',31222),(32270,'history_str','itemid',31222),(32271,'history_text','itemid',31222),(32272,'history_uint','itemid',31222),(32273,'trends','itemid',31222),(32274,'trends_uint','itemid',31222),(32275,'events','itemid',31223),(32276,'history','itemid',31223),(32277,'history_log','itemid',31223),(32278,'history_str','itemid',31223),(32279,'history_text','itemid',31223),(32280,'history_uint','itemid',31223),(32281,'trends','itemid',31223),(32282,'trends_uint','itemid',31223),(32283,'events','itemid',31224),(32284,'history','itemid',31224),(32285,'history_log','itemid',31224),(32286,'history_str','itemid',31224),(32287,'history_text','itemid',31224),(32288,'history_uint','itemid',31224),(32289,'trends','itemid',31224),(32290,'trends_uint','itemid',31224),(32291,'events','itemid',31225),(32292,'history','itemid',31225),(32293,'history_log','itemid',31225),(32294,'history_str','itemid',31225),(32295,'history_text','itemid',31225),(32296,'history_uint','itemid',31225),(32297,'trends','itemid',31225),(32298,'trends_uint','itemid',31225),(32299,'events','itemid',31226),(32300,'history','itemid',31226),(32301,'history_log','itemid',31226),(32302,'history_str','itemid',31226),(32303,'history_text','itemid',31226),(32304,'history_uint','itemid',31226),(32305,'trends','itemid',31226),(32306,'trends_uint','itemid',31226),(32307,'events','itemid',31227),(32308,'history','itemid',31227),(32309,'history_log','itemid',31227),(32310,'history_str','itemid',31227),(32311,'history_text','itemid',31227),(32312,'history_uint','itemid',31227),(32313,'trends','itemid',31227),(32314,'trends_uint','itemid',31227),(32315,'events','itemid',31228),(32316,'history','itemid',31228),(32317,'history_log','itemid',31228),(32318,'history_str','itemid',31228),(32319,'history_text','itemid',31228),(32320,'history_uint','itemid',31228),(32321,'trends','itemid',31228),(32322,'trends_uint','itemid',31228),(32323,'events','itemid',31229),(32324,'history','itemid',31229),(32325,'history_log','itemid',31229),(32326,'history_str','itemid',31229),(32327,'history_text','itemid',31229),(32328,'history_uint','itemid',31229),(32329,'trends','itemid',31229),(32330,'trends_uint','itemid',31229),(32331,'events','itemid',31230),(32332,'history','itemid',31230),(32333,'history_log','itemid',31230),(32334,'history_str','itemid',31230),(32335,'history_text','itemid',31230),(32336,'history_uint','itemid',31230),(32337,'trends','itemid',31230),(32338,'trends_uint','itemid',31230),(32339,'events','itemid',31231),(32340,'history','itemid',31231),(32341,'history_log','itemid',31231),(32342,'history_str','itemid',31231),(32343,'history_text','itemid',31231),(32344,'history_uint','itemid',31231),(32345,'trends','itemid',31231),(32346,'trends_uint','itemid',31231),(32347,'events','itemid',31232),(32348,'history','itemid',31232),(32349,'history_log','itemid',31232),(32350,'history_str','itemid',31232),(32351,'history_text','itemid',31232),(32352,'history_uint','itemid',31232),(32353,'trends','itemid',31232),(32354,'trends_uint','itemid',31232),(32355,'events','itemid',31233),(32356,'history','itemid',31233),(32357,'history_log','itemid',31233),(32358,'history_str','itemid',31233),(32359,'history_text','itemid',31233),(32360,'history_uint','itemid',31233),(32361,'trends','itemid',31233),(32362,'trends_uint','itemid',31233),(32363,'events','itemid',31234),(32364,'history','itemid',31234),(32365,'history_log','itemid',31234),(32366,'history_str','itemid',31234),(32367,'history_text','itemid',31234),(32368,'history_uint','itemid',31234),(32369,'trends','itemid',31234),(32370,'trends_uint','itemid',31234),(32371,'events','itemid',31235),(32372,'history','itemid',31235),(32373,'history_log','itemid',31235),(32374,'history_str','itemid',31235),(32375,'history_text','itemid',31235),(32376,'history_uint','itemid',31235),(32377,'trends','itemid',31235),(32378,'trends_uint','itemid',31235),(32379,'events','itemid',31236),(32380,'history','itemid',31236),(32381,'history_log','itemid',31236),(32382,'history_str','itemid',31236),(32383,'history_text','itemid',31236),(32384,'history_uint','itemid',31236),(32385,'trends','itemid',31236),(32386,'trends_uint','itemid',31236),(32387,'events','itemid',31237),(32388,'history','itemid',31237),(32389,'history_log','itemid',31237),(32390,'history_str','itemid',31237),(32391,'history_text','itemid',31237),(32392,'history_uint','itemid',31237),(32393,'trends','itemid',31237),(32394,'trends_uint','itemid',31237),(32395,'events','itemid',31238),(32396,'history','itemid',31238),(32397,'history_log','itemid',31238),(32398,'history_str','itemid',31238),(32399,'history_text','itemid',31238),(32400,'history_uint','itemid',31238),(32401,'trends','itemid',31238),(32402,'trends_uint','itemid',31238),(32403,'events','itemid',31239),(32404,'history','itemid',31239),(32405,'history_log','itemid',31239),(32406,'history_str','itemid',31239),(32407,'history_text','itemid',31239),(32408,'history_uint','itemid',31239),(32409,'trends','itemid',31239),(32410,'trends_uint','itemid',31239),(32411,'events','itemid',31240),(32412,'history','itemid',31240),(32413,'history_log','itemid',31240),(32414,'history_str','itemid',31240),(32415,'history_text','itemid',31240),(32416,'history_uint','itemid',31240),(32417,'trends','itemid',31240),(32418,'trends_uint','itemid',31240),(32419,'events','itemid',31241),(32420,'history','itemid',31241),(32421,'history_log','itemid',31241),(32422,'history_str','itemid',31241),(32423,'history_text','itemid',31241),(32424,'history_uint','itemid',31241),(32425,'trends','itemid',31241),(32426,'trends_uint','itemid',31241),(32427,'events','itemid',31242),(32428,'history','itemid',31242),(32429,'history_log','itemid',31242),(32430,'history_str','itemid',31242),(32431,'history_text','itemid',31242),(32432,'history_uint','itemid',31242),(32433,'trends','itemid',31242),(32434,'trends_uint','itemid',31242),(32435,'events','itemid',31243),(32436,'history','itemid',31243),(32437,'history_log','itemid',31243),(32438,'history_str','itemid',31243),(32439,'history_text','itemid',31243),(32440,'history_uint','itemid',31243),(32441,'trends','itemid',31243),(32442,'trends_uint','itemid',31243),(32443,'events','itemid',31244),(32444,'history','itemid',31244),(32445,'history_log','itemid',31244),(32446,'history_str','itemid',31244),(32447,'history_text','itemid',31244),(32448,'history_uint','itemid',31244),(32449,'trends','itemid',31244),(32450,'trends_uint','itemid',31244),(32451,'events','itemid',31245),(32452,'history','itemid',31245),(32453,'history_log','itemid',31245),(32454,'history_str','itemid',31245),(32455,'history_text','itemid',31245),(32456,'history_uint','itemid',31245),(32457,'trends','itemid',31245),(32458,'trends_uint','itemid',31245),(32459,'events','itemid',31246),(32460,'history','itemid',31246),(32461,'history_log','itemid',31246),(32462,'history_str','itemid',31246),(32463,'history_text','itemid',31246),(32464,'history_uint','itemid',31246),(32465,'trends','itemid',31246),(32466,'trends_uint','itemid',31246),(32467,'events','itemid',31247),(32468,'history','itemid',31247),(32469,'history_log','itemid',31247),(32470,'history_str','itemid',31247),(32471,'history_text','itemid',31247),(32472,'history_uint','itemid',31247),(32473,'trends','itemid',31247),(32474,'trends_uint','itemid',31247),(32475,'events','itemid',31248),(32476,'history','itemid',31248),(32477,'history_log','itemid',31248),(32478,'history_str','itemid',31248),(32479,'history_text','itemid',31248),(32480,'history_uint','itemid',31248),(32481,'trends','itemid',31248),(32482,'trends_uint','itemid',31248),(32483,'events','itemid',31249),(32484,'history','itemid',31249),(32485,'history_log','itemid',31249),(32486,'history_str','itemid',31249),(32487,'history_text','itemid',31249),(32488,'history_uint','itemid',31249),(32489,'trends','itemid',31249),(32490,'trends_uint','itemid',31249),(32491,'events','itemid',31250),(32492,'history','itemid',31250),(32493,'history_log','itemid',31250),(32494,'history_str','itemid',31250),(32495,'history_text','itemid',31250),(32496,'history_uint','itemid',31250),(32497,'trends','itemid',31250),(32498,'trends_uint','itemid',31250),(32499,'events','itemid',31251),(32500,'history','itemid',31251),(32501,'history_log','itemid',31251),(32502,'history_str','itemid',31251),(32503,'history_text','itemid',31251),(32504,'history_uint','itemid',31251),(32505,'trends','itemid',31251),(32506,'trends_uint','itemid',31251),(32507,'events','itemid',31252),(32508,'history','itemid',31252),(32509,'history_log','itemid',31252),(32510,'history_str','itemid',31252),(32511,'history_text','itemid',31252),(32512,'history_uint','itemid',31252),(32513,'trends','itemid',31252),(32514,'trends_uint','itemid',31252),(32515,'events','itemid',31554),(32516,'history','itemid',31554),(32517,'history_log','itemid',31554),(32518,'history_str','itemid',31554),(32519,'history_text','itemid',31554),(32520,'history_uint','itemid',31554),(32521,'trends','itemid',31554),(32522,'trends_uint','itemid',31554),(32523,'events','itemid',31555),(32524,'history','itemid',31555),(32525,'history_log','itemid',31555),(32526,'history_str','itemid',31555),(32527,'history_text','itemid',31555),(32528,'history_uint','itemid',31555),(32529,'trends','itemid',31555),(32530,'trends_uint','itemid',31555),(32531,'events','itemid',31556),(32532,'history','itemid',31556),(32533,'history_log','itemid',31556),(32534,'history_str','itemid',31556),(32535,'history_text','itemid',31556),(32536,'history_uint','itemid',31556),(32537,'trends','itemid',31556),(32538,'trends_uint','itemid',31556),(32539,'events','itemid',31570),(32540,'history','itemid',31570),(32541,'history_log','itemid',31570),(32542,'history_str','itemid',31570),(32543,'history_text','itemid',31570),(32544,'history_uint','itemid',31570),(32545,'trends','itemid',31570),(32546,'trends_uint','itemid',31570),(32547,'events','itemid',31571),(32548,'history','itemid',31571),(32549,'history_log','itemid',31571),(32550,'history_str','itemid',31571),(32551,'history_text','itemid',31571),(32552,'history_uint','itemid',31571),(32553,'trends','itemid',31571),(32554,'trends_uint','itemid',31571),(32555,'events','itemid',31573),(32556,'history','itemid',31573),(32557,'history_log','itemid',31573),(32558,'history_str','itemid',31573),(32559,'history_text','itemid',31573),(32560,'history_uint','itemid',31573),(32561,'trends','itemid',31573),(32562,'trends_uint','itemid',31573),(32563,'events','itemid',31577),(32564,'history','itemid',31577),(32565,'history_log','itemid',31577),(32566,'history_str','itemid',31577),(32567,'history_text','itemid',31577),(32568,'history_uint','itemid',31577),(32569,'trends','itemid',31577),(32570,'trends_uint','itemid',31577),(32571,'events','itemid',31578),(32572,'history','itemid',31578),(32573,'history_log','itemid',31578),(32574,'history_str','itemid',31578),(32575,'history_text','itemid',31578),(32576,'history_uint','itemid',31578),(32577,'trends','itemid',31578),(32578,'trends_uint','itemid',31578),(32579,'events','itemid',31579),(32580,'history','itemid',31579),(32581,'history_log','itemid',31579),(32582,'history_str','itemid',31579),(32583,'history_text','itemid',31579),(32584,'history_uint','itemid',31579),(32585,'trends','itemid',31579),(32586,'trends_uint','itemid',31579),(32587,'events','itemid',31580),(32588,'history','itemid',31580),(32589,'history_log','itemid',31580),(32590,'history_str','itemid',31580),(32591,'history_text','itemid',31580),(32592,'history_uint','itemid',31580),(32593,'trends','itemid',31580),(32594,'trends_uint','itemid',31580),(32595,'events','itemid',31581),(32596,'history','itemid',31581),(32597,'history_log','itemid',31581),(32598,'history_str','itemid',31581),(32599,'history_text','itemid',31581),(32600,'history_uint','itemid',31581),(32601,'trends','itemid',31581),(32602,'trends_uint','itemid',31581),(32603,'events','itemid',31582),(32604,'history','itemid',31582),(32605,'history_log','itemid',31582),(32606,'history_str','itemid',31582),(32607,'history_text','itemid',31582),(32608,'history_uint','itemid',31582),(32609,'trends','itemid',31582),(32610,'trends_uint','itemid',31582),(32611,'events','itemid',31583),(32612,'history','itemid',31583),(32613,'history_log','itemid',31583),(32614,'history_str','itemid',31583),(32615,'history_text','itemid',31583),(32616,'history_uint','itemid',31583),(32617,'trends','itemid',31583),(32618,'trends_uint','itemid',31583),(32619,'events','itemid',31584),(32620,'history','itemid',31584),(32621,'history_log','itemid',31584),(32622,'history_str','itemid',31584),(32623,'history_text','itemid',31584),(32624,'history_uint','itemid',31584),(32625,'trends','itemid',31584),(32626,'trends_uint','itemid',31584),(32627,'events','itemid',31585),(32628,'history','itemid',31585),(32629,'history_log','itemid',31585),(32630,'history_str','itemid',31585),(32631,'history_text','itemid',31585),(32632,'history_uint','itemid',31585),(32633,'trends','itemid',31585),(32634,'trends_uint','itemid',31585),(32635,'events','itemid',31586),(32636,'history','itemid',31586),(32637,'history_log','itemid',31586),(32638,'history_str','itemid',31586),(32639,'history_text','itemid',31586),(32640,'history_uint','itemid',31586),(32641,'trends','itemid',31586),(32642,'trends_uint','itemid',31586),(32643,'events','itemid',31587),(32644,'history','itemid',31587),(32645,'history_log','itemid',31587),(32646,'history_str','itemid',31587),(32647,'history_text','itemid',31587),(32648,'history_uint','itemid',31587),(32649,'trends','itemid',31587),(32650,'trends_uint','itemid',31587),(32651,'events','itemid',31588),(32652,'history','itemid',31588),(32653,'history_log','itemid',31588),(32654,'history_str','itemid',31588),(32655,'history_text','itemid',31588),(32656,'history_uint','itemid',31588),(32657,'trends','itemid',31588),(32658,'trends_uint','itemid',31588),(32659,'events','itemid',31589),(32660,'history','itemid',31589),(32661,'history_log','itemid',31589),(32662,'history_str','itemid',31589),(32663,'history_text','itemid',31589),(32664,'history_uint','itemid',31589),(32665,'trends','itemid',31589),(32666,'trends_uint','itemid',31589),(32667,'events','itemid',31590),(32668,'history','itemid',31590),(32669,'history_log','itemid',31590),(32670,'history_str','itemid',31590),(32671,'history_text','itemid',31590),(32672,'history_uint','itemid',31590),(32673,'trends','itemid',31590),(32674,'trends_uint','itemid',31590),(32675,'events','itemid',31591),(32676,'history','itemid',31591),(32677,'history_log','itemid',31591),(32678,'history_str','itemid',31591),(32679,'history_text','itemid',31591),(32680,'history_uint','itemid',31591),(32681,'trends','itemid',31591),(32682,'trends_uint','itemid',31591),(32683,'events','itemid',31592),(32684,'history','itemid',31592),(32685,'history_log','itemid',31592),(32686,'history_str','itemid',31592),(32687,'history_text','itemid',31592),(32688,'history_uint','itemid',31592),(32689,'trends','itemid',31592),(32690,'trends_uint','itemid',31592),(32691,'events','itemid',31593),(32692,'history','itemid',31593),(32693,'history_log','itemid',31593),(32694,'history_str','itemid',31593),(32695,'history_text','itemid',31593),(32696,'history_uint','itemid',31593),(32697,'trends','itemid',31593),(32698,'trends_uint','itemid',31593),(32699,'events','itemid',31594),(32700,'history','itemid',31594),(32701,'history_log','itemid',31594),(32702,'history_str','itemid',31594),(32703,'history_text','itemid',31594),(32704,'history_uint','itemid',31594),(32705,'trends','itemid',31594),(32706,'trends_uint','itemid',31594),(32707,'events','itemid',31595),(32708,'history','itemid',31595),(32709,'history_log','itemid',31595),(32710,'history_str','itemid',31595),(32711,'history_text','itemid',31595),(32712,'history_uint','itemid',31595),(32713,'trends','itemid',31595),(32714,'trends_uint','itemid',31595),(32715,'events','itemid',31596),(32716,'history','itemid',31596),(32717,'history_log','itemid',31596),(32718,'history_str','itemid',31596),(32719,'history_text','itemid',31596),(32720,'history_uint','itemid',31596),(32721,'trends','itemid',31596),(32722,'trends_uint','itemid',31596),(32723,'events','itemid',31597),(32724,'history','itemid',31597),(32725,'history_log','itemid',31597),(32726,'history_str','itemid',31597),(32727,'history_text','itemid',31597),(32728,'history_uint','itemid',31597),(32729,'trends','itemid',31597),(32730,'trends_uint','itemid',31597),(32731,'events','itemid',31598),(32732,'history','itemid',31598),(32733,'history_log','itemid',31598),(32734,'history_str','itemid',31598),(32735,'history_text','itemid',31598),(32736,'history_uint','itemid',31598),(32737,'trends','itemid',31598),(32738,'trends_uint','itemid',31598),(32739,'events','itemid',31599),(32740,'history','itemid',31599),(32741,'history_log','itemid',31599),(32742,'history_str','itemid',31599),(32743,'history_text','itemid',31599),(32744,'history_uint','itemid',31599),(32745,'trends','itemid',31599),(32746,'trends_uint','itemid',31599),(32747,'events','itemid',31600),(32748,'history','itemid',31600),(32749,'history_log','itemid',31600),(32750,'history_str','itemid',31600),(32751,'history_text','itemid',31600),(32752,'history_uint','itemid',31600),(32753,'trends','itemid',31600),(32754,'trends_uint','itemid',31600),(32755,'events','itemid',31601),(32756,'history','itemid',31601),(32757,'history_log','itemid',31601),(32758,'history_str','itemid',31601),(32759,'history_text','itemid',31601),(32760,'history_uint','itemid',31601),(32761,'trends','itemid',31601),(32762,'trends_uint','itemid',31601),(32763,'events','itemid',31602),(32764,'history','itemid',31602),(32765,'history_log','itemid',31602),(32766,'history_str','itemid',31602),(32767,'history_text','itemid',31602),(32768,'history_uint','itemid',31602),(32769,'trends','itemid',31602),(32770,'trends_uint','itemid',31602),(32771,'events','itemid',31603),(32772,'history','itemid',31603),(32773,'history_log','itemid',31603),(32774,'history_str','itemid',31603),(32775,'history_text','itemid',31603),(32776,'history_uint','itemid',31603),(32777,'trends','itemid',31603),(32778,'trends_uint','itemid',31603),(32779,'events','itemid',31604),(32780,'history','itemid',31604),(32781,'history_log','itemid',31604),(32782,'history_str','itemid',31604),(32783,'history_text','itemid',31604),(32784,'history_uint','itemid',31604),(32785,'trends','itemid',31604),(32786,'trends_uint','itemid',31604),(32787,'events','itemid',31605),(32788,'history','itemid',31605),(32789,'history_log','itemid',31605),(32790,'history_str','itemid',31605),(32791,'history_text','itemid',31605),(32792,'history_uint','itemid',31605),(32793,'trends','itemid',31605),(32794,'trends_uint','itemid',31605),(32795,'events','itemid',31606),(32796,'history','itemid',31606),(32797,'history_log','itemid',31606),(32798,'history_str','itemid',31606),(32799,'history_text','itemid',31606),(32800,'history_uint','itemid',31606),(32801,'trends','itemid',31606),(32802,'trends_uint','itemid',31606),(32803,'events','itemid',31607),(32804,'history','itemid',31607),(32805,'history_log','itemid',31607),(32806,'history_str','itemid',31607),(32807,'history_text','itemid',31607),(32808,'history_uint','itemid',31607),(32809,'trends','itemid',31607),(32810,'trends_uint','itemid',31607),(32811,'events','itemid',31608),(32812,'history','itemid',31608),(32813,'history_log','itemid',31608),(32814,'history_str','itemid',31608),(32815,'history_text','itemid',31608),(32816,'history_uint','itemid',31608),(32817,'trends','itemid',31608),(32818,'trends_uint','itemid',31608),(32819,'events','itemid',31609),(32820,'history','itemid',31609),(32821,'history_log','itemid',31609),(32822,'history_str','itemid',31609),(32823,'history_text','itemid',31609),(32824,'history_uint','itemid',31609),(32825,'trends','itemid',31609),(32826,'trends_uint','itemid',31609),(32827,'events','itemid',31610),(32828,'history','itemid',31610),(32829,'history_log','itemid',31610),(32830,'history_str','itemid',31610),(32831,'history_text','itemid',31610),(32832,'history_uint','itemid',31610),(32833,'trends','itemid',31610),(32834,'trends_uint','itemid',31610),(32835,'events','itemid',31611),(32836,'history','itemid',31611),(32837,'history_log','itemid',31611),(32838,'history_str','itemid',31611),(32839,'history_text','itemid',31611),(32840,'history_uint','itemid',31611),(32841,'trends','itemid',31611),(32842,'trends_uint','itemid',31611),(32843,'events','itemid',31684),(32844,'history','itemid',31684),(32845,'history_log','itemid',31684),(32846,'history_str','itemid',31684),(32847,'history_text','itemid',31684),(32848,'history_uint','itemid',31684),(32849,'trends','itemid',31684),(32850,'trends_uint','itemid',31684),(32851,'events','itemid',31685),(32852,'history','itemid',31685),(32853,'history_log','itemid',31685),(32854,'history_str','itemid',31685),(32855,'history_text','itemid',31685),(32856,'history_uint','itemid',31685),(32857,'trends','itemid',31685),(32858,'trends_uint','itemid',31685),(32859,'events','itemid',31686),(32860,'history','itemid',31686),(32861,'history_log','itemid',31686),(32862,'history_str','itemid',31686),(32863,'history_text','itemid',31686),(32864,'history_uint','itemid',31686),(32865,'trends','itemid',31686),(32866,'trends_uint','itemid',31686),(32867,'events','itemid',31687),(32868,'history','itemid',31687),(32869,'history_log','itemid',31687),(32870,'history_str','itemid',31687),(32871,'history_text','itemid',31687),(32872,'history_uint','itemid',31687),(32873,'trends','itemid',31687),(32874,'trends_uint','itemid',31687),(32875,'events','itemid',31688),(32876,'history','itemid',31688),(32877,'history_log','itemid',31688),(32878,'history_str','itemid',31688),(32879,'history_text','itemid',31688),(32880,'history_uint','itemid',31688),(32881,'trends','itemid',31688),(32882,'trends_uint','itemid',31688),(32883,'events','itemid',31689),(32884,'history','itemid',31689),(32885,'history_log','itemid',31689),(32886,'history_str','itemid',31689),(32887,'history_text','itemid',31689),(32888,'history_uint','itemid',31689),(32889,'trends','itemid',31689),(32890,'trends_uint','itemid',31689),(32891,'events','itemid',31690),(32892,'history','itemid',31690),(32893,'history_log','itemid',31690),(32894,'history_str','itemid',31690),(32895,'history_text','itemid',31690),(32896,'history_uint','itemid',31690),(32897,'trends','itemid',31690),(32898,'trends_uint','itemid',31690),(32899,'events','itemid',31691),(32900,'history','itemid',31691),(32901,'history_log','itemid',31691),(32902,'history_str','itemid',31691),(32903,'history_text','itemid',31691),(32904,'history_uint','itemid',31691),(32905,'trends','itemid',31691),(32906,'trends_uint','itemid',31691),(32907,'events','itemid',31692),(32908,'history','itemid',31692),(32909,'history_log','itemid',31692),(32910,'history_str','itemid',31692),(32911,'history_text','itemid',31692),(32912,'history_uint','itemid',31692),(32913,'trends','itemid',31692),(32914,'trends_uint','itemid',31692),(32915,'events','itemid',31693),(32916,'history','itemid',31693),(32917,'history_log','itemid',31693),(32918,'history_str','itemid',31693),(32919,'history_text','itemid',31693),(32920,'history_uint','itemid',31693),(32921,'trends','itemid',31693),(32922,'trends_uint','itemid',31693),(32923,'events','itemid',31694),(32924,'history','itemid',31694),(32925,'history_log','itemid',31694),(32926,'history_str','itemid',31694),(32927,'history_text','itemid',31694),(32928,'history_uint','itemid',31694),(32929,'trends','itemid',31694),(32930,'trends_uint','itemid',31694),(32931,'events','itemid',31695),(32932,'history','itemid',31695),(32933,'history_log','itemid',31695),(32934,'history_str','itemid',31695),(32935,'history_text','itemid',31695),(32936,'history_uint','itemid',31695),(32937,'trends','itemid',31695),(32938,'trends_uint','itemid',31695),(32939,'events','itemid',31696),(32940,'history','itemid',31696),(32941,'history_log','itemid',31696),(32942,'history_str','itemid',31696),(32943,'history_text','itemid',31696),(32944,'history_uint','itemid',31696),(32945,'trends','itemid',31696),(32946,'trends_uint','itemid',31696),(32947,'events','itemid',31697),(32948,'history','itemid',31697),(32949,'history_log','itemid',31697),(32950,'history_str','itemid',31697),(32951,'history_text','itemid',31697),(32952,'history_uint','itemid',31697),(32953,'trends','itemid',31697),(32954,'trends_uint','itemid',31697),(32955,'events','itemid',31698),(32956,'history','itemid',31698),(32957,'history_log','itemid',31698),(32958,'history_str','itemid',31698),(32959,'history_text','itemid',31698),(32960,'history_uint','itemid',31698),(32961,'trends','itemid',31698),(32962,'trends_uint','itemid',31698),(32963,'events','itemid',31699),(32964,'history','itemid',31699),(32965,'history_log','itemid',31699),(32966,'history_str','itemid',31699),(32967,'history_text','itemid',31699),(32968,'history_uint','itemid',31699),(32969,'trends','itemid',31699),(32970,'trends_uint','itemid',31699),(32971,'events','itemid',31700),(32972,'history','itemid',31700),(32973,'history_log','itemid',31700),(32974,'history_str','itemid',31700),(32975,'history_text','itemid',31700),(32976,'history_uint','itemid',31700),(32977,'trends','itemid',31700),(32978,'trends_uint','itemid',31700),(32979,'events','itemid',31701),(32980,'history','itemid',31701),(32981,'history_log','itemid',31701),(32982,'history_str','itemid',31701),(32983,'history_text','itemid',31701),(32984,'history_uint','itemid',31701),(32985,'trends','itemid',31701),(32986,'trends_uint','itemid',31701),(32987,'events','itemid',31702),(32988,'history','itemid',31702),(32989,'history_log','itemid',31702),(32990,'history_str','itemid',31702),(32991,'history_text','itemid',31702),(32992,'history_uint','itemid',31702),(32993,'trends','itemid',31702),(32994,'trends_uint','itemid',31702),(32995,'events','itemid',31703),(32996,'history','itemid',31703),(32997,'history_log','itemid',31703),(32998,'history_str','itemid',31703),(32999,'history_text','itemid',31703),(33000,'history_uint','itemid',31703),(33001,'trends','itemid',31703),(33002,'trends_uint','itemid',31703),(33003,'events','itemid',31704),(33004,'history','itemid',31704),(33005,'history_log','itemid',31704),(33006,'history_str','itemid',31704),(33007,'history_text','itemid',31704),(33008,'history_uint','itemid',31704),(33009,'trends','itemid',31704),(33010,'trends_uint','itemid',31704),(33011,'events','itemid',31705),(33012,'history','itemid',31705),(33013,'history_log','itemid',31705),(33014,'history_str','itemid',31705),(33015,'history_text','itemid',31705),(33016,'history_uint','itemid',31705),(33017,'trends','itemid',31705),(33018,'trends_uint','itemid',31705),(33019,'events','itemid',31706),(33020,'history','itemid',31706),(33021,'history_log','itemid',31706),(33022,'history_str','itemid',31706),(33023,'history_text','itemid',31706),(33024,'history_uint','itemid',31706),(33025,'trends','itemid',31706),(33026,'trends_uint','itemid',31706),(33027,'events','itemid',31707),(33028,'history','itemid',31707),(33029,'history_log','itemid',31707),(33030,'history_str','itemid',31707),(33031,'history_text','itemid',31707),(33032,'history_uint','itemid',31707),(33033,'trends','itemid',31707),(33034,'trends_uint','itemid',31707),(33035,'events','itemid',31708),(33036,'history','itemid',31708),(33037,'history_log','itemid',31708),(33038,'history_str','itemid',31708),(33039,'history_text','itemid',31708),(33040,'history_uint','itemid',31708),(33041,'trends','itemid',31708),(33042,'trends_uint','itemid',31708),(33043,'events','itemid',31709),(33044,'history','itemid',31709),(33045,'history_log','itemid',31709),(33046,'history_str','itemid',31709),(33047,'history_text','itemid',31709),(33048,'history_uint','itemid',31709),(33049,'trends','itemid',31709),(33050,'trends_uint','itemid',31709),(33051,'events','itemid',31710),(33052,'history','itemid',31710),(33053,'history_log','itemid',31710),(33054,'history_str','itemid',31710),(33055,'history_text','itemid',31710),(33056,'history_uint','itemid',31710),(33057,'trends','itemid',31710),(33058,'trends_uint','itemid',31710),(33059,'events','itemid',31711),(33060,'history','itemid',31711),(33061,'history_log','itemid',31711),(33062,'history_str','itemid',31711),(33063,'history_text','itemid',31711),(33064,'history_uint','itemid',31711),(33065,'trends','itemid',31711),(33066,'trends_uint','itemid',31711),(33067,'events','itemid',31712),(33068,'history','itemid',31712),(33069,'history_log','itemid',31712),(33070,'history_str','itemid',31712),(33071,'history_text','itemid',31712),(33072,'history_uint','itemid',31712),(33073,'trends','itemid',31712),(33074,'trends_uint','itemid',31712),(33075,'events','itemid',31713),(33076,'history','itemid',31713),(33077,'history_log','itemid',31713),(33078,'history_str','itemid',31713),(33079,'history_text','itemid',31713),(33080,'history_uint','itemid',31713),(33081,'trends','itemid',31713),(33082,'trends_uint','itemid',31713),(33083,'events','itemid',31714),(33084,'history','itemid',31714),(33085,'history_log','itemid',31714),(33086,'history_str','itemid',31714),(33087,'history_text','itemid',31714),(33088,'history_uint','itemid',31714),(33089,'trends','itemid',31714),(33090,'trends_uint','itemid',31714),(33091,'events','itemid',31715),(33092,'history','itemid',31715),(33093,'history_log','itemid',31715),(33094,'history_str','itemid',31715),(33095,'history_text','itemid',31715),(33096,'history_uint','itemid',31715),(33097,'trends','itemid',31715),(33098,'trends_uint','itemid',31715),(33099,'events','itemid',31716),(33100,'history','itemid',31716),(33101,'history_log','itemid',31716),(33102,'history_str','itemid',31716),(33103,'history_text','itemid',31716),(33104,'history_uint','itemid',31716),(33105,'trends','itemid',31716),(33106,'trends_uint','itemid',31716),(33107,'events','itemid',31717),(33108,'history','itemid',31717),(33109,'history_log','itemid',31717),(33110,'history_str','itemid',31717),(33111,'history_text','itemid',31717),(33112,'history_uint','itemid',31717),(33113,'trends','itemid',31717),(33114,'trends_uint','itemid',31717),(33115,'events','itemid',31718),(33116,'history','itemid',31718),(33117,'history_log','itemid',31718),(33118,'history_str','itemid',31718),(33119,'history_text','itemid',31718),(33120,'history_uint','itemid',31718),(33121,'trends','itemid',31718),(33122,'trends_uint','itemid',31718),(33123,'events','itemid',31719),(33124,'history','itemid',31719),(33125,'history_log','itemid',31719),(33126,'history_str','itemid',31719),(33127,'history_text','itemid',31719),(33128,'history_uint','itemid',31719),(33129,'trends','itemid',31719),(33130,'trends_uint','itemid',31719),(33131,'events','itemid',31720),(33132,'history','itemid',31720),(33133,'history_log','itemid',31720),(33134,'history_str','itemid',31720),(33135,'history_text','itemid',31720),(33136,'history_uint','itemid',31720),(33137,'trends','itemid',31720),(33138,'trends_uint','itemid',31720),(33139,'events','itemid',31721),(33140,'history','itemid',31721),(33141,'history_log','itemid',31721),(33142,'history_str','itemid',31721),(33143,'history_text','itemid',31721),(33144,'history_uint','itemid',31721),(33145,'trends','itemid',31721),(33146,'trends_uint','itemid',31721),(33147,'events','itemid',31722),(33148,'history','itemid',31722),(33149,'history_log','itemid',31722),(33150,'history_str','itemid',31722),(33151,'history_text','itemid',31722),(33152,'history_uint','itemid',31722),(33153,'trends','itemid',31722),(33154,'trends_uint','itemid',31722),(33155,'events','itemid',31723),(33156,'history','itemid',31723),(33157,'history_log','itemid',31723),(33158,'history_str','itemid',31723),(33159,'history_text','itemid',31723),(33160,'history_uint','itemid',31723),(33161,'trends','itemid',31723),(33162,'trends_uint','itemid',31723),(33163,'events','itemid',31724),(33164,'history','itemid',31724),(33165,'history_log','itemid',31724),(33166,'history_str','itemid',31724),(33167,'history_text','itemid',31724),(33168,'history_uint','itemid',31724),(33169,'trends','itemid',31724),(33170,'trends_uint','itemid',31724),(33171,'events','itemid',31725),(33172,'history','itemid',31725),(33173,'history_log','itemid',31725),(33174,'history_str','itemid',31725),(33175,'history_text','itemid',31725),(33176,'history_uint','itemid',31725),(33177,'trends','itemid',31725),(33178,'trends_uint','itemid',31725),(33179,'events','itemid',31726),(33180,'history','itemid',31726),(33181,'history_log','itemid',31726),(33182,'history_str','itemid',31726),(33183,'history_text','itemid',31726),(33184,'history_uint','itemid',31726),(33185,'trends','itemid',31726),(33186,'trends_uint','itemid',31726),(33187,'events','itemid',31727),(33188,'history','itemid',31727),(33189,'history_log','itemid',31727),(33190,'history_str','itemid',31727),(33191,'history_text','itemid',31727),(33192,'history_uint','itemid',31727),(33193,'trends','itemid',31727),(33194,'trends_uint','itemid',31727),(33195,'events','itemid',31728),(33196,'history','itemid',31728),(33197,'history_log','itemid',31728),(33198,'history_str','itemid',31728),(33199,'history_text','itemid',31728),(33200,'history_uint','itemid',31728),(33201,'trends','itemid',31728),(33202,'trends_uint','itemid',31728),(33203,'events','itemid',31729),(33204,'history','itemid',31729),(33205,'history_log','itemid',31729),(33206,'history_str','itemid',31729),(33207,'history_text','itemid',31729),(33208,'history_uint','itemid',31729),(33209,'trends','itemid',31729),(33210,'trends_uint','itemid',31729),(33211,'events','itemid',31730),(33212,'history','itemid',31730),(33213,'history_log','itemid',31730),(33214,'history_str','itemid',31730),(33215,'history_text','itemid',31730),(33216,'history_uint','itemid',31730),(33217,'trends','itemid',31730),(33218,'trends_uint','itemid',31730),(33219,'events','itemid',31731),(33220,'history','itemid',31731),(33221,'history_log','itemid',31731),(33222,'history_str','itemid',31731),(33223,'history_text','itemid',31731),(33224,'history_uint','itemid',31731),(33225,'trends','itemid',31731),(33226,'trends_uint','itemid',31731),(33227,'events','itemid',31732),(33228,'history','itemid',31732),(33229,'history_log','itemid',31732),(33230,'history_str','itemid',31732),(33231,'history_text','itemid',31732),(33232,'history_uint','itemid',31732),(33233,'trends','itemid',31732),(33234,'trends_uint','itemid',31732),(33235,'events','itemid',31733),(33236,'history','itemid',31733),(33237,'history_log','itemid',31733),(33238,'history_str','itemid',31733),(33239,'history_text','itemid',31733),(33240,'history_uint','itemid',31733),(33241,'trends','itemid',31733),(33242,'trends_uint','itemid',31733),(33243,'events','itemid',31734),(33244,'history','itemid',31734),(33245,'history_log','itemid',31734),(33246,'history_str','itemid',31734),(33247,'history_text','itemid',31734),(33248,'history_uint','itemid',31734),(33249,'trends','itemid',31734),(33250,'trends_uint','itemid',31734),(33251,'events','itemid',31735),(33252,'history','itemid',31735),(33253,'history_log','itemid',31735),(33254,'history_str','itemid',31735),(33255,'history_text','itemid',31735),(33256,'history_uint','itemid',31735),(33257,'trends','itemid',31735),(33258,'trends_uint','itemid',31735),(33259,'events','itemid',31736),(33260,'history','itemid',31736),(33261,'history_log','itemid',31736),(33262,'history_str','itemid',31736),(33263,'history_text','itemid',31736),(33264,'history_uint','itemid',31736),(33265,'trends','itemid',31736),(33266,'trends_uint','itemid',31736),(33267,'events','itemid',31737),(33268,'history','itemid',31737),(33269,'history_log','itemid',31737),(33270,'history_str','itemid',31737),(33271,'history_text','itemid',31737),(33272,'history_uint','itemid',31737),(33273,'trends','itemid',31737),(33274,'trends_uint','itemid',31737),(33275,'events','itemid',31738),(33276,'history','itemid',31738),(33277,'history_log','itemid',31738),(33278,'history_str','itemid',31738),(33279,'history_text','itemid',31738),(33280,'history_uint','itemid',31738),(33281,'trends','itemid',31738),(33282,'trends_uint','itemid',31738),(33283,'events','itemid',31739),(33284,'history','itemid',31739),(33285,'history_log','itemid',31739),(33286,'history_str','itemid',31739),(33287,'history_text','itemid',31739),(33288,'history_uint','itemid',31739),(33289,'trends','itemid',31739),(33290,'trends_uint','itemid',31739),(33291,'events','itemid',31740),(33292,'history','itemid',31740),(33293,'history_log','itemid',31740),(33294,'history_str','itemid',31740),(33295,'history_text','itemid',31740),(33296,'history_uint','itemid',31740),(33297,'trends','itemid',31740),(33298,'trends_uint','itemid',31740),(33299,'events','itemid',31741),(33300,'history','itemid',31741),(33301,'history_log','itemid',31741),(33302,'history_str','itemid',31741),(33303,'history_text','itemid',31741),(33304,'history_uint','itemid',31741),(33305,'trends','itemid',31741),(33306,'trends_uint','itemid',31741),(33307,'events','itemid',31742),(33308,'history','itemid',31742),(33309,'history_log','itemid',31742),(33310,'history_str','itemid',31742),(33311,'history_text','itemid',31742),(33312,'history_uint','itemid',31742),(33313,'trends','itemid',31742),(33314,'trends_uint','itemid',31742),(33315,'events','itemid',31743),(33316,'history','itemid',31743),(33317,'history_log','itemid',31743),(33318,'history_str','itemid',31743),(33319,'history_text','itemid',31743),(33320,'history_uint','itemid',31743),(33321,'trends','itemid',31743),(33322,'trends_uint','itemid',31743),(33323,'events','itemid',31744),(33324,'history','itemid',31744),(33325,'history_log','itemid',31744),(33326,'history_str','itemid',31744),(33327,'history_text','itemid',31744),(33328,'history_uint','itemid',31744),(33329,'trends','itemid',31744),(33330,'trends_uint','itemid',31744),(33331,'events','itemid',31745),(33332,'history','itemid',31745),(33333,'history_log','itemid',31745),(33334,'history_str','itemid',31745),(33335,'history_text','itemid',31745),(33336,'history_uint','itemid',31745),(33337,'trends','itemid',31745),(33338,'trends_uint','itemid',31745),(33339,'events','itemid',31746),(33340,'history','itemid',31746),(33341,'history_log','itemid',31746),(33342,'history_str','itemid',31746),(33343,'history_text','itemid',31746),(33344,'history_uint','itemid',31746),(33345,'trends','itemid',31746),(33346,'trends_uint','itemid',31746),(33347,'events','itemid',31747),(33348,'history','itemid',31747),(33349,'history_log','itemid',31747),(33350,'history_str','itemid',31747),(33351,'history_text','itemid',31747),(33352,'history_uint','itemid',31747),(33353,'trends','itemid',31747),(33354,'trends_uint','itemid',31747),(33355,'events','itemid',31748),(33356,'history','itemid',31748),(33357,'history_log','itemid',31748),(33358,'history_str','itemid',31748),(33359,'history_text','itemid',31748),(33360,'history_uint','itemid',31748),(33361,'trends','itemid',31748),(33362,'trends_uint','itemid',31748),(33363,'events','itemid',31749),(33364,'history','itemid',31749),(33365,'history_log','itemid',31749),(33366,'history_str','itemid',31749),(33367,'history_text','itemid',31749),(33368,'history_uint','itemid',31749),(33369,'trends','itemid',31749),(33370,'trends_uint','itemid',31749),(33371,'events','itemid',31750),(33372,'history','itemid',31750),(33373,'history_log','itemid',31750),(33374,'history_str','itemid',31750),(33375,'history_text','itemid',31750),(33376,'history_uint','itemid',31750),(33377,'trends','itemid',31750),(33378,'trends_uint','itemid',31750),(33379,'events','itemid',31751),(33380,'history','itemid',31751),(33381,'history_log','itemid',31751),(33382,'history_str','itemid',31751),(33383,'history_text','itemid',31751),(33384,'history_uint','itemid',31751),(33385,'trends','itemid',31751),(33386,'trends_uint','itemid',31751),(33387,'events','itemid',31752),(33388,'history','itemid',31752),(33389,'history_log','itemid',31752),(33390,'history_str','itemid',31752),(33391,'history_text','itemid',31752),(33392,'history_uint','itemid',31752),(33393,'trends','itemid',31752),(33394,'trends_uint','itemid',31752),(33395,'events','itemid',31753),(33396,'history','itemid',31753),(33397,'history_log','itemid',31753),(33398,'history_str','itemid',31753),(33399,'history_text','itemid',31753),(33400,'history_uint','itemid',31753),(33401,'trends','itemid',31753),(33402,'trends_uint','itemid',31753),(33403,'events','itemid',31754),(33404,'history','itemid',31754),(33405,'history_log','itemid',31754),(33406,'history_str','itemid',31754),(33407,'history_text','itemid',31754),(33408,'history_uint','itemid',31754),(33409,'trends','itemid',31754),(33410,'trends_uint','itemid',31754),(33411,'events','itemid',31755),(33412,'history','itemid',31755),(33413,'history_log','itemid',31755),(33414,'history_str','itemid',31755),(33415,'history_text','itemid',31755),(33416,'history_uint','itemid',31755),(33417,'trends','itemid',31755),(33418,'trends_uint','itemid',31755),(33419,'events','itemid',31756),(33420,'history','itemid',31756),(33421,'history_log','itemid',31756),(33422,'history_str','itemid',31756),(33423,'history_text','itemid',31756),(33424,'history_uint','itemid',31756),(33425,'trends','itemid',31756),(33426,'trends_uint','itemid',31756),(33427,'events','itemid',31757),(33428,'history','itemid',31757),(33429,'history_log','itemid',31757),(33430,'history_str','itemid',31757),(33431,'history_text','itemid',31757),(33432,'history_uint','itemid',31757),(33433,'trends','itemid',31757),(33434,'trends_uint','itemid',31757),(33435,'events','itemid',31758),(33436,'history','itemid',31758),(33437,'history_log','itemid',31758),(33438,'history_str','itemid',31758),(33439,'history_text','itemid',31758),(33440,'history_uint','itemid',31758),(33441,'trends','itemid',31758),(33442,'trends_uint','itemid',31758),(33443,'events','itemid',31759),(33444,'history','itemid',31759),(33445,'history_log','itemid',31759),(33446,'history_str','itemid',31759),(33447,'history_text','itemid',31759),(33448,'history_uint','itemid',31759),(33449,'trends','itemid',31759),(33450,'trends_uint','itemid',31759),(33451,'events','itemid',31760),(33452,'history','itemid',31760),(33453,'history_log','itemid',31760),(33454,'history_str','itemid',31760),(33455,'history_text','itemid',31760),(33456,'history_uint','itemid',31760),(33457,'trends','itemid',31760),(33458,'trends_uint','itemid',31760),(33459,'events','itemid',32364),(33460,'history','itemid',32364),(33461,'history_log','itemid',32364),(33462,'history_str','itemid',32364),(33463,'history_text','itemid',32364),(33464,'history_uint','itemid',32364),(33465,'trends','itemid',32364),(33466,'trends_uint','itemid',32364),(33467,'events','itemid',32365),(33468,'history','itemid',32365),(33469,'history_log','itemid',32365),(33470,'history_str','itemid',32365),(33471,'history_text','itemid',32365),(33472,'history_uint','itemid',32365),(33473,'trends','itemid',32365),(33474,'trends_uint','itemid',32365),(33475,'events','itemid',32366),(33476,'history','itemid',32366),(33477,'history_log','itemid',32366),(33478,'history_str','itemid',32366),(33479,'history_text','itemid',32366),(33480,'history_uint','itemid',32366),(33481,'trends','itemid',32366),(33482,'trends_uint','itemid',32366),(33483,'events','itemid',32367),(33484,'history','itemid',32367),(33485,'history_log','itemid',32367),(33486,'history_str','itemid',32367),(33487,'history_text','itemid',32367),(33488,'history_uint','itemid',32367),(33489,'trends','itemid',32367),(33490,'trends_uint','itemid',32367),(33491,'events','itemid',32368),(33492,'history','itemid',32368),(33493,'history_log','itemid',32368),(33494,'history_str','itemid',32368),(33495,'history_text','itemid',32368),(33496,'history_uint','itemid',32368),(33497,'trends','itemid',32368),(33498,'trends_uint','itemid',32368),(33499,'events','itemid',32369),(33500,'history','itemid',32369),(33501,'history_log','itemid',32369),(33502,'history_str','itemid',32369),(33503,'history_text','itemid',32369),(33504,'history_uint','itemid',32369),(33505,'trends','itemid',32369),(33506,'trends_uint','itemid',32369),(33507,'events','itemid',32370),(33508,'history','itemid',32370),(33509,'history_log','itemid',32370),(33510,'history_str','itemid',32370),(33511,'history_text','itemid',32370),(33512,'history_uint','itemid',32370),(33513,'trends','itemid',32370),(33514,'trends_uint','itemid',32370),(33515,'events','itemid',32371),(33516,'history','itemid',32371),(33517,'history_log','itemid',32371),(33518,'history_str','itemid',32371),(33519,'history_text','itemid',32371),(33520,'history_uint','itemid',32371),(33521,'trends','itemid',32371),(33522,'trends_uint','itemid',32371),(33523,'events','itemid',32372),(33524,'history','itemid',32372),(33525,'history_log','itemid',32372),(33526,'history_str','itemid',32372),(33527,'history_text','itemid',32372),(33528,'history_uint','itemid',32372),(33529,'trends','itemid',32372),(33530,'trends_uint','itemid',32372),(33531,'events','itemid',32373),(33532,'history','itemid',32373),(33533,'history_log','itemid',32373),(33534,'history_str','itemid',32373),(33535,'history_text','itemid',32373),(33536,'history_uint','itemid',32373),(33537,'trends','itemid',32373),(33538,'trends_uint','itemid',32373),(33539,'events','itemid',32374),(33540,'history','itemid',32374),(33541,'history_log','itemid',32374),(33542,'history_str','itemid',32374),(33543,'history_text','itemid',32374),(33544,'history_uint','itemid',32374),(33545,'trends','itemid',32374),(33546,'trends_uint','itemid',32374),(33547,'events','itemid',32375),(33548,'history','itemid',32375),(33549,'history_log','itemid',32375),(33550,'history_str','itemid',32375),(33551,'history_text','itemid',32375),(33552,'history_uint','itemid',32375),(33553,'trends','itemid',32375),(33554,'trends_uint','itemid',32375),(33555,'events','itemid',32376),(33556,'history','itemid',32376),(33557,'history_log','itemid',32376),(33558,'history_str','itemid',32376),(33559,'history_text','itemid',32376),(33560,'history_uint','itemid',32376),(33561,'trends','itemid',32376),(33562,'trends_uint','itemid',32376),(33563,'events','itemid',32377),(33564,'history','itemid',32377),(33565,'history_log','itemid',32377),(33566,'history_str','itemid',32377),(33567,'history_text','itemid',32377),(33568,'history_uint','itemid',32377),(33569,'trends','itemid',32377),(33570,'trends_uint','itemid',32377),(33571,'events','itemid',32378),(33572,'history','itemid',32378),(33573,'history_log','itemid',32378),(33574,'history_str','itemid',32378),(33575,'history_text','itemid',32378),(33576,'history_uint','itemid',32378),(33577,'trends','itemid',32378),(33578,'trends_uint','itemid',32378),(33579,'events','itemid',32379),(33580,'history','itemid',32379),(33581,'history_log','itemid',32379),(33582,'history_str','itemid',32379),(33583,'history_text','itemid',32379),(33584,'history_uint','itemid',32379),(33585,'trends','itemid',32379),(33586,'trends_uint','itemid',32379),(33587,'events','itemid',32380),(33588,'history','itemid',32380),(33589,'history_log','itemid',32380),(33590,'history_str','itemid',32380),(33591,'history_text','itemid',32380),(33592,'history_uint','itemid',32380),(33593,'trends','itemid',32380),(33594,'trends_uint','itemid',32380),(33595,'events','itemid',32381),(33596,'history','itemid',32381),(33597,'history_log','itemid',32381),(33598,'history_str','itemid',32381),(33599,'history_text','itemid',32381),(33600,'history_uint','itemid',32381),(33601,'trends','itemid',32381),(33602,'trends_uint','itemid',32381),(33603,'events','itemid',32382),(33604,'history','itemid',32382),(33605,'history_log','itemid',32382),(33606,'history_str','itemid',32382),(33607,'history_text','itemid',32382),(33608,'history_uint','itemid',32382),(33609,'trends','itemid',32382),(33610,'trends_uint','itemid',32382),(33611,'events','itemid',32383),(33612,'history','itemid',32383),(33613,'history_log','itemid',32383),(33614,'history_str','itemid',32383),(33615,'history_text','itemid',32383),(33616,'history_uint','itemid',32383),(33617,'trends','itemid',32383),(33618,'trends_uint','itemid',32383),(33619,'events','itemid',32384),(33620,'history','itemid',32384),(33621,'history_log','itemid',32384),(33622,'history_str','itemid',32384),(33623,'history_text','itemid',32384),(33624,'history_uint','itemid',32384),(33625,'trends','itemid',32384),(33626,'trends_uint','itemid',32384),(33627,'events','itemid',32385),(33628,'history','itemid',32385),(33629,'history_log','itemid',32385),(33630,'history_str','itemid',32385),(33631,'history_text','itemid',32385),(33632,'history_uint','itemid',32385),(33633,'trends','itemid',32385),(33634,'trends_uint','itemid',32385),(33635,'events','itemid',32386),(33636,'history','itemid',32386),(33637,'history_log','itemid',32386),(33638,'history_str','itemid',32386),(33639,'history_text','itemid',32386),(33640,'history_uint','itemid',32386),(33641,'trends','itemid',32386),(33642,'trends_uint','itemid',32386),(33643,'events','itemid',32387),(33644,'history','itemid',32387),(33645,'history_log','itemid',32387),(33646,'history_str','itemid',32387),(33647,'history_text','itemid',32387),(33648,'history_uint','itemid',32387),(33649,'trends','itemid',32387),(33650,'trends_uint','itemid',32387),(33651,'events','itemid',32388),(33652,'history','itemid',32388),(33653,'history_log','itemid',32388),(33654,'history_str','itemid',32388),(33655,'history_text','itemid',32388),(33656,'history_uint','itemid',32388),(33657,'trends','itemid',32388),(33658,'trends_uint','itemid',32388),(33659,'events','itemid',32389),(33660,'history','itemid',32389),(33661,'history_log','itemid',32389),(33662,'history_str','itemid',32389),(33663,'history_text','itemid',32389),(33664,'history_uint','itemid',32389),(33665,'trends','itemid',32389),(33666,'trends_uint','itemid',32389),(33667,'events','itemid',32390),(33668,'history','itemid',32390),(33669,'history_log','itemid',32390),(33670,'history_str','itemid',32390),(33671,'history_text','itemid',32390),(33672,'history_uint','itemid',32390),(33673,'trends','itemid',32390),(33674,'trends_uint','itemid',32390),(33675,'events','itemid',32391),(33676,'history','itemid',32391),(33677,'history_log','itemid',32391),(33678,'history_str','itemid',32391),(33679,'history_text','itemid',32391),(33680,'history_uint','itemid',32391),(33681,'trends','itemid',32391),(33682,'trends_uint','itemid',32391),(33683,'events','itemid',32392),(33684,'history','itemid',32392),(33685,'history_log','itemid',32392),(33686,'history_str','itemid',32392),(33687,'history_text','itemid',32392),(33688,'history_uint','itemid',32392),(33689,'trends','itemid',32392),(33690,'trends_uint','itemid',32392),(33691,'events','itemid',32393),(33692,'history','itemid',32393),(33693,'history_log','itemid',32393),(33694,'history_str','itemid',32393),(33695,'history_text','itemid',32393),(33696,'history_uint','itemid',32393),(33697,'trends','itemid',32393),(33698,'trends_uint','itemid',32393),(33699,'events','itemid',32394),(33700,'history','itemid',32394),(33701,'history_log','itemid',32394),(33702,'history_str','itemid',32394),(33703,'history_text','itemid',32394),(33704,'history_uint','itemid',32394),(33705,'trends','itemid',32394),(33706,'trends_uint','itemid',32394),(33707,'events','itemid',32395),(33708,'history','itemid',32395),(33709,'history_log','itemid',32395),(33710,'history_str','itemid',32395),(33711,'history_text','itemid',32395),(33712,'history_uint','itemid',32395),(33713,'trends','itemid',32395),(33714,'trends_uint','itemid',32395),(33715,'events','itemid',32396),(33716,'history','itemid',32396),(33717,'history_log','itemid',32396),(33718,'history_str','itemid',32396),(33719,'history_text','itemid',32396),(33720,'history_uint','itemid',32396),(33721,'trends','itemid',32396),(33722,'trends_uint','itemid',32396),(33723,'events','itemid',32397),(33724,'history','itemid',32397),(33725,'history_log','itemid',32397),(33726,'history_str','itemid',32397),(33727,'history_text','itemid',32397),(33728,'history_uint','itemid',32397),(33729,'trends','itemid',32397),(33730,'trends_uint','itemid',32397),(33731,'events','itemid',32398),(33732,'history','itemid',32398),(33733,'history_log','itemid',32398),(33734,'history_str','itemid',32398),(33735,'history_text','itemid',32398),(33736,'history_uint','itemid',32398),(33737,'trends','itemid',32398),(33738,'trends_uint','itemid',32398),(33739,'events','itemid',32399),(33740,'history','itemid',32399),(33741,'history_log','itemid',32399),(33742,'history_str','itemid',32399),(33743,'history_text','itemid',32399),(33744,'history_uint','itemid',32399),(33745,'trends','itemid',32399),(33746,'trends_uint','itemid',32399),(33747,'events','itemid',32400),(33748,'history','itemid',32400),(33749,'history_log','itemid',32400),(33750,'history_str','itemid',32400),(33751,'history_text','itemid',32400),(33752,'history_uint','itemid',32400),(33753,'trends','itemid',32400),(33754,'trends_uint','itemid',32400),(33755,'events','itemid',32401),(33756,'history','itemid',32401),(33757,'history_log','itemid',32401),(33758,'history_str','itemid',32401),(33759,'history_text','itemid',32401),(33760,'history_uint','itemid',32401),(33761,'trends','itemid',32401),(33762,'trends_uint','itemid',32401),(33763,'events','itemid',32402),(33764,'history','itemid',32402),(33765,'history_log','itemid',32402),(33766,'history_str','itemid',32402),(33767,'history_text','itemid',32402),(33768,'history_uint','itemid',32402),(33769,'trends','itemid',32402),(33770,'trends_uint','itemid',32402),(33771,'events','itemid',32403),(33772,'history','itemid',32403),(33773,'history_log','itemid',32403),(33774,'history_str','itemid',32403),(33775,'history_text','itemid',32403),(33776,'history_uint','itemid',32403),(33777,'trends','itemid',32403),(33778,'trends_uint','itemid',32403),(33779,'events','itemid',33126),(33780,'history','itemid',33126),(33781,'history_log','itemid',33126),(33782,'history_str','itemid',33126),(33783,'history_text','itemid',33126),(33784,'history_uint','itemid',33126),(33785,'trends','itemid',33126),(33786,'trends_uint','itemid',33126),(33787,'events','itemid',33127),(33788,'history','itemid',33127),(33789,'history_log','itemid',33127),(33790,'history_str','itemid',33127),(33791,'history_text','itemid',33127),(33792,'history_uint','itemid',33127),(33793,'trends','itemid',33127),(33794,'trends_uint','itemid',33127),(33795,'events','itemid',33128),(33796,'history','itemid',33128),(33797,'history_log','itemid',33128),(33798,'history_str','itemid',33128),(33799,'history_text','itemid',33128),(33800,'history_uint','itemid',33128),(33801,'trends','itemid',33128),(33802,'trends_uint','itemid',33128),(33803,'events','itemid',33129),(33804,'history','itemid',33129),(33805,'history_log','itemid',33129),(33806,'history_str','itemid',33129),(33807,'history_text','itemid',33129),(33808,'history_uint','itemid',33129),(33809,'trends','itemid',33129),(33810,'trends_uint','itemid',33129),(33811,'events','itemid',33130),(33812,'history','itemid',33130),(33813,'history_log','itemid',33130),(33814,'history_str','itemid',33130),(33815,'history_text','itemid',33130),(33816,'history_uint','itemid',33130),(33817,'trends','itemid',33130),(33818,'trends_uint','itemid',33130),(33819,'events','itemid',33131),(33820,'history','itemid',33131),(33821,'history_log','itemid',33131),(33822,'history_str','itemid',33131),(33823,'history_text','itemid',33131),(33824,'history_uint','itemid',33131),(33825,'trends','itemid',33131),(33826,'trends_uint','itemid',33131),(33827,'events','itemid',33132),(33828,'history','itemid',33132),(33829,'history_log','itemid',33132),(33830,'history_str','itemid',33132),(33831,'history_text','itemid',33132),(33832,'history_uint','itemid',33132),(33833,'trends','itemid',33132),(33834,'trends_uint','itemid',33132),(33835,'events','itemid',33140),(33836,'history','itemid',33140),(33837,'history_log','itemid',33140),(33838,'history_str','itemid',33140),(33839,'history_text','itemid',33140),(33840,'history_uint','itemid',33140),(33841,'trends','itemid',33140),(33842,'trends_uint','itemid',33140),(33843,'events','itemid',33141),(33844,'history','itemid',33141),(33845,'history_log','itemid',33141),(33846,'history_str','itemid',33141),(33847,'history_text','itemid',33141),(33848,'history_uint','itemid',33141),(33849,'trends','itemid',33141),(33850,'trends_uint','itemid',33141),(33851,'events','itemid',33142),(33852,'history','itemid',33142),(33853,'history_log','itemid',33142),(33854,'history_str','itemid',33142),(33855,'history_text','itemid',33142),(33856,'history_uint','itemid',33142),(33857,'trends','itemid',33142),(33858,'trends_uint','itemid',33142),(33859,'events','itemid',33143),(33860,'history','itemid',33143),(33861,'history_log','itemid',33143),(33862,'history_str','itemid',33143),(33863,'history_text','itemid',33143),(33864,'history_uint','itemid',33143),(33865,'trends','itemid',33143),(33866,'trends_uint','itemid',33143),(33867,'events','itemid',33144),(33868,'history','itemid',33144),(33869,'history_log','itemid',33144),(33870,'history_str','itemid',33144),(33871,'history_text','itemid',33144),(33872,'history_uint','itemid',33144),(33873,'trends','itemid',33144),(33874,'trends_uint','itemid',33144),(33875,'events','itemid',33145),(33876,'history','itemid',33145),(33877,'history_log','itemid',33145),(33878,'history_str','itemid',33145),(33879,'history_text','itemid',33145),(33880,'history_uint','itemid',33145),(33881,'trends','itemid',33145),(33882,'trends_uint','itemid',33145),(33883,'events','itemid',33146),(33884,'history','itemid',33146),(33885,'history_log','itemid',33146),(33886,'history_str','itemid',33146),(33887,'history_text','itemid',33146),(33888,'history_uint','itemid',33146),(33889,'trends','itemid',33146),(33890,'trends_uint','itemid',33146),(33891,'events','itemid',33154),(33892,'history','itemid',33154),(33893,'history_log','itemid',33154),(33894,'history_str','itemid',33154),(33895,'history_text','itemid',33154),(33896,'history_uint','itemid',33154),(33897,'trends','itemid',33154),(33898,'trends_uint','itemid',33154),(33899,'events','itemid',33155),(33900,'history','itemid',33155),(33901,'history_log','itemid',33155),(33902,'history_str','itemid',33155),(33903,'history_text','itemid',33155),(33904,'history_uint','itemid',33155),(33905,'trends','itemid',33155),(33906,'trends_uint','itemid',33155),(33907,'events','itemid',33156),(33908,'history','itemid',33156),(33909,'history_log','itemid',33156),(33910,'history_str','itemid',33156),(33911,'history_text','itemid',33156),(33912,'history_uint','itemid',33156),(33913,'trends','itemid',33156),(33914,'trends_uint','itemid',33156),(33915,'events','itemid',33157),(33916,'history','itemid',33157),(33917,'history_log','itemid',33157),(33918,'history_str','itemid',33157),(33919,'history_text','itemid',33157),(33920,'history_uint','itemid',33157),(33921,'trends','itemid',33157),(33922,'trends_uint','itemid',33157),(33923,'events','itemid',33158),(33924,'history','itemid',33158),(33925,'history_log','itemid',33158),(33926,'history_str','itemid',33158),(33927,'history_text','itemid',33158),(33928,'history_uint','itemid',33158),(33929,'trends','itemid',33158),(33930,'trends_uint','itemid',33158),(33931,'events','itemid',33159),(33932,'history','itemid',33159),(33933,'history_log','itemid',33159),(33934,'history_str','itemid',33159),(33935,'history_text','itemid',33159),(33936,'history_uint','itemid',33159),(33937,'trends','itemid',33159),(33938,'trends_uint','itemid',33159),(33939,'events','itemid',33160),(33940,'history','itemid',33160),(33941,'history_log','itemid',33160),(33942,'history_str','itemid',33160),(33943,'history_text','itemid',33160),(33944,'history_uint','itemid',33160),(33945,'trends','itemid',33160),(33946,'trends_uint','itemid',33160),(33947,'events','itemid',33184),(33948,'history','itemid',33184),(33949,'history_log','itemid',33184),(33950,'history_str','itemid',33184),(33951,'history_text','itemid',33184),(33952,'history_uint','itemid',33184),(33953,'trends','itemid',33184),(33954,'trends_uint','itemid',33184),(33955,'events','itemid',33185),(33956,'history','itemid',33185),(33957,'history_log','itemid',33185),(33958,'history_str','itemid',33185),(33959,'history_text','itemid',33185),(33960,'history_uint','itemid',33185),(33961,'trends','itemid',33185),(33962,'trends_uint','itemid',33185),(33963,'events','itemid',33186),(33964,'history','itemid',33186),(33965,'history_log','itemid',33186),(33966,'history_str','itemid',33186),(33967,'history_text','itemid',33186),(33968,'history_uint','itemid',33186),(33969,'trends','itemid',33186),(33970,'trends_uint','itemid',33186),(33971,'events','itemid',33187),(33972,'history','itemid',33187),(33973,'history_log','itemid',33187),(33974,'history_str','itemid',33187),(33975,'history_text','itemid',33187),(33976,'history_uint','itemid',33187),(33977,'trends','itemid',33187),(33978,'trends_uint','itemid',33187),(33979,'events','itemid',33188),(33980,'history','itemid',33188),(33981,'history_log','itemid',33188),(33982,'history_str','itemid',33188),(33983,'history_text','itemid',33188),(33984,'history_uint','itemid',33188),(33985,'trends','itemid',33188),(33986,'trends_uint','itemid',33188),(33987,'events','itemid',33189),(33988,'history','itemid',33189),(33989,'history_log','itemid',33189),(33990,'history_str','itemid',33189),(33991,'history_text','itemid',33189),(33992,'history_uint','itemid',33189),(33993,'trends','itemid',33189),(33994,'trends_uint','itemid',33189),(33995,'events','itemid',33190),(33996,'history','itemid',33190),(33997,'history_log','itemid',33190),(33998,'history_str','itemid',33190),(33999,'history_text','itemid',33190),(34000,'history_uint','itemid',33190),(34001,'trends','itemid',33190),(34002,'trends_uint','itemid',33190),(34003,'events','itemid',33191),(34004,'history','itemid',33191),(34005,'history_log','itemid',33191),(34006,'history_str','itemid',33191),(34007,'history_text','itemid',33191),(34008,'history_uint','itemid',33191),(34009,'trends','itemid',33191),(34010,'trends_uint','itemid',33191),(34011,'events','itemid',33192),(34012,'history','itemid',33192),(34013,'history_log','itemid',33192),(34014,'history_str','itemid',33192),(34015,'history_text','itemid',33192),(34016,'history_uint','itemid',33192),(34017,'trends','itemid',33192),(34018,'trends_uint','itemid',33192),(34019,'events','itemid',33193),(34020,'history','itemid',33193),(34021,'history_log','itemid',33193),(34022,'history_str','itemid',33193),(34023,'history_text','itemid',33193),(34024,'history_uint','itemid',33193),(34025,'trends','itemid',33193),(34026,'trends_uint','itemid',33193),(34027,'events','itemid',33194),(34028,'history','itemid',33194),(34029,'history_log','itemid',33194),(34030,'history_str','itemid',33194),(34031,'history_text','itemid',33194),(34032,'history_uint','itemid',33194),(34033,'trends','itemid',33194),(34034,'trends_uint','itemid',33194),(34035,'events','itemid',33195),(34036,'history','itemid',33195),(34037,'history_log','itemid',33195),(34038,'history_str','itemid',33195),(34039,'history_text','itemid',33195),(34040,'history_uint','itemid',33195),(34041,'trends','itemid',33195),(34042,'trends_uint','itemid',33195),(34043,'events','itemid',33196),(34044,'history','itemid',33196),(34045,'history_log','itemid',33196),(34046,'history_str','itemid',33196),(34047,'history_text','itemid',33196),(34048,'history_uint','itemid',33196),(34049,'trends','itemid',33196),(34050,'trends_uint','itemid',33196),(34051,'events','itemid',33197),(34052,'history','itemid',33197),(34053,'history_log','itemid',33197),(34054,'history_str','itemid',33197),(34055,'history_text','itemid',33197),(34056,'history_uint','itemid',33197),(34057,'trends','itemid',33197),(34058,'trends_uint','itemid',33197),(34059,'events','itemid',33198),(34060,'history','itemid',33198),(34061,'history_log','itemid',33198),(34062,'history_str','itemid',33198),(34063,'history_text','itemid',33198),(34064,'history_uint','itemid',33198),(34065,'trends','itemid',33198),(34066,'trends_uint','itemid',33198),(34067,'events','itemid',33199),(34068,'history','itemid',33199),(34069,'history_log','itemid',33199),(34070,'history_str','itemid',33199),(34071,'history_text','itemid',33199),(34072,'history_uint','itemid',33199),(34073,'trends','itemid',33199),(34074,'trends_uint','itemid',33199),(34075,'events','itemid',33200),(34076,'history','itemid',33200),(34077,'history_log','itemid',33200),(34078,'history_str','itemid',33200),(34079,'history_text','itemid',33200),(34080,'history_uint','itemid',33200),(34081,'trends','itemid',33200),(34082,'trends_uint','itemid',33200),(34083,'events','itemid',33201),(34084,'history','itemid',33201),(34085,'history_log','itemid',33201),(34086,'history_str','itemid',33201),(34087,'history_text','itemid',33201),(34088,'history_uint','itemid',33201),(34089,'trends','itemid',33201),(34090,'trends_uint','itemid',33201),(34091,'events','itemid',33202),(34092,'history','itemid',33202),(34093,'history_log','itemid',33202),(34094,'history_str','itemid',33202),(34095,'history_text','itemid',33202),(34096,'history_uint','itemid',33202),(34097,'trends','itemid',33202),(34098,'trends_uint','itemid',33202),(34099,'events','itemid',33203),(34100,'history','itemid',33203),(34101,'history_log','itemid',33203),(34102,'history_str','itemid',33203),(34103,'history_text','itemid',33203),(34104,'history_uint','itemid',33203),(34105,'trends','itemid',33203),(34106,'trends_uint','itemid',33203),(34107,'events','itemid',33204),(34108,'history','itemid',33204),(34109,'history_log','itemid',33204),(34110,'history_str','itemid',33204),(34111,'history_text','itemid',33204),(34112,'history_uint','itemid',33204),(34113,'trends','itemid',33204),(34114,'trends_uint','itemid',33204),(34115,'events','itemid',33207),(34116,'history','itemid',33207),(34117,'history_log','itemid',33207),(34118,'history_str','itemid',33207),(34119,'history_text','itemid',33207),(34120,'history_uint','itemid',33207),(34121,'trends','itemid',33207),(34122,'trends_uint','itemid',33207),(34123,'events','itemid',33208),(34124,'history','itemid',33208),(34125,'history_log','itemid',33208),(34126,'history_str','itemid',33208),(34127,'history_text','itemid',33208),(34128,'history_uint','itemid',33208),(34129,'trends','itemid',33208),(34130,'trends_uint','itemid',33208),(34131,'events','itemid',33209),(34132,'history','itemid',33209),(34133,'history_log','itemid',33209),(34134,'history_str','itemid',33209),(34135,'history_text','itemid',33209),(34136,'history_uint','itemid',33209),(34137,'trends','itemid',33209),(34138,'trends_uint','itemid',33209),(34139,'events','itemid',33210),(34140,'history','itemid',33210),(34141,'history_log','itemid',33210),(34142,'history_str','itemid',33210),(34143,'history_text','itemid',33210),(34144,'history_uint','itemid',33210),(34145,'trends','itemid',33210),(34146,'trends_uint','itemid',33210),(34147,'events','itemid',33211),(34148,'history','itemid',33211),(34149,'history_log','itemid',33211),(34150,'history_str','itemid',33211),(34151,'history_text','itemid',33211),(34152,'history_uint','itemid',33211),(34153,'trends','itemid',33211),(34154,'trends_uint','itemid',33211),(34155,'events','itemid',33212),(34156,'history','itemid',33212),(34157,'history_log','itemid',33212),(34158,'history_str','itemid',33212),(34159,'history_text','itemid',33212),(34160,'history_uint','itemid',33212),(34161,'trends','itemid',33212),(34162,'trends_uint','itemid',33212),(34163,'events','itemid',33213),(34164,'history','itemid',33213),(34165,'history_log','itemid',33213),(34166,'history_str','itemid',33213),(34167,'history_text','itemid',33213),(34168,'history_uint','itemid',33213),(34169,'trends','itemid',33213),(34170,'trends_uint','itemid',33213),(34171,'events','itemid',33214),(34172,'history','itemid',33214),(34173,'history_log','itemid',33214),(34174,'history_str','itemid',33214),(34175,'history_text','itemid',33214),(34176,'history_uint','itemid',33214),(34177,'trends','itemid',33214),(34178,'trends_uint','itemid',33214),(34179,'events','itemid',33215),(34180,'history','itemid',33215),(34181,'history_log','itemid',33215),(34182,'history_str','itemid',33215),(34183,'history_text','itemid',33215),(34184,'history_uint','itemid',33215),(34185,'trends','itemid',33215),(34186,'trends_uint','itemid',33215),(34187,'events','itemid',33216),(34188,'history','itemid',33216),(34189,'history_log','itemid',33216),(34190,'history_str','itemid',33216),(34191,'history_text','itemid',33216),(34192,'history_uint','itemid',33216),(34193,'trends','itemid',33216),(34194,'trends_uint','itemid',33216),(34195,'events','itemid',33217),(34196,'history','itemid',33217),(34197,'history_log','itemid',33217),(34198,'history_str','itemid',33217),(34199,'history_text','itemid',33217),(34200,'history_uint','itemid',33217),(34201,'trends','itemid',33217),(34202,'trends_uint','itemid',33217),(34203,'events','itemid',33218),(34204,'history','itemid',33218),(34205,'history_log','itemid',33218),(34206,'history_str','itemid',33218),(34207,'history_text','itemid',33218),(34208,'history_uint','itemid',33218),(34209,'trends','itemid',33218),(34210,'trends_uint','itemid',33218),(34211,'events','itemid',33219),(34212,'history','itemid',33219),(34213,'history_log','itemid',33219),(34214,'history_str','itemid',33219),(34215,'history_text','itemid',33219),(34216,'history_uint','itemid',33219),(34217,'trends','itemid',33219),(34218,'trends_uint','itemid',33219),(34219,'events','itemid',33220),(34220,'history','itemid',33220),(34221,'history_log','itemid',33220),(34222,'history_str','itemid',33220),(34223,'history_text','itemid',33220),(34224,'history_uint','itemid',33220),(34225,'trends','itemid',33220),(34226,'trends_uint','itemid',33220),(34227,'events','itemid',33221),(34228,'history','itemid',33221),(34229,'history_log','itemid',33221),(34230,'history_str','itemid',33221),(34231,'history_text','itemid',33221),(34232,'history_uint','itemid',33221),(34233,'trends','itemid',33221),(34234,'trends_uint','itemid',33221),(34235,'events','itemid',33222),(34236,'history','itemid',33222),(34237,'history_log','itemid',33222),(34238,'history_str','itemid',33222),(34239,'history_text','itemid',33222),(34240,'history_uint','itemid',33222),(34241,'trends','itemid',33222),(34242,'trends_uint','itemid',33222),(34243,'events','itemid',33223),(34244,'history','itemid',33223),(34245,'history_log','itemid',33223),(34246,'history_str','itemid',33223),(34247,'history_text','itemid',33223),(34248,'history_uint','itemid',33223),(34249,'trends','itemid',33223),(34250,'trends_uint','itemid',33223),(34251,'events','itemid',33224),(34252,'history','itemid',33224),(34253,'history_log','itemid',33224),(34254,'history_str','itemid',33224),(34255,'history_text','itemid',33224),(34256,'history_uint','itemid',33224),(34257,'trends','itemid',33224),(34258,'trends_uint','itemid',33224),(34259,'events','itemid',33227),(34260,'history','itemid',33227),(34261,'history_log','itemid',33227),(34262,'history_str','itemid',33227),(34263,'history_text','itemid',33227),(34264,'history_uint','itemid',33227),(34265,'trends','itemid',33227),(34266,'trends_uint','itemid',33227),(34267,'events','itemid',33228),(34268,'history','itemid',33228),(34269,'history_log','itemid',33228),(34270,'history_str','itemid',33228),(34271,'history_text','itemid',33228),(34272,'history_uint','itemid',33228),(34273,'trends','itemid',33228),(34274,'trends_uint','itemid',33228),(34275,'events','itemid',33229),(34276,'history','itemid',33229),(34277,'history_log','itemid',33229),(34278,'history_str','itemid',33229),(34279,'history_text','itemid',33229),(34280,'history_uint','itemid',33229),(34281,'trends','itemid',33229),(34282,'trends_uint','itemid',33229),(34283,'events','itemid',33230),(34284,'history','itemid',33230),(34285,'history_log','itemid',33230),(34286,'history_str','itemid',33230),(34287,'history_text','itemid',33230),(34288,'history_uint','itemid',33230),(34289,'trends','itemid',33230),(34290,'trends_uint','itemid',33230),(34291,'events','itemid',33231),(34292,'history','itemid',33231),(34293,'history_log','itemid',33231),(34294,'history_str','itemid',33231),(34295,'history_text','itemid',33231),(34296,'history_uint','itemid',33231),(34297,'trends','itemid',33231),(34298,'trends_uint','itemid',33231),(34299,'events','itemid',33232),(34300,'history','itemid',33232),(34301,'history_log','itemid',33232),(34302,'history_str','itemid',33232),(34303,'history_text','itemid',33232),(34304,'history_uint','itemid',33232),(34305,'trends','itemid',33232),(34306,'trends_uint','itemid',33232),(34307,'events','itemid',33233),(34308,'history','itemid',33233),(34309,'history_log','itemid',33233),(34310,'history_str','itemid',33233),(34311,'history_text','itemid',33233),(34312,'history_uint','itemid',33233),(34313,'trends','itemid',33233),(34314,'trends_uint','itemid',33233),(34315,'events','itemid',33234),(34316,'history','itemid',33234),(34317,'history_log','itemid',33234),(34318,'history_str','itemid',33234),(34319,'history_text','itemid',33234),(34320,'history_uint','itemid',33234),(34321,'trends','itemid',33234),(34322,'trends_uint','itemid',33234),(34323,'events','itemid',33235),(34324,'history','itemid',33235),(34325,'history_log','itemid',33235),(34326,'history_str','itemid',33235),(34327,'history_text','itemid',33235),(34328,'history_uint','itemid',33235),(34329,'trends','itemid',33235),(34330,'trends_uint','itemid',33235),(34331,'events','itemid',33236),(34332,'history','itemid',33236),(34333,'history_log','itemid',33236),(34334,'history_str','itemid',33236),(34335,'history_text','itemid',33236),(34336,'history_uint','itemid',33236),(34337,'trends','itemid',33236),(34338,'trends_uint','itemid',33236),(34339,'events','itemid',33237),(34340,'history','itemid',33237),(34341,'history_log','itemid',33237),(34342,'history_str','itemid',33237),(34343,'history_text','itemid',33237),(34344,'history_uint','itemid',33237),(34345,'trends','itemid',33237),(34346,'trends_uint','itemid',33237),(34347,'events','itemid',33238),(34348,'history','itemid',33238),(34349,'history_log','itemid',33238),(34350,'history_str','itemid',33238),(34351,'history_text','itemid',33238),(34352,'history_uint','itemid',33238),(34353,'trends','itemid',33238),(34354,'trends_uint','itemid',33238),(34355,'events','itemid',33239),(34356,'history','itemid',33239),(34357,'history_log','itemid',33239),(34358,'history_str','itemid',33239),(34359,'history_text','itemid',33239),(34360,'history_uint','itemid',33239),(34361,'trends','itemid',33239),(34362,'trends_uint','itemid',33239),(34363,'events','itemid',33240),(34364,'history','itemid',33240),(34365,'history_log','itemid',33240),(34366,'history_str','itemid',33240),(34367,'history_text','itemid',33240),(34368,'history_uint','itemid',33240),(34369,'trends','itemid',33240),(34370,'trends_uint','itemid',33240),(34371,'events','itemid',33241),(34372,'history','itemid',33241),(34373,'history_log','itemid',33241),(34374,'history_str','itemid',33241),(34375,'history_text','itemid',33241),(34376,'history_uint','itemid',33241),(34377,'trends','itemid',33241),(34378,'trends_uint','itemid',33241),(34379,'events','itemid',33242),(34380,'history','itemid',33242),(34381,'history_log','itemid',33242),(34382,'history_str','itemid',33242),(34383,'history_text','itemid',33242),(34384,'history_uint','itemid',33242),(34385,'trends','itemid',33242),(34386,'trends_uint','itemid',33242),(34387,'events','itemid',33243),(34388,'history','itemid',33243),(34389,'history_log','itemid',33243),(34390,'history_str','itemid',33243),(34391,'history_text','itemid',33243),(34392,'history_uint','itemid',33243),(34393,'trends','itemid',33243),(34394,'trends_uint','itemid',33243),(34395,'events','itemid',33244),(34396,'history','itemid',33244),(34397,'history_log','itemid',33244),(34398,'history_str','itemid',33244),(34399,'history_text','itemid',33244),(34400,'history_uint','itemid',33244),(34401,'trends','itemid',33244),(34402,'trends_uint','itemid',33244),(34403,'events','itemid',33245),(34404,'history','itemid',33245),(34405,'history_log','itemid',33245),(34406,'history_str','itemid',33245),(34407,'history_text','itemid',33245),(34408,'history_uint','itemid',33245),(34409,'trends','itemid',33245),(34410,'trends_uint','itemid',33245),(34411,'events','itemid',33246),(34412,'history','itemid',33246),(34413,'history_log','itemid',33246),(34414,'history_str','itemid',33246),(34415,'history_text','itemid',33246),(34416,'history_uint','itemid',33246),(34417,'trends','itemid',33246),(34418,'trends_uint','itemid',33246),(34419,'events','itemid',33247),(34420,'history','itemid',33247),(34421,'history_log','itemid',33247),(34422,'history_str','itemid',33247),(34423,'history_text','itemid',33247),(34424,'history_uint','itemid',33247),(34425,'trends','itemid',33247),(34426,'trends_uint','itemid',33247),(34427,'events','itemid',33250),(34428,'history','itemid',33250),(34429,'history_log','itemid',33250),(34430,'history_str','itemid',33250),(34431,'history_text','itemid',33250),(34432,'history_uint','itemid',33250),(34433,'trends','itemid',33250),(34434,'trends_uint','itemid',33250),(34435,'events','itemid',33251),(34436,'history','itemid',33251),(34437,'history_log','itemid',33251),(34438,'history_str','itemid',33251),(34439,'history_text','itemid',33251),(34440,'history_uint','itemid',33251),(34441,'trends','itemid',33251),(34442,'trends_uint','itemid',33251),(34443,'events','itemid',33252),(34444,'history','itemid',33252),(34445,'history_log','itemid',33252),(34446,'history_str','itemid',33252),(34447,'history_text','itemid',33252),(34448,'history_uint','itemid',33252),(34449,'trends','itemid',33252),(34450,'trends_uint','itemid',33252),(34451,'events','itemid',33253),(34452,'history','itemid',33253),(34453,'history_log','itemid',33253),(34454,'history_str','itemid',33253),(34455,'history_text','itemid',33253),(34456,'history_uint','itemid',33253),(34457,'trends','itemid',33253),(34458,'trends_uint','itemid',33253),(34459,'events','itemid',33254),(34460,'history','itemid',33254),(34461,'history_log','itemid',33254),(34462,'history_str','itemid',33254),(34463,'history_text','itemid',33254),(34464,'history_uint','itemid',33254),(34465,'trends','itemid',33254),(34466,'trends_uint','itemid',33254),(34467,'events','itemid',33255),(34468,'history','itemid',33255),(34469,'history_log','itemid',33255),(34470,'history_str','itemid',33255),(34471,'history_text','itemid',33255),(34472,'history_uint','itemid',33255),(34473,'trends','itemid',33255),(34474,'trends_uint','itemid',33255),(34475,'events','itemid',33256),(34476,'history','itemid',33256),(34477,'history_log','itemid',33256),(34478,'history_str','itemid',33256),(34479,'history_text','itemid',33256),(34480,'history_uint','itemid',33256),(34481,'trends','itemid',33256),(34482,'trends_uint','itemid',33256),(34483,'events','itemid',33259),(34484,'history','itemid',33259),(34485,'history_log','itemid',33259),(34486,'history_str','itemid',33259),(34487,'history_text','itemid',33259),(34488,'history_uint','itemid',33259),(34489,'trends','itemid',33259),(34490,'trends_uint','itemid',33259),(34491,'events','itemid',33260),(34492,'history','itemid',33260),(34493,'history_log','itemid',33260),(34494,'history_str','itemid',33260),(34495,'history_text','itemid',33260),(34496,'history_uint','itemid',33260),(34497,'trends','itemid',33260),(34498,'trends_uint','itemid',33260),(34499,'events','itemid',33261),(34500,'history','itemid',33261),(34501,'history_log','itemid',33261),(34502,'history_str','itemid',33261),(34503,'history_text','itemid',33261),(34504,'history_uint','itemid',33261),(34505,'trends','itemid',33261),(34506,'trends_uint','itemid',33261),(34507,'events','itemid',33262),(34508,'history','itemid',33262),(34509,'history_log','itemid',33262),(34510,'history_str','itemid',33262),(34511,'history_text','itemid',33262),(34512,'history_uint','itemid',33262),(34513,'trends','itemid',33262),(34514,'trends_uint','itemid',33262),(34515,'events','itemid',33263),(34516,'history','itemid',33263),(34517,'history_log','itemid',33263),(34518,'history_str','itemid',33263),(34519,'history_text','itemid',33263),(34520,'history_uint','itemid',33263),(34521,'trends','itemid',33263),(34522,'trends_uint','itemid',33263),(34523,'events','itemid',33264),(34524,'history','itemid',33264),(34525,'history_log','itemid',33264),(34526,'history_str','itemid',33264),(34527,'history_text','itemid',33264),(34528,'history_uint','itemid',33264),(34529,'trends','itemid',33264),(34530,'trends_uint','itemid',33264),(34531,'events','itemid',33265),(34532,'history','itemid',33265),(34533,'history_log','itemid',33265),(34534,'history_str','itemid',33265),(34535,'history_text','itemid',33265),(34536,'history_uint','itemid',33265),(34537,'trends','itemid',33265),(34538,'trends_uint','itemid',33265),(34539,'events','itemid',33266),(34540,'history','itemid',33266),(34541,'history_log','itemid',33266),(34542,'history_str','itemid',33266),(34543,'history_text','itemid',33266),(34544,'history_uint','itemid',33266),(34545,'trends','itemid',33266),(34546,'trends_uint','itemid',33266),(34547,'events','itemid',33267),(34548,'history','itemid',33267),(34549,'history_log','itemid',33267),(34550,'history_str','itemid',33267),(34551,'history_text','itemid',33267),(34552,'history_uint','itemid',33267),(34553,'trends','itemid',33267),(34554,'trends_uint','itemid',33267),(34555,'events','itemid',33268),(34556,'history','itemid',33268),(34557,'history_log','itemid',33268),(34558,'history_str','itemid',33268),(34559,'history_text','itemid',33268),(34560,'history_uint','itemid',33268),(34561,'trends','itemid',33268),(34562,'trends_uint','itemid',33268),(34563,'events','itemid',33269),(34564,'history','itemid',33269),(34565,'history_log','itemid',33269),(34566,'history_str','itemid',33269),(34567,'history_text','itemid',33269),(34568,'history_uint','itemid',33269),(34569,'trends','itemid',33269),(34570,'trends_uint','itemid',33269),(34571,'events','itemid',33270),(34572,'history','itemid',33270),(34573,'history_log','itemid',33270),(34574,'history_str','itemid',33270),(34575,'history_text','itemid',33270),(34576,'history_uint','itemid',33270),(34577,'trends','itemid',33270),(34578,'trends_uint','itemid',33270),(34579,'events','itemid',33271),(34580,'history','itemid',33271),(34581,'history_log','itemid',33271),(34582,'history_str','itemid',33271),(34583,'history_text','itemid',33271),(34584,'history_uint','itemid',33271),(34585,'trends','itemid',33271),(34586,'trends_uint','itemid',33271),(34587,'events','itemid',33272),(34588,'history','itemid',33272),(34589,'history_log','itemid',33272),(34590,'history_str','itemid',33272),(34591,'history_text','itemid',33272),(34592,'history_uint','itemid',33272),(34593,'trends','itemid',33272),(34594,'trends_uint','itemid',33272),(34595,'events','itemid',33273),(34596,'history','itemid',33273),(34597,'history_log','itemid',33273),(34598,'history_str','itemid',33273),(34599,'history_text','itemid',33273),(34600,'history_uint','itemid',33273),(34601,'trends','itemid',33273),(34602,'trends_uint','itemid',33273),(34603,'events','itemid',33274),(34604,'history','itemid',33274),(34605,'history_log','itemid',33274),(34606,'history_str','itemid',33274),(34607,'history_text','itemid',33274),(34608,'history_uint','itemid',33274),(34609,'trends','itemid',33274),(34610,'trends_uint','itemid',33274),(34611,'events','itemid',33275),(34612,'history','itemid',33275),(34613,'history_log','itemid',33275),(34614,'history_str','itemid',33275),(34615,'history_text','itemid',33275),(34616,'history_uint','itemid',33275),(34617,'trends','itemid',33275),(34618,'trends_uint','itemid',33275),(34619,'events','itemid',33278),(34620,'history','itemid',33278),(34621,'history_log','itemid',33278),(34622,'history_str','itemid',33278),(34623,'history_text','itemid',33278),(34624,'history_uint','itemid',33278),(34625,'trends','itemid',33278),(34626,'trends_uint','itemid',33278),(34627,'events','itemid',33279),(34628,'history','itemid',33279),(34629,'history_log','itemid',33279),(34630,'history_str','itemid',33279),(34631,'history_text','itemid',33279),(34632,'history_uint','itemid',33279),(34633,'trends','itemid',33279),(34634,'trends_uint','itemid',33279),(34635,'events','itemid',33280),(34636,'history','itemid',33280),(34637,'history_log','itemid',33280),(34638,'history_str','itemid',33280),(34639,'history_text','itemid',33280),(34640,'history_uint','itemid',33280),(34641,'trends','itemid',33280),(34642,'trends_uint','itemid',33280),(34643,'events','itemid',33281),(34644,'history','itemid',33281),(34645,'history_log','itemid',33281),(34646,'history_str','itemid',33281),(34647,'history_text','itemid',33281),(34648,'history_uint','itemid',33281),(34649,'trends','itemid',33281),(34650,'trends_uint','itemid',33281),(34651,'events','itemid',33282),(34652,'history','itemid',33282),(34653,'history_log','itemid',33282),(34654,'history_str','itemid',33282),(34655,'history_text','itemid',33282),(34656,'history_uint','itemid',33282),(34657,'trends','itemid',33282),(34658,'trends_uint','itemid',33282),(34659,'events','itemid',33283),(34660,'history','itemid',33283),(34661,'history_log','itemid',33283),(34662,'history_str','itemid',33283),(34663,'history_text','itemid',33283),(34664,'history_uint','itemid',33283),(34665,'trends','itemid',33283),(34666,'trends_uint','itemid',33283),(34667,'events','itemid',33284),(34668,'history','itemid',33284),(34669,'history_log','itemid',33284),(34670,'history_str','itemid',33284),(34671,'history_text','itemid',33284),(34672,'history_uint','itemid',33284),(34673,'trends','itemid',33284),(34674,'trends_uint','itemid',33284),(34675,'events','itemid',33285),(34676,'history','itemid',33285),(34677,'history_log','itemid',33285),(34678,'history_str','itemid',33285),(34679,'history_text','itemid',33285),(34680,'history_uint','itemid',33285),(34681,'trends','itemid',33285),(34682,'trends_uint','itemid',33285),(34683,'events','itemid',33286),(34684,'history','itemid',33286),(34685,'history_log','itemid',33286),(34686,'history_str','itemid',33286),(34687,'history_text','itemid',33286),(34688,'history_uint','itemid',33286),(34689,'trends','itemid',33286),(34690,'trends_uint','itemid',33286),(34691,'events','itemid',33287),(34692,'history','itemid',33287),(34693,'history_log','itemid',33287),(34694,'history_str','itemid',33287),(34695,'history_text','itemid',33287),(34696,'history_uint','itemid',33287),(34697,'trends','itemid',33287),(34698,'trends_uint','itemid',33287),(34699,'events','itemid',33288),(34700,'history','itemid',33288),(34701,'history_log','itemid',33288),(34702,'history_str','itemid',33288),(34703,'history_text','itemid',33288),(34704,'history_uint','itemid',33288),(34705,'trends','itemid',33288),(34706,'trends_uint','itemid',33288),(34707,'events','itemid',33289),(34708,'history','itemid',33289),(34709,'history_log','itemid',33289),(34710,'history_str','itemid',33289),(34711,'history_text','itemid',33289),(34712,'history_uint','itemid',33289),(34713,'trends','itemid',33289),(34714,'trends_uint','itemid',33289),(34715,'events','itemid',33290),(34716,'history','itemid',33290),(34717,'history_log','itemid',33290),(34718,'history_str','itemid',33290),(34719,'history_text','itemid',33290),(34720,'history_uint','itemid',33290),(34721,'trends','itemid',33290),(34722,'trends_uint','itemid',33290),(34723,'events','itemid',33291),(34724,'history','itemid',33291),(34725,'history_log','itemid',33291),(34726,'history_str','itemid',33291),(34727,'history_text','itemid',33291),(34728,'history_uint','itemid',33291),(34729,'trends','itemid',33291),(34730,'trends_uint','itemid',33291),(34731,'events','itemid',33292),(34732,'history','itemid',33292),(34733,'history_log','itemid',33292),(34734,'history_str','itemid',33292),(34735,'history_text','itemid',33292),(34736,'history_uint','itemid',33292),(34737,'trends','itemid',33292),(34738,'trends_uint','itemid',33292),(34739,'events','itemid',33293),(34740,'history','itemid',33293),(34741,'history_log','itemid',33293),(34742,'history_str','itemid',33293),(34743,'history_text','itemid',33293),(34744,'history_uint','itemid',33293),(34745,'trends','itemid',33293),(34746,'trends_uint','itemid',33293),(34747,'events','itemid',33294),(34748,'history','itemid',33294),(34749,'history_log','itemid',33294),(34750,'history_str','itemid',33294),(34751,'history_text','itemid',33294),(34752,'history_uint','itemid',33294),(34753,'trends','itemid',33294),(34754,'trends_uint','itemid',33294),(34755,'events','itemid',33297),(34756,'history','itemid',33297),(34757,'history_log','itemid',33297),(34758,'history_str','itemid',33297),(34759,'history_text','itemid',33297),(34760,'history_uint','itemid',33297),(34761,'trends','itemid',33297),(34762,'trends_uint','itemid',33297),(34763,'events','itemid',33298),(34764,'history','itemid',33298),(34765,'history_log','itemid',33298),(34766,'history_str','itemid',33298),(34767,'history_text','itemid',33298),(34768,'history_uint','itemid',33298),(34769,'trends','itemid',33298),(34770,'trends_uint','itemid',33298),(34771,'events','itemid',33299),(34772,'history','itemid',33299),(34773,'history_log','itemid',33299),(34774,'history_str','itemid',33299),(34775,'history_text','itemid',33299),(34776,'history_uint','itemid',33299),(34777,'trends','itemid',33299),(34778,'trends_uint','itemid',33299),(34779,'events','itemid',33300),(34780,'history','itemid',33300),(34781,'history_log','itemid',33300),(34782,'history_str','itemid',33300),(34783,'history_text','itemid',33300),(34784,'history_uint','itemid',33300),(34785,'trends','itemid',33300),(34786,'trends_uint','itemid',33300),(34787,'events','itemid',33301),(34788,'history','itemid',33301),(34789,'history_log','itemid',33301),(34790,'history_str','itemid',33301),(34791,'history_text','itemid',33301),(34792,'history_uint','itemid',33301),(34793,'trends','itemid',33301),(34794,'trends_uint','itemid',33301),(34795,'events','itemid',33302),(34796,'history','itemid',33302),(34797,'history_log','itemid',33302),(34798,'history_str','itemid',33302),(34799,'history_text','itemid',33302),(34800,'history_uint','itemid',33302),(34801,'trends','itemid',33302),(34802,'trends_uint','itemid',33302),(34803,'events','itemid',33303),(34804,'history','itemid',33303),(34805,'history_log','itemid',33303),(34806,'history_str','itemid',33303),(34807,'history_text','itemid',33303),(34808,'history_uint','itemid',33303),(34809,'trends','itemid',33303),(34810,'trends_uint','itemid',33303),(34811,'events','itemid',33304),(34812,'history','itemid',33304),(34813,'history_log','itemid',33304),(34814,'history_str','itemid',33304),(34815,'history_text','itemid',33304),(34816,'history_uint','itemid',33304),(34817,'trends','itemid',33304),(34818,'trends_uint','itemid',33304),(34819,'events','itemid',33305),(34820,'history','itemid',33305),(34821,'history_log','itemid',33305),(34822,'history_str','itemid',33305),(34823,'history_text','itemid',33305),(34824,'history_uint','itemid',33305),(34825,'trends','itemid',33305),(34826,'trends_uint','itemid',33305),(34827,'events','itemid',33348),(34828,'history','itemid',33348),(34829,'history_log','itemid',33348),(34830,'history_str','itemid',33348),(34831,'history_text','itemid',33348),(34832,'history_uint','itemid',33348),(34833,'trends','itemid',33348),(34834,'trends_uint','itemid',33348),(34835,'events','itemid',33349),(34836,'history','itemid',33349),(34837,'history_log','itemid',33349),(34838,'history_str','itemid',33349),(34839,'history_text','itemid',33349),(34840,'history_uint','itemid',33349),(34841,'trends','itemid',33349),(34842,'trends_uint','itemid',33349),(34843,'events','itemid',33350),(34844,'history','itemid',33350),(34845,'history_log','itemid',33350),(34846,'history_str','itemid',33350),(34847,'history_text','itemid',33350),(34848,'history_uint','itemid',33350),(34849,'trends','itemid',33350),(34850,'trends_uint','itemid',33350),(34851,'events','itemid',33351),(34852,'history','itemid',33351),(34853,'history_log','itemid',33351),(34854,'history_str','itemid',33351),(34855,'history_text','itemid',33351),(34856,'history_uint','itemid',33351),(34857,'trends','itemid',33351),(34858,'trends_uint','itemid',33351),(34859,'events','itemid',33764),(34860,'history','itemid',33764),(34861,'history_log','itemid',33764),(34862,'history_str','itemid',33764),(34863,'history_text','itemid',33764),(34864,'history_uint','itemid',33764),(34865,'trends','itemid',33764),(34866,'trends_uint','itemid',33764),(34867,'events','itemid',33765),(34868,'history','itemid',33765),(34869,'history_log','itemid',33765),(34870,'history_str','itemid',33765),(34871,'history_text','itemid',33765),(34872,'history_uint','itemid',33765),(34873,'trends','itemid',33765),(34874,'trends_uint','itemid',33765),(34875,'events','itemid',33766),(34876,'history','itemid',33766),(34877,'history_log','itemid',33766),(34878,'history_str','itemid',33766),(34879,'history_text','itemid',33766),(34880,'history_uint','itemid',33766),(34881,'trends','itemid',33766),(34882,'trends_uint','itemid',33766),(34883,'events','itemid',33767),(34884,'history','itemid',33767),(34885,'history_log','itemid',33767),(34886,'history_str','itemid',33767),(34887,'history_text','itemid',33767),(34888,'history_uint','itemid',33767),(34889,'trends','itemid',33767),(34890,'trends_uint','itemid',33767),(34891,'events','itemid',33768),(34892,'history','itemid',33768),(34893,'history_log','itemid',33768),(34894,'history_str','itemid',33768),(34895,'history_text','itemid',33768),(34896,'history_uint','itemid',33768),(34897,'trends','itemid',33768),(34898,'trends_uint','itemid',33768),(34899,'events','itemid',33769),(34900,'history','itemid',33769),(34901,'history_log','itemid',33769),(34902,'history_str','itemid',33769),(34903,'history_text','itemid',33769),(34904,'history_uint','itemid',33769),(34905,'trends','itemid',33769),(34906,'trends_uint','itemid',33769),(34907,'events','itemid',33770),(34908,'history','itemid',33770),(34909,'history_log','itemid',33770),(34910,'history_str','itemid',33770),(34911,'history_text','itemid',33770),(34912,'history_uint','itemid',33770),(34913,'trends','itemid',33770),(34914,'trends_uint','itemid',33770),(34915,'events','itemid',33771),(34916,'history','itemid',33771),(34917,'history_log','itemid',33771),(34918,'history_str','itemid',33771),(34919,'history_text','itemid',33771),(34920,'history_uint','itemid',33771),(34921,'trends','itemid',33771),(34922,'trends_uint','itemid',33771),(34923,'events','itemid',33772),(34924,'history','itemid',33772),(34925,'history_log','itemid',33772),(34926,'history_str','itemid',33772),(34927,'history_text','itemid',33772),(34928,'history_uint','itemid',33772),(34929,'trends','itemid',33772),(34930,'trends_uint','itemid',33772),(34931,'events','itemid',33773),(34932,'history','itemid',33773),(34933,'history_log','itemid',33773),(34934,'history_str','itemid',33773),(34935,'history_text','itemid',33773),(34936,'history_uint','itemid',33773),(34937,'trends','itemid',33773),(34938,'trends_uint','itemid',33773),(34939,'events','itemid',33774),(34940,'history','itemid',33774),(34941,'history_log','itemid',33774),(34942,'history_str','itemid',33774),(34943,'history_text','itemid',33774),(34944,'history_uint','itemid',33774),(34945,'trends','itemid',33774),(34946,'trends_uint','itemid',33774),(34947,'events','itemid',33775),(34948,'history','itemid',33775),(34949,'history_log','itemid',33775),(34950,'history_str','itemid',33775),(34951,'history_text','itemid',33775),(34952,'history_uint','itemid',33775),(34953,'trends','itemid',33775),(34954,'trends_uint','itemid',33775),(34955,'events','itemid',33776),(34956,'history','itemid',33776),(34957,'history_log','itemid',33776),(34958,'history_str','itemid',33776),(34959,'history_text','itemid',33776),(34960,'history_uint','itemid',33776),(34961,'trends','itemid',33776),(34962,'trends_uint','itemid',33776),(34963,'events','itemid',33777),(34964,'history','itemid',33777),(34965,'history_log','itemid',33777),(34966,'history_str','itemid',33777),(34967,'history_text','itemid',33777),(34968,'history_uint','itemid',33777),(34969,'trends','itemid',33777),(34970,'trends_uint','itemid',33777),(34971,'events','itemid',33778),(34972,'history','itemid',33778),(34973,'history_log','itemid',33778),(34974,'history_str','itemid',33778),(34975,'history_text','itemid',33778),(34976,'history_uint','itemid',33778),(34977,'trends','itemid',33778),(34978,'trends_uint','itemid',33778),(34979,'events','itemid',33779),(34980,'history','itemid',33779),(34981,'history_log','itemid',33779),(34982,'history_str','itemid',33779),(34983,'history_text','itemid',33779),(34984,'history_uint','itemid',33779),(34985,'trends','itemid',33779),(34986,'trends_uint','itemid',33779),(34987,'events','itemid',33780),(34988,'history','itemid',33780),(34989,'history_log','itemid',33780),(34990,'history_str','itemid',33780),(34991,'history_text','itemid',33780),(34992,'history_uint','itemid',33780),(34993,'trends','itemid',33780),(34994,'trends_uint','itemid',33780),(34995,'events','itemid',33781),(34996,'history','itemid',33781),(34997,'history_log','itemid',33781),(34998,'history_str','itemid',33781),(34999,'history_text','itemid',33781),(35000,'history_uint','itemid',33781),(35001,'trends','itemid',33781),(35002,'trends_uint','itemid',33781),(35003,'events','itemid',33782),(35004,'history','itemid',33782),(35005,'history_log','itemid',33782),(35006,'history_str','itemid',33782),(35007,'history_text','itemid',33782),(35008,'history_uint','itemid',33782),(35009,'trends','itemid',33782),(35010,'trends_uint','itemid',33782),(35011,'events','itemid',33783),(35012,'history','itemid',33783),(35013,'history_log','itemid',33783),(35014,'history_str','itemid',33783),(35015,'history_text','itemid',33783),(35016,'history_uint','itemid',33783),(35017,'trends','itemid',33783),(35018,'trends_uint','itemid',33783),(35019,'events','itemid',33784),(35020,'history','itemid',33784),(35021,'history_log','itemid',33784),(35022,'history_str','itemid',33784),(35023,'history_text','itemid',33784),(35024,'history_uint','itemid',33784),(35025,'trends','itemid',33784),(35026,'trends_uint','itemid',33784),(35027,'events','itemid',33785),(35028,'history','itemid',33785),(35029,'history_log','itemid',33785),(35030,'history_str','itemid',33785),(35031,'history_text','itemid',33785),(35032,'history_uint','itemid',33785),(35033,'trends','itemid',33785),(35034,'trends_uint','itemid',33785),(35035,'events','itemid',33786),(35036,'history','itemid',33786),(35037,'history_log','itemid',33786),(35038,'history_str','itemid',33786),(35039,'history_text','itemid',33786),(35040,'history_uint','itemid',33786),(35041,'trends','itemid',33786),(35042,'trends_uint','itemid',33786),(35043,'events','itemid',33787),(35044,'history','itemid',33787),(35045,'history_log','itemid',33787),(35046,'history_str','itemid',33787),(35047,'history_text','itemid',33787),(35048,'history_uint','itemid',33787),(35049,'trends','itemid',33787),(35050,'trends_uint','itemid',33787),(35051,'events','itemid',33788),(35052,'history','itemid',33788),(35053,'history_log','itemid',33788),(35054,'history_str','itemid',33788),(35055,'history_text','itemid',33788),(35056,'history_uint','itemid',33788),(35057,'trends','itemid',33788),(35058,'trends_uint','itemid',33788),(35059,'events','itemid',33789),(35060,'history','itemid',33789),(35061,'history_log','itemid',33789),(35062,'history_str','itemid',33789),(35063,'history_text','itemid',33789),(35064,'history_uint','itemid',33789),(35065,'trends','itemid',33789),(35066,'trends_uint','itemid',33789),(35067,'events','itemid',33790),(35068,'history','itemid',33790),(35069,'history_log','itemid',33790),(35070,'history_str','itemid',33790),(35071,'history_text','itemid',33790),(35072,'history_uint','itemid',33790),(35073,'trends','itemid',33790),(35074,'trends_uint','itemid',33790),(35075,'events','itemid',33791),(35076,'history','itemid',33791),(35077,'history_log','itemid',33791),(35078,'history_str','itemid',33791),(35079,'history_text','itemid',33791),(35080,'history_uint','itemid',33791),(35081,'trends','itemid',33791),(35082,'trends_uint','itemid',33791),(35083,'events','itemid',33792),(35084,'history','itemid',33792),(35085,'history_log','itemid',33792),(35086,'history_str','itemid',33792),(35087,'history_text','itemid',33792),(35088,'history_uint','itemid',33792),(35089,'trends','itemid',33792),(35090,'trends_uint','itemid',33792),(35091,'events','itemid',33793),(35092,'history','itemid',33793),(35093,'history_log','itemid',33793),(35094,'history_str','itemid',33793),(35095,'history_text','itemid',33793),(35096,'history_uint','itemid',33793),(35097,'trends','itemid',33793),(35098,'trends_uint','itemid',33793),(35099,'events','itemid',33794),(35100,'history','itemid',33794),(35101,'history_log','itemid',33794),(35102,'history_str','itemid',33794),(35103,'history_text','itemid',33794),(35104,'history_uint','itemid',33794),(35105,'trends','itemid',33794),(35106,'trends_uint','itemid',33794),(35107,'events','itemid',33795),(35108,'history','itemid',33795),(35109,'history_log','itemid',33795),(35110,'history_str','itemid',33795),(35111,'history_text','itemid',33795),(35112,'history_uint','itemid',33795),(35113,'trends','itemid',33795),(35114,'trends_uint','itemid',33795),(35115,'events','itemid',33796),(35116,'history','itemid',33796),(35117,'history_log','itemid',33796),(35118,'history_str','itemid',33796),(35119,'history_text','itemid',33796),(35120,'history_uint','itemid',33796),(35121,'trends','itemid',33796),(35122,'trends_uint','itemid',33796),(35123,'events','itemid',33797),(35124,'history','itemid',33797),(35125,'history_log','itemid',33797),(35126,'history_str','itemid',33797),(35127,'history_text','itemid',33797),(35128,'history_uint','itemid',33797),(35129,'trends','itemid',33797),(35130,'trends_uint','itemid',33797),(35131,'events','itemid',33798),(35132,'history','itemid',33798),(35133,'history_log','itemid',33798),(35134,'history_str','itemid',33798),(35135,'history_text','itemid',33798),(35136,'history_uint','itemid',33798),(35137,'trends','itemid',33798),(35138,'trends_uint','itemid',33798),(35139,'events','itemid',33799),(35140,'history','itemid',33799),(35141,'history_log','itemid',33799),(35142,'history_str','itemid',33799),(35143,'history_text','itemid',33799),(35144,'history_uint','itemid',33799),(35145,'trends','itemid',33799),(35146,'trends_uint','itemid',33799),(35147,'events','itemid',33800),(35148,'history','itemid',33800),(35149,'history_log','itemid',33800),(35150,'history_str','itemid',33800),(35151,'history_text','itemid',33800),(35152,'history_uint','itemid',33800),(35153,'trends','itemid',33800),(35154,'trends_uint','itemid',33800),(35155,'events','itemid',33801),(35156,'history','itemid',33801),(35157,'history_log','itemid',33801),(35158,'history_str','itemid',33801),(35159,'history_text','itemid',33801),(35160,'history_uint','itemid',33801),(35161,'trends','itemid',33801),(35162,'trends_uint','itemid',33801),(35163,'events','itemid',33802),(35164,'history','itemid',33802),(35165,'history_log','itemid',33802),(35166,'history_str','itemid',33802),(35167,'history_text','itemid',33802),(35168,'history_uint','itemid',33802),(35169,'trends','itemid',33802),(35170,'trends_uint','itemid',33802),(35171,'events','itemid',33803),(35172,'history','itemid',33803),(35173,'history_log','itemid',33803),(35174,'history_str','itemid',33803),(35175,'history_text','itemid',33803),(35176,'history_uint','itemid',33803),(35177,'trends','itemid',33803),(35178,'trends_uint','itemid',33803),(35179,'events','itemid',33804),(35180,'history','itemid',33804),(35181,'history_log','itemid',33804),(35182,'history_str','itemid',33804),(35183,'history_text','itemid',33804),(35184,'history_uint','itemid',33804),(35185,'trends','itemid',33804),(35186,'trends_uint','itemid',33804),(35187,'events','itemid',33805),(35188,'history','itemid',33805),(35189,'history_log','itemid',33805),(35190,'history_str','itemid',33805),(35191,'history_text','itemid',33805),(35192,'history_uint','itemid',33805),(35193,'trends','itemid',33805),(35194,'trends_uint','itemid',33805),(35195,'events','itemid',33806),(35196,'history','itemid',33806),(35197,'history_log','itemid',33806),(35198,'history_str','itemid',33806),(35199,'history_text','itemid',33806),(35200,'history_uint','itemid',33806),(35201,'trends','itemid',33806),(35202,'trends_uint','itemid',33806),(35203,'events','itemid',33807),(35204,'history','itemid',33807),(35205,'history_log','itemid',33807),(35206,'history_str','itemid',33807),(35207,'history_text','itemid',33807),(35208,'history_uint','itemid',33807),(35209,'trends','itemid',33807),(35210,'trends_uint','itemid',33807),(35211,'events','itemid',33886),(35212,'history','itemid',33886),(35213,'history_log','itemid',33886),(35214,'history_str','itemid',33886),(35215,'history_text','itemid',33886),(35216,'history_uint','itemid',33886),(35217,'trends','itemid',33886),(35218,'trends_uint','itemid',33886),(35219,'events','itemid',33887),(35220,'history','itemid',33887),(35221,'history_log','itemid',33887),(35222,'history_str','itemid',33887),(35223,'history_text','itemid',33887),(35224,'history_uint','itemid',33887),(35225,'trends','itemid',33887),(35226,'trends_uint','itemid',33887),(35227,'events','itemid',33888),(35228,'history','itemid',33888),(35229,'history_log','itemid',33888),(35230,'history_str','itemid',33888),(35231,'history_text','itemid',33888),(35232,'history_uint','itemid',33888),(35233,'trends','itemid',33888),(35234,'trends_uint','itemid',33888),(35235,'events','itemid',33889),(35236,'history','itemid',33889),(35237,'history_log','itemid',33889),(35238,'history_str','itemid',33889),(35239,'history_text','itemid',33889),(35240,'history_uint','itemid',33889),(35241,'trends','itemid',33889),(35242,'trends_uint','itemid',33889),(35243,'events','itemid',33891),(35244,'history','itemid',33891),(35245,'history_log','itemid',33891),(35246,'history_str','itemid',33891),(35247,'history_text','itemid',33891),(35248,'history_uint','itemid',33891),(35249,'trends','itemid',33891),(35250,'trends_uint','itemid',33891),(35251,'events','itemid',33892),(35252,'history','itemid',33892),(35253,'history_log','itemid',33892),(35254,'history_str','itemid',33892),(35255,'history_text','itemid',33892),(35256,'history_uint','itemid',33892),(35257,'trends','itemid',33892),(35258,'trends_uint','itemid',33892),(35259,'events','itemid',33893),(35260,'history','itemid',33893),(35261,'history_log','itemid',33893),(35262,'history_str','itemid',33893),(35263,'history_text','itemid',33893),(35264,'history_uint','itemid',33893),(35265,'trends','itemid',33893),(35266,'trends_uint','itemid',33893),(35267,'events','itemid',33894),(35268,'history','itemid',33894),(35269,'history_log','itemid',33894),(35270,'history_str','itemid',33894),(35271,'history_text','itemid',33894),(35272,'history_uint','itemid',33894),(35273,'trends','itemid',33894),(35274,'trends_uint','itemid',33894),(35275,'events','itemid',33895),(35276,'history','itemid',33895),(35277,'history_log','itemid',33895),(35278,'history_str','itemid',33895),(35279,'history_text','itemid',33895),(35280,'history_uint','itemid',33895),(35281,'trends','itemid',33895),(35282,'trends_uint','itemid',33895),(35283,'events','itemid',33896),(35284,'history','itemid',33896),(35285,'history_log','itemid',33896),(35286,'history_str','itemid',33896),(35287,'history_text','itemid',33896),(35288,'history_uint','itemid',33896),(35289,'trends','itemid',33896),(35290,'trends_uint','itemid',33896),(35291,'events','itemid',33897),(35292,'history','itemid',33897),(35293,'history_log','itemid',33897),(35294,'history_str','itemid',33897),(35295,'history_text','itemid',33897),(35296,'history_uint','itemid',33897),(35297,'trends','itemid',33897),(35298,'trends_uint','itemid',33897),(35299,'events','itemid',33898),(35300,'history','itemid',33898),(35301,'history_log','itemid',33898),(35302,'history_str','itemid',33898),(35303,'history_text','itemid',33898),(35304,'history_uint','itemid',33898),(35305,'trends','itemid',33898),(35306,'trends_uint','itemid',33898),(35307,'events','itemid',33899),(35308,'history','itemid',33899),(35309,'history_log','itemid',33899),(35310,'history_str','itemid',33899),(35311,'history_text','itemid',33899),(35312,'history_uint','itemid',33899),(35313,'trends','itemid',33899),(35314,'trends_uint','itemid',33899),(35315,'events','itemid',33900),(35316,'history','itemid',33900),(35317,'history_log','itemid',33900),(35318,'history_str','itemid',33900),(35319,'history_text','itemid',33900),(35320,'history_uint','itemid',33900),(35321,'trends','itemid',33900),(35322,'trends_uint','itemid',33900),(35323,'events','itemid',33901),(35324,'history','itemid',33901),(35325,'history_log','itemid',33901),(35326,'history_str','itemid',33901),(35327,'history_text','itemid',33901),(35328,'history_uint','itemid',33901),(35329,'trends','itemid',33901),(35330,'trends_uint','itemid',33901),(35331,'events','itemid',33902),(35332,'history','itemid',33902),(35333,'history_log','itemid',33902),(35334,'history_str','itemid',33902),(35335,'history_text','itemid',33902),(35336,'history_uint','itemid',33902),(35337,'trends','itemid',33902),(35338,'trends_uint','itemid',33902),(35339,'events','itemid',33903),(35340,'history','itemid',33903),(35341,'history_log','itemid',33903),(35342,'history_str','itemid',33903),(35343,'history_text','itemid',33903),(35344,'history_uint','itemid',33903),(35345,'trends','itemid',33903),(35346,'trends_uint','itemid',33903),(35347,'events','itemid',33904),(35348,'history','itemid',33904),(35349,'history_log','itemid',33904),(35350,'history_str','itemid',33904),(35351,'history_text','itemid',33904),(35352,'history_uint','itemid',33904),(35353,'trends','itemid',33904),(35354,'trends_uint','itemid',33904),(35355,'events','itemid',33905),(35356,'history','itemid',33905),(35357,'history_log','itemid',33905),(35358,'history_str','itemid',33905),(35359,'history_text','itemid',33905),(35360,'history_uint','itemid',33905),(35361,'trends','itemid',33905),(35362,'trends_uint','itemid',33905),(35363,'events','itemid',33906),(35364,'history','itemid',33906),(35365,'history_log','itemid',33906),(35366,'history_str','itemid',33906),(35367,'history_text','itemid',33906),(35368,'history_uint','itemid',33906),(35369,'trends','itemid',33906),(35370,'trends_uint','itemid',33906),(35371,'events','itemid',33907),(35372,'history','itemid',33907),(35373,'history_log','itemid',33907),(35374,'history_str','itemid',33907),(35375,'history_text','itemid',33907),(35376,'history_uint','itemid',33907),(35377,'trends','itemid',33907),(35378,'trends_uint','itemid',33907),(35379,'events','itemid',33908),(35380,'history','itemid',33908),(35381,'history_log','itemid',33908),(35382,'history_str','itemid',33908),(35383,'history_text','itemid',33908),(35384,'history_uint','itemid',33908),(35385,'trends','itemid',33908),(35386,'trends_uint','itemid',33908),(35387,'events','itemid',33909),(35388,'history','itemid',33909),(35389,'history_log','itemid',33909),(35390,'history_str','itemid',33909),(35391,'history_text','itemid',33909),(35392,'history_uint','itemid',33909),(35393,'trends','itemid',33909),(35394,'trends_uint','itemid',33909),(35395,'events','itemid',33910),(35396,'history','itemid',33910),(35397,'history_log','itemid',33910),(35398,'history_str','itemid',33910),(35399,'history_text','itemid',33910),(35400,'history_uint','itemid',33910),(35401,'trends','itemid',33910),(35402,'trends_uint','itemid',33910),(35403,'events','itemid',33911),(35404,'history','itemid',33911),(35405,'history_log','itemid',33911),(35406,'history_str','itemid',33911),(35407,'history_text','itemid',33911),(35408,'history_uint','itemid',33911),(35409,'trends','itemid',33911),(35410,'trends_uint','itemid',33911),(35411,'events','itemid',33912),(35412,'history','itemid',33912),(35413,'history_log','itemid',33912),(35414,'history_str','itemid',33912),(35415,'history_text','itemid',33912),(35416,'history_uint','itemid',33912),(35417,'trends','itemid',33912),(35418,'trends_uint','itemid',33912),(35419,'events','itemid',33913),(35420,'history','itemid',33913),(35421,'history_log','itemid',33913),(35422,'history_str','itemid',33913),(35423,'history_text','itemid',33913),(35424,'history_uint','itemid',33913),(35425,'trends','itemid',33913),(35426,'trends_uint','itemid',33913),(35427,'events','itemid',33914),(35428,'history','itemid',33914),(35429,'history_log','itemid',33914),(35430,'history_str','itemid',33914),(35431,'history_text','itemid',33914),(35432,'history_uint','itemid',33914),(35433,'trends','itemid',33914),(35434,'trends_uint','itemid',33914),(35435,'events','itemid',33915),(35436,'history','itemid',33915),(35437,'history_log','itemid',33915),(35438,'history_str','itemid',33915),(35439,'history_text','itemid',33915),(35440,'history_uint','itemid',33915),(35441,'trends','itemid',33915),(35442,'trends_uint','itemid',33915),(35443,'events','itemid',33916),(35444,'history','itemid',33916),(35445,'history_log','itemid',33916),(35446,'history_str','itemid',33916),(35447,'history_text','itemid',33916),(35448,'history_uint','itemid',33916),(35449,'trends','itemid',33916),(35450,'trends_uint','itemid',33916),(35451,'events','itemid',33917),(35452,'history','itemid',33917),(35453,'history_log','itemid',33917),(35454,'history_str','itemid',33917),(35455,'history_text','itemid',33917),(35456,'history_uint','itemid',33917),(35457,'trends','itemid',33917),(35458,'trends_uint','itemid',33917),(35459,'events','itemid',33918),(35460,'history','itemid',33918),(35461,'history_log','itemid',33918),(35462,'history_str','itemid',33918),(35463,'history_text','itemid',33918),(35464,'history_uint','itemid',33918),(35465,'trends','itemid',33918),(35466,'trends_uint','itemid',33918),(35467,'events','itemid',33919),(35468,'history','itemid',33919),(35469,'history_log','itemid',33919),(35470,'history_str','itemid',33919),(35471,'history_text','itemid',33919),(35472,'history_uint','itemid',33919),(35473,'trends','itemid',33919),(35474,'trends_uint','itemid',33919),(35475,'events','itemid',34226),(35476,'history','itemid',34226),(35477,'history_log','itemid',34226),(35478,'history_str','itemid',34226),(35479,'history_text','itemid',34226),(35480,'history_uint','itemid',34226),(35481,'trends','itemid',34226),(35482,'trends_uint','itemid',34226),(35483,'events','itemid',34227),(35484,'history','itemid',34227),(35485,'history_log','itemid',34227),(35486,'history_str','itemid',34227),(35487,'history_text','itemid',34227),(35488,'history_uint','itemid',34227),(35489,'trends','itemid',34227),(35490,'trends_uint','itemid',34227),(35491,'events','itemid',34228),(35492,'history','itemid',34228),(35493,'history_log','itemid',34228),(35494,'history_str','itemid',34228),(35495,'history_text','itemid',34228),(35496,'history_uint','itemid',34228),(35497,'trends','itemid',34228),(35498,'trends_uint','itemid',34228),(35499,'events','itemid',34229),(35500,'history','itemid',34229),(35501,'history_log','itemid',34229),(35502,'history_str','itemid',34229),(35503,'history_text','itemid',34229),(35504,'history_uint','itemid',34229),(35505,'trends','itemid',34229),(35506,'trends_uint','itemid',34229),(35507,'events','itemid',34230),(35508,'history','itemid',34230),(35509,'history_log','itemid',34230),(35510,'history_str','itemid',34230),(35511,'history_text','itemid',34230),(35512,'history_uint','itemid',34230),(35513,'trends','itemid',34230),(35514,'trends_uint','itemid',34230),(35515,'events','itemid',34231),(35516,'history','itemid',34231),(35517,'history_log','itemid',34231),(35518,'history_str','itemid',34231),(35519,'history_text','itemid',34231),(35520,'history_uint','itemid',34231),(35521,'trends','itemid',34231),(35522,'trends_uint','itemid',34231),(35523,'events','itemid',34232),(35524,'history','itemid',34232),(35525,'history_log','itemid',34232),(35526,'history_str','itemid',34232),(35527,'history_text','itemid',34232),(35528,'history_uint','itemid',34232),(35529,'trends','itemid',34232),(35530,'trends_uint','itemid',34232),(35531,'events','itemid',34233),(35532,'history','itemid',34233),(35533,'history_log','itemid',34233),(35534,'history_str','itemid',34233),(35535,'history_text','itemid',34233),(35536,'history_uint','itemid',34233),(35537,'trends','itemid',34233),(35538,'trends_uint','itemid',34233),(35539,'events','itemid',34234),(35540,'history','itemid',34234),(35541,'history_log','itemid',34234),(35542,'history_str','itemid',34234),(35543,'history_text','itemid',34234),(35544,'history_uint','itemid',34234),(35545,'trends','itemid',34234),(35546,'trends_uint','itemid',34234),(35547,'events','itemid',34235),(35548,'history','itemid',34235),(35549,'history_log','itemid',34235),(35550,'history_str','itemid',34235),(35551,'history_text','itemid',34235),(35552,'history_uint','itemid',34235),(35553,'trends','itemid',34235),(35554,'trends_uint','itemid',34235),(35555,'events','itemid',34236),(35556,'history','itemid',34236),(35557,'history_log','itemid',34236),(35558,'history_str','itemid',34236),(35559,'history_text','itemid',34236),(35560,'history_uint','itemid',34236),(35561,'trends','itemid',34236),(35562,'trends_uint','itemid',34236),(35563,'events','itemid',34237),(35564,'history','itemid',34237),(35565,'history_log','itemid',34237),(35566,'history_str','itemid',34237),(35567,'history_text','itemid',34237),(35568,'history_uint','itemid',34237),(35569,'trends','itemid',34237),(35570,'trends_uint','itemid',34237),(35571,'events','itemid',34238),(35572,'history','itemid',34238),(35573,'history_log','itemid',34238),(35574,'history_str','itemid',34238),(35575,'history_text','itemid',34238),(35576,'history_uint','itemid',34238),(35577,'trends','itemid',34238),(35578,'trends_uint','itemid',34238),(35579,'events','itemid',34239),(35580,'history','itemid',34239),(35581,'history_log','itemid',34239),(35582,'history_str','itemid',34239),(35583,'history_text','itemid',34239),(35584,'history_uint','itemid',34239),(35585,'trends','itemid',34239),(35586,'trends_uint','itemid',34239),(35587,'events','itemid',34240),(35588,'history','itemid',34240),(35589,'history_log','itemid',34240),(35590,'history_str','itemid',34240),(35591,'history_text','itemid',34240),(35592,'history_uint','itemid',34240),(35593,'trends','itemid',34240),(35594,'trends_uint','itemid',34240),(35595,'events','itemid',34241),(35596,'history','itemid',34241),(35597,'history_log','itemid',34241),(35598,'history_str','itemid',34241),(35599,'history_text','itemid',34241),(35600,'history_uint','itemid',34241),(35601,'trends','itemid',34241),(35602,'trends_uint','itemid',34241),(35603,'events','itemid',34242),(35604,'history','itemid',34242),(35605,'history_log','itemid',34242),(35606,'history_str','itemid',34242),(35607,'history_text','itemid',34242),(35608,'history_uint','itemid',34242),(35609,'trends','itemid',34242),(35610,'trends_uint','itemid',34242),(35611,'events','itemid',34243),(35612,'history','itemid',34243),(35613,'history_log','itemid',34243),(35614,'history_str','itemid',34243),(35615,'history_text','itemid',34243),(35616,'history_uint','itemid',34243),(35617,'trends','itemid',34243),(35618,'trends_uint','itemid',34243),(35619,'events','itemid',34244),(35620,'history','itemid',34244),(35621,'history_log','itemid',34244),(35622,'history_str','itemid',34244),(35623,'history_text','itemid',34244),(35624,'history_uint','itemid',34244),(35625,'trends','itemid',34244),(35626,'trends_uint','itemid',34244),(35627,'events','itemid',34245),(35628,'history','itemid',34245),(35629,'history_log','itemid',34245),(35630,'history_str','itemid',34245),(35631,'history_text','itemid',34245),(35632,'history_uint','itemid',34245),(35633,'trends','itemid',34245),(35634,'trends_uint','itemid',34245),(35635,'events','itemid',34246),(35636,'history','itemid',34246),(35637,'history_log','itemid',34246),(35638,'history_str','itemid',34246),(35639,'history_text','itemid',34246),(35640,'history_uint','itemid',34246),(35641,'trends','itemid',34246),(35642,'trends_uint','itemid',34246),(35643,'events','itemid',34247),(35644,'history','itemid',34247),(35645,'history_log','itemid',34247),(35646,'history_str','itemid',34247),(35647,'history_text','itemid',34247),(35648,'history_uint','itemid',34247),(35649,'trends','itemid',34247),(35650,'trends_uint','itemid',34247),(35651,'events','itemid',34248),(35652,'history','itemid',34248),(35653,'history_log','itemid',34248),(35654,'history_str','itemid',34248),(35655,'history_text','itemid',34248),(35656,'history_uint','itemid',34248),(35657,'trends','itemid',34248),(35658,'trends_uint','itemid',34248),(35659,'events','itemid',34249),(35660,'history','itemid',34249),(35661,'history_log','itemid',34249),(35662,'history_str','itemid',34249),(35663,'history_text','itemid',34249),(35664,'history_uint','itemid',34249),(35665,'trends','itemid',34249),(35666,'trends_uint','itemid',34249),(35667,'events','itemid',34250),(35668,'history','itemid',34250),(35669,'history_log','itemid',34250),(35670,'history_str','itemid',34250),(35671,'history_text','itemid',34250),(35672,'history_uint','itemid',34250),(35673,'trends','itemid',34250),(35674,'trends_uint','itemid',34250),(35675,'events','itemid',34251),(35676,'history','itemid',34251),(35677,'history_log','itemid',34251),(35678,'history_str','itemid',34251),(35679,'history_text','itemid',34251),(35680,'history_uint','itemid',34251),(35681,'trends','itemid',34251),(35682,'trends_uint','itemid',34251),(35683,'events','itemid',34252),(35684,'history','itemid',34252),(35685,'history_log','itemid',34252),(35686,'history_str','itemid',34252),(35687,'history_text','itemid',34252),(35688,'history_uint','itemid',34252),(35689,'trends','itemid',34252),(35690,'trends_uint','itemid',34252),(35691,'events','itemid',34253),(35692,'history','itemid',34253),(35693,'history_log','itemid',34253),(35694,'history_str','itemid',34253),(35695,'history_text','itemid',34253),(35696,'history_uint','itemid',34253),(35697,'trends','itemid',34253),(35698,'trends_uint','itemid',34253),(35699,'events','itemid',34254),(35700,'history','itemid',34254),(35701,'history_log','itemid',34254),(35702,'history_str','itemid',34254),(35703,'history_text','itemid',34254),(35704,'history_uint','itemid',34254),(35705,'trends','itemid',34254),(35706,'trends_uint','itemid',34254),(35707,'events','itemid',34255),(35708,'history','itemid',34255),(35709,'history_log','itemid',34255),(35710,'history_str','itemid',34255),(35711,'history_text','itemid',34255),(35712,'history_uint','itemid',34255),(35713,'trends','itemid',34255),(35714,'trends_uint','itemid',34255),(35715,'events','itemid',34256),(35716,'history','itemid',34256),(35717,'history_log','itemid',34256),(35718,'history_str','itemid',34256),(35719,'history_text','itemid',34256),(35720,'history_uint','itemid',34256),(35721,'trends','itemid',34256),(35722,'trends_uint','itemid',34256),(35723,'events','itemid',34257),(35724,'history','itemid',34257),(35725,'history_log','itemid',34257),(35726,'history_str','itemid',34257),(35727,'history_text','itemid',34257),(35728,'history_uint','itemid',34257),(35729,'trends','itemid',34257),(35730,'trends_uint','itemid',34257),(35731,'events','itemid',34258),(35732,'history','itemid',34258),(35733,'history_log','itemid',34258),(35734,'history_str','itemid',34258),(35735,'history_text','itemid',34258),(35736,'history_uint','itemid',34258),(35737,'trends','itemid',34258),(35738,'trends_uint','itemid',34258),(35739,'events','itemid',34259),(35740,'history','itemid',34259),(35741,'history_log','itemid',34259),(35742,'history_str','itemid',34259),(35743,'history_text','itemid',34259),(35744,'history_uint','itemid',34259),(35745,'trends','itemid',34259),(35746,'trends_uint','itemid',34259),(35747,'events','itemid',34321),(35748,'history','itemid',34321),(35749,'history_log','itemid',34321),(35750,'history_str','itemid',34321),(35751,'history_text','itemid',34321),(35752,'history_uint','itemid',34321),(35753,'trends','itemid',34321),(35754,'trends_uint','itemid',34321),(35755,'events','itemid',34322),(35756,'history','itemid',34322),(35757,'history_log','itemid',34322),(35758,'history_str','itemid',34322),(35759,'history_text','itemid',34322),(35760,'history_uint','itemid',34322),(35761,'trends','itemid',34322),(35762,'trends_uint','itemid',34322),(35763,'events','itemid',34323),(35764,'history','itemid',34323),(35765,'history_log','itemid',34323),(35766,'history_str','itemid',34323),(35767,'history_text','itemid',34323),(35768,'history_uint','itemid',34323),(35769,'trends','itemid',34323),(35770,'trends_uint','itemid',34323),(35771,'events','itemid',35153),(35772,'history','itemid',35153),(35773,'history_log','itemid',35153),(35774,'history_str','itemid',35153),(35775,'history_text','itemid',35153),(35776,'history_uint','itemid',35153),(35777,'trends','itemid',35153),(35778,'trends_uint','itemid',35153),(35779,'events','itemid',35154),(35780,'history','itemid',35154),(35781,'history_log','itemid',35154),(35782,'history_str','itemid',35154),(35783,'history_text','itemid',35154),(35784,'history_uint','itemid',35154),(35785,'trends','itemid',35154),(35786,'trends_uint','itemid',35154),(35787,'events','itemid',35155),(35788,'history','itemid',35155),(35789,'history_log','itemid',35155),(35790,'history_str','itemid',35155),(35791,'history_text','itemid',35155),(35792,'history_uint','itemid',35155),(35793,'trends','itemid',35155),(35794,'trends_uint','itemid',35155),(35795,'events','itemid',35156),(35796,'history','itemid',35156),(35797,'history_log','itemid',35156),(35798,'history_str','itemid',35156),(35799,'history_text','itemid',35156),(35800,'history_uint','itemid',35156),(35801,'trends','itemid',35156),(35802,'trends_uint','itemid',35156),(35803,'events','itemid',35157),(35804,'history','itemid',35157),(35805,'history_log','itemid',35157),(35806,'history_str','itemid',35157),(35807,'history_text','itemid',35157),(35808,'history_uint','itemid',35157),(35809,'trends','itemid',35157),(35810,'trends_uint','itemid',35157),(35811,'events','itemid',35158),(35812,'history','itemid',35158),(35813,'history_log','itemid',35158),(35814,'history_str','itemid',35158),(35815,'history_text','itemid',35158),(35816,'history_uint','itemid',35158),(35817,'trends','itemid',35158),(35818,'trends_uint','itemid',35158),(35819,'events','itemid',35159),(35820,'history','itemid',35159),(35821,'history_log','itemid',35159),(35822,'history_str','itemid',35159),(35823,'history_text','itemid',35159),(35824,'history_uint','itemid',35159),(35825,'trends','itemid',35159),(35826,'trends_uint','itemid',35159),(35827,'events','itemid',35160),(35828,'history','itemid',35160),(35829,'history_log','itemid',35160),(35830,'history_str','itemid',35160),(35831,'history_text','itemid',35160),(35832,'history_uint','itemid',35160),(35833,'trends','itemid',35160),(35834,'trends_uint','itemid',35160),(35835,'events','itemid',35161),(35836,'history','itemid',35161),(35837,'history_log','itemid',35161),(35838,'history_str','itemid',35161),(35839,'history_text','itemid',35161),(35840,'history_uint','itemid',35161),(35841,'trends','itemid',35161),(35842,'trends_uint','itemid',35161),(35843,'events','itemid',35162),(35844,'history','itemid',35162),(35845,'history_log','itemid',35162),(35846,'history_str','itemid',35162),(35847,'history_text','itemid',35162),(35848,'history_uint','itemid',35162),(35849,'trends','itemid',35162),(35850,'trends_uint','itemid',35162),(35851,'events','itemid',35163),(35852,'history','itemid',35163),(35853,'history_log','itemid',35163),(35854,'history_str','itemid',35163),(35855,'history_text','itemid',35163),(35856,'history_uint','itemid',35163),(35857,'trends','itemid',35163),(35858,'trends_uint','itemid',35163),(35859,'events','itemid',35164),(35860,'history','itemid',35164),(35861,'history_log','itemid',35164),(35862,'history_str','itemid',35164),(35863,'history_text','itemid',35164),(35864,'history_uint','itemid',35164),(35865,'trends','itemid',35164),(35866,'trends_uint','itemid',35164),(35867,'events','itemid',35165),(35868,'history','itemid',35165),(35869,'history_log','itemid',35165),(35870,'history_str','itemid',35165),(35871,'history_text','itemid',35165),(35872,'history_uint','itemid',35165),(35873,'trends','itemid',35165),(35874,'trends_uint','itemid',35165),(35875,'events','itemid',35166),(35876,'history','itemid',35166),(35877,'history_log','itemid',35166),(35878,'history_str','itemid',35166),(35879,'history_text','itemid',35166),(35880,'history_uint','itemid',35166),(35881,'trends','itemid',35166),(35882,'trends_uint','itemid',35166),(35883,'events','itemid',35167),(35884,'history','itemid',35167),(35885,'history_log','itemid',35167),(35886,'history_str','itemid',35167),(35887,'history_text','itemid',35167),(35888,'history_uint','itemid',35167),(35889,'trends','itemid',35167),(35890,'trends_uint','itemid',35167),(35891,'events','itemid',35168),(35892,'history','itemid',35168),(35893,'history_log','itemid',35168),(35894,'history_str','itemid',35168),(35895,'history_text','itemid',35168),(35896,'history_uint','itemid',35168),(35897,'trends','itemid',35168),(35898,'trends_uint','itemid',35168),(35899,'events','itemid',35169),(35900,'history','itemid',35169),(35901,'history_log','itemid',35169),(35902,'history_str','itemid',35169),(35903,'history_text','itemid',35169),(35904,'history_uint','itemid',35169),(35905,'trends','itemid',35169),(35906,'trends_uint','itemid',35169),(35907,'events','itemid',35170),(35908,'history','itemid',35170),(35909,'history_log','itemid',35170),(35910,'history_str','itemid',35170),(35911,'history_text','itemid',35170),(35912,'history_uint','itemid',35170),(35913,'trends','itemid',35170),(35914,'trends_uint','itemid',35170),(35915,'events','itemid',35171),(35916,'history','itemid',35171),(35917,'history_log','itemid',35171),(35918,'history_str','itemid',35171),(35919,'history_text','itemid',35171),(35920,'history_uint','itemid',35171),(35921,'trends','itemid',35171),(35922,'trends_uint','itemid',35171),(35923,'events','itemid',35172),(35924,'history','itemid',35172),(35925,'history_log','itemid',35172),(35926,'history_str','itemid',35172),(35927,'history_text','itemid',35172),(35928,'history_uint','itemid',35172),(35929,'trends','itemid',35172),(35930,'trends_uint','itemid',35172),(35931,'events','itemid',35173),(35932,'history','itemid',35173),(35933,'history_log','itemid',35173),(35934,'history_str','itemid',35173),(35935,'history_text','itemid',35173),(35936,'history_uint','itemid',35173),(35937,'trends','itemid',35173),(35938,'trends_uint','itemid',35173),(35939,'events','itemid',35174),(35940,'history','itemid',35174),(35941,'history_log','itemid',35174),(35942,'history_str','itemid',35174),(35943,'history_text','itemid',35174),(35944,'history_uint','itemid',35174),(35945,'trends','itemid',35174),(35946,'trends_uint','itemid',35174),(35947,'events','itemid',35175),(35948,'history','itemid',35175),(35949,'history_log','itemid',35175),(35950,'history_str','itemid',35175),(35951,'history_text','itemid',35175),(35952,'history_uint','itemid',35175),(35953,'trends','itemid',35175),(35954,'trends_uint','itemid',35175),(35955,'events','itemid',35176),(35956,'history','itemid',35176),(35957,'history_log','itemid',35176),(35958,'history_str','itemid',35176),(35959,'history_text','itemid',35176),(35960,'history_uint','itemid',35176),(35961,'trends','itemid',35176),(35962,'trends_uint','itemid',35176),(35963,'events','itemid',38575),(35964,'history','itemid',38575),(35965,'history_log','itemid',38575),(35966,'history_str','itemid',38575),(35967,'history_text','itemid',38575),(35968,'history_uint','itemid',38575),(35969,'trends','itemid',38575),(35970,'trends_uint','itemid',38575),(35971,'events','itemid',38576),(35972,'history','itemid',38576),(35973,'history_log','itemid',38576),(35974,'history_str','itemid',38576),(35975,'history_text','itemid',38576),(35976,'history_uint','itemid',38576),(35977,'trends','itemid',38576),(35978,'trends_uint','itemid',38576),(35979,'events','itemid',38577),(35980,'history','itemid',38577),(35981,'history_log','itemid',38577),(35982,'history_str','itemid',38577),(35983,'history_text','itemid',38577),(35984,'history_uint','itemid',38577),(35985,'trends','itemid',38577),(35986,'trends_uint','itemid',38577),(35987,'events','itemid',38578),(35988,'history','itemid',38578),(35989,'history_log','itemid',38578),(35990,'history_str','itemid',38578),(35991,'history_text','itemid',38578),(35992,'history_uint','itemid',38578),(35993,'trends','itemid',38578),(35994,'trends_uint','itemid',38578),(35995,'events','itemid',38579),(35996,'history','itemid',38579),(35997,'history_log','itemid',38579),(35998,'history_str','itemid',38579),(35999,'history_text','itemid',38579),(36000,'history_uint','itemid',38579),(36001,'trends','itemid',38579),(36002,'trends_uint','itemid',38579),(36003,'events','itemid',38580),(36004,'history','itemid',38580),(36005,'history_log','itemid',38580),(36006,'history_str','itemid',38580),(36007,'history_text','itemid',38580),(36008,'history_uint','itemid',38580),(36009,'trends','itemid',38580),(36010,'trends_uint','itemid',38580),(36011,'events','itemid',38581),(36012,'history','itemid',38581),(36013,'history_log','itemid',38581),(36014,'history_str','itemid',38581),(36015,'history_text','itemid',38581),(36016,'history_uint','itemid',38581),(36017,'trends','itemid',38581),(36018,'trends_uint','itemid',38581),(36019,'events','itemid',38629),(36020,'history','itemid',38629),(36021,'history_log','itemid',38629),(36022,'history_str','itemid',38629),(36023,'history_text','itemid',38629),(36024,'history_uint','itemid',38629),(36025,'trends','itemid',38629),(36026,'trends_uint','itemid',38629),(36027,'events','itemid',38630),(36028,'history','itemid',38630),(36029,'history_log','itemid',38630),(36030,'history_str','itemid',38630),(36031,'history_text','itemid',38630),(36032,'history_uint','itemid',38630),(36033,'trends','itemid',38630),(36034,'trends_uint','itemid',38630),(36035,'events','itemid',38631),(36036,'history','itemid',38631),(36037,'history_log','itemid',38631),(36038,'history_str','itemid',38631),(36039,'history_text','itemid',38631),(36040,'history_uint','itemid',38631),(36041,'trends','itemid',38631),(36042,'trends_uint','itemid',38631),(36043,'events','itemid',38632),(36044,'history','itemid',38632),(36045,'history_log','itemid',38632),(36046,'history_str','itemid',38632),(36047,'history_text','itemid',38632),(36048,'history_uint','itemid',38632),(36049,'trends','itemid',38632),(36050,'trends_uint','itemid',38632),(36051,'events','itemid',38633),(36052,'history','itemid',38633),(36053,'history_log','itemid',38633),(36054,'history_str','itemid',38633),(36055,'history_text','itemid',38633),(36056,'history_uint','itemid',38633),(36057,'trends','itemid',38633),(36058,'trends_uint','itemid',38633),(36059,'events','itemid',38634),(36060,'history','itemid',38634),(36061,'history_log','itemid',38634),(36062,'history_str','itemid',38634),(36063,'history_text','itemid',38634),(36064,'history_uint','itemid',38634),(36065,'trends','itemid',38634),(36066,'trends_uint','itemid',38634),(36067,'events','itemid',38635),(36068,'history','itemid',38635),(36069,'history_log','itemid',38635),(36070,'history_str','itemid',38635),(36071,'history_text','itemid',38635),(36072,'history_uint','itemid',38635),(36073,'trends','itemid',38635),(36074,'trends_uint','itemid',38635),(36075,'events','itemid',38683),(36076,'history','itemid',38683),(36077,'history_log','itemid',38683),(36078,'history_str','itemid',38683),(36079,'history_text','itemid',38683),(36080,'history_uint','itemid',38683),(36081,'trends','itemid',38683),(36082,'trends_uint','itemid',38683),(36083,'events','itemid',38684),(36084,'history','itemid',38684),(36085,'history_log','itemid',38684),(36086,'history_str','itemid',38684),(36087,'history_text','itemid',38684),(36088,'history_uint','itemid',38684),(36089,'trends','itemid',38684),(36090,'trends_uint','itemid',38684),(36091,'events','itemid',38685),(36092,'history','itemid',38685),(36093,'history_log','itemid',38685),(36094,'history_str','itemid',38685),(36095,'history_text','itemid',38685),(36096,'history_uint','itemid',38685),(36097,'trends','itemid',38685),(36098,'trends_uint','itemid',38685),(36099,'events','itemid',38686),(36100,'history','itemid',38686),(36101,'history_log','itemid',38686),(36102,'history_str','itemid',38686),(36103,'history_text','itemid',38686),(36104,'history_uint','itemid',38686),(36105,'trends','itemid',38686),(36106,'trends_uint','itemid',38686),(36107,'events','itemid',38687),(36108,'history','itemid',38687),(36109,'history_log','itemid',38687),(36110,'history_str','itemid',38687),(36111,'history_text','itemid',38687),(36112,'history_uint','itemid',38687),(36113,'trends','itemid',38687),(36114,'trends_uint','itemid',38687),(36115,'events','itemid',38688),(36116,'history','itemid',38688),(36117,'history_log','itemid',38688),(36118,'history_str','itemid',38688),(36119,'history_text','itemid',38688),(36120,'history_uint','itemid',38688),(36121,'trends','itemid',38688),(36122,'trends_uint','itemid',38688),(36123,'events','itemid',38689),(36124,'history','itemid',38689),(36125,'history_log','itemid',38689),(36126,'history_str','itemid',38689),(36127,'history_text','itemid',38689),(36128,'history_uint','itemid',38689),(36129,'trends','itemid',38689),(36130,'trends_uint','itemid',38689),(36131,'events','itemid',38737),(36132,'history','itemid',38737),(36133,'history_log','itemid',38737),(36134,'history_str','itemid',38737),(36135,'history_text','itemid',38737),(36136,'history_uint','itemid',38737),(36137,'trends','itemid',38737),(36138,'trends_uint','itemid',38737),(36139,'events','itemid',38738),(36140,'history','itemid',38738),(36141,'history_log','itemid',38738),(36142,'history_str','itemid',38738),(36143,'history_text','itemid',38738),(36144,'history_uint','itemid',38738),(36145,'trends','itemid',38738),(36146,'trends_uint','itemid',38738),(36147,'events','itemid',38739),(36148,'history','itemid',38739),(36149,'history_log','itemid',38739),(36150,'history_str','itemid',38739),(36151,'history_text','itemid',38739),(36152,'history_uint','itemid',38739),(36153,'trends','itemid',38739),(36154,'trends_uint','itemid',38739),(36155,'events','itemid',38740),(36156,'history','itemid',38740),(36157,'history_log','itemid',38740),(36158,'history_str','itemid',38740),(36159,'history_text','itemid',38740),(36160,'history_uint','itemid',38740),(36161,'trends','itemid',38740),(36162,'trends_uint','itemid',38740),(36163,'events','itemid',38741),(36164,'history','itemid',38741),(36165,'history_log','itemid',38741),(36166,'history_str','itemid',38741),(36167,'history_text','itemid',38741),(36168,'history_uint','itemid',38741),(36169,'trends','itemid',38741),(36170,'trends_uint','itemid',38741),(36171,'events','itemid',38742),(36172,'history','itemid',38742),(36173,'history_log','itemid',38742),(36174,'history_str','itemid',38742),(36175,'history_text','itemid',38742),(36176,'history_uint','itemid',38742),(36177,'trends','itemid',38742),(36178,'trends_uint','itemid',38742),(36179,'events','itemid',38743),(36180,'history','itemid',38743),(36181,'history_log','itemid',38743),(36182,'history_str','itemid',38743),(36183,'history_text','itemid',38743),(36184,'history_uint','itemid',38743),(36185,'trends','itemid',38743),(36186,'trends_uint','itemid',38743),(36187,'events','itemid',38791),(36188,'history','itemid',38791),(36189,'history_log','itemid',38791),(36190,'history_str','itemid',38791),(36191,'history_text','itemid',38791),(36192,'history_uint','itemid',38791),(36193,'trends','itemid',38791),(36194,'trends_uint','itemid',38791),(36195,'events','itemid',38792),(36196,'history','itemid',38792),(36197,'history_log','itemid',38792),(36198,'history_str','itemid',38792),(36199,'history_text','itemid',38792),(36200,'history_uint','itemid',38792),(36201,'trends','itemid',38792),(36202,'trends_uint','itemid',38792),(36203,'events','itemid',38793),(36204,'history','itemid',38793),(36205,'history_log','itemid',38793),(36206,'history_str','itemid',38793),(36207,'history_text','itemid',38793),(36208,'history_uint','itemid',38793),(36209,'trends','itemid',38793),(36210,'trends_uint','itemid',38793),(36211,'events','itemid',38794),(36212,'history','itemid',38794),(36213,'history_log','itemid',38794),(36214,'history_str','itemid',38794),(36215,'history_text','itemid',38794),(36216,'history_uint','itemid',38794),(36217,'trends','itemid',38794),(36218,'trends_uint','itemid',38794),(36219,'events','itemid',38795),(36220,'history','itemid',38795),(36221,'history_log','itemid',38795),(36222,'history_str','itemid',38795),(36223,'history_text','itemid',38795),(36224,'history_uint','itemid',38795),(36225,'trends','itemid',38795),(36226,'trends_uint','itemid',38795),(36227,'events','itemid',38796),(36228,'history','itemid',38796),(36229,'history_log','itemid',38796),(36230,'history_str','itemid',38796),(36231,'history_text','itemid',38796),(36232,'history_uint','itemid',38796),(36233,'trends','itemid',38796),(36234,'trends_uint','itemid',38796),(36235,'events','itemid',38797),(36236,'history','itemid',38797),(36237,'history_log','itemid',38797),(36238,'history_str','itemid',38797),(36239,'history_text','itemid',38797),(36240,'history_uint','itemid',38797),(36241,'trends','itemid',38797),(36242,'trends_uint','itemid',38797),(36243,'events','itemid',38845),(36244,'history','itemid',38845),(36245,'history_log','itemid',38845),(36246,'history_str','itemid',38845),(36247,'history_text','itemid',38845),(36248,'history_uint','itemid',38845),(36249,'trends','itemid',38845),(36250,'trends_uint','itemid',38845),(36251,'events','itemid',38846),(36252,'history','itemid',38846),(36253,'history_log','itemid',38846),(36254,'history_str','itemid',38846),(36255,'history_text','itemid',38846),(36256,'history_uint','itemid',38846),(36257,'trends','itemid',38846),(36258,'trends_uint','itemid',38846),(36259,'events','itemid',38847),(36260,'history','itemid',38847),(36261,'history_log','itemid',38847),(36262,'history_str','itemid',38847),(36263,'history_text','itemid',38847),(36264,'history_uint','itemid',38847),(36265,'trends','itemid',38847),(36266,'trends_uint','itemid',38847),(36267,'events','itemid',38848),(36268,'history','itemid',38848),(36269,'history_log','itemid',38848),(36270,'history_str','itemid',38848),(36271,'history_text','itemid',38848),(36272,'history_uint','itemid',38848),(36273,'trends','itemid',38848),(36274,'trends_uint','itemid',38848),(36275,'events','itemid',38849),(36276,'history','itemid',38849),(36277,'history_log','itemid',38849),(36278,'history_str','itemid',38849),(36279,'history_text','itemid',38849),(36280,'history_uint','itemid',38849),(36281,'trends','itemid',38849),(36282,'trends_uint','itemid',38849),(36283,'events','itemid',38850),(36284,'history','itemid',38850),(36285,'history_log','itemid',38850),(36286,'history_str','itemid',38850),(36287,'history_text','itemid',38850),(36288,'history_uint','itemid',38850),(36289,'trends','itemid',38850),(36290,'trends_uint','itemid',38850),(36291,'events','itemid',38851),(36292,'history','itemid',38851),(36293,'history_log','itemid',38851),(36294,'history_str','itemid',38851),(36295,'history_text','itemid',38851),(36296,'history_uint','itemid',38851),(36297,'trends','itemid',38851),(36298,'trends_uint','itemid',38851),(36299,'events','itemid',38899),(36300,'history','itemid',38899),(36301,'history_log','itemid',38899),(36302,'history_str','itemid',38899),(36303,'history_text','itemid',38899),(36304,'history_uint','itemid',38899),(36305,'trends','itemid',38899),(36306,'trends_uint','itemid',38899),(36307,'events','itemid',38900),(36308,'history','itemid',38900),(36309,'history_log','itemid',38900),(36310,'history_str','itemid',38900),(36311,'history_text','itemid',38900),(36312,'history_uint','itemid',38900),(36313,'trends','itemid',38900),(36314,'trends_uint','itemid',38900),(36315,'events','itemid',38901),(36316,'history','itemid',38901),(36317,'history_log','itemid',38901),(36318,'history_str','itemid',38901),(36319,'history_text','itemid',38901),(36320,'history_uint','itemid',38901),(36321,'trends','itemid',38901),(36322,'trends_uint','itemid',38901),(36323,'events','itemid',38902),(36324,'history','itemid',38902),(36325,'history_log','itemid',38902),(36326,'history_str','itemid',38902),(36327,'history_text','itemid',38902),(36328,'history_uint','itemid',38902),(36329,'trends','itemid',38902),(36330,'trends_uint','itemid',38902),(36331,'events','itemid',38903),(36332,'history','itemid',38903),(36333,'history_log','itemid',38903),(36334,'history_str','itemid',38903),(36335,'history_text','itemid',38903),(36336,'history_uint','itemid',38903),(36337,'trends','itemid',38903),(36338,'trends_uint','itemid',38903),(36339,'events','itemid',38904),(36340,'history','itemid',38904),(36341,'history_log','itemid',38904),(36342,'history_str','itemid',38904),(36343,'history_text','itemid',38904),(36344,'history_uint','itemid',38904),(36345,'trends','itemid',38904),(36346,'trends_uint','itemid',38904),(36347,'events','itemid',38905),(36348,'history','itemid',38905),(36349,'history_log','itemid',38905),(36350,'history_str','itemid',38905),(36351,'history_text','itemid',38905),(36352,'history_uint','itemid',38905),(36353,'trends','itemid',38905),(36354,'trends_uint','itemid',38905),(36355,'events','itemid',38953),(36356,'history','itemid',38953),(36357,'history_log','itemid',38953),(36358,'history_str','itemid',38953),(36359,'history_text','itemid',38953),(36360,'history_uint','itemid',38953),(36361,'trends','itemid',38953),(36362,'trends_uint','itemid',38953),(36363,'events','itemid',38954),(36364,'history','itemid',38954),(36365,'history_log','itemid',38954),(36366,'history_str','itemid',38954),(36367,'history_text','itemid',38954),(36368,'history_uint','itemid',38954),(36369,'trends','itemid',38954),(36370,'trends_uint','itemid',38954),(36371,'events','itemid',38955),(36372,'history','itemid',38955),(36373,'history_log','itemid',38955),(36374,'history_str','itemid',38955),(36375,'history_text','itemid',38955),(36376,'history_uint','itemid',38955),(36377,'trends','itemid',38955),(36378,'trends_uint','itemid',38955),(36379,'events','itemid',38956),(36380,'history','itemid',38956),(36381,'history_log','itemid',38956),(36382,'history_str','itemid',38956),(36383,'history_text','itemid',38956),(36384,'history_uint','itemid',38956),(36385,'trends','itemid',38956),(36386,'trends_uint','itemid',38956),(36387,'events','itemid',38957),(36388,'history','itemid',38957),(36389,'history_log','itemid',38957),(36390,'history_str','itemid',38957),(36391,'history_text','itemid',38957),(36392,'history_uint','itemid',38957),(36393,'trends','itemid',38957),(36394,'trends_uint','itemid',38957),(36395,'events','itemid',38958),(36396,'history','itemid',38958),(36397,'history_log','itemid',38958),(36398,'history_str','itemid',38958),(36399,'history_text','itemid',38958),(36400,'history_uint','itemid',38958),(36401,'trends','itemid',38958),(36402,'trends_uint','itemid',38958),(36403,'events','itemid',38959),(36404,'history','itemid',38959),(36405,'history_log','itemid',38959),(36406,'history_str','itemid',38959),(36407,'history_text','itemid',38959),(36408,'history_uint','itemid',38959),(36409,'trends','itemid',38959),(36410,'trends_uint','itemid',38959),(36411,'events','itemid',39007),(36412,'history','itemid',39007),(36413,'history_log','itemid',39007),(36414,'history_str','itemid',39007),(36415,'history_text','itemid',39007),(36416,'history_uint','itemid',39007),(36417,'trends','itemid',39007),(36418,'trends_uint','itemid',39007),(36419,'events','itemid',39008),(36420,'history','itemid',39008),(36421,'history_log','itemid',39008),(36422,'history_str','itemid',39008),(36423,'history_text','itemid',39008),(36424,'history_uint','itemid',39008),(36425,'trends','itemid',39008),(36426,'trends_uint','itemid',39008),(36427,'events','itemid',39009),(36428,'history','itemid',39009),(36429,'history_log','itemid',39009),(36430,'history_str','itemid',39009),(36431,'history_text','itemid',39009),(36432,'history_uint','itemid',39009),(36433,'trends','itemid',39009),(36434,'trends_uint','itemid',39009),(36435,'events','itemid',39010),(36436,'history','itemid',39010),(36437,'history_log','itemid',39010),(36438,'history_str','itemid',39010),(36439,'history_text','itemid',39010),(36440,'history_uint','itemid',39010),(36441,'trends','itemid',39010),(36442,'trends_uint','itemid',39010),(36443,'events','itemid',39011),(36444,'history','itemid',39011),(36445,'history_log','itemid',39011),(36446,'history_str','itemid',39011),(36447,'history_text','itemid',39011),(36448,'history_uint','itemid',39011),(36449,'trends','itemid',39011),(36450,'trends_uint','itemid',39011),(36451,'events','itemid',39012),(36452,'history','itemid',39012),(36453,'history_log','itemid',39012),(36454,'history_str','itemid',39012),(36455,'history_text','itemid',39012),(36456,'history_uint','itemid',39012),(36457,'trends','itemid',39012),(36458,'trends_uint','itemid',39012),(36459,'events','itemid',39013),(36460,'history','itemid',39013),(36461,'history_log','itemid',39013),(36462,'history_str','itemid',39013),(36463,'history_text','itemid',39013),(36464,'history_uint','itemid',39013),(36465,'trends','itemid',39013),(36466,'trends_uint','itemid',39013),(36467,'events','itemid',39061),(36468,'history','itemid',39061),(36469,'history_log','itemid',39061),(36470,'history_str','itemid',39061),(36471,'history_text','itemid',39061),(36472,'history_uint','itemid',39061),(36473,'trends','itemid',39061),(36474,'trends_uint','itemid',39061),(36475,'events','itemid',39062),(36476,'history','itemid',39062),(36477,'history_log','itemid',39062),(36478,'history_str','itemid',39062),(36479,'history_text','itemid',39062),(36480,'history_uint','itemid',39062),(36481,'trends','itemid',39062),(36482,'trends_uint','itemid',39062),(36483,'events','itemid',39063),(36484,'history','itemid',39063),(36485,'history_log','itemid',39063),(36486,'history_str','itemid',39063),(36487,'history_text','itemid',39063),(36488,'history_uint','itemid',39063),(36489,'trends','itemid',39063),(36490,'trends_uint','itemid',39063),(36491,'events','itemid',39064),(36492,'history','itemid',39064),(36493,'history_log','itemid',39064),(36494,'history_str','itemid',39064),(36495,'history_text','itemid',39064),(36496,'history_uint','itemid',39064),(36497,'trends','itemid',39064),(36498,'trends_uint','itemid',39064),(36499,'events','itemid',39065),(36500,'history','itemid',39065),(36501,'history_log','itemid',39065),(36502,'history_str','itemid',39065),(36503,'history_text','itemid',39065),(36504,'history_uint','itemid',39065),(36505,'trends','itemid',39065),(36506,'trends_uint','itemid',39065),(36507,'events','itemid',39066),(36508,'history','itemid',39066),(36509,'history_log','itemid',39066),(36510,'history_str','itemid',39066),(36511,'history_text','itemid',39066),(36512,'history_uint','itemid',39066),(36513,'trends','itemid',39066),(36514,'trends_uint','itemid',39066),(36515,'events','itemid',39067),(36516,'history','itemid',39067),(36517,'history_log','itemid',39067),(36518,'history_str','itemid',39067),(36519,'history_text','itemid',39067),(36520,'history_uint','itemid',39067),(36521,'trends','itemid',39067),(36522,'trends_uint','itemid',39067),(36523,'events','itemid',39115),(36524,'history','itemid',39115),(36525,'history_log','itemid',39115),(36526,'history_str','itemid',39115),(36527,'history_text','itemid',39115),(36528,'history_uint','itemid',39115),(36529,'trends','itemid',39115),(36530,'trends_uint','itemid',39115),(36531,'events','itemid',39116),(36532,'history','itemid',39116),(36533,'history_log','itemid',39116),(36534,'history_str','itemid',39116),(36535,'history_text','itemid',39116),(36536,'history_uint','itemid',39116),(36537,'trends','itemid',39116),(36538,'trends_uint','itemid',39116),(36539,'events','itemid',39117),(36540,'history','itemid',39117),(36541,'history_log','itemid',39117),(36542,'history_str','itemid',39117),(36543,'history_text','itemid',39117),(36544,'history_uint','itemid',39117),(36545,'trends','itemid',39117),(36546,'trends_uint','itemid',39117),(36547,'events','itemid',39118),(36548,'history','itemid',39118),(36549,'history_log','itemid',39118),(36550,'history_str','itemid',39118),(36551,'history_text','itemid',39118),(36552,'history_uint','itemid',39118),(36553,'trends','itemid',39118),(36554,'trends_uint','itemid',39118),(36555,'events','itemid',39119),(36556,'history','itemid',39119),(36557,'history_log','itemid',39119),(36558,'history_str','itemid',39119),(36559,'history_text','itemid',39119),(36560,'history_uint','itemid',39119),(36561,'trends','itemid',39119),(36562,'trends_uint','itemid',39119),(36563,'events','itemid',39120),(36564,'history','itemid',39120),(36565,'history_log','itemid',39120),(36566,'history_str','itemid',39120),(36567,'history_text','itemid',39120),(36568,'history_uint','itemid',39120),(36569,'trends','itemid',39120),(36570,'trends_uint','itemid',39120),(36571,'events','itemid',39121),(36572,'history','itemid',39121),(36573,'history_log','itemid',39121),(36574,'history_str','itemid',39121),(36575,'history_text','itemid',39121),(36576,'history_uint','itemid',39121),(36577,'trends','itemid',39121),(36578,'trends_uint','itemid',39121),(36579,'events','itemid',39169),(36580,'history','itemid',39169),(36581,'history_log','itemid',39169),(36582,'history_str','itemid',39169),(36583,'history_text','itemid',39169),(36584,'history_uint','itemid',39169),(36585,'trends','itemid',39169),(36586,'trends_uint','itemid',39169),(36587,'events','itemid',39170),(36588,'history','itemid',39170),(36589,'history_log','itemid',39170),(36590,'history_str','itemid',39170),(36591,'history_text','itemid',39170),(36592,'history_uint','itemid',39170),(36593,'trends','itemid',39170),(36594,'trends_uint','itemid',39170),(36595,'events','itemid',39171),(36596,'history','itemid',39171),(36597,'history_log','itemid',39171),(36598,'history_str','itemid',39171),(36599,'history_text','itemid',39171),(36600,'history_uint','itemid',39171),(36601,'trends','itemid',39171),(36602,'trends_uint','itemid',39171),(36603,'events','itemid',39172),(36604,'history','itemid',39172),(36605,'history_log','itemid',39172),(36606,'history_str','itemid',39172),(36607,'history_text','itemid',39172),(36608,'history_uint','itemid',39172),(36609,'trends','itemid',39172),(36610,'trends_uint','itemid',39172),(36611,'events','itemid',39173),(36612,'history','itemid',39173),(36613,'history_log','itemid',39173),(36614,'history_str','itemid',39173),(36615,'history_text','itemid',39173),(36616,'history_uint','itemid',39173),(36617,'trends','itemid',39173),(36618,'trends_uint','itemid',39173),(36619,'events','itemid',39174),(36620,'history','itemid',39174),(36621,'history_log','itemid',39174),(36622,'history_str','itemid',39174),(36623,'history_text','itemid',39174),(36624,'history_uint','itemid',39174),(36625,'trends','itemid',39174),(36626,'trends_uint','itemid',39174),(36627,'events','itemid',39175),(36628,'history','itemid',39175),(36629,'history_log','itemid',39175),(36630,'history_str','itemid',39175),(36631,'history_text','itemid',39175),(36632,'history_uint','itemid',39175),(36633,'trends','itemid',39175),(36634,'trends_uint','itemid',39175),(36635,'events','itemid',39223),(36636,'history','itemid',39223),(36637,'history_log','itemid',39223),(36638,'history_str','itemid',39223),(36639,'history_text','itemid',39223),(36640,'history_uint','itemid',39223),(36641,'trends','itemid',39223),(36642,'trends_uint','itemid',39223),(36643,'events','itemid',39224),(36644,'history','itemid',39224),(36645,'history_log','itemid',39224),(36646,'history_str','itemid',39224),(36647,'history_text','itemid',39224),(36648,'history_uint','itemid',39224),(36649,'trends','itemid',39224),(36650,'trends_uint','itemid',39224),(36651,'events','itemid',39225),(36652,'history','itemid',39225),(36653,'history_log','itemid',39225),(36654,'history_str','itemid',39225),(36655,'history_text','itemid',39225),(36656,'history_uint','itemid',39225),(36657,'trends','itemid',39225),(36658,'trends_uint','itemid',39225),(36659,'events','itemid',39226),(36660,'history','itemid',39226),(36661,'history_log','itemid',39226),(36662,'history_str','itemid',39226),(36663,'history_text','itemid',39226),(36664,'history_uint','itemid',39226),(36665,'trends','itemid',39226),(36666,'trends_uint','itemid',39226),(36667,'events','itemid',39227),(36668,'history','itemid',39227),(36669,'history_log','itemid',39227),(36670,'history_str','itemid',39227),(36671,'history_text','itemid',39227),(36672,'history_uint','itemid',39227),(36673,'trends','itemid',39227),(36674,'trends_uint','itemid',39227),(36675,'events','itemid',39228),(36676,'history','itemid',39228),(36677,'history_log','itemid',39228),(36678,'history_str','itemid',39228),(36679,'history_text','itemid',39228),(36680,'history_uint','itemid',39228),(36681,'trends','itemid',39228),(36682,'trends_uint','itemid',39228),(36683,'events','itemid',39229),(36684,'history','itemid',39229),(36685,'history_log','itemid',39229),(36686,'history_str','itemid',39229),(36687,'history_text','itemid',39229),(36688,'history_uint','itemid',39229),(36689,'trends','itemid',39229),(36690,'trends_uint','itemid',39229),(36691,'events','itemid',39277),(36692,'history','itemid',39277),(36693,'history_log','itemid',39277),(36694,'history_str','itemid',39277),(36695,'history_text','itemid',39277),(36696,'history_uint','itemid',39277),(36697,'trends','itemid',39277),(36698,'trends_uint','itemid',39277),(36699,'events','itemid',39278),(36700,'history','itemid',39278),(36701,'history_log','itemid',39278),(36702,'history_str','itemid',39278),(36703,'history_text','itemid',39278),(36704,'history_uint','itemid',39278),(36705,'trends','itemid',39278),(36706,'trends_uint','itemid',39278),(36707,'events','itemid',39279),(36708,'history','itemid',39279),(36709,'history_log','itemid',39279),(36710,'history_str','itemid',39279),(36711,'history_text','itemid',39279),(36712,'history_uint','itemid',39279),(36713,'trends','itemid',39279),(36714,'trends_uint','itemid',39279),(36715,'events','itemid',39280),(36716,'history','itemid',39280),(36717,'history_log','itemid',39280),(36718,'history_str','itemid',39280),(36719,'history_text','itemid',39280),(36720,'history_uint','itemid',39280),(36721,'trends','itemid',39280),(36722,'trends_uint','itemid',39280),(36723,'events','itemid',39281),(36724,'history','itemid',39281),(36725,'history_log','itemid',39281),(36726,'history_str','itemid',39281),(36727,'history_text','itemid',39281),(36728,'history_uint','itemid',39281),(36729,'trends','itemid',39281),(36730,'trends_uint','itemid',39281),(36731,'events','itemid',39282),(36732,'history','itemid',39282),(36733,'history_log','itemid',39282),(36734,'history_str','itemid',39282),(36735,'history_text','itemid',39282),(36736,'history_uint','itemid',39282),(36737,'trends','itemid',39282),(36738,'trends_uint','itemid',39282),(36739,'events','itemid',39283),(36740,'history','itemid',39283),(36741,'history_log','itemid',39283),(36742,'history_str','itemid',39283),(36743,'history_text','itemid',39283),(36744,'history_uint','itemid',39283),(36745,'trends','itemid',39283),(36746,'trends_uint','itemid',39283),(36747,'events','itemid',39601),(36748,'history','itemid',39601),(36749,'history_log','itemid',39601),(36750,'history_str','itemid',39601),(36751,'history_text','itemid',39601),(36752,'history_uint','itemid',39601),(36753,'trends','itemid',39601),(36754,'trends_uint','itemid',39601),(36755,'events','itemid',39602),(36756,'history','itemid',39602),(36757,'history_log','itemid',39602),(36758,'history_str','itemid',39602),(36759,'history_text','itemid',39602),(36760,'history_uint','itemid',39602),(36761,'trends','itemid',39602),(36762,'trends_uint','itemid',39602),(36763,'events','itemid',39603),(36764,'history','itemid',39603),(36765,'history_log','itemid',39603),(36766,'history_str','itemid',39603),(36767,'history_text','itemid',39603),(36768,'history_uint','itemid',39603),(36769,'trends','itemid',39603),(36770,'trends_uint','itemid',39603),(36771,'events','itemid',39604),(36772,'history','itemid',39604),(36773,'history_log','itemid',39604),(36774,'history_str','itemid',39604),(36775,'history_text','itemid',39604),(36776,'history_uint','itemid',39604),(36777,'trends','itemid',39604),(36778,'trends_uint','itemid',39604),(36779,'events','itemid',39605),(36780,'history','itemid',39605),(36781,'history_log','itemid',39605),(36782,'history_str','itemid',39605),(36783,'history_text','itemid',39605),(36784,'history_uint','itemid',39605),(36785,'trends','itemid',39605),(36786,'trends_uint','itemid',39605),(36787,'events','itemid',39606),(36788,'history','itemid',39606),(36789,'history_log','itemid',39606),(36790,'history_str','itemid',39606),(36791,'history_text','itemid',39606),(36792,'history_uint','itemid',39606),(36793,'trends','itemid',39606),(36794,'trends_uint','itemid',39606),(36795,'events','itemid',39607),(36796,'history','itemid',39607),(36797,'history_log','itemid',39607),(36798,'history_str','itemid',39607),(36799,'history_text','itemid',39607),(36800,'history_uint','itemid',39607),(36801,'trends','itemid',39607),(36802,'trends_uint','itemid',39607),(36803,'events','itemid',39655),(36804,'history','itemid',39655),(36805,'history_log','itemid',39655),(36806,'history_str','itemid',39655),(36807,'history_text','itemid',39655),(36808,'history_uint','itemid',39655),(36809,'trends','itemid',39655),(36810,'trends_uint','itemid',39655),(36811,'events','itemid',39656),(36812,'history','itemid',39656),(36813,'history_log','itemid',39656),(36814,'history_str','itemid',39656),(36815,'history_text','itemid',39656),(36816,'history_uint','itemid',39656),(36817,'trends','itemid',39656),(36818,'trends_uint','itemid',39656),(36819,'events','itemid',39657),(36820,'history','itemid',39657),(36821,'history_log','itemid',39657),(36822,'history_str','itemid',39657),(36823,'history_text','itemid',39657),(36824,'history_uint','itemid',39657),(36825,'trends','itemid',39657),(36826,'trends_uint','itemid',39657),(36827,'events','itemid',39658),(36828,'history','itemid',39658),(36829,'history_log','itemid',39658),(36830,'history_str','itemid',39658),(36831,'history_text','itemid',39658),(36832,'history_uint','itemid',39658),(36833,'trends','itemid',39658),(36834,'trends_uint','itemid',39658),(36835,'events','itemid',39659),(36836,'history','itemid',39659),(36837,'history_log','itemid',39659),(36838,'history_str','itemid',39659),(36839,'history_text','itemid',39659),(36840,'history_uint','itemid',39659),(36841,'trends','itemid',39659),(36842,'trends_uint','itemid',39659),(36843,'events','itemid',39660),(36844,'history','itemid',39660),(36845,'history_log','itemid',39660),(36846,'history_str','itemid',39660),(36847,'history_text','itemid',39660),(36848,'history_uint','itemid',39660),(36849,'trends','itemid',39660),(36850,'trends_uint','itemid',39660),(36851,'events','itemid',39661),(36852,'history','itemid',39661),(36853,'history_log','itemid',39661),(36854,'history_str','itemid',39661),(36855,'history_text','itemid',39661),(36856,'history_uint','itemid',39661),(36857,'trends','itemid',39661),(36858,'trends_uint','itemid',39661),(36859,'events','itemid',39709),(36860,'history','itemid',39709),(36861,'history_log','itemid',39709),(36862,'history_str','itemid',39709),(36863,'history_text','itemid',39709),(36864,'history_uint','itemid',39709),(36865,'trends','itemid',39709),(36866,'trends_uint','itemid',39709),(36867,'events','itemid',39710),(36868,'history','itemid',39710),(36869,'history_log','itemid',39710),(36870,'history_str','itemid',39710),(36871,'history_text','itemid',39710),(36872,'history_uint','itemid',39710),(36873,'trends','itemid',39710),(36874,'trends_uint','itemid',39710),(36875,'events','itemid',39711),(36876,'history','itemid',39711),(36877,'history_log','itemid',39711),(36878,'history_str','itemid',39711),(36879,'history_text','itemid',39711),(36880,'history_uint','itemid',39711),(36881,'trends','itemid',39711),(36882,'trends_uint','itemid',39711),(36883,'events','itemid',39712),(36884,'history','itemid',39712),(36885,'history_log','itemid',39712),(36886,'history_str','itemid',39712),(36887,'history_text','itemid',39712),(36888,'history_uint','itemid',39712),(36889,'trends','itemid',39712),(36890,'trends_uint','itemid',39712),(36891,'events','itemid',39713),(36892,'history','itemid',39713),(36893,'history_log','itemid',39713),(36894,'history_str','itemid',39713),(36895,'history_text','itemid',39713),(36896,'history_uint','itemid',39713),(36897,'trends','itemid',39713),(36898,'trends_uint','itemid',39713),(36899,'events','itemid',39714),(36900,'history','itemid',39714),(36901,'history_log','itemid',39714),(36902,'history_str','itemid',39714),(36903,'history_text','itemid',39714),(36904,'history_uint','itemid',39714),(36905,'trends','itemid',39714),(36906,'trends_uint','itemid',39714),(36907,'events','itemid',39715),(36908,'history','itemid',39715),(36909,'history_log','itemid',39715),(36910,'history_str','itemid',39715),(36911,'history_text','itemid',39715),(36912,'history_uint','itemid',39715),(36913,'trends','itemid',39715),(36914,'trends_uint','itemid',39715),(36915,'events','itemid',40117),(36916,'history','itemid',40117),(36917,'history_log','itemid',40117),(36918,'history_str','itemid',40117),(36919,'history_text','itemid',40117),(36920,'history_uint','itemid',40117),(36921,'trends','itemid',40117),(36922,'trends_uint','itemid',40117),(36923,'events','itemid',40119),(36924,'history','itemid',40119),(36925,'history_log','itemid',40119),(36926,'history_str','itemid',40119),(36927,'history_text','itemid',40119),(36928,'history_uint','itemid',40119),(36929,'trends','itemid',40119),(36930,'trends_uint','itemid',40119),(36931,'events','itemid',40120),(36932,'history','itemid',40120),(36933,'history_log','itemid',40120),(36934,'history_str','itemid',40120),(36935,'history_text','itemid',40120),(36936,'history_uint','itemid',40120),(36937,'trends','itemid',40120),(36938,'trends_uint','itemid',40120),(36939,'events','itemid',40121),(36940,'history','itemid',40121),(36941,'history_log','itemid',40121),(36942,'history_str','itemid',40121),(36943,'history_text','itemid',40121),(36944,'history_uint','itemid',40121),(36945,'trends','itemid',40121),(36946,'trends_uint','itemid',40121),(36947,'events','itemid',40122),(36948,'history','itemid',40122),(36949,'history_log','itemid',40122),(36950,'history_str','itemid',40122),(36951,'history_text','itemid',40122),(36952,'history_uint','itemid',40122),(36953,'trends','itemid',40122),(36954,'trends_uint','itemid',40122),(36955,'events','itemid',40123),(36956,'history','itemid',40123),(36957,'history_log','itemid',40123),(36958,'history_str','itemid',40123),(36959,'history_text','itemid',40123),(36960,'history_uint','itemid',40123),(36961,'trends','itemid',40123),(36962,'trends_uint','itemid',40123),(36963,'events','itemid',40124),(36964,'history','itemid',40124),(36965,'history_log','itemid',40124),(36966,'history_str','itemid',40124),(36967,'history_text','itemid',40124),(36968,'history_uint','itemid',40124),(36969,'trends','itemid',40124),(36970,'trends_uint','itemid',40124),(36971,'events','itemid',40125),(36972,'history','itemid',40125),(36973,'history_log','itemid',40125),(36974,'history_str','itemid',40125),(36975,'history_text','itemid',40125),(36976,'history_uint','itemid',40125),(36977,'trends','itemid',40125),(36978,'trends_uint','itemid',40125),(36979,'events','itemid',40126),(36980,'history','itemid',40126),(36981,'history_log','itemid',40126),(36982,'history_str','itemid',40126),(36983,'history_text','itemid',40126),(36984,'history_uint','itemid',40126),(36985,'trends','itemid',40126),(36986,'trends_uint','itemid',40126),(36987,'events','itemid',40128),(36988,'history','itemid',40128),(36989,'history_log','itemid',40128),(36990,'history_str','itemid',40128),(36991,'history_text','itemid',40128),(36992,'history_uint','itemid',40128),(36993,'trends','itemid',40128),(36994,'trends_uint','itemid',40128),(36995,'events','itemid',40129),(36996,'history','itemid',40129),(36997,'history_log','itemid',40129),(36998,'history_str','itemid',40129),(36999,'history_text','itemid',40129),(37000,'history_uint','itemid',40129),(37001,'trends','itemid',40129),(37002,'trends_uint','itemid',40129),(37003,'events','itemid',40130),(37004,'history','itemid',40130),(37005,'history_log','itemid',40130),(37006,'history_str','itemid',40130),(37007,'history_text','itemid',40130),(37008,'history_uint','itemid',40130),(37009,'trends','itemid',40130),(37010,'trends_uint','itemid',40130),(37011,'events','itemid',40131),(37012,'history','itemid',40131),(37013,'history_log','itemid',40131),(37014,'history_str','itemid',40131),(37015,'history_text','itemid',40131),(37016,'history_uint','itemid',40131),(37017,'trends','itemid',40131),(37018,'trends_uint','itemid',40131),(37019,'events','itemid',40132),(37020,'history','itemid',40132),(37021,'history_log','itemid',40132),(37022,'history_str','itemid',40132),(37023,'history_text','itemid',40132),(37024,'history_uint','itemid',40132),(37025,'trends','itemid',40132),(37026,'trends_uint','itemid',40132),(37027,'events','itemid',40133),(37028,'history','itemid',40133),(37029,'history_log','itemid',40133),(37030,'history_str','itemid',40133),(37031,'history_text','itemid',40133),(37032,'history_uint','itemid',40133),(37033,'trends','itemid',40133),(37034,'trends_uint','itemid',40133),(37035,'events','itemid',40134),(37036,'history','itemid',40134),(37037,'history_log','itemid',40134),(37038,'history_str','itemid',40134),(37039,'history_text','itemid',40134),(37040,'history_uint','itemid',40134),(37041,'trends','itemid',40134),(37042,'trends_uint','itemid',40134),(37043,'events','itemid',40135),(37044,'history','itemid',40135),(37045,'history_log','itemid',40135),(37046,'history_str','itemid',40135),(37047,'history_text','itemid',40135),(37048,'history_uint','itemid',40135),(37049,'trends','itemid',40135),(37050,'trends_uint','itemid',40135),(37051,'events','itemid',40136),(37052,'history','itemid',40136),(37053,'history_log','itemid',40136),(37054,'history_str','itemid',40136),(37055,'history_text','itemid',40136),(37056,'history_uint','itemid',40136),(37057,'trends','itemid',40136),(37058,'trends_uint','itemid',40136),(37059,'events','itemid',40798),(37060,'history','itemid',40798),(37061,'history_log','itemid',40798),(37062,'history_str','itemid',40798),(37063,'history_text','itemid',40798),(37064,'history_uint','itemid',40798),(37065,'trends','itemid',40798),(37066,'trends_uint','itemid',40798),(37067,'events','itemid',40799),(37068,'history','itemid',40799),(37069,'history_log','itemid',40799),(37070,'history_str','itemid',40799),(37071,'history_text','itemid',40799),(37072,'history_uint','itemid',40799),(37073,'trends','itemid',40799),(37074,'trends_uint','itemid',40799),(37075,'events','itemid',40800),(37076,'history','itemid',40800),(37077,'history_log','itemid',40800),(37078,'history_str','itemid',40800),(37079,'history_text','itemid',40800),(37080,'history_uint','itemid',40800),(37081,'trends','itemid',40800),(37082,'trends_uint','itemid',40800),(37083,'events','itemid',40801),(37084,'history','itemid',40801),(37085,'history_log','itemid',40801),(37086,'history_str','itemid',40801),(37087,'history_text','itemid',40801),(37088,'history_uint','itemid',40801),(37089,'trends','itemid',40801),(37090,'trends_uint','itemid',40801),(37091,'events','itemid',40802),(37092,'history','itemid',40802),(37093,'history_log','itemid',40802),(37094,'history_str','itemid',40802),(37095,'history_text','itemid',40802),(37096,'history_uint','itemid',40802),(37097,'trends','itemid',40802),(37098,'trends_uint','itemid',40802),(37099,'events','itemid',40803),(37100,'history','itemid',40803),(37101,'history_log','itemid',40803),(37102,'history_str','itemid',40803),(37103,'history_text','itemid',40803),(37104,'history_uint','itemid',40803),(37105,'trends','itemid',40803),(37106,'trends_uint','itemid',40803),(37107,'events','itemid',40804),(37108,'history','itemid',40804),(37109,'history_log','itemid',40804),(37110,'history_str','itemid',40804),(37111,'history_text','itemid',40804),(37112,'history_uint','itemid',40804),(37113,'trends','itemid',40804),(37114,'trends_uint','itemid',40804),(37115,'events','itemid',40805),(37116,'history','itemid',40805),(37117,'history_log','itemid',40805),(37118,'history_str','itemid',40805),(37119,'history_text','itemid',40805),(37120,'history_uint','itemid',40805),(37121,'trends','itemid',40805),(37122,'trends_uint','itemid',40805),(37123,'events','itemid',40806),(37124,'history','itemid',40806),(37125,'history_log','itemid',40806),(37126,'history_str','itemid',40806),(37127,'history_text','itemid',40806),(37128,'history_uint','itemid',40806),(37129,'trends','itemid',40806),(37130,'trends_uint','itemid',40806),(37131,'events','itemid',40807),(37132,'history','itemid',40807),(37133,'history_log','itemid',40807),(37134,'history_str','itemid',40807),(37135,'history_text','itemid',40807),(37136,'history_uint','itemid',40807),(37137,'trends','itemid',40807),(37138,'trends_uint','itemid',40807),(37139,'events','itemid',40808),(37140,'history','itemid',40808),(37141,'history_log','itemid',40808),(37142,'history_str','itemid',40808),(37143,'history_text','itemid',40808),(37144,'history_uint','itemid',40808),(37145,'trends','itemid',40808),(37146,'trends_uint','itemid',40808),(37147,'events','itemid',41606),(37148,'history','itemid',41606),(37149,'history_log','itemid',41606),(37150,'history_str','itemid',41606),(37151,'history_text','itemid',41606),(37152,'history_uint','itemid',41606),(37153,'trends','itemid',41606),(37154,'trends_uint','itemid',41606),(37155,'events','itemid',41607),(37156,'history','itemid',41607),(37157,'history_log','itemid',41607),(37158,'history_str','itemid',41607),(37159,'history_text','itemid',41607),(37160,'history_uint','itemid',41607),(37161,'trends','itemid',41607),(37162,'trends_uint','itemid',41607),(37163,'events','itemid',41608),(37164,'history','itemid',41608),(37165,'history_log','itemid',41608),(37166,'history_str','itemid',41608),(37167,'history_text','itemid',41608),(37168,'history_uint','itemid',41608),(37169,'trends','itemid',41608),(37170,'trends_uint','itemid',41608),(37171,'events','itemid',41609),(37172,'history','itemid',41609),(37173,'history_log','itemid',41609),(37174,'history_str','itemid',41609),(37175,'history_text','itemid',41609),(37176,'history_uint','itemid',41609),(37177,'trends','itemid',41609),(37178,'trends_uint','itemid',41609),(37179,'events','itemid',41610),(37180,'history','itemid',41610),(37181,'history_log','itemid',41610),(37182,'history_str','itemid',41610),(37183,'history_text','itemid',41610),(37184,'history_uint','itemid',41610),(37185,'trends','itemid',41610),(37186,'trends_uint','itemid',41610),(37187,'events','itemid',41611),(37188,'history','itemid',41611),(37189,'history_log','itemid',41611),(37190,'history_str','itemid',41611),(37191,'history_text','itemid',41611),(37192,'history_uint','itemid',41611),(37193,'trends','itemid',41611),(37194,'trends_uint','itemid',41611),(37195,'events','itemid',41612),(37196,'history','itemid',41612),(37197,'history_log','itemid',41612),(37198,'history_str','itemid',41612),(37199,'history_text','itemid',41612),(37200,'history_uint','itemid',41612),(37201,'trends','itemid',41612),(37202,'trends_uint','itemid',41612),(37203,'events','itemid',41613),(37204,'history','itemid',41613),(37205,'history_log','itemid',41613),(37206,'history_str','itemid',41613),(37207,'history_text','itemid',41613),(37208,'history_uint','itemid',41613),(37209,'trends','itemid',41613),(37210,'trends_uint','itemid',41613),(37211,'events','itemid',41614),(37212,'history','itemid',41614),(37213,'history_log','itemid',41614),(37214,'history_str','itemid',41614),(37215,'history_text','itemid',41614),(37216,'history_uint','itemid',41614),(37217,'trends','itemid',41614),(37218,'trends_uint','itemid',41614),(37219,'events','itemid',41615),(37220,'history','itemid',41615),(37221,'history_log','itemid',41615),(37222,'history_str','itemid',41615),(37223,'history_text','itemid',41615),(37224,'history_uint','itemid',41615),(37225,'trends','itemid',41615),(37226,'trends_uint','itemid',41615),(37227,'events','itemid',41616),(37228,'history','itemid',41616),(37229,'history_log','itemid',41616),(37230,'history_str','itemid',41616),(37231,'history_text','itemid',41616),(37232,'history_uint','itemid',41616),(37233,'trends','itemid',41616),(37234,'trends_uint','itemid',41616),(37235,'events','itemid',41627),(37236,'history','itemid',41627),(37237,'history_log','itemid',41627),(37238,'history_str','itemid',41627),(37239,'history_text','itemid',41627),(37240,'history_uint','itemid',41627),(37241,'trends','itemid',41627),(37242,'trends_uint','itemid',41627),(37243,'events','itemid',41628),(37244,'history','itemid',41628),(37245,'history_log','itemid',41628),(37246,'history_str','itemid',41628),(37247,'history_text','itemid',41628),(37248,'history_uint','itemid',41628),(37249,'trends','itemid',41628),(37250,'trends_uint','itemid',41628),(37251,'events','itemid',41629),(37252,'history','itemid',41629),(37253,'history_log','itemid',41629),(37254,'history_str','itemid',41629),(37255,'history_text','itemid',41629),(37256,'history_uint','itemid',41629),(37257,'trends','itemid',41629),(37258,'trends_uint','itemid',41629),(37259,'events','itemid',41630),(37260,'history','itemid',41630),(37261,'history_log','itemid',41630),(37262,'history_str','itemid',41630),(37263,'history_text','itemid',41630),(37264,'history_uint','itemid',41630),(37265,'trends','itemid',41630),(37266,'trends_uint','itemid',41630),(37267,'events','itemid',41631),(37268,'history','itemid',41631),(37269,'history_log','itemid',41631),(37270,'history_str','itemid',41631),(37271,'history_text','itemid',41631),(37272,'history_uint','itemid',41631),(37273,'trends','itemid',41631),(37274,'trends_uint','itemid',41631),(37275,'events','itemid',41632),(37276,'history','itemid',41632),(37277,'history_log','itemid',41632),(37278,'history_str','itemid',41632),(37279,'history_text','itemid',41632),(37280,'history_uint','itemid',41632),(37281,'trends','itemid',41632),(37282,'trends_uint','itemid',41632),(37283,'events','itemid',41633),(37284,'history','itemid',41633),(37285,'history_log','itemid',41633),(37286,'history_str','itemid',41633),(37287,'history_text','itemid',41633),(37288,'history_uint','itemid',41633),(37289,'trends','itemid',41633),(37290,'trends_uint','itemid',41633),(37291,'events','itemid',41634),(37292,'history','itemid',41634),(37293,'history_log','itemid',41634),(37294,'history_str','itemid',41634),(37295,'history_text','itemid',41634),(37296,'history_uint','itemid',41634),(37297,'trends','itemid',41634),(37298,'trends_uint','itemid',41634),(37299,'events','itemid',41635),(37300,'history','itemid',41635),(37301,'history_log','itemid',41635),(37302,'history_str','itemid',41635),(37303,'history_text','itemid',41635),(37304,'history_uint','itemid',41635),(37305,'trends','itemid',41635),(37306,'trends_uint','itemid',41635),(37307,'events','itemid',41636),(37308,'history','itemid',41636),(37309,'history_log','itemid',41636),(37310,'history_str','itemid',41636),(37311,'history_text','itemid',41636),(37312,'history_uint','itemid',41636),(37313,'trends','itemid',41636),(37314,'trends_uint','itemid',41636),(37315,'events','itemid',41637),(37316,'history','itemid',41637),(37317,'history_log','itemid',41637),(37318,'history_str','itemid',41637),(37319,'history_text','itemid',41637),(37320,'history_uint','itemid',41637),(37321,'trends','itemid',41637),(37322,'trends_uint','itemid',41637),(37323,'events','itemid',41648),(37324,'history','itemid',41648),(37325,'history_log','itemid',41648),(37326,'history_str','itemid',41648),(37327,'history_text','itemid',41648),(37328,'history_uint','itemid',41648),(37329,'trends','itemid',41648),(37330,'trends_uint','itemid',41648),(37331,'events','itemid',41649),(37332,'history','itemid',41649),(37333,'history_log','itemid',41649),(37334,'history_str','itemid',41649),(37335,'history_text','itemid',41649),(37336,'history_uint','itemid',41649),(37337,'trends','itemid',41649),(37338,'trends_uint','itemid',41649),(37339,'events','itemid',41650),(37340,'history','itemid',41650),(37341,'history_log','itemid',41650),(37342,'history_str','itemid',41650),(37343,'history_text','itemid',41650),(37344,'history_uint','itemid',41650),(37345,'trends','itemid',41650),(37346,'trends_uint','itemid',41650),(37347,'events','itemid',41651),(37348,'history','itemid',41651),(37349,'history_log','itemid',41651),(37350,'history_str','itemid',41651),(37351,'history_text','itemid',41651),(37352,'history_uint','itemid',41651),(37353,'trends','itemid',41651),(37354,'trends_uint','itemid',41651),(37355,'events','itemid',41652),(37356,'history','itemid',41652),(37357,'history_log','itemid',41652),(37358,'history_str','itemid',41652),(37359,'history_text','itemid',41652),(37360,'history_uint','itemid',41652),(37361,'trends','itemid',41652),(37362,'trends_uint','itemid',41652),(37363,'events','itemid',41653),(37364,'history','itemid',41653),(37365,'history_log','itemid',41653),(37366,'history_str','itemid',41653),(37367,'history_text','itemid',41653),(37368,'history_uint','itemid',41653),(37369,'trends','itemid',41653),(37370,'trends_uint','itemid',41653),(37371,'events','itemid',41654),(37372,'history','itemid',41654),(37373,'history_log','itemid',41654),(37374,'history_str','itemid',41654),(37375,'history_text','itemid',41654),(37376,'history_uint','itemid',41654),(37377,'trends','itemid',41654),(37378,'trends_uint','itemid',41654),(37379,'events','itemid',41655),(37380,'history','itemid',41655),(37381,'history_log','itemid',41655),(37382,'history_str','itemid',41655),(37383,'history_text','itemid',41655),(37384,'history_uint','itemid',41655),(37385,'trends','itemid',41655),(37386,'trends_uint','itemid',41655),(37387,'events','itemid',41656),(37388,'history','itemid',41656),(37389,'history_log','itemid',41656),(37390,'history_str','itemid',41656),(37391,'history_text','itemid',41656),(37392,'history_uint','itemid',41656),(37393,'trends','itemid',41656),(37394,'trends_uint','itemid',41656),(37395,'events','itemid',41657),(37396,'history','itemid',41657),(37397,'history_log','itemid',41657),(37398,'history_str','itemid',41657),(37399,'history_text','itemid',41657),(37400,'history_uint','itemid',41657),(37401,'trends','itemid',41657),(37402,'trends_uint','itemid',41657),(37403,'events','itemid',41658),(37404,'history','itemid',41658),(37405,'history_log','itemid',41658),(37406,'history_str','itemid',41658),(37407,'history_text','itemid',41658),(37408,'history_uint','itemid',41658),(37409,'trends','itemid',41658),(37410,'trends_uint','itemid',41658),(37411,'events','itemid',41669),(37412,'history','itemid',41669),(37413,'history_log','itemid',41669),(37414,'history_str','itemid',41669),(37415,'history_text','itemid',41669),(37416,'history_uint','itemid',41669),(37417,'trends','itemid',41669),(37418,'trends_uint','itemid',41669),(37419,'events','itemid',41670),(37420,'history','itemid',41670),(37421,'history_log','itemid',41670),(37422,'history_str','itemid',41670),(37423,'history_text','itemid',41670),(37424,'history_uint','itemid',41670),(37425,'trends','itemid',41670),(37426,'trends_uint','itemid',41670),(37427,'events','itemid',41671),(37428,'history','itemid',41671),(37429,'history_log','itemid',41671),(37430,'history_str','itemid',41671),(37431,'history_text','itemid',41671),(37432,'history_uint','itemid',41671),(37433,'trends','itemid',41671),(37434,'trends_uint','itemid',41671),(37435,'events','itemid',41672),(37436,'history','itemid',41672),(37437,'history_log','itemid',41672),(37438,'history_str','itemid',41672),(37439,'history_text','itemid',41672),(37440,'history_uint','itemid',41672),(37441,'trends','itemid',41672),(37442,'trends_uint','itemid',41672),(37443,'events','itemid',41673),(37444,'history','itemid',41673),(37445,'history_log','itemid',41673),(37446,'history_str','itemid',41673),(37447,'history_text','itemid',41673),(37448,'history_uint','itemid',41673),(37449,'trends','itemid',41673),(37450,'trends_uint','itemid',41673),(37451,'events','itemid',41674),(37452,'history','itemid',41674),(37453,'history_log','itemid',41674),(37454,'history_str','itemid',41674),(37455,'history_text','itemid',41674),(37456,'history_uint','itemid',41674),(37457,'trends','itemid',41674),(37458,'trends_uint','itemid',41674),(37459,'events','itemid',41675),(37460,'history','itemid',41675),(37461,'history_log','itemid',41675),(37462,'history_str','itemid',41675),(37463,'history_text','itemid',41675),(37464,'history_uint','itemid',41675),(37465,'trends','itemid',41675),(37466,'trends_uint','itemid',41675),(37467,'events','itemid',41676),(37468,'history','itemid',41676),(37469,'history_log','itemid',41676),(37470,'history_str','itemid',41676),(37471,'history_text','itemid',41676),(37472,'history_uint','itemid',41676),(37473,'trends','itemid',41676),(37474,'trends_uint','itemid',41676),(37475,'events','itemid',41677),(37476,'history','itemid',41677),(37477,'history_log','itemid',41677),(37478,'history_str','itemid',41677),(37479,'history_text','itemid',41677),(37480,'history_uint','itemid',41677),(37481,'trends','itemid',41677),(37482,'trends_uint','itemid',41677),(37483,'events','itemid',41678),(37484,'history','itemid',41678),(37485,'history_log','itemid',41678),(37486,'history_str','itemid',41678),(37487,'history_text','itemid',41678),(37488,'history_uint','itemid',41678),(37489,'trends','itemid',41678),(37490,'trends_uint','itemid',41678),(37491,'events','itemid',41679),(37492,'history','itemid',41679),(37493,'history_log','itemid',41679),(37494,'history_str','itemid',41679),(37495,'history_text','itemid',41679),(37496,'history_uint','itemid',41679),(37497,'trends','itemid',41679),(37498,'trends_uint','itemid',41679),(37499,'events','itemid',41690),(37500,'history','itemid',41690),(37501,'history_log','itemid',41690),(37502,'history_str','itemid',41690),(37503,'history_text','itemid',41690),(37504,'history_uint','itemid',41690),(37505,'trends','itemid',41690),(37506,'trends_uint','itemid',41690),(37507,'events','itemid',41691),(37508,'history','itemid',41691),(37509,'history_log','itemid',41691),(37510,'history_str','itemid',41691),(37511,'history_text','itemid',41691),(37512,'history_uint','itemid',41691),(37513,'trends','itemid',41691),(37514,'trends_uint','itemid',41691),(37515,'events','itemid',41692),(37516,'history','itemid',41692),(37517,'history_log','itemid',41692),(37518,'history_str','itemid',41692),(37519,'history_text','itemid',41692),(37520,'history_uint','itemid',41692),(37521,'trends','itemid',41692),(37522,'trends_uint','itemid',41692),(37523,'events','itemid',41693),(37524,'history','itemid',41693),(37525,'history_log','itemid',41693),(37526,'history_str','itemid',41693),(37527,'history_text','itemid',41693),(37528,'history_uint','itemid',41693),(37529,'trends','itemid',41693),(37530,'trends_uint','itemid',41693),(37531,'events','itemid',41694),(37532,'history','itemid',41694),(37533,'history_log','itemid',41694),(37534,'history_str','itemid',41694),(37535,'history_text','itemid',41694),(37536,'history_uint','itemid',41694),(37537,'trends','itemid',41694),(37538,'trends_uint','itemid',41694),(37539,'events','itemid',41695),(37540,'history','itemid',41695),(37541,'history_log','itemid',41695),(37542,'history_str','itemid',41695),(37543,'history_text','itemid',41695),(37544,'history_uint','itemid',41695),(37545,'trends','itemid',41695),(37546,'trends_uint','itemid',41695),(37547,'events','itemid',41696),(37548,'history','itemid',41696),(37549,'history_log','itemid',41696),(37550,'history_str','itemid',41696),(37551,'history_text','itemid',41696),(37552,'history_uint','itemid',41696),(37553,'trends','itemid',41696),(37554,'trends_uint','itemid',41696),(37555,'events','itemid',41697),(37556,'history','itemid',41697),(37557,'history_log','itemid',41697),(37558,'history_str','itemid',41697),(37559,'history_text','itemid',41697),(37560,'history_uint','itemid',41697),(37561,'trends','itemid',41697),(37562,'trends_uint','itemid',41697),(37563,'events','itemid',41698),(37564,'history','itemid',41698),(37565,'history_log','itemid',41698),(37566,'history_str','itemid',41698),(37567,'history_text','itemid',41698),(37568,'history_uint','itemid',41698),(37569,'trends','itemid',41698),(37570,'trends_uint','itemid',41698),(37571,'events','itemid',41699),(37572,'history','itemid',41699),(37573,'history_log','itemid',41699),(37574,'history_str','itemid',41699),(37575,'history_text','itemid',41699),(37576,'history_uint','itemid',41699),(37577,'trends','itemid',41699),(37578,'trends_uint','itemid',41699),(37579,'events','itemid',41700),(37580,'history','itemid',41700),(37581,'history_log','itemid',41700),(37582,'history_str','itemid',41700),(37583,'history_text','itemid',41700),(37584,'history_uint','itemid',41700),(37585,'trends','itemid',41700),(37586,'trends_uint','itemid',41700),(37587,'events','itemid',41711),(37588,'history','itemid',41711),(37589,'history_log','itemid',41711),(37590,'history_str','itemid',41711),(37591,'history_text','itemid',41711),(37592,'history_uint','itemid',41711),(37593,'trends','itemid',41711),(37594,'trends_uint','itemid',41711),(37595,'events','itemid',41712),(37596,'history','itemid',41712),(37597,'history_log','itemid',41712),(37598,'history_str','itemid',41712),(37599,'history_text','itemid',41712),(37600,'history_uint','itemid',41712),(37601,'trends','itemid',41712),(37602,'trends_uint','itemid',41712),(37603,'events','itemid',41713),(37604,'history','itemid',41713),(37605,'history_log','itemid',41713),(37606,'history_str','itemid',41713),(37607,'history_text','itemid',41713),(37608,'history_uint','itemid',41713),(37609,'trends','itemid',41713),(37610,'trends_uint','itemid',41713),(37611,'events','itemid',41714),(37612,'history','itemid',41714),(37613,'history_log','itemid',41714),(37614,'history_str','itemid',41714),(37615,'history_text','itemid',41714),(37616,'history_uint','itemid',41714),(37617,'trends','itemid',41714),(37618,'trends_uint','itemid',41714),(37619,'events','itemid',41715),(37620,'history','itemid',41715),(37621,'history_log','itemid',41715),(37622,'history_str','itemid',41715),(37623,'history_text','itemid',41715),(37624,'history_uint','itemid',41715),(37625,'trends','itemid',41715),(37626,'trends_uint','itemid',41715),(37627,'events','itemid',41716),(37628,'history','itemid',41716),(37629,'history_log','itemid',41716),(37630,'history_str','itemid',41716),(37631,'history_text','itemid',41716),(37632,'history_uint','itemid',41716),(37633,'trends','itemid',41716),(37634,'trends_uint','itemid',41716),(37635,'events','itemid',41717),(37636,'history','itemid',41717),(37637,'history_log','itemid',41717),(37638,'history_str','itemid',41717),(37639,'history_text','itemid',41717),(37640,'history_uint','itemid',41717),(37641,'trends','itemid',41717),(37642,'trends_uint','itemid',41717),(37643,'events','itemid',41718),(37644,'history','itemid',41718),(37645,'history_log','itemid',41718),(37646,'history_str','itemid',41718),(37647,'history_text','itemid',41718),(37648,'history_uint','itemid',41718),(37649,'trends','itemid',41718),(37650,'trends_uint','itemid',41718),(37651,'events','itemid',41719),(37652,'history','itemid',41719),(37653,'history_log','itemid',41719),(37654,'history_str','itemid',41719),(37655,'history_text','itemid',41719),(37656,'history_uint','itemid',41719),(37657,'trends','itemid',41719),(37658,'trends_uint','itemid',41719),(37659,'events','itemid',41720),(37660,'history','itemid',41720),(37661,'history_log','itemid',41720),(37662,'history_str','itemid',41720),(37663,'history_text','itemid',41720),(37664,'history_uint','itemid',41720),(37665,'trends','itemid',41720),(37666,'trends_uint','itemid',41720),(37667,'events','itemid',41721),(37668,'history','itemid',41721),(37669,'history_log','itemid',41721),(37670,'history_str','itemid',41721),(37671,'history_text','itemid',41721),(37672,'history_uint','itemid',41721),(37673,'trends','itemid',41721),(37674,'trends_uint','itemid',41721),(37675,'events','itemid',41732),(37676,'history','itemid',41732),(37677,'history_log','itemid',41732),(37678,'history_str','itemid',41732),(37679,'history_text','itemid',41732),(37680,'history_uint','itemid',41732),(37681,'trends','itemid',41732),(37682,'trends_uint','itemid',41732),(37683,'events','itemid',41733),(37684,'history','itemid',41733),(37685,'history_log','itemid',41733),(37686,'history_str','itemid',41733),(37687,'history_text','itemid',41733),(37688,'history_uint','itemid',41733),(37689,'trends','itemid',41733),(37690,'trends_uint','itemid',41733),(37691,'events','itemid',41734),(37692,'history','itemid',41734),(37693,'history_log','itemid',41734),(37694,'history_str','itemid',41734),(37695,'history_text','itemid',41734),(37696,'history_uint','itemid',41734),(37697,'trends','itemid',41734),(37698,'trends_uint','itemid',41734),(37699,'events','itemid',41735),(37700,'history','itemid',41735),(37701,'history_log','itemid',41735),(37702,'history_str','itemid',41735),(37703,'history_text','itemid',41735),(37704,'history_uint','itemid',41735),(37705,'trends','itemid',41735),(37706,'trends_uint','itemid',41735),(37707,'events','itemid',41736),(37708,'history','itemid',41736),(37709,'history_log','itemid',41736),(37710,'history_str','itemid',41736),(37711,'history_text','itemid',41736),(37712,'history_uint','itemid',41736),(37713,'trends','itemid',41736),(37714,'trends_uint','itemid',41736),(37715,'events','itemid',41737),(37716,'history','itemid',41737),(37717,'history_log','itemid',41737),(37718,'history_str','itemid',41737),(37719,'history_text','itemid',41737),(37720,'history_uint','itemid',41737),(37721,'trends','itemid',41737),(37722,'trends_uint','itemid',41737),(37723,'events','itemid',41738),(37724,'history','itemid',41738),(37725,'history_log','itemid',41738),(37726,'history_str','itemid',41738),(37727,'history_text','itemid',41738),(37728,'history_uint','itemid',41738),(37729,'trends','itemid',41738),(37730,'trends_uint','itemid',41738),(37731,'events','itemid',41739),(37732,'history','itemid',41739),(37733,'history_log','itemid',41739),(37734,'history_str','itemid',41739),(37735,'history_text','itemid',41739),(37736,'history_uint','itemid',41739),(37737,'trends','itemid',41739),(37738,'trends_uint','itemid',41739),(37739,'events','itemid',41740),(37740,'history','itemid',41740),(37741,'history_log','itemid',41740),(37742,'history_str','itemid',41740),(37743,'history_text','itemid',41740),(37744,'history_uint','itemid',41740),(37745,'trends','itemid',41740),(37746,'trends_uint','itemid',41740),(37747,'events','itemid',41741),(37748,'history','itemid',41741),(37749,'history_log','itemid',41741),(37750,'history_str','itemid',41741),(37751,'history_text','itemid',41741),(37752,'history_uint','itemid',41741),(37753,'trends','itemid',41741),(37754,'trends_uint','itemid',41741),(37755,'events','itemid',41742),(37756,'history','itemid',41742),(37757,'history_log','itemid',41742),(37758,'history_str','itemid',41742),(37759,'history_text','itemid',41742),(37760,'history_uint','itemid',41742),(37761,'trends','itemid',41742),(37762,'trends_uint','itemid',41742),(37763,'events','itemid',41753),(37764,'history','itemid',41753),(37765,'history_log','itemid',41753),(37766,'history_str','itemid',41753),(37767,'history_text','itemid',41753),(37768,'history_uint','itemid',41753),(37769,'trends','itemid',41753),(37770,'trends_uint','itemid',41753),(37771,'events','itemid',41754),(37772,'history','itemid',41754),(37773,'history_log','itemid',41754),(37774,'history_str','itemid',41754),(37775,'history_text','itemid',41754),(37776,'history_uint','itemid',41754),(37777,'trends','itemid',41754),(37778,'trends_uint','itemid',41754),(37779,'events','itemid',41755),(37780,'history','itemid',41755),(37781,'history_log','itemid',41755),(37782,'history_str','itemid',41755),(37783,'history_text','itemid',41755),(37784,'history_uint','itemid',41755),(37785,'trends','itemid',41755),(37786,'trends_uint','itemid',41755),(37787,'events','itemid',41756),(37788,'history','itemid',41756),(37789,'history_log','itemid',41756),(37790,'history_str','itemid',41756),(37791,'history_text','itemid',41756),(37792,'history_uint','itemid',41756),(37793,'trends','itemid',41756),(37794,'trends_uint','itemid',41756),(37795,'events','itemid',41757),(37796,'history','itemid',41757),(37797,'history_log','itemid',41757),(37798,'history_str','itemid',41757),(37799,'history_text','itemid',41757),(37800,'history_uint','itemid',41757),(37801,'trends','itemid',41757),(37802,'trends_uint','itemid',41757),(37803,'events','itemid',41758),(37804,'history','itemid',41758),(37805,'history_log','itemid',41758),(37806,'history_str','itemid',41758),(37807,'history_text','itemid',41758),(37808,'history_uint','itemid',41758),(37809,'trends','itemid',41758),(37810,'trends_uint','itemid',41758),(37811,'events','itemid',41759),(37812,'history','itemid',41759),(37813,'history_log','itemid',41759),(37814,'history_str','itemid',41759),(37815,'history_text','itemid',41759),(37816,'history_uint','itemid',41759),(37817,'trends','itemid',41759),(37818,'trends_uint','itemid',41759),(37819,'events','itemid',41760),(37820,'history','itemid',41760),(37821,'history_log','itemid',41760),(37822,'history_str','itemid',41760),(37823,'history_text','itemid',41760),(37824,'history_uint','itemid',41760),(37825,'trends','itemid',41760),(37826,'trends_uint','itemid',41760),(37827,'events','itemid',41761),(37828,'history','itemid',41761),(37829,'history_log','itemid',41761),(37830,'history_str','itemid',41761),(37831,'history_text','itemid',41761),(37832,'history_uint','itemid',41761),(37833,'trends','itemid',41761),(37834,'trends_uint','itemid',41761),(37835,'events','itemid',41762),(37836,'history','itemid',41762),(37837,'history_log','itemid',41762),(37838,'history_str','itemid',41762),(37839,'history_text','itemid',41762),(37840,'history_uint','itemid',41762),(37841,'trends','itemid',41762),(37842,'trends_uint','itemid',41762),(37843,'events','itemid',41763),(37844,'history','itemid',41763),(37845,'history_log','itemid',41763),(37846,'history_str','itemid',41763),(37847,'history_text','itemid',41763),(37848,'history_uint','itemid',41763),(37849,'trends','itemid',41763),(37850,'trends_uint','itemid',41763),(37851,'events','itemid',41774),(37852,'history','itemid',41774),(37853,'history_log','itemid',41774),(37854,'history_str','itemid',41774),(37855,'history_text','itemid',41774),(37856,'history_uint','itemid',41774),(37857,'trends','itemid',41774),(37858,'trends_uint','itemid',41774),(37859,'events','itemid',41775),(37860,'history','itemid',41775),(37861,'history_log','itemid',41775),(37862,'history_str','itemid',41775),(37863,'history_text','itemid',41775),(37864,'history_uint','itemid',41775),(37865,'trends','itemid',41775),(37866,'trends_uint','itemid',41775),(37867,'events','itemid',41776),(37868,'history','itemid',41776),(37869,'history_log','itemid',41776),(37870,'history_str','itemid',41776),(37871,'history_text','itemid',41776),(37872,'history_uint','itemid',41776),(37873,'trends','itemid',41776),(37874,'trends_uint','itemid',41776),(37875,'events','itemid',41777),(37876,'history','itemid',41777),(37877,'history_log','itemid',41777),(37878,'history_str','itemid',41777),(37879,'history_text','itemid',41777),(37880,'history_uint','itemid',41777),(37881,'trends','itemid',41777),(37882,'trends_uint','itemid',41777),(37883,'events','itemid',41778),(37884,'history','itemid',41778),(37885,'history_log','itemid',41778),(37886,'history_str','itemid',41778),(37887,'history_text','itemid',41778),(37888,'history_uint','itemid',41778),(37889,'trends','itemid',41778),(37890,'trends_uint','itemid',41778),(37891,'events','itemid',41779),(37892,'history','itemid',41779),(37893,'history_log','itemid',41779),(37894,'history_str','itemid',41779),(37895,'history_text','itemid',41779),(37896,'history_uint','itemid',41779),(37897,'trends','itemid',41779),(37898,'trends_uint','itemid',41779),(37899,'events','itemid',41780),(37900,'history','itemid',41780),(37901,'history_log','itemid',41780),(37902,'history_str','itemid',41780),(37903,'history_text','itemid',41780),(37904,'history_uint','itemid',41780),(37905,'trends','itemid',41780),(37906,'trends_uint','itemid',41780),(37907,'events','itemid',41781),(37908,'history','itemid',41781),(37909,'history_log','itemid',41781),(37910,'history_str','itemid',41781),(37911,'history_text','itemid',41781),(37912,'history_uint','itemid',41781),(37913,'trends','itemid',41781),(37914,'trends_uint','itemid',41781),(37915,'events','itemid',41782),(37916,'history','itemid',41782),(37917,'history_log','itemid',41782),(37918,'history_str','itemid',41782),(37919,'history_text','itemid',41782),(37920,'history_uint','itemid',41782),(37921,'trends','itemid',41782),(37922,'trends_uint','itemid',41782),(37923,'events','itemid',41783),(37924,'history','itemid',41783),(37925,'history_log','itemid',41783),(37926,'history_str','itemid',41783),(37927,'history_text','itemid',41783),(37928,'history_uint','itemid',41783),(37929,'trends','itemid',41783),(37930,'trends_uint','itemid',41783),(37931,'events','itemid',41784),(37932,'history','itemid',41784),(37933,'history_log','itemid',41784),(37934,'history_str','itemid',41784),(37935,'history_text','itemid',41784),(37936,'history_uint','itemid',41784),(37937,'trends','itemid',41784),(37938,'trends_uint','itemid',41784),(37939,'events','itemid',41795),(37940,'history','itemid',41795),(37941,'history_log','itemid',41795),(37942,'history_str','itemid',41795),(37943,'history_text','itemid',41795),(37944,'history_uint','itemid',41795),(37945,'trends','itemid',41795),(37946,'trends_uint','itemid',41795),(37947,'events','itemid',41796),(37948,'history','itemid',41796),(37949,'history_log','itemid',41796),(37950,'history_str','itemid',41796),(37951,'history_text','itemid',41796),(37952,'history_uint','itemid',41796),(37953,'trends','itemid',41796),(37954,'trends_uint','itemid',41796),(37955,'events','itemid',41797),(37956,'history','itemid',41797),(37957,'history_log','itemid',41797),(37958,'history_str','itemid',41797),(37959,'history_text','itemid',41797),(37960,'history_uint','itemid',41797),(37961,'trends','itemid',41797),(37962,'trends_uint','itemid',41797),(37963,'events','itemid',41798),(37964,'history','itemid',41798),(37965,'history_log','itemid',41798),(37966,'history_str','itemid',41798),(37967,'history_text','itemid',41798),(37968,'history_uint','itemid',41798),(37969,'trends','itemid',41798),(37970,'trends_uint','itemid',41798),(37971,'events','itemid',41799),(37972,'history','itemid',41799),(37973,'history_log','itemid',41799),(37974,'history_str','itemid',41799),(37975,'history_text','itemid',41799),(37976,'history_uint','itemid',41799),(37977,'trends','itemid',41799),(37978,'trends_uint','itemid',41799),(37979,'events','itemid',41800),(37980,'history','itemid',41800),(37981,'history_log','itemid',41800),(37982,'history_str','itemid',41800),(37983,'history_text','itemid',41800),(37984,'history_uint','itemid',41800),(37985,'trends','itemid',41800),(37986,'trends_uint','itemid',41800),(37987,'events','itemid',41801),(37988,'history','itemid',41801),(37989,'history_log','itemid',41801),(37990,'history_str','itemid',41801),(37991,'history_text','itemid',41801),(37992,'history_uint','itemid',41801),(37993,'trends','itemid',41801),(37994,'trends_uint','itemid',41801),(37995,'events','itemid',41802),(37996,'history','itemid',41802),(37997,'history_log','itemid',41802),(37998,'history_str','itemid',41802),(37999,'history_text','itemid',41802),(38000,'history_uint','itemid',41802),(38001,'trends','itemid',41802),(38002,'trends_uint','itemid',41802),(38003,'events','itemid',41803),(38004,'history','itemid',41803),(38005,'history_log','itemid',41803),(38006,'history_str','itemid',41803),(38007,'history_text','itemid',41803),(38008,'history_uint','itemid',41803),(38009,'trends','itemid',41803),(38010,'trends_uint','itemid',41803),(38011,'events','itemid',41804),(38012,'history','itemid',41804),(38013,'history_log','itemid',41804),(38014,'history_str','itemid',41804),(38015,'history_text','itemid',41804),(38016,'history_uint','itemid',41804),(38017,'trends','itemid',41804),(38018,'trends_uint','itemid',41804),(38019,'events','itemid',41805),(38020,'history','itemid',41805),(38021,'history_log','itemid',41805),(38022,'history_str','itemid',41805),(38023,'history_text','itemid',41805),(38024,'history_uint','itemid',41805),(38025,'trends','itemid',41805),(38026,'trends_uint','itemid',41805),(38027,'events','itemid',41816),(38028,'history','itemid',41816),(38029,'history_log','itemid',41816),(38030,'history_str','itemid',41816),(38031,'history_text','itemid',41816),(38032,'history_uint','itemid',41816),(38033,'trends','itemid',41816),(38034,'trends_uint','itemid',41816),(38035,'events','itemid',41817),(38036,'history','itemid',41817),(38037,'history_log','itemid',41817),(38038,'history_str','itemid',41817),(38039,'history_text','itemid',41817),(38040,'history_uint','itemid',41817),(38041,'trends','itemid',41817),(38042,'trends_uint','itemid',41817),(38043,'events','itemid',41818),(38044,'history','itemid',41818),(38045,'history_log','itemid',41818),(38046,'history_str','itemid',41818),(38047,'history_text','itemid',41818),(38048,'history_uint','itemid',41818),(38049,'trends','itemid',41818),(38050,'trends_uint','itemid',41818),(38051,'events','itemid',41819),(38052,'history','itemid',41819),(38053,'history_log','itemid',41819),(38054,'history_str','itemid',41819),(38055,'history_text','itemid',41819),(38056,'history_uint','itemid',41819),(38057,'trends','itemid',41819),(38058,'trends_uint','itemid',41819),(38059,'events','itemid',41820),(38060,'history','itemid',41820),(38061,'history_log','itemid',41820),(38062,'history_str','itemid',41820),(38063,'history_text','itemid',41820),(38064,'history_uint','itemid',41820),(38065,'trends','itemid',41820),(38066,'trends_uint','itemid',41820),(38067,'events','itemid',41821),(38068,'history','itemid',41821),(38069,'history_log','itemid',41821),(38070,'history_str','itemid',41821),(38071,'history_text','itemid',41821),(38072,'history_uint','itemid',41821),(38073,'trends','itemid',41821),(38074,'trends_uint','itemid',41821),(38075,'events','itemid',41822),(38076,'history','itemid',41822),(38077,'history_log','itemid',41822),(38078,'history_str','itemid',41822),(38079,'history_text','itemid',41822),(38080,'history_uint','itemid',41822),(38081,'trends','itemid',41822),(38082,'trends_uint','itemid',41822),(38083,'events','itemid',41823),(38084,'history','itemid',41823),(38085,'history_log','itemid',41823),(38086,'history_str','itemid',41823),(38087,'history_text','itemid',41823),(38088,'history_uint','itemid',41823),(38089,'trends','itemid',41823),(38090,'trends_uint','itemid',41823),(38091,'events','itemid',41824),(38092,'history','itemid',41824),(38093,'history_log','itemid',41824),(38094,'history_str','itemid',41824),(38095,'history_text','itemid',41824),(38096,'history_uint','itemid',41824),(38097,'trends','itemid',41824),(38098,'trends_uint','itemid',41824),(38099,'events','itemid',41825),(38100,'history','itemid',41825),(38101,'history_log','itemid',41825),(38102,'history_str','itemid',41825),(38103,'history_text','itemid',41825),(38104,'history_uint','itemid',41825),(38105,'trends','itemid',41825),(38106,'trends_uint','itemid',41825),(38107,'events','itemid',41826),(38108,'history','itemid',41826),(38109,'history_log','itemid',41826),(38110,'history_str','itemid',41826),(38111,'history_text','itemid',41826),(38112,'history_uint','itemid',41826),(38113,'trends','itemid',41826),(38114,'trends_uint','itemid',41826),(38115,'events','itemid',41837),(38116,'history','itemid',41837),(38117,'history_log','itemid',41837),(38118,'history_str','itemid',41837),(38119,'history_text','itemid',41837),(38120,'history_uint','itemid',41837),(38121,'trends','itemid',41837),(38122,'trends_uint','itemid',41837),(38123,'events','itemid',41838),(38124,'history','itemid',41838),(38125,'history_log','itemid',41838),(38126,'history_str','itemid',41838),(38127,'history_text','itemid',41838),(38128,'history_uint','itemid',41838),(38129,'trends','itemid',41838),(38130,'trends_uint','itemid',41838),(38131,'events','itemid',41839),(38132,'history','itemid',41839),(38133,'history_log','itemid',41839),(38134,'history_str','itemid',41839),(38135,'history_text','itemid',41839),(38136,'history_uint','itemid',41839),(38137,'trends','itemid',41839),(38138,'trends_uint','itemid',41839),(38139,'events','itemid',41840),(38140,'history','itemid',41840),(38141,'history_log','itemid',41840),(38142,'history_str','itemid',41840),(38143,'history_text','itemid',41840),(38144,'history_uint','itemid',41840),(38145,'trends','itemid',41840),(38146,'trends_uint','itemid',41840),(38147,'events','itemid',41841),(38148,'history','itemid',41841),(38149,'history_log','itemid',41841),(38150,'history_str','itemid',41841),(38151,'history_text','itemid',41841),(38152,'history_uint','itemid',41841),(38153,'trends','itemid',41841),(38154,'trends_uint','itemid',41841),(38155,'events','itemid',41842),(38156,'history','itemid',41842),(38157,'history_log','itemid',41842),(38158,'history_str','itemid',41842),(38159,'history_text','itemid',41842),(38160,'history_uint','itemid',41842),(38161,'trends','itemid',41842),(38162,'trends_uint','itemid',41842),(38163,'events','itemid',41843),(38164,'history','itemid',41843),(38165,'history_log','itemid',41843),(38166,'history_str','itemid',41843),(38167,'history_text','itemid',41843),(38168,'history_uint','itemid',41843),(38169,'trends','itemid',41843),(38170,'trends_uint','itemid',41843),(38171,'events','itemid',41844),(38172,'history','itemid',41844),(38173,'history_log','itemid',41844),(38174,'history_str','itemid',41844),(38175,'history_text','itemid',41844),(38176,'history_uint','itemid',41844),(38177,'trends','itemid',41844),(38178,'trends_uint','itemid',41844),(38179,'events','itemid',41845),(38180,'history','itemid',41845),(38181,'history_log','itemid',41845),(38182,'history_str','itemid',41845),(38183,'history_text','itemid',41845),(38184,'history_uint','itemid',41845),(38185,'trends','itemid',41845),(38186,'trends_uint','itemid',41845),(38187,'events','itemid',41846),(38188,'history','itemid',41846),(38189,'history_log','itemid',41846),(38190,'history_str','itemid',41846),(38191,'history_text','itemid',41846),(38192,'history_uint','itemid',41846),(38193,'trends','itemid',41846),(38194,'trends_uint','itemid',41846),(38195,'events','itemid',41847),(38196,'history','itemid',41847),(38197,'history_log','itemid',41847),(38198,'history_str','itemid',41847),(38199,'history_text','itemid',41847),(38200,'history_uint','itemid',41847),(38201,'trends','itemid',41847),(38202,'trends_uint','itemid',41847),(38203,'events','itemid',41858),(38204,'history','itemid',41858),(38205,'history_log','itemid',41858),(38206,'history_str','itemid',41858),(38207,'history_text','itemid',41858),(38208,'history_uint','itemid',41858),(38209,'trends','itemid',41858),(38210,'trends_uint','itemid',41858),(38211,'events','itemid',41859),(38212,'history','itemid',41859),(38213,'history_log','itemid',41859),(38214,'history_str','itemid',41859),(38215,'history_text','itemid',41859),(38216,'history_uint','itemid',41859),(38217,'trends','itemid',41859),(38218,'trends_uint','itemid',41859),(38219,'events','itemid',41860),(38220,'history','itemid',41860),(38221,'history_log','itemid',41860),(38222,'history_str','itemid',41860),(38223,'history_text','itemid',41860),(38224,'history_uint','itemid',41860),(38225,'trends','itemid',41860),(38226,'trends_uint','itemid',41860),(38227,'events','itemid',41861),(38228,'history','itemid',41861),(38229,'history_log','itemid',41861),(38230,'history_str','itemid',41861),(38231,'history_text','itemid',41861),(38232,'history_uint','itemid',41861),(38233,'trends','itemid',41861),(38234,'trends_uint','itemid',41861),(38235,'events','itemid',41862),(38236,'history','itemid',41862),(38237,'history_log','itemid',41862),(38238,'history_str','itemid',41862),(38239,'history_text','itemid',41862),(38240,'history_uint','itemid',41862),(38241,'trends','itemid',41862),(38242,'trends_uint','itemid',41862),(38243,'events','itemid',41863),(38244,'history','itemid',41863),(38245,'history_log','itemid',41863),(38246,'history_str','itemid',41863),(38247,'history_text','itemid',41863),(38248,'history_uint','itemid',41863),(38249,'trends','itemid',41863),(38250,'trends_uint','itemid',41863),(38251,'events','itemid',41864),(38252,'history','itemid',41864),(38253,'history_log','itemid',41864),(38254,'history_str','itemid',41864),(38255,'history_text','itemid',41864),(38256,'history_uint','itemid',41864),(38257,'trends','itemid',41864),(38258,'trends_uint','itemid',41864),(38259,'events','itemid',41865),(38260,'history','itemid',41865),(38261,'history_log','itemid',41865),(38262,'history_str','itemid',41865),(38263,'history_text','itemid',41865),(38264,'history_uint','itemid',41865),(38265,'trends','itemid',41865),(38266,'trends_uint','itemid',41865),(38267,'events','itemid',41866),(38268,'history','itemid',41866),(38269,'history_log','itemid',41866),(38270,'history_str','itemid',41866),(38271,'history_text','itemid',41866),(38272,'history_uint','itemid',41866),(38273,'trends','itemid',41866),(38274,'trends_uint','itemid',41866),(38275,'events','itemid',41867),(38276,'history','itemid',41867),(38277,'history_log','itemid',41867),(38278,'history_str','itemid',41867),(38279,'history_text','itemid',41867),(38280,'history_uint','itemid',41867),(38281,'trends','itemid',41867),(38282,'trends_uint','itemid',41867),(38283,'events','itemid',41868),(38284,'history','itemid',41868),(38285,'history_log','itemid',41868),(38286,'history_str','itemid',41868),(38287,'history_text','itemid',41868),(38288,'history_uint','itemid',41868),(38289,'trends','itemid',41868),(38290,'trends_uint','itemid',41868),(38291,'events','itemid',41879),(38292,'history','itemid',41879),(38293,'history_log','itemid',41879),(38294,'history_str','itemid',41879),(38295,'history_text','itemid',41879),(38296,'history_uint','itemid',41879),(38297,'trends','itemid',41879),(38298,'trends_uint','itemid',41879),(38299,'events','itemid',41880),(38300,'history','itemid',41880),(38301,'history_log','itemid',41880),(38302,'history_str','itemid',41880),(38303,'history_text','itemid',41880),(38304,'history_uint','itemid',41880),(38305,'trends','itemid',41880),(38306,'trends_uint','itemid',41880),(38307,'events','itemid',41881),(38308,'history','itemid',41881),(38309,'history_log','itemid',41881),(38310,'history_str','itemid',41881),(38311,'history_text','itemid',41881),(38312,'history_uint','itemid',41881),(38313,'trends','itemid',41881),(38314,'trends_uint','itemid',41881),(38315,'events','itemid',41882),(38316,'history','itemid',41882),(38317,'history_log','itemid',41882),(38318,'history_str','itemid',41882),(38319,'history_text','itemid',41882),(38320,'history_uint','itemid',41882),(38321,'trends','itemid',41882),(38322,'trends_uint','itemid',41882),(38323,'events','itemid',41883),(38324,'history','itemid',41883),(38325,'history_log','itemid',41883),(38326,'history_str','itemid',41883),(38327,'history_text','itemid',41883),(38328,'history_uint','itemid',41883),(38329,'trends','itemid',41883),(38330,'trends_uint','itemid',41883),(38331,'events','itemid',41884),(38332,'history','itemid',41884),(38333,'history_log','itemid',41884),(38334,'history_str','itemid',41884),(38335,'history_text','itemid',41884),(38336,'history_uint','itemid',41884),(38337,'trends','itemid',41884),(38338,'trends_uint','itemid',41884),(38339,'events','itemid',41885),(38340,'history','itemid',41885),(38341,'history_log','itemid',41885),(38342,'history_str','itemid',41885),(38343,'history_text','itemid',41885),(38344,'history_uint','itemid',41885),(38345,'trends','itemid',41885),(38346,'trends_uint','itemid',41885),(38347,'events','itemid',41886),(38348,'history','itemid',41886),(38349,'history_log','itemid',41886),(38350,'history_str','itemid',41886),(38351,'history_text','itemid',41886),(38352,'history_uint','itemid',41886),(38353,'trends','itemid',41886),(38354,'trends_uint','itemid',41886),(38355,'events','itemid',41887),(38356,'history','itemid',41887),(38357,'history_log','itemid',41887),(38358,'history_str','itemid',41887),(38359,'history_text','itemid',41887),(38360,'history_uint','itemid',41887),(38361,'trends','itemid',41887),(38362,'trends_uint','itemid',41887),(38363,'events','itemid',41888),(38364,'history','itemid',41888),(38365,'history_log','itemid',41888),(38366,'history_str','itemid',41888),(38367,'history_text','itemid',41888),(38368,'history_uint','itemid',41888),(38369,'trends','itemid',41888),(38370,'trends_uint','itemid',41888),(38371,'events','itemid',41889),(38372,'history','itemid',41889),(38373,'history_log','itemid',41889),(38374,'history_str','itemid',41889),(38375,'history_text','itemid',41889),(38376,'history_uint','itemid',41889),(38377,'trends','itemid',41889),(38378,'trends_uint','itemid',41889),(38379,'events','itemid',42005),(38380,'history','itemid',42005),(38381,'history_log','itemid',42005),(38382,'history_str','itemid',42005),(38383,'history_text','itemid',42005),(38384,'history_uint','itemid',42005),(38385,'trends','itemid',42005),(38386,'trends_uint','itemid',42005),(38387,'events','itemid',42006),(38388,'history','itemid',42006),(38389,'history_log','itemid',42006),(38390,'history_str','itemid',42006),(38391,'history_text','itemid',42006),(38392,'history_uint','itemid',42006),(38393,'trends','itemid',42006),(38394,'trends_uint','itemid',42006),(38395,'events','itemid',42007),(38396,'history','itemid',42007),(38397,'history_log','itemid',42007),(38398,'history_str','itemid',42007),(38399,'history_text','itemid',42007),(38400,'history_uint','itemid',42007),(38401,'trends','itemid',42007),(38402,'trends_uint','itemid',42007),(38403,'events','itemid',42008),(38404,'history','itemid',42008),(38405,'history_log','itemid',42008),(38406,'history_str','itemid',42008),(38407,'history_text','itemid',42008),(38408,'history_uint','itemid',42008),(38409,'trends','itemid',42008),(38410,'trends_uint','itemid',42008),(38411,'events','itemid',42009),(38412,'history','itemid',42009),(38413,'history_log','itemid',42009),(38414,'history_str','itemid',42009),(38415,'history_text','itemid',42009),(38416,'history_uint','itemid',42009),(38417,'trends','itemid',42009),(38418,'trends_uint','itemid',42009),(38419,'events','itemid',42010),(38420,'history','itemid',42010),(38421,'history_log','itemid',42010),(38422,'history_str','itemid',42010),(38423,'history_text','itemid',42010),(38424,'history_uint','itemid',42010),(38425,'trends','itemid',42010),(38426,'trends_uint','itemid',42010),(38427,'events','itemid',42011),(38428,'history','itemid',42011),(38429,'history_log','itemid',42011),(38430,'history_str','itemid',42011),(38431,'history_text','itemid',42011),(38432,'history_uint','itemid',42011),(38433,'trends','itemid',42011),(38434,'trends_uint','itemid',42011),(38435,'events','itemid',42012),(38436,'history','itemid',42012),(38437,'history_log','itemid',42012),(38438,'history_str','itemid',42012),(38439,'history_text','itemid',42012),(38440,'history_uint','itemid',42012),(38441,'trends','itemid',42012),(38442,'trends_uint','itemid',42012),(38443,'events','itemid',42013),(38444,'history','itemid',42013),(38445,'history_log','itemid',42013),(38446,'history_str','itemid',42013),(38447,'history_text','itemid',42013),(38448,'history_uint','itemid',42013),(38449,'trends','itemid',42013),(38450,'trends_uint','itemid',42013),(38451,'events','itemid',42014),(38452,'history','itemid',42014),(38453,'history_log','itemid',42014),(38454,'history_str','itemid',42014),(38455,'history_text','itemid',42014),(38456,'history_uint','itemid',42014),(38457,'trends','itemid',42014),(38458,'trends_uint','itemid',42014),(38459,'events','itemid',42015),(38460,'history','itemid',42015),(38461,'history_log','itemid',42015),(38462,'history_str','itemid',42015),(38463,'history_text','itemid',42015),(38464,'history_uint','itemid',42015),(38465,'trends','itemid',42015),(38466,'trends_uint','itemid',42015),(38467,'events','itemid',42026),(38468,'history','itemid',42026),(38469,'history_log','itemid',42026),(38470,'history_str','itemid',42026),(38471,'history_text','itemid',42026),(38472,'history_uint','itemid',42026),(38473,'trends','itemid',42026),(38474,'trends_uint','itemid',42026),(38475,'events','itemid',42027),(38476,'history','itemid',42027),(38477,'history_log','itemid',42027),(38478,'history_str','itemid',42027),(38479,'history_text','itemid',42027),(38480,'history_uint','itemid',42027),(38481,'trends','itemid',42027),(38482,'trends_uint','itemid',42027),(38483,'events','itemid',42028),(38484,'history','itemid',42028),(38485,'history_log','itemid',42028),(38486,'history_str','itemid',42028),(38487,'history_text','itemid',42028),(38488,'history_uint','itemid',42028),(38489,'trends','itemid',42028),(38490,'trends_uint','itemid',42028),(38491,'events','itemid',42029),(38492,'history','itemid',42029),(38493,'history_log','itemid',42029),(38494,'history_str','itemid',42029),(38495,'history_text','itemid',42029),(38496,'history_uint','itemid',42029),(38497,'trends','itemid',42029),(38498,'trends_uint','itemid',42029),(38499,'events','itemid',42030),(38500,'history','itemid',42030),(38501,'history_log','itemid',42030),(38502,'history_str','itemid',42030),(38503,'history_text','itemid',42030),(38504,'history_uint','itemid',42030),(38505,'trends','itemid',42030),(38506,'trends_uint','itemid',42030),(38507,'events','itemid',42031),(38508,'history','itemid',42031),(38509,'history_log','itemid',42031),(38510,'history_str','itemid',42031),(38511,'history_text','itemid',42031),(38512,'history_uint','itemid',42031),(38513,'trends','itemid',42031),(38514,'trends_uint','itemid',42031),(38515,'events','itemid',42032),(38516,'history','itemid',42032),(38517,'history_log','itemid',42032),(38518,'history_str','itemid',42032),(38519,'history_text','itemid',42032),(38520,'history_uint','itemid',42032),(38521,'trends','itemid',42032),(38522,'trends_uint','itemid',42032),(38523,'events','itemid',42033),(38524,'history','itemid',42033),(38525,'history_log','itemid',42033),(38526,'history_str','itemid',42033),(38527,'history_text','itemid',42033),(38528,'history_uint','itemid',42033),(38529,'trends','itemid',42033),(38530,'trends_uint','itemid',42033),(38531,'events','itemid',42034),(38532,'history','itemid',42034),(38533,'history_log','itemid',42034),(38534,'history_str','itemid',42034),(38535,'history_text','itemid',42034),(38536,'history_uint','itemid',42034),(38537,'trends','itemid',42034),(38538,'trends_uint','itemid',42034),(38539,'events','itemid',42035),(38540,'history','itemid',42035),(38541,'history_log','itemid',42035),(38542,'history_str','itemid',42035),(38543,'history_text','itemid',42035),(38544,'history_uint','itemid',42035),(38545,'trends','itemid',42035),(38546,'trends_uint','itemid',42035),(38547,'events','itemid',42036),(38548,'history','itemid',42036),(38549,'history_log','itemid',42036),(38550,'history_str','itemid',42036),(38551,'history_text','itemid',42036),(38552,'history_uint','itemid',42036),(38553,'trends','itemid',42036),(38554,'trends_uint','itemid',42036),(38555,'events','itemid',42047),(38556,'history','itemid',42047),(38557,'history_log','itemid',42047),(38558,'history_str','itemid',42047),(38559,'history_text','itemid',42047),(38560,'history_uint','itemid',42047),(38561,'trends','itemid',42047),(38562,'trends_uint','itemid',42047),(38563,'events','itemid',42048),(38564,'history','itemid',42048),(38565,'history_log','itemid',42048),(38566,'history_str','itemid',42048),(38567,'history_text','itemid',42048),(38568,'history_uint','itemid',42048),(38569,'trends','itemid',42048),(38570,'trends_uint','itemid',42048),(38571,'events','itemid',42049),(38572,'history','itemid',42049),(38573,'history_log','itemid',42049),(38574,'history_str','itemid',42049),(38575,'history_text','itemid',42049),(38576,'history_uint','itemid',42049),(38577,'trends','itemid',42049),(38578,'trends_uint','itemid',42049),(38579,'events','itemid',42050),(38580,'history','itemid',42050),(38581,'history_log','itemid',42050),(38582,'history_str','itemid',42050),(38583,'history_text','itemid',42050),(38584,'history_uint','itemid',42050),(38585,'trends','itemid',42050),(38586,'trends_uint','itemid',42050),(38587,'events','itemid',42051),(38588,'history','itemid',42051),(38589,'history_log','itemid',42051),(38590,'history_str','itemid',42051),(38591,'history_text','itemid',42051),(38592,'history_uint','itemid',42051),(38593,'trends','itemid',42051),(38594,'trends_uint','itemid',42051),(38595,'events','itemid',42052),(38596,'history','itemid',42052),(38597,'history_log','itemid',42052),(38598,'history_str','itemid',42052),(38599,'history_text','itemid',42052),(38600,'history_uint','itemid',42052),(38601,'trends','itemid',42052),(38602,'trends_uint','itemid',42052),(38603,'events','itemid',42053),(38604,'history','itemid',42053),(38605,'history_log','itemid',42053),(38606,'history_str','itemid',42053),(38607,'history_text','itemid',42053),(38608,'history_uint','itemid',42053),(38609,'trends','itemid',42053),(38610,'trends_uint','itemid',42053),(38611,'events','itemid',42054),(38612,'history','itemid',42054),(38613,'history_log','itemid',42054),(38614,'history_str','itemid',42054),(38615,'history_text','itemid',42054),(38616,'history_uint','itemid',42054),(38617,'trends','itemid',42054),(38618,'trends_uint','itemid',42054),(38619,'events','itemid',42055),(38620,'history','itemid',42055),(38621,'history_log','itemid',42055),(38622,'history_str','itemid',42055),(38623,'history_text','itemid',42055),(38624,'history_uint','itemid',42055),(38625,'trends','itemid',42055),(38626,'trends_uint','itemid',42055),(38627,'events','itemid',42056),(38628,'history','itemid',42056),(38629,'history_log','itemid',42056),(38630,'history_str','itemid',42056),(38631,'history_text','itemid',42056),(38632,'history_uint','itemid',42056),(38633,'trends','itemid',42056),(38634,'trends_uint','itemid',42056),(38635,'events','itemid',42057),(38636,'history','itemid',42057),(38637,'history_log','itemid',42057),(38638,'history_str','itemid',42057),(38639,'history_text','itemid',42057),(38640,'history_uint','itemid',42057),(38641,'trends','itemid',42057),(38642,'trends_uint','itemid',42057),(38643,'events','itemid',42089),(38644,'history','itemid',42089),(38645,'history_log','itemid',42089),(38646,'history_str','itemid',42089),(38647,'history_text','itemid',42089),(38648,'history_uint','itemid',42089),(38649,'trends','itemid',42089),(38650,'trends_uint','itemid',42089),(38651,'events','itemid',42090),(38652,'history','itemid',42090),(38653,'history_log','itemid',42090),(38654,'history_str','itemid',42090),(38655,'history_text','itemid',42090),(38656,'history_uint','itemid',42090),(38657,'trends','itemid',42090),(38658,'trends_uint','itemid',42090),(38659,'events','itemid',42091),(38660,'history','itemid',42091),(38661,'history_log','itemid',42091),(38662,'history_str','itemid',42091),(38663,'history_text','itemid',42091),(38664,'history_uint','itemid',42091),(38665,'trends','itemid',42091),(38666,'trends_uint','itemid',42091),(38667,'events','itemid',42092),(38668,'history','itemid',42092),(38669,'history_log','itemid',42092),(38670,'history_str','itemid',42092),(38671,'history_text','itemid',42092),(38672,'history_uint','itemid',42092),(38673,'trends','itemid',42092),(38674,'trends_uint','itemid',42092),(38675,'events','itemid',42093),(38676,'history','itemid',42093),(38677,'history_log','itemid',42093),(38678,'history_str','itemid',42093),(38679,'history_text','itemid',42093),(38680,'history_uint','itemid',42093),(38681,'trends','itemid',42093),(38682,'trends_uint','itemid',42093),(38683,'events','itemid',42094),(38684,'history','itemid',42094),(38685,'history_log','itemid',42094),(38686,'history_str','itemid',42094),(38687,'history_text','itemid',42094),(38688,'history_uint','itemid',42094),(38689,'trends','itemid',42094),(38690,'trends_uint','itemid',42094),(38691,'events','itemid',42095),(38692,'history','itemid',42095),(38693,'history_log','itemid',42095),(38694,'history_str','itemid',42095),(38695,'history_text','itemid',42095),(38696,'history_uint','itemid',42095),(38697,'trends','itemid',42095),(38698,'trends_uint','itemid',42095),(38699,'events','itemid',42096),(38700,'history','itemid',42096),(38701,'history_log','itemid',42096),(38702,'history_str','itemid',42096),(38703,'history_text','itemid',42096),(38704,'history_uint','itemid',42096),(38705,'trends','itemid',42096),(38706,'trends_uint','itemid',42096),(38707,'events','itemid',42097),(38708,'history','itemid',42097),(38709,'history_log','itemid',42097),(38710,'history_str','itemid',42097),(38711,'history_text','itemid',42097),(38712,'history_uint','itemid',42097),(38713,'trends','itemid',42097),(38714,'trends_uint','itemid',42097),(38715,'events','itemid',42098),(38716,'history','itemid',42098),(38717,'history_log','itemid',42098),(38718,'history_str','itemid',42098),(38719,'history_text','itemid',42098),(38720,'history_uint','itemid',42098),(38721,'trends','itemid',42098),(38722,'trends_uint','itemid',42098),(38723,'events','itemid',42099),(38724,'history','itemid',42099),(38725,'history_log','itemid',42099),(38726,'history_str','itemid',42099),(38727,'history_text','itemid',42099),(38728,'history_uint','itemid',42099),(38729,'trends','itemid',42099),(38730,'trends_uint','itemid',42099),(38731,'events','itemid',42447),(38732,'history','itemid',42447),(38733,'history_log','itemid',42447),(38734,'history_str','itemid',42447),(38735,'history_text','itemid',42447),(38736,'history_uint','itemid',42447),(38737,'trends','itemid',42447),(38738,'trends_uint','itemid',42447),(38739,'events','itemid',42448),(38740,'history','itemid',42448),(38741,'history_log','itemid',42448),(38742,'history_str','itemid',42448),(38743,'history_text','itemid',42448),(38744,'history_uint','itemid',42448),(38745,'trends','itemid',42448),(38746,'trends_uint','itemid',42448),(38747,'events','itemid',42449),(38748,'history','itemid',42449),(38749,'history_log','itemid',42449),(38750,'history_str','itemid',42449),(38751,'history_text','itemid',42449),(38752,'history_uint','itemid',42449),(38753,'trends','itemid',42449),(38754,'trends_uint','itemid',42449),(38755,'events','itemid',42450),(38756,'history','itemid',42450),(38757,'history_log','itemid',42450),(38758,'history_str','itemid',42450),(38759,'history_text','itemid',42450),(38760,'history_uint','itemid',42450),(38761,'trends','itemid',42450),(38762,'trends_uint','itemid',42450),(38763,'events','itemid',42609),(38764,'history','itemid',42609),(38765,'history_log','itemid',42609),(38766,'history_str','itemid',42609),(38767,'history_text','itemid',42609),(38768,'history_uint','itemid',42609),(38769,'trends','itemid',42609),(38770,'trends_uint','itemid',42609),(38771,'events','itemid',42610),(38772,'history','itemid',42610),(38773,'history_log','itemid',42610),(38774,'history_str','itemid',42610),(38775,'history_text','itemid',42610),(38776,'history_uint','itemid',42610),(38777,'trends','itemid',42610),(38778,'trends_uint','itemid',42610),(38779,'events','itemid',42611),(38780,'history','itemid',42611),(38781,'history_log','itemid',42611),(38782,'history_str','itemid',42611),(38783,'history_text','itemid',42611),(38784,'history_uint','itemid',42611),(38785,'trends','itemid',42611),(38786,'trends_uint','itemid',42611),(38787,'events','itemid',42612),(38788,'history','itemid',42612),(38789,'history_log','itemid',42612),(38790,'history_str','itemid',42612),(38791,'history_text','itemid',42612),(38792,'history_uint','itemid',42612),(38793,'trends','itemid',42612),(38794,'trends_uint','itemid',42612),(38795,'events','itemid',42613),(38796,'history','itemid',42613),(38797,'history_log','itemid',42613),(38798,'history_str','itemid',42613),(38799,'history_text','itemid',42613),(38800,'history_uint','itemid',42613),(38801,'trends','itemid',42613),(38802,'trends_uint','itemid',42613),(38803,'events','itemid',42614),(38804,'history','itemid',42614),(38805,'history_log','itemid',42614),(38806,'history_str','itemid',42614),(38807,'history_text','itemid',42614),(38808,'history_uint','itemid',42614),(38809,'trends','itemid',42614),(38810,'trends_uint','itemid',42614),(38811,'events','itemid',42615),(38812,'history','itemid',42615),(38813,'history_log','itemid',42615),(38814,'history_str','itemid',42615),(38815,'history_text','itemid',42615),(38816,'history_uint','itemid',42615),(38817,'trends','itemid',42615),(38818,'trends_uint','itemid',42615),(38819,'events','itemid',42616),(38820,'history','itemid',42616),(38821,'history_log','itemid',42616),(38822,'history_str','itemid',42616),(38823,'history_text','itemid',42616),(38824,'history_uint','itemid',42616),(38825,'trends','itemid',42616),(38826,'trends_uint','itemid',42616),(38827,'events','itemid',42617),(38828,'history','itemid',42617),(38829,'history_log','itemid',42617),(38830,'history_str','itemid',42617),(38831,'history_text','itemid',42617),(38832,'history_uint','itemid',42617),(38833,'trends','itemid',42617),(38834,'trends_uint','itemid',42617),(38835,'events','itemid',42618),(38836,'history','itemid',42618),(38837,'history_log','itemid',42618),(38838,'history_str','itemid',42618),(38839,'history_text','itemid',42618),(38840,'history_uint','itemid',42618),(38841,'trends','itemid',42618),(38842,'trends_uint','itemid',42618),(38843,'events','itemid',42619),(38844,'history','itemid',42619),(38845,'history_log','itemid',42619),(38846,'history_str','itemid',42619),(38847,'history_text','itemid',42619),(38848,'history_uint','itemid',42619),(38849,'trends','itemid',42619),(38850,'trends_uint','itemid',42619),(38851,'events','itemid',42724),(38852,'history','itemid',42724),(38853,'history_log','itemid',42724),(38854,'history_str','itemid',42724),(38855,'history_text','itemid',42724),(38856,'history_uint','itemid',42724),(38857,'trends','itemid',42724),(38858,'trends_uint','itemid',42724),(38859,'events','itemid',42725),(38860,'history','itemid',42725),(38861,'history_log','itemid',42725),(38862,'history_str','itemid',42725),(38863,'history_text','itemid',42725),(38864,'history_uint','itemid',42725),(38865,'trends','itemid',42725),(38866,'trends_uint','itemid',42725),(38867,'events','itemid',43547),(38868,'history','itemid',43547),(38869,'history_log','itemid',43547),(38870,'history_str','itemid',43547),(38871,'history_text','itemid',43547),(38872,'history_uint','itemid',43547),(38873,'trends','itemid',43547),(38874,'trends_uint','itemid',43547),(38875,'events','itemid',43548),(38876,'history','itemid',43548),(38877,'history_log','itemid',43548),(38878,'history_str','itemid',43548),(38879,'history_text','itemid',43548),(38880,'history_uint','itemid',43548),(38881,'trends','itemid',43548),(38882,'trends_uint','itemid',43548),(38883,'events','itemid',43549),(38884,'history','itemid',43549),(38885,'history_log','itemid',43549),(38886,'history_str','itemid',43549),(38887,'history_text','itemid',43549),(38888,'history_uint','itemid',43549),(38889,'trends','itemid',43549),(38890,'trends_uint','itemid',43549),(38891,'events','itemid',43550),(38892,'history','itemid',43550),(38893,'history_log','itemid',43550),(38894,'history_str','itemid',43550),(38895,'history_text','itemid',43550),(38896,'history_uint','itemid',43550),(38897,'trends','itemid',43550),(38898,'trends_uint','itemid',43550),(38899,'events','itemid',43551),(38900,'history','itemid',43551),(38901,'history_log','itemid',43551),(38902,'history_str','itemid',43551),(38903,'history_text','itemid',43551),(38904,'history_uint','itemid',43551),(38905,'trends','itemid',43551),(38906,'trends_uint','itemid',43551),(38907,'events','itemid',43552),(38908,'history','itemid',43552),(38909,'history_log','itemid',43552),(38910,'history_str','itemid',43552),(38911,'history_text','itemid',43552),(38912,'history_uint','itemid',43552),(38913,'trends','itemid',43552),(38914,'trends_uint','itemid',43552),(38915,'events','itemid',43553),(38916,'history','itemid',43553),(38917,'history_log','itemid',43553),(38918,'history_str','itemid',43553),(38919,'history_text','itemid',43553),(38920,'history_uint','itemid',43553),(38921,'trends','itemid',43553),(38922,'trends_uint','itemid',43553),(38923,'events','itemid',43554),(38924,'history','itemid',43554),(38925,'history_log','itemid',43554),(38926,'history_str','itemid',43554),(38927,'history_text','itemid',43554),(38928,'history_uint','itemid',43554),(38929,'trends','itemid',43554),(38930,'trends_uint','itemid',43554),(38931,'events','itemid',43555),(38932,'history','itemid',43555),(38933,'history_log','itemid',43555),(38934,'history_str','itemid',43555),(38935,'history_text','itemid',43555),(38936,'history_uint','itemid',43555),(38937,'trends','itemid',43555),(38938,'trends_uint','itemid',43555),(38939,'events','itemid',43556),(38940,'history','itemid',43556),(38941,'history_log','itemid',43556),(38942,'history_str','itemid',43556),(38943,'history_text','itemid',43556),(38944,'history_uint','itemid',43556),(38945,'trends','itemid',43556),(38946,'trends_uint','itemid',43556),(38947,'events','itemid',43557),(38948,'history','itemid',43557),(38949,'history_log','itemid',43557),(38950,'history_str','itemid',43557),(38951,'history_text','itemid',43557),(38952,'history_uint','itemid',43557),(38953,'trends','itemid',43557),(38954,'trends_uint','itemid',43557),(38955,'events','itemid',43558),(38956,'history','itemid',43558),(38957,'history_log','itemid',43558),(38958,'history_str','itemid',43558),(38959,'history_text','itemid',43558),(38960,'history_uint','itemid',43558),(38961,'trends','itemid',43558),(38962,'trends_uint','itemid',43558),(38963,'events','itemid',43559),(38964,'history','itemid',43559),(38965,'history_log','itemid',43559),(38966,'history_str','itemid',43559),(38967,'history_text','itemid',43559),(38968,'history_uint','itemid',43559),(38969,'trends','itemid',43559),(38970,'trends_uint','itemid',43559),(38971,'events','itemid',43560),(38972,'history','itemid',43560),(38973,'history_log','itemid',43560),(38974,'history_str','itemid',43560),(38975,'history_text','itemid',43560),(38976,'history_uint','itemid',43560),(38977,'trends','itemid',43560),(38978,'trends_uint','itemid',43560),(38979,'events','itemid',43561),(38980,'history','itemid',43561),(38981,'history_log','itemid',43561),(38982,'history_str','itemid',43561),(38983,'history_text','itemid',43561),(38984,'history_uint','itemid',43561),(38985,'trends','itemid',43561),(38986,'trends_uint','itemid',43561),(38987,'events','itemid',43562),(38988,'history','itemid',43562),(38989,'history_log','itemid',43562),(38990,'history_str','itemid',43562),(38991,'history_text','itemid',43562),(38992,'history_uint','itemid',43562),(38993,'trends','itemid',43562),(38994,'trends_uint','itemid',43562),(38995,'events','itemid',43563),(38996,'history','itemid',43563),(38997,'history_log','itemid',43563),(38998,'history_str','itemid',43563),(38999,'history_text','itemid',43563),(39000,'history_uint','itemid',43563),(39001,'trends','itemid',43563),(39002,'trends_uint','itemid',43563),(39003,'events','itemid',43564),(39004,'history','itemid',43564),(39005,'history_log','itemid',43564),(39006,'history_str','itemid',43564),(39007,'history_text','itemid',43564),(39008,'history_uint','itemid',43564),(39009,'trends','itemid',43564),(39010,'trends_uint','itemid',43564),(39011,'events','itemid',43787),(39012,'history','itemid',43787),(39013,'history_log','itemid',43787),(39014,'history_str','itemid',43787),(39015,'history_text','itemid',43787),(39016,'history_uint','itemid',43787),(39017,'trends','itemid',43787),(39018,'trends_uint','itemid',43787),(39019,'events','itemid',43826),(39020,'history','itemid',43826),(39021,'history_log','itemid',43826),(39022,'history_str','itemid',43826),(39023,'history_text','itemid',43826),(39024,'history_uint','itemid',43826),(39025,'trends','itemid',43826),(39026,'trends_uint','itemid',43826),(39027,'events','itemid',43827),(39028,'history','itemid',43827),(39029,'history_log','itemid',43827),(39030,'history_str','itemid',43827),(39031,'history_text','itemid',43827),(39032,'history_uint','itemid',43827),(39033,'trends','itemid',43827),(39034,'trends_uint','itemid',43827),(39035,'events','itemid',43828),(39036,'history','itemid',43828),(39037,'history_log','itemid',43828),(39038,'history_str','itemid',43828),(39039,'history_text','itemid',43828),(39040,'history_uint','itemid',43828),(39041,'trends','itemid',43828),(39042,'trends_uint','itemid',43828),(39043,'events','itemid',43829),(39044,'history','itemid',43829),(39045,'history_log','itemid',43829),(39046,'history_str','itemid',43829),(39047,'history_text','itemid',43829),(39048,'history_uint','itemid',43829),(39049,'trends','itemid',43829),(39050,'trends_uint','itemid',43829),(39051,'events','itemid',43830),(39052,'history','itemid',43830),(39053,'history_log','itemid',43830),(39054,'history_str','itemid',43830),(39055,'history_text','itemid',43830),(39056,'history_uint','itemid',43830),(39057,'trends','itemid',43830),(39058,'trends_uint','itemid',43830),(39059,'events','itemid',43831),(39060,'history','itemid',43831),(39061,'history_log','itemid',43831),(39062,'history_str','itemid',43831),(39063,'history_text','itemid',43831),(39064,'history_uint','itemid',43831),(39065,'trends','itemid',43831),(39066,'trends_uint','itemid',43831),(39067,'events','itemid',43832),(39068,'history','itemid',43832),(39069,'history_log','itemid',43832),(39070,'history_str','itemid',43832),(39071,'history_text','itemid',43832),(39072,'history_uint','itemid',43832),(39073,'trends','itemid',43832),(39074,'trends_uint','itemid',43832),(39075,'events','itemid',43833),(39076,'history','itemid',43833),(39077,'history_log','itemid',43833),(39078,'history_str','itemid',43833),(39079,'history_text','itemid',43833),(39080,'history_uint','itemid',43833),(39081,'trends','itemid',43833),(39082,'trends_uint','itemid',43833),(39083,'events','itemid',43834),(39084,'history','itemid',43834),(39085,'history_log','itemid',43834),(39086,'history_str','itemid',43834),(39087,'history_text','itemid',43834),(39088,'history_uint','itemid',43834),(39089,'trends','itemid',43834),(39090,'trends_uint','itemid',43834),(39091,'events','itemid',43835),(39092,'history','itemid',43835),(39093,'history_log','itemid',43835),(39094,'history_str','itemid',43835),(39095,'history_text','itemid',43835),(39096,'history_uint','itemid',43835),(39097,'trends','itemid',43835),(39098,'trends_uint','itemid',43835),(39099,'events','itemid',43836),(39100,'history','itemid',43836),(39101,'history_log','itemid',43836),(39102,'history_str','itemid',43836),(39103,'history_text','itemid',43836),(39104,'history_uint','itemid',43836),(39105,'trends','itemid',43836),(39106,'trends_uint','itemid',43836),(39107,'events','itemid',43837),(39108,'history','itemid',43837),(39109,'history_log','itemid',43837),(39110,'history_str','itemid',43837),(39111,'history_text','itemid',43837),(39112,'history_uint','itemid',43837),(39113,'trends','itemid',43837),(39114,'trends_uint','itemid',43837),(39115,'events','itemid',43838),(39116,'history','itemid',43838),(39117,'history_log','itemid',43838),(39118,'history_str','itemid',43838),(39119,'history_text','itemid',43838),(39120,'history_uint','itemid',43838),(39121,'trends','itemid',43838),(39122,'trends_uint','itemid',43838),(39123,'events','itemid',43839),(39124,'history','itemid',43839),(39125,'history_log','itemid',43839),(39126,'history_str','itemid',43839),(39127,'history_text','itemid',43839),(39128,'history_uint','itemid',43839),(39129,'trends','itemid',43839),(39130,'trends_uint','itemid',43839),(39131,'events','itemid',43845),(39132,'history','itemid',43845),(39133,'history_log','itemid',43845),(39134,'history_str','itemid',43845),(39135,'history_text','itemid',43845),(39136,'history_uint','itemid',43845),(39137,'trends','itemid',43845),(39138,'trends_uint','itemid',43845),(39139,'events','itemid',43846),(39140,'history','itemid',43846),(39141,'history_log','itemid',43846),(39142,'history_str','itemid',43846),(39143,'history_text','itemid',43846),(39144,'history_uint','itemid',43846),(39145,'trends','itemid',43846),(39146,'trends_uint','itemid',43846),(39147,'events','itemid',43847),(39148,'history','itemid',43847),(39149,'history_log','itemid',43847),(39150,'history_str','itemid',43847),(39151,'history_text','itemid',43847),(39152,'history_uint','itemid',43847),(39153,'trends','itemid',43847),(39154,'trends_uint','itemid',43847),(39155,'events','itemid',43849),(39156,'history','itemid',43849),(39157,'history_log','itemid',43849),(39158,'history_str','itemid',43849),(39159,'history_text','itemid',43849),(39160,'history_uint','itemid',43849),(39161,'trends','itemid',43849),(39162,'trends_uint','itemid',43849),(39163,'events','itemid',43850),(39164,'history','itemid',43850),(39165,'history_log','itemid',43850),(39166,'history_str','itemid',43850),(39167,'history_text','itemid',43850),(39168,'history_uint','itemid',43850),(39169,'trends','itemid',43850),(39170,'trends_uint','itemid',43850),(39171,'events','itemid',43851),(39172,'history','itemid',43851),(39173,'history_log','itemid',43851),(39174,'history_str','itemid',43851),(39175,'history_text','itemid',43851),(39176,'history_uint','itemid',43851),(39177,'trends','itemid',43851),(39178,'trends_uint','itemid',43851),(39179,'events','itemid',43852),(39180,'history','itemid',43852),(39181,'history_log','itemid',43852),(39182,'history_str','itemid',43852),(39183,'history_text','itemid',43852),(39184,'history_uint','itemid',43852),(39185,'trends','itemid',43852),(39186,'trends_uint','itemid',43852),(39187,'events','itemid',43853),(39188,'history','itemid',43853),(39189,'history_log','itemid',43853),(39190,'history_str','itemid',43853),(39191,'history_text','itemid',43853),(39192,'history_uint','itemid',43853),(39193,'trends','itemid',43853),(39194,'trends_uint','itemid',43853),(39195,'events','itemid',43854),(39196,'history','itemid',43854),(39197,'history_log','itemid',43854),(39198,'history_str','itemid',43854),(39199,'history_text','itemid',43854),(39200,'history_uint','itemid',43854),(39201,'trends','itemid',43854),(39202,'trends_uint','itemid',43854),(39203,'events','itemid',43855),(39204,'history','itemid',43855),(39205,'history_log','itemid',43855),(39206,'history_str','itemid',43855),(39207,'history_text','itemid',43855),(39208,'history_uint','itemid',43855),(39209,'trends','itemid',43855),(39210,'trends_uint','itemid',43855),(39211,'events','itemid',43856),(39212,'history','itemid',43856),(39213,'history_log','itemid',43856),(39214,'history_str','itemid',43856),(39215,'history_text','itemid',43856),(39216,'history_uint','itemid',43856),(39217,'trends','itemid',43856),(39218,'trends_uint','itemid',43856),(39219,'events','itemid',43888),(39220,'history','itemid',43888),(39221,'history_log','itemid',43888),(39222,'history_str','itemid',43888),(39223,'history_text','itemid',43888),(39224,'history_uint','itemid',43888),(39225,'trends','itemid',43888),(39226,'trends_uint','itemid',43888),(39227,'events','itemid',44235),(39228,'history','itemid',44235),(39229,'history_log','itemid',44235),(39230,'history_str','itemid',44235),(39231,'history_text','itemid',44235),(39232,'history_uint','itemid',44235),(39233,'trends','itemid',44235),(39234,'trends_uint','itemid',44235),(39235,'events','itemid',44343),(39236,'history','itemid',44343),(39237,'history_log','itemid',44343),(39238,'history_str','itemid',44343),(39239,'history_text','itemid',44343),(39240,'history_uint','itemid',44343),(39241,'trends','itemid',44343),(39242,'trends_uint','itemid',44343),(39243,'events','itemid',44351),(39244,'history','itemid',44351),(39245,'history_log','itemid',44351),(39246,'history_str','itemid',44351),(39247,'history_text','itemid',44351),(39248,'history_uint','itemid',44351),(39249,'trends','itemid',44351),(39250,'trends_uint','itemid',44351),(39251,'events','itemid',44447),(39252,'history','itemid',44447),(39253,'history_log','itemid',44447),(39254,'history_str','itemid',44447),(39255,'history_text','itemid',44447),(39256,'history_uint','itemid',44447),(39257,'trends','itemid',44447),(39258,'trends_uint','itemid',44447),(39259,'events','lldruleid',23024),(39260,'events','lldruleid',23027),(39261,'events','lldruleid',28001),(39262,'events','lldruleid',28002),(39263,'events','lldruleid',28493),(39264,'events','lldruleid',28494),(39265,'events','lldruleid',29506),(39266,'events','lldruleid',29703),(39267,'events','lldruleid',29785),(39268,'events','lldruleid',29786),(39269,'events','lldruleid',30026),(39270,'events','lldruleid',30127),(39271,'events','lldruleid',30128),(39272,'events','lldruleid',30337),(39273,'events','lldruleid',30338),(39274,'events','lldruleid',30339),(39275,'events','lldruleid',30340),(39276,'events','lldruleid',30341),(39277,'events','lldruleid',30342),(39278,'events','lldruleid',30343),(39279,'events','lldruleid',30423),(39280,'events','lldruleid',31334),(39281,'events','lldruleid',31429),(39282,'events','lldruleid',31430),(39283,'events','lldruleid',31655),(39284,'events','lldruleid',31656),(39285,'events','lldruleid',31657),(39286,'events','lldruleid',31658),(39287,'events','lldruleid',32004),(39288,'events','lldruleid',32005),(39289,'events','lldruleid',32006),(39290,'events','lldruleid',32931),(39291,'events','lldruleid',32932),(39292,'events','lldruleid',32933),(39293,'events','lldruleid',32934),(39294,'events','lldruleid',32954),(39295,'events','lldruleid',32955),(39296,'events','lldruleid',32956),(39297,'events','lldruleid',32957),(39298,'events','lldruleid',33177),(39299,'events','lldruleid',33658),(39300,'events','lldruleid',33670),(39301,'events','lldruleid',33744),(39302,'events','lldruleid',33745),(39303,'events','lldruleid',33746),(39304,'events','lldruleid',33754),(39305,'events','lldruleid',33755),(39306,'events','lldruleid',33756),(39307,'events','lldruleid',34342),(39308,'events','lldruleid',34343),(39309,'events','lldruleid',34344),(39310,'events','lldruleid',34345),(39311,'events','lldruleid',34346),(39312,'events','lldruleid',34347),(39313,'events','lldruleid',34399),(39314,'events','lldruleid',34400),(39315,'events','lldruleid',34401),(39316,'events','lldruleid',34402),(39317,'events','lldruleid',34403),(39318,'events','lldruleid',34404),(39319,'events','lldruleid',34440),(39320,'events','lldruleid',34441),(39321,'events','lldruleid',34442),(39322,'events','lldruleid',34443),(39323,'events','lldruleid',34942),(39324,'events','lldruleid',34943),(39325,'events','lldruleid',34966),(39326,'events','lldruleid',34967),(39327,'events','lldruleid',34968),(39328,'events','lldruleid',34969),(39329,'events','lldruleid',35262),(39330,'events','lldruleid',35263),(39331,'events','lldruleid',36781),(39332,'events','lldruleid',39749),(39333,'events','lldruleid',39750),(39334,'events','lldruleid',39751),(39335,'events','lldruleid',39752),(39336,'events','lldruleid',39753),(39337,'events','lldruleid',39816),(39338,'events','lldruleid',42121),(39339,'events','lldruleid',42122),(39340,'events','lldruleid',42144),(39341,'events','lldruleid',42165),(39342,'events','lldruleid',42487),(39343,'events','lldruleid',42488),(39344,'events','lldruleid',42489),(39345,'events','lldruleid',42490),(39346,'events','lldruleid',42543),(39347,'events','lldruleid',42544),(39348,'events','lldruleid',42545),(39349,'events','lldruleid',42546),(39350,'events','lldruleid',42580),(39351,'events','lldruleid',42581),(39352,'events','lldruleid',42582),(39353,'events','lldruleid',42741),(39354,'events','lldruleid',42742),(39355,'events','lldruleid',42743),(39356,'events','lldruleid',42744),(39357,'events','lldruleid',42745),(39358,'events','lldruleid',42834),(39359,'events','lldruleid',42835),(39360,'events','lldruleid',42836),(39361,'events','lldruleid',42837),(39362,'events','lldruleid',42838),(39363,'events','lldruleid',42839),(39364,'events','lldruleid',42840),(39365,'events','lldruleid',42878),(39366,'events','lldruleid',44082),(39367,'events','lldruleid',44360),(39368,'events','itemid',22996),(39369,'history','itemid',22996),(39370,'history_log','itemid',22996),(39371,'history_str','itemid',22996),(39372,'history_text','itemid',22996),(39373,'history_uint','itemid',22996),(39374,'trends','itemid',22996),(39375,'trends_uint','itemid',22996),(39376,'events','itemid',22997),(39377,'history','itemid',22997),(39378,'history_log','itemid',22997),(39379,'history_str','itemid',22997),(39380,'history_text','itemid',22997),(39381,'history_uint','itemid',22997),(39382,'trends','itemid',22997),(39383,'trends_uint','itemid',22997),(39384,'events','itemid',22998),(39385,'history','itemid',22998),(39386,'history_log','itemid',22998),(39387,'history_str','itemid',22998),(39388,'history_text','itemid',22998),(39389,'history_uint','itemid',22998),(39390,'trends','itemid',22998),(39391,'trends_uint','itemid',22998),(39392,'events','itemid',22999),(39393,'history','itemid',22999),(39394,'history_log','itemid',22999),(39395,'history_str','itemid',22999),(39396,'history_text','itemid',22999),(39397,'history_uint','itemid',22999),(39398,'trends','itemid',22999),(39399,'trends_uint','itemid',22999),(39400,'events','itemid',23000),(39401,'history','itemid',23000),(39402,'history_log','itemid',23000),(39403,'history_str','itemid',23000),(39404,'history_text','itemid',23000),(39405,'history_uint','itemid',23000),(39406,'trends','itemid',23000),(39407,'trends_uint','itemid',23000),(39408,'events','itemid',23001),(39409,'history','itemid',23001),(39410,'history_log','itemid',23001),(39411,'history_str','itemid',23001),(39412,'history_text','itemid',23001),(39413,'history_uint','itemid',23001),(39414,'trends','itemid',23001),(39415,'trends_uint','itemid',23001),(39416,'events','itemid',23002),(39417,'history','itemid',23002),(39418,'history_log','itemid',23002),(39419,'history_str','itemid',23002),(39420,'history_text','itemid',23002),(39421,'history_uint','itemid',23002),(39422,'trends','itemid',23002),(39423,'trends_uint','itemid',23002),(39424,'events','itemid',23003),(39425,'history','itemid',23003),(39426,'history_log','itemid',23003),(39427,'history_str','itemid',23003),(39428,'history_text','itemid',23003),(39429,'history_uint','itemid',23003),(39430,'trends','itemid',23003),(39431,'trends_uint','itemid',23003),(39432,'events','itemid',23004),(39433,'history','itemid',23004),(39434,'history_log','itemid',23004),(39435,'history_str','itemid',23004),(39436,'history_text','itemid',23004),(39437,'history_uint','itemid',23004),(39438,'trends','itemid',23004),(39439,'trends_uint','itemid',23004),(39440,'events','itemid',23005),(39441,'history','itemid',23005),(39442,'history_log','itemid',23005),(39443,'history_str','itemid',23005),(39444,'history_text','itemid',23005),(39445,'history_uint','itemid',23005),(39446,'trends','itemid',23005),(39447,'trends_uint','itemid',23005),(39448,'events','itemid',23007),(39449,'history','itemid',23007),(39450,'history_log','itemid',23007),(39451,'history_str','itemid',23007),(39452,'history_text','itemid',23007),(39453,'history_uint','itemid',23007),(39454,'trends','itemid',23007),(39455,'trends_uint','itemid',23007),(39456,'events','itemid',23011),(39457,'history','itemid',23011),(39458,'history_log','itemid',23011),(39459,'history_str','itemid',23011),(39460,'history_text','itemid',23011),(39461,'history_uint','itemid',23011),(39462,'trends','itemid',23011),(39463,'trends_uint','itemid',23011),(39464,'events','itemid',23012),(39465,'history','itemid',23012),(39466,'history_log','itemid',23012),(39467,'history_str','itemid',23012),(39468,'history_text','itemid',23012),(39469,'history_uint','itemid',23012),(39470,'trends','itemid',23012),(39471,'trends_uint','itemid',23012),(39472,'events','itemid',23013),(39473,'history','itemid',23013),(39474,'history_log','itemid',23013),(39475,'history_str','itemid',23013),(39476,'history_text','itemid',23013),(39477,'history_uint','itemid',23013),(39478,'trends','itemid',23013),(39479,'trends_uint','itemid',23013),(39480,'events','itemid',23014),(39481,'history','itemid',23014),(39482,'history_log','itemid',23014),(39483,'history_str','itemid',23014),(39484,'history_text','itemid',23014),(39485,'history_uint','itemid',23014),(39486,'trends','itemid',23014),(39487,'trends_uint','itemid',23014),(39488,'events','itemid',23015),(39489,'history','itemid',23015),(39490,'history_log','itemid',23015),(39491,'history_str','itemid',23015),(39492,'history_text','itemid',23015),(39493,'history_uint','itemid',23015),(39494,'trends','itemid',23015),(39495,'trends_uint','itemid',23015),(39496,'events','itemid',23016),(39497,'history','itemid',23016),(39498,'history_log','itemid',23016),(39499,'history_str','itemid',23016),(39500,'history_text','itemid',23016),(39501,'history_uint','itemid',23016),(39502,'trends','itemid',23016),(39503,'trends_uint','itemid',23016),(39504,'events','itemid',23017),(39505,'history','itemid',23017),(39506,'history_log','itemid',23017),(39507,'history_str','itemid',23017),(39508,'history_text','itemid',23017),(39509,'history_uint','itemid',23017),(39510,'trends','itemid',23017),(39511,'trends_uint','itemid',23017),(39512,'events','itemid',23018),(39513,'history','itemid',23018),(39514,'history_log','itemid',23018),(39515,'history_str','itemid',23018),(39516,'history_text','itemid',23018),(39517,'history_uint','itemid',23018),(39518,'trends','itemid',23018),(39519,'trends_uint','itemid',23018),(39520,'events','itemid',23019),(39521,'history','itemid',23019),(39522,'history_log','itemid',23019),(39523,'history_str','itemid',23019),(39524,'history_text','itemid',23019),(39525,'history_uint','itemid',23019),(39526,'trends','itemid',23019),(39527,'trends_uint','itemid',23019),(39528,'events','itemid',23020),(39529,'history','itemid',23020),(39530,'history_log','itemid',23020),(39531,'history_str','itemid',23020),(39532,'history_text','itemid',23020),(39533,'history_uint','itemid',23020),(39534,'trends','itemid',23020),(39535,'trends_uint','itemid',23020),(39536,'events','itemid',23021),(39537,'history','itemid',23021),(39538,'history_log','itemid',23021),(39539,'history_str','itemid',23021),(39540,'history_text','itemid',23021),(39541,'history_uint','itemid',23021),(39542,'trends','itemid',23021),(39543,'trends_uint','itemid',23021),(39544,'events','itemid',23022),(39545,'history','itemid',23022),(39546,'history_log','itemid',23022),(39547,'history_str','itemid',23022),(39548,'history_text','itemid',23022),(39549,'history_uint','itemid',23022),(39550,'trends','itemid',23022),(39551,'trends_uint','itemid',23022),(39552,'events','itemid',23023),(39553,'history','itemid',23023),(39554,'history_log','itemid',23023),(39555,'history_str','itemid',23023),(39556,'history_text','itemid',23023),(39557,'history_uint','itemid',23023),(39558,'trends','itemid',23023),(39559,'trends_uint','itemid',23023),(39560,'events','itemid',23652),(39561,'history','itemid',23652),(39562,'history_log','itemid',23652),(39563,'history_str','itemid',23652),(39564,'history_text','itemid',23652),(39565,'history_uint','itemid',23652),(39566,'trends','itemid',23652),(39567,'trends_uint','itemid',23652),(39568,'events','itemid',23653),(39569,'history','itemid',23653),(39570,'history_log','itemid',23653),(39571,'history_str','itemid',23653),(39572,'history_text','itemid',23653),(39573,'history_uint','itemid',23653),(39574,'trends','itemid',23653),(39575,'trends_uint','itemid',23653),(39576,'events','itemid',23654),(39577,'history','itemid',23654),(39578,'history_log','itemid',23654),(39579,'history_str','itemid',23654),(39580,'history_text','itemid',23654),(39581,'history_uint','itemid',23654),(39582,'trends','itemid',23654),(39583,'trends_uint','itemid',23654),(39584,'events','itemid',27967),(39585,'history','itemid',27967),(39586,'history_log','itemid',27967),(39587,'history_str','itemid',27967),(39588,'history_text','itemid',27967),(39589,'history_uint','itemid',27967),(39590,'trends','itemid',27967),(39591,'trends_uint','itemid',27967),(39592,'events','itemid',27968),(39593,'history','itemid',27968),(39594,'history_log','itemid',27968),(39595,'history_str','itemid',27968),(39596,'history_text','itemid',27968),(39597,'history_uint','itemid',27968),(39598,'trends','itemid',27968),(39599,'trends_uint','itemid',27968),(39600,'events','itemid',27970),(39601,'history','itemid',27970),(39602,'history_log','itemid',27970),(39603,'history_str','itemid',27970),(39604,'history_text','itemid',27970),(39605,'history_uint','itemid',27970),(39606,'trends','itemid',27970),(39607,'trends_uint','itemid',27970),(39608,'events','itemid',27971),(39609,'history','itemid',27971),(39610,'history_log','itemid',27971),(39611,'history_str','itemid',27971),(39612,'history_text','itemid',27971),(39613,'history_uint','itemid',27971),(39614,'trends','itemid',27971),(39615,'trends_uint','itemid',27971),(39616,'events','itemid',27972),(39617,'history','itemid',27972),(39618,'history_log','itemid',27972),(39619,'history_str','itemid',27972),(39620,'history_text','itemid',27972),(39621,'history_uint','itemid',27972),(39622,'trends','itemid',27972),(39623,'trends_uint','itemid',27972),(39624,'events','itemid',27973),(39625,'history','itemid',27973),(39626,'history_log','itemid',27973),(39627,'history_str','itemid',27973),(39628,'history_text','itemid',27973),(39629,'history_uint','itemid',27973),(39630,'trends','itemid',27973),(39631,'trends_uint','itemid',27973),(39632,'events','itemid',27975),(39633,'history','itemid',27975),(39634,'history_log','itemid',27975),(39635,'history_str','itemid',27975),(39636,'history_text','itemid',27975),(39637,'history_uint','itemid',27975),(39638,'trends','itemid',27975),(39639,'trends_uint','itemid',27975),(39640,'events','itemid',27997),(39641,'history','itemid',27997),(39642,'history_log','itemid',27997),(39643,'history_str','itemid',27997),(39644,'history_text','itemid',27997),(39645,'history_uint','itemid',27997),(39646,'trends','itemid',27997),(39647,'trends_uint','itemid',27997),(39648,'events','itemid',27998),(39649,'history','itemid',27998),(39650,'history_log','itemid',27998),(39651,'history_str','itemid',27998),(39652,'history_text','itemid',27998),(39653,'history_uint','itemid',27998),(39654,'trends','itemid',27998),(39655,'trends_uint','itemid',27998),(39656,'events','itemid',27999),(39657,'history','itemid',27999),(39658,'history_log','itemid',27999),(39659,'history_str','itemid',27999),(39660,'history_text','itemid',27999),(39661,'history_uint','itemid',27999),(39662,'trends','itemid',27999),(39663,'trends_uint','itemid',27999),(39664,'events','itemid',28000),(39665,'history','itemid',28000),(39666,'history_log','itemid',28000),(39667,'history_str','itemid',28000),(39668,'history_text','itemid',28000),(39669,'history_uint','itemid',28000),(39670,'trends','itemid',28000),(39671,'trends_uint','itemid',28000),(39672,'events','itemid',28026),(39673,'history','itemid',28026),(39674,'history_log','itemid',28026),(39675,'history_str','itemid',28026),(39676,'history_text','itemid',28026),(39677,'history_uint','itemid',28026),(39678,'trends','itemid',28026),(39679,'trends_uint','itemid',28026),(39680,'events','itemid',28027),(39681,'history','itemid',28027),(39682,'history_log','itemid',28027),(39683,'history_str','itemid',28027),(39684,'history_text','itemid',28027),(39685,'history_uint','itemid',28027),(39686,'trends','itemid',28027),(39687,'trends_uint','itemid',28027),(39688,'events','itemid',28031),(39689,'history','itemid',28031),(39690,'history_log','itemid',28031),(39691,'history_str','itemid',28031),(39692,'history_text','itemid',28031),(39693,'history_uint','itemid',28031),(39694,'trends','itemid',28031),(39695,'trends_uint','itemid',28031),(39696,'events','itemid',28539),(39697,'history','itemid',28539),(39698,'history_log','itemid',28539),(39699,'history_str','itemid',28539),(39700,'history_text','itemid',28539),(39701,'history_uint','itemid',28539),(39702,'trends','itemid',28539),(39703,'trends_uint','itemid',28539),(39704,'events','itemid',28540),(39705,'history','itemid',28540),(39706,'history_log','itemid',28540),(39707,'history_str','itemid',28540),(39708,'history_text','itemid',28540),(39709,'history_uint','itemid',28540),(39710,'trends','itemid',28540),(39711,'trends_uint','itemid',28540),(39712,'events','itemid',28541),(39713,'history','itemid',28541),(39714,'history_log','itemid',28541),(39715,'history_str','itemid',28541),(39716,'history_text','itemid',28541),(39717,'history_uint','itemid',28541),(39718,'trends','itemid',28541),(39719,'trends_uint','itemid',28541),(39720,'events','itemid',28542),(39721,'history','itemid',28542),(39722,'history_log','itemid',28542),(39723,'history_str','itemid',28542),(39724,'history_text','itemid',28542),(39725,'history_uint','itemid',28542),(39726,'trends','itemid',28542),(39727,'trends_uint','itemid',28542),(39728,'events','itemid',28543),(39729,'history','itemid',28543),(39730,'history_log','itemid',28543),(39731,'history_str','itemid',28543),(39732,'history_text','itemid',28543),(39733,'history_uint','itemid',28543),(39734,'trends','itemid',28543),(39735,'trends_uint','itemid',28543),(39736,'events','itemid',28544),(39737,'history','itemid',28544),(39738,'history_log','itemid',28544),(39739,'history_str','itemid',28544),(39740,'history_text','itemid',28544),(39741,'history_uint','itemid',28544),(39742,'trends','itemid',28544),(39743,'trends_uint','itemid',28544),(39744,'events','itemid',28545),(39745,'history','itemid',28545),(39746,'history_log','itemid',28545),(39747,'history_str','itemid',28545),(39748,'history_text','itemid',28545),(39749,'history_uint','itemid',28545),(39750,'trends','itemid',28545),(39751,'trends_uint','itemid',28545),(39752,'events','itemid',28546),(39753,'history','itemid',28546),(39754,'history_log','itemid',28546),(39755,'history_str','itemid',28546),(39756,'history_text','itemid',28546),(39757,'history_uint','itemid',28546),(39758,'trends','itemid',28546),(39759,'trends_uint','itemid',28546),(39760,'events','itemid',28547),(39761,'history','itemid',28547),(39762,'history_log','itemid',28547),(39763,'history_str','itemid',28547),(39764,'history_text','itemid',28547),(39765,'history_uint','itemid',28547),(39766,'trends','itemid',28547),(39767,'trends_uint','itemid',28547),(39768,'events','itemid',28548),(39769,'history','itemid',28548),(39770,'history_log','itemid',28548),(39771,'history_str','itemid',28548),(39772,'history_text','itemid',28548),(39773,'history_uint','itemid',28548),(39774,'trends','itemid',28548),(39775,'trends_uint','itemid',28548),(39776,'events','itemid',28549),(39777,'history','itemid',28549),(39778,'history_log','itemid',28549),(39779,'history_str','itemid',28549),(39780,'history_text','itemid',28549),(39781,'history_uint','itemid',28549),(39782,'trends','itemid',28549),(39783,'trends_uint','itemid',28549),(39784,'events','itemid',28550),(39785,'history','itemid',28550),(39786,'history_log','itemid',28550),(39787,'history_str','itemid',28550),(39788,'history_text','itemid',28550),(39789,'history_uint','itemid',28550),(39790,'trends','itemid',28550),(39791,'trends_uint','itemid',28550),(39792,'events','itemid',28551),(39793,'history','itemid',28551),(39794,'history_log','itemid',28551),(39795,'history_str','itemid',28551),(39796,'history_text','itemid',28551),(39797,'history_uint','itemid',28551),(39798,'trends','itemid',28551),(39799,'trends_uint','itemid',28551),(39800,'events','itemid',28552),(39801,'history','itemid',28552),(39802,'history_log','itemid',28552),(39803,'history_str','itemid',28552),(39804,'history_text','itemid',28552),(39805,'history_uint','itemid',28552),(39806,'trends','itemid',28552),(39807,'trends_uint','itemid',28552),(39808,'events','itemid',28553),(39809,'history','itemid',28553),(39810,'history_log','itemid',28553),(39811,'history_str','itemid',28553),(39812,'history_text','itemid',28553),(39813,'history_uint','itemid',28553),(39814,'trends','itemid',28553),(39815,'trends_uint','itemid',28553),(39816,'events','itemid',28554),(39817,'history','itemid',28554),(39818,'history_log','itemid',28554),(39819,'history_str','itemid',28554),(39820,'history_text','itemid',28554),(39821,'history_uint','itemid',28554),(39822,'trends','itemid',28554),(39823,'trends_uint','itemid',28554),(39824,'events','itemid',28555),(39825,'history','itemid',28555),(39826,'history_log','itemid',28555),(39827,'history_str','itemid',28555),(39828,'history_text','itemid',28555),(39829,'history_uint','itemid',28555),(39830,'trends','itemid',28555),(39831,'trends_uint','itemid',28555),(39832,'events','itemid',28556),(39833,'history','itemid',28556),(39834,'history_log','itemid',28556),(39835,'history_str','itemid',28556),(39836,'history_text','itemid',28556),(39837,'history_uint','itemid',28556),(39838,'trends','itemid',28556),(39839,'trends_uint','itemid',28556),(39840,'events','itemid',28557),(39841,'history','itemid',28557),(39842,'history_log','itemid',28557),(39843,'history_str','itemid',28557),(39844,'history_text','itemid',28557),(39845,'history_uint','itemid',28557),(39846,'trends','itemid',28557),(39847,'trends_uint','itemid',28557),(39848,'events','itemid',28558),(39849,'history','itemid',28558),(39850,'history_log','itemid',28558),(39851,'history_str','itemid',28558),(39852,'history_text','itemid',28558),(39853,'history_uint','itemid',28558),(39854,'trends','itemid',28558),(39855,'trends_uint','itemid',28558),(39856,'events','itemid',28559),(39857,'history','itemid',28559),(39858,'history_log','itemid',28559),(39859,'history_str','itemid',28559),(39860,'history_text','itemid',28559),(39861,'history_uint','itemid',28559),(39862,'trends','itemid',28559),(39863,'trends_uint','itemid',28559),(39864,'events','itemid',28560),(39865,'history','itemid',28560),(39866,'history_log','itemid',28560),(39867,'history_str','itemid',28560),(39868,'history_text','itemid',28560),(39869,'history_uint','itemid',28560),(39870,'trends','itemid',28560),(39871,'trends_uint','itemid',28560),(39872,'events','itemid',28561),(39873,'history','itemid',28561),(39874,'history_log','itemid',28561),(39875,'history_str','itemid',28561),(39876,'history_text','itemid',28561),(39877,'history_uint','itemid',28561),(39878,'trends','itemid',28561),(39879,'trends_uint','itemid',28561),(39880,'events','itemid',28562),(39881,'history','itemid',28562),(39882,'history_log','itemid',28562),(39883,'history_str','itemid',28562),(39884,'history_text','itemid',28562),(39885,'history_uint','itemid',28562),(39886,'trends','itemid',28562),(39887,'trends_uint','itemid',28562),(39888,'events','itemid',28563),(39889,'history','itemid',28563),(39890,'history_log','itemid',28563),(39891,'history_str','itemid',28563),(39892,'history_text','itemid',28563),(39893,'history_uint','itemid',28563),(39894,'trends','itemid',28563),(39895,'trends_uint','itemid',28563),(39896,'events','itemid',28564),(39897,'history','itemid',28564),(39898,'history_log','itemid',28564),(39899,'history_str','itemid',28564),(39900,'history_text','itemid',28564),(39901,'history_uint','itemid',28564),(39902,'trends','itemid',28564),(39903,'trends_uint','itemid',28564),(39904,'events','itemid',28565),(39905,'history','itemid',28565),(39906,'history_log','itemid',28565),(39907,'history_str','itemid',28565),(39908,'history_text','itemid',28565),(39909,'history_uint','itemid',28565),(39910,'trends','itemid',28565),(39911,'trends_uint','itemid',28565),(39912,'events','itemid',28566),(39913,'history','itemid',28566),(39914,'history_log','itemid',28566),(39915,'history_str','itemid',28566),(39916,'history_text','itemid',28566),(39917,'history_uint','itemid',28566),(39918,'trends','itemid',28566),(39919,'trends_uint','itemid',28566),(39920,'events','itemid',28567),(39921,'history','itemid',28567),(39922,'history_log','itemid',28567),(39923,'history_str','itemid',28567),(39924,'history_text','itemid',28567),(39925,'history_uint','itemid',28567),(39926,'trends','itemid',28567),(39927,'trends_uint','itemid',28567),(39928,'events','itemid',28568),(39929,'history','itemid',28568),(39930,'history_log','itemid',28568),(39931,'history_str','itemid',28568),(39932,'history_text','itemid',28568),(39933,'history_uint','itemid',28568),(39934,'trends','itemid',28568),(39935,'trends_uint','itemid',28568),(39936,'events','itemid',28569),(39937,'history','itemid',28569),(39938,'history_log','itemid',28569),(39939,'history_str','itemid',28569),(39940,'history_text','itemid',28569),(39941,'history_uint','itemid',28569),(39942,'trends','itemid',28569),(39943,'trends_uint','itemid',28569),(39944,'events','itemid',28570),(39945,'history','itemid',28570),(39946,'history_log','itemid',28570),(39947,'history_str','itemid',28570),(39948,'history_text','itemid',28570),(39949,'history_uint','itemid',28570),(39950,'trends','itemid',28570),(39951,'trends_uint','itemid',28570),(39952,'events','itemid',28571),(39953,'history','itemid',28571),(39954,'history_log','itemid',28571),(39955,'history_str','itemid',28571),(39956,'history_text','itemid',28571),(39957,'history_uint','itemid',28571),(39958,'trends','itemid',28571),(39959,'trends_uint','itemid',28571),(39960,'events','itemid',28572),(39961,'history','itemid',28572),(39962,'history_log','itemid',28572),(39963,'history_str','itemid',28572),(39964,'history_text','itemid',28572),(39965,'history_uint','itemid',28572),(39966,'trends','itemid',28572),(39967,'trends_uint','itemid',28572),(39968,'events','itemid',28573),(39969,'history','itemid',28573),(39970,'history_log','itemid',28573),(39971,'history_str','itemid',28573),(39972,'history_text','itemid',28573),(39973,'history_uint','itemid',28573),(39974,'trends','itemid',28573),(39975,'trends_uint','itemid',28573),(39976,'events','itemid',28574),(39977,'history','itemid',28574),(39978,'history_log','itemid',28574),(39979,'history_str','itemid',28574),(39980,'history_text','itemid',28574),(39981,'history_uint','itemid',28574),(39982,'trends','itemid',28574),(39983,'trends_uint','itemid',28574),(39984,'events','itemid',28575),(39985,'history','itemid',28575),(39986,'history_log','itemid',28575),(39987,'history_str','itemid',28575),(39988,'history_text','itemid',28575),(39989,'history_uint','itemid',28575),(39990,'trends','itemid',28575),(39991,'trends_uint','itemid',28575),(39992,'events','itemid',28576),(39993,'history','itemid',28576),(39994,'history_log','itemid',28576),(39995,'history_str','itemid',28576),(39996,'history_text','itemid',28576),(39997,'history_uint','itemid',28576),(39998,'trends','itemid',28576),(39999,'trends_uint','itemid',28576),(40000,'events','itemid',28577),(40001,'history','itemid',28577),(40002,'history_log','itemid',28577),(40003,'history_str','itemid',28577),(40004,'history_text','itemid',28577),(40005,'history_uint','itemid',28577),(40006,'trends','itemid',28577),(40007,'trends_uint','itemid',28577),(40008,'events','itemid',28578),(40009,'history','itemid',28578),(40010,'history_log','itemid',28578),(40011,'history_str','itemid',28578),(40012,'history_text','itemid',28578),(40013,'history_uint','itemid',28578),(40014,'trends','itemid',28578),(40015,'trends_uint','itemid',28578),(40016,'events','itemid',28579),(40017,'history','itemid',28579),(40018,'history_log','itemid',28579),(40019,'history_str','itemid',28579),(40020,'history_text','itemid',28579),(40021,'history_uint','itemid',28579),(40022,'trends','itemid',28579),(40023,'trends_uint','itemid',28579),(40024,'events','itemid',28580),(40025,'history','itemid',28580),(40026,'history_log','itemid',28580),(40027,'history_str','itemid',28580),(40028,'history_text','itemid',28580),(40029,'history_uint','itemid',28580),(40030,'trends','itemid',28580),(40031,'trends_uint','itemid',28580),(40032,'events','itemid',28581),(40033,'history','itemid',28581),(40034,'history_log','itemid',28581),(40035,'history_str','itemid',28581),(40036,'history_text','itemid',28581),(40037,'history_uint','itemid',28581),(40038,'trends','itemid',28581),(40039,'trends_uint','itemid',28581),(40040,'events','itemid',28582),(40041,'history','itemid',28582),(40042,'history_log','itemid',28582),(40043,'history_str','itemid',28582),(40044,'history_text','itemid',28582),(40045,'history_uint','itemid',28582),(40046,'trends','itemid',28582),(40047,'trends_uint','itemid',28582),(40048,'events','itemid',28583),(40049,'history','itemid',28583),(40050,'history_log','itemid',28583),(40051,'history_str','itemid',28583),(40052,'history_text','itemid',28583),(40053,'history_uint','itemid',28583),(40054,'trends','itemid',28583),(40055,'trends_uint','itemid',28583),(40056,'events','itemid',28584),(40057,'history','itemid',28584),(40058,'history_log','itemid',28584),(40059,'history_str','itemid',28584),(40060,'history_text','itemid',28584),(40061,'history_uint','itemid',28584),(40062,'trends','itemid',28584),(40063,'trends_uint','itemid',28584),(40064,'events','itemid',28585),(40065,'history','itemid',28585),(40066,'history_log','itemid',28585),(40067,'history_str','itemid',28585),(40068,'history_text','itemid',28585),(40069,'history_uint','itemid',28585),(40070,'trends','itemid',28585),(40071,'trends_uint','itemid',28585),(40072,'events','itemid',28586),(40073,'history','itemid',28586),(40074,'history_log','itemid',28586),(40075,'history_str','itemid',28586),(40076,'history_text','itemid',28586),(40077,'history_uint','itemid',28586),(40078,'trends','itemid',28586),(40079,'trends_uint','itemid',28586),(40080,'events','itemid',28587),(40081,'history','itemid',28587),(40082,'history_log','itemid',28587),(40083,'history_str','itemid',28587),(40084,'history_text','itemid',28587),(40085,'history_uint','itemid',28587),(40086,'trends','itemid',28587),(40087,'trends_uint','itemid',28587),(40088,'events','itemid',28588),(40089,'history','itemid',28588),(40090,'history_log','itemid',28588),(40091,'history_str','itemid',28588),(40092,'history_text','itemid',28588),(40093,'history_uint','itemid',28588),(40094,'trends','itemid',28588),(40095,'trends_uint','itemid',28588),(40096,'events','itemid',28589),(40097,'history','itemid',28589),(40098,'history_log','itemid',28589),(40099,'history_str','itemid',28589),(40100,'history_text','itemid',28589),(40101,'history_uint','itemid',28589),(40102,'trends','itemid',28589),(40103,'trends_uint','itemid',28589),(40104,'events','itemid',28590),(40105,'history','itemid',28590),(40106,'history_log','itemid',28590),(40107,'history_str','itemid',28590),(40108,'history_text','itemid',28590),(40109,'history_uint','itemid',28590),(40110,'trends','itemid',28590),(40111,'trends_uint','itemid',28590),(40112,'events','itemid',28591),(40113,'history','itemid',28591),(40114,'history_log','itemid',28591),(40115,'history_str','itemid',28591),(40116,'history_text','itemid',28591),(40117,'history_uint','itemid',28591),(40118,'trends','itemid',28591),(40119,'trends_uint','itemid',28591),(40120,'events','itemid',28592),(40121,'history','itemid',28592),(40122,'history_log','itemid',28592),(40123,'history_str','itemid',28592),(40124,'history_text','itemid',28592),(40125,'history_uint','itemid',28592),(40126,'trends','itemid',28592),(40127,'trends_uint','itemid',28592),(40128,'events','itemid',28593),(40129,'history','itemid',28593),(40130,'history_log','itemid',28593),(40131,'history_str','itemid',28593),(40132,'history_text','itemid',28593),(40133,'history_uint','itemid',28593),(40134,'trends','itemid',28593),(40135,'trends_uint','itemid',28593),(40136,'events','itemid',28594),(40137,'history','itemid',28594),(40138,'history_log','itemid',28594),(40139,'history_str','itemid',28594),(40140,'history_text','itemid',28594),(40141,'history_uint','itemid',28594),(40142,'trends','itemid',28594),(40143,'trends_uint','itemid',28594),(40144,'events','itemid',28595),(40145,'history','itemid',28595),(40146,'history_log','itemid',28595),(40147,'history_str','itemid',28595),(40148,'history_text','itemid',28595),(40149,'history_uint','itemid',28595),(40150,'trends','itemid',28595),(40151,'trends_uint','itemid',28595),(40152,'events','itemid',28596),(40153,'history','itemid',28596),(40154,'history_log','itemid',28596),(40155,'history_str','itemid',28596),(40156,'history_text','itemid',28596),(40157,'history_uint','itemid',28596),(40158,'trends','itemid',28596),(40159,'trends_uint','itemid',28596),(40160,'events','itemid',28597),(40161,'history','itemid',28597),(40162,'history_log','itemid',28597),(40163,'history_str','itemid',28597),(40164,'history_text','itemid',28597),(40165,'history_uint','itemid',28597),(40166,'trends','itemid',28597),(40167,'trends_uint','itemid',28597),(40168,'events','itemid',28598),(40169,'history','itemid',28598),(40170,'history_log','itemid',28598),(40171,'history_str','itemid',28598),(40172,'history_text','itemid',28598),(40173,'history_uint','itemid',28598),(40174,'trends','itemid',28598),(40175,'trends_uint','itemid',28598),(40176,'events','itemid',28599),(40177,'history','itemid',28599),(40178,'history_log','itemid',28599),(40179,'history_str','itemid',28599),(40180,'history_text','itemid',28599),(40181,'history_uint','itemid',28599),(40182,'trends','itemid',28599),(40183,'trends_uint','itemid',28599),(40184,'events','itemid',28600),(40185,'history','itemid',28600),(40186,'history_log','itemid',28600),(40187,'history_str','itemid',28600),(40188,'history_text','itemid',28600),(40189,'history_uint','itemid',28600),(40190,'trends','itemid',28600),(40191,'trends_uint','itemid',28600),(40192,'events','itemid',28601),(40193,'history','itemid',28601),(40194,'history_log','itemid',28601),(40195,'history_str','itemid',28601),(40196,'history_text','itemid',28601),(40197,'history_uint','itemid',28601),(40198,'trends','itemid',28601),(40199,'trends_uint','itemid',28601),(40200,'events','itemid',28602),(40201,'history','itemid',28602),(40202,'history_log','itemid',28602),(40203,'history_str','itemid',28602),(40204,'history_text','itemid',28602),(40205,'history_uint','itemid',28602),(40206,'trends','itemid',28602),(40207,'trends_uint','itemid',28602),(40208,'events','itemid',28603),(40209,'history','itemid',28603),(40210,'history_log','itemid',28603),(40211,'history_str','itemid',28603),(40212,'history_text','itemid',28603),(40213,'history_uint','itemid',28603),(40214,'trends','itemid',28603),(40215,'trends_uint','itemid',28603),(40216,'events','itemid',28604),(40217,'history','itemid',28604),(40218,'history_log','itemid',28604),(40219,'history_str','itemid',28604),(40220,'history_text','itemid',28604),(40221,'history_uint','itemid',28604),(40222,'trends','itemid',28604),(40223,'trends_uint','itemid',28604),(40224,'events','itemid',28605),(40225,'history','itemid',28605),(40226,'history_log','itemid',28605),(40227,'history_str','itemid',28605),(40228,'history_text','itemid',28605),(40229,'history_uint','itemid',28605),(40230,'trends','itemid',28605),(40231,'trends_uint','itemid',28605),(40232,'events','itemid',28606),(40233,'history','itemid',28606),(40234,'history_log','itemid',28606),(40235,'history_str','itemid',28606),(40236,'history_text','itemid',28606),(40237,'history_uint','itemid',28606),(40238,'trends','itemid',28606),(40239,'trends_uint','itemid',28606),(40240,'events','itemid',28607),(40241,'history','itemid',28607),(40242,'history_log','itemid',28607),(40243,'history_str','itemid',28607),(40244,'history_text','itemid',28607),(40245,'history_uint','itemid',28607),(40246,'trends','itemid',28607),(40247,'trends_uint','itemid',28607),(40248,'events','itemid',28608),(40249,'history','itemid',28608),(40250,'history_log','itemid',28608),(40251,'history_str','itemid',28608),(40252,'history_text','itemid',28608),(40253,'history_uint','itemid',28608),(40254,'trends','itemid',28608),(40255,'trends_uint','itemid',28608),(40256,'events','itemid',28609),(40257,'history','itemid',28609),(40258,'history_log','itemid',28609),(40259,'history_str','itemid',28609),(40260,'history_text','itemid',28609),(40261,'history_uint','itemid',28609),(40262,'trends','itemid',28609),(40263,'trends_uint','itemid',28609),(40264,'events','itemid',28610),(40265,'history','itemid',28610),(40266,'history_log','itemid',28610),(40267,'history_str','itemid',28610),(40268,'history_text','itemid',28610),(40269,'history_uint','itemid',28610),(40270,'trends','itemid',28610),(40271,'trends_uint','itemid',28610),(40272,'events','itemid',28611),(40273,'history','itemid',28611),(40274,'history_log','itemid',28611),(40275,'history_str','itemid',28611),(40276,'history_text','itemid',28611),(40277,'history_uint','itemid',28611),(40278,'trends','itemid',28611),(40279,'trends_uint','itemid',28611),(40280,'events','itemid',28612),(40281,'history','itemid',28612),(40282,'history_log','itemid',28612),(40283,'history_str','itemid',28612),(40284,'history_text','itemid',28612),(40285,'history_uint','itemid',28612),(40286,'trends','itemid',28612),(40287,'trends_uint','itemid',28612),(40288,'events','itemid',28613),(40289,'history','itemid',28613),(40290,'history_log','itemid',28613),(40291,'history_str','itemid',28613),(40292,'history_text','itemid',28613),(40293,'history_uint','itemid',28613),(40294,'trends','itemid',28613),(40295,'trends_uint','itemid',28613),(40296,'events','itemid',28615),(40297,'history','itemid',28615),(40298,'history_log','itemid',28615),(40299,'history_str','itemid',28615),(40300,'history_text','itemid',28615),(40301,'history_uint','itemid',28615),(40302,'trends','itemid',28615),(40303,'trends_uint','itemid',28615),(40304,'events','itemid',28616),(40305,'history','itemid',28616),(40306,'history_log','itemid',28616),(40307,'history_str','itemid',28616),(40308,'history_text','itemid',28616),(40309,'history_uint','itemid',28616),(40310,'trends','itemid',28616),(40311,'trends_uint','itemid',28616),(40312,'events','itemid',29454),(40313,'history','itemid',29454),(40314,'history_log','itemid',29454),(40315,'history_str','itemid',29454),(40316,'history_text','itemid',29454),(40317,'history_uint','itemid',29454),(40318,'trends','itemid',29454),(40319,'trends_uint','itemid',29454),(40320,'events','itemid',29455),(40321,'history','itemid',29455),(40322,'history_log','itemid',29455),(40323,'history_str','itemid',29455),(40324,'history_text','itemid',29455),(40325,'history_uint','itemid',29455),(40326,'trends','itemid',29455),(40327,'trends_uint','itemid',29455),(40328,'events','itemid',29456),(40329,'history','itemid',29456),(40330,'history_log','itemid',29456),(40331,'history_str','itemid',29456),(40332,'history_text','itemid',29456),(40333,'history_uint','itemid',29456),(40334,'trends','itemid',29456),(40335,'trends_uint','itemid',29456),(40336,'events','itemid',29457),(40337,'history','itemid',29457),(40338,'history_log','itemid',29457),(40339,'history_str','itemid',29457),(40340,'history_text','itemid',29457),(40341,'history_uint','itemid',29457),(40342,'trends','itemid',29457),(40343,'trends_uint','itemid',29457),(40344,'events','itemid',29458),(40345,'history','itemid',29458),(40346,'history_log','itemid',29458),(40347,'history_str','itemid',29458),(40348,'history_text','itemid',29458),(40349,'history_uint','itemid',29458),(40350,'trends','itemid',29458),(40351,'trends_uint','itemid',29458),(40352,'events','itemid',29459),(40353,'history','itemid',29459),(40354,'history_log','itemid',29459),(40355,'history_str','itemid',29459),(40356,'history_text','itemid',29459),(40357,'history_uint','itemid',29459),(40358,'trends','itemid',29459),(40359,'trends_uint','itemid',29459),(40360,'events','itemid',29460),(40361,'history','itemid',29460),(40362,'history_log','itemid',29460),(40363,'history_str','itemid',29460),(40364,'history_text','itemid',29460),(40365,'history_uint','itemid',29460),(40366,'trends','itemid',29460),(40367,'trends_uint','itemid',29460),(40368,'events','itemid',29461),(40369,'history','itemid',29461),(40370,'history_log','itemid',29461),(40371,'history_str','itemid',29461),(40372,'history_text','itemid',29461),(40373,'history_uint','itemid',29461),(40374,'trends','itemid',29461),(40375,'trends_uint','itemid',29461),(40376,'events','itemid',29462),(40377,'history','itemid',29462),(40378,'history_log','itemid',29462),(40379,'history_str','itemid',29462),(40380,'history_text','itemid',29462),(40381,'history_uint','itemid',29462),(40382,'trends','itemid',29462),(40383,'trends_uint','itemid',29462),(40384,'events','itemid',29463),(40385,'history','itemid',29463),(40386,'history_log','itemid',29463),(40387,'history_str','itemid',29463),(40388,'history_text','itemid',29463),(40389,'history_uint','itemid',29463),(40390,'trends','itemid',29463),(40391,'trends_uint','itemid',29463),(40392,'events','itemid',29466),(40393,'history','itemid',29466),(40394,'history_log','itemid',29466),(40395,'history_str','itemid',29466),(40396,'history_text','itemid',29466),(40397,'history_uint','itemid',29466),(40398,'trends','itemid',29466),(40399,'trends_uint','itemid',29466),(40400,'events','itemid',29467),(40401,'history','itemid',29467),(40402,'history_log','itemid',29467),(40403,'history_str','itemid',29467),(40404,'history_text','itemid',29467),(40405,'history_uint','itemid',29467),(40406,'trends','itemid',29467),(40407,'trends_uint','itemid',29467),(40408,'events','itemid',29468),(40409,'history','itemid',29468),(40410,'history_log','itemid',29468),(40411,'history_str','itemid',29468),(40412,'history_text','itemid',29468),(40413,'history_uint','itemid',29468),(40414,'trends','itemid',29468),(40415,'trends_uint','itemid',29468),(40416,'events','itemid',29469),(40417,'history','itemid',29469),(40418,'history_log','itemid',29469),(40419,'history_str','itemid',29469),(40420,'history_text','itemid',29469),(40421,'history_uint','itemid',29469),(40422,'trends','itemid',29469),(40423,'trends_uint','itemid',29469),(40424,'events','itemid',29470),(40425,'history','itemid',29470),(40426,'history_log','itemid',29470),(40427,'history_str','itemid',29470),(40428,'history_text','itemid',29470),(40429,'history_uint','itemid',29470),(40430,'trends','itemid',29470),(40431,'trends_uint','itemid',29470),(40432,'events','itemid',29472),(40433,'history','itemid',29472),(40434,'history_log','itemid',29472),(40435,'history_str','itemid',29472),(40436,'history_text','itemid',29472),(40437,'history_uint','itemid',29472),(40438,'trends','itemid',29472),(40439,'trends_uint','itemid',29472),(40440,'events','itemid',29473),(40441,'history','itemid',29473),(40442,'history_log','itemid',29473),(40443,'history_str','itemid',29473),(40444,'history_text','itemid',29473),(40445,'history_uint','itemid',29473),(40446,'trends','itemid',29473),(40447,'trends_uint','itemid',29473),(40448,'events','itemid',29474),(40449,'history','itemid',29474),(40450,'history_log','itemid',29474),(40451,'history_str','itemid',29474),(40452,'history_text','itemid',29474),(40453,'history_uint','itemid',29474),(40454,'trends','itemid',29474),(40455,'trends_uint','itemid',29474),(40456,'events','itemid',29475),(40457,'history','itemid',29475),(40458,'history_log','itemid',29475),(40459,'history_str','itemid',29475),(40460,'history_text','itemid',29475),(40461,'history_uint','itemid',29475),(40462,'trends','itemid',29475),(40463,'trends_uint','itemid',29475),(40464,'events','itemid',29476),(40465,'history','itemid',29476),(40466,'history_log','itemid',29476),(40467,'history_str','itemid',29476),(40468,'history_text','itemid',29476),(40469,'history_uint','itemid',29476),(40470,'trends','itemid',29476),(40471,'trends_uint','itemid',29476),(40472,'events','itemid',29477),(40473,'history','itemid',29477),(40474,'history_log','itemid',29477),(40475,'history_str','itemid',29477),(40476,'history_text','itemid',29477),(40477,'history_uint','itemid',29477),(40478,'trends','itemid',29477),(40479,'trends_uint','itemid',29477),(40480,'events','itemid',29478),(40481,'history','itemid',29478),(40482,'history_log','itemid',29478),(40483,'history_str','itemid',29478),(40484,'history_text','itemid',29478),(40485,'history_uint','itemid',29478),(40486,'trends','itemid',29478),(40487,'trends_uint','itemid',29478),(40488,'events','itemid',29653),(40489,'history','itemid',29653),(40490,'history_log','itemid',29653),(40491,'history_str','itemid',29653),(40492,'history_text','itemid',29653),(40493,'history_uint','itemid',29653),(40494,'trends','itemid',29653),(40495,'trends_uint','itemid',29653),(40496,'events','itemid',29654),(40497,'history','itemid',29654),(40498,'history_log','itemid',29654),(40499,'history_str','itemid',29654),(40500,'history_text','itemid',29654),(40501,'history_uint','itemid',29654),(40502,'trends','itemid',29654),(40503,'trends_uint','itemid',29654),(40504,'events','itemid',29655),(40505,'history','itemid',29655),(40506,'history_log','itemid',29655),(40507,'history_str','itemid',29655),(40508,'history_text','itemid',29655),(40509,'history_uint','itemid',29655),(40510,'trends','itemid',29655),(40511,'trends_uint','itemid',29655),(40512,'events','itemid',29660),(40513,'history','itemid',29660),(40514,'history_log','itemid',29660),(40515,'history_str','itemid',29660),(40516,'history_text','itemid',29660),(40517,'history_uint','itemid',29660),(40518,'trends','itemid',29660),(40519,'trends_uint','itemid',29660),(40520,'events','itemid',29661),(40521,'history','itemid',29661),(40522,'history_log','itemid',29661),(40523,'history_str','itemid',29661),(40524,'history_text','itemid',29661),(40525,'history_uint','itemid',29661),(40526,'trends','itemid',29661),(40527,'trends_uint','itemid',29661),(40528,'events','itemid',29687),(40529,'history','itemid',29687),(40530,'history_log','itemid',29687),(40531,'history_str','itemid',29687),(40532,'history_text','itemid',29687),(40533,'history_uint','itemid',29687),(40534,'trends','itemid',29687),(40535,'trends_uint','itemid',29687),(40536,'events','itemid',29688),(40537,'history','itemid',29688),(40538,'history_log','itemid',29688),(40539,'history_str','itemid',29688),(40540,'history_text','itemid',29688),(40541,'history_uint','itemid',29688),(40542,'trends','itemid',29688),(40543,'trends_uint','itemid',29688),(40544,'events','itemid',29691),(40545,'history','itemid',29691),(40546,'history_log','itemid',29691),(40547,'history_str','itemid',29691),(40548,'history_text','itemid',29691),(40549,'history_uint','itemid',29691),(40550,'trends','itemid',29691),(40551,'trends_uint','itemid',29691),(40552,'events','itemid',29692),(40553,'history','itemid',29692),(40554,'history_log','itemid',29692),(40555,'history_str','itemid',29692),(40556,'history_text','itemid',29692),(40557,'history_uint','itemid',29692),(40558,'trends','itemid',29692),(40559,'trends_uint','itemid',29692),(40560,'events','itemid',29693),(40561,'history','itemid',29693),(40562,'history_log','itemid',29693),(40563,'history_str','itemid',29693),(40564,'history_text','itemid',29693),(40565,'history_uint','itemid',29693),(40566,'trends','itemid',29693),(40567,'trends_uint','itemid',29693),(40568,'events','itemid',29694),(40569,'history','itemid',29694),(40570,'history_log','itemid',29694),(40571,'history_str','itemid',29694),(40572,'history_text','itemid',29694),(40573,'history_uint','itemid',29694),(40574,'trends','itemid',29694),(40575,'trends_uint','itemid',29694),(40576,'events','itemid',29695),(40577,'history','itemid',29695),(40578,'history_log','itemid',29695),(40579,'history_str','itemid',29695),(40580,'history_text','itemid',29695),(40581,'history_uint','itemid',29695),(40582,'trends','itemid',29695),(40583,'trends_uint','itemid',29695),(40584,'events','itemid',29696),(40585,'history','itemid',29696),(40586,'history_log','itemid',29696),(40587,'history_str','itemid',29696),(40588,'history_text','itemid',29696),(40589,'history_uint','itemid',29696),(40590,'trends','itemid',29696),(40591,'trends_uint','itemid',29696),(40592,'events','itemid',29697),(40593,'history','itemid',29697),(40594,'history_log','itemid',29697),(40595,'history_str','itemid',29697),(40596,'history_text','itemid',29697),(40597,'history_uint','itemid',29697),(40598,'trends','itemid',29697),(40599,'trends_uint','itemid',29697),(40600,'events','itemid',29698),(40601,'history','itemid',29698),(40602,'history_log','itemid',29698),(40603,'history_str','itemid',29698),(40604,'history_text','itemid',29698),(40605,'history_uint','itemid',29698),(40606,'trends','itemid',29698),(40607,'trends_uint','itemid',29698),(40608,'events','itemid',29699),(40609,'history','itemid',29699),(40610,'history_log','itemid',29699),(40611,'history_str','itemid',29699),(40612,'history_text','itemid',29699),(40613,'history_uint','itemid',29699),(40614,'trends','itemid',29699),(40615,'trends_uint','itemid',29699),(40616,'events','itemid',29700),(40617,'history','itemid',29700),(40618,'history_log','itemid',29700),(40619,'history_str','itemid',29700),(40620,'history_text','itemid',29700),(40621,'history_uint','itemid',29700),(40622,'trends','itemid',29700),(40623,'trends_uint','itemid',29700),(40624,'events','itemid',29701),(40625,'history','itemid',29701),(40626,'history_log','itemid',29701),(40627,'history_str','itemid',29701),(40628,'history_text','itemid',29701),(40629,'history_uint','itemid',29701),(40630,'trends','itemid',29701),(40631,'trends_uint','itemid',29701),(40632,'events','itemid',29738),(40633,'history','itemid',29738),(40634,'history_log','itemid',29738),(40635,'history_str','itemid',29738),(40636,'history_text','itemid',29738),(40637,'history_uint','itemid',29738),(40638,'trends','itemid',29738),(40639,'trends_uint','itemid',29738),(40640,'events','itemid',29739),(40641,'history','itemid',29739),(40642,'history_log','itemid',29739),(40643,'history_str','itemid',29739),(40644,'history_text','itemid',29739),(40645,'history_uint','itemid',29739),(40646,'trends','itemid',29739),(40647,'trends_uint','itemid',29739),(40648,'events','itemid',29741),(40649,'history','itemid',29741),(40650,'history_log','itemid',29741),(40651,'history_str','itemid',29741),(40652,'history_text','itemid',29741),(40653,'history_uint','itemid',29741),(40654,'trends','itemid',29741),(40655,'trends_uint','itemid',29741),(40656,'events','itemid',29742),(40657,'history','itemid',29742),(40658,'history_log','itemid',29742),(40659,'history_str','itemid',29742),(40660,'history_text','itemid',29742),(40661,'history_uint','itemid',29742),(40662,'trends','itemid',29742),(40663,'trends_uint','itemid',29742),(40664,'events','itemid',29743),(40665,'history','itemid',29743),(40666,'history_log','itemid',29743),(40667,'history_str','itemid',29743),(40668,'history_text','itemid',29743),(40669,'history_uint','itemid',29743),(40670,'trends','itemid',29743),(40671,'trends_uint','itemid',29743),(40672,'events','itemid',29745),(40673,'history','itemid',29745),(40674,'history_log','itemid',29745),(40675,'history_str','itemid',29745),(40676,'history_text','itemid',29745),(40677,'history_uint','itemid',29745),(40678,'trends','itemid',29745),(40679,'trends_uint','itemid',29745),(40680,'events','itemid',29746),(40681,'history','itemid',29746),(40682,'history_log','itemid',29746),(40683,'history_str','itemid',29746),(40684,'history_text','itemid',29746),(40685,'history_uint','itemid',29746),(40686,'trends','itemid',29746),(40687,'trends_uint','itemid',29746),(40688,'events','itemid',29747),(40689,'history','itemid',29747),(40690,'history_log','itemid',29747),(40691,'history_str','itemid',29747),(40692,'history_text','itemid',29747),(40693,'history_uint','itemid',29747),(40694,'trends','itemid',29747),(40695,'trends_uint','itemid',29747),(40696,'events','itemid',29748),(40697,'history','itemid',29748),(40698,'history_log','itemid',29748),(40699,'history_str','itemid',29748),(40700,'history_text','itemid',29748),(40701,'history_uint','itemid',29748),(40702,'trends','itemid',29748),(40703,'trends_uint','itemid',29748),(40704,'events','itemid',29749),(40705,'history','itemid',29749),(40706,'history_log','itemid',29749),(40707,'history_str','itemid',29749),(40708,'history_text','itemid',29749),(40709,'history_uint','itemid',29749),(40710,'trends','itemid',29749),(40711,'trends_uint','itemid',29749),(40712,'events','itemid',29750),(40713,'history','itemid',29750),(40714,'history_log','itemid',29750),(40715,'history_str','itemid',29750),(40716,'history_text','itemid',29750),(40717,'history_uint','itemid',29750),(40718,'trends','itemid',29750),(40719,'trends_uint','itemid',29750),(40720,'events','itemid',29751),(40721,'history','itemid',29751),(40722,'history_log','itemid',29751),(40723,'history_str','itemid',29751),(40724,'history_text','itemid',29751),(40725,'history_uint','itemid',29751),(40726,'trends','itemid',29751),(40727,'trends_uint','itemid',29751),(40728,'events','itemid',29752),(40729,'history','itemid',29752),(40730,'history_log','itemid',29752),(40731,'history_str','itemid',29752),(40732,'history_text','itemid',29752),(40733,'history_uint','itemid',29752),(40734,'trends','itemid',29752),(40735,'trends_uint','itemid',29752),(40736,'events','itemid',29753),(40737,'history','itemid',29753),(40738,'history_log','itemid',29753),(40739,'history_str','itemid',29753),(40740,'history_text','itemid',29753),(40741,'history_uint','itemid',29753),(40742,'trends','itemid',29753),(40743,'trends_uint','itemid',29753),(40744,'events','itemid',29754),(40745,'history','itemid',29754),(40746,'history_log','itemid',29754),(40747,'history_str','itemid',29754),(40748,'history_text','itemid',29754),(40749,'history_uint','itemid',29754),(40750,'trends','itemid',29754),(40751,'trends_uint','itemid',29754),(40752,'events','itemid',29755),(40753,'history','itemid',29755),(40754,'history_log','itemid',29755),(40755,'history_str','itemid',29755),(40756,'history_text','itemid',29755),(40757,'history_uint','itemid',29755),(40758,'trends','itemid',29755),(40759,'trends_uint','itemid',29755),(40760,'events','itemid',29756),(40761,'history','itemid',29756),(40762,'history_log','itemid',29756),(40763,'history_str','itemid',29756),(40764,'history_text','itemid',29756),(40765,'history_uint','itemid',29756),(40766,'trends','itemid',29756),(40767,'trends_uint','itemid',29756),(40768,'events','itemid',29757),(40769,'history','itemid',29757),(40770,'history_log','itemid',29757),(40771,'history_str','itemid',29757),(40772,'history_text','itemid',29757),(40773,'history_uint','itemid',29757),(40774,'trends','itemid',29757),(40775,'trends_uint','itemid',29757),(40776,'events','itemid',29758),(40777,'history','itemid',29758),(40778,'history_log','itemid',29758),(40779,'history_str','itemid',29758),(40780,'history_text','itemid',29758),(40781,'history_uint','itemid',29758),(40782,'trends','itemid',29758),(40783,'trends_uint','itemid',29758),(40784,'events','itemid',29759),(40785,'history','itemid',29759),(40786,'history_log','itemid',29759),(40787,'history_str','itemid',29759),(40788,'history_text','itemid',29759),(40789,'history_uint','itemid',29759),(40790,'trends','itemid',29759),(40791,'trends_uint','itemid',29759),(40792,'events','itemid',29760),(40793,'history','itemid',29760),(40794,'history_log','itemid',29760),(40795,'history_str','itemid',29760),(40796,'history_text','itemid',29760),(40797,'history_uint','itemid',29760),(40798,'trends','itemid',29760),(40799,'trends_uint','itemid',29760),(40800,'events','itemid',29761),(40801,'history','itemid',29761),(40802,'history_log','itemid',29761),(40803,'history_str','itemid',29761),(40804,'history_text','itemid',29761),(40805,'history_uint','itemid',29761),(40806,'trends','itemid',29761),(40807,'trends_uint','itemid',29761),(40808,'events','itemid',29762),(40809,'history','itemid',29762),(40810,'history_log','itemid',29762),(40811,'history_str','itemid',29762),(40812,'history_text','itemid',29762),(40813,'history_uint','itemid',29762),(40814,'trends','itemid',29762),(40815,'trends_uint','itemid',29762),(40816,'events','itemid',29763),(40817,'history','itemid',29763),(40818,'history_log','itemid',29763),(40819,'history_str','itemid',29763),(40820,'history_text','itemid',29763),(40821,'history_uint','itemid',29763),(40822,'trends','itemid',29763),(40823,'trends_uint','itemid',29763),(40824,'events','itemid',29764),(40825,'history','itemid',29764),(40826,'history_log','itemid',29764),(40827,'history_str','itemid',29764),(40828,'history_text','itemid',29764),(40829,'history_uint','itemid',29764),(40830,'trends','itemid',29764),(40831,'trends_uint','itemid',29764),(40832,'events','itemid',29765),(40833,'history','itemid',29765),(40834,'history_log','itemid',29765),(40835,'history_str','itemid',29765),(40836,'history_text','itemid',29765),(40837,'history_uint','itemid',29765),(40838,'trends','itemid',29765),(40839,'trends_uint','itemid',29765),(40840,'events','itemid',29766),(40841,'history','itemid',29766),(40842,'history_log','itemid',29766),(40843,'history_str','itemid',29766),(40844,'history_text','itemid',29766),(40845,'history_uint','itemid',29766),(40846,'trends','itemid',29766),(40847,'trends_uint','itemid',29766),(40848,'events','itemid',29767),(40849,'history','itemid',29767),(40850,'history_log','itemid',29767),(40851,'history_str','itemid',29767),(40852,'history_text','itemid',29767),(40853,'history_uint','itemid',29767),(40854,'trends','itemid',29767),(40855,'trends_uint','itemid',29767),(40856,'events','itemid',29768),(40857,'history','itemid',29768),(40858,'history_log','itemid',29768),(40859,'history_str','itemid',29768),(40860,'history_text','itemid',29768),(40861,'history_uint','itemid',29768),(40862,'trends','itemid',29768),(40863,'trends_uint','itemid',29768),(40864,'events','itemid',29769),(40865,'history','itemid',29769),(40866,'history_log','itemid',29769),(40867,'history_str','itemid',29769),(40868,'history_text','itemid',29769),(40869,'history_uint','itemid',29769),(40870,'trends','itemid',29769),(40871,'trends_uint','itemid',29769),(40872,'events','itemid',29771),(40873,'history','itemid',29771),(40874,'history_log','itemid',29771),(40875,'history_str','itemid',29771),(40876,'history_text','itemid',29771),(40877,'history_uint','itemid',29771),(40878,'trends','itemid',29771),(40879,'trends_uint','itemid',29771),(40880,'events','itemid',29772),(40881,'history','itemid',29772),(40882,'history_log','itemid',29772),(40883,'history_str','itemid',29772),(40884,'history_text','itemid',29772),(40885,'history_uint','itemid',29772),(40886,'trends','itemid',29772),(40887,'trends_uint','itemid',29772),(40888,'events','itemid',29773),(40889,'history','itemid',29773),(40890,'history_log','itemid',29773),(40891,'history_str','itemid',29773),(40892,'history_text','itemid',29773),(40893,'history_uint','itemid',29773),(40894,'trends','itemid',29773),(40895,'trends_uint','itemid',29773),(40896,'events','itemid',29774),(40897,'history','itemid',29774),(40898,'history_log','itemid',29774),(40899,'history_str','itemid',29774),(40900,'history_text','itemid',29774),(40901,'history_uint','itemid',29774),(40902,'trends','itemid',29774),(40903,'trends_uint','itemid',29774),(40904,'events','itemid',29775),(40905,'history','itemid',29775),(40906,'history_log','itemid',29775),(40907,'history_str','itemid',29775),(40908,'history_text','itemid',29775),(40909,'history_uint','itemid',29775),(40910,'trends','itemid',29775),(40911,'trends_uint','itemid',29775),(40912,'events','itemid',29776),(40913,'history','itemid',29776),(40914,'history_log','itemid',29776),(40915,'history_str','itemid',29776),(40916,'history_text','itemid',29776),(40917,'history_uint','itemid',29776),(40918,'trends','itemid',29776),(40919,'trends_uint','itemid',29776),(40920,'events','itemid',29777),(40921,'history','itemid',29777),(40922,'history_log','itemid',29777),(40923,'history_str','itemid',29777),(40924,'history_text','itemid',29777),(40925,'history_uint','itemid',29777),(40926,'trends','itemid',29777),(40927,'trends_uint','itemid',29777),(40928,'events','itemid',29779),(40929,'history','itemid',29779),(40930,'history_log','itemid',29779),(40931,'history_str','itemid',29779),(40932,'history_text','itemid',29779),(40933,'history_uint','itemid',29779),(40934,'trends','itemid',29779),(40935,'trends_uint','itemid',29779),(40936,'events','itemid',29780),(40937,'history','itemid',29780),(40938,'history_log','itemid',29780),(40939,'history_str','itemid',29780),(40940,'history_text','itemid',29780),(40941,'history_uint','itemid',29780),(40942,'trends','itemid',29780),(40943,'trends_uint','itemid',29780),(40944,'events','itemid',29781),(40945,'history','itemid',29781),(40946,'history_log','itemid',29781),(40947,'history_str','itemid',29781),(40948,'history_text','itemid',29781),(40949,'history_uint','itemid',29781),(40950,'trends','itemid',29781),(40951,'trends_uint','itemid',29781),(40952,'events','itemid',29782),(40953,'history','itemid',29782),(40954,'history_log','itemid',29782),(40955,'history_str','itemid',29782),(40956,'history_text','itemid',29782),(40957,'history_uint','itemid',29782),(40958,'trends','itemid',29782),(40959,'trends_uint','itemid',29782),(40960,'events','itemid',29783),(40961,'history','itemid',29783),(40962,'history_log','itemid',29783),(40963,'history_str','itemid',29783),(40964,'history_text','itemid',29783),(40965,'history_uint','itemid',29783),(40966,'trends','itemid',29783),(40967,'trends_uint','itemid',29783),(40968,'events','itemid',29784),(40969,'history','itemid',29784),(40970,'history_log','itemid',29784),(40971,'history_str','itemid',29784),(40972,'history_text','itemid',29784),(40973,'history_uint','itemid',29784),(40974,'trends','itemid',29784),(40975,'trends_uint','itemid',29784),(40976,'events','itemid',29821),(40977,'history','itemid',29821),(40978,'history_log','itemid',29821),(40979,'history_str','itemid',29821),(40980,'history_text','itemid',29821),(40981,'history_uint','itemid',29821),(40982,'trends','itemid',29821),(40983,'trends_uint','itemid',29821),(40984,'events','itemid',29998),(40985,'history','itemid',29998),(40986,'history_log','itemid',29998),(40987,'history_str','itemid',29998),(40988,'history_text','itemid',29998),(40989,'history_uint','itemid',29998),(40990,'trends','itemid',29998),(40991,'trends_uint','itemid',29998),(40992,'events','itemid',29999),(40993,'history','itemid',29999),(40994,'history_log','itemid',29999),(40995,'history_str','itemid',29999),(40996,'history_text','itemid',29999),(40997,'history_uint','itemid',29999),(40998,'trends','itemid',29999),(40999,'trends_uint','itemid',29999),(41000,'events','itemid',30000),(41001,'history','itemid',30000),(41002,'history_log','itemid',30000),(41003,'history_str','itemid',30000),(41004,'history_text','itemid',30000),(41005,'history_uint','itemid',30000),(41006,'trends','itemid',30000),(41007,'trends_uint','itemid',30000),(41008,'events','itemid',30001),(41009,'history','itemid',30001),(41010,'history_log','itemid',30001),(41011,'history_str','itemid',30001),(41012,'history_text','itemid',30001),(41013,'history_uint','itemid',30001),(41014,'trends','itemid',30001),(41015,'trends_uint','itemid',30001),(41016,'events','itemid',30002),(41017,'history','itemid',30002),(41018,'history_log','itemid',30002),(41019,'history_str','itemid',30002),(41020,'history_text','itemid',30002),(41021,'history_uint','itemid',30002),(41022,'trends','itemid',30002),(41023,'trends_uint','itemid',30002),(41024,'events','itemid',30003),(41025,'history','itemid',30003),(41026,'history_log','itemid',30003),(41027,'history_str','itemid',30003),(41028,'history_text','itemid',30003),(41029,'history_uint','itemid',30003),(41030,'trends','itemid',30003),(41031,'trends_uint','itemid',30003),(41032,'events','itemid',30004),(41033,'history','itemid',30004),(41034,'history_log','itemid',30004),(41035,'history_str','itemid',30004),(41036,'history_text','itemid',30004),(41037,'history_uint','itemid',30004),(41038,'trends','itemid',30004),(41039,'trends_uint','itemid',30004),(41040,'events','itemid',30005),(41041,'history','itemid',30005),(41042,'history_log','itemid',30005),(41043,'history_str','itemid',30005),(41044,'history_text','itemid',30005),(41045,'history_uint','itemid',30005),(41046,'trends','itemid',30005),(41047,'trends_uint','itemid',30005),(41048,'events','itemid',30006),(41049,'history','itemid',30006),(41050,'history_log','itemid',30006),(41051,'history_str','itemid',30006),(41052,'history_text','itemid',30006),(41053,'history_uint','itemid',30006),(41054,'trends','itemid',30006),(41055,'trends_uint','itemid',30006),(41056,'events','itemid',30007),(41057,'history','itemid',30007),(41058,'history_log','itemid',30007),(41059,'history_str','itemid',30007),(41060,'history_text','itemid',30007),(41061,'history_uint','itemid',30007),(41062,'trends','itemid',30007),(41063,'trends_uint','itemid',30007),(41064,'events','itemid',30008),(41065,'history','itemid',30008),(41066,'history_log','itemid',30008),(41067,'history_str','itemid',30008),(41068,'history_text','itemid',30008),(41069,'history_uint','itemid',30008),(41070,'trends','itemid',30008),(41071,'trends_uint','itemid',30008),(41072,'events','itemid',30009),(41073,'history','itemid',30009),(41074,'history_log','itemid',30009),(41075,'history_str','itemid',30009),(41076,'history_text','itemid',30009),(41077,'history_uint','itemid',30009),(41078,'trends','itemid',30009),(41079,'trends_uint','itemid',30009),(41080,'events','itemid',30010),(41081,'history','itemid',30010),(41082,'history_log','itemid',30010),(41083,'history_str','itemid',30010),(41084,'history_text','itemid',30010),(41085,'history_uint','itemid',30010),(41086,'trends','itemid',30010),(41087,'trends_uint','itemid',30010),(41088,'events','itemid',30011),(41089,'history','itemid',30011),(41090,'history_log','itemid',30011),(41091,'history_str','itemid',30011),(41092,'history_text','itemid',30011),(41093,'history_uint','itemid',30011),(41094,'trends','itemid',30011),(41095,'trends_uint','itemid',30011),(41096,'events','itemid',30012),(41097,'history','itemid',30012),(41098,'history_log','itemid',30012),(41099,'history_str','itemid',30012),(41100,'history_text','itemid',30012),(41101,'history_uint','itemid',30012),(41102,'trends','itemid',30012),(41103,'trends_uint','itemid',30012),(41104,'events','itemid',30013),(41105,'history','itemid',30013),(41106,'history_log','itemid',30013),(41107,'history_str','itemid',30013),(41108,'history_text','itemid',30013),(41109,'history_uint','itemid',30013),(41110,'trends','itemid',30013),(41111,'trends_uint','itemid',30013),(41112,'events','itemid',30014),(41113,'history','itemid',30014),(41114,'history_log','itemid',30014),(41115,'history_str','itemid',30014),(41116,'history_text','itemid',30014),(41117,'history_uint','itemid',30014),(41118,'trends','itemid',30014),(41119,'trends_uint','itemid',30014),(41120,'events','itemid',30015),(41121,'history','itemid',30015),(41122,'history_log','itemid',30015),(41123,'history_str','itemid',30015),(41124,'history_text','itemid',30015),(41125,'history_uint','itemid',30015),(41126,'trends','itemid',30015),(41127,'trends_uint','itemid',30015),(41128,'events','itemid',30016),(41129,'history','itemid',30016),(41130,'history_log','itemid',30016),(41131,'history_str','itemid',30016),(41132,'history_text','itemid',30016),(41133,'history_uint','itemid',30016),(41134,'trends','itemid',30016),(41135,'trends_uint','itemid',30016),(41136,'events','itemid',30017),(41137,'history','itemid',30017),(41138,'history_log','itemid',30017),(41139,'history_str','itemid',30017),(41140,'history_text','itemid',30017),(41141,'history_uint','itemid',30017),(41142,'trends','itemid',30017),(41143,'trends_uint','itemid',30017),(41144,'events','itemid',30018),(41145,'history','itemid',30018),(41146,'history_log','itemid',30018),(41147,'history_str','itemid',30018),(41148,'history_text','itemid',30018),(41149,'history_uint','itemid',30018),(41150,'trends','itemid',30018),(41151,'trends_uint','itemid',30018),(41152,'events','itemid',30019),(41153,'history','itemid',30019),(41154,'history_log','itemid',30019),(41155,'history_str','itemid',30019),(41156,'history_text','itemid',30019),(41157,'history_uint','itemid',30019),(41158,'trends','itemid',30019),(41159,'trends_uint','itemid',30019),(41160,'events','itemid',30020),(41161,'history','itemid',30020),(41162,'history_log','itemid',30020),(41163,'history_str','itemid',30020),(41164,'history_text','itemid',30020),(41165,'history_uint','itemid',30020),(41166,'trends','itemid',30020),(41167,'trends_uint','itemid',30020),(41168,'events','itemid',30021),(41169,'history','itemid',30021),(41170,'history_log','itemid',30021),(41171,'history_str','itemid',30021),(41172,'history_text','itemid',30021),(41173,'history_uint','itemid',30021),(41174,'trends','itemid',30021),(41175,'trends_uint','itemid',30021),(41176,'events','itemid',30022),(41177,'history','itemid',30022),(41178,'history_log','itemid',30022),(41179,'history_str','itemid',30022),(41180,'history_text','itemid',30022),(41181,'history_uint','itemid',30022),(41182,'trends','itemid',30022),(41183,'trends_uint','itemid',30022),(41184,'events','itemid',30023),(41185,'history','itemid',30023),(41186,'history_log','itemid',30023),(41187,'history_str','itemid',30023),(41188,'history_text','itemid',30023),(41189,'history_uint','itemid',30023),(41190,'trends','itemid',30023),(41191,'trends_uint','itemid',30023),(41192,'events','itemid',30024),(41193,'history','itemid',30024),(41194,'history_log','itemid',30024),(41195,'history_str','itemid',30024),(41196,'history_text','itemid',30024),(41197,'history_uint','itemid',30024),(41198,'trends','itemid',30024),(41199,'trends_uint','itemid',30024),(41200,'events','itemid',30025),(41201,'history','itemid',30025),(41202,'history_log','itemid',30025),(41203,'history_str','itemid',30025),(41204,'history_text','itemid',30025),(41205,'history_uint','itemid',30025),(41206,'trends','itemid',30025),(41207,'trends_uint','itemid',30025),(41208,'events','itemid',30043),(41209,'history','itemid',30043),(41210,'history_log','itemid',30043),(41211,'history_str','itemid',30043),(41212,'history_text','itemid',30043),(41213,'history_uint','itemid',30043),(41214,'trends','itemid',30043),(41215,'trends_uint','itemid',30043),(41216,'events','itemid',30044),(41217,'history','itemid',30044),(41218,'history_log','itemid',30044),(41219,'history_str','itemid',30044),(41220,'history_text','itemid',30044),(41221,'history_uint','itemid',30044),(41222,'trends','itemid',30044),(41223,'trends_uint','itemid',30044),(41224,'events','itemid',30045),(41225,'history','itemid',30045),(41226,'history_log','itemid',30045),(41227,'history_str','itemid',30045),(41228,'history_text','itemid',30045),(41229,'history_uint','itemid',30045),(41230,'trends','itemid',30045),(41231,'trends_uint','itemid',30045),(41232,'events','itemid',30124),(41233,'history','itemid',30124),(41234,'history_log','itemid',30124),(41235,'history_str','itemid',30124),(41236,'history_text','itemid',30124),(41237,'history_uint','itemid',30124),(41238,'trends','itemid',30124),(41239,'trends_uint','itemid',30124),(41240,'events','itemid',30125),(41241,'history','itemid',30125),(41242,'history_log','itemid',30125),(41243,'history_str','itemid',30125),(41244,'history_text','itemid',30125),(41245,'history_uint','itemid',30125),(41246,'trends','itemid',30125),(41247,'trends_uint','itemid',30125),(41248,'events','itemid',30126),(41249,'history','itemid',30126),(41250,'history_log','itemid',30126),(41251,'history_str','itemid',30126),(41252,'history_text','itemid',30126),(41253,'history_uint','itemid',30126),(41254,'trends','itemid',30126),(41255,'trends_uint','itemid',30126),(41256,'events','itemid',30132),(41257,'history','itemid',30132),(41258,'history_log','itemid',30132),(41259,'history_str','itemid',30132),(41260,'history_text','itemid',30132),(41261,'history_uint','itemid',30132),(41262,'trends','itemid',30132),(41263,'trends_uint','itemid',30132),(41264,'events','itemid',30133),(41265,'history','itemid',30133),(41266,'history_log','itemid',30133),(41267,'history_str','itemid',30133),(41268,'history_text','itemid',30133),(41269,'history_uint','itemid',30133),(41270,'trends','itemid',30133),(41271,'trends_uint','itemid',30133),(41272,'events','itemid',30134),(41273,'history','itemid',30134),(41274,'history_log','itemid',30134),(41275,'history_str','itemid',30134),(41276,'history_text','itemid',30134),(41277,'history_uint','itemid',30134),(41278,'trends','itemid',30134),(41279,'trends_uint','itemid',30134),(41280,'events','itemid',30135),(41281,'history','itemid',30135),(41282,'history_log','itemid',30135),(41283,'history_str','itemid',30135),(41284,'history_text','itemid',30135),(41285,'history_uint','itemid',30135),(41286,'trends','itemid',30135),(41287,'trends_uint','itemid',30135),(41288,'events','itemid',30136),(41289,'history','itemid',30136),(41290,'history_log','itemid',30136),(41291,'history_str','itemid',30136),(41292,'history_text','itemid',30136),(41293,'history_uint','itemid',30136),(41294,'trends','itemid',30136),(41295,'trends_uint','itemid',30136),(41296,'events','itemid',30137),(41297,'history','itemid',30137),(41298,'history_log','itemid',30137),(41299,'history_str','itemid',30137),(41300,'history_text','itemid',30137),(41301,'history_uint','itemid',30137),(41302,'trends','itemid',30137),(41303,'trends_uint','itemid',30137),(41304,'events','itemid',30273),(41305,'history','itemid',30273),(41306,'history_log','itemid',30273),(41307,'history_str','itemid',30273),(41308,'history_text','itemid',30273),(41309,'history_uint','itemid',30273),(41310,'trends','itemid',30273),(41311,'trends_uint','itemid',30273),(41312,'events','itemid',30274),(41313,'history','itemid',30274),(41314,'history_log','itemid',30274),(41315,'history_str','itemid',30274),(41316,'history_text','itemid',30274),(41317,'history_uint','itemid',30274),(41318,'trends','itemid',30274),(41319,'trends_uint','itemid',30274),(41320,'events','itemid',30275),(41321,'history','itemid',30275),(41322,'history_log','itemid',30275),(41323,'history_str','itemid',30275),(41324,'history_text','itemid',30275),(41325,'history_uint','itemid',30275),(41326,'trends','itemid',30275),(41327,'trends_uint','itemid',30275),(41328,'events','itemid',30276),(41329,'history','itemid',30276),(41330,'history_log','itemid',30276),(41331,'history_str','itemid',30276),(41332,'history_text','itemid',30276),(41333,'history_uint','itemid',30276),(41334,'trends','itemid',30276),(41335,'trends_uint','itemid',30276),(41336,'events','itemid',30277),(41337,'history','itemid',30277),(41338,'history_log','itemid',30277),(41339,'history_str','itemid',30277),(41340,'history_text','itemid',30277),(41341,'history_uint','itemid',30277),(41342,'trends','itemid',30277),(41343,'trends_uint','itemid',30277),(41344,'events','itemid',30278),(41345,'history','itemid',30278),(41346,'history_log','itemid',30278),(41347,'history_str','itemid',30278),(41348,'history_text','itemid',30278),(41349,'history_uint','itemid',30278),(41350,'trends','itemid',30278),(41351,'trends_uint','itemid',30278),(41352,'events','itemid',30279),(41353,'history','itemid',30279),(41354,'history_log','itemid',30279),(41355,'history_str','itemid',30279),(41356,'history_text','itemid',30279),(41357,'history_uint','itemid',30279),(41358,'trends','itemid',30279),(41359,'trends_uint','itemid',30279),(41360,'events','itemid',30280),(41361,'history','itemid',30280),(41362,'history_log','itemid',30280),(41363,'history_str','itemid',30280),(41364,'history_text','itemid',30280),(41365,'history_uint','itemid',30280),(41366,'trends','itemid',30280),(41367,'trends_uint','itemid',30280),(41368,'events','itemid',30281),(41369,'history','itemid',30281),(41370,'history_log','itemid',30281),(41371,'history_str','itemid',30281),(41372,'history_text','itemid',30281),(41373,'history_uint','itemid',30281),(41374,'trends','itemid',30281),(41375,'trends_uint','itemid',30281),(41376,'events','itemid',30282),(41377,'history','itemid',30282),(41378,'history_log','itemid',30282),(41379,'history_str','itemid',30282),(41380,'history_text','itemid',30282),(41381,'history_uint','itemid',30282),(41382,'trends','itemid',30282),(41383,'trends_uint','itemid',30282),(41384,'events','itemid',30283),(41385,'history','itemid',30283),(41386,'history_log','itemid',30283),(41387,'history_str','itemid',30283),(41388,'history_text','itemid',30283),(41389,'history_uint','itemid',30283),(41390,'trends','itemid',30283),(41391,'trends_uint','itemid',30283),(41392,'events','itemid',30284),(41393,'history','itemid',30284),(41394,'history_log','itemid',30284),(41395,'history_str','itemid',30284),(41396,'history_text','itemid',30284),(41397,'history_uint','itemid',30284),(41398,'trends','itemid',30284),(41399,'trends_uint','itemid',30284),(41400,'events','itemid',30285),(41401,'history','itemid',30285),(41402,'history_log','itemid',30285),(41403,'history_str','itemid',30285),(41404,'history_text','itemid',30285),(41405,'history_uint','itemid',30285),(41406,'trends','itemid',30285),(41407,'trends_uint','itemid',30285),(41408,'events','itemid',30286),(41409,'history','itemid',30286),(41410,'history_log','itemid',30286),(41411,'history_str','itemid',30286),(41412,'history_text','itemid',30286),(41413,'history_uint','itemid',30286),(41414,'trends','itemid',30286),(41415,'trends_uint','itemid',30286),(41416,'events','itemid',30287),(41417,'history','itemid',30287),(41418,'history_log','itemid',30287),(41419,'history_str','itemid',30287),(41420,'history_text','itemid',30287),(41421,'history_uint','itemid',30287),(41422,'trends','itemid',30287),(41423,'trends_uint','itemid',30287),(41424,'events','itemid',30288),(41425,'history','itemid',30288),(41426,'history_log','itemid',30288),(41427,'history_str','itemid',30288),(41428,'history_text','itemid',30288),(41429,'history_uint','itemid',30288),(41430,'trends','itemid',30288),(41431,'trends_uint','itemid',30288),(41432,'events','itemid',30289),(41433,'history','itemid',30289),(41434,'history_log','itemid',30289),(41435,'history_str','itemid',30289),(41436,'history_text','itemid',30289),(41437,'history_uint','itemid',30289),(41438,'trends','itemid',30289),(41439,'trends_uint','itemid',30289),(41440,'events','itemid',30290),(41441,'history','itemid',30290),(41442,'history_log','itemid',30290),(41443,'history_str','itemid',30290),(41444,'history_text','itemid',30290),(41445,'history_uint','itemid',30290),(41446,'trends','itemid',30290),(41447,'trends_uint','itemid',30290),(41448,'events','itemid',30291),(41449,'history','itemid',30291),(41450,'history_log','itemid',30291),(41451,'history_str','itemid',30291),(41452,'history_text','itemid',30291),(41453,'history_uint','itemid',30291),(41454,'trends','itemid',30291),(41455,'trends_uint','itemid',30291),(41456,'events','itemid',30292),(41457,'history','itemid',30292),(41458,'history_log','itemid',30292),(41459,'history_str','itemid',30292),(41460,'history_text','itemid',30292),(41461,'history_uint','itemid',30292),(41462,'trends','itemid',30292),(41463,'trends_uint','itemid',30292),(41464,'events','itemid',30293),(41465,'history','itemid',30293),(41466,'history_log','itemid',30293),(41467,'history_str','itemid',30293),(41468,'history_text','itemid',30293),(41469,'history_uint','itemid',30293),(41470,'trends','itemid',30293),(41471,'trends_uint','itemid',30293),(41472,'events','itemid',30294),(41473,'history','itemid',30294),(41474,'history_log','itemid',30294),(41475,'history_str','itemid',30294),(41476,'history_text','itemid',30294),(41477,'history_uint','itemid',30294),(41478,'trends','itemid',30294),(41479,'trends_uint','itemid',30294),(41480,'events','itemid',30295),(41481,'history','itemid',30295),(41482,'history_log','itemid',30295),(41483,'history_str','itemid',30295),(41484,'history_text','itemid',30295),(41485,'history_uint','itemid',30295),(41486,'trends','itemid',30295),(41487,'trends_uint','itemid',30295),(41488,'events','itemid',30296),(41489,'history','itemid',30296),(41490,'history_log','itemid',30296),(41491,'history_str','itemid',30296),(41492,'history_text','itemid',30296),(41493,'history_uint','itemid',30296),(41494,'trends','itemid',30296),(41495,'trends_uint','itemid',30296),(41496,'events','itemid',30297),(41497,'history','itemid',30297),(41498,'history_log','itemid',30297),(41499,'history_str','itemid',30297),(41500,'history_text','itemid',30297),(41501,'history_uint','itemid',30297),(41502,'trends','itemid',30297),(41503,'trends_uint','itemid',30297),(41504,'events','itemid',30298),(41505,'history','itemid',30298),(41506,'history_log','itemid',30298),(41507,'history_str','itemid',30298),(41508,'history_text','itemid',30298),(41509,'history_uint','itemid',30298),(41510,'trends','itemid',30298),(41511,'trends_uint','itemid',30298),(41512,'events','itemid',30299),(41513,'history','itemid',30299),(41514,'history_log','itemid',30299),(41515,'history_str','itemid',30299),(41516,'history_text','itemid',30299),(41517,'history_uint','itemid',30299),(41518,'trends','itemid',30299),(41519,'trends_uint','itemid',30299),(41520,'events','itemid',30300),(41521,'history','itemid',30300),(41522,'history_log','itemid',30300),(41523,'history_str','itemid',30300),(41524,'history_text','itemid',30300),(41525,'history_uint','itemid',30300),(41526,'trends','itemid',30300),(41527,'trends_uint','itemid',30300),(41528,'events','itemid',30301),(41529,'history','itemid',30301),(41530,'history_log','itemid',30301),(41531,'history_str','itemid',30301),(41532,'history_text','itemid',30301),(41533,'history_uint','itemid',30301),(41534,'trends','itemid',30301),(41535,'trends_uint','itemid',30301),(41536,'events','itemid',30302),(41537,'history','itemid',30302),(41538,'history_log','itemid',30302),(41539,'history_str','itemid',30302),(41540,'history_text','itemid',30302),(41541,'history_uint','itemid',30302),(41542,'trends','itemid',30302),(41543,'trends_uint','itemid',30302),(41544,'events','itemid',30303),(41545,'history','itemid',30303),(41546,'history_log','itemid',30303),(41547,'history_str','itemid',30303),(41548,'history_text','itemid',30303),(41549,'history_uint','itemid',30303),(41550,'trends','itemid',30303),(41551,'trends_uint','itemid',30303),(41552,'events','itemid',30304),(41553,'history','itemid',30304),(41554,'history_log','itemid',30304),(41555,'history_str','itemid',30304),(41556,'history_text','itemid',30304),(41557,'history_uint','itemid',30304),(41558,'trends','itemid',30304),(41559,'trends_uint','itemid',30304),(41560,'events','itemid',30305),(41561,'history','itemid',30305),(41562,'history_log','itemid',30305),(41563,'history_str','itemid',30305),(41564,'history_text','itemid',30305),(41565,'history_uint','itemid',30305),(41566,'trends','itemid',30305),(41567,'trends_uint','itemid',30305),(41568,'events','itemid',30306),(41569,'history','itemid',30306),(41570,'history_log','itemid',30306),(41571,'history_str','itemid',30306),(41572,'history_text','itemid',30306),(41573,'history_uint','itemid',30306),(41574,'trends','itemid',30306),(41575,'trends_uint','itemid',30306),(41576,'events','itemid',30307),(41577,'history','itemid',30307),(41578,'history_log','itemid',30307),(41579,'history_str','itemid',30307),(41580,'history_text','itemid',30307),(41581,'history_uint','itemid',30307),(41582,'trends','itemid',30307),(41583,'trends_uint','itemid',30307),(41584,'events','itemid',30308),(41585,'history','itemid',30308),(41586,'history_log','itemid',30308),(41587,'history_str','itemid',30308),(41588,'history_text','itemid',30308),(41589,'history_uint','itemid',30308),(41590,'trends','itemid',30308),(41591,'trends_uint','itemid',30308),(41592,'events','itemid',30309),(41593,'history','itemid',30309),(41594,'history_log','itemid',30309),(41595,'history_str','itemid',30309),(41596,'history_text','itemid',30309),(41597,'history_uint','itemid',30309),(41598,'trends','itemid',30309),(41599,'trends_uint','itemid',30309),(41600,'events','itemid',30310),(41601,'history','itemid',30310),(41602,'history_log','itemid',30310),(41603,'history_str','itemid',30310),(41604,'history_text','itemid',30310),(41605,'history_uint','itemid',30310),(41606,'trends','itemid',30310),(41607,'trends_uint','itemid',30310),(41608,'events','itemid',30311),(41609,'history','itemid',30311),(41610,'history_log','itemid',30311),(41611,'history_str','itemid',30311),(41612,'history_text','itemid',30311),(41613,'history_uint','itemid',30311),(41614,'trends','itemid',30311),(41615,'trends_uint','itemid',30311),(41616,'events','itemid',30312),(41617,'history','itemid',30312),(41618,'history_log','itemid',30312),(41619,'history_str','itemid',30312),(41620,'history_text','itemid',30312),(41621,'history_uint','itemid',30312),(41622,'trends','itemid',30312),(41623,'trends_uint','itemid',30312),(41624,'events','itemid',30313),(41625,'history','itemid',30313),(41626,'history_log','itemid',30313),(41627,'history_str','itemid',30313),(41628,'history_text','itemid',30313),(41629,'history_uint','itemid',30313),(41630,'trends','itemid',30313),(41631,'trends_uint','itemid',30313),(41632,'events','itemid',30314),(41633,'history','itemid',30314),(41634,'history_log','itemid',30314),(41635,'history_str','itemid',30314),(41636,'history_text','itemid',30314),(41637,'history_uint','itemid',30314),(41638,'trends','itemid',30314),(41639,'trends_uint','itemid',30314),(41640,'events','itemid',30315),(41641,'history','itemid',30315),(41642,'history_log','itemid',30315),(41643,'history_str','itemid',30315),(41644,'history_text','itemid',30315),(41645,'history_uint','itemid',30315),(41646,'trends','itemid',30315),(41647,'trends_uint','itemid',30315),(41648,'events','itemid',30316),(41649,'history','itemid',30316),(41650,'history_log','itemid',30316),(41651,'history_str','itemid',30316),(41652,'history_text','itemid',30316),(41653,'history_uint','itemid',30316),(41654,'trends','itemid',30316),(41655,'trends_uint','itemid',30316),(41656,'events','itemid',30317),(41657,'history','itemid',30317),(41658,'history_log','itemid',30317),(41659,'history_str','itemid',30317),(41660,'history_text','itemid',30317),(41661,'history_uint','itemid',30317),(41662,'trends','itemid',30317),(41663,'trends_uint','itemid',30317),(41664,'events','itemid',30318),(41665,'history','itemid',30318),(41666,'history_log','itemid',30318),(41667,'history_str','itemid',30318),(41668,'history_text','itemid',30318),(41669,'history_uint','itemid',30318),(41670,'trends','itemid',30318),(41671,'trends_uint','itemid',30318),(41672,'events','itemid',30319),(41673,'history','itemid',30319),(41674,'history_log','itemid',30319),(41675,'history_str','itemid',30319),(41676,'history_text','itemid',30319),(41677,'history_uint','itemid',30319),(41678,'trends','itemid',30319),(41679,'trends_uint','itemid',30319),(41680,'events','itemid',30320),(41681,'history','itemid',30320),(41682,'history_log','itemid',30320),(41683,'history_str','itemid',30320),(41684,'history_text','itemid',30320),(41685,'history_uint','itemid',30320),(41686,'trends','itemid',30320),(41687,'trends_uint','itemid',30320),(41688,'events','itemid',30321),(41689,'history','itemid',30321),(41690,'history_log','itemid',30321),(41691,'history_str','itemid',30321),(41692,'history_text','itemid',30321),(41693,'history_uint','itemid',30321),(41694,'trends','itemid',30321),(41695,'trends_uint','itemid',30321),(41696,'events','itemid',30322),(41697,'history','itemid',30322),(41698,'history_log','itemid',30322),(41699,'history_str','itemid',30322),(41700,'history_text','itemid',30322),(41701,'history_uint','itemid',30322),(41702,'trends','itemid',30322),(41703,'trends_uint','itemid',30322),(41704,'events','itemid',30323),(41705,'history','itemid',30323),(41706,'history_log','itemid',30323),(41707,'history_str','itemid',30323),(41708,'history_text','itemid',30323),(41709,'history_uint','itemid',30323),(41710,'trends','itemid',30323),(41711,'trends_uint','itemid',30323),(41712,'events','itemid',30324),(41713,'history','itemid',30324),(41714,'history_log','itemid',30324),(41715,'history_str','itemid',30324),(41716,'history_text','itemid',30324),(41717,'history_uint','itemid',30324),(41718,'trends','itemid',30324),(41719,'trends_uint','itemid',30324),(41720,'events','itemid',30325),(41721,'history','itemid',30325),(41722,'history_log','itemid',30325),(41723,'history_str','itemid',30325),(41724,'history_text','itemid',30325),(41725,'history_uint','itemid',30325),(41726,'trends','itemid',30325),(41727,'trends_uint','itemid',30325),(41728,'events','itemid',30326),(41729,'history','itemid',30326),(41730,'history_log','itemid',30326),(41731,'history_str','itemid',30326),(41732,'history_text','itemid',30326),(41733,'history_uint','itemid',30326),(41734,'trends','itemid',30326),(41735,'trends_uint','itemid',30326),(41736,'events','itemid',30327),(41737,'history','itemid',30327),(41738,'history_log','itemid',30327),(41739,'history_str','itemid',30327),(41740,'history_text','itemid',30327),(41741,'history_uint','itemid',30327),(41742,'trends','itemid',30327),(41743,'trends_uint','itemid',30327),(41744,'events','itemid',30328),(41745,'history','itemid',30328),(41746,'history_log','itemid',30328),(41747,'history_str','itemid',30328),(41748,'history_text','itemid',30328),(41749,'history_uint','itemid',30328),(41750,'trends','itemid',30328),(41751,'trends_uint','itemid',30328),(41752,'events','itemid',30329),(41753,'history','itemid',30329),(41754,'history_log','itemid',30329),(41755,'history_str','itemid',30329),(41756,'history_text','itemid',30329),(41757,'history_uint','itemid',30329),(41758,'trends','itemid',30329),(41759,'trends_uint','itemid',30329),(41760,'events','itemid',30330),(41761,'history','itemid',30330),(41762,'history_log','itemid',30330),(41763,'history_str','itemid',30330),(41764,'history_text','itemid',30330),(41765,'history_uint','itemid',30330),(41766,'trends','itemid',30330),(41767,'trends_uint','itemid',30330),(41768,'events','itemid',30331),(41769,'history','itemid',30331),(41770,'history_log','itemid',30331),(41771,'history_str','itemid',30331),(41772,'history_text','itemid',30331),(41773,'history_uint','itemid',30331),(41774,'trends','itemid',30331),(41775,'trends_uint','itemid',30331),(41776,'events','itemid',30332),(41777,'history','itemid',30332),(41778,'history_log','itemid',30332),(41779,'history_str','itemid',30332),(41780,'history_text','itemid',30332),(41781,'history_uint','itemid',30332),(41782,'trends','itemid',30332),(41783,'trends_uint','itemid',30332),(41784,'events','itemid',30333),(41785,'history','itemid',30333),(41786,'history_log','itemid',30333),(41787,'history_str','itemid',30333),(41788,'history_text','itemid',30333),(41789,'history_uint','itemid',30333),(41790,'trends','itemid',30333),(41791,'trends_uint','itemid',30333),(41792,'events','itemid',30334),(41793,'history','itemid',30334),(41794,'history_log','itemid',30334),(41795,'history_str','itemid',30334),(41796,'history_text','itemid',30334),(41797,'history_uint','itemid',30334),(41798,'trends','itemid',30334),(41799,'trends_uint','itemid',30334),(41800,'events','itemid',30335),(41801,'history','itemid',30335),(41802,'history_log','itemid',30335),(41803,'history_str','itemid',30335),(41804,'history_text','itemid',30335),(41805,'history_uint','itemid',30335),(41806,'trends','itemid',30335),(41807,'trends_uint','itemid',30335),(41808,'events','itemid',30336),(41809,'history','itemid',30336),(41810,'history_log','itemid',30336),(41811,'history_str','itemid',30336),(41812,'history_text','itemid',30336),(41813,'history_uint','itemid',30336),(41814,'trends','itemid',30336),(41815,'trends_uint','itemid',30336),(41816,'events','itemid',31052),(41817,'history','itemid',31052),(41818,'history_log','itemid',31052),(41819,'history_str','itemid',31052),(41820,'history_text','itemid',31052),(41821,'history_uint','itemid',31052),(41822,'trends','itemid',31052),(41823,'trends_uint','itemid',31052),(41824,'events','itemid',31053),(41825,'history','itemid',31053),(41826,'history_log','itemid',31053),(41827,'history_str','itemid',31053),(41828,'history_text','itemid',31053),(41829,'history_uint','itemid',31053),(41830,'trends','itemid',31053),(41831,'trends_uint','itemid',31053),(41832,'events','itemid',31274),(41833,'history','itemid',31274),(41834,'history_log','itemid',31274),(41835,'history_str','itemid',31274),(41836,'history_text','itemid',31274),(41837,'history_uint','itemid',31274),(41838,'trends','itemid',31274),(41839,'trends_uint','itemid',31274),(41840,'events','itemid',31275),(41841,'history','itemid',31275),(41842,'history_log','itemid',31275),(41843,'history_str','itemid',31275),(41844,'history_text','itemid',31275),(41845,'history_uint','itemid',31275),(41846,'trends','itemid',31275),(41847,'trends_uint','itemid',31275),(41848,'events','itemid',31276),(41849,'history','itemid',31276),(41850,'history_log','itemid',31276),(41851,'history_str','itemid',31276),(41852,'history_text','itemid',31276),(41853,'history_uint','itemid',31276),(41854,'trends','itemid',31276),(41855,'trends_uint','itemid',31276),(41856,'events','itemid',31277),(41857,'history','itemid',31277),(41858,'history_log','itemid',31277),(41859,'history_str','itemid',31277),(41860,'history_text','itemid',31277),(41861,'history_uint','itemid',31277),(41862,'trends','itemid',31277),(41863,'trends_uint','itemid',31277),(41864,'events','itemid',31279),(41865,'history','itemid',31279),(41866,'history_log','itemid',31279),(41867,'history_str','itemid',31279),(41868,'history_text','itemid',31279),(41869,'history_uint','itemid',31279),(41870,'trends','itemid',31279),(41871,'trends_uint','itemid',31279),(41872,'events','itemid',31280),(41873,'history','itemid',31280),(41874,'history_log','itemid',31280),(41875,'history_str','itemid',31280),(41876,'history_text','itemid',31280),(41877,'history_uint','itemid',31280),(41878,'trends','itemid',31280),(41879,'trends_uint','itemid',31280),(41880,'events','itemid',31282),(41881,'history','itemid',31282),(41882,'history_log','itemid',31282),(41883,'history_str','itemid',31282),(41884,'history_text','itemid',31282),(41885,'history_uint','itemid',31282),(41886,'trends','itemid',31282),(41887,'trends_uint','itemid',31282),(41888,'events','itemid',31283),(41889,'history','itemid',31283),(41890,'history_log','itemid',31283),(41891,'history_str','itemid',31283),(41892,'history_text','itemid',31283),(41893,'history_uint','itemid',31283),(41894,'trends','itemid',31283),(41895,'trends_uint','itemid',31283),(41896,'events','itemid',31284),(41897,'history','itemid',31284),(41898,'history_log','itemid',31284),(41899,'history_str','itemid',31284),(41900,'history_text','itemid',31284),(41901,'history_uint','itemid',31284),(41902,'trends','itemid',31284),(41903,'trends_uint','itemid',31284),(41904,'events','itemid',31285),(41905,'history','itemid',31285),(41906,'history_log','itemid',31285),(41907,'history_str','itemid',31285),(41908,'history_text','itemid',31285),(41909,'history_uint','itemid',31285),(41910,'trends','itemid',31285),(41911,'trends_uint','itemid',31285),(41912,'events','itemid',31286),(41913,'history','itemid',31286),(41914,'history_log','itemid',31286),(41915,'history_str','itemid',31286),(41916,'history_text','itemid',31286),(41917,'history_uint','itemid',31286),(41918,'trends','itemid',31286),(41919,'trends_uint','itemid',31286),(41920,'events','itemid',31287),(41921,'history','itemid',31287),(41922,'history_log','itemid',31287),(41923,'history_str','itemid',31287),(41924,'history_text','itemid',31287),(41925,'history_uint','itemid',31287),(41926,'trends','itemid',31287),(41927,'trends_uint','itemid',31287),(41928,'events','itemid',31288),(41929,'history','itemid',31288),(41930,'history_log','itemid',31288),(41931,'history_str','itemid',31288),(41932,'history_text','itemid',31288),(41933,'history_uint','itemid',31288),(41934,'trends','itemid',31288),(41935,'trends_uint','itemid',31288),(41936,'events','itemid',31289),(41937,'history','itemid',31289),(41938,'history_log','itemid',31289),(41939,'history_str','itemid',31289),(41940,'history_text','itemid',31289),(41941,'history_uint','itemid',31289),(41942,'trends','itemid',31289),(41943,'trends_uint','itemid',31289),(41944,'events','itemid',31290),(41945,'history','itemid',31290),(41946,'history_log','itemid',31290),(41947,'history_str','itemid',31290),(41948,'history_text','itemid',31290),(41949,'history_uint','itemid',31290),(41950,'trends','itemid',31290),(41951,'trends_uint','itemid',31290),(41952,'events','itemid',31291),(41953,'history','itemid',31291),(41954,'history_log','itemid',31291),(41955,'history_str','itemid',31291),(41956,'history_text','itemid',31291),(41957,'history_uint','itemid',31291),(41958,'trends','itemid',31291),(41959,'trends_uint','itemid',31291),(41960,'events','itemid',31292),(41961,'history','itemid',31292),(41962,'history_log','itemid',31292),(41963,'history_str','itemid',31292),(41964,'history_text','itemid',31292),(41965,'history_uint','itemid',31292),(41966,'trends','itemid',31292),(41967,'trends_uint','itemid',31292),(41968,'events','itemid',31293),(41969,'history','itemid',31293),(41970,'history_log','itemid',31293),(41971,'history_str','itemid',31293),(41972,'history_text','itemid',31293),(41973,'history_uint','itemid',31293),(41974,'trends','itemid',31293),(41975,'trends_uint','itemid',31293),(41976,'events','itemid',31294),(41977,'history','itemid',31294),(41978,'history_log','itemid',31294),(41979,'history_str','itemid',31294),(41980,'history_text','itemid',31294),(41981,'history_uint','itemid',31294),(41982,'trends','itemid',31294),(41983,'trends_uint','itemid',31294),(41984,'events','itemid',31295),(41985,'history','itemid',31295),(41986,'history_log','itemid',31295),(41987,'history_str','itemid',31295),(41988,'history_text','itemid',31295),(41989,'history_uint','itemid',31295),(41990,'trends','itemid',31295),(41991,'trends_uint','itemid',31295),(41992,'events','itemid',31296),(41993,'history','itemid',31296),(41994,'history_log','itemid',31296),(41995,'history_str','itemid',31296),(41996,'history_text','itemid',31296),(41997,'history_uint','itemid',31296),(41998,'trends','itemid',31296),(41999,'trends_uint','itemid',31296),(42000,'events','itemid',31297),(42001,'history','itemid',31297),(42002,'history_log','itemid',31297),(42003,'history_str','itemid',31297),(42004,'history_text','itemid',31297),(42005,'history_uint','itemid',31297),(42006,'trends','itemid',31297),(42007,'trends_uint','itemid',31297),(42008,'events','itemid',31298),(42009,'history','itemid',31298),(42010,'history_log','itemid',31298),(42011,'history_str','itemid',31298),(42012,'history_text','itemid',31298),(42013,'history_uint','itemid',31298),(42014,'trends','itemid',31298),(42015,'trends_uint','itemid',31298),(42016,'events','itemid',31299),(42017,'history','itemid',31299),(42018,'history_log','itemid',31299),(42019,'history_str','itemid',31299),(42020,'history_text','itemid',31299),(42021,'history_uint','itemid',31299),(42022,'trends','itemid',31299),(42023,'trends_uint','itemid',31299),(42024,'events','itemid',31300),(42025,'history','itemid',31300),(42026,'history_log','itemid',31300),(42027,'history_str','itemid',31300),(42028,'history_text','itemid',31300),(42029,'history_uint','itemid',31300),(42030,'trends','itemid',31300),(42031,'trends_uint','itemid',31300),(42032,'events','itemid',31301),(42033,'history','itemid',31301),(42034,'history_log','itemid',31301),(42035,'history_str','itemid',31301),(42036,'history_text','itemid',31301),(42037,'history_uint','itemid',31301),(42038,'trends','itemid',31301),(42039,'trends_uint','itemid',31301),(42040,'events','itemid',31302),(42041,'history','itemid',31302),(42042,'history_log','itemid',31302),(42043,'history_str','itemid',31302),(42044,'history_text','itemid',31302),(42045,'history_uint','itemid',31302),(42046,'trends','itemid',31302),(42047,'trends_uint','itemid',31302),(42048,'events','itemid',31303),(42049,'history','itemid',31303),(42050,'history_log','itemid',31303),(42051,'history_str','itemid',31303),(42052,'history_text','itemid',31303),(42053,'history_uint','itemid',31303),(42054,'trends','itemid',31303),(42055,'trends_uint','itemid',31303),(42056,'events','itemid',31304),(42057,'history','itemid',31304),(42058,'history_log','itemid',31304),(42059,'history_str','itemid',31304),(42060,'history_text','itemid',31304),(42061,'history_uint','itemid',31304),(42062,'trends','itemid',31304),(42063,'trends_uint','itemid',31304),(42064,'events','itemid',31305),(42065,'history','itemid',31305),(42066,'history_log','itemid',31305),(42067,'history_str','itemid',31305),(42068,'history_text','itemid',31305),(42069,'history_uint','itemid',31305),(42070,'trends','itemid',31305),(42071,'trends_uint','itemid',31305),(42072,'events','itemid',31306),(42073,'history','itemid',31306),(42074,'history_log','itemid',31306),(42075,'history_str','itemid',31306),(42076,'history_text','itemid',31306),(42077,'history_uint','itemid',31306),(42078,'trends','itemid',31306),(42079,'trends_uint','itemid',31306),(42080,'events','itemid',31307),(42081,'history','itemid',31307),(42082,'history_log','itemid',31307),(42083,'history_str','itemid',31307),(42084,'history_text','itemid',31307),(42085,'history_uint','itemid',31307),(42086,'trends','itemid',31307),(42087,'trends_uint','itemid',31307),(42088,'events','itemid',31309),(42089,'history','itemid',31309),(42090,'history_log','itemid',31309),(42091,'history_str','itemid',31309),(42092,'history_text','itemid',31309),(42093,'history_uint','itemid',31309),(42094,'trends','itemid',31309),(42095,'trends_uint','itemid',31309),(42096,'events','itemid',31310),(42097,'history','itemid',31310),(42098,'history_log','itemid',31310),(42099,'history_str','itemid',31310),(42100,'history_text','itemid',31310),(42101,'history_uint','itemid',31310),(42102,'trends','itemid',31310),(42103,'trends_uint','itemid',31310),(42104,'events','itemid',31311),(42105,'history','itemid',31311),(42106,'history_log','itemid',31311),(42107,'history_str','itemid',31311),(42108,'history_text','itemid',31311),(42109,'history_uint','itemid',31311),(42110,'trends','itemid',31311),(42111,'trends_uint','itemid',31311),(42112,'events','itemid',31312),(42113,'history','itemid',31312),(42114,'history_log','itemid',31312),(42115,'history_str','itemid',31312),(42116,'history_text','itemid',31312),(42117,'history_uint','itemid',31312),(42118,'trends','itemid',31312),(42119,'trends_uint','itemid',31312),(42120,'events','itemid',31313),(42121,'history','itemid',31313),(42122,'history_log','itemid',31313),(42123,'history_str','itemid',31313),(42124,'history_text','itemid',31313),(42125,'history_uint','itemid',31313),(42126,'trends','itemid',31313),(42127,'trends_uint','itemid',31313),(42128,'events','itemid',31314),(42129,'history','itemid',31314),(42130,'history_log','itemid',31314),(42131,'history_str','itemid',31314),(42132,'history_text','itemid',31314),(42133,'history_uint','itemid',31314),(42134,'trends','itemid',31314),(42135,'trends_uint','itemid',31314),(42136,'events','itemid',31315),(42137,'history','itemid',31315),(42138,'history_log','itemid',31315),(42139,'history_str','itemid',31315),(42140,'history_text','itemid',31315),(42141,'history_uint','itemid',31315),(42142,'trends','itemid',31315),(42143,'trends_uint','itemid',31315),(42144,'events','itemid',31316),(42145,'history','itemid',31316),(42146,'history_log','itemid',31316),(42147,'history_str','itemid',31316),(42148,'history_text','itemid',31316),(42149,'history_uint','itemid',31316),(42150,'trends','itemid',31316),(42151,'trends_uint','itemid',31316),(42152,'events','itemid',31317),(42153,'history','itemid',31317),(42154,'history_log','itemid',31317),(42155,'history_str','itemid',31317),(42156,'history_text','itemid',31317),(42157,'history_uint','itemid',31317),(42158,'trends','itemid',31317),(42159,'trends_uint','itemid',31317),(42160,'events','itemid',31318),(42161,'history','itemid',31318),(42162,'history_log','itemid',31318),(42163,'history_str','itemid',31318),(42164,'history_text','itemid',31318),(42165,'history_uint','itemid',31318),(42166,'trends','itemid',31318),(42167,'trends_uint','itemid',31318),(42168,'events','itemid',31319),(42169,'history','itemid',31319),(42170,'history_log','itemid',31319),(42171,'history_str','itemid',31319),(42172,'history_text','itemid',31319),(42173,'history_uint','itemid',31319),(42174,'trends','itemid',31319),(42175,'trends_uint','itemid',31319),(42176,'events','itemid',31320),(42177,'history','itemid',31320),(42178,'history_log','itemid',31320),(42179,'history_str','itemid',31320),(42180,'history_text','itemid',31320),(42181,'history_uint','itemid',31320),(42182,'trends','itemid',31320),(42183,'trends_uint','itemid',31320),(42184,'events','itemid',31321),(42185,'history','itemid',31321),(42186,'history_log','itemid',31321),(42187,'history_str','itemid',31321),(42188,'history_text','itemid',31321),(42189,'history_uint','itemid',31321),(42190,'trends','itemid',31321),(42191,'trends_uint','itemid',31321),(42192,'events','itemid',31322),(42193,'history','itemid',31322),(42194,'history_log','itemid',31322),(42195,'history_str','itemid',31322),(42196,'history_text','itemid',31322),(42197,'history_uint','itemid',31322),(42198,'trends','itemid',31322),(42199,'trends_uint','itemid',31322),(42200,'events','itemid',31323),(42201,'history','itemid',31323),(42202,'history_log','itemid',31323),(42203,'history_str','itemid',31323),(42204,'history_text','itemid',31323),(42205,'history_uint','itemid',31323),(42206,'trends','itemid',31323),(42207,'trends_uint','itemid',31323),(42208,'events','itemid',31324),(42209,'history','itemid',31324),(42210,'history_log','itemid',31324),(42211,'history_str','itemid',31324),(42212,'history_text','itemid',31324),(42213,'history_uint','itemid',31324),(42214,'trends','itemid',31324),(42215,'trends_uint','itemid',31324),(42216,'events','itemid',31325),(42217,'history','itemid',31325),(42218,'history_log','itemid',31325),(42219,'history_str','itemid',31325),(42220,'history_text','itemid',31325),(42221,'history_uint','itemid',31325),(42222,'trends','itemid',31325),(42223,'trends_uint','itemid',31325),(42224,'events','itemid',31326),(42225,'history','itemid',31326),(42226,'history_log','itemid',31326),(42227,'history_str','itemid',31326),(42228,'history_text','itemid',31326),(42229,'history_uint','itemid',31326),(42230,'trends','itemid',31326),(42231,'trends_uint','itemid',31326),(42232,'events','itemid',31327),(42233,'history','itemid',31327),(42234,'history_log','itemid',31327),(42235,'history_str','itemid',31327),(42236,'history_text','itemid',31327),(42237,'history_uint','itemid',31327),(42238,'trends','itemid',31327),(42239,'trends_uint','itemid',31327),(42240,'events','itemid',31328),(42241,'history','itemid',31328),(42242,'history_log','itemid',31328),(42243,'history_str','itemid',31328),(42244,'history_text','itemid',31328),(42245,'history_uint','itemid',31328),(42246,'trends','itemid',31328),(42247,'trends_uint','itemid',31328),(42248,'events','itemid',31329),(42249,'history','itemid',31329),(42250,'history_log','itemid',31329),(42251,'history_str','itemid',31329),(42252,'history_text','itemid',31329),(42253,'history_uint','itemid',31329),(42254,'trends','itemid',31329),(42255,'trends_uint','itemid',31329),(42256,'events','itemid',31330),(42257,'history','itemid',31330),(42258,'history_log','itemid',31330),(42259,'history_str','itemid',31330),(42260,'history_text','itemid',31330),(42261,'history_uint','itemid',31330),(42262,'trends','itemid',31330),(42263,'trends_uint','itemid',31330),(42264,'events','itemid',31331),(42265,'history','itemid',31331),(42266,'history_log','itemid',31331),(42267,'history_str','itemid',31331),(42268,'history_text','itemid',31331),(42269,'history_uint','itemid',31331),(42270,'trends','itemid',31331),(42271,'trends_uint','itemid',31331),(42272,'events','itemid',31332),(42273,'history','itemid',31332),(42274,'history_log','itemid',31332),(42275,'history_str','itemid',31332),(42276,'history_text','itemid',31332),(42277,'history_uint','itemid',31332),(42278,'trends','itemid',31332),(42279,'trends_uint','itemid',31332),(42280,'events','itemid',31333),(42281,'history','itemid',31333),(42282,'history_log','itemid',31333),(42283,'history_str','itemid',31333),(42284,'history_text','itemid',31333),(42285,'history_uint','itemid',31333),(42286,'trends','itemid',31333),(42287,'trends_uint','itemid',31333),(42288,'events','itemid',31419),(42289,'history','itemid',31419),(42290,'history_log','itemid',31419),(42291,'history_str','itemid',31419),(42292,'history_text','itemid',31419),(42293,'history_uint','itemid',31419),(42294,'trends','itemid',31419),(42295,'trends_uint','itemid',31419),(42296,'events','itemid',31420),(42297,'history','itemid',31420),(42298,'history_log','itemid',31420),(42299,'history_str','itemid',31420),(42300,'history_text','itemid',31420),(42301,'history_uint','itemid',31420),(42302,'trends','itemid',31420),(42303,'trends_uint','itemid',31420),(42304,'events','itemid',31421),(42305,'history','itemid',31421),(42306,'history_log','itemid',31421),(42307,'history_str','itemid',31421),(42308,'history_text','itemid',31421),(42309,'history_uint','itemid',31421),(42310,'trends','itemid',31421),(42311,'trends_uint','itemid',31421),(42312,'events','itemid',31422),(42313,'history','itemid',31422),(42314,'history_log','itemid',31422),(42315,'history_str','itemid',31422),(42316,'history_text','itemid',31422),(42317,'history_uint','itemid',31422),(42318,'trends','itemid',31422),(42319,'trends_uint','itemid',31422),(42320,'events','itemid',31427),(42321,'history','itemid',31427),(42322,'history_log','itemid',31427),(42323,'history_str','itemid',31427),(42324,'history_text','itemid',31427),(42325,'history_uint','itemid',31427),(42326,'trends','itemid',31427),(42327,'trends_uint','itemid',31427),(42328,'events','itemid',31612),(42329,'history','itemid',31612),(42330,'history_log','itemid',31612),(42331,'history_str','itemid',31612),(42332,'history_text','itemid',31612),(42333,'history_uint','itemid',31612),(42334,'trends','itemid',31612),(42335,'trends_uint','itemid',31612),(42336,'events','itemid',31613),(42337,'history','itemid',31613),(42338,'history_log','itemid',31613),(42339,'history_str','itemid',31613),(42340,'history_text','itemid',31613),(42341,'history_uint','itemid',31613),(42342,'trends','itemid',31613),(42343,'trends_uint','itemid',31613),(42344,'events','itemid',31614),(42345,'history','itemid',31614),(42346,'history_log','itemid',31614),(42347,'history_str','itemid',31614),(42348,'history_text','itemid',31614),(42349,'history_uint','itemid',31614),(42350,'trends','itemid',31614),(42351,'trends_uint','itemid',31614),(42352,'events','itemid',31948),(42353,'history','itemid',31948),(42354,'history_log','itemid',31948),(42355,'history_str','itemid',31948),(42356,'history_text','itemid',31948),(42357,'history_uint','itemid',31948),(42358,'trends','itemid',31948),(42359,'trends_uint','itemid',31948),(42360,'events','itemid',31949),(42361,'history','itemid',31949),(42362,'history_log','itemid',31949),(42363,'history_str','itemid',31949),(42364,'history_text','itemid',31949),(42365,'history_uint','itemid',31949),(42366,'trends','itemid',31949),(42367,'trends_uint','itemid',31949),(42368,'events','itemid',31950),(42369,'history','itemid',31950),(42370,'history_log','itemid',31950),(42371,'history_str','itemid',31950),(42372,'history_text','itemid',31950),(42373,'history_uint','itemid',31950),(42374,'trends','itemid',31950),(42375,'trends_uint','itemid',31950),(42376,'events','itemid',31951),(42377,'history','itemid',31951),(42378,'history_log','itemid',31951),(42379,'history_str','itemid',31951),(42380,'history_text','itemid',31951),(42381,'history_uint','itemid',31951),(42382,'trends','itemid',31951),(42383,'trends_uint','itemid',31951),(42384,'events','itemid',31952),(42385,'history','itemid',31952),(42386,'history_log','itemid',31952),(42387,'history_str','itemid',31952),(42388,'history_text','itemid',31952),(42389,'history_uint','itemid',31952),(42390,'trends','itemid',31952),(42391,'trends_uint','itemid',31952),(42392,'events','itemid',31953),(42393,'history','itemid',31953),(42394,'history_log','itemid',31953),(42395,'history_str','itemid',31953),(42396,'history_text','itemid',31953),(42397,'history_uint','itemid',31953),(42398,'trends','itemid',31953),(42399,'trends_uint','itemid',31953),(42400,'events','itemid',31954),(42401,'history','itemid',31954),(42402,'history_log','itemid',31954),(42403,'history_str','itemid',31954),(42404,'history_text','itemid',31954),(42405,'history_uint','itemid',31954),(42406,'trends','itemid',31954),(42407,'trends_uint','itemid',31954),(42408,'events','itemid',31955),(42409,'history','itemid',31955),(42410,'history_log','itemid',31955),(42411,'history_str','itemid',31955),(42412,'history_text','itemid',31955),(42413,'history_uint','itemid',31955),(42414,'trends','itemid',31955),(42415,'trends_uint','itemid',31955),(42416,'events','itemid',31956),(42417,'history','itemid',31956),(42418,'history_log','itemid',31956),(42419,'history_str','itemid',31956),(42420,'history_text','itemid',31956),(42421,'history_uint','itemid',31956),(42422,'trends','itemid',31956),(42423,'trends_uint','itemid',31956),(42424,'events','itemid',31957),(42425,'history','itemid',31957),(42426,'history_log','itemid',31957),(42427,'history_str','itemid',31957),(42428,'history_text','itemid',31957),(42429,'history_uint','itemid',31957),(42430,'trends','itemid',31957),(42431,'trends_uint','itemid',31957),(42432,'events','itemid',31958),(42433,'history','itemid',31958),(42434,'history_log','itemid',31958),(42435,'history_str','itemid',31958),(42436,'history_text','itemid',31958),(42437,'history_uint','itemid',31958),(42438,'trends','itemid',31958),(42439,'trends_uint','itemid',31958),(42440,'events','itemid',31959),(42441,'history','itemid',31959),(42442,'history_log','itemid',31959),(42443,'history_str','itemid',31959),(42444,'history_text','itemid',31959),(42445,'history_uint','itemid',31959),(42446,'trends','itemid',31959),(42447,'trends_uint','itemid',31959),(42448,'events','itemid',31960),(42449,'history','itemid',31960),(42450,'history_log','itemid',31960),(42451,'history_str','itemid',31960),(42452,'history_text','itemid',31960),(42453,'history_uint','itemid',31960),(42454,'trends','itemid',31960),(42455,'trends_uint','itemid',31960),(42456,'events','itemid',31961),(42457,'history','itemid',31961),(42458,'history_log','itemid',31961),(42459,'history_str','itemid',31961),(42460,'history_text','itemid',31961),(42461,'history_uint','itemid',31961),(42462,'trends','itemid',31961),(42463,'trends_uint','itemid',31961),(42464,'events','itemid',31962),(42465,'history','itemid',31962),(42466,'history_log','itemid',31962),(42467,'history_str','itemid',31962),(42468,'history_text','itemid',31962),(42469,'history_uint','itemid',31962),(42470,'trends','itemid',31962),(42471,'trends_uint','itemid',31962),(42472,'events','itemid',31963),(42473,'history','itemid',31963),(42474,'history_log','itemid',31963),(42475,'history_str','itemid',31963),(42476,'history_text','itemid',31963),(42477,'history_uint','itemid',31963),(42478,'trends','itemid',31963),(42479,'trends_uint','itemid',31963),(42480,'events','itemid',31964),(42481,'history','itemid',31964),(42482,'history_log','itemid',31964),(42483,'history_str','itemid',31964),(42484,'history_text','itemid',31964),(42485,'history_uint','itemid',31964),(42486,'trends','itemid',31964),(42487,'trends_uint','itemid',31964),(42488,'events','itemid',31965),(42489,'history','itemid',31965),(42490,'history_log','itemid',31965),(42491,'history_str','itemid',31965),(42492,'history_text','itemid',31965),(42493,'history_uint','itemid',31965),(42494,'trends','itemid',31965),(42495,'trends_uint','itemid',31965),(42496,'events','itemid',31966),(42497,'history','itemid',31966),(42498,'history_log','itemid',31966),(42499,'history_str','itemid',31966),(42500,'history_text','itemid',31966),(42501,'history_uint','itemid',31966),(42502,'trends','itemid',31966),(42503,'trends_uint','itemid',31966),(42504,'events','itemid',31967),(42505,'history','itemid',31967),(42506,'history_log','itemid',31967),(42507,'history_str','itemid',31967),(42508,'history_text','itemid',31967),(42509,'history_uint','itemid',31967),(42510,'trends','itemid',31967),(42511,'trends_uint','itemid',31967),(42512,'events','itemid',31968),(42513,'history','itemid',31968),(42514,'history_log','itemid',31968),(42515,'history_str','itemid',31968),(42516,'history_text','itemid',31968),(42517,'history_uint','itemid',31968),(42518,'trends','itemid',31968),(42519,'trends_uint','itemid',31968),(42520,'events','itemid',31969),(42521,'history','itemid',31969),(42522,'history_log','itemid',31969),(42523,'history_str','itemid',31969),(42524,'history_text','itemid',31969),(42525,'history_uint','itemid',31969),(42526,'trends','itemid',31969),(42527,'trends_uint','itemid',31969),(42528,'events','itemid',31970),(42529,'history','itemid',31970),(42530,'history_log','itemid',31970),(42531,'history_str','itemid',31970),(42532,'history_text','itemid',31970),(42533,'history_uint','itemid',31970),(42534,'trends','itemid',31970),(42535,'trends_uint','itemid',31970),(42536,'events','itemid',31971),(42537,'history','itemid',31971),(42538,'history_log','itemid',31971),(42539,'history_str','itemid',31971),(42540,'history_text','itemid',31971),(42541,'history_uint','itemid',31971),(42542,'trends','itemid',31971),(42543,'trends_uint','itemid',31971),(42544,'events','itemid',31972),(42545,'history','itemid',31972),(42546,'history_log','itemid',31972),(42547,'history_str','itemid',31972),(42548,'history_text','itemid',31972),(42549,'history_uint','itemid',31972),(42550,'trends','itemid',31972),(42551,'trends_uint','itemid',31972),(42552,'events','itemid',31973),(42553,'history','itemid',31973),(42554,'history_log','itemid',31973),(42555,'history_str','itemid',31973),(42556,'history_text','itemid',31973),(42557,'history_uint','itemid',31973),(42558,'trends','itemid',31973),(42559,'trends_uint','itemid',31973),(42560,'events','itemid',31974),(42561,'history','itemid',31974),(42562,'history_log','itemid',31974),(42563,'history_str','itemid',31974),(42564,'history_text','itemid',31974),(42565,'history_uint','itemid',31974),(42566,'trends','itemid',31974),(42567,'trends_uint','itemid',31974),(42568,'events','itemid',32002),(42569,'history','itemid',32002),(42570,'history_log','itemid',32002),(42571,'history_str','itemid',32002),(42572,'history_text','itemid',32002),(42573,'history_uint','itemid',32002),(42574,'trends','itemid',32002),(42575,'trends_uint','itemid',32002),(42576,'events','itemid',32239),(42577,'history','itemid',32239),(42578,'history_log','itemid',32239),(42579,'history_str','itemid',32239),(42580,'history_text','itemid',32239),(42581,'history_uint','itemid',32239),(42582,'trends','itemid',32239),(42583,'trends_uint','itemid',32239),(42584,'events','itemid',32240),(42585,'history','itemid',32240),(42586,'history_log','itemid',32240),(42587,'history_str','itemid',32240),(42588,'history_text','itemid',32240),(42589,'history_uint','itemid',32240),(42590,'trends','itemid',32240),(42591,'trends_uint','itemid',32240),(42592,'events','itemid',32241),(42593,'history','itemid',32241),(42594,'history_log','itemid',32241),(42595,'history_str','itemid',32241),(42596,'history_text','itemid',32241),(42597,'history_uint','itemid',32241),(42598,'trends','itemid',32241),(42599,'trends_uint','itemid',32241),(42600,'events','itemid',32242),(42601,'history','itemid',32242),(42602,'history_log','itemid',32242),(42603,'history_str','itemid',32242),(42604,'history_text','itemid',32242),(42605,'history_uint','itemid',32242),(42606,'trends','itemid',32242),(42607,'trends_uint','itemid',32242),(42608,'events','itemid',32243),(42609,'history','itemid',32243),(42610,'history_log','itemid',32243),(42611,'history_str','itemid',32243),(42612,'history_text','itemid',32243),(42613,'history_uint','itemid',32243),(42614,'trends','itemid',32243),(42615,'trends_uint','itemid',32243),(42616,'events','itemid',32244),(42617,'history','itemid',32244),(42618,'history_log','itemid',32244),(42619,'history_str','itemid',32244),(42620,'history_text','itemid',32244),(42621,'history_uint','itemid',32244),(42622,'trends','itemid',32244),(42623,'trends_uint','itemid',32244),(42624,'events','itemid',32245),(42625,'history','itemid',32245),(42626,'history_log','itemid',32245),(42627,'history_str','itemid',32245),(42628,'history_text','itemid',32245),(42629,'history_uint','itemid',32245),(42630,'trends','itemid',32245),(42631,'trends_uint','itemid',32245),(42632,'events','itemid',32246),(42633,'history','itemid',32246),(42634,'history_log','itemid',32246),(42635,'history_str','itemid',32246),(42636,'history_text','itemid',32246),(42637,'history_uint','itemid',32246),(42638,'trends','itemid',32246),(42639,'trends_uint','itemid',32246),(42640,'events','itemid',32247),(42641,'history','itemid',32247),(42642,'history_log','itemid',32247),(42643,'history_str','itemid',32247),(42644,'history_text','itemid',32247),(42645,'history_uint','itemid',32247),(42646,'trends','itemid',32247),(42647,'trends_uint','itemid',32247),(42648,'events','itemid',32248),(42649,'history','itemid',32248),(42650,'history_log','itemid',32248),(42651,'history_str','itemid',32248),(42652,'history_text','itemid',32248),(42653,'history_uint','itemid',32248),(42654,'trends','itemid',32248),(42655,'trends_uint','itemid',32248),(42656,'events','itemid',32249),(42657,'history','itemid',32249),(42658,'history_log','itemid',32249),(42659,'history_str','itemid',32249),(42660,'history_text','itemid',32249),(42661,'history_uint','itemid',32249),(42662,'trends','itemid',32249),(42663,'trends_uint','itemid',32249),(42664,'events','itemid',32250),(42665,'history','itemid',32250),(42666,'history_log','itemid',32250),(42667,'history_str','itemid',32250),(42668,'history_text','itemid',32250),(42669,'history_uint','itemid',32250),(42670,'trends','itemid',32250),(42671,'trends_uint','itemid',32250),(42672,'events','itemid',32251),(42673,'history','itemid',32251),(42674,'history_log','itemid',32251),(42675,'history_str','itemid',32251),(42676,'history_text','itemid',32251),(42677,'history_uint','itemid',32251),(42678,'trends','itemid',32251),(42679,'trends_uint','itemid',32251),(42680,'events','itemid',32252),(42681,'history','itemid',32252),(42682,'history_log','itemid',32252),(42683,'history_str','itemid',32252),(42684,'history_text','itemid',32252),(42685,'history_uint','itemid',32252),(42686,'trends','itemid',32252),(42687,'trends_uint','itemid',32252),(42688,'events','itemid',32253),(42689,'history','itemid',32253),(42690,'history_log','itemid',32253),(42691,'history_str','itemid',32253),(42692,'history_text','itemid',32253),(42693,'history_uint','itemid',32253),(42694,'trends','itemid',32253),(42695,'trends_uint','itemid',32253),(42696,'events','itemid',32254),(42697,'history','itemid',32254),(42698,'history_log','itemid',32254),(42699,'history_str','itemid',32254),(42700,'history_text','itemid',32254),(42701,'history_uint','itemid',32254),(42702,'trends','itemid',32254),(42703,'trends_uint','itemid',32254),(42704,'events','itemid',32255),(42705,'history','itemid',32255),(42706,'history_log','itemid',32255),(42707,'history_str','itemid',32255),(42708,'history_text','itemid',32255),(42709,'history_uint','itemid',32255),(42710,'trends','itemid',32255),(42711,'trends_uint','itemid',32255),(42712,'events','itemid',32256),(42713,'history','itemid',32256),(42714,'history_log','itemid',32256),(42715,'history_str','itemid',32256),(42716,'history_text','itemid',32256),(42717,'history_uint','itemid',32256),(42718,'trends','itemid',32256),(42719,'trends_uint','itemid',32256),(42720,'events','itemid',32257),(42721,'history','itemid',32257),(42722,'history_log','itemid',32257),(42723,'history_str','itemid',32257),(42724,'history_text','itemid',32257),(42725,'history_uint','itemid',32257),(42726,'trends','itemid',32257),(42727,'trends_uint','itemid',32257),(42728,'events','itemid',32258),(42729,'history','itemid',32258),(42730,'history_log','itemid',32258),(42731,'history_str','itemid',32258),(42732,'history_text','itemid',32258),(42733,'history_uint','itemid',32258),(42734,'trends','itemid',32258),(42735,'trends_uint','itemid',32258),(42736,'events','itemid',32259),(42737,'history','itemid',32259),(42738,'history_log','itemid',32259),(42739,'history_str','itemid',32259),(42740,'history_text','itemid',32259),(42741,'history_uint','itemid',32259),(42742,'trends','itemid',32259),(42743,'trends_uint','itemid',32259),(42744,'events','itemid',32260),(42745,'history','itemid',32260),(42746,'history_log','itemid',32260),(42747,'history_str','itemid',32260),(42748,'history_text','itemid',32260),(42749,'history_uint','itemid',32260),(42750,'trends','itemid',32260),(42751,'trends_uint','itemid',32260),(42752,'events','itemid',32261),(42753,'history','itemid',32261),(42754,'history_log','itemid',32261),(42755,'history_str','itemid',32261),(42756,'history_text','itemid',32261),(42757,'history_uint','itemid',32261),(42758,'trends','itemid',32261),(42759,'trends_uint','itemid',32261),(42760,'events','itemid',32262),(42761,'history','itemid',32262),(42762,'history_log','itemid',32262),(42763,'history_str','itemid',32262),(42764,'history_text','itemid',32262),(42765,'history_uint','itemid',32262),(42766,'trends','itemid',32262),(42767,'trends_uint','itemid',32262),(42768,'events','itemid',32263),(42769,'history','itemid',32263),(42770,'history_log','itemid',32263),(42771,'history_str','itemid',32263),(42772,'history_text','itemid',32263),(42773,'history_uint','itemid',32263),(42774,'trends','itemid',32263),(42775,'trends_uint','itemid',32263),(42776,'events','itemid',32264),(42777,'history','itemid',32264),(42778,'history_log','itemid',32264),(42779,'history_str','itemid',32264),(42780,'history_text','itemid',32264),(42781,'history_uint','itemid',32264),(42782,'trends','itemid',32264),(42783,'trends_uint','itemid',32264),(42784,'events','itemid',32265),(42785,'history','itemid',32265),(42786,'history_log','itemid',32265),(42787,'history_str','itemid',32265),(42788,'history_text','itemid',32265),(42789,'history_uint','itemid',32265),(42790,'trends','itemid',32265),(42791,'trends_uint','itemid',32265),(42792,'events','itemid',32266),(42793,'history','itemid',32266),(42794,'history_log','itemid',32266),(42795,'history_str','itemid',32266),(42796,'history_text','itemid',32266),(42797,'history_uint','itemid',32266),(42798,'trends','itemid',32266),(42799,'trends_uint','itemid',32266),(42800,'events','itemid',32267),(42801,'history','itemid',32267),(42802,'history_log','itemid',32267),(42803,'history_str','itemid',32267),(42804,'history_text','itemid',32267),(42805,'history_uint','itemid',32267),(42806,'trends','itemid',32267),(42807,'trends_uint','itemid',32267),(42808,'events','itemid',32268),(42809,'history','itemid',32268),(42810,'history_log','itemid',32268),(42811,'history_str','itemid',32268),(42812,'history_text','itemid',32268),(42813,'history_uint','itemid',32268),(42814,'trends','itemid',32268),(42815,'trends_uint','itemid',32268),(42816,'events','itemid',32269),(42817,'history','itemid',32269),(42818,'history_log','itemid',32269),(42819,'history_str','itemid',32269),(42820,'history_text','itemid',32269),(42821,'history_uint','itemid',32269),(42822,'trends','itemid',32269),(42823,'trends_uint','itemid',32269),(42824,'events','itemid',32270),(42825,'history','itemid',32270),(42826,'history_log','itemid',32270),(42827,'history_str','itemid',32270),(42828,'history_text','itemid',32270),(42829,'history_uint','itemid',32270),(42830,'trends','itemid',32270),(42831,'trends_uint','itemid',32270),(42832,'events','itemid',32271),(42833,'history','itemid',32271),(42834,'history_log','itemid',32271),(42835,'history_str','itemid',32271),(42836,'history_text','itemid',32271),(42837,'history_uint','itemid',32271),(42838,'trends','itemid',32271),(42839,'trends_uint','itemid',32271),(42840,'events','itemid',32272),(42841,'history','itemid',32272),(42842,'history_log','itemid',32272),(42843,'history_str','itemid',32272),(42844,'history_text','itemid',32272),(42845,'history_uint','itemid',32272),(42846,'trends','itemid',32272),(42847,'trends_uint','itemid',32272),(42848,'events','itemid',32273),(42849,'history','itemid',32273),(42850,'history_log','itemid',32273),(42851,'history_str','itemid',32273),(42852,'history_text','itemid',32273),(42853,'history_uint','itemid',32273),(42854,'trends','itemid',32273),(42855,'trends_uint','itemid',32273),(42856,'events','itemid',32274),(42857,'history','itemid',32274),(42858,'history_log','itemid',32274),(42859,'history_str','itemid',32274),(42860,'history_text','itemid',32274),(42861,'history_uint','itemid',32274),(42862,'trends','itemid',32274),(42863,'trends_uint','itemid',32274),(42864,'events','itemid',32275),(42865,'history','itemid',32275),(42866,'history_log','itemid',32275),(42867,'history_str','itemid',32275),(42868,'history_text','itemid',32275),(42869,'history_uint','itemid',32275),(42870,'trends','itemid',32275),(42871,'trends_uint','itemid',32275),(42872,'events','itemid',32276),(42873,'history','itemid',32276),(42874,'history_log','itemid',32276),(42875,'history_str','itemid',32276),(42876,'history_text','itemid',32276),(42877,'history_uint','itemid',32276),(42878,'trends','itemid',32276),(42879,'trends_uint','itemid',32276),(42880,'events','itemid',32277),(42881,'history','itemid',32277),(42882,'history_log','itemid',32277),(42883,'history_str','itemid',32277),(42884,'history_text','itemid',32277),(42885,'history_uint','itemid',32277),(42886,'trends','itemid',32277),(42887,'trends_uint','itemid',32277),(42888,'events','itemid',32278),(42889,'history','itemid',32278),(42890,'history_log','itemid',32278),(42891,'history_str','itemid',32278),(42892,'history_text','itemid',32278),(42893,'history_uint','itemid',32278),(42894,'trends','itemid',32278),(42895,'trends_uint','itemid',32278),(42896,'events','itemid',32279),(42897,'history','itemid',32279),(42898,'history_log','itemid',32279),(42899,'history_str','itemid',32279),(42900,'history_text','itemid',32279),(42901,'history_uint','itemid',32279),(42902,'trends','itemid',32279),(42903,'trends_uint','itemid',32279),(42904,'events','itemid',32280),(42905,'history','itemid',32280),(42906,'history_log','itemid',32280),(42907,'history_str','itemid',32280),(42908,'history_text','itemid',32280),(42909,'history_uint','itemid',32280),(42910,'trends','itemid',32280),(42911,'trends_uint','itemid',32280),(42912,'events','itemid',32281),(42913,'history','itemid',32281),(42914,'history_log','itemid',32281),(42915,'history_str','itemid',32281),(42916,'history_text','itemid',32281),(42917,'history_uint','itemid',32281),(42918,'trends','itemid',32281),(42919,'trends_uint','itemid',32281),(42920,'events','itemid',32282),(42921,'history','itemid',32282),(42922,'history_log','itemid',32282),(42923,'history_str','itemid',32282),(42924,'history_text','itemid',32282),(42925,'history_uint','itemid',32282),(42926,'trends','itemid',32282),(42927,'trends_uint','itemid',32282),(42928,'events','itemid',32283),(42929,'history','itemid',32283),(42930,'history_log','itemid',32283),(42931,'history_str','itemid',32283),(42932,'history_text','itemid',32283),(42933,'history_uint','itemid',32283),(42934,'trends','itemid',32283),(42935,'trends_uint','itemid',32283),(42936,'events','itemid',32284),(42937,'history','itemid',32284),(42938,'history_log','itemid',32284),(42939,'history_str','itemid',32284),(42940,'history_text','itemid',32284),(42941,'history_uint','itemid',32284),(42942,'trends','itemid',32284),(42943,'trends_uint','itemid',32284),(42944,'events','itemid',32285),(42945,'history','itemid',32285),(42946,'history_log','itemid',32285),(42947,'history_str','itemid',32285),(42948,'history_text','itemid',32285),(42949,'history_uint','itemid',32285),(42950,'trends','itemid',32285),(42951,'trends_uint','itemid',32285),(42952,'events','itemid',32286),(42953,'history','itemid',32286),(42954,'history_log','itemid',32286),(42955,'history_str','itemid',32286),(42956,'history_text','itemid',32286),(42957,'history_uint','itemid',32286),(42958,'trends','itemid',32286),(42959,'trends_uint','itemid',32286),(42960,'events','itemid',32287),(42961,'history','itemid',32287),(42962,'history_log','itemid',32287),(42963,'history_str','itemid',32287),(42964,'history_text','itemid',32287),(42965,'history_uint','itemid',32287),(42966,'trends','itemid',32287),(42967,'trends_uint','itemid',32287),(42968,'events','itemid',32288),(42969,'history','itemid',32288),(42970,'history_log','itemid',32288),(42971,'history_str','itemid',32288),(42972,'history_text','itemid',32288),(42973,'history_uint','itemid',32288),(42974,'trends','itemid',32288),(42975,'trends_uint','itemid',32288),(42976,'events','itemid',32289),(42977,'history','itemid',32289),(42978,'history_log','itemid',32289),(42979,'history_str','itemid',32289),(42980,'history_text','itemid',32289),(42981,'history_uint','itemid',32289),(42982,'trends','itemid',32289),(42983,'trends_uint','itemid',32289),(42984,'events','itemid',32290),(42985,'history','itemid',32290),(42986,'history_log','itemid',32290),(42987,'history_str','itemid',32290),(42988,'history_text','itemid',32290),(42989,'history_uint','itemid',32290),(42990,'trends','itemid',32290),(42991,'trends_uint','itemid',32290),(42992,'events','itemid',32291),(42993,'history','itemid',32291),(42994,'history_log','itemid',32291),(42995,'history_str','itemid',32291),(42996,'history_text','itemid',32291),(42997,'history_uint','itemid',32291),(42998,'trends','itemid',32291),(42999,'trends_uint','itemid',32291),(43000,'events','itemid',32292),(43001,'history','itemid',32292),(43002,'history_log','itemid',32292),(43003,'history_str','itemid',32292),(43004,'history_text','itemid',32292),(43005,'history_uint','itemid',32292),(43006,'trends','itemid',32292),(43007,'trends_uint','itemid',32292),(43008,'events','itemid',32890),(43009,'history','itemid',32890),(43010,'history_log','itemid',32890),(43011,'history_str','itemid',32890),(43012,'history_text','itemid',32890),(43013,'history_uint','itemid',32890),(43014,'trends','itemid',32890),(43015,'trends_uint','itemid',32890),(43016,'events','itemid',32891),(43017,'history','itemid',32891),(43018,'history_log','itemid',32891),(43019,'history_str','itemid',32891),(43020,'history_text','itemid',32891),(43021,'history_uint','itemid',32891),(43022,'trends','itemid',32891),(43023,'trends_uint','itemid',32891),(43024,'events','itemid',32892),(43025,'history','itemid',32892),(43026,'history_log','itemid',32892),(43027,'history_str','itemid',32892),(43028,'history_text','itemid',32892),(43029,'history_uint','itemid',32892),(43030,'trends','itemid',32892),(43031,'trends_uint','itemid',32892),(43032,'events','itemid',32893),(43033,'history','itemid',32893),(43034,'history_log','itemid',32893),(43035,'history_str','itemid',32893),(43036,'history_text','itemid',32893),(43037,'history_uint','itemid',32893),(43038,'trends','itemid',32893),(43039,'trends_uint','itemid',32893),(43040,'events','itemid',32894),(43041,'history','itemid',32894),(43042,'history_log','itemid',32894),(43043,'history_str','itemid',32894),(43044,'history_text','itemid',32894),(43045,'history_uint','itemid',32894),(43046,'trends','itemid',32894),(43047,'trends_uint','itemid',32894),(43048,'events','itemid',32895),(43049,'history','itemid',32895),(43050,'history_log','itemid',32895),(43051,'history_str','itemid',32895),(43052,'history_text','itemid',32895),(43053,'history_uint','itemid',32895),(43054,'trends','itemid',32895),(43055,'trends_uint','itemid',32895),(43056,'events','itemid',32896),(43057,'history','itemid',32896),(43058,'history_log','itemid',32896),(43059,'history_str','itemid',32896),(43060,'history_text','itemid',32896),(43061,'history_uint','itemid',32896),(43062,'trends','itemid',32896),(43063,'trends_uint','itemid',32896),(43064,'events','itemid',32897),(43065,'history','itemid',32897),(43066,'history_log','itemid',32897),(43067,'history_str','itemid',32897),(43068,'history_text','itemid',32897),(43069,'history_uint','itemid',32897),(43070,'trends','itemid',32897),(43071,'trends_uint','itemid',32897),(43072,'events','itemid',32898),(43073,'history','itemid',32898),(43074,'history_log','itemid',32898),(43075,'history_str','itemid',32898),(43076,'history_text','itemid',32898),(43077,'history_uint','itemid',32898),(43078,'trends','itemid',32898),(43079,'trends_uint','itemid',32898),(43080,'events','itemid',32899),(43081,'history','itemid',32899),(43082,'history_log','itemid',32899),(43083,'history_str','itemid',32899),(43084,'history_text','itemid',32899),(43085,'history_uint','itemid',32899),(43086,'trends','itemid',32899),(43087,'trends_uint','itemid',32899),(43088,'events','itemid',32900),(43089,'history','itemid',32900),(43090,'history_log','itemid',32900),(43091,'history_str','itemid',32900),(43092,'history_text','itemid',32900),(43093,'history_uint','itemid',32900),(43094,'trends','itemid',32900),(43095,'trends_uint','itemid',32900),(43096,'events','itemid',32901),(43097,'history','itemid',32901),(43098,'history_log','itemid',32901),(43099,'history_str','itemid',32901),(43100,'history_text','itemid',32901),(43101,'history_uint','itemid',32901),(43102,'trends','itemid',32901),(43103,'trends_uint','itemid',32901),(43104,'events','itemid',32902),(43105,'history','itemid',32902),(43106,'history_log','itemid',32902),(43107,'history_str','itemid',32902),(43108,'history_text','itemid',32902),(43109,'history_uint','itemid',32902),(43110,'trends','itemid',32902),(43111,'trends_uint','itemid',32902),(43112,'events','itemid',32903),(43113,'history','itemid',32903),(43114,'history_log','itemid',32903),(43115,'history_str','itemid',32903),(43116,'history_text','itemid',32903),(43117,'history_uint','itemid',32903),(43118,'trends','itemid',32903),(43119,'trends_uint','itemid',32903),(43120,'events','itemid',32904),(43121,'history','itemid',32904),(43122,'history_log','itemid',32904),(43123,'history_str','itemid',32904),(43124,'history_text','itemid',32904),(43125,'history_uint','itemid',32904),(43126,'trends','itemid',32904),(43127,'trends_uint','itemid',32904),(43128,'events','itemid',32905),(43129,'history','itemid',32905),(43130,'history_log','itemid',32905),(43131,'history_str','itemid',32905),(43132,'history_text','itemid',32905),(43133,'history_uint','itemid',32905),(43134,'trends','itemid',32905),(43135,'trends_uint','itemid',32905),(43136,'events','itemid',32906),(43137,'history','itemid',32906),(43138,'history_log','itemid',32906),(43139,'history_str','itemid',32906),(43140,'history_text','itemid',32906),(43141,'history_uint','itemid',32906),(43142,'trends','itemid',32906),(43143,'trends_uint','itemid',32906),(43144,'events','itemid',32907),(43145,'history','itemid',32907),(43146,'history_log','itemid',32907),(43147,'history_str','itemid',32907),(43148,'history_text','itemid',32907),(43149,'history_uint','itemid',32907),(43150,'trends','itemid',32907),(43151,'trends_uint','itemid',32907),(43152,'events','itemid',32908),(43153,'history','itemid',32908),(43154,'history_log','itemid',32908),(43155,'history_str','itemid',32908),(43156,'history_text','itemid',32908),(43157,'history_uint','itemid',32908),(43158,'trends','itemid',32908),(43159,'trends_uint','itemid',32908),(43160,'events','itemid',32909),(43161,'history','itemid',32909),(43162,'history_log','itemid',32909),(43163,'history_str','itemid',32909),(43164,'history_text','itemid',32909),(43165,'history_uint','itemid',32909),(43166,'trends','itemid',32909),(43167,'trends_uint','itemid',32909),(43168,'events','itemid',32910),(43169,'history','itemid',32910),(43170,'history_log','itemid',32910),(43171,'history_str','itemid',32910),(43172,'history_text','itemid',32910),(43173,'history_uint','itemid',32910),(43174,'trends','itemid',32910),(43175,'trends_uint','itemid',32910),(43176,'events','itemid',32911),(43177,'history','itemid',32911),(43178,'history_log','itemid',32911),(43179,'history_str','itemid',32911),(43180,'history_text','itemid',32911),(43181,'history_uint','itemid',32911),(43182,'trends','itemid',32911),(43183,'trends_uint','itemid',32911),(43184,'events','itemid',32912),(43185,'history','itemid',32912),(43186,'history_log','itemid',32912),(43187,'history_str','itemid',32912),(43188,'history_text','itemid',32912),(43189,'history_uint','itemid',32912),(43190,'trends','itemid',32912),(43191,'trends_uint','itemid',32912),(43192,'events','itemid',32913),(43193,'history','itemid',32913),(43194,'history_log','itemid',32913),(43195,'history_str','itemid',32913),(43196,'history_text','itemid',32913),(43197,'history_uint','itemid',32913),(43198,'trends','itemid',32913),(43199,'trends_uint','itemid',32913),(43200,'events','itemid',32915),(43201,'history','itemid',32915),(43202,'history_log','itemid',32915),(43203,'history_str','itemid',32915),(43204,'history_text','itemid',32915),(43205,'history_uint','itemid',32915),(43206,'trends','itemid',32915),(43207,'trends_uint','itemid',32915),(43208,'events','itemid',32916),(43209,'history','itemid',32916),(43210,'history_log','itemid',32916),(43211,'history_str','itemid',32916),(43212,'history_text','itemid',32916),(43213,'history_uint','itemid',32916),(43214,'trends','itemid',32916),(43215,'trends_uint','itemid',32916),(43216,'events','itemid',32917),(43217,'history','itemid',32917),(43218,'history_log','itemid',32917),(43219,'history_str','itemid',32917),(43220,'history_text','itemid',32917),(43221,'history_uint','itemid',32917),(43222,'trends','itemid',32917),(43223,'trends_uint','itemid',32917),(43224,'events','itemid',32918),(43225,'history','itemid',32918),(43226,'history_log','itemid',32918),(43227,'history_str','itemid',32918),(43228,'history_text','itemid',32918),(43229,'history_uint','itemid',32918),(43230,'trends','itemid',32918),(43231,'trends_uint','itemid',32918),(43232,'events','itemid',32919),(43233,'history','itemid',32919),(43234,'history_log','itemid',32919),(43235,'history_str','itemid',32919),(43236,'history_text','itemid',32919),(43237,'history_uint','itemid',32919),(43238,'trends','itemid',32919),(43239,'trends_uint','itemid',32919),(43240,'events','itemid',32920),(43241,'history','itemid',32920),(43242,'history_log','itemid',32920),(43243,'history_str','itemid',32920),(43244,'history_text','itemid',32920),(43245,'history_uint','itemid',32920),(43246,'trends','itemid',32920),(43247,'trends_uint','itemid',32920),(43248,'events','itemid',32921),(43249,'history','itemid',32921),(43250,'history_log','itemid',32921),(43251,'history_str','itemid',32921),(43252,'history_text','itemid',32921),(43253,'history_uint','itemid',32921),(43254,'trends','itemid',32921),(43255,'trends_uint','itemid',32921),(43256,'events','itemid',32922),(43257,'history','itemid',32922),(43258,'history_log','itemid',32922),(43259,'history_str','itemid',32922),(43260,'history_text','itemid',32922),(43261,'history_uint','itemid',32922),(43262,'trends','itemid',32922),(43263,'trends_uint','itemid',32922),(43264,'events','itemid',32923),(43265,'history','itemid',32923),(43266,'history_log','itemid',32923),(43267,'history_str','itemid',32923),(43268,'history_text','itemid',32923),(43269,'history_uint','itemid',32923),(43270,'trends','itemid',32923),(43271,'trends_uint','itemid',32923),(43272,'events','itemid',32924),(43273,'history','itemid',32924),(43274,'history_log','itemid',32924),(43275,'history_str','itemid',32924),(43276,'history_text','itemid',32924),(43277,'history_uint','itemid',32924),(43278,'trends','itemid',32924),(43279,'trends_uint','itemid',32924),(43280,'events','itemid',32925),(43281,'history','itemid',32925),(43282,'history_log','itemid',32925),(43283,'history_str','itemid',32925),(43284,'history_text','itemid',32925),(43285,'history_uint','itemid',32925),(43286,'trends','itemid',32925),(43287,'trends_uint','itemid',32925),(43288,'events','itemid',32926),(43289,'history','itemid',32926),(43290,'history_log','itemid',32926),(43291,'history_str','itemid',32926),(43292,'history_text','itemid',32926),(43293,'history_uint','itemid',32926),(43294,'trends','itemid',32926),(43295,'trends_uint','itemid',32926),(43296,'events','itemid',32927),(43297,'history','itemid',32927),(43298,'history_log','itemid',32927),(43299,'history_str','itemid',32927),(43300,'history_text','itemid',32927),(43301,'history_uint','itemid',32927),(43302,'trends','itemid',32927),(43303,'trends_uint','itemid',32927),(43304,'events','itemid',32928),(43305,'history','itemid',32928),(43306,'history_log','itemid',32928),(43307,'history_str','itemid',32928),(43308,'history_text','itemid',32928),(43309,'history_uint','itemid',32928),(43310,'trends','itemid',32928),(43311,'trends_uint','itemid',32928),(43312,'events','itemid',32929),(43313,'history','itemid',32929),(43314,'history_log','itemid',32929),(43315,'history_str','itemid',32929),(43316,'history_text','itemid',32929),(43317,'history_uint','itemid',32929),(43318,'trends','itemid',32929),(43319,'trends_uint','itemid',32929),(43320,'events','itemid',32930),(43321,'history','itemid',32930),(43322,'history_log','itemid',32930),(43323,'history_str','itemid',32930),(43324,'history_text','itemid',32930),(43325,'history_uint','itemid',32930),(43326,'trends','itemid',32930),(43327,'trends_uint','itemid',32930),(43328,'events','itemid',32951),(43329,'history','itemid',32951),(43330,'history_log','itemid',32951),(43331,'history_str','itemid',32951),(43332,'history_text','itemid',32951),(43333,'history_uint','itemid',32951),(43334,'trends','itemid',32951),(43335,'trends_uint','itemid',32951),(43336,'events','itemid',32952),(43337,'history','itemid',32952),(43338,'history_log','itemid',32952),(43339,'history_str','itemid',32952),(43340,'history_text','itemid',32952),(43341,'history_uint','itemid',32952),(43342,'trends','itemid',32952),(43343,'trends_uint','itemid',32952),(43344,'events','itemid',32953),(43345,'history','itemid',32953),(43346,'history_log','itemid',32953),(43347,'history_str','itemid',32953),(43348,'history_text','itemid',32953),(43349,'history_uint','itemid',32953),(43350,'trends','itemid',32953),(43351,'trends_uint','itemid',32953),(43352,'events','itemid',33012),(43353,'history','itemid',33012),(43354,'history_log','itemid',33012),(43355,'history_str','itemid',33012),(43356,'history_text','itemid',33012),(43357,'history_uint','itemid',33012),(43358,'trends','itemid',33012),(43359,'trends_uint','itemid',33012),(43360,'events','itemid',33013),(43361,'history','itemid',33013),(43362,'history_log','itemid',33013),(43363,'history_str','itemid',33013),(43364,'history_text','itemid',33013),(43365,'history_uint','itemid',33013),(43366,'trends','itemid',33013),(43367,'trends_uint','itemid',33013),(43368,'events','itemid',33014),(43369,'history','itemid',33014),(43370,'history_log','itemid',33014),(43371,'history_str','itemid',33014),(43372,'history_text','itemid',33014),(43373,'history_uint','itemid',33014),(43374,'trends','itemid',33014),(43375,'trends_uint','itemid',33014),(43376,'events','itemid',33015),(43377,'history','itemid',33015),(43378,'history_log','itemid',33015),(43379,'history_str','itemid',33015),(43380,'history_text','itemid',33015),(43381,'history_uint','itemid',33015),(43382,'trends','itemid',33015),(43383,'trends_uint','itemid',33015),(43384,'events','itemid',33016),(43385,'history','itemid',33016),(43386,'history_log','itemid',33016),(43387,'history_str','itemid',33016),(43388,'history_text','itemid',33016),(43389,'history_uint','itemid',33016),(43390,'trends','itemid',33016),(43391,'trends_uint','itemid',33016),(43392,'events','itemid',33017),(43393,'history','itemid',33017),(43394,'history_log','itemid',33017),(43395,'history_str','itemid',33017),(43396,'history_text','itemid',33017),(43397,'history_uint','itemid',33017),(43398,'trends','itemid',33017),(43399,'trends_uint','itemid',33017),(43400,'events','itemid',33172),(43401,'history','itemid',33172),(43402,'history_log','itemid',33172),(43403,'history_str','itemid',33172),(43404,'history_text','itemid',33172),(43405,'history_uint','itemid',33172),(43406,'trends','itemid',33172),(43407,'trends_uint','itemid',33172),(43408,'events','itemid',33173),(43409,'history','itemid',33173),(43410,'history_log','itemid',33173),(43411,'history_str','itemid',33173),(43412,'history_text','itemid',33173),(43413,'history_uint','itemid',33173),(43414,'trends','itemid',33173),(43415,'trends_uint','itemid',33173),(43416,'events','itemid',33174),(43417,'history','itemid',33174),(43418,'history_log','itemid',33174),(43419,'history_str','itemid',33174),(43420,'history_text','itemid',33174),(43421,'history_uint','itemid',33174),(43422,'trends','itemid',33174),(43423,'trends_uint','itemid',33174),(43424,'events','itemid',33175),(43425,'history','itemid',33175),(43426,'history_log','itemid',33175),(43427,'history_str','itemid',33175),(43428,'history_text','itemid',33175),(43429,'history_uint','itemid',33175),(43430,'trends','itemid',33175),(43431,'trends_uint','itemid',33175),(43432,'events','itemid',33176),(43433,'history','itemid',33176),(43434,'history_log','itemid',33176),(43435,'history_str','itemid',33176),(43436,'history_text','itemid',33176),(43437,'history_uint','itemid',33176),(43438,'trends','itemid',33176),(43439,'trends_uint','itemid',33176),(43440,'events','itemid',33638),(43441,'history','itemid',33638),(43442,'history_log','itemid',33638),(43443,'history_str','itemid',33638),(43444,'history_text','itemid',33638),(43445,'history_uint','itemid',33638),(43446,'trends','itemid',33638),(43447,'trends_uint','itemid',33638),(43448,'events','itemid',33639),(43449,'history','itemid',33639),(43450,'history_log','itemid',33639),(43451,'history_str','itemid',33639),(43452,'history_text','itemid',33639),(43453,'history_uint','itemid',33639),(43454,'trends','itemid',33639),(43455,'trends_uint','itemid',33639),(43456,'events','itemid',33640),(43457,'history','itemid',33640),(43458,'history_log','itemid',33640),(43459,'history_str','itemid',33640),(43460,'history_text','itemid',33640),(43461,'history_uint','itemid',33640),(43462,'trends','itemid',33640),(43463,'trends_uint','itemid',33640),(43464,'events','itemid',33641),(43465,'history','itemid',33641),(43466,'history_log','itemid',33641),(43467,'history_str','itemid',33641),(43468,'history_text','itemid',33641),(43469,'history_uint','itemid',33641),(43470,'trends','itemid',33641),(43471,'trends_uint','itemid',33641),(43472,'events','itemid',33642),(43473,'history','itemid',33642),(43474,'history_log','itemid',33642),(43475,'history_str','itemid',33642),(43476,'history_text','itemid',33642),(43477,'history_uint','itemid',33642),(43478,'trends','itemid',33642),(43479,'trends_uint','itemid',33642),(43480,'events','itemid',33643),(43481,'history','itemid',33643),(43482,'history_log','itemid',33643),(43483,'history_str','itemid',33643),(43484,'history_text','itemid',33643),(43485,'history_uint','itemid',33643),(43486,'trends','itemid',33643),(43487,'trends_uint','itemid',33643),(43488,'events','itemid',33644),(43489,'history','itemid',33644),(43490,'history_log','itemid',33644),(43491,'history_str','itemid',33644),(43492,'history_text','itemid',33644),(43493,'history_uint','itemid',33644),(43494,'trends','itemid',33644),(43495,'trends_uint','itemid',33644),(43496,'events','itemid',33645),(43497,'history','itemid',33645),(43498,'history_log','itemid',33645),(43499,'history_str','itemid',33645),(43500,'history_text','itemid',33645),(43501,'history_uint','itemid',33645),(43502,'trends','itemid',33645),(43503,'trends_uint','itemid',33645),(43504,'events','itemid',33646),(43505,'history','itemid',33646),(43506,'history_log','itemid',33646),(43507,'history_str','itemid',33646),(43508,'history_text','itemid',33646),(43509,'history_uint','itemid',33646),(43510,'trends','itemid',33646),(43511,'trends_uint','itemid',33646),(43512,'events','itemid',33647),(43513,'history','itemid',33647),(43514,'history_log','itemid',33647),(43515,'history_str','itemid',33647),(43516,'history_text','itemid',33647),(43517,'history_uint','itemid',33647),(43518,'trends','itemid',33647),(43519,'trends_uint','itemid',33647),(43520,'events','itemid',33648),(43521,'history','itemid',33648),(43522,'history_log','itemid',33648),(43523,'history_str','itemid',33648),(43524,'history_text','itemid',33648),(43525,'history_uint','itemid',33648),(43526,'trends','itemid',33648),(43527,'trends_uint','itemid',33648),(43528,'events','itemid',33649),(43529,'history','itemid',33649),(43530,'history_log','itemid',33649),(43531,'history_str','itemid',33649),(43532,'history_text','itemid',33649),(43533,'history_uint','itemid',33649),(43534,'trends','itemid',33649),(43535,'trends_uint','itemid',33649),(43536,'events','itemid',34314),(43537,'history','itemid',34314),(43538,'history_log','itemid',34314),(43539,'history_str','itemid',34314),(43540,'history_text','itemid',34314),(43541,'history_uint','itemid',34314),(43542,'trends','itemid',34314),(43543,'trends_uint','itemid',34314),(43544,'events','itemid',34315),(43545,'history','itemid',34315),(43546,'history_log','itemid',34315),(43547,'history_str','itemid',34315),(43548,'history_text','itemid',34315),(43549,'history_uint','itemid',34315),(43550,'trends','itemid',34315),(43551,'trends_uint','itemid',34315),(43552,'events','itemid',34336),(43553,'history','itemid',34336),(43554,'history_log','itemid',34336),(43555,'history_str','itemid',34336),(43556,'history_text','itemid',34336),(43557,'history_uint','itemid',34336),(43558,'trends','itemid',34336),(43559,'trends_uint','itemid',34336),(43560,'events','itemid',34337),(43561,'history','itemid',34337),(43562,'history_log','itemid',34337),(43563,'history_str','itemid',34337),(43564,'history_text','itemid',34337),(43565,'history_uint','itemid',34337),(43566,'trends','itemid',34337),(43567,'trends_uint','itemid',34337),(43568,'events','itemid',34338),(43569,'history','itemid',34338),(43570,'history_log','itemid',34338),(43571,'history_str','itemid',34338),(43572,'history_text','itemid',34338),(43573,'history_uint','itemid',34338),(43574,'trends','itemid',34338),(43575,'trends_uint','itemid',34338),(43576,'events','itemid',34339),(43577,'history','itemid',34339),(43578,'history_log','itemid',34339),(43579,'history_str','itemid',34339),(43580,'history_text','itemid',34339),(43581,'history_uint','itemid',34339),(43582,'trends','itemid',34339),(43583,'trends_uint','itemid',34339),(43584,'events','itemid',34340),(43585,'history','itemid',34340),(43586,'history_log','itemid',34340),(43587,'history_str','itemid',34340),(43588,'history_text','itemid',34340),(43589,'history_uint','itemid',34340),(43590,'trends','itemid',34340),(43591,'trends_uint','itemid',34340),(43592,'events','itemid',34341),(43593,'history','itemid',34341),(43594,'history_log','itemid',34341),(43595,'history_str','itemid',34341),(43596,'history_text','itemid',34341),(43597,'history_uint','itemid',34341),(43598,'trends','itemid',34341),(43599,'trends_uint','itemid',34341),(43600,'events','itemid',34367),(43601,'history','itemid',34367),(43602,'history_log','itemid',34367),(43603,'history_str','itemid',34367),(43604,'history_text','itemid',34367),(43605,'history_uint','itemid',34367),(43606,'trends','itemid',34367),(43607,'trends_uint','itemid',34367),(43608,'events','itemid',34368),(43609,'history','itemid',34368),(43610,'history_log','itemid',34368),(43611,'history_str','itemid',34368),(43612,'history_text','itemid',34368),(43613,'history_uint','itemid',34368),(43614,'trends','itemid',34368),(43615,'trends_uint','itemid',34368),(43616,'events','itemid',34369),(43617,'history','itemid',34369),(43618,'history_log','itemid',34369),(43619,'history_str','itemid',34369),(43620,'history_text','itemid',34369),(43621,'history_uint','itemid',34369),(43622,'trends','itemid',34369),(43623,'trends_uint','itemid',34369),(43624,'events','itemid',34370),(43625,'history','itemid',34370),(43626,'history_log','itemid',34370),(43627,'history_str','itemid',34370),(43628,'history_text','itemid',34370),(43629,'history_uint','itemid',34370),(43630,'trends','itemid',34370),(43631,'trends_uint','itemid',34370),(43632,'events','itemid',34371),(43633,'history','itemid',34371),(43634,'history_log','itemid',34371),(43635,'history_str','itemid',34371),(43636,'history_text','itemid',34371),(43637,'history_uint','itemid',34371),(43638,'trends','itemid',34371),(43639,'trends_uint','itemid',34371),(43640,'events','itemid',34372),(43641,'history','itemid',34372),(43642,'history_log','itemid',34372),(43643,'history_str','itemid',34372),(43644,'history_text','itemid',34372),(43645,'history_uint','itemid',34372),(43646,'trends','itemid',34372),(43647,'trends_uint','itemid',34372),(43648,'events','itemid',34373),(43649,'history','itemid',34373),(43650,'history_log','itemid',34373),(43651,'history_str','itemid',34373),(43652,'history_text','itemid',34373),(43653,'history_uint','itemid',34373),(43654,'trends','itemid',34373),(43655,'trends_uint','itemid',34373),(43656,'events','itemid',34374),(43657,'history','itemid',34374),(43658,'history_log','itemid',34374),(43659,'history_str','itemid',34374),(43660,'history_text','itemid',34374),(43661,'history_uint','itemid',34374),(43662,'trends','itemid',34374),(43663,'trends_uint','itemid',34374),(43664,'events','itemid',34375),(43665,'history','itemid',34375),(43666,'history_log','itemid',34375),(43667,'history_str','itemid',34375),(43668,'history_text','itemid',34375),(43669,'history_uint','itemid',34375),(43670,'trends','itemid',34375),(43671,'trends_uint','itemid',34375),(43672,'events','itemid',34376),(43673,'history','itemid',34376),(43674,'history_log','itemid',34376),(43675,'history_str','itemid',34376),(43676,'history_text','itemid',34376),(43677,'history_uint','itemid',34376),(43678,'trends','itemid',34376),(43679,'trends_uint','itemid',34376),(43680,'events','itemid',34377),(43681,'history','itemid',34377),(43682,'history_log','itemid',34377),(43683,'history_str','itemid',34377),(43684,'history_text','itemid',34377),(43685,'history_uint','itemid',34377),(43686,'trends','itemid',34377),(43687,'trends_uint','itemid',34377),(43688,'events','itemid',34378),(43689,'history','itemid',34378),(43690,'history_log','itemid',34378),(43691,'history_str','itemid',34378),(43692,'history_text','itemid',34378),(43693,'history_uint','itemid',34378),(43694,'trends','itemid',34378),(43695,'trends_uint','itemid',34378),(43696,'events','itemid',34379),(43697,'history','itemid',34379),(43698,'history_log','itemid',34379),(43699,'history_str','itemid',34379),(43700,'history_text','itemid',34379),(43701,'history_uint','itemid',34379),(43702,'trends','itemid',34379),(43703,'trends_uint','itemid',34379),(43704,'events','itemid',34380),(43705,'history','itemid',34380),(43706,'history_log','itemid',34380),(43707,'history_str','itemid',34380),(43708,'history_text','itemid',34380),(43709,'history_uint','itemid',34380),(43710,'trends','itemid',34380),(43711,'trends_uint','itemid',34380),(43712,'events','itemid',34381),(43713,'history','itemid',34381),(43714,'history_log','itemid',34381),(43715,'history_str','itemid',34381),(43716,'history_text','itemid',34381),(43717,'history_uint','itemid',34381),(43718,'trends','itemid',34381),(43719,'trends_uint','itemid',34381),(43720,'events','itemid',34382),(43721,'history','itemid',34382),(43722,'history_log','itemid',34382),(43723,'history_str','itemid',34382),(43724,'history_text','itemid',34382),(43725,'history_uint','itemid',34382),(43726,'trends','itemid',34382),(43727,'trends_uint','itemid',34382),(43728,'events','itemid',34383),(43729,'history','itemid',34383),(43730,'history_log','itemid',34383),(43731,'history_str','itemid',34383),(43732,'history_text','itemid',34383),(43733,'history_uint','itemid',34383),(43734,'trends','itemid',34383),(43735,'trends_uint','itemid',34383),(43736,'events','itemid',34384),(43737,'history','itemid',34384),(43738,'history_log','itemid',34384),(43739,'history_str','itemid',34384),(43740,'history_text','itemid',34384),(43741,'history_uint','itemid',34384),(43742,'trends','itemid',34384),(43743,'trends_uint','itemid',34384),(43744,'events','itemid',34385),(43745,'history','itemid',34385),(43746,'history_log','itemid',34385),(43747,'history_str','itemid',34385),(43748,'history_text','itemid',34385),(43749,'history_uint','itemid',34385),(43750,'trends','itemid',34385),(43751,'trends_uint','itemid',34385),(43752,'events','itemid',34386),(43753,'history','itemid',34386),(43754,'history_log','itemid',34386),(43755,'history_str','itemid',34386),(43756,'history_text','itemid',34386),(43757,'history_uint','itemid',34386),(43758,'trends','itemid',34386),(43759,'trends_uint','itemid',34386),(43760,'events','itemid',34387),(43761,'history','itemid',34387),(43762,'history_log','itemid',34387),(43763,'history_str','itemid',34387),(43764,'history_text','itemid',34387),(43765,'history_uint','itemid',34387),(43766,'trends','itemid',34387),(43767,'trends_uint','itemid',34387),(43768,'events','itemid',34388),(43769,'history','itemid',34388),(43770,'history_log','itemid',34388),(43771,'history_str','itemid',34388),(43772,'history_text','itemid',34388),(43773,'history_uint','itemid',34388),(43774,'trends','itemid',34388),(43775,'trends_uint','itemid',34388),(43776,'events','itemid',34389),(43777,'history','itemid',34389),(43778,'history_log','itemid',34389),(43779,'history_str','itemid',34389),(43780,'history_text','itemid',34389),(43781,'history_uint','itemid',34389),(43782,'trends','itemid',34389),(43783,'trends_uint','itemid',34389),(43784,'events','itemid',34390),(43785,'history','itemid',34390),(43786,'history_log','itemid',34390),(43787,'history_str','itemid',34390),(43788,'history_text','itemid',34390),(43789,'history_uint','itemid',34390),(43790,'trends','itemid',34390),(43791,'trends_uint','itemid',34390),(43792,'events','itemid',34391),(43793,'history','itemid',34391),(43794,'history_log','itemid',34391),(43795,'history_str','itemid',34391),(43796,'history_text','itemid',34391),(43797,'history_uint','itemid',34391),(43798,'trends','itemid',34391),(43799,'trends_uint','itemid',34391),(43800,'events','itemid',34392),(43801,'history','itemid',34392),(43802,'history_log','itemid',34392),(43803,'history_str','itemid',34392),(43804,'history_text','itemid',34392),(43805,'history_uint','itemid',34392),(43806,'trends','itemid',34392),(43807,'trends_uint','itemid',34392),(43808,'events','itemid',34393),(43809,'history','itemid',34393),(43810,'history_log','itemid',34393),(43811,'history_str','itemid',34393),(43812,'history_text','itemid',34393),(43813,'history_uint','itemid',34393),(43814,'trends','itemid',34393),(43815,'trends_uint','itemid',34393),(43816,'events','itemid',34394),(43817,'history','itemid',34394),(43818,'history_log','itemid',34394),(43819,'history_str','itemid',34394),(43820,'history_text','itemid',34394),(43821,'history_uint','itemid',34394),(43822,'trends','itemid',34394),(43823,'trends_uint','itemid',34394),(43824,'events','itemid',34395),(43825,'history','itemid',34395),(43826,'history_log','itemid',34395),(43827,'history_str','itemid',34395),(43828,'history_text','itemid',34395),(43829,'history_uint','itemid',34395),(43830,'trends','itemid',34395),(43831,'trends_uint','itemid',34395),(43832,'events','itemid',34396),(43833,'history','itemid',34396),(43834,'history_log','itemid',34396),(43835,'history_str','itemid',34396),(43836,'history_text','itemid',34396),(43837,'history_uint','itemid',34396),(43838,'trends','itemid',34396),(43839,'trends_uint','itemid',34396),(43840,'events','itemid',34397),(43841,'history','itemid',34397),(43842,'history_log','itemid',34397),(43843,'history_str','itemid',34397),(43844,'history_text','itemid',34397),(43845,'history_uint','itemid',34397),(43846,'trends','itemid',34397),(43847,'trends_uint','itemid',34397),(43848,'events','itemid',34398),(43849,'history','itemid',34398),(43850,'history_log','itemid',34398),(43851,'history_str','itemid',34398),(43852,'history_text','itemid',34398),(43853,'history_uint','itemid',34398),(43854,'trends','itemid',34398),(43855,'trends_uint','itemid',34398),(43856,'events','itemid',34412),(43857,'history','itemid',34412),(43858,'history_log','itemid',34412),(43859,'history_str','itemid',34412),(43860,'history_text','itemid',34412),(43861,'history_uint','itemid',34412),(43862,'trends','itemid',34412),(43863,'trends_uint','itemid',34412),(43864,'events','itemid',34413),(43865,'history','itemid',34413),(43866,'history_log','itemid',34413),(43867,'history_str','itemid',34413),(43868,'history_text','itemid',34413),(43869,'history_uint','itemid',34413),(43870,'trends','itemid',34413),(43871,'trends_uint','itemid',34413),(43872,'events','itemid',34414),(43873,'history','itemid',34414),(43874,'history_log','itemid',34414),(43875,'history_str','itemid',34414),(43876,'history_text','itemid',34414),(43877,'history_uint','itemid',34414),(43878,'trends','itemid',34414),(43879,'trends_uint','itemid',34414),(43880,'events','itemid',34415),(43881,'history','itemid',34415),(43882,'history_log','itemid',34415),(43883,'history_str','itemid',34415),(43884,'history_text','itemid',34415),(43885,'history_uint','itemid',34415),(43886,'trends','itemid',34415),(43887,'trends_uint','itemid',34415),(43888,'events','itemid',34416),(43889,'history','itemid',34416),(43890,'history_log','itemid',34416),(43891,'history_str','itemid',34416),(43892,'history_text','itemid',34416),(43893,'history_uint','itemid',34416),(43894,'trends','itemid',34416),(43895,'trends_uint','itemid',34416),(43896,'events','itemid',34417),(43897,'history','itemid',34417),(43898,'history_log','itemid',34417),(43899,'history_str','itemid',34417),(43900,'history_text','itemid',34417),(43901,'history_uint','itemid',34417),(43902,'trends','itemid',34417),(43903,'trends_uint','itemid',34417),(43904,'events','itemid',34418),(43905,'history','itemid',34418),(43906,'history_log','itemid',34418),(43907,'history_str','itemid',34418),(43908,'history_text','itemid',34418),(43909,'history_uint','itemid',34418),(43910,'trends','itemid',34418),(43911,'trends_uint','itemid',34418),(43912,'events','itemid',34419),(43913,'history','itemid',34419),(43914,'history_log','itemid',34419),(43915,'history_str','itemid',34419),(43916,'history_text','itemid',34419),(43917,'history_uint','itemid',34419),(43918,'trends','itemid',34419),(43919,'trends_uint','itemid',34419),(43920,'events','itemid',34420),(43921,'history','itemid',34420),(43922,'history_log','itemid',34420),(43923,'history_str','itemid',34420),(43924,'history_text','itemid',34420),(43925,'history_uint','itemid',34420),(43926,'trends','itemid',34420),(43927,'trends_uint','itemid',34420),(43928,'events','itemid',34421),(43929,'history','itemid',34421),(43930,'history_log','itemid',34421),(43931,'history_str','itemid',34421),(43932,'history_text','itemid',34421),(43933,'history_uint','itemid',34421),(43934,'trends','itemid',34421),(43935,'trends_uint','itemid',34421),(43936,'events','itemid',34422),(43937,'history','itemid',34422),(43938,'history_log','itemid',34422),(43939,'history_str','itemid',34422),(43940,'history_text','itemid',34422),(43941,'history_uint','itemid',34422),(43942,'trends','itemid',34422),(43943,'trends_uint','itemid',34422),(43944,'events','itemid',34423),(43945,'history','itemid',34423),(43946,'history_log','itemid',34423),(43947,'history_str','itemid',34423),(43948,'history_text','itemid',34423),(43949,'history_uint','itemid',34423),(43950,'trends','itemid',34423),(43951,'trends_uint','itemid',34423),(43952,'events','itemid',34424),(43953,'history','itemid',34424),(43954,'history_log','itemid',34424),(43955,'history_str','itemid',34424),(43956,'history_text','itemid',34424),(43957,'history_uint','itemid',34424),(43958,'trends','itemid',34424),(43959,'trends_uint','itemid',34424),(43960,'events','itemid',34425),(43961,'history','itemid',34425),(43962,'history_log','itemid',34425),(43963,'history_str','itemid',34425),(43964,'history_text','itemid',34425),(43965,'history_uint','itemid',34425),(43966,'trends','itemid',34425),(43967,'trends_uint','itemid',34425),(43968,'events','itemid',34426),(43969,'history','itemid',34426),(43970,'history_log','itemid',34426),(43971,'history_str','itemid',34426),(43972,'history_text','itemid',34426),(43973,'history_uint','itemid',34426),(43974,'trends','itemid',34426),(43975,'trends_uint','itemid',34426),(43976,'events','itemid',34427),(43977,'history','itemid',34427),(43978,'history_log','itemid',34427),(43979,'history_str','itemid',34427),(43980,'history_text','itemid',34427),(43981,'history_uint','itemid',34427),(43982,'trends','itemid',34427),(43983,'trends_uint','itemid',34427),(43984,'events','itemid',34428),(43985,'history','itemid',34428),(43986,'history_log','itemid',34428),(43987,'history_str','itemid',34428),(43988,'history_text','itemid',34428),(43989,'history_uint','itemid',34428),(43990,'trends','itemid',34428),(43991,'trends_uint','itemid',34428),(43992,'events','itemid',34429),(43993,'history','itemid',34429),(43994,'history_log','itemid',34429),(43995,'history_str','itemid',34429),(43996,'history_text','itemid',34429),(43997,'history_uint','itemid',34429),(43998,'trends','itemid',34429),(43999,'trends_uint','itemid',34429),(44000,'events','itemid',34430),(44001,'history','itemid',34430),(44002,'history_log','itemid',34430),(44003,'history_str','itemid',34430),(44004,'history_text','itemid',34430),(44005,'history_uint','itemid',34430),(44006,'trends','itemid',34430),(44007,'trends_uint','itemid',34430),(44008,'events','itemid',34431),(44009,'history','itemid',34431),(44010,'history_log','itemid',34431),(44011,'history_str','itemid',34431),(44012,'history_text','itemid',34431),(44013,'history_uint','itemid',34431),(44014,'trends','itemid',34431),(44015,'trends_uint','itemid',34431),(44016,'events','itemid',34432),(44017,'history','itemid',34432),(44018,'history_log','itemid',34432),(44019,'history_str','itemid',34432),(44020,'history_text','itemid',34432),(44021,'history_uint','itemid',34432),(44022,'trends','itemid',34432),(44023,'trends_uint','itemid',34432),(44024,'events','itemid',34433),(44025,'history','itemid',34433),(44026,'history_log','itemid',34433),(44027,'history_str','itemid',34433),(44028,'history_text','itemid',34433),(44029,'history_uint','itemid',34433),(44030,'trends','itemid',34433),(44031,'trends_uint','itemid',34433),(44032,'events','itemid',34434),(44033,'history','itemid',34434),(44034,'history_log','itemid',34434),(44035,'history_str','itemid',34434),(44036,'history_text','itemid',34434),(44037,'history_uint','itemid',34434),(44038,'trends','itemid',34434),(44039,'trends_uint','itemid',34434),(44040,'events','itemid',34435),(44041,'history','itemid',34435),(44042,'history_log','itemid',34435),(44043,'history_str','itemid',34435),(44044,'history_text','itemid',34435),(44045,'history_uint','itemid',34435),(44046,'trends','itemid',34435),(44047,'trends_uint','itemid',34435),(44048,'events','itemid',34436),(44049,'history','itemid',34436),(44050,'history_log','itemid',34436),(44051,'history_str','itemid',34436),(44052,'history_text','itemid',34436),(44053,'history_uint','itemid',34436),(44054,'trends','itemid',34436),(44055,'trends_uint','itemid',34436),(44056,'events','itemid',34437),(44057,'history','itemid',34437),(44058,'history_log','itemid',34437),(44059,'history_str','itemid',34437),(44060,'history_text','itemid',34437),(44061,'history_uint','itemid',34437),(44062,'trends','itemid',34437),(44063,'trends_uint','itemid',34437),(44064,'events','itemid',34438),(44065,'history','itemid',34438),(44066,'history_log','itemid',34438),(44067,'history_str','itemid',34438),(44068,'history_text','itemid',34438),(44069,'history_uint','itemid',34438),(44070,'trends','itemid',34438),(44071,'trends_uint','itemid',34438),(44072,'events','itemid',34439),(44073,'history','itemid',34439),(44074,'history_log','itemid',34439),(44075,'history_str','itemid',34439),(44076,'history_text','itemid',34439),(44077,'history_uint','itemid',34439),(44078,'trends','itemid',34439),(44079,'trends_uint','itemid',34439),(44080,'events','itemid',34937),(44081,'history','itemid',34937),(44082,'history_log','itemid',34937),(44083,'history_str','itemid',34937),(44084,'history_text','itemid',34937),(44085,'history_uint','itemid',34937),(44086,'trends','itemid',34937),(44087,'trends_uint','itemid',34937),(44088,'events','itemid',34938),(44089,'history','itemid',34938),(44090,'history_log','itemid',34938),(44091,'history_str','itemid',34938),(44092,'history_text','itemid',34938),(44093,'history_uint','itemid',34938),(44094,'trends','itemid',34938),(44095,'trends_uint','itemid',34938),(44096,'events','itemid',34939),(44097,'history','itemid',34939),(44098,'history_log','itemid',34939),(44099,'history_str','itemid',34939),(44100,'history_text','itemid',34939),(44101,'history_uint','itemid',34939),(44102,'trends','itemid',34939),(44103,'trends_uint','itemid',34939),(44104,'events','itemid',34940),(44105,'history','itemid',34940),(44106,'history_log','itemid',34940),(44107,'history_str','itemid',34940),(44108,'history_text','itemid',34940),(44109,'history_uint','itemid',34940),(44110,'trends','itemid',34940),(44111,'trends_uint','itemid',34940),(44112,'events','itemid',34941),(44113,'history','itemid',34941),(44114,'history_log','itemid',34941),(44115,'history_str','itemid',34941),(44116,'history_text','itemid',34941),(44117,'history_uint','itemid',34941),(44118,'trends','itemid',34941),(44119,'trends_uint','itemid',34941),(44120,'events','itemid',34949),(44121,'history','itemid',34949),(44122,'history_log','itemid',34949),(44123,'history_str','itemid',34949),(44124,'history_text','itemid',34949),(44125,'history_uint','itemid',34949),(44126,'trends','itemid',34949),(44127,'trends_uint','itemid',34949),(44128,'events','itemid',34950),(44129,'history','itemid',34950),(44130,'history_log','itemid',34950),(44131,'history_str','itemid',34950),(44132,'history_text','itemid',34950),(44133,'history_uint','itemid',34950),(44134,'trends','itemid',34950),(44135,'trends_uint','itemid',34950),(44136,'events','itemid',34951),(44137,'history','itemid',34951),(44138,'history_log','itemid',34951),(44139,'history_str','itemid',34951),(44140,'history_text','itemid',34951),(44141,'history_uint','itemid',34951),(44142,'trends','itemid',34951),(44143,'trends_uint','itemid',34951),(44144,'events','itemid',34952),(44145,'history','itemid',34952),(44146,'history_log','itemid',34952),(44147,'history_str','itemid',34952),(44148,'history_text','itemid',34952),(44149,'history_uint','itemid',34952),(44150,'trends','itemid',34952),(44151,'trends_uint','itemid',34952),(44152,'events','itemid',34953),(44153,'history','itemid',34953),(44154,'history_log','itemid',34953),(44155,'history_str','itemid',34953),(44156,'history_text','itemid',34953),(44157,'history_uint','itemid',34953),(44158,'trends','itemid',34953),(44159,'trends_uint','itemid',34953),(44160,'events','itemid',34954),(44161,'history','itemid',34954),(44162,'history_log','itemid',34954),(44163,'history_str','itemid',34954),(44164,'history_text','itemid',34954),(44165,'history_uint','itemid',34954),(44166,'trends','itemid',34954),(44167,'trends_uint','itemid',34954),(44168,'events','itemid',34955),(44169,'history','itemid',34955),(44170,'history_log','itemid',34955),(44171,'history_str','itemid',34955),(44172,'history_text','itemid',34955),(44173,'history_uint','itemid',34955),(44174,'trends','itemid',34955),(44175,'trends_uint','itemid',34955),(44176,'events','itemid',34956),(44177,'history','itemid',34956),(44178,'history_log','itemid',34956),(44179,'history_str','itemid',34956),(44180,'history_text','itemid',34956),(44181,'history_uint','itemid',34956),(44182,'trends','itemid',34956),(44183,'trends_uint','itemid',34956),(44184,'events','itemid',34957),(44185,'history','itemid',34957),(44186,'history_log','itemid',34957),(44187,'history_str','itemid',34957),(44188,'history_text','itemid',34957),(44189,'history_uint','itemid',34957),(44190,'trends','itemid',34957),(44191,'trends_uint','itemid',34957),(44192,'events','itemid',34958),(44193,'history','itemid',34958),(44194,'history_log','itemid',34958),(44195,'history_str','itemid',34958),(44196,'history_text','itemid',34958),(44197,'history_uint','itemid',34958),(44198,'trends','itemid',34958),(44199,'trends_uint','itemid',34958),(44200,'events','itemid',34959),(44201,'history','itemid',34959),(44202,'history_log','itemid',34959),(44203,'history_str','itemid',34959),(44204,'history_text','itemid',34959),(44205,'history_uint','itemid',34959),(44206,'trends','itemid',34959),(44207,'trends_uint','itemid',34959),(44208,'events','itemid',34960),(44209,'history','itemid',34960),(44210,'history_log','itemid',34960),(44211,'history_str','itemid',34960),(44212,'history_text','itemid',34960),(44213,'history_uint','itemid',34960),(44214,'trends','itemid',34960),(44215,'trends_uint','itemid',34960),(44216,'events','itemid',34961),(44217,'history','itemid',34961),(44218,'history_log','itemid',34961),(44219,'history_str','itemid',34961),(44220,'history_text','itemid',34961),(44221,'history_uint','itemid',34961),(44222,'trends','itemid',34961),(44223,'trends_uint','itemid',34961),(44224,'events','itemid',34962),(44225,'history','itemid',34962),(44226,'history_log','itemid',34962),(44227,'history_str','itemid',34962),(44228,'history_text','itemid',34962),(44229,'history_uint','itemid',34962),(44230,'trends','itemid',34962),(44231,'trends_uint','itemid',34962),(44232,'events','itemid',34963),(44233,'history','itemid',34963),(44234,'history_log','itemid',34963),(44235,'history_str','itemid',34963),(44236,'history_text','itemid',34963),(44237,'history_uint','itemid',34963),(44238,'trends','itemid',34963),(44239,'trends_uint','itemid',34963),(44240,'events','itemid',34964),(44241,'history','itemid',34964),(44242,'history_log','itemid',34964),(44243,'history_str','itemid',34964),(44244,'history_text','itemid',34964),(44245,'history_uint','itemid',34964),(44246,'trends','itemid',34964),(44247,'trends_uint','itemid',34964),(44248,'events','itemid',34965),(44249,'history','itemid',34965),(44250,'history_log','itemid',34965),(44251,'history_str','itemid',34965),(44252,'history_text','itemid',34965),(44253,'history_uint','itemid',34965),(44254,'trends','itemid',34965),(44255,'trends_uint','itemid',34965),(44256,'events','itemid',35064),(44257,'history','itemid',35064),(44258,'history_log','itemid',35064),(44259,'history_str','itemid',35064),(44260,'history_text','itemid',35064),(44261,'history_uint','itemid',35064),(44262,'trends','itemid',35064),(44263,'trends_uint','itemid',35064),(44264,'events','itemid',35065),(44265,'history','itemid',35065),(44266,'history_log','itemid',35065),(44267,'history_str','itemid',35065),(44268,'history_text','itemid',35065),(44269,'history_uint','itemid',35065),(44270,'trends','itemid',35065),(44271,'trends_uint','itemid',35065),(44272,'events','itemid',35066),(44273,'history','itemid',35066),(44274,'history_log','itemid',35066),(44275,'history_str','itemid',35066),(44276,'history_text','itemid',35066),(44277,'history_uint','itemid',35066),(44278,'trends','itemid',35066),(44279,'trends_uint','itemid',35066),(44280,'events','itemid',35067),(44281,'history','itemid',35067),(44282,'history_log','itemid',35067),(44283,'history_str','itemid',35067),(44284,'history_text','itemid',35067),(44285,'history_uint','itemid',35067),(44286,'trends','itemid',35067),(44287,'trends_uint','itemid',35067),(44288,'events','itemid',35068),(44289,'history','itemid',35068),(44290,'history_log','itemid',35068),(44291,'history_str','itemid',35068),(44292,'history_text','itemid',35068),(44293,'history_uint','itemid',35068),(44294,'trends','itemid',35068),(44295,'trends_uint','itemid',35068),(44296,'events','itemid',35069),(44297,'history','itemid',35069),(44298,'history_log','itemid',35069),(44299,'history_str','itemid',35069),(44300,'history_text','itemid',35069),(44301,'history_uint','itemid',35069),(44302,'trends','itemid',35069),(44303,'trends_uint','itemid',35069),(44304,'events','itemid',35070),(44305,'history','itemid',35070),(44306,'history_log','itemid',35070),(44307,'history_str','itemid',35070),(44308,'history_text','itemid',35070),(44309,'history_uint','itemid',35070),(44310,'trends','itemid',35070),(44311,'trends_uint','itemid',35070),(44312,'events','itemid',35071),(44313,'history','itemid',35071),(44314,'history_log','itemid',35071),(44315,'history_str','itemid',35071),(44316,'history_text','itemid',35071),(44317,'history_uint','itemid',35071),(44318,'trends','itemid',35071),(44319,'trends_uint','itemid',35071),(44320,'events','itemid',35072),(44321,'history','itemid',35072),(44322,'history_log','itemid',35072),(44323,'history_str','itemid',35072),(44324,'history_text','itemid',35072),(44325,'history_uint','itemid',35072),(44326,'trends','itemid',35072),(44327,'trends_uint','itemid',35072),(44328,'events','itemid',35073),(44329,'history','itemid',35073),(44330,'history_log','itemid',35073),(44331,'history_str','itemid',35073),(44332,'history_text','itemid',35073),(44333,'history_uint','itemid',35073),(44334,'trends','itemid',35073),(44335,'trends_uint','itemid',35073),(44336,'events','itemid',35074),(44337,'history','itemid',35074),(44338,'history_log','itemid',35074),(44339,'history_str','itemid',35074),(44340,'history_text','itemid',35074),(44341,'history_uint','itemid',35074),(44342,'trends','itemid',35074),(44343,'trends_uint','itemid',35074),(44344,'events','itemid',35075),(44345,'history','itemid',35075),(44346,'history_log','itemid',35075),(44347,'history_str','itemid',35075),(44348,'history_text','itemid',35075),(44349,'history_uint','itemid',35075),(44350,'trends','itemid',35075),(44351,'trends_uint','itemid',35075),(44352,'events','itemid',35076),(44353,'history','itemid',35076),(44354,'history_log','itemid',35076),(44355,'history_str','itemid',35076),(44356,'history_text','itemid',35076),(44357,'history_uint','itemid',35076),(44358,'trends','itemid',35076),(44359,'trends_uint','itemid',35076),(44360,'events','itemid',35278),(44361,'history','itemid',35278),(44362,'history_log','itemid',35278),(44363,'history_str','itemid',35278),(44364,'history_text','itemid',35278),(44365,'history_uint','itemid',35278),(44366,'trends','itemid',35278),(44367,'trends_uint','itemid',35278),(44368,'events','itemid',35279),(44369,'history','itemid',35279),(44370,'history_log','itemid',35279),(44371,'history_str','itemid',35279),(44372,'history_text','itemid',35279),(44373,'history_uint','itemid',35279),(44374,'trends','itemid',35279),(44375,'trends_uint','itemid',35279),(44376,'events','itemid',36772),(44377,'history','itemid',36772),(44378,'history_log','itemid',36772),(44379,'history_str','itemid',36772),(44380,'history_text','itemid',36772),(44381,'history_uint','itemid',36772),(44382,'trends','itemid',36772),(44383,'trends_uint','itemid',36772),(44384,'events','itemid',36773),(44385,'history','itemid',36773),(44386,'history_log','itemid',36773),(44387,'history_str','itemid',36773),(44388,'history_text','itemid',36773),(44389,'history_uint','itemid',36773),(44390,'trends','itemid',36773),(44391,'trends_uint','itemid',36773),(44392,'events','itemid',36774),(44393,'history','itemid',36774),(44394,'history_log','itemid',36774),(44395,'history_str','itemid',36774),(44396,'history_text','itemid',36774),(44397,'history_uint','itemid',36774),(44398,'trends','itemid',36774),(44399,'trends_uint','itemid',36774),(44400,'events','itemid',36775),(44401,'history','itemid',36775),(44402,'history_log','itemid',36775),(44403,'history_str','itemid',36775),(44404,'history_text','itemid',36775),(44405,'history_uint','itemid',36775),(44406,'trends','itemid',36775),(44407,'trends_uint','itemid',36775),(44408,'events','itemid',36776),(44409,'history','itemid',36776),(44410,'history_log','itemid',36776),(44411,'history_str','itemid',36776),(44412,'history_text','itemid',36776),(44413,'history_uint','itemid',36776),(44414,'trends','itemid',36776),(44415,'trends_uint','itemid',36776),(44416,'events','itemid',36777),(44417,'history','itemid',36777),(44418,'history_log','itemid',36777),(44419,'history_str','itemid',36777),(44420,'history_text','itemid',36777),(44421,'history_uint','itemid',36777),(44422,'trends','itemid',36777),(44423,'trends_uint','itemid',36777),(44424,'events','itemid',36778),(44425,'history','itemid',36778),(44426,'history_log','itemid',36778),(44427,'history_str','itemid',36778),(44428,'history_text','itemid',36778),(44429,'history_uint','itemid',36778),(44430,'trends','itemid',36778),(44431,'trends_uint','itemid',36778),(44432,'events','itemid',36779),(44433,'history','itemid',36779),(44434,'history_log','itemid',36779),(44435,'history_str','itemid',36779),(44436,'history_text','itemid',36779),(44437,'history_uint','itemid',36779),(44438,'trends','itemid',36779),(44439,'trends_uint','itemid',36779),(44440,'events','itemid',36780),(44441,'history','itemid',36780),(44442,'history_log','itemid',36780),(44443,'history_str','itemid',36780),(44444,'history_text','itemid',36780),(44445,'history_uint','itemid',36780),(44446,'trends','itemid',36780),(44447,'trends_uint','itemid',36780),(44448,'events','itemid',39742),(44449,'history','itemid',39742),(44450,'history_log','itemid',39742),(44451,'history_str','itemid',39742),(44452,'history_text','itemid',39742),(44453,'history_uint','itemid',39742),(44454,'trends','itemid',39742),(44455,'trends_uint','itemid',39742),(44456,'events','itemid',39743),(44457,'history','itemid',39743),(44458,'history_log','itemid',39743),(44459,'history_str','itemid',39743),(44460,'history_text','itemid',39743),(44461,'history_uint','itemid',39743),(44462,'trends','itemid',39743),(44463,'trends_uint','itemid',39743),(44464,'events','itemid',39744),(44465,'history','itemid',39744),(44466,'history_log','itemid',39744),(44467,'history_str','itemid',39744),(44468,'history_text','itemid',39744),(44469,'history_uint','itemid',39744),(44470,'trends','itemid',39744),(44471,'trends_uint','itemid',39744),(44472,'events','itemid',39745),(44473,'history','itemid',39745),(44474,'history_log','itemid',39745),(44475,'history_str','itemid',39745),(44476,'history_text','itemid',39745),(44477,'history_uint','itemid',39745),(44478,'trends','itemid',39745),(44479,'trends_uint','itemid',39745),(44480,'events','itemid',39746),(44481,'history','itemid',39746),(44482,'history_log','itemid',39746),(44483,'history_str','itemid',39746),(44484,'history_text','itemid',39746),(44485,'history_uint','itemid',39746),(44486,'trends','itemid',39746),(44487,'trends_uint','itemid',39746),(44488,'events','itemid',39747),(44489,'history','itemid',39747),(44490,'history_log','itemid',39747),(44491,'history_str','itemid',39747),(44492,'history_text','itemid',39747),(44493,'history_uint','itemid',39747),(44494,'trends','itemid',39747),(44495,'trends_uint','itemid',39747),(44496,'events','itemid',39748),(44497,'history','itemid',39748),(44498,'history_log','itemid',39748),(44499,'history_str','itemid',39748),(44500,'history_text','itemid',39748),(44501,'history_uint','itemid',39748),(44502,'trends','itemid',39748),(44503,'trends_uint','itemid',39748),(44504,'events','itemid',39821),(44505,'history','itemid',39821),(44506,'history_log','itemid',39821),(44507,'history_str','itemid',39821),(44508,'history_text','itemid',39821),(44509,'history_uint','itemid',39821),(44510,'trends','itemid',39821),(44511,'trends_uint','itemid',39821),(44512,'events','itemid',39824),(44513,'history','itemid',39824),(44514,'history_log','itemid',39824),(44515,'history_str','itemid',39824),(44516,'history_text','itemid',39824),(44517,'history_uint','itemid',39824),(44518,'trends','itemid',39824),(44519,'trends_uint','itemid',39824),(44520,'events','itemid',39825),(44521,'history','itemid',39825),(44522,'history_log','itemid',39825),(44523,'history_str','itemid',39825),(44524,'history_text','itemid',39825),(44525,'history_uint','itemid',39825),(44526,'trends','itemid',39825),(44527,'trends_uint','itemid',39825),(44528,'events','itemid',40185),(44529,'history','itemid',40185),(44530,'history_log','itemid',40185),(44531,'history_str','itemid',40185),(44532,'history_text','itemid',40185),(44533,'history_uint','itemid',40185),(44534,'trends','itemid',40185),(44535,'trends_uint','itemid',40185),(44536,'events','itemid',40186),(44537,'history','itemid',40186),(44538,'history_log','itemid',40186),(44539,'history_str','itemid',40186),(44540,'history_text','itemid',40186),(44541,'history_uint','itemid',40186),(44542,'trends','itemid',40186),(44543,'trends_uint','itemid',40186),(44544,'events','itemid',40187),(44545,'history','itemid',40187),(44546,'history_log','itemid',40187),(44547,'history_str','itemid',40187),(44548,'history_text','itemid',40187),(44549,'history_uint','itemid',40187),(44550,'trends','itemid',40187),(44551,'trends_uint','itemid',40187),(44552,'events','itemid',40188),(44553,'history','itemid',40188),(44554,'history_log','itemid',40188),(44555,'history_str','itemid',40188),(44556,'history_text','itemid',40188),(44557,'history_uint','itemid',40188),(44558,'trends','itemid',40188),(44559,'trends_uint','itemid',40188),(44560,'events','itemid',40189),(44561,'history','itemid',40189),(44562,'history_log','itemid',40189),(44563,'history_str','itemid',40189),(44564,'history_text','itemid',40189),(44565,'history_uint','itemid',40189),(44566,'trends','itemid',40189),(44567,'trends_uint','itemid',40189),(44568,'events','itemid',42110),(44569,'history','itemid',42110),(44570,'history_log','itemid',42110),(44571,'history_str','itemid',42110),(44572,'history_text','itemid',42110),(44573,'history_uint','itemid',42110),(44574,'trends','itemid',42110),(44575,'trends_uint','itemid',42110),(44576,'events','itemid',42111),(44577,'history','itemid',42111),(44578,'history_log','itemid',42111),(44579,'history_str','itemid',42111),(44580,'history_text','itemid',42111),(44581,'history_uint','itemid',42111),(44582,'trends','itemid',42111),(44583,'trends_uint','itemid',42111),(44584,'events','itemid',42112),(44585,'history','itemid',42112),(44586,'history_log','itemid',42112),(44587,'history_str','itemid',42112),(44588,'history_text','itemid',42112),(44589,'history_uint','itemid',42112),(44590,'trends','itemid',42112),(44591,'trends_uint','itemid',42112),(44592,'events','itemid',42113),(44593,'history','itemid',42113),(44594,'history_log','itemid',42113),(44595,'history_str','itemid',42113),(44596,'history_text','itemid',42113),(44597,'history_uint','itemid',42113),(44598,'trends','itemid',42113),(44599,'trends_uint','itemid',42113),(44600,'events','itemid',42114),(44601,'history','itemid',42114),(44602,'history_log','itemid',42114),(44603,'history_str','itemid',42114),(44604,'history_text','itemid',42114),(44605,'history_uint','itemid',42114),(44606,'trends','itemid',42114),(44607,'trends_uint','itemid',42114),(44608,'events','itemid',42115),(44609,'history','itemid',42115),(44610,'history_log','itemid',42115),(44611,'history_str','itemid',42115),(44612,'history_text','itemid',42115),(44613,'history_uint','itemid',42115),(44614,'trends','itemid',42115),(44615,'trends_uint','itemid',42115),(44616,'events','itemid',42116),(44617,'history','itemid',42116),(44618,'history_log','itemid',42116),(44619,'history_str','itemid',42116),(44620,'history_text','itemid',42116),(44621,'history_uint','itemid',42116),(44622,'trends','itemid',42116),(44623,'trends_uint','itemid',42116),(44624,'events','itemid',42117),(44625,'history','itemid',42117),(44626,'history_log','itemid',42117),(44627,'history_str','itemid',42117),(44628,'history_text','itemid',42117),(44629,'history_uint','itemid',42117),(44630,'trends','itemid',42117),(44631,'trends_uint','itemid',42117),(44632,'events','itemid',42118),(44633,'history','itemid',42118),(44634,'history_log','itemid',42118),(44635,'history_str','itemid',42118),(44636,'history_text','itemid',42118),(44637,'history_uint','itemid',42118),(44638,'trends','itemid',42118),(44639,'trends_uint','itemid',42118),(44640,'events','itemid',42119),(44641,'history','itemid',42119),(44642,'history_log','itemid',42119),(44643,'history_str','itemid',42119),(44644,'history_text','itemid',42119),(44645,'history_uint','itemid',42119),(44646,'trends','itemid',42119),(44647,'trends_uint','itemid',42119),(44648,'events','itemid',42120),(44649,'history','itemid',42120),(44650,'history_log','itemid',42120),(44651,'history_str','itemid',42120),(44652,'history_text','itemid',42120),(44653,'history_uint','itemid',42120),(44654,'trends','itemid',42120),(44655,'trends_uint','itemid',42120),(44656,'events','itemid',42133),(44657,'history','itemid',42133),(44658,'history_log','itemid',42133),(44659,'history_str','itemid',42133),(44660,'history_text','itemid',42133),(44661,'history_uint','itemid',42133),(44662,'trends','itemid',42133),(44663,'trends_uint','itemid',42133),(44664,'events','itemid',42134),(44665,'history','itemid',42134),(44666,'history_log','itemid',42134),(44667,'history_str','itemid',42134),(44668,'history_text','itemid',42134),(44669,'history_uint','itemid',42134),(44670,'trends','itemid',42134),(44671,'trends_uint','itemid',42134),(44672,'events','itemid',42135),(44673,'history','itemid',42135),(44674,'history_log','itemid',42135),(44675,'history_str','itemid',42135),(44676,'history_text','itemid',42135),(44677,'history_uint','itemid',42135),(44678,'trends','itemid',42135),(44679,'trends_uint','itemid',42135),(44680,'events','itemid',42136),(44681,'history','itemid',42136),(44682,'history_log','itemid',42136),(44683,'history_str','itemid',42136),(44684,'history_text','itemid',42136),(44685,'history_uint','itemid',42136),(44686,'trends','itemid',42136),(44687,'trends_uint','itemid',42136),(44688,'events','itemid',42137),(44689,'history','itemid',42137),(44690,'history_log','itemid',42137),(44691,'history_str','itemid',42137),(44692,'history_text','itemid',42137),(44693,'history_uint','itemid',42137),(44694,'trends','itemid',42137),(44695,'trends_uint','itemid',42137),(44696,'events','itemid',42138),(44697,'history','itemid',42138),(44698,'history_log','itemid',42138),(44699,'history_str','itemid',42138),(44700,'history_text','itemid',42138),(44701,'history_uint','itemid',42138),(44702,'trends','itemid',42138),(44703,'trends_uint','itemid',42138),(44704,'events','itemid',42139),(44705,'history','itemid',42139),(44706,'history_log','itemid',42139),(44707,'history_str','itemid',42139),(44708,'history_text','itemid',42139),(44709,'history_uint','itemid',42139),(44710,'trends','itemid',42139),(44711,'trends_uint','itemid',42139),(44712,'events','itemid',42140),(44713,'history','itemid',42140),(44714,'history_log','itemid',42140),(44715,'history_str','itemid',42140),(44716,'history_text','itemid',42140),(44717,'history_uint','itemid',42140),(44718,'trends','itemid',42140),(44719,'trends_uint','itemid',42140),(44720,'events','itemid',42141),(44721,'history','itemid',42141),(44722,'history_log','itemid',42141),(44723,'history_str','itemid',42141),(44724,'history_text','itemid',42141),(44725,'history_uint','itemid',42141),(44726,'trends','itemid',42141),(44727,'trends_uint','itemid',42141),(44728,'events','itemid',42142),(44729,'history','itemid',42142),(44730,'history_log','itemid',42142),(44731,'history_str','itemid',42142),(44732,'history_text','itemid',42142),(44733,'history_uint','itemid',42142),(44734,'trends','itemid',42142),(44735,'trends_uint','itemid',42142),(44736,'events','itemid',42143),(44737,'history','itemid',42143),(44738,'history_log','itemid',42143),(44739,'history_str','itemid',42143),(44740,'history_text','itemid',42143),(44741,'history_uint','itemid',42143),(44742,'trends','itemid',42143),(44743,'trends_uint','itemid',42143),(44744,'events','itemid',42154),(44745,'history','itemid',42154),(44746,'history_log','itemid',42154),(44747,'history_str','itemid',42154),(44748,'history_text','itemid',42154),(44749,'history_uint','itemid',42154),(44750,'trends','itemid',42154),(44751,'trends_uint','itemid',42154),(44752,'events','itemid',42155),(44753,'history','itemid',42155),(44754,'history_log','itemid',42155),(44755,'history_str','itemid',42155),(44756,'history_text','itemid',42155),(44757,'history_uint','itemid',42155),(44758,'trends','itemid',42155),(44759,'trends_uint','itemid',42155),(44760,'events','itemid',42156),(44761,'history','itemid',42156),(44762,'history_log','itemid',42156),(44763,'history_str','itemid',42156),(44764,'history_text','itemid',42156),(44765,'history_uint','itemid',42156),(44766,'trends','itemid',42156),(44767,'trends_uint','itemid',42156),(44768,'events','itemid',42157),(44769,'history','itemid',42157),(44770,'history_log','itemid',42157),(44771,'history_str','itemid',42157),(44772,'history_text','itemid',42157),(44773,'history_uint','itemid',42157),(44774,'trends','itemid',42157),(44775,'trends_uint','itemid',42157),(44776,'events','itemid',42158),(44777,'history','itemid',42158),(44778,'history_log','itemid',42158),(44779,'history_str','itemid',42158),(44780,'history_text','itemid',42158),(44781,'history_uint','itemid',42158),(44782,'trends','itemid',42158),(44783,'trends_uint','itemid',42158),(44784,'events','itemid',42159),(44785,'history','itemid',42159),(44786,'history_log','itemid',42159),(44787,'history_str','itemid',42159),(44788,'history_text','itemid',42159),(44789,'history_uint','itemid',42159),(44790,'trends','itemid',42159),(44791,'trends_uint','itemid',42159),(44792,'events','itemid',42160),(44793,'history','itemid',42160),(44794,'history_log','itemid',42160),(44795,'history_str','itemid',42160),(44796,'history_text','itemid',42160),(44797,'history_uint','itemid',42160),(44798,'trends','itemid',42160),(44799,'trends_uint','itemid',42160),(44800,'events','itemid',42161),(44801,'history','itemid',42161),(44802,'history_log','itemid',42161),(44803,'history_str','itemid',42161),(44804,'history_text','itemid',42161),(44805,'history_uint','itemid',42161),(44806,'trends','itemid',42161),(44807,'trends_uint','itemid',42161),(44808,'events','itemid',42162),(44809,'history','itemid',42162),(44810,'history_log','itemid',42162),(44811,'history_str','itemid',42162),(44812,'history_text','itemid',42162),(44813,'history_uint','itemid',42162),(44814,'trends','itemid',42162),(44815,'trends_uint','itemid',42162),(44816,'events','itemid',42163),(44817,'history','itemid',42163),(44818,'history_log','itemid',42163),(44819,'history_str','itemid',42163),(44820,'history_text','itemid',42163),(44821,'history_uint','itemid',42163),(44822,'trends','itemid',42163),(44823,'trends_uint','itemid',42163),(44824,'events','itemid',42164),(44825,'history','itemid',42164),(44826,'history_log','itemid',42164),(44827,'history_str','itemid',42164),(44828,'history_text','itemid',42164),(44829,'history_uint','itemid',42164),(44830,'trends','itemid',42164),(44831,'trends_uint','itemid',42164),(44832,'events','itemid',42451),(44833,'history','itemid',42451),(44834,'history_log','itemid',42451),(44835,'history_str','itemid',42451),(44836,'history_text','itemid',42451),(44837,'history_uint','itemid',42451),(44838,'trends','itemid',42451),(44839,'trends_uint','itemid',42451),(44840,'events','itemid',42452),(44841,'history','itemid',42452),(44842,'history_log','itemid',42452),(44843,'history_str','itemid',42452),(44844,'history_text','itemid',42452),(44845,'history_uint','itemid',42452),(44846,'trends','itemid',42452),(44847,'trends_uint','itemid',42452),(44848,'events','itemid',42453),(44849,'history','itemid',42453),(44850,'history_log','itemid',42453),(44851,'history_str','itemid',42453),(44852,'history_text','itemid',42453),(44853,'history_uint','itemid',42453),(44854,'trends','itemid',42453),(44855,'trends_uint','itemid',42453),(44856,'events','itemid',42454),(44857,'history','itemid',42454),(44858,'history_log','itemid',42454),(44859,'history_str','itemid',42454),(44860,'history_text','itemid',42454),(44861,'history_uint','itemid',42454),(44862,'trends','itemid',42454),(44863,'trends_uint','itemid',42454),(44864,'events','itemid',42455),(44865,'history','itemid',42455),(44866,'history_log','itemid',42455),(44867,'history_str','itemid',42455),(44868,'history_text','itemid',42455),(44869,'history_uint','itemid',42455),(44870,'trends','itemid',42455),(44871,'trends_uint','itemid',42455),(44872,'events','itemid',42456),(44873,'history','itemid',42456),(44874,'history_log','itemid',42456),(44875,'history_str','itemid',42456),(44876,'history_text','itemid',42456),(44877,'history_uint','itemid',42456),(44878,'trends','itemid',42456),(44879,'trends_uint','itemid',42456),(44880,'events','itemid',42457),(44881,'history','itemid',42457),(44882,'history_log','itemid',42457),(44883,'history_str','itemid',42457),(44884,'history_text','itemid',42457),(44885,'history_uint','itemid',42457),(44886,'trends','itemid',42457),(44887,'trends_uint','itemid',42457),(44888,'events','itemid',42458),(44889,'history','itemid',42458),(44890,'history_log','itemid',42458),(44891,'history_str','itemid',42458),(44892,'history_text','itemid',42458),(44893,'history_uint','itemid',42458),(44894,'trends','itemid',42458),(44895,'trends_uint','itemid',42458),(44896,'events','itemid',42459),(44897,'history','itemid',42459),(44898,'history_log','itemid',42459),(44899,'history_str','itemid',42459),(44900,'history_text','itemid',42459),(44901,'history_uint','itemid',42459),(44902,'trends','itemid',42459),(44903,'trends_uint','itemid',42459),(44904,'events','itemid',42460),(44905,'history','itemid',42460),(44906,'history_log','itemid',42460),(44907,'history_str','itemid',42460),(44908,'history_text','itemid',42460),(44909,'history_uint','itemid',42460),(44910,'trends','itemid',42460),(44911,'trends_uint','itemid',42460),(44912,'events','itemid',42461),(44913,'history','itemid',42461),(44914,'history_log','itemid',42461),(44915,'history_str','itemid',42461),(44916,'history_text','itemid',42461),(44917,'history_uint','itemid',42461),(44918,'trends','itemid',42461),(44919,'trends_uint','itemid',42461),(44920,'events','itemid',42462),(44921,'history','itemid',42462),(44922,'history_log','itemid',42462),(44923,'history_str','itemid',42462),(44924,'history_text','itemid',42462),(44925,'history_uint','itemid',42462),(44926,'trends','itemid',42462),(44927,'trends_uint','itemid',42462),(44928,'events','itemid',42463),(44929,'history','itemid',42463),(44930,'history_log','itemid',42463),(44931,'history_str','itemid',42463),(44932,'history_text','itemid',42463),(44933,'history_uint','itemid',42463),(44934,'trends','itemid',42463),(44935,'trends_uint','itemid',42463),(44936,'events','itemid',42464),(44937,'history','itemid',42464),(44938,'history_log','itemid',42464),(44939,'history_str','itemid',42464),(44940,'history_text','itemid',42464),(44941,'history_uint','itemid',42464),(44942,'trends','itemid',42464),(44943,'trends_uint','itemid',42464),(44944,'events','itemid',42465),(44945,'history','itemid',42465),(44946,'history_log','itemid',42465),(44947,'history_str','itemid',42465),(44948,'history_text','itemid',42465),(44949,'history_uint','itemid',42465),(44950,'trends','itemid',42465),(44951,'trends_uint','itemid',42465),(44952,'events','itemid',42466),(44953,'history','itemid',42466),(44954,'history_log','itemid',42466),(44955,'history_str','itemid',42466),(44956,'history_text','itemid',42466),(44957,'history_uint','itemid',42466),(44958,'trends','itemid',42466),(44959,'trends_uint','itemid',42466),(44960,'events','itemid',42467),(44961,'history','itemid',42467),(44962,'history_log','itemid',42467),(44963,'history_str','itemid',42467),(44964,'history_text','itemid',42467),(44965,'history_uint','itemid',42467),(44966,'trends','itemid',42467),(44967,'trends_uint','itemid',42467),(44968,'events','itemid',42468),(44969,'history','itemid',42468),(44970,'history_log','itemid',42468),(44971,'history_str','itemid',42468),(44972,'history_text','itemid',42468),(44973,'history_uint','itemid',42468),(44974,'trends','itemid',42468),(44975,'trends_uint','itemid',42468),(44976,'events','itemid',42469),(44977,'history','itemid',42469),(44978,'history_log','itemid',42469),(44979,'history_str','itemid',42469),(44980,'history_text','itemid',42469),(44981,'history_uint','itemid',42469),(44982,'trends','itemid',42469),(44983,'trends_uint','itemid',42469),(44984,'events','itemid',42470),(44985,'history','itemid',42470),(44986,'history_log','itemid',42470),(44987,'history_str','itemid',42470),(44988,'history_text','itemid',42470),(44989,'history_uint','itemid',42470),(44990,'trends','itemid',42470),(44991,'trends_uint','itemid',42470),(44992,'events','itemid',42471),(44993,'history','itemid',42471),(44994,'history_log','itemid',42471),(44995,'history_str','itemid',42471),(44996,'history_text','itemid',42471),(44997,'history_uint','itemid',42471),(44998,'trends','itemid',42471),(44999,'trends_uint','itemid',42471),(45000,'events','itemid',42472),(45001,'history','itemid',42472),(45002,'history_log','itemid',42472),(45003,'history_str','itemid',42472),(45004,'history_text','itemid',42472),(45005,'history_uint','itemid',42472),(45006,'trends','itemid',42472),(45007,'trends_uint','itemid',42472),(45008,'events','itemid',42473),(45009,'history','itemid',42473),(45010,'history_log','itemid',42473),(45011,'history_str','itemid',42473),(45012,'history_text','itemid',42473),(45013,'history_uint','itemid',42473),(45014,'trends','itemid',42473),(45015,'trends_uint','itemid',42473),(45016,'events','itemid',42474),(45017,'history','itemid',42474),(45018,'history_log','itemid',42474),(45019,'history_str','itemid',42474),(45020,'history_text','itemid',42474),(45021,'history_uint','itemid',42474),(45022,'trends','itemid',42474),(45023,'trends_uint','itemid',42474),(45024,'events','itemid',42475),(45025,'history','itemid',42475),(45026,'history_log','itemid',42475),(45027,'history_str','itemid',42475),(45028,'history_text','itemid',42475),(45029,'history_uint','itemid',42475),(45030,'trends','itemid',42475),(45031,'trends_uint','itemid',42475),(45032,'events','itemid',42476),(45033,'history','itemid',42476),(45034,'history_log','itemid',42476),(45035,'history_str','itemid',42476),(45036,'history_text','itemid',42476),(45037,'history_uint','itemid',42476),(45038,'trends','itemid',42476),(45039,'trends_uint','itemid',42476),(45040,'events','itemid',42477),(45041,'history','itemid',42477),(45042,'history_log','itemid',42477),(45043,'history_str','itemid',42477),(45044,'history_text','itemid',42477),(45045,'history_uint','itemid',42477),(45046,'trends','itemid',42477),(45047,'trends_uint','itemid',42477),(45048,'events','itemid',42478),(45049,'history','itemid',42478),(45050,'history_log','itemid',42478),(45051,'history_str','itemid',42478),(45052,'history_text','itemid',42478),(45053,'history_uint','itemid',42478),(45054,'trends','itemid',42478),(45055,'trends_uint','itemid',42478),(45056,'events','itemid',42479),(45057,'history','itemid',42479),(45058,'history_log','itemid',42479),(45059,'history_str','itemid',42479),(45060,'history_text','itemid',42479),(45061,'history_uint','itemid',42479),(45062,'trends','itemid',42479),(45063,'trends_uint','itemid',42479),(45064,'events','itemid',42480),(45065,'history','itemid',42480),(45066,'history_log','itemid',42480),(45067,'history_str','itemid',42480),(45068,'history_text','itemid',42480),(45069,'history_uint','itemid',42480),(45070,'trends','itemid',42480),(45071,'trends_uint','itemid',42480),(45072,'events','itemid',42481),(45073,'history','itemid',42481),(45074,'history_log','itemid',42481),(45075,'history_str','itemid',42481),(45076,'history_text','itemid',42481),(45077,'history_uint','itemid',42481),(45078,'trends','itemid',42481),(45079,'trends_uint','itemid',42481),(45080,'events','itemid',42482),(45081,'history','itemid',42482),(45082,'history_log','itemid',42482),(45083,'history_str','itemid',42482),(45084,'history_text','itemid',42482),(45085,'history_uint','itemid',42482),(45086,'trends','itemid',42482),(45087,'trends_uint','itemid',42482),(45088,'events','itemid',42483),(45089,'history','itemid',42483),(45090,'history_log','itemid',42483),(45091,'history_str','itemid',42483),(45092,'history_text','itemid',42483),(45093,'history_uint','itemid',42483),(45094,'trends','itemid',42483),(45095,'trends_uint','itemid',42483),(45096,'events','itemid',42484),(45097,'history','itemid',42484),(45098,'history_log','itemid',42484),(45099,'history_str','itemid',42484),(45100,'history_text','itemid',42484),(45101,'history_uint','itemid',42484),(45102,'trends','itemid',42484),(45103,'trends_uint','itemid',42484),(45104,'events','itemid',42485),(45105,'history','itemid',42485),(45106,'history_log','itemid',42485),(45107,'history_str','itemid',42485),(45108,'history_text','itemid',42485),(45109,'history_uint','itemid',42485),(45110,'trends','itemid',42485),(45111,'trends_uint','itemid',42485),(45112,'events','itemid',42486),(45113,'history','itemid',42486),(45114,'history_log','itemid',42486),(45115,'history_str','itemid',42486),(45116,'history_text','itemid',42486),(45117,'history_uint','itemid',42486),(45118,'trends','itemid',42486),(45119,'trends_uint','itemid',42486),(45120,'events','itemid',42512),(45121,'history','itemid',42512),(45122,'history_log','itemid',42512),(45123,'history_str','itemid',42512),(45124,'history_text','itemid',42512),(45125,'history_uint','itemid',42512),(45126,'trends','itemid',42512),(45127,'trends_uint','itemid',42512),(45128,'events','itemid',42513),(45129,'history','itemid',42513),(45130,'history_log','itemid',42513),(45131,'history_str','itemid',42513),(45132,'history_text','itemid',42513),(45133,'history_uint','itemid',42513),(45134,'trends','itemid',42513),(45135,'trends_uint','itemid',42513),(45136,'events','itemid',42514),(45137,'history','itemid',42514),(45138,'history_log','itemid',42514),(45139,'history_str','itemid',42514),(45140,'history_text','itemid',42514),(45141,'history_uint','itemid',42514),(45142,'trends','itemid',42514),(45143,'trends_uint','itemid',42514),(45144,'events','itemid',42515),(45145,'history','itemid',42515),(45146,'history_log','itemid',42515),(45147,'history_str','itemid',42515),(45148,'history_text','itemid',42515),(45149,'history_uint','itemid',42515),(45150,'trends','itemid',42515),(45151,'trends_uint','itemid',42515),(45152,'events','itemid',42516),(45153,'history','itemid',42516),(45154,'history_log','itemid',42516),(45155,'history_str','itemid',42516),(45156,'history_text','itemid',42516),(45157,'history_uint','itemid',42516),(45158,'trends','itemid',42516),(45159,'trends_uint','itemid',42516),(45160,'events','itemid',42517),(45161,'history','itemid',42517),(45162,'history_log','itemid',42517),(45163,'history_str','itemid',42517),(45164,'history_text','itemid',42517),(45165,'history_uint','itemid',42517),(45166,'trends','itemid',42517),(45167,'trends_uint','itemid',42517),(45168,'events','itemid',42518),(45169,'history','itemid',42518),(45170,'history_log','itemid',42518),(45171,'history_str','itemid',42518),(45172,'history_text','itemid',42518),(45173,'history_uint','itemid',42518),(45174,'trends','itemid',42518),(45175,'trends_uint','itemid',42518),(45176,'events','itemid',42519),(45177,'history','itemid',42519),(45178,'history_log','itemid',42519),(45179,'history_str','itemid',42519),(45180,'history_text','itemid',42519),(45181,'history_uint','itemid',42519),(45182,'trends','itemid',42519),(45183,'trends_uint','itemid',42519),(45184,'events','itemid',42520),(45185,'history','itemid',42520),(45186,'history_log','itemid',42520),(45187,'history_str','itemid',42520),(45188,'history_text','itemid',42520),(45189,'history_uint','itemid',42520),(45190,'trends','itemid',42520),(45191,'trends_uint','itemid',42520),(45192,'events','itemid',42521),(45193,'history','itemid',42521),(45194,'history_log','itemid',42521),(45195,'history_str','itemid',42521),(45196,'history_text','itemid',42521),(45197,'history_uint','itemid',42521),(45198,'trends','itemid',42521),(45199,'trends_uint','itemid',42521),(45200,'events','itemid',42522),(45201,'history','itemid',42522),(45202,'history_log','itemid',42522),(45203,'history_str','itemid',42522),(45204,'history_text','itemid',42522),(45205,'history_uint','itemid',42522),(45206,'trends','itemid',42522),(45207,'trends_uint','itemid',42522),(45208,'events','itemid',42523),(45209,'history','itemid',42523),(45210,'history_log','itemid',42523),(45211,'history_str','itemid',42523),(45212,'history_text','itemid',42523),(45213,'history_uint','itemid',42523),(45214,'trends','itemid',42523),(45215,'trends_uint','itemid',42523),(45216,'events','itemid',42524),(45217,'history','itemid',42524),(45218,'history_log','itemid',42524),(45219,'history_str','itemid',42524),(45220,'history_text','itemid',42524),(45221,'history_uint','itemid',42524),(45222,'trends','itemid',42524),(45223,'trends_uint','itemid',42524),(45224,'events','itemid',42525),(45225,'history','itemid',42525),(45226,'history_log','itemid',42525),(45227,'history_str','itemid',42525),(45228,'history_text','itemid',42525),(45229,'history_uint','itemid',42525),(45230,'trends','itemid',42525),(45231,'trends_uint','itemid',42525),(45232,'events','itemid',42526),(45233,'history','itemid',42526),(45234,'history_log','itemid',42526),(45235,'history_str','itemid',42526),(45236,'history_text','itemid',42526),(45237,'history_uint','itemid',42526),(45238,'trends','itemid',42526),(45239,'trends_uint','itemid',42526),(45240,'events','itemid',42527),(45241,'history','itemid',42527),(45242,'history_log','itemid',42527),(45243,'history_str','itemid',42527),(45244,'history_text','itemid',42527),(45245,'history_uint','itemid',42527),(45246,'trends','itemid',42527),(45247,'trends_uint','itemid',42527),(45248,'events','itemid',42528),(45249,'history','itemid',42528),(45250,'history_log','itemid',42528),(45251,'history_str','itemid',42528),(45252,'history_text','itemid',42528),(45253,'history_uint','itemid',42528),(45254,'trends','itemid',42528),(45255,'trends_uint','itemid',42528),(45256,'events','itemid',42529),(45257,'history','itemid',42529),(45258,'history_log','itemid',42529),(45259,'history_str','itemid',42529),(45260,'history_text','itemid',42529),(45261,'history_uint','itemid',42529),(45262,'trends','itemid',42529),(45263,'trends_uint','itemid',42529),(45264,'events','itemid',42530),(45265,'history','itemid',42530),(45266,'history_log','itemid',42530),(45267,'history_str','itemid',42530),(45268,'history_text','itemid',42530),(45269,'history_uint','itemid',42530),(45270,'trends','itemid',42530),(45271,'trends_uint','itemid',42530),(45272,'events','itemid',42531),(45273,'history','itemid',42531),(45274,'history_log','itemid',42531),(45275,'history_str','itemid',42531),(45276,'history_text','itemid',42531),(45277,'history_uint','itemid',42531),(45278,'trends','itemid',42531),(45279,'trends_uint','itemid',42531),(45280,'events','itemid',42532),(45281,'history','itemid',42532),(45282,'history_log','itemid',42532),(45283,'history_str','itemid',42532),(45284,'history_text','itemid',42532),(45285,'history_uint','itemid',42532),(45286,'trends','itemid',42532),(45287,'trends_uint','itemid',42532),(45288,'events','itemid',42533),(45289,'history','itemid',42533),(45290,'history_log','itemid',42533),(45291,'history_str','itemid',42533),(45292,'history_text','itemid',42533),(45293,'history_uint','itemid',42533),(45294,'trends','itemid',42533),(45295,'trends_uint','itemid',42533),(45296,'events','itemid',42534),(45297,'history','itemid',42534),(45298,'history_log','itemid',42534),(45299,'history_str','itemid',42534),(45300,'history_text','itemid',42534),(45301,'history_uint','itemid',42534),(45302,'trends','itemid',42534),(45303,'trends_uint','itemid',42534),(45304,'events','itemid',42535),(45305,'history','itemid',42535),(45306,'history_log','itemid',42535),(45307,'history_str','itemid',42535),(45308,'history_text','itemid',42535),(45309,'history_uint','itemid',42535),(45310,'trends','itemid',42535),(45311,'trends_uint','itemid',42535),(45312,'events','itemid',42536),(45313,'history','itemid',42536),(45314,'history_log','itemid',42536),(45315,'history_str','itemid',42536),(45316,'history_text','itemid',42536),(45317,'history_uint','itemid',42536),(45318,'trends','itemid',42536),(45319,'trends_uint','itemid',42536),(45320,'events','itemid',42537),(45321,'history','itemid',42537),(45322,'history_log','itemid',42537),(45323,'history_str','itemid',42537),(45324,'history_text','itemid',42537),(45325,'history_uint','itemid',42537),(45326,'trends','itemid',42537),(45327,'trends_uint','itemid',42537),(45328,'events','itemid',42538),(45329,'history','itemid',42538),(45330,'history_log','itemid',42538),(45331,'history_str','itemid',42538),(45332,'history_text','itemid',42538),(45333,'history_uint','itemid',42538),(45334,'trends','itemid',42538),(45335,'trends_uint','itemid',42538),(45336,'events','itemid',42539),(45337,'history','itemid',42539),(45338,'history_log','itemid',42539),(45339,'history_str','itemid',42539),(45340,'history_text','itemid',42539),(45341,'history_uint','itemid',42539),(45342,'trends','itemid',42539),(45343,'trends_uint','itemid',42539),(45344,'events','itemid',42540),(45345,'history','itemid',42540),(45346,'history_log','itemid',42540),(45347,'history_str','itemid',42540),(45348,'history_text','itemid',42540),(45349,'history_uint','itemid',42540),(45350,'trends','itemid',42540),(45351,'trends_uint','itemid',42540),(45352,'events','itemid',42541),(45353,'history','itemid',42541),(45354,'history_log','itemid',42541),(45355,'history_str','itemid',42541),(45356,'history_text','itemid',42541),(45357,'history_uint','itemid',42541),(45358,'trends','itemid',42541),(45359,'trends_uint','itemid',42541),(45360,'events','itemid',42542),(45361,'history','itemid',42542),(45362,'history_log','itemid',42542),(45363,'history_str','itemid',42542),(45364,'history_text','itemid',42542),(45365,'history_uint','itemid',42542),(45366,'trends','itemid',42542),(45367,'trends_uint','itemid',42542),(45368,'events','itemid',42568),(45369,'history','itemid',42568),(45370,'history_log','itemid',42568),(45371,'history_str','itemid',42568),(45372,'history_text','itemid',42568),(45373,'history_uint','itemid',42568),(45374,'trends','itemid',42568),(45375,'trends_uint','itemid',42568),(45376,'events','itemid',42569),(45377,'history','itemid',42569),(45378,'history_log','itemid',42569),(45379,'history_str','itemid',42569),(45380,'history_text','itemid',42569),(45381,'history_uint','itemid',42569),(45382,'trends','itemid',42569),(45383,'trends_uint','itemid',42569),(45384,'events','itemid',42570),(45385,'history','itemid',42570),(45386,'history_log','itemid',42570),(45387,'history_str','itemid',42570),(45388,'history_text','itemid',42570),(45389,'history_uint','itemid',42570),(45390,'trends','itemid',42570),(45391,'trends_uint','itemid',42570),(45392,'events','itemid',42571),(45393,'history','itemid',42571),(45394,'history_log','itemid',42571),(45395,'history_str','itemid',42571),(45396,'history_text','itemid',42571),(45397,'history_uint','itemid',42571),(45398,'trends','itemid',42571),(45399,'trends_uint','itemid',42571),(45400,'events','itemid',42572),(45401,'history','itemid',42572),(45402,'history_log','itemid',42572),(45403,'history_str','itemid',42572),(45404,'history_text','itemid',42572),(45405,'history_uint','itemid',42572),(45406,'trends','itemid',42572),(45407,'trends_uint','itemid',42572),(45408,'events','itemid',42573),(45409,'history','itemid',42573),(45410,'history_log','itemid',42573),(45411,'history_str','itemid',42573),(45412,'history_text','itemid',42573),(45413,'history_uint','itemid',42573),(45414,'trends','itemid',42573),(45415,'trends_uint','itemid',42573),(45416,'events','itemid',42574),(45417,'history','itemid',42574),(45418,'history_log','itemid',42574),(45419,'history_str','itemid',42574),(45420,'history_text','itemid',42574),(45421,'history_uint','itemid',42574),(45422,'trends','itemid',42574),(45423,'trends_uint','itemid',42574),(45424,'events','itemid',42575),(45425,'history','itemid',42575),(45426,'history_log','itemid',42575),(45427,'history_str','itemid',42575),(45428,'history_text','itemid',42575),(45429,'history_uint','itemid',42575),(45430,'trends','itemid',42575),(45431,'trends_uint','itemid',42575),(45432,'events','itemid',42576),(45433,'history','itemid',42576),(45434,'history_log','itemid',42576),(45435,'history_str','itemid',42576),(45436,'history_text','itemid',42576),(45437,'history_uint','itemid',42576),(45438,'trends','itemid',42576),(45439,'trends_uint','itemid',42576),(45440,'events','itemid',42577),(45441,'history','itemid',42577),(45442,'history_log','itemid',42577),(45443,'history_str','itemid',42577),(45444,'history_text','itemid',42577),(45445,'history_uint','itemid',42577),(45446,'trends','itemid',42577),(45447,'trends_uint','itemid',42577),(45448,'events','itemid',42578),(45449,'history','itemid',42578),(45450,'history_log','itemid',42578),(45451,'history_str','itemid',42578),(45452,'history_text','itemid',42578),(45453,'history_uint','itemid',42578),(45454,'trends','itemid',42578),(45455,'trends_uint','itemid',42578),(45456,'events','itemid',42579),(45457,'history','itemid',42579),(45458,'history_log','itemid',42579),(45459,'history_str','itemid',42579),(45460,'history_text','itemid',42579),(45461,'history_uint','itemid',42579),(45462,'trends','itemid',42579),(45463,'trends_uint','itemid',42579),(45464,'events','itemid',42664),(45465,'history','itemid',42664),(45466,'history_log','itemid',42664),(45467,'history_str','itemid',42664),(45468,'history_text','itemid',42664),(45469,'history_uint','itemid',42664),(45470,'trends','itemid',42664),(45471,'trends_uint','itemid',42664),(45472,'events','itemid',42665),(45473,'history','itemid',42665),(45474,'history_log','itemid',42665),(45475,'history_str','itemid',42665),(45476,'history_text','itemid',42665),(45477,'history_uint','itemid',42665),(45478,'trends','itemid',42665),(45479,'trends_uint','itemid',42665),(45480,'events','itemid',42666),(45481,'history','itemid',42666),(45482,'history_log','itemid',42666),(45483,'history_str','itemid',42666),(45484,'history_text','itemid',42666),(45485,'history_uint','itemid',42666),(45486,'trends','itemid',42666),(45487,'trends_uint','itemid',42666),(45488,'events','itemid',42667),(45489,'history','itemid',42667),(45490,'history_log','itemid',42667),(45491,'history_str','itemid',42667),(45492,'history_text','itemid',42667),(45493,'history_uint','itemid',42667),(45494,'trends','itemid',42667),(45495,'trends_uint','itemid',42667),(45496,'events','itemid',42668),(45497,'history','itemid',42668),(45498,'history_log','itemid',42668),(45499,'history_str','itemid',42668),(45500,'history_text','itemid',42668),(45501,'history_uint','itemid',42668),(45502,'trends','itemid',42668),(45503,'trends_uint','itemid',42668),(45504,'events','itemid',42669),(45505,'history','itemid',42669),(45506,'history_log','itemid',42669),(45507,'history_str','itemid',42669),(45508,'history_text','itemid',42669),(45509,'history_uint','itemid',42669),(45510,'trends','itemid',42669),(45511,'trends_uint','itemid',42669),(45512,'events','itemid',42670),(45513,'history','itemid',42670),(45514,'history_log','itemid',42670),(45515,'history_str','itemid',42670),(45516,'history_text','itemid',42670),(45517,'history_uint','itemid',42670),(45518,'trends','itemid',42670),(45519,'trends_uint','itemid',42670),(45520,'events','itemid',42671),(45521,'history','itemid',42671),(45522,'history_log','itemid',42671),(45523,'history_str','itemid',42671),(45524,'history_text','itemid',42671),(45525,'history_uint','itemid',42671),(45526,'trends','itemid',42671),(45527,'trends_uint','itemid',42671),(45528,'events','itemid',42672),(45529,'history','itemid',42672),(45530,'history_log','itemid',42672),(45531,'history_str','itemid',42672),(45532,'history_text','itemid',42672),(45533,'history_uint','itemid',42672),(45534,'trends','itemid',42672),(45535,'trends_uint','itemid',42672),(45536,'events','itemid',42673),(45537,'history','itemid',42673),(45538,'history_log','itemid',42673),(45539,'history_str','itemid',42673),(45540,'history_text','itemid',42673),(45541,'history_uint','itemid',42673),(45542,'trends','itemid',42673),(45543,'trends_uint','itemid',42673),(45544,'events','itemid',42674),(45545,'history','itemid',42674),(45546,'history_log','itemid',42674),(45547,'history_str','itemid',42674),(45548,'history_text','itemid',42674),(45549,'history_uint','itemid',42674),(45550,'trends','itemid',42674),(45551,'trends_uint','itemid',42674),(45552,'events','itemid',42676),(45553,'history','itemid',42676),(45554,'history_log','itemid',42676),(45555,'history_str','itemid',42676),(45556,'history_text','itemid',42676),(45557,'history_uint','itemid',42676),(45558,'trends','itemid',42676),(45559,'trends_uint','itemid',42676),(45560,'events','itemid',42677),(45561,'history','itemid',42677),(45562,'history_log','itemid',42677),(45563,'history_str','itemid',42677),(45564,'history_text','itemid',42677),(45565,'history_uint','itemid',42677),(45566,'trends','itemid',42677),(45567,'trends_uint','itemid',42677),(45568,'events','itemid',42738),(45569,'history','itemid',42738),(45570,'history_log','itemid',42738),(45571,'history_str','itemid',42738),(45572,'history_text','itemid',42738),(45573,'history_uint','itemid',42738),(45574,'trends','itemid',42738),(45575,'trends_uint','itemid',42738),(45576,'events','itemid',42739),(45577,'history','itemid',42739),(45578,'history_log','itemid',42739),(45579,'history_str','itemid',42739),(45580,'history_text','itemid',42739),(45581,'history_uint','itemid',42739),(45582,'trends','itemid',42739),(45583,'trends_uint','itemid',42739),(45584,'events','itemid',42740),(45585,'history','itemid',42740),(45586,'history_log','itemid',42740),(45587,'history_str','itemid',42740),(45588,'history_text','itemid',42740),(45589,'history_uint','itemid',42740),(45590,'trends','itemid',42740),(45591,'trends_uint','itemid',42740),(45592,'events','itemid',42792),(45593,'history','itemid',42792),(45594,'history_log','itemid',42792),(45595,'history_str','itemid',42792),(45596,'history_text','itemid',42792),(45597,'history_uint','itemid',42792),(45598,'trends','itemid',42792),(45599,'trends_uint','itemid',42792),(45600,'events','itemid',42793),(45601,'history','itemid',42793),(45602,'history_log','itemid',42793),(45603,'history_str','itemid',42793),(45604,'history_text','itemid',42793),(45605,'history_uint','itemid',42793),(45606,'trends','itemid',42793),(45607,'trends_uint','itemid',42793),(45608,'events','itemid',42794),(45609,'history','itemid',42794),(45610,'history_log','itemid',42794),(45611,'history_str','itemid',42794),(45612,'history_text','itemid',42794),(45613,'history_uint','itemid',42794),(45614,'trends','itemid',42794),(45615,'trends_uint','itemid',42794),(45616,'events','itemid',42795),(45617,'history','itemid',42795),(45618,'history_log','itemid',42795),(45619,'history_str','itemid',42795),(45620,'history_text','itemid',42795),(45621,'history_uint','itemid',42795),(45622,'trends','itemid',42795),(45623,'trends_uint','itemid',42795),(45624,'events','itemid',42796),(45625,'history','itemid',42796),(45626,'history_log','itemid',42796),(45627,'history_str','itemid',42796),(45628,'history_text','itemid',42796),(45629,'history_uint','itemid',42796),(45630,'trends','itemid',42796),(45631,'trends_uint','itemid',42796),(45632,'events','itemid',42797),(45633,'history','itemid',42797),(45634,'history_log','itemid',42797),(45635,'history_str','itemid',42797),(45636,'history_text','itemid',42797),(45637,'history_uint','itemid',42797),(45638,'trends','itemid',42797),(45639,'trends_uint','itemid',42797),(45640,'events','itemid',42798),(45641,'history','itemid',42798),(45642,'history_log','itemid',42798),(45643,'history_str','itemid',42798),(45644,'history_text','itemid',42798),(45645,'history_uint','itemid',42798),(45646,'trends','itemid',42798),(45647,'trends_uint','itemid',42798),(45648,'events','itemid',42799),(45649,'history','itemid',42799),(45650,'history_log','itemid',42799),(45651,'history_str','itemid',42799),(45652,'history_text','itemid',42799),(45653,'history_uint','itemid',42799),(45654,'trends','itemid',42799),(45655,'trends_uint','itemid',42799),(45656,'events','itemid',42800),(45657,'history','itemid',42800),(45658,'history_log','itemid',42800),(45659,'history_str','itemid',42800),(45660,'history_text','itemid',42800),(45661,'history_uint','itemid',42800),(45662,'trends','itemid',42800),(45663,'trends_uint','itemid',42800),(45664,'events','itemid',42801),(45665,'history','itemid',42801),(45666,'history_log','itemid',42801),(45667,'history_str','itemid',42801),(45668,'history_text','itemid',42801),(45669,'history_uint','itemid',42801),(45670,'trends','itemid',42801),(45671,'trends_uint','itemid',42801),(45672,'events','itemid',42802),(45673,'history','itemid',42802),(45674,'history_log','itemid',42802),(45675,'history_str','itemid',42802),(45676,'history_text','itemid',42802),(45677,'history_uint','itemid',42802),(45678,'trends','itemid',42802),(45679,'trends_uint','itemid',42802),(45680,'events','itemid',42803),(45681,'history','itemid',42803),(45682,'history_log','itemid',42803),(45683,'history_str','itemid',42803),(45684,'history_text','itemid',42803),(45685,'history_uint','itemid',42803),(45686,'trends','itemid',42803),(45687,'trends_uint','itemid',42803),(45688,'events','itemid',42804),(45689,'history','itemid',42804),(45690,'history_log','itemid',42804),(45691,'history_str','itemid',42804),(45692,'history_text','itemid',42804),(45693,'history_uint','itemid',42804),(45694,'trends','itemid',42804),(45695,'trends_uint','itemid',42804),(45696,'events','itemid',42805),(45697,'history','itemid',42805),(45698,'history_log','itemid',42805),(45699,'history_str','itemid',42805),(45700,'history_text','itemid',42805),(45701,'history_uint','itemid',42805),(45702,'trends','itemid',42805),(45703,'trends_uint','itemid',42805),(45704,'events','itemid',42806),(45705,'history','itemid',42806),(45706,'history_log','itemid',42806),(45707,'history_str','itemid',42806),(45708,'history_text','itemid',42806),(45709,'history_uint','itemid',42806),(45710,'trends','itemid',42806),(45711,'trends_uint','itemid',42806),(45712,'events','itemid',42807),(45713,'history','itemid',42807),(45714,'history_log','itemid',42807),(45715,'history_str','itemid',42807),(45716,'history_text','itemid',42807),(45717,'history_uint','itemid',42807),(45718,'trends','itemid',42807),(45719,'trends_uint','itemid',42807),(45720,'events','itemid',42808),(45721,'history','itemid',42808),(45722,'history_log','itemid',42808),(45723,'history_str','itemid',42808),(45724,'history_text','itemid',42808),(45725,'history_uint','itemid',42808),(45726,'trends','itemid',42808),(45727,'trends_uint','itemid',42808),(45728,'events','itemid',42809),(45729,'history','itemid',42809),(45730,'history_log','itemid',42809),(45731,'history_str','itemid',42809),(45732,'history_text','itemid',42809),(45733,'history_uint','itemid',42809),(45734,'trends','itemid',42809),(45735,'trends_uint','itemid',42809),(45736,'events','itemid',42810),(45737,'history','itemid',42810),(45738,'history_log','itemid',42810),(45739,'history_str','itemid',42810),(45740,'history_text','itemid',42810),(45741,'history_uint','itemid',42810),(45742,'trends','itemid',42810),(45743,'trends_uint','itemid',42810),(45744,'events','itemid',42811),(45745,'history','itemid',42811),(45746,'history_log','itemid',42811),(45747,'history_str','itemid',42811),(45748,'history_text','itemid',42811),(45749,'history_uint','itemid',42811),(45750,'trends','itemid',42811),(45751,'trends_uint','itemid',42811),(45752,'events','itemid',42812),(45753,'history','itemid',42812),(45754,'history_log','itemid',42812),(45755,'history_str','itemid',42812),(45756,'history_text','itemid',42812),(45757,'history_uint','itemid',42812),(45758,'trends','itemid',42812),(45759,'trends_uint','itemid',42812),(45760,'events','itemid',42813),(45761,'history','itemid',42813),(45762,'history_log','itemid',42813),(45763,'history_str','itemid',42813),(45764,'history_text','itemid',42813),(45765,'history_uint','itemid',42813),(45766,'trends','itemid',42813),(45767,'trends_uint','itemid',42813),(45768,'events','itemid',42814),(45769,'history','itemid',42814),(45770,'history_log','itemid',42814),(45771,'history_str','itemid',42814),(45772,'history_text','itemid',42814),(45773,'history_uint','itemid',42814),(45774,'trends','itemid',42814),(45775,'trends_uint','itemid',42814),(45776,'events','itemid',42815),(45777,'history','itemid',42815),(45778,'history_log','itemid',42815),(45779,'history_str','itemid',42815),(45780,'history_text','itemid',42815),(45781,'history_uint','itemid',42815),(45782,'trends','itemid',42815),(45783,'trends_uint','itemid',42815),(45784,'events','itemid',42816),(45785,'history','itemid',42816),(45786,'history_log','itemid',42816),(45787,'history_str','itemid',42816),(45788,'history_text','itemid',42816),(45789,'history_uint','itemid',42816),(45790,'trends','itemid',42816),(45791,'trends_uint','itemid',42816),(45792,'events','itemid',42817),(45793,'history','itemid',42817),(45794,'history_log','itemid',42817),(45795,'history_str','itemid',42817),(45796,'history_text','itemid',42817),(45797,'history_uint','itemid',42817),(45798,'trends','itemid',42817),(45799,'trends_uint','itemid',42817),(45800,'events','itemid',42818),(45801,'history','itemid',42818),(45802,'history_log','itemid',42818),(45803,'history_str','itemid',42818),(45804,'history_text','itemid',42818),(45805,'history_uint','itemid',42818),(45806,'trends','itemid',42818),(45807,'trends_uint','itemid',42818),(45808,'events','itemid',42819),(45809,'history','itemid',42819),(45810,'history_log','itemid',42819),(45811,'history_str','itemid',42819),(45812,'history_text','itemid',42819),(45813,'history_uint','itemid',42819),(45814,'trends','itemid',42819),(45815,'trends_uint','itemid',42819),(45816,'events','itemid',42820),(45817,'history','itemid',42820),(45818,'history_log','itemid',42820),(45819,'history_str','itemid',42820),(45820,'history_text','itemid',42820),(45821,'history_uint','itemid',42820),(45822,'trends','itemid',42820),(45823,'trends_uint','itemid',42820),(45824,'events','itemid',42821),(45825,'history','itemid',42821),(45826,'history_log','itemid',42821),(45827,'history_str','itemid',42821),(45828,'history_text','itemid',42821),(45829,'history_uint','itemid',42821),(45830,'trends','itemid',42821),(45831,'trends_uint','itemid',42821),(45832,'events','itemid',42822),(45833,'history','itemid',42822),(45834,'history_log','itemid',42822),(45835,'history_str','itemid',42822),(45836,'history_text','itemid',42822),(45837,'history_uint','itemid',42822),(45838,'trends','itemid',42822),(45839,'trends_uint','itemid',42822),(45840,'events','itemid',42823),(45841,'history','itemid',42823),(45842,'history_log','itemid',42823),(45843,'history_str','itemid',42823),(45844,'history_text','itemid',42823),(45845,'history_uint','itemid',42823),(45846,'trends','itemid',42823),(45847,'trends_uint','itemid',42823),(45848,'events','itemid',42824),(45849,'history','itemid',42824),(45850,'history_log','itemid',42824),(45851,'history_str','itemid',42824),(45852,'history_text','itemid',42824),(45853,'history_uint','itemid',42824),(45854,'trends','itemid',42824),(45855,'trends_uint','itemid',42824),(45856,'events','itemid',42825),(45857,'history','itemid',42825),(45858,'history_log','itemid',42825),(45859,'history_str','itemid',42825),(45860,'history_text','itemid',42825),(45861,'history_uint','itemid',42825),(45862,'trends','itemid',42825),(45863,'trends_uint','itemid',42825),(45864,'events','itemid',42826),(45865,'history','itemid',42826),(45866,'history_log','itemid',42826),(45867,'history_str','itemid',42826),(45868,'history_text','itemid',42826),(45869,'history_uint','itemid',42826),(45870,'trends','itemid',42826),(45871,'trends_uint','itemid',42826),(45872,'events','itemid',42827),(45873,'history','itemid',42827),(45874,'history_log','itemid',42827),(45875,'history_str','itemid',42827),(45876,'history_text','itemid',42827),(45877,'history_uint','itemid',42827),(45878,'trends','itemid',42827),(45879,'trends_uint','itemid',42827),(45880,'events','itemid',42828),(45881,'history','itemid',42828),(45882,'history_log','itemid',42828),(45883,'history_str','itemid',42828),(45884,'history_text','itemid',42828),(45885,'history_uint','itemid',42828),(45886,'trends','itemid',42828),(45887,'trends_uint','itemid',42828),(45888,'events','itemid',42829),(45889,'history','itemid',42829),(45890,'history_log','itemid',42829),(45891,'history_str','itemid',42829),(45892,'history_text','itemid',42829),(45893,'history_uint','itemid',42829),(45894,'trends','itemid',42829),(45895,'trends_uint','itemid',42829),(45896,'events','itemid',42830),(45897,'history','itemid',42830),(45898,'history_log','itemid',42830),(45899,'history_str','itemid',42830),(45900,'history_text','itemid',42830),(45901,'history_uint','itemid',42830),(45902,'trends','itemid',42830),(45903,'trends_uint','itemid',42830),(45904,'events','itemid',42831),(45905,'history','itemid',42831),(45906,'history_log','itemid',42831),(45907,'history_str','itemid',42831),(45908,'history_text','itemid',42831),(45909,'history_uint','itemid',42831),(45910,'trends','itemid',42831),(45911,'trends_uint','itemid',42831),(45912,'events','itemid',42832),(45913,'history','itemid',42832),(45914,'history_log','itemid',42832),(45915,'history_str','itemid',42832),(45916,'history_text','itemid',42832),(45917,'history_uint','itemid',42832),(45918,'trends','itemid',42832),(45919,'trends_uint','itemid',42832),(45920,'events','itemid',42833),(45921,'history','itemid',42833),(45922,'history_log','itemid',42833),(45923,'history_str','itemid',42833),(45924,'history_text','itemid',42833),(45925,'history_uint','itemid',42833),(45926,'trends','itemid',42833),(45927,'trends_uint','itemid',42833),(45928,'events','itemid',42877),(45929,'history','itemid',42877),(45930,'history_log','itemid',42877),(45931,'history_str','itemid',42877),(45932,'history_text','itemid',42877),(45933,'history_uint','itemid',42877),(45934,'trends','itemid',42877),(45935,'trends_uint','itemid',42877),(45936,'events','itemid',42880),(45937,'history','itemid',42880),(45938,'history_log','itemid',42880),(45939,'history_str','itemid',42880),(45940,'history_text','itemid',42880),(45941,'history_uint','itemid',42880),(45942,'trends','itemid',42880),(45943,'trends_uint','itemid',42880),(45944,'events','itemid',43080),(45945,'history','itemid',43080),(45946,'history_log','itemid',43080),(45947,'history_str','itemid',43080),(45948,'history_text','itemid',43080),(45949,'history_uint','itemid',43080),(45950,'trends','itemid',43080),(45951,'trends_uint','itemid',43080),(45952,'events','itemid',43857),(45953,'history','itemid',43857),(45954,'history_log','itemid',43857),(45955,'history_str','itemid',43857),(45956,'history_text','itemid',43857),(45957,'history_uint','itemid',43857),(45958,'trends','itemid',43857),(45959,'trends_uint','itemid',43857),(45960,'events','itemid',43858),(45961,'history','itemid',43858),(45962,'history_log','itemid',43858),(45963,'history_str','itemid',43858),(45964,'history_text','itemid',43858),(45965,'history_uint','itemid',43858),(45966,'trends','itemid',43858),(45967,'trends_uint','itemid',43858),(45968,'events','itemid',43859),(45969,'history','itemid',43859),(45970,'history_log','itemid',43859),(45971,'history_str','itemid',43859),(45972,'history_text','itemid',43859),(45973,'history_uint','itemid',43859),(45974,'trends','itemid',43859),(45975,'trends_uint','itemid',43859),(45976,'events','itemid',43875),(45977,'history','itemid',43875),(45978,'history_log','itemid',43875),(45979,'history_str','itemid',43875),(45980,'history_text','itemid',43875),(45981,'history_uint','itemid',43875),(45982,'trends','itemid',43875),(45983,'trends_uint','itemid',43875),(45984,'events','itemid',44051),(45985,'history','itemid',44051),(45986,'history_log','itemid',44051),(45987,'history_str','itemid',44051),(45988,'history_text','itemid',44051),(45989,'history_uint','itemid',44051),(45990,'trends','itemid',44051),(45991,'trends_uint','itemid',44051),(45992,'events','itemid',44081),(45993,'history','itemid',44081),(45994,'history_log','itemid',44081),(45995,'history_str','itemid',44081),(45996,'history_text','itemid',44081),(45997,'history_uint','itemid',44081),(45998,'trends','itemid',44081),(45999,'trends_uint','itemid',44081),(46000,'events','itemid',44359),(46001,'history','itemid',44359),(46002,'history_log','itemid',44359),(46003,'history_str','itemid',44359),(46004,'history_text','itemid',44359),(46005,'history_uint','itemid',44359),(46006,'trends','itemid',44359),(46007,'trends_uint','itemid',44359),(46008,'events','itemid',44377),(46009,'history','itemid',44377),(46010,'history_log','itemid',44377),(46011,'history_str','itemid',44377),(46012,'history_text','itemid',44377),(46013,'history_uint','itemid',44377),(46014,'trends','itemid',44377),(46015,'trends_uint','itemid',44377),(46016,'events','itemid',44379),(46017,'history','itemid',44379),(46018,'history_log','itemid',44379),(46019,'history_str','itemid',44379),(46020,'history_text','itemid',44379),(46021,'history_uint','itemid',44379),(46022,'trends','itemid',44379),(46023,'trends_uint','itemid',44379),(46024,'events','itemid',44450),(46025,'history','itemid',44450),(46026,'history_log','itemid',44450),(46027,'history_str','itemid',44450),(46028,'history_text','itemid',44450),(46029,'history_uint','itemid',44450),(46030,'trends','itemid',44450),(46031,'trends_uint','itemid',44450),(46032,'events','itemid',44453),(46033,'history','itemid',44453),(46034,'history_log','itemid',44453),(46035,'history_str','itemid',44453),(46036,'history_text','itemid',44453),(46037,'history_uint','itemid',44453),(46038,'trends','itemid',44453),(46039,'trends_uint','itemid',44453),(46040,'events','itemid',44455),(46041,'history','itemid',44455),(46042,'history_log','itemid',44455),(46043,'history_str','itemid',44455),(46044,'history_text','itemid',44455),(46045,'history_uint','itemid',44455),(46046,'trends','itemid',44455),(46047,'trends_uint','itemid',44455),(46048,'events','lldruleid',32007),(46049,'events','lldruleid',32998),(46050,'events','lldruleid',32999),(46051,'events','lldruleid',35542),(46052,'events','lldruleid',35543),(46053,'events','lldruleid',35544),(46054,'events','lldruleid',35545),(46055,'events','lldruleid',35574),(46056,'events','lldruleid',35575),(46057,'events','lldruleid',35576),(46058,'events','lldruleid',35577),(46059,'events','lldruleid',35578),(46060,'events','lldruleid',35579),(46061,'events','lldruleid',35618),(46062,'events','lldruleid',35619),(46063,'events','lldruleid',35620),(46064,'events','lldruleid',35621),(46065,'events','lldruleid',35649),(46066,'events','lldruleid',35650),(46067,'events','lldruleid',35651),(46068,'events','lldruleid',35652),(46069,'events','lldruleid',35653),(46070,'events','lldruleid',35654),(46071,'events','lldruleid',35655),(46072,'events','lldruleid',35656),(46073,'events','lldruleid',35657),(46074,'events','lldruleid',35716),(46075,'events','lldruleid',35717),(46076,'events','lldruleid',35718),(46077,'events','lldruleid',35719),(46078,'events','lldruleid',35720),(46079,'events','lldruleid',35721),(46080,'events','lldruleid',35722),(46081,'events','lldruleid',35723),(46082,'events','lldruleid',35724),(46083,'events','lldruleid',35786),(46084,'events','lldruleid',35787),(46085,'events','lldruleid',35788),(46086,'events','lldruleid',35789),(46087,'events','lldruleid',35790),(46088,'events','lldruleid',35820),(46089,'events','lldruleid',35821),(46090,'events','lldruleid',35822),(46091,'events','lldruleid',35858),(46092,'events','lldruleid',35859),(46093,'events','lldruleid',35860),(46094,'events','lldruleid',35861),(46095,'events','lldruleid',35862),(46096,'events','lldruleid',35863),(46097,'events','lldruleid',35902),(46098,'events','lldruleid',35903),(46099,'events','lldruleid',35904),(46100,'events','lldruleid',35905),(46101,'events','lldruleid',35906),(46102,'events','lldruleid',35907),(46103,'events','lldruleid',35946),(46104,'events','lldruleid',35947),(46105,'events','lldruleid',35948),(46106,'events','lldruleid',35949),(46107,'events','lldruleid',35950),(46108,'events','lldruleid',35951),(46109,'events','lldruleid',35990),(46110,'events','lldruleid',35991),(46111,'events','lldruleid',35992),(46112,'events','lldruleid',35993),(46113,'events','lldruleid',35994),(46114,'events','lldruleid',35995),(46115,'events','lldruleid',36035),(46116,'events','lldruleid',36036),(46117,'events','lldruleid',36037),(46118,'events','lldruleid',36038),(46119,'events','lldruleid',36039),(46120,'events','lldruleid',36040),(46121,'events','lldruleid',36080),(46122,'events','lldruleid',36081),(46123,'events','lldruleid',36082),(46124,'events','lldruleid',36083),(46125,'events','lldruleid',36084),(46126,'events','lldruleid',36085),(46127,'events','lldruleid',36124),(46128,'events','lldruleid',36125),(46129,'events','lldruleid',36126),(46130,'events','lldruleid',36127),(46131,'events','lldruleid',36128),(46132,'events','lldruleid',36129),(46133,'events','lldruleid',36130),(46134,'events','lldruleid',39806),(46135,'events','lldruleid',44057),(46136,'events','itemid',10061),(46137,'history','itemid',10061),(46138,'history_log','itemid',10061),(46139,'history_str','itemid',10061),(46140,'history_text','itemid',10061),(46141,'history_uint','itemid',10061),(46142,'trends','itemid',10061),(46143,'trends_uint','itemid',10061),(46144,'events','itemid',10062),(46145,'history','itemid',10062),(46146,'history_log','itemid',10062),(46147,'history_str','itemid',10062),(46148,'history_text','itemid',10062),(46149,'history_uint','itemid',10062),(46150,'trends','itemid',10062),(46151,'trends_uint','itemid',10062),(46152,'events','itemid',10063),(46153,'history','itemid',10063),(46154,'history_log','itemid',10063),(46155,'history_str','itemid',10063),(46156,'history_text','itemid',10063),(46157,'history_uint','itemid',10063),(46158,'trends','itemid',10063),(46159,'trends_uint','itemid',10063),(46160,'events','itemid',10064),(46161,'history','itemid',10064),(46162,'history_log','itemid',10064),(46163,'history_str','itemid',10064),(46164,'history_text','itemid',10064),(46165,'history_uint','itemid',10064),(46166,'trends','itemid',10064),(46167,'trends_uint','itemid',10064),(46168,'events','itemid',10065),(46169,'history','itemid',10065),(46170,'history_log','itemid',10065),(46171,'history_str','itemid',10065),(46172,'history_text','itemid',10065),(46173,'history_uint','itemid',10065),(46174,'trends','itemid',10065),(46175,'trends_uint','itemid',10065),(46176,'events','itemid',10066),(46177,'history','itemid',10066),(46178,'history_log','itemid',10066),(46179,'history_str','itemid',10066),(46180,'history_text','itemid',10066),(46181,'history_uint','itemid',10066),(46182,'trends','itemid',10066),(46183,'trends_uint','itemid',10066),(46184,'events','itemid',10067),(46185,'history','itemid',10067),(46186,'history_log','itemid',10067),(46187,'history_str','itemid',10067),(46188,'history_text','itemid',10067),(46189,'history_uint','itemid',10067),(46190,'trends','itemid',10067),(46191,'trends_uint','itemid',10067),(46192,'events','itemid',10068),(46193,'history','itemid',10068),(46194,'history_log','itemid',10068),(46195,'history_str','itemid',10068),(46196,'history_text','itemid',10068),(46197,'history_uint','itemid',10068),(46198,'trends','itemid',10068),(46199,'trends_uint','itemid',10068),(46200,'events','itemid',10069),(46201,'history','itemid',10069),(46202,'history_log','itemid',10069),(46203,'history_str','itemid',10069),(46204,'history_text','itemid',10069),(46205,'history_uint','itemid',10069),(46206,'trends','itemid',10069),(46207,'trends_uint','itemid',10069),(46208,'events','itemid',10070),(46209,'history','itemid',10070),(46210,'history_log','itemid',10070),(46211,'history_str','itemid',10070),(46212,'history_text','itemid',10070),(46213,'history_uint','itemid',10070),(46214,'trends','itemid',10070),(46215,'trends_uint','itemid',10070),(46216,'events','itemid',10071),(46217,'history','itemid',10071),(46218,'history_log','itemid',10071),(46219,'history_str','itemid',10071),(46220,'history_text','itemid',10071),(46221,'history_uint','itemid',10071),(46222,'trends','itemid',10071),(46223,'trends_uint','itemid',10071),(46224,'events','itemid',10072),(46225,'history','itemid',10072),(46226,'history_log','itemid',10072),(46227,'history_str','itemid',10072),(46228,'history_text','itemid',10072),(46229,'history_uint','itemid',10072),(46230,'trends','itemid',10072),(46231,'trends_uint','itemid',10072),(46232,'events','itemid',22183),(46233,'history','itemid',22183),(46234,'history_log','itemid',22183),(46235,'history_str','itemid',22183),(46236,'history_text','itemid',22183),(46237,'history_uint','itemid',22183),(46238,'trends','itemid',22183),(46239,'trends_uint','itemid',22183),(46240,'events','itemid',22185),(46241,'history','itemid',22185),(46242,'history_log','itemid',22185),(46243,'history_str','itemid',22185),(46244,'history_text','itemid',22185),(46245,'history_uint','itemid',22185),(46246,'trends','itemid',22185),(46247,'trends_uint','itemid',22185),(46248,'events','itemid',22187),(46249,'history','itemid',22187),(46250,'history_log','itemid',22187),(46251,'history_str','itemid',22187),(46252,'history_text','itemid',22187),(46253,'history_uint','itemid',22187),(46254,'trends','itemid',22187),(46255,'trends_uint','itemid',22187),(46256,'events','itemid',22189),(46257,'history','itemid',22189),(46258,'history_log','itemid',22189),(46259,'history_str','itemid',22189),(46260,'history_text','itemid',22189),(46261,'history_uint','itemid',22189),(46262,'trends','itemid',22189),(46263,'trends_uint','itemid',22189),(46264,'events','itemid',22191),(46265,'history','itemid',22191),(46266,'history_log','itemid',22191),(46267,'history_str','itemid',22191),(46268,'history_text','itemid',22191),(46269,'history_uint','itemid',22191),(46270,'trends','itemid',22191),(46271,'trends_uint','itemid',22191),(46272,'events','itemid',22196),(46273,'history','itemid',22196),(46274,'history_log','itemid',22196),(46275,'history_str','itemid',22196),(46276,'history_text','itemid',22196),(46277,'history_uint','itemid',22196),(46278,'trends','itemid',22196),(46279,'trends_uint','itemid',22196),(46280,'events','itemid',22199),(46281,'history','itemid',22199),(46282,'history_log','itemid',22199),(46283,'history_str','itemid',22199),(46284,'history_text','itemid',22199),(46285,'history_uint','itemid',22199),(46286,'trends','itemid',22199),(46287,'trends_uint','itemid',22199),(46288,'events','itemid',22219),(46289,'history','itemid',22219),(46290,'history_log','itemid',22219),(46291,'history_str','itemid',22219),(46292,'history_text','itemid',22219),(46293,'history_uint','itemid',22219),(46294,'trends','itemid',22219),(46295,'trends_uint','itemid',22219),(46296,'events','itemid',22231),(46297,'history','itemid',22231),(46298,'history_log','itemid',22231),(46299,'history_str','itemid',22231),(46300,'history_text','itemid',22231),(46301,'history_uint','itemid',22231),(46302,'trends','itemid',22231),(46303,'trends_uint','itemid',22231),(46304,'events','itemid',22232),(46305,'history','itemid',22232),(46306,'history_log','itemid',22232),(46307,'history_str','itemid',22232),(46308,'history_text','itemid',22232),(46309,'history_uint','itemid',22232),(46310,'trends','itemid',22232),(46311,'trends_uint','itemid',22232),(46312,'events','itemid',22396),(46313,'history','itemid',22396),(46314,'history_log','itemid',22396),(46315,'history_str','itemid',22396),(46316,'history_text','itemid',22396),(46317,'history_uint','itemid',22396),(46318,'trends','itemid',22396),(46319,'trends_uint','itemid',22396),(46320,'events','itemid',22399),(46321,'history','itemid',22399),(46322,'history_log','itemid',22399),(46323,'history_str','itemid',22399),(46324,'history_text','itemid',22399),(46325,'history_uint','itemid',22399),(46326,'trends','itemid',22399),(46327,'trends_uint','itemid',22399),(46328,'events','itemid',22400),(46329,'history','itemid',22400),(46330,'history_log','itemid',22400),(46331,'history_str','itemid',22400),(46332,'history_text','itemid',22400),(46333,'history_uint','itemid',22400),(46334,'trends','itemid',22400),(46335,'trends_uint','itemid',22400),(46336,'events','itemid',22401),(46337,'history','itemid',22401),(46338,'history_log','itemid',22401),(46339,'history_str','itemid',22401),(46340,'history_text','itemid',22401),(46341,'history_uint','itemid',22401),(46342,'trends','itemid',22401),(46343,'trends_uint','itemid',22401),(46344,'events','itemid',22402),(46345,'history','itemid',22402),(46346,'history_log','itemid',22402),(46347,'history_str','itemid',22402),(46348,'history_text','itemid',22402),(46349,'history_uint','itemid',22402),(46350,'trends','itemid',22402),(46351,'trends_uint','itemid',22402),(46352,'events','itemid',22404),(46353,'history','itemid',22404),(46354,'history_log','itemid',22404),(46355,'history_str','itemid',22404),(46356,'history_text','itemid',22404),(46357,'history_uint','itemid',22404),(46358,'trends','itemid',22404),(46359,'trends_uint','itemid',22404),(46360,'events','itemid',22406),(46361,'history','itemid',22406),(46362,'history_log','itemid',22406),(46363,'history_str','itemid',22406),(46364,'history_text','itemid',22406),(46365,'history_uint','itemid',22406),(46366,'trends','itemid',22406),(46367,'trends_uint','itemid',22406),(46368,'events','itemid',22408),(46369,'history','itemid',22408),(46370,'history_log','itemid',22408),(46371,'history_str','itemid',22408),(46372,'history_text','itemid',22408),(46373,'history_uint','itemid',22408),(46374,'trends','itemid',22408),(46375,'trends_uint','itemid',22408),(46376,'events','itemid',22412),(46377,'history','itemid',22412),(46378,'history_log','itemid',22412),(46379,'history_str','itemid',22412),(46380,'history_text','itemid',22412),(46381,'history_uint','itemid',22412),(46382,'trends','itemid',22412),(46383,'trends_uint','itemid',22412),(46384,'events','itemid',22414),(46385,'history','itemid',22414),(46386,'history_log','itemid',22414),(46387,'history_str','itemid',22414),(46388,'history_text','itemid',22414),(46389,'history_uint','itemid',22414),(46390,'trends','itemid',22414),(46391,'trends_uint','itemid',22414),(46392,'events','itemid',22416),(46393,'history','itemid',22416),(46394,'history_log','itemid',22416),(46395,'history_str','itemid',22416),(46396,'history_text','itemid',22416),(46397,'history_uint','itemid',22416),(46398,'trends','itemid',22416),(46399,'trends_uint','itemid',22416),(46400,'events','itemid',22418),(46401,'history','itemid',22418),(46402,'history_log','itemid',22418),(46403,'history_str','itemid',22418),(46404,'history_text','itemid',22418),(46405,'history_uint','itemid',22418),(46406,'trends','itemid',22418),(46407,'trends_uint','itemid',22418),(46408,'events','itemid',22420),(46409,'history','itemid',22420),(46410,'history_log','itemid',22420),(46411,'history_str','itemid',22420),(46412,'history_text','itemid',22420),(46413,'history_uint','itemid',22420),(46414,'trends','itemid',22420),(46415,'trends_uint','itemid',22420),(46416,'events','itemid',22422),(46417,'history','itemid',22422),(46418,'history_log','itemid',22422),(46419,'history_str','itemid',22422),(46420,'history_text','itemid',22422),(46421,'history_uint','itemid',22422),(46422,'trends','itemid',22422),(46423,'trends_uint','itemid',22422),(46424,'events','itemid',22424),(46425,'history','itemid',22424),(46426,'history_log','itemid',22424),(46427,'history_str','itemid',22424),(46428,'history_text','itemid',22424),(46429,'history_uint','itemid',22424),(46430,'trends','itemid',22424),(46431,'trends_uint','itemid',22424),(46432,'events','itemid',22426),(46433,'history','itemid',22426),(46434,'history_log','itemid',22426),(46435,'history_str','itemid',22426),(46436,'history_text','itemid',22426),(46437,'history_uint','itemid',22426),(46438,'trends','itemid',22426),(46439,'trends_uint','itemid',22426),(46440,'events','itemid',22430),(46441,'history','itemid',22430),(46442,'history_log','itemid',22430),(46443,'history_str','itemid',22430),(46444,'history_text','itemid',22430),(46445,'history_uint','itemid',22430),(46446,'trends','itemid',22430),(46447,'trends_uint','itemid',22430),(46448,'events','itemid',22689),(46449,'history','itemid',22689),(46450,'history_log','itemid',22689),(46451,'history_str','itemid',22689),(46452,'history_text','itemid',22689),(46453,'history_uint','itemid',22689),(46454,'trends','itemid',22689),(46455,'trends_uint','itemid',22689),(46456,'events','itemid',23171),(46457,'history','itemid',23171),(46458,'history_log','itemid',23171),(46459,'history_str','itemid',23171),(46460,'history_text','itemid',23171),(46461,'history_uint','itemid',23171),(46462,'trends','itemid',23171),(46463,'trends_uint','itemid',23171),(46464,'events','itemid',23251),(46465,'history','itemid',23251),(46466,'history_log','itemid',23251),(46467,'history_str','itemid',23251),(46468,'history_text','itemid',23251),(46469,'history_uint','itemid',23251),(46470,'trends','itemid',23251),(46471,'trends_uint','itemid',23251),(46472,'events','itemid',23318),(46473,'history','itemid',23318),(46474,'history_log','itemid',23318),(46475,'history_str','itemid',23318),(46476,'history_text','itemid',23318),(46477,'history_uint','itemid',23318),(46478,'trends','itemid',23318),(46479,'trends_uint','itemid',23318),(46480,'events','itemid',23340),(46481,'history','itemid',23340),(46482,'history_log','itemid',23340),(46483,'history_str','itemid',23340),(46484,'history_text','itemid',23340),(46485,'history_uint','itemid',23340),(46486,'trends','itemid',23340),(46487,'trends_uint','itemid',23340),(46488,'events','itemid',23341),(46489,'history','itemid',23341),(46490,'history_log','itemid',23341),(46491,'history_str','itemid',23341),(46492,'history_text','itemid',23341),(46493,'history_uint','itemid',23341),(46494,'trends','itemid',23341),(46495,'trends_uint','itemid',23341),(46496,'events','itemid',23342),(46497,'history','itemid',23342),(46498,'history_log','itemid',23342),(46499,'history_str','itemid',23342),(46500,'history_text','itemid',23342),(46501,'history_uint','itemid',23342),(46502,'trends','itemid',23342),(46503,'trends_uint','itemid',23342),(46504,'events','itemid',23343),(46505,'history','itemid',23343),(46506,'history_log','itemid',23343),(46507,'history_str','itemid',23343),(46508,'history_text','itemid',23343),(46509,'history_uint','itemid',23343),(46510,'trends','itemid',23343),(46511,'trends_uint','itemid',23343),(46512,'events','itemid',23344),(46513,'history','itemid',23344),(46514,'history_log','itemid',23344),(46515,'history_str','itemid',23344),(46516,'history_text','itemid',23344),(46517,'history_uint','itemid',23344),(46518,'trends','itemid',23344),(46519,'trends_uint','itemid',23344),(46520,'events','itemid',23345),(46521,'history','itemid',23345),(46522,'history_log','itemid',23345),(46523,'history_str','itemid',23345),(46524,'history_text','itemid',23345),(46525,'history_uint','itemid',23345),(46526,'trends','itemid',23345),(46527,'trends_uint','itemid',23345),(46528,'events','itemid',23346),(46529,'history','itemid',23346),(46530,'history_log','itemid',23346),(46531,'history_str','itemid',23346),(46532,'history_text','itemid',23346),(46533,'history_uint','itemid',23346),(46534,'trends','itemid',23346),(46535,'trends_uint','itemid',23346),(46536,'events','itemid',23347),(46537,'history','itemid',23347),(46538,'history_log','itemid',23347),(46539,'history_str','itemid',23347),(46540,'history_text','itemid',23347),(46541,'history_uint','itemid',23347),(46542,'trends','itemid',23347),(46543,'trends_uint','itemid',23347),(46544,'events','itemid',23348),(46545,'history','itemid',23348),(46546,'history_log','itemid',23348),(46547,'history_str','itemid',23348),(46548,'history_text','itemid',23348),(46549,'history_uint','itemid',23348),(46550,'trends','itemid',23348),(46551,'trends_uint','itemid',23348),(46552,'events','itemid',23349),(46553,'history','itemid',23349),(46554,'history_log','itemid',23349),(46555,'history_str','itemid',23349),(46556,'history_text','itemid',23349),(46557,'history_uint','itemid',23349),(46558,'trends','itemid',23349),(46559,'trends_uint','itemid',23349),(46560,'events','itemid',23350),(46561,'history','itemid',23350),(46562,'history_log','itemid',23350),(46563,'history_str','itemid',23350),(46564,'history_text','itemid',23350),(46565,'history_uint','itemid',23350),(46566,'trends','itemid',23350),(46567,'trends_uint','itemid',23350),(46568,'events','itemid',23352),(46569,'history','itemid',23352),(46570,'history_log','itemid',23352),(46571,'history_str','itemid',23352),(46572,'history_text','itemid',23352),(46573,'history_uint','itemid',23352),(46574,'trends','itemid',23352),(46575,'trends_uint','itemid',23352),(46576,'events','itemid',23353),(46577,'history','itemid',23353),(46578,'history_log','itemid',23353),(46579,'history_str','itemid',23353),(46580,'history_text','itemid',23353),(46581,'history_uint','itemid',23353),(46582,'trends','itemid',23353),(46583,'trends_uint','itemid',23353),(46584,'events','itemid',23354),(46585,'history','itemid',23354),(46586,'history_log','itemid',23354),(46587,'history_str','itemid',23354),(46588,'history_text','itemid',23354),(46589,'history_uint','itemid',23354),(46590,'trends','itemid',23354),(46591,'trends_uint','itemid',23354),(46592,'events','itemid',23355),(46593,'history','itemid',23355),(46594,'history_log','itemid',23355),(46595,'history_str','itemid',23355),(46596,'history_text','itemid',23355),(46597,'history_uint','itemid',23355),(46598,'trends','itemid',23355),(46599,'trends_uint','itemid',23355),(46600,'events','itemid',23356),(46601,'history','itemid',23356),(46602,'history_log','itemid',23356),(46603,'history_str','itemid',23356),(46604,'history_text','itemid',23356),(46605,'history_uint','itemid',23356),(46606,'trends','itemid',23356),(46607,'trends_uint','itemid',23356),(46608,'events','itemid',23357),(46609,'history','itemid',23357),(46610,'history_log','itemid',23357),(46611,'history_str','itemid',23357),(46612,'history_text','itemid',23357),(46613,'history_uint','itemid',23357),(46614,'trends','itemid',23357),(46615,'trends_uint','itemid',23357),(46616,'events','itemid',23358),(46617,'history','itemid',23358),(46618,'history_log','itemid',23358),(46619,'history_str','itemid',23358),(46620,'history_text','itemid',23358),(46621,'history_uint','itemid',23358),(46622,'trends','itemid',23358),(46623,'trends_uint','itemid',23358),(46624,'events','itemid',23359),(46625,'history','itemid',23359),(46626,'history_log','itemid',23359),(46627,'history_str','itemid',23359),(46628,'history_text','itemid',23359),(46629,'history_uint','itemid',23359),(46630,'trends','itemid',23359),(46631,'trends_uint','itemid',23359),(46632,'events','itemid',23360),(46633,'history','itemid',23360),(46634,'history_log','itemid',23360),(46635,'history_str','itemid',23360),(46636,'history_text','itemid',23360),(46637,'history_uint','itemid',23360),(46638,'trends','itemid',23360),(46639,'trends_uint','itemid',23360),(46640,'events','itemid',23634),(46641,'history','itemid',23634),(46642,'history_log','itemid',23634),(46643,'history_str','itemid',23634),(46644,'history_text','itemid',23634),(46645,'history_uint','itemid',23634),(46646,'trends','itemid',23634),(46647,'trends_uint','itemid',23634),(46648,'events','itemid',23661),(46649,'history','itemid',23661),(46650,'history_log','itemid',23661),(46651,'history_str','itemid',23661),(46652,'history_text','itemid',23661),(46653,'history_uint','itemid',23661),(46654,'trends','itemid',23661),(46655,'trends_uint','itemid',23661),(46656,'events','itemid',23663),(46657,'history','itemid',23663),(46658,'history_log','itemid',23663),(46659,'history_str','itemid',23663),(46660,'history_text','itemid',23663),(46661,'history_uint','itemid',23663),(46662,'trends','itemid',23663),(46663,'trends_uint','itemid',23663),(46664,'events','itemid',25366),(46665,'history','itemid',25366),(46666,'history_log','itemid',25366),(46667,'history_str','itemid',25366),(46668,'history_text','itemid',25366),(46669,'history_uint','itemid',25366),(46670,'trends','itemid',25366),(46671,'trends_uint','itemid',25366),(46672,'events','itemid',25368),(46673,'history','itemid',25368),(46674,'history_log','itemid',25368),(46675,'history_str','itemid',25368),(46676,'history_text','itemid',25368),(46677,'history_uint','itemid',25368),(46678,'trends','itemid',25368),(46679,'trends_uint','itemid',25368),(46680,'events','itemid',25369),(46681,'history','itemid',25369),(46682,'history_log','itemid',25369),(46683,'history_str','itemid',25369),(46684,'history_text','itemid',25369),(46685,'history_uint','itemid',25369),(46686,'trends','itemid',25369),(46687,'trends_uint','itemid',25369),(46688,'events','itemid',25370),(46689,'history','itemid',25370),(46690,'history_log','itemid',25370),(46691,'history_str','itemid',25370),(46692,'history_text','itemid',25370),(46693,'history_uint','itemid',25370),(46694,'trends','itemid',25370),(46695,'trends_uint','itemid',25370),(46696,'events','itemid',25665),(46697,'history','itemid',25665),(46698,'history_log','itemid',25665),(46699,'history_str','itemid',25665),(46700,'history_text','itemid',25665),(46701,'history_uint','itemid',25665),(46702,'trends','itemid',25665),(46703,'trends_uint','itemid',25665),(46704,'events','itemid',25666),(46705,'history','itemid',25666),(46706,'history_log','itemid',25666),(46707,'history_str','itemid',25666),(46708,'history_text','itemid',25666),(46709,'history_uint','itemid',25666),(46710,'trends','itemid',25666),(46711,'trends_uint','itemid',25666),(46712,'events','itemid',28248),(46713,'history','itemid',28248),(46714,'history_log','itemid',28248),(46715,'history_str','itemid',28248),(46716,'history_text','itemid',28248),(46717,'history_uint','itemid',28248),(46718,'trends','itemid',28248),(46719,'trends_uint','itemid',28248),(46720,'events','itemid',28250),(46721,'history','itemid',28250),(46722,'history_log','itemid',28250),(46723,'history_str','itemid',28250),(46724,'history_text','itemid',28250),(46725,'history_uint','itemid',28250),(46726,'trends','itemid',28250),(46727,'trends_uint','itemid',28250),(46728,'events','itemid',28251),(46729,'history','itemid',28251),(46730,'history_log','itemid',28251),(46731,'history_str','itemid',28251),(46732,'history_text','itemid',28251),(46733,'history_uint','itemid',28251),(46734,'trends','itemid',28251),(46735,'trends_uint','itemid',28251),(46736,'events','itemid',28533),(46737,'history','itemid',28533),(46738,'history_log','itemid',28533),(46739,'history_str','itemid',28533),(46740,'history_text','itemid',28533),(46741,'history_uint','itemid',28533),(46742,'trends','itemid',28533),(46743,'trends_uint','itemid',28533),(46744,'events','itemid',28535),(46745,'history','itemid',28535),(46746,'history_log','itemid',28535),(46747,'history_str','itemid',28535),(46748,'history_text','itemid',28535),(46749,'history_uint','itemid',28535),(46750,'trends','itemid',28535),(46751,'trends_uint','itemid',28535),(46752,'events','itemid',28537),(46753,'history','itemid',28537),(46754,'history_log','itemid',28537),(46755,'history_str','itemid',28537),(46756,'history_text','itemid',28537),(46757,'history_uint','itemid',28537),(46758,'trends','itemid',28537),(46759,'trends_uint','itemid',28537),(46760,'events','itemid',28617),(46761,'history','itemid',28617),(46762,'history_log','itemid',28617),(46763,'history_str','itemid',28617),(46764,'history_text','itemid',28617),(46765,'history_uint','itemid',28617),(46766,'trends','itemid',28617),(46767,'trends_uint','itemid',28617),(46768,'events','itemid',28618),(46769,'history','itemid',28618),(46770,'history_log','itemid',28618),(46771,'history_str','itemid',28618),(46772,'history_text','itemid',28618),(46773,'history_uint','itemid',28618),(46774,'trends','itemid',28618),(46775,'trends_uint','itemid',28618),(46776,'events','itemid',28619),(46777,'history','itemid',28619),(46778,'history_log','itemid',28619),(46779,'history_str','itemid',28619),(46780,'history_text','itemid',28619),(46781,'history_uint','itemid',28619),(46782,'trends','itemid',28619),(46783,'trends_uint','itemid',28619),(46784,'events','itemid',29544),(46785,'history','itemid',29544),(46786,'history_log','itemid',29544),(46787,'history_str','itemid',29544),(46788,'history_text','itemid',29544),(46789,'history_uint','itemid',29544),(46790,'trends','itemid',29544),(46791,'trends_uint','itemid',29544),(46792,'events','itemid',29545),(46793,'history','itemid',29545),(46794,'history_log','itemid',29545),(46795,'history_str','itemid',29545),(46796,'history_text','itemid',29545),(46797,'history_uint','itemid',29545),(46798,'trends','itemid',29545),(46799,'trends_uint','itemid',29545),(46800,'events','itemid',29546),(46801,'history','itemid',29546),(46802,'history_log','itemid',29546),(46803,'history_str','itemid',29546),(46804,'history_text','itemid',29546),(46805,'history_uint','itemid',29546),(46806,'trends','itemid',29546),(46807,'trends_uint','itemid',29546),(46808,'events','itemid',29547),(46809,'history','itemid',29547),(46810,'history_log','itemid',29547),(46811,'history_str','itemid',29547),(46812,'history_text','itemid',29547),(46813,'history_uint','itemid',29547),(46814,'trends','itemid',29547),(46815,'trends_uint','itemid',29547),(46816,'events','itemid',29822),(46817,'history','itemid',29822),(46818,'history_log','itemid',29822),(46819,'history_str','itemid',29822),(46820,'history_text','itemid',29822),(46821,'history_uint','itemid',29822),(46822,'trends','itemid',29822),(46823,'trends_uint','itemid',29822),(46824,'events','itemid',32963),(46825,'history','itemid',32963),(46826,'history_log','itemid',32963),(46827,'history_str','itemid',32963),(46828,'history_text','itemid',32963),(46829,'history_uint','itemid',32963),(46830,'trends','itemid',32963),(46831,'trends_uint','itemid',32963),(46832,'events','itemid',32964),(46833,'history','itemid',32964),(46834,'history_log','itemid',32964),(46835,'history_str','itemid',32964),(46836,'history_text','itemid',32964),(46837,'history_uint','itemid',32964),(46838,'trends','itemid',32964),(46839,'trends_uint','itemid',32964),(46840,'events','itemid',32965),(46841,'history','itemid',32965),(46842,'history_log','itemid',32965),(46843,'history_str','itemid',32965),(46844,'history_text','itemid',32965),(46845,'history_uint','itemid',32965),(46846,'trends','itemid',32965),(46847,'trends_uint','itemid',32965),(46848,'events','itemid',32966),(46849,'history','itemid',32966),(46850,'history_log','itemid',32966),(46851,'history_str','itemid',32966),(46852,'history_text','itemid',32966),(46853,'history_uint','itemid',32966),(46854,'trends','itemid',32966),(46855,'trends_uint','itemid',32966),(46856,'events','itemid',32967),(46857,'history','itemid',32967),(46858,'history_log','itemid',32967),(46859,'history_str','itemid',32967),(46860,'history_text','itemid',32967),(46861,'history_uint','itemid',32967),(46862,'trends','itemid',32967),(46863,'trends_uint','itemid',32967),(46864,'events','itemid',32968),(46865,'history','itemid',32968),(46866,'history_log','itemid',32968),(46867,'history_str','itemid',32968),(46868,'history_text','itemid',32968),(46869,'history_uint','itemid',32968),(46870,'trends','itemid',32968),(46871,'trends_uint','itemid',32968),(46872,'events','itemid',32969),(46873,'history','itemid',32969),(46874,'history_log','itemid',32969),(46875,'history_str','itemid',32969),(46876,'history_text','itemid',32969),(46877,'history_uint','itemid',32969),(46878,'trends','itemid',32969),(46879,'trends_uint','itemid',32969),(46880,'events','itemid',32970),(46881,'history','itemid',32970),(46882,'history_log','itemid',32970),(46883,'history_str','itemid',32970),(46884,'history_text','itemid',32970),(46885,'history_uint','itemid',32970),(46886,'trends','itemid',32970),(46887,'trends_uint','itemid',32970),(46888,'events','itemid',32971),(46889,'history','itemid',32971),(46890,'history_log','itemid',32971),(46891,'history_str','itemid',32971),(46892,'history_text','itemid',32971),(46893,'history_uint','itemid',32971),(46894,'trends','itemid',32971),(46895,'trends_uint','itemid',32971),(46896,'events','itemid',32972),(46897,'history','itemid',32972),(46898,'history_log','itemid',32972),(46899,'history_str','itemid',32972),(46900,'history_text','itemid',32972),(46901,'history_uint','itemid',32972),(46902,'trends','itemid',32972),(46903,'trends_uint','itemid',32972),(46904,'events','itemid',32973),(46905,'history','itemid',32973),(46906,'history_log','itemid',32973),(46907,'history_str','itemid',32973),(46908,'history_text','itemid',32973),(46909,'history_uint','itemid',32973),(46910,'trends','itemid',32973),(46911,'trends_uint','itemid',32973),(46912,'events','itemid',32974),(46913,'history','itemid',32974),(46914,'history_log','itemid',32974),(46915,'history_str','itemid',32974),(46916,'history_text','itemid',32974),(46917,'history_uint','itemid',32974),(46918,'trends','itemid',32974),(46919,'trends_uint','itemid',32974),(46920,'events','itemid',32975),(46921,'history','itemid',32975),(46922,'history_log','itemid',32975),(46923,'history_str','itemid',32975),(46924,'history_text','itemid',32975),(46925,'history_uint','itemid',32975),(46926,'trends','itemid',32975),(46927,'trends_uint','itemid',32975),(46928,'events','itemid',32976),(46929,'history','itemid',32976),(46930,'history_log','itemid',32976),(46931,'history_str','itemid',32976),(46932,'history_text','itemid',32976),(46933,'history_uint','itemid',32976),(46934,'trends','itemid',32976),(46935,'trends_uint','itemid',32976),(46936,'events','itemid',32977),(46937,'history','itemid',32977),(46938,'history_log','itemid',32977),(46939,'history_str','itemid',32977),(46940,'history_text','itemid',32977),(46941,'history_uint','itemid',32977),(46942,'trends','itemid',32977),(46943,'trends_uint','itemid',32977),(46944,'events','itemid',32978),(46945,'history','itemid',32978),(46946,'history_log','itemid',32978),(46947,'history_str','itemid',32978),(46948,'history_text','itemid',32978),(46949,'history_uint','itemid',32978),(46950,'trends','itemid',32978),(46951,'trends_uint','itemid',32978),(46952,'events','itemid',32979),(46953,'history','itemid',32979),(46954,'history_log','itemid',32979),(46955,'history_str','itemid',32979),(46956,'history_text','itemid',32979),(46957,'history_uint','itemid',32979),(46958,'trends','itemid',32979),(46959,'trends_uint','itemid',32979),(46960,'events','itemid',32980),(46961,'history','itemid',32980),(46962,'history_log','itemid',32980),(46963,'history_str','itemid',32980),(46964,'history_text','itemid',32980),(46965,'history_uint','itemid',32980),(46966,'trends','itemid',32980),(46967,'trends_uint','itemid',32980),(46968,'events','itemid',32981),(46969,'history','itemid',32981),(46970,'history_log','itemid',32981),(46971,'history_str','itemid',32981),(46972,'history_text','itemid',32981),(46973,'history_uint','itemid',32981),(46974,'trends','itemid',32981),(46975,'trends_uint','itemid',32981),(46976,'events','itemid',32982),(46977,'history','itemid',32982),(46978,'history_log','itemid',32982),(46979,'history_str','itemid',32982),(46980,'history_text','itemid',32982),(46981,'history_uint','itemid',32982),(46982,'trends','itemid',32982),(46983,'trends_uint','itemid',32982),(46984,'events','itemid',32983),(46985,'history','itemid',32983),(46986,'history_log','itemid',32983),(46987,'history_str','itemid',32983),(46988,'history_text','itemid',32983),(46989,'history_uint','itemid',32983),(46990,'trends','itemid',32983),(46991,'trends_uint','itemid',32983),(46992,'events','itemid',32984),(46993,'history','itemid',32984),(46994,'history_log','itemid',32984),(46995,'history_str','itemid',32984),(46996,'history_text','itemid',32984),(46997,'history_uint','itemid',32984),(46998,'trends','itemid',32984),(46999,'trends_uint','itemid',32984),(47000,'events','itemid',32985),(47001,'history','itemid',32985),(47002,'history_log','itemid',32985),(47003,'history_str','itemid',32985),(47004,'history_text','itemid',32985),(47005,'history_uint','itemid',32985),(47006,'trends','itemid',32985),(47007,'trends_uint','itemid',32985),(47008,'events','itemid',32986),(47009,'history','itemid',32986),(47010,'history_log','itemid',32986),(47011,'history_str','itemid',32986),(47012,'history_text','itemid',32986),(47013,'history_uint','itemid',32986),(47014,'trends','itemid',32986),(47015,'trends_uint','itemid',32986),(47016,'events','itemid',32987),(47017,'history','itemid',32987),(47018,'history_log','itemid',32987),(47019,'history_str','itemid',32987),(47020,'history_text','itemid',32987),(47021,'history_uint','itemid',32987),(47022,'trends','itemid',32987),(47023,'trends_uint','itemid',32987),(47024,'events','itemid',32988),(47025,'history','itemid',32988),(47026,'history_log','itemid',32988),(47027,'history_str','itemid',32988),(47028,'history_text','itemid',32988),(47029,'history_uint','itemid',32988),(47030,'trends','itemid',32988),(47031,'trends_uint','itemid',32988),(47032,'events','itemid',32989),(47033,'history','itemid',32989),(47034,'history_log','itemid',32989),(47035,'history_str','itemid',32989),(47036,'history_text','itemid',32989),(47037,'history_uint','itemid',32989),(47038,'trends','itemid',32989),(47039,'trends_uint','itemid',32989),(47040,'events','itemid',32990),(47041,'history','itemid',32990),(47042,'history_log','itemid',32990),(47043,'history_str','itemid',32990),(47044,'history_text','itemid',32990),(47045,'history_uint','itemid',32990),(47046,'trends','itemid',32990),(47047,'trends_uint','itemid',32990),(47048,'events','itemid',32991),(47049,'history','itemid',32991),(47050,'history_log','itemid',32991),(47051,'history_str','itemid',32991),(47052,'history_text','itemid',32991),(47053,'history_uint','itemid',32991),(47054,'trends','itemid',32991),(47055,'trends_uint','itemid',32991),(47056,'events','itemid',32992),(47057,'history','itemid',32992),(47058,'history_log','itemid',32992),(47059,'history_str','itemid',32992),(47060,'history_text','itemid',32992),(47061,'history_uint','itemid',32992),(47062,'trends','itemid',32992),(47063,'trends_uint','itemid',32992),(47064,'events','itemid',32993),(47065,'history','itemid',32993),(47066,'history_log','itemid',32993),(47067,'history_str','itemid',32993),(47068,'history_text','itemid',32993),(47069,'history_uint','itemid',32993),(47070,'trends','itemid',32993),(47071,'trends_uint','itemid',32993),(47072,'events','itemid',32994),(47073,'history','itemid',32994),(47074,'history_log','itemid',32994),(47075,'history_str','itemid',32994),(47076,'history_text','itemid',32994),(47077,'history_uint','itemid',32994),(47078,'trends','itemid',32994),(47079,'trends_uint','itemid',32994),(47080,'events','itemid',32995),(47081,'history','itemid',32995),(47082,'history_log','itemid',32995),(47083,'history_str','itemid',32995),(47084,'history_text','itemid',32995),(47085,'history_uint','itemid',32995),(47086,'trends','itemid',32995),(47087,'trends_uint','itemid',32995),(47088,'events','itemid',32996),(47089,'history','itemid',32996),(47090,'history_log','itemid',32996),(47091,'history_str','itemid',32996),(47092,'history_text','itemid',32996),(47093,'history_uint','itemid',32996),(47094,'trends','itemid',32996),(47095,'trends_uint','itemid',32996),(47096,'events','itemid',32997),(47097,'history','itemid',32997),(47098,'history_log','itemid',32997),(47099,'history_str','itemid',32997),(47100,'history_text','itemid',32997),(47101,'history_uint','itemid',32997),(47102,'trends','itemid',32997),(47103,'trends_uint','itemid',32997),(47104,'events','itemid',33018),(47105,'history','itemid',33018),(47106,'history_log','itemid',33018),(47107,'history_str','itemid',33018),(47108,'history_text','itemid',33018),(47109,'history_uint','itemid',33018),(47110,'trends','itemid',33018),(47111,'trends_uint','itemid',33018),(47112,'events','itemid',33019),(47113,'history','itemid',33019),(47114,'history_log','itemid',33019),(47115,'history_str','itemid',33019),(47116,'history_text','itemid',33019),(47117,'history_uint','itemid',33019),(47118,'trends','itemid',33019),(47119,'trends_uint','itemid',33019),(47120,'events','itemid',33020),(47121,'history','itemid',33020),(47122,'history_log','itemid',33020),(47123,'history_str','itemid',33020),(47124,'history_text','itemid',33020),(47125,'history_uint','itemid',33020),(47126,'trends','itemid',33020),(47127,'trends_uint','itemid',33020),(47128,'events','itemid',33021),(47129,'history','itemid',33021),(47130,'history_log','itemid',33021),(47131,'history_str','itemid',33021),(47132,'history_text','itemid',33021),(47133,'history_uint','itemid',33021),(47134,'trends','itemid',33021),(47135,'trends_uint','itemid',33021),(47136,'events','itemid',33022),(47137,'history','itemid',33022),(47138,'history_log','itemid',33022),(47139,'history_str','itemid',33022),(47140,'history_text','itemid',33022),(47141,'history_uint','itemid',33022),(47142,'trends','itemid',33022),(47143,'trends_uint','itemid',33022),(47144,'events','itemid',33023),(47145,'history','itemid',33023),(47146,'history_log','itemid',33023),(47147,'history_str','itemid',33023),(47148,'history_text','itemid',33023),(47149,'history_uint','itemid',33023),(47150,'trends','itemid',33023),(47151,'trends_uint','itemid',33023),(47152,'events','itemid',34316),(47153,'history','itemid',34316),(47154,'history_log','itemid',34316),(47155,'history_str','itemid',34316),(47156,'history_text','itemid',34316),(47157,'history_uint','itemid',34316),(47158,'trends','itemid',34316),(47159,'trends_uint','itemid',34316),(47160,'events','itemid',34317),(47161,'history','itemid',34317),(47162,'history_log','itemid',34317),(47163,'history_str','itemid',34317),(47164,'history_text','itemid',34317),(47165,'history_uint','itemid',34317),(47166,'trends','itemid',34317),(47167,'trends_uint','itemid',34317),(47168,'events','itemid',35272),(47169,'history','itemid',35272),(47170,'history_log','itemid',35272),(47171,'history_str','itemid',35272),(47172,'history_text','itemid',35272),(47173,'history_uint','itemid',35272),(47174,'trends','itemid',35272),(47175,'trends_uint','itemid',35272),(47176,'events','itemid',35273),(47177,'history','itemid',35273),(47178,'history_log','itemid',35273),(47179,'history_str','itemid',35273),(47180,'history_text','itemid',35273),(47181,'history_uint','itemid',35273),(47182,'trends','itemid',35273),(47183,'trends_uint','itemid',35273),(47184,'events','itemid',35274),(47185,'history','itemid',35274),(47186,'history_log','itemid',35274),(47187,'history_str','itemid',35274),(47188,'history_text','itemid',35274),(47189,'history_uint','itemid',35274),(47190,'trends','itemid',35274),(47191,'trends_uint','itemid',35274),(47192,'events','itemid',35532),(47193,'history','itemid',35532),(47194,'history_log','itemid',35532),(47195,'history_str','itemid',35532),(47196,'history_text','itemid',35532),(47197,'history_uint','itemid',35532),(47198,'trends','itemid',35532),(47199,'trends_uint','itemid',35532),(47200,'events','itemid',35533),(47201,'history','itemid',35533),(47202,'history_log','itemid',35533),(47203,'history_str','itemid',35533),(47204,'history_text','itemid',35533),(47205,'history_uint','itemid',35533),(47206,'trends','itemid',35533),(47207,'trends_uint','itemid',35533),(47208,'events','itemid',35534),(47209,'history','itemid',35534),(47210,'history_log','itemid',35534),(47211,'history_str','itemid',35534),(47212,'history_text','itemid',35534),(47213,'history_uint','itemid',35534),(47214,'trends','itemid',35534),(47215,'trends_uint','itemid',35534),(47216,'events','itemid',35535),(47217,'history','itemid',35535),(47218,'history_log','itemid',35535),(47219,'history_str','itemid',35535),(47220,'history_text','itemid',35535),(47221,'history_uint','itemid',35535),(47222,'trends','itemid',35535),(47223,'trends_uint','itemid',35535),(47224,'events','itemid',35536),(47225,'history','itemid',35536),(47226,'history_log','itemid',35536),(47227,'history_str','itemid',35536),(47228,'history_text','itemid',35536),(47229,'history_uint','itemid',35536),(47230,'trends','itemid',35536),(47231,'trends_uint','itemid',35536),(47232,'events','itemid',35537),(47233,'history','itemid',35537),(47234,'history_log','itemid',35537),(47235,'history_str','itemid',35537),(47236,'history_text','itemid',35537),(47237,'history_uint','itemid',35537),(47238,'trends','itemid',35537),(47239,'trends_uint','itemid',35537),(47240,'events','itemid',35538),(47241,'history','itemid',35538),(47242,'history_log','itemid',35538),(47243,'history_str','itemid',35538),(47244,'history_text','itemid',35538),(47245,'history_uint','itemid',35538),(47246,'trends','itemid',35538),(47247,'trends_uint','itemid',35538),(47248,'events','itemid',35539),(47249,'history','itemid',35539),(47250,'history_log','itemid',35539),(47251,'history_str','itemid',35539),(47252,'history_text','itemid',35539),(47253,'history_uint','itemid',35539),(47254,'trends','itemid',35539),(47255,'trends_uint','itemid',35539),(47256,'events','itemid',35540),(47257,'history','itemid',35540),(47258,'history_log','itemid',35540),(47259,'history_str','itemid',35540),(47260,'history_text','itemid',35540),(47261,'history_uint','itemid',35540),(47262,'trends','itemid',35540),(47263,'trends_uint','itemid',35540),(47264,'events','itemid',35541),(47265,'history','itemid',35541),(47266,'history_log','itemid',35541),(47267,'history_str','itemid',35541),(47268,'history_text','itemid',35541),(47269,'history_uint','itemid',35541),(47270,'trends','itemid',35541),(47271,'trends_uint','itemid',35541),(47272,'events','itemid',35564),(47273,'history','itemid',35564),(47274,'history_log','itemid',35564),(47275,'history_str','itemid',35564),(47276,'history_text','itemid',35564),(47277,'history_uint','itemid',35564),(47278,'trends','itemid',35564),(47279,'trends_uint','itemid',35564),(47280,'events','itemid',35565),(47281,'history','itemid',35565),(47282,'history_log','itemid',35565),(47283,'history_str','itemid',35565),(47284,'history_text','itemid',35565),(47285,'history_uint','itemid',35565),(47286,'trends','itemid',35565),(47287,'trends_uint','itemid',35565),(47288,'events','itemid',35566),(47289,'history','itemid',35566),(47290,'history_log','itemid',35566),(47291,'history_str','itemid',35566),(47292,'history_text','itemid',35566),(47293,'history_uint','itemid',35566),(47294,'trends','itemid',35566),(47295,'trends_uint','itemid',35566),(47296,'events','itemid',35567),(47297,'history','itemid',35567),(47298,'history_log','itemid',35567),(47299,'history_str','itemid',35567),(47300,'history_text','itemid',35567),(47301,'history_uint','itemid',35567),(47302,'trends','itemid',35567),(47303,'trends_uint','itemid',35567),(47304,'events','itemid',35568),(47305,'history','itemid',35568),(47306,'history_log','itemid',35568),(47307,'history_str','itemid',35568),(47308,'history_text','itemid',35568),(47309,'history_uint','itemid',35568),(47310,'trends','itemid',35568),(47311,'trends_uint','itemid',35568),(47312,'events','itemid',35569),(47313,'history','itemid',35569),(47314,'history_log','itemid',35569),(47315,'history_str','itemid',35569),(47316,'history_text','itemid',35569),(47317,'history_uint','itemid',35569),(47318,'trends','itemid',35569),(47319,'trends_uint','itemid',35569),(47320,'events','itemid',35570),(47321,'history','itemid',35570),(47322,'history_log','itemid',35570),(47323,'history_str','itemid',35570),(47324,'history_text','itemid',35570),(47325,'history_uint','itemid',35570),(47326,'trends','itemid',35570),(47327,'trends_uint','itemid',35570),(47328,'events','itemid',35571),(47329,'history','itemid',35571),(47330,'history_log','itemid',35571),(47331,'history_str','itemid',35571),(47332,'history_text','itemid',35571),(47333,'history_uint','itemid',35571),(47334,'trends','itemid',35571),(47335,'trends_uint','itemid',35571),(47336,'events','itemid',35572),(47337,'history','itemid',35572),(47338,'history_log','itemid',35572),(47339,'history_str','itemid',35572),(47340,'history_text','itemid',35572),(47341,'history_uint','itemid',35572),(47342,'trends','itemid',35572),(47343,'trends_uint','itemid',35572),(47344,'events','itemid',35573),(47345,'history','itemid',35573),(47346,'history_log','itemid',35573),(47347,'history_str','itemid',35573),(47348,'history_text','itemid',35573),(47349,'history_uint','itemid',35573),(47350,'trends','itemid',35573),(47351,'trends_uint','itemid',35573),(47352,'events','itemid',35608),(47353,'history','itemid',35608),(47354,'history_log','itemid',35608),(47355,'history_str','itemid',35608),(47356,'history_text','itemid',35608),(47357,'history_uint','itemid',35608),(47358,'trends','itemid',35608),(47359,'trends_uint','itemid',35608),(47360,'events','itemid',35609),(47361,'history','itemid',35609),(47362,'history_log','itemid',35609),(47363,'history_str','itemid',35609),(47364,'history_text','itemid',35609),(47365,'history_uint','itemid',35609),(47366,'trends','itemid',35609),(47367,'trends_uint','itemid',35609),(47368,'events','itemid',35610),(47369,'history','itemid',35610),(47370,'history_log','itemid',35610),(47371,'history_str','itemid',35610),(47372,'history_text','itemid',35610),(47373,'history_uint','itemid',35610),(47374,'trends','itemid',35610),(47375,'trends_uint','itemid',35610),(47376,'events','itemid',35611),(47377,'history','itemid',35611),(47378,'history_log','itemid',35611),(47379,'history_str','itemid',35611),(47380,'history_text','itemid',35611),(47381,'history_uint','itemid',35611),(47382,'trends','itemid',35611),(47383,'trends_uint','itemid',35611),(47384,'events','itemid',35612),(47385,'history','itemid',35612),(47386,'history_log','itemid',35612),(47387,'history_str','itemid',35612),(47388,'history_text','itemid',35612),(47389,'history_uint','itemid',35612),(47390,'trends','itemid',35612),(47391,'trends_uint','itemid',35612),(47392,'events','itemid',35613),(47393,'history','itemid',35613),(47394,'history_log','itemid',35613),(47395,'history_str','itemid',35613),(47396,'history_text','itemid',35613),(47397,'history_uint','itemid',35613),(47398,'trends','itemid',35613),(47399,'trends_uint','itemid',35613),(47400,'events','itemid',35614),(47401,'history','itemid',35614),(47402,'history_log','itemid',35614),(47403,'history_str','itemid',35614),(47404,'history_text','itemid',35614),(47405,'history_uint','itemid',35614),(47406,'trends','itemid',35614),(47407,'trends_uint','itemid',35614),(47408,'events','itemid',35615),(47409,'history','itemid',35615),(47410,'history_log','itemid',35615),(47411,'history_str','itemid',35615),(47412,'history_text','itemid',35615),(47413,'history_uint','itemid',35615),(47414,'trends','itemid',35615),(47415,'trends_uint','itemid',35615),(47416,'events','itemid',35616),(47417,'history','itemid',35616),(47418,'history_log','itemid',35616),(47419,'history_str','itemid',35616),(47420,'history_text','itemid',35616),(47421,'history_uint','itemid',35616),(47422,'trends','itemid',35616),(47423,'trends_uint','itemid',35616),(47424,'events','itemid',35617),(47425,'history','itemid',35617),(47426,'history_log','itemid',35617),(47427,'history_str','itemid',35617),(47428,'history_text','itemid',35617),(47429,'history_uint','itemid',35617),(47430,'trends','itemid',35617),(47431,'trends_uint','itemid',35617),(47432,'events','itemid',35642),(47433,'history','itemid',35642),(47434,'history_log','itemid',35642),(47435,'history_str','itemid',35642),(47436,'history_text','itemid',35642),(47437,'history_uint','itemid',35642),(47438,'trends','itemid',35642),(47439,'trends_uint','itemid',35642),(47440,'events','itemid',35643),(47441,'history','itemid',35643),(47442,'history_log','itemid',35643),(47443,'history_str','itemid',35643),(47444,'history_text','itemid',35643),(47445,'history_uint','itemid',35643),(47446,'trends','itemid',35643),(47447,'trends_uint','itemid',35643),(47448,'events','itemid',35644),(47449,'history','itemid',35644),(47450,'history_log','itemid',35644),(47451,'history_str','itemid',35644),(47452,'history_text','itemid',35644),(47453,'history_uint','itemid',35644),(47454,'trends','itemid',35644),(47455,'trends_uint','itemid',35644),(47456,'events','itemid',35645),(47457,'history','itemid',35645),(47458,'history_log','itemid',35645),(47459,'history_str','itemid',35645),(47460,'history_text','itemid',35645),(47461,'history_uint','itemid',35645),(47462,'trends','itemid',35645),(47463,'trends_uint','itemid',35645),(47464,'events','itemid',35646),(47465,'history','itemid',35646),(47466,'history_log','itemid',35646),(47467,'history_str','itemid',35646),(47468,'history_text','itemid',35646),(47469,'history_uint','itemid',35646),(47470,'trends','itemid',35646),(47471,'trends_uint','itemid',35646),(47472,'events','itemid',35647),(47473,'history','itemid',35647),(47474,'history_log','itemid',35647),(47475,'history_str','itemid',35647),(47476,'history_text','itemid',35647),(47477,'history_uint','itemid',35647),(47478,'trends','itemid',35647),(47479,'trends_uint','itemid',35647),(47480,'events','itemid',35648),(47481,'history','itemid',35648),(47482,'history_log','itemid',35648),(47483,'history_str','itemid',35648),(47484,'history_text','itemid',35648),(47485,'history_uint','itemid',35648),(47486,'trends','itemid',35648),(47487,'trends_uint','itemid',35648),(47488,'events','itemid',35709),(47489,'history','itemid',35709),(47490,'history_log','itemid',35709),(47491,'history_str','itemid',35709),(47492,'history_text','itemid',35709),(47493,'history_uint','itemid',35709),(47494,'trends','itemid',35709),(47495,'trends_uint','itemid',35709),(47496,'events','itemid',35710),(47497,'history','itemid',35710),(47498,'history_log','itemid',35710),(47499,'history_str','itemid',35710),(47500,'history_text','itemid',35710),(47501,'history_uint','itemid',35710),(47502,'trends','itemid',35710),(47503,'trends_uint','itemid',35710),(47504,'events','itemid',35711),(47505,'history','itemid',35711),(47506,'history_log','itemid',35711),(47507,'history_str','itemid',35711),(47508,'history_text','itemid',35711),(47509,'history_uint','itemid',35711),(47510,'trends','itemid',35711),(47511,'trends_uint','itemid',35711),(47512,'events','itemid',35712),(47513,'history','itemid',35712),(47514,'history_log','itemid',35712),(47515,'history_str','itemid',35712),(47516,'history_text','itemid',35712),(47517,'history_uint','itemid',35712),(47518,'trends','itemid',35712),(47519,'trends_uint','itemid',35712),(47520,'events','itemid',35713),(47521,'history','itemid',35713),(47522,'history_log','itemid',35713),(47523,'history_str','itemid',35713),(47524,'history_text','itemid',35713),(47525,'history_uint','itemid',35713),(47526,'trends','itemid',35713),(47527,'trends_uint','itemid',35713),(47528,'events','itemid',35714),(47529,'history','itemid',35714),(47530,'history_log','itemid',35714),(47531,'history_str','itemid',35714),(47532,'history_text','itemid',35714),(47533,'history_uint','itemid',35714),(47534,'trends','itemid',35714),(47535,'trends_uint','itemid',35714),(47536,'events','itemid',35715),(47537,'history','itemid',35715),(47538,'history_log','itemid',35715),(47539,'history_str','itemid',35715),(47540,'history_text','itemid',35715),(47541,'history_uint','itemid',35715),(47542,'trends','itemid',35715),(47543,'trends_uint','itemid',35715),(47544,'events','itemid',35776),(47545,'history','itemid',35776),(47546,'history_log','itemid',35776),(47547,'history_str','itemid',35776),(47548,'history_text','itemid',35776),(47549,'history_uint','itemid',35776),(47550,'trends','itemid',35776),(47551,'trends_uint','itemid',35776),(47552,'events','itemid',35777),(47553,'history','itemid',35777),(47554,'history_log','itemid',35777),(47555,'history_str','itemid',35777),(47556,'history_text','itemid',35777),(47557,'history_uint','itemid',35777),(47558,'trends','itemid',35777),(47559,'trends_uint','itemid',35777),(47560,'events','itemid',35778),(47561,'history','itemid',35778),(47562,'history_log','itemid',35778),(47563,'history_str','itemid',35778),(47564,'history_text','itemid',35778),(47565,'history_uint','itemid',35778),(47566,'trends','itemid',35778),(47567,'trends_uint','itemid',35778),(47568,'events','itemid',35779),(47569,'history','itemid',35779),(47570,'history_log','itemid',35779),(47571,'history_str','itemid',35779),(47572,'history_text','itemid',35779),(47573,'history_uint','itemid',35779),(47574,'trends','itemid',35779),(47575,'trends_uint','itemid',35779),(47576,'events','itemid',35780),(47577,'history','itemid',35780),(47578,'history_log','itemid',35780),(47579,'history_str','itemid',35780),(47580,'history_text','itemid',35780),(47581,'history_uint','itemid',35780),(47582,'trends','itemid',35780),(47583,'trends_uint','itemid',35780),(47584,'events','itemid',35781),(47585,'history','itemid',35781),(47586,'history_log','itemid',35781),(47587,'history_str','itemid',35781),(47588,'history_text','itemid',35781),(47589,'history_uint','itemid',35781),(47590,'trends','itemid',35781),(47591,'trends_uint','itemid',35781),(47592,'events','itemid',35782),(47593,'history','itemid',35782),(47594,'history_log','itemid',35782),(47595,'history_str','itemid',35782),(47596,'history_text','itemid',35782),(47597,'history_uint','itemid',35782),(47598,'trends','itemid',35782),(47599,'trends_uint','itemid',35782),(47600,'events','itemid',35783),(47601,'history','itemid',35783),(47602,'history_log','itemid',35783),(47603,'history_str','itemid',35783),(47604,'history_text','itemid',35783),(47605,'history_uint','itemid',35783),(47606,'trends','itemid',35783),(47607,'trends_uint','itemid',35783),(47608,'events','itemid',35784),(47609,'history','itemid',35784),(47610,'history_log','itemid',35784),(47611,'history_str','itemid',35784),(47612,'history_text','itemid',35784),(47613,'history_uint','itemid',35784),(47614,'trends','itemid',35784),(47615,'trends_uint','itemid',35784),(47616,'events','itemid',35785),(47617,'history','itemid',35785),(47618,'history_log','itemid',35785),(47619,'history_str','itemid',35785),(47620,'history_text','itemid',35785),(47621,'history_uint','itemid',35785),(47622,'trends','itemid',35785),(47623,'trends_uint','itemid',35785),(47624,'events','itemid',35810),(47625,'history','itemid',35810),(47626,'history_log','itemid',35810),(47627,'history_str','itemid',35810),(47628,'history_text','itemid',35810),(47629,'history_uint','itemid',35810),(47630,'trends','itemid',35810),(47631,'trends_uint','itemid',35810),(47632,'events','itemid',35811),(47633,'history','itemid',35811),(47634,'history_log','itemid',35811),(47635,'history_str','itemid',35811),(47636,'history_text','itemid',35811),(47637,'history_uint','itemid',35811),(47638,'trends','itemid',35811),(47639,'trends_uint','itemid',35811),(47640,'events','itemid',35812),(47641,'history','itemid',35812),(47642,'history_log','itemid',35812),(47643,'history_str','itemid',35812),(47644,'history_text','itemid',35812),(47645,'history_uint','itemid',35812),(47646,'trends','itemid',35812),(47647,'trends_uint','itemid',35812),(47648,'events','itemid',35813),(47649,'history','itemid',35813),(47650,'history_log','itemid',35813),(47651,'history_str','itemid',35813),(47652,'history_text','itemid',35813),(47653,'history_uint','itemid',35813),(47654,'trends','itemid',35813),(47655,'trends_uint','itemid',35813),(47656,'events','itemid',35814),(47657,'history','itemid',35814),(47658,'history_log','itemid',35814),(47659,'history_str','itemid',35814),(47660,'history_text','itemid',35814),(47661,'history_uint','itemid',35814),(47662,'trends','itemid',35814),(47663,'trends_uint','itemid',35814),(47664,'events','itemid',35815),(47665,'history','itemid',35815),(47666,'history_log','itemid',35815),(47667,'history_str','itemid',35815),(47668,'history_text','itemid',35815),(47669,'history_uint','itemid',35815),(47670,'trends','itemid',35815),(47671,'trends_uint','itemid',35815),(47672,'events','itemid',35816),(47673,'history','itemid',35816),(47674,'history_log','itemid',35816),(47675,'history_str','itemid',35816),(47676,'history_text','itemid',35816),(47677,'history_uint','itemid',35816),(47678,'trends','itemid',35816),(47679,'trends_uint','itemid',35816),(47680,'events','itemid',35817),(47681,'history','itemid',35817),(47682,'history_log','itemid',35817),(47683,'history_str','itemid',35817),(47684,'history_text','itemid',35817),(47685,'history_uint','itemid',35817),(47686,'trends','itemid',35817),(47687,'trends_uint','itemid',35817),(47688,'events','itemid',35818),(47689,'history','itemid',35818),(47690,'history_log','itemid',35818),(47691,'history_str','itemid',35818),(47692,'history_text','itemid',35818),(47693,'history_uint','itemid',35818),(47694,'trends','itemid',35818),(47695,'trends_uint','itemid',35818),(47696,'events','itemid',35819),(47697,'history','itemid',35819),(47698,'history_log','itemid',35819),(47699,'history_str','itemid',35819),(47700,'history_text','itemid',35819),(47701,'history_uint','itemid',35819),(47702,'trends','itemid',35819),(47703,'trends_uint','itemid',35819),(47704,'events','itemid',35848),(47705,'history','itemid',35848),(47706,'history_log','itemid',35848),(47707,'history_str','itemid',35848),(47708,'history_text','itemid',35848),(47709,'history_uint','itemid',35848),(47710,'trends','itemid',35848),(47711,'trends_uint','itemid',35848),(47712,'events','itemid',35849),(47713,'history','itemid',35849),(47714,'history_log','itemid',35849),(47715,'history_str','itemid',35849),(47716,'history_text','itemid',35849),(47717,'history_uint','itemid',35849),(47718,'trends','itemid',35849),(47719,'trends_uint','itemid',35849),(47720,'events','itemid',35850),(47721,'history','itemid',35850),(47722,'history_log','itemid',35850),(47723,'history_str','itemid',35850),(47724,'history_text','itemid',35850),(47725,'history_uint','itemid',35850),(47726,'trends','itemid',35850),(47727,'trends_uint','itemid',35850),(47728,'events','itemid',35851),(47729,'history','itemid',35851),(47730,'history_log','itemid',35851),(47731,'history_str','itemid',35851),(47732,'history_text','itemid',35851),(47733,'history_uint','itemid',35851),(47734,'trends','itemid',35851),(47735,'trends_uint','itemid',35851),(47736,'events','itemid',35852),(47737,'history','itemid',35852),(47738,'history_log','itemid',35852),(47739,'history_str','itemid',35852),(47740,'history_text','itemid',35852),(47741,'history_uint','itemid',35852),(47742,'trends','itemid',35852),(47743,'trends_uint','itemid',35852),(47744,'events','itemid',35853),(47745,'history','itemid',35853),(47746,'history_log','itemid',35853),(47747,'history_str','itemid',35853),(47748,'history_text','itemid',35853),(47749,'history_uint','itemid',35853),(47750,'trends','itemid',35853),(47751,'trends_uint','itemid',35853),(47752,'events','itemid',35854),(47753,'history','itemid',35854),(47754,'history_log','itemid',35854),(47755,'history_str','itemid',35854),(47756,'history_text','itemid',35854),(47757,'history_uint','itemid',35854),(47758,'trends','itemid',35854),(47759,'trends_uint','itemid',35854),(47760,'events','itemid',35855),(47761,'history','itemid',35855),(47762,'history_log','itemid',35855),(47763,'history_str','itemid',35855),(47764,'history_text','itemid',35855),(47765,'history_uint','itemid',35855),(47766,'trends','itemid',35855),(47767,'trends_uint','itemid',35855),(47768,'events','itemid',35856),(47769,'history','itemid',35856),(47770,'history_log','itemid',35856),(47771,'history_str','itemid',35856),(47772,'history_text','itemid',35856),(47773,'history_uint','itemid',35856),(47774,'trends','itemid',35856),(47775,'trends_uint','itemid',35856),(47776,'events','itemid',35857),(47777,'history','itemid',35857),(47778,'history_log','itemid',35857),(47779,'history_str','itemid',35857),(47780,'history_text','itemid',35857),(47781,'history_uint','itemid',35857),(47782,'trends','itemid',35857),(47783,'trends_uint','itemid',35857),(47784,'events','itemid',35892),(47785,'history','itemid',35892),(47786,'history_log','itemid',35892),(47787,'history_str','itemid',35892),(47788,'history_text','itemid',35892),(47789,'history_uint','itemid',35892),(47790,'trends','itemid',35892),(47791,'trends_uint','itemid',35892),(47792,'events','itemid',35893),(47793,'history','itemid',35893),(47794,'history_log','itemid',35893),(47795,'history_str','itemid',35893),(47796,'history_text','itemid',35893),(47797,'history_uint','itemid',35893),(47798,'trends','itemid',35893),(47799,'trends_uint','itemid',35893),(47800,'events','itemid',35894),(47801,'history','itemid',35894),(47802,'history_log','itemid',35894),(47803,'history_str','itemid',35894),(47804,'history_text','itemid',35894),(47805,'history_uint','itemid',35894),(47806,'trends','itemid',35894),(47807,'trends_uint','itemid',35894),(47808,'events','itemid',35895),(47809,'history','itemid',35895),(47810,'history_log','itemid',35895),(47811,'history_str','itemid',35895),(47812,'history_text','itemid',35895),(47813,'history_uint','itemid',35895),(47814,'trends','itemid',35895),(47815,'trends_uint','itemid',35895),(47816,'events','itemid',35896),(47817,'history','itemid',35896),(47818,'history_log','itemid',35896),(47819,'history_str','itemid',35896),(47820,'history_text','itemid',35896),(47821,'history_uint','itemid',35896),(47822,'trends','itemid',35896),(47823,'trends_uint','itemid',35896),(47824,'events','itemid',35897),(47825,'history','itemid',35897),(47826,'history_log','itemid',35897),(47827,'history_str','itemid',35897),(47828,'history_text','itemid',35897),(47829,'history_uint','itemid',35897),(47830,'trends','itemid',35897),(47831,'trends_uint','itemid',35897),(47832,'events','itemid',35898),(47833,'history','itemid',35898),(47834,'history_log','itemid',35898),(47835,'history_str','itemid',35898),(47836,'history_text','itemid',35898),(47837,'history_uint','itemid',35898),(47838,'trends','itemid',35898),(47839,'trends_uint','itemid',35898),(47840,'events','itemid',35899),(47841,'history','itemid',35899),(47842,'history_log','itemid',35899),(47843,'history_str','itemid',35899),(47844,'history_text','itemid',35899),(47845,'history_uint','itemid',35899),(47846,'trends','itemid',35899),(47847,'trends_uint','itemid',35899),(47848,'events','itemid',35900),(47849,'history','itemid',35900),(47850,'history_log','itemid',35900),(47851,'history_str','itemid',35900),(47852,'history_text','itemid',35900),(47853,'history_uint','itemid',35900),(47854,'trends','itemid',35900),(47855,'trends_uint','itemid',35900),(47856,'events','itemid',35901),(47857,'history','itemid',35901),(47858,'history_log','itemid',35901),(47859,'history_str','itemid',35901),(47860,'history_text','itemid',35901),(47861,'history_uint','itemid',35901),(47862,'trends','itemid',35901),(47863,'trends_uint','itemid',35901),(47864,'events','itemid',35936),(47865,'history','itemid',35936),(47866,'history_log','itemid',35936),(47867,'history_str','itemid',35936),(47868,'history_text','itemid',35936),(47869,'history_uint','itemid',35936),(47870,'trends','itemid',35936),(47871,'trends_uint','itemid',35936),(47872,'events','itemid',35937),(47873,'history','itemid',35937),(47874,'history_log','itemid',35937),(47875,'history_str','itemid',35937),(47876,'history_text','itemid',35937),(47877,'history_uint','itemid',35937),(47878,'trends','itemid',35937),(47879,'trends_uint','itemid',35937),(47880,'events','itemid',35938),(47881,'history','itemid',35938),(47882,'history_log','itemid',35938),(47883,'history_str','itemid',35938),(47884,'history_text','itemid',35938),(47885,'history_uint','itemid',35938),(47886,'trends','itemid',35938),(47887,'trends_uint','itemid',35938),(47888,'events','itemid',35939),(47889,'history','itemid',35939),(47890,'history_log','itemid',35939),(47891,'history_str','itemid',35939),(47892,'history_text','itemid',35939),(47893,'history_uint','itemid',35939),(47894,'trends','itemid',35939),(47895,'trends_uint','itemid',35939),(47896,'events','itemid',35940),(47897,'history','itemid',35940),(47898,'history_log','itemid',35940),(47899,'history_str','itemid',35940),(47900,'history_text','itemid',35940),(47901,'history_uint','itemid',35940),(47902,'trends','itemid',35940),(47903,'trends_uint','itemid',35940),(47904,'events','itemid',35941),(47905,'history','itemid',35941),(47906,'history_log','itemid',35941),(47907,'history_str','itemid',35941),(47908,'history_text','itemid',35941),(47909,'history_uint','itemid',35941),(47910,'trends','itemid',35941),(47911,'trends_uint','itemid',35941),(47912,'events','itemid',35942),(47913,'history','itemid',35942),(47914,'history_log','itemid',35942),(47915,'history_str','itemid',35942),(47916,'history_text','itemid',35942),(47917,'history_uint','itemid',35942),(47918,'trends','itemid',35942),(47919,'trends_uint','itemid',35942),(47920,'events','itemid',35943),(47921,'history','itemid',35943),(47922,'history_log','itemid',35943),(47923,'history_str','itemid',35943),(47924,'history_text','itemid',35943),(47925,'history_uint','itemid',35943),(47926,'trends','itemid',35943),(47927,'trends_uint','itemid',35943),(47928,'events','itemid',35944),(47929,'history','itemid',35944),(47930,'history_log','itemid',35944),(47931,'history_str','itemid',35944),(47932,'history_text','itemid',35944),(47933,'history_uint','itemid',35944),(47934,'trends','itemid',35944),(47935,'trends_uint','itemid',35944),(47936,'events','itemid',35945),(47937,'history','itemid',35945),(47938,'history_log','itemid',35945),(47939,'history_str','itemid',35945),(47940,'history_text','itemid',35945),(47941,'history_uint','itemid',35945),(47942,'trends','itemid',35945),(47943,'trends_uint','itemid',35945),(47944,'events','itemid',35980),(47945,'history','itemid',35980),(47946,'history_log','itemid',35980),(47947,'history_str','itemid',35980),(47948,'history_text','itemid',35980),(47949,'history_uint','itemid',35980),(47950,'trends','itemid',35980),(47951,'trends_uint','itemid',35980),(47952,'events','itemid',35981),(47953,'history','itemid',35981),(47954,'history_log','itemid',35981),(47955,'history_str','itemid',35981),(47956,'history_text','itemid',35981),(47957,'history_uint','itemid',35981),(47958,'trends','itemid',35981),(47959,'trends_uint','itemid',35981),(47960,'events','itemid',35982),(47961,'history','itemid',35982),(47962,'history_log','itemid',35982),(47963,'history_str','itemid',35982),(47964,'history_text','itemid',35982),(47965,'history_uint','itemid',35982),(47966,'trends','itemid',35982),(47967,'trends_uint','itemid',35982),(47968,'events','itemid',35983),(47969,'history','itemid',35983),(47970,'history_log','itemid',35983),(47971,'history_str','itemid',35983),(47972,'history_text','itemid',35983),(47973,'history_uint','itemid',35983),(47974,'trends','itemid',35983),(47975,'trends_uint','itemid',35983),(47976,'events','itemid',35984),(47977,'history','itemid',35984),(47978,'history_log','itemid',35984),(47979,'history_str','itemid',35984),(47980,'history_text','itemid',35984),(47981,'history_uint','itemid',35984),(47982,'trends','itemid',35984),(47983,'trends_uint','itemid',35984),(47984,'events','itemid',35985),(47985,'history','itemid',35985),(47986,'history_log','itemid',35985),(47987,'history_str','itemid',35985),(47988,'history_text','itemid',35985),(47989,'history_uint','itemid',35985),(47990,'trends','itemid',35985),(47991,'trends_uint','itemid',35985),(47992,'events','itemid',35986),(47993,'history','itemid',35986),(47994,'history_log','itemid',35986),(47995,'history_str','itemid',35986),(47996,'history_text','itemid',35986),(47997,'history_uint','itemid',35986),(47998,'trends','itemid',35986),(47999,'trends_uint','itemid',35986),(48000,'events','itemid',35987),(48001,'history','itemid',35987),(48002,'history_log','itemid',35987),(48003,'history_str','itemid',35987),(48004,'history_text','itemid',35987),(48005,'history_uint','itemid',35987),(48006,'trends','itemid',35987),(48007,'trends_uint','itemid',35987),(48008,'events','itemid',35988),(48009,'history','itemid',35988),(48010,'history_log','itemid',35988),(48011,'history_str','itemid',35988),(48012,'history_text','itemid',35988),(48013,'history_uint','itemid',35988),(48014,'trends','itemid',35988),(48015,'trends_uint','itemid',35988),(48016,'events','itemid',35989),(48017,'history','itemid',35989),(48018,'history_log','itemid',35989),(48019,'history_str','itemid',35989),(48020,'history_text','itemid',35989),(48021,'history_uint','itemid',35989),(48022,'trends','itemid',35989),(48023,'trends_uint','itemid',35989),(48024,'events','itemid',36024),(48025,'history','itemid',36024),(48026,'history_log','itemid',36024),(48027,'history_str','itemid',36024),(48028,'history_text','itemid',36024),(48029,'history_uint','itemid',36024),(48030,'trends','itemid',36024),(48031,'trends_uint','itemid',36024),(48032,'events','itemid',36025),(48033,'history','itemid',36025),(48034,'history_log','itemid',36025),(48035,'history_str','itemid',36025),(48036,'history_text','itemid',36025),(48037,'history_uint','itemid',36025),(48038,'trends','itemid',36025),(48039,'trends_uint','itemid',36025),(48040,'events','itemid',36026),(48041,'history','itemid',36026),(48042,'history_log','itemid',36026),(48043,'history_str','itemid',36026),(48044,'history_text','itemid',36026),(48045,'history_uint','itemid',36026),(48046,'trends','itemid',36026),(48047,'trends_uint','itemid',36026),(48048,'events','itemid',36027),(48049,'history','itemid',36027),(48050,'history_log','itemid',36027),(48051,'history_str','itemid',36027),(48052,'history_text','itemid',36027),(48053,'history_uint','itemid',36027),(48054,'trends','itemid',36027),(48055,'trends_uint','itemid',36027),(48056,'events','itemid',36028),(48057,'history','itemid',36028),(48058,'history_log','itemid',36028),(48059,'history_str','itemid',36028),(48060,'history_text','itemid',36028),(48061,'history_uint','itemid',36028),(48062,'trends','itemid',36028),(48063,'trends_uint','itemid',36028),(48064,'events','itemid',36029),(48065,'history','itemid',36029),(48066,'history_log','itemid',36029),(48067,'history_str','itemid',36029),(48068,'history_text','itemid',36029),(48069,'history_uint','itemid',36029),(48070,'trends','itemid',36029),(48071,'trends_uint','itemid',36029),(48072,'events','itemid',36030),(48073,'history','itemid',36030),(48074,'history_log','itemid',36030),(48075,'history_str','itemid',36030),(48076,'history_text','itemid',36030),(48077,'history_uint','itemid',36030),(48078,'trends','itemid',36030),(48079,'trends_uint','itemid',36030),(48080,'events','itemid',36031),(48081,'history','itemid',36031),(48082,'history_log','itemid',36031),(48083,'history_str','itemid',36031),(48084,'history_text','itemid',36031),(48085,'history_uint','itemid',36031),(48086,'trends','itemid',36031),(48087,'trends_uint','itemid',36031),(48088,'events','itemid',36032),(48089,'history','itemid',36032),(48090,'history_log','itemid',36032),(48091,'history_str','itemid',36032),(48092,'history_text','itemid',36032),(48093,'history_uint','itemid',36032),(48094,'trends','itemid',36032),(48095,'trends_uint','itemid',36032),(48096,'events','itemid',36033),(48097,'history','itemid',36033),(48098,'history_log','itemid',36033),(48099,'history_str','itemid',36033),(48100,'history_text','itemid',36033),(48101,'history_uint','itemid',36033),(48102,'trends','itemid',36033),(48103,'trends_uint','itemid',36033),(48104,'events','itemid',36034),(48105,'history','itemid',36034),(48106,'history_log','itemid',36034),(48107,'history_str','itemid',36034),(48108,'history_text','itemid',36034),(48109,'history_uint','itemid',36034),(48110,'trends','itemid',36034),(48111,'trends_uint','itemid',36034),(48112,'events','itemid',36069),(48113,'history','itemid',36069),(48114,'history_log','itemid',36069),(48115,'history_str','itemid',36069),(48116,'history_text','itemid',36069),(48117,'history_uint','itemid',36069),(48118,'trends','itemid',36069),(48119,'trends_uint','itemid',36069),(48120,'events','itemid',36070),(48121,'history','itemid',36070),(48122,'history_log','itemid',36070),(48123,'history_str','itemid',36070),(48124,'history_text','itemid',36070),(48125,'history_uint','itemid',36070),(48126,'trends','itemid',36070),(48127,'trends_uint','itemid',36070),(48128,'events','itemid',36071),(48129,'history','itemid',36071),(48130,'history_log','itemid',36071),(48131,'history_str','itemid',36071),(48132,'history_text','itemid',36071),(48133,'history_uint','itemid',36071),(48134,'trends','itemid',36071),(48135,'trends_uint','itemid',36071),(48136,'events','itemid',36072),(48137,'history','itemid',36072),(48138,'history_log','itemid',36072),(48139,'history_str','itemid',36072),(48140,'history_text','itemid',36072),(48141,'history_uint','itemid',36072),(48142,'trends','itemid',36072),(48143,'trends_uint','itemid',36072),(48144,'events','itemid',36073),(48145,'history','itemid',36073),(48146,'history_log','itemid',36073),(48147,'history_str','itemid',36073),(48148,'history_text','itemid',36073),(48149,'history_uint','itemid',36073),(48150,'trends','itemid',36073),(48151,'trends_uint','itemid',36073),(48152,'events','itemid',36074),(48153,'history','itemid',36074),(48154,'history_log','itemid',36074),(48155,'history_str','itemid',36074),(48156,'history_text','itemid',36074),(48157,'history_uint','itemid',36074),(48158,'trends','itemid',36074),(48159,'trends_uint','itemid',36074),(48160,'events','itemid',36075),(48161,'history','itemid',36075),(48162,'history_log','itemid',36075),(48163,'history_str','itemid',36075),(48164,'history_text','itemid',36075),(48165,'history_uint','itemid',36075),(48166,'trends','itemid',36075),(48167,'trends_uint','itemid',36075),(48168,'events','itemid',36076),(48169,'history','itemid',36076),(48170,'history_log','itemid',36076),(48171,'history_str','itemid',36076),(48172,'history_text','itemid',36076),(48173,'history_uint','itemid',36076),(48174,'trends','itemid',36076),(48175,'trends_uint','itemid',36076),(48176,'events','itemid',36077),(48177,'history','itemid',36077),(48178,'history_log','itemid',36077),(48179,'history_str','itemid',36077),(48180,'history_text','itemid',36077),(48181,'history_uint','itemid',36077),(48182,'trends','itemid',36077),(48183,'trends_uint','itemid',36077),(48184,'events','itemid',36078),(48185,'history','itemid',36078),(48186,'history_log','itemid',36078),(48187,'history_str','itemid',36078),(48188,'history_text','itemid',36078),(48189,'history_uint','itemid',36078),(48190,'trends','itemid',36078),(48191,'trends_uint','itemid',36078),(48192,'events','itemid',36079),(48193,'history','itemid',36079),(48194,'history_log','itemid',36079),(48195,'history_str','itemid',36079),(48196,'history_text','itemid',36079),(48197,'history_uint','itemid',36079),(48198,'trends','itemid',36079),(48199,'trends_uint','itemid',36079),(48200,'events','itemid',36114),(48201,'history','itemid',36114),(48202,'history_log','itemid',36114),(48203,'history_str','itemid',36114),(48204,'history_text','itemid',36114),(48205,'history_uint','itemid',36114),(48206,'trends','itemid',36114),(48207,'trends_uint','itemid',36114),(48208,'events','itemid',36115),(48209,'history','itemid',36115),(48210,'history_log','itemid',36115),(48211,'history_str','itemid',36115),(48212,'history_text','itemid',36115),(48213,'history_uint','itemid',36115),(48214,'trends','itemid',36115),(48215,'trends_uint','itemid',36115),(48216,'events','itemid',36116),(48217,'history','itemid',36116),(48218,'history_log','itemid',36116),(48219,'history_str','itemid',36116),(48220,'history_text','itemid',36116),(48221,'history_uint','itemid',36116),(48222,'trends','itemid',36116),(48223,'trends_uint','itemid',36116),(48224,'events','itemid',36117),(48225,'history','itemid',36117),(48226,'history_log','itemid',36117),(48227,'history_str','itemid',36117),(48228,'history_text','itemid',36117),(48229,'history_uint','itemid',36117),(48230,'trends','itemid',36117),(48231,'trends_uint','itemid',36117),(48232,'events','itemid',36118),(48233,'history','itemid',36118),(48234,'history_log','itemid',36118),(48235,'history_str','itemid',36118),(48236,'history_text','itemid',36118),(48237,'history_uint','itemid',36118),(48238,'trends','itemid',36118),(48239,'trends_uint','itemid',36118),(48240,'events','itemid',36119),(48241,'history','itemid',36119),(48242,'history_log','itemid',36119),(48243,'history_str','itemid',36119),(48244,'history_text','itemid',36119),(48245,'history_uint','itemid',36119),(48246,'trends','itemid',36119),(48247,'trends_uint','itemid',36119),(48248,'events','itemid',36120),(48249,'history','itemid',36120),(48250,'history_log','itemid',36120),(48251,'history_str','itemid',36120),(48252,'history_text','itemid',36120),(48253,'history_uint','itemid',36120),(48254,'trends','itemid',36120),(48255,'trends_uint','itemid',36120),(48256,'events','itemid',36121),(48257,'history','itemid',36121),(48258,'history_log','itemid',36121),(48259,'history_str','itemid',36121),(48260,'history_text','itemid',36121),(48261,'history_uint','itemid',36121),(48262,'trends','itemid',36121),(48263,'trends_uint','itemid',36121),(48264,'events','itemid',36122),(48265,'history','itemid',36122),(48266,'history_log','itemid',36122),(48267,'history_str','itemid',36122),(48268,'history_text','itemid',36122),(48269,'history_uint','itemid',36122),(48270,'trends','itemid',36122),(48271,'trends_uint','itemid',36122),(48272,'events','itemid',36123),(48273,'history','itemid',36123),(48274,'history_log','itemid',36123),(48275,'history_str','itemid',36123),(48276,'history_text','itemid',36123),(48277,'history_uint','itemid',36123),(48278,'trends','itemid',36123),(48279,'trends_uint','itemid',36123),(48280,'events','itemid',39804),(48281,'history','itemid',39804),(48282,'history_log','itemid',39804),(48283,'history_str','itemid',39804),(48284,'history_text','itemid',39804),(48285,'history_uint','itemid',39804),(48286,'trends','itemid',39804),(48287,'trends_uint','itemid',39804),(48288,'events','itemid',39822),(48289,'history','itemid',39822),(48290,'history_log','itemid',39822),(48291,'history_str','itemid',39822),(48292,'history_text','itemid',39822),(48293,'history_uint','itemid',39822),(48294,'trends','itemid',39822),(48295,'trends_uint','itemid',39822),(48296,'events','itemid',39826),(48297,'history','itemid',39826),(48298,'history_log','itemid',39826),(48299,'history_str','itemid',39826),(48300,'history_text','itemid',39826),(48301,'history_uint','itemid',39826),(48302,'trends','itemid',39826),(48303,'trends_uint','itemid',39826),(48304,'events','itemid',40181),(48305,'history','itemid',40181),(48306,'history_log','itemid',40181),(48307,'history_str','itemid',40181),(48308,'history_text','itemid',40181),(48309,'history_uint','itemid',40181),(48310,'trends','itemid',40181),(48311,'trends_uint','itemid',40181),(48312,'events','itemid',40182),(48313,'history','itemid',40182),(48314,'history_log','itemid',40182),(48315,'history_str','itemid',40182),(48316,'history_text','itemid',40182),(48317,'history_uint','itemid',40182),(48318,'trends','itemid',40182),(48319,'trends_uint','itemid',40182),(48320,'events','itemid',40183),(48321,'history','itemid',40183),(48322,'history_log','itemid',40183),(48323,'history_str','itemid',40183),(48324,'history_text','itemid',40183),(48325,'history_uint','itemid',40183),(48326,'trends','itemid',40183),(48327,'trends_uint','itemid',40183),(48328,'events','itemid',40184),(48329,'history','itemid',40184),(48330,'history_log','itemid',40184),(48331,'history_str','itemid',40184),(48332,'history_text','itemid',40184),(48333,'history_uint','itemid',40184),(48334,'trends','itemid',40184),(48335,'trends_uint','itemid',40184),(48336,'events','itemid',43173),(48337,'history','itemid',43173),(48338,'history_log','itemid',43173),(48339,'history_str','itemid',43173),(48340,'history_text','itemid',43173),(48341,'history_uint','itemid',43173),(48342,'trends','itemid',43173),(48343,'trends_uint','itemid',43173),(48344,'events','itemid',43860),(48345,'history','itemid',43860),(48346,'history_log','itemid',43860),(48347,'history_str','itemid',43860),(48348,'history_text','itemid',43860),(48349,'history_uint','itemid',43860),(48350,'trends','itemid',43860),(48351,'trends_uint','itemid',43860),(48352,'events','itemid',43861),(48353,'history','itemid',43861),(48354,'history_log','itemid',43861),(48355,'history_str','itemid',43861),(48356,'history_text','itemid',43861),(48357,'history_uint','itemid',43861),(48358,'trends','itemid',43861),(48359,'trends_uint','itemid',43861),(48360,'events','itemid',43862),(48361,'history','itemid',43862),(48362,'history_log','itemid',43862),(48363,'history_str','itemid',43862),(48364,'history_text','itemid',43862),(48365,'history_uint','itemid',43862),(48366,'trends','itemid',43862),(48367,'trends_uint','itemid',43862),(48368,'events','itemid',43863),(48369,'history','itemid',43863),(48370,'history_log','itemid',43863),(48371,'history_str','itemid',43863),(48372,'history_text','itemid',43863),(48373,'history_uint','itemid',43863),(48374,'trends','itemid',43863),(48375,'trends_uint','itemid',43863),(48376,'events','itemid',43864),(48377,'history','itemid',43864),(48378,'history_log','itemid',43864),(48379,'history_str','itemid',43864),(48380,'history_text','itemid',43864),(48381,'history_uint','itemid',43864),(48382,'trends','itemid',43864),(48383,'trends_uint','itemid',43864),(48384,'events','itemid',43865),(48385,'history','itemid',43865),(48386,'history_log','itemid',43865),(48387,'history_str','itemid',43865),(48388,'history_text','itemid',43865),(48389,'history_uint','itemid',43865),(48390,'trends','itemid',43865),(48391,'trends_uint','itemid',43865),(48392,'events','itemid',43866),(48393,'history','itemid',43866),(48394,'history_log','itemid',43866),(48395,'history_str','itemid',43866),(48396,'history_text','itemid',43866),(48397,'history_uint','itemid',43866),(48398,'trends','itemid',43866),(48399,'trends_uint','itemid',43866),(48400,'events','itemid',43867),(48401,'history','itemid',43867),(48402,'history_log','itemid',43867),(48403,'history_str','itemid',43867),(48404,'history_text','itemid',43867),(48405,'history_uint','itemid',43867),(48406,'trends','itemid',43867),(48407,'trends_uint','itemid',43867),(48408,'events','itemid',43868),(48409,'history','itemid',43868),(48410,'history_log','itemid',43868),(48411,'history_str','itemid',43868),(48412,'history_text','itemid',43868),(48413,'history_uint','itemid',43868),(48414,'trends','itemid',43868),(48415,'trends_uint','itemid',43868),(48416,'events','itemid',43869),(48417,'history','itemid',43869),(48418,'history_log','itemid',43869),(48419,'history_str','itemid',43869),(48420,'history_text','itemid',43869),(48421,'history_uint','itemid',43869),(48422,'trends','itemid',43869),(48423,'trends_uint','itemid',43869),(48424,'events','itemid',43870),(48425,'history','itemid',43870),(48426,'history_log','itemid',43870),(48427,'history_str','itemid',43870),(48428,'history_text','itemid',43870),(48429,'history_uint','itemid',43870),(48430,'trends','itemid',43870),(48431,'trends_uint','itemid',43870),(48432,'events','itemid',43871),(48433,'history','itemid',43871),(48434,'history_log','itemid',43871),(48435,'history_str','itemid',43871),(48436,'history_text','itemid',43871),(48437,'history_uint','itemid',43871),(48438,'trends','itemid',43871),(48439,'trends_uint','itemid',43871),(48440,'events','itemid',43872),(48441,'history','itemid',43872),(48442,'history_log','itemid',43872),(48443,'history_str','itemid',43872),(48444,'history_text','itemid',43872),(48445,'history_uint','itemid',43872),(48446,'trends','itemid',43872),(48447,'trends_uint','itemid',43872),(48448,'events','itemid',43873),(48449,'history','itemid',43873),(48450,'history_log','itemid',43873),(48451,'history_str','itemid',43873),(48452,'history_text','itemid',43873),(48453,'history_uint','itemid',43873),(48454,'trends','itemid',43873),(48455,'trends_uint','itemid',43873),(48456,'events','itemid',44055),(48457,'history','itemid',44055),(48458,'history_log','itemid',44055),(48459,'history_str','itemid',44055),(48460,'history_text','itemid',44055),(48461,'history_uint','itemid',44055),(48462,'trends','itemid',44055),(48463,'trends_uint','itemid',44055),(48464,'events','itemid',4),(48465,'history','itemid',4),(48466,'history_log','itemid',4),(48467,'history_str','itemid',4),(48468,'history_text','itemid',4),(48469,'history_uint','itemid',4),(48470,'trends','itemid',4),(48471,'trends_uint','itemid',4),(48472,'events','itemid',3),(48473,'history','itemid',3),(48474,'history_log','itemid',3),(48475,'history_str','itemid',3),(48476,'history_text','itemid',3),(48477,'history_uint','itemid',3),(48478,'trends','itemid',3),(48479,'trends_uint','itemid',3),(48480,'events','itemid',2),(48481,'history','itemid',2),(48482,'history_log','itemid',2),(48483,'history_str','itemid',2),(48484,'history_text','itemid',2),(48485,'history_uint','itemid',2),(48486,'trends','itemid',2),(48487,'trends_uint','itemid',2),(48488,'events','triggerid',23095),(48489,'events','itemid',1),(48490,'history','itemid',1),(48491,'history_log','itemid',1),(48492,'history_str','itemid',1),(48493,'history_text','itemid',1),(48494,'history_uint','itemid',1),(48495,'trends','itemid',1),(48496,'trends_uint','itemid',1),(48497,'events','triggerid',23106),(48498,'events','triggerid',23107),(48499,'events','triggerid',23108),(48500,'events','triggerid',23109),(48501,'events','triggerid',23110),(48502,'events','triggerid',23111),(48503,'events','itemid',79),(48504,'history','itemid',79),(48505,'history_log','itemid',79),(48506,'history_str','itemid',79),(48507,'history_text','itemid',79),(48508,'history_uint','itemid',79),(48509,'trends','itemid',79),(48510,'trends_uint','itemid',79),(48511,'events','itemid',80),(48512,'history','itemid',80),(48513,'history_log','itemid',80),(48514,'history_str','itemid',80),(48515,'history_text','itemid',80),(48516,'history_uint','itemid',80),(48517,'trends','itemid',80),(48518,'trends_uint','itemid',80),(48519,'events','itemid',81),(48520,'history','itemid',81),(48521,'history_log','itemid',81),(48522,'history_str','itemid',81),(48523,'history_text','itemid',81),(48524,'history_uint','itemid',81),(48525,'trends','itemid',81),(48526,'trends_uint','itemid',81),(48527,'events','itemid',82),(48528,'history','itemid',82),(48529,'history_log','itemid',82),(48530,'history_str','itemid',82),(48531,'history_text','itemid',82),(48532,'history_uint','itemid',82),(48533,'trends','itemid',82),(48534,'trends_uint','itemid',82),(48535,'events','itemid',83),(48536,'history','itemid',83),(48537,'history_log','itemid',83),(48538,'history_str','itemid',83),(48539,'history_text','itemid',83),(48540,'history_uint','itemid',83),(48541,'trends','itemid',83),(48542,'trends_uint','itemid',83),(48543,'events','itemid',84),(48544,'history','itemid',84),(48545,'history_log','itemid',84),(48546,'history_str','itemid',84),(48547,'history_text','itemid',84),(48548,'history_uint','itemid',84),(48549,'trends','itemid',84),(48550,'trends_uint','itemid',84); /*!40000 ALTER TABLE `housekeeper` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `hstgrp` -- DROP TABLE IF EXISTS `hstgrp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `hstgrp` ( `groupid` bigint unsigned NOT NULL, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `flags` int NOT NULL DEFAULT '0', `uuid` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `type` int NOT NULL DEFAULT '0', PRIMARY KEY (`groupid`), UNIQUE KEY `hstgrp_1` (`type`,`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `hstgrp` -- LOCK TABLES `hstgrp` WRITE; /*!40000 ALTER TABLE `hstgrp` DISABLE KEYS */; INSERT INTO `hstgrp` VALUES (1,'Templates',0,'7df96b18c230490a9a0a9e2307226338',1),(2,'Linux servers',0,'dc579cd7a1a34222933f24f52a68bcd8',0),(4,'Zabbix servers',0,'6f6799aa69e844b4b3918f779f2abf08',0),(5,'Discovered hosts',0,'f2481361f99448eea617b7b1d4765566',0),(6,'Virtual machines',0,'137f19e6e2dc4219b33553b812627bc2',0),(7,'Hypervisors',0,'1b837a3c078647049a0c00c61b4d57b5',0),(8,'Templates/Modules',0,'57b7ae836ca64446ba2c296389c009b7',1),(9,'Templates/Network devices',0,'36bff6c29af64692839d077febfc7079',1),(10,'Templates/Operating systems',0,'846977d1dfed4968bc5f8bdb363285bc',1),(11,'Templates/Server hardware',0,'e960332b3f6c46a1956486d4f3f99fce',1),(12,'Templates/Applications',0,'a571c0d144b14fd4a87a9d9b2aa9fcd6',1),(13,'Templates/Databases',0,'748ad4d098d447d492bb935c907f652f',1),(14,'Templates/Virtualization',0,'02e4df4f20b848e79267641790f241da',1),(15,'Templates/Telephony',0,'1d12408342854fd5a4436dd6d5d1bd4a',1),(16,'Templates/SAN',0,'7c2cb727f85b492d88cd56e17127c64d',1),(17,'Templates/Video surveillance',0,'d37f71c7e3f7469bab645852a69a2018',1),(18,'Templates/Power',0,'3dcd5bbe90534f9e8eb5c2d53756af63',1),(19,'Applications',0,'a571c0d144b14fd4a87a9d9b2aa9fcd6',0),(20,'Databases',0,'748ad4d098d447d492bb935c907f652f',0),(21,'Templates/Cloud',0,'c2c162144c2d4c5491c8801193af4945',1); /*!40000 ALTER TABLE `hstgrp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `httpstep` -- DROP TABLE IF EXISTS `httpstep`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `httpstep` ( `httpstepid` bigint unsigned NOT NULL, `httptestid` bigint unsigned NOT NULL, `name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `no` int NOT NULL DEFAULT '0', `url` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `timeout` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '15s', `posts` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `required` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `status_codes` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `follow_redirects` int NOT NULL DEFAULT '1', `retrieve_mode` int NOT NULL DEFAULT '0', `post_type` int NOT NULL DEFAULT '0', PRIMARY KEY (`httpstepid`), KEY `httpstep_1` (`httptestid`), CONSTRAINT `c_httpstep_1` FOREIGN KEY (`httptestid`) REFERENCES `httptest` (`httptestid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `httpstep` -- LOCK TABLES `httpstep` WRITE; /*!40000 ALTER TABLE `httpstep` DISABLE KEYS */; /*!40000 ALTER TABLE `httpstep` ENABLE KEYS */; UNLOCK TABLES; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `httpstep_insert` AFTER INSERT ON `httpstep` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (14,new.httpstepid,1,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `httpstep_update` AFTER UPDATE ON `httpstep` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (14,old.httpstepid,2,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `httpstep_delete` BEFORE DELETE ON `httpstep` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (14,old.httpstepid,3,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; -- -- Table structure for table `httpstep_field` -- DROP TABLE IF EXISTS `httpstep_field`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `httpstep_field` ( `httpstep_fieldid` bigint unsigned NOT NULL, `httpstepid` bigint unsigned NOT NULL, `type` int NOT NULL DEFAULT '0', `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, PRIMARY KEY (`httpstep_fieldid`), KEY `httpstep_field_1` (`httpstepid`), CONSTRAINT `c_httpstep_field_1` FOREIGN KEY (`httpstepid`) REFERENCES `httpstep` (`httpstepid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `httpstep_field` -- LOCK TABLES `httpstep_field` WRITE; /*!40000 ALTER TABLE `httpstep_field` DISABLE KEYS */; /*!40000 ALTER TABLE `httpstep_field` ENABLE KEYS */; UNLOCK TABLES; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `httpstep_field_insert` AFTER INSERT ON `httpstep_field` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (15,new.httpstep_fieldid,1,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `httpstep_field_update` AFTER UPDATE ON `httpstep_field` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (15,old.httpstep_fieldid,2,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `httpstep_field_delete` BEFORE DELETE ON `httpstep_field` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (15,old.httpstep_fieldid,3,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; -- -- Table structure for table `httpstepitem` -- DROP TABLE IF EXISTS `httpstepitem`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `httpstepitem` ( `httpstepitemid` bigint unsigned NOT NULL, `httpstepid` bigint unsigned NOT NULL, `itemid` bigint unsigned NOT NULL, `type` int NOT NULL DEFAULT '0', PRIMARY KEY (`httpstepitemid`), UNIQUE KEY `httpstepitem_1` (`httpstepid`,`itemid`), KEY `httpstepitem_2` (`itemid`), CONSTRAINT `c_httpstepitem_1` FOREIGN KEY (`httpstepid`) REFERENCES `httpstep` (`httpstepid`), CONSTRAINT `c_httpstepitem_2` FOREIGN KEY (`itemid`) REFERENCES `items` (`itemid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `httpstepitem` -- LOCK TABLES `httpstepitem` WRITE; /*!40000 ALTER TABLE `httpstepitem` DISABLE KEYS */; /*!40000 ALTER TABLE `httpstepitem` ENABLE KEYS */; UNLOCK TABLES; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `httpstepitem_insert` AFTER INSERT ON `httpstepitem` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (16,new.httpstepitemid,1,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `httpstepitem_update` AFTER UPDATE ON `httpstepitem` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (16,old.httpstepitemid,2,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `httpstepitem_delete` BEFORE DELETE ON `httpstepitem` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (16,old.httpstepitemid,3,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; -- -- Table structure for table `httptest` -- DROP TABLE IF EXISTS `httptest`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `httptest` ( `httptestid` bigint unsigned NOT NULL, `name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `delay` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '1m', `status` int NOT NULL DEFAULT '0', `agent` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'Zabbix', `authentication` int NOT NULL DEFAULT '0', `http_user` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `http_password` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `hostid` bigint unsigned NOT NULL, `templateid` bigint unsigned DEFAULT NULL, `http_proxy` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `retries` int NOT NULL DEFAULT '1', `ssl_cert_file` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `ssl_key_file` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `ssl_key_password` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `verify_peer` int NOT NULL DEFAULT '0', `verify_host` int NOT NULL DEFAULT '0', `uuid` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`httptestid`), UNIQUE KEY `httptest_2` (`hostid`,`name`), KEY `httptest_3` (`status`), KEY `httptest_4` (`templateid`), CONSTRAINT `c_httptest_2` FOREIGN KEY (`hostid`) REFERENCES `hosts` (`hostid`), CONSTRAINT `c_httptest_3` FOREIGN KEY (`templateid`) REFERENCES `httptest` (`httptestid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `httptest` -- LOCK TABLES `httptest` WRITE; /*!40000 ALTER TABLE `httptest` DISABLE KEYS */; /*!40000 ALTER TABLE `httptest` ENABLE KEYS */; UNLOCK TABLES; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `httptest_insert` AFTER INSERT ON `httptest` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (11,new.httptestid,1,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `httptest_update` AFTER UPDATE ON `httptest` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (11,old.httptestid,2,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `httptest_delete` BEFORE DELETE ON `httptest` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (11,old.httptestid,3,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; -- -- Table structure for table `httptest_field` -- DROP TABLE IF EXISTS `httptest_field`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `httptest_field` ( `httptest_fieldid` bigint unsigned NOT NULL, `httptestid` bigint unsigned NOT NULL, `type` int NOT NULL DEFAULT '0', `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, PRIMARY KEY (`httptest_fieldid`), KEY `httptest_field_1` (`httptestid`), CONSTRAINT `c_httptest_field_1` FOREIGN KEY (`httptestid`) REFERENCES `httptest` (`httptestid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `httptest_field` -- LOCK TABLES `httptest_field` WRITE; /*!40000 ALTER TABLE `httptest_field` DISABLE KEYS */; /*!40000 ALTER TABLE `httptest_field` ENABLE KEYS */; UNLOCK TABLES; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `httptest_field_insert` AFTER INSERT ON `httptest_field` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (12,new.httptest_fieldid,1,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `httptest_field_update` AFTER UPDATE ON `httptest_field` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (12,old.httptest_fieldid,2,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `httptest_field_delete` BEFORE DELETE ON `httptest_field` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (12,old.httptest_fieldid,3,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; -- -- Table structure for table `httptest_tag` -- DROP TABLE IF EXISTS `httptest_tag`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `httptest_tag` ( `httptesttagid` bigint unsigned NOT NULL, `httptestid` bigint unsigned NOT NULL, `tag` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `value` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', PRIMARY KEY (`httptesttagid`), KEY `httptest_tag_1` (`httptestid`), CONSTRAINT `c_httptest_tag_1` FOREIGN KEY (`httptestid`) REFERENCES `httptest` (`httptestid`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `httptest_tag` -- LOCK TABLES `httptest_tag` WRITE; /*!40000 ALTER TABLE `httptest_tag` DISABLE KEYS */; /*!40000 ALTER TABLE `httptest_tag` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `httptestitem` -- DROP TABLE IF EXISTS `httptestitem`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `httptestitem` ( `httptestitemid` bigint unsigned NOT NULL, `httptestid` bigint unsigned NOT NULL, `itemid` bigint unsigned NOT NULL, `type` int NOT NULL DEFAULT '0', PRIMARY KEY (`httptestitemid`), UNIQUE KEY `httptestitem_1` (`httptestid`,`itemid`), KEY `httptestitem_2` (`itemid`), CONSTRAINT `c_httptestitem_1` FOREIGN KEY (`httptestid`) REFERENCES `httptest` (`httptestid`), CONSTRAINT `c_httptestitem_2` FOREIGN KEY (`itemid`) REFERENCES `items` (`itemid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `httptestitem` -- LOCK TABLES `httptestitem` WRITE; /*!40000 ALTER TABLE `httptestitem` DISABLE KEYS */; /*!40000 ALTER TABLE `httptestitem` ENABLE KEYS */; UNLOCK TABLES; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `httptestitem_insert` AFTER INSERT ON `httptestitem` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (13,new.httptestitemid,1,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `httptestitem_update` AFTER UPDATE ON `httptestitem` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (13,old.httptestitemid,2,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_0900_ai_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`zabbix`@`localhost`*/ /*!50003 TRIGGER `httptestitem_delete` BEFORE DELETE ON `httptestitem` FOR EACH ROW insert into changelog (object,objectid,operation,clock) values (13,old.httptestitemid,3,unix_timestamp()) */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; -- -- Table structure for table `icon_map` -- DROP TABLE IF EXISTS `icon_map`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `icon_map` ( `iconmapid` bigint unsigned NOT NULL, `name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `default_iconid` bigint unsigned NOT NULL, PRIMARY KEY (`iconmapid`), UNIQUE KEY `icon_map_1` (`name`), KEY `icon_map_2` (`default_iconid`), CONSTRAINT `c_icon_map_1` FOREIGN KEY (`default_iconid`) REFERENCES `images` (`imageid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `icon_map` -- LOCK TABLES `icon_map` WRITE; /*!40000 ALTER TABLE `icon_map` DISABLE KEYS */; /*!40000 ALTER TABLE `icon_map` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `icon_mapping` -- DROP TABLE IF EXISTS `icon_mapping`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `icon_mapping` ( `iconmappingid` bigint unsigned NOT NULL, `iconmapid` bigint unsigned NOT NULL, `iconid` bigint unsigned NOT NULL, `inventory_link` int NOT NULL DEFAULT '0', `expression` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `sortorder` int NOT NULL DEFAULT '0', PRIMARY KEY (`iconmappingid`), KEY `icon_mapping_1` (`iconmapid`), KEY `icon_mapping_2` (`iconid`), CONSTRAINT `c_icon_mapping_1` FOREIGN KEY (`iconmapid`) REFERENCES `icon_map` (`iconmapid`) ON DELETE CASCADE, CONSTRAINT `c_icon_mapping_2` FOREIGN KEY (`iconid`) REFERENCES `images` (`imageid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `icon_mapping` -- LOCK TABLES `icon_mapping` WRITE; /*!40000 ALTER TABLE `icon_mapping` DISABLE KEYS */; /*!40000 ALTER TABLE `icon_mapping` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ids` -- DROP TABLE IF EXISTS `ids`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ids` ( `table_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `field_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `nextid` bigint unsigned NOT NULL, PRIMARY KEY (`table_name`,`field_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ids` -- LOCK TABLES `ids` WRITE; /*!40000 ALTER TABLE `ids` DISABLE KEYS */; INSERT INTO `ids` VALUES ('dashboard','dashboardid',87),('dashboard_page','dashboard_pageid',127),('functions','functionid',94),('graphs','graphid',40),('graphs_items','gitemid',162),('host_tag','hosttagid',5),('hosts','hostid',15),('hosts_groups','hostgroupid',15),('hosts_templates','hosttemplateid',15),('housekeeper','housekeeperid',48550),('interface','interfaceid',1),('items','itemid',84),('profiles','profileid',95),('triggers','triggerid',23150),('widget','widgetid',541),('widget_field','widget_fieldid',1322); /*!40000 ALTER TABLE `ids` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `images` -- DROP TABLE IF EXISTS `images`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `images` ( `imageid` bigint unsigned NOT NULL, `imagetype` int NOT NULL DEFAULT '0', `name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '0', `image` longblob NOT NULL, PRIMARY KEY (`imageid`), UNIQUE KEY `images_1` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `images` -- LOCK TABLES `images` WRITE; /*!40000 ALTER TABLE `images` DISABLE KEYS */; INSERT INTO `images` VALUES (1,1,'Cloud_(128)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0D\0\0\0IG=i\0\0\0sBIT|d\0\0\0 pHYs\0\0\r\\0\0\r\B(x\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0IDATx\\ \\W\\X_|\ؾqO+ \\\\\:J6p\n\\תնP+\]+VdAM\E\ v¾w\9_!$! \Ą\\9\s\e!\X\=\g[-\\a+㈌\\:\fx\1\\g,l~Ř&0\?L\s\\\r\\{\T\>\0\\Tx p\|\_\'11-3{\s\w\\)\,a^X\\Po~\\G\6TP0P\ MD\33&\,3K\c*\ʘI;_\g\n\+\Z_\n>}\T\g\+f\X>0f\@5\0\z\AP0av\\f`\NnŘV\\\=9\͏\\\굃o\rr\\\']\l;|\CvY\\\%b|_2y\Id\hGQ\"|:A`\Q\SJ\qV\Q\\7|G\\&\\nM\\'\Rr\'\>KⳉolI\"Ӊ{x\Z%4\_t\.^k\\\ \g\E\\0\\ԅU5х\`A(0\Vx\x\i\\b]D2e$2{D: e$?, )Rr\ER.\'\l\v\'\9w\翌&e\\\\Ӡ\\0\>\
\2,-#Ib(0\'\\Tr\/\M;{<\\7X_:\o\h\\MF\\'_*\^iy\$dQ\02e$CƂ\0=@0\\Qd\n\=0\ٸ\0f\`lB43͢^\\k>\ʗT\\0 \0d\)\Aa\0TaH,(`\Z|=û\u\e/\\V\nvs)\8֢\w@\+O\击v\T\\H~y\rՐjrzQ`\0m\0Ng8\q\;d\$\hp\ZJM7\4jc\>8|7\3|kK\\.\,j \ZRH5\0h\0\\%0(@\CN0\f\\\|\\u1\\Na,?e\P4\&\\U\$\\VI\}\4d,\0\Axq\\\\Q\\T7\zZ@VY70\\ e!\\UO\L0}(l\"\\Ip:}}&:=\0 \\GcE\'zu\\RyU}3)i$e5\rBPR]OJ(#\r\\d`\\`\g=ͳN]:\\b\a\(c*\\\o\j\\\}btn\E\дJ\i\'FK\\8U%1\ypM`trZMck&uM@9tM0ȵ\ U?\`P]I@; \aZ\?\/tFΘ\\\/._\'\h\.\={\GP\%\kaɥ15>r\\\9/\\\\}nO\i\\g{W\Z#\r\0%S߰]\\\^\ͭP\\L@@SF9E\\\n\\%/|\\″ۭ\\{ٵ\\\!+\\T\23H1\\\\z9(\\\pm`OKI`3r~v\\\ߴF\͵\r\\r\mB\Ԃ Ԩ o\\0CC/Uƃ.|,8)! \\\(M^}iɆ٠S8\P0P|c:\\\\\ݸ\+Y߁!M`\\\iLf\xյ\\\v\\\F\ZS@b5\nP\C\`0T\00\\H\\$1\IT7ZI#\0\_B\+\\\\V\\\0V#\0ag?.e&Y2y\ۚZۺ\\Is[\\0 `G\.\3<(ᩭ?zGT`\!\03 )\:K\\l\n4މH\\j\\$\\\ \\0P\00\0BY:u\Z`\p\S8\\P0@ 2V\%\}DU\<\\\c\\r\߃V}\\0\\^.̈́o<߾nim\\\\&]]\\6F`\0\\r\03\n\\\\\\$\z\x|l}\\uw\EK0dW\'\r1(f\\y9h\W0Ȅ\\c\0\\@5foKhh\\0B7\aWQ3:P\aj#\R\+P+\ :\Z2R\K%\0\\\\.\\C\k\930\\]GmÐ@f\08\$>`N\y\#}\ڝB\0\>t\G?w8\M#=&B00\0Å\r\0\\\\3w+t\Z\0|(\\z\+\?iKVa4 }\\1\H\\LhJ_g됾V-l N\\<\~\lNj\\\"\߮Yֵf\"єE\\u\\F\ZS\\\\{Á\=r\{|):\nw\@\~`ӆ\u\5U\0aP\@PRŠd,\\2C+lq\rN\q\\'\'C<\y\Q\\Zq\\2\\`\G\\#4cp\jz\\0u\BjX.ei#\n@}\\Z\%:l\N\Ɲͻ\}lL`|fq>\0e\\\\0~3\03\}`k\$0\Tv/\\PY%\\'b6bBQ: Š\E\\\\\\j\!\0gPtE\rƖa\0AzB[z-N>v\'<\ܪڵ\~~P \ì7XM|+\߽v\K\ξ\\^\\\$ܢ\\Z\٤;\\0\!)R\\Z68}\\nz\\\\$UCA`8w;m\\pN8H\\(GSvj)\\è;\\\\¨e\'^{\\]ǼH`Rȃ6p\\Ax`\\/(aP8\0fC\}̈́>a\0-\7\!UT-f)k̰\Jՠ\\n;\0,b\\3\fQUG(Z\\?_\notl\6<#\\ 2f\n%\~ìrI\;N\'\&*\ѩ;\\-AKmKZ\04,!u\\\\\\\c%\zɚmG\\oRC\4P\Df\\'>љ\\w\{_9\\\{\3T\\[ѩw\ҋ\3<\2\Bv\c\\m\B\0\AY\ =hdG\ $<\B`\tp\W%ЌffA\\\\~Ќl Ț\H To#(8Jq+GOHi}CaoP&X[Vn\hF6\\N\\?o%y@cE\MPN\\k|\]\\,Vm-6\\8wÞ\s\x\j8x(\Z\--6r$\6\[Qz\XY22\HCP\\N9g\f?p_n%Rlv/ĸ\\[NF{z\\}B\" >\\\\vh\\\Y\Y|\ottdWBB\\\\\!\f\$Z\\0\\\бrrrA\)++k\Հ6\'o\k )6\o)6\\QgUc l\аl%%%7o\\%\n\sᨍ\rl5Kب@\x.bB\F\!c\\G~J\]]۫\\%*\'&\\\Y\>$,,.//?:\ܼ\KY\o\M\n,Q\\\CU4\\6x\\w\TH\\V!]Hh\±o\~\'[\1?y瀩8\\uu\\\\.ih9\E3\\\0T\o\\\\B\}O\\'\\e|8c˪U\\\**hl% \\>o,+$__8\'¡Y^M0a\"`_,\^[gt\#b?ZZB!\\z\k\\\\G=\'\\\7mr\=E#˃\\\\x\\&\Ѐ \xx*(ުp\\\Aƍ+X\8G\r&7\h,|xbݺ+~\\={MDhmi\!+\r\詨<wpu]R\8ǃhr\n\/\\,\]\Zw\O|\'b3\"@1.3+\\6o\x\\>N \\\AcE\}66\AK<\p!%%\r\Z?m/[[أ\\g0ބYS\\fy\y\EbEC\n\>ȓ\\P]X(\\\\\r\2X\[\a\iSN˙p\\ M\ў9阍M\n\8Q..ЎyyyO\\4Bz\\ga\.^<\dHM1,o\Dmp\\u\,l\m/\\0\:bh\ [\LwKKKLG+(\\k\\%xz>\\C\[YU췳ۀo>\6Ԙ,oeee\\x\ƦGG_O\\tXÎ卶\pD\\\\K,NSfDU\su\0\0\0\0IENDB`'),(35,1,'House_(96)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0X\0\0\0`\0\0\0\\0\0\0sBIT|d\0\0\0 pHYs\0\0\na\0\0\na\J%\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0NIDATx\\Xg׆W:\3D$EEcD, EP\hi\Z[Ҥ HU\%t\"\%ƒ\0{\v`ٝv\\{]\\\\\\3\9\\h\0@\OEIDIJ\D[f1i7(i$A)1\Ym=7\\\V7\\q\ڵ2\\-\\N111j1\\\Ap\1\\KHz\\\?< F@!88\\\\\ n\\n[lm۶ ((\\ß\"\\\65\?\\y\\ t`\\L\7H71ZV(m-rDWuZgcدḇӽȰkaaa-\'O$@{yyc\ \0.?\\Z\vlDq\23\\\nB<x24\"\rq\E v\\V\\\\\\mnHq\Z\\Z\hr\\\\\\Nfz@h|l2Y\~\\ݔ\\K\#?+\\g\W\ҫnP~\ʯy\rh\a7GT A\\"7Dt\\0\\M\\"\\цTvd\m\\f}P~*ü\\X\vX *4\$Y\\9\ZiT+\xyx;h\"6t(\\\'b\"Di&B+F7!I\\댣bd\vs\Ps\DzPw\\\CL\rJ\Z#\Z$/\nr\" ĄLM\\g\r\Z\3 GA>\a\\\\\rrz\*ƊPup*VeV\m\o+\R[\n@#\HL;\x26s\rnEP\\21enjಲ5qTؙ\9K\D\^BА=2\\t\\\\"wƉ\m%b+d\\$h~\6H\Ica\\/\b\/D\Zq&Fƀsp\\\*\\ʢpg<<2\\ؐግ826vE56d\"&\nƍ|_p̦-w 4\r¹\)j\)b\\N\\0& b\0]}Sk丮A =\bqpRXc!C&\L5\\m\\!\\,AF1\3H[m]\<`L-ڰt-4M1H\rhy\"\'hA\p 1=k\ހ\0{mFa\ {\\\Ib k@Vc\\\\"@B\TE둻Cd7A\\%\B\\\rVQQ\\\GE\r\\R< 2\Z\L\\\߱A\;s@s\oMQR>|cƌFp\ \ޟ\"\{8\\C\E1hx7;-6<{9rw(\in**o45\[M\tuy rrr=~B\\FYS\mL\p\n \\<\ξ221\\Rtz\1ZF\Z=r\\\2\\J.\6hΚ.Y\d4I\\\c\\mAU4r_\"]\\n\V:=GENNCfur\6\͙)\>gd\" \\\!\\}|\äD\87tSJ\\Z\Z9\\\'!\z\\nhRxc\, \5\0\Z\d67\\\\Zt\ؠr3Gn\0m44\Z@\\q!##3\\\\@\JІHV\ϑ\H\2 &6\;\\fM\_AVWP\\\\.z\<4IΓL/J\n\JBfw3 \\$h.E\0N#78\\ O\ٽ\rڹ\/.芊\\p&dQ^!w\\JJB\\H\d4\\澈\r>\α\Eޣ\Ɔ\_ണ#7\&\ʪa\JJJRB\\IPHB\|$4I\3;)\\bK\\\\h^K,?\%\go\'\\\\\&\"C\\\dPLҶd,!Ȭ\\ܛ\\\\9TN \N}`Kꄭ-7\\\02~\\nCk&|Ts\2x)3 \ZA.fu3 \D( m\Il\q\r>\\h\\X-\\R\\\|\>f\a\0d\\"Qe1X|\r3)([!ˑH\LȽ靽\'*f\\/z1t\Ȇ\r\ /c\Q\\\Ew w\BJ bTK\re$h\\$h\Nbb\\66.)倫\Ȍ+[Y.#3\\\?\\H\\\lX\Z\ʪ5\PZ\nh\I\r{}\;\/Q\\\mw\bz\\n^M \rtYu\^wM\J:\R\Z\I\rL\\n\\rnEд2\ؠ*\\\'p@q62z\\pY!{Z\2NU\l݂\uk6J>\HV2]\\n\\n\wP\hɴ.)i\.+\+V\ɩ\\\\\Fj\#i\\M\PQ\Zn@bjws\\0\r\V\TEp^+侌X\n9\gO\AF\w_\.NN$\\;\\iy\\96V\5\\n\,6\Xcci\'\ޙb\N\KS\\\\)wgѢ7Tӓ\\\G\\\\w\IY\\\F Ьn\di\\"h\\fA\\Q-\'\se\jjJ \NS\\U\!.ܪǨ7lhh`0\g<\U\k\\}侮3%k\MN\vKƋ\Zdy\~\\T.\{s\\\\\ʠ\\\\%\JyL}M\\\*\F\d\;45\\'z\\]_%\\&&\IKp\Z\\\rrrJJJ={ƨ\\]\=-;O{gT\\OR\X\u11yc/_d8ϙ\\r,ܱgC\ljj*np|0\nov\ء\\\\z9A[\ڊd\\W_\ظ0Q\k\\\\o*,,ӏ=b\\'\\o\.Ϳ\\g\\\ȝ<}p5UKv\\\^d\\Assc\۱\ؼy\2233\\\\Q|0\\\\Nz b#\H\ZNJ\\r\\~\r\\ڎ\s\\\M\P\,\Z\\\\ZPNWVV2\c\pz3/soG\\u8r\\\7\\\;\\,/v\\'2,\\ gB\JA}_ZUUwt#ަ\\A\[n\_JW\\v)&n\!\1dI<\,\\^r\\"tWV \v\ږ#\5W^&\\S{]yhg4\ZM>\\f(R\\0U&\\'\ުq^~\U{].\\\Ӯ.1\[o4Xn\*Az]ݧE\;\\aд\\\\x$@i\g\3\\\rn\*A̜Qwt\Z%N\CH\Fs4$V\'){\\\\rߖ-[@շ\\\~K\,X\0\S]}\7w\~.?l;7\`\uƺ$-\\\:U\\ZA.Q!Iъ Dw`rs\D3O\\\\\y\̶Ҽ\Bd\\ ?RE&Sшs\\\UZ\\\dW𡳧O^\'_{\Ta(0f4%@\\}S\\F\6휦\l\\={h|l_o\\BD|\\\A[</bԍ0Md\\#i)D\\qD\YV\n<Ǒɒj2C\nR\z\n7@\n+\\\Br\?\+oGcWp\T\d0R\a^g^W,̇\"7/qc#(~]\Bw\ܡ\r;\\nW\\e\\fffE\"عt\\[OC\\y\ \\l0bI@%pZ\ B!FȽ\\\\\-\n)\\\8>E\Y\ֶ\ֆi;\k;\}\[.]Y~`\װ°\\\Yi45=E\\\{t\\\;^g^8Cuç\7\!\\d\L:S\A\\n)022(/dD\\kj:\\dx\\:9OE?\{cD\\y\\Ϟ!\WH\"PU0j\y\(\ڨ\x*G9}^0MBH\$\?\0\"ͫOJ\Z`UV8\\\\\"d\0\^\\u\\05I\0XJ\nE)ϼ\)@\\Ii]8}R\n \"\n\ AW\I_L1DO
Kv\\A{\=oA1\-\q)Y?XoǼps\\\\\\b`\i\A17\0k#앖$\A\\c:ϘL+Ϫ\gΜ!wl*\1\\\r\o\SL\T\\aݓ\'OA\CCCq }\At4#p6ЃKN1\\:1\\\c\\x\ 43 Z#\!W!r\\\!\\n!N\\n\\"w\\i*\}F`|:\-kP\\\\\,\Gn͏\\}\\ \:bP\"$\966F\u~pO\:tH\*\\|\'\|}\q\\8rg1 OA8=\Y\}oQ\\(}i \r\,;:rL [J/ݪe] DNmK7M\K\bVҍ#\g\\rJ\r\r\=ıhC \H\-y?35n1oi\'JfەyqˤRR\'\\"J\Wx8/c\uM\\/0\F$<=Ⰻ\0\ٙΚ\\^,HK6\\olHJ27\O0\\0R˩\0\$YC\ִ\r1Xo\0#\0}O\<@`\=\\Ϗ#\\\#\\S\\D\\\\\\W<\W43ӹz\r\\bA\\\0\iN\RS٩#s\e<6@0ˌ4S t\\1oh\**w\lD{\|Bj,G\\\.\\JFR\e<\\n\|Fc\\צ\:@~NO-XVȉn\\_xeL\\҆\rL0jw=\\\u\i3AAg\7\\H\:Д>&\0Ʌ\"\0n#\'Ӎ6A\\Q\Ԯͻ\y\\c=a+@8<\\\P38lb#T,qѹn\WQ@12Y&\\\ŌOZ: ,\C\Z!\㏋A\^\R3l0\\<ϣ0\#8\\0iy%6&fMq(\\\d\\ff\\\&00\0Zk\\\;\Y\|4\~\z\\;\9P>M0x(\\"ƹXI\{\I\6tgd+|n\\Gyak~\\\,\[⺅f2Z~ww\\\\Q12K\c\'\,%55\kxmԘ!\@\\\\\\6=\t#xbh\k\i\\)\k\07V(\plo\\\p\Z\0z}k\n+5U\M\\\\㿺f\0ϋ\z\Z\=\'4\\qfM\V>N\\g\\>A\Ldl\mevNM#}s\U@\\#ːm8\/\xKvK}E\y:LL8S:i\E\\I\\\0akJg\'Ag92Oq҆\\^\nk<}n\\0\bKh\\A:=L\HBZGpm\ag\\]z\\tq\0K<\'|&6:k$\\D\Qv9y\g\J\GSv\00\0\jϩV\\`gvn\+eZSh\W\|Q\4\-bR8p\.]eP0&sf\5\"F\r\0t\\E5\\y\&\}Y\\<\#\`\s\Χoߢ\U\\*ez\\r\\\\%\½^\\\ept?\H=\07^\a\\8p\"Y\\wZ\/_6\cd\\\\\n\O4K9ɞ1\Z8G-噱G\f3d M\\d$C6r\f[\[o\g\>)96\\\!6B\\d\\"@\$\\`ON =g\r H<\'s\}N?>.B\Ւ\2\9ˋ})R/@\Y\1U\:I\\0 b\'4\\\ZB%\\Z\U\\'\Lg@-\\1cI\WG\0\n)2Am\Y.bs~z~\n\\~A[8F妛t٘\$JUv\>&峌$| q\0 (A\<\$,p\\\\%h]-C]]\ \吂횑.J/ଙy\\\\2l,R]iÁ-K\noxԹqt\6#G_\YT\Zt!e\\\Iy)]\0ZS[d\+_iS\\t`\ZR\\s`\^ !`\\\)¯^Ћ@r\\Eɪ`\=N\\k-\qK/uفцZ%h\z\SE5eZ\9\MwξxȌ\\m\>Y \\@阿\\Zq
\s\̜3ss4m\tjЂ@MjB\~HD\G$!!\n*B џ@\"5!1\R\8qn3s\\.\w\:vF\-X\\Z߷\}\y`EO\;+]8\\܁BϞjw\~ۍʃR\nf\}i\}8;~x\\\1kzM\\\\\\\72]\\\-|K_\Z\_9\FM\+#;W}\kdVNT\\\U[W\\S\\@\\l_Ə\w#/\\8yμ\\\yYo=\7\{\\k\\\\(厩 (\3.2\X[U-sϞ\n\\\8i?>s|2\}\y\\\f\\m\M\{Ow~\>\_\\/\Cq;1>XhDZi:6ơs\Zp\.\ <\o/$~\Ɛ\G\\٥\\\\\w\\"\\\'\ZA4\\\\\u\\Ԇ\z\vIFk5i=lM[j\\ı\۷\C\':n\mM㕯uuo\5EKoX\Q˧\hȰ\N\G*J}\>B\\>̭\n4\bw\\Xï7\=nġ;\gbxJ9K\\\Ujoj\5Ո8\\0@E\?\X v{dN `f@L0@v\"dϹ\c\@ \0\\I\0\qd\\sAunr\cd
yRfJ8ú\\rM<\Qu=_D\2$Zkc,>\;\@ŌѤ%\0*\n\+\\L槬t&t(fi1\3-cs\t\FY2\\n>\nQotrt\n\\Ɉ\Ȗ2y\&&\$Rcqoa\Ͽ(\|\5\Sg\rSF~&)l\&\\M&M5\>c\\ q
C\\_TTTr)\n2mY \\\\\X\qE\'2j\͞=\\\2\UE)jwkjB;\c3T\B\HL@;\pK^F\\S6E-\>Z<.]\IO\ihW\W)jk?C%si\{Cx\r>ff/о7\ѣ\n\\`RBCK\Zѧ\\\]\\\\\-\!ssȌUH99o9\\\\9\\YGо\z!ar˵<\D3\:ѽ&ucN.ZE4\\\<_^I $V\\ĉl 9>CZ\EZ[\R-We\\3\3PM\ʽNNPU\\*KP\qq\+N\̙\\r-\ϒqǟK\;\?\\0\0\55ԝ\k<~\\0\ΞSȽv\\K\EY\q;f\C={\\\"\\SE!n7\0o`?[\}\ԍi\0yu\@8\\\\.\r\rZX\&&oO,Y{\R\\ആ\%vB\\e^\X\`\,\'slx1\\T\Ѣ\]\JGO+W:T/$m\\Zk4y\;hPCU\\\`\\\\0V\m\0Wl6Xy\\]ج\̊P\\z\Ԇ&=ytSUV\\`h\>ku\v=JdJ\sTn-\8#-\u\?r$\\q:DBM\\z\\0Ï:66piO\axxq*\*mFp0%\Z~y\\Ϗ-]\Zm;i\h\\S\,*\ \\~\\`\[Km\讥q^^\\/֮=\\|\c\vE\\\jmQ\t8q.Z9}ģgWrѼ\\o\Zjիy3\\ߓ\fϛWyp\2| U\#@x/^\\3n\;\\ɐ}PPK32 \͍`\\Ӧytٲ֣+z\\^;T~L\\\ahXϙ\~[*\\hV\\C[D_\Ǻ6z(\jӸK:\\0*\E0\nSQă\tce\\QC\\n\\Zf\\0\Y\NI0\\0\0vGVkҙIT~h\Zvpc\n\i*\G\Qq?O+\dIa(πG\$\2IP3&\\}/Q/x\nT\P>
VcWdf(\ȑ\\\\ 7~\\Cg\|\0\cz:\?<:\=\o\\)3q\,\np8YƸX8\*\0hp4vUr\es\"@:6\03\UMh\0&\a`\\)Qp@\\+\+o\_\ڸq\+\\\a\\"\vۭR\~\,\bQ\_ч\&d\r8P(\~η]cC\Ǟ\>\\\!&4eԊ3jؠM\\\%E)\bWw\RG;7LY\\\ul\.\n\ Ar\&r,~^\m
Mǎe+\(.Jy#lLVek j\r*EVTf^\M\$\Q\###e\1ݢi\ZC\~\Y\`\n\3\\'\Y+A\eT.\}B\.Tۭ\\U__\59=\Row\ڰ~ЯA֙\5\\t+f̗q^c\w\\nbN$#\\\]a\?FxU\S,\K\?2F\U\.2\lg[p\0ޅ\\($ozJ\)C\\,\p*A#>O\(cgQ\3\U\"\"\`N\_+5\[\\\\\\\;\ZJ\nh\"8?Оޥ_ICnYS𱋋\n}\i+fJo=י1\.^\6\]\\Lj\\Ct\\Q1ÚaM Ƹi\u\"\\\\\\\\Ifte)]\D\\ ѧ\\\\NE\w¢[}1E\\\\d\0^h;UB\!\J&E}y[\\\X\\\jcc484Hn[\ܑF&ś\a\_\\v~:sQ@\C\\zK9\nbJX?\\/\"\'a&\\\\5I\\=\\@GG\'UV\\Eɸ:B\`5{\r\rl\?\Z\D%^\_\"\&\h \F$\p0\\0e\^҂\\Z!,\\\JĦS)iaA\ak4]\\Z\qˍoAzM\w,WXF\@+G>{Yc-0\[a\ b \{\yQ\\\΄\Љ\c\\\\mщSgX݄M\\\\\JLZM\\n\L\\4\'&\q\0,\\kX\\\\x/:td^\V\z\\\b\0t\BKsV)\\'\/\v-!\\{\U+\?Zlq\\{~K0n|Seff&.kPEsRz\_DI\x\"E.FA~;}\uHVݤ\vq\\\\\t\cU\VPSC0%\߯\Đ\66>>R\UGIfQf*\
.,v\EY\\w\\n\\\Ewu\\Y\lK\\\Lٻ\\\8\\Z%M\\Z?Z\0\\g\0Y*\\G%^чl_\1162v鉿\
\\\?\G~\\&\ѐt:\r\Zy\\'w\ܹ\h\u𛂡\\Z\\D&)tuui\\\ЋNl\nr\.\\\l/ujZ\|I\%\\*\Z\;\`0f\V\Yx|J鼠\3\&\cC5,J\\rYt\\.\\y\˖Z\k\8F6ހ\of1\^H2tޞN\\\AͿ\\UVV:x\\D\h\K>D!\\\.+!YmE\p\Q\x\\Fq\\\\`шR:;\S\\t\,\Ϟ\_\Y/\\\r\\r n\H\\;l ;\~$](0d79~\$}\k/\AuR/؊d[:ki&\Y\S)4\h
)\~^\D(\\\29\#P\\Asc-l\\@86\p˾\\zzO]dGN\.\\\\w\\[\oe,.\\(T`r:\>\\!\!\Z=\͟~\{G\0\\vbo^\\ <3\L`x泗u\qٔ\\\\\\\eFTQ\~̯a+ps,\D.U1h_$۽H&\ҕ4\\\\"D\I8p\\\4\\\6v.?\=l6},g\\]4 \n+\q\v\?\0|$̄\"\\\Sp@X`X \n\/=\_\KC\0\\\\\\n\\\~\m@;z\8\\\^\\X\\DhM3օ\\n\0\\px\\.\'B\A|\Ș@B&8ψU\\ vl\4O\{o\cg`*\(b\\i]\- >7|-\\\͆xbiHڨ\\\\\\2\\0\\IJ+\1K\v.U\z\\\ib\+\|\\LDZKB5\IL\ns\4<\\\\??k[\Z\ɩ\=0e\s:\!C\C\?o\\~\\U\\0g\=0]B\G,\\\\M٭Zx&_ʜ\kEqMS-*\K \\@ӟ6\\T9e^0\(XlA\u\ѐ\\\\+g\0%,\ջ\\n6\e``f\\\^l\r\k`ώPY`\~\\ \0\:\rI\\ZS\0wn\4\\\صdœI\7\LV1s\@\+\B~?\Z\\nK\ܴ\\Xk\ZC,C) aPw\Z\\\G\i-\7=\\0,\F{\oC!qK\\\\E\\\\Rl\pІ\t2\E\\z\z$-\\/\\\=C\)N2~\ǡ\z\\^Լ^7*Ix\\YWP\\J0I$œ\Y\\\*흅g^\"\}{\d\0gKׅ\\\\\={\;k\`r6\\\\\
\\y\\\\\h-\\DmCd\\|\\\~w怣\\33,k&F(!MJ\#\6V\y\R.Ce`\$nݞC\9g\i~\\Y\\rI}\\\;\\I\[@ \\Q-Exd\R4\S(L\.\\x\qJ[;\\\\\}\"\e!۵\Z%Z\\M\0tchdEwg\ B|\5#_iV1r\i\@r\5-+\\\!V@_\\ܮ\'d\WVT\Z\"\\/\@Jj&\Z\\QWUN9.X\qK\բ\xc\S\T4рsc\\EA\$\K\03ϣ\W2\PDSs3zz1<
\\\p\@$2Y\\\Y\\\y.OMw \\\Seχb\y,\@b\`\6[4A+Ĥ*[WO\\ E\^\\\aEa\ M\8e1M\$v\\O\a\l}LZu\E(d%D\"\\\#\d2\Eƴ0c\c\\FB\\\<\\zqer p\{6b%XG7_J5>?1- ~;OIX\AhL%K\gh\1q\e\\}\\r(\\\\\\۰o|=x\I+ w+\\\\\|\\\EL&\jLҌ\Zy\$e ~ք\0\r\}M(\P>9x͑e\L\\e\CW\Jh⎏\$=\/G籡 \r >$4;08$-\\7^!\,.& \,>11y\\GJQ\\\Ҭ\9\\\Vcc\k\\t:.r<\/&z\\>\n\亂6^\'H`Hg\8j\~r<\0o\\ kqZ~1y/luV b\\\>\\ߏ\,pK3Kbefz\\\\r\\͛mpkd\k|,\\\\\#\7\~\6z\\\f0w\4\9`\umHZ\\\:!L_hH\\"\MܸQ\L\h|t\\\Z\X,\Z#\\.dC&%\\\@C\\};7#j[&qݽ\p\i}\\p\T_\]\6C
\0<\O\\Ʀ,y\tV\춅\\\\r֙繘\\\\\*\\Z\0n\ZȓP\\|\g}v\\ݻTT`SP]b5\Zf\cZ\ymX\\\V\r\/\\\½pF\ܪzӠ\Z\\\l\pZs\\'Q\[-&\"B(.\QT \Z\;Cz\Z`V\t8\/xk\0E\D\%m\\֑\6rgqpo\\i\>\*\\Z\0nm\mnn.\0=݃! `Vy0\\V[\\\ْ>)z8\Zۡl`F`ຟg\\\0J x{\?g\r\|\S\0\0\0\0IENDB`'),(52,1,'Modem_(24)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\0\0\0\0\0\05\~\0\0\0sBIT|d\0\0\0 pHYs\0\0\0\06\G\\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0mIDAT8ˍT]lSe~\O\\6[AB\\\\b ʦ\f\\`abY$!̌?78#$\Z\~[Eh\#,([kO{\w~}Oa-\M\\y\{\\\\\\!\\7tf\z\\,cZ\6{zz4l2 pՙqH\tZ˲A\\u\A3\obLooW\mg\tJ\n\\\\\x\H3xA\0ϋkB\[!Nw\\\n|p\GJɮ\\۷{\~a4\r8DH >a$7F\\`\Rg> Sb\h˥\\b\\A\!\\$G䞠m۰Lq\$O\\\Y\f(\\\G\\\\\\PukX,Lc04I&[4ڎC51Q\\Z\\%8p\\Ǖ;w=\\K\цSFFFPP\#\\\\r;gXW~\\\\\t\Vo\\dž)@8eyY\"\\ooLcgRq\u\9\آ\\aAU\`b\\q\\>\ܽg\!BD\{\bG{GPX>v\# I\SX>q\\\\M\J$\\-ߕj+?\"Wa\l\f\r\ىC6\/--A#{s)+Y!I[VJ\Upllll[\宮\[\\nmϯx1_=l\.2\M\*A/Jpڵ+W\\4#nۨX\@Ӂ}\'\kDQ>88` \P**m\3\\\\{܅\\I85~\ԧ\Z9wqffK|\\Oj4\Z_\\\(\\\?g.\+pkr`\\\Wd2\Z\Zz\\7nyU˧2L~nn\\\Y\\ \It<\\\\\\>\_\8\\0\0\0\0IENDB`'),(53,1,'Modem_(48)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\00\0\0\0\0\0\0\0\o\0\0\0sBIT|d\0\0\0 pHYs\0\01\0\01\(R\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0 \IDATX\\XpTg>\+\n^d\(\Z^\nU\nS*\a\rV\0\\"\ja\tձu:ZG\*ء3B[qhm;P+iBLH\$\\d7\\}H\(No\\\\\w\\s\jTU\\\\\V_-Ib$I$\"\'9s\\3\4H@\W˒T#\C, \0O$?\\\,\u ʲz>4D\IQ\G\1\\n\Q\8\"#k(KWDNSGW\\ T\YVcU\0Fc\\hB&\E\=GSJ\\Z\|\_\^}\Ex/_&\A$Rn^>L\32\~ǗU\\c4ر?}\/bײEv~2A:w\\bQ\\pQoo\'\I\P\\Y$#3+\OI`\r(\))\O۶m\%\\Wn\\\\\(2\:<L}>\\q`p8LN\0B\\I\X2rXȀ{&ycRvQ\B%S\\QiO\q^/.Q\ކ\\\'Iz\r\O.\r\r\rQ_\\\\\\].uvv\h\\t~%-\\Q0\IZf%2\S֎x(\Ԟ}\iᗤ(s2B`\r\mn\\0o\((Q|/\cB9\-zzzb,hOw7/^vde-<s5>\\k}6\\GQ\\0\\\\*\ۘcH\\^n]\\3+tX\\K\n\\:~\\r\nyG/@O\/\\\'a\\\\K\$\&0# &q@\W^Ț5k\Y\lߵg\\*24\?\\\\\\܆.\\(^O.wjeDu\@/ٺu뷗,Y\eExr\rW \\\\сp.y3r\\\vvII\\͛7\\\\\y16>\\Y&\\\\)\rϱ!ҬcXg:WnwH\i\\z\ww\-v[\0\0\0\0IENDB`'),(54,1,'Modem_(64)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0@\0\0\0\'\0\0\0N<\0\0\0sBIT|d\0\0\0 pHYs\0\0\\0\0\u85\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0uIDATh\\Yyp\u~ q\xJ ӎq \\=2(LiY^:>5\\ÏH\\V3\ދC\\8\cDYqPZk\\\\g\`yo\\r\'\".\
|X(\\\\U*5;;{gϞdyy4MKA\R\\\*\\ו\8|\\۶H2sBD\s\8\\0~y׳\\0\0\0\0IENDB`'),(63,1,'Network_adapter_(48)',_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0*\0\0\00\0\0\0g\\0\0\0sBIT|d\0\0\0 pHYs\0\01\0\01\(R\0\0\0tEXtSoftware\0www.inkscape.org\<\Z\0\0IDATX\\Y\\\\~\u3{ɎٛJb4QR!6\V\\C[h_B[+-\\\6\\\Z\\\23sf\\\\Y\'\l\Aq3\\\\\̜\\\\\IAo?9H_u`<&5MK\D\"Ữ뭯8pm@\\\pBQ<\\'Of&\YXX\\-\\Ɔ\\]\\ĉJ:.=z\\'}}}/ #|߯ax\\/\\\]\pwjkgdd$-ſ8<\\Ç\g٧ZZZť^_)P\\XT\DD\\\K[\Qp\qlնB\#\E).\Z闦.=\\vS\\G7DQ~O\E\MrsVtuu\rYm|PP\n\\dR\TtWE\\\\S\\r@ѻ3TJi+3AD\}~G,D\\AٗvU\;~\M@5p7](C\P\\"\\in\\ȓ\~ ?\0\\l{Wj`j\mۋ`\\\?\ػwoG\\Qw;\ \3ϰ?uM\\1;;[\UFA\\\\0{\Zn\$\ ƚ\HReYL|Q\\H\\Z`7\2*m\rF\`rP\\ \r&xk\0\\\"L$\ɦ\=kI5q/h874|S(n@2\\=I2}\jC\\\ʶ,Fa\r\>V 0\Dap3fھS\;{\kt\r*\0V-T:\4͠\lmM;\N\\'a\'Z?\L$6[j\=\\+?O~\ҵ\njEs\0\0L\\'n Ԍ\\@\C+LyB\R\\\r?\\ϗ&\'\':u\]6ˤ\\Ռo4#\H\~Ӷݚ\x5\uW]\^u;v\\Tڍ\Jeq\\@\X/F\\\z\]~\\\\Z,J\-\\,Ұ\^RKz\rMC\N\\mǭ9j[\g\ՎeUf{Z_.\"\00X2\X@\on\"\<\Ø\\m#֮i\x\\\cTTǾB쥦\s-8\e\]\"2vy\0y\"$\Y$H r;v\'F\i\\Z\뭺\p\T\\)kSm,ׯ\\Ku\n\\0\mlFGG;\r\Ÿ)|>\\0ók\\