-- MySQL dump 10.11
--
-- Host: localhost    Database: fulvacom_AP
-- ------------------------------------------------------
-- Server version	5.0.92-community

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `asp_accounts`
--

DROP TABLE IF EXISTS `asp_accounts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `asp_accounts` (
  `account_id` int(11) NOT NULL auto_increment,
  `account_user` varchar(255) NOT NULL default '',
  `account_pass` varchar(255) NOT NULL default '',
  `account_email` varchar(255) NOT NULL default '',
  `account_timestamp` int(11) NOT NULL,
  `active` tinyint(4) NOT NULL default '1',
  PRIMARY KEY  (`account_id`),
  UNIQUE KEY `account_user` (`account_user`),
  UNIQUE KEY `account_email` (`account_email`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `asp_accounts`
--

LOCK TABLES `asp_accounts` WRITE;
/*!40000 ALTER TABLE `asp_accounts` DISABLE KEYS */;
INSERT INTO `asp_accounts` (`account_id`, `account_user`, `account_pass`, `account_email`, `account_timestamp`, `active`) VALUES (1,'Dancemaster','passw0rd','pugheq9i@googlemail.com',1275767535,1);
/*!40000 ALTER TABLE `asp_accounts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `asp_admin`
--

DROP TABLE IF EXISTS `asp_admin`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `asp_admin` (
  `admin_id` int(11) NOT NULL auto_increment,
  `username` varchar(255) NOT NULL default '',
  `password` varchar(255) NOT NULL default '',
  `admin_email` varchar(255) NOT NULL,
  PRIMARY KEY  (`admin_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `asp_admin`
--

LOCK TABLES `asp_admin` WRITE;
/*!40000 ALTER TABLE `asp_admin` DISABLE KEYS */;
INSERT INTO `asp_admin` (`admin_id`, `username`, `password`, `admin_email`) VALUES (1,'admin','0hwZtqqkHd6bpA2uh6a0TyFgXMeSzv1MXkEs83dtTLE=','fulva57-2@yahoo.co.uk');
/*!40000 ALTER TABLE `asp_admin` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `asp_proxy`
--

DROP TABLE IF EXISTS `asp_proxy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `asp_proxy` (
  `proxy_id` int(11) NOT NULL auto_increment,
  `proxy_ip` varchar(255) NOT NULL default '',
  `proxy_port` int(11) NOT NULL,
  `proxy_type` tinyint(4) NOT NULL default '0',
  `proxy_auth` tinyint(4) NOT NULL default '0',
  `proxy_username` varchar(255) NOT NULL default '',
  `proxy_password` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`proxy_id`),
  UNIQUE KEY `proxy_ip` (`proxy_ip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `asp_proxy`
--

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

--
-- Table structure for table `asp_reports`
--

DROP TABLE IF EXISTS `asp_reports`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `asp_reports` (
  `report_id` int(11) NOT NULL auto_increment,
  `keyword` varchar(255) NOT NULL default '',
  `account_id` int(11) NOT NULL,
  `video_url` varchar(255) NOT NULL default '',
  `video_title` varchar(255) NOT NULL default '',
  `posted` tinyint(4) NOT NULL default '0',
  `timestamp` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`report_id`),
  UNIQUE KEY `video_url` (`video_url`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `asp_reports`
--

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

--
-- Table structure for table `asp_settings`
--

DROP TABLE IF EXISTS `asp_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `asp_settings` (
  `SETTING_ID` int(11) NOT NULL auto_increment,
  `ROOT_URL` varchar(255) NOT NULL,
  `INSTALLATION_TYPE` varchar(255) NOT NULL,
  `HASH` varchar(255) NOT NULL,
  `LE` varchar(255) NOT NULL,
  `LCD` varchar(255) NOT NULL,
  `LCDS` varchar(255) NOT NULL,
  `LCDSR` varchar(255) NOT NULL,
  `LCDSM` text NOT NULL,
  `USER_AGENT` varchar(255) NOT NULL,
  `ADMIN_EMAIL` varchar(255) NOT NULL,
  `CUSTOM_POSTING` tinyint(4) NOT NULL default '0',
  `RANDOM_POSTING` tinyint(4) NOT NULL default '0',
  `RESUBMIT_URLS` tinyint(4) NOT NULL default '0',
  `USE_PROXY` tinyint(4) NOT NULL default '0',
  `FORCED_STOP` tinyint(4) NOT NULL default '0',
  `RECORDS_ON_ADMIN_PAGE` int(11) NOT NULL default '50',
  `MODULE_BONDAGETUBE` tinyint(4) NOT NULL default '0',
  `MODULE_EXTREMETUBE` tinyint(4) NOT NULL default '0',
  `MODULE_GAYTUBE` tinyint(4) NOT NULL default '0',
  `MODULE_YOUJIZZ` tinyint(4) NOT NULL default '0',
  `MODULE_LUBETUBE` tinyint(4) NOT NULL default '0',
  `MODULE_REDTUBE` tinyint(4) NOT NULL default '0',
  `MODULE_RUDE` tinyint(4) NOT NULL default '0',
  `MODULE_SLUTLOAD` tinyint(4) NOT NULL default '0',
  `MODULE_TUBE8` tinyint(4) NOT NULL default '0',
  `MODULE_XVIDEOS` tinyint(4) NOT NULL default '0',
  PRIMARY KEY  (`SETTING_ID`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `asp_settings`
--

LOCK TABLES `asp_settings` WRITE;
/*!40000 ALTER TABLE `asp_settings` DISABLE KEYS */;
INSERT INTO `asp_settings` (`SETTING_ID`, `ROOT_URL`, `INSTALLATION_TYPE`, `HASH`, `LE`, `LCD`, `LCDS`, `LCDSR`, `LCDSM`, `USER_AGENT`, `ADMIN_EMAIL`, `CUSTOM_POSTING`, `RANDOM_POSTING`, `RESUBMIT_URLS`, `USE_PROXY`, `FORCED_STOP`, `RECORDS_ON_ADMIN_PAGE`, `MODULE_BONDAGETUBE`, `MODULE_EXTREMETUBE`, `MODULE_GAYTUBE`, `MODULE_YOUJIZZ`, `MODULE_LUBETUBE`, `MODULE_REDTUBE`, `MODULE_RUDE`, `MODULE_SLUTLOAD`, `MODULE_TUBE8`, `MODULE_XVIDEOS`) VALUES (1,'http://ap.fulva.com','standalone','1275766896','HOryTSTXGLeVwCF3lfLuFtjmJ32Cjjj1aSeWzUi7+jY=','o1O1EinMYHhHky/JZAR1ZQABplIVXYy+AW/W9xVX/9Y=','o1O1EinMYHhHky/JZAR1ZQABplIVXYy+AW/W9xVX/9Y=','uYUISbKvUHO6w7S9JMqeswhr7jxmsENObRoHFWGsVaU=','/utHzDDbJPcS//wPwgWdQ719s8zte3KlYca9TX6Tiwo=','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)','fulva57-2@yahoo.co.uk',0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0);
/*!40000 ALTER TABLE `asp_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `asp_urls`
--

DROP TABLE IF EXISTS `asp_urls`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `asp_urls` (
  `url_id` int(11) NOT NULL auto_increment,
  `video_url` varchar(255) NOT NULL default '',
  `url_asp` tinyint(4) NOT NULL default '0',
  `url_timestamp` int(11) NOT NULL,
  PRIMARY KEY  (`url_id`),
  UNIQUE KEY `video_url` (`video_url`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `asp_urls`
--

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

--
-- Table structure for table `comments`
--

DROP TABLE IF EXISTS `comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `comments` (
  `comment_id` int(11) NOT NULL auto_increment,
  `account_id` int(11) NOT NULL,
  `comment_text` text NOT NULL,
  PRIMARY KEY  (`comment_id`)
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `comments`
--

LOCK TABLES `comments` WRITE;
/*!40000 ALTER TABLE `comments` DISABLE KEYS */;
INSERT INTO `comments` (`comment_id`, `account_id`, `comment_text`) VALUES (1,1,'Anyone got any more like this please post them...'),(2,1,'Wow, what babe, has she done any others?'),(3,1,'Dammm I want to be right in the middle of that!'),(4,1,'That gave me a boner straight off!'),(5,1,'Hot and nice video'),(6,1,'Steamin vid'),(7,1,'man that was hot'),(8,1,'I\\\'d like a piece of that action...'),(9,1,'%TITLE% I just love this one');
/*!40000 ALTER TABLE `comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `keywords`
--

DROP TABLE IF EXISTS `keywords`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `keywords` (
  `keyword_id` int(11) NOT NULL auto_increment,
  `keyword` varchar(255) NOT NULL default '',
  `asp` tinyint(4) NOT NULL default '0',
  `timestamp` int(11) NOT NULL,
  PRIMARY KEY  (`keyword_id`),
  UNIQUE KEY `keyword` (`keyword`)
) ENGINE=MyISAM AUTO_INCREMENT=131 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `keywords`
--

LOCK TABLES `keywords` WRITE;
/*!40000 ALTER TABLE `keywords` DISABLE KEYS */;
INSERT INTO `keywords` (`keyword_id`, `keyword`, `asp`, `timestamp`) VALUES (1,'amateur',0,0),(2,'anal',0,0),(3,'anime',0,0),(4,'asian',0,0),(5,'ass',0,0),(6,'babes',0,0),(7,'babysitter',0,0),(8,'bbw',0,0),(9,'bdsm',0,0),(10,'bear',0,0),(11,'bisexual',0,0),(12,'bitches',0,0),(13,'black',0,0),(14,'black woman',0,0),(15,'blonde',0,0),(16,'blowjob',0,0),(17,'blowjobs',0,0),(18,'bondage',0,0),(19,'boobs',0,0),(20,'brunette',0,0),(21,'bukkake',0,0),(22,'busty',0,0),(23,'cartoon',0,0),(24,'casting',0,0),(25,'celebrity',0,0),(26,'cheerleaders',0,0),(27,'chinese',0,0),(28,'chubby',0,0),(29,'cock',0,0),(30,'college',0,0),(31,'couple',0,0),(32,'creampie',0,0),(33,'cum shots',0,0),(34,'cumshot',0,0),(35,'dicks',0,0),(36,'dildo',0,0),(37,'doggystyle',0,0),(38,'dorm',0,0),(39,'double penetration',0,0),(40,'drunk',0,0),(41,'ebony',0,0),(42,'erotic',0,0),(43,'facial',0,0),(44,'fat',0,0),(45,'feet',0,0),(46,'fem dom',0,0),(47,'femdom',0,0),(48,'fetish',0,0),(49,'fisting',0,0),(50,'fucking',0,0),(51,'gang bang',0,0),(52,'gangbang',0,0),(53,'gay',0,0),(54,'german',0,0),(55,'girls',0,0),(56,'granny',0,0),(57,'group',0,0),(58,'group sex',0,0),(59,'guys',0,0),(60,'hairy',0,0),(61,'handjob',0,0),(62,'hardcore',0,0),(63,'heels',0,0),(64,'hentai',0,0),(65,'hentaiamateur',0,0),(66,'hotel',0,0),(67,'housewives',0,0),(68,'huge tits',0,0),(69,'indian',0,0),(70,'interracial',0,0),(71,'japanese',0,0),(72,'latina',0,0),(73,'latino',0,0),(74,'leather',0,0),(75,'legs',0,0),(76,'lesbian',0,0),(77,'lesbians',0,0),(78,'massage',0,0),(79,'masturbation',0,0),(80,'mature',0,0),(81,'milf',0,0),(82,'mommy',0,0),(83,'monster cock',0,0),(84,'mouth',0,0),(85,'oiled',0,0),(86,'oral',0,0),(87,'orgy',0,0),(88,'pantyhose',0,0),(89,'party',0,0),(90,'peeing',0,0),(91,'petite',0,0),(92,'popular categories',0,0),(93,'pornstar',0,0),(94,'pornstars',0,0),(95,'pregnant',0,0),(96,'public',0,0),(97,'red heads',0,0),(98,'redhead',0,0),(99,'russian',0,0),(100,'saudi',0,0),(101,'schoolgirls',0,0),(102,'sex',0,0),(103,'sex cam',0,0),(104,'sexy',0,0),(105,'shaved pussy',0,0),(106,'shemale',0,0),(107,'small tits',0,0),(108,'smoking',0,0),(109,'solo',0,0),(110,'solo girl',0,0),(111,'spanking',0,0),(112,'squirt',0,0),(113,'squirting',0,0),(114,'stockings',0,0),(115,'strap-on',0,0),(116,'strip',0,0),(117,'striptease',0,0),(118,'swingers',0,0),(119,'teen',0,0),(120,'tits',0,0),(121,'toys',0,0),(122,'tranny',0,0),(123,'twink',0,0),(124,'upskirt',0,0),(125,'upskirt/panties',0,0),(126,'virgin',0,0),(127,'voyeur',0,0),(128,'webcam',0,0),(129,'wife',0,0),(130,'woman',0,0);
/*!40000 ALTER TABLE `keywords` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Dumping routines for database 'fulvacom_AP'
--
DELIMITER ;;
DELIMITER ;
/*!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 2011-10-04  1:05:21

