diff --git a/Database.sql b/Database.sql
deleted file mode 100644
index 1bec962..0000000
--- a/Database.sql
+++ /dev/null
@@ -1,1778 +0,0 @@
--- phpMyAdmin SQL Dump
--- version 3.1.3.1
--- http://www.phpmyadmin.net
---
--- Host: localhost
--- Generation Time: Oct 21, 2010 at 03:03 AM
--- Server version: 5.1.33
--- PHP Version: 5.2.9
-
-SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
-
-
-/*!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 */;
-
---
--- Database: `pk`
---
-
--- --------------------------------------------------------
-
---
--- Table structure for table `bans`
---
-
-CREATE TABLE IF NOT EXISTS `bans` (
- `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
- `username` varchar(200) DEFAULT NULL,
- `ip` varchar(255) DEFAULT NULL,
- `email` varchar(80) DEFAULT NULL,
- `message` varchar(255) DEFAULT NULL,
- `expire` int(10) unsigned DEFAULT NULL,
- `ban_creator` int(10) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`id`),
- KEY `bans_username_idx` (`username`(25))
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-
---
--- Dumping data for table `bans`
---
-
-
--- --------------------------------------------------------
-
---
--- Table structure for table `categories`
---
-
-CREATE TABLE IF NOT EXISTS `categories` (
- `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
- `cat_name` varchar(80) NOT NULL DEFAULT 'New Category',
- `disp_position` int(10) NOT NULL DEFAULT '0',
- PRIMARY KEY (`id`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
-
---
--- Dumping data for table `categories`
---
-
-INSERT INTO `categories` (`id`, `cat_name`, `disp_position`) VALUES
-(1, 'Test category', 1);
-
--- --------------------------------------------------------
-
---
--- Table structure for table `censoring`
---
-
-CREATE TABLE IF NOT EXISTS `censoring` (
- `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
- `search_for` varchar(60) NOT NULL DEFAULT '',
- `replace_with` varchar(60) NOT NULL DEFAULT '',
- PRIMARY KEY (`id`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-
---
--- Dumping data for table `censoring`
---
-
-
--- --------------------------------------------------------
-
---
--- Table structure for table `config`
---
-
-CREATE TABLE IF NOT EXISTS `config` (
- `conf_name` varchar(255) NOT NULL DEFAULT '',
- `conf_value` text,
- PRIMARY KEY (`conf_name`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-
---
--- Dumping data for table `config`
---
-
-INSERT INTO `config` (`conf_name`, `conf_value`) VALUES
-('o_cur_version', '1.4.1'),
-('o_database_revision', '7'),
-('o_searchindex_revision', '1'),
-('o_parser_revision', '1'),
-('o_board_title', 'My FluxBB forum'),
-('o_board_desc', '
Unfortunately no one can be told what FluxBB is - you have to see it for yourself.
'),
-('o_default_timezone', '0'),
-('o_time_format', 'H:i:s'),
-('o_date_format', 'Y-m-d'),
-('o_timeout_visit', '1800'),
-('o_timeout_online', '300'),
-('o_redirect_delay', '1'),
-('o_show_version', '0'),
-('o_show_user_info', '1'),
-('o_show_post_count', '1'),
-('o_signatures', '1'),
-('o_smilies', '1'),
-('o_smilies_sig', '1'),
-('o_make_links', '1'),
-('o_default_lang', 'English'),
-('o_default_style', 'Air'),
-('o_default_user_group', '4'),
-('o_topic_review', '15'),
-('o_disp_topics_default', '30'),
-('o_disp_posts_default', '25'),
-('o_indent_num_spaces', '4'),
-('o_quote_depth', '3'),
-('o_quickpost', '1'),
-('o_users_online', '1'),
-('o_censoring', '0'),
-('o_ranks', '1'),
-('o_show_dot', '0'),
-('o_topic_views', '1'),
-('o_quickjump', '1'),
-('o_gzip', '0'),
-('o_additional_navlinks', ''),
-('o_report_method', '0'),
-('o_regs_report', '0'),
-('o_default_email_setting', '1'),
-('o_mailing_list', 'crazyonedude@hotmail.com'),
-('o_avatars', '1'),
-('o_avatars_dir', 'img/avatars'),
-('o_avatars_width', '60'),
-('o_avatars_height', '60'),
-('o_avatars_size', '10240'),
-('o_search_all_forums', '1'),
-('o_base_url', 'http://localhost'),
-('o_admin_email', 'crazyonedude@hotmail.com'),
-('o_webmaster_email', 'crazyonedude@hotmail.com'),
-('o_subscriptions', '1'),
-('o_smtp_host', NULL),
-('o_smtp_user', NULL),
-('o_smtp_pass', NULL),
-('o_smtp_ssl', '0'),
-('o_regs_allow', '1'),
-('o_regs_verify', '0'),
-('o_announcement', '0'),
-('o_announcement_message', 'Enter your announcement here.'),
-('o_rules', '0'),
-('o_rules_message', 'Enter your rules here.'),
-('o_maintenance', '0'),
-('o_maintenance_message', 'The forums are temporarily down for maintenance. Please try again in a few minutes.
\n
\n/Administrator'),
-('o_default_dst', '0'),
-('o_feed_type', '2'),
-('p_message_bbcode', '1'),
-('p_message_img_tag', '1'),
-('p_message_all_caps', '1'),
-('p_subject_all_caps', '1'),
-('p_sig_all_caps', '1'),
-('p_sig_bbcode', '1'),
-('p_sig_img_tag', '0'),
-('p_sig_length', '400'),
-('p_sig_lines', '4'),
-('p_allow_banned_email', '1'),
-('p_allow_dupe_email', '0'),
-('p_force_guest_email', '1');
-
--- --------------------------------------------------------
-
---
--- Table structure for table `drops`
---
-
-CREATE TABLE IF NOT EXISTS `drops` (
- `id` int(11) DEFAULT NULL,
- `item` varchar(255) DEFAULT NULL,
- `amount` int(11) DEFAULT NULL,
- `weight` int(11) DEFAULT NULL
-) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-
---
--- Dumping data for table `drops`
---
-
-
--- --------------------------------------------------------
-
---
--- Table structure for table `dupe_data`
---
-
-CREATE TABLE IF NOT EXISTS `dupe_data` (
- `user` varchar(255) NOT NULL,
- `userhash` varchar(255) NOT NULL,
- `string` text NOT NULL,
- `time` varchar(255) DEFAULT NULL
-) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-
---
--- Dumping data for table `dupe_data`
---
-
-INSERT INTO `dupe_data` (`user`, `userhash`, `string`, `time`) VALUES
-('Laserline', '42293815201319', '1287525847 Laserline picked up an item Party Hat (577) amount: 1 at: 216/442|216/442\n', '1287525847506');
-
--- --------------------------------------------------------
-
---
--- Table structure for table `error_reports`
---
-
-CREATE TABLE IF NOT EXISTS `error_reports` (
- `data` text,
- `email` varchar(255) DEFAULT NULL,
- `ip` varchar(255) DEFAULT NULL,
- `unix` varchar(255) DEFAULT NULL
-) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-
---
--- Dumping data for table `error_reports`
---
-
-
--- --------------------------------------------------------
-
---
--- Table structure for table `forums`
---
-
-CREATE TABLE IF NOT EXISTS `forums` (
- `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
- `forum_name` varchar(80) NOT NULL DEFAULT 'New forum',
- `forum_desc` text,
- `redirect_url` varchar(100) DEFAULT NULL,
- `moderators` text,
- `num_topics` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `num_posts` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `last_post` int(10) unsigned DEFAULT NULL,
- `last_post_id` int(10) unsigned DEFAULT NULL,
- `last_poster` varchar(200) DEFAULT NULL,
- `sort_by` tinyint(1) NOT NULL DEFAULT '0',
- `disp_position` int(10) NOT NULL DEFAULT '0',
- `cat_id` int(10) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`id`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
-
---
--- Dumping data for table `forums`
---
-
-INSERT INTO `forums` (`id`, `forum_name`, `forum_desc`, `redirect_url`, `moderators`, `num_topics`, `num_posts`, `last_post`, `last_post_id`, `last_poster`, `sort_by`, `disp_position`, `cat_id`) VALUES
-(1, 'Test forum', 'This is just a test forum', NULL, NULL, 1, 1, 1281311594, 1, 'admin', 0, 1, 1);
-
--- --------------------------------------------------------
-
---
--- Table structure for table `forum_perms`
---
-
-CREATE TABLE IF NOT EXISTS `forum_perms` (
- `group_id` int(10) NOT NULL DEFAULT '0',
- `forum_id` int(10) NOT NULL DEFAULT '0',
- `read_forum` tinyint(1) NOT NULL DEFAULT '1',
- `post_replies` tinyint(1) NOT NULL DEFAULT '1',
- `post_topics` tinyint(1) NOT NULL DEFAULT '1',
- PRIMARY KEY (`group_id`,`forum_id`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-
---
--- Dumping data for table `forum_perms`
---
-
-
--- --------------------------------------------------------
-
---
--- Table structure for table `gp_count`
---
-
-CREATE TABLE IF NOT EXISTS `gp_count` (
- `unixtime` varchar(255) DEFAULT NULL,
- `amount` varchar(255) DEFAULT NULL
-) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-
---
--- Dumping data for table `gp_count`
---
-
-
--- --------------------------------------------------------
-
---
--- Table structure for table `groups`
---
-
-CREATE TABLE IF NOT EXISTS `groups` (
- `g_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
- `g_title` varchar(50) NOT NULL DEFAULT '',
- `g_user_title` varchar(50) DEFAULT NULL,
- `g_moderator` tinyint(1) NOT NULL DEFAULT '0',
- `g_mod_edit_users` tinyint(1) NOT NULL DEFAULT '0',
- `g_mod_rename_users` tinyint(1) NOT NULL DEFAULT '0',
- `g_mod_change_passwords` tinyint(1) NOT NULL DEFAULT '0',
- `g_mod_ban_users` tinyint(1) NOT NULL DEFAULT '0',
- `g_read_board` tinyint(1) NOT NULL DEFAULT '1',
- `g_view_users` tinyint(1) NOT NULL DEFAULT '1',
- `g_post_replies` tinyint(1) NOT NULL DEFAULT '1',
- `g_post_topics` tinyint(1) NOT NULL DEFAULT '1',
- `g_edit_posts` tinyint(1) NOT NULL DEFAULT '1',
- `g_delete_posts` tinyint(1) NOT NULL DEFAULT '1',
- `g_delete_topics` tinyint(1) NOT NULL DEFAULT '1',
- `g_set_title` tinyint(1) NOT NULL DEFAULT '1',
- `g_search` tinyint(1) NOT NULL DEFAULT '1',
- `g_search_users` tinyint(1) NOT NULL DEFAULT '1',
- `g_send_email` tinyint(1) NOT NULL DEFAULT '1',
- `g_post_flood` smallint(6) NOT NULL DEFAULT '30',
- `g_search_flood` smallint(6) NOT NULL DEFAULT '30',
- `g_email_flood` smallint(6) NOT NULL DEFAULT '60',
- PRIMARY KEY (`g_id`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ;
-
---
--- Dumping data for table `groups`
---
-
-INSERT INTO `groups` (`g_id`, `g_title`, `g_user_title`, `g_moderator`, `g_mod_edit_users`, `g_mod_rename_users`, `g_mod_change_passwords`, `g_mod_ban_users`, `g_read_board`, `g_view_users`, `g_post_replies`, `g_post_topics`, `g_edit_posts`, `g_delete_posts`, `g_delete_topics`, `g_set_title`, `g_search`, `g_search_users`, `g_send_email`, `g_post_flood`, `g_search_flood`, `g_email_flood`) VALUES
-(1, 'Administrators', 'Administrator', 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0),
-(2, 'Moderators', 'Moderator', 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0),
-(3, 'Guest', NULL, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 60, 30, 0),
-(4, 'Members', NULL, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 60, 30, 60);
-
--- --------------------------------------------------------
-
---
--- Table structure for table `invites`
---
-
-CREATE TABLE IF NOT EXISTS `invites` (
- `owner` varchar(255) NOT NULL DEFAULT '',
- `code` varchar(255) NOT NULL DEFAULT '',
- `time` int(10) unsigned NOT NULL DEFAULT '0',
- `invites` varchar(255) NOT NULL DEFAULT '1',
- `email` varchar(255) NOT NULL DEFAULT ''
-) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-
---
--- Dumping data for table `invites`
---
-
-
--- --------------------------------------------------------
-
---
--- Table structure for table `irc_online`
---
-
-CREATE TABLE IF NOT EXISTS `irc_online` (
- `username` varchar(255) NOT NULL,
- `rank` int(1) DEFAULT NULL,
- PRIMARY KEY (`username`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-
---
--- Dumping data for table `irc_online`
---
-
-
--- --------------------------------------------------------
-
---
--- Table structure for table `irc_stats`
---
-
-CREATE TABLE IF NOT EXISTS `irc_stats` (
- `username` varchar(255) NOT NULL,
- `messages` int(10) DEFAULT NULL,
- `modes` int(10) DEFAULT NULL,
- `kicks` int(10) DEFAULT NULL,
- `kicked` int(10) DEFAULT NULL,
- `lastTimeSpoken` bigint(11) DEFAULT NULL,
- `joins` int(10) DEFAULT NULL,
- `parts` int(10) DEFAULT NULL,
- `randomstring` text,
- `moderatedchan` int(10) DEFAULT NULL,
- PRIMARY KEY (`username`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-
---
--- Dumping data for table `irc_stats`
---
-
-
--- --------------------------------------------------------
-
---
--- Table structure for table `items`
---
-
-CREATE TABLE IF NOT EXISTS `items` (
- `id` int(11) DEFAULT NULL,
- `name` varchar(255) DEFAULT NULL,
- `description` varchar(255) DEFAULT NULL,
- `price` int(11) DEFAULT NULL,
- `stackable` varchar(255) DEFAULT NULL,
- `wieldable` varchar(255) DEFAULT NULL
-) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-
---
--- Dumping data for table `items`
---
-
-
--- --------------------------------------------------------
-
---
--- Table structure for table `logins`
---
-
-CREATE TABLE IF NOT EXISTS `logins` (
- `id` int(10) DEFAULT NULL,
- `login_ip` varchar(15) DEFAULT NULL,
- `time` int(10) DEFAULT NULL
-) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-
---
--- Dumping data for table `logins`
---
-
-
--- --------------------------------------------------------
-
---
--- Table structure for table `messages`
---
-
-CREATE TABLE IF NOT EXISTS `messages` (
- `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
- `owner` int(10) NOT NULL DEFAULT '0',
- `subject` varchar(120) NOT NULL DEFAULT '',
- `message` text,
- `sender` varchar(120) NOT NULL DEFAULT '',
- `sender_id` int(10) NOT NULL DEFAULT '0',
- `posted` int(10) NOT NULL DEFAULT '0',
- `sender_ip` varchar(120) NOT NULL DEFAULT '0.0.0.0',
- `smileys` tinyint(1) NOT NULL DEFAULT '1',
- `status` tinyint(1) NOT NULL DEFAULT '0',
- `showed` tinyint(1) NOT NULL DEFAULT '0',
- PRIMARY KEY (`id`),
- KEY `messages_owner_idx` (`owner`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=23964 ;
-
---
--- Dumping data for table `messages`
---
-
-
--- --------------------------------------------------------
-
---
--- Table structure for table `online`
---
-
-CREATE TABLE IF NOT EXISTS `online` (
- `user_id` int(10) unsigned NOT NULL DEFAULT '1',
- `ident` varchar(200) NOT NULL DEFAULT '',
- `logged` int(10) unsigned NOT NULL DEFAULT '0',
- `idle` tinyint(1) NOT NULL DEFAULT '0',
- `last_post` int(10) unsigned DEFAULT NULL,
- `last_search` int(10) unsigned DEFAULT NULL,
- UNIQUE KEY `online_user_id_ident_idx` (`user_id`,`ident`(25)),
- KEY `online_ident_idx` (`ident`(25)),
- KEY `online_logged_idx` (`logged`)
-) ENGINE=MEMORY DEFAULT CHARSET=utf8;
-
---
--- Dumping data for table `online`
---
-
-INSERT INTO `online` (`user_id`, `ident`, `logged`, `idle`, `last_post`, `last_search`) VALUES
-(3, 'admin', 1287651758, 0, NULL, NULL);
-
--- --------------------------------------------------------
-
---
--- Table structure for table `online_count`
---
-
-CREATE TABLE IF NOT EXISTS `online_count` (
- `unixtime` varchar(255) DEFAULT NULL,
- `online` int(20) DEFAULT NULL
-) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-
---
--- Dumping data for table `online_count`
---
-
-
--- --------------------------------------------------------
-
---
--- Table structure for table `pk_bank`
---
-
-CREATE TABLE IF NOT EXISTS `pk_bank` (
- `user` varchar(255) DEFAULT NULL,
- `id` int(10) unsigned NOT NULL,
- `amount` int(10) unsigned NOT NULL DEFAULT '1',
- `slot` int(5) unsigned NOT NULL,
- KEY `user` (`user`),
- KEY `id` (`id`),
- KEY `amount` (`amount`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-
---
--- Dumping data for table `pk_bank`
---
-
-INSERT INTO `pk_bank` (`user`, `id`, `amount`, `slot`) VALUES
-('231514', 376, 1, 5),
-('221303401880', 4, 65929216, 0),
-('231514', 70, 1, 4),
-('231514', 4, 1, 3),
-('231514', 156, 1, 2),
-('231514', 1263, 2, 1),
-('231514', 87, 1, 0),
-('1605225260', 10, 65929216, 0),
-('1222846212', 10, 65929216, 0),
-('500766777', 10, 65929216, 0),
-('1326000417', 10, 65929216, 0),
-('429496599', 256, 82771968, 2),
-('429496599', 0, 1291845632, 1),
-('429496599', 316, 1, 0),
-('429496599', 1, 256, 3);
-
--- --------------------------------------------------------
-
---
--- Table structure for table `pk_banlog`
---
-
-CREATE TABLE IF NOT EXISTS `pk_banlog` (
- `user` varchar(255) DEFAULT NULL,
- `staff` varchar(255) DEFAULT NULL,
- `time` int(10) DEFAULT NULL,
- KEY `staff` (`staff`),
- KEY `time` (`time`),
- KEY `user` (`user`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-
---
--- Dumping data for table `pk_banlog`
---
-
-
--- --------------------------------------------------------
-
---
--- Table structure for table `pk_curstats`
---
-
-CREATE TABLE IF NOT EXISTS `pk_curstats` (
- `user` varchar(255) NOT NULL,
- `cur_attack` int(5) unsigned NOT NULL DEFAULT '1',
- `cur_defense` int(5) unsigned NOT NULL DEFAULT '1',
- `cur_strength` int(5) unsigned NOT NULL DEFAULT '1',
- `cur_hits` int(5) unsigned NOT NULL DEFAULT '10',
- `cur_ranged` int(5) unsigned NOT NULL DEFAULT '1',
- `cur_prayer` int(5) unsigned NOT NULL DEFAULT '1',
- `cur_magic` int(5) unsigned NOT NULL DEFAULT '1',
- `cur_cooking` int(5) unsigned NOT NULL DEFAULT '1',
- `cur_woodcut` int(5) unsigned NOT NULL DEFAULT '1',
- `cur_fletching` int(5) unsigned NOT NULL DEFAULT '1',
- `cur_fishing` int(5) unsigned NOT NULL DEFAULT '1',
- `cur_firemaking` int(5) unsigned NOT NULL DEFAULT '1',
- `cur_crafting` int(5) unsigned NOT NULL DEFAULT '1',
- `cur_smithing` int(5) unsigned NOT NULL DEFAULT '1',
- `cur_mining` int(5) unsigned NOT NULL DEFAULT '1',
- `cur_herblaw` int(5) unsigned NOT NULL DEFAULT '1',
- `cur_agility` int(5) unsigned NOT NULL DEFAULT '1',
- `cur_thieving` int(5) unsigned NOT NULL DEFAULT '1',
- `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
- PRIMARY KEY (`id`),
- KEY `user` (`user`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=350943 ;
-
---
--- Dumping data for table `pk_curstats`
---
-
-INSERT INTO `pk_curstats` (`user`, `cur_attack`, `cur_defense`, `cur_strength`, `cur_hits`, `cur_ranged`, `cur_prayer`, `cur_magic`, `cur_cooking`, `cur_woodcut`, `cur_fletching`, `cur_fishing`, `cur_firemaking`, `cur_crafting`, `cur_smithing`, `cur_mining`, `cur_herblaw`, `cur_agility`, `cur_thieving`, `id`) VALUES
-('105157704', 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 350908),
-('59712851', 1, 1, 1, 10, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 350917),
-('231514', 99, 99, 99, 99, 99, 78, 99, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 350910),
-('1286614266', 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 350922),
-('1421652498', 1, 1, 1, 10, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 350923),
-('500766777', 1, 1, 1, 10, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 350924),
-('568285893', 1, 1, 1, 10, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 350925),
-('500766777', 1, 1, 1, 10, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 350926),
-('568285893', 1, 1, 1, 10, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 350927),
-('105157704', 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 350928),
-('521970', 1, 1, 1, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 350929),
-('42293815201319', 1, 1, 1, 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 350930),
-('42293815201319', 1, 1, 1, 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 350931),
-('105157704', 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 350932),
-('429496599', 1, 1, 1, 10, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 350933),
-('497015715', 1, 1, 1, 10, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 350934),
-('37763264', 1, 1, 1, 10, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 350935),
-('37763265', 1, 1, 1, 10, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 350936),
-('37763266', 1, 1, 1, 10, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 350937),
-('37763267', 1, 1, 1, 10, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 350938),
-('37763268', 1, 1, 1, 10, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 350939),
-('37763269', 1, 1, 1, 10, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 350940),
-('37763270', 1, 1, 1, 10, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 350941),
-('37763271', 1, 1, 1, 10, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 350942);
-
--- --------------------------------------------------------
-
---
--- Table structure for table `pk_experience`
---
-
-CREATE TABLE IF NOT EXISTS `pk_experience` (
- `user` varchar(255) NOT NULL,
- `exp_attack` int(10) unsigned NOT NULL DEFAULT '0',
- `exp_defense` int(10) unsigned NOT NULL DEFAULT '0',
- `exp_strength` int(10) unsigned NOT NULL DEFAULT '0',
- `exp_hits` int(10) unsigned NOT NULL DEFAULT '1200',
- `exp_ranged` int(10) unsigned NOT NULL DEFAULT '0',
- `exp_prayer` int(10) unsigned NOT NULL DEFAULT '0',
- `exp_magic` int(10) unsigned NOT NULL DEFAULT '0',
- `exp_cooking` int(10) unsigned NOT NULL DEFAULT '0',
- `exp_woodcut` int(10) unsigned NOT NULL DEFAULT '0',
- `exp_fletching` int(10) unsigned NOT NULL DEFAULT '0',
- `exp_fishing` int(10) unsigned NOT NULL DEFAULT '0',
- `exp_firemaking` int(10) unsigned NOT NULL DEFAULT '0',
- `exp_crafting` int(10) unsigned NOT NULL DEFAULT '0',
- `exp_smithing` int(10) unsigned NOT NULL DEFAULT '0',
- `exp_mining` int(10) unsigned NOT NULL DEFAULT '0',
- `exp_herblaw` int(10) unsigned NOT NULL DEFAULT '0',
- `exp_agility` int(10) unsigned NOT NULL DEFAULT '0',
- `exp_thieving` int(10) unsigned NOT NULL DEFAULT '0',
- `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
- `oo_attack` int(11) DEFAULT NULL,
- `oo_defense` int(11) DEFAULT NULL,
- `oo_strength` int(11) DEFAULT NULL,
- `oo_ranged` int(11) DEFAULT NULL,
- `oo_prayer` int(11) DEFAULT NULL,
- `oo_magic` int(11) DEFAULT NULL,
- `oo_cooking` int(11) DEFAULT NULL,
- `oo_woodcut` int(11) DEFAULT NULL,
- `oo_fletching` int(11) DEFAULT NULL,
- `oo_fishing` int(11) DEFAULT NULL,
- `oo_firemaking` int(11) DEFAULT NULL,
- `oo_crafting` int(11) DEFAULT NULL,
- `oo_smithing` int(11) DEFAULT NULL,
- `oo_mining` int(11) DEFAULT NULL,
- `oo_herblaw` int(11) DEFAULT NULL,
- `oo_agility` int(11) DEFAULT NULL,
- `oo_thieving` int(11) DEFAULT NULL,
- `oo_hits` int(11) DEFAULT NULL,
- PRIMARY KEY (`id`),
- KEY `user` (`user`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=350943 ;
-
---
--- Dumping data for table `pk_experience`
---
-
-INSERT INTO `pk_experience` (`user`, `exp_attack`, `exp_defense`, `exp_strength`, `exp_hits`, `exp_ranged`, `exp_prayer`, `exp_magic`, `exp_cooking`, `exp_woodcut`, `exp_fletching`, `exp_fishing`, `exp_firemaking`, `exp_crafting`, `exp_smithing`, `exp_mining`, `exp_herblaw`, `exp_agility`, `exp_thieving`, `id`, `oo_attack`, `oo_defense`, `oo_strength`, `oo_ranged`, `oo_prayer`, `oo_magic`, `oo_cooking`, `oo_woodcut`, `oo_fletching`, `oo_fishing`, `oo_firemaking`, `oo_crafting`, `oo_smithing`, `oo_mining`, `oo_herblaw`, `oo_agility`, `oo_thieving`, `oo_hits`) VALUES
-('500766777', 0, 0, 0, 1200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 350926, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-('105157704', 0, 0, 0, 1200, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 350908, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-('59712851', 0, 0, 0, 1200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 350917, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-('231514', 135000000, 135000000, 135000000, 135000000, 135000000, 135000000, 135000000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 350910, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-('1286614266', 0, 0, 0, 1200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 350922, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-('1421652498', 0, 0, 0, 1200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 350923, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-('500766777', 0, 0, 0, 1200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 350924, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-('568285893', 0, 0, 0, 1200, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 350925, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-('568285893', 0, 0, 0, 1200, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 350927, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-('105157704', 0, 0, 0, 1200, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 350928, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-('521970', 0, 0, 0, 1200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 350929, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-('42293815201319', 0, 0, 0, 1200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 350930, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-('42293815201319', 0, 0, 0, 1200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 350931, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-('105157704', 0, 0, 0, 1200, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 350932, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-('429496599', 0, 0, 0, 1200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 350933, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-('497015715', 0, 0, 0, 1200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 350934, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-('37763264', 0, 0, 0, 1200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 350935, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-('37763265', 0, 0, 0, 1200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 350936, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-('37763266', 0, 0, 0, 1200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 350937, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-('37763267', 0, 0, 0, 1200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 350938, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-('37763268', 0, 0, 0, 1200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 350939, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-('37763269', 0, 0, 0, 1200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 350940, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-('37763270', 0, 0, 0, 1200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 350941, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
-('37763271', 0, 0, 0, 1200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 350942, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-
--- --------------------------------------------------------
-
---
--- Table structure for table `pk_friends`
---
-
-CREATE TABLE IF NOT EXISTS `pk_friends` (
- `user` varchar(255) NOT NULL,
- `friend` varchar(255) NOT NULL,
- KEY `user` (`user`),
- KEY `friend` (`friend`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-
---
--- Dumping data for table `pk_friends`
---
-
-
--- --------------------------------------------------------
-
---
--- Table structure for table `pk_ignores`
---
-
-CREATE TABLE IF NOT EXISTS `pk_ignores` (
- `user` varchar(255) NOT NULL,
- `ignore` varchar(255) NOT NULL,
- KEY `ignore` (`ignore`),
- KEY `user` (`user`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-
---
--- Dumping data for table `pk_ignores`
---
-
-
--- --------------------------------------------------------
-
---
--- Table structure for table `pk_invitems`
---
-
-CREATE TABLE IF NOT EXISTS `pk_invitems` (
- `user` varchar(255) NOT NULL,
- `id` int(10) unsigned NOT NULL,
- `amount` int(10) unsigned NOT NULL DEFAULT '1',
- `wielded` tinyint(1) unsigned NOT NULL DEFAULT '0',
- `slot` int(5) unsigned NOT NULL,
- KEY `user` (`user`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-
---
--- Dumping data for table `pk_invitems`
---
-
-INSERT INTO `pk_invitems` (`user`, `id`, `amount`, `wielded`, `slot`) VALUES
-('59712851', 70, 1, 0, 5),
-('59712851', 4, 1, 0, 4),
-('59712851', 1263, 1, 0, 3),
-('59712851', 1006, 1, 0, 0),
-('59712851', 316, 1, 1, 1),
-('59712851', 77, 1, 1, 2),
-('1286614266', 156, 1, 0, 7),
-('59712851', 376, 1, 0, 6),
-('1286614266', 376, 1, 0, 6),
-('231514', 31, 6, 0, 25),
-('231514', 42, 1, 0, 24),
-('231514', 190, 414, 0, 23),
-('231514', 60, 1, 1, 22),
-('231514', 400, 1, 1, 21),
-('231514', 402, 1, 1, 20),
-('231514', 401, 1, 0, 19),
-('231514', 81, 1, 0, 18),
-('231514', 828, 1, 1, 17),
-('231514', 1313, 1, 0, 16),
-('231514', 1314, 1, 0, 15),
-('231514', 1315, 1, 0, 14),
-('231514', 1316, 1, 0, 13),
-('231514', 1317, 1, 0, 12),
-('231514', 1319, 1, 0, 11),
-('231514', 1320, 1, 0, 10),
-('231514', 1312, 1, 0, 9),
-('231514', 1310, 1, 0, 8),
-('231514', 1299, 1, 0, 7),
-('231514', 1280, 1, 0, 6),
-('231514', 1250, 1, 0, 5),
-('231514', 1200, 1, 0, 4),
-('231514', 16, 1, 1, 3),
-('231514', 77, 1, 0, 2),
-('231514', 316, 1, 1, 1),
-('231514', 1006, 1, 0, 0),
-('1286614266', 70, 1, 0, 5),
-('1421652498', 1263, 1, 0, 9),
-('1421652498', 87, 1, 0, 8),
-('1421652498', 156, 1, 0, 7),
-('1421652498', 376, 1, 0, 6),
-('1421652498', 70, 1, 0, 5),
-('1421652498', 4, 1, 0, 4),
-('59712851', 156, 1, 0, 7),
-('59712851', 87, 1, 0, 8),
-('59712851', 1263, 1, 0, 9),
-('1286614266', 4, 1, 0, 4),
-('1286614266', 1263, 1, 0, 3),
-('1286614266', 77, 1, 1, 2),
-('1286614266', 1006, 1, 0, 0),
-('1286614266', 316, 1, 1, 1),
-('1421652498', 1263, 1, 0, 3),
-('1421652498', 77, 1, 0, 2),
-('1421652498', 316, 1, 0, 1),
-('1421652498', 1006, 1, 0, 0),
-('1286614266', 87, 1, 0, 8),
-('1286614266', 1263, 1, 0, 9),
-('521970', 1263, 1, 0, 9),
-('521970', 87, 1, 0, 8),
-('105157704', 1263, 1, 0, 13),
-('521970', 156, 1, 0, 7),
-('105157704', 87, 1, 0, 12),
-('105157704', 376, 1, 0, 10),
-('521970', 376, 1, 0, 6),
-('521970', 70, 1, 0, 5),
-('521970', 4, 1, 0, 4),
-('521970', 77, 1, 1, 2),
-('521970', 1263, 1, 0, 3),
-('521970', 316, 1, 1, 1),
-('521970', 1006, 1, 0, 0),
-('500766777', 77, 1, 0, 1),
-('500766777', 316, 1, 0, 0),
-('568285893', 77, 1, 1, 2),
-('568285893', 316, 1, 0, 1),
-('568285893', 316, 1, 1, 0),
-('521970', 233, 1, 0, 10),
-('37763269', 316, 1, 0, 1),
-('37763269', 1006, 1, 0, 0),
-('37763268', 1263, 1, 0, 3),
-('37763268', 77, 1, 0, 2),
-('37763268', 316, 1, 0, 1),
-('37763268', 1006, 1, 0, 0),
-('37763267', 1263, 1, 0, 3),
-('37763267', 77, 1, 0, 2),
-('37763267', 316, 1, 0, 1),
-('37763267', 1006, 1, 0, 0),
-('497015715', 1263, 1, 0, 3),
-('497015715', 77, 1, 0, 2),
-('497015715', 316, 1, 0, 1),
-('497015715', 1006, 1, 0, 0),
-('37763266', 1263, 1, 0, 3),
-('37763266', 77, 1, 0, 2),
-('37763266', 316, 1, 0, 1),
-('37763266', 1006, 1, 0, 0),
-('37763265', 1263, 1, 0, 3),
-('37763265', 77, 1, 0, 2),
-('37763265', 316, 1, 0, 1),
-('37763265', 1006, 1, 0, 0),
-('37763264', 1263, 1, 0, 3),
-('37763264', 77, 1, 0, 2),
-('37763264', 316, 1, 0, 1),
-('37763264', 1006, 1, 0, 0),
-('105157704', 156, 1, 0, 11),
-('105157704', 70, 1, 0, 9),
-('105157704', 4, 1, 0, 8),
-('105157704', 1263, 1, 0, 7),
-('105157704', 1263, 1, 0, 6),
-('105157704', 77, 1, 0, 5),
-('105157704', 77, 1, 1, 4),
-('105157704', 316, 1, 1, 3),
-('105157704', 316, 1, 0, 2),
-('105157704', 1006, 1, 0, 1),
-('105157704', 1006, 1, 0, 0),
-('37763269', 77, 1, 0, 2),
-('37763269', 1263, 1, 0, 3),
-('37763270', 1006, 1, 0, 0),
-('37763270', 316, 1, 0, 1),
-('37763270', 77, 1, 0, 2),
-('37763270', 1263, 1, 0, 3),
-('37763271', 1006, 1, 0, 0),
-('37763271', 316, 1, 0, 1),
-('37763271', 77, 1, 0, 2),
-('37763271', 1263, 1, 0, 3);
-
--- --------------------------------------------------------
-
---
--- Table structure for table `pk_kills`
---
-
-CREATE TABLE IF NOT EXISTS `pk_kills` (
- `user` varchar(255) NOT NULL,
- `type` tinyint(1) NOT NULL DEFAULT '0',
- `killed` varchar(45) NOT NULL,
- `time` int(10) NOT NULL
-) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-
---
--- Dumping data for table `pk_kills`
---
-
-
--- --------------------------------------------------------
-
---
--- Table structure for table `pk_logins`
---
-
-CREATE TABLE IF NOT EXISTS `pk_logins` (
- `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
- `user` varchar(45) NOT NULL,
- `time` int(5) unsigned NOT NULL,
- `ip` varchar(15) NOT NULL DEFAULT '0.0.0.0',
- PRIMARY KEY (`id`),
- KEY `ip` (`ip`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 ROW_FORMAT=DYNAMIC AUTO_INCREMENT=4254376 ;
-
---
--- Dumping data for table `pk_logins`
---
-
-INSERT INTO `pk_logins` (`id`, `user`, `time`, `ip`) VALUES
-(4254356, '42293815201319', 1287447911, '127.0.0.1'),
-(4254355, '42293815201319', 1287447465, '127.0.0.1'),
-(4254354, '521970', 1287446648, '127.0.0.1'),
-(4254353, '500766777', 1287446338, '127.0.0.1'),
-(4254352, '500766777', 1287445987, '127.0.0.1'),
-(4254351, '568285893', 1287445883, '127.0.0.1'),
-(4254350, '568285893', 1287445743, '127.0.0.1'),
-(4254349, '568285893', 1287445535, '127.0.0.1'),
-(4254348, '568285893', 1287445503, '127.0.0.1'),
-(4254347, '500766777', 1287445443, '127.0.0.1'),
-(4254346, '568285893', 1287444890, '127.0.0.1'),
-(4254345, '568285893', 1287441310, '127.0.0.1'),
-(4254344, '500766777', 1287441301, '127.0.0.1'),
-(4254233, '105157704', 1281662336, '127.0.0.1'),
-(4254234, '105157704', 1281662511, '127.0.0.1'),
-(4254343, '500766777', 1287441293, '127.0.0.1'),
-(4254342, '500766777', 1287441108, '127.0.0.1'),
-(4254340, '500766777', 1287441053, '127.0.0.1'),
-(4254339, '500766777', 1287441038, '127.0.0.1'),
-(4254338, '1286614266', 1287125707, '127.0.0.1'),
-(4254241, '105157704', 1281739696, '127.0.0.1'),
-(4254337, '1421652498', 1287125695, '127.0.0.1'),
-(4254323, '59712851', 1287037576, '127.0.0.1'),
-(4254244, '105157704', 1281740520, '127.0.0.1'),
-(4254245, '105157704', 1281740583, '127.0.0.1'),
-(4254246, '105157704', 1281743157, '127.0.0.1'),
-(4254247, '105157704', 1281743738, '127.0.0.1'),
-(4254248, '105157704', 1281744127, '127.0.0.1'),
-(4254322, '59712851', 1287037523, '127.0.0.1'),
-(4254250, '105157704', 1281753461, '127.0.0.1'),
-(4254251, '105157704', 1281754704, '127.0.0.1'),
-(4254252, '105157704', 1281759336, '127.0.0.1'),
-(4254253, '105157704', 1281759553, '127.0.0.1'),
-(4254254, '105157704', 1281760744, '127.0.0.1'),
-(4254255, '105157704', 1281760871, '127.0.0.1'),
-(4254256, '105157704', 1281761406, '127.0.0.1'),
-(4254257, '105157704', 1281762136, '127.0.0.1'),
-(4254258, '105157704', 1281762423, '127.0.0.1'),
-(4254341, '500766777', 1287441068, '127.0.0.1'),
-(4254260, '231514', 1286350050, '127.0.0.1'),
-(4254261, '231514', 1286435056, '127.0.0.1'),
-(4254262, '231514', 1286435308, '127.0.0.1'),
-(4254263, '231514', 1286435408, '127.0.0.1'),
-(4254264, '231514', 1286435473, '127.0.0.1'),
-(4254265, '231514', 1286436753, '127.0.0.1'),
-(4254266, '231514', 1286436991, '127.0.0.1'),
-(4254267, '231514', 1286437238, '127.0.0.1'),
-(4254268, '231514', 1286437254, '127.0.0.1'),
-(4254269, '231514', 1286437536, '127.0.0.1'),
-(4254270, '231514', 1286438257, '127.0.0.1'),
-(4254271, '231514', 1286438763, '127.0.0.1'),
-(4254272, '231514', 1286439108, '127.0.0.1'),
-(4254273, '231514', 1286439379, '127.0.0.1'),
-(4254274, '231514', 1286439501, '127.0.0.1'),
-(4254275, '231514', 1286439561, '127.0.0.1'),
-(4254276, '231514', 1286439618, '127.0.0.1'),
-(4254277, '231514', 1286488134, '127.0.0.1'),
-(4254278, '231514', 1286488616, '127.0.0.1'),
-(4254279, '231514', 1286522176, '127.0.0.1'),
-(4254280, '231514', 1286522684, '127.0.0.1'),
-(4254281, '231514', 1286523279, '127.0.0.1'),
-(4254282, '231514', 1286524053, '127.0.0.1'),
-(4254283, '231514', 1286524518, '127.0.0.1'),
-(4254284, '231514', 1286780517, '127.0.0.1'),
-(4254285, '231514', 1286780555, '127.0.0.1'),
-(4254286, '231514', 1286781216, '127.0.0.1'),
-(4254287, '231514', 1286820475, '127.0.0.1'),
-(4254288, '231514', 1286821247, '127.0.0.1'),
-(4254289, '231514', 1286823183, '127.0.0.1'),
-(4254290, '231514', 1286830609, '127.0.0.1'),
-(4254291, '231514', 1286831465, '127.0.0.1'),
-(4254292, '231514', 1286844955, '127.0.0.1'),
-(4254293, '231514', 1286846802, '127.0.0.1'),
-(4254294, '231514', 1286849133, '127.0.0.1'),
-(4254295, '231514', 1286851625, '127.0.0.1'),
-(4254296, '231514', 1286852351, '127.0.0.1'),
-(4254297, '231514', 1286854781, '127.0.0.1'),
-(4254298, '231514', 1286856008, '127.0.0.1'),
-(4254299, '231514', 1286856367, '127.0.0.1'),
-(4254300, '231514', 1286903269, '127.0.0.1'),
-(4254301, '231514', 1286903505, '127.0.0.1'),
-(4254302, '231514', 1286903854, '127.0.0.1'),
-(4254303, '231514', 1286904045, '127.0.0.1'),
-(4254304, '231514', 1286904550, '127.0.0.1'),
-(4254305, '231514', 1286905019, '127.0.0.1'),
-(4254306, '231514', 1286905613, '127.0.0.1'),
-(4254307, '231514', 1286905839, '127.0.0.1'),
-(4254308, '231514', 1286912978, '127.0.0.1'),
-(4254309, '231514', 1286913900, '127.0.0.1'),
-(4254310, '231514', 1286934357, '127.0.0.1'),
-(4254311, '231514', 1287022663, '127.0.0.1'),
-(4254336, '1421652498', 1287125688, '127.0.0.1'),
-(4254335, '1421652498', 1287125677, '127.0.0.1'),
-(4254331, '1421652498', 1287125644, '127.0.0.1'),
-(4254332, '1421652498', 1287125659, '127.0.0.1'),
-(4254333, '1421652498', 1287125665, '127.0.0.1'),
-(4254334, '1421652498', 1287125672, '127.0.0.1'),
-(4254321, '231514', 1287037264, '127.0.0.1'),
-(4254357, '42293815201319', 1287450195, '127.0.0.1'),
-(4254358, '42293815201319', 1287450615, '127.0.0.1'),
-(4254359, '42293815201319', 1287450712, '127.0.0.1'),
-(4254360, '105157704', 1287450793, '127.0.0.1'),
-(4254361, '105157704', 1287450883, '127.0.0.1'),
-(4254362, '105157704', 1287450891, '127.0.0.1'),
-(4254363, '105157704', 1287451143, '127.0.0.1'),
-(4254364, '105157704', 1287452885, '127.0.0.1'),
-(4254365, '105157704', 1287453742, '127.0.0.1'),
-(4254366, '105157704', 1287454415, '127.0.0.1'),
-(4254367, '42293815201319', 1287454430, '127.0.0.1'),
-(4254368, '42293815201319', 1287454553, '127.0.0.1'),
-(4254369, '42293815201319', 1287462434, '127.0.0.1'),
-(4254370, '42293815201319', 1287466598, '127.0.0.1'),
-(4254371, '42293815201319', 1287467029, '127.0.0.1'),
-(4254372, '42293815201319', 1287470365, '127.0.0.1'),
-(4254373, '429496599', 1287525081, '127.0.0.1'),
-(4254374, '429496599', 1287525445, '127.0.0.1'),
-(4254375, '42293815201319', 1287525773, '127.0.0.1');
-
--- --------------------------------------------------------
-
---
--- Table structure for table `pk_market`
---
-
-CREATE TABLE IF NOT EXISTS `pk_market` (
- `owner` int(10) NOT NULL,
- `item_id` int(10) NOT NULL,
- `amount` int(10) NOT NULL,
- `selling_price` int(10) NOT NULL,
- PRIMARY KEY (`owner`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-
---
--- Dumping data for table `pk_market`
---
-
-
--- --------------------------------------------------------
-
---
--- Table structure for table `pk_mutelog`
---
-
-CREATE TABLE IF NOT EXISTS `pk_mutelog` (
- `user` varchar(255) NOT NULL,
- `staff` varchar(255) NOT NULL,
- `time` int(11) NOT NULL,
- `report_id` int(11) NOT NULL,
- `duration` int(10) NOT NULL
-) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-
---
--- Dumping data for table `pk_mutelog`
---
-
-
--- --------------------------------------------------------
-
---
--- Table structure for table `pk_online`
---
-
-CREATE TABLE IF NOT EXISTS `pk_online` (
- `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
- `user` varchar(45) NOT NULL,
- `username` varchar(45) NOT NULL,
- `x` varchar(45) NOT NULL,
- `y` varchar(45) NOT NULL,
- `world` int(10) unsigned NOT NULL,
- PRIMARY KEY (`id`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 ROW_FORMAT=DYNAMIC COMMENT='InnoDB free: 9216 kB' AUTO_INCREMENT=1 ;
-
---
--- Dumping data for table `pk_online`
---
-
-
--- --------------------------------------------------------
-
---
--- Table structure for table `pk_players`
---
-
-CREATE TABLE IF NOT EXISTS `pk_players` (
- `user` varchar(255) NOT NULL,
- `username` varchar(255) NOT NULL DEFAULT '',
- `pending_deletion` int(11) DEFAULT '0',
- `group_id` int(10) DEFAULT '0',
- `owner` int(5) unsigned NOT NULL,
- `owner_username` varchar(255) DEFAULT NULL,
- `sub_expires` int(5) unsigned DEFAULT '0',
- `combat` int(10) DEFAULT '3',
- `skill_total` int(10) DEFAULT '3',
- `x` int(5) unsigned DEFAULT '213',
- `y` int(5) unsigned DEFAULT '452',
- `fatigue` int(10) DEFAULT '0',
- `combatstyle` tinyint(1) DEFAULT '0',
- `block_chat` tinyint(1) unsigned DEFAULT '0',
- `block_private` tinyint(1) unsigned DEFAULT '0',
- `block_trade` tinyint(1) unsigned DEFAULT '0',
- `block_duel` tinyint(1) unsigned DEFAULT '0',
- `cameraauto` tinyint(1) unsigned DEFAULT '0',
- `onemouse` tinyint(1) unsigned DEFAULT '0',
- `soundoff` tinyint(1) unsigned DEFAULT '0',
- `showroof` tinyint(1) DEFAULT '0',
- `autoscreenshot` tinyint(1) DEFAULT '0',
- `combatwindow` tinyint(1) DEFAULT '0',
- `haircolour` int(5) unsigned DEFAULT '2',
- `topcolour` int(5) unsigned DEFAULT '8',
- `trousercolour` int(5) unsigned DEFAULT '14',
- `skincolour` int(5) unsigned DEFAULT '0',
- `headsprite` int(5) unsigned DEFAULT '1',
- `bodysprite` int(5) unsigned DEFAULT '2',
- `male` tinyint(1) unsigned DEFAULT '1',
- `skulled` int(10) unsigned DEFAULT '0',
- `pass` varchar(255) NOT NULL,
- `creation_date` int(10) unsigned NOT NULL DEFAULT '0',
- `creation_ip` varchar(15) NOT NULL DEFAULT '0.0.0.0',
- `login_date` int(10) unsigned DEFAULT '0',
- `login_ip` varchar(15) DEFAULT '0.0.0.0',
- `playermod` tinyint(1) unsigned DEFAULT '0',
- `loggedin` tinyint(1) DEFAULT '0',
- `banned` tinyint(1) DEFAULT '0',
- `muted` int(10) DEFAULT '0',
- `deaths` int(10) DEFAULT '0',
- `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
- `online` tinyint(1) unsigned zerofill DEFAULT '0',
- `world` int(10) DEFAULT '1',
- `quest_points` int(5) DEFAULT NULL,
- `eventcd` int(10) unsigned DEFAULT '0',
- PRIMARY KEY (`id`),
- KEY `user` (`user`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='InnoDB free: 9216 kB' AUTO_INCREMENT=350944 ;
-
---
--- Dumping data for table `pk_players`
---
-
-INSERT INTO `pk_players` (`user`, `username`, `pending_deletion`, `group_id`, `owner`, `owner_username`, `sub_expires`, `combat`, `skill_total`, `x`, `y`, `fatigue`, `combatstyle`, `block_chat`, `block_private`, `block_trade`, `block_duel`, `cameraauto`, `onemouse`, `soundoff`, `showroof`, `autoscreenshot`, `combatwindow`, `haircolour`, `topcolour`, `trousercolour`, `skincolour`, `headsprite`, `bodysprite`, `male`, `skulled`, `pass`, `creation_date`, `creation_ip`, `login_date`, `login_ip`, `playermod`, `loggedin`, `banned`, `muted`, `deaths`, `id`, `online`, `world`, `quest_points`, `eventcd`) VALUES
-('37763271', 'test8', 0, 0, 3, NULL, 0, 3, 3, 213, 452, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 8, 14, 0, 1, 2, 1, 0, 'f5d1278e8109edd94e1e4197e04873b9', 1287651756, '127.0.0.1', 0, '0.0.0.0', 0, 0, 0, 0, 0, 350943, 0, 1, NULL, 0),
-('37763270', 'test7', 0, 0, 3, NULL, 0, 3, 3, 213, 452, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 8, 14, 0, 1, 2, 1, 0, 'f5d1278e8109edd94e1e4197e04873b9', 1287651734, '127.0.0.1', 0, '0.0.0.0', 0, 0, 0, 0, 0, 350942, 0, 1, NULL, 0),
-('37763269', 'test6', 0, 0, 3, NULL, 0, 3, 3, 213, 452, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 8, 14, 0, 1, 2, 1, 0, 'f5d1278e8109edd94e1e4197e04873b9', 1287651720, '127.0.0.1', 0, '0.0.0.0', 0, 0, 0, 0, 0, 350941, 0, 1, NULL, 0),
-('37763267', 'test4', 0, 0, 3, NULL, 0, 3, 3, 213, 452, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 8, 14, 0, 1, 2, 1, 0, 'f5d1278e8109edd94e1e4197e04873b9', 1287651686, '127.0.0.1', 0, '0.0.0.0', 0, 0, 0, 0, 0, 350939, 0, 1, NULL, 0),
-('37763268', 'test5', 0, 0, 3, NULL, 0, 3, 3, 213, 452, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 8, 14, 0, 1, 2, 1, 0, 'f5d1278e8109edd94e1e4197e04873b9', 1287651699, '127.0.0.1', 0, '0.0.0.0', 0, 0, 0, 0, 0, 350940, 0, 1, NULL, 0),
-('37763264', 'test1', 0, 0, 3, NULL, 0, 3, 3, 213, 452, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 8, 14, 0, 1, 2, 1, 0, 'f5d1278e8109edd94e1e4197e04873b9', 1287651635, '127.0.0.1', 0, '0.0.0.0', 0, 0, 0, 0, 0, 350936, 0, 1, NULL, 0),
-('37763265', 'test2', 0, 0, 3, NULL, 0, 3, 3, 213, 452, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 8, 14, 0, 1, 2, 1, 0, 'f5d1278e8109edd94e1e4197e04873b9', 1287651646, '127.0.0.1', 0, '0.0.0.0', 0, 0, 0, 0, 0, 350937, 0, 1, NULL, 0),
-('37763266', 'test3', 0, 0, 3, NULL, 0, 3, 3, 213, 452, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 8, 14, 0, 1, 2, 1, 0, 'f5d1278e8109edd94e1e4197e04873b9', 1287651663, '127.0.0.1', 0, '0.0.0.0', 0, 0, 0, 0, 0, 350938, 0, 1, NULL, 0);
-
--- --------------------------------------------------------
-
---
--- Table structure for table `pk_quests`
---
-
-CREATE TABLE IF NOT EXISTS `pk_quests` (
- `id` int(11) DEFAULT NULL,
- `stage` int(11) DEFAULT NULL,
- `user` varchar(255) DEFAULT NULL,
- KEY `user` (`user`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-
---
--- Dumping data for table `pk_quests`
---
-
-INSERT INTO `pk_quests` (`id`, `stage`, `user`) VALUES
-(10, -1, '231514'),
-(10, -1, '2094917'),
-(9, -1, '2094917'),
-(8, -1, '2094917'),
-(7, -1, '2094917'),
-(3, -1, '2094917'),
-(1, -1, '2094917'),
-(0, -1, '2094917'),
-(9, -1, '221303401880'),
-(8, -1, '221303401880'),
-(7, -1, '221303401880'),
-(3, -1, '221303401880'),
-(1, -1, '221303401880'),
-(0, 0, '221303401880'),
-(10, -1, '105157704'),
-(9, -1, '105157704'),
-(8, -1, '105157704'),
-(7, -1, '105157704'),
-(3, -1, '105157704'),
-(10, -1, '221303401880'),
-(1, -1, '105157704'),
-(0, -1, '105157704'),
-(9, -1, '231514'),
-(8, -1, '231514'),
-(7, -1, '231514'),
-(3, -1, '231514'),
-(1, -1, '231514'),
-(0, -1, '231514'),
-(0, -1, '1070928201'),
-(1, -1, '1070928201'),
-(3, -1, '1070928201'),
-(7, -1, '1070928201'),
-(8, -1, '1070928201'),
-(9, -1, '1070928201'),
-(10, -1, '1070928201'),
-(0, -1, '59712851'),
-(1, -1, '59712851'),
-(3, -1, '59712851'),
-(7, -1, '59712851'),
-(8, -1, '59712851'),
-(9, -1, '59712851'),
-(10, -1, '59712851'),
-(10, -1, '1434781215'),
-(9, -1, '1434781215'),
-(8, -1, '1434781215'),
-(7, -1, '1434781215'),
-(3, -1, '1434781215'),
-(1, -1, '1434781215'),
-(0, -1, '1434781215'),
-(0, -1, '380732793'),
-(1, -1, '380732793'),
-(3, -1, '380732793'),
-(7, -1, '380732793'),
-(8, -1, '380732793'),
-(9, -1, '380732793'),
-(10, -1, '380732793'),
-(0, -1, '1772376795'),
-(1, -1, '1772376795'),
-(3, -1, '1772376795'),
-(7, -1, '1772376795'),
-(8, -1, '1772376795'),
-(9, -1, '1772376795'),
-(10, -1, '1772376795'),
-(0, -1, '1286614266'),
-(10, -1, '1421652498'),
-(9, -1, '1421652498'),
-(8, -1, '1421652498'),
-(7, -1, '1421652498'),
-(3, -1, '1421652498'),
-(1, -1, '1421652498'),
-(0, -1, '1421652498'),
-(1, -1, '1286614266'),
-(3, -1, '1286614266'),
-(7, -1, '1286614266'),
-(8, -1, '1286614266'),
-(9, -1, '1286614266'),
-(10, -1, '1286614266'),
-(0, -1, '521970'),
-(10, -1, '500766777'),
-(9, -1, '500766777'),
-(8, -1, '500766777'),
-(7, -1, '500766777'),
-(3, -1, '500766777'),
-(1, -1, '500766777'),
-(0, -1, '500766777'),
-(10, -1, '568285893'),
-(9, -1, '568285893'),
-(8, -1, '568285893'),
-(7, -1, '568285893'),
-(3, -1, '568285893'),
-(1, -1, '568285893'),
-(0, -1, '568285893'),
-(1, -1, '521970'),
-(3, -1, '521970'),
-(7, -1, '521970'),
-(8, -1, '521970'),
-(9, -1, '521970'),
-(10, -1, '521970'),
-(10, -1, '42293815201319'),
-(9, -1, '42293815201319'),
-(8, -1, '42293815201319'),
-(7, -1, '42293815201319'),
-(3, -1, '42293815201319'),
-(1, -1, '42293815201319'),
-(0, -1, '42293815201319');
-
--- --------------------------------------------------------
-
---
--- Table structure for table `pk_reports`
---
-
-CREATE TABLE IF NOT EXISTS `pk_reports` (
- `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
- `from` varchar(255) NOT NULL,
- `about` varchar(255) NOT NULL,
- `time` int(10) unsigned NOT NULL,
- `reason` int(5) unsigned NOT NULL,
- `snapshot_from` longtext NOT NULL,
- `snapshot_about` longtext NOT NULL,
- `chatlogs` longtext NOT NULL,
- `from_x` int(10) NOT NULL,
- `from_y` int(10) NOT NULL,
- `about_x` int(10) NOT NULL,
- `about_y` int(10) NOT NULL,
- `zapped` int(10) unsigned DEFAULT NULL,
- `zapped_by` varchar(255) DEFAULT NULL,
- `sendToMod` int(11) DEFAULT '0',
- PRIMARY KEY (`id`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=4336 ;
-
---
--- Dumping data for table `pk_reports`
---
-
-INSERT INTO `pk_reports` (`id`, `from`, `about`, `time`, `reason`, `snapshot_from`, `snapshot_about`, `chatlogs`, `from_x`, `from_y`, `about_x`, `about_y`, `zapped`, `zapped_by`, `sendToMod`) VALUES
-(4335, '2094917', '26052', 1281515445, 1, '', '', '', 215, 505, 0, 0, NULL, NULL, 0);
-
--- --------------------------------------------------------
-
---
--- Table structure for table `pk_reports_comments`
---
-
-CREATE TABLE IF NOT EXISTS `pk_reports_comments` (
- `id` int(10) NOT NULL AUTO_INCREMENT,
- `report_id` int(10) NOT NULL,
- `poster` int(10) NOT NULL,
- `time` int(10) NOT NULL,
- `text` text NOT NULL,
- PRIMARY KEY (`id`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=4222 ;
-
---
--- Dumping data for table `pk_reports_comments`
---
-
-
--- --------------------------------------------------------
-
---
--- Table structure for table `pk_stat_reduction`
---
-
-CREATE TABLE IF NOT EXISTS `pk_stat_reduction` (
- `user` int(10) NOT NULL,
- `account` varchar(255) NOT NULL,
- `account_hash` varchar(255) NOT NULL,
- `skill` int(10) NOT NULL,
- `voucher` varchar(255) DEFAULT NULL,
- `time` int(11) NOT NULL
-) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-
---
--- Dumping data for table `pk_stat_reduction`
---
-
-
--- --------------------------------------------------------
-
---
--- Table structure for table `pk_tradelog`
---
-
-CREATE TABLE IF NOT EXISTS `pk_tradelog` (
- `from` varchar(255) DEFAULT NULL,
- `to` varchar(255) DEFAULT NULL,
- `time` int(10) DEFAULT NULL,
- `id` int(10) DEFAULT NULL,
- `x` int(10) DEFAULT NULL,
- `y` int(10) DEFAULT NULL,
- `amount` int(10) DEFAULT NULL,
- `type` int(5) DEFAULT NULL,
- KEY `trade_from` (`from`),
- KEY `trade_to` (`to`),
- KEY `tradelog_time` (`time`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-
---
--- Dumping data for table `pk_tradelog`
---
-
-INSERT INTO `pk_tradelog` (`from`, `to`, `time`, `id`, `x`, `y`, `amount`, `type`) VALUES
-('0', '42293815201319', 1287525847, 577, 216, 442, 1, 3);
-
--- --------------------------------------------------------
-
---
--- Table structure for table `pk_worlds`
---
-
-CREATE TABLE IF NOT EXISTS `pk_worlds` (
- `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
- `location` varchar(45) NOT NULL,
- `ip` varchar(45) NOT NULL,
- `port` varchar(45) NOT NULL,
- PRIMARY KEY (`id`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 ROW_FORMAT=DYNAMIC AUTO_INCREMENT=2 ;
-
---
--- Dumping data for table `pk_worlds`
---
-
-
--- --------------------------------------------------------
-
---
--- Table structure for table `posts`
---
-
-CREATE TABLE IF NOT EXISTS `posts` (
- `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
- `poster` varchar(200) NOT NULL DEFAULT '',
- `poster_id` int(10) unsigned NOT NULL DEFAULT '1',
- `poster_ip` varchar(39) DEFAULT NULL,
- `poster_email` varchar(80) DEFAULT NULL,
- `message` text,
- `hide_smilies` tinyint(1) NOT NULL DEFAULT '0',
- `posted` int(10) unsigned NOT NULL DEFAULT '0',
- `edited` int(10) unsigned DEFAULT NULL,
- `edited_by` varchar(200) DEFAULT NULL,
- `topic_id` int(10) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`id`),
- KEY `posts_topic_id_idx` (`topic_id`),
- KEY `posts_multi_idx` (`poster_id`,`topic_id`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
-
---
--- Dumping data for table `posts`
---
-
-INSERT INTO `posts` (`id`, `poster`, `poster_id`, `poster_ip`, `poster_email`, `message`, `hide_smilies`, `posted`, `edited`, `edited_by`, `topic_id`) VALUES
-(1, 'admin', 2, '127.0.0.1', NULL, 'If you are looking at this (which I guess you are), the install of FluxBB appears to have worked! Now log in and head over to the administration control panel to configure your forum.', 0, 1281311594, NULL, NULL, 1);
-
--- --------------------------------------------------------
-
---
--- Table structure for table `ranks`
---
-
-CREATE TABLE IF NOT EXISTS `ranks` (
- `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
- `rank` varchar(50) NOT NULL DEFAULT '',
- `min_posts` mediumint(8) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`id`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;
-
---
--- Dumping data for table `ranks`
---
-
-INSERT INTO `ranks` (`id`, `rank`, `min_posts`) VALUES
-(1, 'New member', 0),
-(2, 'Member', 10);
-
--- --------------------------------------------------------
-
---
--- Table structure for table `reports`
---
-
-CREATE TABLE IF NOT EXISTS `reports` (
- `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
- `post_id` int(10) unsigned NOT NULL DEFAULT '0',
- `topic_id` int(10) unsigned NOT NULL DEFAULT '0',
- `forum_id` int(10) unsigned NOT NULL DEFAULT '0',
- `reported_by` int(10) unsigned NOT NULL DEFAULT '0',
- `created` int(10) unsigned NOT NULL DEFAULT '0',
- `message` text,
- `zapped` int(10) unsigned DEFAULT NULL,
- `zapped_by` int(10) unsigned DEFAULT NULL,
- PRIMARY KEY (`id`),
- KEY `reports_zapped_idx` (`zapped`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-
---
--- Dumping data for table `reports`
---
-
-
--- --------------------------------------------------------
-
---
--- Table structure for table `reputation`
---
-
-CREATE TABLE IF NOT EXISTS `reputation` (
- `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
- `user_id` int(10) unsigned NOT NULL DEFAULT '0',
- `from_user_id` int(10) unsigned NOT NULL DEFAULT '0',
- `time` int(10) unsigned NOT NULL DEFAULT '0',
- `post_id` int(10) unsigned NOT NULL DEFAULT '0',
- `reason` text NOT NULL,
- `rep_plus` tinyint(1) unsigned NOT NULL DEFAULT '0',
- `rep_minus` tinyint(1) unsigned NOT NULL DEFAULT '0',
- `topics_id` int(10) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`id`),
- KEY `rep_post_id_idx` (`post_id`),
- KEY `rep_multi_user_id_idx` (`topics_id`,`from_user_id`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=15940 ;
-
---
--- Dumping data for table `reputation`
---
-
-
--- --------------------------------------------------------
-
---
--- Table structure for table `search_cache`
---
-
-CREATE TABLE IF NOT EXISTS `search_cache` (
- `id` int(10) unsigned NOT NULL DEFAULT '0',
- `ident` varchar(200) NOT NULL DEFAULT '',
- `search_data` mediumtext,
- PRIMARY KEY (`id`),
- KEY `search_cache_ident_idx` (`ident`(8))
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-
---
--- Dumping data for table `search_cache`
---
-
-
--- --------------------------------------------------------
-
---
--- Table structure for table `search_matches`
---
-
-CREATE TABLE IF NOT EXISTS `search_matches` (
- `post_id` int(10) unsigned NOT NULL DEFAULT '0',
- `word_id` int(10) unsigned NOT NULL DEFAULT '0',
- `subject_match` tinyint(1) NOT NULL DEFAULT '0',
- KEY `search_matches_word_id_idx` (`word_id`),
- KEY `search_matches_post_id_idx` (`post_id`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-
---
--- Dumping data for table `search_matches`
---
-
-INSERT INTO `search_matches` (`post_id`, `word_id`, `subject_match`) VALUES
-(1, 1, 0),
-(1, 2, 0),
-(1, 3, 0),
-(1, 4, 0),
-(1, 5, 0),
-(1, 6, 0),
-(1, 7, 0),
-(1, 8, 0),
-(1, 9, 0),
-(1, 10, 0),
-(1, 11, 0),
-(1, 12, 0),
-(1, 13, 0),
-(1, 15, 1),
-(1, 14, 1);
-
--- --------------------------------------------------------
-
---
--- Table structure for table `search_words`
---
-
-CREATE TABLE IF NOT EXISTS `search_words` (
- `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
- `word` varchar(20) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
- PRIMARY KEY (`word`),
- KEY `search_words_id_idx` (`id`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=16 ;
-
---
--- Dumping data for table `search_words`
---
-
-INSERT INTO `search_words` (`id`, `word`) VALUES
-(1, 'looking'),
-(2, 'guess'),
-(3, 'install'),
-(4, 'fluxbb'),
-(5, 'appears'),
-(6, 'worked'),
-(7, 'log'),
-(8, 'head'),
-(9, 'administration'),
-(10, 'control'),
-(11, 'panel'),
-(12, 'configure'),
-(13, 'forum'),
-(14, 'test'),
-(15, 'post');
-
--- --------------------------------------------------------
-
---
--- Table structure for table `stats`
---
-
-CREATE TABLE IF NOT EXISTS `stats` (
- `date` int(10) unsigned NOT NULL DEFAULT '0',
- `posts` varchar(255) NOT NULL DEFAULT '',
- `users` varchar(255) NOT NULL DEFAULT '',
- `players` varchar(255) NOT NULL DEFAULT '',
- `active_users` varchar(255) NOT NULL DEFAULT '',
- `active_players` varchar(255) NOT NULL DEFAULT '',
- `topics` varchar(255) DEFAULT NULL
-) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-
---
--- Dumping data for table `stats`
---
-
-
--- --------------------------------------------------------
-
---
--- Table structure for table `stats_2`
---
-
-CREATE TABLE IF NOT EXISTS `stats_2` (
- `logins` int(5) DEFAULT NULL,
- `unique_logins` int(5) DEFAULT NULL,
- `updated` int(11) DEFAULT NULL,
- `hits` int(5) DEFAULT NULL,
- `unique_hits` int(5) DEFAULT NULL,
- `alexa_rank` int(5) DEFAULT NULL,
- `kills` int(5) DEFAULT NULL,
- `total_kills` int(5) DEFAULT NULL
-) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-
---
--- Dumping data for table `stats_2`
---
-
-
--- --------------------------------------------------------
-
---
--- Table structure for table `subs`
---
-
-CREATE TABLE IF NOT EXISTS `subs` (
- `user_id` int(10) DEFAULT NULL,
- `months` int(10) DEFAULT NULL,
- `google_no` varchar(255) DEFAULT NULL,
- `redeem` int(10) DEFAULT NULL,
- `status` int(5) DEFAULT NULL,
- `order_time` int(10) DEFAULT NULL,
- `last_time` int(10) DEFAULT NULL
-) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-
---
--- Dumping data for table `subs`
---
-
-
--- --------------------------------------------------------
-
---
--- Table structure for table `subscriptions`
---
-
-CREATE TABLE IF NOT EXISTS `subscriptions` (
- `user_id` int(10) unsigned NOT NULL DEFAULT '0',
- `topic_id` int(10) unsigned NOT NULL DEFAULT '0',
- `forum_id` int(10) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`user_id`,`topic_id`,`forum_id`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-
---
--- Dumping data for table `subscriptions`
---
-
-
--- --------------------------------------------------------
-
---
--- Table structure for table `topics`
---
-
-CREATE TABLE IF NOT EXISTS `topics` (
- `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
- `poster` varchar(200) NOT NULL DEFAULT '',
- `subject` varchar(255) NOT NULL DEFAULT '',
- `posted` int(10) unsigned NOT NULL DEFAULT '0',
- `first_post_id` int(10) unsigned NOT NULL DEFAULT '0',
- `last_post` int(10) unsigned NOT NULL DEFAULT '0',
- `last_post_id` int(10) unsigned NOT NULL DEFAULT '0',
- `last_poster` varchar(200) DEFAULT NULL,
- `num_views` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `num_replies` mediumint(8) unsigned NOT NULL DEFAULT '0',
- `closed` tinyint(1) NOT NULL DEFAULT '0',
- `sticky` tinyint(1) NOT NULL DEFAULT '0',
- `moved_to` int(10) unsigned DEFAULT NULL,
- `forum_id` int(10) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`id`),
- KEY `topics_forum_id_idx` (`forum_id`),
- KEY `topics_moved_to_idx` (`moved_to`),
- KEY `topics_last_post_idx` (`last_post`),
- KEY `topics_first_post_id_idx` (`first_post_id`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
-
---
--- Dumping data for table `topics`
---
-
-INSERT INTO `topics` (`id`, `poster`, `subject`, `posted`, `first_post_id`, `last_post`, `last_post_id`, `last_poster`, `num_views`, `num_replies`, `closed`, `sticky`, `moved_to`, `forum_id`) VALUES
-(1, 'admin', 'Test post', 1281311594, 1, 1281311594, 1, 'admin', 0, 0, 0, 0, NULL, 1);
-
--- --------------------------------------------------------
-
---
--- Table structure for table `users`
---
-
-CREATE TABLE IF NOT EXISTS `users` (
- `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
- `group_id` int(10) unsigned NOT NULL DEFAULT '3',
- `username` varchar(200) NOT NULL DEFAULT '',
- `password` varchar(40) NOT NULL DEFAULT '',
- `email` varchar(80) NOT NULL DEFAULT '',
- `title` varchar(50) DEFAULT NULL,
- `realname` varchar(40) DEFAULT NULL,
- `url` varchar(100) DEFAULT NULL,
- `jabber` varchar(80) DEFAULT NULL,
- `icq` varchar(12) DEFAULT NULL,
- `msn` varchar(80) DEFAULT NULL,
- `aim` varchar(30) DEFAULT NULL,
- `yahoo` varchar(30) DEFAULT NULL,
- `location` varchar(30) DEFAULT NULL,
- `signature` text,
- `disp_topics` tinyint(3) unsigned DEFAULT NULL,
- `disp_posts` tinyint(3) unsigned DEFAULT NULL,
- `email_setting` tinyint(1) NOT NULL DEFAULT '1',
- `notify_with_post` tinyint(1) NOT NULL DEFAULT '0',
- `auto_notify` tinyint(1) NOT NULL DEFAULT '0',
- `show_smilies` tinyint(1) NOT NULL DEFAULT '1',
- `show_img` tinyint(1) NOT NULL DEFAULT '1',
- `show_img_sig` tinyint(1) NOT NULL DEFAULT '1',
- `show_avatars` tinyint(1) NOT NULL DEFAULT '1',
- `show_sig` tinyint(1) NOT NULL DEFAULT '1',
- `timezone` float NOT NULL DEFAULT '0',
- `dst` tinyint(1) NOT NULL DEFAULT '0',
- `time_format` tinyint(1) NOT NULL DEFAULT '0',
- `date_format` tinyint(1) NOT NULL DEFAULT '0',
- `language` varchar(25) NOT NULL DEFAULT 'English',
- `style` varchar(25) NOT NULL DEFAULT 'Air',
- `num_posts` int(10) unsigned NOT NULL DEFAULT '0',
- `last_post` int(10) unsigned DEFAULT NULL,
- `last_search` int(10) unsigned DEFAULT NULL,
- `last_email_sent` int(10) unsigned DEFAULT NULL,
- `registered` int(10) unsigned NOT NULL DEFAULT '0',
- `registration_ip` varchar(39) NOT NULL DEFAULT '0.0.0.0',
- `last_visit` int(10) unsigned NOT NULL DEFAULT '0',
- `admin_note` varchar(30) DEFAULT NULL,
- `activate_string` varchar(80) DEFAULT NULL,
- `activate_key` varchar(8) DEFAULT NULL,
- `sub_expires` int(10) unsigned DEFAULT '0',
- PRIMARY KEY (`id`),
- UNIQUE KEY `users_username_idx` (`username`(25)),
- KEY `users_registered_idx` (`registered`)
-) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;
-
---
--- Dumping data for table `users`
---
-
-INSERT INTO `users` (`id`, `group_id`, `username`, `password`, `email`, `title`, `realname`, `url`, `jabber`, `icq`, `msn`, `aim`, `yahoo`, `location`, `signature`, `disp_topics`, `disp_posts`, `email_setting`, `notify_with_post`, `auto_notify`, `show_smilies`, `show_img`, `show_img_sig`, `show_avatars`, `show_sig`, `timezone`, `dst`, `time_format`, `date_format`, `language`, `style`, `num_posts`, `last_post`, `last_search`, `last_email_sent`, `registered`, `registration_ip`, `last_visit`, `admin_note`, `activate_string`, `activate_key`, `sub_expires`) VALUES
-(1, 3, 'Guest', 'Guest', 'Guest', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 'English', 'Air', 0, NULL, NULL, NULL, 0, '0.0.0.0', 0, NULL, NULL, NULL, 0),
-(3, 4, 'admin', 'd033e22ae348aeb5660fc2140aec35850c4da997', 'crazyonedude@hotmail.com', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 'English', 'Air', 0, NULL, NULL, NULL, 1281384799, '127.0.0.1', 1287450782, NULL, NULL, NULL, 0);
diff --git a/GameServer/ant/INSTALL b/GameServer/ant/INSTALL
deleted file mode 100644
index 83c1167..0000000
--- a/GameServer/ant/INSTALL
+++ /dev/null
@@ -1,2 +0,0 @@
-For installation instructions see the manual in the docs subdirectory
-or online at .
diff --git a/GameServer/ant/KEYS b/GameServer/ant/KEYS
deleted file mode 100644
index b4d3bd2..0000000
--- a/GameServer/ant/KEYS
+++ /dev/null
@@ -1,782 +0,0 @@
-This file contains the PGP keys of various developers.
-
-Users: pgp < KEYS
- gpg --import KEYS
-Developers:
- pgp -kxa and append it to this file.
- (pgpk -ll && pgpk -xa ) >> this file.
- (gpg --list-sigs
- && gpg --armor --export ) >> this file.
-
-Type Bits/KeyID Date User ID
-pub 1024/FEECAAED 1998/11/11 Stefan Bodewig
- Stefan Bodewig
-
------BEGIN PGP PUBLIC KEY BLOCK-----
-Version: 2.6.3i
-
-mQCNAzZJoiMAAAEEAMzhUxTOC20Nprp6K4nLTiARt+EXii/dovNWWcfzZcYXi/lX
-r3zpUTTZxlKQpd4RaHjFmGgoOraZE4jCRFARVcFJgYmGUKpcWJZO7YKL36WUizTM
-+dyB2ycOtzlty1W5VmRL3FGqo67pKA9F/QHg3NSu9hY1W9xPPK7Kq3f+7KrtAAUR
-tCBTdGVmYW4gQm9kZXdpZyA8Ym9kZXdpZ0Bib3N0LmRlPokAlQIFEDZSrGXHcgyK
-jiW9zQEBshEEAMlG4qVjKp4/agdJG56M6izx9oaKecFLXHQJrFUy3w2PvZHFYtXc
-osXKorX6bPrE8uB57MxbY2WapKeVRodlG0+j39vAf501duK8q2rktfWt9Cl4JjJ4
-DbWhSWfV1ci62u2gCxwYQe22F9Wh+vhOR5NK9RTbSKhupdlFsnrk/i7xiQCVAwUQ
-NkmiI67Kq3f+7KrtAQGdxQQAlcFOzSv7G6M4uGbgvw7IGgrhx7rawtIyv9hLXgVC
-7ua9xaZV8G0Fl9gh8RnbdcZ4R/aT+KIiAFaslfZ3t6hlC4MTbnAJqvdS/NO98ZkJ
-YvnzZSKHflAbd5gyE7IVxBC9/xRlF/Wls5sYNwb6RjoRCaOjxN/y3WCLa3Va101v
-zNy0I1N0ZWZhbiBCb2Rld2lnIDxib2Rld2lnQGFwYWNoZS5vcmc+iQCVAwUQOxIo
-BK7Kq3f+7KrtAQGn6gP/SBACdHakA4H//otpyESSrk4PmyOaYF0Kyok43Gee2mT+
-m9+jZ3jLcC0oav6iH+otL/lhk9t/JDM8LjD2kAkdWWoIvvuPyCx97gOzojIo0Ve2
-1wuxJTF/VIjwyOtE8FzE7p4tkc6EubVpeZkV9Pq9HFRBCUcyKJDLnF4tbstScLU=
-=OBLe
------END PGP PUBLIC KEY BLOCK-----
-
-
-pub 1024D/51898504 2001-05-29 Conor MacNeill
-sig 3 51898504 2001-05-29 Conor MacNeill
-sig 5F6B8B72 2002-01-11 Stefan Bodewig
-uid Conor MacNeill
-sig 3 51898504 2001-05-29 Conor MacNeill
-sig 5F6B8B72 2002-01-11 Stefan Bodewig
-sub 1024g/D1ECBA5D 2001-05-29
-sig 51898504 2001-05-29 Conor MacNeill
-
------BEGIN PGP PUBLIC KEY BLOCK-----
-Version: GnuPG v1.2.0 (GNU/Linux)
-
-mQGiBDsTqygRBACiZckNdclTlQFonLaIKBFGhMy0KKByw0x8XA4iwdbCXuF6xNIc
-HIFHajJ74AHchQ4d8xtomBy6b8yvFgWVeaZensvn69BlLeqGdyeJRzfPt6TgRnzZ
-2eWhb0HXdG3JwxL/2BabDhHfs4YJOrgB/vhRFQku6oCMRiBPtJj2werD6wCg0/zp
-jacYTw6+CR+sVvneCNyySFED/R3j10c4RnR8djgv1jKT8CKPuHYraupI9INEe+I6
-7qWjtJ02GzvMO6TElAtUsf4aysu45GgwkwEBnuG6mYb3Pq0V2c5tJc2A3Tj3DrdR
-i3HUNwurbus76I0sPyyENPu12QPeC6mvWLEsxVJ9o0hRKFayGvYUmrwWK9UFLjvp
-p9cXBACDHgLn7MAVLqUdYhRrUj/M+GOUpvBikEgoJJrEUmb5X4+++dffMh5HBIO4
-5LA11qEKuM2xnKqOilP7NLYXz1Fe0ocqv0jsHB4SprFTTai7ma31uwuRQvCQXVv1
-yJ5CLqYda64h/UA2kmmR2dfopmvDogYEMz/HU5voozxe7BEI7bQhQ29ub3IgTWFj
-TmVpbGwgPGNvbm9yQGFwYWNoZS5vcmc+iFcEExECABcFAjsTqygFCwcKAwQDFQMC
-AxYCAQIXgAAKCRCBBGRPUYmFBDgIAKCZztXqKhK6kXOnoGy7opCNmWU0lwCgsPDa
-4m+ruW3ch0rfbqtR75S52R+IRgQQEQIABgUCPD6eTgAKCRCiEVrhX2uLcqCcAKCr
-1Wylqju9YjBi5Twej9ze69JFBQCeOaMgo6yjnkcV3PnVInLlaMwPr5q0LUNvbm9y
-IE1hY05laWxsIDxjb25vckBjb3J0ZXhlYnVzaW5lc3MuY29tLmF1PohXBBMRAgAX
-BQI7E6xMBQsHCgMEAxUDAgMWAgECF4AACgkQgQRkT1GJhQTY0ACgmZmKheHzjPJs
-5hybpyvnvEiPYqYAn2+ryxdtz8XyOMExGRmHNlhG7svsiEYEEBECAAYFAjw+nlUA
-CgkQohFa4V9ri3JYYACg1WN+NCptfKVP1mbrIa+0ajztsiIAnAn+m70iwRRFZCxr
-jcULoY5SjyTLuQENBDsTqy0QBACfsCxJ6iCtgX8zjlVtMsMfDqu72x5sYatWKn8c
-u+4Oj5mi0x6azZIhwCa+K3ihLVOyG1mCRnzztGTIxWYRhq3TESIVOfgm+NgLGrmA
-XUTFyCT+21TExLCpuVZKmUHsWXLxDtfQ1diPeQpiQ8+Fvb/4jLGFjFIrQ2VjtFQn
-kumkSwADBgP9H0bF4hdMuVEcSJ9imxSoJshcOOA3Vd2+YiCTZhBygWM49wY5jNos
-/DArIjNCE53IlOu/UtHB2jqkSqjF0soGYsUjeCWouiTP9hLuMKPjnqj9ryJPTDKz
-nTCZ4TuB5CtzrKTlWLmPCPpFsGqe4KjMeKg/mqGqjPKl97xgStK9N9GIRgQYEQIA
-BgUCOxOrLQAKCRCBBGRPUYmFBMM6AJsF3FFyZGEmbt9aGG1W/u0oI9mcLgCfQyJ+
-aalbspazea4J9zgi59SSwOM=
-=cBdR
------END PGP PUBLIC KEY BLOCK-----
-
-pub 1024R/697ECEDD 2000-04-06 Henri Gomez
-sig 697ECEDD 2000-04-06 Henri Gomez
-
------BEGIN PGP PUBLIC KEY BLOCK-----
-Version: GnuPG v1.2.0 (GNU/Linux)
-
-mQCNAzjsydwAAAEEAMpwFU/ci3/wR3ryCGp9Exr+Rx/hTQ7hWAJcVw8ejlBXlT4T
-yITlRUs0HGfRWxME2J55PuXXsIEPZzjfozNtvOyq8WlLlJ7iaiyWxVRoPJ25sSEj
-C9etm6wjj4E66ZgzuElZkm1m69uEsCHPPNuz1oQ/g1O+SmIVxIYirlxpfs7dAAUR
-tBxIZW5yaSBHb21leiA8aGdvbWV6QHNsaWIuZnI+iQCVAwUQOOzJ3IYirlxpfs7d
-AQFQyQQAj0D9G0hEL7SQGaSCkkoXwvamQw42N8+tNm+jfWHWdE4HAiVlhJmI2GyD
-sdcXVAcR8R7ILIRB5AY7a3bF+qMk0r+vO6oR878RKKn9AvtaAIOnrh6tr0tiPwf5
-XDUMySxIWJEF3SmJAy9Lq3bAl5GMzZCFHiS0NW2gtWgmr/u1RuM=
-=6l+I
------END PGP PUBLIC KEY BLOCK-----
-
-pub 1024R/397DCAD5 2002-07-03 Henri Gomez
-sig 397DCAD5 2002-07-03 Henri Gomez
-
------BEGIN PGP PUBLIC KEY BLOCK-----
-Version: GnuPG v1.2.0 (GNU/Linux)
-
-mQCNAz0i0UUAAAEEALXePN6IHne0W96YRMnR+4EXB6402QY5f8ZLcnSUZUH55Fb1
-qcZGBc3WRKlPiUvwBD+eVYgCpNSXF/H+oV1mawxNJN5XwqBEpfYmY8MRIPcqa61h
-bJc3LBSm1qNf05G5Cwxeed+OgVm0r1HBy6DAgDHAqNlkC8DZ/BVgqMA5fcrVAAUR
-tCpIZW5yaSBHb21leiA8aGdvbWV6QHVzZXJzLnNvdXJjZWZvcmdlLm5ldD6JAJUD
-BRA9ItFFFWCowDl9ytUBASNyA/458T84LUVhqq6Y9fPBAfcFMWY2kehuDWsQEXkO
-46XoK+AnFZCkKuyDLqPHchVUO5pK/gZYsDK/xJkfh3u4FTDTsecb9wFmIeyayVIN
-SI8o6l8EZzDX/PGwqEwzxHrbQkIgIktNn5ApIoazvdBpbkQfNj1vr2wWoMYPLAWM
-8xzecA==
-=UmZ8
------END PGP PUBLIC KEY BLOCK-----
-
-pub 1024D/307A10A5 2002-07-18 Henri Gomez
-sig 3 307A10A5 2002-07-18 Henri Gomez
-sub 2048g/862B8F70 2002-07-18
-sig 307A10A5 2002-07-18 Henri Gomez
-
------BEGIN PGP PUBLIC KEY BLOCK-----
-Version: GnuPG v1.2.0 (GNU/Linux)
-
-mQGiBD02vbERBAC1v8fR6gjERpaz4UMfdy0hRVWCPSbOdF+Swm/IenjVzErco6zb
-MTa13umUNrDPBy/tTWiCCZrOnqi7fgDzWqPEqrXJjKAFVLEWE6MmKylPPEPG1/bm
-idkNGERSAZduvhKv777PzvEJJ/8eGe3wy/O8NbgIjCPtr4UklwCZS8cFuwCg8oMO
-UdT8qZRtzdxdAyu1m5fUb+MD/3IKJYWXsdtb6iBphCU4f/BoyjVC9EZJ1ywLuiVM
-siKbuaDUaXU9nWcbNKv+fx8uZ1NaadpfLokqqhnWcpnSiqw8HNR7SwsF1D33rkXK
-O4FSuVss/tIoqGdWFcJyPkP4yP5shxqR335narVw2vDa0+BiWkALbA2qVsSIdZDB
-LeFZA/47AMBS0U2BRk2rQT8LmMuFl7mR+wNBM4n7FUGdxsGn3TcYd4pXTNrEQPrV
-YNdooKlikgGk4hgFnIFX09Spmimqgq0goFue81rttVdZZ4uep8dTghY6gwmvcOxX
-jATbhWStBhdu9B35kzfHc+1QihD5Z94u4uyWIVBIzikcdiY8LbQqSGVucmkgR29t
-ZXogPGhnb21lekB1c2Vycy5zb3VyY2Vmb3JnZS5uZXQ+iFcEExECABcFAj02vbEF
-CwcKAwQDFQMCAxYCAQIXgAAKCRAZMdaEMHoQpYijAKCCP68ndU/kTXR9XAKLvibC
-3S8+1QCfUFQYte3Jo+MHKaWjsu9JGptRzo+5Ag0EPTa93RAIAKlsRJ5gOGTFsmaR
-W9k6MIh4c/MCy7J7HUxT5xTdHROa+3zUh+FAE/JaOx9ZtZtH863DFHA8cP4L+tpi
-PjBT6g2E94dwGcuH/OiSSCT4JSBukbGbOuLLdmFXqUl8+4gsL90Xal67FtNLwyLG
-1n7geLir0byD+OT7VLA5w+6G0NOpJEveV/FIa2qLgdRZ8vz73ybgMh18hBUrUmro
-jncp0rln2VU7VCH1C2aClKm7kK4mGAjIFIzKbguK+kM3b8NDHmXKpT6syyCtIM3h
-prkV1TUCAFqLI32aSdlTN79lpeA2zDga9k4/4X/RDHsFpRN2neRFGTNUtuUgYpQQ
-E5zWBmMAAwUH/RiGxyeBsad923IwE1+GAjxFl2tqF9xWk0J6yTnSK4nfhYAE9evV
-jwDEok9jRl4ILCcXx6YN/d/lWNuSbARKHz/3hLiTouPpwd3SSJ8is2x9PgpJz5JX
-cD0y1SkbPLvs3jH3ZmdcxZpuAmJeI/typqFKK5pWP44oXIH+XH/8nWDtmLEBkgKQ
-/ATQWenMTmZ6MIJ6aWKWGkO9QS6iYRz3PPPGQ1O8W02CeprM2wBtlb8J1Z3RxNhM
-rZcg/1Qi3V3D1HI4zw6tAFmDeBb8J4PaBQzqlhzx2EBTbfwNPhV8AlPvpxHEeGGn
-v+O1yhZr33SnyZdINNoNDn+owVMdmkobe9GIRgQYEQIABgUCPTa93QAKCRAZMdaE
-MHoQpRsTAJ4qst3MhLm48fBAEnzuzi/BIKr+AgCfYaCB/AvPoncQbHc8BcNGRimR
-P9A=
-=hQhz
------END PGP PUBLIC KEY BLOCK-----
-
-pub 1024D/EDF62C35 2002-04-10 Magesh Umasankar
-sig 3 EDF62C35 2002-04-10 Magesh Umasankar
-sig 3 5F6B8B72 2003-03-07 Stefan Bodewig
-sub 1024g/B5FFC53F 2002-04-10
-sig EDF62C35 2002-04-10 Magesh Umasankar
-
------BEGIN PGP PUBLIC KEY BLOCK-----
-Version: GnuPG v1.2.0 (GNU/Linux)
-
-mQGiBDy0ebgRBADuKIKD8PuJ4wKEV1h2AprwJjxCRx8vn48XNwfLZuvhw8cpArtK
-rZwhoGPPUPEEXgtTNerlKq4VwpAwcnvRz7oC/7aWkUbcR2sAyhfe2scohwPgw7Xv
-+isWC0NDPdrxvXG/PUOG/cnELunr51ymybBqBxUd2gMhYIxPo67D+YPYLwCgwcZp
-yc/6kJa116ESWHrti342GD8D/1srpnRs9CiS1DQF1uZ1wW4vzj4VD61tKsjdWD8D
-V573R22iMDLSj4oMB536WxUH7snz8XsAKm/peqJ6G9m0smtmWA1ago5yzQj70WqF
-xzWBhHn2I/YfAQ8pb2s9q1lClj8elnCxT65L27ydBAZteejb2VqjtQ6iGy86PUT2
-wRUvBADZmoV1eIZJEM5NnxBv1EtvRYZtIQEzZ8dO2A1LOS7qlVr8IypljNPLGhzX
-VHNvVsjC9QMUSWeBsDedvQHQ3hJpIMnTI32XE1V4gX06gfVTZdhf2fLTtwnsHZp0
-oumqshGDVRhNJJdDYLikxWOxOfkNveKEqJFvtuBR+ZqqluQKebQlTWFnZXNoIFVt
-YXNhbmthciA8dW1hZ2VzaEBhcGFjaGUub3JnPohXBBMRAgAXBQI8tHm4BQsHCgME
-AxUDAgMWAgECF4AACgkQ76Pnee32LDWSRwCfeASWXvpdt7bSFPMtszU/7uPEktsA
-n23mYUN5WKJA1ZreW+0CcZ2ESnOviEYEExECAAYFAj5ogYgACgkQohFa4V9ri3IW
-YACgsxGig0PL0M86rJsA/IpXjBdg3ysAoJzsoUZ/7s2BxDfzF/FRTVIzS+TMuQEN
-BDy0eb8QBACBVb9YDJRp9Irzmq71Jf9FIPw+4g/cWpF3t/Eb7eSzMcOvTAXyNIWz
-aaOjHre7lFctHfq8ls/6gR7uqajiAnfQcfTcu7pp+F5KsU0Embt83SFzZ3aoJwET
-mB/LqUyrrGDiue3lU+flJO7UmcsRvtk0+BDkyCeB9HgfdpXbBLCyuwADBQP+PNxX
-4e1tg3ZJo/xNEnD2Re3HjmQRrr0RYJLUGjgQrAEONSgowx3IW8/JssmNJVjnYm0q
-jSKsb8rergCFJhPNZ8Dd/k00pKcrq+IN6j7WTYLqPce87zrGAZUtmDwDSp5mxy5E
-xWJJxsgBPk4YBQLzJt21A3BgK/i24Sze2VLbaZuIRgQYEQIABgUCPLR5vwAKCRDv
-o+d57fYsNa8xAJ4mLfonZbd64+YY9rfvhIh3Vsl3AACeLPPKtma2K6XCfhTBEDnj
-hzSr4vo=
-=lBfF
------END PGP PUBLIC KEY BLOCK-----
-pub 1024D/265B4C63 2003-08-18 Antoine Levy-Lambert (Apache Ant Committer)
-sig 3 265B4C63 2003-12-06 Antoine Levy-Lambert (Apache Ant Committer)
-sig 3 5F6B8B72 2003-12-12 Stefan Bodewig
-uid Antoine Levy-Lambert (Apache Ant Committer)
-sig 3 265B4C63 2003-08-18 Antoine Levy-Lambert (Apache Ant Committer)
-sig 3 5F6B8B72 2003-12-12 Stefan Bodewig
-sub 1024g/A3060393 2003-08-18
-sig 265B4C63 2003-08-18 Antoine Levy-Lambert (Apache Ant Committer)
-
------BEGIN PGP PUBLIC KEY BLOCK-----
-Version: GnuPG v1.2.2 (MingW32)
-
-mQGiBD9AzmcRBACMqgb7IFvC/nLxw7mUAgHENeZXY3JOQJ8wVBevIbbMEeFvzHE2
-diFydqUXocPexduYr0ahkf033WvWdAiNqDLfVW/HFOsc1TpjbHkqPUHtJ62Ya5tg
-nH4UGN9BYZfMbfVDOSz41lYwmfK5HYgpZN/sBQBSKf2qgoFB+LxYaae8YwCgrWlu
-fYhf7fkKbbdSf3BGS67ggNkD/0VvkXkw1SEnPaqrkKGkPKomCTb2auGxcYYI3/rP
-1m+SGRf0gE1NtocmIEitiR6WvfKUjoMAXSCp5KdnUXmO9rwzkM002KCA7K5CY+e/
-2bLDuiQ3rNiD4mFfG6M+UnmZ+GMFba1p9Cp4PqLNLsCHz67t7hEsscTZQ8mZ9xKM
-+GCsA/9P+XFM7JDn9MLhYab9qo1CkceBkthUP6jWGjuAZ00elmBCkpkzNv5aIzss
-xih2GpaU/tmcMjw8FGp0dTwzqdpmbZBLjunRnuBTir4m4l5G9rwl4JbfK1PVqk4a
-VKkh9W7/yqBcEfNcsfJO9cqaQ+PzcnCoDiD9UHEBYzUhrCKwhLRCQW50b2luZSBM
-ZXZ5LUxhbWJlcnQgKEFwYWNoZSBBbnQgQ29tbWl0dGVyKSA8YW50b2luZUBhbnRi
-dWlsZC5jb20+iFsEExECABsFAj9AzmcGCwkIBwMCAxUCAwMWAgECHgECF4AACgkQ
-hhTWqyZbTGMnOgCeJV2gI+1CIxMR7dcIhXjPkiusreIAn2SGOsPS0o89l0EIVuc9
-J2F03aB+iEYEExECAAYFAj/ZwioACgkQohFa4V9ri3J8CACgiGlh+td0BAnJPq19
-ovEQR2DJ02MAoLP203EF+BLPpykeTcGp8UEWmeGQtEBBbnRvaW5lIExldnktTGFt
-YmVydCAoQXBhY2hlIEFudCBDb21taXR0ZXIpIDxhbnRvaW5lQGFwYWNoZS5vcmc+
-iF4EExECAB4FAj/SSwYCGwMGCwkIBwMCAxUCAwMWAgECHgECF4AACgkQhhTWqyZb
-TGOh/QCfbrSoipMlizyGT6c8BOPEd9zzfi0AnRRTqTDzXzsGk4CG/BJME9CCm7Ts
-iEYEExECAAYFAj/ZwiMACgkQohFa4V9ri3IOVACgh2QHS1+cVjvM4eLjls1bJwWi
-o5IAoLtAszHrwHS5qrhvr2rtnlyyyV2guQENBD9AzmkQBACNpBfqi2PweozCtxoX
-PqzKdRDKqCw7TOrDR6lbP3z/ov/1SN5Vc0XqNzBSGqwBcmGWtneABkX7n4uzJrC5
-wvX/TZ/DkMvypPyeNVMu+/ZMlzdbx06OUDKr6Fy/NtaI7cN1rw+Igyv22Q8ilhhg
-s/5Rdj84EtJkWQjVRml6wXSAZwADBwP/TqyhOC4sA5YrePYGH8i46h0SU9dXjfEF
-JijC8vXZ+BNQHQVK3fjEXedZL8Zvvp1bsMu7Muz9SMnqygM1unp2NGxLRd/9315p
-Qh0VStYKn0xq13ybOKr0Gsyx5yyl3Nzlu/1qAR0es/zN4jV7/IQi3R2GOvezcpHX
-mkbsYiZAhu2IRgQYEQIABgUCP0DOaQAKCRCGFNarJltMYxcsAKCSJJUABlXYnLBj
-b+WtmAzu0JjZNACdFJ4KIATJDK/5ajFq5+irOpodoHc=
-=UomR
------END PGP PUBLIC KEY BLOCK-----
-
-pub 1024D/5F6B8B72 2001-05-28 Stefan Bodewig
-sig 3 5F6B8B72 2001-05-28 Stefan Bodewig
-sig 51898504 2002-01-11 Conor MacNeill
-sig 3 F88341D9 2003-03-17 Lars Eilebrecht
-sig 3 2261D073 2003-03-17 Astrid Kessler (Kess)
-sig 21D0A71B 2003-03-17 Dirk-Willem van Gulik (http://www.anywi.com/ - Senior partner)
-sig 75A67692 2003-03-18 Erik Abele
-sig B3B2A12C 2003-05-20 ct magazine CERTIFICATE
-sig 3 8103A37E 2003-04-04 Andre Malo
-sig 3 5F6B8B72 2001-05-28 Stefan Bodewig
-sig D6298F01 2003-04-27 Paulo Henrique Gaspar Jorge
-sig 0CAA68B4 2004-11-11 Patrick Rentsch
-sig 2FE28BCF 2005-07-01 Harald Wilhelm (HAWI)
-sig 5793498F 2005-07-21 Tim Ellison
-sig E4136392 2005-07-21 [User id not found]
-sig 8408F755 2005-07-21 Christian Geisert
-sig 2 FC243F3C 2005-07-20 Henk P. Penning
-sig 3 EC140B81 2005-07-20 Dirk-Willem van Gulik (http://www.anywi.com/ - Senior partner)
-sig 3 EE65E321 2005-07-20 Martin Kraemer
-sig 3 A99F75DD 2005-07-21 Rodent of Unusual Size
-sig 3 3642CB4B 2005-07-20 Martin Kraemer
-sig 3 302DA568 2005-07-21 Rodent of Unusual Size (DSA)
-sig 3 2C312D2F 2005-07-21 Rodent of Unusual Size
-sig 3 CC78C893 2005-07-22 Rich Bowen
-sig 3 E2D774DF 2005-07-22 Sylvain Wallez
-sig 3 E04F9A89 2005-07-22 Roy T. Fielding
-sig 3 015AFC8A 2005-07-22 Bertrand Delacretaz
-sig 3 87315C31 2005-07-23 Raphaël Luta
-sig 3 E41EDC7E 2005-07-24 Carsten Ziegeler
-sig 3 F39B3750 2005-07-24 Colm MacCarthaigh
-sig 1CD4861F 2005-07-25 Eran Chinthaka
-sig EA1BA38D 2005-07-25 Ajith Harshana Ranabahu (Made at Apachecon 2005)
-sig 333E4E84 2005-07-26 Chathura Kamalanath Herath (Apachecon Europe 2005)
-sig 152924AF 2005-07-29 Sander Temme
-sig 3 9C85222B 2005-07-24 Henning Schmiedehausen
-sig 3 9978AF86 2005-07-25 [User id not found]
-sig 3 2A623F72 2005-07-25 [User id not found]
-sig 3 F8EA2967 2005-07-26 [User id not found]
-sig 3 C152431A 2005-07-27 Steve Loughran
-sig DE885DD3 2005-11-25 Sander Striker
-uid [revoked] Stefan Bodewig
-sig 3 5F6B8B72 2001-05-28 Stefan Bodewig
-sig 51898504 2002-01-11 Conor MacNeill
-sig 3 F88341D9 2003-03-17 Lars Eilebrecht
-sig 3 2261D073 2003-03-17 Astrid Kessler (Kess)
-sig 21D0A71B 2003-03-17 Dirk-Willem van Gulik (http://www.anywi.com/ - Senior partner)
-sig 75A67692 2003-03-18 Erik Abele
-sig B3B2A12C 2003-05-20 ct magazine CERTIFICATE
-sig 3 8103A37E 2003-04-04 Andre Malo
-sig 0CAA68B4 2004-11-11 Patrick Rentsch
-sig 2FE28BCF 2005-07-01 Harald Wilhelm (HAWI)
-rev 5F6B8B72 2005-07-22 Stefan Bodewig
-sig 5793498F 2005-07-21 Tim Ellison
-sig 3 EC140B81 2005-07-20 Dirk-Willem van Gulik (http://www.anywi.com/ - Senior partner)
-sig 3 EE65E321 2005-07-20 Martin Kraemer
-sig 3 A99F75DD 2005-07-21 Rodent of Unusual Size
-sig 3 3642CB4B 2005-07-20 Martin Kraemer
-sig 3 302DA568 2005-07-21 Rodent of Unusual Size (DSA)
-sig 3 2C312D2F 2005-07-21 Rodent of Unusual Size
-sig 3 CC78C893 2005-07-22 Rich Bowen
-sig 3 E2D774DF 2005-07-22 Sylvain Wallez
-sig 3 E04F9A89 2005-07-22 Roy T. Fielding
-sig 3 87315C31 2005-07-23 Raphaël Luta
-sig 3 E41EDC7E 2005-07-24 Carsten Ziegeler
-sig 3 F39B3750 2005-07-24 Colm MacCarthaigh
-sig 1CD4861F 2005-07-25 Eran Chinthaka
-sig EA1BA38D 2005-07-25 Ajith Harshana Ranabahu (Made at Apachecon 2005)
-sig 333E4E84 2005-07-26 Chathura Kamalanath Herath (Apachecon Europe 2005)
-sig 152924AF 2005-07-29 Sander Temme
-sig 3 9C85222B 2005-07-24 Henning Schmiedehausen
-sig 3 9978AF86 2005-07-25 [User id not found]
-sig 3 2A623F72 2005-07-25 [User id not found]
-sig 3 F8EA2967 2005-07-26 [User id not found]
-sig 3 C152431A 2005-07-27 Steve Loughran
-sig DE885DD3 2005-11-25 Sander Striker
-uid Stefan Bodewig
-sig 3 5F6B8B72 2003-03-07 Stefan Bodewig
-sig 3 F88341D9 2003-03-17 Lars Eilebrecht
-sig 3 2261D073 2003-03-17 Astrid Kessler (Kess)
-sig 21D0A71B 2003-03-17 Dirk-Willem van Gulik (http://www.anywi.com/ - Senior partner)
-sig 75A67692 2003-03-18 Erik Abele
-sig B3B2A12C 2003-05-20 ct magazine CERTIFICATE
-sig 3 8103A37E 2003-04-04 Andre Malo
-sig 51898504 2005-06-21 Conor MacNeill
-sig 0CAA68B4 2004-11-11 Patrick Rentsch
-sig 2FE28BCF 2005-07-01 Harald Wilhelm (HAWI)
-sig 5793498F 2005-07-21 Tim Ellison
-sig 8408F755 2005-07-21 Christian Geisert
-sig 3 EC140B81 2005-07-20 Dirk-Willem van Gulik (http://www.anywi.com/ - Senior partner)
-sig 3 EE65E321 2005-07-20 Martin Kraemer
-sig 3 A99F75DD 2005-07-21 Rodent of Unusual Size
-sig 3 3642CB4B 2005-07-20 Martin Kraemer
-sig 3 302DA568 2005-07-21 Rodent of Unusual Size (DSA)
-sig 3 2C312D2F 2005-07-21 Rodent of Unusual Size
-sig 3 CC78C893 2005-07-22 Rich Bowen
-sig 3 E2D774DF 2005-07-22 Sylvain Wallez
-sig 3 E04F9A89 2005-07-22 Roy T. Fielding
-sig 3 87315C31 2005-07-23 Raphaël Luta
-sig 3 E41EDC7E 2005-07-24 Carsten Ziegeler
-sig 3 F39B3750 2005-07-24 Colm MacCarthaigh
-sig 1CD4861F 2005-07-25 Eran Chinthaka
-sig EA1BA38D 2005-07-25 Ajith Harshana Ranabahu (Made at Apachecon 2005)
-sig 333E4E84 2005-07-26 Chathura Kamalanath Herath (Apachecon Europe 2005)
-sig 152924AF 2005-07-29 Sander Temme
-sig 3 9C85222B 2005-07-24 Henning Schmiedehausen
-sig 3 9978AF86 2005-07-25 [User id not found]
-sig 3 2A623F72 2005-07-25 [User id not found]
-sig 3 F8EA2967 2005-07-26 [User id not found]
-sig 3 C152431A 2005-07-27 Steve Loughran
-sig DE885DD3 2005-11-25 Sander Striker
-uid Stefan Bodewig
-sig 3 5F6B8B72 2005-05-31 Stefan Bodewig
-sig 51898504 2005-06-21 Conor MacNeill
-sig 2FE28BCF 2005-07-01 Harald Wilhelm (HAWI)
-sig 5793498F 2005-07-21 Tim Ellison
-sig 3 EC140B81 2005-07-20 Dirk-Willem van Gulik (http://www.anywi.com/ - Senior partner)
-sig 3 EE65E321 2005-07-20 Martin Kraemer
-sig 3 A99F75DD 2005-07-21 Rodent of Unusual Size
-sig 3 21D0A71B 2005-07-20 Dirk-Willem van Gulik (http://www.anywi.com/ - Senior partner)
-sig 3 3642CB4B 2005-07-20 Martin Kraemer
-sig 3 302DA568 2005-07-21 Rodent of Unusual Size (DSA)
-sig 3 2C312D2F 2005-07-21 Rodent of Unusual Size
-sig 3 CC78C893 2005-07-22 Rich Bowen
-sig 3 E2D774DF 2005-07-22 Sylvain Wallez
-sig 3 E04F9A89 2005-07-22 Roy T. Fielding
-sig 3 87315C31 2005-07-23 Raphaël Luta
-sig 3 E41EDC7E 2005-07-24 Carsten Ziegeler
-sig 3 F39B3750 2005-07-24 Colm MacCarthaigh
-sig 1CD4861F 2005-07-25 Eran Chinthaka
-sig EA1BA38D 2005-07-25 Ajith Harshana Ranabahu (Made at Apachecon 2005)
-sig 333E4E84 2005-07-26 Chathura Kamalanath Herath (Apachecon Europe 2005)
-sig 152924AF 2005-07-29 Sander Temme
-sig 3 9C85222B 2005-07-24 Henning Schmiedehausen
-sig 3 9978AF86 2005-07-25 [User id not found]
-sig 3 2A623F72 2005-07-25 [User id not found]
-sig 3 F8EA2967 2005-07-26 [User id not found]
-sig 3 C152431A 2005-07-27 Steve Loughran
-sig DE885DD3 2005-11-25 Sander Striker
-uid [revoked] Stefan Bodewig
-rev 5F6B8B72 2005-07-01 Stefan Bodewig
-sig 75A67692 2003-03-18 Erik Abele
-sig 3 F88341D9 2003-03-17 Lars Eilebrecht
-sig 3 5F6B8B72 2002-01-11 Stefan Bodewig
-sig 3 8103A37E 2003-04-04 Andre Malo
-sig 3 2261D073 2003-03-17 Astrid Kessler (Kess)
-sig 21D0A71B 2003-03-17 Dirk-Willem van Gulik (http://www.anywi.com/ - Senior partner)
-sig 2FE28BCF 2005-07-01 Harald Wilhelm (HAWI)
-sub 1024g/24774157 2001-05-28
-sig 5F6B8B72 2001-05-28 Stefan Bodewig
-
------BEGIN PGP PUBLIC KEY BLOCK-----
-Version: GnuPG v1.2.4 (GNU/Linux)
-
-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
-uWWXAJ9Adm9Mz4yoxrosHSkp5BWzXBUt4A==
-=95C5
------END PGP PUBLIC KEY BLOCK-----
-
-pub 1024D/C152431A 2005-07-18 [expires: 2010-07-17]
-uid Steve Loughran
-sig 3 C152431A 2005-07-18 Steve Loughran
-sig 2 FC243F3C 2005-07-20 Henk P. Penning
-sig 3 302DA568 2005-07-21 Rodent of Unusual Size (DSA)
-sig 3 2C312D2F 2005-07-21 Rodent of Unusual Size
-sig 3 E04F9A89 2005-07-22 Roy T. Fielding
-sig 8103A37E 2005-07-20 Andre Malo
-sig 5793498F 2005-07-21 Tim Ellison
-sig E4136392 2005-07-21 Noel J. Bergman
-sig 1CD4861F 2005-07-25 Eran Chinthaka
-sig EA1BA38D 2005-07-25 Ajith Harshana Ranabahu (Made at Apachecon 2005)
-sig 3 21D0A71B 2005-07-20 Dirk-Willem van Gulik (http://www.anywi.com/ - Senior partner)
-sig 3 3642CB4B 2005-07-20 Martin Kraemer
-sig 3 2261D073 2005-07-20 Astrid Kessler (Kess)
-sig 3 E2D774DF 2005-07-22 Sylvain Wallez
-sig 3 015AFC8A 2005-07-22 Bertrand Delacretaz
-sig 3 E41EDC7E 2005-07-24 Carsten Ziegeler
-sig 3 F39B3750 2005-07-24 Colm MacCarthaigh
-sig 3 9C85222B 2005-07-24 Henning Schmiedehausen
-sig 3 9978AF86 2005-07-25 Christoph Probst
-sig 3 2A623F72 2005-07-25 Christoph Probst
-sig 3 F8EA2967 2005-07-26 Brian McCallister
-sig 3 A99F75DD 2005-07-21 Rodent of Unusual Size
-sig 3 EC140B81 2005-07-20 Dirk-Willem van Gulik (http://www.anywi.com/ - Senior partner)
-sig 3 EE65E321 2005-07-20 Martin Kraemer
-sig 152924AF 2005-07-29 Sander Temme
-sig 3 87315C31 2005-07-23 Raphaël Luta
-sub 2048g/59066D7B 2005-07-18 [expires: 2010-07-17]
-sig C152431A 2005-07-18 Steve Loughran
-
------BEGIN PGP PUBLIC KEY BLOCK-----
-Version: GnuPG v1.4.2 (GNU/Linux)
-
-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
-0N6XOghJAJ4mSgdwgv+sIOaPKQqCm+PL2M0lPw==
-=4TlI
------END PGP PUBLIC KEY BLOCK-----
-
-pub 1024D/AA0077B0 2006-06-13
-uid Kev Jackson (apache key)
-sig 3 AA0077B0 2006-06-13 Kev Jackson (apache key)
-sub 2048g/8A6DD738 2006-06-13
-sig AA0077B0 2006-06-13 Kev Jackson (apache key)
-
------BEGIN PGP PUBLIC KEY BLOCK-----
-Version: GnuPG v1.4.1 (Darwin)
-
-mQGiBESOfuoRBADiCLjvY8EG8cDrfNvPaVJr1/8d8GDoLjBCeJWl50M7j1IQDB+r
-rzBPXOzhoqiNRbZMkpjv8ofa5hVOQitVS4B69FA07RbuiQNTKg142h8ogtJeAI1g
-eXuTZtmGE47TOpj7FMG8bHOmoJdQMkzUsdOhEAyqRu4noknuuIKgsE1kYwCgnhaH
-9KBlpKaRG7Bb2BH6da+wmKUEAIaBeZ1aSQodUzDqnGjCd4hZbpzjyWg7O5BylNhK
-ogMY95BvwFRD8WFdSvhvH9VKBtSuNqg/6gIkqAljRRESVxL4QrzlYSqF513kK1ds
-lUTmqU9Dvaf7dkH+MYnkPVTP5tMZVCT7HEt4F6HcqlaZKlz5jsu3R53KBx6XZATc
-SEGbA/wOournJ64We8sXTJGHFupvSLBy3nh68mPLaplzTnH2al1DLBnoF2giC32v
-ZGG+e12kWE+fyyQ3pdAIRHgVjZ/ckPmcmxnVcYrhzbgV99fo2+JRh2SVrLrmvw+G
-CKiUtNHn0HS1klBKSj+3ML1AQQlbyfrcVSf0Fefug51BqoqU+rQqS2V2IEphY2tz
-b24gKGFwYWNoZSBrZXkpIDxrZXZqQGFwYWNoZS5vcmc+iF4EExECAB4FAkSOfuoC
-GwMGCwkIBwMCAxUCAwMWAgECHgECF4AACgkQoL/5PaoAd7BnTACff9f8Y2RFB7O7
-Wjncyb1XbEwJB/gAninrR0isW9jGx49GmSnQCjtO9k34uQINBESOfzMQCACP+GP2
-x2nE2JxjUUjj16ftOxUivbL8L9ksplx41n7yeRvu+RzOXcjlonuld0LYxprNsHGv
-mbAoZj93QozHQIMfC2kfnia+hxCcBPMbev9RPCqgogpb90BtV0f9HGyWXs2QTgWG
-R2hyjq/RpwtA3obSXw3pb1CnXW4stV65WAdd72KDc66wRR1gmjxKQx6b1dGcC+E4
-HyOgu2CDtr1ULPeI5U4BA4y8FLgDfYwkxp6vj5ViegGP7GlMa3bSgNRGsYX7VwgZ
-pmI8WY4B5k3/Pyv2Toe6/5zTmKH8WlyZd00ede/tbFTqQLg+EylAcWJ8c3asood+
-SjCwTuD8l8a0wpO3AAMHB/9GXkbBUE8cbMTaS4yj7UL5iWRVhSPo9IzMSrzaXmZN
-8ykX96ud35BCEfmYgty3USMk90Rs/PbwB4Mh3h1ZTXqRWcfOXzJ8kMabm2RANyf2
-H2DvGKoFPtpX/9I13vo9qRLRHVRENNg+3JCa1ii8cq7h8bWvTT0VxX/rOG0cl8nO
-XkHTUARR19cGPf6XkHEcl+u1pAxIJGqY/gVowjyFGZs+RXFl/q/Vrgu+lvvxmryd
-yEdeGdsBvQ9M0KKr98w1RiJnDUkSqI711xwlVk14Uu6Xke0oB3bbpe4UxD52avAC
-yEzYY7vbpe6XS2+dOcZxWE3eur6SfsucAkj4Ib72mchhiEkEGBECAAkFAkSOfzMC
-GwwACgkQoL/5PaoAd7BQAwCeJFb9yZvOWfdf73A7t2MvPXn1y6kAnRquMmA5eVdh
-HbAUXWyYuT2OHOSD
-=F2q3
------END PGP PUBLIC KEY BLOCK-----
diff --git a/GameServer/ant/LICENSE b/GameServer/ant/LICENSE
deleted file mode 100644
index f820d4b..0000000
--- a/GameServer/ant/LICENSE
+++ /dev/null
@@ -1,203 +0,0 @@
-/*
- * Apache License
- * Version 2.0, January 2004
- * http://www.apache.org/licenses/
- *
- * TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
- *
- * 1. Definitions.
- *
- * "License" shall mean the terms and conditions for use, reproduction,
- * and distribution as defined by Sections 1 through 9 of this document.
- *
- * "Licensor" shall mean the copyright owner or entity authorized by
- * the copyright owner that is granting the License.
- *
- * "Legal Entity" shall mean the union of the acting entity and all
- * other entities that control, are controlled by, or are under common
- * control with that entity. For the purposes of this definition,
- * "control" means (i) the power, direct or indirect, to cause the
- * direction or management of such entity, whether by contract or
- * otherwise, or (ii) ownership of fifty percent (50%) or more of the
- * outstanding shares, or (iii) beneficial ownership of such entity.
- *
- * "You" (or "Your") shall mean an individual or Legal Entity
- * exercising permissions granted by this License.
- *
- * "Source" form shall mean the preferred form for making modifications,
- * including but not limited to software source code, documentation
- * source, and configuration files.
- *
- * "Object" form shall mean any form resulting from mechanical
- * transformation or translation of a Source form, including but
- * not limited to compiled object code, generated documentation,
- * and conversions to other media types.
- *
- * "Work" shall mean the work of authorship, whether in Source or
- * Object form, made available under the License, as indicated by a
- * copyright notice that is included in or attached to the work
- * (an example is provided in the Appendix below).
- *
- * "Derivative Works" shall mean any work, whether in Source or Object
- * form, that is based on (or derived from) the Work and for which the
- * editorial revisions, annotations, elaborations, or other modifications
- * represent, as a whole, an original work of authorship. For the purposes
- * of this License, Derivative Works shall not include works that remain
- * separable from, or merely link (or bind by name) to the interfaces of,
- * the Work and Derivative Works thereof.
- *
- * "Contribution" shall mean any work of authorship, including
- * the original version of the Work and any modifications or additions
- * to that Work or Derivative Works thereof, that is intentionally
- * submitted to Licensor for inclusion in the Work by the copyright owner
- * or by an individual or Legal Entity authorized to submit on behalf of
- * the copyright owner. For the purposes of this definition, "submitted"
- * means any form of electronic, verbal, or written communication sent
- * to the Licensor or its representatives, including but not limited to
- * communication on electronic mailing lists, source code control systems,
- * and issue tracking systems that are managed by, or on behalf of, the
- * Licensor for the purpose of discussing and improving the Work, but
- * excluding communication that is conspicuously marked or otherwise
- * designated in writing by the copyright owner as "Not a Contribution."
- *
- * "Contributor" shall mean Licensor and any individual or Legal Entity
- * on behalf of whom a Contribution has been received by Licensor and
- * subsequently incorporated within the Work.
- *
- * 2. Grant of Copyright License. Subject to the terms and conditions of
- * this License, each Contributor hereby grants to You a perpetual,
- * worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- * copyright license to reproduce, prepare Derivative Works of,
- * publicly display, publicly perform, sublicense, and distribute the
- * Work and such Derivative Works in Source or Object form.
- *
- * 3. Grant of Patent License. Subject to the terms and conditions of
- * this License, each Contributor hereby grants to You a perpetual,
- * worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- * (except as stated in this section) patent license to make, have made,
- * use, offer to sell, sell, import, and otherwise transfer the Work,
- * where such license applies only to those patent claims licensable
- * by such Contributor that are necessarily infringed by their
- * Contribution(s) alone or by combination of their Contribution(s)
- * with the Work to which such Contribution(s) was submitted. If You
- * institute patent litigation against any entity (including a
- * cross-claim or counterclaim in a lawsuit) alleging that the Work
- * or a Contribution incorporated within the Work constitutes direct
- * or contributory patent infringement, then any patent licenses
- * granted to You under this License for that Work shall terminate
- * as of the date such litigation is filed.
- *
- * 4. Redistribution. You may reproduce and distribute copies of the
- * Work or Derivative Works thereof in any medium, with or without
- * modifications, and in Source or Object form, provided that You
- * meet the following conditions:
- *
- * (a) You must give any other recipients of the Work or
- * Derivative Works a copy of this License; and
- *
- * (b) You must cause any modified files to carry prominent notices
- * stating that You changed the files; and
- *
- * (c) You must retain, in the Source form of any Derivative Works
- * that You distribute, all copyright, patent, trademark, and
- * attribution notices from the Source form of the Work,
- * excluding those notices that do not pertain to any part of
- * the Derivative Works; and
- *
- * (d) If the Work includes a "NOTICE" text file as part of its
- * distribution, then any Derivative Works that You distribute must
- * include a readable copy of the attribution notices contained
- * within such NOTICE file, excluding those notices that do not
- * pertain to any part of the Derivative Works, in at least one
- * of the following places: within a NOTICE text file distributed
- * as part of the Derivative Works; within the Source form or
- * documentation, if provided along with the Derivative Works; or,
- * within a display generated by the Derivative Works, if and
- * wherever such third-party notices normally appear. The contents
- * of the NOTICE file are for informational purposes only and
- * do not modify the License. You may add Your own attribution
- * notices within Derivative Works that You distribute, alongside
- * or as an addendum to the NOTICE text from the Work, provided
- * that such additional attribution notices cannot be construed
- * as modifying the License.
- *
- * You may add Your own copyright statement to Your modifications and
- * may provide additional or different license terms and conditions
- * for use, reproduction, or distribution of Your modifications, or
- * for any such Derivative Works as a whole, provided Your use,
- * reproduction, and distribution of the Work otherwise complies with
- * the conditions stated in this License.
- *
- * 5. Submission of Contributions. Unless You explicitly state otherwise,
- * any Contribution intentionally submitted for inclusion in the Work
- * by You to the Licensor shall be under the terms and conditions of
- * this License, without any additional terms or conditions.
- * Notwithstanding the above, nothing herein shall supersede or modify
- * the terms of any separate license agreement you may have executed
- * with Licensor regarding such Contributions.
- *
- * 6. Trademarks. This License does not grant permission to use the trade
- * names, trademarks, service marks, or product names of the Licensor,
- * except as required for reasonable and customary use in describing the
- * origin of the Work and reproducing the content of the NOTICE file.
- *
- * 7. Disclaimer of Warranty. Unless required by applicable law or
- * agreed to in writing, Licensor provides the Work (and each
- * Contributor provides its Contributions) on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
- * implied, including, without limitation, any warranties or conditions
- * of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
- * PARTICULAR PURPOSE. You are solely responsible for determining the
- * appropriateness of using or redistributing the Work and assume any
- * risks associated with Your exercise of permissions under this License.
- *
- * 8. Limitation of Liability. In no event and under no legal theory,
- * whether in tort (including negligence), contract, or otherwise,
- * unless required by applicable law (such as deliberate and grossly
- * negligent acts) or agreed to in writing, shall any Contributor be
- * liable to You for damages, including any direct, indirect, special,
- * incidental, or consequential damages of any character arising as a
- * result of this License or out of the use or inability to use the
- * Work (including but not limited to damages for loss of goodwill,
- * work stoppage, computer failure or malfunction, or any and all
- * other commercial damages or losses), even if such Contributor
- * has been advised of the possibility of such damages.
- *
- * 9. Accepting Warranty or Additional Liability. While redistributing
- * the Work or Derivative Works thereof, You may choose to offer,
- * and charge a fee for, acceptance of support, warranty, indemnity,
- * or other liability obligations and/or rights consistent with this
- * License. However, in accepting such obligations, You may act only
- * on Your own behalf and on Your sole responsibility, not on behalf
- * of any other Contributor, and only if You agree to indemnify,
- * defend, and hold each Contributor harmless for any liability
- * incurred by, or claims asserted against, such Contributor by reason
- * of your accepting any such warranty or additional liability.
- *
- * END OF TERMS AND CONDITIONS
- *
- * APPENDIX: How to apply the Apache License to your work.
- *
- * To apply the Apache License to your work, attach the following
- * boilerplate notice, with the fields enclosed by brackets "[]"
- * replaced with your own identifying information. (Don't include
- * the brackets!) The text should be enclosed in the appropriate
- * comment syntax for the file format. We also recommend that a
- * file or class name and description of purpose be included on the
- * same "printed page" as the copyright notice for easier
- * identification within third-party archives.
- *
- * Copyright [yyyy] [name of copyright owner]
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
diff --git a/GameServer/ant/LICENSE.dom b/GameServer/ant/LICENSE.dom
deleted file mode 100644
index 05013f1..0000000
--- a/GameServer/ant/LICENSE.dom
+++ /dev/null
@@ -1,71 +0,0 @@
-This license came from:
-http://www.w3.org/Consortium/Legal/copyright-software-19980720
-
-
-W3C® SOFTWARE NOTICE AND LICENSE
-Copyright © 1994-2001 World
-Wide Web Consortium, World
-Wide Web Consortium, (Massachusetts Institute of
-Technology, Institut National de
-Recherche en Informatique et en Automatique, Keio University). All Rights Reserved.
-http://www.w3.org/Consortium/Legal/
-
-This W3C work (including software, documents, or other related
-items) is being provided by the copyright holders under the
-following license. By obtaining, using and/or copying this work,
-you (the licensee) agree that you have read, understood, and will
-comply with the following terms and conditions:
-Permission to use, copy, modify, and distribute this software
-and its documentation, with or without modification, for any
-purpose and without fee or royalty is hereby granted, provided that
-you include the following on ALL copies of the software and
-documentation or portions thereof, including modifications, that
-you make:
-
-The full text of this NOTICE in a location viewable to users of
-the redistributed or derivative work.
-
-Any pre-existing intellectual property disclaimers, notices, or
-terms and conditions. If none exist, a short notice of the
-following form (hypertext is preferred, text is permitted) should
-be used within the body of any redistributed or derivative code:
-"Copyright © [$date-of-software] World Wide Web Consortium, (Massachusetts Institute of
-Technology, Institut National de
-Recherche en Informatique et en Automatique, Keio University). All Rights Reserved.
-http://www.w3.org/Consortium/Legal/"
-
-Notice of any changes or modifications to the W3C files,
-including the date changes were made. (We recommend you provide
-URIs to the location from which the code is derived.)
-
-THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND
-COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF
-MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE
-USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD
-PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.
-COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT,
-SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE
-SOFTWARE OR DOCUMENTATION.
-
-The name and trademarks of copyright holders may NOT be used in
-advertising or publicity pertaining to the software without
-specific, written prior permission. Title to copyright in this
-software and any associated documentation will at all times remain
-with copyright holders.
-____________________________________
-This formulation of W3C's notice and license became active on
-August 14 1998 so as to improve compatibility with GPL. This
-version ensures that W3C software licensing terms are no more
-restrictive than GPL and consequently W3C software may be
-distributed in GPL packages. See the older formulation for the
-policy prior to this date. Please see our Copyright FAQ for common
-questions about using materials from
-our site, including specific terms and conditions for packages like
-libwww, Amaya, and Jigsaw.
-Other questions about this notice can be
-directed to site-policy@w3.org.
-
-webmaster
diff --git a/GameServer/ant/LICENSE.sax b/GameServer/ant/LICENSE.sax
deleted file mode 100644
index 006c924..0000000
--- a/GameServer/ant/LICENSE.sax
+++ /dev/null
@@ -1,20 +0,0 @@
-This license came from: http://www.megginson.com/SAX/copying.html
- However please note future versions of SAX may be covered
- under http://saxproject.org/?selected=pd
-
-
-This page is now out of date -- see the new SAX site at
-http://www.saxproject.org/ for more up-to-date
-releases and other information. Please change your bookmarks.
-
-
-SAX2 is Free!
-
-I hereby abandon any property rights to SAX 2.0 (the Simple API for
-XML), and release all of the SAX 2.0 source code, compiled code, and
-documentation contained in this distribution into the Public Domain.
-SAX comes with NO WARRANTY or guarantee of fitness for any
-purpose.
-
-David Megginson, david@megginson.com
-2000-05-05
\ No newline at end of file
diff --git a/GameServer/ant/LICENSE.xerces b/GameServer/ant/LICENSE.xerces
deleted file mode 100644
index 70cb54a..0000000
--- a/GameServer/ant/LICENSE.xerces
+++ /dev/null
@@ -1,56 +0,0 @@
-/*
- * The Apache Software License, Version 1.1
- *
- *
- * Copyright (c) 1999-2002 The Apache Software Foundation. All rights
- * reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- *
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in
- * the documentation and/or other materials provided with the
- * distribution.
- *
- * 3. The end-user documentation included with the redistribution,
- * if any, must include the following acknowledgment:
- * "This product includes software developed by the
- * Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowledgment may appear in the software itself,
- * if and wherever such third-party acknowledgments normally appear.
- *
- * 4. The names "Xerces" and "Apache Software Foundation" must
- * not be used to endorse or promote products derived from this
- * software without prior written permission. For written
- * permission, please contact apache@apache.org.
- *
- * 5. Products derived from this software may not be called "Apache",
- * nor may "Apache" appear in their name, without prior written
- * permission of the Apache Software Foundation.
- *
- * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
- * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
- * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
- * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
- * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
- * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
- * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
- * SUCH DAMAGE.
- * ====================================================================
- *
- * This software consists of voluntary contributions made by many
- * individuals on behalf of the Apache Software Foundation and was
- * originally based on software copyright (c) 1999, International
- * Business Machines, Inc., http://www.ibm.com. For more
- * information on the Apache Software Foundation, please see
- * .
- */
diff --git a/GameServer/ant/NOTICE b/GameServer/ant/NOTICE
deleted file mode 100644
index 5ef72b9..0000000
--- a/GameServer/ant/NOTICE
+++ /dev/null
@@ -1,20 +0,0 @@
- =========================================================================
- == NOTICE file corresponding to the section 4 d of ==
- == the Apache License, Version 2.0, ==
- == in this case for the Apache Ant distribution. ==
- =========================================================================
-
- Apache Ant
- Copyright 1999-2006 The Apache Software Foundation
-
- This product includes software developed by
- The Apache Software Foundation (http://www.apache.org/).
-
- This product includes also software developed by :
- - the W3C consortium (http://www.w3c.org) ,
- - the SAX project (http://www.saxproject.org)
-
- The task is based on code Copyright (c) 2002, Landmark
- Graphics Corp that has been kindly donated to the Apache Software
- Foundation.
-
diff --git a/GameServer/ant/README b/GameServer/ant/README
deleted file mode 100644
index 263c111..0000000
--- a/GameServer/ant/README
+++ /dev/null
@@ -1,70 +0,0 @@
-
- A N T
-
-
- What is it?
- -----------
-
- Ant is a Java based build tool. In theory it is kind of like "make"
- without makes wrinkles and with the full portability of pure java code.
-
-
- Why?
- ----
-
- Why another build tool when there is already make, gnumake, nmake, jam,
- and others? Because all of those tools have limitations that its original
- author couldn't live with when developing software across multiple platforms.
-
- Make-like tools are inherently shell based. They evaluate a set of
- dependencies and then execute commands not unlike what you would issue on a
- shell. This means that you can easily extend these tools by using or writing
- any program for the OS that you are working on. However, this also means that
- you limit yourself to the OS, or at least the OS type such as Unix, that you
- are working on.
-
- Makefiles are inherently evil as well. Anybody who has worked on them for any
- time has run into the dreaded tab problem. "Is my command not executing
- because I have a space in front of my tab!!!" said the original author of Ant
- way too many times. Tools like Jam took care of this to a great degree, but
- still use yet another format to use and remember.
-
- Ant is different. Instead a model where it is extended with shell based
- commands, it is extended using Java classes. Instead of writing shell
- commands, the configuration files are XML based calling out a target tree
- where various tasks get executed. Each task is run by an object which
- implements a particular Task interface.
-
- Granted, this removes some of the expressive power that is inherent by being
- able to construct a shell command such as `find . -name foo -exec rm {}` but
- it gives you the ability to be cross platform. To work anywhere and
- everywhere. And hey, if you really need to execute a shell command, Ant has
- an exec rule that allows different commands to be executed based on the OS
- that it is executing on.
-
- The Latest Version
- ------------------
-
- Details of the latest version can be found on the Apache Ant
- Project web site .
-
-
- Documentation
- -------------
-
- Documentation is available in HTML format, in the docs/ directory.
- For information about building and installing Ant, see
- docs/manual/index.html
-
-
- Licensing
- ---------
-
- This software is licensed under the terms you may find in the file
- named "LICENSE" in this directory.
-
-
- Thanks for using Ant.
-
- The Apache Ant Project
-
diff --git a/GameServer/ant/WHATSNEW b/GameServer/ant/WHATSNEW
deleted file mode 100644
index 3f37d82..0000000
--- a/GameServer/ant/WHATSNEW
+++ /dev/null
@@ -1,3723 +0,0 @@
-Changes from Ant 1.7.0 TO current SVN version
-=============================================
-
-Changes that could break older environments:
--------------------------------------------
-
-Fixed bugs:
------------
-
-Other changes:
---------------
-
-Changes from Ant 1.6.5 to Ant 1.7.0
-===================================
-
-Changes that could break older environments:
--------------------------------------------
-
-* Initial support for JDK 6 (JSR 223) scripting.
- <*script*> tasks will now use javax.scripting if BSF is
- not available, or if explicitly requested by using
- a "manager" attribute.
-
-* The -noproxy option which was in the previous 1.7 alpha and beta
- releases has been removed. It is the default behavior and not needed.
-
-* Removed launcher classes from nodeps jar.
-
-* filter reader uses ISO-8859-1 encoding to read
- the java class file. Bugzilla report 33604.
-
-* Defer reference process. Bugzilla 36955, 34458, 37688.
- This may break build files in which a reference was set in a target which was
- never executed. Historically, Ant would set the reference early on, during parse
- time, so the datatype would be defined. Now it requires the reference to have
- been in a bit of the build file which was actually executed. If you get
- an error about an undefined reference, locate the reference and move it somewhere
- where it is used, or fix the depends attribute of the target in question to
- depend on the target which defines the reference/datatype.
-
-*
-
-
-
-
- Class
-
-
-
-
- Tests
-
-
-
-
-
-
-
-
-
-