-- MySQL dump 10.11
--
-- Host: localhost    Database: softdux_builder
-- ------------------------------------------------------
-- Server version	5.0.87-community

/*!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 */;
/*!40101 SET NAMES utf8 */;
/*!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 */;

--
-- Current Database: `softdux_builder`
--

CREATE DATABASE /*!32312 IF NOT EXISTS*/ `softdux_builder` /*!40100 DEFAULT CHARACTER SET latin1 */;

USE `softdux_builder`;

--
-- Table structure for table `block`
--

DROP TABLE IF EXISTS `block`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `block` (
  `block_id` int(11) NOT NULL default '0',
  `name` varchar(64) default NULL,
  `title` varchar(32) default NULL,
  `title_class` varchar(32) default NULL,
  `body_class` varchar(32) default NULL,
  `blk_order` smallint(6) default NULL,
  `position` varchar(16) default NULL,
  `is_enabled` smallint(6) default NULL,
  `is_cached` smallint(6) default NULL,
  `params` longtext,
  PRIMARY KEY  (`block_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `block`
--

LOCK TABLES `block` WRITE;
/*!40000 ALTER TABLE `block` DISABLE KEYS */;
INSERT INTO `block` VALUES (1,'Navigation_Block_Navigation','Admin menu','','',1,'AdminNav',1,0,'a:9:{s:15:\"startParentNode\";s:1:\"4\";s:10:\"startLevel\";s:1:\"0\";s:14:\"levelsToRender\";s:1:\"0\";s:9:\"collapsed\";s:1:\"1\";s:10:\"showAlways\";s:1:\"1\";s:12:\"cacheEnabled\";s:1:\"1\";s:11:\"breadcrumbs\";s:1:\"0\";s:8:\"renderer\";s:14:\"SimpleRenderer\";s:8:\"template\";s:0:\"\";}'),(2,'Navigation_Block_Navigation','User menu','','',1,'MainNav',1,0,'a:9:{s:15:\"startParentNode\";s:1:\"2\";s:10:\"startLevel\";s:1:\"0\";s:14:\"levelsToRender\";s:1:\"0\";s:9:\"collapsed\";s:1:\"1\";s:10:\"showAlways\";s:1:\"1\";s:12:\"cacheEnabled\";s:1:\"1\";s:11:\"breadcrumbs\";s:1:\"0\";s:8:\"renderer\";s:14:\"SimpleRenderer\";s:8:\"template\";s:0:\"\";}'),(3,'Navigation_Block_CategoryNav','Categories','','navWidget',1,'AdminCategory',0,1,'N;'),(4,'User_Block_Login','Login','','',5,'Right',1,0,'N;'),(5,'Default_Block_SampleRight1','Sample Right Block','','',5,'Right',0,0,'N;'),(6,'Publisher_Block_SiteNews','Site News','','',4,'Left',0,1,'N;'),(7,'Default_Block_Sample1','Community','','',7,'Right',0,1,'N;'),(8,'Default_Block_Sample2','Syndication','','',3,'Left',0,1,'N;'),(9,'Default_Block_Calendar','Calendar','','',5,'Left',0,1,'N;'),(10,'Publisher_Block_RecentHtmlArticles2','Recent articles','','',3,'Right',0,1,'N;'),(11,'User_Block_OnlineUsers','Online','','',6,'Left',0,0,'N;'),(12,'Export_Block_SampleRss','Latest Seagull News','','',2,'Left',0,1,'N;'),(13,'Publisher_Block_Html','Seagull Gear','','',6,'Right',0,0,'a:1:{s:4:\"html\";s:219:\"<a href=\"http://www.cafepress.com/seagullsystems\" title=\"Buy Seagull Gear\"><img src=\"http://seagullfiles.phpkitchen.com/images/seagull_gear.png\" alt=\"Buy Seagull gear and support the project\" title=\"Seagull Gear\" /></a>\";}'),(14,'Publisher_Block_Html','Donate','','',1,'Left',0,0,'a:1:{s:4:\"html\";s:252:\"<div class=\"alignCenter\">\r\n<a href=\"http://sf.net/donate/index.php?group_id=92482\"><img src=\"http://seagullfiles.phpkitchen.com/images/project-support.jpg\" border=\"0\" alt=\"Support The Seagull PHP Framework Project\" width=\"88\" height=\"32\" /></a>\r\n</div>\";}');
/*!40000 ALTER TABLE `block` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `block_assignment`
--

DROP TABLE IF EXISTS `block_assignment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `block_assignment` (
  `block_id` int(11) NOT NULL default '0',
  `section_id` int(11) NOT NULL default '0',
  PRIMARY KEY  (`block_id`,`section_id`),
  KEY `block_assignment_fk` (`block_id`),
  KEY `block_assignment_fk2` (`section_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `block_assignment`
--

LOCK TABLES `block_assignment` WRITE;
/*!40000 ALTER TABLE `block_assignment` DISABLE KEYS */;
INSERT INTO `block_assignment` VALUES (1,0),(2,0),(3,67),(3,69),(3,71),(3,73),(4,0),(5,0),(6,0),(7,0),(8,0),(9,6),(10,6),(11,6),(12,0),(13,0),(14,0);
/*!40000 ALTER TABLE `block_assignment` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `block_assignment_seq`
--

DROP TABLE IF EXISTS `block_assignment_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `block_assignment_seq` (
  `id` int(10) unsigned NOT NULL auto_increment,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=16 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `block_assignment_seq`
--

LOCK TABLES `block_assignment_seq` WRITE;
/*!40000 ALTER TABLE `block_assignment_seq` DISABLE KEYS */;
INSERT INTO `block_assignment_seq` VALUES (14);
/*!40000 ALTER TABLE `block_assignment_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `block_role`
--

DROP TABLE IF EXISTS `block_role`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `block_role` (
  `block_id` int(11) NOT NULL default '0',
  `role_id` int(11) NOT NULL default '0'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `block_role`
--

LOCK TABLES `block_role` WRITE;
/*!40000 ALTER TABLE `block_role` DISABLE KEYS */;
INSERT INTO `block_role` VALUES (1,1),(2,-2),(3,1),(4,-2),(5,-2),(6,-2),(7,-2),(8,-2),(9,-2),(10,-2),(11,-2),(12,-2),(13,-2),(14,-2);
/*!40000 ALTER TABLE `block_role` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `block_role_seq`
--

DROP TABLE IF EXISTS `block_role_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `block_role_seq` (
  `id` int(10) unsigned NOT NULL auto_increment,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `block_role_seq`
--

LOCK TABLES `block_role_seq` WRITE;
/*!40000 ALTER TABLE `block_role_seq` DISABLE KEYS */;
INSERT INTO `block_role_seq` VALUES (3);
/*!40000 ALTER TABLE `block_role_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `block_seq`
--

DROP TABLE IF EXISTS `block_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `block_seq` (
  `id` int(10) unsigned NOT NULL auto_increment,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=16 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `block_seq`
--

LOCK TABLES `block_seq` WRITE;
/*!40000 ALTER TABLE `block_seq` DISABLE KEYS */;
INSERT INTO `block_seq` VALUES (14);
/*!40000 ALTER TABLE `block_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `log_table`
--

DROP TABLE IF EXISTS `log_table`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `log_table` (
  `id` int(11) NOT NULL default '0',
  `logtime` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
  `ident` varchar(16) NOT NULL default '',
  `priority` int(11) NOT NULL default '0',
  `message` varchar(200) default NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `log_table`
--

LOCK TABLES `log_table` WRITE;
/*!40000 ALTER TABLE `log_table` DISABLE KEYS */;
/*!40000 ALTER TABLE `log_table` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `login`
--

DROP TABLE IF EXISTS `login`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `login` (
  `login_id` int(11) NOT NULL default '0',
  `usr_id` int(11) default NULL,
  `date_time` datetime default NULL,
  `remote_ip` varchar(16) default NULL,
  PRIMARY KEY  (`login_id`),
  KEY `usr_login_fk` (`usr_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `login`
--

LOCK TABLES `login` WRITE;
/*!40000 ALTER TABLE `login` DISABLE KEYS */;
INSERT INTO `login` VALUES (507,1000000046,'2007-11-28 08:11:32','58.137.81.9'),(506,1000000046,'2007-11-28 08:11:32','58.137.81.9'),(505,1000000046,'2007-11-28 02:57:19','58.137.81.10'),(504,1000000046,'2007-11-28 02:57:19','58.137.81.10'),(503,999999999,'2007-11-28 02:16:02','58.137.81.9'),(502,999999999,'2007-11-28 02:16:02','58.137.81.9'),(501,1000000047,'2007-11-28 02:13:51','58.137.81.9'),(500,1000000047,'2007-11-28 02:13:51','58.137.81.9'),(499,1000000000,'2007-11-28 02:08:06','58.137.81.9'),(498,1000000000,'2007-11-28 02:08:06','58.137.81.9'),(497,1000000000,'2007-11-27 10:45:02','58.137.81.9'),(496,1000000000,'2007-11-27 10:45:02','58.137.81.9'),(495,1000000000,'2007-11-26 10:16:31','58.137.81.10'),(494,1000000000,'2007-11-26 10:16:31','58.137.81.10'),(493,1000000000,'2007-11-26 09:41:07','58.137.81.10'),(492,1000000000,'2007-11-26 09:41:07','58.137.81.10'),(491,1000000000,'2007-11-26 09:34:25','58.137.81.10'),(490,1000000000,'2007-11-26 09:34:25','58.137.81.10'),(489,1000000000,'2007-11-26 08:57:43','196.25.255.214'),(488,1000000000,'2007-11-26 08:57:43','196.25.255.214'),(487,999999999,'2007-11-26 08:57:21','152.106.240.12'),(486,999999999,'2007-11-26 08:57:21','152.106.240.12'),(485,1000000000,'2007-11-26 08:57:17','198.54.202.210'),(484,1000000000,'2007-11-26 08:57:17','198.54.202.210'),(483,1000000000,'2007-11-26 08:56:30','198.54.202.210'),(482,1000000000,'2007-11-26 08:56:30','198.54.202.210'),(481,1000000000,'2007-11-26 08:47:27','196.25.255.210'),(480,1000000000,'2007-11-26 08:47:27','196.25.255.210'),(479,1000000000,'2007-11-26 08:47:24','196.25.255.210'),(478,1000000000,'2007-11-26 08:47:24','196.25.255.210'),(31,999999999,'2007-06-13 12:45:07','88.233.54.30'),(32,999999999,'2007-06-13 12:45:07','88.233.54.30'),(33,999999999,'2007-06-13 13:13:45','60.51.88.7'),(34,999999999,'2007-06-13 13:13:45','60.51.88.7'),(35,1000000004,'2007-06-15 10:17:40','196.25.255.210'),(36,1000000004,'2007-06-15 10:17:40','196.25.255.210'),(37,1000000004,'2007-06-15 12:48:03','196.25.255.194'),(38,1000000004,'2007-06-15 12:48:03','196.25.255.194'),(39,1000000004,'2007-06-15 12:57:46','198.54.202.218'),(40,1000000004,'2007-06-15 12:57:46','198.54.202.218'),(41,1000000004,'2007-06-15 13:23:19','198.54.202.195'),(42,1000000004,'2007-06-15 13:23:19','198.54.202.195'),(43,1000000004,'2007-06-15 14:27:05','198.54.202.226'),(44,1000000004,'2007-06-15 14:27:05','198.54.202.226'),(45,1000000004,'2007-06-15 14:31:54','198.54.202.210'),(46,1000000004,'2007-06-15 14:31:54','198.54.202.210'),(47,1000000004,'2007-06-16 08:37:16','198.54.202.214'),(48,1000000004,'2007-06-16 08:37:16','198.54.202.214'),(49,999999999,'2007-06-20 16:31:41','198.54.202.194'),(50,999999999,'2007-06-20 16:31:41','198.54.202.194'),(51,1000000006,'2007-06-20 16:39:07','41.243.57.40'),(52,1000000006,'2007-06-20 16:39:07','41.243.57.40'),(53,1000000006,'2007-06-20 16:54:56','198.54.202.195'),(54,1000000006,'2007-06-20 16:54:56','198.54.202.195'),(55,1000000006,'2007-06-20 17:14:00','196.25.255.195'),(56,1000000006,'2007-06-20 17:14:00','196.25.255.195'),(57,1000000007,'2007-06-20 20:28:29','196.11.241.41'),(58,1000000007,'2007-06-20 20:28:29','196.11.241.41'),(59,1000000007,'2007-06-20 21:08:18','196.11.241.41'),(60,1000000007,'2007-06-20 21:08:18','196.11.241.41'),(61,1000000007,'2007-06-21 06:16:56','196.25.255.210'),(62,1000000007,'2007-06-21 06:16:56','196.25.255.210'),(63,1000000007,'2007-06-21 06:18:39','196.25.255.218'),(64,1000000007,'2007-06-21 06:18:39','196.25.255.218'),(65,1000000007,'2007-06-21 09:10:00','198.54.202.218'),(66,1000000007,'2007-06-21 09:10:00','198.54.202.218'),(67,999999999,'2007-06-22 21:43:30','83.112.10.224'),(68,999999999,'2007-06-22 21:43:30','83.112.10.224'),(69,999999999,'2007-06-23 12:30:27','24.129.185.222'),(70,999999999,'2007-06-23 12:30:27','24.129.185.222'),(71,999999999,'2007-06-24 01:37:31','72.222.208.21'),(72,999999999,'2007-06-24 01:37:31','72.222.208.21'),(73,999999999,'2007-06-27 19:57:22','196.25.255.194'),(74,999999999,'2007-06-27 19:57:22','196.25.255.194'),(75,999999999,'2007-06-30 16:21:15','142.177.235.236'),(76,999999999,'2007-06-30 16:21:15','142.177.235.236'),(77,1000000009,'2007-07-01 17:14:26','41.241.175.236'),(78,1000000009,'2007-07-01 17:14:26','41.241.175.236'),(79,1000000010,'2007-07-01 19:07:53','196.11.241.40'),(80,1000000010,'2007-07-01 19:07:53','196.11.241.40'),(81,1000000011,'2007-07-02 07:19:18','203.197.151.138'),(82,1000000011,'2007-07-02 07:19:18','203.197.151.138'),(83,999999999,'2007-07-04 21:54:07','196.25.255.194'),(84,999999999,'2007-07-04 21:54:07','196.25.255.194'),(85,999999999,'2007-07-05 17:58:38','41.208.48.1'),(86,999999999,'2007-07-05 17:58:38','41.208.48.1'),(87,1000000013,'2007-07-05 18:25:29','41.208.48.1'),(88,1000000013,'2007-07-05 18:25:29','41.208.48.1'),(89,1000000013,'2007-07-05 20:18:09','41.208.48.1'),(90,1000000013,'2007-07-05 20:18:09','41.208.48.1'),(91,1000000015,'2007-07-06 08:39:10','196.31.153.50'),(92,1000000015,'2007-07-06 08:39:10','196.31.153.50'),(93,999999999,'2007-07-06 18:51:56','196.25.255.195'),(94,999999999,'2007-07-06 18:51:56','196.25.255.195'),(95,1000000011,'2007-07-07 10:16:16','61.246.232.246'),(96,1000000011,'2007-07-07 10:16:16','61.246.232.246'),(97,1000000016,'2007-07-08 20:40:57','196.25.255.195'),(98,1000000016,'2007-07-08 20:40:57','196.25.255.195'),(99,999999999,'2007-07-11 09:46:08','41.208.48.1'),(100,999999999,'2007-07-11 09:46:08','41.208.48.1'),(101,999999999,'2007-07-11 12:41:05','172.207.89.127'),(102,999999999,'2007-07-11 12:41:05','172.207.89.127'),(103,999999999,'2007-07-11 12:42:44','196.25.255.246'),(104,999999999,'2007-07-11 12:42:44','196.25.255.246'),(105,1000000017,'2007-07-11 20:43:45','41.244.207.24'),(106,1000000017,'2007-07-11 20:43:45','41.244.207.24'),(107,1000000017,'2007-07-12 07:13:03','198.54.202.195'),(108,1000000017,'2007-07-12 07:13:03','198.54.202.195'),(109,1000000017,'2007-07-12 07:14:09','198.54.202.210'),(110,1000000017,'2007-07-12 07:14:09','198.54.202.210'),(111,999999999,'2007-07-12 12:59:00','196.207.32.38'),(112,999999999,'2007-07-12 12:59:00','196.207.32.38'),(113,999999999,'2007-07-12 17:49:19','196.207.47.60'),(114,999999999,'2007-07-12 17:49:19','196.207.47.60'),(115,1000000019,'2007-07-12 20:46:50','41.206.160.2'),(116,1000000019,'2007-07-12 20:46:50','41.206.160.2'),(117,999999999,'2007-07-13 08:14:48','196.25.255.246'),(118,999999999,'2007-07-13 08:14:48','196.25.255.246'),(119,1000000019,'2007-07-13 19:55:59','41.206.160.2'),(120,1000000019,'2007-07-13 19:55:59','41.206.160.2'),(121,999999999,'2007-07-13 21:05:55','122.167.229.197'),(122,999999999,'2007-07-13 21:05:55','122.167.229.197'),(123,1000000020,'2007-07-14 07:18:27','196.207.40.212'),(124,1000000020,'2007-07-14 07:18:27','196.207.40.212'),(125,1000000021,'2007-07-14 11:53:49','209.203.50.157'),(126,1000000021,'2007-07-14 11:53:49','209.203.50.157'),(127,1000000020,'2007-07-14 14:16:11','196.207.40.212'),(128,1000000020,'2007-07-14 14:16:11','196.207.40.212'),(129,1000000020,'2007-07-15 08:29:54','196.207.40.212'),(130,1000000020,'2007-07-15 08:29:54','196.207.40.212'),(131,999999999,'2007-07-15 16:31:30','65.6.145.96'),(132,999999999,'2007-07-15 16:31:30','65.6.145.96'),(133,1000000022,'2007-07-16 11:52:21','41.206.160.2'),(134,1000000022,'2007-07-16 11:52:21','41.206.160.2'),(135,1000000022,'2007-07-16 12:00:06','41.206.160.2'),(136,1000000022,'2007-07-16 12:00:06','41.206.160.2'),(137,999999999,'2007-07-16 13:13:22','198.54.202.250'),(138,999999999,'2007-07-16 13:13:22','198.54.202.250'),(139,999999999,'2007-07-16 17:16:52','196.2.124.251'),(140,999999999,'2007-07-16 17:16:52','196.2.124.251'),(141,999999999,'2007-07-17 08:16:18','146.232.65.6'),(142,999999999,'2007-07-17 08:16:18','146.232.65.6'),(143,1000000023,'2007-07-17 12:00:04','196.25.255.195'),(144,1000000023,'2007-07-17 12:00:04','196.25.255.195'),(145,999999999,'2007-07-18 07:52:50','196.2.124.251'),(146,999999999,'2007-07-18 07:52:50','196.2.124.251'),(147,1000000026,'2007-07-18 10:12:49','41.206.160.2'),(148,1000000026,'2007-07-18 10:12:49','41.206.160.2'),(149,1000000000,'2007-07-18 10:16:15','196.25.255.210'),(150,1000000000,'2007-07-18 10:16:15','196.25.255.210'),(151,1000000027,'2007-07-18 12:13:01','41.206.160.2'),(152,1000000027,'2007-07-18 12:13:01','41.206.160.2'),(153,1000000027,'2007-07-18 12:26:30','41.206.160.2'),(154,1000000027,'2007-07-18 12:26:30','41.206.160.2'),(155,999999999,'2007-07-18 16:45:57','198.54.202.194'),(156,999999999,'2007-07-18 16:45:57','198.54.202.194'),(157,1000000028,'2007-07-19 04:38:54','168.210.208.52'),(158,1000000028,'2007-07-19 04:38:54','168.210.208.52'),(159,1000000028,'2007-07-19 05:22:12','168.210.208.52'),(160,1000000028,'2007-07-19 05:22:12','168.210.208.52'),(161,1000000028,'2007-07-19 06:58:01','168.210.208.52'),(162,1000000028,'2007-07-19 06:58:01','168.210.208.52'),(163,1000000028,'2007-07-19 07:04:17','168.210.208.52'),(164,1000000028,'2007-07-19 07:04:17','168.210.208.52'),(165,1000000028,'2007-07-19 07:39:44','168.210.208.52'),(166,1000000028,'2007-07-19 07:39:44','168.210.208.52'),(167,1000000028,'2007-07-19 16:04:03','198.54.202.195'),(168,1000000028,'2007-07-19 16:04:03','198.54.202.195'),(169,1000000028,'2007-07-19 16:11:52','198.54.202.195'),(170,1000000028,'2007-07-19 16:11:52','198.54.202.195'),(171,999999999,'2007-07-19 19:02:35','198.54.202.3'),(172,999999999,'2007-07-19 19:02:35','198.54.202.3'),(173,1000000028,'2007-07-20 08:14:41','168.210.208.52'),(174,1000000028,'2007-07-20 08:14:41','168.210.208.52'),(175,1000000028,'2007-07-20 08:27:55','168.210.208.52'),(176,1000000028,'2007-07-20 08:27:55','168.210.208.52'),(177,999999999,'2007-07-20 17:41:30','85.72.80.55'),(178,999999999,'2007-07-20 17:41:30','85.72.80.55'),(179,1000000029,'2007-07-22 14:11:32','201.58.55.86'),(180,1000000029,'2007-07-22 14:11:32','201.58.55.86'),(181,1000000029,'2007-07-22 14:12:09','201.58.55.86'),(182,1000000029,'2007-07-22 14:12:09','201.58.55.86'),(183,1000000029,'2007-07-22 14:29:23','201.58.55.86'),(184,1000000029,'2007-07-22 14:29:23','201.58.55.86'),(185,1000000029,'2007-07-22 14:30:56','201.58.55.86'),(186,1000000029,'2007-07-22 14:30:56','201.58.55.86'),(187,1000000029,'2007-07-22 17:32:01','201.58.55.86'),(188,1000000029,'2007-07-22 17:32:01','201.58.55.86'),(189,1000000030,'2007-07-22 17:40:54','201.58.55.86'),(190,1000000030,'2007-07-22 17:40:54','201.58.55.86'),(191,999999999,'2007-07-22 17:46:49','201.58.55.86'),(192,999999999,'2007-07-22 17:46:49','201.58.55.86'),(193,1000000030,'2007-07-22 17:52:42','201.58.55.86'),(194,1000000030,'2007-07-22 17:52:42','201.58.55.86'),(195,1000000028,'2007-07-23 07:47:10','168.210.208.52'),(196,1000000028,'2007-07-23 07:47:10','168.210.208.52'),(197,1000000028,'2007-07-24 10:14:13','168.210.208.52'),(198,1000000028,'2007-07-24 10:14:13','168.210.208.52'),(199,1000000028,'2007-07-24 10:22:20','168.210.208.52'),(200,1000000028,'2007-07-24 10:22:20','168.210.208.52'),(201,1000000028,'2007-07-24 11:38:12','168.210.208.52'),(202,1000000028,'2007-07-24 11:38:12','168.210.208.52'),(203,1000000028,'2007-07-24 13:09:10','168.210.208.52'),(204,1000000028,'2007-07-24 13:09:10','168.210.208.52'),(205,1000000028,'2007-07-24 14:13:03','168.210.208.52'),(206,1000000028,'2007-07-24 14:13:03','168.210.208.52'),(207,1000000028,'2007-07-24 14:15:37','198.54.202.195'),(208,1000000028,'2007-07-24 14:15:37','198.54.202.195'),(209,1000000028,'2007-07-24 15:59:03','198.54.202.210'),(210,1000000028,'2007-07-24 15:59:03','198.54.202.210'),(211,1000000028,'2007-07-24 16:07:54','196.25.255.210'),(212,1000000028,'2007-07-24 16:07:54','196.25.255.210'),(213,1000000028,'2007-07-24 20:35:27','198.54.202.210'),(214,1000000028,'2007-07-24 20:35:27','198.54.202.210'),(215,1000000028,'2007-07-25 05:56:24','168.210.208.52'),(216,1000000028,'2007-07-25 05:56:24','168.210.208.52'),(217,1000000028,'2007-07-25 05:57:25','168.210.208.52'),(218,1000000028,'2007-07-25 05:57:25','168.210.208.52'),(219,1000000028,'2007-07-25 06:12:45','168.210.208.52'),(220,1000000028,'2007-07-25 06:12:45','168.210.208.52'),(221,1000000028,'2007-07-25 09:39:46','196.25.255.195'),(222,1000000028,'2007-07-25 09:39:46','196.25.255.195'),(223,1000000028,'2007-07-25 10:01:00','168.210.208.52'),(224,1000000028,'2007-07-25 10:01:00','168.210.208.52'),(225,999999999,'2007-07-25 10:25:49','196.46.138.2'),(226,999999999,'2007-07-25 10:25:49','196.46.138.2'),(227,999999999,'2007-07-25 10:28:20','196.46.138.2'),(228,999999999,'2007-07-25 10:28:20','196.46.138.2'),(229,1000000028,'2007-07-25 11:04:35','41.206.160.2'),(230,1000000028,'2007-07-25 11:04:35','41.206.160.2'),(231,1000000028,'2007-07-25 11:05:35','168.210.208.52'),(232,1000000028,'2007-07-25 11:05:35','168.210.208.52'),(233,1000000028,'2007-07-25 11:46:17','168.210.208.52'),(234,1000000028,'2007-07-25 11:46:17','168.210.208.52'),(235,1000000028,'2007-07-25 17:05:48','196.25.255.210'),(236,1000000028,'2007-07-25 17:05:48','196.25.255.210'),(237,1000000028,'2007-07-25 18:07:59','198.54.202.210'),(238,1000000028,'2007-07-25 18:07:59','198.54.202.210'),(239,1000000028,'2007-07-25 18:27:25','198.54.202.210'),(240,1000000028,'2007-07-25 18:27:25','198.54.202.210'),(241,1000000028,'2007-07-25 18:42:21','198.54.202.210'),(242,1000000028,'2007-07-25 18:42:21','198.54.202.210'),(243,1000000028,'2007-07-26 05:47:26','168.210.208.52'),(244,1000000028,'2007-07-26 05:47:26','168.210.208.52'),(245,1000000028,'2007-07-26 10:07:42','168.210.208.52'),(246,1000000028,'2007-07-26 10:07:42','168.210.208.52'),(247,1000000028,'2007-07-26 11:22:46','168.210.208.52'),(248,1000000028,'2007-07-26 11:22:46','168.210.208.52'),(249,1000000028,'2007-07-26 11:52:15','168.210.208.52'),(250,1000000028,'2007-07-26 11:52:15','168.210.208.52'),(251,1000000028,'2007-07-26 15:11:30','198.54.202.210'),(252,1000000028,'2007-07-26 15:11:30','198.54.202.210'),(253,1000000028,'2007-07-26 16:17:48','198.54.202.210'),(254,1000000028,'2007-07-26 16:17:48','198.54.202.210'),(255,1000000028,'2007-07-26 17:19:31','198.54.202.210'),(256,1000000028,'2007-07-26 17:19:31','198.54.202.210'),(257,1000000028,'2007-07-26 18:49:36','196.25.255.210'),(258,1000000028,'2007-07-26 18:49:36','196.25.255.210'),(259,1000000028,'2007-07-26 18:56:25','196.25.255.210'),(260,1000000028,'2007-07-26 18:56:25','196.25.255.210'),(261,1000000028,'2007-07-27 07:00:58','168.210.208.52'),(262,1000000028,'2007-07-27 07:00:58','168.210.208.52'),(263,1000000028,'2007-07-27 09:39:51','168.210.208.52'),(264,1000000028,'2007-07-27 09:39:51','168.210.208.52'),(265,1000000028,'2007-07-27 12:25:19','168.210.208.52'),(266,1000000028,'2007-07-27 12:25:19','168.210.208.52'),(267,1000000028,'2007-07-27 15:31:08','196.25.255.210'),(268,1000000028,'2007-07-27 15:31:08','196.25.255.210'),(269,1000000028,'2007-07-27 15:39:50','198.54.202.210'),(270,1000000028,'2007-07-27 15:39:50','198.54.202.210'),(271,1000000028,'2007-07-27 15:52:59','196.25.255.210'),(272,1000000028,'2007-07-27 15:52:59','196.25.255.210'),(273,1000000028,'2007-07-27 16:17:25','198.54.202.210'),(274,1000000028,'2007-07-27 16:17:25','198.54.202.210'),(275,1000000028,'2007-07-27 17:07:57','198.54.202.210'),(276,1000000028,'2007-07-27 17:07:57','198.54.202.210'),(277,1000000028,'2007-07-27 19:13:01','196.25.255.210'),(278,1000000028,'2007-07-27 19:13:01','196.25.255.210'),(279,1000000028,'2007-07-28 09:38:08','196.25.255.210'),(280,1000000028,'2007-07-28 09:38:08','196.25.255.210'),(281,999999999,'2007-07-29 11:40:52','198.54.202.195'),(282,999999999,'2007-07-29 11:40:52','198.54.202.195'),(283,1000000028,'2007-07-29 13:43:39','196.25.255.210'),(284,1000000028,'2007-07-29 13:43:39','196.25.255.210'),(285,1000000028,'2007-07-31 05:58:03','168.210.208.52'),(286,1000000028,'2007-07-31 05:58:03','168.210.208.52'),(287,1000000028,'2007-07-31 07:29:05','168.210.208.52'),(288,1000000028,'2007-07-31 07:29:05','168.210.208.52'),(289,1000000028,'2007-07-31 09:20:53','168.210.208.52'),(290,1000000028,'2007-07-31 09:20:53','168.210.208.52'),(291,1000000000,'2007-07-31 16:21:43','198.54.202.214'),(292,1000000000,'2007-07-31 16:21:43','198.54.202.214'),(293,1000000000,'2007-07-31 17:31:14','196.25.255.210'),(294,1000000000,'2007-07-31 17:31:14','196.25.255.210'),(295,1000000003,'2007-07-31 17:38:27','196.25.255.210'),(296,1000000000,'2007-08-01 00:01:27','203.197.151.138'),(297,1000000000,'2007-08-01 00:01:27','203.197.151.138'),(298,1000000028,'2007-08-01 05:05:51','168.210.208.52'),(299,1000000028,'2007-08-01 05:05:51','168.210.208.52'),(300,1000000028,'2007-08-01 05:07:50','168.210.208.52'),(301,1000000028,'2007-08-01 05:07:50','168.210.208.52'),(302,1000000028,'2007-08-01 05:22:52','168.210.208.52'),(303,1000000028,'2007-08-01 05:22:52','168.210.208.52'),(304,1000000028,'2007-08-01 06:43:30','196.25.255.214'),(305,1000000028,'2007-08-01 06:43:30','196.25.255.214'),(306,1000000028,'2007-08-01 07:19:13','203.197.151.138'),(307,1000000028,'2007-08-01 07:19:13','203.197.151.138'),(308,1000000028,'2007-08-01 07:21:35','203.197.151.138'),(309,1000000028,'2007-08-01 07:21:35','203.197.151.138'),(310,1000000032,'2007-08-01 07:46:25','203.197.151.138'),(311,1000000032,'2007-08-01 07:46:25','203.197.151.138'),(312,1000000032,'2007-08-01 07:53:14','203.197.151.138'),(313,1000000032,'2007-08-01 07:53:14','203.197.151.138'),(314,1000000032,'2007-08-01 07:57:16','203.197.151.138'),(315,1000000032,'2007-08-01 07:57:16','203.197.151.138'),(316,1000000032,'2007-08-01 08:06:28','203.197.151.138'),(317,1000000032,'2007-08-01 08:06:28','203.197.151.138'),(318,1000000028,'2007-08-01 08:39:19','168.210.208.52'),(319,1000000028,'2007-08-01 08:39:19','168.210.208.52'),(320,1000000028,'2007-08-01 09:00:26','168.210.208.52'),(321,1000000028,'2007-08-01 09:00:26','168.210.208.52'),(322,1000000028,'2007-08-01 10:11:44','203.197.151.138'),(323,1000000028,'2007-08-01 10:11:44','203.197.151.138'),(324,1000000028,'2007-08-01 10:13:43','168.210.208.52'),(325,1000000028,'2007-08-01 10:13:43','168.210.208.52'),(326,1000000028,'2007-08-01 12:09:00','168.210.208.52'),(327,1000000028,'2007-08-01 12:09:00','168.210.208.52'),(328,1000000028,'2007-08-01 15:31:43','203.197.151.138'),(329,1000000028,'2007-08-01 15:31:43','203.197.151.138'),(330,999999999,'2007-08-01 15:47:17','203.147.0.44'),(331,999999999,'2007-08-01 15:47:17','203.147.0.44'),(332,999999999,'2007-08-01 19:19:54','196.25.255.214'),(333,999999999,'2007-08-01 19:19:54','196.25.255.214'),(334,1000000033,'2007-08-01 21:15:50','198.54.202.195'),(335,1000000033,'2007-08-01 21:15:50','198.54.202.195'),(336,1000000033,'2007-08-02 06:10:55','198.54.202.195'),(337,1000000033,'2007-08-02 06:10:55','198.54.202.195'),(338,999999999,'2007-08-02 17:42:37','196.11.241.43'),(339,999999999,'2007-08-02 17:42:37','196.11.241.43'),(340,1000000034,'2007-08-02 17:54:15','196.11.241.43'),(341,1000000034,'2007-08-02 17:54:15','196.11.241.43'),(342,1000000034,'2007-08-02 18:06:34','196.11.241.43'),(343,1000000034,'2007-08-02 18:06:34','196.11.241.43'),(344,1000000034,'2007-08-02 18:50:15','196.11.241.43'),(345,1000000034,'2007-08-02 18:50:15','196.11.241.43'),(346,1000000034,'2007-08-02 19:09:47','196.11.241.43'),(347,1000000034,'2007-08-02 19:09:47','196.11.241.43'),(348,1000000034,'2007-08-02 19:13:26','196.11.241.43'),(349,1000000034,'2007-08-02 19:13:26','196.11.241.43'),(350,1000000000,'2007-08-02 19:35:54','196.25.255.218'),(351,1000000000,'2007-08-02 19:35:54','196.25.255.218'),(352,999999999,'2007-08-03 06:20:20','203.147.0.44'),(353,999999999,'2007-08-03 06:20:20','203.147.0.44'),(354,999999999,'2007-08-03 07:21:33','203.147.0.44'),(355,999999999,'2007-08-03 07:21:33','203.147.0.44'),(356,999999999,'2007-08-03 07:30:33','203.147.0.44'),(357,999999999,'2007-08-03 07:30:33','203.147.0.44'),(358,999999999,'2007-08-03 10:57:59','203.147.0.44'),(359,999999999,'2007-08-03 10:57:59','203.147.0.44'),(360,1000000033,'2007-08-03 12:49:53','196.25.255.194'),(361,1000000033,'2007-08-03 12:49:53','196.25.255.194'),(362,999999999,'2007-08-06 04:02:37','62.231.244.177'),(363,999999999,'2007-08-06 04:02:37','62.231.244.177'),(364,999999999,'2007-08-06 04:36:58','62.231.244.177'),(365,999999999,'2007-08-06 04:36:58','62.231.244.177'),(366,999999999,'2007-08-06 07:27:46','62.231.244.177'),(367,999999999,'2007-08-06 07:27:46','62.231.244.177'),(368,999999999,'2007-08-09 11:31:22','198.54.202.194'),(369,999999999,'2007-08-09 11:31:22','198.54.202.194'),(370,999999999,'2007-08-14 10:21:48','62.231.244.177'),(371,999999999,'2007-08-14 10:21:48','62.231.244.177'),(372,1000000000,'2007-10-10 22:31:33','196.25.255.195'),(373,1000000000,'2007-10-10 22:31:33','196.25.255.195'),(374,1000000035,'2007-10-10 22:56:46','198.54.202.210'),(375,1000000035,'2007-10-10 22:56:46','198.54.202.210'),(376,1000000036,'2007-10-11 05:41:31','196.15.224.65'),(377,1000000036,'2007-10-11 05:41:31','196.15.224.65'),(378,999999999,'2007-10-11 06:13:37','198.54.202.194'),(379,999999999,'2007-10-11 06:13:37','198.54.202.194'),(380,1000000037,'2007-10-11 10:17:27','198.54.202.195'),(381,1000000037,'2007-10-11 10:17:27','198.54.202.195'),(382,999999999,'2007-10-11 12:18:29','196.25.255.246'),(383,999999999,'2007-10-11 12:18:29','196.25.255.246'),(384,999999999,'2007-10-12 12:15:29','196.209.251.3'),(385,999999999,'2007-10-12 12:15:29','196.209.251.3'),(386,999999999,'2007-10-13 20:39:21','198.54.202.246'),(387,999999999,'2007-10-13 20:39:21','198.54.202.246'),(388,999999999,'2007-10-17 21:01:31','207.65.77.126'),(389,999999999,'2007-10-17 21:01:31','207.65.77.126'),(390,1000000040,'2007-10-18 06:59:47','196.207.40.213'),(391,1000000040,'2007-10-18 06:59:47','196.207.40.213'),(392,999999999,'2007-10-18 17:41:07','198.54.202.226'),(393,999999999,'2007-10-18 17:41:07','198.54.202.226'),(394,999999999,'2007-10-20 12:10:32','196.25.253.13'),(395,999999999,'2007-10-20 12:10:32','196.25.253.13'),(396,999999999,'2007-10-20 14:35:04','196.25.253.13'),(397,999999999,'2007-10-20 14:35:04','196.25.253.13'),(398,1000000040,'2007-10-22 14:35:55','196.207.40.213'),(399,1000000040,'2007-10-22 14:35:55','196.207.40.213'),(400,999999999,'2007-10-29 07:53:53','196.34.147.100'),(401,999999999,'2007-10-29 07:53:53','196.34.147.100'),(402,999999999,'2007-11-02 11:26:00','196.41.30.5'),(403,999999999,'2007-11-02 11:26:00','196.41.30.5'),(404,1000000042,'2007-11-03 11:53:48','198.54.202.195'),(405,1000000042,'2007-11-03 11:53:48','198.54.202.195'),(406,1000000042,'2007-11-03 11:57:40','198.54.202.210'),(407,1000000042,'2007-11-03 11:57:40','198.54.202.210'),(408,1000000044,'2007-11-15 19:35:03','198.54.202.210'),(409,1000000044,'2007-11-15 19:35:03','198.54.202.210'),(410,1000000044,'2007-11-15 19:41:09','196.25.255.195'),(411,1000000044,'2007-11-15 19:41:09','196.25.255.195'),(412,999999999,'2007-11-17 15:32:16','196.25.255.210'),(413,999999999,'2007-11-17 15:32:16','196.25.255.210'),(414,1000000044,'2007-11-17 15:34:31','196.25.255.210'),(415,1000000044,'2007-11-17 15:34:31','196.25.255.210'),(416,1000000044,'2007-11-17 15:46:12','196.25.255.210'),(417,1000000044,'2007-11-17 15:46:12','196.25.255.210'),(418,1000000000,'2007-11-17 16:12:51','198.54.202.218'),(419,1000000000,'2007-11-17 16:12:51','198.54.202.218'),(420,1000000000,'2007-11-17 16:22:15','198.54.202.210'),(421,1000000000,'2007-11-17 16:22:15','198.54.202.210'),(422,1000000045,'2007-11-17 16:29:37','41.241.230.130'),(423,1000000045,'2007-11-17 16:29:37','41.241.230.130'),(424,1000000044,'2007-11-22 15:58:09','196.25.255.210'),(425,1000000044,'2007-11-22 15:58:09','196.25.255.210'),(426,1000000044,'2007-11-22 15:59:35','198.54.202.210'),(427,1000000044,'2007-11-22 15:59:35','198.54.202.210'),(428,1000000044,'2007-11-22 16:31:51','155.239.153.248'),(429,1000000044,'2007-11-22 16:31:51','155.239.153.248'),(430,999999999,'2007-11-22 17:10:53','58.137.81.10'),(431,999999999,'2007-11-22 17:10:53','58.137.81.10'),(432,1000000044,'2007-11-23 06:49:54','58.137.81.9'),(433,1000000044,'2007-11-23 06:49:54','58.137.81.9'),(434,999999999,'2007-11-23 06:51:58','58.137.81.9'),(435,999999999,'2007-11-23 06:51:58','58.137.81.9'),(436,1000000044,'2007-11-25 17:42:45','198.54.202.210'),(437,1000000044,'2007-11-25 17:42:45','198.54.202.210'),(438,1000000044,'2007-11-25 17:43:20','196.25.255.210'),(439,1000000044,'2007-11-25 17:43:20','196.25.255.210'),(440,1000000000,'2007-11-25 17:45:47','198.54.202.210'),(441,1000000000,'2007-11-25 17:45:47','198.54.202.210'),(442,1000000000,'2007-11-25 17:49:02','196.25.255.210'),(443,1000000000,'2007-11-25 17:49:02','196.25.255.210'),(444,1000000000,'2007-11-25 17:50:09','198.54.202.210'),(445,1000000000,'2007-11-25 17:50:09','198.54.202.210'),(446,1000000000,'2007-11-25 18:43:59','196.25.255.210'),(447,1000000000,'2007-11-25 18:43:59','196.25.255.210'),(448,1000000000,'2007-11-25 18:44:40','198.54.202.210'),(449,1000000000,'2007-11-25 18:44:40','198.54.202.210'),(450,1000000000,'2007-11-25 18:46:40','198.54.202.210'),(451,1000000000,'2007-11-25 18:46:40','198.54.202.210'),(452,999999999,'2007-11-26 01:13:16','58.137.81.9'),(453,999999999,'2007-11-26 01:13:16','58.137.81.9'),(454,1000000000,'2007-11-26 01:14:47','58.137.81.9'),(455,1000000000,'2007-11-26 01:14:47','58.137.81.9'),(456,1000000000,'2007-11-26 01:21:11','58.137.81.9'),(457,1000000000,'2007-11-26 01:21:11','58.137.81.9'),(458,1000000047,'2007-11-26 01:29:07','58.137.81.9'),(459,1000000047,'2007-11-26 01:29:07','58.137.81.9'),(460,999999999,'2007-11-26 01:30:12','58.137.81.9'),(461,999999999,'2007-11-26 01:30:12','58.137.81.9'),(462,1000000000,'2007-11-26 06:43:37','198.54.202.210'),(463,1000000000,'2007-11-26 06:43:37','198.54.202.210'),(464,1000000000,'2007-11-26 06:48:09','196.25.255.210'),(465,1000000000,'2007-11-26 06:48:09','196.25.255.210'),(466,1000000000,'2007-11-26 06:51:23','196.25.255.210'),(467,1000000000,'2007-11-26 06:51:23','196.25.255.210'),(468,1000000000,'2007-11-26 08:04:23','196.25.255.210'),(469,1000000000,'2007-11-26 08:04:23','196.25.255.210'),(470,1000000000,'2007-11-26 08:04:57','198.54.202.210'),(471,1000000000,'2007-11-26 08:04:57','198.54.202.210'),(472,1000000000,'2007-11-26 08:05:50','198.54.202.210'),(473,1000000000,'2007-11-26 08:05:50','198.54.202.210'),(474,1000000000,'2007-11-26 08:06:21','196.25.255.210'),(475,1000000000,'2007-11-26 08:06:21','196.25.255.210'),(476,1000000000,'2007-11-26 08:29:20','196.25.255.210'),(477,1000000000,'2007-11-26 08:29:20','196.25.255.210'),(508,1000000046,'2007-11-29 01:45:29','58.137.81.9'),(509,1000000046,'2007-11-29 01:45:29','58.137.81.9'),(510,999999999,'2007-11-30 21:53:36','196.12.174.134'),(511,999999999,'2007-11-30 21:53:36','196.12.174.134'),(512,999999999,'2007-12-10 14:28:26','193.226.47.195'),(513,999999999,'2007-12-10 14:28:26','193.226.47.195'),(514,999999999,'2007-12-12 15:19:10','196.209.251.3'),(515,999999999,'2007-12-12 15:19:10','196.209.251.3'),(516,999999999,'2007-12-18 11:49:36','196.211.88.3'),(517,999999999,'2007-12-18 11:49:36','196.211.88.3'),(518,1000000053,'2007-12-18 11:51:36','196.211.88.3'),(519,1000000053,'2007-12-18 11:51:36','196.211.88.3'),(520,1000000000,'2007-12-18 12:17:49','198.54.202.218'),(521,1000000000,'2007-12-18 12:17:49','198.54.202.218'),(522,1000000054,'2007-12-18 13:50:04','198.54.202.195'),(523,1000000054,'2007-12-18 13:50:04','198.54.202.195'),(524,999999999,'2007-12-18 13:53:16','196.211.88.3'),(525,999999999,'2007-12-18 13:53:16','196.211.88.3'),(526,1000000053,'2007-12-18 13:55:48','196.211.88.3'),(527,1000000053,'2007-12-18 13:55:48','196.211.88.3'),(528,1000000054,'2007-12-18 14:49:41','196.25.255.210'),(529,1000000054,'2007-12-18 14:49:41','196.25.255.210'),(530,1000000054,'2007-12-18 14:49:54','196.25.255.210'),(531,1000000054,'2007-12-18 14:49:54','196.25.255.210'),(532,1000000000,'2007-12-18 14:50:05','198.54.202.210'),(533,1000000000,'2007-12-18 14:50:05','198.54.202.210'),(534,1000000054,'2007-12-18 14:52:57','196.25.255.210'),(535,1000000054,'2007-12-18 14:52:57','196.25.255.210'),(536,999999999,'2007-12-19 04:40:44','71.163.23.236'),(537,999999999,'2007-12-19 04:40:44','71.163.23.236'),(538,1000000000,'2007-12-19 06:52:10','196.25.255.218'),(539,1000000000,'2007-12-19 06:52:10','196.25.255.218'),(540,999999999,'2007-12-19 06:56:15','58.137.81.9'),(541,999999999,'2007-12-19 06:56:15','58.137.81.9'),(542,1000000000,'2007-12-19 06:57:00','58.137.81.9'),(543,1000000000,'2007-12-19 06:57:00','58.137.81.9'),(544,1000000053,'2007-12-19 09:05:42','196.211.88.3'),(545,1000000053,'2007-12-19 09:05:42','196.211.88.3'),(546,1000000000,'2007-12-19 10:12:30','196.25.255.210'),(547,1000000000,'2007-12-19 10:12:30','196.25.255.210'),(548,1000000000,'2007-12-19 10:30:02','196.25.255.214'),(549,1000000000,'2007-12-19 10:30:02','196.25.255.214'),(550,999999999,'2007-12-19 13:40:10','196.211.88.3'),(551,999999999,'2007-12-19 13:40:10','196.211.88.3'),(552,1000000054,'2007-12-20 09:00:39','41.208.11.160'),(553,1000000054,'2007-12-20 09:00:39','41.208.11.160'),(554,1000000054,'2007-12-20 09:11:38','41.208.11.160'),(555,1000000054,'2007-12-20 09:11:38','41.208.11.160'),(556,999999999,'2007-12-20 09:12:58','41.208.11.160'),(557,999999999,'2007-12-20 09:12:58','41.208.11.160'),(558,1000000054,'2007-12-20 09:14:39','41.208.11.160'),(559,1000000054,'2007-12-20 09:14:39','41.208.11.160'),(560,1000000054,'2007-12-20 09:43:07','41.208.11.160'),(561,1000000054,'2007-12-20 09:43:07','41.208.11.160'),(562,999999999,'2007-12-20 12:09:41','196.7.19.143'),(563,999999999,'2007-12-20 12:09:41','196.7.19.143'),(564,999999999,'2007-12-21 04:17:32','58.137.81.9'),(565,999999999,'2007-12-21 04:17:32','58.137.81.9'),(566,999999999,'2007-12-23 09:07:20','196.2.124.253'),(567,999999999,'2007-12-23 09:07:20','196.2.124.253'),(568,1000000053,'2007-12-27 12:46:09','196.211.88.3'),(569,1000000053,'2007-12-27 12:46:09','196.211.88.3'),(570,999999999,'2007-12-27 12:46:51','196.211.88.3'),(571,999999999,'2007-12-27 12:46:51','196.211.88.3'),(572,999999999,'2007-12-28 08:23:22','196.207.47.60'),(573,999999999,'2007-12-28 08:23:22','196.207.47.60'),(574,1000000056,'2007-12-29 06:45:59','217.219.169.226'),(575,1000000056,'2007-12-29 06:45:59','217.219.169.226'),(576,1000000056,'2007-12-29 06:47:08','217.219.169.226'),(577,1000000056,'2007-12-29 06:47:08','217.219.169.226'),(578,1000000056,'2007-12-29 06:50:19','217.219.169.226'),(579,1000000056,'2007-12-29 06:50:19','217.219.169.226'),(580,1000000056,'2007-12-29 06:51:36','217.219.169.226'),(581,1000000056,'2007-12-29 06:51:36','217.219.169.226'),(582,999999999,'2007-12-31 04:12:09','87.194.116.83'),(583,999999999,'2007-12-31 04:12:09','87.194.116.83'),(584,999999999,'2008-01-04 16:04:58','198.54.202.194'),(585,999999999,'2008-01-04 16:04:58','198.54.202.194'),(586,999999999,'2008-01-07 15:02:49','196.211.88.3'),(587,999999999,'2008-01-07 15:02:49','196.211.88.3'),(588,1000000057,'2008-01-07 15:13:26','196.25.255.210'),(589,1000000057,'2008-01-07 15:13:26','196.25.255.210'),(590,1000000053,'2008-01-07 15:13:39','196.211.88.3'),(591,1000000053,'2008-01-07 15:13:39','196.211.88.3'),(592,1000000057,'2008-01-07 18:41:51','198.54.202.210'),(593,1000000057,'2008-01-07 18:41:51','198.54.202.210'),(594,999999999,'2008-01-08 05:59:56','196.25.255.210'),(595,999999999,'2008-01-08 05:59:56','196.25.255.210'),(596,1000000053,'2008-01-08 13:30:33','196.211.88.3'),(597,1000000053,'2008-01-08 13:30:33','196.211.88.3'),(598,1000000053,'2008-01-08 13:49:24','196.211.88.3'),(599,1000000053,'2008-01-08 13:49:24','196.211.88.3'),(600,1000000059,'2008-01-10 16:04:31','196.209.251.3'),(601,1000000059,'2008-01-10 16:04:31','196.209.251.3'),(602,999999999,'2008-01-16 05:04:26','99.129.68.29'),(603,999999999,'2008-01-16 05:04:26','99.129.68.29'),(604,1000000017,'2008-01-27 10:09:55','196.35.158.180'),(605,1000000017,'2008-01-27 10:09:55','196.35.158.180'),(606,1000000060,'2008-01-29 14:04:47','196.207.47.60'),(607,1000000060,'2008-01-29 14:04:47','196.207.47.60'),(608,1000000060,'2008-01-29 14:42:40','196.207.47.60'),(609,1000000060,'2008-01-29 14:42:40','196.207.47.60'),(610,999999999,'2008-01-29 14:57:47','196.207.47.60'),(611,999999999,'2008-01-29 14:57:47','196.207.47.60'),(612,999999999,'2008-01-29 14:59:53','196.207.47.60'),(613,999999999,'2008-01-29 14:59:53','196.207.47.60'),(614,999999999,'2008-02-07 14:57:10','70.243.252.97'),(615,999999999,'2008-02-07 14:57:10','70.243.252.97'),(616,999999999,'2008-02-07 16:12:15','41.208.50.160'),(617,999999999,'2008-02-07 16:12:15','41.208.50.160'),(618,999999999,'2008-02-07 16:45:44','41.208.50.160'),(619,999999999,'2008-02-07 16:45:44','41.208.50.160'),(620,999999999,'2008-02-13 11:12:19','198.54.202.146'),(621,999999999,'2008-02-13 11:12:19','198.54.202.146'),(622,999999999,'2008-02-13 18:06:23','201.29.64.194'),(623,999999999,'2008-02-13 18:06:23','201.29.64.194'),(624,999999999,'2008-02-13 18:32:19','196.207.35.245'),(625,999999999,'2008-02-13 18:32:19','196.207.35.245'),(626,1000000063,'2008-02-28 19:45:43','196.209.251.3'),(627,1000000063,'2008-02-28 19:45:43','196.209.251.3'),(628,1000000064,'2008-03-01 11:36:22','196.207.35.245'),(629,1000000064,'2008-03-01 11:36:22','196.207.35.245'),(630,999999999,'2008-03-01 11:49:44','196.207.35.245'),(631,999999999,'2008-03-01 11:49:44','196.207.35.245'),(632,999999999,'2008-03-01 12:02:05','196.207.35.245'),(633,999999999,'2008-03-01 12:02:05','196.207.35.245'),(634,1000000064,'2008-03-03 08:59:16','198.54.202.146'),(635,1000000064,'2008-03-03 08:59:16','198.54.202.146'),(636,999999999,'2008-03-12 03:10:48','24.37.62.13'),(637,999999999,'2008-03-12 03:10:48','24.37.62.13'),(638,999999999,'2008-03-28 18:02:08','71.121.102.48'),(639,999999999,'2008-03-28 18:02:08','71.121.102.48'),(640,999999999,'2008-03-30 15:29:10','88.67.213.193'),(641,999999999,'2008-03-30 15:29:10','88.67.213.193'),(642,999999999,'2008-03-31 21:15:18','198.54.202.130'),(643,999999999,'2008-03-31 21:15:18','198.54.202.130'),(644,999999999,'2008-04-01 19:32:53','198.54.202.130'),(645,999999999,'2008-04-01 19:32:53','198.54.202.130'),(646,999999999,'2008-04-05 09:28:38','196.207.40.213'),(647,999999999,'2008-04-05 09:28:38','196.207.40.213'),(648,1000000065,'2008-04-12 01:58:14','203.160.1.49'),(649,1000000065,'2008-04-12 01:58:14','203.160.1.49'),(650,999999999,'2008-04-17 06:56:34','88.247.176.182'),(651,999999999,'2008-04-17 06:56:34','88.247.176.182'),(652,1000000066,'2008-04-17 19:09:23','196.207.47.60'),(653,1000000066,'2008-04-17 19:09:23','196.207.47.60'),(654,999999999,'2008-04-17 21:17:59','196.207.33.198'),(655,999999999,'2008-04-17 21:17:59','196.207.33.198'),(656,1000000067,'2008-04-17 21:20:02','196.207.33.198'),(657,1000000067,'2008-04-17 21:20:02','196.207.33.198'),(658,999999999,'2008-04-23 19:48:07','168.209.97.42'),(659,999999999,'2008-04-23 19:48:07','168.209.97.42'),(660,999999999,'2008-04-24 07:45:15','196.207.40.213'),(661,999999999,'2008-04-24 07:45:15','196.207.40.213'),(662,999999999,'2008-04-24 22:27:26','217.194.135.59'),(663,999999999,'2008-04-24 22:27:26','217.194.135.59'),(664,999999999,'2008-04-29 13:25:56','196.35.158.182'),(665,999999999,'2008-04-29 13:25:56','196.35.158.182'),(666,999999999,'2008-05-06 20:05:01','41.208.48.1'),(667,999999999,'2008-05-06 20:05:01','41.208.48.1'),(668,999999999,'2008-05-07 06:00:30','198.54.202.194'),(669,999999999,'2008-05-07 06:00:30','198.54.202.194'),(670,999999999,'2008-05-09 10:04:26','196.15.193.90'),(671,999999999,'2008-05-09 10:04:26','196.15.193.90'),(672,999999999,'2008-05-09 14:08:40','196.207.40.149'),(673,999999999,'2008-05-09 14:08:40','196.207.40.149'),(674,1000000072,'2008-05-12 10:27:31','198.54.202.195'),(675,1000000072,'2008-05-12 10:27:31','198.54.202.195'),(676,999999999,'2008-05-16 11:47:38','196.25.255.194'),(677,999999999,'2008-05-16 11:47:38','196.25.255.194'),(678,999999999,'2008-05-18 07:32:35','196.207.35.245'),(679,999999999,'2008-05-18 07:32:35','196.207.35.245'),(680,999999999,'2008-05-19 00:58:04','196.25.255.195'),(681,999999999,'2008-05-19 00:58:04','196.25.255.195'),(682,999999999,'2008-05-30 01:12:30','196.25.255.194'),(683,999999999,'2008-05-30 01:12:30','196.25.255.194'),(684,1000000078,'2008-06-02 11:21:53','168.167.154.34'),(685,1000000078,'2008-06-02 11:21:53','168.167.154.34'),(686,999999999,'2008-06-02 11:54:19','196.207.33.198'),(687,999999999,'2008-06-02 11:54:19','196.207.33.198'),(688,999999999,'2008-06-02 19:49:12','81.166.245.129'),(689,999999999,'2008-06-02 19:49:12','81.166.245.129'),(690,1000000079,'2008-06-05 12:31:02','41.245.74.244'),(691,1000000079,'2008-06-05 12:31:02','41.245.74.244'),(692,999999999,'2008-06-06 11:33:51','196.25.255.195'),(693,999999999,'2008-06-06 11:33:51','196.25.255.195'),(694,999999999,'2008-06-06 12:09:26','196.2.124.253'),(695,999999999,'2008-06-06 12:09:26','196.2.124.253'),(696,999999999,'2008-06-11 15:58:28','196.25.255.246'),(697,999999999,'2008-06-11 15:58:28','196.25.255.246'),(698,999999999,'2008-06-12 14:14:49','41.245.98.22'),(699,999999999,'2008-06-12 14:14:49','41.245.98.22'),(700,1000000081,'2008-06-12 14:16:11','41.245.98.22'),(701,1000000081,'2008-06-12 14:16:11','41.245.98.22'),(702,1000000081,'2008-06-12 14:25:38','196.25.255.210'),(703,1000000081,'2008-06-12 14:25:38','196.25.255.210'),(704,1000000081,'2008-06-12 15:04:40','196.25.255.210'),(705,1000000081,'2008-06-12 15:04:40','196.25.255.210'),(706,1000000082,'2008-06-17 11:35:17','41.206.160.2'),(707,1000000082,'2008-06-17 11:35:17','41.206.160.2'),(708,999999999,'2008-06-17 11:48:23','41.206.160.2'),(709,999999999,'2008-06-17 11:48:23','41.206.160.2'),(710,1000000082,'2008-06-17 11:49:45','41.206.160.2'),(711,1000000082,'2008-06-17 11:49:45','41.206.160.2'),(712,1000000082,'2008-06-18 06:57:49','41.206.160.2'),(713,1000000082,'2008-06-18 06:57:49','41.206.160.2'),(714,1000000082,'2008-06-18 07:04:44','41.206.160.2'),(715,1000000082,'2008-06-18 07:04:44','41.206.160.2'),(716,1000000082,'2008-06-18 07:09:03','41.206.160.2'),(717,1000000082,'2008-06-18 07:09:03','41.206.160.2'),(718,1000000082,'2008-06-18 08:05:10','41.206.160.2'),(719,1000000082,'2008-06-18 08:05:10','41.206.160.2'),(720,999999999,'2008-06-18 09:20:30','87.150.142.146'),(721,999999999,'2008-06-18 09:20:30','87.150.142.146'),(722,999999999,'2008-06-20 00:34:45','196.25.255.250'),(723,999999999,'2008-06-20 00:34:45','196.25.255.250'),(724,1000000084,'2008-06-23 12:20:10','196.25.255.195'),(725,1000000084,'2008-06-23 12:20:10','196.25.255.195'),(726,1000000085,'2008-06-23 13:52:02','198.54.202.195'),(727,1000000085,'2008-06-23 13:52:02','198.54.202.195'),(728,1000000084,'2008-06-23 14:12:34','198.54.202.195'),(729,1000000084,'2008-06-23 14:12:34','198.54.202.195'),(730,1000000084,'2008-06-23 14:18:51','196.25.255.195'),(731,1000000084,'2008-06-23 14:18:51','196.25.255.195'),(732,1000000084,'2008-06-23 14:43:14','198.54.202.210'),(733,1000000084,'2008-06-23 14:43:14','198.54.202.210'),(734,1000000083,'2008-06-25 07:17:40','196.25.95.194'),(735,1000000083,'2008-06-25 07:17:40','196.25.95.194'),(736,999999999,'2008-06-25 13:44:45','78.32.61.209'),(737,999999999,'2008-06-25 13:44:45','78.32.61.209'),(738,1000000086,'2008-06-26 10:04:15','196.7.0.164'),(739,1000000086,'2008-06-26 10:04:15','196.7.0.164'),(740,1000000087,'2008-06-26 19:39:18','196.207.47.60'),(741,1000000087,'2008-06-26 19:39:18','196.207.47.60'),(742,999999999,'2008-06-27 06:21:05','196.207.47.60'),(743,999999999,'2008-06-27 06:21:05','196.207.47.60'),(744,1000000087,'2008-06-27 06:23:08','196.207.47.60'),(745,1000000087,'2008-06-27 06:23:08','196.207.47.60'),(746,1000000086,'2008-06-30 07:10:52','196.7.0.164'),(747,1000000086,'2008-06-30 07:10:52','196.7.0.164'),(748,1000000086,'2008-06-30 08:11:05','196.7.0.164'),(749,1000000086,'2008-06-30 08:11:05','196.7.0.164'),(750,1000000088,'2008-07-01 08:49:35','196.38.218.24'),(751,1000000088,'2008-07-01 08:49:35','196.38.218.24'),(752,999999999,'2008-07-01 15:03:57','196.25.255.194'),(753,999999999,'2008-07-01 15:03:57','196.25.255.194'),(754,999999999,'2008-07-01 15:18:32','41.241.164.77'),(755,999999999,'2008-07-01 15:18:32','41.241.164.77'),(756,1000000086,'2008-07-02 12:41:56','196.7.0.164'),(757,1000000086,'2008-07-02 12:41:56','196.7.0.164'),(758,1000000089,'2008-07-02 14:03:37','196.25.255.195'),(759,1000000089,'2008-07-02 14:03:37','196.25.255.195'),(760,999999999,'2008-07-03 07:13:36','196.41.124.8'),(761,999999999,'2008-07-03 07:13:36','196.41.124.8'),(762,999999999,'2008-07-04 07:55:19','196.25.255.195'),(763,999999999,'2008-07-04 07:55:19','196.25.255.195'),(764,1000000086,'2008-07-04 11:01:08','196.7.0.164'),(765,1000000086,'2008-07-04 11:01:08','196.7.0.164'),(766,999999999,'2008-07-07 16:03:05','78.0.66.89'),(767,999999999,'2008-07-07 16:03:05','78.0.66.89'),(768,999999999,'2008-07-07 19:51:24','213.35.176.54'),(769,999999999,'2008-07-07 19:51:24','213.35.176.54'),(770,1000000083,'2008-07-11 13:17:28','198.54.202.250'),(771,1000000083,'2008-07-11 13:17:28','198.54.202.250'),(772,1000000083,'2008-07-11 13:26:34','196.25.95.194'),(773,1000000083,'2008-07-11 13:26:34','196.25.95.194'),(774,1000000091,'2008-07-11 14:09:35','216.139.164.86'),(775,1000000091,'2008-07-11 14:09:35','216.139.164.86'),(776,1000000090,'2008-07-14 03:20:34','24.110.226.71'),(777,1000000090,'2008-07-14 03:20:34','24.110.226.71'),(778,999999999,'2008-07-14 12:54:32','196.207.32.38'),(779,999999999,'2008-07-14 12:54:32','196.207.32.38'),(780,999999999,'2008-07-15 04:21:16','220.238.220.167'),(781,999999999,'2008-07-15 04:21:16','220.238.220.167'),(782,1000000083,'2008-07-15 07:58:54','196.25.95.194'),(783,1000000083,'2008-07-15 07:58:54','196.25.95.194'),(784,1000000083,'2008-07-15 08:12:53','196.25.95.194'),(785,1000000083,'2008-07-15 08:12:53','196.25.95.194'),(786,1000000083,'2008-07-15 08:20:26','196.25.95.194'),(787,1000000083,'2008-07-15 08:20:26','196.25.95.194'),(788,1000000083,'2008-07-15 08:55:40','196.25.95.194'),(789,1000000083,'2008-07-15 08:55:40','196.25.95.194'),(790,1000000083,'2008-07-15 09:28:40','196.25.95.194'),(791,1000000083,'2008-07-15 09:28:40','196.25.95.194'),(792,999999999,'2008-07-15 11:11:30','59.95.23.255'),(793,999999999,'2008-07-15 11:11:30','59.95.23.255'),(794,1000000000,'2008-07-15 11:14:10','41.245.34.235'),(795,1000000000,'2008-07-15 11:14:10','41.245.34.235'),(796,999999999,'2008-07-15 20:27:48','198.54.202.195'),(797,999999999,'2008-07-15 20:27:48','198.54.202.195'),(798,999999999,'2008-07-16 02:49:03','58.137.81.9'),(799,999999999,'2008-07-16 02:49:03','58.137.81.9'),(800,999999999,'2008-07-16 03:50:44','58.137.81.9'),(801,999999999,'2008-07-16 03:50:44','58.137.81.9'),(802,999999999,'2008-07-16 08:09:15','198.54.202.194'),(803,999999999,'2008-07-16 08:09:15','198.54.202.194'),(804,1000000083,'2008-07-16 14:26:16','196.25.95.194'),(805,1000000083,'2008-07-16 14:26:16','196.25.95.194'),(806,1000000083,'2008-07-18 07:21:09','196.25.95.194'),(807,1000000083,'2008-07-18 07:21:09','196.25.95.194'),(808,1000000083,'2008-07-18 07:53:27','196.25.95.194'),(809,1000000083,'2008-07-18 07:53:27','196.25.95.194'),(810,999999999,'2008-07-18 20:32:13','41.246.245.223'),(811,999999999,'2008-07-18 20:32:13','41.246.245.223'),(812,999999999,'2008-07-21 16:58:11','77.97.26.72'),(813,999999999,'2008-07-21 16:58:11','77.97.26.72'),(814,999999999,'2008-07-27 07:20:05','24.24.214.19'),(815,999999999,'2008-07-27 07:20:05','24.24.214.19'),(816,999999999,'2008-07-29 14:39:47','196.41.124.8'),(817,999999999,'2008-07-29 14:39:47','196.41.124.8'),(818,1000000094,'2008-07-29 14:41:35','196.41.124.8'),(819,1000000094,'2008-07-29 14:41:35','196.41.124.8'),(820,1000000094,'2008-07-29 14:45:01','196.41.124.8'),(821,1000000094,'2008-07-29 14:45:01','196.41.124.8'),(822,999999999,'2008-07-29 16:50:09','196.25.255.195'),(823,999999999,'2008-07-29 16:50:09','196.25.255.195'),(824,1000000095,'2008-07-30 09:15:10','196.25.255.210'),(825,1000000095,'2008-07-30 09:15:10','196.25.255.210'),(826,1000000000,'2008-07-30 09:21:55','196.25.255.250'),(827,1000000000,'2008-07-30 09:21:55','196.25.255.250'),(828,1000000095,'2008-07-30 09:46:42','198.54.202.210'),(829,1000000095,'2008-07-30 09:46:42','198.54.202.210'),(830,999999999,'2008-07-30 12:29:44','163.195.192.74'),(831,999999999,'2008-07-30 12:29:44','163.195.192.74'),(832,999999999,'2008-07-31 19:23:25','196.2.124.252'),(833,999999999,'2008-07-31 19:23:25','196.2.124.252'),(834,1000000095,'2008-08-01 13:57:30','198.54.202.214'),(835,1000000095,'2008-08-01 13:57:30','198.54.202.214'),(836,1000000095,'2008-08-01 13:58:48','196.25.255.210'),(837,1000000095,'2008-08-01 13:58:48','196.25.255.210'),(838,999999999,'2008-08-02 02:05:45','198.54.202.146'),(839,999999999,'2008-08-02 02:05:45','198.54.202.146'),(840,1000000099,'2008-08-03 12:27:34','41.208.50.176'),(841,1000000099,'2008-08-03 12:27:34','41.208.50.176'),(842,999999999,'2008-08-07 06:04:49','198.54.202.194'),(843,999999999,'2008-08-07 06:04:49','198.54.202.194'),(844,999999999,'2008-08-07 06:04:52','196.25.255.194'),(845,999999999,'2008-08-07 06:04:52','196.25.255.194'),(846,1000000101,'2008-08-10 07:50:07','41.6.137.144'),(847,1000000101,'2008-08-10 07:50:07','41.6.137.144'),(848,999999999,'2008-08-12 10:57:08','198.54.202.3'),(849,999999999,'2008-08-12 10:57:08','198.54.202.3'),(850,999999999,'2008-08-15 08:28:45','198.54.202.246'),(851,999999999,'2008-08-15 08:28:45','198.54.202.246'),(852,1000000105,'2008-08-19 06:40:49','41.208.11.176'),(853,1000000105,'2008-08-19 06:40:49','41.208.11.176'),(854,1000000105,'2008-08-19 06:46:02','41.208.11.176'),(855,1000000105,'2008-08-19 06:46:02','41.208.11.176'),(856,1000000105,'2008-08-19 07:38:15','41.208.11.176'),(857,1000000105,'2008-08-19 07:38:15','41.208.11.176'),(858,1000000105,'2008-08-19 07:43:10','41.208.11.176'),(859,1000000105,'2008-08-19 07:43:10','41.208.11.176'),(860,1000000105,'2008-08-19 08:14:43','41.208.11.176'),(861,1000000105,'2008-08-19 08:14:43','41.208.11.176'),(862,999999999,'2008-08-19 22:22:12','99.239.184.72'),(863,999999999,'2008-08-19 22:22:12','99.239.184.72'),(864,1000000105,'2008-08-21 05:18:02','41.208.11.176'),(865,1000000105,'2008-08-21 05:18:02','41.208.11.176'),(866,1000000105,'2008-08-21 05:21:31','41.208.11.176'),(867,1000000105,'2008-08-21 05:21:31','41.208.11.176'),(868,999999999,'2008-08-21 09:25:55','196.35.158.179'),(869,999999999,'2008-08-21 09:25:55','196.35.158.179'),(870,999999999,'2008-08-21 12:46:25','196.35.158.179'),(871,999999999,'2008-08-21 12:46:25','196.35.158.179'),(872,1000000107,'2008-08-21 14:05:43','196.35.158.179'),(873,1000000107,'2008-08-21 14:05:43','196.35.158.179'),(874,999999999,'2008-08-23 09:57:08','71.131.133.168'),(875,999999999,'2008-08-23 09:57:08','71.131.133.168'),(876,999999999,'2008-08-23 09:57:37','71.131.133.168'),(877,999999999,'2008-08-23 09:57:37','71.131.133.168'),(878,999999999,'2008-08-23 19:24:43','212.102.0.104'),(879,999999999,'2008-08-23 19:24:43','212.102.0.104'),(880,1000000105,'2008-08-24 09:29:25','41.208.11.180'),(881,1000000105,'2008-08-24 09:29:25','41.208.11.180'),(882,999999999,'2008-08-24 10:59:36','196.46.71.251'),(883,999999999,'2008-08-24 10:59:36','196.46.71.251'),(884,999999999,'2008-08-27 14:26:27','196.25.255.250'),(885,999999999,'2008-08-27 14:26:27','196.25.255.250'),(886,1000000100,'2008-08-31 13:50:13','41.208.50.176'),(887,1000000100,'2008-08-31 13:50:13','41.208.50.176'),(888,999999999,'2008-08-31 14:54:20','41.208.50.176'),(889,999999999,'2008-08-31 14:54:20','41.208.50.176'),(890,1000000100,'2008-08-31 14:55:15','41.208.50.176'),(891,1000000100,'2008-08-31 14:55:15','41.208.50.176'),(892,1000000100,'2008-08-31 17:21:32','198.54.202.195'),(893,1000000100,'2008-08-31 17:21:32','198.54.202.195'),(894,1000000100,'2008-09-01 07:54:50','198.54.202.195'),(895,1000000100,'2008-09-01 07:54:50','198.54.202.195'),(896,1000000100,'2008-09-01 08:20:06','196.25.255.195'),(897,1000000100,'2008-09-01 08:20:06','196.25.255.195'),(898,1000000100,'2008-09-01 14:38:25','198.54.202.195'),(899,1000000100,'2008-09-01 14:38:25','198.54.202.195'),(900,999999999,'2008-09-01 15:48:12','163.195.192.74'),(901,999999999,'2008-09-01 15:48:12','163.195.192.74'),(902,1000000100,'2008-09-02 00:27:18','196.25.255.195'),(903,1000000100,'2008-09-02 00:27:18','196.25.255.195'),(904,1000000100,'2008-09-02 09:36:44','196.25.255.195'),(905,1000000100,'2008-09-02 09:36:44','196.25.255.195'),(906,1000000100,'2008-09-02 09:45:29','196.35.158.180'),(907,1000000100,'2008-09-02 09:45:29','196.35.158.180'),(908,1000000110,'2008-09-02 11:12:22','198.54.202.146'),(909,1000000110,'2008-09-02 11:12:22','198.54.202.146'),(910,1000000100,'2008-09-03 02:45:11','58.137.81.9'),(911,1000000100,'2008-09-03 02:45:11','58.137.81.9'),(912,999999999,'2008-09-03 04:44:26','58.137.81.9'),(913,999999999,'2008-09-03 04:44:26','58.137.81.9'),(914,999999999,'2008-09-03 04:54:42','58.137.81.9'),(915,999999999,'2008-09-03 04:54:42','58.137.81.9'),(916,999999999,'2008-09-03 08:23:23','82.231.165.198'),(917,999999999,'2008-09-03 08:23:23','82.231.165.198'),(918,1000000111,'2008-09-04 08:06:18','41.208.50.160'),(919,1000000111,'2008-09-04 08:06:18','41.208.50.160'),(920,1000000112,'2008-09-04 23:12:48','41.244.59.248'),(921,1000000112,'2008-09-04 23:12:48','41.244.59.248'),(922,1000000111,'2008-09-05 08:07:05','41.208.50.160'),(923,1000000111,'2008-09-05 08:07:05','41.208.50.160'),(924,1000000111,'2008-09-05 08:10:54','41.208.50.160'),(925,1000000111,'2008-09-05 08:10:54','41.208.50.160'),(926,1000000113,'2008-09-06 04:21:16','196.25.255.210'),(927,1000000113,'2008-09-06 04:21:16','196.25.255.210'),(928,999999999,'2008-09-07 08:21:01','196.25.255.195'),(929,999999999,'2008-09-07 08:21:01','196.25.255.195'),(930,1000000114,'2008-09-07 08:22:11','198.54.202.195'),(931,1000000114,'2008-09-07 08:22:11','198.54.202.195'),(932,1000000114,'2008-09-07 16:41:41','198.54.202.210'),(933,1000000114,'2008-09-07 16:41:41','198.54.202.210'),(934,1000000113,'2008-09-07 16:54:26','198.54.202.226'),(935,1000000113,'2008-09-07 16:54:26','198.54.202.226'),(936,1000000113,'2008-09-07 17:13:05','196.25.255.195'),(937,1000000113,'2008-09-07 17:13:05','196.25.255.195'),(938,999999999,'2008-09-08 03:38:44','196.25.78.162'),(939,999999999,'2008-09-08 03:38:44','196.25.78.162'),(940,1000000115,'2008-09-08 04:26:36','196.25.78.162'),(941,1000000115,'2008-09-08 04:26:36','196.25.78.162'),(942,1000000111,'2008-09-08 10:42:46','41.208.50.160'),(943,1000000111,'2008-09-08 10:42:46','41.208.50.160'),(944,1000000111,'2008-09-08 13:11:50','198.54.202.110'),(945,1000000111,'2008-09-08 13:11:50','198.54.202.110'),(946,1000000111,'2008-09-08 13:20:40','198.54.202.110'),(947,1000000111,'2008-09-08 13:20:40','198.54.202.110'),(948,1000000115,'2008-09-08 20:49:47','196.25.78.162'),(949,1000000115,'2008-09-08 20:49:47','196.25.78.162'),(950,1000000115,'2008-09-08 22:08:21','196.25.78.162'),(951,1000000115,'2008-09-08 22:08:21','196.25.78.162'),(952,1000000115,'2008-09-08 23:03:06','196.25.78.162'),(953,1000000115,'2008-09-08 23:03:06','196.25.78.162'),(954,1000000100,'2008-09-09 10:44:03','196.35.158.180'),(955,1000000000,'2008-09-09 10:44:51','196.35.158.180'),(956,1000000000,'2008-09-09 10:44:51','196.35.158.180'),(957,1000000100,'2008-09-09 16:01:31','41.208.48.180'),(958,1000000100,'2008-09-09 16:01:31','41.208.48.180'),(959,1000000111,'2008-09-10 12:57:37','196.30.245.149'),(960,1000000111,'2008-09-10 12:57:37','196.30.245.149'),(961,1000000000,'2008-09-11 17:51:17','196.210.136.57'),(962,1000000000,'2008-09-11 17:51:17','196.210.136.57'),(963,1000000116,'2008-09-12 05:55:11','196.35.158.180'),(964,1000000116,'2008-09-12 05:55:11','196.35.158.180'),(965,1000000118,'2008-09-12 06:47:28','41.244.195.112'),(966,1000000118,'2008-09-12 06:47:28','41.244.195.112'),(967,1000000116,'2008-09-13 05:00:53','196.35.158.180'),(968,1000000116,'2008-09-13 05:00:53','196.35.158.180'),(969,1000000116,'2008-09-13 05:04:41','196.35.158.180'),(970,1000000116,'2008-09-13 05:04:41','196.35.158.180'),(971,1000000116,'2008-09-13 05:40:38','196.35.158.180'),(972,1000000116,'2008-09-13 05:40:38','196.35.158.180'),(973,1000000115,'2008-09-14 08:57:00','196.25.78.162'),(974,1000000115,'2008-09-14 08:57:00','196.25.78.162'),(975,1000000115,'2008-09-14 10:25:35','196.25.78.162'),(976,1000000115,'2008-09-14 10:25:35','196.25.78.162'),(977,1000000115,'2008-09-14 11:21:55','196.25.78.162'),(978,1000000115,'2008-09-14 11:21:55','196.25.78.162'),(979,1000000115,'2008-09-15 10:57:55','196.25.78.162'),(980,1000000115,'2008-09-15 10:57:55','196.25.78.162'),(981,999999999,'2008-09-15 20:27:01','41.247.47.66'),(982,999999999,'2008-09-15 20:27:01','41.247.47.66'),(983,1000000120,'2008-09-16 12:41:20','163.203.196.30'),(984,1000000120,'2008-09-16 12:41:20','163.203.196.30'),(985,999999999,'2008-09-18 13:41:34','196.35.158.180'),(986,999999999,'2008-09-18 13:41:34','196.35.158.180'),(987,1000000122,'2008-09-22 10:57:54','196.2.124.254'),(988,1000000122,'2008-09-22 10:57:54','196.2.124.254'),(989,1000000122,'2008-09-22 18:48:14','196.207.32.38'),(990,1000000122,'2008-09-22 18:48:14','196.207.32.38'),(991,1000000122,'2008-09-24 17:04:33','196.207.32.38'),(992,1000000122,'2008-09-24 17:04:33','196.207.32.38'),(993,1000000123,'2008-09-24 22:57:20','87.74.2.238'),(994,1000000123,'2008-09-24 22:57:20','87.74.2.238'),(995,1000000123,'2008-09-24 23:03:51','87.74.2.238'),(996,1000000123,'2008-09-24 23:03:51','87.74.2.238'),(997,1000000123,'2008-09-25 10:29:41','87.74.2.238'),(998,1000000123,'2008-09-25 10:29:41','87.74.2.238'),(999,1000000124,'2008-09-25 11:30:20','41.242.181.14'),(1000,1000000124,'2008-09-25 11:30:20','41.242.181.14'),(1001,999999999,'2008-09-25 14:00:06','122.108.144.144'),(1002,999999999,'2008-09-25 14:00:06','122.108.144.144'),(1003,1000000123,'2008-09-25 20:42:48','87.74.2.238'),(1004,1000000123,'2008-09-25 20:42:48','87.74.2.238'),(1005,999999999,'2008-10-01 06:55:59','198.54.202.194'),(1006,999999999,'2008-10-01 06:55:59','198.54.202.194'),(1007,1000000127,'2008-10-04 07:53:35','41.241.169.4'),(1008,1000000127,'2008-10-04 07:53:35','41.241.169.4'),(1009,999999999,'2008-10-05 13:50:48','196.25.255.250'),(1010,999999999,'2008-10-05 13:50:48','196.25.255.250'),(1011,999999999,'2008-10-05 18:15:05','196.25.255.218'),(1012,999999999,'2008-10-05 18:15:05','196.25.255.218'),(1013,999999999,'2008-10-06 10:44:09','198.54.202.246'),(1014,999999999,'2008-10-06 10:44:09','198.54.202.246'),(1015,1000000128,'2008-10-06 11:22:14','198.54.202.195'),(1016,1000000128,'2008-10-06 11:22:14','198.54.202.195'),(1017,1000000129,'2008-10-07 10:02:33','196.41.124.8'),(1018,1000000129,'2008-10-07 10:02:33','196.41.124.8'),(1019,1000000129,'2008-10-07 10:17:24','196.41.124.8'),(1020,1000000129,'2008-10-07 10:17:24','196.41.124.8'),(1021,1000000122,'2008-10-07 11:32:02','196.2.124.252'),(1022,1000000122,'2008-10-07 11:32:02','196.2.124.252'),(1023,1000000128,'2008-10-09 07:05:47','198.54.202.218'),(1024,1000000128,'2008-10-09 07:05:47','198.54.202.218'),(1025,1000000130,'2008-10-10 09:21:03','198.54.202.210'),(1026,1000000130,'2008-10-10 09:21:03','198.54.202.210'),(1027,999999999,'2008-10-12 19:00:07','189.46.161.252'),(1028,999999999,'2008-10-12 19:00:07','189.46.161.252'),(1029,1000000000,'2008-10-13 19:33:33','196.25.255.218'),(1030,1000000000,'2008-10-13 19:33:33','196.25.255.218'),(1031,1000000000,'2008-11-11 05:27:16','196.25.255.195'),(1032,1000000000,'2008-11-11 05:27:16','196.25.255.195'),(1033,999999999,'2008-11-11 13:26:24','196.207.47.60'),(1034,999999999,'2008-11-11 13:26:24','196.207.47.60'),(1035,1000000131,'2008-11-11 13:31:15','196.207.47.60'),(1036,1000000131,'2008-11-11 13:31:15','196.207.47.60'),(1037,999999999,'2008-11-13 15:28:33','196.35.158.179'),(1038,999999999,'2008-11-13 15:28:33','196.35.158.179'),(1039,999999999,'2008-11-15 10:44:51','121.219.27.150'),(1040,999999999,'2008-11-15 10:44:51','121.219.27.150'),(1041,999999999,'2008-11-16 23:44:46','41.4.164.226'),(1042,999999999,'2008-11-16 23:44:46','41.4.164.226'),(1043,999999999,'2008-11-20 07:45:00','196.28.12.27'),(1044,999999999,'2008-11-20 07:45:00','196.28.12.27'),(1045,1000000133,'2008-11-20 07:49:30','196.28.12.27'),(1046,1000000133,'2008-11-20 07:49:30','196.28.12.27'),(1047,999999999,'2008-11-20 13:50:12','41.242.72.183'),(1048,999999999,'2008-11-20 13:50:12','41.242.72.183'),(1049,1000000134,'2008-11-21 04:13:59','155.239.117.21'),(1050,1000000134,'2008-11-21 04:13:59','155.239.117.21'),(1051,1000000135,'2008-11-24 13:31:41','196.25.255.210'),(1052,1000000135,'2008-11-24 13:31:41','196.25.255.210'),(1053,1000000136,'2008-11-24 15:51:04','168.167.159.77'),(1054,1000000136,'2008-11-24 15:51:04','168.167.159.77'),(1055,999999999,'2008-11-24 15:56:52','198.54.202.195'),(1056,999999999,'2008-11-24 15:56:52','198.54.202.195'),(1057,1000000135,'2008-11-24 16:03:43','196.25.255.195'),(1058,1000000135,'2008-11-24 16:03:43','196.25.255.195'),(1059,1000000137,'2008-11-25 04:03:17','41.245.111.184'),(1060,1000000137,'2008-11-25 04:03:17','41.245.111.184'),(1061,1000000135,'2008-11-25 14:14:36','198.54.202.195'),(1062,1000000135,'2008-11-25 14:14:36','198.54.202.195'),(1063,1000000135,'2008-11-26 17:52:15','196.25.255.195'),(1064,1000000135,'2008-11-26 17:52:15','196.25.255.195'),(1065,1000000138,'2008-11-27 20:40:18','196.207.47.60'),(1066,1000000138,'2008-11-27 20:40:18','196.207.47.60'),(1067,1000000138,'2008-11-27 20:58:40','196.207.47.60'),(1068,1000000138,'2008-11-27 20:58:40','196.207.47.60'),(1069,1000000139,'2008-11-28 21:40:35','41.208.50.160'),(1070,1000000139,'2008-11-28 21:40:35','41.208.50.160'),(1071,999999999,'2008-11-29 11:59:04','213.48.170.130'),(1072,999999999,'2008-11-29 11:59:04','213.48.170.130'),(1073,1000000138,'2008-12-03 20:33:52','196.207.47.60'),(1074,1000000138,'2008-12-03 20:33:52','196.207.47.60'),(1075,999999999,'2008-12-04 09:12:30','41.246.59.103'),(1076,999999999,'2008-12-04 09:12:30','41.246.59.103'),(1077,1000000138,'2008-12-10 19:53:50','196.207.47.60'),(1078,1000000138,'2008-12-10 19:53:50','196.207.47.60'),(1079,999999999,'2008-12-17 05:14:12','196.207.32.38'),(1080,999999999,'2008-12-17 05:14:12','196.207.32.38'),(1081,1000000142,'2008-12-17 14:16:12','203.160.1.72'),(1082,1000000142,'2008-12-17 14:16:12','203.160.1.72'),(1083,999999999,'2008-12-19 10:26:10','196.35.158.179'),(1084,999999999,'2008-12-19 10:26:10','196.35.158.179'),(1085,999999999,'2008-12-20 18:36:30','196.207.32.38'),(1086,999999999,'2008-12-20 18:36:30','196.207.32.38'),(1087,999999999,'2008-12-21 06:08:39','196.207.32.38'),(1088,999999999,'2008-12-21 06:08:39','196.207.32.38'),(1089,999999999,'2008-12-22 16:22:41','198.54.202.150'),(1090,999999999,'2008-12-22 16:22:41','198.54.202.150'),(1091,1000000144,'2008-12-27 15:19:39','196.207.47.60'),(1092,1000000144,'2008-12-27 15:19:39','196.207.47.60'),(1093,999999999,'2009-01-05 08:38:09','196.207.47.60'),(1094,999999999,'2009-01-05 08:38:09','196.207.47.60'),(1095,1000000145,'2009-01-05 08:39:56','196.207.47.60'),(1096,1000000145,'2009-01-05 08:39:56','196.207.47.60'),(1097,999999999,'2009-01-07 13:57:44','203.193.165.78'),(1098,999999999,'2009-01-07 13:57:44','203.193.165.78'),(1099,999999999,'2009-01-10 07:23:07','41.3.197.222'),(1100,999999999,'2009-01-10 07:23:07','41.3.197.222'),(1101,1000000146,'2009-01-10 07:45:32','41.3.197.222'),(1102,1000000146,'2009-01-10 07:45:32','41.3.197.222'),(1103,1000000146,'2009-01-10 08:01:13','41.3.197.222'),(1104,1000000146,'2009-01-10 08:01:13','41.3.197.222'),(1105,1000000145,'2009-01-10 08:34:43','196.207.47.60'),(1106,1000000145,'2009-01-10 08:34:43','196.207.47.60'),(1107,1000000146,'2009-01-10 12:31:02','41.6.209.120'),(1108,1000000146,'2009-01-10 12:31:02','41.6.209.120'),(1109,1000000146,'2009-01-10 12:34:27','41.6.209.120'),(1110,1000000146,'2009-01-10 12:34:27','41.6.209.120'),(1111,1000000149,'2009-01-11 06:49:59','41.4.200.175'),(1112,1000000149,'2009-01-11 06:49:59','41.4.200.175'),(1113,1000000145,'2009-01-11 13:00:00','196.207.47.60'),(1114,1000000145,'2009-01-11 13:00:00','196.207.47.60'),(1115,999999999,'2009-01-11 16:52:42','69.183.252.18'),(1116,999999999,'2009-01-11 16:52:42','69.183.252.18'),(1117,999999999,'2009-01-12 11:44:52','196.35.158.179'),(1118,999999999,'2009-01-12 11:44:52','196.35.158.179'),(1119,1000000145,'2009-01-13 09:06:50','196.207.47.60'),(1120,1000000145,'2009-01-13 09:06:50','196.207.47.60'),(1121,1000000100,'2009-01-13 19:48:34','41.208.50.160'),(1122,999999999,'2009-01-16 08:46:43','198.54.202.246'),(1123,999999999,'2009-01-16 08:46:43','198.54.202.246'),(1124,1000000152,'2009-01-17 20:42:31','198.54.202.210'),(1125,1000000152,'2009-01-17 20:42:31','198.54.202.210'),(1126,999999999,'2009-01-21 20:03:38','88.232.100.198'),(1127,999999999,'2009-01-21 20:03:38','88.232.100.198'),(1128,1000000154,'2009-01-23 01:21:06','216.221.91.214'),(1129,1000000154,'2009-01-23 01:21:06','216.221.91.214'),(1130,999999999,'2009-01-24 11:19:17','198.54.202.194'),(1131,999999999,'2009-01-24 11:19:17','198.54.202.194'),(1132,1000000155,'2009-01-29 08:04:37','196.21.99.1'),(1133,1000000155,'2009-01-29 08:04:37','196.21.99.1'),(1134,1000000157,'2009-01-30 11:39:17','196.35.158.179'),(1135,1000000157,'2009-01-30 11:39:17','196.35.158.179'),(1136,1000000156,'2009-02-02 06:22:47','196.25.255.195'),(1137,1000000156,'2009-02-02 06:22:47','196.25.255.195'),(1138,1000000155,'2009-02-03 09:35:33','196.25.253.13'),(1139,1000000155,'2009-02-03 09:35:33','196.25.253.13'),(1140,999999999,'2009-02-03 11:50:01','41.246.110.110'),(1141,999999999,'2009-02-03 11:50:01','41.246.110.110'),(1142,999999999,'2009-02-03 13:33:13','196.25.255.195'),(1143,999999999,'2009-02-03 13:33:13','196.25.255.195'),(1144,999999999,'2009-02-04 11:50:58','196.207.32.38'),(1145,999999999,'2009-02-04 11:50:58','196.207.32.38'),(1146,999999999,'2009-02-04 11:52:15','196.207.32.38'),(1147,999999999,'2009-02-04 11:52:15','196.207.32.38'),(1148,1000000161,'2009-02-04 14:46:57','196.2.126.113'),(1149,1000000161,'2009-02-04 14:46:57','196.2.126.113'),(1150,1000000162,'2009-02-09 18:40:10','41.15.175.246'),(1151,1000000162,'2009-02-09 18:40:10','41.15.175.246'),(1152,999999999,'2009-02-10 15:39:35','198.54.202.150'),(1153,999999999,'2009-02-10 15:39:35','198.54.202.150'),(1154,999999999,'2009-02-10 21:23:32','196.25.255.214'),(1155,999999999,'2009-02-10 21:23:32','196.25.255.214'),(1156,999999999,'2009-02-11 09:07:51','196.35.158.179'),(1157,999999999,'2009-02-11 09:07:51','196.35.158.179'),(1158,999999999,'2009-02-11 11:45:24','41.30.46.219'),(1159,999999999,'2009-02-11 11:45:24','41.30.46.219'),(1160,999999999,'2009-02-11 11:50:50','41.30.46.219'),(1161,999999999,'2009-02-11 11:50:50','41.30.46.219'),(1162,999999999,'2009-02-11 22:54:57','148.87.1.171'),(1163,999999999,'2009-02-11 22:54:57','148.87.1.171'),(1164,1000000163,'2009-02-12 14:27:26','196.6.141.27'),(1165,1000000163,'2009-02-12 14:27:26','196.6.141.27'),(1166,1000000163,'2009-02-13 06:12:33','196.6.141.27'),(1167,1000000163,'2009-02-13 06:12:33','196.6.141.27'),(1168,1000000163,'2009-02-13 08:55:58','196.6.141.27'),(1169,1000000163,'2009-02-13 08:55:58','196.6.141.27'),(1170,1000000164,'2009-02-15 14:15:15','196.2.126.113'),(1171,1000000164,'2009-02-15 14:15:15','196.2.126.113'),(1172,1000000164,'2009-02-15 17:46:16','196.2.126.113'),(1173,1000000164,'2009-02-15 17:46:16','196.2.126.113'),(1174,1000000164,'2009-02-15 17:48:10','196.2.126.113'),(1175,1000000164,'2009-02-15 17:48:10','196.2.126.113'),(1176,1000000164,'2009-02-16 18:14:19','196.2.126.113'),(1177,1000000164,'2009-02-16 18:14:19','196.2.126.113'),(1178,1000000164,'2009-02-16 18:51:16','196.2.126.113'),(1179,1000000164,'2009-02-16 18:51:16','196.2.126.113'),(1180,1000000164,'2009-02-17 04:10:22','198.54.202.195'),(1181,1000000164,'2009-02-17 04:10:22','198.54.202.195'),(1182,1000000000,'2009-02-17 04:11:55','198.54.202.210'),(1183,1000000000,'2009-02-17 04:11:55','198.54.202.210'),(1184,1000000000,'2009-02-17 04:16:59','198.54.202.210'),(1185,1000000000,'2009-02-17 04:16:59','198.54.202.210'),(1186,1000000164,'2009-02-17 04:51:33','196.25.255.210'),(1187,1000000164,'2009-02-17 04:51:33','196.25.255.210'),(1188,999999999,'2009-02-17 05:00:40','58.137.81.9'),(1189,999999999,'2009-02-17 05:00:40','58.137.81.9'),(1190,1000000000,'2009-02-17 09:30:19','196.25.255.246'),(1191,1000000000,'2009-02-17 09:30:19','196.25.255.246'),(1192,1000000164,'2009-02-17 09:42:19','198.54.202.210'),(1193,1000000164,'2009-02-17 09:42:19','198.54.202.210'),(1194,1000000164,'2009-02-17 15:52:26','196.2.126.113'),(1195,1000000164,'2009-02-17 15:52:26','196.2.126.113'),(1196,1000000164,'2009-02-17 16:16:35','196.2.126.113'),(1197,1000000164,'2009-02-17 16:16:35','196.2.126.113'),(1198,1000000164,'2009-02-17 20:09:42','196.2.126.113'),(1199,1000000164,'2009-02-17 20:09:42','196.2.126.113'),(1200,1000000164,'2009-02-17 20:13:45','196.2.126.113'),(1201,1000000164,'2009-02-17 20:13:45','196.2.126.113'),(1202,1000000166,'2009-02-18 13:57:31','41.240.220.188'),(1203,1000000166,'2009-02-18 13:57:31','41.240.220.188'),(1204,1000000164,'2009-02-18 16:40:11','196.2.126.113'),(1205,1000000164,'2009-02-18 16:40:11','196.2.126.113'),(1206,1000000166,'2009-02-20 08:17:54','198.54.202.194'),(1207,1000000166,'2009-02-20 08:17:54','198.54.202.194'),(1208,1000000166,'2009-02-20 08:31:46','196.25.255.210'),(1209,1000000166,'2009-02-20 08:31:46','196.25.255.210'),(1210,999999999,'2009-02-20 13:00:19','198.54.202.214'),(1211,999999999,'2009-02-20 13:00:19','198.54.202.214'),(1212,999999999,'2009-02-24 00:15:05','70.83.174.143'),(1213,999999999,'2009-02-24 00:15:05','70.83.174.143'),(1214,999999999,'2009-02-24 00:33:08','70.83.174.143'),(1215,999999999,'2009-02-24 00:33:08','70.83.174.143'),(1216,999999999,'2009-02-25 00:10:40','68.196.60.167'),(1217,999999999,'2009-02-25 00:10:40','68.196.60.167'),(1218,1000000168,'2009-02-26 06:39:42','196.207.33.198'),(1219,1000000168,'2009-02-26 06:39:42','196.207.33.198'),(1220,999999999,'2009-03-01 19:56:54','41.247.161.123'),(1221,999999999,'2009-03-01 19:56:54','41.247.161.123'),(1222,1000000170,'2009-03-03 08:44:53','196.25.255.195'),(1223,1000000170,'2009-03-03 08:44:53','196.25.255.195'),(1224,999999999,'2009-03-03 10:43:29','198.54.202.194'),(1225,999999999,'2009-03-03 10:43:29','198.54.202.194'),(1226,1000000170,'2009-03-03 10:47:19','196.25.255.195'),(1227,1000000170,'2009-03-03 10:47:19','196.25.255.195'),(1228,1000000172,'2009-03-03 12:16:41','164.151.130.58'),(1229,1000000172,'2009-03-03 12:16:41','164.151.130.58'),(1230,1000000170,'2009-03-03 15:31:42','196.25.255.195'),(1231,1000000170,'2009-03-03 15:31:42','196.25.255.195'),(1232,999999999,'2009-03-03 15:35:55','198.54.202.194'),(1233,999999999,'2009-03-03 15:35:55','198.54.202.194'),(1234,1000000170,'2009-03-03 16:29:53','41.240.239.78'),(1235,1000000170,'2009-03-03 16:29:53','41.240.239.78'),(1236,1000000170,'2009-03-03 19:57:00','196.25.255.194'),(1237,1000000170,'2009-03-03 19:57:00','196.25.255.194'),(1238,999999999,'2009-03-04 14:29:44','41.243.229.133'),(1239,999999999,'2009-03-04 14:29:44','41.243.229.133'),(1240,999999999,'2009-03-06 05:32:23','137.158.152.209'),(1241,999999999,'2009-03-06 05:32:23','137.158.152.209'),(1242,1000000175,'2009-03-09 10:11:11','196.25.255.195'),(1243,1000000175,'2009-03-09 10:11:11','196.25.255.195'),(1244,1000000177,'2009-03-11 06:40:01','60.240.134.140'),(1245,1000000177,'2009-03-11 06:40:01','60.240.134.140'),(1246,1000000178,'2009-03-11 12:50:39','96.245.202.103'),(1247,1000000178,'2009-03-11 12:50:39','96.245.202.103'),(1248,1000000178,'2009-03-11 13:17:58','96.245.202.103'),(1249,1000000178,'2009-03-11 13:17:58','96.245.202.103'),(1250,1000000178,'2009-03-12 03:23:13','96.245.202.103'),(1251,1000000178,'2009-03-12 03:23:13','96.245.202.103'),(1252,1000000177,'2009-03-12 03:33:37','60.240.134.140'),(1253,1000000177,'2009-03-12 03:33:37','60.240.134.140'),(1254,1000000177,'2009-03-12 05:49:04','60.240.134.140'),(1255,1000000177,'2009-03-12 05:49:04','60.240.134.140'),(1256,1000000179,'2009-03-12 06:46:48','196.25.255.195'),(1257,1000000179,'2009-03-12 06:46:48','196.25.255.195'),(1258,1000000179,'2009-03-12 11:53:08','196.25.255.195'),(1259,1000000179,'2009-03-12 11:53:08','196.25.255.195'),(1260,999999999,'2009-03-13 08:17:49','24.19.89.18'),(1261,999999999,'2009-03-13 08:17:49','24.19.89.18'),(1262,1000000180,'2009-03-13 16:41:35','168.167.110.50'),(1263,1000000180,'2009-03-13 16:41:35','168.167.110.50'),(1264,1000000181,'2009-03-14 19:51:45','89.5.36.243'),(1265,1000000181,'2009-03-14 19:51:45','89.5.36.243'),(1266,999999999,'2009-03-17 08:11:37','196.33.11.10'),(1267,999999999,'2009-03-17 08:11:37','196.33.11.10'),(1268,999999999,'2009-03-17 12:21:51','41.240.151.196'),(1269,999999999,'2009-03-17 12:21:51','41.240.151.196'),(1270,1000000185,'2009-03-19 20:55:01','196.25.255.218'),(1271,1000000185,'2009-03-19 20:55:01','196.25.255.218'),(1272,1000000185,'2009-03-19 21:34:17','198.54.202.210'),(1273,1000000185,'2009-03-19 21:34:17','198.54.202.210'),(1274,1000000000,'2009-03-20 10:19:22','196.35.158.179'),(1275,1000000000,'2009-03-20 10:19:22','196.35.158.179'),(1276,999999999,'2009-03-20 17:28:37','59.93.122.219'),(1277,999999999,'2009-03-20 17:28:37','59.93.122.219'),(1278,999999999,'2009-03-22 02:40:06','70.125.71.151'),(1279,999999999,'2009-03-22 02:40:06','70.125.71.151'),(1280,999999999,'2009-03-22 11:26:04','41.213.63.245'),(1281,999999999,'2009-03-22 11:26:04','41.213.63.245'),(1282,999999999,'2009-03-22 18:26:01','70.125.71.151'),(1283,999999999,'2009-03-22 18:26:01','70.125.71.151'),(1284,999999999,'2009-03-23 14:40:19','198.54.202.195'),(1285,999999999,'2009-03-23 14:40:19','198.54.202.195'),(1286,1000000187,'2009-03-23 23:59:41','189.27.189.155'),(1287,1000000187,'2009-03-23 23:59:41','189.27.189.155'),(1288,1000000188,'2009-03-24 01:29:23','67.176.112.139'),(1289,1000000188,'2009-03-24 01:29:23','67.176.112.139'),(1290,1000000188,'2009-03-24 02:02:09','67.176.112.139'),(1291,1000000188,'2009-03-24 02:02:09','67.176.112.139'),(1292,999999999,'2009-03-25 10:44:19','164.151.129.210'),(1293,999999999,'2009-03-25 10:44:19','164.151.129.210'),(1294,999999999,'2009-03-25 13:04:03','88.253.14.20'),(1295,999999999,'2009-03-25 13:04:03','88.253.14.20'),(1296,1000000189,'2009-03-27 12:25:32','196.15.245.150'),(1297,1000000189,'2009-03-27 12:25:32','196.15.245.150'),(1298,1000000190,'2009-03-29 10:03:23','41.241.173.89'),(1299,1000000190,'2009-03-29 10:03:23','41.241.173.89'),(1300,1000000190,'2009-03-29 10:33:13','198.54.202.210'),(1301,1000000190,'2009-03-29 10:33:13','198.54.202.210'),(1302,1000000170,'2009-03-29 15:29:56','198.54.202.234'),(1303,1000000170,'2009-03-29 15:29:56','198.54.202.234'),(1304,1000000189,'2009-03-30 08:34:24','196.15.245.150'),(1305,1000000189,'2009-03-30 08:34:24','196.15.245.150'),(1306,1000000190,'2009-03-30 18:24:34','198.54.202.210'),(1307,1000000190,'2009-03-30 18:24:34','198.54.202.210'),(1308,1000000191,'2009-03-31 03:21:07','41.208.50.176'),(1309,1000000191,'2009-03-31 03:21:07','41.208.50.176'),(1310,1000000191,'2009-03-31 07:19:35','41.208.50.176'),(1311,1000000191,'2009-03-31 07:19:35','41.208.50.176'),(1312,1000000170,'2009-04-02 09:16:39','198.54.202.195'),(1313,1000000170,'2009-04-02 09:16:47','198.54.202.195'),(1314,999999999,'2009-04-02 09:18:36','198.54.202.194'),(1315,999999999,'2009-04-02 09:18:36','198.54.202.194'),(1316,1000000000,'2009-04-02 13:07:50','41.245.29.5'),(1317,1000000000,'2009-04-02 13:07:50','41.245.29.5'),(1318,999999999,'2009-04-02 22:03:07','77.222.0.125'),(1319,999999999,'2009-04-02 22:03:07','77.222.0.125'),(1320,999999999,'2009-04-03 16:11:25','196.6.141.27'),(1321,999999999,'2009-04-03 16:11:25','196.6.141.27'),(1322,999999999,'2009-04-07 17:13:06','75.27.62.252'),(1323,999999999,'2009-04-07 17:13:06','75.27.62.252'),(1324,999999999,'2009-04-08 12:01:36','198.54.202.110'),(1325,999999999,'2009-04-08 12:01:36','198.54.202.110'),(1326,999999999,'2009-04-09 06:56:41','41.223.73.74'),(1327,999999999,'2009-04-09 06:56:41','41.223.73.74'),(1328,999999999,'2009-04-09 07:40:40','198.54.202.194'),(1329,999999999,'2009-04-09 07:40:40','198.54.202.194'),(1330,1000000195,'2009-04-10 12:24:39','41.208.48.160'),(1331,1000000195,'2009-04-10 12:24:39','41.208.48.160'),(1332,1000000195,'2009-04-10 19:46:57','41.208.48.160'),(1333,1000000195,'2009-04-10 19:46:57','41.208.48.160'),(1334,1000000195,'2009-04-10 20:27:07','41.208.48.160'),(1335,1000000195,'2009-04-10 20:27:07','41.208.48.160'),(1336,1000000195,'2009-04-10 20:28:44','41.208.48.160'),(1337,1000000195,'2009-04-10 20:28:44','41.208.48.160'),(1338,1000000195,'2009-04-10 20:38:12','41.208.48.160'),(1339,1000000195,'2009-04-10 20:38:12','41.208.48.160'),(1340,1000000195,'2009-04-10 21:05:47','41.208.48.160'),(1341,1000000195,'2009-04-10 21:05:47','41.208.48.160'),(1342,1000000195,'2009-04-10 21:43:42','41.208.48.160'),(1343,1000000195,'2009-04-10 21:43:42','41.208.48.160'),(1344,1000000195,'2009-04-12 20:30:42','41.208.48.160'),(1345,1000000195,'2009-04-12 20:30:42','41.208.48.160'),(1346,1000000195,'2009-04-12 20:53:19','41.208.48.160'),(1347,1000000195,'2009-04-12 20:53:19','41.208.48.160'),(1348,1000000195,'2009-04-12 22:48:49','41.208.48.160'),(1349,1000000195,'2009-04-12 22:48:49','41.208.48.160'),(1350,1000000195,'2009-04-12 22:57:59','41.208.48.160'),(1351,1000000195,'2009-04-12 22:57:59','41.208.48.160'),(1352,1000000195,'2009-04-13 00:14:01','41.208.48.160'),(1353,1000000195,'2009-04-13 00:14:01','41.208.48.160'),(1354,999999999,'2009-04-13 03:24:12','84.113.197.224'),(1355,999999999,'2009-04-13 03:24:12','84.113.197.224'),(1356,999999999,'2009-04-13 15:17:56','84.113.197.224'),(1357,999999999,'2009-04-13 15:17:56','84.113.197.224'),(1358,999999999,'2009-04-13 19:14:23','84.113.197.224'),(1359,999999999,'2009-04-13 19:14:23','84.113.197.224'),(1360,999999999,'2009-04-26 22:15:58','66.90.167.81'),(1361,999999999,'2009-04-26 22:15:58','66.90.167.81'),(1362,1000000000,'2009-04-27 06:25:31','198.54.202.214'),(1363,1000000000,'2009-04-27 06:25:31','198.54.202.214'),(1364,1000000000,'2009-04-27 07:18:28','196.25.255.218'),(1365,1000000000,'2009-04-27 07:18:28','196.25.255.218'),(1366,999999999,'2009-04-27 11:15:57','196.25.255.194'),(1367,999999999,'2009-04-27 11:15:57','196.25.255.194'),(1368,999999999,'2009-04-27 12:13:55','41.243.114.21'),(1369,999999999,'2009-04-27 12:13:55','41.243.114.21'),(1370,1000000206,'2009-04-27 12:15:44','41.243.114.21'),(1371,1000000206,'2009-04-27 12:15:44','41.243.114.21'),(1372,1000000206,'2009-04-27 14:56:15','198.54.202.210'),(1373,1000000206,'2009-04-27 14:56:15','198.54.202.210'),(1374,1000000206,'2009-04-27 14:59:12','198.54.202.194'),(1375,1000000206,'2009-04-27 14:59:12','198.54.202.194'),(1376,1000000206,'2009-04-27 15:19:04','196.25.255.210'),(1377,1000000206,'2009-04-27 15:19:04','196.25.255.210'),(1378,1000000206,'2009-04-27 15:54:40','196.25.255.214'),(1379,1000000206,'2009-04-27 15:54:40','196.25.255.214'),(1380,999999999,'2009-04-28 07:59:01','41.243.209.87'),(1381,999999999,'2009-04-28 07:59:01','41.243.209.87'),(1382,999999999,'2009-04-28 11:41:25','41.3.228.124'),(1383,999999999,'2009-04-28 11:41:25','41.3.228.124'),(1384,1000000207,'2009-04-28 18:53:37','41.245.4.1'),(1385,1000000207,'2009-04-28 18:53:37','41.245.4.1'),(1386,1000000195,'2009-04-28 20:01:15','41.208.11.160'),(1387,1000000195,'2009-04-28 20:01:15','41.208.11.160'),(1388,1000000195,'2009-04-28 20:07:43','41.208.11.160'),(1389,1000000195,'2009-04-28 20:07:43','41.208.11.160'),(1390,1000000206,'2009-04-29 09:32:47','196.212.82.2'),(1391,1000000206,'2009-04-29 09:32:47','196.212.82.2'),(1392,999999999,'2009-04-29 11:14:09','196.25.255.210'),(1393,999999999,'2009-04-29 11:14:09','196.25.255.210'),(1394,999999999,'2009-04-29 18:08:25','198.54.202.182'),(1395,999999999,'2009-04-29 18:08:25','198.54.202.182'),(1396,1000000208,'2009-04-30 00:18:29','41.5.252.204'),(1397,1000000208,'2009-04-30 00:18:29','41.5.252.204'),(1398,1000000208,'2009-04-30 00:20:02','41.5.252.204'),(1399,1000000208,'2009-04-30 00:20:02','41.5.252.204'),(1400,1000000199,'2009-04-30 12:11:29','41.208.50.176'),(1401,1000000199,'2009-04-30 12:11:29','41.208.50.176'),(1402,1000000209,'2009-04-30 12:21:38','195.46.32.29'),(1403,1000000209,'2009-04-30 12:21:38','195.46.32.29'),(1404,1000000210,'2009-04-30 12:26:22','198.54.202.182'),(1405,1000000210,'2009-04-30 12:26:22','198.54.202.182'),(1406,1000000210,'2009-04-30 15:30:33','198.54.202.182'),(1407,1000000210,'2009-04-30 15:30:33','198.54.202.182'),(1408,1000000209,'2009-04-30 20:11:23','195.46.32.29'),(1409,1000000209,'2009-04-30 20:11:23','195.46.32.29'),(1410,1000000209,'2009-05-01 04:16:40','195.46.32.29'),(1411,1000000209,'2009-05-01 04:16:40','195.46.32.29'),(1412,1000000199,'2009-05-01 07:36:18','41.208.50.176'),(1413,1000000199,'2009-05-01 07:36:18','41.208.50.176'),(1414,1000000210,'2009-05-01 13:33:44','198.54.202.182'),(1415,1000000210,'2009-05-01 13:33:44','198.54.202.182'),(1416,1000000209,'2009-05-02 16:44:24','195.46.32.29'),(1417,1000000209,'2009-05-02 16:44:24','195.46.32.29'),(1418,1000000206,'2009-05-03 09:59:58','196.25.255.210'),(1419,1000000206,'2009-05-03 09:59:58','196.25.255.210'),(1420,1000000209,'2009-05-03 11:32:57','195.46.32.29'),(1421,1000000209,'2009-05-03 11:32:57','195.46.32.29'),(1422,1000000199,'2009-05-03 16:56:36','41.208.50.180'),(1423,1000000199,'2009-05-03 16:56:36','41.208.50.180'),(1424,999999999,'2009-05-03 19:00:50','60.48.255.227'),(1425,999999999,'2009-05-03 19:00:50','60.48.255.227'),(1426,1000000000,'2009-05-03 20:20:06','198.54.202.194'),(1427,1000000000,'2009-05-03 20:20:06','198.54.202.194'),(1428,1000000000,'2009-05-03 20:24:53','196.25.255.210'),(1429,1000000000,'2009-05-03 20:24:53','196.25.255.210'),(1430,1000000205,'2009-05-03 20:26:43','196.25.255.210'),(1431,1000000205,'2009-05-03 20:26:43','196.25.255.210'),(1432,999999999,'2009-05-04 07:23:00','62.149.129.32'),(1433,999999999,'2009-05-04 07:23:00','62.149.129.32'),(1434,1000000199,'2009-05-04 16:37:25','41.208.50.180'),(1435,1000000199,'2009-05-04 16:37:25','41.208.50.180'),(1436,999999999,'2009-05-05 03:30:32','68.26.65.103'),(1437,999999999,'2009-05-05 03:30:32','68.26.65.103'),(1438,999999999,'2009-05-11 12:36:55','196.211.227.157'),(1439,999999999,'2009-05-11 12:36:55','196.211.227.157'),(1440,999999999,'2009-05-11 12:42:10','196.207.35.246'),(1441,999999999,'2009-05-11 12:42:10','196.207.35.246'),(1442,999999999,'2009-05-11 12:43:24','196.207.35.246'),(1443,999999999,'2009-05-11 12:43:24','196.207.35.246'),(1444,999999999,'2009-05-11 12:43:27','196.207.35.246'),(1445,999999999,'2009-05-11 12:43:27','196.207.35.246'),(1446,1000000212,'2009-05-12 07:51:54','72.187.234.192'),(1447,1000000212,'2009-05-12 07:51:54','72.187.234.192'),(1448,1000000212,'2009-05-12 08:41:20','72.187.234.192'),(1449,1000000212,'2009-05-12 08:41:20','72.187.234.192'),(1450,1000000212,'2009-05-12 12:45:44','72.187.234.192'),(1451,1000000212,'2009-05-12 12:45:44','72.187.234.192'),(1452,1000000212,'2009-05-12 14:06:32','72.187.234.192'),(1453,1000000212,'2009-05-12 14:06:32','72.187.234.192'),(1454,1000000213,'2009-05-14 04:29:28','84.163.96.184'),(1455,1000000213,'2009-05-14 04:29:28','84.163.96.184'),(1456,1000000214,'2009-05-15 12:16:43','196.15.216.2'),(1457,1000000214,'2009-05-15 12:16:43','196.15.216.2'),(1458,1000000215,'2009-05-15 12:24:53','198.54.202.182'),(1459,1000000215,'2009-05-15 12:24:53','198.54.202.182'),(1460,1000000213,'2009-05-15 14:15:39','84.163.93.242'),(1461,1000000213,'2009-05-15 14:15:39','84.163.93.242'),(1462,1000000213,'2009-05-15 14:17:47','84.163.93.242'),(1463,1000000213,'2009-05-15 14:17:47','84.163.93.242'),(1464,999999999,'2009-05-15 17:59:43','198.54.202.110'),(1465,999999999,'2009-05-15 17:59:43','198.54.202.110'),(1466,999999999,'2009-05-17 19:32:17','151.196.55.168'),(1467,999999999,'2009-05-17 19:32:17','151.196.55.168'),(1468,999999999,'2009-05-19 22:23:59','129.143.140.51'),(1469,999999999,'2009-05-19 22:23:59','129.143.140.51'),(1470,1000000213,'2009-05-19 22:24:43','129.143.140.51'),(1471,1000000213,'2009-05-19 22:24:43','129.143.140.51'),(1472,999999999,'2009-05-20 18:17:19','41.208.50.180'),(1473,999999999,'2009-05-20 18:17:19','41.208.50.180'),(1474,999999999,'2009-05-20 19:56:43','190.52.159.159'),(1475,999999999,'2009-05-20 19:56:43','190.52.159.159'),(1476,999999999,'2009-05-20 19:58:03','190.52.159.159'),(1477,999999999,'2009-05-20 19:58:03','190.52.159.159'),(1478,1000000217,'2009-05-20 20:55:51','41.208.50.176'),(1479,1000000217,'2009-05-20 20:55:51','41.208.50.176'),(1480,1000000216,'2009-05-21 07:44:21','196.207.47.60'),(1481,1000000216,'2009-05-21 07:44:21','196.207.47.60'),(1482,999999999,'2009-05-21 15:48:44','190.52.159.159'),(1483,999999999,'2009-05-21 15:48:44','190.52.159.159'),(1484,1000000218,'2009-05-21 20:05:26','41.27.139.34'),(1485,1000000218,'2009-05-21 20:05:26','41.27.139.34'),(1486,1000000218,'2009-05-21 20:12:13','41.27.139.34'),(1487,1000000218,'2009-05-21 20:12:13','41.27.139.34'),(1488,1000000218,'2009-05-21 20:18:33','41.27.139.34'),(1489,1000000218,'2009-05-21 20:18:33','41.27.139.34'),(1490,999999999,'2009-05-22 15:46:49','190.52.159.159'),(1491,999999999,'2009-05-22 15:46:49','190.52.159.159'),(1492,1000000218,'2009-05-22 17:05:03','41.27.226.63'),(1493,1000000218,'2009-05-22 17:05:03','41.27.226.63'),(1494,1000000213,'2009-05-22 17:38:51','84.163.97.35'),(1495,1000000213,'2009-05-22 17:38:51','84.163.97.35'),(1496,1000000213,'2009-05-22 21:54:48','84.163.97.35'),(1497,1000000213,'2009-05-22 21:54:48','84.163.97.35'),(1498,1000000218,'2009-05-22 23:24:50','41.26.219.6'),(1499,1000000218,'2009-05-22 23:24:50','41.26.219.6'),(1500,1000000218,'2009-05-23 14:19:57','41.31.202.74'),(1501,1000000218,'2009-05-23 14:19:57','41.31.202.74'),(1502,1000000213,'2009-05-25 08:38:26','134.103.168.133'),(1503,1000000213,'2009-05-25 08:38:26','134.103.168.133'),(1504,1000000218,'2009-05-25 09:28:10','41.18.126.248'),(1505,1000000218,'2009-05-25 09:28:10','41.18.126.248'),(1506,1000000218,'2009-05-25 10:34:22','41.18.126.248'),(1507,1000000218,'2009-05-25 10:34:22','41.18.126.248'),(1508,1000000205,'2009-05-25 13:58:45','196.210.129.224'),(1509,1000000205,'2009-05-25 13:58:45','196.210.129.224'),(1510,1000000219,'2009-05-26 05:49:47','124.66.137.106'),(1511,1000000219,'2009-05-26 05:49:47','124.66.137.106'),(1512,1000000219,'2009-05-26 06:09:13','124.66.137.106'),(1513,1000000219,'2009-05-26 06:09:13','124.66.137.106'),(1514,1000000213,'2009-05-26 06:53:12','134.103.168.241'),(1515,1000000213,'2009-05-26 06:53:12','134.103.168.241'),(1516,1000000218,'2009-05-26 09:20:06','196.210.129.224'),(1517,1000000218,'2009-05-26 09:20:06','196.210.129.224'),(1518,1000000219,'2009-05-26 09:28:17','124.66.137.106'),(1519,1000000219,'2009-05-26 09:28:17','124.66.137.106'),(1520,999999999,'2009-05-26 11:17:15','94.123.231.154'),(1521,999999999,'2009-05-26 11:17:15','94.123.231.154'),(1522,1000000222,'2009-05-26 12:40:22','41.6.205.198'),(1523,1000000222,'2009-05-26 12:40:22','41.6.205.198'),(1524,1000000219,'2009-05-26 13:07:00','202.156.12.238'),(1525,1000000219,'2009-05-26 13:07:00','202.156.12.238'),(1526,1000000219,'2009-05-27 02:28:14','124.66.137.106'),(1527,1000000219,'2009-05-27 02:28:14','124.66.137.106'),(1528,1000000225,'2009-05-27 08:14:52','196.25.255.195'),(1529,1000000225,'2009-05-27 08:14:52','196.25.255.195'),(1530,1000000219,'2009-05-27 08:35:28','124.66.137.106'),(1531,1000000219,'2009-05-27 08:35:28','124.66.137.106'),(1532,999999999,'2009-05-28 08:06:39','124.181.76.166'),(1533,999999999,'2009-05-28 08:06:39','124.181.76.166'),(1534,1000000219,'2009-05-28 08:11:00','124.66.137.106'),(1535,1000000219,'2009-05-28 08:11:00','124.66.137.106'),(1536,1000000219,'2009-05-28 09:11:01','124.66.137.106'),(1537,1000000219,'2009-05-28 09:11:01','124.66.137.106'),(1538,999999999,'2009-05-29 01:35:52','124.181.76.166'),(1539,999999999,'2009-05-29 01:35:52','124.181.76.166'),(1540,999999999,'2009-05-29 04:12:28','189.58.19.146'),(1541,999999999,'2009-05-29 04:12:28','189.58.19.146'),(1542,999999999,'2009-05-29 21:38:37','187.58.244.108'),(1543,999999999,'2009-05-29 21:38:37','187.58.244.108'),(1544,1000000219,'2009-05-30 08:26:14','218.186.12.238'),(1545,1000000219,'2009-05-30 08:26:14','218.186.12.238'),(1546,1000000219,'2009-05-30 09:12:07','218.186.12.238'),(1547,1000000219,'2009-05-30 09:12:07','218.186.12.238'),(1548,1000000219,'2009-05-30 13:16:56','116.197.241.111'),(1549,1000000219,'2009-05-30 13:16:56','116.197.241.111'),(1550,999999999,'2009-05-30 20:38:31','198.54.202.110'),(1551,999999999,'2009-05-30 20:38:31','198.54.202.110'),(1552,999999999,'2009-05-30 21:18:32','198.54.202.110'),(1553,999999999,'2009-05-30 21:18:32','198.54.202.110'),(1554,1000000215,'2009-05-31 18:47:15','198.54.202.182'),(1555,1000000215,'2009-05-31 18:47:15','198.54.202.182'),(1556,1000000219,'2009-06-01 01:52:44','124.66.137.106'),(1557,1000000219,'2009-06-01 01:52:44','124.66.137.106'),(1558,1000000215,'2009-06-01 14:21:02','198.54.202.182'),(1559,1000000215,'2009-06-01 14:21:02','198.54.202.182'),(1560,1000000178,'2009-06-01 15:45:39','71.175.82.22'),(1561,999999999,'2009-06-01 15:46:39','71.175.82.22'),(1562,999999999,'2009-06-01 15:46:39','71.175.82.22'),(1563,1000000227,'2009-06-01 19:02:31','198.54.202.182'),(1564,1000000227,'2009-06-01 19:02:31','198.54.202.182'),(1565,1000000215,'2009-06-02 07:44:26','198.54.202.182'),(1566,1000000215,'2009-06-02 07:44:26','198.54.202.182'),(1567,1000000228,'2009-06-02 10:13:47','41.16.255.91'),(1568,1000000228,'2009-06-02 10:13:47','41.16.255.91'),(1569,999999999,'2009-06-02 20:02:18','190.52.146.192'),(1570,999999999,'2009-06-02 20:02:18','190.52.146.192'),(1571,999999999,'2009-06-03 08:21:59','41.177.12.24'),(1572,999999999,'2009-06-03 08:21:59','41.177.12.24'),(1573,1000000229,'2009-06-03 08:32:50','41.177.12.24'),(1574,1000000229,'2009-06-03 08:32:50','41.177.12.24'),(1575,999999999,'2009-06-03 14:54:35','41.244.126.249'),(1576,999999999,'2009-06-03 14:54:35','41.244.126.249'),(1577,1000000230,'2009-06-03 15:04:37','41.244.126.249'),(1578,1000000230,'2009-06-03 15:04:37','41.244.126.249'),(1579,999999999,'2009-06-04 15:03:50','196.211.239.93'),(1580,999999999,'2009-06-04 15:03:50','196.211.239.93'),(1581,999999999,'2009-06-06 08:02:49','41.31.144.183'),(1582,999999999,'2009-06-06 08:02:49','41.31.144.183'),(1583,999999999,'2009-06-06 20:11:07','70.196.42.236'),(1584,999999999,'2009-06-06 20:11:07','70.196.42.236'),(1585,999999999,'2009-06-06 20:12:27','70.196.42.236'),(1586,999999999,'2009-06-06 20:12:27','70.196.42.236'),(1587,1000000231,'2009-06-07 11:41:43','41.208.48.160'),(1588,1000000231,'2009-06-07 11:41:43','41.208.48.160'),(1589,999999999,'2009-06-07 11:47:42','59.93.85.237'),(1590,999999999,'2009-06-07 11:47:42','59.93.85.237'),(1591,1000000232,'2009-06-08 00:57:10','66.130.216.85'),(1592,1000000232,'2009-06-08 00:57:10','66.130.216.85'),(1593,999999999,'2009-06-08 03:22:03','70.216.11.97'),(1594,999999999,'2009-06-08 03:22:03','70.216.11.97'),(1595,999999999,'2009-06-08 14:58:53','79.156.82.83'),(1596,999999999,'2009-06-08 14:58:53','79.156.82.83'),(1597,999999999,'2009-06-08 17:32:36','41.208.50.176'),(1598,999999999,'2009-06-08 17:32:36','41.208.50.176'),(1599,1000000226,'2009-06-09 19:31:39','196.25.255.195'),(1600,1000000226,'2009-06-09 19:31:39','196.25.255.195'),(1601,1000000226,'2009-06-09 19:50:33','198.54.202.195'),(1602,1000000226,'2009-06-09 19:50:33','198.54.202.195'),(1603,999999999,'2009-06-09 23:52:05','121.214.129.95'),(1604,999999999,'2009-06-09 23:52:05','121.214.129.95'),(1605,1000000234,'2009-06-10 20:08:45','198.54.202.182'),(1606,1000000234,'2009-06-10 20:08:45','198.54.202.182'),(1607,999999999,'2009-06-11 09:32:13','196.46.71.251'),(1608,999999999,'2009-06-11 09:32:13','196.46.71.251'),(1609,1000000234,'2009-06-11 14:24:49','198.54.202.182'),(1610,1000000234,'2009-06-11 14:24:49','198.54.202.182'),(1611,999999999,'2009-06-12 04:10:36','69.224.59.133'),(1612,999999999,'2009-06-12 04:10:36','69.224.59.133'),(1613,1000000222,'2009-06-12 07:11:09','41.3.225.214'),(1614,1000000222,'2009-06-12 07:11:09','41.3.225.214'),(1615,1000000235,'2009-06-12 08:31:43','196.46.71.251'),(1616,1000000235,'2009-06-12 08:31:43','196.46.71.251'),(1617,1000000235,'2009-06-12 12:51:39','196.46.71.251'),(1618,1000000235,'2009-06-12 12:51:39','196.46.71.251'),(1619,1000000235,'2009-06-12 13:09:52','196.46.71.251'),(1620,1000000235,'2009-06-12 13:09:52','196.46.71.251'),(1621,1000000236,'2009-06-12 21:03:19','190.241.28.231'),(1622,1000000236,'2009-06-12 21:03:19','190.241.28.231'),(1623,999999999,'2009-06-13 02:34:45','69.113.108.167'),(1624,999999999,'2009-06-13 02:34:45','69.113.108.167'),(1625,999999999,'2009-06-13 06:39:49','41.247.246.33'),(1626,999999999,'2009-06-13 06:39:49','41.247.246.33'),(1627,1000000235,'2009-06-14 05:56:26','196.46.71.251'),(1628,1000000235,'2009-06-14 05:56:26','196.46.71.251'),(1629,999999999,'2009-06-15 02:18:01','124.180.217.135'),(1630,999999999,'2009-06-15 02:18:01','124.180.217.135'),(1631,1000000235,'2009-06-15 09:58:16','196.46.71.251'),(1632,1000000235,'2009-06-15 09:58:16','196.46.71.251'),(1633,1000000235,'2009-06-15 10:49:07','196.46.71.251'),(1634,1000000235,'2009-06-15 10:49:07','196.46.71.251'),(1635,1000000235,'2009-06-15 13:16:57','196.46.71.251'),(1636,1000000235,'2009-06-15 13:16:57','196.46.71.251'),(1637,1000000235,'2009-06-15 13:18:36','196.46.71.251'),(1638,1000000235,'2009-06-15 13:18:36','196.46.71.251'),(1639,1000000235,'2009-06-15 13:53:51','196.46.71.251'),(1640,1000000235,'2009-06-15 13:53:51','196.46.71.251'),(1641,1000000235,'2009-06-15 16:01:08','196.46.71.251'),(1642,1000000235,'2009-06-15 16:01:08','196.46.71.251'),(1643,999999999,'2009-06-15 17:33:41','41.26.81.157'),(1644,999999999,'2009-06-15 17:33:41','41.26.81.157'),(1645,1000000235,'2009-06-15 19:48:21','196.46.71.251'),(1646,1000000235,'2009-06-15 19:48:21','196.46.71.251'),(1647,999999999,'2009-06-16 00:18:50','78.143.201.57'),(1648,999999999,'2009-06-16 00:18:50','78.143.201.57'),(1649,1000000235,'2009-06-16 07:33:20','196.46.71.251'),(1650,1000000235,'2009-06-16 07:33:20','196.46.71.251'),(1651,1000000235,'2009-06-16 08:30:28','196.46.71.251'),(1652,1000000235,'2009-06-16 08:30:28','196.46.71.251'),(1653,1000000235,'2009-06-16 08:57:34','196.46.71.251'),(1654,1000000235,'2009-06-16 08:57:34','196.46.71.251'),(1655,1000000235,'2009-06-16 10:21:12','196.46.71.251'),(1656,1000000235,'2009-06-16 10:21:12','196.46.71.251'),(1657,1000000235,'2009-06-16 14:53:31','196.46.71.251'),(1658,1000000235,'2009-06-16 14:53:31','196.46.71.251'),(1659,1000000235,'2009-06-16 17:10:54','196.46.71.251'),(1660,1000000235,'2009-06-16 17:10:54','196.46.71.251'),(1661,1000000235,'2009-06-16 20:09:20','196.46.71.251'),(1662,1000000235,'2009-06-16 20:09:20','196.46.71.251'),(1663,1000000235,'2009-06-16 20:27:32','196.46.71.251'),(1664,1000000235,'2009-06-16 20:27:32','196.46.71.251'),(1665,1000000235,'2009-06-17 11:03:04','196.46.71.251'),(1666,1000000235,'2009-06-17 11:03:04','196.46.71.251'),(1667,999999999,'2009-06-18 09:32:38','198.54.202.195'),(1668,999999999,'2009-06-18 09:32:38','198.54.202.195'),(1669,1000000239,'2009-06-20 16:58:52','41.208.48.160'),(1670,1000000239,'2009-06-20 16:58:52','41.208.48.160'),(1671,1000000235,'2009-06-21 17:03:12','196.46.71.251'),(1672,1000000235,'2009-06-21 17:03:12','196.46.71.251'),(1673,999999999,'2009-06-23 16:19:36','198.70.193.2'),(1674,999999999,'2009-06-23 16:19:36','198.70.193.2'),(1675,999999999,'2009-06-24 11:29:37','78.93.9.129'),(1676,999999999,'2009-06-24 11:29:37','78.93.9.129'),(1677,999999999,'2009-06-24 11:30:48','78.93.9.129'),(1678,999999999,'2009-06-24 11:30:48','78.93.9.129'),(1679,999999999,'2009-06-24 19:43:17','69.43.12.164'),(1680,999999999,'2009-06-24 19:43:17','69.43.12.164'),(1681,999999999,'2009-06-25 12:34:41','70.81.211.246'),(1682,999999999,'2009-06-25 12:34:41','70.81.211.246'),(1683,1000000241,'2009-06-26 12:58:53','41.246.145.21'),(1684,1000000241,'2009-06-26 12:58:53','41.246.145.21'),(1685,999999999,'2009-06-28 14:31:49','196.25.255.194'),(1686,999999999,'2009-06-28 14:31:49','196.25.255.194'),(1687,999999999,'2009-07-01 10:37:16','198.54.202.194'),(1688,999999999,'2009-07-01 10:37:16','198.54.202.194'),(1689,1000000244,'2009-07-01 10:45:27','41.243.65.234'),(1690,1000000244,'2009-07-01 10:45:27','41.243.65.234'),(1691,1000000245,'2009-07-01 11:17:38','41.240.179.91'),(1692,1000000245,'2009-07-01 11:17:38','41.240.179.91'),(1693,1000000245,'2009-07-01 11:57:50','198.54.202.182'),(1694,1000000245,'2009-07-01 11:57:50','198.54.202.182'),(1695,1000000245,'2009-07-01 12:16:01','198.54.202.182'),(1696,1000000245,'2009-07-01 12:16:01','198.54.202.182'),(1697,1000000245,'2009-07-01 12:36:20','198.54.202.182'),(1698,1000000245,'2009-07-01 12:36:20','198.54.202.182'),(1699,1000000245,'2009-07-01 14:37:18','198.54.202.182'),(1700,1000000245,'2009-07-01 14:37:18','198.54.202.182'),(1701,1000000246,'2009-07-02 10:12:39','198.54.202.210'),(1702,1000000246,'2009-07-02 10:12:39','198.54.202.210'),(1703,999999999,'2009-07-03 14:40:56','41.5.204.247'),(1704,999999999,'2009-07-03 14:40:56','41.5.204.247'),(1705,1000000244,'2009-07-04 10:02:29','41.30.211.77'),(1706,1000000244,'2009-07-04 10:02:29','41.30.211.77'),(1707,1000000244,'2009-07-04 10:17:39','41.30.211.77'),(1708,1000000244,'2009-07-04 10:17:39','41.30.211.77'),(1709,1000000244,'2009-07-04 12:40:44','41.31.200.54'),(1710,1000000244,'2009-07-04 12:40:44','41.31.200.54'),(1711,1000000244,'2009-07-04 14:50:52','41.26.127.94'),(1712,1000000244,'2009-07-04 14:50:52','41.26.127.94'),(1713,1000000247,'2009-07-05 15:32:27','122.44.99.63'),(1714,1000000247,'2009-07-05 15:32:27','122.44.99.63'),(1715,1000000247,'2009-07-05 16:30:00','122.44.99.63'),(1716,1000000247,'2009-07-05 16:30:00','122.44.99.63'),(1717,1000000247,'2009-07-06 02:10:13','122.44.99.63'),(1718,1000000247,'2009-07-06 02:10:13','122.44.99.63'),(1719,1000000247,'2009-07-06 05:22:46','122.44.99.63'),(1720,1000000247,'2009-07-06 05:22:46','122.44.99.63'),(1721,1000000247,'2009-07-06 11:36:30','122.44.99.63'),(1722,1000000247,'2009-07-06 11:36:30','122.44.99.63'),(1723,1000000247,'2009-07-06 11:43:54','122.44.99.63'),(1724,1000000247,'2009-07-06 11:43:54','122.44.99.63'),(1725,1000000247,'2009-07-07 02:05:07','122.44.99.63'),(1726,1000000247,'2009-07-07 02:05:07','122.44.99.63'),(1727,1000000247,'2009-07-07 11:34:35','122.44.99.63'),(1728,1000000247,'2009-07-07 11:34:35','122.44.99.63'),(1729,1000000245,'2009-07-08 11:29:20','41.213.126.7'),(1730,1000000245,'2009-07-08 11:29:20','41.213.126.7'),(1731,1000000245,'2009-07-09 11:21:26','198.54.202.182'),(1732,1000000245,'2009-07-09 11:21:26','198.54.202.182'),(1733,999999999,'2009-07-09 11:36:47','198.54.202.182'),(1734,999999999,'2009-07-09 11:36:47','198.54.202.182'),(1735,1000000245,'2009-07-09 11:40:16','198.54.202.182'),(1736,1000000245,'2009-07-09 11:40:16','198.54.202.182'),(1737,1000000212,'2009-07-09 12:25:37','72.187.234.192'),(1738,1000000245,'2009-07-09 13:02:37','41.240.170.215'),(1739,1000000245,'2009-07-09 13:02:37','41.240.170.215'),(1740,1000000247,'2009-07-13 01:31:10','122.44.99.63'),(1741,1000000247,'2009-07-13 01:31:10','122.44.99.63'),(1742,1000000247,'2009-07-13 05:24:05','122.44.99.63'),(1743,1000000247,'2009-07-13 05:24:05','122.44.99.63'),(1744,1000000247,'2009-07-13 05:58:34','122.44.99.63'),(1745,1000000247,'2009-07-13 05:58:34','122.44.99.63'),(1746,1000000244,'2009-07-15 17:30:45','41.29.220.70'),(1747,1000000244,'2009-07-15 17:30:45','41.29.220.70'),(1748,999999999,'2009-07-15 18:42:29','41.30.37.214'),(1749,999999999,'2009-07-15 18:42:29','41.30.37.214'),(1750,1000000244,'2009-07-16 16:33:54','41.29.135.56'),(1751,1000000244,'2009-07-16 16:33:54','41.29.135.56'),(1752,1000000244,'2009-07-16 17:17:36','41.29.135.56'),(1753,1000000244,'2009-07-16 17:17:36','41.29.135.56'),(1754,1000000244,'2009-07-16 18:08:26','41.27.135.215'),(1755,1000000244,'2009-07-16 18:08:26','41.27.135.215'),(1756,999999999,'2009-07-16 20:15:59','12.155.233.130'),(1757,999999999,'2009-07-16 20:15:59','12.155.233.130'),(1758,1000000250,'2009-07-17 14:28:41','196.211.36.186'),(1759,1000000250,'2009-07-17 14:28:41','196.211.36.186'),(1760,1000000251,'2009-07-18 04:12:27','99.5.88.178'),(1761,1000000251,'2009-07-18 04:12:27','99.5.88.178'),(1762,1000000251,'2009-07-18 15:12:16','99.5.88.178'),(1763,1000000251,'2009-07-18 15:12:16','99.5.88.178'),(1764,999999999,'2009-07-19 19:46:05','67.142.130.32'),(1765,999999999,'2009-07-19 19:46:05','67.142.130.32'),(1766,1000000250,'2009-07-20 07:50:30','196.212.209.114'),(1767,1000000250,'2009-07-20 07:50:30','196.212.209.114'),(1768,1000000251,'2009-07-21 02:40:50','99.5.88.178'),(1769,1000000251,'2009-07-21 02:40:50','99.5.88.178'),(1770,999999999,'2009-07-21 04:53:24','218.111.3.212'),(1771,999999999,'2009-07-21 04:53:24','218.111.3.212'),(1772,1000000254,'2009-07-21 09:02:22','82.155.53.79'),(1773,1000000254,'2009-07-21 09:02:22','82.155.53.79'),(1774,999999999,'2009-07-21 09:31:01','82.155.53.79'),(1775,999999999,'2009-07-21 09:31:01','82.155.53.79'),(1776,999999999,'2009-07-21 18:58:26','12.155.233.130'),(1777,999999999,'2009-07-21 18:58:26','12.155.233.130'),(1778,999999999,'2009-07-21 20:39:20','196.210.189.207'),(1779,999999999,'2009-07-21 20:39:20','196.210.189.207'),(1780,1000000251,'2009-07-22 02:14:05','99.5.88.178'),(1781,1000000251,'2009-07-22 02:14:05','99.5.88.178'),(1782,1000000255,'2009-07-22 02:47:26','71.77.61.120'),(1783,1000000255,'2009-07-22 02:47:26','71.77.61.120'),(1784,1000000000,'2009-07-22 05:12:49','41.245.24.0'),(1785,1000000000,'2009-07-22 05:12:49','41.245.24.0'),(1786,999999999,'2009-07-23 00:35:37','205.149.144.74'),(1787,999999999,'2009-07-23 00:35:37','205.149.144.74'),(1788,1000000251,'2009-07-23 01:34:21','99.5.88.178'),(1789,1000000251,'2009-07-23 01:34:21','99.5.88.178'),(1790,1000000251,'2009-07-23 02:15:12','99.5.88.178'),(1791,1000000251,'2009-07-23 02:15:12','99.5.88.178'),(1792,1000000251,'2009-07-23 02:28:17','99.5.88.178'),(1793,1000000251,'2009-07-23 02:28:17','99.5.88.178'),(1794,1000000251,'2009-07-24 01:54:18','99.5.88.178'),(1795,1000000251,'2009-07-24 01:54:18','99.5.88.178'),(1796,1000000251,'2009-07-24 02:10:50','99.5.88.178'),(1797,1000000251,'2009-07-24 02:10:50','99.5.88.178'),(1798,1000000257,'2009-07-24 15:00:11','41.208.48.176'),(1799,1000000257,'2009-07-24 15:00:11','41.208.48.176'),(1800,1000000251,'2009-07-25 03:29:02','99.5.88.178'),(1801,1000000251,'2009-07-25 03:29:02','99.5.88.178'),(1802,999999999,'2009-07-25 04:37:12','99.5.88.178'),(1803,999999999,'2009-07-25 04:37:12','99.5.88.178'),(1804,1000000251,'2009-07-25 04:48:37','99.5.88.178'),(1805,1000000251,'2009-07-25 04:48:37','99.5.88.178'),(1806,1000000257,'2009-07-25 15:58:45','41.208.48.176'),(1807,1000000257,'2009-07-25 15:58:45','41.208.48.176'),(1808,1000000257,'2009-07-25 16:04:28','41.208.48.176'),(1809,1000000257,'2009-07-25 16:04:28','41.208.48.176'),(1810,1000000257,'2009-07-25 16:32:19','41.208.48.176'),(1811,1000000257,'2009-07-25 16:32:19','41.208.48.176'),(1812,999999999,'2009-07-26 11:51:32','196.207.47.60'),(1813,999999999,'2009-07-26 11:51:32','196.207.47.60'),(1814,1000000244,'2009-07-26 15:13:07','41.29.23.137'),(1815,1000000244,'2009-07-26 15:13:07','41.29.23.137'),(1816,999999999,'2009-07-26 15:15:17','41.29.23.137'),(1817,999999999,'2009-07-26 15:15:17','41.29.23.137'),(1818,1000000244,'2009-07-26 15:16:04','41.29.23.137'),(1819,1000000244,'2009-07-26 15:16:04','41.29.23.137'),(1820,1000000255,'2009-07-26 16:00:54','71.77.61.120'),(1821,1000000255,'2009-07-26 16:00:54','71.77.61.120'),(1822,1000000251,'2009-07-27 01:19:47','99.5.88.178'),(1823,1000000251,'2009-07-27 01:19:47','99.5.88.178'),(1824,1000000251,'2009-07-27 02:16:03','99.5.88.178'),(1825,1000000251,'2009-07-27 02:16:03','99.5.88.178'),(1826,1000000000,'2009-07-27 06:58:50','41.245.47.70'),(1827,1000000000,'2009-07-27 06:58:50','41.245.47.70'),(1828,1000000257,'2009-07-27 12:50:56','41.208.48.176'),(1829,1000000257,'2009-07-27 12:50:56','41.208.48.176'),(1830,1000000258,'2009-07-27 16:45:00','196.25.255.210'),(1831,1000000258,'2009-07-27 16:45:00','196.25.255.210'),(1832,1000000244,'2009-07-27 18:36:57','41.2.10.67'),(1833,1000000244,'2009-07-27 18:36:57','41.2.10.67'),(1834,1000000244,'2009-07-27 18:37:01','41.2.10.67'),(1835,1000000244,'2009-07-27 18:37:01','41.2.10.67'),(1836,1000000000,'2009-07-27 20:45:24','198.54.202.218'),(1837,1000000000,'2009-07-27 20:45:24','198.54.202.218'),(1838,1000000251,'2009-07-27 22:08:44','99.5.88.178'),(1839,1000000251,'2009-07-27 22:08:44','99.5.88.178'),(1840,1000000251,'2009-07-27 22:09:19','99.5.88.178'),(1841,1000000251,'2009-07-27 22:09:19','99.5.88.178'),(1842,1000000251,'2009-07-27 22:50:07','99.5.88.178'),(1843,1000000251,'2009-07-27 22:50:07','99.5.88.178'),(1844,1000000251,'2009-07-28 21:51:14','99.5.88.178'),(1845,1000000251,'2009-07-28 21:51:14','99.5.88.178'),(1846,999999999,'2009-07-29 01:33:42','173.70.160.178'),(1847,999999999,'2009-07-29 01:33:42','173.70.160.178'),(1848,999999999,'2009-07-29 21:29:35','204.184.176.1'),(1849,999999999,'2009-07-29 21:29:35','204.184.176.1'),(1850,999999999,'2009-07-30 10:48:33','62.200.52.130'),(1851,999999999,'2009-07-30 10:48:33','62.200.52.130'),(1852,1000000258,'2009-07-30 14:32:40','196.25.255.210'),(1853,1000000258,'2009-07-30 14:32:40','196.25.255.210'),(1854,999999999,'2009-07-30 14:34:01','196.25.255.195'),(1855,999999999,'2009-07-30 14:34:01','196.25.255.195'),(1856,999999999,'2009-08-04 18:34:13','207.35.210.2'),(1857,999999999,'2009-08-04 18:34:13','207.35.210.2'),(1858,1000000260,'2009-08-08 16:26:14','196.211.90.170'),(1859,1000000260,'2009-08-08 16:26:14','196.211.90.170'),(1860,1000000262,'2009-08-15 12:52:51','41.246.123.211'),(1861,1000000262,'2009-08-15 12:52:51','41.246.123.211'),(1862,1000000263,'2009-08-18 14:44:39','196.210.143.153'),(1863,1000000263,'2009-08-18 14:44:39','196.210.143.153'),(1864,999999999,'2009-08-21 04:19:10','203.0.238.61'),(1865,999999999,'2009-08-21 04:19:10','203.0.238.61'),(1866,1000000265,'2009-08-24 08:55:01','196.21.99.1'),(1867,1000000265,'2009-08-24 08:55:01','196.21.99.1'),(1868,999999999,'2009-09-02 13:36:27','196.11.134.77'),(1869,999999999,'2009-09-02 13:36:27','196.11.134.77'),(1870,1000000266,'2009-09-02 13:44:35','196.11.134.77'),(1871,1000000266,'2009-09-02 13:44:35','196.11.134.77'),(1872,999999999,'2009-09-04 10:59:22','124.168.115.136'),(1873,999999999,'2009-09-04 10:59:22','124.168.115.136'),(1874,999999999,'2009-09-14 09:07:01','194.225.240.11'),(1875,999999999,'2009-09-14 09:07:01','194.225.240.11'),(1876,999999999,'2009-09-19 05:44:57','117.199.177.229'),(1877,999999999,'2009-09-19 05:44:57','117.199.177.229'),(1878,999999999,'2009-09-23 05:50:24','75.94.213.65'),(1879,999999999,'2009-09-23 05:50:24','75.94.213.65'),(1880,999999999,'2009-09-28 07:43:59','91.204.24.250'),(1881,999999999,'2009-09-28 07:43:59','91.204.24.250'),(1882,1000000273,'2009-09-28 19:13:07','41.7.172.142'),(1883,1000000273,'2009-09-28 19:13:07','41.7.172.142'),(1884,1000000273,'2009-09-28 19:59:46','198.54.202.250'),(1885,1000000273,'2009-09-28 19:59:46','198.54.202.250'),(1886,1000000275,'2009-10-08 04:10:17','210.0.130.24'),(1887,1000000275,'2009-10-08 04:10:17','210.0.130.24'),(1888,1000000275,'2009-10-08 04:50:27','210.0.130.24'),(1889,1000000275,'2009-10-08 04:50:27','210.0.130.24'),(1890,999999999,'2009-10-08 04:52:54','210.0.130.24'),(1891,999999999,'2009-10-08 04:52:54','210.0.130.24'),(1892,1000000275,'2009-10-08 09:09:15','210.0.130.24'),(1893,1000000275,'2009-10-08 09:09:15','210.0.130.24'),(1894,1000000275,'2009-10-08 09:22:23','210.0.130.24'),(1895,1000000275,'2009-10-08 09:22:23','210.0.130.24'),(1896,1000000275,'2009-10-09 06:44:39','210.0.130.60'),(1897,1000000275,'2009-10-09 06:44:39','210.0.130.60'),(1898,1000000275,'2009-10-09 07:15:54','210.0.130.60'),(1899,1000000275,'2009-10-09 07:15:54','210.0.130.60'),(1900,1000000275,'2009-10-09 07:18:46','210.0.130.60'),(1901,1000000275,'2009-10-09 07:18:46','210.0.130.60'),(1902,1000000275,'2009-10-09 07:30:53','210.0.130.60'),(1903,1000000275,'2009-10-09 07:30:53','210.0.130.60'),(1904,1000000275,'2009-10-09 08:06:29','210.0.130.60'),(1905,1000000275,'2009-10-09 08:06:29','210.0.130.60'),(1906,1000000275,'2009-10-12 02:26:54','210.0.130.127'),(1907,1000000275,'2009-10-12 02:26:54','210.0.130.127'),(1908,999999999,'2009-10-14 19:46:52','141.119.184.130'),(1909,999999999,'2009-10-14 19:46:52','141.119.184.130'),(1910,999999999,'2009-10-14 19:46:53','141.119.184.130'),(1911,999999999,'2009-10-14 19:46:53','141.119.184.130'),(1912,999999999,'2009-10-16 14:15:25','41.145.88.88'),(1913,999999999,'2009-10-16 14:15:25','41.145.88.88'),(1914,999999999,'2009-10-18 18:49:14','70.160.250.168'),(1915,999999999,'2009-10-18 18:49:14','70.160.250.168'),(1916,999999999,'2009-10-18 18:52:01','70.160.250.168'),(1917,999999999,'2009-10-18 18:52:01','70.160.250.168'),(1918,1000000277,'2009-10-20 12:04:13','196.30.245.149'),(1919,1000000277,'2009-10-20 12:04:13','196.30.245.149'),(1920,999999999,'2009-10-31 20:38:37','98.168.137.232'),(1921,999999999,'2009-10-31 20:38:37','98.168.137.232'),(1922,999999999,'2009-11-01 14:26:26','196.210.194.22'),(1923,999999999,'2009-11-01 14:26:26','196.210.194.22'),(1924,999999999,'2009-11-03 14:14:31','196.210.177.45'),(1925,999999999,'2009-11-03 14:14:31','196.210.177.45'),(1926,999999999,'2009-11-04 08:37:25','196.210.146.160'),(1927,999999999,'2009-11-04 08:37:25','196.210.146.160'),(1928,999999999,'2009-11-04 08:56:21','196.210.146.160'),(1929,999999999,'2009-11-04 08:56:21','196.210.146.160'),(1930,1000000000,'2009-11-05 16:28:36','196.210.237.74'),(1931,1000000000,'2009-11-05 16:28:36','196.210.237.74'),(1932,1000000000,'2009-11-05 19:47:05','196.210.237.74'),(1933,1000000000,'2009-11-05 19:47:05','196.210.237.74'),(1934,1000000280,'2009-11-06 04:53:16','41.0.103.3'),(1935,1000000280,'2009-11-06 04:53:16','41.0.103.3'),(1936,999999999,'2009-11-11 18:01:03','76.206.54.91'),(1937,999999999,'2009-11-11 18:01:03','76.206.54.91'),(1938,999999999,'2009-11-16 08:44:17','198.54.202.210'),(1939,999999999,'2009-11-16 08:44:17','198.54.202.210'),(1940,1000000281,'2009-11-20 14:24:23','196.21.99.1'),(1941,1000000281,'2009-11-20 14:24:23','196.21.99.1'),(1942,999999999,'2009-11-26 12:40:00','198.54.202.218'),(1943,999999999,'2009-11-26 12:40:00','198.54.202.218'),(1944,999999999,'2009-11-30 12:56:21','196.210.206.104'),(1945,999999999,'2009-11-30 12:56:21','196.210.206.104'),(1946,999999999,'2009-12-07 01:34:18','201.50.150.212'),(1947,999999999,'2009-12-07 01:34:18','201.50.150.212'),(1948,1000000282,'2009-12-09 22:41:19','75.137.96.203'),(1949,1000000282,'2009-12-09 22:41:19','75.137.96.203'),(1950,1000000000,'2009-12-09 22:49:25','196.210.169.193'),(1951,1000000000,'2009-12-09 22:49:25','196.210.169.193'),(1952,999999999,'2009-12-22 11:41:26','41.237.207.212'),(1953,999999999,'2009-12-22 11:41:26','41.237.207.212'),(1954,999999999,'2009-12-23 07:26:55','72.187.10.145'),(1955,999999999,'2009-12-23 07:26:55','72.187.10.145'),(1956,999999999,'2010-01-01 08:29:26','41.185.83.237'),(1957,999999999,'2010-01-01 08:29:26','41.185.83.237'),(1958,999999999,'2010-01-02 06:46:51','41.26.55.65'),(1959,999999999,'2010-01-02 06:46:51','41.26.55.65'),(1960,999999999,'2010-01-05 06:21:10','41.213.63.14'),(1961,999999999,'2010-01-05 06:21:10','41.213.63.14'),(1962,999999999,'2010-01-06 20:53:22','41.17.38.27'),(1963,999999999,'2010-01-06 20:53:22','41.17.38.27'),(1964,999999999,'2010-01-13 21:17:11','80.203.243.210'),(1965,999999999,'2010-01-13 21:17:11','80.203.243.210'),(1966,1000000284,'2010-01-13 22:25:43','196.30.245.149'),(1967,1000000284,'2010-01-13 22:25:43','196.30.245.149'),(1968,1000000284,'2010-01-14 05:33:47','196.30.245.149'),(1969,1000000284,'2010-01-14 05:33:47','196.30.245.149'),(1970,1000000284,'2010-01-14 07:00:56','196.30.245.149'),(1971,1000000284,'2010-01-14 07:00:56','196.30.245.149'),(1972,1000000000,'2010-01-14 08:14:02','80.239.242.95'),(1973,1000000000,'2010-01-14 08:14:02','80.239.242.95');
/*!40000 ALTER TABLE `login` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `login_seq`
--

DROP TABLE IF EXISTS `login_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `login_seq` (
  `id` int(10) unsigned NOT NULL auto_increment,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1974 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `login_seq`
--

LOCK TABLES `login_seq` WRITE;
/*!40000 ALTER TABLE `login_seq` DISABLE KEYS */;
INSERT INTO `login_seq` VALUES (1973);
/*!40000 ALTER TABLE `login_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `module`
--

DROP TABLE IF EXISTS `module`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `module` (
  `module_id` int(11) NOT NULL default '0',
  `is_configurable` smallint(1) default NULL,
  `name` varchar(255) default NULL,
  `title` varchar(255) default NULL,
  `description` text,
  `admin_uri` varchar(255) default NULL,
  `icon` varchar(255) default NULL,
  `maintainers` text,
  `version` varchar(8) default NULL,
  `license` varchar(16) default NULL,
  `state` varchar(8) default NULL,
  PRIMARY KEY  (`module_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `module`
--

LOCK TABLES `module` WRITE;
/*!40000 ALTER TABLE `module` DISABLE KEYS */;
INSERT INTO `module` VALUES (1,1,'block','Blocks','Use the \'Blocks\' module to configure the contents of the blocks in the left and right hand columns.','block/block','48/module_block.png','',NULL,NULL,NULL),(2,1,'default','Default','The \'Default\' module includes functionality that is needed in every install, for example, configuration and interface language manangement, and module management.','default/maintenance','48/module_default.png','',NULL,NULL,NULL),(3,0,'export','Export Data','Used for exporting to various formats, ie RSS, OPML, etc.','export/rss','rndmsg.png','',NULL,NULL,NULL),(4,1,'navigation','Navigation','The \'Navigation\' module is what you use to build your site navigation, it creates menus that you can customise in terms of look and feel, and allows you to link to any site resource.','navigation/page','navigation.png','',NULL,NULL,NULL),(5,1,'user','Users and Security','The \'Users and Security\' module allows you to manage all your users, administer the roles they belong to, change their passwords, setup permissions and alter the global default preferences.','user/user','48/module_user.png','',NULL,NULL,NULL),(6,1,'rvsemailtemplate','Email Template','','rvsemailtemplate/emailtemplate','','',NULL,NULL,NULL),(7,1,'rvuser','Rvuser Configuration','The \'Users and Security\' module allows you to manage all your users, administer the roles they belong to, change their passwords, setup permissions and alter the global default preferences.','user/user','48/module_user.png','',NULL,NULL,NULL);
/*!40000 ALTER TABLE `module` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `module_seq`
--

DROP TABLE IF EXISTS `module_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `module_seq` (
  `id` int(10) unsigned NOT NULL auto_increment,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `module_seq`
--

LOCK TABLES `module_seq` WRITE;
/*!40000 ALTER TABLE `module_seq` DISABLE KEYS */;
INSERT INTO `module_seq` VALUES (7);
/*!40000 ALTER TABLE `module_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `org_preference`
--

DROP TABLE IF EXISTS `org_preference`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `org_preference` (
  `org_preference_id` int(11) NOT NULL default '0',
  `organisation_id` int(11) NOT NULL default '0',
  `preference_id` int(11) NOT NULL default '0',
  `value` varchar(128) default NULL,
  PRIMARY KEY  (`org_preference_id`),
  KEY `organisation_org_preference_fk` (`organisation_id`),
  KEY `preference_org_preference_fk` (`preference_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `org_preference`
--

LOCK TABLES `org_preference` WRITE;
/*!40000 ALTER TABLE `org_preference` DISABLE KEYS */;
/*!40000 ALTER TABLE `org_preference` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `organisation`
--

DROP TABLE IF EXISTS `organisation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `organisation` (
  `organisation_id` int(11) NOT NULL default '0',
  `parent_id` int(11) NOT NULL default '0',
  `root_id` int(11) NOT NULL default '0',
  `left_id` int(11) NOT NULL default '0',
  `right_id` int(11) NOT NULL default '0',
  `order_id` int(11) NOT NULL default '0',
  `level_id` int(11) NOT NULL default '0',
  `role_id` int(11) NOT NULL default '0',
  `organisation_type_id` int(11) NOT NULL default '0',
  `name` varchar(128) default NULL,
  `description` text,
  `addr_1` varchar(128) NOT NULL default '',
  `addr_2` varchar(128) default NULL,
  `addr_3` varchar(128) default NULL,
  `city` varchar(32) NOT NULL default '',
  `region` varchar(32) default NULL,
  `country` char(2) default NULL,
  `post_code` varchar(16) default NULL,
  `telephone` varchar(32) default NULL,
  `website` varchar(128) default NULL,
  `email` varchar(128) default NULL,
  `date_created` datetime default NULL,
  `created_by` int(11) default NULL,
  `last_updated` datetime default NULL,
  `updated_by` int(11) default NULL,
  PRIMARY KEY  (`organisation_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `organisation`
--

LOCK TABLES `organisation` WRITE;
/*!40000 ALTER TABLE `organisation` DISABLE KEYS */;
/*!40000 ALTER TABLE `organisation` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `organisation_type`
--

DROP TABLE IF EXISTS `organisation_type`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `organisation_type` (
  `organisation_type_id` int(11) NOT NULL default '0',
  `name` varchar(64) default NULL,
  PRIMARY KEY  (`organisation_type_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `organisation_type`
--

LOCK TABLES `organisation_type` WRITE;
/*!40000 ALTER TABLE `organisation_type` DISABLE KEYS */;
/*!40000 ALTER TABLE `organisation_type` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `permission`
--

DROP TABLE IF EXISTS `permission`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `permission` (
  `permission_id` int(11) NOT NULL default '0',
  `name` varchar(255) default NULL,
  `description` text,
  `module_id` int(11) NOT NULL default '0',
  PRIMARY KEY  (`permission_id`),
  UNIQUE KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `permission`
--

LOCK TABLES `permission` WRITE;
/*!40000 ALTER TABLE `permission` DISABLE KEYS */;
INSERT INTO `permission` VALUES (1,'blockmgr','Permission to use block manager',1),(2,'blockmgr_cmd_add','Permission to add new block',1),(3,'blockmgr_cmd_edit','Permission to edit existing block',1),(4,'blockmgr_cmd_delete','Permission to remove block',1),(5,'blockmgr_cmd_reorder','Permission to reorder blocks',1),(6,'blockmgr_cmd_list','Permission to view block listing',1),(7,'blockmgr_cmd_insert','Permission to view block listing',1),(8,'blockmgr_cmd_update','Permission to view block listing',1),(9,'modulemgr','',2),(10,'modulemgr_cmd_add','',2),(11,'modulemgr_cmd_insert','',2),(12,'modulemgr_cmd_delete','',2),(13,'modulemgr_cmd_list','',2),(14,'modulemgr_cmd_overview','',2),(15,'modulemgr_cmd_edit','',2),(16,'modulemgr_cmd_update','',2),(17,'configmgr','',2),(18,'configmgr_cmd_edit','Permission to view and edit config settings',2),(19,'configmgr_cmd_update','Permission to update config values',2),(20,'defaultmgr','',2),(21,'defaultmgr_cmd_list','',2),(22,'bugmgr','',2),(23,'bugmgr_cmd_list',NULL,2),(24,'bugmgr_cmd_send',NULL,2),(25,'maintenancemgr_cmd_edit','',2),(26,'maintenancemgr_cmd_update','',2),(27,'maintenancemgr_cmd_append','',2),(28,'maintenancemgr_cmd_dbgen','',2),(29,'maintenancemgr_cmd_clearCache','',2),(30,'maintenancemgr_cmd_list','',2),(31,'maintenancemgr','',2),(32,'maintenancemgr_cmd_verify','',2),(33,'maintenancemgr_cmd_checkAllModules','',2),(34,'maintenancemgr_cmd_rebuildSequences','',2),(35,'maintenancemgr_cmd_createModule','',2),(36,'maintenancemgr_cmd_checkLatestVersion','',2),(37,'pearmgr','',2),(38,'pearmgr_cmd_list','',2),(39,'pearmgr_cmd_doRequest','',2),(40,'rssmgr',NULL,3),(41,'rssmgr_cmd_news','',3),(42,'navstylemgr','',4),(43,'navstylemgr_cmd_changeStyle','',4),(44,'navstylemgr_cmd_list','',4),(45,'sectionmgr','',4),(46,'sectionmgr_cmd_add','',4),(47,'sectionmgr_cmd_insert','',4),(48,'sectionmgr_cmd_edit','',4),(49,'sectionmgr_cmd_update','',4),(50,'sectionmgr_cmd_delete','',4),(51,'sectionmgr_cmd_reorder','',4),(52,'sectionmgr_cmd_list','',4),(53,'rolemgr_cmd_duplicate','',5),(54,'accountmgr_cmd_edit','',5),(55,'accountmgr_cmd_update','',5),(56,'accountmgr_cmd_viewProfile','',5),(57,'accountmgr_cmd_summary','',5),(58,'loginmgr_cmd_login','',5),(59,'loginmgr_cmd_list','',5),(60,'orgmgr_cmd_add','',5),(61,'orgmgr_cmd_insert','',5),(62,'orgmgr_cmd_edit','',5),(63,'orgmgr_cmd_update','',5),(64,'orgmgr_cmd_delete','',5),(65,'orgmgr_cmd_list','',5),(66,'passwordmgr_cmd_retrieve','',5),(67,'passwordmgr_cmd_forgot','',5),(68,'userpasswordmgr','',5),(69,'userpasswordmgr_cmd_edit','',5),(70,'userpasswordmgr_cmd_update','',5),(71,'permissionmgr_cmd_add','',5),(72,'permissionmgr_cmd_insert','',5),(73,'permissionmgr_cmd_edit','',5),(74,'permissionmgr_cmd_update','',5),(75,'permissionmgr_cmd_delete','',5),(76,'permissionmgr_cmd_list','',5),(77,'preferencemgr_cmd_add','',5),(78,'preferencemgr_cmd_insert','',5),(79,'preferencemgr_cmd_edit','',5),(80,'preferencemgr_cmd_update','',5),(81,'preferencemgr_cmd_delete','',5),(82,'preferencemgr_cmd_list','',5),(83,'profilemgr_cmd_view','',5),(84,'registermgr_cmd_add','',5),(85,'registermgr_cmd_insert','',5),(86,'rolemgr_cmd_add','',5),(87,'rolemgr_cmd_insert','',5),(88,'rolemgr_cmd_edit','',5),(89,'rolemgr_cmd_update','',5),(90,'rolemgr_cmd_delete','',5),(91,'rolemgr_cmd_list','',5),(92,'rolemgr_cmd_editPerms','',5),(93,'rolemgr_cmd_updatePerms','',5),(94,'usermgr_cmd_add','',5),(95,'usermgr_cmd_insert','',5),(96,'usermgr_cmd_edit','',5),(97,'usermgr_cmd_update','',5),(98,'usermgr_cmd_delete','',5),(99,'usermgr_cmd_list','',5),(100,'usermgr_cmd_requestPasswordReset','',5),(101,'usermgr_cmd_resetPassword','',5),(102,'usermgr_cmd_editPerms','',5),(103,'usermgr_cmd_updatePerms','',5),(104,'userpreferencemgr_cmd_editAll','',5),(105,'userpreferencemgr_cmd_updateAll','',5),(106,'accountmgr','',5),(107,'loginmgr','',5),(108,'loginmgr_cmd_logout','',5),(109,'orgmgr','',5),(110,'orgpreferencemgr','',5),(111,'orgpreferencemgr_cmd_editAll','',5),(112,'orgpreferencemgr_cmd_updateAll','',5),(113,'passwordmgr','',5),(114,'permissionmgr','',5),(115,'permissionmgr_cmd_scanNew','',5),(116,'permissionmgr_cmd_insertNew','',5),(117,'permissionmgr_cmd_scanOrphaned','',5),(118,'permissionmgr_cmd_deleteOrphaned','',5),(119,'preferencemgr','',5),(120,'profilemgr','',5),(121,'registermgr','',5),(122,'rolemgr','',5),(123,'userimportmgr','',5),(124,'userimportmgr_cmd_list','',5),(125,'userimportmgr_cmd_insertImportedUsers','',5),(126,'usermgr','',5),(127,'usermgr_cmd_syncToRole','',5),(128,'userpreferencemgr','',5),(129,'orgtypemgr',NULL,5),(130,'orgtypemgr_cmd_add',NULL,5),(131,'orgtypemgr_cmd_insert',NULL,5),(132,'orgtypemgr_cmd_edit',NULL,5),(133,'orgtypemgr_cmd_update',NULL,5),(134,'orgtypemgr_cmd_delete',NULL,5),(135,'orgtypemgr_cmd_list',NULL,5),(136,'usermgr_cmd_requestChangeUserStatus',NULL,5),(137,'usermgr_cmd_changeUserStatus',NULL,5),(138,'usermgr_cmd_viewLogin',NULL,5),(139,'usermgr_cmd_truncateLoginTbl',NULL,5),(140,'usersearchmgr',NULL,5),(141,'usersearchmgr_cmd_add',NULL,5),(142,'usersearchmgr_cmd_search',NULL,5);
/*!40000 ALTER TABLE `permission` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `permission_seq`
--

DROP TABLE IF EXISTS `permission_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `permission_seq` (
  `id` int(10) unsigned NOT NULL auto_increment,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=144 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `permission_seq`
--

LOCK TABLES `permission_seq` WRITE;
/*!40000 ALTER TABLE `permission_seq` DISABLE KEYS */;
INSERT INTO `permission_seq` VALUES (142);
/*!40000 ALTER TABLE `permission_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `preference`
--

DROP TABLE IF EXISTS `preference`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `preference` (
  `preference_id` int(11) NOT NULL default '0',
  `name` varchar(128) default NULL,
  `default_value` varchar(128) default NULL,
  PRIMARY KEY  (`preference_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `preference`
--

LOCK TABLES `preference` WRITE;
/*!40000 ALTER TABLE `preference` DISABLE KEYS */;
INSERT INTO `preference` VALUES (1,'sessionTimeout','1800'),(2,'timezone','UTC'),(3,'theme','default'),(4,'dateFormat','UK'),(5,'language','en-iso-8859-15'),(6,'resPerPage','10'),(7,'showExecutionTimes','1'),(8,'locale','en_GB');
/*!40000 ALTER TABLE `preference` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `preference_seq`
--

DROP TABLE IF EXISTS `preference_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `preference_seq` (
  `id` int(10) unsigned NOT NULL auto_increment,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `preference_seq`
--

LOCK TABLES `preference_seq` WRITE;
/*!40000 ALTER TABLE `preference_seq` DISABLE KEYS */;
INSERT INTO `preference_seq` VALUES (8);
/*!40000 ALTER TABLE `preference_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `remote_access_key`
--

DROP TABLE IF EXISTS `remote_access_key`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `remote_access_key` (
  `remote_access_key` text NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `remote_access_key`
--

LOCK TABLES `remote_access_key` WRITE;
/*!40000 ALTER TABLE `remote_access_key` DISABLE KEYS */;
INSERT INTO `remote_access_key` VALUES ('åèëêÙ„Ð‚‡ÜÕÐß‹Š‰ÙØ‘•—Æ‘Ç’‘™ÁÈ˜ñ÷Ì8b76e63>lk<o5>9>s\"!wrp\" .}/,.)/*EE@AMIK	V^\n\n^]&LH&!rs!}pz(.uywibb5gd4o9i;n8iilXWnnSUVSY\r[]KBFB\ZKLHIâä»±àˆŒæé¹»¾¿µ½îöô÷÷õ¬÷ñ¨¬ª¬©û¯®™‘‘œ’ª¢ÈÉÎ˜œÌŸƒƒ‚‹‡Ñ…ÞÝÞˆ‹ÜÛñø£óððõ¥øÄÀ­©øûø´·´ç²¶´±¼ï¾ïë¼ºîƒÒ…ÕÝ…†‰ÙÙææ‰ÙÃÄÃ‘——ÀÇ™ÀË™Ê˜Æc653g`5?m9hh>< $+&!$ /y.*x~y,&E@BCK=;W\n\0QZ	ZZ\\uxpzr!q#*(rrt{+z30_Ybe01lkl?oo:=WUS_^\\[T\\\\^GCGFyCN\ZEEMF´àä·å³ãä¹èè¾ºì·¿õ¤ð¦òó›úýøÿÿ¬ª¯Ä“—šÁÁÇ–ŸÊÎœÍÎŸš‰ƒŠ…Ð„‡µ³‚…ÞŽŒ¡÷¦öüö¢ð¬«øü¯«¯üçéêàå´´ãêá×Ñ¹äëî××ÛÝÔ†Ž‹ÙÜßÝˆÙÄÀ––ÂÂÏ–ÊœÌñ÷Çb8ge165c9mh8=ok6vw\'#w %&z*-#/+,*@ABKHI\0\nS]\rXYrLHst$qvz+s-yy-b7c5al01lkn:jdjlUQnnUS_ZQY\\X\\^ZBBE@AENKOHâ³³å·ˆŒâº¹²î´½»º ô¤¦¤¬¦§üªûªøûø©ÁÀ›Á—œ“ª¢ÌŸ›ÈÉŸž…€‡ÐÐ„„ˆ‚Ú„ˆŽ£óòñòòþöþÄÀþüüûûé°çêãìãµ½ëãè½ëêîÙØÒ×Ó€‚‰ŒÝææÔÛŽÅÃÇ–—Å•Á™ÏÉžÎÊÊ80g;15228=8ho5\'\' wu&# ~-(.-+,D\ZCFLNNKM=;VVSZ_\r^\"#q\"tuqr~,syz||}43_Yge76akclklojYPZP\0]\0TQZX[Z[]DCK@yAJKCM¶ã²µå±ç·éïîíêì¾¼ñô§÷§¡›ûý«©¥©§­”Å‘Â–Å‘ŸžŸÍ•ÊÍ‡…‚†…„Ô‡');
/*!40000 ALTER TABLE `remote_access_key` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `role`
--

DROP TABLE IF EXISTS `role`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `role` (
  `role_id` int(11) NOT NULL default '-1',
  `name` varchar(255) default NULL,
  `description` text,
  `date_created` datetime default NULL,
  `created_by` int(11) default NULL,
  `last_updated` datetime default NULL,
  `updated_by` int(11) default NULL,
  PRIMARY KEY  (`role_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `role`
--

LOCK TABLES `role` WRITE;
/*!40000 ALTER TABLE `role` DISABLE KEYS */;
INSERT INTO `role` VALUES (-1,'unassigned','not assigned a role',NULL,NULL,NULL,NULL),(0,'guest','public user',NULL,NULL,NULL,NULL),(1,'root','super user',NULL,NULL,NULL,NULL),(2,'member','has a limited set of privileges',NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `role` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `role_permission`
--

DROP TABLE IF EXISTS `role_permission`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `role_permission` (
  `role_permission_id` int(11) NOT NULL default '0',
  `role_id` int(11) NOT NULL default '0',
  `permission_id` int(11) NOT NULL default '0',
  PRIMARY KEY  (`role_permission_id`),
  KEY `permission_id` (`permission_id`),
  KEY `role_id` (`role_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `role_permission`
--

LOCK TABLES `role_permission` WRITE;
/*!40000 ALTER TABLE `role_permission` DISABLE KEYS */;
INSERT INTO `role_permission` VALUES (1,2,22),(2,2,21),(3,2,41),(4,2,106),(5,2,54),(6,2,57),(7,2,55),(8,2,56),(9,2,107),(10,2,59),(11,2,58),(12,2,108),(13,2,69),(14,2,70),(15,2,79),(16,2,80),(17,2,83),(18,2,84),(19,2,85),(20,2,104),(21,2,105);
/*!40000 ALTER TABLE `role_permission` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `role_permission_seq`
--

DROP TABLE IF EXISTS `role_permission_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `role_permission_seq` (
  `id` int(10) unsigned NOT NULL auto_increment,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=23 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `role_permission_seq`
--

LOCK TABLES `role_permission_seq` WRITE;
/*!40000 ALTER TABLE `role_permission_seq` DISABLE KEYS */;
INSERT INTO `role_permission_seq` VALUES (21);
/*!40000 ALTER TABLE `role_permission_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `role_seq`
--

DROP TABLE IF EXISTS `role_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `role_seq` (
  `id` int(10) unsigned NOT NULL auto_increment,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `role_seq`
--

LOCK TABLES `role_seq` WRITE;
/*!40000 ALTER TABLE `role_seq` DISABLE KEYS */;
INSERT INTO `role_seq` VALUES (2);
/*!40000 ALTER TABLE `role_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `section`
--

DROP TABLE IF EXISTS `section`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `section` (
  `section_id` int(11) NOT NULL default '0',
  `title` varchar(32) default NULL,
  `resource_uri` varchar(128) default NULL,
  `perms` varchar(32) default NULL,
  `trans_id` int(11) default NULL,
  `parent_id` int(11) default NULL,
  `root_id` int(11) default NULL,
  `left_id` int(11) default NULL,
  `right_id` int(11) default NULL,
  `order_id` int(11) default NULL,
  `level_id` int(11) default NULL,
  `is_enabled` smallint(6) default NULL,
  `is_static` smallint(6) default NULL,
  `access_key` char(1) default NULL,
  `rel` varchar(16) default NULL,
  PRIMARY KEY  (`section_id`),
  KEY `AK_key_root_id` (`root_id`),
  KEY `AK_key_order_id` (`order_id`),
  KEY `AK_key_left_id` (`left_id`),
  KEY `AK_key_right_id` (`right_id`),
  KEY `AK_id_root_l_r` (`section_id`,`root_id`,`left_id`,`right_id`),
  KEY `AK_key_level_id` (`level_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `section`
--

LOCK TABLES `section` WRITE;
/*!40000 ALTER TABLE `section` DISABLE KEYS */;
INSERT INTO `section` VALUES (0,'root','uriEmpty:','1',0,0,0,0,0,0,0,0,0,'',''),(2,'User menu','uriEmpty:','-2',2,0,2,1,6,1,1,1,0,'',''),(4,'Admin menu','uriEmpty:','1',4,0,4,1,42,2,1,1,0,'',''),(9,'My Account','user/account','2',9,2,2,4,5,2,2,1,0,'',''),(6,'Home','default/default','-2',6,2,2,2,3,1,2,1,0,'',''),(51,'Manage navigation','navigation/section','1',51,23,4,17,18,1,3,0,0,'',''),(13,'General','default/config','1',13,4,4,2,15,1,2,1,0,'',''),(15,'Configuration','default/config','1',15,13,4,5,6,2,3,1,0,'',''),(17,'Maintenance','default/maintenance','1',17,13,4,7,8,3,3,0,0,'',''),(19,'Module Generator','default/modulegeneration','1',19,13,4,9,10,4,3,0,0,'',''),(21,'Translation','default/translation','1',21,13,4,11,12,5,3,1,0,'',''),(23,'Navigation','navigation/section','1',23,4,4,16,19,2,2,0,0,'',''),(25,'Blocks','block/block','1',25,4,4,20,23,3,2,0,0,'',''),(35,'Users and security','user/user','1',35,4,4,24,33,4,2,1,0,'',''),(37,'Manage users','user/user','1',37,35,4,25,26,1,3,1,0,'',''),(39,'Manage permissions','user/permission','1',39,35,4,27,28,2,3,1,0,'',''),(41,'Manage roles','user/role','1',41,35,4,29,30,3,3,1,0,'',''),(43,'Manage preferences','user/preference','1',43,35,4,31,32,4,3,1,0,'',''),(45,'My Account','user/account','1',45,4,4,34,41,5,2,1,0,'',''),(47,'View Profile','user/account/action/viewProfile','1',47,45,4,37,38,2,3,1,0,'',''),(49,'Edit Preferences','user/userpreference','1',49,45,4,39,40,3,3,1,0,'',''),(53,'Manage modules','default/module','1',53,13,4,3,4,1,3,0,0,'',''),(59,'Manage blocks','block/block','1',59,25,4,21,22,1,3,0,0,'',''),(61,'Summary','user/account','1',61,45,4,35,36,1,3,1,0,'',''),(63,'PEAR packages','default/pear','1',63,13,4,13,14,6,3,0,0,'',''),(65,'Administrator','uriNode:13','1',65,2,2,6,7,3,2,1,0,'',''),(91,'Email Template','rvsemailtemplate/emailtemplate','1',91,13,4,15,16,3,3,1,0,'',''),(83,'Customize Page','default/customizepage','1',83,13,4,15,16,7,3,1,0,'',''),(85,'Remote Access Key','rvuser/remoteaccesskey','1',85,13,4,17,18,8,3,1,0,'',''),(92,'Templates','rvuser/templatecategory','-2',113,2,2,8,9,4,2,1,0,'',''),(90,'Billing Setting','rvuser/billingsetting','1',90,4,4,42,43,6,2,1,0,'','');
/*!40000 ALTER TABLE `section` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `section_seq`
--

DROP TABLE IF EXISTS `section_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `section_seq` (
  `id` int(10) unsigned NOT NULL auto_increment,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=94 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `section_seq`
--

LOCK TABLES `section_seq` WRITE;
/*!40000 ALTER TABLE `section_seq` DISABLE KEYS */;
INSERT INTO `section_seq` VALUES (92);
/*!40000 ALTER TABLE `section_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `table_lock`
--

DROP TABLE IF EXISTS `table_lock`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `table_lock` (
  `lockID` char(32) NOT NULL default '',
  `lockTable` char(32) NOT NULL default '',
  `lockStamp` int(11) default NULL,
  PRIMARY KEY  (`lockID`,`lockTable`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `table_lock`
--

LOCK TABLES `table_lock` WRITE;
/*!40000 ALTER TABLE `table_lock` DISABLE KEYS */;
/*!40000 ALTER TABLE `table_lock` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `uri_alias`
--

DROP TABLE IF EXISTS `uri_alias`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `uri_alias` (
  `uri_alias_id` int(11) unsigned NOT NULL default '0',
  `uri_alias` varchar(255) default NULL,
  `section_id` int(11) default NULL,
  `title` varchar(255) default NULL,
  `keywords` text,
  `description` text,
  PRIMARY KEY  (`uri_alias_id`),
  UNIQUE KEY `uri_alias` (`uri_alias`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `uri_alias`
--

LOCK TABLES `uri_alias` WRITE;
/*!40000 ALTER TABLE `uri_alias` DISABLE KEYS */;
/*!40000 ALTER TABLE `uri_alias` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `user_hash`
--

DROP TABLE IF EXISTS `user_hash`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user_hash` (
  `usr_id` int(11) NOT NULL default '0',
  `hash` varchar(64) NOT NULL default '',
  KEY `usr_id` (`usr_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_hash`
--

LOCK TABLES `user_hash` WRITE;
/*!40000 ALTER TABLE `user_hash` DISABLE KEYS */;
INSERT INTO `user_hash` VALUES (1000000049,'cd335f0a0616485a5096a30ba090b631'),(1000000270,'340559fddead1184077154ef0d4fe9b3'),(1000000264,'02b144026d5660ad191ff9b17060e86b'),(1000000261,'c47b31d9cbf92d535e1ca645b3a7ecae'),(1000000252,'b4002857037c0e923b387285328d7581'),(1000000268,'35b6e3db565914db266d0a75253a135f'),(1000000269,'6fb9e0d533fc5f9cd0d52155b2bf6f1a'),(1000000274,'3d66cb41dfe0c47838cc8ef9938b1cbb'),(1000000278,'f73cc21fb5a074a7a1843a96c5cc9355'),(1000000279,'d052f579e2b175bb27c1c82e32dd88f8'),(1000000283,'c17e3febbfba0186b4f06b2727c5f7c9');
/*!40000 ALTER TABLE `user_hash` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `user_permission`
--

DROP TABLE IF EXISTS `user_permission`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user_permission` (
  `user_permission_id` int(11) NOT NULL default '0',
  `usr_id` int(11) NOT NULL default '0',
  `permission_id` int(11) NOT NULL default '0',
  PRIMARY KEY  (`user_permission_id`),
  KEY `usr_id` (`usr_id`),
  KEY `permission_id` (`permission_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_permission`
--

LOCK TABLES `user_permission` WRITE;
/*!40000 ALTER TABLE `user_permission` DISABLE KEYS */;
INSERT INTO `user_permission` VALUES (1,999999999,21),(2,999999999,106),(3,999999999,57),(4,999999999,107),(5,999999999,59),(6,999999999,58),(7,999999999,108),(8,999999999,84),(9,999999999,85),(10,999999999,85),(11,999999999,85),(12,999999999,85),(13,999999999,85),(14,999999999,85),(15,999999999,85),(16,999999999,85),(751,1000000035,105),(750,1000000035,104),(749,1000000035,85),(748,1000000035,84),(747,1000000035,83),(746,1000000035,80),(745,1000000035,79),(744,1000000035,70),(743,1000000035,69),(742,1000000035,108),(741,1000000035,58),(740,1000000035,59),(739,1000000035,107),(738,1000000035,56),(737,1000000035,55),(736,1000000035,57),(735,1000000035,54),(734,1000000035,106),(733,1000000035,41),(732,1000000035,21),(731,1000000035,22),(941,1000000045,22),(942,1000000045,21),(943,1000000045,41),(944,1000000045,106),(945,1000000045,54),(946,1000000045,57),(947,1000000045,55),(948,1000000045,56),(949,1000000045,107),(950,1000000045,59),(951,1000000045,58),(952,1000000045,108),(953,1000000045,69),(954,1000000045,70),(955,1000000045,79),(956,1000000045,80),(957,1000000045,83),(958,1000000045,84),(959,1000000045,85),(960,1000000045,104),(961,1000000045,105),(1025,1000000049,22),(1026,1000000049,21),(1027,1000000049,41),(1028,1000000049,106),(1029,1000000049,54),(1030,1000000049,57),(1031,1000000049,55),(1032,1000000049,56),(1033,1000000049,107),(1034,1000000049,59),(1035,1000000049,58),(1036,1000000049,108),(1037,1000000049,69),(1038,1000000049,70),(1039,1000000049,79),(1040,1000000049,80),(1041,1000000049,83),(1042,1000000049,84),(1043,1000000049,85),(1044,1000000049,104),(1045,1000000049,105),(5707,1000000270,105),(5706,1000000270,104),(5705,1000000270,85),(5704,1000000270,84),(5703,1000000270,83),(5702,1000000270,80),(5701,1000000270,79),(5700,1000000270,70),(5699,1000000270,69),(5698,1000000270,108),(5697,1000000270,58),(5696,1000000270,59),(5695,1000000270,107),(5694,1000000270,56),(5693,1000000270,55),(5692,1000000270,57),(5691,1000000270,54),(5690,1000000270,106),(5689,1000000270,41),(5688,1000000270,21),(5687,1000000270,22),(5098,1000000241,105),(5097,1000000241,104),(5096,1000000241,85),(5095,1000000241,84),(5094,1000000241,83),(5093,1000000241,80),(5092,1000000241,79),(5091,1000000241,70),(5090,1000000241,69),(5089,1000000241,108),(5088,1000000241,58),(5087,1000000241,59),(5086,1000000241,107),(5085,1000000241,56),(5084,1000000241,55),(5083,1000000241,57),(5082,1000000241,54),(5081,1000000241,106),(5080,1000000241,41),(5079,1000000241,21),(5078,1000000241,22),(5119,1000000242,105),(5118,1000000242,104),(5117,1000000242,85),(5116,1000000242,84),(5115,1000000242,83),(5114,1000000242,80),(5113,1000000242,79),(5112,1000000242,70),(5111,1000000242,69),(5110,1000000242,108),(5109,1000000242,58),(5108,1000000242,59),(5107,1000000242,107),(5106,1000000242,56),(5105,1000000242,55),(5104,1000000242,57),(5103,1000000242,54),(5102,1000000242,106),(5101,1000000242,41),(5100,1000000242,21),(5099,1000000242,22),(5581,1000000264,105),(5580,1000000264,104),(5579,1000000264,85),(5578,1000000264,84),(5577,1000000264,83),(5576,1000000264,80),(5575,1000000264,79),(5574,1000000264,70),(5573,1000000264,69),(5572,1000000264,108),(5571,1000000264,58),(5570,1000000264,59),(5569,1000000264,107),(5568,1000000264,56),(5567,1000000264,55),(5566,1000000264,57),(5565,1000000264,54),(5564,1000000264,106),(5563,1000000264,41),(5562,1000000264,21),(5561,1000000264,22),(5686,1000000269,105),(5685,1000000269,104),(5684,1000000269,85),(5683,1000000269,84),(5682,1000000269,83),(5681,1000000269,80),(5680,1000000269,79),(5679,1000000269,70),(5678,1000000269,69),(5677,1000000269,108),(5676,1000000269,58),(5675,1000000269,59),(5674,1000000269,107),(5673,1000000269,56),(5672,1000000269,55),(5671,1000000269,57),(5670,1000000269,54),(5669,1000000269,106),(5668,1000000269,41),(5667,1000000269,21),(5666,1000000269,22),(5056,1000000239,105),(5055,1000000239,104),(5054,1000000239,85),(5053,1000000239,84),(5052,1000000239,83),(5051,1000000239,80),(5050,1000000239,79),(5049,1000000239,70),(5048,1000000239,69),(5047,1000000239,108),(5046,1000000239,58),(5045,1000000239,59),(5044,1000000239,107),(5043,1000000239,56),(5042,1000000239,55),(5041,1000000239,57),(5040,1000000239,54),(5039,1000000239,106),(5038,1000000239,41),(5037,1000000239,21),(5036,1000000239,22),(5665,1000000268,105),(5664,1000000268,104),(5663,1000000268,85),(5662,1000000268,84),(5661,1000000268,83),(5660,1000000268,80),(5659,1000000268,79),(5658,1000000268,70),(5657,1000000268,69),(5656,1000000268,108),(5655,1000000268,58),(5654,1000000268,59),(5653,1000000268,107),(5652,1000000268,56),(5651,1000000268,55),(5650,1000000268,57),(5649,1000000268,54),(5648,1000000268,106),(5647,1000000268,41),(5646,1000000268,21),(5645,1000000268,22),(5014,1000000237,105),(5013,1000000237,104),(5012,1000000237,85),(5011,1000000237,84),(5010,1000000237,83),(5009,1000000237,80),(5008,1000000237,79),(5007,1000000237,70),(5006,1000000237,69),(5005,1000000237,108),(5004,1000000237,58),(5003,1000000237,59),(5002,1000000237,107),(5001,1000000237,56),(5000,1000000237,55),(4999,1000000237,57),(4998,1000000237,54),(4997,1000000237,106),(4996,1000000237,41),(4995,1000000237,21),(4994,1000000237,22),(4993,1000000236,105),(4992,1000000236,104),(4991,1000000236,85),(4990,1000000236,84),(4989,1000000236,83),(4988,1000000236,80),(4987,1000000236,79),(4986,1000000236,70),(4985,1000000236,69),(4984,1000000236,108),(4983,1000000236,58),(4982,1000000236,59),(4981,1000000236,107),(4980,1000000236,56),(4979,1000000236,55),(4978,1000000236,57),(4977,1000000236,54),(4976,1000000236,106),(4975,1000000236,41),(4974,1000000236,21),(4973,1000000236,22),(4972,1000000235,105),(4971,1000000235,104),(4970,1000000235,85),(4969,1000000235,84),(4968,1000000235,83),(4967,1000000235,80),(4966,1000000235,79),(4965,1000000235,70),(4964,1000000235,69),(4963,1000000235,108),(4962,1000000235,58),(4961,1000000235,59),(4960,1000000235,107),(4959,1000000235,56),(4958,1000000235,55),(4957,1000000235,57),(4956,1000000235,54),(4955,1000000235,106),(4954,1000000235,41),(4953,1000000235,21),(4952,1000000235,22),(4951,1000000234,105),(4950,1000000234,104),(4949,1000000234,85),(4948,1000000234,84),(4947,1000000234,83),(4946,1000000234,80),(4945,1000000234,79),(4944,1000000234,70),(4943,1000000234,69),(4942,1000000234,108),(4941,1000000234,58),(4940,1000000234,59),(4939,1000000234,107),(4938,1000000234,56),(4937,1000000234,55),(4936,1000000234,57),(4935,1000000234,54),(4934,1000000234,106),(4933,1000000234,41),(4932,1000000234,21),(4931,1000000234,22),(5644,1000000267,105),(5643,1000000267,104),(5642,1000000267,85),(5641,1000000267,84),(5640,1000000267,83),(5639,1000000267,80),(5638,1000000267,79),(5637,1000000267,70),(5636,1000000267,69),(5635,1000000267,108),(5634,1000000267,58),(5633,1000000267,59),(5632,1000000267,107),(5631,1000000267,56),(5630,1000000267,55),(5629,1000000267,57),(5628,1000000267,54),(5627,1000000267,106),(5626,1000000267,41),(5625,1000000267,21),(5624,1000000267,22),(5623,1000000266,105),(5622,1000000266,104),(5621,1000000266,85),(5620,1000000266,84),(5619,1000000266,83),(5618,1000000266,80),(5617,1000000266,79),(5616,1000000266,70),(5615,1000000266,69),(5614,1000000266,108),(5613,1000000266,58),(5612,1000000266,59),(5611,1000000266,107),(5610,1000000266,56),(5609,1000000266,55),(5608,1000000266,57),(5607,1000000266,54),(5606,1000000266,106),(5605,1000000266,41),(5604,1000000266,21),(5603,1000000266,22),(5602,1000000265,105),(5601,1000000265,104),(5600,1000000265,85),(5599,1000000265,84),(5598,1000000265,83),(5597,1000000265,80),(5596,1000000265,79),(5595,1000000265,70),(5594,1000000265,69),(5593,1000000265,108),(5592,1000000265,58),(5591,1000000265,59),(5590,1000000265,107),(5589,1000000265,56),(5588,1000000265,55),(5587,1000000265,57),(5586,1000000265,54),(5585,1000000265,106),(5584,1000000265,41),(5583,1000000265,21),(5582,1000000265,22),(5560,1000000263,105),(5559,1000000263,104),(5558,1000000263,85),(5557,1000000263,84),(5556,1000000263,83),(5555,1000000263,80),(5554,1000000263,79),(5553,1000000263,70),(5552,1000000263,69),(5551,1000000263,108),(5550,1000000263,58),(5549,1000000263,59),(5548,1000000263,107),(5547,1000000263,56),(5546,1000000263,55),(5545,1000000263,57),(5544,1000000263,54),(5543,1000000263,106),(5542,1000000263,41),(5541,1000000263,21),(5540,1000000263,22),(5539,1000000262,105),(5538,1000000262,104),(5537,1000000262,85),(5536,1000000262,84),(5535,1000000262,83),(5534,1000000262,80),(5533,1000000262,79),(5532,1000000262,70),(5531,1000000262,69),(5530,1000000262,108),(5529,1000000262,58),(5528,1000000262,59),(5527,1000000262,107),(5526,1000000262,56),(5525,1000000262,55),(5524,1000000262,57),(5523,1000000262,54),(5522,1000000262,106),(5521,1000000262,41),(5520,1000000262,21),(5519,1000000262,22),(5518,1000000261,105),(5517,1000000261,104),(5516,1000000261,85),(5515,1000000261,84),(5514,1000000261,83),(5513,1000000261,80),(5512,1000000261,79),(5511,1000000261,70),(5510,1000000261,69),(5509,1000000261,108),(5508,1000000261,58),(5507,1000000261,59),(5506,1000000261,107),(5505,1000000261,56),(5504,1000000261,55),(5503,1000000261,57),(5502,1000000261,54),(5501,1000000261,106),(5500,1000000261,41),(5499,1000000261,21),(5498,1000000261,22),(5497,1000000260,105),(5496,1000000260,104),(5495,1000000260,85),(5494,1000000260,84),(5493,1000000260,83),(5492,1000000260,80),(5491,1000000260,79),(5490,1000000260,70),(5489,1000000260,69),(5488,1000000260,108),(5487,1000000260,58),(5486,1000000260,59),(5485,1000000260,107),(5484,1000000260,56),(5483,1000000260,55),(5482,1000000260,57),(5481,1000000260,54),(5480,1000000260,106),(5479,1000000260,41),(5478,1000000260,21),(5477,1000000260,22),(5476,1000000259,105),(5475,1000000259,104),(5474,1000000259,85),(5473,1000000259,84),(5472,1000000259,83),(5471,1000000259,80),(5470,1000000259,79),(5469,1000000259,70),(5468,1000000259,69),(5467,1000000259,108),(5466,1000000259,58),(5465,1000000259,59),(5464,1000000259,107),(5463,1000000259,56),(5462,1000000259,55),(5461,1000000259,57),(5460,1000000259,54),(5459,1000000259,106),(5458,1000000259,41),(5457,1000000259,21),(5456,1000000259,22),(5455,1000000258,105),(5454,1000000258,104),(5453,1000000258,85),(5452,1000000258,84),(5451,1000000258,83),(5450,1000000258,80),(5449,1000000258,79),(5448,1000000258,70),(5447,1000000258,69),(5446,1000000258,108),(5445,1000000258,58),(5444,1000000258,59),(5443,1000000258,107),(5442,1000000258,56),(5441,1000000258,55),(5440,1000000258,57),(5439,1000000258,54),(5438,1000000258,106),(5437,1000000258,41),(5436,1000000258,21),(5435,1000000258,22),(5434,1000000257,105),(5433,1000000257,104),(5432,1000000257,85),(5431,1000000257,84),(5430,1000000257,83),(5429,1000000257,80),(5428,1000000257,79),(5427,1000000257,70),(5426,1000000257,69),(5425,1000000257,108),(5424,1000000257,58),(5423,1000000257,59),(5422,1000000257,107),(5421,1000000257,56),(5420,1000000257,55),(5419,1000000257,57),(5418,1000000257,54),(5417,1000000257,106),(5416,1000000257,41),(5415,1000000257,21),(5414,1000000257,22),(5413,1000000256,105),(5412,1000000256,104),(5411,1000000256,85),(5410,1000000256,84),(5409,1000000256,83),(5408,1000000256,80),(5407,1000000256,79),(5406,1000000256,70),(5405,1000000256,69),(5404,1000000256,108),(5403,1000000256,58),(5402,1000000256,59),(5401,1000000256,107),(5400,1000000256,56),(5399,1000000256,55),(5398,1000000256,57),(5397,1000000256,54),(5396,1000000256,106),(5395,1000000256,41),(5394,1000000256,21),(5393,1000000256,22),(5392,1000000255,105),(5391,1000000255,104),(5390,1000000255,85),(5389,1000000255,84),(5388,1000000255,83),(5387,1000000255,80),(5386,1000000255,79),(5385,1000000255,70),(5384,1000000255,69),(5383,1000000255,108),(5382,1000000255,58),(5381,1000000255,59),(5380,1000000255,107),(5379,1000000255,56),(5378,1000000255,55),(5377,1000000255,57),(5376,1000000255,54),(5375,1000000255,106),(5374,1000000255,41),(5373,1000000255,21),(5372,1000000255,22),(5371,1000000254,105),(5370,1000000254,104),(5369,1000000254,85),(5368,1000000254,84),(5367,1000000254,83),(5366,1000000254,80),(5365,1000000254,79),(5364,1000000254,70),(5363,1000000254,69),(5362,1000000254,108),(5361,1000000254,58),(5360,1000000254,59),(5359,1000000254,107),(5358,1000000254,56),(5357,1000000254,55),(5356,1000000254,57),(5355,1000000254,54),(5354,1000000254,106),(5353,1000000254,41),(5352,1000000254,21),(5351,1000000254,22),(5350,1000000253,105),(5349,1000000253,104),(5348,1000000253,85),(5347,1000000253,84),(5346,1000000253,83),(5345,1000000253,80),(5344,1000000253,79),(5343,1000000253,70),(5342,1000000253,69),(5341,1000000253,108),(5340,1000000253,58),(5339,1000000253,59),(5338,1000000253,107),(5337,1000000253,56),(5336,1000000253,55),(5335,1000000253,57),(5334,1000000253,54),(5333,1000000253,106),(5332,1000000253,41),(5331,1000000253,21),(5330,1000000253,22),(5329,1000000252,105),(5328,1000000252,104),(5327,1000000252,85),(5326,1000000252,84),(5325,1000000252,83),(5324,1000000252,80),(5323,1000000252,79),(5322,1000000252,70),(5321,1000000252,69),(5320,1000000252,108),(5319,1000000252,58),(5318,1000000252,59),(5317,1000000252,107),(5316,1000000252,56),(5315,1000000252,55),(5314,1000000252,57),(5313,1000000252,54),(5312,1000000252,106),(5311,1000000252,41),(5310,1000000252,21),(5309,1000000252,22),(5308,1000000251,105),(5307,1000000251,104),(5306,1000000251,85),(5305,1000000251,84),(5304,1000000251,83),(5303,1000000251,80),(5302,1000000251,79),(5301,1000000251,70),(5300,1000000251,69),(5299,1000000251,108),(5298,1000000251,58),(5297,1000000251,59),(5296,1000000251,107),(5295,1000000251,56),(5294,1000000251,55),(5293,1000000251,57),(5292,1000000251,54),(5291,1000000251,106),(5290,1000000251,41),(5289,1000000251,21),(5288,1000000251,22),(5287,1000000250,105),(5286,1000000250,104),(5285,1000000250,85),(5284,1000000250,84),(5283,1000000250,83),(5282,1000000250,80),(5281,1000000250,79),(5280,1000000250,70),(5279,1000000250,69),(5278,1000000250,108),(5277,1000000250,58),(5276,1000000250,59),(5275,1000000250,107),(5274,1000000250,56),(5273,1000000250,55),(5272,1000000250,57),(5271,1000000250,54),(5270,1000000250,106),(5269,1000000250,41),(5268,1000000250,21),(5267,1000000250,22),(5266,1000000249,105),(5265,1000000249,104),(5264,1000000249,85),(5263,1000000249,84),(5262,1000000249,83),(5261,1000000249,80),(5260,1000000249,79),(5259,1000000249,70),(5258,1000000249,69),(5257,1000000249,108),(5256,1000000249,58),(5255,1000000249,59),(5254,1000000249,107),(5253,1000000249,56),(5252,1000000249,55),(5251,1000000249,57),(5250,1000000249,54),(5249,1000000249,106),(5248,1000000249,41),(5247,1000000249,21),(5246,1000000249,22),(5245,1000000248,105),(5244,1000000248,104),(5243,1000000248,85),(5242,1000000248,84),(5241,1000000248,83),(5240,1000000248,80),(5239,1000000248,79),(5238,1000000248,70),(5237,1000000248,69),(5236,1000000248,108),(5235,1000000248,58),(5234,1000000248,59),(5233,1000000248,107),(5232,1000000248,56),(5231,1000000248,55),(5230,1000000248,57),(5229,1000000248,54),(5228,1000000248,106),(5227,1000000248,41),(5226,1000000248,21),(5225,1000000248,22),(5141,1000000244,22),(5142,1000000244,21),(5143,1000000244,41),(5144,1000000244,106),(5145,1000000244,54),(5146,1000000244,57),(5147,1000000244,55),(5148,1000000244,56),(5149,1000000244,107),(5150,1000000244,59),(5151,1000000244,58),(5152,1000000244,108),(5153,1000000244,69),(5154,1000000244,70),(5155,1000000244,79),(5156,1000000244,80),(5157,1000000244,83),(5158,1000000244,84),(5159,1000000244,85),(5160,1000000244,104),(5161,1000000244,105),(5162,1000000245,22),(5163,1000000245,21),(5164,1000000245,41),(5165,1000000245,106),(5166,1000000245,54),(5167,1000000245,57),(5168,1000000245,55),(5169,1000000245,56),(5170,1000000245,107),(5171,1000000245,59),(5172,1000000245,58),(5173,1000000245,108),(5174,1000000245,69),(5175,1000000245,70),(5176,1000000245,79),(5177,1000000245,80),(5178,1000000245,83),(5179,1000000245,84),(5180,1000000245,85),(5181,1000000245,104),(5182,1000000245,105),(5183,1000000246,22),(5184,1000000246,21),(5185,1000000246,41),(5186,1000000246,106),(5187,1000000246,54),(5188,1000000246,57),(5189,1000000246,55),(5190,1000000246,56),(5191,1000000246,107),(5192,1000000246,59),(5193,1000000246,58),(5194,1000000246,108),(5195,1000000246,69),(5196,1000000246,70),(5197,1000000246,79),(5198,1000000246,80),(5199,1000000246,83),(5200,1000000246,84),(5201,1000000246,85),(5202,1000000246,104),(5203,1000000246,105),(5204,1000000247,22),(5205,1000000247,21),(5206,1000000247,41),(5207,1000000247,106),(5208,1000000247,54),(5209,1000000247,57),(5210,1000000247,55),(5211,1000000247,56),(5212,1000000247,107),(5213,1000000247,59),(5214,1000000247,58),(5215,1000000247,108),(5216,1000000247,69),(5217,1000000247,70),(5218,1000000247,79),(5219,1000000247,80),(5220,1000000247,83),(5221,1000000247,84),(5222,1000000247,85),(5223,1000000247,104),(5224,1000000247,105),(5708,1000000271,22),(5709,1000000271,21),(5710,1000000271,41),(5711,1000000271,106),(5712,1000000271,54),(5713,1000000271,57),(5714,1000000271,55),(5715,1000000271,56),(5716,1000000271,107),(5717,1000000271,59),(5718,1000000271,58),(5719,1000000271,108),(5720,1000000271,69),(5721,1000000271,70),(5722,1000000271,79),(5723,1000000271,80),(5724,1000000271,83),(5725,1000000271,84),(5726,1000000271,85),(5727,1000000271,104),(5728,1000000271,105),(5729,1000000272,22),(5730,1000000272,21),(5731,1000000272,41),(5732,1000000272,106),(5733,1000000272,54),(5734,1000000272,57),(5735,1000000272,55),(5736,1000000272,56),(5737,1000000272,107),(5738,1000000272,59),(5739,1000000272,58),(5740,1000000272,108),(5741,1000000272,69),(5742,1000000272,70),(5743,1000000272,79),(5744,1000000272,80),(5745,1000000272,83),(5746,1000000272,84),(5747,1000000272,85),(5748,1000000272,104),(5749,1000000272,105),(5750,1000000273,22),(5751,1000000273,21),(5752,1000000273,41),(5753,1000000273,106),(5754,1000000273,54),(5755,1000000273,57),(5756,1000000273,55),(5757,1000000273,56),(5758,1000000273,107),(5759,1000000273,59),(5760,1000000273,58),(5761,1000000273,108),(5762,1000000273,69),(5763,1000000273,70),(5764,1000000273,79),(5765,1000000273,80),(5766,1000000273,83),(5767,1000000273,84),(5768,1000000273,85),(5769,1000000273,104),(5770,1000000273,105),(5771,1000000274,22),(5772,1000000274,21),(5773,1000000274,41),(5774,1000000274,106),(5775,1000000274,54),(5776,1000000274,57),(5777,1000000274,55),(5778,1000000274,56),(5779,1000000274,107),(5780,1000000274,59),(5781,1000000274,58),(5782,1000000274,108),(5783,1000000274,69),(5784,1000000274,70),(5785,1000000274,79),(5786,1000000274,80),(5787,1000000274,83),(5788,1000000274,84),(5789,1000000274,85),(5790,1000000274,104),(5791,1000000274,105),(5792,1000000275,22),(5793,1000000275,21),(5794,1000000275,41),(5795,1000000275,106),(5796,1000000275,54),(5797,1000000275,57),(5798,1000000275,55),(5799,1000000275,56),(5800,1000000275,107),(5801,1000000275,59),(5802,1000000275,58),(5803,1000000275,108),(5804,1000000275,69),(5805,1000000275,70),(5806,1000000275,79),(5807,1000000275,80),(5808,1000000275,83),(5809,1000000275,84),(5810,1000000275,85),(5811,1000000275,104),(5812,1000000275,105),(5813,1000000276,22),(5814,1000000276,21),(5815,1000000276,41),(5816,1000000276,106),(5817,1000000276,54),(5818,1000000276,57),(5819,1000000276,55),(5820,1000000276,56),(5821,1000000276,107),(5822,1000000276,59),(5823,1000000276,58),(5824,1000000276,108),(5825,1000000276,69),(5826,1000000276,70),(5827,1000000276,79),(5828,1000000276,80),(5829,1000000276,83),(5830,1000000276,84),(5831,1000000276,85),(5832,1000000276,104),(5833,1000000276,105),(5834,1000000277,22),(5835,1000000277,21),(5836,1000000277,41),(5837,1000000277,106),(5838,1000000277,54),(5839,1000000277,57),(5840,1000000277,55),(5841,1000000277,56),(5842,1000000277,107),(5843,1000000277,59),(5844,1000000277,58),(5845,1000000277,108),(5846,1000000277,69),(5847,1000000277,70),(5848,1000000277,79),(5849,1000000277,80),(5850,1000000277,83),(5851,1000000277,84),(5852,1000000277,85),(5853,1000000277,104),(5854,1000000277,105),(5855,1000000278,22),(5856,1000000278,21),(5857,1000000278,41),(5858,1000000278,106),(5859,1000000278,54),(5860,1000000278,57),(5861,1000000278,55),(5862,1000000278,56),(5863,1000000278,107),(5864,1000000278,59),(5865,1000000278,58),(5866,1000000278,108),(5867,1000000278,69),(5868,1000000278,70),(5869,1000000278,79),(5870,1000000278,80),(5871,1000000278,83),(5872,1000000278,84),(5873,1000000278,85),(5874,1000000278,104),(5875,1000000278,105),(5876,1000000279,22),(5877,1000000279,21),(5878,1000000279,41),(5879,1000000279,106),(5880,1000000279,54),(5881,1000000279,57),(5882,1000000279,55),(5883,1000000279,56),(5884,1000000279,107),(5885,1000000279,59),(5886,1000000279,58),(5887,1000000279,108),(5888,1000000279,69),(5889,1000000279,70),(5890,1000000279,79),(5891,1000000279,80),(5892,1000000279,83),(5893,1000000279,84),(5894,1000000279,85),(5895,1000000279,104),(5896,1000000279,105),(5897,1000000280,22),(5898,1000000280,21),(5899,1000000280,41),(5900,1000000280,106),(5901,1000000280,54),(5902,1000000280,57),(5903,1000000280,55),(5904,1000000280,56),(5905,1000000280,107),(5906,1000000280,59),(5907,1000000280,58),(5908,1000000280,108),(5909,1000000280,69),(5910,1000000280,70),(5911,1000000280,79),(5912,1000000280,80),(5913,1000000280,83),(5914,1000000280,84),(5915,1000000280,85),(5916,1000000280,104),(5917,1000000280,105),(5918,1000000281,22),(5919,1000000281,21),(5920,1000000281,41),(5921,1000000281,106),(5922,1000000281,54),(5923,1000000281,57),(5924,1000000281,55),(5925,1000000281,56),(5926,1000000281,107),(5927,1000000281,59),(5928,1000000281,58),(5929,1000000281,108),(5930,1000000281,69),(5931,1000000281,70),(5932,1000000281,79),(5933,1000000281,80),(5934,1000000281,83),(5935,1000000281,84),(5936,1000000281,85),(5937,1000000281,104),(5938,1000000281,105),(5939,1000000282,22),(5940,1000000282,21),(5941,1000000282,41),(5942,1000000282,106),(5943,1000000282,54),(5944,1000000282,57),(5945,1000000282,55),(5946,1000000282,56),(5947,1000000282,107),(5948,1000000282,59),(5949,1000000282,58),(5950,1000000282,108),(5951,1000000282,69),(5952,1000000282,70),(5953,1000000282,79),(5954,1000000282,80),(5955,1000000282,83),(5956,1000000282,84),(5957,1000000282,85),(5958,1000000282,104),(5959,1000000282,105),(5960,1000000283,22),(5961,1000000283,21),(5962,1000000283,41),(5963,1000000283,106),(5964,1000000283,54),(5965,1000000283,57),(5966,1000000283,55),(5967,1000000283,56),(5968,1000000283,107),(5969,1000000283,59),(5970,1000000283,58),(5971,1000000283,108),(5972,1000000283,69),(5973,1000000283,70),(5974,1000000283,79),(5975,1000000283,80),(5976,1000000283,83),(5977,1000000283,84),(5978,1000000283,85),(5979,1000000283,104),(5980,1000000283,105),(5981,1000000284,22),(5982,1000000284,21),(5983,1000000284,41),(5984,1000000284,106),(5985,1000000284,54),(5986,1000000284,57),(5987,1000000284,55),(5988,1000000284,56),(5989,1000000284,107),(5990,1000000284,59),(5991,1000000284,58),(5992,1000000284,108),(5993,1000000284,69),(5994,1000000284,70),(5995,1000000284,79),(5996,1000000284,80),(5997,1000000284,83),(5998,1000000284,84),(5999,1000000284,85),(6000,1000000284,104),(6001,1000000284,105);
/*!40000 ALTER TABLE `user_permission` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `user_permission_seq`
--

DROP TABLE IF EXISTS `user_permission_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user_permission_seq` (
  `id` int(10) unsigned NOT NULL auto_increment,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=6002 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_permission_seq`
--

LOCK TABLES `user_permission_seq` WRITE;
/*!40000 ALTER TABLE `user_permission_seq` DISABLE KEYS */;
INSERT INTO `user_permission_seq` VALUES (6001);
/*!40000 ALTER TABLE `user_permission_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `user_preference`
--

DROP TABLE IF EXISTS `user_preference`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user_preference` (
  `user_preference_id` int(11) NOT NULL default '0',
  `usr_id` int(11) NOT NULL default '0',
  `preference_id` int(11) NOT NULL default '0',
  `value` varchar(128) default NULL,
  PRIMARY KEY  (`user_preference_id`),
  KEY `usr_user_preference_fk` (`usr_id`),
  KEY `preference_user_preference_fk` (`preference_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_preference`
--

LOCK TABLES `user_preference` WRITE;
/*!40000 ALTER TABLE `user_preference` DISABLE KEYS */;
INSERT INTO `user_preference` VALUES (1438,1000000000,2,'Africa/Windhoek'),(1437,1000000000,8,'en_GB'),(1436,1000000000,1,'3600'),(1435,1000000000,5,'en-iso-8859-15'),(1434,1000000000,4,'UK'),(1433,1000000000,3,'default'),(320,1000000035,8,'en_GB'),(319,1000000035,7,'1'),(318,1000000035,6,'10'),(317,1000000035,5,'en-iso-8859-15'),(316,1000000035,4,'UK'),(315,1000000035,3,'default'),(314,1000000035,2,'UTC'),(313,1000000035,1,'1800'),(393,1000000045,1,'1800'),(394,1000000045,2,'UTC'),(395,1000000045,3,'default'),(396,1000000045,4,'UK'),(397,1000000045,5,'en-iso-8859-15'),(398,1000000045,6,'10'),(399,1000000045,7,'1'),(400,1000000045,8,'en_GB'),(425,1000000049,1,'1800'),(426,1000000049,2,'UTC'),(427,1000000049,3,'default'),(428,1000000049,4,'UK'),(429,1000000049,5,'en-iso-8859-15'),(430,1000000049,6,'10'),(431,1000000049,7,'1'),(432,1000000049,8,'en_GB'),(2256,1000000264,8,'en_GB'),(2255,1000000264,7,'1'),(2254,1000000264,6,'10'),(2253,1000000264,5,'en-iso-8859-15'),(2252,1000000264,4,'UK'),(1439,1000000000,6,'50'),(1440,1000000000,7,'1'),(2245,1000000263,5,'en-iso-8859-15'),(2040,1000000237,8,'en_GB'),(2039,1000000237,7,'1'),(2038,1000000237,6,'10'),(2037,1000000237,5,'en-iso-8859-15'),(2079,1000000242,7,'1'),(2078,1000000242,6,'10'),(2077,1000000242,5,'en-iso-8859-15'),(2076,1000000242,4,'UK'),(2075,1000000242,3,'default'),(2074,1000000242,2,'UTC'),(2080,1000000242,8,'en_GB'),(2073,1000000242,1,'1800'),(2168,1000000253,8,'en_GB'),(2167,1000000253,7,'1'),(2166,1000000253,6,'10'),(2072,1000000241,8,'en_GB'),(2071,1000000241,7,'1'),(2070,1000000241,6,'10'),(2069,1000000241,5,'en-iso-8859-15'),(2068,1000000241,4,'UK'),(2067,1000000241,3,'default'),(2066,1000000241,2,'UTC'),(2065,1000000241,1,'1800'),(2251,1000000264,3,'default'),(2250,1000000264,2,'UTC'),(2249,1000000264,1,'1800'),(2248,1000000263,8,'en_GB'),(2247,1000000263,7,'1'),(2246,1000000263,6,'10'),(2056,1000000239,8,'en_GB'),(2055,1000000239,7,'1'),(2054,1000000239,6,'10'),(2053,1000000239,5,'en-iso-8859-15'),(2052,1000000239,4,'UK'),(2051,1000000239,3,'default'),(2050,1000000239,2,'UTC'),(2049,1000000239,1,'1800'),(2244,1000000263,4,'UK'),(2243,1000000263,3,'default'),(2242,1000000263,2,'UTC'),(2241,1000000263,1,'1800'),(2165,1000000253,5,'en-iso-8859-15'),(2164,1000000253,4,'UK'),(2036,1000000237,4,'UK'),(2035,1000000237,3,'default'),(2034,1000000237,2,'UTC'),(2033,1000000237,1,'1800'),(2032,1000000236,8,'en_GB'),(2031,1000000236,7,'1'),(2030,1000000236,6,'10'),(2029,1000000236,5,'en-iso-8859-15'),(2028,1000000236,4,'UK'),(2027,1000000236,3,'default'),(2026,1000000236,2,'UTC'),(2025,1000000236,1,'1800'),(2024,1000000235,8,'en_GB'),(2023,1000000235,7,'1'),(2022,1000000235,6,'10'),(2021,1000000235,5,'en-iso-8859-15'),(2020,1000000235,4,'UK'),(2019,1000000235,3,'default'),(2018,1000000235,2,'UTC'),(2017,1000000235,1,'1800'),(2016,1000000234,8,'en_GB'),(2015,1000000234,7,'1'),(2014,1000000234,6,'10'),(2013,1000000234,5,'en-iso-8859-15'),(2012,1000000234,4,'UK'),(2011,1000000234,3,'default'),(2010,1000000234,2,'UTC'),(2009,1000000234,1,'1800'),(2240,1000000262,8,'en_GB'),(2239,1000000262,7,'1'),(2238,1000000262,6,'10'),(2237,1000000262,5,'en-iso-8859-15'),(2236,1000000262,4,'UK'),(2235,1000000262,3,'default'),(2234,1000000262,2,'UTC'),(2233,1000000262,1,'1800'),(2232,1000000261,8,'en_GB'),(2231,1000000261,7,'1'),(2230,1000000261,6,'10'),(2229,1000000261,5,'en-iso-8859-15'),(2228,1000000261,4,'UK'),(2227,1000000261,3,'default'),(2226,1000000261,2,'UTC'),(2225,1000000261,1,'1800'),(2224,1000000260,8,'en_GB'),(2223,1000000260,7,'1'),(2222,1000000260,6,'10'),(2221,1000000260,5,'en-iso-8859-15'),(2220,1000000260,4,'UK'),(2219,1000000260,3,'default'),(2218,1000000260,2,'UTC'),(2217,1000000260,1,'1800'),(2216,1000000259,8,'en_GB'),(2215,1000000259,7,'1'),(2214,1000000259,6,'10'),(2213,1000000259,5,'en-iso-8859-15'),(2212,1000000259,4,'UK'),(2211,1000000259,3,'default'),(2210,1000000259,2,'UTC'),(2209,1000000259,1,'1800'),(2208,1000000258,8,'en_GB'),(2207,1000000258,7,'1'),(2206,1000000258,6,'10'),(2205,1000000258,5,'en-iso-8859-15'),(2204,1000000258,4,'UK'),(2203,1000000258,3,'default'),(2202,1000000258,2,'UTC'),(2201,1000000258,1,'1800'),(2200,1000000257,8,'en_GB'),(2199,1000000257,7,'1'),(2198,1000000257,6,'10'),(2197,1000000257,5,'en-iso-8859-15'),(2196,1000000257,4,'UK'),(2195,1000000257,3,'default'),(2194,1000000257,2,'UTC'),(2193,1000000257,1,'1800'),(2192,1000000256,8,'en_GB'),(2191,1000000256,7,'1'),(2190,1000000256,6,'10'),(2189,1000000256,5,'en-iso-8859-15'),(2188,1000000256,4,'UK'),(2187,1000000256,3,'default'),(2186,1000000256,2,'UTC'),(2185,1000000256,1,'1800'),(2184,1000000255,8,'en_GB'),(2183,1000000255,7,'1'),(2182,1000000255,6,'10'),(2181,1000000255,5,'en-iso-8859-15'),(2180,1000000255,4,'UK'),(2179,1000000255,3,'default'),(2178,1000000255,2,'UTC'),(2177,1000000255,1,'1800'),(2176,1000000254,8,'en_GB'),(2175,1000000254,7,'1'),(2174,1000000254,6,'10'),(2173,1000000254,5,'en-iso-8859-15'),(2172,1000000254,4,'UK'),(2171,1000000254,3,'default'),(2170,1000000254,2,'UTC'),(2169,1000000254,1,'1800'),(2152,1000000251,8,'en_GB'),(2151,1000000251,7,'1'),(2150,1000000251,6,'10'),(2149,1000000251,5,'en-iso-8859-15'),(2148,1000000251,4,'UK'),(2163,1000000253,3,'default'),(2162,1000000253,2,'UTC'),(2161,1000000253,1,'1800'),(2160,1000000252,8,'en_GB'),(2159,1000000252,7,'1'),(2158,1000000252,6,'10'),(2157,1000000252,5,'en-iso-8859-15'),(2156,1000000252,4,'UK'),(2155,1000000252,3,'default'),(2154,1000000252,2,'UTC'),(2153,1000000252,1,'1800'),(2147,1000000251,3,'default'),(2146,1000000251,2,'UTC'),(2145,1000000251,1,'1800'),(2144,1000000250,8,'en_GB'),(2143,1000000250,7,'1'),(2142,1000000250,6,'10'),(2141,1000000250,5,'en-iso-8859-15'),(2140,1000000250,4,'UK'),(2139,1000000250,3,'default'),(2138,1000000250,2,'UTC'),(2137,1000000250,1,'1800'),(2136,1000000249,8,'en_GB'),(2135,1000000249,7,'1'),(2134,1000000249,6,'10'),(2133,1000000249,5,'en-iso-8859-15'),(2132,1000000249,4,'UK'),(2131,1000000249,3,'default'),(2130,1000000249,2,'UTC'),(2129,1000000249,1,'1800'),(2128,1000000248,8,'en_GB'),(2127,1000000248,7,'1'),(2126,1000000248,6,'10'),(2125,1000000248,5,'en-iso-8859-15'),(2124,1000000248,4,'UK'),(2123,1000000248,3,'default'),(2122,1000000248,2,'UTC'),(2121,1000000248,1,'1800'),(2089,1000000244,1,'1800'),(2090,1000000244,2,'UTC'),(2091,1000000244,3,'default'),(2092,1000000244,4,'UK'),(2093,1000000244,5,'en-iso-8859-15'),(2094,1000000244,6,'10'),(2095,1000000244,7,'1'),(2096,1000000244,8,'en_GB'),(2097,1000000245,1,'1800'),(2098,1000000245,2,'UTC'),(2099,1000000245,3,'default'),(2100,1000000245,4,'UK'),(2101,1000000245,5,'en-iso-8859-15'),(2102,1000000245,6,'10'),(2103,1000000245,7,'1'),(2104,1000000245,8,'en_GB'),(2105,1000000246,1,'1800'),(2106,1000000246,2,'UTC'),(2107,1000000246,3,'default'),(2108,1000000246,4,'UK'),(2109,1000000246,5,'en-iso-8859-15'),(2110,1000000246,6,'10'),(2111,1000000246,7,'1'),(2112,1000000246,8,'en_GB'),(2113,1000000247,1,'1800'),(2114,1000000247,2,'UTC'),(2115,1000000247,3,'default'),(2116,1000000247,4,'UK'),(2117,1000000247,5,'en-iso-8859-15'),(2118,1000000247,6,'10'),(2119,1000000247,7,'1'),(2120,1000000247,8,'en_GB'),(2257,1000000265,1,'1800'),(2258,1000000265,2,'UTC'),(2259,1000000265,3,'default'),(2260,1000000265,4,'UK'),(2261,1000000265,5,'en-iso-8859-15'),(2262,1000000265,6,'10'),(2263,1000000265,7,'1'),(2264,1000000265,8,'en_GB'),(2265,1000000266,1,'1800'),(2266,1000000266,2,'UTC'),(2267,1000000266,3,'default'),(2268,1000000266,4,'UK'),(2269,1000000266,5,'en-iso-8859-15'),(2270,1000000266,6,'10'),(2271,1000000266,7,'1'),(2272,1000000266,8,'en_GB'),(2273,1000000267,1,'1800'),(2274,1000000267,2,'UTC'),(2275,1000000267,3,'default'),(2276,1000000267,4,'UK'),(2277,1000000267,5,'en-iso-8859-15'),(2278,1000000267,6,'10'),(2279,1000000267,7,'1'),(2280,1000000267,8,'en_GB'),(2281,1000000268,1,'1800'),(2282,1000000268,2,'UTC'),(2283,1000000268,3,'default'),(2284,1000000268,4,'UK'),(2285,1000000268,5,'en-iso-8859-15'),(2286,1000000268,6,'10'),(2287,1000000268,7,'1'),(2288,1000000268,8,'en_GB'),(2289,1000000269,1,'1800'),(2290,1000000269,2,'UTC'),(2291,1000000269,3,'default'),(2292,1000000269,4,'UK'),(2293,1000000269,5,'en-iso-8859-15'),(2294,1000000269,6,'10'),(2295,1000000269,7,'1'),(2296,1000000269,8,'en_GB'),(2297,1000000270,1,'1800'),(2298,1000000270,2,'UTC'),(2299,1000000270,3,'default'),(2300,1000000270,4,'UK'),(2301,1000000270,5,'en-iso-8859-15'),(2302,1000000270,6,'10'),(2303,1000000270,7,'1'),(2304,1000000270,8,'en_GB'),(2305,1000000271,1,'1800'),(2306,1000000271,2,'UTC'),(2307,1000000271,3,'default'),(2308,1000000271,4,'UK'),(2309,1000000271,5,'en-iso-8859-15'),(2310,1000000271,6,'10'),(2311,1000000271,7,'1'),(2312,1000000271,8,'en_GB'),(2313,1000000272,1,'1800'),(2314,1000000272,2,'UTC'),(2315,1000000272,3,'default'),(2316,1000000272,4,'UK'),(2317,1000000272,5,'en-iso-8859-15'),(2318,1000000272,6,'10'),(2319,1000000272,7,'1'),(2320,1000000272,8,'en_GB'),(2321,1000000273,1,'1800'),(2322,1000000273,2,'UTC'),(2323,1000000273,3,'default'),(2324,1000000273,4,'UK'),(2325,1000000273,5,'en-iso-8859-15'),(2326,1000000273,6,'10'),(2327,1000000273,7,'1'),(2328,1000000273,8,'en_GB'),(2329,1000000274,1,'1800'),(2330,1000000274,2,'UTC'),(2331,1000000274,3,'default'),(2332,1000000274,4,'UK'),(2333,1000000274,5,'en-iso-8859-15'),(2334,1000000274,6,'10'),(2335,1000000274,7,'1'),(2336,1000000274,8,'en_GB'),(2337,1000000275,1,'1800'),(2338,1000000275,2,'UTC'),(2339,1000000275,3,'default'),(2340,1000000275,4,'UK'),(2341,1000000275,5,'en-iso-8859-15'),(2342,1000000275,6,'10'),(2343,1000000275,7,'1'),(2344,1000000275,8,'en_GB'),(2345,1000000276,1,'1800'),(2346,1000000276,2,'UTC'),(2347,1000000276,3,'default'),(2348,1000000276,4,'UK'),(2349,1000000276,5,'en-iso-8859-15'),(2350,1000000276,6,'10'),(2351,1000000276,7,'1'),(2352,1000000276,8,'en_GB'),(2353,1000000277,1,'1800'),(2354,1000000277,2,'UTC'),(2355,1000000277,3,'default'),(2356,1000000277,4,'UK'),(2357,1000000277,5,'en-iso-8859-15'),(2358,1000000277,6,'10'),(2359,1000000277,7,'1'),(2360,1000000277,8,'en_GB'),(2361,1000000278,1,'1800'),(2362,1000000278,2,'UTC'),(2363,1000000278,3,'default'),(2364,1000000278,4,'UK'),(2365,1000000278,5,'en-iso-8859-15'),(2366,1000000278,6,'10'),(2367,1000000278,7,'1'),(2368,1000000278,8,'en_GB'),(2369,1000000279,1,'1800'),(2370,1000000279,2,'UTC'),(2371,1000000279,3,'default'),(2372,1000000279,4,'UK'),(2373,1000000279,5,'en-iso-8859-15'),(2374,1000000279,6,'10'),(2375,1000000279,7,'1'),(2376,1000000279,8,'en_GB'),(2377,1000000280,1,'1800'),(2378,1000000280,2,'UTC'),(2379,1000000280,3,'default'),(2380,1000000280,4,'UK'),(2381,1000000280,5,'en-iso-8859-15'),(2382,1000000280,6,'10'),(2383,1000000280,7,'1'),(2384,1000000280,8,'en_GB'),(2385,1000000281,1,'1800'),(2386,1000000281,2,'UTC'),(2387,1000000281,3,'default'),(2388,1000000281,4,'UK'),(2389,1000000281,5,'en-iso-8859-15'),(2390,1000000281,6,'10'),(2391,1000000281,7,'1'),(2392,1000000281,8,'en_GB'),(2393,1000000282,1,'1800'),(2394,1000000282,2,'UTC'),(2395,1000000282,3,'default'),(2396,1000000282,4,'UK'),(2397,1000000282,5,'en-iso-8859-15'),(2398,1000000282,6,'10'),(2399,1000000282,7,'1'),(2400,1000000282,8,'en_GB'),(2401,1000000283,1,'1800'),(2402,1000000283,2,'UTC'),(2403,1000000283,3,'default'),(2404,1000000283,4,'UK'),(2405,1000000283,5,'en-iso-8859-15'),(2406,1000000283,6,'10'),(2407,1000000283,7,'1'),(2408,1000000283,8,'en_GB'),(2430,1000000284,2,'UTC'),(2429,1000000284,8,'en_GB'),(2428,1000000284,1,'1800'),(2427,1000000284,5,'en-iso-8859-15'),(2426,1000000284,4,'UK'),(2425,1000000284,3,'default'),(2431,1000000284,6,'10'),(2432,1000000284,7,'1');
/*!40000 ALTER TABLE `user_preference` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `user_preference_seq`
--

DROP TABLE IF EXISTS `user_preference_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user_preference_seq` (
  `id` int(10) unsigned NOT NULL auto_increment,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2433 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_preference_seq`
--

LOCK TABLES `user_preference_seq` WRITE;
/*!40000 ALTER TABLE `user_preference_seq` DISABLE KEYS */;
INSERT INTO `user_preference_seq` VALUES (2432);
/*!40000 ALTER TABLE `user_preference_seq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `user_session`
--

DROP TABLE IF EXISTS `user_session`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user_session` (
  `session_id` varchar(255) NOT NULL default '',
  `last_updated` datetime default NULL,
  `data_value` text,
  `usr_id` int(11) NOT NULL default '0',
  `username` varchar(64) default NULL,
  `expiry` int(11) NOT NULL default '0',
  PRIMARY KEY  (`session_id`),
  KEY `last_updated` (`last_updated`),
  KEY `usr_id` (`usr_id`),
  KEY `username` (`username`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_session`
--

LOCK TABLES `user_session` WRITE;
/*!40000 ALTER TABLE `user_session` DISABLE KEYS */;
/*!40000 ALTER TABLE `user_session` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `usr`
--

DROP TABLE IF EXISTS `usr`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `usr` (
  `usr_id` int(11) NOT NULL default '0',
  `organisation_id` int(11) default '0',
  `role_id` int(11) NOT NULL default '0',
  `username` varchar(64) default NULL,
  `passwd` varchar(32) default NULL,
  `first_name` varchar(128) default NULL,
  `last_name` varchar(128) default NULL,
  `telephone` varchar(16) default NULL,
  `mobile` varchar(16) default NULL,
  `email` varchar(128) default NULL,
  `addr_1` varchar(128) default NULL,
  `addr_2` varchar(128) default NULL,
  `addr_3` varchar(128) default NULL,
  `city` varchar(64) default NULL,
  `region` varchar(32) default NULL,
  `country` char(2) default NULL,
  `post_code` varchar(16) default NULL,
  `is_email_public` smallint(6) default NULL,
  `is_acct_active` smallint(6) default NULL,
  `is_activate_email` smallint(6) NOT NULL default '0',
  `security_question` smallint(6) default NULL,
  `security_answer` varchar(128) default NULL,
  `date_created` datetime default NULL,
  `date_expired` datetime NOT NULL default '0000-00-00 00:00:00',
  `created_by` int(11) default NULL,
  `last_updated` datetime default NULL,
  `updated_by` int(11) default NULL,
  PRIMARY KEY  (`usr_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `usr`
--

LOCK TABLES `usr` WRITE;
/*!40000 ALTER TABLE `usr` DISABLE KEYS */;
INSERT INTO `usr` VALUES (0,1,0,'nobody','21232f297a57a5a743894a0e4a801fc3','Nobody','Nobody','','','none@none.com','none','','','None','','GB','55555',0,0,0,1,'rover','2003-12-09 18:02:44','0000-00-00 00:00:00',1,'2004-06-10 11:07:27',1),(999999999,0,2,'demo@rvsitebuilder.com','fe01ce2a7fbac8fafaed7c982a04e229','demo','demo','','','demo@rvsitebuilder.com','demo','','','demo','','TH','00000',1,1,1,1,'demo','2006-11-08 14:56:45','2035-01-01 00:00:00',1,'2006-11-08 14:56:45',1),(1000000000,1,1,'Rudi@SoftDux.com','2f360fb4aea2ac2f287167b673b984ac','Rudi','Ahlers','0878059573','0825547532','Rudi@SoftDux.com','63 Club Street','Linksfield','','Johannesburg','','ZA','2192',0,1,1,4,'Naude','2007-04-04 13:20:29','0000-00-00 00:00:00',1,'2007-11-26 08:59:02',1000000000),(1000000269,1,2,'sama_lakhmani@yahoo.com','e10adc3949ba59abbe56e057f20f883e','sam','lakhmani','','','sama_lakhmani@yahoo.com','albion','','','melbourne','','AU','3020',NULL,NULL,0,4,'jaywanti','2009-09-04 02:53:29','0000-00-00 00:00:00',NULL,'2009-09-04 02:53:29',NULL),(1000000242,1,2,'beibmab@yahoo.com','7b32510048ed0b2995c9facc6c845dda','priscilla','padayachee','','','beibmab@yahoo.com','144 Zianette Avenue','','','durban','SC','ZA','4001',NULL,1,1,6,'summer of 69','2009-06-28 14:36:55','2009-07-28 14:36:55',NULL,'2009-06-28 14:36:55',NULL),(1000000241,1,2,'denny@dchost.co.za','ddc92c6265d6de7967f548eec7d53e42','Denny','Vollet','','','denny@dchost.co.za','PO box 527','','','Jhb','','ZA','1752',NULL,1,1,1,'Beng','2009-06-26 12:57:11','2009-07-26 12:57:11',NULL,'2009-06-26 12:57:11',NULL),(1000000267,1,2,'allgentsa@gmail.com','390e7b70196e35e20844eee27396a440','paul','allgent','','','allgentsa@gmail.com','simmonds st','braamfontein','','jhb','','ZA','2001',NULL,1,1,1,'bingo','2009-09-03 22:45:38','2009-10-03 22:45:38',NULL,'2009-09-03 22:45:38',NULL),(1000000268,1,2,'mallikasays@rediffmail.com','e10adc3949ba59abbe56e057f20f883e','mallika','chopra','','','mallikasays@rediffmail.com','albion','','','melbourne','','AU','3020',NULL,NULL,0,4,'jaywanti','2009-09-04 02:44:58','0000-00-00 00:00:00',NULL,'2009-09-04 02:44:58',NULL),(1000000239,1,2,'attienel@fastmail.net','d443f79fc1ab506283c8855e7b0143c6','At','Nel','','27833692210','attienel@fastmail.net','Bus 159','Ogies','','Ogies','','ZA','2260',NULL,1,1,4,'bouwer','2009-06-20 16:53:37','2009-07-20 16:53:37',NULL,'2009-06-20 16:53:37',NULL),(1000000266,1,2,'hlomelang.morake@ebucks.com','1c13f41ba0206cdf0c1e9e4dd1355041','Hlomi','','','','hlomelang.morake@ebucks.com','88 Stella Street','','','Sandton','','ZA','2196',NULL,1,1,3,'church','2009-09-02 13:34:04','2009-10-02 13:34:04',NULL,'2009-09-02 13:34:04',NULL),(1000000237,1,2,'hmzdara@gmail.com','9100c26c4306fda6bb2475cf76ac6e79','Hardy','Zdara','0825888824','0825888824','hmzdara@gmail.com','P O Box 38011','','','garsfontein','','ZA','0060',NULL,1,1,4,'Els','2009-06-13 06:37:07','2009-07-13 06:37:07',NULL,'2009-06-13 06:37:07',NULL),(1000000236,1,2,'michael.strato@gmail.com','4ac80fbad18d456119fdc0463715883b','Michael','Strato','','','michael.strato@gmail.com','498 des Erables Blvd.','','','L\'Ile Perrot','','CA','J7V 7R5',NULL,1,1,1,'damapo','2009-06-12 20:58:34','2009-07-12 20:58:34',NULL,'2009-06-12 20:58:34',NULL),(1000000235,1,2,'davern@mweb.co.za','538463c9b3d1597b5bab66d83fa2e7ee','Vernon','Davids','0217066376','0746516959','davern@mweb.co.za','9Lakers Court,Kleinsmidt Rd,Grassy Park','','','Cape Town','','ZA','7941',NULL,1,1,1,'Juan','2009-06-12 07:49:55','2009-07-12 07:49:55',NULL,'2009-06-12 07:49:55',NULL),(1000000234,1,2,'thahane.lerato@gmail.com','abc49996101fb9269551463246f07c75','Lerato','Thahane','+27126545585','+27823460669','thahane.lerato@gmail.com','241 Piet Hugo St','Eldoraigne','','Centurion','AL','ZA','0149',NULL,1,1,4,'sekamane','2009-06-10 20:03:29','2009-07-10 20:03:29',NULL,'2009-06-10 20:03:29',NULL),(1000000265,1,2,'information.midi@gmail.com','a45896238defd1d0047d4149efa3d7b0','portia','kasungu','0217971487','0789989121','information.midi@gmail.com','p o box 2283','cape town','south africa','cape town','','ZA','8000',NULL,1,1,1,'pretty','2009-08-24 08:50:29','2009-09-23 08:50:29',NULL,'2009-08-24 08:50:29',NULL),(1000000264,1,2,'bob777@live.co.za','e10adc3949ba59abbe56e057f20f883e','robert','miller','+27 78 923 0195','+27 78 923 0195','bob777@live.co.za','randburg','','','randburg','','ZA','2194',NULL,NULL,0,1,'joey','2009-08-21 09:23:42','0000-00-00 00:00:00',NULL,'2009-08-21 09:23:42',NULL),(1000000263,1,2,'wgr@mtb.co.za','5c9f319f608e97760b00431567c79cec','Butch','Robertson','+2723486000','+27828081173','wgr@mtb.co.za','66 Church street','','','Worcester','','ZA','6850',NULL,1,1,1,'Chummy','2009-08-18 14:32:03','2009-09-17 14:32:03',NULL,'2009-08-18 14:32:03',NULL),(1000000262,1,2,'stephcrafford@gmail.com','71ff21a8b0aa2a9db9417383b6edcc8b','Steph','Crafford','011 867 8426','0744543004','stephcrafford@gmail.com','Douglas Harris','181','Meyersdal','Alberton','','ZA','1448',NULL,1,1,4,'Oosthuizen','2009-08-15 12:48:30','2009-09-14 12:48:30',NULL,'2009-08-15 12:48:30',NULL),(1000000261,1,2,'stephcrafford@gmail.co.za','e10adc3949ba59abbe56e057f20f883e','Stephanie','Crafford','0118675462','0744543004','stephcrafford@gmail.co.za','Douglas Harris','181','Meyersdal','Johannesburg','','ZA','1448',NULL,NULL,0,4,'Oosthuizen','2009-08-15 12:42:50','0000-00-00 00:00:00',NULL,'2009-08-15 12:42:50',NULL),(1000000260,1,2,'turningpoint@aerosat.co.za','b144089ac86f835e09f719da39a02797','Russell','Jones','','','turningpoint@aerosat.co.za','p o box1785','','','Uitenhage','','ZA','6230',NULL,1,1,1,'Sabastian','2009-08-08 06:14:59','2009-09-07 06:14:59',NULL,'2009-08-08 06:14:59',NULL),(1000000259,1,2,'kcasumpang@radio.astral.com','083d32d5df74f822978f158d4fdafe87','Krysten','Casumpang','','','kcasumpang@radio.astral.com','11151 Horseshoe Way','','','Richmond','','CA','V7A4S5',NULL,1,1,6,'Sweet Judy Blue Eyes','2009-08-04 18:27:32','2009-09-03 18:27:32',NULL,'2009-08-04 18:27:32',NULL),(1000000258,1,2,'sarelkotze@telkomsa.net','da524b01051f9f5a11a58982ca4bb08e','sarel','kotze','0125427325','0839483260','sarelkotze@telkomsa.net','plot 170','7 th avenue','heatherdale','pretoria','Outside US','ZA','0116',0,1,1,4,'coetzee','2009-07-27 07:26:33','2009-08-26 07:26:33',NULL,'2009-07-30 14:33:35',NULL),(1000000257,1,2,'npasafety@gmail.com','03bf230da68f2efaacb7f03466e2e5c8','Lez','Naidoo','0119077307','0835846197','npasafety@gmail.com','6 Feeskoppies','','','Gauteng','','ZA','1449',NULL,1,1,2,'08052009','2009-07-24 14:47:59','2009-08-23 14:47:59',NULL,'2009-07-24 14:47:59',NULL),(1000000256,1,2,'brendangrubbs@yahoo.com','13530ebdbe37d5285dea980b74a3443c','william','grubbs','','','brendangrubbs@yahoo.com','59997 hurley rd','','','squaw lake','MN','US','56681',NULL,1,1,1,'dingo','2009-07-23 00:31:07','2009-08-22 00:31:07',NULL,'2009-07-23 00:31:07',NULL),(1000000255,1,2,'betsykempter@gmail.com','b25f2badec613068954a77a5c61172f9','Betsy','Kempter','','','betsykempter@gmail.com','2700 Winningham Rd.','','','Chapel Hill','NC','US','27516',0,1,1,1,'Nebi','2009-07-22 02:39:00','2009-08-21 02:39:00',NULL,'2009-07-22 06:49:04',1000000000),(1000000254,1,2,'jmformacao@gmail.com','8dde5c5eab68e4c91b6b4a07e28bc5c4','Jorge','Gonçalves','','','jmformacao@gmail.com','Centro Comercial Mirobrig','','','Santiago','','PT','7540',NULL,1,1,7,'vulcao','2009-07-21 08:56:39','2009-08-20 08:56:39',NULL,'2009-07-21 08:56:39',NULL),(1000000253,1,2,'kianhui_1@hotmail.com','7d52696ffd5b2f419c9dbd5affb99bb1','','','','','kianhui_1@hotmail.com','Jalan Puteri','','','Selangor','','MY','47100',NULL,1,1,1,'Angel','2009-07-21 04:51:09','2009-08-20 04:51:09',NULL,'2009-07-21 04:51:09',NULL),(1000000252,1,2,'joemannguate@hotmail.com','e10adc3949ba59abbe56e057f20f883e','Joseph','Waddell','','','joemannguate@hotmail.com','6918 Holland St','','','Richmond','VA','US','23231',NULL,NULL,0,1,'teddy','2009-07-19 19:36:50','0000-00-00 00:00:00',NULL,'2009-07-19 19:36:50',NULL),(1000000250,1,2,'shaun.padachi@gmail.com','574ebd0cc06c445a2fa4b9917e6e2684','shaun','Padachi','','','shaun.padachi@gmail.com','37 Perth Road','','','Buccleuch','','ZA','2090',NULL,1,1,1,'whiskey','2009-07-17 14:17:17','2009-08-16 14:17:17',NULL,'2009-07-17 14:17:17',NULL),(1000000251,1,2,'peachstuff@bellsouth.net','91d9831abc0c23f7677e4c887a347e31','','','','','peachstuff@bellsouth.net','1233 Alandee Street','','','Nashville','','US','37214',NULL,1,1,4,'Burrell','2009-07-18 04:01:48','2009-08-17 04:01:48',NULL,'2009-07-18 04:01:48',NULL),(1000000249,1,2,'srand@comoso.com','ae9807ee3b97bb622a936623bab6cc6f','Sylvia','Rand','5628626329','7148157620','srand@comoso.com','10429 Tristan Drive','','','Downey','CA','US','90241',NULL,1,1,4,'Drabos','2009-07-16 20:14:37','2009-08-15 20:14:37',NULL,'2009-07-16 20:14:37',NULL),(1000000248,1,2,'mortalsip@gmail.com','d8b528fd4d0c60a993a93c1167ce5b38','','','','','mortalsip@gmail.com','1 West ave','','','Ferndale','','ZA','2000',NULL,1,1,4,'Mohajane','2009-07-14 03:55:15','2009-08-13 03:55:15',NULL,'2009-07-14 03:55:15',NULL),(1000000244,1,2,'lienj@korbitec.com','c77c98b14be8fa22a2f52d6920f77766','Lien','Joubert','','','lienj@korbitec.com','309 Tamarisk','','','Benoni','','ZA','1501',NULL,1,1,5,'Sabrina','2009-07-01 10:41:32','2009-07-31 10:41:32',NULL,'2009-07-01 10:41:32',NULL),(1000000245,1,2,'charmaine@breaktheboxsales.co.za','cc88c11c48401549059a861242602fb7','Charmaine','Plank','012 6536552','0728595109','charmaine@breaktheboxsales.co.za','27 Eagles Nest','Bishop Bird Street','Rooihuiskraal North','Centurion','','ZA','0157',NULL,1,1,1,'scrabby','2009-07-01 11:15:31','2009-07-31 11:15:31',NULL,'2009-07-01 11:15:31',NULL),(1000000246,1,2,'cursed.pirate@hotmail.com','e97caaee2f4d067f6ea43804665bc87f','peter','','','','cursed.pirate@hotmail.com','po box 18965','','','JHB','','ZA','1365',NULL,1,1,1,'pilgy','2009-07-02 10:08:54','2009-08-01 10:08:54',NULL,'2009-07-02 10:08:54',NULL),(1000000247,1,2,'volvo119@hotmail.com','888e931d6360ee143df0d552f955299a','Khayd','Kwon','82-70-8261-8652','82-10-8227-0959','volvo119@hotmail.com','924-19','ShinJung 4 Dong','Yangchun Gu','Seoul','','KR','158858',NULL,1,1,2,'02011969','2009-07-05 12:21:58','2009-08-04 12:21:58',NULL,'2009-07-05 12:21:58',NULL),(1000000270,1,2,'blmussicproductions@yahoo.com','e10adc3949ba59abbe56e057f20f883e','Lungisa','Ndabeni','','27745616703','blmussicproductions@yahoo.com','P.O.Box 13589','Vincent','5217','Vincent','WV','ZA','5217',NULL,NULL,0,6,'YOU LISTENED','2009-09-09 10:18:45','0000-00-00 00:00:00',NULL,'2009-09-09 10:18:45',NULL),(1000000271,1,2,'bilal@technovision.com.pk','175d2333204c3a9ee29fa34fcca1da58','ali','ali','','','bilal@technovision.com.pk','518','','','la','','PK','54000',NULL,1,1,1,'123','2009-09-15 06:45:27','2009-10-15 06:45:27',NULL,'2009-09-15 06:45:27',NULL),(1000000272,1,2,'koruru@xtra.co.nz','7aae5d36703bbceda52dd90e5fbad335','James','Wilsey','','','koruru@xtra.co.nz','PO Box 35-844','PO Box 35-844','PO Box 35-844','Browns Bay','','NZ','--',NULL,1,1,1,'esther','2009-09-25 04:33:40','2009-10-25 04:33:40',NULL,'2009-09-25 04:33:40',NULL),(1000000273,1,2,'b_bopj5@yahoo.com','d0c7debfd250f802fa39f0ea874f7835','Jean','de Villiers','','','b_bopj5@yahoo.com','Parow','','','Cape Town','','ZA','7500',NULL,1,1,4,'bosch','2009-09-28 19:03:17','2009-10-28 19:03:17',NULL,'2009-09-28 19:03:17',NULL),(1000000274,1,2,'dean@tecturbo.co.za','e10adc3949ba59abbe56e057f20f883e','dean','','012 6615770','','dean@tecturbo.co.za','p.o.box53037','wierda park','','centurion','','ZA','0149',NULL,NULL,0,1,'scrabby','2009-10-05 14:47:30','0000-00-00 00:00:00',NULL,'2009-10-05 14:47:30',NULL),(1000000275,1,2,'trekkerll@yahoo.com.hk','a6068b9044e146b843c1d366b845ec80','Stan','So','','','trekkerll@yahoo.com.hk','Hong Kong','','','Hong Kong','','HK','G2009',NULL,1,1,1,'fatfat','2009-10-08 04:06:11','2009-11-07 04:06:11',NULL,'2009-10-08 04:06:11',NULL),(1000000276,1,2,'rcbir@cox.net','4f40371c3c67f8c13184fec434786cbc','reed','birney','','','rcbir@cox.net','3608 bradinton','','','williamsburg','VA','US','23188',NULL,1,1,1,'april','2009-10-18 18:43:32','2009-11-17 18:43:32',NULL,'2009-10-18 18:43:32',NULL),(1000000277,1,2,'olidewandeler@gmail.com','8ee6083fa5f314fe81042661edf6af71','Delphine','Dewandeler','','','olidewandeler@gmail.com','Plot 12','','','Pretoria','','ZA','0001',NULL,1,1,1,'Nina','2009-10-20 11:59:13','2009-11-19 11:59:13',NULL,'2009-10-20 11:59:13',NULL),(1000000278,1,2,'al.hosani@live.com','e10adc3949ba59abbe56e057f20f883e','abdul','alhosani','','00971 50 1494966','al.hosani@live.com','ad','','','abu dhabi','','AE','00971',NULL,NULL,0,4,'ahmad','2009-10-24 20:55:12','0000-00-00 00:00:00',NULL,'2009-10-24 20:55:12',NULL),(1000000279,1,2,'rudi@cherrypix.co.za','4d1f4ba03f7b6b14ad527119674b5540','Rudi','Ahlers','0878059573','0825547532','rudi@cherrypix.co.za','67 Edward Ave','Sandringham','','Johannesburg','','ZA','2192',NULL,NULL,0,4,'Naude','2009-11-05 16:36:08','0000-00-00 00:00:00',NULL,'2009-11-05 16:36:08',NULL),(1000000280,1,2,'brentkruger@krunity.co.za','c6a2611b980f0fd70efcbdc7839781ab','Brent','Kruger','','','brentkruger@krunity.co.za','5 Krinkhout Avenue','Glen Marais','','Kempton Park','','ZA','1501',NULL,1,1,2,'05','2009-11-06 04:51:40','2009-12-06 04:51:40',NULL,'2009-11-06 04:51:40',NULL),(1000000281,1,2,'midi.ck1@gmail.com','800db5064bc52f7fe602f10f0d94a20f','Connie','Mbulawa','27217971487','','midi.ck1@gmail.com','15 netherlands road','fish hoek','cape town','cape town','','ZA','7800',NULL,1,1,1,'nandi','2009-11-20 14:21:38','2009-12-20 14:21:38',NULL,'2009-11-20 14:21:38',NULL),(1000000282,1,2,'pajordan@gmail.com','22966eff35eee09b62b37195ea87bb1b','Pat','Jordan','','','pajordan@gmail.com','2123 Old Spartanburg Rd','','','Greer','SC','US','29650',NULL,1,1,1,'zeus','2009-12-09 22:25:04','2010-01-08 22:25:04',NULL,'2009-12-09 22:25:04',NULL),(1000000283,1,2,'carien24@gmail.com','e10adc3949ba59abbe56e057f20f883e','Carien','Taute','','','carien24@gmail.com','PO Box 14213','','','Witbank','','ZA','1035',NULL,NULL,0,1,'maja','2010-01-06 20:53:03','0000-00-00 00:00:00',NULL,'2010-01-06 20:53:03',NULL),(1000000284,1,2,'tamlynwilson@gmail.com','837b127e29d1e414cebcd40e40c98f41','Tamlyn','Wilson','013 7449092','082 800 2107','tamlynwilson@gmail.com','15 renosterkop','','','Nelspruit','','ZA','1200',NULL,1,1,2,'14/06/1989','2010-01-13 22:23:30','2010-02-12 22:23:30',NULL,'2010-01-13 22:23:30',NULL);
/*!40000 ALTER TABLE `usr` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `usr_seq`
--

DROP TABLE IF EXISTS `usr_seq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `usr_seq` (
  `id` int(10) unsigned NOT NULL auto_increment,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1000000285 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `usr_seq`
--

LOCK TABLES `usr_seq` WRITE;
/*!40000 ALTER TABLE `usr_seq` DISABLE KEYS */;
INSERT INTO `usr_seq` VALUES (1000000284);
/*!40000 ALTER TABLE `usr_seq` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2010-01-14 12:17:09
