-- MariaDB dump 10.19  Distrib 10.4.25-MariaDB, for debian-linux-gnu (x86_64)
--
-- Host: sql17.cpt3.host-h.net    Database: localbitcoins
-- ------------------------------------------------------
-- Server version	10.4.25-MariaDB-1:10.4.25+maria~buster

/*!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 utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `ErrorPage`
--

DROP TABLE IF EXISTS `ErrorPage`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ErrorPage` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `ErrorCode` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ErrorPage`
--

LOCK TABLES `ErrorPage` WRITE;
/*!40000 ALTER TABLE `ErrorPage` DISABLE KEYS */;
INSERT INTO `ErrorPage` VALUES (4,404),(5,500);
/*!40000 ALTER TABLE `ErrorPage` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ErrorPage_Live`
--

DROP TABLE IF EXISTS `ErrorPage_Live`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ErrorPage_Live` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `ErrorCode` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ErrorPage_Live`
--

LOCK TABLES `ErrorPage_Live` WRITE;
/*!40000 ALTER TABLE `ErrorPage_Live` DISABLE KEYS */;
INSERT INTO `ErrorPage_Live` VALUES (4,404),(5,500);
/*!40000 ALTER TABLE `ErrorPage_Live` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ErrorPage_versions`
--

DROP TABLE IF EXISTS `ErrorPage_versions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ErrorPage_versions` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `RecordID` int(11) NOT NULL DEFAULT 0,
  `Version` int(11) NOT NULL DEFAULT 0,
  `ErrorCode` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  UNIQUE KEY `RecordID_Version` (`RecordID`,`Version`),
  KEY `RecordID` (`RecordID`),
  KEY `Version` (`Version`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ErrorPage_versions`
--

LOCK TABLES `ErrorPage_versions` WRITE;
/*!40000 ALTER TABLE `ErrorPage_versions` DISABLE KEYS */;
INSERT INTO `ErrorPage_versions` VALUES (1,4,1,404),(2,5,1,500);
/*!40000 ALTER TABLE `ErrorPage_versions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `File`
--

DROP TABLE IF EXISTS `File`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `File` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `ClassName` enum('File','Folder','Image','Image_Cached') CHARACTER SET utf8 DEFAULT 'File',
  `Created` datetime DEFAULT NULL,
  `LastEdited` datetime DEFAULT NULL,
  `Name` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `Title` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `Filename` mediumtext CHARACTER SET utf8 DEFAULT NULL,
  `Content` mediumtext CHARACTER SET utf8 DEFAULT NULL,
  `ShowInSearch` tinyint(1) unsigned NOT NULL DEFAULT 1,
  `ParentID` int(11) NOT NULL DEFAULT 0,
  `OwnerID` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `ParentID` (`ParentID`),
  KEY `OwnerID` (`OwnerID`),
  KEY `ClassName` (`ClassName`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `File`
--

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

--
-- Table structure for table `Group`
--

DROP TABLE IF EXISTS `Group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Group` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `ClassName` enum('Group') CHARACTER SET utf8 DEFAULT 'Group',
  `Created` datetime DEFAULT NULL,
  `LastEdited` datetime DEFAULT NULL,
  `Title` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `Description` mediumtext CHARACTER SET utf8 DEFAULT NULL,
  `Code` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `Locked` tinyint(1) unsigned NOT NULL DEFAULT 0,
  `Sort` int(11) NOT NULL DEFAULT 0,
  `HtmlEditorConfig` mediumtext CHARACTER SET utf8 DEFAULT NULL,
  `ParentID` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `ParentID` (`ParentID`),
  KEY `ClassName` (`ClassName`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `Group`
--

LOCK TABLES `Group` WRITE;
/*!40000 ALTER TABLE `Group` DISABLE KEYS */;
INSERT INTO `Group` VALUES (1,'Group','2015-04-20 14:53:59','2015-04-20 14:53:59','Content Authors',NULL,'content-authors',0,1,NULL,0),(2,'Group','2015-04-20 14:53:59','2015-04-20 14:53:59','Administrators',NULL,'administrators',0,0,NULL,0);
/*!40000 ALTER TABLE `Group` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `Group_Members`
--

DROP TABLE IF EXISTS `Group_Members`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Group_Members` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `GroupID` int(11) NOT NULL DEFAULT 0,
  `MemberID` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `GroupID` (`GroupID`),
  KEY `MemberID` (`MemberID`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `Group_Members`
--

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

--
-- Table structure for table `Group_Roles`
--

DROP TABLE IF EXISTS `Group_Roles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Group_Roles` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `GroupID` int(11) NOT NULL DEFAULT 0,
  `PermissionRoleID` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `GroupID` (`GroupID`),
  KEY `PermissionRoleID` (`PermissionRoleID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `Group_Roles`
--

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

--
-- Table structure for table `LoginAttempt`
--

DROP TABLE IF EXISTS `LoginAttempt`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `LoginAttempt` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `ClassName` enum('LoginAttempt') CHARACTER SET utf8 DEFAULT 'LoginAttempt',
  `Created` datetime DEFAULT NULL,
  `LastEdited` datetime DEFAULT NULL,
  `Email` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `Status` enum('Success','Failure') CHARACTER SET utf8 DEFAULT 'Success',
  `IP` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `MemberID` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `MemberID` (`MemberID`),
  KEY `ClassName` (`ClassName`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `LoginAttempt`
--

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

--
-- Table structure for table `Member`
--

DROP TABLE IF EXISTS `Member`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Member` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `ClassName` enum('Member') CHARACTER SET utf8 DEFAULT 'Member',
  `Created` datetime DEFAULT NULL,
  `LastEdited` datetime DEFAULT NULL,
  `FirstName` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
  `Surname` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
  `Email` varchar(256) CHARACTER SET utf8 DEFAULT NULL,
  `TempIDHash` varchar(160) CHARACTER SET utf8 DEFAULT NULL,
  `TempIDExpired` datetime DEFAULT NULL,
  `Password` varchar(160) CHARACTER SET utf8 DEFAULT NULL,
  `RememberLoginToken` varchar(160) CHARACTER SET utf8 DEFAULT NULL,
  `NumVisit` int(11) NOT NULL DEFAULT 0,
  `LastVisited` datetime DEFAULT NULL,
  `AutoLoginHash` varchar(160) CHARACTER SET utf8 DEFAULT NULL,
  `AutoLoginExpired` datetime DEFAULT NULL,
  `PasswordEncryption` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
  `Salt` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
  `PasswordExpiry` date DEFAULT NULL,
  `LockedOutUntil` datetime DEFAULT NULL,
  `Locale` varchar(6) CHARACTER SET utf8 DEFAULT NULL,
  `FailedLoginCount` int(11) NOT NULL DEFAULT 0,
  `DateFormat` varchar(30) CHARACTER SET utf8 DEFAULT NULL,
  `TimeFormat` varchar(30) CHARACTER SET utf8 DEFAULT NULL,
  PRIMARY KEY (`ID`),
  KEY `Email` (`Email`(255)),
  KEY `ClassName` (`ClassName`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `Member`
--

LOCK TABLES `Member` WRITE;
/*!40000 ALTER TABLE `Member` DISABLE KEYS */;
INSERT INTO `Member` VALUES (1,'Member','2015-04-20 14:54:00','2016-10-13 13:10:27','Default Admin',NULL,'user','8cca4520b4a5fb29218236764ac72dff3e3d33c4','2016-10-16 13:10:27',NULL,NULL,119,'2016-10-13 13:15:34',NULL,NULL,NULL,NULL,NULL,NULL,'en_US',0,NULL,NULL);
/*!40000 ALTER TABLE `Member` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `MemberPassword`
--

DROP TABLE IF EXISTS `MemberPassword`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `MemberPassword` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `ClassName` enum('MemberPassword') CHARACTER SET utf8 DEFAULT 'MemberPassword',
  `Created` datetime DEFAULT NULL,
  `LastEdited` datetime DEFAULT NULL,
  `Password` varchar(160) CHARACTER SET utf8 DEFAULT NULL,
  `Salt` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
  `PasswordEncryption` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
  `MemberID` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `MemberID` (`MemberID`),
  KEY `ClassName` (`ClassName`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `MemberPassword`
--

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

--
-- Table structure for table `ObjectBuy`
--

DROP TABLE IF EXISTS `ObjectBuy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ObjectBuy` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `ClassName` enum('ObjectBuy') CHARACTER SET utf8 DEFAULT 'ObjectBuy',
  `Created` datetime DEFAULT NULL,
  `LastEdited` datetime DEFAULT NULL,
  `Title` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `RefID` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `AmountEachUSD` double DEFAULT NULL,
  `AmountBTC` double DEFAULT NULL,
  `TradeDate` datetime DEFAULT NULL,
  `ObjectBuyID` int(11) NOT NULL DEFAULT 0,
  `ObjectSourceID` int(11) NOT NULL DEFAULT 0,
  `ObjectTransferID` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `ObjectBuyID` (`ObjectBuyID`),
  KEY `ObjectSourceID` (`ObjectSourceID`),
  KEY `ObjectTransferID` (`ObjectTransferID`),
  KEY `ClassName` (`ClassName`)
) ENGINE=InnoDB AUTO_INCREMENT=58 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ObjectBuy`
--

LOCK TABLES `ObjectBuy` WRITE;
/*!40000 ALTER TABLE `ObjectBuy` DISABLE KEYS */;
INSERT INTO `ObjectBuy` VALUES (3,'ObjectBuy','2015-04-20 22:44:53','2016-09-29 13:26:45','(2015-04-10 13:44:53) BUY - Kraken - 6.93   @ $225','100',225,6.93,'2015-04-10 13:44:53',0,2,0),(4,'ObjectBuy','2015-04-21 11:39:34','2015-04-21 14:08:06','(2015-04-21 11:39:34) BUY - Kraken - 1   @ $224.54','OWRBT5-ES5IE-PFHQ26',224.54,1,'2015-04-21 11:39:34',0,2,1),(5,'ObjectBuy','2015-04-21 14:07:52','2015-04-21 14:07:52','(2015-04-21 14:07:52) BUY - Kraken - 1   @ $226','OS4FTA-HGFHW-OYLDU2',226,1,'2015-04-21 14:07:52',0,2,1),(6,'ObjectBuy','2015-04-21 15:45:33','2015-04-21 15:45:33','(2015-04-21 15:45:33) BUY - Kraken - 1   @ $226.01','AGBSFS7-S4U4AI-4SXWOD',226.01,1,'2015-04-21 15:45:33',0,2,1),(7,'ObjectBuy','2015-04-21 17:59:10','2015-05-11 12:19:48','(2015-04-21 17:59:10) BUY - Kraken - 1   @ $243.86','OBDUSW-ZHNES-P7WNHL',243.86,1,'2015-04-21 17:59:10',0,2,1),(8,'ObjectBuy','2015-04-22 10:58:07','2015-04-22 10:58:07','(2015-04-22 10:58:07) BUY - Kraken - 1   @ $234.51','OAB3RP-ALMG4-527J3I',234.51,1,'2015-04-22 10:58:07',0,2,1),(9,'ObjectBuy','2015-04-22 15:36:21','2015-04-22 15:36:21','(2015-04-22 15:36:21) BUY - Kraken - 1   @ $233.44','O6SRZU-SQMWJ-3OLPPF ',233.44,1,'2015-04-22 15:36:21',0,2,1),(10,'ObjectBuy','2015-04-22 16:51:57','2015-04-22 16:51:57','(2015-04-22 16:51:57) BUY - Kraken - 1   @ $233.44','T2SHWU-O7XMR-ZIIVGF',233.44,1,'2015-04-22 16:51:57',0,2,1),(11,'ObjectBuy','2015-04-23 10:41:32','2015-04-23 10:41:32','(2015-04-23 10:41:32) BUY - LocalBitcoins.com - 1.0049   @ $248.07','2088569',248.07,1.0049,'2015-04-23 10:41:32',0,1,0),(12,'ObjectBuy','2015-04-23 15:14:46','2015-04-25 15:58:18','(2015-04-23 15:14:46) BUY - Kraken - 1.37   @ $233.87','TX3GXR',233.87,1.37,'2015-04-23 15:14:46',0,2,1),(13,'ObjectBuy','2015-04-24 17:10:04','2015-04-25 15:58:30','(2015-04-24 17:10:04) BUY - Kraken - 1   @ $231.52','ODLEOF',231.52,1,'2015-04-24 17:10:04',0,2,1),(14,'ObjectBuy','2015-04-25 15:51:16','2015-04-25 15:51:16','(2015-04-25 15:51:16) BUY - LocalBitcoins.com - 1   @ $242','2100179',242,1,'2015-04-25 15:51:16',0,1,0),(15,'ObjectBuy','2015-05-08 12:20:09','2015-05-08 12:20:13','(2015-05-08 12:20:09) BUY - Kraken - 0.894   @ $240.66','AGBUFPS',240.66,0.894,'2015-05-08 12:20:09',0,2,2),(16,'ObjectBuy','2015-05-12 13:38:32','2015-05-12 13:38:32','(2015-05-12 13:38:32) BUY - Kraken - 1   @ $243.24','ONYA2U',243.24,1,'2015-05-12 13:38:32',0,2,2),(17,'ObjectBuy','2015-05-12 14:43:19','2015-05-12 14:43:19','(2015-05-12 14:43:19) BUY - Kraken - 1   @ $243.79','AGBBM2L',243.79,1,'2015-05-12 14:43:19',0,2,2),(18,'ObjectBuy','2015-05-12 16:36:06','2015-05-12 16:36:06','(2015-05-12 16:36:06) BUY - Kraken - 1   @ $243.89','AGBDFG6',243.89,1,'2015-05-12 16:36:06',0,2,2),(19,'ObjectBuy','2015-05-12 23:46:11','2015-05-12 23:46:11','(2015-05-12 23:46:11) BUY - Kraken - 1   @ $241.36','AGBYXMX',241.36,1,'2015-05-12 23:46:11',0,2,2),(20,'ObjectBuy','2015-05-13 18:52:53','2015-05-13 18:52:53','(2015-05-13 18:52:53) BUY - Kraken - 2   @ $247.92','AGBHGKM',247.92,2,'2015-05-13 18:52:53',0,2,2),(21,'ObjectBuy','2015-05-15 17:23:56','2015-05-16 13:59:40','(2015-05-15 17:23:56) BUY - Kraken - 2   @ $228','AGBB2RY',228,2,'2015-05-15 17:23:56',0,2,2),(22,'ObjectBuy','2015-05-17 05:39:50','2015-05-17 05:48:26','(2015-05-17 05:39:50) BUY - BitX - 1   @ $269.386','bb10db09f8b9d23f88a69aaf049435453a34e6cdf3d23bad0c01ae811851d9b4',269.386,1,'2015-05-17 05:39:50',0,5,3),(23,'ObjectBuy','2015-05-17 05:46:53','2015-05-17 05:46:53','(2015-05-17 05:46:53) BUY - Kraken - 2   @ $241.36','AGBQA6D-O3Q7KV-7AGOHS',241.36,2,'2015-05-17 05:46:53',0,2,2),(24,'ObjectBuy','2015-05-19 16:25:14','2015-05-19 16:25:14','(2015-05-19 16:25:14) BUY - Kraken - 1   @ $239.84','AGBCPVE-WWHZJU-HXODVF',239.84,1,'2015-05-19 16:25:14',0,2,2),(25,'ObjectBuy','2015-05-20 09:54:17','2015-05-20 09:54:17','(2015-05-20 09:54:17) BUY - Kraken - 0.818   @ $238.52','AGB2PPH-5ZW6DN-EOSLAZ',238.52,0.818,'2015-05-20 09:54:17',0,2,2),(26,'ObjectBuy','2015-05-20 11:12:11','2015-06-13 01:17:35','(2015-05-20 11:12:11) BUY - Kraken - 1.21868   @ $239','AGB3IJM-GKO7PW-YCUQGR',239,1.21868,'2015-05-20 11:12:11',0,2,2),(27,'ObjectBuy','2015-05-20 16:39:00','2015-05-20 16:39:12','(2015-05-20 16:39:00) BUY - Kraken - 1   @ $240.356','AGBJQ3D-H67YPQ-YBB6RY',240.356,1,'2015-05-20 16:39:00',0,2,2),(28,'ObjectBuy','2015-05-22 14:27:02','2015-05-22 14:27:02','(2015-05-22 14:27:02) BUY - Kraken - 1   @ $240.58','AGB66ZN-6AWH6X-27TDHI',240.58,1,'2015-05-22 14:27:02',0,2,2),(29,'ObjectBuy','2015-05-22 14:45:24','2015-05-26 11:50:43','(2015-05-22 14:45:24) BUY - LocalBitcoins.com - 0.69   @ $241.65','2250036',241.65,0.69,'2015-05-22 14:45:24',0,1,0),(31,'ObjectBuy','2015-05-25 12:53:09','2015-05-25 12:53:09','(2015-05-25 12:53:09) BUY - Kraken - 2.044   @ $233','AGBUY45-YYPMQD-K6RZOG',233,2.044,'2015-05-25 12:53:09',0,2,2),(32,'ObjectBuy','2015-06-02 16:51:52','2015-06-13 00:56:02','(2015-06-02 16:51:52) BUY - Kraken - 2   @ $227.77','OBF7GO',227.77,2,'2015-06-02 16:51:52',0,2,2),(33,'ObjectBuy','2015-06-03 13:28:08','2015-06-13 00:56:17','(2015-06-03 13:28:08) BUY - Kraken - 1   @ $227.77','OBF7GO',227.77,1,'2015-06-03 13:28:08',0,2,2),(34,'ObjectBuy','2015-06-03 22:48:20','2015-06-03 22:52:56','(2015-06-03 22:48:20) BUY - Kraken - 2   @ $227.68','AGBGETA',227.68,2,'2015-06-03 22:48:20',0,2,4),(35,'ObjectBuy','2015-06-04 12:00:53','2015-06-04 12:00:53','(2015-06-04 12:00:53) BUY - Kraken - 3   @ $223.02','O5JM7A',223.02,3,'2015-06-04 12:00:53',0,2,4),(36,'ObjectBuy','2015-06-05 13:06:30','2015-06-05 13:06:30','(2015-06-05 13:06:30) BUY - Kraken - 6   @ $226.56','AGB3EDN-WR2AVK-YZVE4T',226.56,6,'2015-06-05 13:06:30',0,2,4),(37,'ObjectBuy','2015-06-05 13:07:13','2015-06-05 13:07:13','(2015-06-05 13:07:13) BUY - Kraken - 3   @ $225.37','AGB3PH3-C5RWFV-OMNOX3',225.37,3,'2015-06-05 13:07:13',0,2,4),(38,'ObjectBuy','2015-06-05 18:12:17','2015-06-11 11:55:23','(2015-06-05 18:12:17) BUY - Kraken - 4.20   @ $224.35',' AGB2B7B-RY7DBK-HXM7ZJ',224.35,4.2,'2015-06-05 18:12:17',0,2,4),(39,'ObjectBuy','2015-06-10 12:23:15','2015-06-10 12:23:15','(2015-06-10 12:23:15) BUY - Kraken - 1   @ $226','AGBFJ5B-LNYNBN-KXTTAQ',226,1,'2015-06-10 12:23:15',0,2,4),(40,'ObjectBuy','2015-06-10 15:13:01','2015-06-11 11:54:50','(2015-06-10 15:13:01) BUY - Kraken - 4.3   @ $224.35',' AGB2B7B-RY7DBK-HXM7ZJ',224.35,4.3,'2015-06-10 15:13:01',0,2,4),(41,'ObjectBuy','2015-06-11 11:36:11','2015-06-11 11:36:11','(2015-06-11 11:36:11) BUY - Kraken - 1   @ $226.20','AGB2B35-IMW47S-CUFE6Z',226.2,1,'2015-06-11 11:36:11',0,2,4),(42,'ObjectBuy','2015-06-11 12:48:19','2015-06-11 12:48:19','(2015-06-11 12:48:19) BUY - Kraken - 4.51   @ $229','AGBXQG2-6C4K3V-VZ2LNG',229,4.51,'2015-06-11 12:48:19',0,2,4),(43,'ObjectBuy','2015-06-11 15:32:06','2015-06-11 15:32:06','(2015-06-11 15:32:06) BUY - Kraken - 1   @ $226','AGBUN36-U4GKRR-6HKKSH',226,1,'2015-06-11 15:32:06',0,2,4),(44,'ObjectBuy','2015-06-16 11:30:26','2015-06-16 11:30:26','(2015-06-16 11:30:26) BUY - Kraken - 2   @ $237.52','AGBMOWQ-KWIR5C-IFCT4D',237.52,2,'2015-06-16 11:30:26',0,2,5),(45,'ObjectBuy','2015-06-17 00:16:10','2015-06-17 00:16:10','(2015-06-17 00:16:10) BUY - Kraken - 8   @ $240',NULL,240,8,'2015-06-17 00:16:10',0,2,5),(47,'ObjectBuy','2015-07-06 10:53:58','2015-07-11 14:44:59','(2015-07-06 10:53:58) BUY - Kraken - 0.24   @ $273.68','OZNRLH-FAK4B-KJE7QR',273.68,0.24,'2015-07-06 10:53:58',0,2,5),(49,'ObjectBuy','2015-07-09 14:59:11','2015-07-13 11:10:28','(2015-07-09 14:59:11) BUY - Kraken - 2.906   @ $700','OMZIQI-WWJS2-P64O4E',700,2.906,'2015-07-09 14:59:11',0,2,5),(50,'ObjectBuy','2015-07-09 23:30:45','2015-07-09 23:30:45','(2015-07-09 23:30:45) BUY - Kraken - 2.382   @ $272','OKOFUI',272,2.382,'2015-07-09 23:30:45',0,2,5),(51,'ObjectBuy','2015-07-11 14:21:27','2015-07-11 14:21:27','(2015-07-11 14:21:27) BUY - BTC-e - 6   @ $8.2','LITECOIN',8.2,6,'2015-07-11 14:21:27',0,6,5),(52,'ObjectBuy','2015-07-11 16:31:36','2015-07-11 16:31:36','(2015-07-11 16:31:36) BUY - Kraken - 3.31775   @ $293.29','O5B6KZ-T4FCI-AOS2K6',293.29,3.31775,'2015-07-11 16:31:36',0,2,5),(53,'ObjectBuy','2015-07-29 11:13:09','2015-07-29 11:13:09','(2015-07-29 11:13:09) BUY - Kraken - 1   @ $296.62','AGBQYOO-JLXLZJ-FL6EKW',296.62,1,'2015-07-29 11:13:09',0,2,6),(54,'ObjectBuy','2015-08-11 12:02:19','2015-08-11 12:02:19','(2015-08-11 12:02:19) BUY - Kraken - 1   @ $272.77','OMYCZB-FAHTP-O46QI6',272.77,1,'2015-08-11 12:02:19',0,2,6),(55,'ObjectBuy','2015-08-11 12:03:01','2015-08-11 12:03:01','(2015-08-11 12:03:01) BUY - Kraken - 1   @ $264.98','OHWAKK-ETVEZ-HQ6GVY',264.98,1,'2015-08-11 12:03:01',0,2,6),(56,'ObjectBuy','2015-08-19 11:06:21','2015-08-19 11:06:21','(2015-08-19 11:06:21) BUY - Kraken - 1   @ $234.83','O7QX5H-Z6ISP-Q3L67O',234.83,1,'2015-08-19 11:06:21',0,2,6),(57,'ObjectBuy','2016-09-29 13:27:16','2016-09-29 13:27:21','(2016-09-29 13:27:16) BUY - Kraken - 2   @ $608.73',NULL,608.73,2,'2016-09-29 13:27:16',0,2,8);
/*!40000 ALTER TABLE `ObjectBuy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ObjectBuySell`
--

DROP TABLE IF EXISTS `ObjectBuySell`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ObjectBuySell` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `ClassName` enum('ObjectBuySell','ObjectBuy','ObjectSell') CHARACTER SET utf8 DEFAULT 'ObjectBuySell',
  `Created` datetime DEFAULT NULL,
  `LastEdited` datetime DEFAULT NULL,
  `Source` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `AmountEach_USD` double DEFAULT NULL,
  `Amount_BTC` double DEFAULT NULL,
  `AmountEachUSD` double DEFAULT NULL,
  `AmountBTC` double DEFAULT NULL,
  `Title` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `TradeDate` datetime DEFAULT NULL,
  `external_ref` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `ObjectBuyID` int(11) NOT NULL DEFAULT 0,
  `ObjectSourceID` int(11) NOT NULL DEFAULT 0,
  `ExternalRef` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `RefID` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `ObjectTransferID` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `ClassName` (`ClassName`),
  KEY `ObjectBuyID` (`ObjectBuyID`),
  KEY `ObjectSourceID` (`ObjectSourceID`),
  KEY `ObjectTransferID` (`ObjectTransferID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ObjectBuySell`
--

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

--
-- Table structure for table `ObjectSell`
--

DROP TABLE IF EXISTS `ObjectSell`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ObjectSell` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `ClassName` enum('ObjectSell') CHARACTER SET utf8 DEFAULT 'ObjectSell',
  `Created` datetime DEFAULT NULL,
  `LastEdited` datetime DEFAULT NULL,
  `Title` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `RefID` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `AmountEachUSD` double DEFAULT NULL,
  `AmountBTC` double DEFAULT NULL,
  `TradeDate` datetime DEFAULT NULL,
  `ObjectBuyID` int(11) NOT NULL DEFAULT 0,
  `ObjectSourceID` int(11) NOT NULL DEFAULT 0,
  `ObjectTransferID` int(11) NOT NULL DEFAULT 0,
  `LBTCTransactionDump` mediumtext CHARACTER SET utf8 DEFAULT NULL,
  PRIMARY KEY (`ID`),
  KEY `ObjectBuyID` (`ObjectBuyID`),
  KEY `ObjectSourceID` (`ObjectSourceID`),
  KEY `ObjectTransferID` (`ObjectTransferID`),
  KEY `ClassName` (`ClassName`)
) ENGINE=InnoDB AUTO_INCREMENT=335 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ObjectSell`
--

LOCK TABLES `ObjectSell` WRITE;
/*!40000 ALTER TABLE `ObjectSell` DISABLE KEYS */;
INSERT INTO `ObjectSell` VALUES (8,'ObjectSell','2015-04-21 00:45:54','2015-04-21 00:45:54','(2015-04-21 00:45:53) SELL - LocalBitcoins.com - 0.9 @ $277','2028762',277,0.9,'2015-04-21 00:45:53',3,1,0,NULL),(9,'ObjectSell','2015-04-21 00:47:35','2015-04-21 00:47:35','(2015-04-21 00:47:35) SELL - LocalBitcoins.com - 0.298 @ $279','2058203',279,0.298,'2015-04-21 00:47:35',3,1,0,NULL),(10,'ObjectSell','2015-04-21 00:48:22','2015-04-21 00:48:22','(2015-04-21 00:48:22) SELL - LocalBitcoins.com - 0.5858 @ $283.972','2053498',283.972,0.5858,'2015-04-21 00:48:22',3,1,0,NULL),(11,'ObjectSell','2015-04-21 00:48:53','2015-04-21 00:48:53','(2015-04-21 00:48:53) SELL - LocalBitcoins.com - 0.292799 @ $283.972','2053014',283.972,0.292799,'2015-04-21 00:48:53',3,1,0,NULL),(12,'ObjectSell','2015-04-21 00:49:23','2015-04-21 00:49:23','(2015-04-21 00:49:23) SELL - LocalBitcoins.com - 0.588628 @ $283.972','2052850',283.972,0.588628,'2015-04-21 00:49:23',3,1,0,NULL),(13,'ObjectSell','2015-04-21 00:50:00','2015-04-21 00:50:00','(2015-04-21 00:50:00) SELL - LocalBitcoins.com - 0.789214 @ $269.059','2052639',269.059,0.789214,'2015-04-21 00:50:00',3,1,0,NULL),(14,'ObjectSell','2015-04-21 00:50:45','2015-04-21 00:50:45','(2015-04-21 00:50:45) SELL - LocalBitcoins.com - 0.158368 @ $262.602','2050583',262.602,0.158368,'2015-04-21 00:50:45',3,1,0,NULL),(15,'ObjectSell','2015-04-21 00:51:49','2015-04-21 00:51:49','(2015-04-21 00:51:49) SELL - LocalBitcoins.com - 0.222604 @ $261.554','2048898',261.554,0.222604,'2015-04-21 00:51:49',3,1,0,NULL),(16,'ObjectSell','2015-04-21 00:52:31','2015-04-21 00:52:31','(2015-04-21 00:52:31) SELL - LocalBitcoins.com - 0.145945 @ $256.458','2044988',256.458,0.145945,'2015-04-21 00:52:31',3,1,0,NULL),(17,'ObjectSell','2015-04-21 00:53:04','2015-04-21 00:53:04','(2015-04-21 00:53:04) SELL - LocalBitcoins.com - 0.32421 @ $256.458','2044969',256.458,0.32421,'2015-04-21 00:53:04',3,1,0,NULL),(18,'ObjectSell','2015-04-21 00:53:54','2015-04-21 00:53:54','(2015-04-21 00:53:54) SELL - LocalBitcoins.com - 0.315221 @ $263.871','2042252',263.871,0.315221,'2015-04-21 00:53:54',3,1,0,NULL),(19,'ObjectSell','2015-04-21 00:55:32','2015-04-21 00:55:32','(2015-04-21 00:55:32) SELL - LocalBitcoins.com - 0.28 @ $263.871','2041440',263.871,0.28,'2015-04-21 00:55:32',3,1,0,NULL),(20,'ObjectSell','2015-04-21 00:57:14','2015-04-21 00:57:14','(2015-04-21 00:57:14) SELL - LocalBitcoins.com - 1.5 @ $288','2031099',288,1.5,'2015-04-21 00:57:14',3,1,0,NULL),(21,'ObjectSell','2015-04-21 13:18:54','2015-04-21 13:20:18','(2015-04-21 13:18:54) SELL - LocalBitcoins.com - 0.207 @ $278.221','2077096',278.221,0.207,'2015-04-21 13:18:54',4,1,0,NULL),(22,'ObjectSell','2015-04-21 15:10:28','2015-04-21 15:10:28','(2015-04-21 15:10:28) SELL - LocalBitcoins.com - 0.47380000 @ $279','2077293',279,0.4738,'2015-04-21 15:10:28',4,1,0,NULL),(23,'ObjectSell','2015-04-21 15:13:54','2015-04-21 15:13:54','(2015-04-21 15:13:54) SELL - LocalBitcoins.com - 0.069 @ $270.69','2077015',270.69,0.069,'2015-04-21 15:13:54',4,1,0,NULL),(26,'ObjectSell','2015-04-21 15:39:20','2015-04-21 15:39:20','(2015-04-21 15:39:20) SELL - LocalBitcoins.com - 0.1188 @ $276.953','2077691',276.953,0.1188,'2015-04-21 15:39:20',5,1,0,NULL),(27,'ObjectSell','2015-04-21 15:50:02','2015-04-21 15:50:02','(2015-04-21 15:50:02) SELL - LocalBitcoins.com - 0.164 @ $277.211','2077742',277.211,0.164,'2015-04-21 15:50:02',5,1,0,NULL),(28,'ObjectSell','2015-04-21 15:56:18','2015-04-21 15:56:18','(2015-04-21 15:56:18) SELL - LocalBitcoins.com - 0.2971 @ $277.411','2077707',277.411,0.2971,'2015-04-21 15:56:18',5,1,0,NULL),(29,'ObjectSell','2015-04-21 18:04:29','2015-04-21 18:11:43','(2015-04-21 18:04:29) SELL - LocalBitcoins.com - 0.14 @ $289.125','2078293',289.125,0.14,'2015-04-21 18:04:29',5,1,0,NULL),(30,'ObjectSell','2015-04-21 18:12:33','2015-04-21 18:13:11','(2015-04-21 18:12:33) SELL - LocalBitcoins.com - 0.716 @ $289.125','2078293',289.125,0.716,'2015-04-21 18:12:33',6,1,0,NULL),(31,'ObjectSell','2015-04-21 19:48:15','2015-04-21 19:57:00','(2015-04-21 19:48:15) SELL - LocalBitcoins.com - 0.257 @ $289','2078812',289,0.257,'2015-04-21 19:48:15',6,1,0,NULL),(32,'ObjectSell','2015-04-21 19:56:17','2015-07-21 11:44:01','(2015-04-21 19:56:17) SELL - LocalBitcoins.com - 0.0872 @ $289','2078959a',289,0.0872,'2015-04-21 19:56:17',7,1,0,NULL),(33,'ObjectSell','2015-04-21 20:50:31','2015-07-21 11:44:11','(2015-04-21 20:50:31) SELL - LocalBitcoins.com - 0.027 @ $289','2078959b',289,0.027,'2015-04-21 20:50:31',6,1,0,NULL),(34,'ObjectSell','2015-04-22 10:56:38','2015-04-22 10:56:38','(2015-04-22 10:56:38) SELL - LocalBitcoins.com - 0.1633 @ $303.505','2082763',303.505,0.1633,'2015-04-22 10:56:38',7,1,0,NULL),(35,'ObjectSell','2015-04-22 11:43:32','2015-04-22 11:43:32','(2015-04-22 11:43:32) SELL - LocalBitcoins.com - 0.231 @ $302.74','2082981',302.74,0.231,'2015-04-22 11:43:32',7,1,0,NULL),(36,'ObjectSell','2015-04-22 12:42:19','2015-04-22 12:42:19','(2015-04-22 12:42:19) SELL - LocalBitcoins.com - 0.27270000 @ $303.449','2083037',303.449,0.2727,'2015-04-22 12:42:19',7,1,0,NULL),(37,'ObjectSell','2015-04-22 13:57:30','2015-04-22 13:57:30','(2015-04-22 13:57:30) SELL - LocalBitcoins.com - 0.136 @ $302.568','2082760',302.568,0.136,'2015-04-22 13:57:30',7,1,0,NULL),(38,'ObjectSell','2015-04-22 15:16:18','2015-04-22 15:16:18','(2015-04-22 15:16:18) SELL - LocalBitcoins.com - 0.327 @ $301.215','2083380',301.215,0.327,'2015-04-22 15:16:18',8,1,0,NULL),(39,'ObjectSell','2015-04-22 15:38:03','2015-04-22 15:38:03','(2015-04-22 15:38:03) SELL - LocalBitcoins.com - 0.2095 @ $301.451','2083938',301.451,0.2095,'2015-04-22 15:38:03',8,1,0,NULL),(40,'ObjectSell','2015-04-22 15:53:48','2015-04-22 15:53:48','(2015-04-22 15:53:48) SELL - LocalBitcoins.com - 0.141 @ $301.488','2083919',301.488,0.141,'2015-04-22 15:53:48',8,1,0,NULL),(41,'ObjectSell','2015-04-22 16:37:16','2015-04-22 16:49:54','(2015-04-22 16:37:16) SELL - LocalBitcoins.com - 0.13 @ $301.475','2084254',301.475,0.13,'2015-04-22 16:37:16',8,1,0,NULL),(42,'ObjectSell','2015-04-22 16:48:25','2015-04-22 16:50:10','(2015-04-22 16:48:25) SELL - LocalBitcoins.com - 0.1 @ $301.475','2084327',301.475,0.1,'2015-04-22 16:48:25',7,1,0,NULL),(43,'ObjectSell','2015-04-22 16:58:15','2015-04-22 16:58:35','(2015-04-22 16:58:15) SELL - LocalBitcoins.com - 0.163 @ $301.269','233.44',301.269,0.163,'2015-04-22 16:58:15',8,1,0,NULL),(44,'ObjectSell','2015-04-22 17:11:24','2015-04-22 17:11:24','(2015-04-22 17:11:24) SELL - LocalBitcoins.com - 0.242 @ $303.342','2084487',303.342,0.242,'2015-04-22 17:11:24',9,1,0,NULL),(45,'ObjectSell','2015-04-22 17:12:07','2015-04-22 17:12:07','(2015-04-22 17:12:07) SELL - LocalBitcoins.com - 0.163 @ $303','2084268',303,0.163,'2015-04-22 17:12:07',9,1,0,NULL),(46,'ObjectSell','2015-04-22 22:37:37','2015-04-22 22:37:37','(2015-04-22 22:37:37) SELL - LocalBitcoins.com - 0.2686 @ $304.658','2086206',304.658,0.2686,'2015-04-22 22:37:37',9,1,0,NULL),(47,'ObjectSell','2015-04-22 22:38:45','2015-04-22 22:39:00','(2015-04-22 22:38:45) SELL - LocalBitcoins.com - 0.537 @ $304','2085804',304,0.537,'2015-04-22 22:38:45',10,1,0,NULL),(48,'ObjectSell','2015-04-23 10:54:21','2015-04-23 10:54:21','(2015-04-23 10:54:21) SELL - LocalBitcoins.com - 0.136 @ $298.522','2083353',298.522,0.136,'2015-04-23 10:54:21',10,1,0,NULL),(49,'ObjectSell','2015-04-23 10:55:07','2015-04-23 10:55:07','(2015-04-23 10:55:07) SELL - LocalBitcoins.com - 0.118 @ $274.4','2077693',274.4,0.118,'2015-04-23 10:55:07',10,1,0,NULL),(50,'ObjectSell','2015-04-23 11:03:29','2015-04-23 13:07:54','(2015-04-23 11:03:29) SELL - LocalBitcoins.com - 0.2686 @ $303.471','2085126',303.471,0.2686,'2015-04-23 11:03:29',9,1,0,NULL),(51,'ObjectSell','2015-04-23 11:22:13','2015-04-23 11:22:13','(2015-04-23 11:22:13) SELL - LocalBitcoins.com - 0.2094 @ $299.644','2088755',299.644,0.2094,'2015-04-23 11:22:13',10,1,0,NULL),(52,'ObjectSell','2015-04-23 12:06:15','2015-04-24 11:12:26','(2015-04-23 12:06:15) SELL - LocalBitcoins.com - 0.3245 @ $302.084','2088835',302.084,0.3245,'2015-04-23 12:06:15',11,1,0,NULL),(53,'ObjectSell','2015-04-23 12:59:49','2015-04-23 12:59:49','(2015-04-23 12:59:49) SELL - LocalBitcoins.com - 0.108 @ $301.440','2084335',301.44,0.108,'2015-04-23 12:59:49',11,1,0,NULL),(54,'ObjectSell','2015-04-23 15:12:31','2015-04-23 15:12:31','(2015-04-23 15:12:31) SELL - LocalBitcoins.com - 0.135 @ $302.93','2089460',302.93,0.135,'2015-04-23 15:12:31',11,1,0,NULL),(55,'ObjectSell','2015-04-24 11:10:27','2015-04-24 11:11:34','(2015-04-24 11:10:27) SELL - LocalBitcoins.com - 0.279 @ $302.462','2084335',302.462,0.279,'2015-04-24 11:10:27',11,1,0,NULL),(56,'ObjectSell','2015-04-24 11:10:27','2015-04-24 11:11:36','(2015-04-24 11:10:27) SELL - LocalBitcoins.com - 0.1109 @ $296.342','2094076',296.342,0.1109,'2015-04-24 11:10:27',11,1,0,NULL),(57,'ObjectSell','2015-04-24 11:10:28','2015-04-24 11:11:20','(2015-04-24 11:10:28) SELL - LocalBitcoins.com - 0.1666 @ $296.342','2094244',296.342,0.1666,'2015-04-24 11:10:28',12,1,0,NULL),(58,'ObjectSell','2015-04-24 17:11:01','2015-04-24 17:11:56','(2015-04-24 17:11:01) SELL - LocalBitcoins.com - 0.1099 @ $299.651','2095395',299.651,0.1099,'2015-04-24 17:11:01',12,1,0,NULL),(59,'ObjectSell','2015-04-25 15:52:59','2015-04-25 15:52:59','(2015-04-25 15:52:59) SELL - LocalBitcoins.com - 0.17 @ $288.179','2097489',288.179,0.17,'2015-04-25 15:52:59',12,1,0,NULL),(60,'ObjectSell','2015-04-25 15:55:08','2015-04-25 15:55:08','(2015-04-25 15:55:08) SELL - LocalBitcoins.com - 0.14 @ $282.977','2099822',282.977,0.14,'2015-04-25 15:55:08',12,1,0,NULL),(61,'ObjectSell','2015-04-25 15:56:06','2015-04-25 15:56:06','(2015-04-25 15:56:06) SELL - LocalBitcoins.com - 0.143 @ $282.977','2097765',282.977,0.143,'2015-04-25 15:56:06',12,1,0,NULL),(62,'ObjectSell','2015-04-25 15:57:11','2015-04-25 16:15:51','(2015-04-25 15:57:11) SELL - LocalBitcoins.com - 0.577 @ $286.197','2098461',286.197,0.577,'2015-04-25 15:57:11',13,1,0,NULL),(65,'ObjectSell','2015-04-25 16:18:21','2015-04-25 16:18:37','(2015-04-25 16:18:21) SELL - LocalBitcoins.com - 0.145 @ $282.977','2099826',282.977,0.145,'2015-04-25 16:18:21',12,1,0,NULL),(66,'ObjectSell','2015-04-25 16:21:03','2015-04-25 16:21:34','(2015-04-25 16:21:03) SELL - LocalBitcoins.com - 0.29 @ $283.268','2100553',283.268,0.29,'2015-04-25 16:21:03',13,1,0,NULL),(67,'ObjectSell','2015-04-25 16:22:30','2015-04-25 16:22:30','(2015-04-25 16:22:30) SELL - LocalBitcoins.com - 0.437 @ $282.848','2100272',282.848,0.437,'2015-04-25 16:22:30',12,1,0,NULL),(68,'ObjectSell','2015-04-25 16:26:00','2015-04-25 16:26:00','(2015-04-25 16:25:59) SELL - LocalBitcoins.com - 0.138 @ $297.881','2094022',297.881,0.138,'2015-04-25 16:25:59',13,1,0,NULL),(69,'ObjectSell','2015-04-25 16:29:46','2015-04-25 16:29:46','(2015-04-25 16:29:46) SELL - LocalBitcoins.com - 0.4377 @ $282.977','2099776',282.977,0.4377,'2015-04-25 16:29:46',14,1,0,NULL),(70,'ObjectSell','2015-04-25 16:35:29','2015-04-25 16:35:29','(2015-04-25 16:35:29) SELL - LocalBitcoins.com - 0.145 @ $283.366','2100486',283.366,0.145,'2015-04-25 16:35:29',14,1,0,NULL),(71,'ObjectSell','2015-04-25 16:36:35','2015-04-25 16:36:35','(2015-04-25 16:36:35) SELL - LocalBitcoins.com - 0.4645 @ $282.436','2101098',282.436,0.4645,'2015-04-25 16:36:35',14,1,0,NULL),(72,'ObjectSell','2015-05-08 16:10:53','2015-05-12 14:30:39','(2015-05-08 16:10:53) SELL - LocalBitcoins.com - 0.7355 @ $334.668','2172281',334.668,0.7355,'2015-05-08 16:10:53',15,1,0,NULL),(73,'ObjectSell','2015-05-08 16:18:43','2015-05-08 16:18:43','(2015-05-08 16:18:43) SELL - LocalBitcoins.com - 0.1499 @ $332','2171829',332,0.1499,'2015-05-08 16:18:43',15,1,0,NULL),(76,'ObjectSell','2015-05-12 14:29:13','2015-05-12 14:29:13','(2015-05-12 14:29:13) SELL - LocalBitcoins.com - 0.1774 @ $325.32730485','2191719',325.32730485,0.1774,'2015-05-12 14:29:13',16,1,0,'Contact #2191719: Selling 0.17740000 BTC for 700.00 ZAR\r\nSelling in advertisement #38527 to Topice at the exchange rate 3945.89 ZAR / BTC.'),(77,'ObjectSell','2015-05-12 14:31:33','2015-05-12 14:31:33','(2015-05-12 14:31:33) SELL - LocalBitcoins.com - 0.4668 @ $325.16237339','2192098',325.16237339,0.4668,'2015-05-12 14:31:33',16,1,0,'Contact #2192098: Selling 0.46680000 BTC for 1841.00 ZAR\r\nSelling in advertisement #38527 to SMBXulu at the exchange rate 3943.87 ZAR / BTC.'),(78,'ObjectSell','2015-05-12 16:18:23','2015-05-12 16:19:05','(2015-05-12 16:18:23) SELL - LocalBitcoins.com - 1.0099 @ $327.1078404','2192742',327.1078404,1.0099,'2015-05-12 16:18:23',17,1,0,'Contact #2192742: Selling 1.00990000 BTC for 4000.00 ZAR\r\nSelling in advertisement #38527 to successgaba at the exchange rate 3960.79 ZAR / BTC.'),(79,'ObjectSell','2015-05-12 16:50:25','2015-05-12 16:50:58','(2015-05-12 16:50:25) SELL - LocalBitcoins.com - 0.15 @ $328.32246285','2192909',328.32246285,0.15,'2015-05-12 16:50:25',16,1,0,'Contact #2192909: Selling 0.15000000 BTC for 594.48 ZAR\r\nSelling in advertisement #38527 to Bobzeen at the exchange rate 3963.20 ZAR / BTC.'),(80,'ObjectSell','2015-05-12 23:42:29','2015-05-12 23:42:29','(2015-05-12 23:42:29) SELL - LocalBitcoins.com - 1.0097 @ $328.29140334','2195602',328.29140334,1.0097,'2015-05-12 23:42:29',18,1,0,'Contact #2195602: Selling 1.00970000 BTC for 4000.00 ZAR\r\nSelling in advertisement #38527 to Makhenso at the exchange rate 3961.57 ZAR / BTC.'),(81,'ObjectSell','2015-05-12 23:47:02','2015-05-12 23:47:22','(2015-05-12 23:47:02) SELL - LocalBitcoins.com - 0.2524 @ $328.30910901','2193914',328.30910901,0.2524,'2015-05-12 23:47:02',16,1,0,'Contact #2193914: Selling 0.25240000 BTC for 1000.00 ZAR\r\nSelling in advertisement #38527 to 27724026620 at the exchange rate 3961.97 ZAR / BTC.'),(82,'ObjectSell','2015-05-13 08:45:48','2015-05-13 08:45:48','(2015-05-13 08:45:48) SELL - LocalBitcoins.com - 0.1412 @ $329.48544432','2197211',329.48544432,0.1412,'2015-05-13 08:45:48',19,1,0,'Contact #2197211: Selling 0.14120000 BTC for 560.00 ZAR\r\nSelling in advertisement #38527 to 0795153386 at the exchange rate 3966.01 ZAR / BTC.'),(83,'ObjectSell','2015-05-13 09:26:57','2015-05-13 09:26:57','(2015-05-13 09:26:57) SELL - LocalBitcoins.com - 0.1255 @ $331.10462256','2197412',331.10462256,0.1255,'2015-05-13 09:26:57',19,1,0,'Contact #2197412: Selling 0.12550000 BTC for 500.00 ZAR\r\nSelling in advertisement #38527 to bettymokoena at the exchange rate 3984.06 ZAR / BTC.'),(85,'ObjectSell','2015-05-13 14:57:20','2015-05-13 14:57:20','(2015-05-13 14:57:20) SELL - LocalBitcoins.com - 0.1262 @ $334.21789115','2198454',334.21789115,0.1262,'2015-05-13 14:57:20',19,1,0,'Contact #2198454: Selling 0.12620000 BTC for 500.00 ZAR\r\nSelling in advertisement #38527 to 0795939935 at the exchange rate 3961.97 ZAR / BTC.'),(86,'ObjectSell','2015-05-13 18:49:37','2015-05-13 18:49:37','(2015-05-13 18:49:37) SELL - LocalBitcoins.com - 0.5161 @ $325.74385375','2199612',325.74385375,0.5161,'2015-05-13 18:49:37',19,1,0,'Contact #2199612: Selling 0.51610000 BTC for 2000.00 ZAR\r\nSelling in advertisement #38527 to vuyani at the exchange rate 3875.22 ZAR / BTC.'),(87,'ObjectSell','2015-05-14 10:25:08','2015-05-14 10:25:50','(2015-05-14 10:25:08) SELL - LocalBitcoins.com - 0.1338 @ $313.68729976','2203378',313.68729976,0.1338,'2015-05-14 10:25:08',19,1,0,'Contact #2203378: Selling 0.13380000 BTC for 500.00 ZAR\r\nSelling in advertisement #38527 to sheilatt at the exchange rate 3736.92 ZAR / BTC.'),(88,'ObjectSell','2015-05-14 10:43:55','2015-05-19 23:50:08','(2015-05-14 10:43:55) SELL - LocalBitcoins.com - 0.1499 @ $514.64001015','2203480',514.64001015,0.1499,'2015-05-14 10:43:55',22,1,0,'Contact #2203480: Selling 0.14990000 BTC for 560.00 ZAR\r\nSelling in advertisement #38527 to mawande at the exchange rate 3735.82 ZAR / BTC.'),(89,'ObjectSell','2015-05-15 13:41:56','2015-05-19 13:15:51','(2015-05-15 13:41:56) SELL - LocalBitcoins.com - 0.1291 @ $326.98559872','2209548',326.98559872,0.1291,'2015-05-15 13:41:56',21,1,0,'Contact #2209548: Selling 0.12910000 BTC for 500.00 ZAR\r\nSelling in advertisement #38527 to sekiloro at the exchange rate 3872.97 ZAR / BTC.'),(90,'ObjectSell','2015-05-15 13:42:12','2015-05-15 13:42:12','(2015-05-15 13:42:12) SELL - LocalBitcoins.com - 0.1446 @ $326.50721312','2209525',326.50721312,0.1446,'2015-05-15 13:42:12',20,1,0,'Contact #2209525: Selling 0.14460000 BTC for 560.00 ZAR\r\nSelling in advertisement #38527 to maqache at the exchange rate 3872.75 ZAR / BTC.'),(91,'ObjectSell','2015-05-15 13:56:32','2015-05-15 13:56:32','(2015-05-15 13:56:32) SELL - LocalBitcoins.com - 0.3874 @ $326.49032073','2209782',326.49032073,0.3874,'2015-05-15 13:56:32',20,1,0,'Contact #2209782: Selling 0.38740000 BTC for 1500.00 ZAR\r\nSelling in advertisement #38527 to nokuxola at the exchange rate 3871.97 ZAR / BTC.'),(92,'ObjectSell','2015-05-15 14:26:44','2015-05-15 14:26:44','(2015-05-15 14:26:44) SELL - LocalBitcoins.com - 0.1469 @ $315.58318272','2203140',315.58318272,0.1469,'2015-05-15 14:26:44',20,1,0,'Contact #2203140: Selling 0.14690000 BTC for 550.00 ZAR\r\nSelling in advertisement #38527 to bettymokoena at the exchange rate 3744.04 ZAR / BTC.'),(94,'ObjectSell','2015-05-15 15:47:23','2015-05-15 15:47:23','(2015-05-15 15:47:23) SELL - LocalBitcoins.com - 0.472 @ $326.37291614','2210407',326.37291614,0.472,'2015-05-15 15:47:23',20,1,0,'Contact #2210407: Selling 0.47200000 BTC for 1830.00 ZAR\r\nSelling in advertisement #38527 to AthMoola at the exchange rate 3877.12 ZAR / BTC.'),(95,'ObjectSell','2015-05-15 16:36:54','2015-05-15 16:36:54','(2015-05-15 16:36:54) SELL - LocalBitcoins.com - 0.5142 @ $329.81383965','2210664',329.81383965,0.5142,'2015-05-15 16:36:54',20,1,0,'Contact #2210664: Selling 0.51420000 BTC for 2000.00 ZAR\r\nSelling in advertisement #38527 to TebogoT at the exchange rate 3889.54 ZAR / BTC.'),(96,'ObjectSell','2015-05-15 17:24:06','2015-05-15 17:24:06','(2015-05-15 17:24:06) SELL - LocalBitcoins.com - 0.1412 @ $330.47123605','2211039',330.47123605,0.1412,'2015-05-15 17:24:06',21,1,0,'Contact #2211039: Selling 0.14120000 BTC for 550.00 ZAR\r\nSelling in advertisement #38527 to lesedisan at the exchange rate 3895.18 ZAR / BTC.'),(97,'ObjectSell','2015-05-16 13:31:34','2015-05-16 13:31:34','(2015-05-16 13:31:34) SELL - LocalBitcoins.com - 0.5908 @ $344.31754224','2215510',344.31754224,0.5908,'2015-05-16 13:31:34',21,1,0,'Contact #2215510: Selling 0.59080000 BTC for 2400.00 ZAR\r\nSelling in advertisement #38527 to 27724026620 at the exchange rate 4062.29 ZAR / BTC.'),(98,'ObjectSell','2015-05-16 13:55:41','2015-05-16 13:55:41','(2015-05-16 13:55:41) SELL - LocalBitcoins.com - 0.2462 @ $344.23277672','2215486',344.23277672,0.2462,'2015-05-16 13:55:41',21,1,0,'Contact #2215486: Selling 0.24620000 BTC for 1000.00 ZAR\r\nSelling in advertisement #38527 to DM86937 at the exchange rate 4061.74 ZAR / BTC.'),(99,'ObjectSell','2015-05-16 20:21:57','2015-05-19 15:33:46','(2015-05-16 20:21:57) SELL - LocalBitcoins.com - 0.2116 @ $340.44835136','2217595',340.44835136,0.2116,'2015-05-16 20:21:57',21,1,0,'Contact #2217595: Selling 0.21160000 BTC for 860.00 ZAR\r\nSelling in advertisement #38527 to 10335 at the exchange rate 4064.27 ZAR / BTC.'),(100,'ObjectSell','2015-05-16 21:17:04','2015-05-16 21:17:04','(2015-05-16 21:17:04) SELL - LocalBitcoins.com - 0.1234 @ $343.38512152','2217859',343.38512152,0.1234,'2015-05-16 21:17:04',21,1,0,'Contact #2217859: Selling 0.12340000 BTC for 500.00 ZAR\r\nSelling in advertisement #38527 to hbmarais at the exchange rate 4051.86 ZAR / BTC.'),(101,'ObjectSell','2015-05-18 14:20:41','2015-05-18 15:50:02','(2015-05-18 14:20:41) SELL - LocalBitcoins.com - 0.1379 @ $317.3414088','2224970',317.3414088,0.1379,'2015-05-18 14:20:41',21,1,0,'Contact #2224970: Selling 0.13790000 BTC for 520.00 ZAR\r\nSelling in advertisement #38527 to maqache at the exchange rate 3770.85 ZAR / BTC.'),(102,'ObjectSell','2015-05-19 12:35:42','2015-05-19 12:35:42','(2015-05-19 12:35:42) SELL - LocalBitcoins.com - 0.4242 @ $317.99572173','2230795',317.99572173,0.4242,'2015-05-19 12:35:42',21,1,0,'Contact #2230795: Selling 0.42420000 BTC for 1600.00 ZAR\r\nSelling in advertisement #38527 to Panito at the exchange rate 3771.81 ZAR / BTC.'),(103,'ObjectSell','2015-05-19 15:29:28','2015-05-19 16:21:28','(2015-05-19 15:29:28) SELL - LocalBitcoins.com - 0.8198 @ $297.09084555','2231438',297.09084555,0.8198,'2015-05-19 15:29:28',23,1,0,'Contact #2231438: Selling 0.81980000 BTC for 2900.00 ZAR\r\nSelling in advertisement #38527 to lesedi8443 at the exchange rate 3537.45 ZAR / BTC.'),(104,'ObjectSell','2015-05-19 15:29:49','2015-05-19 16:22:24','(2015-05-19 15:29:49) SELL - LocalBitcoins.com - 0.2827 @ $297.09084555','2231257',297.09084555,0.2827,'2015-05-19 15:29:49',20,1,0,'Contact #2231257: Selling 0.28270000 BTC for 1000.00 ZAR\r\nSelling in advertisement #38527 to Ximba at the exchange rate 3537.32 ZAR / BTC.'),(105,'ObjectSell','2015-05-19 15:46:08','2015-05-19 16:16:10','(2015-05-19 15:46:08) SELL - LocalBitcoins.com - 0.2403 @ $296.99230473','2231267',296.99230473,0.2403,'2015-05-19 15:46:08',23,1,0,'Contact #2231267: Selling 0.24030000 BTC for 850.00 ZAR\r\nSelling in advertisement #38527 to dodori at the exchange rate 3537.25 ZAR / BTC.'),(106,'ObjectSell','2015-05-19 16:14:17','2015-05-19 22:56:37','(2015-05-19 16:14:17) SELL - LocalBitcoins.com - 0.1691 @ $297.91218404','2231802',297.91218404,0.1691,'2015-05-19 16:14:17',24,1,0,'Contact #2231802: Selling 0.16910000 BTC for 600.00 ZAR\r\nSelling in advertisement #38527 to bulelwakambule at the exchange rate 3548.20 ZAR / BTC.'),(107,'ObjectSell','2015-05-19 17:41:17','2015-05-19 17:42:14','(2015-05-19 17:41:17) SELL - LocalBitcoins.com - 0.2857 @ $293.85342','2232238',293.85342,0.2857,'2015-05-19 17:41:17',23,1,0,'Contact #2232238: Selling 0.28570000 BTC for 1000.00 ZAR\r\nSelling in advertisement #38527 to DM86937 at the exchange rate 3500.18 ZAR / BTC.'),(108,'ObjectSell','2015-05-19 20:30:46','2015-05-19 20:32:43','(2015-05-19 20:30:46) SELL - LocalBitcoins.com - 0.7056 @ $294.245','2233180',294.245,0.7056,'2015-05-19 20:30:46',24,1,0,'Contact #2233180: Selling 0.70560000 BTC for 2470.00 ZAR\r\nSelling in advertisement #38527 to 0717814713 at the exchange rate 3500.57 ZAR / BTC.'),(109,'ObjectSell','2015-05-19 20:46:09','2015-05-19 22:49:04','(2015-05-19 20:46:09) SELL - LocalBitcoins.com - 0.6285 @ $293.983025','2233603',293.983025,0.6285,'2015-05-19 20:46:09',23,1,0,'Contact #2233603: Selling 0.62850000 BTC for 2200.00 ZAR\r\nSelling in advertisement #38527 to newsuccess at the exchange rate 3500.40 ZAR / BTC.'),(110,'ObjectSell','2015-05-19 22:48:06','2015-05-19 22:58:16','(2015-05-19 22:48:06) SELL - LocalBitcoins.com - 0.1428 @ $293.96577123','2233674',293.96577123,0.1428,'2015-05-19 22:48:06',24,1,0,'Contact #2233674: Selling 0.14280000 BTC for 500.00 ZAR\r\nSelling in advertisement #38527 to motsepeselinagmail.com at the exchange rate 3501.40 ZAR / BTC.'),(111,'ObjectSell','2015-05-19 23:06:50','2015-05-19 23:06:50','(2015-05-19 23:06:50) SELL - LocalBitcoins.com - 0.1428 @ $294.00648786','2234558',294.00648786,0.1428,'2015-05-19 23:06:50',22,1,0,'Contact #2234558: Selling 0.14280000 BTC for 500.00 ZAR\r\nSelling in advertisement #38527 to TKMoabi at the exchange rate 3501.40 ZAR / BTC.'),(112,'ObjectSell','2015-05-19 23:31:13','2015-05-20 12:14:06','(2015-05-19 23:31:13) SELL - LocalBitcoins.com - 0.1414 @ $295.87854816','2231256',295.87854816,0.1414,'2015-05-19 23:31:13',25,1,0,'Contact #2231256: Selling 0.14140000 BTC for 500.00 ZAR\r\nSelling in advertisement #38527 to lerato at the exchange rate 3536.07 ZAR / BTC.'),(113,'ObjectSell','2015-05-20 09:41:27','2015-05-20 12:13:48','(2015-05-20 09:41:27) SELL - LocalBitcoins.com - 0.2147 @ $311.77699956','2236273',311.77699956,0.2147,'2015-05-20 09:41:27',25,1,0,'Contact #2236273: Selling 0.21470000 BTC for 800.00 ZAR\r\nSelling in advertisement #38527 to dodori at the exchange rate 3726.13 ZAR / BTC.'),(114,'ObjectSell','2015-05-20 12:12:36','2015-05-20 12:12:36','(2015-05-20 12:12:36) SELL - LocalBitcoins.com - 0.7062 @ $296.2132524','2237039',296.2132524,0.7062,'2015-05-20 12:12:36',22,1,0,'Contact #2237039: Selling 0.70620000 BTC for 2500.00 ZAR\r\nSelling in advertisement #38527 to 0737348855 at the exchange rate 3540.07 ZAR / BTC.'),(115,'ObjectSell','2015-05-20 16:48:37','2015-05-20 16:48:37','(2015-05-20 16:48:37) SELL - LocalBitcoins.com - 0.1409 @ $298.9186452','2238486',298.9186452,0.1409,'2015-05-20 16:48:37',25,1,0,'Contact #2238486: Selling 0.14090000 BTC for 500.00 ZAR\r\nSelling in advertisement #38527 to brown70 at the exchange rate 3548.62 ZAR / BTC.'),(116,'ObjectSell','2015-05-20 20:28:17','2015-05-22 14:17:22','(2015-05-20 20:28:17) SELL - LocalBitcoins.com - 0.1415 @ $299.67852844','2239776',299.67852844,0.1415,'2015-05-20 20:28:17',26,1,0,'Contact #2239776: Selling 0.14150000 BTC for 500.00 ZAR\r\nSelling in advertisement #38527 to Moithumi at the exchange rate 3533.57 ZAR / BTC.'),(117,'ObjectSell','2015-05-21 11:09:27','2015-05-21 11:12:08','(2015-05-21 11:09:27) SELL - LocalBitcoins.com - 0.8468 @ $300.17840776','2243130',300.17840776,0.8468,'2015-05-21 11:09:27',26,1,0,'Contact #2243130: Selling 0.84680000 BTC for 3000.00 ZAR\r\nSelling in advertisement #38527 to DM86937 at the exchange rate 3542.75 ZAR / BTC.'),(118,'ObjectSell','2015-05-22 12:03:27','2015-05-22 14:16:40','(2015-05-22 12:03:27) SELL - LocalBitcoins.com - 0.2826 @ $300.10264184','2249386',300.10264184,0.2826,'2015-05-22 12:03:27',25,1,0,'Contact #2249386: Selling 0.28260000 BTC for 1000.00 ZAR\r\nSelling in advertisement #38527 to Moithumi at the exchange rate 3538.57 ZAR / BTC.'),(119,'ObjectSell','2015-05-22 14:15:09','2015-05-22 14:15:09','(2015-05-22 14:15:09) SELL - LocalBitcoins.com - 1 @ $298.23654288','2249852',298.23654288,1,'2015-05-22 14:15:09',27,1,0,'Contact #2249852: Selling 1.00000000 BTC for 3516.78 ZAR\r\nSelling in advertisement #38527 to radebe at the exchange rate 3516.78 ZAR / BTC.'),(120,'ObjectSell','2015-05-25 12:38:40','2015-05-25 12:38:40','(2015-05-25 12:38:40) SELL - LocalBitcoins.com - 0.1392 @ $300.66311835','2253406',300.66311835,0.1392,'2015-05-25 12:38:40',28,1,0,'Contact #2253406: Selling 0.13920000 BTC for 500.00 ZAR\r\nSelling in advertisement #38527 to bzen.kiingi at the exchange rate 3591.95 ZAR / BTC.'),(121,'ObjectSell','2015-05-25 12:39:32','2015-05-25 12:39:32','(2015-05-25 12:39:32) SELL - LocalBitcoins.com - 0.1381 @ $303.091197','2254590',303.091197,0.1381,'2015-05-25 12:39:32',28,1,0,'Contact #2254590: Selling 0.13810000 BTC for 500.00 ZAR\r\nSelling in advertisement #38527 to bzen.kiingi at the exchange rate 3620.56 ZAR / BTC.'),(122,'ObjectSell','2015-05-25 12:39:51','2015-05-25 12:39:51','(2015-05-25 12:39:51) SELL - LocalBitcoins.com - 0.1519 @ $303.091197','2254756',303.091197,0.1519,'2015-05-25 12:39:51',28,1,0,'Contact #2254756: Selling 0.15190000 BTC for 550.00 ZAR\r\nSelling in advertisement #38527 to celumusa at the exchange rate 3620.80 ZAR / BTC.'),(123,'ObjectSell','2015-05-26 10:49:32','2015-05-26 11:28:20','(2015-05-26 10:49:32) SELL - LocalBitcoins.com - 2.062 @ $279.1136798','2267970',279.1136798,2.062,'2015-05-26 10:49:32',31,1,0,'Contact #2267970: Selling 2.0620000 BTC for 6000.00 ZAR\r\nSelling in advertisement #38527 to Lebitso at the exchange rate 3340.39 ZAR / BTC.'),(124,'ObjectSell','2015-05-26 10:50:04','2015-05-26 10:50:37','(2015-05-26 10:50:04) SELL - LocalBitcoins.com - 0.3592 @ $278.6572688','2267959',278.6572688,0.3592,'2015-05-26 10:50:04',28,1,0,'Contact #2267959: Selling 0.35920000 BTC for 1200.00 ZAR\r\nSelling in advertisement #38527 to matt2080 at the exchange rate 3340.76 ZAR / BTC.'),(125,'ObjectSell','2015-05-26 11:22:13','2015-05-26 11:28:01','(2015-05-26 11:22:13) SELL - LocalBitcoins.com - 0.7017 @ $278.02730919','2268052',278.02730919,0.7017,'2015-05-26 11:22:13',29,1,0,'Contact #2268052: Selling 0.70170000 BTC for 3000.00 ZAR\r\nSelling in advertisement #38527 to Lebitso at the exchange rate 3327.05 ZAR / BTC.'),(126,'ObjectSell','2015-06-02 21:33:56','2015-06-02 21:33:56','(2015-06-02 21:33:56) SELL - LocalBitcoins.com - 1 @ $272.90144046','2313397',272.90144046,1,'2015-06-02 21:33:56',32,1,0,'Contact #2313397: Selling 1.00000000 BTC for 3333.25 ZAR\r\nSelling in advertisement #38527 to radebe at the exchange rate 3333.25 ZAR / BTC.'),(127,'ObjectSell','2015-06-02 21:34:30','2015-06-02 21:34:30','(2015-06-02 21:34:30) SELL - LocalBitcoins.com - 0.355 @ $274.04774114','2312768',274.04774114,0.355,'2015-06-02 21:34:30',32,1,0,'Contact #2312768: Selling 0.35500000 BTC for 1188.30 ZAR\r\nSelling in advertisement #38527 to mpumei at the exchange rate 3347.32 ZAR / BTC.'),(128,'ObjectSell','2015-06-02 21:34:49','2015-06-02 21:34:49','(2015-06-02 21:34:49) SELL - LocalBitcoins.com - 0.349 @ $274.04774114','2312575',274.04774114,0.349,'2015-06-02 21:34:49',32,1,0,'Contact #2312575: Selling 0.34900000 BTC for 1168.21 ZAR\r\nSelling in advertisement #38527 to TKMoabi at the exchange rate 3347.31 ZAR / BTC.'),(129,'ObjectSell','2015-06-02 21:35:10','2015-06-02 21:35:10','(2015-06-02 21:35:10) SELL - LocalBitcoins.com - 0.1494 @ $273.96586252','2312080',273.96586252,0.1494,'2015-06-02 21:35:10',32,1,0,'Contact #2312080: Selling 0.14940000 BTC for 500.00 ZAR\r\nSelling in advertisement #38527 to drigo at the exchange rate 3346.72 ZAR / BTC.'),(131,'ObjectSell','2015-06-03 14:58:00','2015-06-03 14:58:36','(2015-06-03 14:58:00) SELL - LocalBitcoins.com - 0.1288 @ $276.666806','2317609',276.666806,0.1288,'2015-06-03 14:58:00',32,1,0,'Contact #2317609: Selling 0.12880000 BTC for 710.00 ZAR\r\nSelling in advertisement #38527 to Collenramuthivheli at the exchange rate 3400.38 ZAR / BTC.'),(132,'ObjectSell','2015-06-03 14:58:17','2015-06-03 14:58:17','(2015-06-03 14:58:17) SELL - LocalBitcoins.com - 0.0788 @ $276.666806','2317609',276.666806,0.0788,'2015-06-03 14:58:17',33,1,0,'Contact #2317609: Selling 0.07880000 BTC for 710.00 ZAR\r\nSelling in advertisement #38527 to Collenramuthivheli at the exchange rate 3400.38 ZAR / BTC.'),(133,'ObjectSell','2015-06-03 16:11:26','2015-06-03 16:11:26','(2015-06-03 16:11:26) SELL - LocalBitcoins.com - 0.1023 @ $278.82942604','2318294',278.82942604,0.1023,'2015-06-03 16:11:26',33,1,0,'Contact #2318294: Selling 0.10230000 BTC for 350.00 ZAR\r\nSelling in advertisement #38527 to Cliffie22 at the exchange rate 3421.31 ZAR / BTC.'),(134,'ObjectSell','2015-06-03 22:50:14','2015-06-03 22:50:14','(2015-06-03 22:50:14) SELL - LocalBitcoins.com - 0.1023 @ $278.01594645','2318987',278.01594645,0.1023,'2015-06-03 22:50:14',34,1,0,'Contact #2318987: Selling 0.10230000 BTC for 350.00 ZAR\r\nSelling in advertisement #38527 to fmwaraz1 at the exchange rate 3421.31 ZAR / BTC.'),(135,'ObjectSell','2015-06-03 22:50:40','2015-06-03 22:50:40','(2015-06-03 22:50:40) SELL - LocalBitcoins.com - 0.1403 @ $278.01594645','2319225',278.01594645,0.1403,'2015-06-03 22:50:40',33,1,0,'Contact #2319225: Selling 0.14030000 BTC for 480.00 ZAR\r\nSelling in advertisement #38527 to nyakalek at the exchange rate 3421.24 ZAR / BTC.'),(136,'ObjectSell','2015-06-03 22:50:58','2015-06-03 22:50:58','(2015-06-03 22:50:58) SELL - LocalBitcoins.com - 0.1462 @ $277.85341155','2319249',277.85341155,0.1462,'2015-06-03 22:50:58',33,1,0,'Contact #2319249: Selling 0.14620000 BTC for 500.00 ZAR\r\nSelling in advertisement #38527 to pmdoyi at the exchange rate 3419.97 ZAR / BTC.'),(137,'ObjectSell','2015-06-03 22:51:26','2015-06-03 22:51:26','(2015-06-03 22:51:26) SELL - LocalBitcoins.com - 0.5814 @ $279.47876055','2320572',279.47876055,0.5814,'2015-06-03 22:51:26',33,1,0,'Contact #2320572: Selling 0.58140000 BTC for 2000.00 ZAR\r\nSelling in advertisement #38527 to Mbuh at the exchange rate 3439.97 ZAR / BTC.'),(138,'ObjectSell','2015-06-03 22:51:51','2015-06-03 22:51:51','(2015-06-03 22:51:51) SELL - LocalBitcoins.com - 0.15 @ $279.560028','2320756',279.560028,0.15,'2015-06-03 22:51:51',34,1,0,'Contact #2320756: Selling 0.15000000 BTC for 516.02 ZAR\r\nSelling in advertisement #38527 to kmkamohelo at the exchange rate 3440.13 ZAR / BTC.'),(139,'ObjectSell','2015-06-03 22:52:22','2015-06-03 22:52:22','(2015-06-03 22:52:22) SELL - LocalBitcoins.com - 0.2105 @ $277.934679','2319663',277.934679,0.2105,'2015-06-03 22:52:22',34,1,0,'Contact #2319663: Selling 0.21050000 BTC for 720.00 ZAR\r\nSelling in advertisement #38527 to Tuksmila at the exchange rate 3420.43 ZAR / BTC.'),(140,'ObjectSell','2015-06-04 11:58:58','2015-06-04 11:58:58','(2015-06-04 11:58:58) SELL - LocalBitcoins.com - 1.0164 @ $277.98633951','2323292',277.98633951,1.0164,'2015-06-04 11:58:58',34,1,0,'Contact #2323292: Selling 1.01640000 BTC for 3500.00 ZAR\r\nSelling in advertisement #38527 to philens66 at the exchange rate 3443.53 ZAR / BTC.'),(141,'ObjectSell','2015-06-04 15:04:07','2015-06-04 15:04:07','(2015-06-04 15:04:07) SELL - LocalBitcoins.com - 0.2093 @ $279.2570328','2324448',279.2570328,0.2093,'2015-06-04 15:04:07',34,1,0,'Contact #2324448: Selling 0.20930000 BTC for 720.00 ZAR\r\nSelling in advertisement #38527 to bitsumB at the exchange rate 3440.04 ZAR / BTC.'),(142,'ObjectSell','2015-06-04 17:48:06','2015-06-04 17:48:06','(2015-06-04 17:48:06) SELL - LocalBitcoins.com - 0.1017 @ $278.1628698','2325158',278.1628698,0.1017,'2015-06-04 17:48:06',34,1,0,'Contact #2325158: Selling 0.10170000 BTC for 350.00 ZAR\r\nSelling in advertisement #38527 to Yammy at the exchange rate 3441.49 ZAR / BTC.'),(144,'ObjectSell','2015-06-04 17:49:38','2015-06-04 17:49:38','(2015-06-04 17:49:38) SELL - LocalBitcoins.com - 0.1017 @ $278.1628698','2324435',278.1628698,0.1017,'2015-06-04 17:49:38',34,1,0,'Contact #2324435: Selling 0.10170000 BTC for 350.00 ZAR\r\nSelling in advertisement #38527 to adrienne.gurnell at the exchange rate 3441.49 ZAR / BTC.'),(145,'ObjectSell','2015-06-05 10:50:11','2015-06-05 10:50:11','(2015-06-05 10:50:11) SELL - LocalBitcoins.com - 0.1464 @ $275.03061075','2329402',275.03061075,0.1464,'2015-06-05 10:50:11',34,1,0,'Contact #2329402: Selling 0.14640000 BTC for 500.00 ZAR\r\nSelling in advertisement #38527 to bzen.kiingi at the exchange rate 3415.30 ZAR / BTC.'),(146,'ObjectSell','2015-06-05 12:20:08','2015-06-05 18:29:57','(2015-06-05 12:20:08) SELL - LocalBitcoins.com - 0.3024 @ $262.66655982','2329952',262.66655982,0.3024,'2015-06-05 12:20:08',35,1,0,'Contact #2329952: Selling 0.30240000 BTC for 1000.00 ZAR\r\nSelling in advertisement #38527 to zolat at the exchange rate 3306.88 ZAR / BTC.'),(147,'ObjectSell','2015-06-05 12:50:02','2015-06-05 12:50:02','(2015-06-05 12:50:02) SELL - LocalBitcoins.com - 0.3024 @ $266.13534726','2330068',266.13534726,0.3024,'2015-06-05 12:50:02',35,1,0,'Contact #2330068: Selling 0.30240000 BTC for 1000.00 ZAR\r\nSelling in advertisement #38527 to Khumbuleni at the exchange rate 3306.88 ZAR / BTC.'),(148,'ObjectSell','2015-06-05 13:21:37','2015-06-05 13:21:37','(2015-06-05 13:21:36) SELL - LocalBitcoins.com - 1.028 @ $266.05737653','2330048',266.05737653,1.028,'2015-06-05 13:21:36',35,1,0,'Contact #2330048: Selling 1.02800000 BTC for 3400.00 ZAR\r\nSelling in advertisement #38527 to mabundamax at the exchange rate 3307.39 ZAR / BTC.'),(149,'ObjectSell','2015-06-05 13:57:55','2015-06-05 13:57:55','(2015-06-05 13:57:55) SELL - LocalBitcoins.com - 0.3014 @ $267.16819621','2330293',267.16819621,0.3014,'2015-06-05 13:57:55',35,1,0,'Contact #2330293: Selling 0.30140000 BTC for 1000.00 ZAR\r\nSelling in advertisement #38527 to zolat at the exchange rate 3317.85 ZAR / BTC.'),(150,'ObjectSell','2015-06-05 13:59:52','2015-06-05 13:59:52','(2015-06-05 13:59:52) SELL - LocalBitcoins.com - 0.4999 @ $267.24874134','2330296',267.24874134,0.4999,'2015-06-05 13:59:52',35,1,0,'Contact #2330296: Selling 0.49990000 BTC for 1659.00 ZAR\r\nSelling in advertisement #38527 to Thunderx888 at the exchange rate 3318.66 ZAR / BTC.'),(151,'ObjectSell','2015-06-05 14:10:34','2015-06-05 14:10:34','(2015-06-05 14:10:34) SELL - LocalBitcoins.com - 1.5068 @ $267.39194622','2330288',267.39194622,1.5068,'2015-06-05 14:10:34',36,1,0,'Contact #2330288: Selling 1.50680000 BTC for 5000.00 ZAR\r\nSelling in advertisement #38527 to mnikazi at the exchange rate 3318.29 ZAR / BTC.'),(152,'ObjectSell','2015-06-05 14:15:56','2015-06-05 14:15:56','(2015-06-05 14:15:56) SELL - LocalBitcoins.com - 1.2016 @ $268.19782912','2330361',268.19782912,1.2016,'2015-06-05 14:15:56',36,1,0,'Contact #2330361: Selling 1.20160000 BTC for 4000.00 ZAR\r\nSelling in advertisement #38527 to Teleo1 at the exchange rate 3328.89 ZAR / BTC.'),(153,'ObjectSell','2015-06-05 14:21:44','2015-06-05 14:21:44','(2015-06-05 14:21:44) SELL - LocalBitcoins.com - 1.8024 @ $268.34273024','2330362',268.34273024,1.8024,'2015-06-05 14:21:44',36,1,0,'Contact #2330362: Selling 1.80240000 BTC for 6000.00 ZAR\r\nSelling in advertisement #38527 to smangundhla at the exchange rate 3328.89 ZAR / BTC.'),(154,'ObjectSell','2015-06-05 14:23:35','2015-06-05 14:23:35','(2015-06-05 14:23:35) SELL - LocalBitcoins.com - 1.0003 @ $268.42336207','2330369',268.42336207,1.0003,'2015-06-05 14:23:35',36,1,0,'Contact #2330369: Selling 1.00030000 BTC for 3330.00 ZAR\r\nSelling in advertisement #38527 to Tumilets at the exchange rate 3329.00 ZAR / BTC.'),(155,'ObjectSell','2015-06-05 15:20:43','2015-06-05 15:33:13','(2015-06-05 15:20:43) SELL - LocalBitcoins.com - 0.4506 @ $263.81501952','2330354',263.81501952,0.4506,'2015-06-05 15:20:43',36,1,0,'Contact #2330354: Selling 0.45060000 BTC for 1500.00 ZAR\r\nSelling in advertisement #38527 to tmolepo18 at the exchange rate 3328.89 ZAR / BTC.'),(159,'ObjectSell','2015-06-05 15:30:15','2015-06-05 15:31:48','(2015-06-05 15:30:15) SELL - LocalBitcoins.com - 0.3004 @ $263.81501952','2330499',263.81501952,0.3004,'2015-06-05 15:30:15',35,1,0,'Contact #2330499: Selling 0.30040000 BTC for 1000.00 ZAR\r\nSelling in advertisement #38527 to TSHWANE63 at the exchange rate 3328.89 ZAR / BTC.'),(160,'ObjectSell','2015-06-05 15:30:36','2015-06-05 15:32:35','(2015-06-05 15:30:36) SELL - LocalBitcoins.com - 0.3004 @ $263.81501952','2330475',263.81501952,0.3004,'2015-06-05 15:30:36',35,1,0,'Contact #2330475: Selling 0.30040000 BTC for 1000.00 ZAR\r\nSelling in advertisement #38527 to 7601170323081 at the exchange rate 3328.89 ZAR / BTC.'),(161,'ObjectSell','2015-06-05 15:43:09','2015-06-05 18:31:59','(2015-06-05 15:43:09) SELL - LocalBitcoins.com - 0.3616 @ $263.8463646','2330289',263.8463646,0.3616,'2015-06-05 15:43:09',37,1,0,'Contact #2330289: Selling 0.36160000 BTC for 1200.00 ZAR\r\nSelling in advertisement #38527 to Eutine at the exchange rate 3318.58 ZAR / BTC.'),(162,'ObjectSell','2015-06-05 15:58:03','2015-06-05 15:58:03','(2015-06-05 15:58:03) SELL - LocalBitcoins.com - 0.8711 @ $264.60746253','2330680',264.60746253,0.8711,'2015-06-05 15:58:03',37,1,0,'Contact #2330680: Selling 0.87110000 BTC for 2900.00 ZAR\r\nSelling in advertisement #38527 to Ntutoo at the exchange rate 3329.12 ZAR / BTC.'),(163,'ObjectSell','2015-06-05 16:37:19','2015-06-05 16:37:19','(2015-06-05 16:37:19) SELL - LocalBitcoins.com - 1.1168 @ $264.8690304','2330477',264.8690304,1.1168,'2015-06-05 16:37:19',37,1,0,'Contact #2330477: Selling 1.11680000 BTC for 3717.76 ZAR\r\nSelling in advertisement #38527 to Tanita at the exchange rate 3328.94 ZAR / BTC.'),(164,'ObjectSell','2015-06-05 16:40:04','2015-06-05 16:40:04','(2015-06-05 16:40:04) SELL - LocalBitcoins.com - 0.3905 @ $265.40066336','2330367',265.40066336,0.3905,'2015-06-05 16:40:04',37,1,0,'Contact #2330367: Selling 0.39050000 BTC for 1300.00 ZAR\r\nSelling in advertisement #38527 to kibimaapola at the exchange rate 3329.07 ZAR / BTC.'),(165,'ObjectSell','2015-06-07 18:09:07','2015-06-07 18:09:07','(2015-06-07 18:09:07) SELL - LocalBitcoins.com - 0.3023 @ $262.85147152','2341615',262.85147152,0.3023,'2015-06-07 18:09:07',38,1,0,'Contact #2341615: Selling 0.30230000 BTC for 1000.00 ZAR\r\nSelling in advertisement #38527 to amoshm at the exchange rate 3307.97 ZAR / BTC.'),(166,'ObjectSell','2015-06-07 18:09:41','2015-06-07 18:09:41','(2015-06-07 18:09:41) SELL - LocalBitcoins.com - 0.2865 @ $277.3969264','2337003',277.3969264,0.2865,'2015-06-07 18:09:41',38,1,0,'Contact #2337003: Selling 0.28650000 BTC for 1000.00 ZAR\r\nSelling in advertisement #38527 to japhetgumede at the exchange rate 3490.40 ZAR / BTC.'),(167,'ObjectSell','2015-06-07 21:51:31','2015-06-07 21:51:31','(2015-06-07 21:51:31) SELL - LocalBitcoins.com - 0.4997 @ $262.05663792','2342777',262.05663792,0.4997,'2015-06-07 21:51:31',38,1,0,'Contact #2342777: Selling 0.49970000 BTC for 1648.00 ZAR\r\nSelling in advertisement #38527 to MAHLUMBA at the exchange rate 3297.98 ZAR / BTC.'),(168,'ObjectSell','2015-06-07 21:51:47','2015-06-07 21:51:47','(2015-06-07 21:51:47) SELL - LocalBitcoins.com - 0.4851 @ $262.13612128','2342722',262.13612128,0.4851,'2015-06-07 21:51:47',38,1,0,'Contact #2342722: Selling 0.48510000 BTC for 1600.00 ZAR\r\nSelling in advertisement #38527 to MAHLUMBA at the exchange rate 3298.29 ZAR / BTC.'),(169,'ObjectSell','2015-06-07 21:52:05','2015-06-07 21:52:05','(2015-06-07 21:52:05) SELL - LocalBitcoins.com - 0.4851 @ $262.13612128','2342599',262.13612128,0.4851,'2015-06-07 21:52:05',38,1,0,'Contact #2342599: Selling 0.48510000 BTC for 1600.00 ZAR\r\nSelling in advertisement #38527 to MAHLUMBA at the exchange rate 3298.29 ZAR / BTC.'),(170,'ObjectSell','2015-06-07 21:52:28','2015-06-10 15:16:11','(2015-06-07 21:52:28) SELL - LocalBitcoins.com - 0.3032 @ $301.06350362','2342228',301.06350362,0.3032,'2015-06-07 21:52:28',38,1,0,'Contact #2342228: Selling 0.30320000 BTC for 1000.00 ZAR\r\nSelling in advertisement #38527 to Mokhethi at the exchange rate 3298.15 ZAR / BTC.'),(171,'ObjectSell','2015-06-08 12:36:16','2015-06-10 15:16:12','(2015-06-08 12:36:16) SELL - LocalBitcoins.com - 0.4479 @ $305.62783812','2345101',305.62783812,0.4479,'2015-06-08 12:36:16',38,1,0,'Contact #2345101: Selling 0.44790000 BTC for 1500.00 ZAR\r\nSelling in advertisement #38527 to kibimaapola at the exchange rate 3348.96 ZAR / BTC.'),(172,'ObjectSell','2015-06-08 13:04:47','2015-06-10 15:16:13','(2015-06-08 13:04:47) SELL - LocalBitcoins.com - 0.4472 @ $306.17555826','2345322',306.17555826,0.4472,'2015-06-08 13:04:47',38,1,0,'Contact #2345322: Selling 0.44720000 BTC for 1500.00 ZAR\r\nSelling in advertisement #38527 to QUEENNY at the exchange rate 3354.20 ZAR / BTC.'),(173,'ObjectSell','2015-06-08 13:47:38','2015-06-10 15:16:55','(2015-06-08 13:47:38) SELL - LocalBitcoins.com - 0.4457 @ $307.17971185','2345510',307.17971185,0.4457,'2015-06-08 13:47:38',40,1,0,'Contact #2345510: Selling 0.44570000 BTC for 1500.00 ZAR\r\nSelling in advertisement #38527 to QUEENNY at the exchange rate 3365.49 ZAR / BTC.'),(174,'ObjectSell','2015-06-08 13:49:20','2015-06-10 15:14:57','(2015-06-08 13:49:20) SELL - LocalBitcoins.com - 0.8985 @ $304.71497122','2344894',304.71497122,0.8985,'2015-06-08 13:49:20',40,1,0,'Contact #2344894: Selling 0.89850000 BTC for 3000.00 ZAR\r\nSelling in advertisement #38527 to Shongi at the exchange rate 3338.90 ZAR / BTC.'),(175,'ObjectSell','2015-06-08 13:56:14','2015-06-10 15:15:00','(2015-06-08 13:56:14) SELL - LocalBitcoins.com - 0.2972 @ $307.08842516','2345489',307.08842516,0.2972,'2015-06-08 13:56:14',40,1,0,'Contact #2345489: Selling 0.29720000 BTC for 1000.00 ZAR\r\nSelling in advertisement #38527 to khumbu.khuluse at the exchange rate 3364.74 ZAR / BTC.'),(176,'ObjectSell','2015-06-08 15:35:52','2015-06-10 15:15:03','(2015-06-08 15:35:52) SELL - LocalBitcoins.com - 0.4888 @ $307.17971185','2345601',307.17971185,0.4888,'2015-06-08 15:35:52',40,1,0,'Contact #2345601: Selling 0.48880000 BTC for 1645.00 ZAR\r\nSelling in advertisement #38527 to mohapi at the exchange rate 3365.38 ZAR / BTC.'),(177,'ObjectSell','2015-06-08 15:37:05','2015-06-10 15:15:07','(2015-06-08 15:37:05) SELL - LocalBitcoins.com - 0.5943 @ $307.17971185','2345577',307.17971185,0.5943,'2015-06-08 15:37:05',40,1,0,'Contact #2345577: Selling 0.59430000 BTC for 2000.00 ZAR\r\nSelling in advertisement #38527 to 0768877876 at the exchange rate 3365.30 ZAR / BTC.'),(178,'ObjectSell','2015-06-08 17:19:28','2015-06-10 15:15:15','(2015-06-08 17:19:28) SELL - LocalBitcoins.com - 0.4421 @ $309.64445248','2346716',309.64445248,0.4421,'2015-06-08 17:19:28',40,1,0,'Contact #2346716: Selling 0.44210000 BTC for 1500.00 ZAR\r\nSelling in advertisement #38527 to dianamakololo at the exchange rate 3392.90 ZAR / BTC.'),(179,'ObjectSell','2015-06-08 21:06:16','2015-06-10 15:15:18','(2015-06-08 21:06:16) SELL - LocalBitcoins.com - 0.41 @ $311.65275966','2348601',311.65275966,0.41,'2015-06-08 21:06:16',40,1,0,'Contact #2348601: Selling 0.41000000 BTC for 1400.00 ZAR\r\nSelling in advertisement #38527 to angelisina at the exchange rate 3414.63 ZAR / BTC.'),(180,'ObjectSell','2015-06-08 23:46:25','2015-06-10 15:15:21','(2015-06-08 23:46:25) SELL - LocalBitcoins.com - 0.5862 @ $311.37889959','2349772',311.37889959,0.5862,'2015-06-08 23:46:25',40,1,0,'Contact #2349772: Selling 0.58620000 BTC for 2000.00 ZAR\r\nSelling in advertisement #38527 to amoshm at the exchange rate 3411.80 ZAR / BTC.'),(182,'ObjectSell','2015-06-08 23:50:15','2015-06-08 23:58:15','(2015-06-08 23:50:15) SELL - LocalBitcoins.com - 0.5883 @ $272.34705036','2348070',272.34705036,0.5883,'2015-06-08 23:50:15',38,1,0,'Contact #2348070: Selling 0.58830000 BTC for 2000.00 ZAR\r\nSelling in advertisement #38527 to abughazaleh at the exchange rate 3399.63 ZAR / BTC.'),(184,'ObjectSell','2015-06-09 10:57:50','2015-06-09 10:57:50','(2015-06-09 10:57:50) SELL - LocalBitcoins.com - 0.4097 @ $273.2277621','2351864',273.2277621,0.4097,'2015-06-09 10:57:50',38,1,0,'Contact #2351864: Selling 0.40970000 BTC for 1400.00 ZAR\r\nSelling in advertisement #38527 to 4riches at the exchange rate 3417.13 ZAR / BTC.'),(185,'ObjectSell','2015-06-10 13:52:51','2015-06-10 13:52:51','(2015-06-10 13:52:51) SELL - LocalBitcoins.com - 0.0814 @ $298.0499489','2359561',298.0499489,0.0814,'2015-06-10 13:52:51',39,1,0,'Contact #2359561: Selling 0.08140000 BTC for 300.00 ZAR\r\nSelling in advertisement #38527 to PearlM at the exchange rate 3685.50 ZAR / BTC.'),(186,'ObjectSell','2015-06-10 15:03:44','2015-06-10 15:03:44','(2015-06-10 15:03:44) SELL - LocalBitcoins.com - 0.0714 @ $306.43919853','2359900',306.43919853,0.0714,'2015-06-10 15:03:44',39,1,0,'Contact #2359900: Selling 0.07140000 BTC for 270.00 ZAR\r\nSelling in advertisement #38527 to vqnortjie at the exchange rate 3781.51 ZAR / BTC.'),(187,'ObjectSell','2015-06-10 18:44:08','2015-06-10 18:44:08','(2015-06-10 18:44:08) SELL - LocalBitcoins.com - 0.0698 @ $306.70840154','2360392',306.70840154,0.0698,'2015-06-10 18:44:08',39,1,0,'Contact #2360392: Selling 0.06980000 BTC for 263.82 ZAR\r\nSelling in advertisement #38527 to xilawuli at the exchange rate 3779.66 ZAR / BTC.'),(188,'ObjectSell','2015-06-10 18:44:19','2015-06-10 18:44:19','(2015-06-10 18:44:19) SELL - LocalBitcoins.com - 0.0714 @ $306.87072406','2360769',306.87072406,0.0714,'2015-06-10 18:44:19',39,1,0,'Contact #2360769: Selling 0.07140000 BTC for 270.00 ZAR\r\nSelling in advertisement #38527 to 0737182106 at the exchange rate 3781.51 ZAR / BTC.'),(189,'ObjectSell','2015-06-10 18:44:31','2015-06-10 18:44:31','(2015-06-10 18:44:31) SELL - LocalBitcoins.com - 0.0595 @ $306.87072406','2360908',306.87072406,0.0595,'2015-06-10 18:44:31',39,1,0,'Contact #2360908: Selling 0.05950000 BTC for 225.00 ZAR\r\nSelling in advertisement #38527 to Collenramuthivheli at the exchange rate 3781.51 ZAR / BTC.'),(190,'ObjectSell','2015-06-10 18:44:42','2015-06-10 18:44:42','(2015-06-10 18:44:42) SELL - LocalBitcoins.com - 0.2037 @ $306.7895628','2361436',306.7895628,0.2037,'2015-06-10 18:44:42',39,1,0,'Contact #2361436: Selling 0.20370000 BTC for 770.00 ZAR\r\nSelling in advertisement #38527 to angelisina at the exchange rate 3780.07 ZAR / BTC.'),(191,'ObjectSell','2015-06-10 23:01:22','2015-06-10 23:01:22','(2015-06-10 23:01:22) SELL - LocalBitcoins.com - 0.0261 @ $311.17879812','2362763',311.17879812,0.0261,'2015-06-10 23:01:22',39,1,0,'Contact #2362763: Selling 0.02610000 BTC for 100.00 ZAR\r\nSelling in advertisement #38527 to Luyanda at the exchange rate 3831.42 ZAR / BTC.'),(192,'ObjectSell','2015-06-11 11:36:38','2015-06-11 11:39:29','(2015-06-11 11:36:38) SELL - LocalBitcoins.com - 0.0698 @ $305.677548','2363505',305.677548,0.0698,'2015-06-11 11:36:38',39,1,0,'Contact #2363505: Selling 0.06980000 BTC for 265.27 ZAR\r\nSelling in advertisement #38527 to Liesyl at the exchange rate 3800.43 ZAR / BTC.'),(193,'ObjectSell','2015-06-11 11:36:59','2015-06-11 11:39:32','(2015-06-11 11:36:59) SELL - LocalBitcoins.com - 0.0698 @ $306.4819626','2364539',306.4819626,0.0698,'2015-06-11 11:36:59',39,1,0,'Contact #2364539: Selling 0.06980000 BTC for 266.00 ZAR\r\nSelling in advertisement #38527 to 0823528807 at the exchange rate 3810.89 ZAR / BTC.'),(194,'ObjectSell','2015-06-11 11:37:16','2015-06-11 11:43:40','(2015-06-11 11:37:16) SELL - LocalBitcoins.com - 0.1978 @ $306.60945624','2365159',306.60945624,0.1978,'2015-06-11 11:37:16',39,1,0,'Contact #2365159: Selling 0.19780000 BTC for 1900.00 ZAR\r\nSelling in advertisement #38527 to 4riches at the exchange rate 3816.79 ZAR / BTC.'),(195,'ObjectSell','2015-06-11 11:37:59','2015-06-11 11:41:32','(2015-06-11 11:37:59) SELL - LocalBitcoins.com - 0.0262 @ $306.60945624','2365218',306.60945624,0.0262,'2015-06-11 11:37:59',39,1,0,'Contact #2365218: Selling 0.02620000 BTC for 100.00 ZAR\r\nSelling in advertisement #38527 to Yolanda199 at the exchange rate 3816.79 ZAR / BTC.'),(196,'ObjectSell','2015-06-11 11:38:14','2015-06-11 11:38:14','(2015-06-11 11:38:14) SELL - LocalBitcoins.com - 0.0524 @ $306.96461136','2365103',306.96461136,0.0524,'2015-06-11 11:38:14',39,1,0,'Contact #2365103: Selling 0.05240000 BTC for 200.00 ZAR\r\nSelling in advertisement #38527 to ProST at the exchange rate 3816.79 ZAR / BTC.'),(197,'ObjectSell','2015-06-11 11:42:38','2015-06-11 11:42:38','(2015-06-11 11:42:38) SELL - LocalBitcoins.com - 0.3078 @ $306.60945624','2365159',306.60945624,0.3078,'2015-06-11 11:42:38',41,1,0,'Contact #2365159: Selling 0.30780000 BTC for 1900.00 ZAR\r\nSelling in advertisement #38527 to 4riches at the exchange rate 3816.79 ZAR / BTC.'),(198,'ObjectSell','2015-06-11 11:43:48','2015-06-11 11:43:48','(2015-06-11 11:43:48) SELL - LocalBitcoins.com - 0.524 @ $306.60945624','2365616',306.60945624,0.524,'2015-06-11 11:43:48',41,1,0,'Contact #2365616: Selling 0.52400000 BTC for 2000.00 ZAR\r\nSelling in advertisement #38527 to Lebitso at the exchange rate 3816.79 ZAR / BTC.'),(199,'ObjectSell','2015-06-11 15:23:50','2015-06-11 15:23:50','(2015-06-11 15:23:50) SELL - LocalBitcoins.com - 0.7765 @ $311.39917273','2365996',311.39917273,0.7765,'2015-06-11 15:23:50',42,1,0,'Contact #2365996: Selling 0.77650000 BTC for 3000.00 ZAR\r\nSelling in advertisement #38527 to bekezela at the exchange rate 3863.49 ZAR / BTC.'),(200,'ObjectSell','2015-06-11 15:24:51','2015-06-11 15:24:51','(2015-06-11 15:24:51) SELL - LocalBitcoins.com - 0.07 @ $311.39917273','2366109',311.39917273,0.07,'2015-06-11 15:24:51',42,1,0,'Contact #2366109: Selling 0.07000000 BTC for 270.45 ZAR\r\nSelling in advertisement #38527 to jvrense2 at the exchange rate 3863.57 ZAR / BTC.'),(201,'ObjectSell','2015-06-11 15:25:26','2015-06-11 15:25:26','(2015-06-11 15:25:26) SELL - LocalBitcoins.com - 0.0699 @ $311.31856202','2366150',311.31856202,0.0699,'2015-06-11 15:25:26',41,1,0,'Contact #2366150: Selling 0.06990000 BTC for 270.00 ZAR\r\nSelling in advertisement #38527 to 0822673777 at the exchange rate 3862.66 ZAR / BTC.'),(202,'ObjectSell','2015-06-11 15:25:51','2015-06-11 15:25:51','(2015-06-11 15:25:51) SELL - LocalBitcoins.com - 0.0712 @ $311.31856202','2366155',311.31856202,0.0712,'2015-06-11 15:25:51',42,1,0,'Contact #2366155: Selling 0.07120000 BTC for 275.00 ZAR\r\nSelling in advertisement #38527 to 0722743343 at the exchange rate 3862.36 ZAR / BTC.'),(203,'ObjectSell','2015-06-11 15:26:18','2015-06-11 15:26:18','(2015-06-11 15:26:18) SELL - LocalBitcoins.com - 0.0518 @ $311.23795131','2366233',311.23795131,0.0518,'2015-06-11 15:26:18',41,1,0,'Contact #2366233: Selling 0.05180000 BTC for 200.00 ZAR\r\nSelling in advertisement #38527 to 0832493404 at the exchange rate 3861.00 ZAR / BTC.'),(204,'ObjectSell','2015-06-11 15:26:34','2015-06-11 15:26:34','(2015-06-11 15:26:34) SELL - LocalBitcoins.com - 0.1398 @ $311.31856202','2366375',311.31856202,0.1398,'2015-06-11 15:26:34',42,1,0,'Contact #2366375: Selling 0.13980000 BTC for 540.00 ZAR\r\nSelling in advertisement #38527 to Collenramuthivheli at the exchange rate 3862.66 ZAR / BTC.'),(205,'ObjectSell','2015-06-11 15:26:57','2015-06-11 15:26:57','(2015-06-11 15:26:57) SELL - LocalBitcoins.com - 0.2099 @ $311.39917273','2366625',311.39917273,0.2099,'2015-06-11 15:26:57',42,1,0,'Contact #2366625: Selling 0.20990000 BTC for 811.04 ZAR\r\nSelling in advertisement #38527 to realgugsta at the exchange rate 3863.94 ZAR / BTC.'),(206,'ObjectSell','2015-06-11 15:27:35','2015-06-11 15:27:35','(2015-06-11 15:27:35) SELL - LocalBitcoins.com - 0.0724 @ $311.39917273','2366624',311.39917273,0.0724,'2015-06-11 15:27:35',41,1,0,'Contact #2366624: Selling 0.07240000 BTC for 279.72 ZAR\r\nSelling in advertisement #38527 to MCIVER12 at the exchange rate 3863.54 ZAR / BTC.'),(207,'ObjectSell','2015-06-11 15:28:47','2015-06-11 15:28:47','(2015-06-11 15:28:47) SELL - LocalBitcoins.com - 0.0777 @ $311.23795131','2366732',311.23795131,0.0777,'2015-06-11 15:28:47',42,1,0,'Contact #2366732: Selling 0.07770000 BTC for 300.00 ZAR\r\nSelling in advertisement #38527 to SKhumalo at the exchange rate 3861.00 ZAR / BTC.'),(208,'ObjectSell','2015-06-11 16:01:43','2015-06-11 16:01:43','(2015-06-11 16:01:43) SELL - LocalBitcoins.com - 0.0388 @ $311.40849965','2366878',311.40849965,0.0388,'2015-06-11 16:01:43',42,1,0,'Contact #2366878: Selling 0.03880000 BTC for 150.00 ZAR\r\nSelling in advertisement #38527 to Khumza12 at the exchange rate 3865.98 ZAR / BTC.'),(209,'ObjectSell','2015-06-11 16:05:37','2015-06-11 16:05:37','(2015-06-11 16:05:37) SELL - LocalBitcoins.com - 0.0725 @ $311.16678542','2366788',311.16678542,0.0725,'2015-06-11 16:05:37',42,1,0,'Contact #2366788: Selling 0.07250000 BTC for 280.00 ZAR\r\nSelling in advertisement #38527 to baloyirt at the exchange rate 3862.07 ZAR / BTC.'),(211,'ObjectSell','2015-06-11 16:10:21','2015-06-11 16:10:21','(2015-06-11 16:10:21) SELL - LocalBitcoins.com - 0.0725 @ $311.16678542','2366884',311.16678542,0.0725,'2015-06-11 16:10:21',42,1,0,'Contact #2366884: Selling 0.07250000 BTC for 280.00 ZAR\r\nSelling in advertisement #38527 to Tsakani.Nestar at the exchange rate 3862.07 ZAR / BTC.'),(212,'ObjectSell','2015-06-12 20:27:05','2015-06-12 20:27:05','(2015-06-12 20:27:05) SELL - LocalBitcoins.com - 0.1424 @ $312.08080496','2371383',312.08080496,0.1424,'2015-06-12 20:27:05',42,1,0,'Contact #2371383: Selling 0.14240000 BTC for 550.00 ZAR\r\nSelling in advertisement #38527 to lesedisan at the exchange rate 3862.36 ZAR / BTC.'),(213,'ObjectSell','2015-06-12 20:27:26','2015-06-12 20:27:26','(2015-06-12 20:27:25) SELL - LocalBitcoins.com - 0.0777 @ $311.99999688','2371502',311.99999688,0.0777,'2015-06-12 20:27:25',42,1,0,'Contact #2371502: Selling 0.07770000 BTC for 300.00 ZAR\r\nSelling in advertisement #38527 to rsetsetse at the exchange rate 3861.00 ZAR / BTC.'),(214,'ObjectSell','2015-06-12 20:28:16','2015-06-12 20:28:16','(2015-06-12 20:28:16) SELL - LocalBitcoins.com - 0.0698 @ $312.16161304','2371986',312.16161304,0.0698,'2015-06-12 20:28:16',42,1,0,'Contact #2371986: Selling 0.06980000 BTC for 269.65 ZAR\r\nSelling in advertisement #38527 to amandakhuzwayo at the exchange rate 3863.18 ZAR / BTC.'),(215,'ObjectSell','2015-06-12 20:28:44','2015-06-12 20:28:44','(2015-06-12 20:28:44) SELL - LocalBitcoins.com - 0.0388 @ $312.3232292','2372000',312.3232292,0.0388,'2015-06-12 20:28:44',42,1,0,'Contact #2372000: Selling 0.03880000 BTC for 150.00 ZAR\r\nSelling in advertisement #38527 to shereez at the exchange rate 3865.98 ZAR / BTC.'),(216,'ObjectSell','2015-06-12 20:29:54','2015-06-12 20:29:54','(2015-06-12 20:29:54) SELL - LocalBitcoins.com - 0.0699 @ $312.08080496','2372056',312.08080496,0.0699,'2015-06-12 20:29:54',42,1,0,'Contact #2372056: Selling 0.06990000 BTC for 270.00 ZAR\r\nSelling in advertisement #38527 to halalisani.malinga at the exchange rate 3862.66 ZAR / BTC.'),(217,'ObjectSell','2015-06-12 20:30:20','2015-06-12 20:30:20','(2015-06-12 20:30:20) SELL - LocalBitcoins.com - 0.0698 @ $311.82900874','2372230',311.82900874,0.0698,'2015-06-12 20:30:20',42,1,0,'Contact #2372230: Selling 0.06980000 BTC for 269.65 ZAR\r\nSelling in advertisement #38527 to daniebez at the exchange rate 3863.18 ZAR / BTC.'),(218,'ObjectSell','2015-06-12 20:44:59','2015-06-12 20:44:59','(2015-06-12 20:44:59) SELL - LocalBitcoins.com - 0.0161 @ $313.04123132','2372315',313.04123132,0.0161,'2015-06-12 20:44:59',42,1,0,'Contact #2372315: Selling 0.01610000 BTC for 62.43 ZAR\r\nSelling in advertisement #38527 to daniebez at the exchange rate 3877.64 ZAR / BTC.'),(219,'ObjectSell','2015-06-12 20:45:34','2015-06-12 20:45:34','(2015-06-12 20:45:34) SELL - LocalBitcoins.com - 0.5158 @ $313.04123132','2372330',313.04123132,0.5158,'2015-06-12 20:45:34',42,1,0,'Contact #2372330: Selling 0.51580000 BTC for 2000.00 ZAR\r\nSelling in advertisement #38527 to star1313 at the exchange rate 3877.47 ZAR / BTC.'),(220,'ObjectSell','2015-06-12 20:46:01','2015-06-12 20:46:01','(2015-06-12 20:46:01) SELL - LocalBitcoins.com - 0.0774 @ $312.879745','2372390',312.879745,0.0774,'2015-06-12 20:46:01',42,1,0,'Contact #2372390: Selling 0.07740000 BTC for 300.00 ZAR\r\nSelling in advertisement #38527 to mateteswa at the exchange rate 3875.97 ZAR / BTC.'),(221,'ObjectSell','2015-06-12 20:46:24','2015-06-12 20:46:24','(2015-06-12 20:46:24) SELL - LocalBitcoins.com - 0.0516 @ $312.879745','2372404',312.879745,0.0516,'2015-06-12 20:46:24',42,1,0,'Contact #2372404: Selling 0.05160000 BTC for 200.00 ZAR\r\nSelling in advertisement #38527 to frans777 at the exchange rate 3875.97 ZAR / BTC.'),(222,'ObjectSell','2015-06-12 20:46:47','2015-06-12 20:46:47','(2015-06-12 20:46:47) SELL - LocalBitcoins.com - 0.0129 @ $312.879745','2372424',312.879745,0.0129,'2015-06-12 20:46:47',42,1,0,'Contact #2372424: Selling 0.01290000 BTC for 50.00 ZAR\r\nSelling in advertisement #38527 to daniebez at the exchange rate 3875.97 ZAR / BTC.'),(223,'ObjectSell','2015-06-12 20:47:11','2015-06-12 20:47:11','(2015-06-12 20:47:11) SELL - LocalBitcoins.com - 0.0772 @ $313.76791976','2372477',313.76791976,0.0772,'2015-06-12 20:47:11',42,1,0,'Contact #2372477: Selling 0.07720000 BTC for 300.00 ZAR\r\nSelling in advertisement #38527 to mhlongalex at the exchange rate 3886.01 ZAR / BTC.'),(224,'ObjectSell','2015-06-12 20:47:42','2015-06-12 20:47:42','(2015-06-12 20:47:42) SELL - LocalBitcoins.com - 0.0695 @ $313.60643344','2372547',313.60643344,0.0695,'2015-06-12 20:47:42',42,1,0,'Contact #2372547: Selling 0.06950000 BTC for 270.00 ZAR\r\nSelling in advertisement #38527 to Tumelo1 at the exchange rate 3884.89 ZAR / BTC.'),(225,'ObjectSell','2015-06-12 20:48:09','2015-06-12 20:48:09','(2015-06-12 20:48:09) SELL - LocalBitcoins.com - 0.0515 @ $313.52569028','2372571',313.52569028,0.0515,'2015-06-12 20:48:09',42,1,0,'Contact #2372571: Selling 0.05150000 BTC for 200.00 ZAR\r\nSelling in advertisement #38527 to THABONAANE at the exchange rate 3883.50 ZAR / BTC.'),(226,'ObjectSell','2015-06-12 20:48:40','2015-06-12 20:48:40','(2015-06-12 20:48:40) SELL - LocalBitcoins.com - 0.0643 @ $313.92940608','2372574',313.92940608,0.0643,'2015-06-12 20:48:40',42,1,0,'Contact #2372574: Selling 0.06430000 BTC for 250.00 ZAR\r\nSelling in advertisement #38527 to merriam at the exchange rate 3888.02 ZAR / BTC.'),(227,'ObjectSell','2015-06-12 20:49:05','2015-06-12 20:49:05','(2015-06-12 20:49:05) SELL - LocalBitcoins.com - 0.072 @ $313.92940608','2372937',313.92940608,0.072,'2015-06-12 20:49:05',42,1,0,'Contact #2372937: Selling 0.07200000 BTC for 280.00 ZAR\r\nSelling in advertisement #38527 to jerrymmutlane at the exchange rate 3888.89 ZAR / BTC.'),(228,'ObjectSell','2015-06-12 20:49:28','2015-06-12 20:49:28','(2015-06-12 20:49:28) SELL - LocalBitcoins.com - 0.0386 @ $313.76791976','2373035',313.76791976,0.0386,'2015-06-12 20:49:28',42,1,0,'Contact #2373035: Selling 0.03860000 BTC for 150.00 ZAR\r\nSelling in advertisement #38527 to kelebone at the exchange rate 3886.01 ZAR / BTC.'),(229,'ObjectSell','2015-06-12 20:49:49','2015-06-12 20:49:49','(2015-06-12 20:49:49) SELL - LocalBitcoins.com - 0.0772 @ $313.76791976','2373328',313.76791976,0.0772,'2015-06-12 20:49:49',42,1,0,'Contact #2373328: Selling 0.07720000 BTC for 300.00 ZAR\r\nSelling in advertisement #38527 to Orapelengk at the exchange rate 3886.01 ZAR / BTC.'),(230,'ObjectSell','2015-06-12 20:50:08','2015-06-12 20:50:08','(2015-06-12 20:50:08) SELL - LocalBitcoins.com - 0.0772 @ $313.75905968','2373410',313.75905968,0.0772,'2015-06-12 20:50:08',42,1,0,'Contact #2373410: Selling 0.07720000 BTC for 300.00 ZAR\r\nSelling in advertisement #38527 to mateteswa at the exchange rate 3886.01 ZAR / BTC.'),(231,'ObjectSell','2015-06-12 20:50:25','2015-06-12 20:50:25','(2015-06-12 20:50:25) SELL - LocalBitcoins.com - 0.065 @ $313.83980056','2373497',313.83980056,0.065,'2015-06-12 20:50:25',42,1,0,'Contact #2373497: Selling 0.06500000 BTC for 252.66 ZAR\r\nSelling in advertisement #38527 to Killer890903 at the exchange rate 3887.08 ZAR / BTC.'),(232,'ObjectSell','2015-06-12 20:50:46','2015-06-12 20:50:46','(2015-06-12 20:50:46) SELL - LocalBitcoins.com - 0.0386 @ $313.75905968','2373788',313.75905968,0.0386,'2015-06-12 20:50:46',42,1,0,'Contact #2373788: Selling 0.03860000 BTC for 150.00 ZAR\r\nSelling in advertisement #38527 to Seka at the exchange rate 3886.01 ZAR / BTC.\r\n'),(233,'ObjectSell','2015-06-12 20:51:02','2015-06-12 20:51:02','(2015-06-12 20:51:02) SELL - LocalBitcoins.com - 0.0643 @ $313.92054144','2373796',313.92054144,0.0643,'2015-06-12 20:51:02',42,1,0,'Contact #2373796: Selling 0.06430000 BTC for 250.00 ZAR\r\nSelling in advertisement #38527 to freddy26011980 at the exchange rate 3888.02 ZAR / BTC.'),(234,'ObjectSell','2015-06-12 21:00:27','2015-06-12 21:00:27','(2015-06-12 21:00:27) SELL - LocalBitcoins.com - 0.1029 @ $313.76633626','2372733',313.76633626,0.1029,'2015-06-12 21:00:27',42,1,0,'Contact #2372733: Selling 0.10290000 BTC for 400.00 ZAR\r\nSelling in advertisement #38527 to thabs at the exchange rate 3887.27 ZAR / BTC.'),(235,'ObjectSell','2015-06-12 21:00:42','2015-06-12 21:00:42','(2015-06-12 21:00:42) SELL - LocalBitcoins.com - 0.07 @ $313.76633626','2372459',313.76633626,0.07,'2015-06-12 21:00:42',42,1,0,'Contact #2372459: Selling 0.07000000 BTC for 272.10 ZAR\r\nSelling in advertisement #38527 to Johannah at the exchange rate 3887.14 ZAR / BTC.'),(236,'ObjectSell','2015-06-12 21:00:59','2015-06-12 21:00:59','(2015-06-12 21:00:59) SELL - LocalBitcoins.com - 0.0709 @ $313.03983844','2372428',313.03983844,0.0709,'2015-06-12 21:00:59',42,1,0,'Contact #2372428: Selling 0.07090000 BTC for 275.00 ZAR\r\nSelling in advertisement #38527 to lelesi01 at the exchange rate 3878.70 ZAR / BTC.'),(237,'ObjectSell','2015-06-12 21:01:12','2015-06-12 21:01:12','(2015-06-12 21:01:12) SELL - LocalBitcoins.com - 0.0725 @ $311.74828676','2372275',311.74828676,0.0725,'2015-06-12 21:01:12',42,1,0,'Contact #2372275: Selling 0.07250000 BTC for 280.00 ZAR\r\nSelling in advertisement #38527 to Bafana at the exchange rate 3862.07 ZAR / BTC.'),(238,'ObjectSell','2015-06-12 21:01:27','2015-06-12 21:01:27','(2015-06-12 21:01:27) SELL - LocalBitcoins.com - 0.0699 @ $311.74828676','2372158',311.74828676,0.0699,'2015-06-12 21:01:27',42,1,0,'Contact #2372158: Selling 0.06990000 BTC for 270.00 ZAR\r\nSelling in advertisement #38527 to hlhehle at the exchange rate 3862.66 ZAR / BTC.'),(239,'ObjectSell','2015-06-12 22:40:23','2015-06-12 22:40:23','(2015-06-12 22:40:23) SELL - LocalBitcoins.com - 0.0699 @ $311.9812426','2368286',311.9812426,0.0699,'2015-06-12 22:40:23',42,1,0,'Contact #2368286: Selling 0.06990000 BTC for 270.00 ZAR\r\nSelling in advertisement #38527 to Maweni at the exchange rate 3862.66 ZAR / BTC.'),(240,'ObjectSell','2015-06-12 22:40:37','2015-06-12 22:40:37','(2015-06-12 22:40:37) SELL - LocalBitcoins.com - 0.0699 @ $311.9812426','2368141',311.9812426,0.0699,'2015-06-12 22:40:37',42,1,0,'Contact #2368141: Selling 0.06990000 BTC for 270.00 ZAR\r\nSelling in advertisement #38527 to lillyd at the exchange rate 3862.66 ZAR / BTC.'),(241,'ObjectSell','2015-06-12 22:41:14','2015-06-12 22:41:14','(2015-06-12 22:41:14) SELL - LocalBitcoins.com - 0.0569 @ $312.3043718','2367258',312.3043718,0.0569,'2015-06-12 22:41:14',42,1,0,'Contact #2367258: Selling 0.05690000 BTC for 220.00 ZAR\r\nSelling in advertisement #38527 to dilebork at the exchange rate 3866.43 ZAR / BTC.'),(242,'ObjectSell','2015-06-12 22:41:39','2015-06-12 22:41:39','(2015-06-12 22:41:39) SELL - LocalBitcoins.com - 0.0518 @ $311.9004603','2366822',311.9004603,0.0518,'2015-06-12 22:41:39',42,1,0,'Contact #2366822: Selling 0.05180000 BTC for 200.00 ZAR\r\nSelling in advertisement #38527 to shereez at the exchange rate 3861.00 ZAR / BTC.\r\n'),(243,'ObjectSell','2015-06-12 22:42:07','2015-06-12 22:49:41','(2015-06-12 22:42:07) SELL - LocalBitcoins.com - 0.073 @ $312.0620249','2366725',312.0620249,0.073,'2015-06-12 22:42:07',42,1,0,'Contact #2366725: Selling 0.07300000 BTC for 282.03 ZAR\r\nSelling in advertisement #38527 to MCIVER12 at the exchange rate 3863.42 ZAR / BTC.'),(244,'ObjectSell','2015-06-15 13:15:38','2015-06-15 13:15:38','(2015-06-15 13:15:38) SELL - LocalBitcoins.com - 0.01267 @ $312.46730882199','2372571',312.46730882199,0.01267,'2015-06-15 13:15:38',43,1,0,'Contact #2372571: Selling 0.01267 BTC for 50.00 ZAR\r\nSelling in advertisement #38527 to THABONAANE at the exchange rate 3883.50 ZAR / BTC.'),(245,'ObjectSell','2015-06-17 17:15:36','2015-06-17 17:15:36','(2015-06-17 17:15:36) SELL - LocalBitcoins.com - 0.6939 @ $347.80859665708','2402184',347.80859665708,0.6939,'2015-06-17 17:15:36',44,1,0,'Contact #2402184: Selling 0.69390000 BTC for 3000.00 ZAR\r\nSelling in advertisement #38527 to bekezela at the exchange rate 4323.39 ZAR / BTC.'),(246,'ObjectSell','2015-06-17 17:17:33','2015-06-17 17:17:33','(2015-06-17 17:17:33) SELL - LocalBitcoins.com - 0.0839 @ $335.57937928676','2395934',335.57937928676,0.0839,'2015-06-17 17:17:33',44,1,0,'Contact #2395934: Selling 0.08390000 BTC for 350.00 ZAR\r\nSelling in advertisement #38527 to japhetgumede at the exchange rate 4171.63 ZAR / BTC.'),(247,'ObjectSell','2015-06-17 17:17:47','2015-06-17 17:17:47','(2015-06-17 17:17:47) SELL - LocalBitcoins.com - 0.0723 @ $333.80936098316','2395727',333.80936098316,0.0723,'2015-06-17 17:17:47',44,1,0,'Contact #2395727: Selling 0.07230000 BTC for 300.00 ZAR\r\nSelling in advertisement #38527 to 10335 at the exchange rate 4149.38 ZAR / BTC.'),(248,'ObjectSell','2015-06-17 18:10:49','2015-06-17 18:10:49','(2015-06-17 18:10:49) SELL - LocalBitcoins.com - 0.0698 @ $344.83174963476','2403111',344.83174963476,0.0698,'2015-06-17 18:10:49',44,1,0,'Contact #2403111: Selling 0.06980000 BTC for 299.08 ZAR\r\nSelling in advertisement #38527 to Mabuthojoe at the exchange rate 4284.81 ZAR / BTC.'),(249,'ObjectSell','2015-06-18 10:39:11','2015-06-18 10:39:11','(2015-06-18 10:39:11) SELL - LocalBitcoins.com - 0.0692 @ $344.54261761937','2407642',344.54261761937,0.0692,'2015-06-18 10:39:11',44,1,0,'Contact #2407642: Selling 0.06920000 BTC for 290.00 ZAR\r\nSelling in advertisement #38527 to Liho at the exchange rate 4190.75 ZAR / BTC.'),(250,'ObjectSell','2015-06-18 12:52:59','2015-06-18 12:52:59','(2015-06-18 12:52:59) SELL - LocalBitcoins.com - 0.7106 @ $346.73818843467','2407932',346.73818843467,0.7106,'2015-06-18 12:52:59',44,1,0,'Contact #2407932: Selling 0.71060000 BTC for 3000.00 ZAR\r\nSelling in advertisement #38527 to bekezela at the exchange rate 4221.78 ZAR / BTC.'),(251,'ObjectSell','2015-06-19 14:00:30','2015-06-19 14:00:30','(2015-06-19 14:00:30) SELL - LocalBitcoins.com - 0.1179 @ $345.58074763135','2414691',345.58074763135,0.1179,'2015-06-19 14:00:30',44,1,0,'Contact #2414691: Selling 0.11790000 BTC for 500.00 ZAR\r\nSelling in advertisement #38527 to bzen.kiingi at the exchange rate 4240.88 ZAR / BTC.'),(252,'ObjectSell','2015-06-19 14:01:21','2015-06-19 14:01:21','(2015-06-19 14:01:21) SELL - LocalBitcoins.com - 0.0698 @ $344.68419380494','2409630',344.68419380494,0.0698,'2015-06-19 14:01:21',44,1,0,'Contact #2409630: Selling 0.06980000 BTC for 295.21 ZAR\r\nSelling in advertisement #38527 to lelesi01 at the exchange rate 4229.37 ZAR / BTC.'),(253,'ObjectSell','2015-07-07 11:02:51','2015-07-07 11:02:51','(2015-07-07 11:02:51) SELL - LocalBitcoins.com - 0.0718 @ $334.46205604825','2407192',334.46205604825,0.0718,'2015-07-07 11:02:51',44,1,0,'Contact #2407192: Selling 0.07180000 BTC for 300.00 ZAR\r\nSelling in advertisement #38527 to Maphuti1977 at the exchange rate 4178.27 ZAR / BTC.'),(254,'ObjectSell','2015-07-07 11:03:19','2015-07-07 11:03:19','(2015-07-07 11:03:19) SELL - LocalBitcoins.com - 0.0698 @ $337.42402255706','2416366',337.42402255706,0.0698,'2015-07-07 11:03:19',45,1,0,'Contact #2416366: Selling 0.06980000 BTC for 294.22 ZAR\r\nSelling in advertisement #38527 to motheba1 at the exchange rate 4215.19 ZAR / BTC.'),(255,'ObjectSell','2015-07-07 11:03:52','2015-07-07 11:03:52','(2015-07-07 11:03:52) SELL - LocalBitcoins.com - 0.0695 @ $333.98173715493','2417769',333.98173715493,0.0695,'2015-07-07 11:03:52',45,1,0,'Contact #2417769: Selling 0.06950000 BTC for 290.00 ZAR\r\nSelling in advertisement #38527 to 0837093996 at the exchange rate 4172.66 ZAR / BTC.'),(256,'ObjectSell','2015-07-07 11:04:19','2015-07-07 11:04:19','(2015-07-07 11:04:19) SELL - LocalBitcoins.com - 0.0485 @ $330.05913285949','2430005',330.05913285949,0.0485,'2015-07-07 11:04:19',44,1,0,'Contact #2430005: Selling 0.04850000 BTC for 200.00 ZAR\r\nSelling in advertisement #38527 to LesegoK at the exchange rate 4123.71 ZAR / BTC.'),(257,'ObjectSell','2015-07-07 11:04:42','2015-07-07 11:04:42','(2015-07-07 11:04:42) SELL - LocalBitcoins.com - 0.0211 @ $333.10115251718','2430511',333.10115251718,0.0211,'2015-07-07 11:04:42',45,1,0,'Contact #2430511: Selling 0.02110000 BTC for 87.81 ZAR\r\nSelling in advertisement #38527 to LesegoK at the exchange rate 4161.61 ZAR / BTC.'),(258,'ObjectSell','2015-07-07 11:05:07','2015-07-07 11:05:07','(2015-07-07 11:05:07) SELL - LocalBitcoins.com - 0.2507 @ $319.2519577598','2506155',319.2519577598,0.2507,'2015-07-07 11:05:07',45,1,0,'Contact #2506155: Selling 0.25070000 BTC for 1000.00 ZAR\r\nSelling in advertisement #38527 to joemik89 at the exchange rate 3988.83 ZAR / BTC.'),(259,'ObjectSell','2015-07-07 14:16:55','2015-07-07 14:16:55','(2015-07-07 14:16:55) SELL - LocalBitcoins.com - 0.0914 @ $307.2035173158','2528966',307.2035173158,0.0914,'2015-07-07 14:16:55',45,1,0,'Contact #2528966: Selling 0.09140000 BTC for 350.00 ZAR\r\nSelling in advertisement #38527 to Yammy at the exchange rate 3829.32 ZAR / BTC.'),(260,'ObjectSell','2015-07-07 15:05:20','2015-07-08 15:25:20','(2015-07-07 15:05:20) SELL - LocalBitcoins.com - 0.1436 @ $306.22239101321','2529034',306.22239101321,0.1436,'2015-07-07 15:05:20',45,1,0,'Contact #2529034: Selling 0.14360000 BTC for 550.00 ZAR\r\nSelling in advertisement #38527 to Mandisim at the exchange rate 3830.08 ZAR / BTC.'),(261,'ObjectSell','2015-07-08 15:20:02','2015-07-08 15:20:02','(2015-07-08 15:20:02) SELL - LocalBitcoins.com - 0.1445 @ $304.3035039677','2529440',304.3035039677,0.1445,'2015-07-08 15:20:02',45,1,0,'Contact #2529440: Selling 0.14450000 BTC for 550.00 ZAR\r\nSelling in advertisement #38527 to Busana at the exchange rate 3806.23 ZAR / BTC.'),(262,'ObjectSell','2015-07-08 15:20:22','2015-07-08 15:20:22','(2015-07-08 15:20:22) SELL - LocalBitcoins.com - 0.1313 @ $304.46341122149','2529479',304.46341122149,0.1313,'2015-07-08 15:20:22',45,1,0,'Contact #2529479: Selling 0.13130000 BTC for 500.00 ZAR\r\nSelling in advertisement #38527 to rspice50 at the exchange rate 3808.07 ZAR / BTC.'),(263,'ObjectSell','2015-07-08 15:20:38','2015-07-08 15:20:38','(2015-07-08 15:20:38) SELL - LocalBitcoins.com - 0.2785 @ $304.3035039677','2529640',304.3035039677,0.2785,'2015-07-08 15:20:38',45,1,0,'Contact #2529640: Selling 0.27850000 BTC for 1060.00 ZAR\r\nSelling in advertisement #38527 to mmantja at the exchange rate 3806.10 ZAR / BTC.'),(264,'ObjectSell','2015-07-08 15:20:54','2015-07-08 15:20:54','(2015-07-08 15:20:54) SELL - LocalBitcoins.com - 0.3957 @ $303.02424593736','2529715',303.02424593736,0.3957,'2015-07-08 15:20:54',45,1,0,'Contact #2529715: Selling 0.39570000 BTC for 1500.00 ZAR\r\nSelling in advertisement #38527 to Manishablack at the exchange rate 3790.75 ZAR / BTC.'),(265,'ObjectSell','2015-07-08 15:21:13','2015-07-08 15:21:13','(2015-07-08 15:21:13) SELL - LocalBitcoins.com - 1.5962 @ $300.46572987667','2529793',300.46572987667,1.5962,'2015-07-08 15:21:13',45,1,0,'Contact #2529793: Selling 1.59620000 BTC for 6000.00 ZAR\r\nSelling in advertisement #38527 to bhebhe70 at the exchange rate 3758.93 ZAR / BTC.'),(266,'ObjectSell','2015-07-08 15:21:37','2015-07-08 15:21:37','(2015-07-08 15:21:37) SELL - LocalBitcoins.com - 0.4203 @ $300.54568350357','2529800',300.54568350357,0.4203,'2015-07-08 15:21:37',45,1,0,'Contact #2529800: Selling 0.42030000 BTC for 1580.00 ZAR\r\nSelling in advertisement #38527 to tumelomokwena at the exchange rate 3759.22 ZAR / BTC.'),(267,'ObjectSell','2015-07-08 15:21:50','2015-07-08 15:21:50','(2015-07-08 15:21:50) SELL - LocalBitcoins.com - 0.0798 @ $300.54568350357','2529899',300.54568350357,0.0798,'2015-07-08 15:21:50',45,1,0,'Contact #2529899: Selling 0.07980000 BTC for 300.00 ZAR\r\nSelling in advertisement #38527 to 0782155263 at the exchange rate 3759.40 ZAR / BTC.'),(268,'ObjectSell','2015-07-08 15:22:02','2015-07-08 15:22:02','(2015-07-08 15:22:02) SELL - LocalBitcoins.com - 1.0641 @ $300.54568350357','2529972',300.54568350357,1.0641,'2015-07-08 15:22:02',45,1,0,'Contact #2529972: Selling 1.06410000 BTC for 4000.00 ZAR\r\nSelling in advertisement #38527 to bhebhe70 at the exchange rate 3759.05 ZAR / BTC.'),(269,'ObjectSell','2015-07-08 15:22:16','2015-07-08 15:22:16','(2015-07-08 15:22:16) SELL - LocalBitcoins.com - 0.3713 @ $301.42517339943','2530045',301.42517339943,0.3713,'2015-07-08 15:22:16',45,1,0,'Contact #2530045: Selling 0.37130000 BTC for 1400.00 ZAR\r\nSelling in advertisement #38527 to RONEY at the exchange rate 3770.54 ZAR / BTC.'),(270,'ObjectSell','2015-07-08 15:22:31','2015-07-08 15:22:31','(2015-07-08 15:22:31) SELL - LocalBitcoins.com - 0.0796 @ $301.26526614564','2530133',301.26526614564,0.0796,'2015-07-08 15:22:31',45,1,0,'Contact #2530133: Selling 0.07960000 BTC for 300.00 ZAR\r\nSelling in advertisement #38527 to tebogomolewa at the exchange rate 3768.84 ZAR / BTC.'),(271,'ObjectSell','2015-07-08 15:22:47','2015-07-08 15:22:47','(2015-07-08 15:22:47) SELL - LocalBitcoins.com - 0.3354 @ $309.82030422355','2530213',309.82030422355,0.3354,'2015-07-08 15:22:47',45,1,0,'Contact #2530213: Selling 0.33540000 BTC for 1300.00 ZAR\r\nSelling in advertisement #38527 to tgal4lyf at the exchange rate 3875.97 ZAR / BTC.'),(272,'ObjectSell','2015-07-08 15:24:05','2015-07-08 15:24:05','(2015-07-08 15:24:05) SELL - LocalBitcoins.com - 2.38244 @ $0','STOLEN',0,2.38244,'2015-07-08 15:24:05',45,1,0,NULL),(274,'ObjectSell','2015-07-09 14:54:33','2015-07-09 14:54:33','(2015-07-09 14:54:33) SELL - LocalBitcoins.com - 0.0754 @ $319.55272258438','2538378',319.55272258438,0.0754,'2015-07-09 14:54:33',47,1,0,'Contact #2538378: Selling 0.07540000 BTC for 300.00 ZAR\r\nSelling in advertisement #38527 to khista at the exchange rate 3978.78 ZAR / BTC.'),(275,'ObjectSell','2015-07-09 14:54:56','2015-07-11 14:47:29','(2015-07-09 14:54:56) SELL - LocalBitcoins.com - 0.2106 @ $316.39243580429','2542724',316.39243580429,0.2106,'2015-07-09 14:54:56',50,1,0,'Contact #2542724: Selling 0.21060000 BTC for 830.00 ZAR\r\nSelling in advertisement #38527 to vqnortjie at the exchange rate 3941.12 ZAR / BTC.'),(276,'ObjectSell','2015-07-09 14:55:16','2015-07-11 14:47:09','(2015-07-09 14:55:16) SELL - LocalBitcoins.com - 0.102 @ $314.78679035489','2542849',314.78679035489,0.102,'2015-07-09 14:55:16',47,1,0,'Contact #2542849: Selling 0.10200000 BTC for 400.00 ZAR\r\nSelling in advertisement #38527 to lovedayda at the exchange rate 3921.57 ZAR / BTC.'),(277,'ObjectSell','2015-07-09 14:55:30','2015-07-09 14:55:30','(2015-07-09 14:55:30) SELL - LocalBitcoins.com - 0.0885 @ $317.62480268945','2538423',317.62480268945,0.0885,'2015-07-09 14:55:30',47,1,0,'Contact #2538423: Selling 0.08850000 BTC for 350.00 ZAR\r\nSelling in advertisement #38527 to Mokhethi at the exchange rate 3954.80 ZAR / BTC.'),(279,'ObjectSell','2015-07-11 14:22:17','2015-07-11 14:22:17','(2015-07-11 14:22:17) SELL - BitX - 6 @ $6.26','ICE3X SELL',6.26,6,'2015-07-11 14:22:17',51,5,0,NULL),(283,'ObjectSell','2015-07-21 11:23:22','2015-07-21 11:23:22','(2015-07-21 11:23:22) SELL - LocalBitcoins.com - 0.0936 @ $318.48237346732','2544721',318.48237346732,0.0936,'2015-07-21 11:23:22',52,1,0,'Contact #2544721: Selling 0.09360000 BTC for 370.00 ZAR\r\nSelling in advertisement #38527 to bitsumB at the exchange rate 3952.99 ZAR / BTC.'),(284,'ObjectSell','2015-07-21 11:23:44','2015-07-21 11:23:44','(2015-07-21 11:23:44) SELL - LocalBitcoins.com - 0.2529 @ $318.64354875754','2545018',318.64354875754,0.2529,'2015-07-21 11:23:44',52,1,0,'Contact #2545018: Selling 0.25290000 BTC for 1000.00 ZAR\r\nSelling in advertisement #38527 to Mathakadi at the exchange rate 3954.13 ZAR / BTC.'),(285,'ObjectSell','2015-07-21 11:24:09','2015-07-21 11:24:09','(2015-07-21 11:24:09) SELL - LocalBitcoins.com - 0.1396 @ $334.76107777917','2566254',334.76107777917,0.1396,'2015-07-21 11:24:09',52,1,0,'Contact #2566254: Selling 0.13960000 BTC for 580.00 ZAR\r\nSelling in advertisement #38527 to tshabalala at the exchange rate 4154.73 ZAR / BTC.'),(286,'ObjectSell','2015-07-21 11:24:29','2015-07-21 11:24:29','(2015-07-21 11:24:29) SELL - LocalBitcoins.com - 0.0698 @ $334.84166542427','2566294',334.84166542427,0.0698,'2015-07-21 11:24:29',52,1,0,'Contact #2566294: Selling 0.06980000 BTC for 290.06 ZAR\r\nSelling in advertisement #38527 to Busana at the exchange rate 4155.59 ZAR / BTC.'),(287,'ObjectSell','2015-07-21 11:26:10','2015-07-21 11:26:10','(2015-07-21 11:26:10) SELL - LocalBitcoins.com - 0.0474 @ $339.99927471119','2566697',339.99927471119,0.0474,'2015-07-21 11:26:10',52,1,0,'Contact #2566697: Selling 0.04740000 BTC for 200.00 ZAR\r\nSelling in advertisement #38527 to Awina at the exchange rate 4219.41 ZAR / BTC.'),(288,'ObjectSell','2015-07-21 11:26:34','2015-07-21 11:26:34','(2015-07-21 11:26:34) SELL - LocalBitcoins.com - 0.1433 @ $337.42047006773','2572504',337.42047006773,0.1433,'2015-07-21 11:26:34',52,1,0,'Contact #2572504: Selling 0.14330000 BTC for 600.00 ZAR\r\nSelling in advertisement #38527 to shereez at the exchange rate 4187.02 ZAR / BTC.'),(289,'ObjectSell','2015-07-21 11:27:14','2015-07-21 11:27:14','(2015-07-21 11:27:14) SELL - LocalBitcoins.com - 0.0696 @ $335.72812952046','2573427',335.72812952046,0.0696,'2015-07-21 11:27:14',52,1,0,'Contact #2573427: Selling 0.06960000 BTC for 290.00 ZAR\r\nSelling in advertisement #38527 to luluza at the exchange rate 4166.67 ZAR / BTC.'),(290,'ObjectSell','2015-07-21 11:27:40','2015-07-21 11:27:40','(2015-07-21 11:27:40) SELL - LocalBitcoins.com - 0.07 @ $335.88930481068','2573495',335.88930481068,0.07,'2015-07-21 11:27:40',52,1,0,'Contact #2573495: Selling 0.07000000 BTC for 291.82 ZAR\r\nSelling in advertisement #38527 to jvrense2 at the exchange rate 4168.86 ZAR / BTC.'),(291,'ObjectSell','2015-07-21 11:27:58','2015-07-21 11:27:58','(2015-07-21 11:27:58) SELL - LocalBitcoins.com - 0.084 @ $335.72812952046','2574007',335.72812952046,0.084,'2015-07-21 11:27:58',52,1,0,'Contact #2574007: Selling 0.08400000 BTC for 350.00 ZAR\r\nSelling in advertisement #38527 to phinda at the exchange rate 4166.67 ZAR / BTC.'),(292,'ObjectSell','2015-07-21 11:28:17','2015-07-21 11:28:17','(2015-07-21 11:28:17) SELL - LocalBitcoins.com - 0.0956 @ $337.17870713241','2574314',337.17870713241,0.0956,'2015-07-21 11:28:17',52,1,0,'Contact #2574314: Selling 0.09560000 BTC for 400.00 ZAR\r\nSelling in advertisement #38527 to HermanMZH at the exchange rate 4184.10 ZAR / BTC.'),(293,'ObjectSell','2015-07-21 11:28:33','2015-07-21 11:28:33','(2015-07-21 11:28:33) SELL - LocalBitcoins.com - 0.6212 @ $337.25929477752','2574393',337.25929477752,0.6212,'2015-07-21 11:28:33',52,1,0,'Contact #2574393: Selling 0.62120000 BTC for 2600.00 ZAR\r\nSelling in advertisement #38527 to ontiretse at the exchange rate 4185.45 ZAR / BTC.'),(294,'ObjectSell','2015-07-21 11:28:46','2015-07-21 11:28:46','(2015-07-21 11:28:46) SELL - LocalBitcoins.com - 0.0698 @ $342.17514112911','2574614',342.17514112911,0.0698,'2015-07-21 11:28:46',52,1,0,'Contact #2574614: Selling 0.06980000 BTC for 296.41 ZAR\r\nSelling in advertisement #38527 to ssimelane at the exchange rate 4246.56 ZAR / BTC.'),(295,'ObjectSell','2015-07-21 11:28:58','2015-07-21 11:28:58','(2015-07-21 11:28:58) SELL - LocalBitcoins.com - 0.0476 @ $338.54869709925','2576293',338.54869709925,0.0476,'2015-07-21 11:28:58',52,1,0,'Contact #2576293: Selling 0.04760000 BTC for 200.00 ZAR\r\nSelling in advertisement #38527 to Mshengu at the exchange rate 4201.68 ZAR / BTC.'),(296,'ObjectSell','2015-07-21 11:29:18','2015-07-21 11:29:18','(2015-07-21 11:29:18) SELL - LocalBitcoins.com - 0.2391 @ $337.01753184219','2576654',337.01753184219,0.2391,'2015-07-21 11:29:18',52,1,0,'Contact #2576654: Selling 0.23910000 BTC for 1000.00 ZAR\r\nSelling in advertisement #38527 to ola10111 at the exchange rate 4182.35 ZAR / BTC.'),(297,'ObjectSell','2015-07-21 11:29:47','2015-07-21 11:29:47','(2015-07-21 11:29:47) SELL - LocalBitcoins.com - 0.2792 @ $335.48636658514','2579736',335.48636658514,0.2792,'2015-07-21 11:29:47',52,1,0,'Contact #2579736: Selling 0.27920000 BTC for 1162.36 ZAR\r\nSelling in advertisement #38527 to TKMoabi at the exchange rate 4163.18 ZAR / BTC.'),(298,'ObjectSell','2015-07-21 11:30:01','2015-07-21 11:30:01','(2015-07-21 11:30:01) SELL - LocalBitcoins.com - 0.5236 @ $338.54869709925','2580158',338.54869709925,0.5236,'2015-07-21 11:30:01',52,1,0,'Contact #2580158: Selling 0.52360000 BTC for 2200.00 ZAR\r\nSelling in advertisement #38527 to 4riches at the exchange rate 4201.68 ZAR / BTC.'),(299,'ObjectSell','2015-07-21 11:30:21','2015-07-21 11:30:21','(2015-07-21 11:30:21) SELL - LocalBitcoins.com - 0.069 @ $338.62928474436','2580166',338.62928474436,0.069,'2015-07-21 11:30:21',52,1,0,'Contact #2580166: Selling 0.06900000 BTC for 290.00 ZAR\r\nSelling in advertisement #38527 to siyamuva at the exchange rate 4202.90 ZAR / BTC.'),(300,'ObjectSell','2015-07-21 11:30:43','2015-07-21 11:30:43','(2015-07-21 11:30:43) SELL - LocalBitcoins.com - 0.07 @ $338.67295331359','2580232',338.67295331359,0.07,'2015-07-21 11:30:43',52,1,0,'Contact #2580232: Selling 0.07000000 BTC for 294.17 ZAR\r\nSelling in advertisement #38527 to TKMoabi at the exchange rate 4202.43 ZAR / BTC.'),(301,'ObjectSell','2015-07-21 11:30:53','2015-07-21 11:31:06','(2015-07-21 11:30:53) SELL - LocalBitcoins.com - 0.0698 @ $337.38338471458','2581204',337.38338471458,0.0698,'2015-07-21 11:30:53',52,1,0,'Contact #2581204: Selling 0.06980000 BTC for 292.24 ZAR\r\nSelling in advertisement #38527 to ikubheka at the exchange rate 4186.82 ZAR / BTC.'),(302,'ObjectSell','2015-07-21 11:31:30','2015-07-21 11:31:30','(2015-07-21 11:31:30) SELL - LocalBitcoins.com - 0.0717 @ $337.22218863971','2581462',337.22218863971,0.0717,'2015-07-21 11:31:30',52,1,0,'Contact #2581462: Selling 0.07170000 BTC for 300.00 ZAR\r\nSelling in advertisement #38527 to ntlhari at the exchange rate 4184.10 ZAR / BTC.'),(303,'ObjectSell','2015-07-21 11:31:44','2015-07-21 11:31:44','(2015-07-21 11:31:44) SELL - LocalBitcoins.com - 0.07 @ $337.94757097665','2583954',337.94757097665,0.07,'2015-07-21 11:31:44',52,1,0,'Contact #2583954: Selling 0.07000000 BTC for 293.54 ZAR\r\nSelling in advertisement #38527 to Shumba007 at the exchange rate 4193.43 ZAR / BTC.'),(304,'ObjectSell','2015-07-21 11:31:59','2015-07-21 11:31:59','(2015-07-21 11:31:59) SELL - LocalBitcoins.com - 0.0698 @ $330.29075742006','2585867',330.29075742006,0.0698,'2015-07-21 11:31:59',52,1,0,'Contact #2585867: Selling 0.06980000 BTC for 286.10 ZAR\r\nSelling in advertisement #38527 to marlizer41 at the exchange rate 4098.85 ZAR / BTC.'),(305,'ObjectSell','2015-07-21 11:34:28','2015-07-21 11:34:28','(2015-07-21 11:34:28) SELL - LocalBitcoins.com - 0.0698 @ $330.29075742006','2585868',330.29075742006,0.0698,'2015-07-21 11:34:28',50,1,0,'Contact #2585868: Selling 0.06980000 BTC for 286.10 ZAR\r\nSelling in advertisement #38527 to Tshepik at the exchange rate 4098.85 ZAR / BTC.'),(306,'ObjectSell','2015-07-21 11:34:49','2015-07-21 11:34:49','(2015-07-21 11:34:49) SELL - LocalBitcoins.com - 0.1464 @ $330.29075742006','2585872',330.29075742006,0.1464,'2015-07-21 11:34:49',50,1,0,'Contact #2585872: Selling 0.14640000 BTC for 600.00 ZAR\r\nSelling in advertisement #38527 to Overcomer24 at the exchange rate 4098.36 ZAR / BTC.'),(307,'ObjectSell','2015-07-21 11:35:17','2015-07-21 11:35:17','(2015-07-21 11:35:17) SELL - LocalBitcoins.com - 0.0686 @ $328.92059078361','2586526',328.92059078361,0.0686,'2015-07-21 11:35:17',50,1,0,'Contact #2586526: Selling 0.06860000 BTC for 280.00 ZAR\r\nSelling in advertisement #38527 to Nduduo at the exchange rate 4081.63 ZAR / BTC.'),(308,'ObjectSell','2015-07-21 11:35:32','2015-07-21 11:35:32','(2015-07-21 11:35:32) SELL - LocalBitcoins.com - 0.0632 @ $331.49972798162','2586780',331.49972798162,0.0632,'2015-07-21 11:35:32',50,1,0,'Contact #2586780: Selling 0.06320000 BTC for 260.00 ZAR\r\nSelling in advertisement #38527 to shereez at the exchange rate 4113.92 ZAR / BTC.'),(309,'ObjectSell','2015-07-21 11:35:54','2015-07-21 11:35:54','(2015-07-21 11:35:54) SELL - LocalBitcoins.com - 0.1397 @ $330.12956134518','2586825',330.12956134518,0.1397,'2015-07-21 11:35:54',50,1,0,'Contact #2586825: Selling 0.13970000 BTC for 572.26 ZAR\r\nSelling in advertisement #38527 to Hlulani at the exchange rate 4096.35 ZAR / BTC.'),(310,'ObjectSell','2015-07-21 11:36:19','2015-07-21 11:36:19','(2015-07-21 11:36:19) SELL - LocalBitcoins.com - 0.0698 @ $331.33853190675','2587069',331.33853190675,0.0698,'2015-07-21 11:36:19',50,1,0,'Contact #2587069: Selling 0.06980000 BTC for 287.00 ZAR\r\nSelling in advertisement #38527 to nonhlanhlamkhize at the exchange rate 4111.75 ZAR / BTC.'),(311,'ObjectSell','2015-07-21 11:36:33','2015-07-21 11:36:33','(2015-07-21 11:36:33) SELL - LocalBitcoins.com - 0.0709 @ $329.64597312055','2587188',329.64597312055,0.0709,'2015-07-21 11:36:33',50,1,0,'Contact #2587188: Selling 0.07090000 BTC for 290.00 ZAR\r\nSelling in advertisement #38527 to crazygas at the exchange rate 4090.27 ZAR / BTC.'),(312,'ObjectSell','2015-07-21 11:36:46','2015-07-21 11:36:46','(2015-07-21 11:36:46) SELL - LocalBitcoins.com - 0.07 @ $330.93554171956','2587346',330.93554171956,0.07,'2015-07-21 11:36:46',50,1,0,'Contact #2587346: Selling 0.07000000 BTC for 287.44 ZAR\r\nSelling in advertisement #38527 to misspat at the exchange rate 4106.29 ZAR / BTC.'),(313,'ObjectSell','2015-07-21 11:36:59','2015-07-21 11:36:59','(2015-07-21 11:36:59) SELL - LocalBitcoins.com - 0.0706 @ $331.016139757','2587469',331.016139757,0.0706,'2015-07-21 11:36:59',50,1,0,'Contact #2587469: Selling 0.07060000 BTC for 290.00 ZAR\r\nSelling in advertisement #38527 to smy3251 at the exchange rate 4107.65 ZAR / BTC.'),(314,'ObjectSell','2015-07-21 11:37:12','2015-07-21 11:37:12','(2015-07-21 11:37:12) SELL - LocalBitcoins.com - 0.0748 @ $323.19813012553','2587993',323.19813012553,0.0748,'2015-07-21 11:37:12',50,1,0,'Contact #2587993: Selling 0.07480000 BTC for 300.00 ZAR\r\nSelling in advertisement #38527 to Ayanda411 at the exchange rate 4010.70 ZAR / BTC.'),(315,'ObjectSell','2015-07-21 11:37:24','2015-07-21 11:37:24','(2015-07-21 11:37:24) SELL - LocalBitcoins.com - 0.0699 @ $319.57121844083','2589390',319.57121844083,0.0699,'2015-07-21 11:37:24',50,1,0,'Contact #2589390: Selling 0.06990000 BTC for 277.16 ZAR\r\nSelling in advertisement #38527 to tshivhidzoj at the exchange rate 3965.09 ZAR / BTC.'),(316,'ObjectSell','2015-07-21 11:37:36','2015-07-21 11:37:36','(2015-07-21 11:37:36) SELL - LocalBitcoins.com - 0.0691 @ $320.69959096496','2589688',320.69959096496,0.0691,'2015-07-21 11:37:36',50,1,0,'Contact #2589688: Selling 0.06910000 BTC for 275.00 ZAR\r\nSelling in advertisement #38527 to Sosla at the exchange rate 3979.74 ZAR / BTC.'),(317,'ObjectSell','2015-07-21 11:38:14','2015-07-21 11:38:14','(2015-07-21 11:38:14) SELL - LocalBitcoins.com - 0.0698 @ $322.87573797578','2593108',322.87573797578,0.0698,'2015-07-21 11:38:14',50,1,0,'Contact #2593108: Selling 0.06980000 BTC for 279.64 ZAR\r\nSelling in advertisement #38527 to Carro at the exchange rate 4006.30 ZAR / BTC.'),(318,'ObjectSell','2015-07-21 11:38:26','2015-07-21 11:38:26','(2015-07-21 11:38:26) SELL - LocalBitcoins.com - 0.0505 @ $319.16822825364','2593565',319.16822825364,0.0505,'2015-07-21 11:38:26',50,1,0,'Contact #2593565: Selling 0.05050000 BTC for 200.00 ZAR\r\nSelling in advertisement #38527 to thandz01 at the exchange rate 3960.40 ZAR / BTC.'),(319,'ObjectSell','2015-07-21 11:38:38','2015-07-21 11:38:38','(2015-07-21 11:38:38) SELL - LocalBitcoins.com - 0.0495 @ $325.61607124867','2593861',325.61607124867,0.0495,'2015-07-21 11:38:38',50,1,0,'Contact #2593861: Selling 0.04950000 BTC for 200.00 ZAR\r\nSelling in advertisement #38527 to thandz01 at the exchange rate 4040.40 ZAR / BTC.'),(320,'ObjectSell','2015-07-21 11:38:51','2015-07-21 11:38:51','(2015-07-21 11:38:51) SELL - LocalBitcoins.com - 0.0497 @ $324.32650264966','2594572',324.32650264966,0.0497,'2015-07-21 11:38:51',50,1,0,'Contact #2594572: Selling 0.04970000 BTC for 200.00 ZAR\r\nSelling in advertisement #38527 to xrosenberg at the exchange rate 4024.14 ZAR / BTC.'),(321,'ObjectSell','2015-07-21 11:39:08','2015-07-21 11:39:08','(2015-07-21 11:39:08) SELL - LocalBitcoins.com - 0.07 @ $327.22803199742','2604268',327.22803199742,0.07,'2015-07-21 11:39:08',50,1,0,'Contact #2604268: Selling 0.07000000 BTC for 284.24 ZAR\r\nSelling in advertisement #38527 to Shumba007 at the exchange rate 4060.57 ZAR / BTC.'),(322,'ObjectSell','2015-07-21 11:39:17','2015-07-21 11:39:17','(2015-07-21 11:39:17) SELL - LocalBitcoins.com - 0.07 @ $328.75939470874','2608777',328.75939470874,0.07,'2015-07-21 11:39:17',50,1,0,'Contact #2608777: Selling 0.07000000 BTC for 285.55 ZAR\r\nSelling in advertisement #38527 to jalabert23 at the exchange rate 4079.29 ZAR / BTC.'),(323,'ObjectSell','2015-07-21 11:39:30','2015-07-21 11:39:30','(2015-07-21 11:39:30) SELL - LocalBitcoins.com - 0.0733 @ $329.80716919543','2610243',329.80716919543,0.0733,'2015-07-21 11:39:30',50,1,0,'Contact #2610243: Selling 0.07330000 BTC for 300.00 ZAR\r\nSelling in advertisement #38527 to bulelwakambule at the exchange rate 4092.77 ZAR / BTC.'),(324,'ObjectSell','2015-07-21 11:41:21','2015-07-21 11:41:21','(2015-07-21 11:41:21) SELL - LocalBitcoins.com - 0.0499 @ $323.03693405066','2592882',323.03693405066,0.0499,'2015-07-21 11:41:21',50,1,0,'Contact #2592882: Selling 0.04990000 BTC for 200.00 ZAR\r\nSelling in advertisement #38527 to xrosenberg at the exchange rate 4008.02 ZAR / BTC.'),(325,'ObjectSell','2015-07-21 11:41:48','2015-07-21 11:41:48','(2015-07-21 11:41:48) SELL - LocalBitcoins.com - 0.0798 @ $302.96802272865','2529840',302.96802272865,0.0798,'2015-07-21 11:41:48',50,1,0,'Contact #2529840: Selling 0.07980000 BTC for 300.00 ZAR\r\nSelling in advertisement #38527 to HermanMZH at the exchange rate 3759.40 ZAR / BTC.'),(326,'ObjectSell','2015-07-21 11:42:04','2015-07-21 11:53:25','(2015-07-21 11:42:04) SELL - LocalBitcoins.com - 0.3499 @ $308.60988534929','2528812',308.60988534929,0.3499,'2015-07-21 11:42:04',49,1,0,'Contact #2528812: Selling 0.34990000 BTC for 1340.00 ZAR\r\nSelling in advertisement #38527 to xaba1967 at the exchange rate 3829.67 ZAR / BTC.'),(327,'ObjectSell','2015-07-21 11:43:30','2015-07-21 11:58:15','(2015-07-21 11:43:30) SELL - LocalBitcoins.com - 0.2565 @ $271.21239597816','2077652a',271.21239597816,0.2565,'2015-07-21 11:43:30',4,1,0,'Contact #2077652a: Selling 0.25650000 BTC for 1772.00 ZAR\r\nSelling in advertisement #38527 to hopeofglory at the exchange rate 3365.62 ZAR / BTC.'),(328,'ObjectSell','2015-07-21 11:45:33','2015-07-21 11:58:33','(2015-07-21 11:45:33) SELL - LocalBitcoins.com - 0.2665 @ $271.21239597816','2077652b',271.21239597816,0.2665,'2015-07-21 11:45:33',5,1,0,'Contact #2077652b: Selling 0.26650000 BTC for 1772.00 ZAR\r\nSelling in advertisement #38527 to hopeofglory at the exchange rate 3365.62 ZAR / BTC.'),(329,'ObjectSell','2015-07-21 11:50:39','2015-07-21 11:50:39','(2015-07-21 11:50:39) SELL - ICE3X - 1.97958594 @ $317.27','Ice3x',317.27,1.97958594,'2015-07-21 11:50:39',49,7,0,NULL),(330,'ObjectSell','2015-07-30 17:26:06','2015-07-30 17:35:22','(2015-07-30 17:26:06) SELL - ICE3X - 0.98 @ $327.73','7/30/2015, 5:06:42 AM',327.73,0.98,'2015-07-30 17:26:06',53,7,0,NULL),(331,'ObjectSell','2015-08-19 11:04:16','2015-08-19 11:04:16','(2015-08-19 11:04:16) SELL - ICE3X - 1 @ $297','ICE3X 8/18/2015, 7:37:32 PM',297,1,'2015-08-19 11:04:16',54,7,0,NULL),(332,'ObjectSell','2015-08-19 11:04:53','2015-08-19 11:04:53','(2015-08-19 11:04:53) SELL - ICE3X - 0.36 @ $300','ICE3X 8/18/2015, 7:37:32 PM',300,0.36,'2015-08-19 11:04:53',55,7,0,NULL),(334,'ObjectSell','2016-10-13 13:11:40','2016-10-13 13:11:40','(2016-10-13 13:11:40) SELL - ICE3X - 2.04247237 @ $646.517',NULL,646.517,2.04247237,'2016-10-13 13:11:40',57,7,0,NULL);
/*!40000 ALTER TABLE `ObjectSell` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ObjectSell_ObjectBuy`
--

DROP TABLE IF EXISTS `ObjectSell_ObjectBuy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ObjectSell_ObjectBuy` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `ObjectSellID` int(11) NOT NULL DEFAULT 0,
  `ObjectBuyID` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `ObjectSellID` (`ObjectSellID`),
  KEY `ObjectBuyID` (`ObjectBuyID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ObjectSell_ObjectBuy`
--

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

--
-- Table structure for table `ObjectSource`
--

DROP TABLE IF EXISTS `ObjectSource`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ObjectSource` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `ClassName` enum('ObjectSource') CHARACTER SET utf8 DEFAULT 'ObjectSource',
  `Created` datetime DEFAULT NULL,
  `LastEdited` datetime DEFAULT NULL,
  `Title` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `UrlWithoutRef` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `Fee` double DEFAULT NULL,
  PRIMARY KEY (`ID`),
  KEY `ClassName` (`ClassName`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ObjectSource`
--

LOCK TABLES `ObjectSource` WRITE;
/*!40000 ALTER TABLE `ObjectSource` DISABLE KEYS */;
INSERT INTO `ObjectSource` VALUES (1,'ObjectSource','2015-04-20 16:10:39','2015-04-20 23:47:36','LocalBitcoins.com','https://localbitcoins.com/request/online_sell_seller/',0.01),(2,'ObjectSource','2015-04-20 16:12:50','2015-04-20 23:56:12','Kraken',NULL,0.0034),(3,'ObjectSource','2015-04-20 16:24:51','2015-04-20 16:24:51','FNB',NULL,NULL),(4,'ObjectSource','2015-04-20 16:25:04','2015-04-20 16:25:04','Halifax',NULL,NULL),(5,'ObjectSource','2015-05-17 05:34:32','2015-05-17 05:34:44','BitX',NULL,0.01),(6,'ObjectSource','2015-07-09 14:05:05','2015-07-09 14:05:05','BTC-e',NULL,0),(7,'ObjectSource','2015-07-11 14:23:03','2016-10-03 12:25:04','ICE3X',NULL,0.01);
/*!40000 ALTER TABLE `ObjectSource` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ObjectTransfer`
--

DROP TABLE IF EXISTS `ObjectTransfer`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ObjectTransfer` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `ClassName` enum('ObjectTransfer') CHARACTER SET utf8 DEFAULT 'ObjectTransfer',
  `Created` datetime DEFAULT NULL,
  `LastEdited` datetime DEFAULT NULL,
  `Title` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `AmountUSD` double DEFAULT NULL,
  `TransferDate` datetime DEFAULT NULL,
  `OriginID` int(11) NOT NULL DEFAULT 0,
  `DestinationID` int(11) NOT NULL DEFAULT 0,
  `RefID` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `TradeDate` datetime DEFAULT NULL,
  PRIMARY KEY (`ID`),
  KEY `OriginID` (`OriginID`),
  KEY `DestinationID` (`DestinationID`),
  KEY `ClassName` (`ClassName`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ObjectTransfer`
--

LOCK TABLES `ObjectTransfer` WRITE;
/*!40000 ALTER TABLE `ObjectTransfer` DISABLE KEYS */;
INSERT INTO `ObjectTransfer` VALUES (1,'ObjectTransfer','2015-04-21 11:42:30','2015-05-17 06:17:11','(2015-04-20 11:42:30) Halifax -> Kraken $2438',2438,NULL,4,2,'QCBM7S7','2015-04-20 11:42:30'),(2,'ObjectTransfer','2015-05-08 12:19:48','2015-05-08 12:19:48','(2015-05-08 12:19:48) Halifax -> Kraken $5589',5589,NULL,4,2,'QCNJZL4','2015-05-08 12:19:48'),(3,'ObjectTransfer','2015-05-17 05:48:14','2015-05-17 05:48:14','(2015-05-17 05:48:14) FNB -> BitX $271.251',271.251,NULL,3,5,'BX29PRD2X','2015-05-17 05:48:14'),(4,'ObjectTransfer','2015-06-02 16:30:44','2015-06-13 01:09:58','(2015-06-02 16:30:44) Halifax -> Kraken $6828.28',6828.28,NULL,4,2,'FP26460573','2015-06-02 16:30:44'),(5,'ObjectTransfer','2015-06-10 18:42:41','2015-06-10 18:43:08','(2015-06-10 18:42:41) Halifax -> LocalBitcoins.com $6211',6211,NULL,4,1,'FP26514334','2015-06-10 18:42:41'),(6,'ObjectTransfer','2015-07-28 12:39:10','2015-07-28 12:39:19','(2015-07-28 12:39:10) Halifax -> Kraken $6252.50',6252.5,NULL,4,2,'QCONGPN-CN7STT-NYTA5O','2015-07-28 12:39:10'),(7,'ObjectTransfer','2015-11-05 12:55:49','2015-11-05 12:56:00','(2015-11-05 00:00:00) Halifax -> Kraken $5858',5858,NULL,4,2,NULL,'2015-11-05 00:00:00'),(8,'ObjectTransfer','2016-09-29 13:26:33','2016-09-29 13:26:33','(2016-09-29 13:26:33) Halifax -> Kraken $9683.31',9683.31,NULL,4,2,NULL,'2016-09-29 13:26:33');
/*!40000 ALTER TABLE `ObjectTransfer` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `Page_ObjectBuy`
--

DROP TABLE IF EXISTS `Page_ObjectBuy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Page_ObjectBuy` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `PageID` int(11) NOT NULL DEFAULT 0,
  `ObjectBuyID` int(11) NOT NULL DEFAULT 0,
  `ObjectBuySellID` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `PageID` (`PageID`),
  KEY `ObjectBuyID` (`ObjectBuyID`),
  KEY `ObjectBuySellID` (`ObjectBuySellID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `Page_ObjectBuy`
--

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

--
-- Table structure for table `Page_ObjectSell`
--

DROP TABLE IF EXISTS `Page_ObjectSell`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Page_ObjectSell` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `PageID` int(11) NOT NULL DEFAULT 0,
  `ObjectSellID` int(11) NOT NULL DEFAULT 0,
  `ObjectBuySellID` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `PageID` (`PageID`),
  KEY `ObjectSellID` (`ObjectSellID`),
  KEY `ObjectBuySellID` (`ObjectBuySellID`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `Page_ObjectSell`
--

LOCK TABLES `Page_ObjectSell` WRITE;
/*!40000 ALTER TABLE `Page_ObjectSell` DISABLE KEYS */;
INSERT INTO `Page_ObjectSell` VALUES (1,1,0,1);
/*!40000 ALTER TABLE `Page_ObjectSell` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `Page_ObjectSource`
--

DROP TABLE IF EXISTS `Page_ObjectSource`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Page_ObjectSource` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `PageID` int(11) NOT NULL DEFAULT 0,
  `ObjectSourceID` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `PageID` (`PageID`),
  KEY `ObjectSourceID` (`ObjectSourceID`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `Page_ObjectSource`
--

LOCK TABLES `Page_ObjectSource` WRITE;
/*!40000 ALTER TABLE `Page_ObjectSource` DISABLE KEYS */;
INSERT INTO `Page_ObjectSource` VALUES (1,1,1),(2,1,2),(3,1,3),(4,1,4);
/*!40000 ALTER TABLE `Page_ObjectSource` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `Page_ObjectTransfer`
--

DROP TABLE IF EXISTS `Page_ObjectTransfer`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Page_ObjectTransfer` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `PageID` int(11) NOT NULL DEFAULT 0,
  `ObjectTransferID` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `PageID` (`PageID`),
  KEY `ObjectTransferID` (`ObjectTransferID`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `Page_ObjectTransfer`
--

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

--
-- Table structure for table `Page_Sources`
--

DROP TABLE IF EXISTS `Page_Sources`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Page_Sources` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `PageID` int(11) NOT NULL DEFAULT 0,
  `ObjectSourceID` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `PageID` (`PageID`),
  KEY `ObjectSourceID` (`ObjectSourceID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `Page_Sources`
--

LOCK TABLES `Page_Sources` WRITE;
/*!40000 ALTER TABLE `Page_Sources` DISABLE KEYS */;
/*!40000 ALTER TABLE `Page_Sources` 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` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `ClassName` enum('Permission') CHARACTER SET utf8 DEFAULT 'Permission',
  `Created` datetime DEFAULT NULL,
  `LastEdited` datetime DEFAULT NULL,
  `Code` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
  `Arg` int(11) NOT NULL DEFAULT 0,
  `Type` int(11) NOT NULL DEFAULT 1,
  `GroupID` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `GroupID` (`GroupID`),
  KEY `Code` (`Code`),
  KEY `ClassName` (`ClassName`)
) ENGINE=InnoDB AUTO_INCREMENT=6 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,'Permission','2015-04-20 14:53:59','2015-04-20 14:53:59','CMS_ACCESS_CMSMain',0,1,1),(2,'Permission','2015-04-20 14:53:59','2015-04-20 14:53:59','CMS_ACCESS_AssetAdmin',0,1,1),(3,'Permission','2015-04-20 14:53:59','2015-04-20 14:53:59','CMS_ACCESS_ReportAdmin',0,1,1),(4,'Permission','2015-04-20 14:53:59','2015-04-20 14:53:59','SITETREE_REORGANISE',0,1,1),(5,'Permission','2015-04-20 14:54:00','2015-04-20 14:54:00','ADMIN',0,1,2);
/*!40000 ALTER TABLE `Permission` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `PermissionRole`
--

DROP TABLE IF EXISTS `PermissionRole`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `PermissionRole` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `ClassName` enum('PermissionRole') CHARACTER SET utf8 DEFAULT 'PermissionRole',
  `Created` datetime DEFAULT NULL,
  `LastEdited` datetime DEFAULT NULL,
  `Title` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
  `OnlyAdminCanApply` tinyint(1) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `ClassName` (`ClassName`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `PermissionRole`
--

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

--
-- Table structure for table `PermissionRoleCode`
--

DROP TABLE IF EXISTS `PermissionRoleCode`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `PermissionRoleCode` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `ClassName` enum('PermissionRoleCode') CHARACTER SET utf8 DEFAULT 'PermissionRoleCode',
  `Created` datetime DEFAULT NULL,
  `LastEdited` datetime DEFAULT NULL,
  `Code` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
  `RoleID` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `RoleID` (`RoleID`),
  KEY `ClassName` (`ClassName`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `PermissionRoleCode`
--

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

--
-- Table structure for table `RedirectorPage`
--

DROP TABLE IF EXISTS `RedirectorPage`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `RedirectorPage` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `RedirectionType` enum('Internal','External') CHARACTER SET utf8 DEFAULT 'Internal',
  `ExternalURL` varchar(2083) CHARACTER SET utf8 DEFAULT NULL,
  `LinkToID` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `LinkToID` (`LinkToID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `RedirectorPage`
--

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

--
-- Table structure for table `RedirectorPage_Live`
--

DROP TABLE IF EXISTS `RedirectorPage_Live`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `RedirectorPage_Live` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `RedirectionType` enum('Internal','External') CHARACTER SET utf8 DEFAULT 'Internal',
  `ExternalURL` varchar(2083) CHARACTER SET utf8 DEFAULT NULL,
  `LinkToID` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `LinkToID` (`LinkToID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `RedirectorPage_Live`
--

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

--
-- Table structure for table `RedirectorPage_versions`
--

DROP TABLE IF EXISTS `RedirectorPage_versions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `RedirectorPage_versions` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `RecordID` int(11) NOT NULL DEFAULT 0,
  `Version` int(11) NOT NULL DEFAULT 0,
  `RedirectionType` enum('Internal','External') CHARACTER SET utf8 DEFAULT 'Internal',
  `ExternalURL` varchar(2083) CHARACTER SET utf8 DEFAULT NULL,
  `LinkToID` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  UNIQUE KEY `RecordID_Version` (`RecordID`,`Version`),
  KEY `RecordID` (`RecordID`),
  KEY `Version` (`Version`),
  KEY `LinkToID` (`LinkToID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `RedirectorPage_versions`
--

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

--
-- Table structure for table `SiteConfig`
--

DROP TABLE IF EXISTS `SiteConfig`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `SiteConfig` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `ClassName` enum('SiteConfig') CHARACTER SET utf8 DEFAULT 'SiteConfig',
  `Created` datetime DEFAULT NULL,
  `LastEdited` datetime DEFAULT NULL,
  `Title` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `Tagline` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `Theme` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `CanViewType` enum('Anyone','LoggedInUsers','OnlyTheseUsers') CHARACTER SET utf8 DEFAULT 'Anyone',
  `CanEditType` enum('LoggedInUsers','OnlyTheseUsers') CHARACTER SET utf8 DEFAULT 'LoggedInUsers',
  `CanCreateTopLevelType` enum('LoggedInUsers','OnlyTheseUsers') CHARACTER SET utf8 DEFAULT 'LoggedInUsers',
  PRIMARY KEY (`ID`),
  KEY `ClassName` (`ClassName`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `SiteConfig`
--

LOCK TABLES `SiteConfig` WRITE;
/*!40000 ALTER TABLE `SiteConfig` DISABLE KEYS */;
INSERT INTO `SiteConfig` VALUES (1,'SiteConfig','2015-04-20 14:54:00','2015-04-20 14:54:00','Your Site Name','your tagline here',NULL,'Anyone','LoggedInUsers','LoggedInUsers');
/*!40000 ALTER TABLE `SiteConfig` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `SiteConfig_CreateTopLevelGroups`
--

DROP TABLE IF EXISTS `SiteConfig_CreateTopLevelGroups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `SiteConfig_CreateTopLevelGroups` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `SiteConfigID` int(11) NOT NULL DEFAULT 0,
  `GroupID` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `SiteConfigID` (`SiteConfigID`),
  KEY `GroupID` (`GroupID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `SiteConfig_CreateTopLevelGroups`
--

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

--
-- Table structure for table `SiteConfig_EditorGroups`
--

DROP TABLE IF EXISTS `SiteConfig_EditorGroups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `SiteConfig_EditorGroups` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `SiteConfigID` int(11) NOT NULL DEFAULT 0,
  `GroupID` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `SiteConfigID` (`SiteConfigID`),
  KEY `GroupID` (`GroupID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `SiteConfig_EditorGroups`
--

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

--
-- Table structure for table `SiteConfig_ViewerGroups`
--

DROP TABLE IF EXISTS `SiteConfig_ViewerGroups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `SiteConfig_ViewerGroups` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `SiteConfigID` int(11) NOT NULL DEFAULT 0,
  `GroupID` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `SiteConfigID` (`SiteConfigID`),
  KEY `GroupID` (`GroupID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `SiteConfig_ViewerGroups`
--

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

--
-- Table structure for table `SiteTree`
--

DROP TABLE IF EXISTS `SiteTree`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `SiteTree` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `ClassName` enum('SiteTree','Page','ChartsPage','StatementPage','ErrorPage','RedirectorPage','VirtualPage') CHARACTER SET utf8 DEFAULT 'SiteTree',
  `Created` datetime DEFAULT NULL,
  `LastEdited` datetime DEFAULT NULL,
  `URLSegment` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `Title` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `MenuTitle` varchar(100) CHARACTER SET utf8 DEFAULT NULL,
  `Content` mediumtext CHARACTER SET utf8 DEFAULT NULL,
  `MetaDescription` mediumtext CHARACTER SET utf8 DEFAULT NULL,
  `ExtraMeta` mediumtext CHARACTER SET utf8 DEFAULT NULL,
  `ShowInMenus` tinyint(1) unsigned NOT NULL DEFAULT 0,
  `ShowInSearch` tinyint(1) unsigned NOT NULL DEFAULT 0,
  `Sort` int(11) NOT NULL DEFAULT 0,
  `HasBrokenFile` tinyint(1) unsigned NOT NULL DEFAULT 0,
  `HasBrokenLink` tinyint(1) unsigned NOT NULL DEFAULT 0,
  `ReportClass` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
  `CanViewType` enum('Anyone','LoggedInUsers','OnlyTheseUsers','Inherit') CHARACTER SET utf8 DEFAULT 'Inherit',
  `CanEditType` enum('LoggedInUsers','OnlyTheseUsers','Inherit') CHARACTER SET utf8 DEFAULT 'Inherit',
  `Version` int(11) NOT NULL DEFAULT 0,
  `ParentID` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `ParentID` (`ParentID`),
  KEY `URLSegment` (`URLSegment`),
  KEY `ClassName` (`ClassName`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `SiteTree`
--

LOCK TABLES `SiteTree` WRITE;
/*!40000 ALTER TABLE `SiteTree` DISABLE KEYS */;
INSERT INTO `SiteTree` VALUES (1,'StatementPage','2015-04-20 14:54:00','2015-05-09 15:14:01','statement','Statement',NULL,'<p>Buy / Sell</p>',NULL,NULL,1,1,1,0,0,NULL,'OnlyTheseUsers','Inherit',7,0),(4,'ErrorPage','2015-04-20 14:54:00','2015-04-20 14:54:00','page-not-found','Page not found',NULL,'<p>Sorry, it seems you were trying to access a page that doesn\'t exist.</p><p>Please check the spelling of the URL you were trying to access and try again.</p>',NULL,NULL,0,0,4,0,0,NULL,'Inherit','Inherit',1,0),(5,'ErrorPage','2015-04-20 14:54:00','2015-04-20 14:54:00','server-error','Server error',NULL,'<p>Sorry, there was a problem with handling your request.</p>',NULL,NULL,0,0,5,0,0,NULL,'Inherit','Inherit',1,0),(7,'ChartsPage','2015-05-09 15:04:22','2015-05-09 15:04:33','charts','charts',NULL,NULL,NULL,NULL,1,1,1,0,0,NULL,'Inherit','Inherit',2,1),(8,'Page','2015-05-12 14:13:04','2015-05-12 14:13:04','home','Home',NULL,'<p>Welcome to SilverStripe! This is the default homepage. You can edit this page by opening <a href=\"admin/\">the CMS</a>. You can now access the <a href=\"http://doc.silverstripe.org\">developer documentation</a>, or begin <a href=\"http://doc.silverstripe.org/doku.php?id=tutorials\">the tutorials.</a></p>',NULL,NULL,1,1,1,0,0,NULL,'Inherit','Inherit',1,0);
/*!40000 ALTER TABLE `SiteTree` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `SiteTree_EditorGroups`
--

DROP TABLE IF EXISTS `SiteTree_EditorGroups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `SiteTree_EditorGroups` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `SiteTreeID` int(11) NOT NULL DEFAULT 0,
  `GroupID` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `SiteTreeID` (`SiteTreeID`),
  KEY `GroupID` (`GroupID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `SiteTree_EditorGroups`
--

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

--
-- Table structure for table `SiteTree_ImageTracking`
--

DROP TABLE IF EXISTS `SiteTree_ImageTracking`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `SiteTree_ImageTracking` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `SiteTreeID` int(11) NOT NULL DEFAULT 0,
  `FileID` int(11) NOT NULL DEFAULT 0,
  `FieldName` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
  PRIMARY KEY (`ID`),
  KEY `SiteTreeID` (`SiteTreeID`),
  KEY `FileID` (`FileID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `SiteTree_ImageTracking`
--

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

--
-- Table structure for table `SiteTree_LinkTracking`
--

DROP TABLE IF EXISTS `SiteTree_LinkTracking`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `SiteTree_LinkTracking` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `SiteTreeID` int(11) NOT NULL DEFAULT 0,
  `ChildID` int(11) NOT NULL DEFAULT 0,
  `FieldName` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
  PRIMARY KEY (`ID`),
  KEY `SiteTreeID` (`SiteTreeID`),
  KEY `ChildID` (`ChildID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `SiteTree_LinkTracking`
--

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

--
-- Table structure for table `SiteTree_Live`
--

DROP TABLE IF EXISTS `SiteTree_Live`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `SiteTree_Live` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `ClassName` enum('SiteTree','Page','ChartsPage','StatementPage','ErrorPage','RedirectorPage','VirtualPage') CHARACTER SET utf8 DEFAULT 'SiteTree',
  `Created` datetime DEFAULT NULL,
  `LastEdited` datetime DEFAULT NULL,
  `URLSegment` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `Title` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `MenuTitle` varchar(100) CHARACTER SET utf8 DEFAULT NULL,
  `Content` mediumtext CHARACTER SET utf8 DEFAULT NULL,
  `MetaDescription` mediumtext CHARACTER SET utf8 DEFAULT NULL,
  `ExtraMeta` mediumtext CHARACTER SET utf8 DEFAULT NULL,
  `ShowInMenus` tinyint(1) unsigned NOT NULL DEFAULT 0,
  `ShowInSearch` tinyint(1) unsigned NOT NULL DEFAULT 0,
  `Sort` int(11) NOT NULL DEFAULT 0,
  `HasBrokenFile` tinyint(1) unsigned NOT NULL DEFAULT 0,
  `HasBrokenLink` tinyint(1) unsigned NOT NULL DEFAULT 0,
  `ReportClass` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
  `CanViewType` enum('Anyone','LoggedInUsers','OnlyTheseUsers','Inherit') CHARACTER SET utf8 DEFAULT 'Inherit',
  `CanEditType` enum('LoggedInUsers','OnlyTheseUsers','Inherit') CHARACTER SET utf8 DEFAULT 'Inherit',
  `Version` int(11) NOT NULL DEFAULT 0,
  `ParentID` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `ParentID` (`ParentID`),
  KEY `URLSegment` (`URLSegment`),
  KEY `ClassName` (`ClassName`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `SiteTree_Live`
--

LOCK TABLES `SiteTree_Live` WRITE;
/*!40000 ALTER TABLE `SiteTree_Live` DISABLE KEYS */;
INSERT INTO `SiteTree_Live` VALUES (1,'StatementPage','2015-04-20 14:54:00','2015-05-09 15:14:01','statement','Statement',NULL,'<p>Buy / Sell</p>',NULL,NULL,1,1,1,0,0,NULL,'OnlyTheseUsers','Inherit',7,0),(4,'ErrorPage','2015-04-20 14:54:00','2015-04-20 14:54:00','page-not-found','Page not found',NULL,'<p>Sorry, it seems you were trying to access a page that doesn\'t exist.</p><p>Please check the spelling of the URL you were trying to access and try again.</p>',NULL,NULL,0,0,4,0,0,NULL,'Inherit','Inherit',1,0),(5,'ErrorPage','2015-04-20 14:54:00','2015-04-20 14:54:00','server-error','Server error',NULL,'<p>Sorry, there was a problem with handling your request.</p>',NULL,NULL,0,0,5,0,0,NULL,'Inherit','Inherit',1,0),(7,'ChartsPage','2015-05-09 15:04:22','2015-05-09 15:04:33','charts','charts',NULL,NULL,NULL,NULL,1,1,1,0,0,NULL,'Inherit','Inherit',2,1),(8,'Page','2015-05-12 14:13:04','2015-05-12 14:13:04','home','Home',NULL,'<p>Welcome to SilverStripe! This is the default homepage. You can edit this page by opening <a href=\"admin/\">the CMS</a>. You can now access the <a href=\"http://doc.silverstripe.org\">developer documentation</a>, or begin <a href=\"http://doc.silverstripe.org/doku.php?id=tutorials\">the tutorials.</a></p>',NULL,NULL,1,1,1,0,0,NULL,'Inherit','Inherit',1,0);
/*!40000 ALTER TABLE `SiteTree_Live` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `SiteTree_ViewerGroups`
--

DROP TABLE IF EXISTS `SiteTree_ViewerGroups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `SiteTree_ViewerGroups` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `SiteTreeID` int(11) NOT NULL DEFAULT 0,
  `GroupID` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `SiteTreeID` (`SiteTreeID`),
  KEY `GroupID` (`GroupID`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `SiteTree_ViewerGroups`
--

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

--
-- Table structure for table `SiteTree_versions`
--

DROP TABLE IF EXISTS `SiteTree_versions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `SiteTree_versions` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `RecordID` int(11) NOT NULL DEFAULT 0,
  `Version` int(11) NOT NULL DEFAULT 0,
  `WasPublished` tinyint(1) unsigned NOT NULL DEFAULT 0,
  `AuthorID` int(11) NOT NULL DEFAULT 0,
  `PublisherID` int(11) NOT NULL DEFAULT 0,
  `ClassName` enum('SiteTree','Page','ChartsPage','StatementPage','ErrorPage','RedirectorPage','VirtualPage') CHARACTER SET utf8 DEFAULT 'SiteTree',
  `Created` datetime DEFAULT NULL,
  `LastEdited` datetime DEFAULT NULL,
  `URLSegment` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `Title` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `MenuTitle` varchar(100) CHARACTER SET utf8 DEFAULT NULL,
  `Content` mediumtext CHARACTER SET utf8 DEFAULT NULL,
  `MetaDescription` mediumtext CHARACTER SET utf8 DEFAULT NULL,
  `ExtraMeta` mediumtext CHARACTER SET utf8 DEFAULT NULL,
  `ShowInMenus` tinyint(1) unsigned NOT NULL DEFAULT 0,
  `ShowInSearch` tinyint(1) unsigned NOT NULL DEFAULT 0,
  `Sort` int(11) NOT NULL DEFAULT 0,
  `HasBrokenFile` tinyint(1) unsigned NOT NULL DEFAULT 0,
  `HasBrokenLink` tinyint(1) unsigned NOT NULL DEFAULT 0,
  `ReportClass` varchar(50) CHARACTER SET utf8 DEFAULT NULL,
  `CanViewType` enum('Anyone','LoggedInUsers','OnlyTheseUsers','Inherit') CHARACTER SET utf8 DEFAULT 'Inherit',
  `CanEditType` enum('LoggedInUsers','OnlyTheseUsers','Inherit') CHARACTER SET utf8 DEFAULT 'Inherit',
  `ParentID` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `RecordID_Version` (`RecordID`,`Version`),
  KEY `RecordID` (`RecordID`),
  KEY `Version` (`Version`),
  KEY `AuthorID` (`AuthorID`),
  KEY `PublisherID` (`PublisherID`),
  KEY `ParentID` (`ParentID`),
  KEY `URLSegment` (`URLSegment`),
  KEY `ClassName` (`ClassName`)
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `SiteTree_versions`
--

LOCK TABLES `SiteTree_versions` WRITE;
/*!40000 ALTER TABLE `SiteTree_versions` DISABLE KEYS */;
INSERT INTO `SiteTree_versions` VALUES (1,1,1,1,1,1,'Page','2015-04-20 14:54:00','2015-04-20 14:54:00','home','Home',NULL,'<p>Welcome to SilverStripe! This is the default homepage. You can edit this page by opening <a href=\"admin/\">the CMS</a>. You can now access the <a href=\"http://doc.silverstripe.org\">developer documentation</a>, or begin <a href=\"http://doc.silverstripe.org/doku.php?id=tutorials\">the tutorials.</a></p>',NULL,NULL,1,1,1,0,0,NULL,'Inherit','Inherit',0),(2,2,1,1,1,1,'Page','2015-04-20 14:54:00','2015-04-20 14:54:00','about-us','About Us',NULL,'<p>You can fill this page out with your own content, or delete it and create your own pages.<br /></p>',NULL,NULL,1,1,2,0,0,NULL,'Inherit','Inherit',0),(3,3,1,1,1,1,'Page','2015-04-20 14:54:00','2015-04-20 14:54:00','contact-us','Contact Us',NULL,'<p>You can fill this page out with your own content, or delete it and create your own pages.<br /></p>',NULL,NULL,1,1,3,0,0,NULL,'Inherit','Inherit',0),(4,4,1,1,1,1,'ErrorPage','2015-04-20 14:54:00','2015-04-20 14:54:00','page-not-found','Page not found',NULL,'<p>Sorry, it seems you were trying to access a page that doesn\'t exist.</p><p>Please check the spelling of the URL you were trying to access and try again.</p>',NULL,NULL,0,0,4,0,0,NULL,'Inherit','Inherit',0),(5,5,1,1,1,1,'ErrorPage','2015-04-20 14:54:00','2015-04-20 14:54:00','server-error','Server error',NULL,'<p>Sorry, there was a problem with handling your request.</p>',NULL,NULL,0,0,5,0,0,NULL,'Inherit','Inherit',0),(6,1,2,1,1,1,'Page','2015-04-20 14:54:00','2015-04-20 15:09:25','home','Home',NULL,'<p>Buy/Sells</p>',NULL,NULL,1,1,1,0,0,NULL,'Inherit','Inherit',0),(7,1,3,1,1,1,'Page','2015-04-20 14:54:00','2015-04-20 15:14:27','home','Home',NULL,'Buy / Sell',NULL,NULL,1,1,1,0,0,NULL,'Inherit','Inherit',0),(8,1,4,1,1,1,'Page','2015-04-20 14:54:00','2015-04-20 17:18:57','home','Home',NULL,'Buy / Sell',NULL,NULL,1,1,1,0,0,NULL,'OnlyTheseUsers','Inherit',0),(9,1,5,1,1,1,'StatementPage','2015-04-20 14:54:00','2015-05-09 15:00:33','home','Home',NULL,'Buy / Sell',NULL,NULL,1,1,1,0,0,NULL,'OnlyTheseUsers','Inherit',0),(10,1,6,1,1,1,'StatementPage','2015-04-20 14:54:00','2015-05-09 15:00:43','statement','Home',NULL,'<p>Buy / Sell</p>',NULL,NULL,1,1,1,0,0,NULL,'OnlyTheseUsers','Inherit',0),(11,6,1,1,1,1,'Page','2015-05-09 15:04:14','2015-05-09 15:04:14','home','Home',NULL,'<p>Welcome to SilverStripe! This is the default homepage. You can edit this page by opening <a href=\"admin/\">the CMS</a>. You can now access the <a href=\"http://doc.silverstripe.org\">developer documentation</a>, or begin <a href=\"http://doc.silverstripe.org/doku.php?id=tutorials\">the tutorials.</a></p>',NULL,NULL,1,1,1,0,0,NULL,'Inherit','Inherit',0),(12,7,1,0,1,0,'ChartsPage','2015-05-09 15:04:22','2015-05-09 15:04:22','new-charts-page','New Charts Page',NULL,NULL,NULL,NULL,1,1,1,0,0,NULL,'Inherit','Inherit',1),(13,7,2,1,1,1,'ChartsPage','2015-05-09 15:04:22','2015-05-09 15:04:33','charts','charts',NULL,NULL,NULL,NULL,1,1,1,0,0,NULL,'Inherit','Inherit',1),(14,1,7,1,1,1,'StatementPage','2015-04-20 14:54:00','2015-05-09 15:14:01','statement','Statement',NULL,'<p>Buy / Sell</p>',NULL,NULL,1,1,1,0,0,NULL,'OnlyTheseUsers','Inherit',0),(15,8,1,1,1,1,'Page','2015-05-12 14:13:04','2015-05-12 14:13:04','home','Home',NULL,'<p>Welcome to SilverStripe! This is the default homepage. You can edit this page by opening <a href=\"admin/\">the CMS</a>. You can now access the <a href=\"http://doc.silverstripe.org\">developer documentation</a>, or begin <a href=\"http://doc.silverstripe.org/doku.php?id=tutorials\">the tutorials.</a></p>',NULL,NULL,1,1,1,0,0,NULL,'Inherit','Inherit',0);
/*!40000 ALTER TABLE `SiteTree_versions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `VirtualPage`
--

DROP TABLE IF EXISTS `VirtualPage`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `VirtualPage` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `VersionID` int(11) NOT NULL DEFAULT 0,
  `CopyContentFromID` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `CopyContentFromID` (`CopyContentFromID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `VirtualPage`
--

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

--
-- Table structure for table `VirtualPage_Live`
--

DROP TABLE IF EXISTS `VirtualPage_Live`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `VirtualPage_Live` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `VersionID` int(11) NOT NULL DEFAULT 0,
  `CopyContentFromID` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `CopyContentFromID` (`CopyContentFromID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `VirtualPage_Live`
--

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

--
-- Table structure for table `VirtualPage_versions`
--

DROP TABLE IF EXISTS `VirtualPage_versions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `VirtualPage_versions` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `RecordID` int(11) NOT NULL DEFAULT 0,
  `Version` int(11) NOT NULL DEFAULT 0,
  `VersionID` int(11) NOT NULL DEFAULT 0,
  `CopyContentFromID` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  UNIQUE KEY `RecordID_Version` (`RecordID`,`Version`),
  KEY `RecordID` (`RecordID`),
  KEY `Version` (`Version`),
  KEY `CopyContentFromID` (`CopyContentFromID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `VirtualPage_versions`
--

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

--
-- Table structure for table `_obsolete_ObjectBuy`
--

DROP TABLE IF EXISTS `_obsolete_ObjectBuy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `_obsolete_ObjectBuy` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `ClassName` enum('ObjectBuy') CHARACTER SET utf8 DEFAULT 'ObjectBuy',
  `Created` datetime DEFAULT NULL,
  `LastEdited` datetime DEFAULT NULL,
  `Source` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `Amount_USD` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  PRIMARY KEY (`ID`),
  KEY `ClassName` (`ClassName`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `_obsolete_ObjectBuy`
--

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

--
-- Table structure for table `_obsolete_ObjectSell`
--

DROP TABLE IF EXISTS `_obsolete_ObjectSell`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `_obsolete_ObjectSell` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `ClassName` enum('ObjectSell') CHARACTER SET utf8 DEFAULT 'ObjectSell',
  `Created` datetime DEFAULT NULL,
  `LastEdited` datetime DEFAULT NULL,
  `Source` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `Amount_USD` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  PRIMARY KEY (`ID`),
  KEY `ClassName` (`ClassName`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `_obsolete_ObjectSell`
--

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

--
-- Table structure for table `_obsolete_ObjectSell2`
--

DROP TABLE IF EXISTS `_obsolete_ObjectSell2`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `_obsolete_ObjectSell2` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `ObjectBuyID` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `ObjectBuyID` (`ObjectBuyID`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `_obsolete_ObjectSell2`
--

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

--
-- Table structure for table `_obsolete_ObjectSell3`
--

DROP TABLE IF EXISTS `_obsolete_ObjectSell3`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `_obsolete_ObjectSell3` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `ObjectBuyID` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `ObjectBuyID` (`ObjectBuyID`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `_obsolete_ObjectSell3`
--

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

--
-- Table structure for table `_obsolete_ObjectSell4`
--

DROP TABLE IF EXISTS `_obsolete_ObjectSell4`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `_obsolete_ObjectSell4` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `ObjectBuyID` int(11) NOT NULL DEFAULT 0,
  `ObjectSourceID` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `ObjectBuyID` (`ObjectBuyID`),
  KEY `ObjectSourceID` (`ObjectSourceID`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `_obsolete_ObjectSell4`
--

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

--
-- Table structure for table `_obsolete_ObjectSell5`
--

DROP TABLE IF EXISTS `_obsolete_ObjectSell5`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `_obsolete_ObjectSell5` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `ObjectBuyID` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `ObjectBuyID` (`ObjectBuyID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `_obsolete_ObjectSell5`
--

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

--
-- Table structure for table `_obsolete_ObjectSell6`
--

DROP TABLE IF EXISTS `_obsolete_ObjectSell6`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `_obsolete_ObjectSell6` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `ObjectBuyID` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `ObjectBuyID` (`ObjectBuyID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `_obsolete_ObjectSell6`
--

LOCK TABLES `_obsolete_ObjectSell6` WRITE;
/*!40000 ALTER TABLE `_obsolete_ObjectSell6` DISABLE KEYS */;
/*!40000 ALTER TABLE `_obsolete_ObjectSell6` 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 2022-07-05 23:55:19
