Login   Register  
PHP Classes
elePHPant
Icontem

File: safedump.sql

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Chris Ravenscroft  >  NBBS Wizard  >  safedump.sql  >  Download  
File: safedump.sql
Role: Example script
Content type: text/plain
Description: Sample SQL data
Class: NBBS Wizard
Create installation wizard pages
Author: By
Last change:
Date: 2005-08-24 18:28
Size: 263,064 bytes
 

Contents

Class file image Download
-- MySQL dump 10.9
--
-- Host: localhost    Database: cboard
-- ------------------------------------------------------
-- Server version	4.1.12

/*!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 */;
/*!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' */;

--
-- Table structure for table `chris_acls`
--

DROP TABLE IF EXISTS `chris_acls`;
CREATE TABLE `chris_acls` (
  `acl_ID` int(10) NOT NULL auto_increment,
  `acl_area` int(10) default NULL,
  `acl_group` int(10) default NULL,
  `canread` tinyint(1) default NULL,
  `canwrite` tinyint(1) default NULL,
  `canstart` tinyint(1) default NULL,
  `cansee` tinyint(1) default NULL,
  `canmod` tinyint(1) default NULL,
  `server` int(10) default NULL,
  KEY `acl_ID` (`acl_ID`),
  KEY `groups` (`acl_group`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `chris_acls`
--


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

--
-- Table structure for table `chris_areas`
--

DROP TABLE IF EXISTS `chris_areas`;
CREATE TABLE `chris_areas` (
  `area_ID` int(11) NOT NULL auto_increment,
  `parent` int(10) default NULL,
  `area_title` varchar(255) default NULL,
  `area_description` varchar(255) default NULL,
  `icon` varchar(255) default NULL,
  `server` int(10) default NULL,
  `area_topics` int(10) default NULL,
  `area_replies` int(10) default NULL,
  `last_topic_id` int(10) default NULL,
  `last_topic_title` varchar(255) default NULL,
  `last_topic_date` int(10) default NULL,
  `last_author_id` int(10) default NULL,
  `last_author_name` varchar(255) default NULL,
  `area_order` int(10) default NULL,
  `redirect` tinyint(1) default '0',
  `area_url` varchar(255) default NULL,
  PRIMARY KEY  (`area_ID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `chris_areas`
--


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

--
-- Table structure for table `chris_attachments`
--

DROP TABLE IF EXISTS `chris_attachments`;
CREATE TABLE `chris_attachments` (
  `attachment_ID` int(11) NOT NULL auto_increment,
  `server` int(10) default NULL,
  `user` int(10) default NULL,
  `information` varchar(255) default NULL,
  `upload_date` int(10) default NULL,
  `extension` varchar(10) default NULL,
  PRIMARY KEY  (`attachment_ID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `chris_attachments`
--


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

--
-- Table structure for table `chris_bbcode`
--

DROP TABLE IF EXISTS `chris_bbcode`;
CREATE TABLE `chris_bbcode` (
  `bbc_ID` int(11) NOT NULL auto_increment,
  `server` int(10) NOT NULL default '0',
  `bbc_key` varchar(32) NOT NULL default '',
  `bbc_closed` tinyint(1) NOT NULL default '0',
  `bbc_open` text NOT NULL,
  `bbc_close` text NOT NULL,
  `bbc_match` text NOT NULL,
  PRIMARY KEY  (`bbc_ID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `chris_bbcode`
--


/*!40000 ALTER TABLE `chris_bbcode` DISABLE KEYS */;
LOCK TABLES `chris_bbcode` WRITE;
INSERT INTO `chris_bbcode` (`bbc_ID`, `server`, `bbc_key`, `bbc_closed`, `bbc_open`, `bbc_close`, `bbc_match`) VALUES (1,1,'',0,'','','');
INSERT INTO `chris_bbcode` (`bbc_ID`, `server`, `bbc_key`, `bbc_closed`, `bbc_open`, `bbc_close`, `bbc_match`) VALUES (2,1,'',0,'','','');
INSERT INTO `chris_bbcode` (`bbc_ID`, `server`, `bbc_key`, `bbc_closed`, `bbc_open`, `bbc_close`, `bbc_match`) VALUES (3,1,'',0,'','','');
INSERT INTO `chris_bbcode` (`bbc_ID`, `server`, `bbc_key`, `bbc_closed`, `bbc_open`, `bbc_close`, `bbc_match`) VALUES (4,1,'',0,'','','');
INSERT INTO `chris_bbcode` (`bbc_ID`, `server`, `bbc_key`, `bbc_closed`, `bbc_open`, `bbc_close`, `bbc_match`) VALUES (5,1,'',0,'','','');
INSERT INTO `chris_bbcode` (`bbc_ID`, `server`, `bbc_key`, `bbc_closed`, `bbc_open`, `bbc_close`, `bbc_match`) VALUES (6,1,'',0,'','','');
INSERT INTO `chris_bbcode` (`bbc_ID`, `server`, `bbc_key`, `bbc_closed`, `bbc_open`, `bbc_close`, `bbc_match`) VALUES (7,1,'',0,'','','');
INSERT INTO `chris_bbcode` (`bbc_ID`, `server`, `bbc_key`, `bbc_closed`, `bbc_open`, `bbc_close`, `bbc_match`) VALUES (8,1,'',0,'','','');
INSERT INTO `chris_bbcode` (`bbc_ID`, `server`, `bbc_key`, `bbc_closed`, `bbc_open`, `bbc_close`, `bbc_match`) VALUES (9,1,'',0,'','','');
INSERT INTO `chris_bbcode` (`bbc_ID`, `server`, `bbc_key`, `bbc_closed`, `bbc_open`, `bbc_close`, `bbc_match`) VALUES (10,1,'',0,'','','');
UNLOCK TABLES;
/*!40000 ALTER TABLE `chris_bbcode` ENABLE KEYS */;

--
-- Table structure for table `chris_cache`
--

DROP TABLE IF EXISTS `chris_cache`;
CREATE TABLE `chris_cache` (
  `cache_ID` int(11) NOT NULL auto_increment,
  `server` int(10) default NULL,
  `context_key` varchar(32) default NULL,
  `object_key` varchar(32) default NULL,
  `cached_entity` text,
  `last_cached` int(10) default '0',
  `ttl` int(10) default '0',
  PRIMARY KEY  (`cache_ID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `chris_cache`
--


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

--
-- Table structure for table `chris_calendar`
--

DROP TABLE IF EXISTS `chris_calendar`;
CREATE TABLE `chris_calendar` (
  `event_ID` int(10) NOT NULL auto_increment,
  `event_day` int(2) NOT NULL default '1',
  `event_month` int(2) NOT NULL default '1',
  `event_year` varchar(4) NOT NULL default '2000',
  `event_tstamp` int(12) NOT NULL default '0',
  `event_title` varchar(254) NOT NULL default 'None',
  `event_text` text,
  `event_poster` int(11) NOT NULL default '0',
  PRIMARY KEY  (`event_ID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `chris_calendar`
--


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

--
-- Table structure for table `chris_config`
--

DROP TABLE IF EXISTS `chris_config`;
CREATE TABLE `chris_config` (
  `config_ID` int(11) NOT NULL auto_increment,
  `server` int(10) default NULL,
  `config_key` varchar(100) default NULL,
  `config_value` text,
  `config_desc` text,
  `config_type` char(1) default NULL,
  `config_options` text,
  `config_group` int(11) NOT NULL default '0',
  PRIMARY KEY  (`config_ID`),
  KEY `server` (`server`),
  KEY `config_key` (`config_key`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `chris_config`
--


/*!40000 ALTER TABLE `chris_config` DISABLE KEYS */;
LOCK TABLES `chris_config` WRITE;
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (1,1,'board->lang','en','Default language index',NULL,NULL,0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (2,1,'redirect->delay','2','Wait for \'x\' seconds when redirecting',NULL,NULL,0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (3,1,'board->main','page','Keyword used to define a default main page, if any',NULL,NULL,0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (4,1,'board->mainarg','n=portal','Arguments used to define a default main page, if any',NULL,NULL,0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (6,1,'board->guestsgroup','3','Guest group index',NULL,NULL,0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (7,1,'sessions->name','nextBBS','Cookie name',NULL,NULL,0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (8,1,'sessions->expire','31536000','Cookie life span, in seconds',NULL,NULL,0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (9,1,'sessions->path','','Cookie path (leave blank if unsure)',NULL,NULL,0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (11,1,'sessions->cutoff','30','A session is terminated if inactive for more than \'x\' minutes',NULL,NULL,0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (12,1,'topics->perPage','10','Display how many topics per page',NULL,NULL,0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (13,1,'topics->maxPages','10','Display navigation links for how many pages',NULL,NULL,0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (14,1,'areas->perPage','10','Display how many areas per page',NULL,NULL,0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (15,1,'areas->maxPages','10','Display navigation links for how many pages',NULL,NULL,0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (16,1,'board->url','http://bb.militate.com/','Board\'s home URL',NULL,NULL,0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (17,1,'email->from','no-reply@militate.com','Send all system messages using this address',NULL,NULL,0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (18,1,'email->type','text','Select an email type: text or html','S','text|html',0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (19,1,'transient->maxonline','167',NULL,NULL,NULL,0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (20,1,'transient->maxonlineTS','1118944730',NULL,NULL,NULL,0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (21,1,'modules->headlines->number','10',NULL,NULL,NULL,0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (22,1,'modules->headlines->areas','2',NULL,NULL,NULL,0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (23,1,'modules->lasttopics->number','10',NULL,NULL,NULL,0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (24,1,'database->fulltext','true','Use full-text searches (MySQL only)','S','true|false',0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (25,1,'database->flowcontrol','4','Users cannot perform searches more often than every \'x\' seconds',NULL,NULL,0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (26,1,'ban->ips','1.2.3.4','Banned IPs, one per line, you can enter subnets; for instance: 192.168.1.0/27','A',NULL,1);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (27,1,'ban->emails','duh@yahoo.com','Banned email addresses, one per line, you can enter partial addresses; for instance: yahoo.com','A',NULL,1);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (28,1,'ban->words','one\r\ntwo','Banned words, one per line','A',NULL,1);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (29,1,'boardonoff->onoff','on','Board On/Off','S','on|off',0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (30,1,'boardonoff->reason','','Reason: this message will be displayed when your board is off','A',NULL,0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (31,1,'topics->flowcontrol','30','Users cannot post more often than every \'x\' seconds',NULL,NULL,0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (32,1,'board->rewrite','false','Is mod-rewrite used to create search engine-friendly links?','S','true|false',0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (33,1,'register->flood','GD','Method to prevent flooding: None, GD or Images','S','None|GD|Images',0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (34,1,'skins->menubar','<a href=\'?do=main\'>Forums</a> |\r\n <a href=\'?do=cp\'>Preferences</a> |\r\n <a href=\'?do=messages\'><%pms%></a> |\r\n <a href=\'?do=members\'>Members</a> |\r\n <a href=\'?do=search&stype=today\'>Today\'s Topics</a> |\r\n <a href=\'?do=search&stype=fresher\'><u>New Posts</u></a> |\r\n <a href=\"?do=search\">Search</a> |\r\n <a href=\'?do=calendar\'>Calendar</a><hr />\r\n<a href=\'http://next.militate.com/bugs/\'>Bugs Tracker</a> |\r\n <a href=\'http://sourceforge.net/projects/forums\'>SourceForge</a> |\r\n <a href=\'?do=ext_wakka\'>Documentation</a> |\r\n <a href=\'http://next.militate.com/4images\'>Revealed: Screenshots</a> |\r\n <a href=\'http://support.militate.com\'>HelpDesk</a>\r\n','HTML Code for the Menu Bar visible in all skins. Use stylesheets to adapt this code to all skins.','A',NULL,0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (35,1,'register->check','Email','How do you wish to deliver their user\'s password?','S','Email|Display',0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (36,1,'database->log','true','Enable SQL logging for performance monitoring - only works with the Adodb abstraction layer','S','true|false',0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (38,1,'topics->displayreg','true','Display when registered in topics','S','true|false',0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (39,1,'topics->displayloc','true','Display location in topics','S','true|false',0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (40,1,'topics->displaypips','true','Display Pips','S','true|false',0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (41,1,'areas->preview','true','Preview first post of a topic','S','true|false',0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (42,1,'areas->previewlength','100','How many characters should we use for the preview?',NULL,NULL,0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (43,1,'editor->rich','true','Use WYSIWYG editor?','S','true|false',0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (44,1,'sessions->salt','mygrain','Security salt: make sure you set your own secret salt!',NULL,NULL,0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (45,1,'acpmodules->import','disabled','Enable Import Module (Careful!)','S','enabled|disabled',0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (46,1,'search->maxresults','1000','Acceptable maximum number of results for a search query',NULL,NULL,0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (47,1,'members->perPage','10','Display how many users per page',NULL,NULL,0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (48,1,'members->maxPages','10','Display navigation link for how many users',NULL,NULL,0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (49,1,'extra->ajax','true','Enable AJAX: dynamic client-server scripting','S','true|false',0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (50,1,'acp->skin','light','Admin CP Skin','S','light|dark',0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (51,1,'email->method','smtp','Use built-in mail() function or a remot mail server?','S','php|smtp',0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (52,1,'email->server','localhost','Email server if using \'smtp\' method',NULL,NULL,1);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (53,1,'email->port','25','Email port if using \'smtp\' method',NULL,NULL,2);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (54,1,'topics->avatar->width','100','Maximum avatar width',NULL,NULL,0);
INSERT INTO `chris_config` (`config_ID`, `server`, `config_key`, `config_value`, `config_desc`, `config_type`, `config_options`, `config_group`) VALUES (55,1,'topics->avatar->height','100','Maximum avatar height',NULL,NULL,0);
UNLOCK TABLES;
/*!40000 ALTER TABLE `chris_config` ENABLE KEYS */;

--
-- Table structure for table `chris_emoticons`
--

DROP TABLE IF EXISTS `chris_emoticons`;
CREATE TABLE `chris_emoticons` (
  `emo_ID` int(11) NOT NULL auto_increment,
  `emo_code` varchar(16) NOT NULL default '',
  `emo_img` varchar(32) NOT NULL default '',
  `emo_clickable` tinyint(1) default NULL,
  PRIMARY KEY  (`emo_ID`),
  KEY `emo_code` (`emo_code`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `chris_emoticons`
--


/*!40000 ALTER TABLE `chris_emoticons` DISABLE KEYS */;
LOCK TABLES `chris_emoticons` WRITE;
INSERT INTO `chris_emoticons` (`emo_ID`, `emo_code`, `emo_img`, `emo_clickable`) VALUES (1,':cool','cool.gif',1);
INSERT INTO `chris_emoticons` (`emo_ID`, `emo_code`, `emo_img`, `emo_clickable`) VALUES (2,':afro','afro.gif',1);
INSERT INTO `chris_emoticons` (`emo_ID`, `emo_code`, `emo_img`, `emo_clickable`) VALUES (3,':1eye','1eye.gif',1);
INSERT INTO `chris_emoticons` (`emo_ID`, `emo_code`, `emo_img`, `emo_clickable`) VALUES (4,':angry','angry.gif',1);
INSERT INTO `chris_emoticons` (`emo_ID`, `emo_code`, `emo_img`, `emo_clickable`) VALUES (5,':argue','argue.gif',1);
INSERT INTO `chris_emoticons` (`emo_ID`, `emo_code`, `emo_img`, `emo_clickable`) VALUES (6,':spam','a_spam.gif',1);
INSERT INTO `chris_emoticons` (`emo_ID`, `emo_code`, `emo_img`, `emo_clickable`) VALUES (7,':bangin','bangin.gif',1);
INSERT INTO `chris_emoticons` (`emo_ID`, `emo_code`, `emo_img`, `emo_clickable`) VALUES (8,':biggrin','biggrin.gif',1);
INSERT INTO `chris_emoticons` (`emo_ID`, `emo_code`, `emo_img`, `emo_clickable`) VALUES (9,':blink','blink.gif',1);
INSERT INTO `chris_emoticons` (`emo_ID`, `emo_code`, `emo_img`, `emo_clickable`) VALUES (10,':blushk','blush.gif',1);
INSERT INTO `chris_emoticons` (`emo_ID`, `emo_code`, `emo_img`, `emo_clickable`) VALUES (11,':bored','bored.gif',1);
INSERT INTO `chris_emoticons` (`emo_ID`, `emo_code`, `emo_img`, `emo_clickable`) VALUES (12,':bored','dry.gif',1);
INSERT INTO `chris_emoticons` (`emo_ID`, `emo_code`, `emo_img`, `emo_clickable`) VALUES (17,':)','biggrin.gif',1);
INSERT INTO `chris_emoticons` (`emo_ID`, `emo_code`, `emo_img`, `emo_clickable`) VALUES (14,':bye','bye2.gif',1);
INSERT INTO `chris_emoticons` (`emo_ID`, `emo_code`, `emo_img`, `emo_clickable`) VALUES (15,':cactuar','cactuar.gif',1);
INSERT INTO `chris_emoticons` (`emo_ID`, `emo_code`, `emo_img`, `emo_clickable`) VALUES (16,':censored','censored.gif',1);
INSERT INTO `chris_emoticons` (`emo_ID`, `emo_code`, `emo_img`, `emo_clickable`) VALUES (18,':(','angry.gif',1);
INSERT INTO `chris_emoticons` (`emo_ID`, `emo_code`, `emo_img`, `emo_clickable`) VALUES (19,';)','wink.gif',1);
INSERT INTO `chris_emoticons` (`emo_ID`, `emo_code`, `emo_img`, `emo_clickable`) VALUES (20,':alien','alien.gif',1);
UNLOCK TABLES;
/*!40000 ALTER TABLE `chris_emoticons` ENABLE KEYS */;

--
-- Table structure for table `chris_folders`
--

DROP TABLE IF EXISTS `chris_folders`;
CREATE TABLE `chris_folders` (
  `folder_ID` int(11) NOT NULL auto_increment,
  `owner_id` int(10) NOT NULL default '0',
  `folder_name` varchar(255) default NULL,
  `folder_icon_id` int(10) default NULL,
  PRIMARY KEY  (`owner_id`,`folder_ID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `chris_folders`
--


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

--
-- Table structure for table `chris_groups`
--

DROP TABLE IF EXISTS `chris_groups`;
CREATE TABLE `chris_groups` (
  `group_ID` int(10) NOT NULL auto_increment,
  `group_name` varchar(100) default NULL,
  `admin` int(1) NOT NULL default '0',
  `moderator` int(11) NOT NULL default '0',
  `server` int(10) default NULL,
  `group_owner` int(10) NOT NULL default '0',
  `open` int(1) NOT NULL default '0',
  PRIMARY KEY  (`group_ID`),
  KEY `group_owner` (`group_owner`),
  KEY `open` (`open`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `chris_groups`
--


/*!40000 ALTER TABLE `chris_groups` DISABLE KEYS */;
LOCK TABLES `chris_groups` WRITE;
INSERT INTO `chris_groups` (`group_ID`, `group_name`, `admin`, `moderator`, `server`, `group_owner`, `open`) VALUES (1,'Members',0,0,1,0,0);
INSERT INTO `chris_groups` (`group_ID`, `group_name`, `admin`, `moderator`, `server`, `group_owner`, `open`) VALUES (2,'Admins',1,0,1,0,0);
INSERT INTO `chris_groups` (`group_ID`, `group_name`, `admin`, `moderator`, `server`, `group_owner`, `open`) VALUES (3,'Guests',0,0,1,0,0);
INSERT INTO `chris_groups` (`group_ID`, `group_name`, `admin`, `moderator`, `server`, `group_owner`, `open`) VALUES (9,'Developers',0,0,1,1,1);
INSERT INTO `chris_groups` (`group_ID`, `group_name`, `admin`, `moderator`, `server`, `group_owner`, `open`) VALUES (8,'Evangelists',0,0,1,1,1);
INSERT INTO `chris_groups` (`group_ID`, `group_name`, `admin`, `moderator`, `server`, `group_owner`, `open`) VALUES (12,'Doc Manager',0,0,1,1,0);
INSERT INTO `chris_groups` (`group_ID`, `group_name`, `admin`, `moderator`, `server`, `group_owner`, `open`) VALUES (13,'Testers',0,0,1,1,1);
UNLOCK TABLES;
/*!40000 ALTER TABLE `chris_groups` ENABLE KEYS */;

--
-- Table structure for table `chris_logs`
--

DROP TABLE IF EXISTS `chris_logs`;
CREATE TABLE `chris_logs` (
  `log_ID` int(11) NOT NULL auto_increment,
  `log_level` int(10) default NULL,
  `log_group` int(10) default NULL,
  `log_user` int(10) default NULL,
  `log_module` varchar(64) default NULL,
  `log_action` varchar(64) default NULL,
  `log_info` text,
  `log_date` int(10) default NULL,
  `log_ip` varchar(64) default NULL,
  PRIMARY KEY  (`log_ID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `chris_logs`
--


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

--
-- Table structure for table `chris_messages`
--

DROP TABLE IF EXISTS `chris_messages`;
CREATE TABLE `chris_messages` (
  `message_ID` int(11) NOT NULL auto_increment,
  `recipient_id` int(10) default NULL,
  `author_id` int(10) default NULL,
  `message_title` varchar(255) default NULL,
  `text` text,
  `message_date` int(10) default NULL,
  `message_icon_id` int(10) default NULL,
  `folder` int(10) default '0',
  `private` tinyint(1) default '1',
  `read` tinyint(1) default '0',
  `richtext` tinyint(1) default '0',
  PRIMARY KEY  (`message_ID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `chris_messages`
--


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

--
-- Table structure for table `chris_notifications`
--

DROP TABLE IF EXISTS `chris_notifications`;
CREATE TABLE `chris_notifications` (
  `notifier_ID` int(11) NOT NULL auto_increment,
  `object_type` char(1) NOT NULL default '',
  `listener_id` int(11) NOT NULL default '0',
  `notified` tinyint(1) default '0',
  `object_id` int(11) NOT NULL default '0',
  `server` int(10) default NULL,
  PRIMARY KEY  (`notifier_ID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `chris_notifications`
--


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

--
-- Table structure for table `chris_pages`
--

DROP TABLE IF EXISTS `chris_pages`;
CREATE TABLE `chris_pages` (
  `page_ID` int(10) NOT NULL auto_increment,
  `server` int(10) default NULL,
  `page_name` varchar(255) default NULL,
  `page_location` varchar(255) default NULL,
  `page_crumb` varchar(255) default NULL,
  `page_content` text,
  `page_eval` tinyint(1) default NULL,
  PRIMARY KEY  (`page_ID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `chris_pages`
--


/*!40000 ALTER TABLE `chris_pages` DISABLE KEYS */;
LOCK TABLES `chris_pages` WRITE;
INSERT INTO `chris_pages` (`page_ID`, `server`, `page_name`, `page_location`, `page_crumb`, `page_content`, `page_eval`) VALUES (1,1,'tos','Viewing the Terms of Service','TOS','<table border=\'0\' width=\'100%\' height=\'100%\' cellspacing=\'0\' cellpadding=\'0\'>\n<tr><td>\n<div style=\'padding:6px\'>	<table border=\'0\' cellspacing=\'0\' cellpadding=\'0\' width=\'90%\'>\n	<tr><td>\n<table width=\"100%\" border=\"0\" cellspacing=\"8\" cellpadding=\"0\">\n\n                    <tr>\n                      <td width=\"50%\" valign=\"top\">                          \n                                                <p align=\"left\"><font face=\"Verdana\" size=\"1\" color=\"#666666\"><font color=#000000>+&nbsp;</font>UNACCEPTABLE \n                          ACTIVITIES:<br>\n                          <br>\n                          These include, but are not limited to:<br>\n                          <br>\n                          <font color=\"#FF0000\">Spamming</font>: sending unsollicited \n                          messages, for the purpose of advertising or creating \n                          a nuisance. In the case of commercial sollicitations, \n                          \'unsollicited\' means their recipients have no existing \n                          relationship, business or not, with our customer. These \n                          messages may be sent by e-mail or on the newsgroups, \n                          or any other means.<br>\n\n                          <br>\n                          <font color=\"#FF0000\">Mail Bombing</font>: causing an \n                          other user\'s email account to receive a high volume \n                          of messages against their will. By subscribing them \n                          to some Mailing Lists, for instance.<br>\n                          <br>\n                          <font color=\"#FF0000\">Mail Spoofing</font>: using an \n                          invalid return address when sending an email message, \n                          thus preventing the recipient from identifying the source \n                          of the message.<br>\n                          <br>\n                          <font color=\"#FF0000\">Groups Spoofing</font>: this is \n                          the same type of unacceptable activity, but on the NewsGroups.<br>\n\n                          <br>\n                          <font color=\"#FF0000\">Account Hacking</font>: trying \n                          to access the shell or private files of another customer \n                          without prior permission from the offended customer \n                          will result in your account termination without refund \n                          and/or legal prosecution.<br>\n                          <br>\n                          Please, bear in mind that any wrongdoing will not only \n                          cause a major annoyance to others, but also damage the \n                          image of your business and yourself. Not to mention \n                          the fact that we will have to shut down the sites of \n                          repeat offenders.<br>\n                          <br>\n                          If you are unsure whether your actions are in accordance \n                          of the net etiquette, please send an email to <a href=\"mailto:abuse@voilaweb.com\">abuse@voilaweb.com</a> \n                          and we will be glad to help.<br>\n\n                          <br>\n                          <font color=#000000>+&nbsp;</font>CONDITIONS TO \n                          BECOME A CUSTOMER:<br>\n                          <br>\n                          <font color=\"#FF0000\">Liability (biz)</font>: when applying \n                          for a hosting on behalf of a business, the client must \n                          be a legal representative of that business. We automatically \n                          assume in good fairness he/she is though. However, we \n                          also understand the concept of <font color=\"#993333\"><i>satirical</i></font> \n                          web sites, and as long as theses sites do not infringe \n                          any copyright we allow them.<br>\n                          <br>\n\n                          <font color=\"#FF0000\">Liability (crim)</font>: Clic!Dev servers \n                          may not be used to abuse the law. Drug dealing, pedophily, \n                          and any other unlawful activity will be terminated without \n                          any warning. If you don\'t know where the limit is, read \n                          the Books.<br>\n                          <br>\n                          <font color=#000000>+&nbsp;</font>CUSTOMER SECURITY OBLIGATION:<br>\n                          <br>\nEach Customer must use reasonable care in keeping each server or network devices attached to Clic!Dev infrastructure up-to-date and patched with the latest security updates.  Failure to use reasonable care to protect your server may result in a security compromise by outside sources.  Clic!Dev is not responsible for Customer server level security unless a security administration package, firewall security administration package or fully managed operating system package is contracted for.  A compromised server creating network interference will result in immediate Customer notification and will be disconnected from the network immediately so as to not directly affect other Customers.  No service credits will be issued for outages resulting from disconnection due directly to breached server security.  The Customer is solely responsible for any breaches of security affecting servers under Customer control.   If a Customer intentionally creates a security breach, the cost to resolve any damage to Customer\'s server or other servers will be charged directly to the Customer. The labor used to resolve such damage is categorized as emergency security breach recovery and is currently charged at $295 USD per hour.\n                        </font>\n                      </td>\n                      <td width=\"50%\" valign=\"top\"> \n                        <ul>\n\n                          <font face=\"Verdana\" size=\"1\" color=\"#666666\"><font color=#000000>+&nbsp;</font>WHERE \n                          DO WE STAND:<br>\n                          <br>\n                          We, at Clic!Dev, support Free Speech. This means, when receiving \n                          complaints, the incriminated customer is automatically \n                          considered innocent and we will not take any preemptive \n                          measures.<br>\n                          <br>\n                          In NO case will Clic!Dev substitute itself for a court of \n                          law in deciding tort claims raised by a third party.<br>\n                          <br>\n\n                          If one of our customers\' account is found to be the \n                          originator of unlawful activities and/or infringing \n                          our policy, the customer will be held responsible unless \n                          account hacking is proved. It is the customer\'s sole \n                          responsility to protect their account by using safe \n                          passwords and not divulging them.<br>\n                          <br>\n                          Additionnally, we reserve the right to refuse or cancel \n                          service at our sole discretion. Only well-known offenders \n                          are concerned, for example hate groups.<br>\n                          <br>\n                          <font color=#000000>+&nbsp;</font>ABUSE OF RESOURCES:<br>\n                          <br>\n                          We have no specific rules specifying that our clients \n                          shouldn\'t run chat programs nor any other potential \n                          CPU/disk/traffic hog. However, customers whose sites \n                          are found to impair the performance of our servers in \n                          good faith will be proposed to move to a \'high profile \n                          account\' at a fair price. If a site is found to be in\n                          extreme violation of our resources policy, we reserve\n                          the right to terminate it without warning.<br />\n\n                          <u>Note these limits (subject to change):<br />\n                          Each site comes with a total upload space of \n                          <font color=\'red\'>5 MBs</font>.<br />\n                          If your site uses more than twice that limit, it can be \n                          deleted at any time and we may, at our discretion, \n                          bill you for the abuse!</u><br />\n                          Note that multiple accounts are allowed but registering \n                          many times with the intent to abuse our resources will \n                          result in immediate account termination.<br />\n                          <br>\n                          <font color=#000000>+&nbsp;</font>COPYRIGHT INFRINGEMENT:<br>\n\n                          <br>\n                          Clic!Dev and its providers datacenter infrastructure including network, leased hardware, co-location services, and other hardware located in the facility may only be used for lawful purposes. Transmission, distribution, or storage of any information, data or material in violation of United States or state regulation or law, or by the common law, is prohibited. This includes, but is not limited to, material protected by copyright, trademark, trade secret, or other intellectual property rights.<br>\n                          Utilizing, or distributing unauthorized copies of software are a violation of federal and state law.  If you copy, distribute or install the software in ways that the license does not allow, you are violating federal copyright law.  Clic!Dev will cooperate with all law enforcement agencies in relation to alleged copyright infringement housed in our datacenters.<br>\n                          <br>\n                          <font color=#000000>+&nbsp;</font>CHILD PORNOGRAPHY:<br>\n                          <br>\n                          Clic!Dev will cooperate fully with any criminal investigation into a Customer\'s violation of the Child Protection Act of 1984 concerning child pornography. Customers are ultimate\nly responsible for the actions of their clients over Clic!Dev network, and will be liable for illegal material posted by their clients.<br>\n\n                          <br>\n                          According to the Child Protection Act, child pornography includes photographs, films, video or any other type of visual presentation that shows a person who is or is depicted as \nbeing under the age of eighteen years and is engaged in or is depicted as engaged in explicit sexual activity, or the dominant characteristic of which is the depiction, for a sexu\nal purpose, of a sexual organ or the anal region of a person under the age of eighteen years or any written material or visual representation that advocates or counsels sexual act\nivity with a person under the age of eighteen years.<br>\n                          <br>\n                          <font color=#000000>+&nbsp;</font>CANCELLATION:<br>\n                          <br>\n                          Clic!Dev reserves the right to cancel service at any time \n                          for the reasons mentioned above or for extreme lack \n                          of payment from the customer. If termination if caused \n                          by customers violation of our policies, there will be \n                          no refund. In every other case, all fees paid in advance \n                          of cancellation will be refunded on a pro-rated basis.<br>\n\n                          <br>\n                          Customers can also cancel service at any time, and only \n                          fees for the current month will be due. <i>THERE IS \n                          NO EARLY TERMINATION FEES.</i><br>\n                          <br>\n                          <font color=#000000>+&nbsp;</font>LIMITATION OF LIABILITY:<br>\n                          <br>\n                          Backups of our servers are made daily. Understand that \n                          not guarantees are made, either expressed or implied, \n                          that you will be able to restore your site from these \n                          backups. It is the client responsability to maintain \n                          local backups of their site and data.<br>\n\n                          <br>\n                          Considering the unpredictability of the Internet, and \n                          although Clic!Dev strives at maintaining an uptime ratio above \n                          99%, as well as fault-free servers, Clic!Dev shall not be \n                          responsible for any claimed damages, including incidental \n                          and consequential damages, which may arise from our \n                          servers going off-line or being unavailable, or from \n                          their data corruption. All damages shall be limited \n                          to the immediate termination of service. It is the responsability \n                          of the customer to ensure that their data is appropriately \n                          preserved.<br>\n                          </font>\n                        </ul>\n                        <font face=\"Verdana\" size=\"1\" color=\"#666666\"><br></font>\n                        <div align=\"right\"><font face=\"Verdana\" size=\"1\" color=\"#666666\">Clic!Dev.</font></div>\n                        </font></td>\n                    </tr>\n\n                  </table>\n	</td></tr>\n	</table></div>\n</td></tr>\n</table>',0);
INSERT INTO `chris_pages` (`page_ID`, `server`, `page_name`, `page_location`, `page_crumb`, `page_content`, `page_eval`) VALUES (3,1,'info','Server Info - Dynamic PHP','Info','phpinfo();',1);
INSERT INTO `chris_pages` (`page_ID`, `server`, `page_name`, `page_location`, `page_crumb`, `page_content`, `page_eval`) VALUES (4,1,'test.html','wonderful place','WOND','hello and welcome\n<table></table>\nblblbl\'lb hoh!!\n',1);
INSERT INTO `chris_pages` (`page_ID`, `server`, `page_name`, `page_location`, `page_crumb`, `page_content`, `page_eval`) VALUES (5,1,'welcomepage','Portal\'s main page','Portal','Welcome to our development page.<br />\n<br />\nThe idea is to create a powerful-yet-forever free bulletin board software;\n<br />\nwith many years of experience in the field I believe that I can make this happen so here we are.\n<br />\n<br />\nI am always looking for volunteers to help me. PHP coders, skins designers...contact me!\n<br />\n<br />\nClick on the link below to access our development board.\n<br />\nIt\'s really about eating our own food as that board is litteraly <i>under</i> development,\n<br />\nso do not let potential bugs spook you!\n<br />\n<br />\n<a href=\'?do=main\'>To the board!</a>\n',0);
INSERT INTO `chris_pages` (`page_ID`, `server`, `page_name`, `page_location`, `page_crumb`, `page_content`, `page_eval`) VALUES (58,1,'screenshots1','Screenshots','Shots',NULL,NULL);
INSERT INTO `chris_pages` (`page_ID`, `server`, `page_name`, `page_location`, `page_crumb`, `page_content`, `page_eval`) VALUES (59,1,'dev_ref','Developer Reference','Doc',NULL,0);
INSERT INTO `chris_pages` (`page_ID`, `server`, `page_name`, `page_location`, `page_crumb`, `page_content`, `page_eval`) VALUES (60,1,'usersguide','Users Guide','uguide',NULL,0);
INSERT INTO `chris_pages` (`page_ID`, `server`, `page_name`, `page_location`, `page_crumb`, `page_content`, `page_eval`) VALUES (61,1,'test2','test2l','test2c','',0);
INSERT INTO `chris_pages` (`page_ID`, `server`, `page_name`, `page_location`, `page_crumb`, `page_content`, `page_eval`) VALUES (62,1,'test3','test3l','test3c','<div align=\"center\"><h1><font color=\"#339966\">This is a test</font></h1><br/><b>Do not panic!<br/><br/></b><table width=\"200\" cellspacing=\"1\" cellpadding=\"1\" border=\"1\" align=\"\"><tbody><tr><td align=\"center\"><b><font color=\"#993300\"> 1</font></b></td><td align=\"center\"><b><font color=\"#ff6600\"> 2</font></b></td></tr><tr><td align=\"center\"><b><font color=\"#ff9900\"> 3</font></b></td><td align=\"center\"><b><font color=\"#ffcc00\"> 4</font></b></td></tr><tr><td align=\"center\"><b><font color=\"#ffcc99\"> 5</font></b></td><td align=\"center\"><b> 6</b></td></tr></tbody></table><br type=\"_moz\"/></div>',0);
INSERT INTO `chris_pages` (`page_ID`, `server`, `page_name`, `page_location`, `page_crumb`, `page_content`, `page_eval`) VALUES (28,1,'test','Test','Test',NULL,0);
INSERT INTO `chris_pages` (`page_ID`, `server`, `page_name`, `page_location`, `page_crumb`, `page_content`, `page_eval`) VALUES (31,1,'features','Features','Features','<style>\n.feat { padding:8px 8px 8px 8px; }\n.featbottom { padding:8px 8px 8px 8px; border-bottom:1px dotted #444477; }\n.featbottomleft { padding:8px 8px 8px 8px; border-bottom:1px dotted #444477; border-left:1px dotted #444477; }\n</style>\n<table border=\'0\' cellpadding=\'0\' cellspacing=\'1\' width=\'100%\'>\n<tr><td colspan=\'4\' class=\'titlemedium\' align=\'center\'>\nSoftware Features Highlights\n</td></tr>\n<tr><td colspan=\'4\'>\n&nbsp;\n</td></tr>\n<tr><td valign=\'top\' align=\'right\' class=\'featbottom\'>\n<img src=\'html/images/ezinstall.gif\'>\n</td><td valign=\'top\' class=\'featbottom\'>\n<b>Easy Install</b><br />\nA unique \'bootstrap\', per-board and extremely light configuration mechanism lets you setup a board in less than 1 minute. All complex settings can be entered using your Admin Control Panel.\n</td><td valign=\'top\' align=\'right\' class=\'featbottomleft\'>\n<img src=\'html/images/multisites.gif\'>\n</td><td valign=\'top\' class=\'featbottom\'>\n<b>Multi-Sites</b><br />\nSupport multi-sites with the same source code, out of the box. You do not need more than 1 configuration file; multiple sites are supported as long as you use cookies.\n</td></tr>\n\n<tr><td valign=\'top\' class=\'featbottom\'>\n<b>Easy Skins Creation</b><br />\nThanks to the ultra-fast Smarty template engine, you can create your own message board based on any HTML page you like. Your users, members and guests, can then select their favourite skins using the built-in skins selector.\n</td><td valign=\'top\' align=\'left\' class=\'featbottom\'>\n<img src=\'html/images/ezskins.gif\'>\n</td><td valign=\'top\' class=\'featbottomleft\'>\n<b>Multi-Lingual</b><br />\nAdding a new language is as easy as creating a new directory with its own language files.\n</td><td valign=\'top\' align=\'left\' class=\'featbottom\'>\n<img src=\'html/images/multilingual.gif\'>\n</td></tr>\n\n<tr><td valign=\'top\' align=\'right\' class=\'featbottom\'>\n<img src=\'html/images/dbneutral.gif\'>\n</td><td valign=\'top\' class=\'featbottom\'>\n<b>Database-Neutral</b><br />\nYou do not have to worry about your server\'s backend. The software relies on PHP\'s Pear:DB abstraction layer to work with any SQL database.\n</td><td valign=\'top\' align=\'right\' class=\'featbottomleft\'>\n<img src=\'html/images/portal.gif\'>\n</td><td valign=\'top\' class=\'featbottom\'>\n<b>Portal & API</b><br />\nNo other board software lets you so easily and naturally add a portal to your site. Note that this portal can be multi-pages and leverage a rich set of modules.\n</td></tr>\n\n<tr><td valign=\'top\' class=\'featbottom\'>\n<b>Unlimited Sub-Forums Levels</b><br />\nAreas can have children, grandchildren, etc. We have decided that differences between categories and forums are arbitrary and unnecessary. Therefore, we only offer one type of object: an area = a category = a forum. All you have to do is customize them to act the way you need them to.\n</td><td valign=\'top\' align=\'left\' class=\'featbottom\'>\n<img src=\'html/images/multilevels.gif\'>\n</td><td valign=\'top\' class=\'featbottomleft\'>\n<b>Private Messaging</b><br />\nExhange as many messages as you wish and store them in unlimited users-defined folders.\n</td><td valign=\'top\' align=\'left\' class=\'featbottom\'>\n<img src=\'html/images/messages.gif\'>\n</td></tr>\n\n<tr><td valign=\'top\' align=\'right\' class=\'featbottom\'>\n<img src=\'html/images/security.gif\'>\n</td><td valign=\'top\' colspan=\'3\' class=\'featbottom\'>\n<b>Security</b><br />\nAs much as a quarter of our development time is spent toughening the software\'s security. A few examples:<br /> <ul>\n<li> protection against SQL injection<br />\n<li> protection against session variables tampering<br />\n<li> your user\'s cookies contain significantly less information than is stored by any other bb software<br />\n<li> re-authentication keys generated on-the-fly<br />\n<li> detection of change of user\'s browsing environment\n</ul>\n</td></tr>\n\n<tr><td valign=\'top\' class=\'featbottom\'>\n<b>Flexible BB Code</b><br />\nThe BB Code, used to add rich content to your posts, signatures, etc. can be extended very easily thanks to its database-based repository.\n</td><td valign=\'top\' align=\'left\' class=\'featbottom\'>\n<img src=\'html/images/bbcode.gif\'>\n</td><td valign=\'top\' class=\'featbottomleft\'>\n<b>Powerful Search</b><br />\nSearch for words, phrases, authors. Search results are displayed in a readable format and can be easily browsed.\nNote that search results are cached for maximum performance.\n</td><td valign=\'top\' align=\'left\' class=\'featbottom\'>\n<img src=\'html/images/search.gif\'>\n</td></tr>\n\n<tr><td valign=\'top\' align=\'right\' class=\'featbottom\'>\n<img src=\'html/images/modules.gif\'>\n</td><td valign=\'top\' class=\'featbottom\'>\n<b>Rich Modules</b><br />\nThis starts with a Calendar, but there is going to be more. A lot more. Be ready.\n</td><td valign=\'top\' align=\'right\' class=\'featbottomleft\'>\n<img src=\'html/images/hacks.gif\'>\n</td><td valign=\'top\' class=\'featbottom\'>\n<b>Modifications</b><br />\nYou can write/use your own modifications to the board\'s source code. We offer an additional mechanism, allowing you to create your own callback methods in \'Hack.php\'.\n</td></tr>\n\n<tr><td valign=\'top\' class=\'featbottom\'>\n<b>Performance</b><br />\nAll SQL queries are manually tuned. Predictions and most efficient parsing paths are identified and used.\n</td><td valign=\'top\' align=\'left\' class=\'featbottom\'>\n<img src=\'html/images/performance.gif\'>\n</td><td valign=\'top\' class=\'featbottomleft\'>\n<b>Smart Contextual Caching</b><br />\nVarious pages portions that PHP has to constantly re-evaluate for all your users are cached on-the-fly using our exclusive contextual caching mechanism.\n</td><td valign=\'top\' align=\'left\' class=\'featbottom\'>\n<img src=\'html/images/caching.gif\'>\n</td></tr>\n\n<tr><td valign=\'top\' align=\'right\' class=\'featbottom\'>\n<img src=\'html/images/cp.gif\'>\n</td><td valign=\'top\' class=\'featbottom\'>\n<b>Flexible Control Panel</b><br />\nYou can store as many configuration variables in the database as you wish, the software will automatically know how to edit them using the Admin Control Panel.\n</td><td valign=\'top\' align=\'right\' class=\'featbottomleft\'>\n<img src=\'html/images/debug.gif\'>\n</td><td valign=\'top\' class=\'featbottom\'>\n<b>Errors & Debugging</b><br />\nCustom error handling and reporting as well as advanced debugging help you make sure that your board is never down.\n</td></tr>\n\n<tr><td valign=\'top\' align=\'right\' colspan=\'3\' class=\'feat\'>\n<b>And it\'s Free!</b><br />\nEntirely free. No catch.<br />\nOpen-source means that anyone can maintain your board\'s software.<br />\nThis software is covered by the GPL license.\n</td><td valign=\'top\' align=\'left\' class=\'feat\'>\n<img src=\'html/images/money.gif\'>\n</td></tr>\n\n</table>\n',0);
INSERT INTO `chris_pages` (`page_ID`, `server`, `page_name`, `page_location`, `page_crumb`, `page_content`, `page_eval`) VALUES (56,1,'portal','Portal','Portal','print \"<table width=\'100%\' border=\'0\'><tr><td valign=\'top\'><div class=\'tableborder\'><table width=\'100%\' border=\'0\' cellpadding=\'1\' cellspacing=\'1\'><tr><td class=\'portal3\'>\";\r\nrequire \"modules/text.php\";\r\n$c->add(\"\r\n<table width=\'100% border=\'0\'>\r\n<tr><td valign=\'top\' colspan=\'2\'>\r\nWelcome to our development page.<br />\r\n<br />\r\nOur goal is to create a powerful-yet-free message board software.\r\n<br />\r\n<br />\r\nIt\'s really about eating our own food as this board is litteraly <i>under</i> development, so do not let potential bugs spook you...\r\n<br />\r\n<br />\r\nPlease, take a look at our Features page: <a href=\'?do=page&n=features\'>Click here!</a>\r\n<br />\r\n<br />\r\n</td></tr>\r\n<tr><td valign=\'top\' align=\'center\'>\r\n<a href=\'?do=page&n=features\'><img src=\'html/images/bsnap.gif\' border=\'0\'></a>\r\n</td><td valign=\'top\' align=\'center\'>\r\n<a href=\'?do=page&n=features\'><img src=\'html/images/wsnap.gif\' border=\'0\'></a>\r\n</td></tr>\r\n</table>\r\n<br />\r\n<a href=\'?do=main\'>Click here to visit the board</a>\");\r\n$c->out();\r\nprint \"</td></tr></table></div><br /><div class=\'tableborder\'><table width=\'100%\' border=\'0\' cellpadding=\'1\' cellspacing=\'1\'>\";\r\nrequire \"modules/headlines.php\";\r\nprint \"</table></div></td><td valign=\'top\'>\";\r\n$c->clear();\r\n$c->add(\"\r\n<div class=\'tableborder\'><table border=\'0\' cellpadding=\'1\' cellspacing=\'1\' width=\'100%\'>\r\n<tr><td class=\'portal2\'> <a href=\'?do=page&n=features\'>Features</a> </td></tr>\r\n<tr><td class=\'portal2\'> <a href=\'http://next.militate.com/bugs/\'>Bugs Tracker</a> </td></tr>\r\n<tr><td class=\'portal2\'> <a href=\'http://sourceforge.net/projects/forums\'>SourceForge</a> </td></tr>\r\n<tr><td class=\'portal2\'> <a href=\'?do=page&n=dev_ref\'>Manual</a> </td></tr>\r\n<tr><td class=\'portal2\'> <a href=\'?do=page&n=screenshots1\'>Screenshots</a> </td></tr>\r\n<tr><td class=\'portal2\'> <a href=\'?do=main\'>Forums</a> </td></tr>\r\n</table></div><br />\");\r\n$c->out();\r\nprint \"<div class=\'tableborder\'><table border=\'0\' cellpadding=\'1\' cellspacing=\'1\' width=\'100%\'><tr><td class=\'maintitle\'>Recent Topics</td></tr>\";\r\nrequire \"modules/lasttopics.php\";\r\nprint \"</table></div>\";\r\n\r\n$args = array(\r\n\'closed\' => \'1\',\r\n\'rows\' => \'5\',\r\n\'url\' => \'http://next.militate.com/bugs\');\r\nprint \"<br /><div class=\'tableborder\'><table border=\'0\' cellpadding=\'1\' cellspacing=\'1\' width=\'100%\'><tr><td class=\'maintitle\'>5 Closed Tasks</td></tr>\";\r\nrequire \"modules/flyspray.php\";\r\nprint \"</table></div>\";\r\n\r\nprint \"</td></tr></table>\";',1);
INSERT INTO `chris_pages` (`page_ID`, `server`, `page_name`, `page_location`, `page_crumb`, `page_content`, `page_eval`) VALUES (63,1,'test4','blimp','hoohoo','',0);
INSERT INTO `chris_pages` (`page_ID`, `server`, `page_name`, `page_location`, `page_crumb`, `page_content`, `page_eval`) VALUES (66,1,'test41','t4t4','t4','',0);
UNLOCK TABLES;
/*!40000 ALTER TABLE `chris_pages` ENABLE KEYS */;

--
-- Table structure for table `chris_polls`
--

DROP TABLE IF EXISTS `chris_polls`;
CREATE TABLE `chris_polls` (
  `poll_ID` int(11) default NULL,
  `poll_question` text,
  `poll_votes` int(10) default NULL,
  `poll_ID2` int(11) default NULL,
  `element_ID` int(11) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `chris_polls`
--


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

--
-- Table structure for table `chris_posts`
--

DROP TABLE IF EXISTS `chris_posts`;
CREATE TABLE `chris_posts` (
  `post_ID` int(11) NOT NULL auto_increment,
  `topic` int(10) default NULL,
  `post_title` varchar(255) default NULL,
  `post_description` varchar(255) default NULL,
  `text` text,
  `post_date` int(10) default NULL,
  `author_id` int(10) default NULL,
  `author_name` varchar(100) default NULL,
  `author_edit` varchar(100) default NULL,
  `post_icon_id` int(10) default NULL,
  `richtext` tinyint(1) default '0',
  PRIMARY KEY  (`post_ID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `chris_posts`
--


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

--
-- Table structure for table `chris_reputations`
--

DROP TABLE IF EXISTS `chris_reputations`;
CREATE TABLE `chris_reputations` (
  `rep_ID` int(10) NOT NULL auto_increment,
  `rep_post` int(10) default NULL,
  `rep_reason` text,
  `rep_recipient_id` int(10) NOT NULL default '0',
  `rep_giver_id` int(10) default NULL,
  `rep_topic` int(10) default NULL,
  `rep_date` int(10) NOT NULL default '0',
  `rep_sub` tinyint(1) NOT NULL default '0',
  PRIMARY KEY  (`rep_ID`),
  KEY `rep_recipient_id` (`rep_recipient_id`),
  KEY `rep_giver_id` (`rep_giver_id`),
  KEY `rep_sub` (`rep_sub`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `chris_reputations`
--


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

--
-- Table structure for table `chris_results`
--

DROP TABLE IF EXISTS `chris_results`;
CREATE TABLE `chris_results` (
  `search_ID` varchar(64) NOT NULL default '',
  `search_result` blob,
  `search_total` int(10) default '0',
  `result_type` tinyint(1) default '0'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `chris_results`
--


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

--
-- Table structure for table `chris_servers`
--

DROP TABLE IF EXISTS `chris_servers`;
CREATE TABLE `chris_servers` (
  `server_ID` int(11) NOT NULL auto_increment,
  `server_title` varchar(255) default NULL,
  `server_description` varchar(255) default NULL,
  PRIMARY KEY  (`server_ID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `chris_servers`
--


/*!40000 ALTER TABLE `chris_servers` DISABLE KEYS */;
LOCK TABLES `chris_servers` WRITE;
INSERT INTO `chris_servers` (`server_ID`, `server_title`, `server_description`) VALUES (1,'Next Militate','Oh at least a honnest attempt...');
UNLOCK TABLES;
/*!40000 ALTER TABLE `chris_servers` ENABLE KEYS */;

--
-- Table structure for table `chris_settings`
--

DROP TABLE IF EXISTS `chris_settings`;
CREATE TABLE `chris_settings` (
  `setting_key` varchar(32) default NULL,
  `setting_value` text,
  `setting_server` int(10) default NULL,
  `setting_userid` int(10) default NULL,
  KEY `setting_key` (`setting_key`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `chris_settings`
--


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

--
-- Table structure for table `chris_skins`
--

DROP TABLE IF EXISTS `chris_skins`;
CREATE TABLE `chris_skins` (
  `skin_ID` int(11) NOT NULL auto_increment,
  `server` int(10) default NULL,
  `skin_name` varchar(255) default NULL,
  `skin_description` varchar(255) default NULL,
  `skin_visible` tinyint(1) NOT NULL default '1',
  PRIMARY KEY  (`skin_ID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `chris_skins`
--


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

--
-- Table structure for table `chris_topics`
--

DROP TABLE IF EXISTS `chris_topics`;
CREATE TABLE `chris_topics` (
  `topic_ID` int(11) NOT NULL auto_increment,
  `area` int(10) default NULL,
  `topic_title` varchar(255) default NULL,
  `topic_description` varchar(255) default NULL,
  `starter_id` int(10) default NULL,
  `last_poster_id` int(10) default NULL,
  `start_date` int(10) default NULL,
  `last_post_date` int(10) default NULL,
  `topic_replies` int(10) default NULL,
  `topic_views` int(10) default NULL,
  `starter_name` varchar(255) default NULL,
  `last_poster_name` varchar(255) default NULL,
  `pinned` tinyint(1) default '0',
  `closed` tinyint(1) NOT NULL default '0',
  `topic_icon_id` int(10) default NULL,
  `is_poll` tinyint(1) default '0',
  PRIMARY KEY  (`topic_ID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `chris_topics`
--


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

--
-- Table structure for table `chris_uniquesessions`
--

DROP TABLE IF EXISTS `chris_uniquesessions`;
CREATE TABLE `chris_uniquesessions` (
  `us_ID` varchar(255) NOT NULL default '',
  `us_lastupdated` datetime NOT NULL default '0000-00-00 00:00:00',
  `us_data` text,
  `session_data` blob,
  `session_skin` int(11) default NULL,
  `location` text,
  `session_user_id` int(10) default NULL,
  `last_action_date` int(10) default NULL,
  `ip_address` varchar(16) default NULL,
  PRIMARY KEY  (`us_ID`),
  KEY `us_lastupdated` (`us_lastupdated`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `chris_uniquesessions`
--


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

--
-- Table structure for table `chris_users`
--

DROP TABLE IF EXISTS `chris_users`;
CREATE TABLE `chris_users` (
  `user_ID` int(11) NOT NULL auto_increment,
  `userid` varchar(100) default NULL,
  `password` varchar(32) default NULL,
  `fullname` varchar(100) default NULL,
  `email` varchar(100) default NULL,
  `server` int(10) default NULL,
  `mgroup` int(10) default NULL,
  `checker` varchar(64) default NULL,
  `skinid` int(10) default NULL,
  `avatar` varchar(100) default NULL,
  `user_posts` int(10) default '0',
  `signature` text,
  `pms` tinyint(1) default '0',
  `last_action` int(10) default NULL,
  `last_session` int(10) default NULL,
  `reg_date` int(10) default NULL,
  `in_aim` varchar(64) default NULL,
  `in_icq` varchar(64) default NULL,
  `in_msn` varchar(64) default NULL,
  `in_www` varchar(64) default NULL,
  `in_location` varchar(128) default NULL,
  `in_interests` text,
  `in_birthday` varchar(10) default NULL,
  `richtext` char(1) NOT NULL default '',
  `in_yahoo` varchar(64) default NULL,
  `user_reputation` int(10) NOT NULL default '0',
  `user_reputation_neg` int(10) NOT NULL default '0',
  `user_warnings` int(10) NOT NULL default '0',
  `user_suspended` int(10) NOT NULL default '0',
  `user_suspension` int(10) NOT NULL default '0',
  `mgroup2` int(1) default NULL,
  `mgroup3` int(10) default NULL,
  `mgroup4` int(10) default NULL,
  PRIMARY KEY  (`user_ID`),
  KEY `mgroup2` (`mgroup2`),
  KEY `mgroup3` (`mgroup3`),
  KEY `mgroup4` (`mgroup4`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `chris_users`
--


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

--
-- Table structure for table `chris_usersdata`
--

DROP TABLE IF EXISTS `chris_usersdata`;
CREATE TABLE `chris_usersdata` (
  `data_ID` int(11) NOT NULL auto_increment,
  `data_date` int(10) default NULL,
  `data_key` varchar(32) default NULL,
  `data_value` blob,
  `data_userid` int(10) default NULL,
  PRIMARY KEY  (`data_ID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `chris_usersdata`
--


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

--
-- Table structure for table `chris_voters`
--

DROP TABLE IF EXISTS `chris_voters`;
CREATE TABLE `chris_voters` (
  `poll_ID` int(11) default NULL,
  `user_ID` int(11) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `chris_voters`
--


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

--
-- Table structure for table `chris_warnings`
--

DROP TABLE IF EXISTS `chris_warnings`;
CREATE TABLE `chris_warnings` (
  `warn_ID` int(10) NOT NULL auto_increment,
  `warn_post` int(10) default NULL,
  `warn_reason` text,
  `warn_recipient_id` int(10) NOT NULL default '0',
  `warn_giver_id` int(10) default NULL,
  `warn_topic` int(10) default NULL,
  `warn_date` int(10) NOT NULL default '0',
  `warn_sub` tinyint(1) NOT NULL default '0',
  PRIMARY KEY  (`warn_ID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `chris_warnings`
--


/*!40000 ALTER TABLE `chris_warnings` DISABLE KEYS */;
LOCK TABLES `chris_warnings` WRITE;
INSERT INTO `chris_warnings` (`warn_ID`, `warn_post`, `warn_reason`, `warn_recipient_id`, `warn_giver_id`, `warn_topic`, `warn_date`, `warn_sub`) VALUES (1,961,'Bad Chris! Bad!',1,1,210,1119834412,0);
INSERT INTO `chris_warnings` (`warn_ID`, `warn_post`, `warn_reason`, `warn_recipient_id`, `warn_giver_id`, `warn_topic`, `warn_date`, `warn_sub`) VALUES (2,961,'Oh that\'s fine.',1,1,210,1119834501,1);
INSERT INTO `chris_warnings` (`warn_ID`, `warn_post`, `warn_reason`, `warn_recipient_id`, `warn_giver_id`, `warn_topic`, `warn_date`, `warn_sub`) VALUES (3,961,'bad.',1,1,210,1119834718,0);
INSERT INTO `chris_warnings` (`warn_ID`, `warn_post`, `warn_reason`, `warn_recipient_id`, `warn_giver_id`, `warn_topic`, `warn_date`, `warn_sub`) VALUES (4,961,'reset',1,1,210,1119834785,1);
INSERT INTO `chris_warnings` (`warn_ID`, `warn_post`, `warn_reason`, `warn_recipient_id`, `warn_giver_id`, `warn_topic`, `warn_date`, `warn_sub`) VALUES (5,961,'mmffff',1,1,210,1119834872,0);
INSERT INTO `chris_warnings` (`warn_ID`, `warn_post`, `warn_reason`, `warn_recipient_id`, `warn_giver_id`, `warn_topic`, `warn_date`, `warn_sub`) VALUES (6,961,'suspending the bastard',1,1,210,1119835390,0);
INSERT INTO `chris_warnings` (`warn_ID`, `warn_post`, `warn_reason`, `warn_recipient_id`, `warn_giver_id`, `warn_topic`, `warn_date`, `warn_sub`) VALUES (7,968,'suspending, take 2',1,1,210,1119835547,1);
INSERT INTO `chris_warnings` (`warn_ID`, `warn_post`, `warn_reason`, `warn_recipient_id`, `warn_giver_id`, `warn_topic`, `warn_date`, `warn_sub`) VALUES (8,1038,'	',1,1,226,1120584852,1);
UNLOCK TABLES;
/*!40000 ALTER TABLE `chris_warnings` ENABLE KEYS */;

--
-- Table structure for table `wakka_acls`
--

DROP TABLE IF EXISTS `wakka_acls`;
CREATE TABLE `wakka_acls` (
  `page_tag` varchar(50) NOT NULL default '',
  `privilege` varchar(20) NOT NULL default '',
  `list` text NOT NULL,
  PRIMARY KEY  (`page_tag`,`privilege`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `wakka_acls`
--


/*!40000 ALTER TABLE `wakka_acls` DISABLE KEYS */;
LOCK TABLES `wakka_acls` WRITE;
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('Comment1','write','');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('Comment1','read','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('Comment1','comment','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('Comment2','write','');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('Comment2','read','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('Comment2','comment','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('Comment3','write','');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('Comment3','read','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('Comment3','comment','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('WikiHomePage','read','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('WikiHomePage','write','8\n9');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('WikiHomePage','comment','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('OrphanedPages','read','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('OrphanedPages','write','8\n9');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('OrphanedPages','comment','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('WantedPages','read','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('WantedPages','write','8\n9');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('WantedPages','comment','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('TextSearch','read','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('TextSearch','write','8\n9');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('TextSearch','comment','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('PageIndex','read','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('PageIndex','write','8\n9');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('PageIndex','comment','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('RecentChanges','read','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('RecentChanges','write','8\n9');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('RecentChanges','comment','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('RecentlyCommented','read','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('RecentlyCommented','write','8\n9');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('RecentlyCommented','comment','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('MyChanges','read','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('MyChanges','write','8\n9');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('MyChanges','comment','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('MyPages','read','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('MyPages','write','8\n9');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('MyPages','comment','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('UserSettings','read','!*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('UserSettings','write','!*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('UserSettings','comment','!*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('NextBBS','write','8\n9');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('NextBBS','read','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('NextBBS','comment','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('ProgrammersManual','write','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('ProgrammersManual','read','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('ProgrammersManual','comment','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('ThirdPartyPackages','write','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('ThirdPartyPackages','read','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('ThirdPartyPackages','comment','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('DatabaseInformation','write','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('DatabaseInformation','read','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('DatabaseInformation','comment','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('VisualSchema','write','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('VisualSchema','read','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('VisualSchema','comment','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('SchemaReport','write','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('SchemaReport','read','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('SchemaReport','comment','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('SourceControl','write','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('SourceControl','read','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('SourceControl','comment','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('HowToInstallPerforceClientOnLinux','write','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('HowToInstallPerforceClientOnLinux','read','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('HowToInstallPerforceClientOnLinux','comment','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('TextSearch?phrase=WikiHomePage','write','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('TextSearch?phrase=WikiHomePage','read','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('TextSearch?phrase=WikiHomePage','comment','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('BoardUserGuide','write','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('BoardUserGuide','read','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('BoardUserGuide','comment','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('Comment4','write','');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('Comment4','read','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('Comment4','comment','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('Comment5','write','');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('Comment5','read','*');
INSERT INTO `wakka_acls` (`page_tag`, `privilege`, `list`) VALUES ('Comment5','comment','*');
UNLOCK TABLES;
/*!40000 ALTER TABLE `wakka_acls` ENABLE KEYS */;

--
-- Table structure for table `wakka_links`
--

DROP TABLE IF EXISTS `wakka_links`;
CREATE TABLE `wakka_links` (
  `from_tag` char(50) NOT NULL default '',
  `to_tag` char(50) NOT NULL default '',
  UNIQUE KEY `from_tag` (`from_tag`,`to_tag`),
  KEY `idx_from` (`from_tag`),
  KEY `idx_to` (`to_tag`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `wakka_links`
--


/*!40000 ALTER TABLE `wakka_links` DISABLE KEYS */;
LOCK TABLES `wakka_links` WRITE;
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('BoardUserGuide','PageIndex');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('BoardUserGuide','RecentChanges');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('BoardUserGuide','RecentlyCommented');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('BoardUserGuide','WikiHomePage');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('DatabaseInformation','PageIndex');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('DatabaseInformation','RecentChanges');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('DatabaseInformation','RecentlyCommented');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('DatabaseInformation','SchemaReport');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('DatabaseInformation','VisualSchema');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('DatabaseInformation','WikiHomePage');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('HowToInstallPerforceClientOnLinux','PageIndex');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('HowToInstallPerforceClientOnLinux','RecentChanges');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('HowToInstallPerforceClientOnLinux','RecentlyCommented');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('HowToInstallPerforceClientOnLinux','WikiHomePage');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('NextBBS','PageIndex');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('NextBBS','RecentChanges');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('NextBBS','RecentlyCommented');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('NextBBS','WikiHomePage');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('ProgrammersManual','AdminModule');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('ProgrammersManual','MyNewScreen');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('ProgrammersManual','PageIndex');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('ProgrammersManual','RecentChanges');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('ProgrammersManual','RecentlyCommented');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('ProgrammersManual','WikiHomePage');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('SchemaReport','AutoInc');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('SchemaReport','ColumnName');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('SchemaReport','DataType');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('SchemaReport','IndexName');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('SchemaReport','IndexType');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('SchemaReport','NotNull');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('SchemaReport','PageIndex');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('SchemaReport','PrimaryKey');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('SchemaReport','RecentChanges');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('SchemaReport','RecentlyCommented');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('SchemaReport','WikiHomePage');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('SourceControl','HowToInstallPerforceClientOnLinux');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('SourceControl','PageIndex');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('SourceControl','RecentChanges');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('SourceControl','RecentlyCommented');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('SourceControl','WikiHomePage');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('TextSearch?phrase=WikiHomePage','PageIndex');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('TextSearch?phrase=WikiHomePage','RecentChanges');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('TextSearch?phrase=WikiHomePage','RecentlyCommented');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('TextSearch?phrase=WikiHomePage','WikiHomePage');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('ThirdPartyPackages','PageIndex');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('ThirdPartyPackages','RecentChanges');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('ThirdPartyPackages','RecentlyCommented');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('ThirdPartyPackages','TestPleaseIgnore');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('ThirdPartyPackages','WikiHomePage');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('VisualSchema','PageIndex');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('VisualSchema','RecentChanges');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('VisualSchema','RecentlyCommented');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('VisualSchema','WikiHomePage');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('WikiHomePage','BoardUserGuide');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('WikiHomePage','DatabaseInformation');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('WikiHomePage','NextBBS');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('WikiHomePage','OrphanedPages');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('WikiHomePage','PageIndex');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('WikiHomePage','ProgrammersManual');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('WikiHomePage','RecentChanges');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('WikiHomePage','RecentlyCommented');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('WikiHomePage','SourceControl');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('WikiHomePage','TextSearch');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('WikiHomePage','ThirdPartyPackages');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('WikiHomePage','WantedPages');
INSERT INTO `wakka_links` (`from_tag`, `to_tag`) VALUES ('WikiHomePage','WikiHomePage');
UNLOCK TABLES;
/*!40000 ALTER TABLE `wakka_links` ENABLE KEYS */;

--
-- Table structure for table `wakka_pages`
--

DROP TABLE IF EXISTS `wakka_pages`;
CREATE TABLE `wakka_pages` (
  `id` int(10) unsigned NOT NULL auto_increment,
  `tag` varchar(50) NOT NULL default '',
  `time` datetime NOT NULL default '0000-00-00 00:00:00',
  `body` text NOT NULL,
  `body_r` text NOT NULL,
  `owner` varchar(50) NOT NULL default '',
  `user` varchar(50) NOT NULL default '',
  `latest` enum('Y','N') NOT NULL default 'N',
  `handler` varchar(30) NOT NULL default 'page',
  `comment_on` varchar(50) NOT NULL default '',
  PRIMARY KEY  (`id`),
  KEY `idx_tag` (`tag`),
  KEY `idx_time` (`time`),
  KEY `idx_latest` (`latest`),
  KEY `idx_comment_on` (`comment_on`),
  FULLTEXT KEY `tag` (`tag`,`body`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `wakka_pages`
--


/*!40000 ALTER TABLE `wakka_pages` DISABLE KEYS */;
LOCK TABLES `wakka_pages` WRITE;
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (1,'WikiHomePage','2005-04-09 22:06:54','Welcome to your Wakka site! Click on the \"Edit this page\" link at the bottom to get started.\n\nAlso don\'t forget to visit [[WakkaWiki:WakkaWiki WakkaWiki]]!\n\nUseful pages: OrphanedPages, WantedPages, TextSearch.','','chris','WakkaInstaller','N','page','');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (2,'RecentChanges','2005-04-09 22:06:54','{{RecentChanges}}','','chris','WakkaInstaller','Y','page','');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (3,'RecentlyCommented','2005-04-09 22:06:54','{{RecentlyCommented}}','','chris','WakkaInstaller','Y','page','');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (4,'UserSettings','2005-04-09 22:06:54','{{UserSettings}}','','chris','WakkaInstaller','Y','page','');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (5,'PageIndex','2005-04-09 22:06:54','{{PageIndex}}','','chris','WakkaInstaller','Y','page','');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (6,'WantedPages','2005-04-09 22:06:54','{{WantedPages}}','','chris','WakkaInstaller','Y','page','');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (7,'OrphanedPages','2005-04-09 22:06:54','{{OrphanedPages}}','','chris','WakkaInstaller','Y','page','');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (8,'TextSearch','2005-04-09 22:06:54','{{TextSearch}}','','chris','WakkaInstaller','Y','page','');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (9,'MyPages','2005-04-09 22:06:54','{{MyPages}}','','chris','WakkaInstaller','Y','page','');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (10,'MyChanges','2005-04-09 22:06:54','{{MyChanges}}','','chris','WakkaInstaller','Y','page','');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (11,'PageIndex','2005-04-09 22:06:54','{{PageIndex}}','','','WakkaInstaller','Y','page','');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (12,'Comment1','2005-04-10 01:28:20','I am commenting on my own page. Oh duuuh.','','chris2','chris2','Y','page','WikiHomePage');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (13,'Comment2','2005-04-10 01:34:22','Thanks for the comment, my evil twin!','','chris','chris','Y','page','WikiHomePage');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (14,'Comment3','2005-04-10 03:33:37','And one more for the road.','','chris','chris','Y','page','WikiHomePage');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (15,'WikiHomePage','2005-04-10 03:43:28','Welcome to NextBBS:Wiki.\n\n<br />If you do not know what a Wiki is, please first take a look [[http://en.wikipedia.org/wiki/Wiki here]].\n\n<br />\n\n<br />Useful pages: OrphanedPages, WantedPages, TextSearch.','','chris','chris','N','html','');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (16,'WikiHomePage','2005-04-10 04:33:03','Welcome to NextBBS:Wiki.\n\n<br/>If you do not know what a Wiki is, please first take a look [[http://en.wikipedia.org/wiki/Wiki here]].\n\n<br/>\n\n<br/><i>-Chris.</i><br/><br/>Useful pages: OrphanedPages, WantedPages, TextSearch.','','chris','chris','N','html','');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (17,'WikiHomePage','2005-04-10 04:49:02','Welcome to NextBBS:Wiki.\n\n<br/>If you do not know what a Wiki is, please first take a look [[http://en.wikipedia.org/wiki/Wiki here]].\n\n<br/>\n\n<br/><i>-Chris.</i><br/><img alt=\"\" src=\"http://bb.militate.com//servers/1/attachments/17.gif\" area=\"12420\"/><br/>Useful pages: OrphanedPages, WantedPages, TextSearch.','','chris','chris','N','html','');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (18,'WikiHomePage','2005-04-10 05:07:19','Welcome to NextBBS : Wiki.\n\n<br/>If you do not know what a Wiki is, please first take a look [[http://en.wikipedia.org/wiki/Wiki here]].\n\n<br/>\n\n<br/><i>-Chris.</i><br/><img area=\"12420\" src=\"http://bb.militate.com//servers/1/attachments/17.gif\" alt=\"\"/><br/>Useful pages: OrphanedPages, WantedPages, TextSearch.','','chris','chris','N','html','');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (19,'WikiHomePage','2005-04-10 05:07:59','Welcome to NextBBS : Wiki.\n\n<br/>If you do not know what a Wiki is, please first take a look [[http://en.wikipedia.org/wiki/Wiki here]].\n\n<br/>\n\n<br/><i>-Chris.</i><br/><img src=\"http://bb.militate.com//servers/1/attachments/15.gif\" alt=\"\"/><br/>Useful pages: OrphanedPages, WantedPages, TextSearch.','','chris','chris','N','html','');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (20,'NextBBS','2005-04-10 06:05:36','Well,<br/><br/>Soon, this page will contain some information regarding this guy\'s name.<br/><br/>Hopefully.<br type=\"_moz\"/>','','chris','chris','Y','html','');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (21,'WikiHomePage','2005-04-13 03:01:16','Welcome to NextBBS : Wiki.\n\n<br/>If you do not know what a Wiki is, please first take a look [[http://en.wikipedia.org/wiki/Wiki here]].\n\n<br/>\n\n<br/><i>-Chris.<br/><br/>Read the ProgrammersManual<br/><br/></i><img area=\"14022\" src=\"http://bb.militate.com//servers/1/attachments/15.gif\" alt=\"\"/><br/>Useful pages: OrphanedPages, WantedPages, TextSearch.','','chris','chris','N','html','');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (22,'ProgrammersManual','2005-04-13 03:01:43','<i><b>Please note: this is a very basic attempt at writing a developer\'s manual.<br/>\nThis is the \'reference\' chapter. It\'s still very incomplete.<br/>\n-Chris.</b></i><br/>\n<br/><br/>\n<div class=\"titlemedium\">The Basics</div>\n<br/>\n<u><b>Creating a New User</b></u>:<br/><br/>\n<i>TODO -&gt; create Helper</i><br/>\n<br/>\n<u><b>Creating a New Area</b></u>:<br/><br/>\n<i>TODO -&gt; create Helper</i><br/>\n<br/>\n<u><b>Adding Mod Hooks to your Code</b></u>:<br/><br/>\n<i>TODO -&gt; create a global Hack object and reuse it!</i><br/>\n<br/>\n<u><b>Deleting an Attachment</b></u>:<br/><br/>\n<div class=\"codebody\">\ninclude &quot;attachments.php&quot;;<br/>\n$c-&gt;deleteAttachment($id);<br/>\n[ $id is the attachment\'s unique id ]\n</div><br/>\n<div class=\"titlemedium\">COMMON methods (found in common.php)</div>\n<br/>\nNote: Use the variable $COMMON; it is already instantiated.<br/>\n<br/>\n<u><b>Current Time</b></u>:<br/><br/>\n$COMMON-&gt;now() returns an integer<br/>\n<br/>\n<u><b>Display an Error Message</b></u>:<br/><br/>\n$COMMON-&gt;error($your_error_message)<br/>\n<br/>\n<u><b>Format a date for display</b></u>:<br/><br/>\n$COMMON-&gt;formatDate($dateValue, $customFormat=&quot;M j, Y, g:i a&quot;) returns a string<br/>\nExample: format current\'s date<br/>\n<div class=\"codebody\">\nprint $COMMON-&gt;formatDate($COMMON-&gt;now());<br/>\n</div><br/>\n<u><b>Format a User Name for Display</b></u>:<br/><br/>\nformatUserName($userid,$userName) returns a string<br/>\n<br/>\n<u><b>Get the URL of the current page</b></u>:<br/><br/>\n$COMMON-&gt;getURL() returns a string<br/>\n<br/>\n<u><b>Get the URL of the current page and its parameters (found after \'?\')</b></u>:<br/><br/>\n$COMMON-&gt;getExtendedURL() returns a string<br/>\n<br/>\n<u><b>Display a redirection page</b></u>:<br/><br/>\n$COMMON-&gt;redirect($page, $text, $delay=-1)<br/>\n$page is as follow: action+parameters; for instance: main&amp;level=1<br/>\nThe method will add \'?do=\' at the beginning of the redirect link.<br/>\n$text is the text to display while the user is being redirected<br/>\n$delay is either a delay passed to the method, or the default delay defined in the control panel<br/>\nNote: this method stops the page from being parsed.<br/>\n<br/>\n<u><b>Display a bare page, such as a confirmation dialog</b></u>:<br/><br/>\n$COMMON-&gt;intermediate($title, $text, $subtext=\'\')<br/>\n<br/>\n<u><b>Return the id of the string that should be used in a given context</b></u>:<br/><br/>\n$COMMON-&gt;getSkin() returns an integer<br/>\nThis method will return a skin id, based on (in order of increasing importance):<br/>\nBoard\'s default skin -&gt; User\'s favourite skin -&gt; Current session\'s skin, if selected<br/>\nNote: Even though the database allows it, selecting a per-forum skin has not been implemented yet.<br/>\n<br/>\n<u><b>Get a skin\'s directory</b></u>:<br/><br/>\n$COMMON-&gt;getSkinDirectory() returns a string<br/>\n<br/>\n<u><b>Get a skin\'s \'includes/\' directory</b></u>:<br/><br/>\n$COMMON-&gt;getSkinIncludesDirectory() returns a string<br/>\n<br/>\n<u><b>Return the main menu, to be displayed on all pages</b></u>:<br/><br/>\n$COMMON-&gt;getMainMenu()<br/>\n<br/>\n<u><b>Get the current breadcrumbs as a string</b></u>:<br/><br/>\n$COMMON-&gt;breadcrumbs($links, $noTop=false)<br/>\n$links is an array of short names,links.<br/>\n$noTop: if true, the \'forums\' link will not be added<br/>\n<br/>\n<u><b>Create a Navigation Bar (&lt;&lt; &lt; 1 2 3 ... &gt; &gt;&gt;):</b></u><br/><br/>\n$COMMON-&gt;navbar($prefix, $perPage, $maxPages, $cnt, $first, $search=\'\', $srow=\'\') returns a string<br/>\n$prefix is a page prefix; for instance: \'?do=main\'<br/>\n$perPage is the maximum number of results to display on a page<br/>\n$maxPages is the number of pages indexes displayed<br/>\n$cnt is the overall number of results to browse through<br/>\n$first<br/>\n<br/>\n<div class=\"titlemedium\">HOWTO: Adding features to the Admin CP</div>\n<br/>\nIf you wish to create a new menu or submenu, open <u>hacks.php</u> and edit <u>extraACP()</u><br/>\nAny code this method returns will be interpreted as Javascript.<br/><br/>\n<b><u>Adding a menu:</u></b><br/><br/>\n<div class=\"codebody\">\nvar submenu_<b>Menu\'s Name</b> = new TPopMenu(\'<b>Title</b>\',\'0\',\'a\',\'{$this-&gt;adlink}<b>link</b>\',\'<b>Description</b>\');<br/>\ntopmenu.Add(submenu_<b>Menu\'s Name</b>);</div>\n<br/>\n<b><u>Adding a submenu:</u></b><br/><br/>\n<div class=\"codebody\">\nvar submenu_<b>Menu\'s Name</b>_<b>Submenu\'s Name</b> = new TPopMenu(\' <b>Title</b>\',\'0\',\'a\',\'{$this-&gt;adlink}<b>link</b>\',\'<b>Description</b>\');<br/>\nsubmenu_<b>Menu\'s Name</b>.Add(submenu_<b>Menu\'s Name</b>_<b>Submenu\'s Name</b>);</div>\n<br/>\n[ Note: your extra Admin Screen can be either one of: -a settings screen, -a full-fledged admin screen ]<br/><br/>\n<b><u>Adding a Settings Screen</u></b>:<br/><br/>\nUsing a database browsing tool, such as phpMyAdmin, store all your new parameters in the database\'s table <u><b>prefix</b>_config</u> as follow:<br/>\n<div class=\"codebody\">\nserver = <b>your server\'s id</b><br/>\nconfig_key = <b>Admin Screen\'s Prefix</b>-&gt;<b>Setting\'s Short Name</b> (eg: mymodule-&gt;numpages)<br/>\nconfig_value = <b>Value for this setting</b><br/>\nconfig_desc = <b>A description of this setting</b><br/>\nconfig_type = Can be:<br/>\n  <b>S</b>: selection, in which case config_options contains a \'|\'-separated list of options<br/>\n  <b>A</b>: text area<br/>\n  <b>nothing</b>: text<br/>\n</div><br/>\nWrite down the <b>Admin Screen\'s Prefix</b> you\'ve used and, when creating your (sub)menu, replace <b>link</b> with: <i>settings&amp;act=<b>Admin Screen\'s Prefix</b></i><br/>\nNote: your can use more than one prefix. Here is an example: <i>settings&amp;act=myfirstprefix+mysecondprefix</i><br/>\n<br/>\n<b><u>Adding a Full-Fledged Admin Screen</u></b>:<br/>\nDecide on a Screen Short Name. For example, let\'s use: <i><b>mynewscreen</b><i><br/>\nFirst, when creating your (sub)menu, replace <b>link</b> with: <i><b>mynewscreen</b></i><br/>\n<br/>\nCreate a new file, named <i><b>mynewscreen.php</b></i> in <u>admin/</u><br/>\nHere is a skeletton for such a file:<br/>\n</i></i><div class=\"codebody\">\n<i><i>&lt;?<br/>\nrequire_once &quot;admin/tidbit.php&quot;;<br/>\n<br/>\n$c=new <b>MyNewScreen</b>();<br/>\n<br/>\nclass <b>MyNewScreen</b> extends AdminModule<br/>\n{<br/>\n  function Perf()<br/>\n  {<br/>\n    global $INPUT;<br/>\n  <br/>\n    // Screen Content<br/>\n    $this-&gt;text =<br/>\n        $this-&gt;tableTop() .<br/>\n        &quot;Welcome!&quot; .<br/>\n        $this-&gt;tableTop();<br/>\n  }<br/>\n}<br/>\n?&gt;\n</i></i></div>\n\n<i><i><br/>\n</i></i><hr/>\n<i><i><i>To be Continued...</i>\n</i></i>','','chris','chris','Y','html','');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (23,'WikiHomePage','2005-04-14 19:07:37','Welcome to NextBBS : Wiki.\n\n<br/>If you do not know what a Wiki is, please first take a look [[http://en.wikipedia.org/wiki/Wiki here]].\n\n<br/>\n\n<br/><i>-Chris.<br/><br/>Read the ProgrammersManual<br/><br/>ThirdPartyPackages<br/><br/></i><img alt=\"\" src=\"http://bb.militate.com//servers/1/attachments/15.gif\" area=\"14022\"/><br/>Useful pages: OrphanedPages, WantedPages, TextSearch.','','chris','chris','N','html','');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (24,'ThirdPartyPackages','2005-04-14 19:19:57','<b>Database Abstraction</b><br/><br/>[[http://adodb.sourceforge.net/ AdoDb]]<br/>Database Abstraction Layer - self-contained<br/>[[http://pear.php.net/package/DB Pear::DB]]<br/>Database Abstraction Layer - requires Pear<br/>[[http://phplens.com/lens/adodb/ Comparing ADODB with PEAR DB, MDB, dbx, Metabase and Native MySQL]]<br/><br/><b>Templates Engine</b><br/>[[http://smarty.php.net/ Smarty]]<br/>','','chris','chris','N','html','');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (25,'ThirdPartyPackages','2005-04-14 19:20:16','<b>Database Abstraction</b><br/>[[http://adodb.sourceforge.net/ AdoDb]]<br/>Database Abstraction Layer - self-contained<br/>[[http://pear.php.net/package/DB Pear::DB]]<br/>Database Abstraction Layer - requires Pear<br/>[[http://phplens.com/lens/adodb/ Comparing ADODB with PEAR DB, MDB, dbx, Metabase and Native MySQL]]<br/><br/><b>Templates Engine</b><br/>[[http://smarty.php.net/ Smarty]]<br/><br/><br/><br/><br/>','','chris','chris','N','html','');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (26,'WikiHomePage','2005-04-15 00:53:45','Welcome to NextBBS : Wiki.\n\n<br/>If you do not know what a Wiki is, please first take a look [[http://en.wikipedia.org/wiki/Wiki here]].\n\n<br/>\n\n<br/><i>-Chris.<br/><br/>Read the ProgrammersManual<br/><br/>ThirdPartyPackages<br/><br/>DatabaseInformation<br/><br/></i><img area=\"14022\" src=\"http://bb.militate.com//servers/1/attachments/15.gif\" alt=\"\"/><br/>Useful pages: OrphanedPages, WantedPages, TextSearch.','','chris','chris','N','html','');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (27,'DatabaseInformation','2005-04-15 00:54:23','VisualSchema (Warning! Big .png picture)<br/><br/>SchemaReport<br type=\"_moz\"/>','','chris','chris','Y','html','');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (28,'VisualSchema','2005-04-15 01:01:57','Note: I am aware that the database needs to be seriously looked at.<br/>There is redundant information in at least a couple places.<br/><br/><img alt=\"\" src=\"http://bb.militate.com//servers/1/attachments/30.png\" area=\"3151730\"/><div style=\"border: medium none ; padding: 0px; float: left; position: absolute; z-index: 100; top: 30px; left: 15px; display: none;\" id=\"mozilla-image-toolbar-div\"><box hidden=\"false\" id=\"mozilla-image-toolbar\"><toolbar mode=\"icons\" class=\"toolbar-primary chromeclass-toolbar\"><toolbarbutton id=\"imageToolbarSaveImage\" class=\"mozilla-image-toolbar\" label=\"\"></toolbarbutton><toolbarbutton id=\"imageToolbarCopyImage\" class=\"mozilla-image-toolbar\" label=\"\"></toolbarbutton><toolbarbutton style=\"display: none;\" id=\"imageToolbarEmailImage\" class=\"mozilla-image-toolbar\" label=\"\"></toolbarbutton><toolbarbutton style=\"display: none;\" id=\"imageToolbarPrintImage\" class=\"mozilla-image-toolbar\" label=\"\"></toolbarbutton><toolbarbutton id=\"imageToolbarOpenFolder\" class=\"mozilla-image-toolbar\" label=\"\"></toolbarbutton></toolbar></box></div><link rel=\"stylesheet\" type=\"text/css\" href=\"chrome://imagetoolbar/content/imagetoolbar.css\"/><link rel=\"stylesheet\" type=\"text/css\" href=\"chrome://browser/skin/imagetoolbar.css\"/>','','chris','chris','Y','html','');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (29,'SchemaReport','2005-04-15 01:14:19','<p class=\"fontX\">Database Model - Organized by functional sections<br/></p><hr/><table width=\"100%\" cellspacing=\"2\" cellpadding=\"0\" border=\"0\" bgcolor=\"#eef4ff\">  <tbody><tr>	<td class=\"fontXB\"><i>Configuration</i><hr/></td>  </tr>  <tr>	<td><table width=\"100%\" cellspacing=\"0\" cellpadding=\"2\" border=\"0\" bgcolor=\"#e4efff\">  <tbody><tr>	<td class=\"fontX\">bb_config	 <font class=\"fontS\"><br/></font></td>  </tr>  <tr>	<td>	  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"2\" border=\"0\" bgcolor=\"#d0dfff\">		<tbody><tr>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">ColumnName</td>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">DataType</td>		  <td width=\"1%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">PrimaryKey  </td>		  <td width=\"1%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">NotNull  </td>		  <td width=\"1%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">Flags</td>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">Default Value</td>		  <td width=\"20%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">Comment</td>		  <td width=\"1%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">AutoInc</td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"><b>config_ID</b></td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"><b>INTEGER(11)</b></td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">PK</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">server</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">INTEGER(10)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">config_key</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">VARCHAR(100)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">config_value</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">TEXT</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">config_desc</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">TEXT</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">config_type</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">CHAR(1)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">config_options</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">TEXT</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>	  </tbody></table>	</td>  </tr>  <tr>	<td class=\"fontB\">	  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"2\" border=\"0\" bgcolor=\"#d8e6ff\">		<tbody><tr>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">IndexName</td>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">IndexType</td>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">Columns</td>		</tr>		<tr>		  <td valign=\"top\" class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">PRIMARY</td>		  <td valign=\"top\" class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">PRIMARY</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">config_ID<br/></td>		</tr>		<tr>		  <td valign=\"top\" class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">server</td>		  <td valign=\"top\" class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">Index</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">server<br/></td>		</tr>		<tr>		  <td valign=\"top\" class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">config_key</td>		  <td valign=\"top\" class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">Index</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">config_key<br/></td>		</tr>	  </tbody></table>	</td>  </tr></tbody></table><br/><br/><table width=\"100%\" cellspacing=\"0\" cellpadding=\"2\" border=\"0\" bgcolor=\"#e4efff\">  <tbody><tr>	<td class=\"fontX\">bb_servers	 <font class=\"fontS\"><br/></font></td>  </tr>  <tr>	<td>	  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"2\" border=\"0\" bgcolor=\"#d0dfff\">		<tbody><tr>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">ColumnName</td>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">DataType</td>		  <td width=\"1%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">PrimaryKey  </td>		  <td width=\"1%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">NotNull  </td>		  <td width=\"1%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">Flags</td>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">Default Value</td>		  <td width=\"20%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">Comment</td>		  <td width=\"1%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">AutoInc</td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"><b>server_ID</b></td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"><b>INTEGER(11)</b></td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">PK</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"><b>config_ID</b></td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"><b>INTEGER(11)</b></td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">PK</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">server_title</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">VARCHAR(255)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">server_description</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">VARCHAR(255)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>	  </tbody></table>	</td>  </tr>  <tr>	<td class=\"fontB\">	  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"2\" border=\"0\" bgcolor=\"#d8e6ff\">		<tbody><tr>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">IndexName</td>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">IndexType</td>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">Columns</td>		</tr>		<tr>		  <td valign=\"top\" class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">PRIMARY</td>		  <td valign=\"top\" class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">PRIMARY</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">server_ID<br/>config_ID<br/></td>		</tr>	  </tbody></table>	</td>  </tr></tbody></table><br/><br/><table width=\"100%\" cellspacing=\"0\" cellpadding=\"2\" border=\"0\" bgcolor=\"#e4efff\">  <tbody><tr>	<td class=\"fontX\">bb_settings	 <font class=\"fontS\"><br/></font></td>  </tr>  <tr>	<td>	  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"2\" border=\"0\" bgcolor=\"#d0dfff\">		<tbody><tr>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">ColumnName</td>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">DataType</td>		  <td width=\"1%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">PrimaryKey  </td>		  <td width=\"1%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">NotNull  </td>		  <td width=\"1%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">Flags</td>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">Default Value</td>		  <td width=\"20%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">Comment</td>		  <td width=\"1%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">AutoInc</td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"><b>config_ID</b></td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"><b>INTEGER(11)</b></td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">PK</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"><b>server_ID</b></td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"><b>INTEGER(11)</b></td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">PK</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">setting_key</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">VARCHAR(32)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">setting_value</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">TEXT</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">setting_server</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">INTEGER(10)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">setting_userid</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">INTEGER(10)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>	  </tbody></table>	</td>  </tr>  <tr>	<td class=\"fontB\">	  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"2\" border=\"0\" bgcolor=\"#d8e6ff\">		<tbody><tr>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">IndexName</td>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">IndexType</td>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">Columns</td>		</tr>		<tr>		  <td valign=\"top\" class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">PRIMARY</td>		  <td valign=\"top\" class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">PRIMARY</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">config_ID<br/>server_ID<br/></td>		</tr>		<tr>		  <td valign=\"top\" class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">setting_key</td>		  <td valign=\"top\" class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">Index</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">setting_key<br/></td>		</tr>	  </tbody></table>	</td>  </tr></tbody></table><br/><br/><table width=\"100%\" cellspacing=\"0\" cellpadding=\"2\" border=\"0\" bgcolor=\"#e4efff\">  <tbody><tr>	<td class=\"fontX\">bb_skins	 <font class=\"fontS\"><br/></font></td>  </tr>  <tr>	<td>	  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"2\" border=\"0\" bgcolor=\"#d0dfff\">		<tbody><tr>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">ColumnName</td>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">DataType</td>		  <td width=\"1%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">PrimaryKey  </td>		  <td width=\"1%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">NotNull  </td>		  <td width=\"1%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">Flags</td>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">Default Value</td>		  <td width=\"20%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">Comment</td>		  <td width=\"1%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">AutoInc</td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"><b>skin_ID</b></td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"><b>INTEGER(11)</b></td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">PK</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"><b>config_ID</b></td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"><b>INTEGER(11)</b></td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">PK</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"><b>server_ID</b></td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"><b>INTEGER(11)</b></td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">PK</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">server</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">INTEGER(10)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">skin_name</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">VARCHAR(255)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">skin_description</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">VARCHAR(255)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>	  </tbody></table>	</td>  </tr>  <tr>	<td class=\"fontB\">	  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"2\" border=\"0\" bgcolor=\"#d8e6ff\">		<tbody><tr>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">IndexName</td>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">IndexType</td>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">Columns</td>		</tr>		<tr>		  <td valign=\"top\" class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">PRIMARY</td>		  <td valign=\"top\" class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">PRIMARY</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">skin_ID<br/>config_ID<br/>server_ID<br/></td>		</tr>	  </tbody></table>	</td>  </tr></tbody></table><br/><br/>	</td>  </tr>  <tr>	<td bgcolor=\"#ffffff\"><br/><br/><br/></td>  </tr></tbody></table><table width=\"100%\" cellspacing=\"2\" cellpadding=\"0\" border=\"0\" bgcolor=\"#eef4ff\">  <tbody><tr>	<td class=\"fontXB\"><i>Private Content</i><hr/></td>  </tr>  <tr>	<td><table width=\"100%\" cellspacing=\"0\" cellpadding=\"2\" border=\"0\" bgcolor=\"#e4efff\">  <tbody><tr>	<td class=\"fontX\">bb_folders	 <font class=\"fontS\"><br/></font></td>  </tr>  <tr>	<td>	  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"2\" border=\"0\" bgcolor=\"#d0dfff\">		<tbody><tr>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">ColumnName</td>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">DataType</td>		  <td width=\"1%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">PrimaryKey  </td>		  <td width=\"1%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">NotNull  </td>		  <td width=\"1%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">Flags</td>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">Default Value</td>		  <td width=\"20%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">Comment</td>		  <td width=\"1%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">AutoInc</td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"><b>folder_ID</b></td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"><b>INTEGER(11)</b></td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">PK</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"><b>owner_id</b></td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"><b>INTEGER(10)</b></td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">PK</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">folder_name</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">VARCHAR(255)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">folder_icon_id</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">INTEGER(10)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>	  </tbody></table>	</td>  </tr>  <tr>	<td class=\"fontB\">	  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"2\" border=\"0\" bgcolor=\"#d8e6ff\">		<tbody><tr>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">IndexName</td>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">IndexType</td>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">Columns</td>		</tr>		<tr>		  <td valign=\"top\" class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">PRIMARY</td>		  <td valign=\"top\" class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">PRIMARY</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">folder_ID<br/>owner_id<br/></td>		</tr>	  </tbody></table>	</td>  </tr></tbody></table><br/><br/><table width=\"100%\" cellspacing=\"0\" cellpadding=\"2\" border=\"0\" bgcolor=\"#e4efff\">  <tbody><tr>	<td class=\"fontX\">bb_messages	 <font class=\"fontS\"><br/></font></td>  </tr>  <tr>	<td>	  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"2\" border=\"0\" bgcolor=\"#d0dfff\">		<tbody><tr>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">ColumnName</td>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">DataType</td>		  <td width=\"1%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">PrimaryKey  </td>		  <td width=\"1%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">NotNull  </td>		  <td width=\"1%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">Flags</td>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">Default Value</td>		  <td width=\"20%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">Comment</td>		  <td width=\"1%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">AutoInc</td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"><b>message_ID</b></td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"><b>INTEGER(11)</b></td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">PK</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"><b>owner_id</b></td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"><b>INTEGER(10)</b></td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">PK</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"><b>folder_ID</b></td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"><b>INTEGER(11)</b></td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">PK</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">recipient_id</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">INTEGER(10)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">author_id</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">INTEGER(10)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">message_title</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">VARCHAR(255)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">text</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">TEXT</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">message_date</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">INTEGER(10)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">message_icon_id</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">INTEGER(10)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">folder</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">INTEGER(10)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">private</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">TINYINT(1)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">1</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">read</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">TINYINT(1)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">richtext</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">TINYINT(1)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>	  </tbody></table>	</td>  </tr>  <tr>	<td class=\"fontB\">	  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"2\" border=\"0\" bgcolor=\"#d8e6ff\">		<tbody><tr>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">IndexName</td>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">IndexType</td>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">Columns</td>		</tr>		<tr>		  <td valign=\"top\" class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">PRIMARY</td>		  <td valign=\"top\" class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">PRIMARY</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">message_ID<br/>owner_id<br/>folder_ID<br/></td>		</tr>	  </tbody></table>	</td>  </tr></tbody></table><br/><br/>	</td>  </tr>  <tr>	<td bgcolor=\"#ffffff\"><br/><br/><br/></td>  </tr></tbody></table><table width=\"100%\" cellspacing=\"2\" cellpadding=\"0\" border=\"0\" bgcolor=\"#eef4ff\">  <tbody><tr>	<td class=\"fontXB\"><i>Public Content</i><hr/></td>  </tr>  <tr>	<td><table width=\"100%\" cellspacing=\"0\" cellpadding=\"2\" border=\"0\" bgcolor=\"#e4efff\">  <tbody><tr>	<td class=\"fontX\">bb_acls	 <font class=\"fontS\"><br/></font></td>  </tr>  <tr>	<td>	  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"2\" border=\"0\" bgcolor=\"#d0dfff\">		<tbody><tr>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">ColumnName</td>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">DataType</td>		  <td width=\"1%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">PrimaryKey  </td>		  <td width=\"1%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">NotNull  </td>		  <td width=\"1%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">Flags</td>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">Default Value</td>		  <td width=\"20%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">Comment</td>		  <td width=\"1%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">AutoInc</td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">acl_ID</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">INTEGER(10)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">acl_area</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">INTEGER(10)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">acl_group</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">INTEGER(10)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">canread</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">TINYINT(1)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">canwrite</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">TINYINT(1)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">canstart</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">TINYINT(1)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">cansee</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">TINYINT(1)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">canmod</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">TINYINT(1)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">server</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">INTEGER(10)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>	  </tbody></table>	</td>  </tr>  <tr>	<td class=\"fontB\">	  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"2\" border=\"0\" bgcolor=\"#d8e6ff\">		<tbody><tr>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">IndexName</td>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">IndexType</td>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">Columns</td>		</tr>		<tr>		  <td valign=\"top\" class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">acl_ID</td>		  <td valign=\"top\" class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">Index</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">acl_ID<br/></td>		</tr>		<tr>		  <td valign=\"top\" class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">groups</td>		  <td valign=\"top\" class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">Index</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">acl_group<br/></td>		</tr>	  </tbody></table>	</td>  </tr></tbody></table><br/><br/><table width=\"100%\" cellspacing=\"0\" cellpadding=\"2\" border=\"0\" bgcolor=\"#e4efff\">  <tbody><tr>	<td class=\"fontX\">bb_areas	 <font class=\"fontS\"><br/></font></td>  </tr>  <tr>	<td>	  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"2\" border=\"0\" bgcolor=\"#d0dfff\">		<tbody><tr>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">ColumnName</td>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">DataType</td>		  <td width=\"1%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">PrimaryKey  </td>		  <td width=\"1%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">NotNull  </td>		  <td width=\"1%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">Flags</td>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">Default Value</td>		  <td width=\"20%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">Comment</td>		  <td width=\"1%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">AutoInc</td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"><b>area_ID</b></td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"><b>INTEGER(11)</b></td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">PK</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"><b>config_ID</b></td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"><b>INTEGER(11)</b></td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">PK</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"><b>server_ID</b></td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"><b>INTEGER(11)</b></td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">PK</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">parent</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">INTEGER(10)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">area_title</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">VARCHAR(255)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">area_description</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">VARCHAR(255)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">icon</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">VARCHAR(255)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">server</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">INTEGER(10)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">area_topics</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">INTEGER(10)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">area_replies</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">INTEGER(10)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">last_topic_id</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">INTEGER(10)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">last_topic_title</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">VARCHAR(255)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">last_topic_date</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">INTEGER(10)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">last_author_id</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">INTEGER(10)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">last_author_name</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">VARCHAR(255)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">area_order</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">INTEGER(10)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">redirect</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">TINYINT(1)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">area_url</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">VARCHAR(255)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>	  </tbody></table>	</td>  </tr>  <tr>	<td class=\"fontB\">	  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"2\" border=\"0\" bgcolor=\"#d8e6ff\">		<tbody><tr>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">IndexName</td>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">IndexType</td>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">Columns</td>		</tr>		<tr>		  <td valign=\"top\" class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">PRIMARY</td>		  <td valign=\"top\" class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">PRIMARY</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">area_ID<br/>config_ID<br/>server_ID<br/></td>		</tr>	  </tbody></table>	</td>  </tr></tbody></table><br/><br/><table width=\"100%\" cellspacing=\"0\" cellpadding=\"2\" border=\"0\" bgcolor=\"#e4efff\">  <tbody><tr>	<td class=\"fontX\">bb_polls	 <font class=\"fontS\"><br/></font></td>  </tr>  <tr>	<td>	  <table width=\"100%\" cellspacing=\"0\" cellpadding=\"2\" border=\"0\" bgcolor=\"#d0dfff\">		<tbody><tr>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">ColumnName</td>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">DataType</td>		  <td width=\"1%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">PrimaryKey  </td>		  <td width=\"1%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">NotNull  </td>		  <td width=\"1%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">Flags</td>		  <td width=\"15%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">Default Value</td>		  <td width=\"20%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">Comment</td>		  <td width=\"1%\" class=\"fontSB\" style=\"border-bottom: 1px solid rgb(96, 96, 96);\">AutoInc</td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"><b>topic_ID</b></td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"><b>INTEGER(11)</b></td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">PK</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">poll_ID</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">INTEGER(11)</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\">NN</td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb(192, 192, 192);\"> </td>		</tr>		<tr>		  <td class=\"fontS\" style=\"border-bottom: 1px solid rgb','','chris','chris','Y','html','');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (30,'WikiHomePage','2005-04-15 01:27:01','Welcome to NextBBS : Wiki.\n\n<br/>If you do not know what a Wiki is, please first take a look [[http://en.wikipedia.org/wiki/Wiki here]].\n\n<br/>\n\n<br/><i>-Chris.<br/><br/>Read the ProgrammersManual<br/><br/>ThirdPartyPackages<br/><br/>DatabaseInformation<br/><br/>SourceControl<br/><br/></i><img alt=\"\" src=\"http://bb.militate.com//servers/1/attachments/15.gif\" area=\"14022\"/><br/>Useful pages: OrphanedPages, WantedPages, TextSearch.','','chris','chris','N','html','');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (31,'SourceControl','2005-04-15 01:27:22','HowToInstallPerforceClientOnLinux','','chris','chris','Y','html','');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (32,'HowToInstallPerforceClientOnLinux','2005-04-15 01:31:21','First, download p4 from [[http://www.perforce.com/downloads/perforce/r04.2/bin.linux24x86/p4 here]]<br/><br/>It must be executable:<br/><font color=\"#0000ff\">chmod +x p4</font><br/><br/>Now, create environment variable P4PORT:<br/><font color=\"#0000ff\">export P4PORT=67.18.70.66:1666</font><br/><br/>Create a client:<br/><font color=\"#0000ff\">p4 client <i>your_machine_host_name</i></font><br/><br/>Sync. with the Perforce server:<br/><font color=\"#0000ff\">p4 sync ...</font><br/><br/>You\'re ready!<br/>','','chris','chris','Y','html','');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (33,'WikiHomePage','2005-04-15 01:57:29','Welcome to NextBBS : Wiki.\n\n<br/>If you do not know what a Wiki is, please first take a look [[http://en.wikipedia.org/wiki/Wiki here]].\n\n<br/>\n\n<br/><i>-Chris.<br/><br/>Read the ProgrammersManual</i>: A quick\'n dirty introduction<br/><br/><a href=\"http://bb.militate.com/docs/code/elementindex_nbbs.html\">The project Classes Hierarchy,</a>  documented (Opens in new window)<br/><i><br/>ThirdPartyPackages</i>: What are they?<i><br/><br/>DatabaseInformation</i>: An attempt at documenting the database schema<i><br/><br/>SourceControl</i>: How do I configure Perforce?<i><br/><br/></i><img alt=\"\" src=\"http://bb.militate.com//servers/1/attachments/15.gif\" area=\"14022\"/><br/>Useful pages: OrphanedPages, WantedPages, TextSearch.','','chris','chris','N','html','');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (34,'WikiHomePage','2005-04-15 02:26:25','Welcome to NextBBS : Wiki.\n\n<br/>If you do not know what a Wiki is, please first take a look [[http://en.wikipedia.org/wiki/Wiki here]].\n\n<br/>\n\n<br/><i>-Chris.<br/><br/>Read the ProgrammersManual</i>: A quick\'n dirty introduction<br/><br/><a target=\"_blank\" href=\"http://bb.militate.com/docs/code/elementindex_nbbs.html\">The project Classes Hierarchy,</a>  documented (Opens in new window)<br/><br/><a href=\"http://bb.militate.com/docs/xref/\" target=\"_blank\">The project Tree, fully cross-referenced</a> (Opens in new window)<br/><i><br/>ThirdPartyPackages</i>: What are they?<i><br/><br/>DatabaseInformation</i>: An attempt at documenting the database schema<i><br/><br/>SourceControl</i>: How do I configure Perforce?<i><br/><br/></i><img alt=\"\" src=\"http://bb.militate.com//servers/1/attachments/15.gif\" area=\"14022\"/><br/>Useful pages: OrphanedPages, WantedPages, TextSearch.','','chris','chris','N','html','');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (35,'WikiHomePage','2005-04-15 02:36:31','Welcome to NextBBS : Wiki.\n\n<br/>If you do not know what a Wiki is, please first take a look [[http://en.wikipedia.org/wiki/Wiki here]].\n\n<i><br/></i><br/><ul><li>Read the ProgrammersManual: A quick\'n dirty introduction</li><li><a target=\"_blank\" href=\"http://bb.militate.com/docs/code/elementindex_nbbs.html\">The project Classes Hierarchy,</a>  documented (Opens in new window)</li><li><a href=\"http://bb.militate.com/docs/xref/\" target=\"_blank\">The project Tree, fully cross-referenced</a> (Opens in new window)</li><li>ThirdPartyPackages: What are they?</li><li>DatabaseInformation: An attempt at documenting the database schema</li><li>SourceControl: How do I configure Perforce?<br/></li></ul><i><br/></i><img alt=\"\" src=\"http://bb.militate.com//servers/1/attachments/15.gif\" area=\"14022\"/><br/>Useful pages: OrphanedPages, WantedPages, TextSearch.','','chris','chris','N','html','');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (36,'TextSearch?phrase=WikiHomePage','2005-04-25 02:12:43','====Testing====','','','delhi-202.54.214-2.vsnl.net.in','Y','html','');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (37,'ThirdPartyPackages','2005-05-03 21:13:30','<b>Database Abstraction</b><br/>[[http://adodb.sourceforge.net/ AdoDb]]<br/>Database Abstraction Layer - self-contained<br/>[[http://pear.php.net/package/DB Pear::DB]]<br/>Database Abstraction Layer - requires Pear<br/>[[http://phplens.com/lens/adodb/ Comparing ADODB with PEAR DB, MDB, dbx, Metabase and Native MySQL]]<br/><br/><b>Templates Engine</b><br/>[[http://smarty.php.net/ Smarty]]<br/><br/><br/><br/>TestPleaseIgnore<br/><br/><br/>','','chris','chris','Y','html','');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (38,'WikiHomePage','2005-05-03 21:22:38','Welcome to NextBBS : Wiki.\n\n<br/>If you do not know what a Wiki is, please first take a look [[http://en.wikipedia.org/wiki/Wiki here]].\n\n<i><br/></i><br/>If you are a Webmaster:<br/><ul><li>BoardUserGuide<br type=\"_moz\"/></li></ul><br/>If you are a project contributor:<br/><ul><li>Read the ProgrammersManual: A quick\'n dirty introduction</li><li><a href=\"http://bb.militate.com/docs/code/elementindex_nbbs.html\" target=\"_blank\">The project Classes Hierarchy,</a>  documented (Opens in new window)</li><li><a target=\"_blank\" href=\"http://bb.militate.com/docs/xref/\">The project Tree, fully cross-referenced</a> (Opens in new window)</li><li>ThirdPartyPackages: What are they?</li><li>DatabaseInformation: An attempt at documenting the database schema</li><li>SourceControl: How do I configure Perforce?<br/></li></ul><i><br/></i><img area=\"14022\" src=\"http://bb.militate.com//servers/1/attachments/15.gif\" alt=\"\"/><br/>Useful pages: OrphanedPages, WantedPages, TextSearch.','','chris','chris','N','html','');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (39,'BoardUserGuide','2005-05-03 21:25:37','The User Guide can be either downloaded of consulter online:<br/><ul><li><a href=\"http://bb.militate.com/?do=page&amp;n=usersguide\">Consult it online</a> (ugly HTML export)</li><li>Download the complete PDF version</li><li>Download the light PDF version (ugly pictures)</li><li>Download the Open Office document<br type=\"_moz\"/></li></ul>','','chris','chris','N','html','');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (40,'BoardUserGuide','2005-05-03 21:38:20','The User Guide can be either downloaded of consulter online:<br/><ul><li><a href=\"http://bb.militate.com/?do=page&amp;n=usersguide\">Consult it online</a> (ugly HTML export)</li><li>Download the <a href=\"http://prdownloads.sourceforge.net/forums/BBSUserguide_Ver1.0.pdf?download\">complete PDF version</a></li><li>Download the <a href=\"http://prdownloads.sourceforge.net/forums/BBSUserguide_Ver1.0_lite.pdf?download\">light PDF version</a> (ugly pictures)</li><li>Download the <a href=\"http://prdownloads.sourceforge.net/forums/BBSUserguide_Ver1.0.sxw?download\">Open Office document</a><br type=\"_moz\"/></li></ul>','','chris','chris','N','html','');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (41,'BoardUserGuide','2005-05-03 21:38:32','The User Guide can be either downloaded of consulted online:<br/><ul><li><a href=\"http://bb.militate.com/?do=page&amp;n=usersguide\">Consult it online</a> (ugly HTML export)</li><li>Download the <a href=\"http://prdownloads.sourceforge.net/forums/BBSUserguide_Ver1.0.pdf?download\">complete PDF version</a></li><li>Download the <a href=\"http://prdownloads.sourceforge.net/forums/BBSUserguide_Ver1.0_lite.pdf?download\">light PDF version</a> (ugly pictures)</li><li>Download the <a href=\"http://prdownloads.sourceforge.net/forums/BBSUserguide_Ver1.0.sxw?download\">Open Office document</a><br type=\"_moz\"/></li></ul>','','chris','chris','Y','html','');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (42,'WikiHomePage','2005-05-07 17:56:37','Welcome to NextBBS : Wiki.\n\n<br/>If you do not know what a Wiki is, please first take a look [[http://en.wikipedia.org/wiki/Wiki here]].\n\n<i><br/></i><br/>If you are a Webmaster:<br/><ul><li>BoardUserGuide<br type=\"_moz\"/></li></ul><br/>If you are a project contributor:<br/><ul><li>Read the ProgrammersManual: A quick\'n dirty introduction</li><li><a target=\"_blank\" href=\"http://bb.militate.com/docs/code/nbbs/\">The project Classes Hierarchy,</a>  documented (Opens in new window)</li><li><a href=\"http://bb.militate.com/docs/xref/\" target=\"_blank\">The project Tree, fully cross-referenced</a> (Opens in new window)</li><li>ThirdPartyPackages: What are they?</li><li>DatabaseInformation: An attempt at documenting the database schema</li><li>SourceControl: How do I configure Perforce?<br/></li></ul><i><br/></i><img alt=\"\" src=\"http://bb.militate.com//servers/1/attachments/15.gif\" area=\"14022\"/><br/>Useful pages: OrphanedPages, WantedPages, TextSearch.','','chris','chris','Y','html','');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (43,'Comment4','2005-05-18 08:59:00','Ummmm? Okay? You okay Chris?\r\n\r\n~MR','','','82-38-194-162.cable.ubr04.shef.blueyonder.co.uk','Y','html','WikiHomePage');
INSERT INTO `wakka_pages` (`id`, `tag`, `time`, `body`, `body_r`, `owner`, `user`, `latest`, `handler`, `comment_on`) VALUES (44,'Comment5','2005-06-27 15:26:53','Eheh fear not. I was just testing the integration.','','chris','chris','Y','html','WikiHomePage');
UNLOCK TABLES;
/*!40000 ALTER TABLE `wakka_pages` ENABLE KEYS */;

--
-- Table structure for table `wakka_referrers`
--

DROP TABLE IF EXISTS `wakka_referrers`;
CREATE TABLE `wakka_referrers` (
  `page_tag` char(50) NOT NULL default '',
  `referrer` char(150) NOT NULL default '',
  `time` datetime NOT NULL default '0000-00-00 00:00:00',
  KEY `idx_page_tag` (`page_tag`),
  KEY `idx_time` (`time`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `wakka_referrers`
--


/*!40000 ALTER TABLE `wakka_referrers` DISABLE KEYS */;
LOCK TABLES `wakka_referrers` WRITE;
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://tramadol.kor.st','2005-08-14 09:58:44');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://valium-online.dynup.net','2005-08-14 16:12:47');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 09:17:43');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 09:51:02');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 09:08:13');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://levitra-online.dynup.net','2005-08-14 16:36:07');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 16:36:03');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://1959-ford-thunderbird.allinfo4u.com.ru?search.com&q=1959 ford thunderbird','2005-08-14 09:23:07');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://soma-online.dynup.net','2005-08-14 17:06:06');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 08:54:36');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://fioricet-online.euro.tm','2005-08-14 16:58:16');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 17:22:20');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://hydrocodone-online.host.kz','2005-08-14 08:20:17');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 18:18:09');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 08:12:21');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 17:50:18');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermine-online.dynup.net','2005-08-14 10:24:06');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 07:44:23');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 07:58:20');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://viagra-online.wb.st','2005-08-14 07:59:14');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 07:35:34');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 18:13:45');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://fioricet-online.at.tut.by','2005-08-14 09:26:07');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermine-online.static.net','2005-08-14 07:21:17');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://lortab-online.dynup.net','2005-08-14 10:53:46');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 18:22:33');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://xenical.search-corp.com','2005-08-14 07:02:01');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://lortab-online.dynup.net','2005-08-14 06:48:59');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 06:53:40');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://badcarcr42.boom.ru?search.com&q=bad car credit hempstead loan','2005-08-14 20:39:43');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://levitra-online.dynup.net','2005-08-14 06:41:03');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 17:55:10');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 06:44:13');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 07:12:06');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 05:34:26');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 07:21:38');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 03:01:33');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://tramadol-online.static.net','2005-08-14 05:02:15');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 04:24:37');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 04:10:34');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://viagra-online.dynup.net','2005-08-14 18:05:04');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermine-online.euro.tm','2005-08-14 08:56:15');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 04:15:45');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermine--buy.at.tut.by','2005-08-14 08:09:01');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://vicodin-online.dynup.net','2005-08-14 04:27:05');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://ultram-online.dynup.net','2005-08-14 07:21:43');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 02:56:26');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://diazepam-online.static.net','2005-08-14 03:43:16');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://adipex-online.dynup.net','2005-08-14 09:57:02');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 01:37:50');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 01:14:17');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 02:10:07');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 10:46:59');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 03:38:17');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 02:47:35');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://xanax-online.static.net','2005-08-14 06:41:14');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://hydrocodone--online.at.tut.by','2005-08-14 19:04:05');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermine-online.dynup.net','2005-08-14 05:15:09');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 13:20:41');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermine--buy.at.tut.by','2005-08-14 08:54:05');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://lortab-online.kogaryu.com','2005-08-14 02:26:14');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 02:38:02');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 14:12:04');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 00:32:24');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://cialis-online.dynup.net','2005-08-14 01:02:15');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-13 22:45:55');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://soma-online.dynup.net','2005-08-13 22:43:44');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://xanax-online.dynup.net','2005-08-13 23:47:45');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-13 22:50:13');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://valium-online.dynup.net','2005-08-14 02:47:03');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 08:02:47');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://xanax-online.dynup.net','2005-08-14 08:28:05');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://viagra-online.static.net','2005-08-14 07:00:14');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-13 21:17:42');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 16:45:36');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 18:50:44');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 18:36:29');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 02:19:40');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 06:06:36');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 00:28:02');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://tramadol.kor.st','2005-08-14 05:42:06');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-13 22:41:29');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-13 20:40:13');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://hoover-vacume.allsales.com.ru?search.com&q=hoover vacume','2005-08-14 20:26:39');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 20:28:13');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://cialis-online.dynup.net','2005-08-14 05:59:43');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://vicodin-online.static.net','2005-08-14 06:03:14');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 09:36:35');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://hydrocodone-online.dynup.net','2005-08-14 18:31:03');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 06:25:47');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 18:41:40');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://diazepam-online.dynup.net','2005-08-14 01:45:41');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 09:26:31');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 05:20:21');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermine-online.coms.nl','2005-08-14 13:11:15');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 08:07:58');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 03:33:51');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://soma-online.dynup.net','2005-08-14 11:58:05');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 06:02:15');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 06:34:36');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 00:04:27');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 00:51:30');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-13 20:44:36');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 18:55:38');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 02:14:30');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 19:37:19');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://ambien-online.static.net','2005-08-14 10:39:17');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://ambien-online.dynup.net','2005-08-14 04:57:02');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 05:57:49');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 06:11:48');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 19:09:36');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://levitra-online.dynup.net','2005-08-14 19:39:51');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 02:51:59');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 05:48:15');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 06:16:13');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-13 22:04:02');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 06:20:38');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 03:19:54');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://levitra-online.dynup.net','2005-08-14 15:17:46');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 19:27:57');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 05:39:28');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://vicodin-online.dynup.net','2005-08-14 08:43:44');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://hydrocodone--online.at.tut.by','2005-08-14 09:12:03');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://fioricet-online.static.net','2005-08-14 04:01:16');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 09:46:37');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 07:16:47');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 07:40:00');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 08:49:52');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 17:36:17');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-13 23:18:10');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://soma-online.dynup.net','2005-08-14 07:10:05');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://diazepam-online.dynup.net','2005-08-14 06:16:07');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://fioricet-online.at.tut.by','2005-08-14 00:36:42');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://cialis-online.dynup.net','2005-08-14 05:58:04');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 05:16:00');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 05:06:26');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 19:04:29');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://soma-online.static.net','2005-08-14 06:22:15');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 05:11:34');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 14:35:34');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://ultram-online.dynup.net','2005-08-14 03:03:42');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://soma-online.dynup.net','2005-08-14 02:10:03');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://diazepam-online.dynup.net','2005-08-14 10:18:47');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://valium-online.euro.tm','2005-08-14 18:01:15');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 11:01:50');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://adipex-online.static.net','2005-08-14 02:45:16');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermine-online.dynup.net','2005-08-14 09:24:46');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermine--buy.at.tut.by','2005-08-14 18:48:06');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 06:30:11');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 04:52:30');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://hgh-online.static.net','2005-08-13 20:49:13');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://soma-online.dynup.net','2005-08-14 07:02:43');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 02:28:29');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 20:04:44');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 11:24:40');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://adipex-online.dynup.net','2005-08-14 04:41:04');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermine-online.euro.tm','2005-08-14 12:51:15');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-13 22:59:48');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 06:39:44');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://valium-online.static.net','2005-08-14 05:42:14');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 06:48:54');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 00:23:35');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://adipex-online.static.net','2005-08-14 10:21:15');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://hydrocodone--online.at.tut.by','2005-08-14 12:39:47');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://valium-online.dynup.net','2005-08-14 07:31:45');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 01:46:53');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 10:09:25');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 09:55:30');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 16:12:37');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://lortab-online.kogaryu.com','2005-08-14 09:59:18');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 10:14:31');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://hgh-online.static.net','2005-08-14 12:07:14');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 16:17:42');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 16:03:43');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermine--buy.at.tut.by','2005-08-14 13:34:05');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 10:27:48');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 10:37:29');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://ambien-online.dynup.net','2005-08-14 13:41:45');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 10:57:03');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://tramadol-online.dynup.net','2005-08-14 12:11:05');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 12:15:59');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 12:34:23');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 12:29:58');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://diazepam-online.dynup.net','2005-08-14 16:05:04');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://buy-cialis.static.net','2005-08-14 11:04:16');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 16:08:10');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 15:44:41');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://buy-tramadol.euro.tm','2005-08-14 15:58:19');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://lortab-online.dynup.net','2005-08-14 16:48:05');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://lortab-online.dynup.net','2005-08-14 11:46:02');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 15:02:47');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 10:51:45');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://soma-online.dynup.net','2005-08-14 11:03:59');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://ultram-online.dynup.net','2005-08-14 11:30:45');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://cialis-online.dynup.net','2005-08-14 15:51:06');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermine-online.dynup.net','2005-08-14 18:28:48');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 11:06:20');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://fioricet-online.dynup.net','2005-08-14 11:16:05');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 11:15:51');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 16:59:34');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://valium-online.dynup.net','2005-08-14 11:42:46');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://diazepam-online.static.net','2005-08-14 11:25:16');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 11:38:39');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 18:32:09');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://fioricet-online.static.net','2005-08-14 11:46:16');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 11:52:38');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 16:54:25');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 12:02:04');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 12:06:35');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://xanax-online.dynup.net','2005-08-14 12:05:45');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 12:25:32');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 12:20:28');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://xanax-online.dynup.net','2005-08-14 13:04:04');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 12:38:46');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://mikasa-stemware.allinfo4u.com.ru','2005-08-14 12:42:30');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://levitra-online.static.net','2005-08-14 12:28:15');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://ambien-online.euro.tm','2005-08-14 14:30:16');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 12:43:54');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://hydrocodone--online.at.tut.by','2005-08-14 13:48:05');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 13:11:49');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 13:02:21');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 12:57:52');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://lortab-online.dynup.net','2005-08-13 21:22:02');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 13:25:47');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 13:34:38');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 13:06:42');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 13:30:14');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 13:16:14');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermine-online.dynup.net','2005-08-14 13:53:47');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 00:14:01');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermine.welcome.to','2005-08-14 13:30:15');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 13:39:45');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://vicodin-online.dynup.net','2005-08-14 00:47:41');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://ultram-online.static.net','2005-08-13 21:44:15');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-13 21:50:02');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 13:58:06');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 08:16:52');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://fioricet-online.at.tut.by','2005-08-14 14:04:06');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://viagra-online.wb.st','2005-08-14 00:24:15');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 15:16:46');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://lortab-online.kogaryu.com','2005-08-14 13:51:19');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-13 21:36:05');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-13 21:31:40');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 16:26:29');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 15:07:53');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 14:07:39');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 15:12:17');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermine--buy.at.tut.by','2005-08-14 17:11:47');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 14:16:29');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 09:03:44');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://hoover-vacume.allsales.com.ru','2005-08-14 20:26:38');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://tiny-search-engine.com','2005-08-14 16:28:02');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 14:26:04');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://adipex-online.dynup.net','2005-08-14 14:34:08');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-13 22:13:32');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 15:21:52');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermine-online.dynup.net','2005-08-14 20:27:04');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermine.kor.st','2005-08-14 10:40:07');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://buy-cialis.euro.tm','2005-08-14 14:52:18');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://fioricet-online.dynup.net','2005-08-14 15:03:58');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 14:53:58');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 11:57:38');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://otherwatch35.boom.ru?search.com&q=other watch sport','2005-08-14 09:39:55');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 16:31:39');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 07:53:55');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 19:46:17');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://tramadol.welcome.to','2005-08-14 20:00:16');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 19:32:22');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://hydrocodone.welcome.to','2005-08-14 19:40:17');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 20:09:50');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 19:23:34');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://jeep-wrangler-tire-cover.realcheapbuy.com','2005-08-14 11:46:42');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 11:48:09');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermine-online.coms.nl','2005-08-14 01:46:14');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://vicodin-online.dynup.net','2005-08-14 19:35:06');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://hydrocodone--online.at.tut.by','2005-08-14 03:58:06');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 01:51:43');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://lortab-online.dynup.net','2005-08-14 01:57:05');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://fioricet-online.at.tut.by','2005-08-14 19:19:05');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://adipex-p.realcheapbuy.com?search.com&q=adipex-p','2005-08-14 20:26:39');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 11:29:44');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 19:41:55');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 19:14:00');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://mikasa-stemware.allinfo4u.com.ru?search.com&q=mikasa stemware','2005-08-14 12:42:32');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 03:47:51');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 02:42:23');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 03:24:23');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 04:01:45');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://hydrocodone-online.dynup.net','2005-08-14 03:27:10');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 02:33:36');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 03:15:31');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermine--buy.at.tut.by','2005-08-14 03:42:03');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://viagra-online.dynup.net','2005-08-14 02:59:05');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://xanax-online.dynup.net','2005-08-14 03:14:04');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 02:24:06');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 01:18:47');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://levitra-online.dynup.net','2005-08-14 01:43:04');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://valium-online.dynup.net','2005-08-14 12:40:03');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 01:32:42');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 01:05:28');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 01:09:51');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 01:00:16');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 01:23:50');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 00:37:32');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://soma.euro.tm','2005-08-14 17:41:15');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-13 22:36:18');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://vicodin-online.static.net','2005-08-13 22:28:13');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-13 22:08:22');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://ultram-online.dynup.net','2005-08-13 22:10:02');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 00:46:21');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-13 21:45:38');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-13 22:55:27');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-13 21:54:25');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://tramadol-online.dynup.net','2005-08-13 21:54:01');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 20:32:35');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-13 21:59:35');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-13 21:26:29');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-13 21:22:06');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://ambien-online.dynup.net','2005-08-14 20:09:06');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://cialis.welcome.to','2005-08-14 20:22:16');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 20:23:48');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 20:14:12');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 20:00:17');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermine--buy.at.tut.by','2005-08-13 23:13:02');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 19:55:50');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-13 20:54:11');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 09:12:33');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://valium-online.dynup.net','2005-08-14 20:37:47');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://adipex-online.dynup.net','2005-08-14 19:53:05');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 19:50:44');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://1959-ford-thunderbird.allinfo4u.com.ru','2005-08-14 09:23:06');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 20:18:38');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 08:59:03');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://buy-viagra.euro.tm','2005-08-14 16:17:17');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://fioricet-online.at.tut.by','2005-08-13 20:40:42');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 18:27:42');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://adipex-p.realcheapbuy.com','2005-08-14 20:26:38');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://levitra-online.dynup.net','2005-08-13 21:11:05');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://badcarcr42.boom.ru','2005-08-14 20:39:42');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://naked-woman-wre31.pharmacy-medicine.name','2005-08-14 16:26:07');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 16:40:31');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://valium-online.dynup.net','2005-08-13 23:17:46');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 20:37:46');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-13 20:58:37');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://buy-ambien.good-phentermine.com?search.com&q=buy ambien','2005-08-14 09:15:46');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 16:50:02');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-13 21:08:09');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 08:44:47');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://ambien-online.dynup.net','2005-08-13 21:15:41');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 17:04:01');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-13 20:49:48');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-13 23:32:09');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 17:12:50');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 09:31:39');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 08:30:45');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://tramadol-online.dynup.net','2005-08-14 17:21:05');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-13 21:12:30');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://soma-online.dynup.net','2005-08-13 21:37:01');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 00:41:59');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 08:26:17');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://ultram-online.static.net','2005-08-14 05:23:14');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://tramadol.kor.st','2005-08-14 18:53:02');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 17:08:21');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 05:43:56');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 05:29:58');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 10:00:34');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-13 21:40:26');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 05:25:32');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 17:26:44');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-13 23:08:35');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://ultram-online.dynup.net','2005-08-14 07:43:03');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 17:31:56');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 19:18:25');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 01:42:15');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://valium-online.dynup.net','2005-08-14 07:57:03');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 18:46:05');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 17:40:42');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-13 22:31:55');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://hydrocodone--online.at.tut.by','2005-08-14 00:28:42');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 17:45:49');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 08:35:49');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-13 22:22:18');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-13 22:17:57');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 18:04:13');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://valium-online.dynup.net','2005-08-13 22:21:03');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-13 22:27:31');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://atlantaflowerdelivery.realcheapbuy.com','2005-08-14 00:25:57');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-13 23:41:43');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 12:52:44');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://xanax-online.dynup.net','2005-08-13 22:46:03');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://soma-online.static.net','2005-08-13 22:47:15');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://hydrocodone-online.host.kz','2005-08-14 00:46:15');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 18:08:54');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 00:00:02');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 14:44:24');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 07:30:30');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-13 21:03:46');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-13 23:27:44');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-13 23:04:13');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://xanax-online.static.net','2005-08-13 23:08:13');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 01:28:15');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermine.kor.st','2005-08-14 18:38:48');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermine-online.host.kz','2005-08-14 18:39:19');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-13 23:13:48');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://tramadol.kor.st','2005-08-14 15:38:05');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://hydrocodone-online.dynup.net','2005-08-13 22:59:02');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 14:40:00');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 14:49:32');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://fioricet-online.at.tut.by','2005-08-14 12:51:46');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://fioricet-online.dynup.net','2005-08-14 16:22:05');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-13 23:22:35');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://adipex-online.euro.tm','2005-08-14 14:12:18');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://vicodin-online.dynup.net','2005-08-14 14:19:05');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 14:30:28');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 14:21:36');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 14:58:23');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://viagra-online.static.net','2005-08-13 23:26:14');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://basic-poker-rule.usa10.com.ru','2005-08-13 23:30:46');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://basic-poker-rule.usa10.com.ru?search.com&q=basic poker rule','2005-08-13 23:30:48');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 14:02:32');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://lortab-online.dynup.net','2005-08-14 15:28:48');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 13:53:41');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-13 23:36:34');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-13 23:46:07');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-13 23:50:29');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://ambien-online.dynup.net','2005-08-14 14:47:05');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 13:44:08');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://vicodin-online.dynup.net','2005-08-14 00:01:02');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 00:09:38');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://adipex-online.dynup.net','2005-08-14 13:24:46');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 13:48:39');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-13 23:55:40');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 15:26:16');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://ultram-online.dynup.net','2005-08-14 02:34:03');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 00:18:26');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 12:48:17');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://adipex-online.dynup.net','2005-08-14 00:17:04');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermine-online.host.kz','2005-08-14 00:06:16');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermine.kor.st','2005-08-14 15:21:05');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermine--buy.at.tut.by','2005-08-14 12:28:50');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://ultram-online.dynup.net','2005-08-14 12:25:09');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 12:11:36');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 02:00:38');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 17:17:56');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 11:43:40');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 15:40:14');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://levitra-online.dynup.net','2005-08-14 11:33:03');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://ambien-online.dynup.net','2005-08-14 00:32:03');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 15:30:39');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 15:35:51');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermine-online.dynup.net','2005-08-14 00:46:03');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 15:49:45');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 00:56:01');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://tramadol.kor.st','2005-08-14 10:50:06');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 11:34:21');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 10:32:50');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 10:41:55');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://diazepam-online.dynup.net','2005-08-14 01:15:03');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://ambien-online.dynup.net','2005-08-14 01:13:44');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 10:23:24');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 15:54:11');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://ultram-online.dynup.net','2005-08-14 16:01:46');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 15:58:41');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 10:18:57');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://hydrocodone-online.dynup.net','2005-08-14 12:15:45');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://levitra-online.dynup.net','2005-08-14 02:12:41');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 10:05:00');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 11:10:42');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://fioricet-online.dynup.net','2005-08-14 01:32:02');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://cialis-online.dynup.net','2005-08-14 10:07:51');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://otherwatch35.boom.ru','2005-08-14 09:39:54');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 01:56:10');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 09:41:32');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://ambien-online.dynup.net','2005-08-14 10:11:04');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 11:20:09');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermine.welcome.to','2005-08-14 02:06:14');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://vicodin-online.dynup.net','2005-08-14 09:44:05');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://buy-ambien.good-phentermine.com','2005-08-14 09:15:41');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://valium-online.dynup.net','2005-08-14 03:14:43');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 09:22:09');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://hydrocodone-online.dynup.net','2005-08-14 08:42:05');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 08:21:51');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 02:05:44');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 16:22:03');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 08:40:17');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://ambien-online.dynup.net','2005-08-14 18:11:47');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 03:10:21');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 07:49:32');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 03:05:56');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://valium-online.dynup.net','2005-08-14 17:49:04');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 17:59:47');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermine--buy.at.tut.by','2005-08-14 04:06:48');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://xanax-online.euro.tm','2005-08-14 18:21:18');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://tramadol-online.dynup.net','2005-08-14 07:26:05');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 07:26:09');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 03:28:42');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 03:56:41');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://cialis-online.dynup.net','2005-08-14 11:05:04');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://hydrocodone-online.dynup.net','2005-08-14 03:54:44');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 03:52:14');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 19:00:05');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 03:42:44');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://viagra-online.wb.st','2005-08-14 18:59:21');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 04:57:36');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://fioricet-online.at.tut.by','2005-08-14 04:14:03');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 04:06:11');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 04:20:09');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 04:29:42');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 04:43:38');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermine-online.host.kz','2005-08-14 07:38:15');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://vicodin-online.dynup.net','2005-08-14 04:44:56');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://bahamas-man-tom69.pharmacy-medicine.name','2005-08-14 07:05:07');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 07:07:38');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 04:38:32');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://rxphenterminerx.tblog.com','2005-08-14 05:52:42');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 07:02:32');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminet.tblog.com','2005-08-14 04:34:06');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 04:48:03');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phentermineus.tblog.com','2005-08-14 05:02:03');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://phenterminec.tblog.com','2005-08-14 06:58:06');
INSERT INTO `wakka_referrers` (`page_tag`, `referrer`, `time`) VALUES ('WikiHomePage','http://fioricet-online.dynup.net','2005-08-14 06:27:03');
UNLOCK TABLES;
/*!40000 ALTER TABLE `wakka_referrers` ENABLE KEYS */;

--
-- Table structure for table `wakka_users`
--

DROP TABLE IF EXISTS `wakka_users`;
CREATE TABLE `wakka_users` (
  `name` varchar(80) NOT NULL default '',
  `password` varchar(32) NOT NULL default '',
  `email` varchar(50) NOT NULL default '',
  `motto` text NOT NULL,
  `revisioncount` int(10) unsigned NOT NULL default '20',
  `changescount` int(10) unsigned NOT NULL default '50',
  `doubleclickedit` enum('Y','N') NOT NULL default 'Y',
  `signuptime` datetime NOT NULL default '0000-00-00 00:00:00',
  `show_comments` enum('Y','N') NOT NULL default 'N',
  PRIMARY KEY  (`name`),
  KEY `idx_name` (`name`),
  KEY `idx_signuptime` (`signuptime`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `wakka_users`
--


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

/*!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 */;

--- Init...
INSERT INTO chris_config (config_ID, server, config_key, config_value) VALUES (10,1,'sessions->domain','');
--- Password = 6f225d
INSERT INTO chris_users (userid, password, fullname, email, server, mgroup, checker, skinid, avatar) VALUES ('admin',[your_password],'Chris F R','webmaster@clicdev.com',1,2,NULL,NULL,NULL);
INSERT INTO chris_acls (acl_area, acl_group, canread, canwrite, canstart, cansee, canmod, server) VALUES (1,1,1,1,1,1,0,1);
INSERT INTO chris_acls (acl_area, acl_group, canread, canwrite, canstart, cansee, canmod, server) VALUES (1,2,1,1,1,1,1,1);
INSERT INTO chris_acls (acl_area, acl_group, canread, canwrite, canstart, cansee, canmod, server) VALUES (1,3,1,0,0,1,0,1);
INSERT INTO chris_acls (acl_area, acl_group, canread, canwrite, canstart, cansee, canmod, server) VALUES (2,1,1,1,1,1,0,1);
INSERT INTO chris_acls (acl_area, acl_group, canread, canwrite, canstart, cansee, canmod, server) VALUES (2,2,1,1,1,1,1,1);
INSERT INTO chris_acls (acl_area, acl_group, canread, canwrite, canstart, cansee, canmod, server) VALUES (2,3,1,0,0,1,0,1);
INSERT INTO chris_areas (parent, area_title, area_description, icon, server, area_topics, area_replies, last_topic_id, last_topic_title, last_topic_date, last_author_id, last_author_name, area_order) VALUES (-1,'Default Category','',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1);
INSERT INTO chris_areas (parent, area_title, area_description, icon, server, area_topics, area_replies, last_topic_id, last_topic_title, last_topic_date, last_author_id, last_author_name, area_order) VALUES (1,'Test Forum','',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1);
INSERT INTO chris_folders (folder_ID, owner_id, folder_name, folder_icon_id) VALUES (-2,-1,'Inbox',NULL);
INSERT INTO chris_folders (folder_ID, owner_id, folder_name, folder_icon_id) VALUES (-1,-1,'Sent',NULL);
INSERT INTO chris_settings (setting_key, setting_value, setting_server, setting_userid) VALUES ('se_version','1','1','-1');
INSERT INTO chris_settings (setting_key, setting_value, setting_server, setting_userid) VALUES ('bb_code','YToxNDp7czoxOiJiIjthOjM6e3M6NjoiY2xvc2VkIjtpOjE7czo0OiJvcGVuIjtzOjM6IjxiPiI7czo1OiJjbG9zZSI7czo0OiI8L2I+Ijt9czoxOiJ1IjthOjM6e3M6NjoiY2xvc2VkIjtpOjE7czo0OiJvcGVuIjtzOjM6Ijx1PiI7czo1OiJjbG9zZSI7czo0OiI8L3U+Ijt9czoxOiJpIjthOjM6e3M6NjoiY2xvc2VkIjtpOjE7czo0OiJvcGVuIjtzOjM6IjxpPiI7czo1OiJjbG9zZSI7czo0OiI8L2k+Ijt9czoxOiJvIjthOjM6e3M6NjoiY2xvc2VkIjtpOjE7czo0OiJvcGVuIjtzOjIzOiI8c3BhbiBjbGFzcz0ib3ZlcmxpbmUiPiI7czo1OiJjbG9zZSI7czo3OiI8L3NwYW4+Ijt9czoxOiJzIjthOjM6e3M6NjoiY2xvc2VkIjtpOjE7czo0OiJvcGVuIjtzOjI4OiI8c3BhbiBjbGFzcz0ic3RyaWtldGhyb3VnaCI+IjtzOjU6ImNsb3NlIjtzOjc6Ijwvc3Bhbj4iO31zOjM6ImltZyI7YTozOntzOjY6ImNsb3NlZCI7aToxO3M6NDoib3BlbiI7czoxMDoiPGltZyBzcmM9IiI7czo1OiJjbG9zZSI7czoyOiIiPiI7fXM6NDoibGlzdCI7YTozOntzOjY6ImNsb3NlZCI7aToxO3M6NDoib3BlbiI7czoyMzoiPHVsIGNsYXNzPSJsaXN0YnVsbGV0Ij4iO3M6NToiY2xvc2UiO3M6NzoiPC9saXN0PiI7fXM6MToiKiI7YTozOntzOjY6ImNsb3NlZCI7aTowO3M6NToibWF0Y2giO3M6MjoiXCoiO3M6NDoib3BlbiI7czo0OiI8bGk+Ijt9czozOiJ1cmwiO2E6NDp7czo2OiJjbG9zZWQiO2k6MTtzOjU6Im1hdGNoIjtzOjk6InVybD0oLis/KSI7czo0OiJvcGVuIjtzOjI5OiI8YSBocmVmPSIkMSIgdGFyZ2V0PSJfYmxhbmsiPiI7czo1OiJjbG9zZSI7czo0OiI8L2E+Ijt9czo1OiJjb2xvciI7YTo0OntzOjY6ImNsb3NlZCI7aToxO3M6NToibWF0Y2giO3M6MTE6ImNvbG9yPSguKz8pIjtzOjQ6Im9wZW4iO3M6MjQ6IjxzcGFuIHN0eWxlPSJjb2xvcjogJDEiPiI7czo1OiJjbG9zZSI7czo3OiI8L3NwYW4+Ijt9czo0OiJzaXplIjthOjQ6e3M6NjoiY2xvc2VkIjtpOjE7czo1OiJtYXRjaCI7czoxMDoic2l6ZT0oLis/KSI7czo0OiJvcGVuIjtzOjMwOiI8c3BhbiBzdHlsZT0iZm9udC1zaXplOiAkMXB4Ij4iO3M6NToiY2xvc2UiO3M6NzoiPC9zcGFuPiI7fXM6NDoiZm9udCI7YTo0OntzOjY6ImNsb3NlZCI7aToxO3M6NToibWF0Y2giO3M6MTA6ImZvbnQ9KC4rPykiO3M6NDoib3BlbiI7czozMDoiPHNwYW4gc3R5bGU9ImZvbnQtZmFtaWx5OiAkMSI+IjtzOjU6ImNsb3NlIjtzOjc6Ijwvc3Bhbj4iO31zOjQ6ImNvZGUiO2E6Mzp7czo2OiJjbG9zZWQiO2k6MTtzOjQ6Im9wZW4iO3M6MTU1OiI8dGFibGUgd2lkdGg9IjkwJSIgYm9yZGVyPSIwIiBhbGlnbj0iY2VudGVyIiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiPiA8dHI+IDx0ZCBjbGFzcz0icXVvdGVjb2RlaGVhZGVyIj4gQ29kZTo8L3RkPiA8L3RyPiA8dHI+IDx0ZCBjbGFzcz0iY29kZWJvZHkiPiI7czo1OiJjbG9zZSI7czoyMDoiPC90ZD4gPC90cj4gPC90YWJsZT4iO31zOjU6InF1b3RlIjthOjQ6e3M6NjoiY2xvc2VkIjtpOjE7czo1OiJtYXRjaCI7czoxMToicXVvdGU9KC4rPykiO3M6NDoib3BlbiI7czoxNjA6Ijx0YWJsZSB3aWR0aD0iOTAlIiBib3JkZXI9IjAiIGFsaWduPSJjZW50ZXIiIGNlbGxwYWRkaW5nPSIwIiBjZWxsc3BhY2luZz0iMCI+IDx0cj4gPHRkIGNsYXNzPSJxdW90ZWNvZGVoZWFkZXIiPlF1b3RlICgkMSk8L3RkPiA8L3RyPiA8dHI+IDx0ZCBjbGFzcz0icXVvdGVib2R5Ij4iO3M6NToiY2xvc2UiO3M6MjA6IjwvdGQ+IDwvdHI+IDwvdGFibGU+Ijt9fQ==',1,-1);
INSERT INTO chris_skins (skin_ID, server, skin_name, skin_description, skin_visible) VALUES (1,1,'Oreable','A not-so-horrible skin, by Chris',1);
INSERT INTO chris_config (config_ID, server, config_key, config_value, config_desc, config_type, config_options) VALUES (5,1,'board->defaultskin','1','Default board skin index',NULL,NULL);
--- Indexes...
CREATE INDEX user_ID ON bb_users(user_ID);
CREATE INDEX userid ON bb_users(userid);
CREATE INDEX topic_ID ON bb_topics(topic_ID);
CREATE INDEX area ON bb_topics(area);
CREATE INDEX starter_id ON bb_topics(starter_id);
CREATE INDEX start_date ON bb_topics(start_date);
CREATE INDEX topic ON bb_posts(topic);
CREATE INDEX post_date ON bb_posts(post_date);