diff --git a/README.md b/README.md new file mode 100644 index 0000000..2bda208 --- /dev/null +++ b/README.md @@ -0,0 +1,46 @@ +clanscripts +=========== + +A CMS built for Clans, Guilds and Gaming Communities - Bluethrust Clan Scripts: Open Source Clan CMS + +Welcome! Bluethrust Clan Scripts is an open source clan website manager that helps you easily create and run your clan, guild or gaming community website. + +Clan Scripts v4 is still in development so if you have an idea for a feature you would like to see, e-mail: cs4ideas@bluethrust.com or post a topic in the forum. + +For more information, visit the [website](http://www.Bluethrust.com "Bluethrust's Homepage"). + +Requirements +=========== +Webserver (Apacha, nginx etc) +PHP 5.3 or higher +Mysql database + +Install +=========== +1. upload all files to your server via preferred method/programof + +2. Create a new database user, with own database and ALL PRIVILEGES + +3. Point your browser to domain.com/install/install.php and fill out the correct information with your database information and username and password, website admin(superuser).. + +4. Delete the install directory for safety measures, + +5. You have successfully installed BT clan scripts v4!! + +Upgrade +=========== + +Demo +=========== +# [View Demo](http://www.bluethrust.com/cs4demo "bluethrust's Demopage") + +Copyrights +=========== + +License +=========== +[license](http://www.bluethrust.com/license.php "bluethrust's Licensepage") + +Note +=========== +This README isn't finish yet \ No newline at end of file diff --git a/_setup.php b/_setup.php index f01628c..740536f 100644 --- a/_setup.php +++ b/_setup.php @@ -15,7 +15,6 @@ // This setup page should not be changed. Edit _config.php to configure your website. -ini_set('display_errors', 0); if(get_magic_quotes_gpc() == 1) { foreach($_GET as $key=>$value) { $_GET[$key] = stripslashes($value); } @@ -75,11 +74,7 @@ if($websiteInfo['debugmode'] == 1) { ini_set('display_errors', 1); - ini_set('error_reporting', E_ALL); -} -else { ini_set('error_reporting', E_ALL & ~E_NOTICE & ~E_WARNING); - ini_set('display_errors', 1); } diff --git a/changelog BTCSv4-beta9.02.5.txt b/changelog.txt similarity index 100% rename from changelog BTCSv4-beta9.02.5.txt rename to changelog.txt diff --git a/forum/index.php b/forum/index.php index 8faac64..afd45ca 100644 --- a/forum/index.php +++ b/forum/index.php @@ -1,24 +1,23 @@ select($IP_ADDRESS, false)) { - $ipbanInfo = $ipbanObj->get_info(); +if ($ipbanObj->select($IP_ADDRESS, false)) { + $ipbanInfo = $ipbanObj->get_info(); - if(time() < $ipbanInfo['exptime'] OR $ipbanInfo['exptime'] == 0) { - die(""); - } - else { - $ipbanObj->delete(); - } + if (time() < $ipbanInfo['exptime'] or $ipbanInfo['exptime'] == 0) { + die(""); + } else { + $ipbanObj->delete(); + } } - // Start Page $PAGE_NAME = "Forum - "; $dispBreadCrumb = ""; -include($prevFolder."themes/".$THEME."/_header.php"); +include ("{$prevFolder}themes/{$THEME}/_header.php"); // Check Private Forum - -if($websiteInfo['privateforum'] == 1 && !constant("LOGGED_IN")) { - die(""); +if ($websiteInfo['privateforum'] == 1 && !constant("LOGGED_IN")) { + die(""); } $memberInfo = array(); +$LOGGED_IN = false; +if ($member->select($_SESSION['btUsername']) && $member->authorizeLogin($_SESSION['btPassword'])) { + $memberInfo = $member->get_info_filtered(); + $LOGGED_IN = true; +} +echo " + + "; -$LOGGED_IN = false; -if($member->select($_SESSION['btUsername']) && $member->authorizeLogin($_SESSION['btPassword'])) { - $memberInfo = $member->get_info_filtered(); - $LOGGED_IN = true; +$result = $mysqli->query("SELECT forumcategory_id FROM {$dbprefix}forum_category ORDER BY ordernum DESC"); +while ($row = $result->fetch_assoc()) { + $arrForumCats[] = $row['forumcategory_id']; -} + $categoryObj->select($row['forumcategory_id']); + $catInfo = $categoryObj->get_info_filtered(); + $arrBoards = $categoryObj->getAssociateIDs("AND subforum_id = '0' ORDER BY sortnum", true); + $dispBoards = ""; + foreach ($arrBoards as $boardID) { + $boardObj->select($boardID); -echo " - - - -
-"; - - -$result = $mysqli->query("SELECT forumcategory_id FROM ".$dbprefix."forum_category ORDER BY ordernum DESC"); -while($row = $result->fetch_assoc()) { - $arrForumCats[] = $row['forumcategory_id']; - - $categoryObj->select($row['forumcategory_id']); - $catInfo = $categoryObj->get_info_filtered(); - $arrBoards = $categoryObj->getAssociateIDs("AND subforum_id = '0' ORDER BY sortnum", true); - $dispBoards = ""; - foreach($arrBoards as $boardID) { - - $boardObj->select($boardID); - - if($boardObj->memberHasAccess($memberInfo)) { - $boardInfo = $boardObj->get_info_filtered(); - $arrForumTopics = $boardObj->getForumTopics(); - - $newTopicBG = ""; - $dispNewTopicIMG = ""; - - if($LOGGED_IN && $boardObj->hasNewTopics($memberInfo['member_id'])) { - $dispNewTopicIMG = " "; - $newTopicBG = " boardNewPostBG"; - } - - // Get Last Post Display Info - if(count($arrForumTopics) > 0) { - $boardObj->objPost->select($arrForumTopics[0]); - $firstPostInfo = $boardObj->objPost->get_info_filtered(); - - $boardObj->objTopic->select($firstPostInfo['forumtopic_id']); - $lastPostID = $boardObj->objTopic->get_info("lastpost_id"); - - $boardObj->objPost->select($lastPostID); - $lastPostInfo = $boardObj->objPost->get_info_filtered(); - - $postMemberObj->select($lastPostInfo['member_id']); - - $dispLastPost = "
".$firstPostInfo['title']."
by ".$postMemberObj->getMemberLink()."
".getPreciseTime($lastPostInfo['dateposted']); - } - else { - $dispLastPost = "
No Posts
"; - } - - $dispTopicCount = $boardObj->countTopics(); - $dispPostCount = $boardObj->countPosts(); - - $arrDispSubForums = array(); - $arrSubForums = $boardObj->getSubForums(); - - foreach($arrSubForums as $value) { - $subForumObj->select($value); - $subForumInfo = $subForumObj->get_info_filtered(); - - $arrDispSubForums[] = "".$subForumInfo['name'].""; - } - - - $dispSubForums = ""; - if(count($arrDispSubForums) > 0) { - $dispSubForums = "

Sub-Forums:
  ".implode("  |  ", $arrDispSubForums); - } - - - $dispBoards .= " - - - - - - - - "; - - } - - } - - - if($dispBoards != "") { - - echo " - + if ($boardObj->memberHasAccess($memberInfo)) { + $boardInfo = $boardObj->get_info_filtered(); + $arrForumTopics = $boardObj->getForumTopics(); + + $newTopicBG = ""; + $dispNewTopicIMG = ""; + + if ($LOGGED_IN && $boardObj->hasNewTopics($memberInfo['member_id'])) { + $dispNewTopicIMG = " "; + $newTopicBG = " boardNewPostBG"; + } + + // Get Last Post Display Info + if (count($arrForumTopics) > 0) { + $boardObj->objPost->select($arrForumTopics[0]); + $firstPostInfo = $boardObj->objPost->get_info_filtered(); + + $boardObj->objTopic->select($firstPostInfo['forumtopic_id']); + $lastPostID = $boardObj->objTopic->get_info("lastpost_id"); + + $boardObj->objPost->select($lastPostID); + $lastPostInfo = $boardObj->objPost->get_info_filtered(); + + $postMemberObj->select($lastPostInfo['member_id']); + + $dispLastPost = "
{$firstPostInfo['title']}
by " . + $postMemberObj->getMemberLink() . "
" . getPreciseTime($lastPostInfo['dateposted']); + } else { + $dispLastPost = "
No Posts
"; + } + + $dispTopicCount = $boardObj->countTopics(); + $dispPostCount = $boardObj->countPosts(); + + $arrDispSubForums = array(); + $arrSubForums = $boardObj->getSubForums(); + + foreach ($arrSubForums as $value) { + $subForumObj->select($value); + $subForumInfo = $subForumObj->get_info_filtered(); + + $arrDispSubForums[] = "{$subForumInfo['name']}"; + } + + + $dispSubForums = ""; + if (count($arrDispSubForums) > 0) { + $dispSubForums = "

Sub-Forums:
  " . implode("  |  ", + $arrDispSubForums); + } + + + $dispBoards .= " + + + + + "; + } + } + + if ($dispBoards != "") { + + echo " @@ -171,38 +153,21 @@ - - "; - echo $dispBoards; - - echo ""; - - } - - + "; + echo $dispBoards; + echo ""; + } } -if($result->num_rows == 0) { +if ($result->num_rows == 0) { - echo " - -
+ echo "

No boards have been made yet!

-
- - "; - +
"; } - - echo "
".$boardInfo['name']."".$dispNewTopicIMG."
".$boardInfo['description'].$dispSubForums."
".$dispLastPost."".$dispTopicCount."".$dispPostCount."
{$boardInfo['name']}{$dispNewTopicIMG}
{$boardInfo['description']}{$dispSubForums}
{$dispLastPost}{$dispTopicCount}{$dispPostCount}
- ".$catInfo['name']." + {$catInfo['name']}
Last Post: Topics: Posts:


"; - -?> - - - \ No newline at end of file diff --git a/installer/_config.php b/installer/_config.php index 61738a3..44253d7 100644 --- a/installer/_config.php +++ b/installer/_config.php @@ -2,7 +2,7 @@ /* * Bluethrust Clan Scripts v4 - * Copyright 2013 + * Copyright 2014 * * Author: Bluethrust Web Development * E-mail: support@bluethrust.com @@ -13,16 +13,16 @@ */ $dbhost = "localhost"; - $dbuser = "root"; - $dbpass = "root"; - $dbname = "cs4b1"; + $dbuser = ""; + $dbpass = ""; + $dbname = ""; - $dbprefix = "asdf_"; + $dbprefix = ""; - $MAIN_ROOT = "/cs4git/installer1/index.php?step=3"; + $MAIN_ROOT = ""; - $ADMIN_KEY = "key"; // KEY FOR EXTRA SECURITY WHEN ADDING CONSOLE OPTION + $ADMIN_KEY = ""; // KEY FOR EXTRA SECURITY WHEN ADDING CONSOLE OPTION define("ADMIN_KEY", $ADMIN_KEY); diff --git a/installer/_installrunning.txt b/installer/_installrunning.txt deleted file mode 100644 index 348ebd9..0000000 --- a/installer/_installrunning.txt +++ /dev/null @@ -1 +0,0 @@ -done \ No newline at end of file diff --git a/installer/cs4.sql b/installer/cs4.sql index 4e1879e..26f4836 100644 --- a/installer/cs4.sql +++ b/installer/cs4.sql @@ -1,41 +1,27 @@ +CREATE TABLE IF NOT EXISTS `app_captcha` ( + `appcaptcha_id` int(11) NOT NULL AUTO_INCREMENT, + `appcomponent_id` int(11) NOT NULL, + `ipaddress` varchar(255) NOT NULL, + `captchatext` varchar(8) NOT NULL, + PRIMARY KEY (`appcaptcha_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + CREATE TABLE IF NOT EXISTS `app_components` ( `appcomponent_id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `componenttype` varchar(25) NOT NULL, `required` int(11) NOT NULL, + `tooltip` text NOT NULL, `ordernum` int(11) NOT NULL, PRIMARY KEY (`appcomponent_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=202 ; - -INSERT INTO `app_components` (`appcomponent_id`, `name`, `componenttype`, `required`, `ordernum`) VALUES(1, 'Main Game', 'select', 0, 2); -INSERT INTO `app_components` (`appcomponent_id`, `name`, `componenttype`, `required`, `ordernum`) VALUES(10, 'Real Name', 'input', 1, 5); -INSERT INTO `app_components` (`appcomponent_id`, `name`, `componenttype`, `required`, `ordernum`) VALUES(8, 'About Yourself', 'largeinput', 0, 4); -INSERT INTO `app_components` (`appcomponent_id`, `name`, `componenttype`, `required`, `ordernum`) VALUES(9, 'Games Played', 'multiselect', 0, 1); -INSERT INTO `app_components` (`appcomponent_id`, `name`, `componenttype`, `required`, `ordernum`) VALUES(11, 'Country', 'select', 0, 3); +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `app_selectvalues` ( `appselectvalue_id` int(11) NOT NULL AUTO_INCREMENT, `appcomponent_id` int(11) NOT NULL, `componentvalue` varchar(255) NOT NULL, PRIMARY KEY (`appselectvalue_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=22 ; - -INSERT INTO `app_selectvalues` (`appselectvalue_id`, `appcomponent_id`, `componentvalue`) VALUES(1, 4, 'Haha'); -INSERT INTO `app_selectvalues` (`appselectvalue_id`, `appcomponent_id`, `componentvalue`) VALUES(2, 4, 'No'); -INSERT INTO `app_selectvalues` (`appselectvalue_id`, `appcomponent_id`, `componentvalue`) VALUES(3, 4, 'Yes'); -INSERT INTO `app_selectvalues` (`appselectvalue_id`, `appcomponent_id`, `componentvalue`) VALUES(4, 0, 'test'); -INSERT INTO `app_selectvalues` (`appselectvalue_id`, `appcomponent_id`, `componentvalue`) VALUES(11, 1, 'Minecraft'); -INSERT INTO `app_selectvalues` (`appselectvalue_id`, `appcomponent_id`, `componentvalue`) VALUES(10, 1, 'Call of Duty'); -INSERT INTO `app_selectvalues` (`appselectvalue_id`, `appcomponent_id`, `componentvalue`) VALUES(12, 1, 'Starcraft'); -INSERT INTO `app_selectvalues` (`appselectvalue_id`, `appcomponent_id`, `componentvalue`) VALUES(13, 1, 'WOW'); -INSERT INTO `app_selectvalues` (`appselectvalue_id`, `appcomponent_id`, `componentvalue`) VALUES(14, 9, 'Call Of Duty'); -INSERT INTO `app_selectvalues` (`appselectvalue_id`, `appcomponent_id`, `componentvalue`) VALUES(15, 9, 'Starcraft'); -INSERT INTO `app_selectvalues` (`appselectvalue_id`, `appcomponent_id`, `componentvalue`) VALUES(16, 9, 'WOW'); -INSERT INTO `app_selectvalues` (`appselectvalue_id`, `appcomponent_id`, `componentvalue`) VALUES(17, 11, 'Canada'); -INSERT INTO `app_selectvalues` (`appselectvalue_id`, `appcomponent_id`, `componentvalue`) VALUES(18, 11, 'China'); -INSERT INTO `app_selectvalues` (`appselectvalue_id`, `appcomponent_id`, `componentvalue`) VALUES(19, 11, 'England'); -INSERT INTO `app_selectvalues` (`appselectvalue_id`, `appcomponent_id`, `componentvalue`) VALUES(20, 11, 'Mexico'); -INSERT INTO `app_selectvalues` (`appselectvalue_id`, `appcomponent_id`, `componentvalue`) VALUES(21, 11, 'USA'); +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `app_values` ( `appvalue_id` int(11) NOT NULL AUTO_INCREMENT, @@ -43,7 +29,7 @@ CREATE TABLE IF NOT EXISTS `app_values` ( `memberapp_id` int(11) NOT NULL, `appvalue` text NOT NULL, PRIMARY KEY (`appvalue_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=36 ; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `comments` ( `comment_id` int(11) NOT NULL AUTO_INCREMENT, @@ -52,7 +38,7 @@ CREATE TABLE IF NOT EXISTS `comments` ( `dateposted` int(11) NOT NULL, `message` text NOT NULL, PRIMARY KEY (`comment_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ; CREATE TABLE IF NOT EXISTS `console` ( `console_id` int(11) NOT NULL AUTO_INCREMENT, @@ -65,45 +51,45 @@ CREATE TABLE IF NOT EXISTS `console` ( `defaultconsole` int(11) NOT NULL, `hide` int(1) NOT NULL, PRIMARY KEY (`console_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=99 ; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=177 ; INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(1, 1, 'Add New Rank', 'admin/addrank.php', 1, 1, 0, 1, 0); INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(2, 1, 'Manage Ranks', 'admin/manageranks.php', 2, 1, 0, 1, 0); -INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(5, 2, 'Add Member', 'membermanagement/addmember.php', 1, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(5, 2, 'Add Member', 'membermanagement/addmember.php', 2, 0, 0, 1, 0); INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(6, 2, 'Promote Member', 'membermanagement/promotemember.php', 6, 0, 0, 1, 0); INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(7, 2, 'Demote Member', 'membermanagement/demotemember.php', 7, 0, 0, 1, 0); INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(8, 2, 'Set Member''s Rank', 'membermanagement/setrank.php', 8, 0, 0, 1, 0); -INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(9, 1, 'Add New Medal', 'admin/addmedal.php', 6, 1, 0, 1, 0); -INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(10, 1, 'Manage Medals', 'admin/managemedals.php', 7, 1, 0, 1, 0); -INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(11, 3, 'Edit Profile', 'editprofile.php', 2, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(9, 10, 'Add New Medal', 'admin/addmedal.php', 1, 1, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(10, 10, 'Manage Medals', 'admin/managemedals.php', 2, 1, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(11, 3, 'Edit Profile', 'editprofile.php', 3, 0, 0, 1, 0); INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(12, 1, '-separator-', '', 28, 1, 1, 0, 0); -INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(20, 2, 'Disable a Member', 'membermanagement/disablemember.php', 2, 0, 0, 1, 0); -INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(14, 1, 'Add Games Played', 'admin/addgamesplayed.php', 9, 1, 0, 1, 0); -INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(15, 1, 'Manage Games Played', 'admin/managegamesplayed.php', 10, 1, 0, 1, 0); -INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(19, 1, '-separator-', '', 8, 1, 1, 0, 0); -INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(17, 1, 'Add Custom Pages', 'admin/addcustompages.php', 12, 1, 0, 1, 0); -INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(18, 1, 'Manage Custom Pages', 'admin/managecustompages.php', 13, 1, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(20, 2, 'Disable a Member', 'membermanagement/disablemember.php', 1, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(14, 1, 'Add Games Played', 'admin/addgamesplayed.php', 6, 1, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(15, 1, 'Manage Games Played', 'admin/managegamesplayed.php', 7, 1, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(19, 1, '-separator-', '', 5, 1, 1, 0, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(17, 1, 'Add Custom Page', 'admin/addcustompages.php', 9, 1, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(18, 1, 'Manage Custom Pages', 'admin/managecustompages.php', 10, 1, 0, 1, 0); INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(21, 2, 'Delete Member', 'membermanagement/deletemember.php', 4, 0, 0, 1, 0); INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(22, 1, 'Add New Rank Category', 'admin/addrankcategory.php', 3, 1, 0, 1, 0); INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(23, 1, 'Manage Rank Categories', 'admin/managerankcategories.php', 4, 1, 0, 1, 0); -INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(24, 1, '-separator-', '', 5, 1, 1, 1, 0); -INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(25, 1, 'Add Console Option', 'admin/addconsoleoption.php', 16, 1, 0, 1, 0); -INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(33, 1, 'Manage Console Categories', 'admin/manageconsolecategories.php', 19, 1, 0, 1, 0); -INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(32, 1, 'Add New Console Category', 'admin/addconsolecategory.php', 18, 1, 0, 1, 0); -INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(31, 1, 'Manage Console Options', 'admin/manageconsole.php', 17, 1, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(135, 10, '-separator-', '', 3, 0, 1, 0, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(25, 1, 'Add Console Option', 'admin/addconsoleoption.php', 15, 1, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(33, 1, 'Manage Console Categories', 'admin/manageconsolecategories.php', 18, 1, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(32, 1, 'Add New Console Category', 'admin/addconsolecategory.php', 17, 1, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(31, 1, 'Manage Console Options', 'admin/manageconsole.php', 16, 1, 0, 1, 0); INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(65, 1, 'Add Profile Option', 'admin/addprofileoption.php', 24, 1, 0, 1, 0); -INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(51, 1, '-separator-', '', 11, 1, 1, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(51, 1, '-separator-', '', 8, 1, 1, 1, 0); INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(52, 1, '-separator-', '', 14, 1, 1, 1, 0); -INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(54, 1, '-separator-', '', 20, 1, 1, 1, 0); -INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(55, 1, 'Add Download Category', 'admin/adddownloadcategory.php', 21, 1, 0, 1, 0); -INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(56, 1, 'Manage Download Categories', 'admin/managedownloadcategories.php', 22, 1, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(54, 14, '-separator-', '', 3, 1, 1, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(55, 14, 'Add Download Category', 'admin/adddownloadcategory.php', 1, 1, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(56, 14, 'Manage Download Categories', 'admin/managedownloadcategories.php', 2, 1, 0, 1, 0); INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(62, 1, 'Website Settings', 'admin/sitesettings.php', 30, 1, 0, 1, 0); INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(61, 1, 'Modify Current Theme', 'admin/edittheme.php', 29, 1, 0, 1, 0); INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(60, 1, '-separator-', '', 23, 1, 1, 1, 0); INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(63, 1, 'Add Profile Category', 'admin/addprofilecategory.php', 26, 1, 0, 1, 0); INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(64, 1, 'Manage Profile Categories', 'admin/manageprofilecategories.php', 27, 1, 0, 1, 0); INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(66, 1, 'Manage Profile Options', 'admin/manageprofileoptions.php', 25, 1, 0, 1, 0); -INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(83, 9, 'Manage News', 'news/managenews.php', 2, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(83, 9, 'Manage News', 'news/managenews.php', 4, 0, 0, 1, 0); INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(82, 9, 'Post News', 'news/postnews.php', 1, 0, 0, 1, 0); INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(70, 2, '-separator-', '', 5, 0, 1, 0, 0); INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(71, 7, 'Create a Squad', 'squads/create.php', 1, 0, 0, 1, 0); @@ -113,21 +99,70 @@ INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filenam INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(75, 8, 'Create a Tournament', 'tournaments/create.php', 1, 0, 0, 1, 0); INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(76, 8, 'Manage Tournaments', 'tournaments/manage.php', 2, 0, 0, 1, 0); INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(77, 8, 'Manage My Matches', 'tournaments/managematches.php', 3, 0, 0, 1, 0); -INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(78, 3, 'Private Messages', 'privatemessages/index.php', 3, 0, 0, 1, 0); -INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(84, 9, 'View Private News', 'news/privatenews.php', 3, 0, 0, 1, 0); -INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(80, 3, 'Edit My Game Stats', 'editmygamestats.php', 1, 0, 0, 1, 0); -INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(85, 9, 'Post Comment', 'news/postcomment.php', 0, 0, 0, 1, 1); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(78, 3, 'Private Messages', 'privatemessages/index.php', 4, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(84, 9, 'View Private News', 'news/privatenews.php', 5, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(80, 3, 'Edit My Game Stats', 'editmygamestats.php', 2, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(85, 9, 'Post Comment', 'news/postcomment.php', 2, 0, 0, 1, 1); INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(86, 2, 'Undisable Member', 'membermanagement/undisablemember.php', 3, 0, 0, 1, 0); -INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(87, 10, 'Award Medal', 'medals/awardmedal.php', 1, 0, 0, 1, 0); -INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(88, 10, 'Revoke Medal', 'medals/revokemedal.php', 2, 0, 0, 1, 0); -INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(89, 3, 'Change Password', 'changepassword.php', 4, 0, 0, 1, 0); -INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(90, 2, '-separator-', '', 9, 0, 1, 0, 0); -INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(91, 2, 'Reset Member Password', 'membermanagement/resetpassword.php', 13, 0, 0, 1, 0); -INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(92, 3, 'View Logs', 'logs.php', 5, 0, 0, 1, 0); -INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(93, 9, 'Post in Shoutbox', 'news/postshoutbox.php', 0, 0, 0, 1, 1); -INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(96, 2, 'Registration Options', 'membermanagement/registrationoptions.php', 10, 0, 0, 1, 0); -INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(97, 2, 'Member Application', 'membermanagement/memberapplication.php', 11, 0, 0, 1, 0); -INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(98, 2, 'View Member Applications', 'membermanagement/viewapplications.php', 12, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(87, 10, 'Award Medal', 'medals/awardmedal.php', 4, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(88, 10, 'Revoke Medal', 'medals/revokemedal.php', 5, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(89, 3, 'Change Password', 'changepassword.php', 5, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(90, 2, '-separator-', '', 10, 0, 1, 0, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(91, 2, 'Reset Member Password', 'membermanagement/resetpassword.php', 15, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(92, 3, 'View Logs', 'logs.php', 7, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(93, 9, 'Post in Shoutbox', 'news/postshoutbox.php', 3, 0, 0, 1, 1); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(96, 2, 'Registration Options', 'membermanagement/registrationoptions.php', 11, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(97, 2, 'Member Application', 'membermanagement/memberapplication.php', 12, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(98, 2, 'View Member Applications', 'membermanagement/viewapplications.php', 13, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(99, 11, 'Diplomacy: Add a Clan', 'diplomacy/addclan.php', 1, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(100, 11, 'Diplomacy: Manage Clans', 'diplomacy/manageclans.php', 2, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(101, 11, 'View Diplomacy Requests', 'diplomacy/viewrequests.php', 3, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(102, 11, 'Manage Diplomacy Statuses', 'diplomacy/diplomacystatuses.php', 6, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(103, 11, '-seperator-', '', 4, 0, 1, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(104, 11, 'Add Diplomacy Status', 'diplomacy/adddiplomacystatus.php', 5, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(105, 12, 'Add Event', 'events/addevent.php', 1, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(106, 12, 'Manage My Events', 'events/manage.php', 2, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(107, 12, 'View Event Invitations', 'events/viewinvites.php', 3, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(108, 1, 'Add Custom Form Page', 'admin/addcustomformpage.php', 11, 1, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(109, 1, 'Manage Custom Form Pages', 'admin/managecustomforms.php', 12, 1, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(110, 1, 'View Custom Form Submissions', 'admin/customformsubmissions.php', 13, 1, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(111, 9, 'Modify News Ticker', 'news/newsticker.php', 6, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(113, 8, 'Join a Tournament', 'tournaments/join.php', 4, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(114, 1, 'Member''s Only Pages', 'admin/membersonlypages.php', 31, 1, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(118, 13, 'Add Forum Category', 'forum/addcategory.php', 4, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(122, 13, 'Manage Boards', 'forum/manageboards.php', 8, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(119, 13, 'Manage Forum Categories', 'forum/managecategories.php', 5, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(120, 13, '-seperator-', '', 6, 0, 1, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(121, 13, 'Add Board', 'forum/addboard.php', 7, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(123, 13, 'Post Topic', 'forum/post.php', 2, 0, 0, 1, 1); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(124, 13, 'Manage Moderators', 'forum/managemoderators.php', 9, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(125, 13, 'Manage Forum Posts', 'forum/manageposts.php', 3, 0, 0, 1, 1); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(126, 3, 'Change Username', 'changeusername.php', 6, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(127, 2, 'Set Member''s Recruiter', 'membermanagement/setrecruiter.php', 16, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(128, 2, 'Set Member''s Recruit Date', 'membermanagement/setrecruitdate.php', 17, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(129, 2, '-seperator-', '', 14, 0, 1, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(134, 1, 'Clear Logs', 'admin/clearlogs.php', 32, 1, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(136, 1, '-seperator-', '', 33, 0, 1, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(137, 1, 'Add Menu Category', 'admin/addmenucategory.php', 34, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(138, 1, 'Add Menu Item', 'admin/addmenuitem.php', 36, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(139, 1, 'Manage Menu Categories', 'admin/managemenucategory.php', 35, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(140, 1, 'Manage Menu Items', 'admin/managemenuitem.php', 37, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(141, 9, 'Manage Home Page Images', 'news/manageimages.php', 9, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(142, 9, 'Add Home Page Image', 'news/addimage.php', 8, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(143, 9, '-seperator-', '', 7, 0, 1, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(144, 13, 'Post Forum Attachments', 'forum/postattachments.php', 1, 0, 0, 1, 1); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(145, 14, 'Add Download', 'downloads/adddownload.php', 4, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(146, 14, 'Manage Downloads', 'downloads/managedownloads.php', 4, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(147, 13, '-seperator-', '', 10, 0, 1, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(148, 13, 'Forum Settings', 'forum/forumsettings.php', 11, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(150, 1, '-seperator-', '', 38, 0, 1, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(165, 1, 'Plugin Manager', 'admin/pluginmanager.php', 39, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(171, 2, 'Set Promotion Power', 'membermanagement/setpromotionpower.php', 9, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(172, 2, '-seperator-', '', 18, 0, 1, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(173, 2, 'Set Member Inactive Status', 'membermanagement/iaoptions.php', 19, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(174, 2, 'View Inactive Requests', 'membermanagement/inactiverequests.php', 20, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(175, 3, 'Inactive Request', 'requestinactive.php', 8, 0, 0, 1, 0); +INSERT INTO `console` (`console_id`, `consolecategory_id`, `pagetitle`, `filename`, `sortnum`, `adminoption`, `sep`, `defaultconsole`, `hide`) VALUES(176, 3, 'Cancel IA', 'cancelinactive.php', 1, 0, 0, 1, 1); CREATE TABLE IF NOT EXISTS `consolecategory` ( `consolecategory_id` int(11) NOT NULL AUTO_INCREMENT, @@ -135,15 +170,20 @@ CREATE TABLE IF NOT EXISTS `consolecategory` ( `ordernum` int(11) NOT NULL, `adminoption` int(1) NOT NULL, PRIMARY KEY (`consolecategory_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=11 ; - -INSERT INTO `consolecategory` (`consolecategory_id`, `name`, `ordernum`, `adminoption`) VALUES(1, 'Administrator Options', 0, 1); -INSERT INTO `consolecategory` (`consolecategory_id`, `name`, `ordernum`, `adminoption`) VALUES(2, 'Member Management', 4, 0); -INSERT INTO `consolecategory` (`consolecategory_id`, `name`, `ordernum`, `adminoption`) VALUES(3, 'Account Options', 6, 0); -INSERT INTO `consolecategory` (`consolecategory_id`, `name`, `ordernum`, `adminoption`) VALUES(9, 'News', 5, 0); -INSERT INTO `consolecategory` (`consolecategory_id`, `name`, `ordernum`, `adminoption`) VALUES(7, 'Squads', 2, 0); -INSERT INTO `consolecategory` (`consolecategory_id`, `name`, `ordernum`, `adminoption`) VALUES(8, 'Tournaments', 1, 0); -INSERT INTO `consolecategory` (`consolecategory_id`, `name`, `ordernum`, `adminoption`) VALUES(10, 'Medals', 3, 0); +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=17 ; + +INSERT INTO `consolecategory` (`consolecategory_id`, `name`, `ordernum`, `adminoption`) VALUES(1, 'Administrator Options', 1, 1); +INSERT INTO `consolecategory` (`consolecategory_id`, `name`, `ordernum`, `adminoption`) VALUES(2, 'Member Management', 5, 0); +INSERT INTO `consolecategory` (`consolecategory_id`, `name`, `ordernum`, `adminoption`) VALUES(3, 'Account Options', 7, 0); +INSERT INTO `consolecategory` (`consolecategory_id`, `name`, `ordernum`, `adminoption`) VALUES(9, 'News', 6, 0); +INSERT INTO `consolecategory` (`consolecategory_id`, `name`, `ordernum`, `adminoption`) VALUES(7, 'Squads', 3, 0); +INSERT INTO `consolecategory` (`consolecategory_id`, `name`, `ordernum`, `adminoption`) VALUES(8, 'Tournaments', 2, 0); +INSERT INTO `consolecategory` (`consolecategory_id`, `name`, `ordernum`, `adminoption`) VALUES(10, 'Medals', 4, 0); +INSERT INTO `consolecategory` (`consolecategory_id`, `name`, `ordernum`, `adminoption`) VALUES(11, 'Diplomacy Options', 8, 0); +INSERT INTO `consolecategory` (`consolecategory_id`, `name`, `ordernum`, `adminoption`) VALUES(12, 'Events', 9, 0); +INSERT INTO `consolecategory` (`consolecategory_id`, `name`, `ordernum`, `adminoption`) VALUES(13, 'Forum Management', 10, 0); +INSERT INTO `consolecategory` (`consolecategory_id`, `name`, `ordernum`, `adminoption`) VALUES(14, 'Downloads', 11, 0); +INSERT INTO `consolecategory` (`consolecategory_id`, `name`, `ordernum`, `adminoption`) VALUES(16, 'Social Media Connect', 12, 0); CREATE TABLE IF NOT EXISTS `console_members` ( `privilege_id` int(11) NOT NULL AUTO_INCREMENT, @@ -153,22 +193,122 @@ CREATE TABLE IF NOT EXISTS `console_members` ( PRIMARY KEY (`privilege_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +CREATE TABLE IF NOT EXISTS `customform` ( + `customform_id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(255) NOT NULL, + `pageinfo` text NOT NULL, + `submitmessage` text NOT NULL, + `submitlink` text NOT NULL, + `specialform` varchar(255) NOT NULL, + PRIMARY KEY (`customform_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `customform_components` ( + `component_id` int(11) NOT NULL AUTO_INCREMENT, + `customform_id` int(11) NOT NULL, + `name` varchar(255) NOT NULL, + `componenttype` varchar(11) NOT NULL, + `required` int(11) NOT NULL, + `tooltip` text NOT NULL, + `sortnum` int(11) NOT NULL, + PRIMARY KEY (`component_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `customform_selectvalues` ( + `selectvalue_id` int(11) NOT NULL AUTO_INCREMENT, + `component_id` int(11) NOT NULL, + `componentvalue` text NOT NULL, + `sortnum` int(11) NOT NULL, + PRIMARY KEY (`selectvalue_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `customform_submission` ( + `submission_id` int(11) NOT NULL AUTO_INCREMENT, + `customform_id` int(11) NOT NULL, + `submitdate` int(11) NOT NULL, + `ipaddress` varchar(255) NOT NULL, + `seenstatus` int(11) NOT NULL, + PRIMARY KEY (`submission_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `customform_values` ( + `value_id` int(11) NOT NULL AUTO_INCREMENT, + `submission_id` int(11) NOT NULL, + `component_id` int(11) NOT NULL, + `formvalue` text NOT NULL, + PRIMARY KEY (`value_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + CREATE TABLE IF NOT EXISTS `custompages` ( `custompage_id` int(11) NOT NULL AUTO_INCREMENT, `pagename` varchar(255) NOT NULL, - `pageinfo` text NOT NULL, + `pageinfo` longtext NOT NULL, PRIMARY KEY (`custompage_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=14 ; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=16 ; INSERT INTO `custompages` (`custompage_id`, `pagename`, `pageinfo`) VALUES(11, 'History', '

This is the clan history.

\n

 

\n

This is actually just a custom page...

'); -INSERT INTO `custompages` (`custompage_id`, `pagename`, `pageinfo`) VALUES(12, 'Rules', '

This is the clan rules page.

\n

 

\n

This is actually just a custom page...

'); +INSERT INTO `custompages` (`custompage_id`, `pagename`, `pageinfo`) VALUES(12, 'Rules', '

This is the clan rules page.

\n

 

\n

This is actually just a custom page...

\n

 

\n

 

'); + +CREATE TABLE IF NOT EXISTS `diplomacy` ( + `diplomacy_id` int(11) NOT NULL AUTO_INCREMENT, + `member_id` int(11) NOT NULL, + `diplomacystatus_id` int(11) NOT NULL, + `dateadded` int(11) NOT NULL, + `clanname` varchar(255) NOT NULL, + `leaders` varchar(255) NOT NULL, + `website` varchar(255) NOT NULL, + `clansize` varchar(10) NOT NULL, + `clantag` varchar(15) NOT NULL, + `skill` varchar(100) NOT NULL, + `gamesplayed` varchar(255) NOT NULL, + `extrainfo` text NOT NULL, + PRIMARY KEY (`diplomacy_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `diplomacy_request` ( + `diplomacyrequest_id` int(11) NOT NULL AUTO_INCREMENT, + `ipaddress` varchar(255) NOT NULL, + `dateadded` int(11) NOT NULL, + `diplomacystatus_id` int(11) NOT NULL, + `email` varchar(255) NOT NULL, + `name` varchar(255) NOT NULL, + `clanname` varchar(255) NOT NULL, + `clantag` varchar(15) NOT NULL, + `clansize` varchar(10) NOT NULL, + `gamesplayed` varchar(255) NOT NULL, + `website` varchar(255) NOT NULL, + `leaders` varchar(255) NOT NULL, + `message` text NOT NULL, + `confirmemail` varchar(255) NOT NULL, + PRIMARY KEY (`diplomacyrequest_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `diplomacy_status` ( + `diplomacystatus_id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(255) NOT NULL, + `imageurl` text NOT NULL, + `imagewidth` int(11) NOT NULL, + `imageheight` int(11) NOT NULL, + `ordernum` int(11) NOT NULL, + PRIMARY KEY (`diplomacystatus_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ; + +INSERT INTO `diplomacy_status` (`diplomacystatus_id`, `name`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`) VALUES(1, 'Ally', 'images/diplomacy/status_50e3b3406ddf8.png', 0, 0, 3); +INSERT INTO `diplomacy_status` (`diplomacystatus_id`, `name`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`) VALUES(2, 'Enemy', 'images/diplomacy/status_50e3b36d60f5a.png', 20, 20, 1); +INSERT INTO `diplomacy_status` (`diplomacystatus_id`, `name`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`) VALUES(3, 'Neutral', 'images/diplomacy/status_50e3b37ebd1fc.png', 0, 0, 2); CREATE TABLE IF NOT EXISTS `downloadcategory` ( `downloadcategory_id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `ordernum` int(11) NOT NULL, + `accesstype` int(11) NOT NULL, + `specialkey` varchar(255) NOT NULL, PRIMARY KEY (`downloadcategory_id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; +) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=8 ; + +INSERT INTO `downloadcategory` (`downloadcategory_id`, `name`, `ordernum`, `accesstype`, `specialkey`) VALUES(6, 'Replays', 2, 0, ''); +INSERT INTO `downloadcategory` (`downloadcategory_id`, `name`, `ordernum`, `accesstype`, `specialkey`) VALUES(5, 'Forum Attachments', 1, 0, 'forumattachments'); +INSERT INTO `downloadcategory` (`downloadcategory_id`, `name`, `ordernum`, `accesstype`, `specialkey`) VALUES(7, 'Videos', 3, 0, ''); CREATE TABLE IF NOT EXISTS `downloads` ( `download_id` int(11) NOT NULL AUTO_INCREMENT, @@ -176,6 +316,11 @@ CREATE TABLE IF NOT EXISTS `downloads` ( `member_id` int(11) NOT NULL, `dateuploaded` int(11) NOT NULL, `name` varchar(255) NOT NULL, + `filename` varchar(255) NOT NULL, + `mimetype` varchar(255) NOT NULL, + `filesize` int(11) NOT NULL, + `splitfile1` varchar(255) NOT NULL, + `splitfile2` varchar(255) NOT NULL, `description` text NOT NULL, `downloadcount` int(11) NOT NULL, PRIMARY KEY (`download_id`) @@ -186,7 +331,104 @@ CREATE TABLE IF NOT EXISTS `download_extensions` ( `downloadcategory_id` int(11) NOT NULL, `extension` varchar(255) NOT NULL, PRIMARY KEY (`extension_id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; +) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=19 ; + +INSERT INTO `download_extensions` (`extension_id`, `downloadcategory_id`, `extension`) VALUES(18, 7, '.swf'); +INSERT INTO `download_extensions` (`extension_id`, `downloadcategory_id`, `extension`) VALUES(9, 5, ''); +INSERT INTO `download_extensions` (`extension_id`, `downloadcategory_id`, `extension`) VALUES(15, 7, '.mov'); +INSERT INTO `download_extensions` (`extension_id`, `downloadcategory_id`, `extension`) VALUES(16, 7, '.wmv'); +INSERT INTO `download_extensions` (`extension_id`, `downloadcategory_id`, `extension`) VALUES(17, 7, '.avi'); +INSERT INTO `download_extensions` (`extension_id`, `downloadcategory_id`, `extension`) VALUES(11, 6, '.rep'); +INSERT INTO `download_extensions` (`extension_id`, `downloadcategory_id`, `extension`) VALUES(10, 6, '.zip'); + +CREATE TABLE IF NOT EXISTS `eventchat` ( + `eventchat_id` int(11) NOT NULL AUTO_INCREMENT, + `event_id` int(11) NOT NULL, + `datestarted` int(11) NOT NULL, + `status` int(11) NOT NULL, + PRIMARY KEY (`eventchat_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `eventchat_messages` ( + `eventchatmessage_id` int(11) NOT NULL AUTO_INCREMENT, + `eventchat_id` int(11) NOT NULL, + `member_id` int(11) NOT NULL, + `dateposted` int(11) NOT NULL, + `message` text NOT NULL, + PRIMARY KEY (`eventchatmessage_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `eventchat_roomlist` ( + `eventchatlist_id` int(11) NOT NULL AUTO_INCREMENT, + `eventchat_id` int(11) NOT NULL, + `member_id` int(11) NOT NULL, + `inactive` int(11) NOT NULL, + `lastseen` int(11) NOT NULL, + PRIMARY KEY (`eventchatlist_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `eventmessages` ( + `eventmessage_id` int(11) NOT NULL AUTO_INCREMENT, + `event_id` int(11) NOT NULL, + `member_id` int(11) NOT NULL, + `dateposted` int(11) NOT NULL, + `message` text NOT NULL, + PRIMARY KEY (`eventmessage_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `eventmessage_comment` ( + `comment_id` int(11) NOT NULL AUTO_INCREMENT, + `eventmessage_id` int(11) NOT NULL, + `member_id` int(11) NOT NULL, + `dateposted` int(11) NOT NULL, + `comment` text NOT NULL, + PRIMARY KEY (`comment_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `eventpositions` ( + `position_id` int(11) NOT NULL AUTO_INCREMENT, + `event_id` int(11) NOT NULL, + `name` varchar(30) NOT NULL, + `sortnum` int(11) NOT NULL, + `modchat` int(11) NOT NULL, + `description` varchar(255) NOT NULL, + `invitemembers` int(11) NOT NULL, + `manageinvites` int(11) NOT NULL, + `postmessages` int(11) NOT NULL, + `managemessages` int(11) NOT NULL, + `attendenceconfirm` int(11) NOT NULL, + `editinfo` int(11) NOT NULL, + `eventpositions` int(11) NOT NULL, + PRIMARY KEY (`position_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ; + +CREATE TABLE IF NOT EXISTS `events` ( + `event_id` int(11) NOT NULL AUTO_INCREMENT, + `member_id` int(11) NOT NULL, + `title` varchar(255) NOT NULL, + `description` text NOT NULL, + `location` varchar(255) NOT NULL, + `startdate` int(11) NOT NULL, + `enddate` int(11) NOT NULL, + `publicprivate` int(11) NOT NULL, + `visibility` int(11) NOT NULL, + `messages` int(11) NOT NULL, + `invitepermission` int(11) NOT NULL, + PRIMARY KEY (`event_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `events_members` ( + `eventmember_id` int(11) NOT NULL AUTO_INCREMENT, + `event_id` int(11) NOT NULL, + `member_id` int(11) NOT NULL, + `invitedbymember_id` int(11) NOT NULL, + `position_id` int(11) NOT NULL, + `status` int(11) NOT NULL, + `attendconfirm_admin` int(11) NOT NULL, + `attendconfirm_member` int(11) NOT NULL, + `hide` int(11) NOT NULL, + PRIMARY KEY (`eventmember_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=9 ; CREATE TABLE IF NOT EXISTS `failban` ( `failban_id` int(11) NOT NULL AUTO_INCREMENT, @@ -195,6 +437,104 @@ CREATE TABLE IF NOT EXISTS `failban` ( PRIMARY KEY (`failban_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +CREATE TABLE IF NOT EXISTS `forgotpass` ( + `rqid` int(11) NOT NULL AUTO_INCREMENT, + `username` varchar(255) NOT NULL, + `email` varchar(255) NOT NULL, + `changekey` varchar(255) NOT NULL, + `timeofrq` int(11) NOT NULL, + PRIMARY KEY (`rqid`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `forum_attachments` ( + `forumattachment_id` int(11) NOT NULL AUTO_INCREMENT, + `forumpost_id` int(11) NOT NULL, + `download_id` int(11) NOT NULL, + PRIMARY KEY (`forumattachment_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `forum_board` ( + `forumboard_id` int(11) NOT NULL AUTO_INCREMENT, + `forumcategory_id` int(11) NOT NULL, + `subforum_id` int(11) NOT NULL, + `lastpost_id` int(11) NOT NULL, + `name` varchar(255) NOT NULL, + `description` text NOT NULL, + `accesstype` int(11) NOT NULL, + `sortnum` int(11) NOT NULL, + PRIMARY KEY (`forumboard_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `forum_category` ( + `forumcategory_id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(255) NOT NULL, + `ordernum` int(11) NOT NULL, + PRIMARY KEY (`forumcategory_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `forum_memberaccess` ( + `forummemberaccess_id` int(11) NOT NULL AUTO_INCREMENT, + `board_id` int(11) NOT NULL, + `member_id` int(11) NOT NULL, + `accessrule` int(11) NOT NULL, + PRIMARY KEY (`forummemberaccess_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `forum_moderator` ( + `forummoderator_id` int(11) NOT NULL AUTO_INCREMENT, + `forumboard_id` int(11) NOT NULL, + `member_id` int(11) NOT NULL, + `dateadded` int(11) NOT NULL, + PRIMARY KEY (`forummoderator_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `forum_post` ( + `forumpost_id` int(11) NOT NULL AUTO_INCREMENT, + `forumtopic_id` int(11) NOT NULL, + `member_id` int(11) NOT NULL, + `dateposted` int(11) NOT NULL, + `title` varchar(255) NOT NULL, + `message` text NOT NULL, + `lastedit_date` int(11) NOT NULL, + `lastedit_member_id` int(11) NOT NULL, + PRIMARY KEY (`forumpost_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `forum_rankaccess` ( + `forumrankaccess_id` int(11) NOT NULL AUTO_INCREMENT, + `board_id` int(11) NOT NULL, + `rank_id` int(11) NOT NULL, + `accesstype` int(11) NOT NULL, + PRIMARY KEY (`forumrankaccess_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `forum_topic` ( + `forumtopic_id` int(11) NOT NULL AUTO_INCREMENT, + `forumboard_id` int(11) NOT NULL, + `forumpost_id` int(11) NOT NULL, + `lastpost_id` int(11) NOT NULL, + `views` int(11) NOT NULL, + `replies` int(11) NOT NULL, + `lockstatus` int(11) NOT NULL, + `stickystatus` int(11) NOT NULL, + PRIMARY KEY (`forumtopic_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `forum_topicseen` ( + `forumtopicseen_id` int(11) NOT NULL AUTO_INCREMENT, + `forumtopic_id` int(11) NOT NULL, + `member_id` int(11) NOT NULL, + PRIMARY KEY (`forumtopicseen_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `freezemedals_members` ( + `freezemedal_id` int(11) NOT NULL AUTO_INCREMENT, + `medal_id` int(11) NOT NULL, + `member_id` int(11) NOT NULL, + `freezetime` int(11) NOT NULL, + PRIMARY KEY (`freezemedal_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ; + CREATE TABLE IF NOT EXISTS `gamesplayed` ( `gamesplayed_id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, @@ -203,22 +543,21 @@ CREATE TABLE IF NOT EXISTS `gamesplayed` ( `imageheight` int(11) NOT NULL, `ordernum` int(11) NOT NULL, PRIMARY KEY (`gamesplayed_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=10 ; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=14 ; -INSERT INTO `gamesplayed` (`gamesplayed_id`, `name`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`) VALUES(8, 'Call of Duty', '/cs4git/images/gamesplayed/game_508dc503812e7.png', 60, 15, 2); -INSERT INTO `gamesplayed` (`gamesplayed_id`, `name`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`) VALUES(2, 'Starcraft 2', '/cs4/images/gamesplayed/game_4f9dc59c97b06.png', 48, 48, 5); -INSERT INTO `gamesplayed` (`gamesplayed_id`, `name`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`) VALUES(5, 'Starcraft', '/cs4/images/gamesplayed/game_4fc70ad0a7ab8.gif', 28, 14, 3); -INSERT INTO `gamesplayed` (`gamesplayed_id`, `name`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`) VALUES(7, 'Minecraft', '/cs4git/images/gamesplayed/game_501f58d5683e4.png', 32, 32, 1); -INSERT INTO `gamesplayed` (`gamesplayed_id`, `name`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`) VALUES(9, 'World of Warcraft', '/cs4git/images/gamesplayed/game_508dc7963ba36.png', 0, 0, 4); +INSERT INTO `gamesplayed` (`gamesplayed_id`, `name`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`) VALUES(8, 'Call of Duty', 'images/gamesplayed/game_508dc503812e7.png', 60, 15, 2); +INSERT INTO `gamesplayed` (`gamesplayed_id`, `name`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`) VALUES(2, 'Starcraft 2', 'images/gamesplayed/game_4f9dc59c97b06.png', 48, 48, 5); +INSERT INTO `gamesplayed` (`gamesplayed_id`, `name`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`) VALUES(5, 'Starcraft', 'images/gamesplayed/game_4fc70ad0a7ab8.gif', 28, 14, 3); +INSERT INTO `gamesplayed` (`gamesplayed_id`, `name`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`) VALUES(7, 'Minecraft', 'images/gamesplayed/game_501f58d5683e4.png', 32, 32, 1); +INSERT INTO `gamesplayed` (`gamesplayed_id`, `name`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`) VALUES(9, 'World of Warcraft', 'images/gamesplayed/game_508dc7963ba36.png', 0, 0, 4); +INSERT INTO `gamesplayed` (`gamesplayed_id`, `name`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`) VALUES(12, 'Black Ops 2', 'images/gamesplayed/game_522d32661c6b3.png', 40, 40, 6); CREATE TABLE IF NOT EXISTS `gamesplayed_members` ( `gamemember_id` int(11) NOT NULL AUTO_INCREMENT, `gamesplayed_id` int(11) NOT NULL, `member_id` int(11) NOT NULL, PRIMARY KEY (`gamemember_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ; - -INSERT INTO `gamesplayed_members` (`gamemember_id`, `gamesplayed_id`, `member_id`) VALUES(2, 2, 13); +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `gamestats` ( `gamestats_id` int(11) NOT NULL AUTO_INCREMENT, @@ -233,7 +572,7 @@ CREATE TABLE IF NOT EXISTS `gamestats` ( `hidestat` int(11) NOT NULL, `textinput` int(11) NOT NULL, PRIMARY KEY (`gamestats_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=9 ; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=15 ; INSERT INTO `gamestats` (`gamestats_id`, `gamesplayed_id`, `name`, `stattype`, `calcop`, `firststat_id`, `secondstat_id`, `decimalspots`, `ordernum`, `hidestat`, `textinput`) VALUES(1, 8, 'K/D Ratio', 'calculate', 'div', 2, 3, 2, 0, 0, 0); INSERT INTO `gamestats` (`gamestats_id`, `gamesplayed_id`, `name`, `stattype`, `calcop`, `firststat_id`, `secondstat_id`, `decimalspots`, `ordernum`, `hidestat`, `textinput`) VALUES(2, 8, 'Kills', 'input', '', 0, 0, 0, 1, 0, 0); @@ -243,6 +582,9 @@ INSERT INTO `gamestats` (`gamestats_id`, `gamesplayed_id`, `name`, `stattype`, ` INSERT INTO `gamestats` (`gamestats_id`, `gamesplayed_id`, `name`, `stattype`, `calcop`, `firststat_id`, `secondstat_id`, `decimalspots`, `ordernum`, `hidestat`, `textinput`) VALUES(6, 2, 'Wins', 'input', '', 0, 0, 0, 0, 0, 0); INSERT INTO `gamestats` (`gamestats_id`, `gamesplayed_id`, `name`, `stattype`, `calcop`, `firststat_id`, `secondstat_id`, `decimalspots`, `ordernum`, `hidestat`, `textinput`) VALUES(7, 2, 'Losses', 'input', '', 0, 0, 0, 1, 0, 0); INSERT INTO `gamestats` (`gamestats_id`, `gamesplayed_id`, `name`, `stattype`, `calcop`, `firststat_id`, `secondstat_id`, `decimalspots`, `ordernum`, `hidestat`, `textinput`) VALUES(8, 9, 'Level', 'input', '', 0, 0, 0, 0, 0, 0); +INSERT INTO `gamestats` (`gamestats_id`, `gamesplayed_id`, `name`, `stattype`, `calcop`, `firststat_id`, `secondstat_id`, `decimalspots`, `ordernum`, `hidestat`, `textinput`) VALUES(12, 12, 'K/D Ratio', 'input', '', 0, 0, 0, 0, 0, 0); +INSERT INTO `gamestats` (`gamestats_id`, `gamesplayed_id`, `name`, `stattype`, `calcop`, `firststat_id`, `secondstat_id`, `decimalspots`, `ordernum`, `hidestat`, `textinput`) VALUES(13, 12, 'Kills', 'input', '', 0, 0, 0, 1, 0, 0); +INSERT INTO `gamestats` (`gamestats_id`, `gamesplayed_id`, `name`, `stattype`, `calcop`, `firststat_id`, `secondstat_id`, `decimalspots`, `ordernum`, `hidestat`, `textinput`) VALUES(14, 12, 'Deaths', 'input', '', 0, 0, 0, 2, 0, 0); CREATE TABLE IF NOT EXISTS `gamestats_members` ( `gamestatmember_id` int(11) NOT NULL AUTO_INCREMENT, @@ -252,221 +594,57 @@ CREATE TABLE IF NOT EXISTS `gamestats_members` ( `stattext` varchar(255) NOT NULL, `dateupdated` int(11) NOT NULL, PRIMARY KEY (`gamestatmember_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ; CREATE TABLE IF NOT EXISTS `hitcounter` ( `hit_id` int(11) NOT NULL AUTO_INCREMENT, `ipaddress` varchar(25) NOT NULL, `dateposted` int(11) NOT NULL, `pagename` varchar(255) NOT NULL, + `totalhits` int(11) NOT NULL, PRIMARY KEY (`hit_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=199 ; - -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(1, '::1', 1356151337, 'My Account - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(2, '::1', 1356152351, 'Member Application - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(3, '::1', 1356153707, 'My Account - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(4, '::1', 1356153716, 'Website Settings - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(5, '::1', 1356154027, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(6, '::1', 1356208177, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(7, '::1', 1356208185, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(8, '::1', 1356208185, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(9, '::1', 1356314586, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(10, '::1', 1356315202, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(11, '::1', 1356315202, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(12, '::1', 1356315237, 'My Account - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(13, '::1', 1356315241, 'Manage Medals - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(14, '::1', 1356315242, 'Manage Medals - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(15, '::1', 1356315572, 'Manage Medals - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(16, '::1', 1356315573, 'Add New Medal - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(17, '::1', 1356315581, 'My Account - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(18, '::1', 1356315694, 'Manage Medals - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(19, '::1', 1356315696, 'Manage Medals - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(20, '::1', 1356315705, 'Manage Medals - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(21, '::1', 1356316410, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(22, '::1', 1356316410, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(23, '::1', 1356316416, 'My Account - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(24, '::1', 1356316427, 'Undisable Member - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(25, '::1', 1356316431, 'My Account - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(26, '::1', 1356316436, 'Add Member - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(27, '::1', 1356316446, 'Add Member - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(28, '::1', 1356316449, 'Add Member - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(29, '::1', 1356316465, 'Add Member - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(30, '::1', 1356316467, 'Add Member - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(31, '::1', 1356316486, 'Add Member - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(32, '::1', 1356316488, 'Add Member - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(33, '::1', 1356316490, 'My Account - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(34, '::1', 1356316495, 'Add New Medal - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(35, '::1', 1356316906, 'Medals - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(36, '::1', 1356317006, 'Add New Medal - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(37, '::1', 1356317009, 'My Account - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(38, '::1', 1356317015, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(39, '::1', 1356317016, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(40, '::1', 1356317023, 'My Account - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(41, '::1', 1356317026, 'Add Member - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(42, '::1', 1356317035, 'Add Member - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(43, '::1', 1356317037, 'Add Member - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(44, '::1', 1356317051, 'Add Member - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(45, '::1', 1356317053, 'Add Member - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(46, '::1', 1356317057, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(47, '::1', 1356317057, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(48, '::1', 1356317444, 'Medals - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(49, '::1', 1356343787, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(50, '::1', 1356343788, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(51, '::1', 1356343797, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(52, '::1', 1356343797, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(53, '::1', 1356343819, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(54, '::1', 1356343819, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(55, '::1', 1356344054, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(56, '::1', 1356344055, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(57, '::1', 1356344149, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(58, '::1', 1356344149, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(59, '::1', 1356344735, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(60, '::1', 1356344735, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(61, '::1', 1356344736, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(62, '::1', 1356344754, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(63, '::1', 1356344754, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(64, '::1', 1356344783, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(65, '::1', 1356344783, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(66, '::1', 1356344797, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(67, '::1', 1356344797, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(68, '::1', 1356344820, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(69, '::1', 1356344820, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(70, '::1', 1356344841, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(71, '::1', 1356344842, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(72, '::1', 1356344874, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(73, '::1', 1356344874, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(74, '::1', 1356344875, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(75, '::1', 1356344900, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(76, '::1', 1356344900, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(77, '::1', 1356344901, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(78, '::1', 1356344955, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(79, '::1', 1356344956, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(80, '::1', 1356344989, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(81, '::1', 1356344989, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(82, '::1', 1356345009, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(83, '::1', 1356345009, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(84, '::1', 1356345010, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(85, '::1', 1356345032, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(86, '::1', 1356345032, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(87, '::1', 1356345082, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(88, '::1', 1356345082, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(89, '::1', 1356345130, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(90, '::1', 1356345130, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(91, '::1', 1356345154, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(92, '::1', 1356345155, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(93, '::1', 1356345168, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(94, '::1', 1356345168, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(95, '::1', 1356345169, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(96, '::1', 1356345192, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(97, '::1', 1356345192, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(98, '::1', 1356345227, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(99, '::1', 1356345227, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(100, '::1', 1356345228, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(101, '::1', 1356345252, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(102, '::1', 1356345252, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(103, '::1', 1356345270, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(104, '::1', 1356345271, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(105, '::1', 1356345307, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(106, '::1', 1356345307, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(107, '::1', 1356345323, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(108, '::1', 1356345323, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(109, '::1', 1356345471, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(110, '::1', 1356345471, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(111, '::1', 1356345484, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(112, '::1', 1356345485, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(113, '::1', 1356345511, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(114, '::1', 1356345512, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(115, '::1', 1356345515, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(116, '::1', 1356345515, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(117, '::1', 1356345527, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(118, '::1', 1356345528, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(119, '::1', 1356345528, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(120, '::1', 1356345542, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(121, '::1', 1356345543, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(122, '::1', 1356345573, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(123, '::1', 1356345573, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(124, '::1', 1356345574, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(125, '::1', 1356345736, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(126, '::1', 1356345736, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(127, '::1', 1356346505, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(128, '::1', 1356346505, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(129, '::1', 1356346506, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(130, '::1', 1356346564, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(131, '::1', 1356346565, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(132, '::1', 1356346574, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(133, '::1', 1356346575, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(134, '::1', 1356346604, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(135, '::1', 1356346604, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(136, '::1', 1356346681, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(137, '::1', 1356346682, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(138, '::1', 1356346683, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(139, '::1', 1356346693, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(140, '::1', 1356346693, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(141, '::1', 1356346709, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(142, '::1', 1356346709, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(143, '::1', 1356346725, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(144, '::1', 1356346726, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(145, '::1', 1356346744, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(146, '::1', 1356346744, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(147, '::1', 1356346809, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(148, '::1', 1356346809, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(149, '::1', 1356346810, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(150, '::1', 1356346847, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(151, '::1', 1356346848, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(152, '::1', 1356373919, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(153, '::1', 1356373922, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(154, '::1', 1356373978, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(155, '::1', 1356374223, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(156, '::1', 1356374229, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(157, '::1', 1356374234, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(158, '::1', 1356374284, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(159, '::1', 1356374556, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(160, '::1', 1356374711, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(161, '::1', 1356375180, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(162, '::1', 1356375188, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(163, '::1', 1356375188, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(164, '::1', 1356375269, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(165, '::1', 1356375307, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(166, '::1', 1356375317, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(167, '::1', 1356375317, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(168, '::1', 1356375376, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(169, '::1', 1356375415, 'My Account - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(170, '::1', 1356375420, 'Website Settings - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(171, '::1', 1356375430, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(172, '::1', 1356375454, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(173, '::1', 1356375506, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(174, '::1', 1356375739, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(175, '::1', 1356376144, 'My Account - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(176, '::1', 1356376148, 'Website Settings - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(177, '::1', 1356376154, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(178, '::1', 1356376200, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(179, '::1', 1356376218, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(180, '::1', 1356376303, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(181, '::1', 1356376313, 'My Account - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(182, '::1', 1356376318, 'Website Settings - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(183, '::1', 1356376425, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(184, '::1', 1356376425, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(185, '::1', 1356376476, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(186, '::1', 1356376476, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(187, '::1', 1356376536, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(188, '::1', 1356376536, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(189, '::1', 1356376553, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(190, '::1', 1356376553, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(191, '::1', 1356376556, 'Admin''s Profile - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(192, '::1', 1356376556, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(193, '::1', 1356643342, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(194, '::1', 1356643351, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(195, '::1', 1356643352, ''); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(196, '::1', 1356643358, 'My Account - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(197, '::1', 1356643361, 'Website Settings - '); -INSERT INTO `hitcounter` (`hit_id`, `ipaddress`, `dateposted`, `pagename`) VALUES(198, '::1', 1356643368, ''); +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `iarequest` ( + `iarequest_id` int(11) NOT NULL AUTO_INCREMENT, + `member_id` int(11) NOT NULL, + `requestdate` int(11) NOT NULL, + `reason` text NOT NULL, + `requeststatus` int(11) NOT NULL, + `reviewer_id` int(11) NOT NULL, + `reviewdate` int(11) NOT NULL, + PRIMARY KEY (`iarequest_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `iarequest_messages` ( + `iamessage_id` int(11) NOT NULL AUTO_INCREMENT, + `iarequest_id` int(11) NOT NULL, + `member_id` int(11) NOT NULL, + `messagedate` int(11) NOT NULL, + `message` text NOT NULL, + PRIMARY KEY (`iamessage_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `imageslider` ( + `imageslider_id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(255) NOT NULL, + `messagetitle` varchar(255) NOT NULL, + `message` varchar(255) NOT NULL, + `imageurl` text NOT NULL, + `fillstretch` varchar(7) NOT NULL, + `ordernum` int(11) NOT NULL, + `link` text NOT NULL, + `linktarget` varchar(10) NOT NULL, + `membersonly` int(11) NOT NULL, + PRIMARY KEY (`imageslider_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `ipban` ( `ipban_id` int(11) NOT NULL AUTO_INCREMENT, `ipaddress` varchar(11) NOT NULL, `exptime` int(11) NOT NULL, PRIMARY KEY (`ipban_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=8 ; CREATE TABLE IF NOT EXISTS `logs` ( `log_id` int(11) NOT NULL AUTO_INCREMENT, @@ -475,9 +653,7 @@ CREATE TABLE IF NOT EXISTS `logs` ( `ipaddress` varchar(255) NOT NULL, `message` text NOT NULL, PRIMARY KEY (`log_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ; - -INSERT INTO `logs` (`log_id`, `member_id`, `logdate`, `ipaddress`, `message`) VALUES(1, 13, 1356317057, '::1', 'Auto awarded medal for recruiting 5 members.'); +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `medals` ( `medal_id` int(11) NOT NULL AUTO_INCREMENT, @@ -490,7 +666,7 @@ CREATE TABLE IF NOT EXISTS `medals` ( `autorecruits` int(11) NOT NULL, `ordernum` int(11) NOT NULL, PRIMARY KEY (`medal_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=12 ; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=13 ; INSERT INTO `medals` (`medal_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `autodays`, `autorecruits`, `ordernum`) VALUES(1, 'Tournament Champ', 'Awarded for winning a clan tournament.', 'images/medals/medal_50d53680435d5.gif', 105, 30, 0, 0, 1); INSERT INTO `medals` (`medal_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `autodays`, `autorecruits`, `ordernum`) VALUES(2, 'Active Member Medal', 'Awarded for being an active clan member.', 'images/medals/medal_50d53660e7533.gif', 105, 30, 0, 0, 3); @@ -509,15 +685,9 @@ CREATE TABLE IF NOT EXISTS `medals_members` ( `medal_id` int(11) NOT NULL, `member_id` int(11) NOT NULL, `dateawarded` int(11) NOT NULL, + `reason` text NOT NULL, PRIMARY KEY (`medalmember_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ; - -INSERT INTO `medals_members` (`medalmember_id`, `medal_id`, `member_id`, `dateawarded`) VALUES(1, 5, 13, 1354511654); -INSERT INTO `medals_members` (`medalmember_id`, `medal_id`, `member_id`, `dateawarded`) VALUES(2, 10, 13, 1354511654); -INSERT INTO `medals_members` (`medalmember_id`, `medal_id`, `member_id`, `dateawarded`) VALUES(3, 6, 13, 1354511654); -INSERT INTO `medals_members` (`medalmember_id`, `medal_id`, `member_id`, `dateawarded`) VALUES(4, 7, 13, 1354511654); -INSERT INTO `medals_members` (`medalmember_id`, `medal_id`, `member_id`, `dateawarded`) VALUES(5, 8, 13, 1354511654); -INSERT INTO `medals_members` (`medalmember_id`, `medal_id`, `member_id`, `dateawarded`) VALUES(6, 11, 13, 1356317057); +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `memberapps` ( `memberapp_id` int(11) NOT NULL AUTO_INCREMENT, @@ -530,7 +700,7 @@ CREATE TABLE IF NOT EXISTS `memberapps` ( `memberadded` int(11) NOT NULL, `seenstatus` int(11) NOT NULL, PRIMARY KEY (`memberapp_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=10 ; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `members` ( `member_id` int(11) NOT NULL AUTO_INCREMENT, @@ -545,6 +715,7 @@ CREATE TABLE IF NOT EXISTS `members` ( `twitter` varchar(20) NOT NULL, `youtube` varchar(40) NOT NULL, `googleplus` text NOT NULL, + `twitch` varchar(40) NOT NULL, `maingame_id` int(11) NOT NULL, `birthday` int(11) NOT NULL, `datejoined` int(11) NOT NULL, @@ -561,9 +732,167 @@ CREATE TABLE IF NOT EXISTS `members` ( `defaultconsole` int(11) NOT NULL, `disabled` int(11) NOT NULL, `disableddate` int(11) NOT NULL, + `notifications` int(11) NOT NULL, + `topicsperpage` int(11) NOT NULL, + `postsperpage` int(11) NOT NULL, + `freezerank` int(11) NOT NULL, + `forumsignature` text NOT NULL, + `promotepower` int(11) NOT NULL, + `onia` int(11) NOT NULL, + `inactivedate` int(11) NOT NULL, PRIMARY KEY (`member_id`), UNIQUE KEY `username` (`username`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `membersonlypage` ( + `page_id` int(11) NOT NULL AUTO_INCREMENT, + `pagename` varchar(255) NOT NULL, + `pageurl` text NOT NULL, + `dateadded` int(11) NOT NULL, + PRIMARY KEY (`page_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=14 ; + +CREATE TABLE IF NOT EXISTS `menuitem_customblock` ( + `menucustomblock_id` int(11) NOT NULL AUTO_INCREMENT, + `menuitem_id` int(11) NOT NULL, + `blocktype` varchar(10) NOT NULL, + `code` longtext NOT NULL, + PRIMARY KEY (`menucustomblock_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=9 ; + +INSERT INTO `menuitem_customblock` (`menucustomblock_id`, `menuitem_id`, `blocktype`, `code`) VALUES(1, 50, 'code', ''); +INSERT INTO `menuitem_customblock` (`menucustomblock_id`, `menuitem_id`, `blocktype`, `code`) VALUES(2, 51, 'code', ''); +INSERT INTO `menuitem_customblock` (`menucustomblock_id`, `menuitem_id`, `blocktype`, `code`) VALUES(3, 52, 'code', ''); +INSERT INTO `menuitem_customblock` (`menucustomblock_id`, `menuitem_id`, `blocktype`, `code`) VALUES(4, 53, 'code', ''); +INSERT INTO `menuitem_customblock` (`menucustomblock_id`, `menuitem_id`, `blocktype`, `code`) VALUES(5, 54, 'code', ''); +INSERT INTO `menuitem_customblock` (`menucustomblock_id`, `menuitem_id`, `blocktype`, `code`) VALUES(6, 55, 'code', ''); +INSERT INTO `menuitem_customblock` (`menucustomblock_id`, `menuitem_id`, `blocktype`, `code`) VALUES(7, 58, 'code', ''); +INSERT INTO `menuitem_customblock` (`menucustomblock_id`, `menuitem_id`, `blocktype`, `code`) VALUES(8, 59, 'code', ''); + +CREATE TABLE IF NOT EXISTS `menuitem_custompage` ( + `menucustompage_id` int(11) NOT NULL AUTO_INCREMENT, + `menuitem_id` int(11) NOT NULL, + `custompage_id` int(11) NOT NULL, + `prefix` varchar(20) NOT NULL, + `linktarget` varchar(255) NOT NULL, + `textalign` varchar(25) NOT NULL, + PRIMARY KEY (`menucustompage_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ; + +INSERT INTO `menuitem_custompage` (`menucustompage_id`, `menuitem_id`, `custompage_id`, `prefix`, `linktarget`, `textalign`) VALUES(3, 19, 12, '· ', '', 'left'); +INSERT INTO `menuitem_custompage` (`menucustompage_id`, `menuitem_id`, `custompage_id`, `prefix`, `linktarget`, `textalign`) VALUES(2, 18, 11, '· ', '', 'left'); + +CREATE TABLE IF NOT EXISTS `menuitem_image` ( + `menuimage_id` int(11) NOT NULL AUTO_INCREMENT, + `menuitem_id` int(11) NOT NULL, + `imageurl` text NOT NULL, + `width` int(11) NOT NULL, + `height` int(11) NOT NULL, + `link` text NOT NULL, + `linktarget` varchar(10) NOT NULL, + `imagealign` varchar(25) NOT NULL, + PRIMARY KEY (`menuimage_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `menuitem_link` ( + `menulink_id` int(11) NOT NULL AUTO_INCREMENT, + `menuitem_id` int(11) NOT NULL, + `link` text NOT NULL, + `linktarget` varchar(10) NOT NULL, + `prefix` varchar(255) NOT NULL, + `textalign` varchar(25) NOT NULL, + PRIMARY KEY (`menulink_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=31 ; + +INSERT INTO `menuitem_link` (`menulink_id`, `menuitem_id`, `link`, `linktarget`, `prefix`, `textalign`) VALUES(1, 1, 'index.php', '', '· ', 'left'); +INSERT INTO `menuitem_link` (`menulink_id`, `menuitem_id`, `link`, `linktarget`, `prefix`, `textalign`) VALUES(3, 8, 'news', '', '· ', 'left'); +INSERT INTO `menuitem_link` (`menulink_id`, `menuitem_id`, `link`, `linktarget`, `prefix`, `textalign`) VALUES(4, 9, 'members.php', '', '· ', 'left'); +INSERT INTO `menuitem_link` (`menulink_id`, `menuitem_id`, `link`, `linktarget`, `prefix`, `textalign`) VALUES(5, 10, 'ranks.php', '', '· ', 'left'); +INSERT INTO `menuitem_link` (`menulink_id`, `menuitem_id`, `link`, `linktarget`, `prefix`, `textalign`) VALUES(6, 11, 'squads', '', '· ', 'left'); +INSERT INTO `menuitem_link` (`menulink_id`, `menuitem_id`, `link`, `linktarget`, `prefix`, `textalign`) VALUES(7, 12, 'tournaments', '', '· ', 'left'); +INSERT INTO `menuitem_link` (`menulink_id`, `menuitem_id`, `link`, `linktarget`, `prefix`, `textalign`) VALUES(8, 13, 'events', '', '· ', 'left'); +INSERT INTO `menuitem_link` (`menulink_id`, `menuitem_id`, `link`, `linktarget`, `prefix`, `textalign`) VALUES(9, 14, 'medals.php', '', '· ', 'left'); +INSERT INTO `menuitem_link` (`menulink_id`, `menuitem_id`, `link`, `linktarget`, `prefix`, `textalign`) VALUES(10, 15, 'diplomacy', '', '· ', 'left'); +INSERT INTO `menuitem_link` (`menulink_id`, `menuitem_id`, `link`, `linktarget`, `prefix`, `textalign`) VALUES(11, 16, 'diplomacy/request.php', '', '· ', 'left'); +INSERT INTO `menuitem_link` (`menulink_id`, `menuitem_id`, `link`, `linktarget`, `prefix`, `textalign`) VALUES(12, 20, 'forum', '', '· ', 'left'); +INSERT INTO `menuitem_link` (`menulink_id`, `menuitem_id`, `link`, `linktarget`, `prefix`, `textalign`) VALUES(13, 21, 'signup.php', '', '· ', 'left'); +INSERT INTO `menuitem_link` (`menulink_id`, `menuitem_id`, `link`, `linktarget`, `prefix`, `textalign`) VALUES(29, 45, 'forgotpassword.php', '', '· ', 'left'); +INSERT INTO `menuitem_link` (`menulink_id`, `menuitem_id`, `link`, `linktarget`, `prefix`, `textalign`) VALUES(30, 60, 'inactive-members.php', '', '· ', 'left'); + +CREATE TABLE IF NOT EXISTS `menuitem_shoutbox` ( + `menushoutbox_id` int(11) NOT NULL AUTO_INCREMENT, + `menuitem_id` int(11) NOT NULL, + `width` int(11) NOT NULL, + `height` int(11) NOT NULL, + `percentwidth` int(1) NOT NULL, + `percentheight` int(1) NOT NULL, + `textboxwidth` int(11) NOT NULL, + PRIMARY KEY (`menushoutbox_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ; + +INSERT INTO `menuitem_shoutbox` (`menushoutbox_id`, `menuitem_id`, `width`, `height`, `percentwidth`, `percentheight`, `textboxwidth`) VALUES(2, 47, 0, 0, 0, 0, 0); + +CREATE TABLE IF NOT EXISTS `menu_category` ( + `menucategory_id` int(11) NOT NULL AUTO_INCREMENT, + `section` int(11) NOT NULL, + `name` varchar(255) NOT NULL, + `sortnum` int(11) NOT NULL, + `headertype` varchar(255) NOT NULL, + `headercode` longtext NOT NULL, + `accesstype` int(11) NOT NULL, + `hide` int(11) NOT NULL, + PRIMARY KEY (`menucategory_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=16 ; + +INSERT INTO `menu_category` (`menucategory_id`, `section`, `name`, `sortnum`, `headertype`, `headercode`, `accesstype`, `hide`) VALUES(3, 0, 'Main Menu', 1, 'customcode', '
', 0, 0); +INSERT INTO `menu_category` (`menucategory_id`, `section`, `name`, `sortnum`, `headertype`, `headercode`, `accesstype`, `hide`) VALUES(2, 0, 'Top Players', 2, 'customcode', '
', 0, 0); +INSERT INTO `menu_category` (`menucategory_id`, `section`, `name`, `sortnum`, `headertype`, `headercode`, `accesstype`, `hide`) VALUES(14, 0, 'Forum Activity', 3, 'customcode', '
', 0, 0); +INSERT INTO `menu_category` (`menucategory_id`, `section`, `name`, `sortnum`, `headertype`, `headercode`, `accesstype`, `hide`) VALUES(9, 1, 'Shoutbox', 1, 'customcode', '
', 0, 0); +INSERT INTO `menu_category` (`menucategory_id`, `section`, `name`, `sortnum`, `headertype`, `headercode`, `accesstype`, `hide`) VALUES(15, 1, 'New Members', 2, 'customcode', '
', 0, 0); +INSERT INTO `menu_category` (`menucategory_id`, `section`, `name`, `sortnum`, `headertype`, `headercode`, `accesstype`, `hide`) VALUES(12, 2, 'Login', 1, 'customcode', '', 0, 0); +INSERT INTO `menu_category` (`menucategory_id`, `section`, `name`, `sortnum`, `headertype`, `headercode`, `accesstype`, `hide`) VALUES(13, 3, 'Quick Links', 1, 'customcode', '', 0, 0); + +CREATE TABLE IF NOT EXISTS `menu_item` ( + `menuitem_id` int(11) NOT NULL AUTO_INCREMENT, + `menucategory_id` int(11) NOT NULL, + `name` varchar(255) NOT NULL, + `itemtype` varchar(255) NOT NULL, + `itemtype_id` int(11) NOT NULL, + `accesstype` int(1) NOT NULL, + `hide` int(1) NOT NULL, + `sortnum` int(11) NOT NULL, + PRIMARY KEY (`menuitem_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=61 ; + +INSERT INTO `menu_item` (`menuitem_id`, `menucategory_id`, `name`, `itemtype`, `itemtype_id`, `accesstype`, `hide`, `sortnum`) VALUES(3, 2, 'Top Players Links', 'top-players', 0, 0, 0, 1); +INSERT INTO `menu_item` (`menuitem_id`, `menucategory_id`, `name`, `itemtype`, `itemtype_id`, `accesstype`, `hide`, `sortnum`) VALUES(1, 3, 'Home', 'link', 1, 0, 0, 1); +INSERT INTO `menu_item` (`menuitem_id`, `menucategory_id`, `name`, `itemtype`, `itemtype_id`, `accesstype`, `hide`, `sortnum`) VALUES(8, 3, 'News', 'link', 3, 0, 0, 2); +INSERT INTO `menu_item` (`menuitem_id`, `menucategory_id`, `name`, `itemtype`, `itemtype_id`, `accesstype`, `hide`, `sortnum`) VALUES(9, 3, 'Members', 'link', 4, 0, 0, 3); +INSERT INTO `menu_item` (`menuitem_id`, `menucategory_id`, `name`, `itemtype`, `itemtype_id`, `accesstype`, `hide`, `sortnum`) VALUES(10, 3, 'Ranks', 'link', 5, 0, 0, 4); +INSERT INTO `menu_item` (`menuitem_id`, `menucategory_id`, `name`, `itemtype`, `itemtype_id`, `accesstype`, `hide`, `sortnum`) VALUES(11, 3, 'Squads', 'link', 6, 0, 0, 5); +INSERT INTO `menu_item` (`menuitem_id`, `menucategory_id`, `name`, `itemtype`, `itemtype_id`, `accesstype`, `hide`, `sortnum`) VALUES(12, 3, 'Tournaments', 'link', 7, 0, 0, 6); +INSERT INTO `menu_item` (`menuitem_id`, `menucategory_id`, `name`, `itemtype`, `itemtype_id`, `accesstype`, `hide`, `sortnum`) VALUES(13, 3, 'Events', 'link', 8, 0, 0, 7); +INSERT INTO `menu_item` (`menuitem_id`, `menucategory_id`, `name`, `itemtype`, `itemtype_id`, `accesstype`, `hide`, `sortnum`) VALUES(14, 3, 'Medals', 'link', 9, 0, 0, 8); +INSERT INTO `menu_item` (`menuitem_id`, `menucategory_id`, `name`, `itemtype`, `itemtype_id`, `accesstype`, `hide`, `sortnum`) VALUES(15, 3, 'Diplomacy', 'link', 10, 0, 0, 9); +INSERT INTO `menu_item` (`menuitem_id`, `menucategory_id`, `name`, `itemtype`, `itemtype_id`, `accesstype`, `hide`, `sortnum`) VALUES(16, 3, 'Diplomacy Request', 'link', 11, 0, 0, 10); +INSERT INTO `menu_item` (`menuitem_id`, `menucategory_id`, `name`, `itemtype`, `itemtype_id`, `accesstype`, `hide`, `sortnum`) VALUES(19, 3, 'Rules', 'custompage', 3, 0, 0, 11); +INSERT INTO `menu_item` (`menuitem_id`, `menucategory_id`, `name`, `itemtype`, `itemtype_id`, `accesstype`, `hide`, `sortnum`) VALUES(18, 3, 'History', 'custompage', 2, 0, 0, 12); +INSERT INTO `menu_item` (`menuitem_id`, `menucategory_id`, `name`, `itemtype`, `itemtype_id`, `accesstype`, `hide`, `sortnum`) VALUES(20, 3, 'Forum', 'link', 12, 0, 0, 13); +INSERT INTO `menu_item` (`menuitem_id`, `menucategory_id`, `name`, `itemtype`, `itemtype_id`, `accesstype`, `hide`, `sortnum`) VALUES(21, 3, 'Sign Up', 'link', 13, 2, 0, 15); +INSERT INTO `menu_item` (`menuitem_id`, `menucategory_id`, `name`, `itemtype`, `itemtype_id`, `accesstype`, `hide`, `sortnum`) VALUES(45, 3, 'Forgot Password', 'link', 29, 2, 0, 16); +INSERT INTO `menu_item` (`menuitem_id`, `menucategory_id`, `name`, `itemtype`, `itemtype_id`, `accesstype`, `hide`, `sortnum`) VALUES(47, 9, 'Shoutbox', 'shoutbox', 2, 0, 0, 1); +INSERT INTO `menu_item` (`menuitem_id`, `menucategory_id`, `name`, `itemtype`, `itemtype_id`, `accesstype`, `hide`, `sortnum`) VALUES(46, 12, 'Login', 'login', 0, 0, 0, 1); +INSERT INTO `menu_item` (`menuitem_id`, `menucategory_id`, `name`, `itemtype`, `itemtype_id`, `accesstype`, `hide`, `sortnum`) VALUES(50, 13, 'News', 'customcode', 1, 0, 0, 1); +INSERT INTO `menu_item` (`menuitem_id`, `menucategory_id`, `name`, `itemtype`, `itemtype_id`, `accesstype`, `hide`, `sortnum`) VALUES(51, 13, 'Members', 'customcode', 2, 0, 0, 2); +INSERT INTO `menu_item` (`menuitem_id`, `menucategory_id`, `name`, `itemtype`, `itemtype_id`, `accesstype`, `hide`, `sortnum`) VALUES(52, 13, 'Tournaments', 'customcode', 3, 0, 0, 3); +INSERT INTO `menu_item` (`menuitem_id`, `menucategory_id`, `name`, `itemtype`, `itemtype_id`, `accesstype`, `hide`, `sortnum`) VALUES(53, 13, 'Squads', 'customcode', 4, 0, 0, 4); +INSERT INTO `menu_item` (`menuitem_id`, `menucategory_id`, `name`, `itemtype`, `itemtype_id`, `accesstype`, `hide`, `sortnum`) VALUES(54, 13, 'Events', 'customcode', 5, 0, 0, 5); +INSERT INTO `menu_item` (`menuitem_id`, `menucategory_id`, `name`, `itemtype`, `itemtype_id`, `accesstype`, `hide`, `sortnum`) VALUES(55, 13, 'Forum', 'customcode', 6, 0, 0, 6); +INSERT INTO `menu_item` (`menuitem_id`, `menucategory_id`, `name`, `itemtype`, `itemtype_id`, `accesstype`, `hide`, `sortnum`) VALUES(56, 14, 'Forum Activity', 'forumactivity', 0, 0, 0, 1); +INSERT INTO `menu_item` (`menuitem_id`, `menucategory_id`, `name`, `itemtype`, `itemtype_id`, `accesstype`, `hide`, `sortnum`) VALUES(57, 15, 'Newest Members', 'newestmembers', 0, 0, 0, 1); +INSERT INTO `menu_item` (`menuitem_id`, `menucategory_id`, `name`, `itemtype`, `itemtype_id`, `accesstype`, `hide`, `sortnum`) VALUES(58, 13, 'Sign Up', 'customcode', 7, 2, 0, 7); +INSERT INTO `menu_item` (`menuitem_id`, `menucategory_id`, `name`, `itemtype`, `itemtype_id`, `accesstype`, `hide`, `sortnum`) VALUES(59, 13, 'My Account', 'customcode', 8, 1, 0, 8); +INSERT INTO `menu_item` (`menuitem_id`, `menucategory_id`, `name`, `itemtype`, `itemtype_id`, `accesstype`, `hide`, `sortnum`) VALUES(60, 3, 'Inactive Members', 'link', 30, 0, 0, 14); CREATE TABLE IF NOT EXISTS `news` ( `news_id` int(11) NOT NULL AUTO_INCREMENT, @@ -574,14 +903,9 @@ CREATE TABLE IF NOT EXISTS `news` ( `newspost` text NOT NULL, `lasteditmember_id` int(11) NOT NULL, `lasteditdate` int(11) NOT NULL, + `hpsticky` int(11) NOT NULL, PRIMARY KEY (`news_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ; - -INSERT INTO `news` (`news_id`, `member_id`, `newstype`, `dateposted`, `postsubject`, `newspost`, `lasteditmember_id`, `lasteditdate`) VALUES(1, 13, 3, 1354511637, 'Shoutbox Post', 'test', 0, 0); -INSERT INTO `news` (`news_id`, `member_id`, `newstype`, `dateposted`, `postsubject`, `newspost`, `lasteditmember_id`, `lasteditdate`) VALUES(2, 13, 3, 1354511641, 'Shoutbox Post', 'asdf', 0, 0); -INSERT INTO `news` (`news_id`, `member_id`, `newstype`, `dateposted`, `postsubject`, `newspost`, `lasteditmember_id`, `lasteditdate`) VALUES(3, 13, 3, 1354511642, 'Shoutbox Post', 'asdf', 0, 0); -INSERT INTO `news` (`news_id`, `member_id`, `newstype`, `dateposted`, `postsubject`, `newspost`, `lasteditmember_id`, `lasteditdate`) VALUES(4, 13, 3, 1354511644, 'Shoutbox Post', 'fd', 0, 0); -INSERT INTO `news` (`news_id`, `member_id`, `newstype`, `dateposted`, `postsubject`, `newspost`, `lasteditmember_id`, `lasteditdate`) VALUES(5, 13, 3, 1354511648, 'Shoutbox Post', 'dd', 0, 0); +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `notifications` ( `notification_id` int(11) NOT NULL AUTO_INCREMENT, @@ -591,12 +915,25 @@ CREATE TABLE IF NOT EXISTS `notifications` ( `status` int(11) NOT NULL, `icontype` varchar(15) NOT NULL, PRIMARY KEY (`notification_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; -INSERT INTO `notifications` (`notification_id`, `member_id`, `datesent`, `message`, `status`, `icontype`) VALUES(1, 13, 1352264730, 'You were awarded the medal: Epic Medal', 1, 'promotion'); -INSERT INTO `notifications` (`notification_id`, `member_id`, `datesent`, `message`, `status`, `icontype`) VALUES(2, 13, 1352264730, 'You were awarded the medal: Epic Medal', 1, 'medal'); -INSERT INTO `notifications` (`notification_id`, `member_id`, `datesent`, `message`, `status`, `icontype`) VALUES(3, 13, 1352264730, 'You were awarded the medal: Epic Medal', 1, 'demotion'); -INSERT INTO `notifications` (`notification_id`, `member_id`, `datesent`, `message`, `status`, `icontype`) VALUES(4, 13, 1352264730, 'You were awarded the medal: Epic Medal', 1, ''); +CREATE TABLE IF NOT EXISTS `plugins` ( + `plugin_id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(255) NOT NULL, + `filepath` text NOT NULL, + `apikey` text NOT NULL, + `dateinstalled` int(11) NOT NULL, + PRIMARY KEY (`plugin_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=20 ; + +CREATE TABLE IF NOT EXISTS `plugin_pages` ( + `pluginpage_id` int(11) NOT NULL AUTO_INCREMENT, + `plugin_id` int(11) NOT NULL, + `page` varchar(255) NOT NULL, + `pagepath` text NOT NULL, + `sortnum` int(11) NOT NULL, + PRIMARY KEY (`pluginpage_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=16 ; CREATE TABLE IF NOT EXISTS `privatemessages` ( `pm_id` int(11) NOT NULL AUTO_INCREMENT, @@ -612,12 +949,23 @@ CREATE TABLE IF NOT EXISTS `privatemessages` ( PRIMARY KEY (`pm_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +CREATE TABLE IF NOT EXISTS `privatemessage_members` ( + `pmmember_id` int(11) NOT NULL AUTO_INCREMENT, + `pm_id` int(11) NOT NULL, + `member_id` int(11) NOT NULL, + `grouptype` varchar(20) NOT NULL, + `group_id` int(11) NOT NULL, + `seenstatus` int(11) NOT NULL, + `deletestatus` int(11) NOT NULL, + PRIMARY KEY (`pmmember_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + CREATE TABLE IF NOT EXISTS `profilecategory` ( `profilecategory_id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `ordernum` int(11) NOT NULL, PRIMARY KEY (`profilecategory_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=9 ; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=11 ; INSERT INTO `profilecategory` (`profilecategory_id`, `name`, `ordernum`) VALUES(1, 'Personal Information', 1); @@ -628,7 +976,7 @@ CREATE TABLE IF NOT EXISTS `profileoptions` ( `optiontype` varchar(255) NOT NULL, `sortnum` int(11) NOT NULL, PRIMARY KEY (`profileoption_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=9 ; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=10 ; INSERT INTO `profileoptions` (`profileoption_id`, `profilecategory_id`, `name`, `optiontype`, `sortnum`) VALUES(2, 1, 'First Name', 'input', 2); INSERT INTO `profileoptions` (`profileoption_id`, `profilecategory_id`, `name`, `optiontype`, `sortnum`) VALUES(3, 1, 'Gender', 'select', 1); @@ -652,21 +1000,7 @@ CREATE TABLE IF NOT EXISTS `profileoptions_values` ( `member_id` int(11) NOT NULL, `inputvalue` varchar(255) NOT NULL, PRIMARY KEY (`values_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=52 ; - -INSERT INTO `profileoptions_values` (`values_id`, `profileoption_id`, `member_id`, `inputvalue`) VALUES(49, 3, 13, '14'); -INSERT INTO `profileoptions_values` (`values_id`, `profileoption_id`, `member_id`, `inputvalue`) VALUES(2, 0, 0, ''); -INSERT INTO `profileoptions_values` (`values_id`, `profileoption_id`, `member_id`, `inputvalue`) VALUES(50, 2, 13, 'Leo'); -INSERT INTO `profileoptions_values` (`values_id`, `profileoption_id`, `member_id`, `inputvalue`) VALUES(51, 6, 13, 'Rojas'); -INSERT INTO `profileoptions_values` (`values_id`, `profileoption_id`, `member_id`, `inputvalue`) VALUES(40, 3, 18, '13'); -INSERT INTO `profileoptions_values` (`values_id`, `profileoption_id`, `member_id`, `inputvalue`) VALUES(41, 2, 18, 'Not Set'); -INSERT INTO `profileoptions_values` (`values_id`, `profileoption_id`, `member_id`, `inputvalue`) VALUES(42, 6, 18, 'Not Set'); -INSERT INTO `profileoptions_values` (`values_id`, `profileoption_id`, `member_id`, `inputvalue`) VALUES(34, 3, 16, '13'); -INSERT INTO `profileoptions_values` (`values_id`, `profileoption_id`, `member_id`, `inputvalue`) VALUES(35, 2, 16, 'Not Set'); -INSERT INTO `profileoptions_values` (`values_id`, `profileoption_id`, `member_id`, `inputvalue`) VALUES(36, 6, 16, 'Not Set'); -INSERT INTO `profileoptions_values` (`values_id`, `profileoption_id`, `member_id`, `inputvalue`) VALUES(37, 3, 17, '13'); -INSERT INTO `profileoptions_values` (`values_id`, `profileoption_id`, `member_id`, `inputvalue`) VALUES(38, 2, 17, 'Not Set'); -INSERT INTO `profileoptions_values` (`values_id`, `profileoption_id`, `member_id`, `inputvalue`) VALUES(39, 6, 17, 'Not Set'); +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `rankcategory` ( `rankcategory_id` int(11) NOT NULL AUTO_INCREMENT, @@ -680,14 +1014,14 @@ CREATE TABLE IF NOT EXISTS `rankcategory` ( `imageheight` int(11) NOT NULL, `color` varchar(30) NOT NULL, PRIMARY KEY (`rankcategory_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=19 ; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=22 ; -INSERT INTO `rankcategory` (`rankcategory_id`, `name`, `imageurl`, `ordernum`, `hidecat`, `useimage`, `description`, `imagewidth`, `imageheight`, `color`) VALUES(1, 'Commanders', '', 6, 0, 0, 'The leaders of the clan', 0, 0, '#FF0000'); -INSERT INTO `rankcategory` (`rankcategory_id`, `name`, `imageurl`, `ordernum`, `hidecat`, `useimage`, `description`, `imagewidth`, `imageheight`, `color`) VALUES(2, 'Generals', '', 4, 0, 0, '', 0, 0, '#0000FF'); -INSERT INTO `rankcategory` (`rankcategory_id`, `name`, `imageurl`, `ordernum`, `hidecat`, `useimage`, `description`, `imagewidth`, `imageheight`, `color`) VALUES(7, 'Warrant Officers', '', 2, 0, 0, '', 40, 40, '#F7FF00'); -INSERT INTO `rankcategory` (`rankcategory_id`, `name`, `imageurl`, `ordernum`, `hidecat`, `useimage`, `description`, `imagewidth`, `imageheight`, `color`) VALUES(6, 'Officers', '', 3, 0, 0, '', 0, 0, '#09FF00'); -INSERT INTO `rankcategory` (`rankcategory_id`, `name`, `imageurl`, `ordernum`, `hidecat`, `useimage`, `description`, `imagewidth`, `imageheight`, `color`) VALUES(8, 'Enlisted', '', 1, 0, 0, '', 0, 0, '#00FFFF'); -INSERT INTO `rankcategory` (`rankcategory_id`, `name`, `imageurl`, `ordernum`, `hidecat`, `useimage`, `description`, `imagewidth`, `imageheight`, `color`) VALUES(16, 'Co-Commanders', '', 5, 1, 0, 'asdfsadfff', 0, 0, '#FF6600'); +INSERT INTO `rankcategory` (`rankcategory_id`, `name`, `imageurl`, `ordernum`, `hidecat`, `useimage`, `description`, `imagewidth`, `imageheight`, `color`) VALUES(1, 'Commanders', '', 6, 0, 0, 'The leaders of the clan', 0, 0, '#F29999'); +INSERT INTO `rankcategory` (`rankcategory_id`, `name`, `imageurl`, `ordernum`, `hidecat`, `useimage`, `description`, `imagewidth`, `imageheight`, `color`) VALUES(2, 'Generals', '', 4, 0, 0, '', 0, 0, '#9191FF'); +INSERT INTO `rankcategory` (`rankcategory_id`, `name`, `imageurl`, `ordernum`, `hidecat`, `useimage`, `description`, `imagewidth`, `imageheight`, `color`) VALUES(7, 'Warrant Officers', '', 2, 0, 0, '', 0, 0, '#8CDBFF'); +INSERT INTO `rankcategory` (`rankcategory_id`, `name`, `imageurl`, `ordernum`, `hidecat`, `useimage`, `description`, `imagewidth`, `imageheight`, `color`) VALUES(6, 'Officers', '', 3, 0, 0, '', 0, 0, '#6DD46A'); +INSERT INTO `rankcategory` (`rankcategory_id`, `name`, `imageurl`, `ordernum`, `hidecat`, `useimage`, `description`, `imagewidth`, `imageheight`, `color`) VALUES(8, 'Enlisted', '', 1, 0, 0, '', 0, 0, '#F5FFA8'); +INSERT INTO `rankcategory` (`rankcategory_id`, `name`, `imageurl`, `ordernum`, `hidecat`, `useimage`, `description`, `imagewidth`, `imageheight`, `color`) VALUES(16, 'Co-Commanders', '', 5, 0, 0, 'asdfsadfff', 0, 0, '#FF9147'); CREATE TABLE IF NOT EXISTS `ranks` ( `rank_id` int(11) NOT NULL AUTO_INCREMENT, @@ -704,53 +1038,47 @@ CREATE TABLE IF NOT EXISTS `ranks` ( `autodisable` int(11) NOT NULL, `color` varchar(25) NOT NULL, PRIMARY KEY (`rank_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=68 ; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=71 ; -INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(50, 8, 'Master Sergeant', '42 days in the clan.', 'images/ranks/rank_4fa5ecc2638ee.png', 50, 75, 10, 42, 0, 0, 0, '#ffffff'); +INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(50, 8, 'Master Sergeant', '42 days in the clan.', 'images/ranks/rank_4fa5ecc2638ee.png', 50, 75, 9, 42, 0, 0, 0, '#ffffff'); INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(1, 3, 'Administrator', '', '', 0, 0, 1, 0, 1, 0, 0, '#7FFF00'); -INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(49, 8, 'Gunnery Sergeant', '35 days in the clan.', 'images/ranks/rank_4fa5ec8766300.png', 50, 75, 9, 35, 0, 0, 0, '#ffffff'); -INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(41, 1, 'Commander', 'This is a very important rank. They have to be very active and a good leader.', 'images/ranks/rank_4fa57e0c2fcfd.png', 50, 75, 29, 0, 0, 41, 0, '#ffffff'); -INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(42, 1, 'Co-Commander', 'The Co-Commander helps the Commanders. Promoted by the Commander.', 'images/ranks/rank_4fa57e3cb293a.png', 50, 75, 28, 0, 0, 31, 0, '#9C2525'); -INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(43, 8, 'Recruit', 'Starting Rank', 'images/ranks/rank_4fa58088a6a9d.png', 50, 75, 3, 0, 0, 0, 0, '#00EAFF'); -INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(44, 8, 'Private', '3 days in clan.', 'images/ranks/rank_4fa580f71decb.png', 50, 75, 4, 3, 0, 0, 0, '#ffffff'); -INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(45, 8, 'Private First Class', '7 days in clan.', 'images/ranks/rank_4fa581276383b.png', 50, 75, 5, 7, 0, 0, 0, '#ffffff'); -INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(46, 8, 'Corporal', '14 days in clan.', 'images/ranks/rank_4fa5eb8927175.png', 50, 75, 6, 14, 0, 0, 0, '#ffffff'); -INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(47, 8, 'Sergeant', '21 days in the clan.', 'images/ranks/rank_4fa5ebcbef13c.png', 50, 75, 7, 21, 0, 0, 0, '#ffffff'); -INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(48, 8, 'Staff Sergeant', '28 days in the clan.', 'images/ranks/rank_4fa5ec028e2a9.png', 50, 75, 8, 28, 0, 0, 0, '#ffffff'); -INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(31, 2, 'General', 'Promoted by Co-Commanders and up.', 'images/ranks/rank_4fa57ff737f8f.png', 50, 75, 27, 0, 0, 66, 0, '#ffffff'); -INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(51, 8, '1st Sergeant', '49 days in the clan.', 'images/ranks/rank_4fa5ed08200bc.png', 50, 75, 11, 49, 0, 0, 0, '#ffffff'); -INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(52, 8, 'Sergeant Major', '56 days in the clan.', 'images/ranks/rank_4fa5ed82cb573.png', 50, 75, 12, 56, 0, 0, 0, '#ffffff'); -INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(53, 7, 'Warrant Officer W1', 'Promoted by 2nd Lieutanent or Higher.', 'images/ranks/rank_4fa5f1e607f8a.png', 50, 75, 13, 0, 0, 0, 0, '#ffffff'); -INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(54, 7, 'Warrant Officer W2', 'Promoted by 2nd Lieutanent or Higher.', 'images/ranks/rank_4fa5f35316e43.png', 50, 75, 14, 0, 0, 0, 0, '#ffffff'); -INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(55, 7, 'Warrant Officer W3', 'Promoted by 2nd Lieutanent or Higher.', 'images/ranks/rank_4fa5f37660647.png', 50, 75, 15, 0, 0, 0, 0, '#ffffff'); -INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(56, 7, 'Chief Warrant Officer W4', 'Promoted by 1st Lieutanent or Higher.', 'images/ranks/rank_4fa5f3d842b99.png', 50, 75, 16, 0, 0, 52, 0, '#ffffff'); -INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(57, 7, 'Chief Warrant Officer W5', 'Promoted by 1st Lieutanent or Higher.', 'images/ranks/rank_4fa5f407bba12.png', 50, 75, 17, 0, 0, 52, 0, '#ffffff'); -INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(58, 6, '2nd Lieutenant', 'Promoted by Captain or Higher.', 'images/ranks/rank_4fa5f51b9c48c.png', 50, 75, 18, 0, 0, 55, 0, '#ffffff'); -INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(59, 6, '1st Lieutenant', 'Promoted by Captain or Higher.', 'images/ranks/rank_4fa5f54c265ce.png', 50, 75, 19, 0, 0, 57, 0, '#ffffff'); -INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(60, 6, 'Captain', 'Promoted by Colonel or Higher.', 'images/ranks/rank_4fa5f5ddbca9a.png', 50, 75, 20, 0, 0, 59, 0, '#ffffff'); -INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(61, 6, 'Major', 'Promoted by Colonel or Higher.', 'images/ranks/rank_4fa5f614eabf2.png', 50, 75, 21, 0, 0, 59, 0, '#FF6F00'); -INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(62, 6, 'Lieutenant Colonel', 'Promoted by Colonel or Higher.', 'images/ranks/rank_4fa5f670e6b80.png', 50, 75, 22, 0, 0, 59, 0, '#ffffff'); -INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(63, 6, 'Colonel', 'Promoted by Brigadier General or Higher.', 'images/ranks/rank_4fa5f6b6d6c55.png', 50, 75, 23, 0, 0, 62, 0, '#ffffff'); -INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(64, 2, 'Brigadier General', 'Promoted by Lieutenant General or Higher.', 'images/ranks/rank_4fa5f9c2eb082.png', 50, 75, 24, 0, 0, 63, 0, '#ffffff'); -INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(65, 2, 'Major General', 'Promoted by General or Higher.', 'images/ranks/rank_4fa5f9f050643.png', 50, 75, 25, 0, 0, 63, 0, '#ffffff'); -INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(66, 2, 'Lieutenant General', 'Promoted by General or Higher.', 'images/ranks/rank_4fa5fa1568f34.png', 50, 75, 26, 0, 0, 64, 0, '#ffffff'); -INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(67, 8, 'Trial Member', '', 'images/ranks/rank_508358b676d92.png', 40, 40, 2, 0, 0, 0, 5, '#ffffff'); +INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(49, 8, 'Gunnery Sergeant', '35 days in the clan.', 'images/ranks/rank_4fa5ec8766300.png', 50, 75, 8, 35, 0, 0, 0, '#ffffff'); +INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(41, 1, 'Commander', 'This is a very important rank. They have to be very active and a good leader.', 'images/ranks/rank_517e082d87871.png', 50, 75, 28, 0, 0, 41, 0, '#ffffff'); +INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(42, 16, 'Co-Commander', 'The Co-Commander helps the Commanders. Promoted by the Commander.', 'images/ranks/rank_517e0836044ec.png', 50, 75, 27, 0, 0, 31, 0, '#9C2525'); +INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(43, 8, 'Recruit', 'Starting Rank', 'images/ranks/rank_4fa58088a6a9d.png', 50, 75, 2, 0, 0, 0, 0, '#00EAFF'); +INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(44, 8, 'Private', '3 days in clan.', 'images/ranks/rank_4fa580f71decb.png', 50, 75, 3, 3, 0, 0, 0, '#ffffff'); +INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(45, 8, 'Private First Class', '7 days in clan.', 'images/ranks/rank_4fa581276383b.png', 50, 75, 4, 7, 0, 0, 0, '#ffffff'); +INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(46, 8, 'Corporal', '14 days in clan.', 'images/ranks/rank_4fa5eb8927175.png', 50, 75, 5, 14, 0, 0, 0, '#ffffff'); +INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(47, 8, 'Sergeant', '21 days in the clan.', 'images/ranks/rank_4fa5ebcbef13c.png', 50, 75, 6, 21, 0, 0, 0, '#ffffff'); +INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(48, 8, 'Staff Sergeant', '28 days in the clan.', 'images/ranks/rank_4fa5ec028e2a9.png', 50, 75, 7, 28, 0, 0, 0, '#ffffff'); +INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(31, 2, 'General', 'Promoted by Co-Commanders and up.', 'images/ranks/rank_4fa57ff737f8f.png', 50, 75, 26, 0, 0, 66, 0, '#ffffff'); +INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(51, 8, '1st Sergeant', '49 days in the clan.', 'images/ranks/rank_4fa5ed08200bc.png', 50, 75, 10, 49, 0, 0, 0, '#ffffff'); +INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(52, 8, 'Sergeant Major', '56 days in the clan.', 'images/ranks/rank_4fa5ed82cb573.png', 50, 75, 11, 56, 0, 0, 0, '#ffffff'); +INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(53, 7, 'Warrant Officer W1', 'Promoted by 2nd Lieutanent or Higher.', 'images/ranks/rank_4fa5f1e607f8a.png', 50, 75, 12, 0, 0, 0, 0, '#ffffff'); +INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(54, 7, 'Warrant Officer W2', 'Promoted by 2nd Lieutanent or Higher.', 'images/ranks/rank_4fa5f35316e43.png', 50, 75, 13, 0, 0, 0, 0, '#ffffff'); +INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(55, 7, 'Warrant Officer W3', 'Promoted by 2nd Lieutanent or Higher.', 'images/ranks/rank_4fa5f37660647.png', 50, 75, 14, 0, 0, 0, 0, '#ffffff'); +INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(56, 7, 'Chief Warrant Officer W4', 'Promoted by 1st Lieutanent or Higher.', 'images/ranks/rank_4fa5f3d842b99.png', 50, 75, 15, 0, 0, 52, 0, '#ffffff'); +INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(57, 7, 'Chief Warrant Officer W5', 'Promoted by 1st Lieutanent or Higher.', 'images/ranks/rank_4fa5f407bba12.png', 50, 75, 16, 0, 0, 52, 0, '#ffffff'); +INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(58, 6, '2nd Lieutenant', 'Promoted by Captain or Higher.', 'images/ranks/rank_4fa5f51b9c48c.png', 50, 75, 17, 0, 0, 55, 0, '#ffffff'); +INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(59, 6, '1st Lieutenant', 'Promoted by Captain or Higher.', 'images/ranks/rank_4fa5f54c265ce.png', 50, 75, 18, 0, 0, 57, 0, '#ffffff'); +INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(60, 6, 'Captain', 'Promoted by Colonel or Higher.', 'images/ranks/rank_4fa5f5ddbca9a.png', 50, 75, 19, 0, 0, 59, 0, '#ffffff'); +INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(61, 6, 'Major', 'Promoted by Colonel or Higher.', 'images/ranks/rank_4fa5f614eabf2.png', 50, 75, 20, 0, 0, 59, 0, '#FF6F00'); +INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(62, 6, 'Lieutenant Colonel', 'Promoted by Colonel or Higher.', 'images/ranks/rank_517e084db9628.png', 50, 75, 21, 0, 0, 59, 0, '#ffffff'); +INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(63, 6, 'Colonel', 'Promoted by Brigadier General or Higher.', 'images/ranks/rank_517e0842d66f0.png', 50, 75, 22, 0, 0, 62, 0, '#ffffff'); +INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(64, 2, 'Brigadier General', 'Promoted by Lieutenant General or Higher.', 'images/ranks/rank_4fa5f9c2eb082.png', 50, 75, 23, 0, 0, 63, 0, '#ffffff'); +INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(65, 2, 'Major General', 'Promoted by General or Higher.', 'images/ranks/rank_4fa5f9f050643.png', 50, 75, 24, 0, 0, 63, 0, '#ffffff'); +INSERT INTO `ranks` (`rank_id`, `rankcategory_id`, `name`, `description`, `imageurl`, `imagewidth`, `imageheight`, `ordernum`, `autodays`, `hiderank`, `promotepower`, `autodisable`, `color`) VALUES(66, 2, 'Lieutenant General', 'Promoted by General or Higher.', 'images/ranks/rank_4fa5fa1568f34.png', 50, 75, 25, 0, 0, 64, 0, '#ffffff'); CREATE TABLE IF NOT EXISTS `rank_privileges` ( `privilege_id` int(11) NOT NULL AUTO_INCREMENT, `rank_id` int(11) NOT NULL, `console_id` int(11) NOT NULL, PRIMARY KEY (`privilege_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1138 ; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2302 ; -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1, 1, 1); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2, 1, 2); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(3, 1, 3); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(4, 1, 5); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(5, 1, 6); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(6, 1, 7); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(8, 1, 9); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(9, 1, 10); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(10, 1, 11); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(11, 1, 12); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(12, 1, 14); @@ -758,14 +1086,11 @@ INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1 INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(14, 1, 17); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(15, 1, 18); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(16, 1, 19); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(620, 31, 75); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(619, 31, 71); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(618, 31, 82); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2180, 31, 91); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2179, 31, 90); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(836, 58, 75); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(856, 57, 75); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(855, 57, 71); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(854, 57, 82); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(873, 56, 5); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(872, 56, 93); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(871, 56, 85); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(921, 55, 78); @@ -782,104 +1107,78 @@ INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(9 INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(988, 47, 85); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(998, 46, 85); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(835, 58, 71); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(834, 58, 82); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(165, 1, 25); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1008, 45, 85); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1018, 44, 85); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1031, 43, 11); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1084, 41, 87); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1083, 41, 80); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1527, 43, 92); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2060, 41, 138); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(61, 1, 22); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(62, 1, 23); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(63, 1, 24); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1082, 41, 75); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1081, 41, 71); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1137, 42, 91); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1136, 42, 90); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1135, 42, 8); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2059, 41, 139); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2058, 41, 137); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2057, 41, 136); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2110, 42, 91); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2109, 42, 18); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2108, 42, 90); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(816, 59, 75); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(815, 59, 71); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(814, 59, 82); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(796, 60, 75); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(795, 60, 71); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(794, 60, 82); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2240, 60, 7); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2239, 60, 92); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(783, 61, 78); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(782, 61, 77); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(781, 61, 74); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(780, 61, 76); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(756, 62, 75); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(755, 62, 71); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(754, 62, 82); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(736, 63, 75); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(735, 63, 71); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(734, 63, 82); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1514, 62, 7); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1512, 62, 92); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1491, 63, 7); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1489, 63, 92); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(707, 64, 75); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(706, 64, 71); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(705, 64, 82); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(678, 65, 75); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(677, 65, 71); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(676, 65, 82); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(649, 66, 75); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(648, 66, 71); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(647, 66, 82); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(340, 1, 34); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(339, 1, 33); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(338, 1, 32); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(337, 1, 31); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1080, 41, 82); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1134, 42, 7); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(617, 31, 5); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(853, 57, 5); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(833, 58, 5); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(813, 59, 5); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(793, 60, 5); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2107, 42, 17); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(779, 61, 73); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(753, 62, 5); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(733, 63, 5); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(704, 64, 5); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(675, 65, 5); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(646, 66, 5); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1511, 62, 70); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1488, 63, 70); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(367, 1, 21); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1079, 41, 5); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1133, 42, 6); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(616, 31, 93); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2056, 41, 134); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2178, 31, 8); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(852, 57, 93); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(832, 58, 93); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(812, 59, 93); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(792, 60, 93); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2238, 60, 6); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(778, 61, 11); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(752, 62, 93); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(732, 63, 93); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1510, 62, 89); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1487, 63, 89); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(703, 64, 93); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(674, 65, 93); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(645, 66, 93); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(451, 1, 8); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1078, 41, 93); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1132, 42, 92); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(615, 31, 85); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2055, 41, 114); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2106, 42, 8); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2177, 31, 7); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(851, 57, 85); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(831, 58, 85); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(811, 59, 85); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(791, 60, 85); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(751, 62, 85); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(731, 63, 85); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2237, 60, 84); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1509, 62, 72); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1486, 63, 72); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(702, 64, 85); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(673, 65, 85); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(644, 66, 85); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(465, 1, 20); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(482, 1, 51); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(483, 1, 52); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(494, 1, 63); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(485, 1, 54); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(486, 1, 55); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(487, 1, 56); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(493, 1, 62); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(492, 1, 61); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(491, 1, 60); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(495, 1, 64); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(496, 1, 65); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(497, 1, 66); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(572, 1, 82); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(575, 1, 85); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(574, 1, 84); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(509, 1, 70); @@ -887,13 +1186,10 @@ INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(5 INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(518, 1, 72); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(519, 1, 73); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(520, 1, 74); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1029, 43, 93); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(573, 1, 83); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1028, 43, 85); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1526, 43, 89); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(776, 61, 75); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(775, 61, 71); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(774, 61, 82); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(773, 61, 5); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(564, 1, 75); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(565, 1, 76); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(567, 1, 78); @@ -907,53 +1203,46 @@ INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(5 INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(583, 1, 91); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(584, 1, 92); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(585, 1, 93); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1131, 42, 70); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1130, 42, 89); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1129, 42, 72); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1128, 42, 21); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1127, 42, 86); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1126, 42, 84); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1125, 42, 78); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1124, 42, 77); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1123, 42, 74); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1122, 42, 88); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1121, 42, 76); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1120, 42, 73); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1119, 42, 83); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1118, 42, 20); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1117, 42, 11); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1116, 42, 87); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1115, 42, 80); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1114, 42, 75); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1113, 42, 71); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1112, 42, 82); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1111, 42, 5); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1110, 42, 93); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(622, 31, 87); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(623, 31, 11); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(624, 31, 20); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(625, 31, 83); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(626, 31, 73); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(627, 31, 76); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(628, 31, 88); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(629, 31, 74); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(630, 31, 77); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(631, 31, 78); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(632, 31, 84); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(633, 31, 86); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(634, 31, 21); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(635, 31, 72); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(636, 31, 89); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(637, 31, 70); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(638, 31, 92); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(639, 31, 6); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(640, 31, 7); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(641, 31, 8); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(642, 31, 90); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(643, 31, 91); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2105, 42, 7); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2104, 42, 102); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2103, 42, 92); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2102, 42, 6); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2101, 42, 104); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2100, 42, 88); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2099, 42, 84); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2098, 42, 70); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2097, 42, 103); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2096, 42, 89); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2095, 42, 87); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2094, 42, 72); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2093, 42, 83); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2092, 42, 21); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2091, 42, 125); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2090, 42, 107); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2089, 42, 101); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2176, 31, 92); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2175, 31, 6); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2174, 31, 88); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2173, 31, 84); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2172, 31, 70); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2171, 31, 89); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2170, 31, 87); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2169, 31, 72); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2168, 31, 83); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2167, 31, 21); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2166, 31, 125); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2165, 31, 107); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2164, 31, 93); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2163, 31, 86); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2162, 31, 78); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2161, 31, 77); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2160, 31, 74); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2159, 31, 123); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2158, 31, 106); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2157, 31, 85); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2156, 31, 76); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(651, 66, 87); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(652, 66, 11); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(653, 66, 20); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(654, 66, 83); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(655, 66, 73); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(656, 66, 76); @@ -968,14 +1257,12 @@ INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(6 INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(665, 66, 89); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(666, 66, 70); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(667, 66, 92); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(668, 66, 6); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(669, 66, 7); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(670, 66, 8); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(671, 66, 90); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(672, 66, 91); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(680, 65, 87); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(681, 65, 11); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(682, 65, 20); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(683, 65, 83); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(684, 65, 73); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(685, 65, 76); @@ -990,14 +1277,12 @@ INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(6 INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(694, 65, 89); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(695, 65, 70); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(696, 65, 92); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(697, 65, 6); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(698, 65, 7); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(699, 65, 8); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(700, 65, 90); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(701, 65, 91); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(709, 64, 87); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(710, 64, 11); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(711, 64, 20); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(712, 64, 83); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(713, 64, 73); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(714, 64, 76); @@ -1012,57 +1297,52 @@ INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(7 INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(723, 64, 89); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(724, 64, 70); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(725, 64, 92); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(726, 64, 6); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(727, 64, 7); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(728, 64, 8); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(729, 64, 90); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(730, 64, 91); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(738, 63, 11); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(739, 63, 73); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(740, 63, 76); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(741, 63, 74); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(742, 63, 77); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(743, 63, 78); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(744, 63, 84); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(745, 63, 72); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(746, 63, 89); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(747, 63, 70); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(748, 63, 92); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(749, 63, 6); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(750, 63, 7); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(758, 62, 11); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(759, 62, 73); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(760, 62, 76); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(761, 62, 74); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(762, 62, 77); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(763, 62, 78); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(764, 62, 84); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(765, 62, 72); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(766, 62, 89); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(767, 62, 70); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(768, 62, 92); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(769, 62, 6); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(770, 62, 7); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1485, 63, 107); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1484, 63, 84); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1483, 63, 78); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1482, 63, 77); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1481, 63, 74); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1479, 63, 76); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1478, 63, 73); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1477, 63, 11); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1476, 63, 106); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1475, 63, 80); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1474, 63, 75); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1473, 63, 71); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1508, 62, 107); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1507, 62, 84); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1506, 62, 78); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1505, 62, 77); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1504, 62, 74); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1502, 62, 76); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1501, 62, 73); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1500, 62, 11); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1499, 62, 106); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1498, 62, 80); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1497, 62, 75); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1496, 62, 71); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(784, 61, 84); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(785, 61, 72); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(786, 61, 89); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(787, 61, 70); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(788, 61, 92); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(789, 61, 6); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(790, 61, 7); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(798, 60, 11); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(799, 60, 73); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(800, 60, 76); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(801, 60, 74); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(802, 60, 77); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(803, 60, 78); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(804, 60, 84); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(805, 60, 72); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(806, 60, 89); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(807, 60, 70); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(808, 60, 92); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(809, 60, 6); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(810, 60, 7); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2236, 60, 70); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2235, 60, 89); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2234, 60, 72); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2233, 60, 107); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2232, 60, 93); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2231, 60, 78); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2230, 60, 77); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2229, 60, 74); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2228, 60, 123); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2227, 60, 106); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2226, 60, 85); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2225, 60, 76); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(818, 59, 11); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(819, 59, 73); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(820, 59, 76); @@ -1074,7 +1354,6 @@ INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(8 INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(826, 59, 89); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(827, 59, 70); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(828, 59, 92); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(829, 59, 6); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(830, 59, 7); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(838, 58, 11); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(839, 58, 73); @@ -1087,7 +1366,6 @@ INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(8 INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(846, 58, 89); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(847, 58, 70); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(848, 58, 92); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(849, 58, 6); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(850, 58, 7); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(858, 57, 11); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(859, 57, 73); @@ -1100,9 +1378,7 @@ INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(8 INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(866, 57, 89); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(867, 57, 70); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(868, 57, 92); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(869, 57, 6); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(870, 57, 7); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(874, 56, 82); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(875, 56, 71); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(876, 56, 75); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(878, 56, 11); @@ -1116,16 +1392,11 @@ INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(8 INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(886, 56, 89); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(887, 56, 70); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(888, 56, 92); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(889, 56, 6); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(890, 56, 7); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(919, 55, 73); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(918, 55, 11); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(916, 55, 82); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(915, 55, 5); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(914, 55, 93); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(913, 55, 85); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(902, 54, 5); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(903, 54, 82); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(905, 54, 11); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(906, 54, 73); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(907, 54, 74); @@ -1138,7 +1409,6 @@ INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(9 INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(923, 55, 72); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(924, 55, 89); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(925, 55, 92); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(928, 53, 5); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(930, 53, 11); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(931, 53, 73); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(932, 53, 74); @@ -1203,45 +1473,33 @@ INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1 INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1005, 46, 72); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1006, 46, 89); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1007, 46, 92); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1009, 45, 93); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1011, 45, 11); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1012, 45, 73); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1013, 45, 74); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1014, 45, 78); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1015, 45, 72); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1016, 45, 89); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1017, 45, 92); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1019, 44, 93); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1021, 44, 11); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1022, 44, 73); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1023, 44, 74); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1024, 44, 78); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1025, 44, 72); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1026, 44, 89); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1027, 44, 92); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1032, 43, 73); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1033, 43, 74); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1034, 43, 78); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1035, 43, 72); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1036, 43, 89); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1037, 43, 92); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1038, 67, 93); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1040, 67, 11); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1041, 67, 74); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1042, 67, 78); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1043, 67, 72); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1044, 67, 89); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1285, 45, 78); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1284, 45, 74); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1282, 45, 73); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1281, 45, 11); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1279, 45, 80); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1278, 45, 93); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1272, 44, 78); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1271, 44, 74); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1269, 44, 73); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1268, 44, 11); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1266, 44, 80); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1265, 44, 93); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1525, 43, 72); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1524, 43, 107); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1523, 43, 78); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1522, 43, 74); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1048, 50, 80); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1049, 49, 80); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1077, 41, 85); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1109, 42, 85); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1052, 43, 80); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1053, 44, 80); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1054, 45, 80); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1839, 1, 135); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2088, 42, 93); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1520, 43, 73); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1264, 44, 85); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1277, 45, 85); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1055, 46, 80); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1056, 47, 80); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1057, 48, 80); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1058, 31, 80); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2155, 31, 73); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1059, 51, 80); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1060, 52, 80); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1061, 53, 80); @@ -1251,39 +1509,350 @@ INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1 INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1065, 57, 80); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1066, 58, 80); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1067, 59, 80); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1068, 60, 80); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2224, 60, 73); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1069, 61, 80); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1070, 62, 80); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1071, 63, 80); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1072, 64, 80); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1073, 65, 80); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1074, 66, 80); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1075, 67, 80); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1076, 1, 80); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1085, 41, 11); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1086, 41, 20); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1087, 41, 83); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1088, 41, 73); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1089, 41, 76); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1090, 41, 88); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1091, 41, 74); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1092, 41, 77); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1093, 41, 78); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1094, 41, 84); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1095, 41, 86); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1096, 41, 21); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1097, 41, 72); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1098, 41, 89); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1099, 41, 70); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1100, 41, 92); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1101, 41, 6); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1102, 41, 7); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1103, 41, 8); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1104, 41, 90); -INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1105, 41, 91); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2054, 41, 62); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2053, 41, 61); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2052, 41, 12); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2051, 41, 64); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2050, 41, 63); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2049, 41, 66); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2048, 41, 65); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2047, 41, 60); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2043, 41, 33); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2042, 41, 32); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2041, 41, 31); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2040, 41, 25); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2039, 41, 91); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2038, 41, 52); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1106, 1, 96); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1107, 1, 97); INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1108, 1, 98); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1138, 1, 99); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1139, 1, 100); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1140, 1, 101); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1141, 1, 102); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1143, 1, 104); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1519, 43, 11); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1518, 43, 106); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2037, 41, 110); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2036, 41, 109); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2035, 41, 108); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2034, 41, 18); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2033, 41, 90); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2032, 41, 17); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2031, 41, 51); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2030, 41, 8); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2087, 42, 86); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2086, 42, 78); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2085, 42, 77); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2084, 42, 74); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2083, 42, 123); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2082, 42, 106); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2081, 42, 100); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2080, 42, 85); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1274, 44, 72); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1275, 44, 89); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1276, 44, 92); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1287, 45, 72); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1288, 45, 89); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1289, 45, 92); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1290, 50, 106); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1291, 49, 106); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2029, 41, 15); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2079, 42, 76); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1517, 43, 80); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1295, 44, 106); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1296, 45, 106); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1297, 46, 106); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1298, 47, 106); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1299, 48, 106); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1301, 51, 106); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1302, 52, 106); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1303, 53, 106); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1304, 54, 106); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1305, 55, 106); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1306, 56, 106); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1307, 57, 106); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1308, 58, 106); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1309, 59, 106); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2223, 60, 11); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1311, 61, 106); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1314, 64, 106); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1315, 65, 106); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1316, 66, 106); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1319, 1, 106); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1320, 50, 107); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1321, 49, 107); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2078, 42, 73); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1516, 43, 93); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1325, 44, 107); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1326, 45, 107); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1327, 46, 107); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1328, 47, 107); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1329, 48, 107); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2153, 31, 11); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1331, 51, 107); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1332, 52, 107); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1333, 53, 107); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1334, 54, 107); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1335, 55, 107); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1336, 56, 107); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1337, 57, 107); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1338, 58, 107); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1339, 59, 107); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2222, 60, 105); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1341, 61, 107); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1493, 62, 93); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1470, 63, 93); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1344, 64, 107); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1345, 65, 107); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1346, 66, 107); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1349, 1, 107); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2028, 41, 7); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1515, 43, 85); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1492, 62, 85); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1469, 63, 85); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2027, 41, 102); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2076, 42, 11); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1603, 1, 103); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1622, 50, 82); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1623, 49, 82); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2026, 41, 92); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2075, 42, 10); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1626, 43, 82); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1627, 44, 82); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1628, 45, 82); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1629, 46, 82); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1630, 47, 82); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1631, 48, 82); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2152, 31, 10); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1633, 51, 82); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1634, 52, 82); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1635, 53, 82); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1636, 54, 82); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1637, 55, 82); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1638, 56, 82); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1639, 57, 82); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1640, 58, 82); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1641, 59, 82); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2221, 60, 80); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1643, 61, 82); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1644, 62, 82); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1645, 63, 82); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1646, 64, 82); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1647, 65, 82); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1648, 66, 82); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1649, 1, 82); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1651, 50, 105); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1652, 49, 105); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2025, 41, 14); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2074, 42, 105); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1655, 43, 105); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1656, 44, 105); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1657, 45, 105); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1658, 46, 105); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1659, 47, 105); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1660, 48, 105); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2151, 31, 105); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1662, 51, 105); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1663, 52, 105); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1664, 53, 105); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1665, 54, 105); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1666, 55, 105); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1667, 56, 105); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1668, 57, 105); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1669, 58, 105); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1670, 59, 105); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2220, 60, 75); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1672, 61, 105); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1673, 62, 105); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1674, 63, 105); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1675, 64, 105); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1676, 65, 105); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1677, 66, 105); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1679, 1, 105); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1682, 50, 123); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1683, 49, 123); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2024, 41, 6); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2073, 42, 99); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1686, 43, 123); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1687, 44, 123); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1688, 45, 123); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1689, 46, 123); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1690, 47, 123); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1691, 48, 123); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2150, 31, 80); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1693, 51, 123); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1694, 52, 123); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1695, 53, 123); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1696, 54, 123); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1697, 55, 123); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1698, 56, 123); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1699, 57, 123); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1700, 58, 123); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1701, 59, 123); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2219, 60, 71); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1703, 61, 123); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1704, 62, 123); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1705, 63, 123); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1706, 64, 123); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1707, 65, 123); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1708, 66, 123); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1711, 1, 123); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2023, 41, 104); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1715, 1, 1); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2022, 41, 88); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2021, 41, 84); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2020, 41, 70); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2019, 41, 19); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2018, 41, 103); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2017, 41, 89); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2016, 41, 87); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2015, 41, 72); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2014, 41, 83); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2013, 41, 23); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2012, 41, 21); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2011, 41, 107); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2010, 41, 101); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2009, 41, 93); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2008, 41, 86); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2007, 41, 78); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2006, 41, 77); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2005, 41, 74); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2004, 41, 22); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2003, 41, 125); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2002, 41, 106); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2001, 41, 100); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2000, 41, 85); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1999, 41, 76); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1998, 41, 73); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1996, 41, 11); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1995, 41, 10); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1994, 41, 2); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1993, 41, 123); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1992, 41, 105); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1991, 41, 99); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2072, 42, 80); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2149, 31, 75); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1821, 64, 125); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1822, 65, 125); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1823, 66, 125); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1824, 1, 125); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1829, 1, 121); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1831, 1, 9); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1990, 41, 80); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2148, 31, 71); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1835, 64, 10); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1836, 65, 10); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1837, 66, 10); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1838, 1, 10); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1989, 41, 75); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1988, 41, 71); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1987, 41, 82); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1986, 41, 9); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1985, 41, 5); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2071, 42, 75); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2070, 42, 71); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1984, 41, 1); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2069, 42, 82); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2147, 31, 82); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1964, 64, 5); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1965, 65, 5); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1966, 66, 5); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1967, 1, 5); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1983, 41, 144); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2068, 42, 5); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2146, 31, 5); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1971, 56, 6); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1972, 57, 6); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1973, 58, 6); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1974, 59, 6); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2218, 60, 82); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1976, 61, 6); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1977, 62, 6); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1978, 63, 6); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1979, 64, 6); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1980, 65, 6); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1981, 66, 6); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(1982, 1, 6); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2061, 41, 140); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2062, 41, 55); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2063, 1, 55); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2064, 41, 56); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2065, 1, 56); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2066, 41, 54); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2067, 1, 54); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2211, 41, 20); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2212, 42, 20); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2213, 31, 20); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2214, 64, 20); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2215, 65, 20); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2216, 66, 20); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2217, 1, 20); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2241, 41, 171); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2242, 42, 171); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2243, 1, 171); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2244, 50, 175); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2245, 49, 175); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2246, 41, 175); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2247, 42, 175); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2248, 43, 175); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2249, 44, 175); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2250, 45, 175); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2251, 46, 175); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2252, 47, 175); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2253, 48, 175); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2254, 31, 175); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2255, 51, 175); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2256, 52, 175); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2257, 53, 175); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2258, 54, 175); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2259, 55, 175); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2260, 56, 175); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2261, 57, 175); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2262, 58, 175); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2263, 59, 175); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2264, 60, 175); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2265, 61, 175); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2266, 62, 175); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2267, 63, 175); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2268, 64, 175); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2269, 65, 175); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2270, 66, 175); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2272, 1, 175); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2273, 50, 176); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2274, 49, 176); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2275, 41, 176); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2276, 42, 176); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2277, 43, 176); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2278, 44, 176); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2279, 45, 176); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2280, 46, 176); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2281, 47, 176); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2282, 48, 176); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2283, 31, 176); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2284, 51, 176); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2285, 52, 176); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2286, 53, 176); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2287, 54, 176); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2288, 55, 176); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2289, 56, 176); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2290, 57, 176); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2291, 58, 176); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2292, 59, 176); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2293, 60, 176); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2294, 61, 176); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2295, 62, 176); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2296, 63, 176); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2297, 64, 176); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2298, 65, 176); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2299, 66, 176); +INSERT INTO `rank_privileges` (`privilege_id`, `rank_id`, `console_id`) VALUES(2301, 1, 176); CREATE TABLE IF NOT EXISTS `squadapps` ( `squadapp_id` int(11) NOT NULL AUTO_INCREMENT, @@ -1366,6 +1935,13 @@ CREATE TABLE IF NOT EXISTS `squads_members` ( PRIMARY KEY (`squadmember_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +CREATE TABLE IF NOT EXISTS `tableupdates` ( + `tableupdate_id` int(11) NOT NULL AUTO_INCREMENT, + `tablename` varchar(255) NOT NULL, + `updatetime` int(11) NOT NULL, + PRIMARY KEY (`tableupdate_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + CREATE TABLE IF NOT EXISTS `tournamentmatch` ( `tournamentmatch_id` int(11) NOT NULL AUTO_INCREMENT, `tournament_id` int(11) NOT NULL, @@ -1383,11 +1959,7 @@ CREATE TABLE IF NOT EXISTS `tournamentmatch` ( `nextmatch_id` int(11) NOT NULL, `sortnum` int(11) NOT NULL, PRIMARY KEY (`tournamentmatch_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ; - -INSERT INTO `tournamentmatch` (`tournamentmatch_id`, `tournament_id`, `round`, `team1_id`, `team2_id`, `team1score`, `team2score`, `outcome`, `replayteam1url`, `replayteam2url`, `adminreplayurl`, `team1approve`, `team2approve`, `nextmatch_id`, `sortnum`) VALUES(1, 1, 2, 0, 0, 0, 0, 0, '', '', '', 0, 0, 0, 0); -INSERT INTO `tournamentmatch` (`tournamentmatch_id`, `tournament_id`, `round`, `team1_id`, `team2_id`, `team1score`, `team2score`, `outcome`, `replayteam1url`, `replayteam2url`, `adminreplayurl`, `team1approve`, `team2approve`, `nextmatch_id`, `sortnum`) VALUES(2, 1, 1, 1, 4, 0, 0, 0, '', '', '', 0, 0, 1, 0); -INSERT INTO `tournamentmatch` (`tournamentmatch_id`, `tournament_id`, `round`, `team1_id`, `team2_id`, `team1score`, `team2score`, `outcome`, `replayteam1url`, `replayteam2url`, `adminreplayurl`, `team1approve`, `team2approve`, `nextmatch_id`, `sortnum`) VALUES(3, 1, 1, 2, 3, 0, 0, 0, '', '', '', 0, 0, 1, 0); +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `tournamentplayers` ( `tournamentplayer_id` int(11) NOT NULL AUTO_INCREMENT, @@ -1413,6 +1985,10 @@ CREATE TABLE IF NOT EXISTS `tournamentpools_teams` ( `team2_id` int(11) NOT NULL, `team1score` int(11) NOT NULL, `team2score` int(11) NOT NULL, + `team1approve` int(1) NOT NULL, + `team2approve` int(1) NOT NULL, + `replayteam1url` text NOT NULL, + `replayteam2url` text NOT NULL, `winner` int(11) NOT NULL, PRIMARY KEY (`poolteam_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; @@ -1455,13 +2031,48 @@ CREATE TABLE IF NOT EXISTS `websiteinfo` ( `highdsl` varchar(255) NOT NULL, `logourl` text NOT NULL, `forumurl` text NOT NULL, + `meta_description` text NOT NULL, + `meta_tags` varchar(255) NOT NULL, `failedlogins` int(11) NOT NULL, `maxdiplomacy` int(11) NOT NULL, `mostonline` int(11) NOT NULL, `mostonlinedate` int(11) NOT NULL, `memberregistration` int(11) NOT NULL, `memberapproval` int(11) NOT NULL, - PRIMARY KEY (`websiteinfo_id`) + `medalorder` int(11) NOT NULL, + `newsticker` varchar(255) NOT NULL, + `newstickercolor` varchar(40) NOT NULL, + `newstickersize` int(11) NOT NULL, + `newstickerbold` int(11) NOT NULL, + `newstickeritalic` int(11) NOT NULL, + `debugmode` int(11) NOT NULL, + `privateforum` int(11) NOT NULL, + `privateprofile` int(11) NOT NULL, + `updatemenu` int(11) NOT NULL, + `hpimagetype` varchar(6) NOT NULL, + `hpimagewidth` int(11) NOT NULL, + `hpimageheight` int(11) NOT NULL, + `hpimagewidthunit` varchar(7) NOT NULL, + `hpimageheightunit` varchar(7) NOT NULL, + `forum_showmedal` int(11) NOT NULL, + `forum_medalcount` int(11) NOT NULL, + `forum_medalwidth` int(11) NOT NULL, + `forum_medalheight` int(11) NOT NULL, + `forum_medalwidthunit` varchar(2) NOT NULL, + `forum_medalheightunit` varchar(2) NOT NULL, + `forum_showrank` int(11) NOT NULL, + `forum_rankwidth` int(11) NOT NULL, + `forum_rankheight` int(11) NOT NULL, + `forum_rankwidthunit` varchar(2) NOT NULL, + `forum_rankheightunit` varchar(2) NOT NULL, + `forum_postsperpage` int(11) NOT NULL, + `forum_topicsperpage` int(11) NOT NULL, + `hideinactive` int(11) NOT NULL, + `hpnews` int(11) NOT NULL, + `showtime` int(11) NOT NULL, + `analyticstracking` text NOT NULL, + PRIMARY KEY (`websiteinfo_id`), + KEY `meta_tags` (`meta_tags`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ; -INSERT INTO `websiteinfo` (`websiteinfo_id`, `clanname`, `clantag`, `preventhack`, `maxdsl`, `theme`, `lowdsl`, `meddsl`, `highdsl`, `logourl`, `forumurl`, `failedlogins`, `maxdiplomacy`, `mostonline`, `mostonlinedate`, `memberregistration`, `memberapproval`) VALUES(1, 'Bluethrust Clan Website Manager: Clan Scripts v4', '[bT]', '5555', 0, 'orangegrunge', '#00FF00', '#FFFF52', '#F75B5B', '1', 'fgh', 8, 5, 1, 1355884420, 0, 1); +INSERT INTO `websiteinfo` (`websiteinfo_id`, `clanname`, `clantag`, `preventhack`, `maxdsl`, `theme`, `lowdsl`, `meddsl`, `highdsl`, `logourl`, `forumurl`, `meta_description`, `meta_tags`, `failedlogins`, `maxdiplomacy`, `mostonline`, `mostonlinedate`, `memberregistration`, `memberapproval`, `medalorder`, `newsticker`, `newstickercolor`, `newstickersize`, `newstickerbold`, `newstickeritalic`, `debugmode`, `privateforum`, `privateprofile`, `updatemenu`, `hpimagetype`, `hpimagewidth`, `hpimageheight`, `hpimagewidthunit`, `hpimageheightunit`, `forum_showmedal`, `forum_medalcount`, `forum_medalwidth`, `forum_medalheight`, `forum_medalwidthunit`, `forum_medalheightunit`, `forum_showrank`, `forum_rankwidth`, `forum_rankheight`, `forum_rankwidthunit`, `forum_rankheightunit`, `forum_postsperpage`, `forum_topicsperpage`, `hideinactive`, `hpnews`, `showtime`) VALUES(1, 'Bluethrust Clan Website Manager: Clan Scripts v4', '[bT]', '5555', 0, 'battlecity', '#00FF00', '#FFFF52', '#F75B5B', 'images/logo.png', 'http://localhost/cs4git/forum', ' Bluethrust Clan Scripts is an open source clan website manager that helps you easily create and run your clan, guild or gaming community website.', '%clantag%, Bluethrust, Clan, guild, gaming, CMS, community, gaming, Forums', 8, 10, 2, 1362280462, 0, 1, 1, 'Welcome to the Site!', '#FFFFFF', 14, 0, 0, 0, 0, 0, 1374720512, 'slider', 600, 400, 'px', 'px', 1, 5, 50, 13, 'px', 'px', 1, 50, 75, 'px', 'px', 25, 0, 0, 1, 1); diff --git a/installer/cs4update.sql b/installer/cs4update.sql index 5e147ff..0f390ff 100644 --- a/installer/cs4update.sql +++ b/installer/cs4update.sql @@ -1,18 +1,27 @@ +CREATE TABLE IF NOT EXISTS `app_captcha` ( + `appcaptcha_id` int(11) NOT NULL AUTO_INCREMENT, + `appcomponent_id` int(11) NOT NULL, + `ipaddress` varchar(255) NOT NULL, + `captchatext` varchar(8) NOT NULL, + PRIMARY KEY (`appcaptcha_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + CREATE TABLE IF NOT EXISTS `app_components` ( `appcomponent_id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `componenttype` varchar(25) NOT NULL, `required` int(11) NOT NULL, + `tooltip` text NOT NULL, `ordernum` int(11) NOT NULL, PRIMARY KEY (`appcomponent_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `app_selectvalues` ( `appselectvalue_id` int(11) NOT NULL AUTO_INCREMENT, `appcomponent_id` int(11) NOT NULL, `componentvalue` varchar(255) NOT NULL, PRIMARY KEY (`appselectvalue_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `app_values` ( `appvalue_id` int(11) NOT NULL AUTO_INCREMENT, @@ -20,7 +29,7 @@ CREATE TABLE IF NOT EXISTS `app_values` ( `memberapp_id` int(11) NOT NULL, `appvalue` text NOT NULL, PRIMARY KEY (`appvalue_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `comments` ( `comment_id` int(11) NOT NULL AUTO_INCREMENT, @@ -29,7 +38,20 @@ CREATE TABLE IF NOT EXISTS `comments` ( `dateposted` int(11) NOT NULL, `message` text NOT NULL, PRIMARY KEY (`comment_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ; + +CREATE TABLE IF NOT EXISTS `console` ( + `console_id` int(11) NOT NULL AUTO_INCREMENT, + `consolecategory_id` int(11) NOT NULL, + `pagetitle` varchar(255) NOT NULL, + `filename` text NOT NULL, + `sortnum` int(11) NOT NULL, + `adminoption` int(11) NOT NULL, + `sep` int(11) NOT NULL, + `defaultconsole` int(11) NOT NULL, + `hide` int(1) NOT NULL, + PRIMARY KEY (`console_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=177 ; CREATE TABLE IF NOT EXISTS `consolecategory` ( `consolecategory_id` int(11) NOT NULL AUTO_INCREMENT, @@ -37,7 +59,7 @@ CREATE TABLE IF NOT EXISTS `consolecategory` ( `ordernum` int(11) NOT NULL, `adminoption` int(1) NOT NULL, PRIMARY KEY (`consolecategory_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=17 ; CREATE TABLE IF NOT EXISTS `console_members` ( `privilege_id` int(11) NOT NULL AUTO_INCREMENT, @@ -45,14 +67,60 @@ CREATE TABLE IF NOT EXISTS `console_members` ( `member_id` int(11) NOT NULL, `allowdeny` int(1) NOT NULL, PRIMARY KEY (`privilege_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `customform` ( + `customform_id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(255) NOT NULL, + `pageinfo` text NOT NULL, + `submitmessage` text NOT NULL, + `submitlink` text NOT NULL, + `specialform` varchar(255) NOT NULL, + PRIMARY KEY (`customform_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `customform_components` ( + `component_id` int(11) NOT NULL AUTO_INCREMENT, + `customform_id` int(11) NOT NULL, + `name` varchar(255) NOT NULL, + `componenttype` varchar(11) NOT NULL, + `required` int(11) NOT NULL, + `tooltip` text NOT NULL, + `sortnum` int(11) NOT NULL, + PRIMARY KEY (`component_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `customform_selectvalues` ( + `selectvalue_id` int(11) NOT NULL AUTO_INCREMENT, + `component_id` int(11) NOT NULL, + `componentvalue` text NOT NULL, + `sortnum` int(11) NOT NULL, + PRIMARY KEY (`selectvalue_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `customform_submission` ( + `submission_id` int(11) NOT NULL AUTO_INCREMENT, + `customform_id` int(11) NOT NULL, + `submitdate` int(11) NOT NULL, + `ipaddress` varchar(255) NOT NULL, + `seenstatus` int(11) NOT NULL, + PRIMARY KEY (`submission_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `customform_values` ( + `value_id` int(11) NOT NULL AUTO_INCREMENT, + `submission_id` int(11) NOT NULL, + `component_id` int(11) NOT NULL, + `formvalue` text NOT NULL, + PRIMARY KEY (`value_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `custompages` ( `custompage_id` int(11) NOT NULL AUTO_INCREMENT, `pagename` varchar(255) NOT NULL, - `pageinfo` text NOT NULL, + `pageinfo` longtext NOT NULL, PRIMARY KEY (`custompage_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=16 ; CREATE TABLE IF NOT EXISTS `diplomacy` ( `diplomacy_id` int(11) NOT NULL AUTO_INCREMENT, @@ -68,7 +136,7 @@ CREATE TABLE IF NOT EXISTS `diplomacy` ( `gamesplayed` varchar(255) NOT NULL, `extrainfo` text NOT NULL, PRIMARY KEY (`diplomacy_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `diplomacy_request` ( `diplomacyrequest_id` int(11) NOT NULL AUTO_INCREMENT, @@ -86,7 +154,7 @@ CREATE TABLE IF NOT EXISTS `diplomacy_request` ( `message` text NOT NULL, `confirmemail` varchar(255) NOT NULL, PRIMARY KEY (`diplomacyrequest_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `diplomacy_status` ( `diplomacystatus_id` int(11) NOT NULL AUTO_INCREMENT, @@ -96,14 +164,16 @@ CREATE TABLE IF NOT EXISTS `diplomacy_status` ( `imageheight` int(11) NOT NULL, `ordernum` int(11) NOT NULL, PRIMARY KEY (`diplomacystatus_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ; CREATE TABLE IF NOT EXISTS `downloadcategory` ( `downloadcategory_id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `ordernum` int(11) NOT NULL, + `accesstype` int(11) NOT NULL, + `specialkey` varchar(255) NOT NULL, PRIMARY KEY (`downloadcategory_id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; +) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=8 ; CREATE TABLE IF NOT EXISTS `downloads` ( `download_id` int(11) NOT NULL AUTO_INCREMENT, @@ -111,24 +181,216 @@ CREATE TABLE IF NOT EXISTS `downloads` ( `member_id` int(11) NOT NULL, `dateuploaded` int(11) NOT NULL, `name` varchar(255) NOT NULL, + `filename` varchar(255) NOT NULL, + `mimetype` varchar(255) NOT NULL, + `filesize` int(11) NOT NULL, + `splitfile1` varchar(255) NOT NULL, + `splitfile2` varchar(255) NOT NULL, `description` text NOT NULL, `downloadcount` int(11) NOT NULL, PRIMARY KEY (`download_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `download_extensions` ( `extension_id` int(11) NOT NULL AUTO_INCREMENT, `downloadcategory_id` int(11) NOT NULL, `extension` varchar(255) NOT NULL, PRIMARY KEY (`extension_id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; +) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=19 ; + +CREATE TABLE IF NOT EXISTS `eventchat` ( + `eventchat_id` int(11) NOT NULL AUTO_INCREMENT, + `event_id` int(11) NOT NULL, + `datestarted` int(11) NOT NULL, + `status` int(11) NOT NULL, + PRIMARY KEY (`eventchat_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `eventchat_messages` ( + `eventchatmessage_id` int(11) NOT NULL AUTO_INCREMENT, + `eventchat_id` int(11) NOT NULL, + `member_id` int(11) NOT NULL, + `dateposted` int(11) NOT NULL, + `message` text NOT NULL, + PRIMARY KEY (`eventchatmessage_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `eventchat_roomlist` ( + `eventchatlist_id` int(11) NOT NULL AUTO_INCREMENT, + `eventchat_id` int(11) NOT NULL, + `member_id` int(11) NOT NULL, + `inactive` int(11) NOT NULL, + `lastseen` int(11) NOT NULL, + PRIMARY KEY (`eventchatlist_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `eventmessages` ( + `eventmessage_id` int(11) NOT NULL AUTO_INCREMENT, + `event_id` int(11) NOT NULL, + `member_id` int(11) NOT NULL, + `dateposted` int(11) NOT NULL, + `message` text NOT NULL, + PRIMARY KEY (`eventmessage_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `eventmessage_comment` ( + `comment_id` int(11) NOT NULL AUTO_INCREMENT, + `eventmessage_id` int(11) NOT NULL, + `member_id` int(11) NOT NULL, + `dateposted` int(11) NOT NULL, + `comment` text NOT NULL, + PRIMARY KEY (`comment_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `eventpositions` ( + `position_id` int(11) NOT NULL AUTO_INCREMENT, + `event_id` int(11) NOT NULL, + `name` varchar(30) NOT NULL, + `sortnum` int(11) NOT NULL, + `modchat` int(11) NOT NULL, + `description` varchar(255) NOT NULL, + `invitemembers` int(11) NOT NULL, + `manageinvites` int(11) NOT NULL, + `postmessages` int(11) NOT NULL, + `managemessages` int(11) NOT NULL, + `attendenceconfirm` int(11) NOT NULL, + `editinfo` int(11) NOT NULL, + `eventpositions` int(11) NOT NULL, + PRIMARY KEY (`position_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ; + +CREATE TABLE IF NOT EXISTS `events` ( + `event_id` int(11) NOT NULL AUTO_INCREMENT, + `member_id` int(11) NOT NULL, + `title` varchar(255) NOT NULL, + `description` text NOT NULL, + `location` varchar(255) NOT NULL, + `startdate` int(11) NOT NULL, + `enddate` int(11) NOT NULL, + `publicprivate` int(11) NOT NULL, + `visibility` int(11) NOT NULL, + `messages` int(11) NOT NULL, + `invitepermission` int(11) NOT NULL, + PRIMARY KEY (`event_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `events_members` ( + `eventmember_id` int(11) NOT NULL AUTO_INCREMENT, + `event_id` int(11) NOT NULL, + `member_id` int(11) NOT NULL, + `invitedbymember_id` int(11) NOT NULL, + `position_id` int(11) NOT NULL, + `status` int(11) NOT NULL, + `attendconfirm_admin` int(11) NOT NULL, + `attendconfirm_member` int(11) NOT NULL, + `hide` int(11) NOT NULL, + PRIMARY KEY (`eventmember_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=9 ; CREATE TABLE IF NOT EXISTS `failban` ( `failban_id` int(11) NOT NULL AUTO_INCREMENT, `pagename` varchar(255) NOT NULL, `ipaddress` varchar(255) NOT NULL, PRIMARY KEY (`failban_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `forgotpass` ( + `rqid` int(11) NOT NULL AUTO_INCREMENT, + `username` varchar(255) NOT NULL, + `email` varchar(255) NOT NULL, + `changekey` varchar(255) NOT NULL, + `timeofrq` int(11) NOT NULL, + PRIMARY KEY (`rqid`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `forum_attachments` ( + `forumattachment_id` int(11) NOT NULL AUTO_INCREMENT, + `forumpost_id` int(11) NOT NULL, + `download_id` int(11) NOT NULL, + PRIMARY KEY (`forumattachment_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `forum_board` ( + `forumboard_id` int(11) NOT NULL AUTO_INCREMENT, + `forumcategory_id` int(11) NOT NULL, + `subforum_id` int(11) NOT NULL, + `lastpost_id` int(11) NOT NULL, + `name` varchar(255) NOT NULL, + `description` text NOT NULL, + `accesstype` int(11) NOT NULL, + `sortnum` int(11) NOT NULL, + PRIMARY KEY (`forumboard_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `forum_category` ( + `forumcategory_id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(255) NOT NULL, + `ordernum` int(11) NOT NULL, + PRIMARY KEY (`forumcategory_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `forum_memberaccess` ( + `forummemberaccess_id` int(11) NOT NULL AUTO_INCREMENT, + `board_id` int(11) NOT NULL, + `member_id` int(11) NOT NULL, + `accessrule` int(11) NOT NULL, + PRIMARY KEY (`forummemberaccess_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `forum_moderator` ( + `forummoderator_id` int(11) NOT NULL AUTO_INCREMENT, + `forumboard_id` int(11) NOT NULL, + `member_id` int(11) NOT NULL, + `dateadded` int(11) NOT NULL, + PRIMARY KEY (`forummoderator_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `forum_post` ( + `forumpost_id` int(11) NOT NULL AUTO_INCREMENT, + `forumtopic_id` int(11) NOT NULL, + `member_id` int(11) NOT NULL, + `dateposted` int(11) NOT NULL, + `title` varchar(255) NOT NULL, + `message` text NOT NULL, + `lastedit_date` int(11) NOT NULL, + `lastedit_member_id` int(11) NOT NULL, + PRIMARY KEY (`forumpost_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `forum_rankaccess` ( + `forumrankaccess_id` int(11) NOT NULL AUTO_INCREMENT, + `board_id` int(11) NOT NULL, + `rank_id` int(11) NOT NULL, + `accesstype` int(11) NOT NULL, + PRIMARY KEY (`forumrankaccess_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `forum_topic` ( + `forumtopic_id` int(11) NOT NULL AUTO_INCREMENT, + `forumboard_id` int(11) NOT NULL, + `forumpost_id` int(11) NOT NULL, + `lastpost_id` int(11) NOT NULL, + `views` int(11) NOT NULL, + `replies` int(11) NOT NULL, + `lockstatus` int(11) NOT NULL, + `stickystatus` int(11) NOT NULL, + PRIMARY KEY (`forumtopic_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `forum_topicseen` ( + `forumtopicseen_id` int(11) NOT NULL AUTO_INCREMENT, + `forumtopic_id` int(11) NOT NULL, + `member_id` int(11) NOT NULL, + PRIMARY KEY (`forumtopicseen_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `freezemedals_members` ( + `freezemedal_id` int(11) NOT NULL AUTO_INCREMENT, + `medal_id` int(11) NOT NULL, + `member_id` int(11) NOT NULL, + `freezetime` int(11) NOT NULL, + PRIMARY KEY (`freezemedal_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ; CREATE TABLE IF NOT EXISTS `gamesplayed` ( `gamesplayed_id` int(11) NOT NULL AUTO_INCREMENT, @@ -138,14 +400,14 @@ CREATE TABLE IF NOT EXISTS `gamesplayed` ( `imageheight` int(11) NOT NULL, `ordernum` int(11) NOT NULL, PRIMARY KEY (`gamesplayed_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=14 ; CREATE TABLE IF NOT EXISTS `gamesplayed_members` ( `gamemember_id` int(11) NOT NULL AUTO_INCREMENT, `gamesplayed_id` int(11) NOT NULL, `member_id` int(11) NOT NULL, PRIMARY KEY (`gamemember_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `gamestats` ( `gamestats_id` int(11) NOT NULL AUTO_INCREMENT, @@ -160,7 +422,7 @@ CREATE TABLE IF NOT EXISTS `gamestats` ( `hidestat` int(11) NOT NULL, `textinput` int(11) NOT NULL, PRIMARY KEY (`gamestats_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=15 ; CREATE TABLE IF NOT EXISTS `gamestats_members` ( `gamestatmember_id` int(11) NOT NULL AUTO_INCREMENT, @@ -170,22 +432,57 @@ CREATE TABLE IF NOT EXISTS `gamestats_members` ( `stattext` varchar(255) NOT NULL, `dateupdated` int(11) NOT NULL, PRIMARY KEY (`gamestatmember_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ; CREATE TABLE IF NOT EXISTS `hitcounter` ( `hit_id` int(11) NOT NULL AUTO_INCREMENT, `ipaddress` varchar(25) NOT NULL, `dateposted` int(11) NOT NULL, `pagename` varchar(255) NOT NULL, + `totalhits` int(11) NOT NULL, PRIMARY KEY (`hit_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `iarequest` ( + `iarequest_id` int(11) NOT NULL AUTO_INCREMENT, + `member_id` int(11) NOT NULL, + `requestdate` int(11) NOT NULL, + `reason` text NOT NULL, + `requeststatus` int(11) NOT NULL, + `reviewer_id` int(11) NOT NULL, + `reviewdate` int(11) NOT NULL, + PRIMARY KEY (`iarequest_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `iarequest_messages` ( + `iamessage_id` int(11) NOT NULL AUTO_INCREMENT, + `iarequest_id` int(11) NOT NULL, + `member_id` int(11) NOT NULL, + `messagedate` int(11) NOT NULL, + `message` text NOT NULL, + PRIMARY KEY (`iamessage_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `imageslider` ( + `imageslider_id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(255) NOT NULL, + `messagetitle` varchar(255) NOT NULL, + `message` varchar(255) NOT NULL, + `imageurl` text NOT NULL, + `fillstretch` varchar(7) NOT NULL, + `ordernum` int(11) NOT NULL, + `link` text NOT NULL, + `linktarget` varchar(10) NOT NULL, + `membersonly` int(11) NOT NULL, + PRIMARY KEY (`imageslider_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `ipban` ( `ipban_id` int(11) NOT NULL AUTO_INCREMENT, `ipaddress` varchar(11) NOT NULL, `exptime` int(11) NOT NULL, PRIMARY KEY (`ipban_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=8 ; CREATE TABLE IF NOT EXISTS `logs` ( `log_id` int(11) NOT NULL AUTO_INCREMENT, @@ -194,7 +491,7 @@ CREATE TABLE IF NOT EXISTS `logs` ( `ipaddress` varchar(255) NOT NULL, `message` text NOT NULL, PRIMARY KEY (`log_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `medals` ( `medal_id` int(11) NOT NULL AUTO_INCREMENT, @@ -207,15 +504,16 @@ CREATE TABLE IF NOT EXISTS `medals` ( `autorecruits` int(11) NOT NULL, `ordernum` int(11) NOT NULL, PRIMARY KEY (`medal_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=13 ; CREATE TABLE IF NOT EXISTS `medals_members` ( `medalmember_id` int(11) NOT NULL AUTO_INCREMENT, `medal_id` int(11) NOT NULL, `member_id` int(11) NOT NULL, `dateawarded` int(11) NOT NULL, + `reason` text NOT NULL, PRIMARY KEY (`medalmember_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `memberapps` ( `memberapp_id` int(11) NOT NULL AUTO_INCREMENT, @@ -228,7 +526,7 @@ CREATE TABLE IF NOT EXISTS `memberapps` ( `memberadded` int(11) NOT NULL, `seenstatus` int(11) NOT NULL, PRIMARY KEY (`memberapp_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `members` ( `member_id` int(11) NOT NULL AUTO_INCREMENT, @@ -243,6 +541,7 @@ CREATE TABLE IF NOT EXISTS `members` ( `twitter` varchar(20) NOT NULL, `youtube` varchar(40) NOT NULL, `googleplus` text NOT NULL, + `twitch` varchar(40) NOT NULL, `maingame_id` int(11) NOT NULL, `birthday` int(11) NOT NULL, `datejoined` int(11) NOT NULL, @@ -260,9 +559,99 @@ CREATE TABLE IF NOT EXISTS `members` ( `disabled` int(11) NOT NULL, `disableddate` int(11) NOT NULL, `notifications` int(11) NOT NULL, + `topicsperpage` int(11) NOT NULL, + `postsperpage` int(11) NOT NULL, + `freezerank` int(11) NOT NULL, + `forumsignature` text NOT NULL, + `promotepower` int(11) NOT NULL, + `onia` int(11) NOT NULL, + `inactivedate` int(11) NOT NULL, PRIMARY KEY (`member_id`), UNIQUE KEY `username` (`username`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `membersonlypage` ( + `page_id` int(11) NOT NULL AUTO_INCREMENT, + `pagename` varchar(255) NOT NULL, + `pageurl` text NOT NULL, + `dateadded` int(11) NOT NULL, + PRIMARY KEY (`page_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=14 ; + +CREATE TABLE IF NOT EXISTS `menuitem_customblock` ( + `menucustomblock_id` int(11) NOT NULL AUTO_INCREMENT, + `menuitem_id` int(11) NOT NULL, + `blocktype` varchar(10) NOT NULL, + `code` longtext NOT NULL, + PRIMARY KEY (`menucustomblock_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=9 ; + +CREATE TABLE IF NOT EXISTS `menuitem_custompage` ( + `menucustompage_id` int(11) NOT NULL AUTO_INCREMENT, + `menuitem_id` int(11) NOT NULL, + `custompage_id` int(11) NOT NULL, + `prefix` varchar(20) NOT NULL, + `linktarget` varchar(255) NOT NULL, + `textalign` varchar(25) NOT NULL, + PRIMARY KEY (`menucustompage_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ; + +CREATE TABLE IF NOT EXISTS `menuitem_image` ( + `menuimage_id` int(11) NOT NULL AUTO_INCREMENT, + `menuitem_id` int(11) NOT NULL, + `imageurl` text NOT NULL, + `width` int(11) NOT NULL, + `height` int(11) NOT NULL, + `link` text NOT NULL, + `linktarget` varchar(10) NOT NULL, + `imagealign` varchar(25) NOT NULL, + PRIMARY KEY (`menuimage_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `menuitem_link` ( + `menulink_id` int(11) NOT NULL AUTO_INCREMENT, + `menuitem_id` int(11) NOT NULL, + `link` text NOT NULL, + `linktarget` varchar(10) NOT NULL, + `prefix` varchar(255) NOT NULL, + `textalign` varchar(25) NOT NULL, + PRIMARY KEY (`menulink_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=31 ; + +CREATE TABLE IF NOT EXISTS `menuitem_shoutbox` ( + `menushoutbox_id` int(11) NOT NULL AUTO_INCREMENT, + `menuitem_id` int(11) NOT NULL, + `width` int(11) NOT NULL, + `height` int(11) NOT NULL, + `percentwidth` int(1) NOT NULL, + `percentheight` int(1) NOT NULL, + `textboxwidth` int(11) NOT NULL, + PRIMARY KEY (`menushoutbox_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ; + +CREATE TABLE IF NOT EXISTS `menu_category` ( + `menucategory_id` int(11) NOT NULL AUTO_INCREMENT, + `section` int(11) NOT NULL, + `name` varchar(255) NOT NULL, + `sortnum` int(11) NOT NULL, + `headertype` varchar(255) NOT NULL, + `headercode` longtext NOT NULL, + `accesstype` int(11) NOT NULL, + `hide` int(11) NOT NULL, + PRIMARY KEY (`menucategory_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=16 ; + +CREATE TABLE IF NOT EXISTS `menu_item` ( + `menuitem_id` int(11) NOT NULL AUTO_INCREMENT, + `menucategory_id` int(11) NOT NULL, + `name` varchar(255) NOT NULL, + `itemtype` varchar(255) NOT NULL, + `itemtype_id` int(11) NOT NULL, + `accesstype` int(1) NOT NULL, + `hide` int(1) NOT NULL, + `sortnum` int(11) NOT NULL, + PRIMARY KEY (`menuitem_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=61 ; CREATE TABLE IF NOT EXISTS `news` ( `news_id` int(11) NOT NULL AUTO_INCREMENT, @@ -273,8 +662,9 @@ CREATE TABLE IF NOT EXISTS `news` ( `newspost` text NOT NULL, `lasteditmember_id` int(11) NOT NULL, `lasteditdate` int(11) NOT NULL, + `hpsticky` int(11) NOT NULL, PRIMARY KEY (`news_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `notifications` ( `notification_id` int(11) NOT NULL AUTO_INCREMENT, @@ -284,7 +674,25 @@ CREATE TABLE IF NOT EXISTS `notifications` ( `status` int(11) NOT NULL, `icontype` varchar(15) NOT NULL, PRIMARY KEY (`notification_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `plugins` ( + `plugin_id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(255) NOT NULL, + `filepath` text NOT NULL, + `apikey` text NOT NULL, + `dateinstalled` int(11) NOT NULL, + PRIMARY KEY (`plugin_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=20 ; + +CREATE TABLE IF NOT EXISTS `plugin_pages` ( + `pluginpage_id` int(11) NOT NULL AUTO_INCREMENT, + `plugin_id` int(11) NOT NULL, + `page` varchar(255) NOT NULL, + `pagepath` text NOT NULL, + `sortnum` int(11) NOT NULL, + PRIMARY KEY (`pluginpage_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=16 ; CREATE TABLE IF NOT EXISTS `privatemessages` ( `pm_id` int(11) NOT NULL AUTO_INCREMENT, @@ -298,14 +706,25 @@ CREATE TABLE IF NOT EXISTS `privatemessages` ( `deletesender` int(11) NOT NULL, `deletereceiver` int(11) NOT NULL, PRIMARY KEY (`pm_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `privatemessage_members` ( + `pmmember_id` int(11) NOT NULL AUTO_INCREMENT, + `pm_id` int(11) NOT NULL, + `member_id` int(11) NOT NULL, + `grouptype` varchar(20) NOT NULL, + `group_id` int(11) NOT NULL, + `seenstatus` int(11) NOT NULL, + `deletestatus` int(11) NOT NULL, + PRIMARY KEY (`pmmember_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `profilecategory` ( `profilecategory_id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `ordernum` int(11) NOT NULL, PRIMARY KEY (`profilecategory_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=11 ; CREATE TABLE IF NOT EXISTS `profileoptions` ( `profileoption_id` int(11) NOT NULL AUTO_INCREMENT, @@ -314,7 +733,7 @@ CREATE TABLE IF NOT EXISTS `profileoptions` ( `optiontype` varchar(255) NOT NULL, `sortnum` int(11) NOT NULL, PRIMARY KEY (`profileoption_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=10 ; CREATE TABLE IF NOT EXISTS `profileoptions_select` ( `selectopt_id` int(11) NOT NULL AUTO_INCREMENT, @@ -322,7 +741,7 @@ CREATE TABLE IF NOT EXISTS `profileoptions_select` ( `selectvalue` varchar(255) NOT NULL, `sortnum` int(11) NOT NULL, PRIMARY KEY (`selectopt_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=16 ; CREATE TABLE IF NOT EXISTS `profileoptions_values` ( `values_id` int(11) NOT NULL AUTO_INCREMENT, @@ -330,7 +749,7 @@ CREATE TABLE IF NOT EXISTS `profileoptions_values` ( `member_id` int(11) NOT NULL, `inputvalue` varchar(255) NOT NULL, PRIMARY KEY (`values_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `rankcategory` ( `rankcategory_id` int(11) NOT NULL AUTO_INCREMENT, @@ -344,7 +763,7 @@ CREATE TABLE IF NOT EXISTS `rankcategory` ( `imageheight` int(11) NOT NULL, `color` varchar(30) NOT NULL, PRIMARY KEY (`rankcategory_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=22 ; CREATE TABLE IF NOT EXISTS `ranks` ( `rank_id` int(11) NOT NULL AUTO_INCREMENT, @@ -361,7 +780,14 @@ CREATE TABLE IF NOT EXISTS `ranks` ( `autodisable` int(11) NOT NULL, `color` varchar(25) NOT NULL, PRIMARY KEY (`rank_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=71 ; + +CREATE TABLE IF NOT EXISTS `rank_privileges` ( + `privilege_id` int(11) NOT NULL AUTO_INCREMENT, + `rank_id` int(11) NOT NULL, + `console_id` int(11) NOT NULL, + PRIMARY KEY (`privilege_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2302 ; CREATE TABLE IF NOT EXISTS `squadapps` ( `squadapp_id` int(11) NOT NULL AUTO_INCREMENT, @@ -373,7 +799,7 @@ CREATE TABLE IF NOT EXISTS `squadapps` ( `status` int(11) NOT NULL, `squadmember_id` int(11) NOT NULL, PRIMARY KEY (`squadapp_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `squadinvites` ( `squadinvite_id` int(11) NOT NULL AUTO_INCREMENT, @@ -386,7 +812,7 @@ CREATE TABLE IF NOT EXISTS `squadinvites` ( `message` text NOT NULL, `startingrank_id` int(11) NOT NULL, PRIMARY KEY (`squadinvite_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `squadnews` ( `squadnews_id` int(11) NOT NULL AUTO_INCREMENT, @@ -399,7 +825,7 @@ CREATE TABLE IF NOT EXISTS `squadnews` ( `lasteditmember_id` int(11) NOT NULL, `lasteditdate` int(11) NOT NULL, PRIMARY KEY (`squadnews_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `squadranks` ( `squadrank_id` int(11) NOT NULL AUTO_INCREMENT, @@ -418,7 +844,7 @@ CREATE TABLE IF NOT EXISTS `squadranks` ( `setrank` int(11) NOT NULL, `removemember` int(11) NOT NULL, PRIMARY KEY (`squadrank_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `squads` ( `squad_id` int(11) NOT NULL AUTO_INCREMENT, @@ -431,7 +857,7 @@ CREATE TABLE IF NOT EXISTS `squads` ( `privateshoutbox` int(11) NOT NULL, `website` text NOT NULL, PRIMARY KEY (`squad_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `squads_members` ( `squadmember_id` int(11) NOT NULL AUTO_INCREMENT, @@ -442,7 +868,14 @@ CREATE TABLE IF NOT EXISTS `squads_members` ( `lastpromotion` int(11) NOT NULL, `lastdemotion` int(11) NOT NULL, PRIMARY KEY (`squadmember_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; + +CREATE TABLE IF NOT EXISTS `tableupdates` ( + `tableupdate_id` int(11) NOT NULL AUTO_INCREMENT, + `tablename` varchar(255) NOT NULL, + `updatetime` int(11) NOT NULL, + PRIMARY KEY (`tableupdate_id`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `tournamentmatch` ( `tournamentmatch_id` int(11) NOT NULL AUTO_INCREMENT, @@ -461,7 +894,7 @@ CREATE TABLE IF NOT EXISTS `tournamentmatch` ( `nextmatch_id` int(11) NOT NULL, `sortnum` int(11) NOT NULL, PRIMARY KEY (`tournamentmatch_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `tournamentplayers` ( `tournamentplayer_id` int(11) NOT NULL AUTO_INCREMENT, @@ -470,14 +903,14 @@ CREATE TABLE IF NOT EXISTS `tournamentplayers` ( `member_id` int(11) NOT NULL, `displayname` varchar(50) NOT NULL, PRIMARY KEY (`tournamentplayer_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `tournamentpools` ( `tournamentpool_id` int(11) NOT NULL AUTO_INCREMENT, `tournament_id` int(11) NOT NULL, `finished` int(11) NOT NULL, PRIMARY KEY (`tournamentpool_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `tournamentpools_teams` ( `poolteam_id` int(11) NOT NULL AUTO_INCREMENT, @@ -487,9 +920,13 @@ CREATE TABLE IF NOT EXISTS `tournamentpools_teams` ( `team2_id` int(11) NOT NULL, `team1score` int(11) NOT NULL, `team2score` int(11) NOT NULL, + `team1approve` int(1) NOT NULL, + `team2approve` int(1) NOT NULL, + `replayteam1url` text NOT NULL, + `replayteam2url` text NOT NULL, `winner` int(11) NOT NULL, PRIMARY KEY (`poolteam_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `tournaments` ( `tournament_id` int(11) NOT NULL AUTO_INCREMENT, @@ -507,7 +944,7 @@ CREATE TABLE IF NOT EXISTS `tournaments` ( `requirereplay` int(10) NOT NULL, `access` int(11) NOT NULL, PRIMARY KEY (`tournament_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `tournamentteams` ( `tournamentteam_id` int(11) NOT NULL AUTO_INCREMENT, @@ -515,7 +952,7 @@ CREATE TABLE IF NOT EXISTS `tournamentteams` ( `name` varchar(255) NOT NULL, `seed` int(11) NOT NULL, PRIMARY KEY (`tournamentteam_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; CREATE TABLE IF NOT EXISTS `websiteinfo` ( `websiteinfo_id` int(11) NOT NULL AUTO_INCREMENT, @@ -529,33 +966,46 @@ CREATE TABLE IF NOT EXISTS `websiteinfo` ( `highdsl` varchar(255) NOT NULL, `logourl` text NOT NULL, `forumurl` text NOT NULL, + `meta_description` text NOT NULL, + `meta_tags` varchar(255) NOT NULL, `failedlogins` int(11) NOT NULL, `maxdiplomacy` int(11) NOT NULL, `mostonline` int(11) NOT NULL, `mostonlinedate` int(11) NOT NULL, `memberregistration` int(11) NOT NULL, `memberapproval` int(11) NOT NULL, - PRIMARY KEY (`websiteinfo_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - - -CREATE TABLE IF NOT EXISTS `console` ( - `console_id` int(11) NOT NULL AUTO_INCREMENT, - `consolecategory_id` int(11) NOT NULL, - `pagetitle` varchar(255) NOT NULL, - `filename` text NOT NULL, - `sortnum` int(11) NOT NULL, - `adminoption` int(11) NOT NULL, - `sep` int(11) NOT NULL, - `defaultconsole` int(11) NOT NULL, - `hide` int(1) NOT NULL, - PRIMARY KEY (`console_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - - -CREATE TABLE IF NOT EXISTS `rank_privileges` ( - `privilege_id` int(11) NOT NULL AUTO_INCREMENT, - `rank_id` int(11) NOT NULL, - `console_id` int(11) NOT NULL, - PRIMARY KEY (`privilege_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; + `medalorder` int(11) NOT NULL, + `newsticker` varchar(255) NOT NULL, + `newstickercolor` varchar(40) NOT NULL, + `newstickersize` int(11) NOT NULL, + `newstickerbold` int(11) NOT NULL, + `newstickeritalic` int(11) NOT NULL, + `debugmode` int(11) NOT NULL, + `privateforum` int(11) NOT NULL, + `privateprofile` int(11) NOT NULL, + `updatemenu` int(11) NOT NULL, + `hpimagetype` varchar(6) NOT NULL, + `hpimagewidth` int(11) NOT NULL, + `hpimageheight` int(11) NOT NULL, + `hpimagewidthunit` varchar(7) NOT NULL, + `hpimageheightunit` varchar(7) NOT NULL, + `forum_showmedal` int(11) NOT NULL, + `forum_medalcount` int(11) NOT NULL, + `forum_medalwidth` int(11) NOT NULL, + `forum_medalheight` int(11) NOT NULL, + `forum_medalwidthunit` varchar(2) NOT NULL, + `forum_medalheightunit` varchar(2) NOT NULL, + `forum_showrank` int(11) NOT NULL, + `forum_rankwidth` int(11) NOT NULL, + `forum_rankheight` int(11) NOT NULL, + `forum_rankwidthunit` varchar(2) NOT NULL, + `forum_rankheightunit` varchar(2) NOT NULL, + `forum_postsperpage` int(11) NOT NULL, + `forum_topicsperpage` int(11) NOT NULL, + `hideinactive` int(11) NOT NULL, + `hpnews` int(11) NOT NULL, + `showtime` int(11) NOT NULL, + `analyticstracking` text NOT NULL, + PRIMARY KEY (`websiteinfo_id`), + KEY `meta_tags` (`meta_tags`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ; diff --git a/installer/dbbackup_1360467911.txt b/installer/dbbackup_1360467911.txt deleted file mode 100644 index 644136d..0000000 --- a/installer/dbbackup_1360467911.txt +++ /dev/null @@ -1,2932 +0,0 @@ -CREATE TABLE `app_components` ( - `appcomponent_id` int(11) NOT NULL AUTO_INCREMENT, - `name` varchar(255) NOT NULL, - `componenttype` varchar(25) NOT NULL, - `required` int(11) NOT NULL, - `ordernum` int(11) NOT NULL, - PRIMARY KEY (`appcomponent_id`) -) ENGINE=MyISAM AUTO_INCREMENT=203 DEFAULT CHARSET=latin1; - -INSERT INTO app_components (appcomponent_id, name, componenttype, required, ordernum) VALUES ('1','Game Applying For','select','1','3'); -INSERT INTO app_components (appcomponent_id, name, componenttype, required, ordernum) VALUES ('10','Real Name','input','1','4'); -INSERT INTO app_components (appcomponent_id, name, componenttype, required, ordernum) VALUES ('8','Why do you want to join?','largeinput','1','1'); -INSERT INTO app_components (appcomponent_id, name, componenttype, required, ordernum) VALUES ('202','Recruited By','input','0','2'); -CREATE TABLE `app_selectvalues` ( - `appselectvalue_id` int(11) NOT NULL AUTO_INCREMENT, - `appcomponent_id` int(11) NOT NULL, - `componentvalue` varchar(255) NOT NULL, - PRIMARY KEY (`appselectvalue_id`) -) ENGINE=MyISAM AUTO_INCREMENT=24 DEFAULT CHARSET=latin1; - -INSERT INTO app_selectvalues (appselectvalue_id, appcomponent_id, componentvalue) VALUES ('1','4','Haha'); -INSERT INTO app_selectvalues (appselectvalue_id, appcomponent_id, componentvalue) VALUES ('2','4','No'); -INSERT INTO app_selectvalues (appselectvalue_id, appcomponent_id, componentvalue) VALUES ('3','4','Yes'); -INSERT INTO app_selectvalues (appselectvalue_id, appcomponent_id, componentvalue) VALUES ('4','0','test'); -INSERT INTO app_selectvalues (appselectvalue_id, appcomponent_id, componentvalue) VALUES ('23','1','World of Tanks'); -INSERT INTO app_selectvalues (appselectvalue_id, appcomponent_id, componentvalue) VALUES ('22','1','World of Kung Fu'); -CREATE TABLE `app_values` ( - `appvalue_id` int(11) NOT NULL AUTO_INCREMENT, - `appcomponent_id` int(11) NOT NULL, - `memberapp_id` int(11) NOT NULL, - `appvalue` text NOT NULL, - PRIMARY KEY (`appvalue_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - -CREATE TABLE `comments` ( - `comment_id` int(11) NOT NULL AUTO_INCREMENT, - `news_id` int(11) NOT NULL, - `member_id` int(11) NOT NULL, - `dateposted` int(11) NOT NULL, - `message` text NOT NULL, - PRIMARY KEY (`comment_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - -CREATE TABLE `console` ( - `console_id` int(11) NOT NULL AUTO_INCREMENT, - `consolecategory_id` int(11) NOT NULL, - `pagetitle` varchar(255) NOT NULL, - `filename` text NOT NULL, - `sortnum` int(11) NOT NULL, - `adminoption` int(11) NOT NULL, - `sep` int(11) NOT NULL, - `defaultconsole` int(11) NOT NULL, - `hide` int(1) NOT NULL, - PRIMARY KEY (`console_id`) -) ENGINE=MyISAM AUTO_INCREMENT=105 DEFAULT CHARSET=latin1; - -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('1','1','Add New Rank','admin/addrank.php','1','1','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('2','1','Manage Ranks','admin/manageranks.php','2','1','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('5','2','Add Member','membermanagement/addmember.php','1','0','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('6','2','Promote Member','membermanagement/promotemember.php','6','0','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('7','2','Demote Member','membermanagement/demotemember.php','7','0','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('8','2','Set Member\'s Rank','membermanagement/setrank.php','8','0','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('9','1','Add New Medal','admin/addmedal.php','6','1','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('10','1','Manage Medals','admin/managemedals.php','7','1','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('11','3','Edit Profile','editprofile.php','2','0','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('12','1','-separator-','','28','1','1','0','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('20','2','Disable a Member','membermanagement/disablemember.php','2','0','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('14','1','Add Games Played','admin/addgamesplayed.php','9','1','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('15','1','Manage Games Played','admin/managegamesplayed.php','10','1','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('19','1','-separator-','','8','1','1','0','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('17','1','Add Custom Pages','admin/addcustompages.php','12','1','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('18','1','Manage Custom Pages','admin/managecustompages.php','13','1','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('21','2','Delete Member','membermanagement/deletemember.php','4','0','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('22','1','Add New Rank Category','admin/addrankcategory.php','3','1','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('23','1','Manage Rank Categories','admin/managerankcategories.php','4','1','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('24','1','-separator-','','5','1','1','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('25','1','Add Console Option','admin/addconsoleoption.php','16','1','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('33','1','Manage Console Categories','admin/manageconsolecategories.php','19','1','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('32','1','Add New Console Category','admin/addconsolecategory.php','18','1','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('31','1','Manage Console Options','admin/manageconsole.php','17','1','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('65','1','Add Profile Option','admin/addprofileoption.php','24','1','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('51','1','-separator-','','11','1','1','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('52','1','-separator-','','14','1','1','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('54','1','-separator-','','20','1','1','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('55','1','Add Download Category','admin/adddownloadcategory.php','21','1','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('56','1','Manage Download Categories','admin/managedownloadcategories.php','22','1','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('62','1','Website Settings','admin/sitesettings.php','30','1','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('61','1','Modify Current Theme','admin/edittheme.php','29','1','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('60','1','-separator-','','23','1','1','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('63','1','Add Profile Category','admin/addprofilecategory.php','26','1','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('64','1','Manage Profile Categories','admin/manageprofilecategories.php','27','1','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('66','1','Manage Profile Options','admin/manageprofileoptions.php','25','1','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('83','9','Manage News','news/managenews.php','2','0','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('82','9','Post News','news/postnews.php','1','0','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('70','2','-separator-','','5','0','1','0','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('71','7','Create a Squad','squads/create.php','1','0','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('72','7','View Your Squads','squads/index.php','4','0','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('73','7','Apply to a Squad','squads/apply.php','2','0','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('74','7','View Squad Invitations','squads/viewinvites.php','3','0','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('75','8','Create a Tournament','tournaments/create.php','1','0','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('76','8','Manage Tournaments','tournaments/manage.php','2','0','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('77','8','Manage My Matches','tournaments/managematches.php','3','0','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('78','3','Private Messages','privatemessages/index.php','3','0','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('84','9','View Private News','news/privatenews.php','3','0','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('80','3','Edit My Game Stats','editmygamestats.php','1','0','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('85','9','Post Comment','news/postcomment.php','0','0','0','1','1'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('86','2','Undisable Member','membermanagement/undisablemember.php','3','0','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('87','10','Award Medal','medals/awardmedal.php','1','0','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('88','10','Revoke Medal','medals/revokemedal.php','2','0','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('89','3','Change Password','changepassword.php','4','0','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('90','2','-separator-','','9','0','1','0','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('91','2','Reset Member Password','membermanagement/resetpassword.php','13','0','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('92','3','View Logs','logs.php','5','0','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('93','9','Post in Shoutbox','news/postshoutbox.php','0','0','0','1','1'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('96','2','Registration Options','membermanagement/registrationoptions.php','10','0','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('97','2','Member Application','membermanagement/memberapplication.php','11','0','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('98','2','View Member Applications','membermanagement/viewapplications.php','12','0','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('99','11','Diplomacy: Add a Clan','diplomacy/addclan.php','1','0','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('100','11','Diplomacy: Manage Clans','diplomacy/manageclans.php','2','0','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('101','11','View Diplomacy Requests','diplomacy/viewrequests.php','3','0','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('102','11','Manage Diplomacy Statuses','diplomacy/diplomacystatuses.php','6','0','0','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('103','11','-seperator-','','4','0','1','1','0'); -INSERT INTO console (console_id, consolecategory_id, pagetitle, filename, sortnum, adminoption, sep, defaultconsole, hide) VALUES ('104','11','Add Diplomacy Status','diplomacy/adddiplomacystatus.php','5','0','0','1','0'); -CREATE TABLE `console_members` ( - `privilege_id` int(11) NOT NULL AUTO_INCREMENT, - `console_id` int(11) NOT NULL, - `member_id` int(11) NOT NULL, - `allowdeny` int(1) NOT NULL, - PRIMARY KEY (`privilege_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - -CREATE TABLE `consolecategory` ( - `consolecategory_id` int(11) NOT NULL AUTO_INCREMENT, - `name` varchar(255) NOT NULL, - `ordernum` int(11) NOT NULL, - `adminoption` int(1) NOT NULL, - PRIMARY KEY (`consolecategory_id`) -) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1; - -INSERT INTO consolecategory (consolecategory_id, name, ordernum, adminoption) VALUES ('1','Administrator Options','0','1'); -INSERT INTO consolecategory (consolecategory_id, name, ordernum, adminoption) VALUES ('2','Member Management','4','0'); -INSERT INTO consolecategory (consolecategory_id, name, ordernum, adminoption) VALUES ('3','Account Options','6','0'); -INSERT INTO consolecategory (consolecategory_id, name, ordernum, adminoption) VALUES ('9','News','5','0'); -INSERT INTO consolecategory (consolecategory_id, name, ordernum, adminoption) VALUES ('7','Squads','2','0'); -INSERT INTO consolecategory (consolecategory_id, name, ordernum, adminoption) VALUES ('8','Tournaments','1','0'); -INSERT INTO consolecategory (consolecategory_id, name, ordernum, adminoption) VALUES ('10','Medals','3','0'); -CREATE TABLE `custompages` ( - `custompage_id` int(11) NOT NULL AUTO_INCREMENT, - `pagename` varchar(255) NOT NULL, - `pageinfo` text NOT NULL, - PRIMARY KEY (`custompage_id`) -) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=latin1; - -INSERT INTO custompages (custompage_id, pagename, pageinfo) VALUES ('11','History','

This is the clan history.

\n

 

\n

This is actually just a custom page...

'); -INSERT INTO custompages (custompage_id, pagename, pageinfo) VALUES ('12','Rules','

This is the clan rules page.

\n

 

\n

This is actually just a custom page...

'); -CREATE TABLE `download_extensions` ( - `extension_id` int(11) NOT NULL AUTO_INCREMENT, - `downloadcategory_id` int(11) NOT NULL, - `extension` varchar(255) NOT NULL, - PRIMARY KEY (`extension_id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - -CREATE TABLE `downloadcategory` ( - `downloadcategory_id` int(11) NOT NULL AUTO_INCREMENT, - `name` varchar(255) NOT NULL, - `ordernum` int(11) NOT NULL, - PRIMARY KEY (`downloadcategory_id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - -CREATE TABLE `downloads` ( - `download_id` int(11) NOT NULL AUTO_INCREMENT, - `downloadcategory_id` int(11) NOT NULL, - `member_id` int(11) NOT NULL, - `dateuploaded` int(11) NOT NULL, - `name` varchar(255) NOT NULL, - `description` text NOT NULL, - `downloadcount` int(11) NOT NULL, - PRIMARY KEY (`download_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - -CREATE TABLE `failban` ( - `failban_id` int(11) NOT NULL AUTO_INCREMENT, - `pagename` varchar(255) NOT NULL, - `ipaddress` varchar(255) NOT NULL, - PRIMARY KEY (`failban_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - -CREATE TABLE `gamesplayed` ( - `gamesplayed_id` int(11) NOT NULL AUTO_INCREMENT, - `name` varchar(255) NOT NULL, - `imageurl` text NOT NULL, - `imagewidth` int(11) NOT NULL, - `imageheight` int(11) NOT NULL, - `ordernum` int(11) NOT NULL, - PRIMARY KEY (`gamesplayed_id`) -) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1; - -INSERT INTO gamesplayed (gamesplayed_id, name, imageurl, imagewidth, imageheight, ordernum) VALUES ('2','World of Tanks','images/gamesplayed/game_50fde21541ed2.png','50','50','1'); -INSERT INTO gamesplayed (gamesplayed_id, name, imageurl, imagewidth, imageheight, ordernum) VALUES ('10','World of Kung Fu','images/gamesplayed/game_50fde48a109d6.png','65','50','2'); -CREATE TABLE `gamesplayed_members` ( - `gamemember_id` int(11) NOT NULL AUTO_INCREMENT, - `gamesplayed_id` int(11) NOT NULL, - `member_id` int(11) NOT NULL, - PRIMARY KEY (`gamemember_id`) -) ENGINE=MyISAM AUTO_INCREMENT=21 DEFAULT CHARSET=latin1; - -INSERT INTO gamesplayed_members (gamemember_id, gamesplayed_id, member_id) VALUES ('16','2','13'); -INSERT INTO gamesplayed_members (gamemember_id, gamesplayed_id, member_id) VALUES ('5','2','4'); -INSERT INTO gamesplayed_members (gamemember_id, gamesplayed_id, member_id) VALUES ('14','2','1'); -INSERT INTO gamesplayed_members (gamemember_id, gamesplayed_id, member_id) VALUES ('7','10','9'); -INSERT INTO gamesplayed_members (gamemember_id, gamesplayed_id, member_id) VALUES ('20','2','5'); -INSERT INTO gamesplayed_members (gamemember_id, gamesplayed_id, member_id) VALUES ('13','2','7'); -INSERT INTO gamesplayed_members (gamemember_id, gamesplayed_id, member_id) VALUES ('12','10','7'); -INSERT INTO gamesplayed_members (gamemember_id, gamesplayed_id, member_id) VALUES ('11','10','8'); -INSERT INTO gamesplayed_members (gamemember_id, gamesplayed_id, member_id) VALUES ('15','2','12'); -INSERT INTO gamesplayed_members (gamemember_id, gamesplayed_id, member_id) VALUES ('17','2','14'); -INSERT INTO gamesplayed_members (gamemember_id, gamesplayed_id, member_id) VALUES ('19','2','17'); -CREATE TABLE `gamestats` ( - `gamestats_id` int(11) NOT NULL AUTO_INCREMENT, - `gamesplayed_id` int(11) NOT NULL, - `name` varchar(255) NOT NULL, - `stattype` varchar(15) NOT NULL, - `calcop` varchar(3) NOT NULL, - `firststat_id` int(11) NOT NULL, - `secondstat_id` int(11) NOT NULL, - `decimalspots` int(11) NOT NULL, - `ordernum` int(11) NOT NULL, - `hidestat` int(11) NOT NULL, - `textinput` int(11) NOT NULL, - PRIMARY KEY (`gamestats_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - -CREATE TABLE `gamestats_members` ( - `gamestatmember_id` int(11) NOT NULL AUTO_INCREMENT, - `gamestats_id` int(11) NOT NULL, - `member_id` int(11) NOT NULL, - `statvalue` decimal(65,30) NOT NULL, - `stattext` varchar(255) NOT NULL, - `dateupdated` int(11) NOT NULL, - PRIMARY KEY (`gamestatmember_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - -CREATE TABLE `hitcounter` ( - `hit_id` int(11) NOT NULL AUTO_INCREMENT, - `ipaddress` varchar(25) NOT NULL, - `dateposted` int(11) NOT NULL, - `pagename` varchar(255) NOT NULL, - PRIMARY KEY (`hit_id`) -) ENGINE=MyISAM AUTO_INCREMENT=2119 DEFAULT CHARSET=latin1; - -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1','::1','1356151337','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2','::1','1356152351','Member Application - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('3','::1','1356153707','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('4','::1','1356153716','Website Settings - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('5','::1','1356154027',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('6','::1','1356208177',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('7','::1','1356208185',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('8','::1','1356208185',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('9','::1','1356314586',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('10','::1','1356315202','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('11','::1','1356315202',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('12','::1','1356315237','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('13','::1','1356315241','Manage Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('14','::1','1356315242','Manage Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('15','::1','1356315572','Manage Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('16','::1','1356315573','Add New Medal - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('17','::1','1356315581','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('18','::1','1356315694','Manage Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('19','::1','1356315696','Manage Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('20','::1','1356315705','Manage Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('21','::1','1356316410','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('22','::1','1356316410',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('23','::1','1356316416','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('24','::1','1356316427','Undisable Member - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('25','::1','1356316431','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('26','::1','1356316436','Add Member - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('27','::1','1356316446','Add Member - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('28','::1','1356316449','Add Member - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('29','::1','1356316465','Add Member - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('30','::1','1356316467','Add Member - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('31','::1','1356316486','Add Member - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('32','::1','1356316488','Add Member - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('33','::1','1356316490','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('34','::1','1356316495','Add New Medal - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('35','::1','1356316906','Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('36','::1','1356317006','Add New Medal - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('37','::1','1356317009','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('38','::1','1356317015','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('39','::1','1356317016',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('40','::1','1356317023','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('41','::1','1356317026','Add Member - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('42','::1','1356317035','Add Member - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('43','::1','1356317037','Add Member - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('44','::1','1356317051','Add Member - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('45','::1','1356317053','Add Member - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('46','::1','1356317057','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('47','::1','1356317057',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('48','::1','1356317444','Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('49','::1','1356343787','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('50','::1','1356343788',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('51','::1','1356343797','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('52','::1','1356343797',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('53','::1','1356343819','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('54','::1','1356343819',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('55','::1','1356344054','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('56','::1','1356344055',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('57','::1','1356344149','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('58','::1','1356344149',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('59','::1','1356344735','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('60','::1','1356344735',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('61','::1','1356344736',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('62','::1','1356344754','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('63','::1','1356344754',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('64','::1','1356344783','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('65','::1','1356344783',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('66','::1','1356344797','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('67','::1','1356344797',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('68','::1','1356344820','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('69','::1','1356344820',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('70','::1','1356344841','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('71','::1','1356344842',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('72','::1','1356344874','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('73','::1','1356344874',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('74','::1','1356344875',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('75','::1','1356344900','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('76','::1','1356344900',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('77','::1','1356344901',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('78','::1','1356344955','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('79','::1','1356344956',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('80','::1','1356344989','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('81','::1','1356344989',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('82','::1','1356345009','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('83','::1','1356345009',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('84','::1','1356345010',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('85','::1','1356345032','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('86','::1','1356345032',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('87','::1','1356345082','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('88','::1','1356345082',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('89','::1','1356345130','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('90','::1','1356345130',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('91','::1','1356345154','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('92','::1','1356345155',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('93','::1','1356345168','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('94','::1','1356345168',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('95','::1','1356345169',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('96','::1','1356345192','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('97','::1','1356345192',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('98','::1','1356345227','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('99','::1','1356345227',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('100','::1','1356345228',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('101','::1','1356345252','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('102','::1','1356345252',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('103','::1','1356345270','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('104','::1','1356345271',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('105','::1','1356345307','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('106','::1','1356345307',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('107','::1','1356345323','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('108','::1','1356345323',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('109','::1','1356345471','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('110','::1','1356345471',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('111','::1','1356345484','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('112','::1','1356345485',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('113','::1','1356345511','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('114','::1','1356345512',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('115','::1','1356345515','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('116','::1','1356345515',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('117','::1','1356345527','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('118','::1','1356345528',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('119','::1','1356345528',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('120','::1','1356345542','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('121','::1','1356345543',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('122','::1','1356345573','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('123','::1','1356345573',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('124','::1','1356345574',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('125','::1','1356345736','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('126','::1','1356345736',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('127','::1','1356346505','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('128','::1','1356346505',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('129','::1','1356346506',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('130','::1','1356346564','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('131','::1','1356346565',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('132','::1','1356346574','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('133','::1','1356346575',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('134','::1','1356346604','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('135','::1','1356346604',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('136','::1','1356346681','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('137','::1','1356346682',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('138','::1','1356346683',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('139','::1','1356346693','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('140','::1','1356346693',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('141','::1','1356346709','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('142','::1','1356346709',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('143','::1','1356346725','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('144','::1','1356346726',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('145','::1','1356346744','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('146','::1','1356346744',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('147','::1','1356346809','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('148','::1','1356346809',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('149','::1','1356346810',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('150','::1','1356346847','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('151','::1','1356346848',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('152','::1','1356373919',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('153','::1','1356373922',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('154','::1','1356373978',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('155','::1','1356374223',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('156','::1','1356374229',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('157','::1','1356374234',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('158','::1','1356374284',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('159','::1','1356374556',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('160','::1','1356374711',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('161','::1','1356375180',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('162','::1','1356375188',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('163','::1','1356375188',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('164','::1','1356375269',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('165','::1','1356375307',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('166','::1','1356375317',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('167','::1','1356375317',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('168','::1','1356375376',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('169','::1','1356375415','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('170','::1','1356375420','Website Settings - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('171','::1','1356375430',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('172','::1','1356375454',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('173','::1','1356375506',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('174','::1','1356375739',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('175','::1','1356376144','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('176','::1','1356376148','Website Settings - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('177','::1','1356376154',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('178','::1','1356376200',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('179','::1','1356376218',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('180','::1','1356376303',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('181','::1','1356376313','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('182','::1','1356376318','Website Settings - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('183','::1','1356376425','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('184','::1','1356376425',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('185','::1','1356376476','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('186','::1','1356376476',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('187','::1','1356376536','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('188','::1','1356376536',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('189','::1','1356376553','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('190','::1','1356376553',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('191','::1','1356376556','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('192','::1','1356376556',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('193','::1','1356643342',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('194','::1','1356643351',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('195','::1','1356643352',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('196','::1','1356643358','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('197','::1','1356643361','Website Settings - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('198','::1','1356643368',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('199','68.12.45.165','1358796614',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('200','68.12.45.165','1358796642',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('201','68.12.45.165','1358796644',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('202','68.12.45.165','1358796647','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('203','68.12.45.165','1358796650','Website Settings - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('204','68.12.45.165','1358796674','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('205','68.12.45.165','1358796678','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('206','68.12.45.165','1358796693','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('207','68.12.45.165','1358796704','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('208','68.12.45.165','1358796759','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('209','68.12.45.165','1358796774','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('210','68.12.45.165','1358796777','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('211','68.12.45.165','1358796778','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('212','68.12.45.165','1358796780','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('213','68.12.45.165','1358796802','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('214','68.12.45.165','1358796887','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('215','68.12.45.165','1358796914','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('216','68.12.45.165','1358796919','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('217','68.12.45.165','1358796922','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('218','68.12.45.165','1358796937','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('219','68.12.45.165','1358796940','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('220','68.12.45.165','1358796943','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('221','68.12.45.165','1358796962','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('222','68.12.45.165','1358796966','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('223','68.12.45.165','1358796969','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('224','68.12.45.165','1358796985','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('225','68.12.45.165','1358796988','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('226','68.12.45.165','1358796992','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('227','68.12.45.165','1358797020','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('228','68.12.45.165','1358797025','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('229','68.12.45.165','1358797028','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('230','68.12.45.165','1358797046','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('231','68.12.45.165','1358797049','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('232','68.12.45.165','1358797050','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('233','68.12.45.165','1358797090','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('234','68.12.45.165','1358797113','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('235','68.12.45.165','1358797119','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('236','68.12.45.165','1358797135','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('237','68.12.45.165','1358797152','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('238','68.12.45.165','1358797155','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('239','68.12.45.165','1358797172','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('240','68.12.45.165','1358797189','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('241','68.12.45.165','1358797193','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('242','68.12.45.165','1358797197','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('243','68.12.45.165','1358797214','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('244','68.12.45.165','1358797231','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('245','68.12.45.165','1358797232','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('246','68.12.45.165','1358797235','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('247','68.12.45.165','1358797239','Add Member - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('248','68.12.45.165','1358797271','Add Member - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('249','68.12.45.165','1358797275','Add Member - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('250','68.12.45.165','1358797276','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('251','68.12.45.165','1358797283','Test Member\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('252','68.12.45.165','1358797307',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('253','68.12.45.165','1358797309','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('254','68.12.45.165','1358797311',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('255','68.12.45.165','1358797316',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('256','68.12.45.165','1358797489','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('257','68.12.45.165','1358797495','Add Member - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('258','68.12.45.165','1358797514','Add Member - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('259','68.12.45.165','1358797561','Add Member - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('260','68.12.45.165','1358797564',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('261','68.12.45.165','1358804514','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('262','68.12.45.165','1358806197','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('263','68.12.45.165','1358806204','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('264','68.12.45.165','1358806209','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('265','68.12.45.165','1358806243','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('266','68.12.45.165','1358806246','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('267','68.12.45.165','1358806253','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('268','68.12.45.165','1358806263','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('269','68.12.45.165','1358806265','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('270','68.12.45.165','1358806296','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('271','68.12.45.165','1358806302','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('272','68.12.45.165','1358806316','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('273','68.12.45.165','1358806324','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('274','68.12.45.165','1358806331','Disable a Member - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('275','68.12.45.165','1358806335','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('276','68.12.45.165','1358806371','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('277','68.12.45.165','1358806376','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('278','68.12.45.165','1358806381','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('279','68.12.45.165','1358806429','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('280','68.12.45.165','1358806471','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('281','68.12.45.165','1358806477','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('282','68.12.45.165','1358806481','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('283','68.12.45.165','1358806498','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('284','68.12.45.165','1358806501','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('285','68.12.45.165','1358806505','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('286','68.12.45.165','1358806936','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('287','68.12.45.165','1358806941','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('288','68.12.45.165','1358806946','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('289','68.12.45.165','1358806947','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('290','68.12.45.165','1358806949','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('291','68.12.45.165','1358806952','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('292','68.12.45.165','1358806971','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('293','68.12.45.165','1358806984','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('294','68.12.45.165','1358806997','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('295','68.12.45.165','1358807013','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('296','68.12.45.165','1358807038','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('297','68.12.45.165','1358807042','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('298','68.12.45.165','1358807058','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('299','68.12.45.165','1358807061','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('300','68.12.45.165','1358807070','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('301','68.12.45.165','1358807072','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('302','68.12.45.165','1358807074','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('303','68.12.45.165','1358807076','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('304','68.12.45.165','1358807078','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('305','68.12.45.165','1358807079','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('306','68.12.45.165','1358807093','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('307','68.12.45.165','1358807108','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('308','68.12.45.165','1358807129','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('309','68.12.45.165','1358807148','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('310','68.12.45.165','1358807151','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('311','68.12.45.165','1358807168','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('312','68.12.45.165','1358807183','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('313','68.12.45.165','1358807224','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('314','68.12.45.165','1358807334','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('315','68.12.45.165','1358807341','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('316','68.12.45.165','1358807378','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('317','68.12.45.165','1358807383','Manage Rank Categories - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('318','68.12.45.165','1358807486','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('319','68.12.45.165','1358807569','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('320','68.12.45.165','1358807573','Manage Rank Categories - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('321','68.12.45.165','1358807576','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('322','68.12.45.165','1358807582','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('323','68.12.45.165','1358807623','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('324','68.12.45.165','1358807628','Manage Rank Categories - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('325','68.12.45.165','1358807636','Manage Rank Categories - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('326','68.12.45.165','1358807669','Manage Rank Categories - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('327','68.12.45.165','1358807672','Manage Rank Categories - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('328','68.12.45.165','1358807682','Manage Rank Categories - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('329','68.12.45.165','1358807701','Manage Rank Categories - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('330','68.12.45.165','1358807704','Manage Rank Categories - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('331','68.12.45.165','1358807709','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('332','68.12.45.165','1358807715','Add New Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('333','68.12.45.165','1358807775','Add New Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('334','68.12.45.165','1358807778','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('335','68.12.45.165','1358807779','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('336','68.12.45.165','1358807795','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('337','68.12.45.165','1358807813','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('338','68.12.45.165','1358807818','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('339','68.12.45.165','1358807994','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('340','68.12.45.165','1358808014','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('341','68.12.45.165','1358808017','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('342','68.12.45.165','1358808029','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('343','68.12.45.165','1358808106','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('344','68.12.45.165','1358808117','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('345','68.12.45.165','1358808127','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('346','68.12.45.165','1358808150','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('347','68.12.45.165','1358808152','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('348','68.12.45.165','1358808153','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('349','68.12.45.165','1358808156','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('350','68.12.45.165','1358808189','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('351','68.12.45.165','1358808245','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('352','68.12.45.165','1358808274','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('353','68.12.45.165','1358808295','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('354','68.12.45.165','1358808335','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('355','68.12.45.165','1358808371','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('356','68.12.45.165','1358808482','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('357','68.12.45.165','1358808485','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('358','68.12.45.165','1358808492','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('359','68.12.45.165','1358808493','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('360','68.12.45.165','1358808495','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('361','68.12.45.165','1358808500','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('362','68.12.45.165','1358808534','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('363','68.12.45.165','1358808581','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('364','68.12.45.165','1358808594','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('365','68.12.45.165','1358808597','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('366','68.12.45.165','1358808638','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('367','68.12.45.165','1358808642','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('368','68.12.45.165','1358808697','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('369','68.12.45.165','1358808701','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('370','68.12.45.165','1358808733','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('371','68.12.45.165','1358808735','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('372','68.12.45.165','1358808742','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('373','68.12.45.165','1358808775','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('374','68.12.45.165','1358808787','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('375','68.12.45.165','1358808796','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('376','68.12.45.165','1358808801','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('377','68.12.45.165','1358808812','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('378','68.12.45.165','1358808819','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('379','68.12.45.165','1358808826','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('380','68.12.45.165','1358808880','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('381','68.12.45.165','1358808886','Add Member - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('382','198.254.249.220','1358808912',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('383','68.12.45.165','1358808945','Add Member - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('384','68.12.45.165','1358808948','Add Member - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('385','68.12.45.165','1358808953','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('386','68.12.45.165','1358808957','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('387','198.254.249.220','1358808961',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('388','198.254.249.220','1358808963',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('389','68.12.45.165','1358808963','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('390','198.254.249.220','1358808971','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('391','68.12.45.165','1358808976','Undisable Member - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('392','68.12.45.165','1358808983','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('393','68.12.45.165','1358808991','Disable a Member - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('394','68.12.45.165','1358809004','Disable a Member - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('395','68.12.45.165','1358809007','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('396','68.12.45.165','1358809009','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('397','68.12.45.165','1358809022','Delete Member - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('398','68.12.45.165','1358809032','Delete Member - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('399','68.12.45.165','1358809035','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('400','198.254.249.220','1358809038','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('401','68.12.45.165','1358809048','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('402','68.12.45.165','1358809055','Add New Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('403','198.254.249.220','1358809083','Edit Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('404','68.12.45.165','1358809145','Add New Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('405','68.12.45.165','1358809151','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('406','68.12.45.165','1358809155','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('407','68.12.45.165','1358809177','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('408','198.254.249.220','1358809180','Edit Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('409','198.254.249.220','1358809184','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('410','198.254.249.220','1358809188','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('411','68.12.45.165','1358809191','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('412','68.12.45.165','1358809193','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('413','198.254.249.220','1358809194','Edit Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('414','68.12.45.165','1358809197','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('415','68.12.45.165','1358809201','Add New Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('416','198.254.249.220','1358809207','Edit Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('417','198.254.249.220','1358809211','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('418','198.254.249.220','1358809212','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('419','198.254.249.220','1358809229','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('420','198.254.249.220','1358809232','Edit Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('421','198.254.249.220','1358809242','Edit Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('422','198.254.249.220','1358809246','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('423','68.12.45.165','1358809301','Add New Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('424','68.12.45.165','1358809306','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('425','68.12.45.165','1358809311','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('426','68.12.45.165','1358809319','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('427','68.12.45.165','1358809323','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('428','68.12.45.165','1358809328','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('429','68.12.45.165','1358809338','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('430','68.12.45.165','1358809343','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('431','68.12.45.165','1358809350','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('432','68.12.45.165','1358809354','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('433','68.12.45.165','1358809367','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('434','198.254.249.220','1358809385','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('435','68.12.45.165','1358809427','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('436','68.12.45.165','1358809441','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('437','68.12.45.165','1358809445','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('438','68.12.45.165','1358809461','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('439','68.12.45.165','1358809464','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('440','68.12.45.165','1358809490','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('441','68.12.45.165','1358809559','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('442','68.12.45.165','1358809570','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('443','68.12.45.165','1358809571','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('444','68.12.45.165','1358809583','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('445','68.12.45.165','1358809585','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('446','68.12.45.165','1358809597','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('447','68.12.45.165','1358809611','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('448','68.12.45.165','1358809617','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('449','68.12.45.165','1358809623','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('450','68.12.45.165','1358809625','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('451','68.12.45.165','1358809626','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('452','68.12.45.165','1358809629','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('453','68.12.45.165','1358809631','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('454','68.12.45.165','1358809634','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('455','68.12.45.165','1358809667','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('456','68.12.45.165','1358809678','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('457','68.12.45.165','1358809702','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('458','68.12.45.165','1358809709','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('459','68.12.45.165','1358809725','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('460','68.12.45.165','1358809728','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('461','68.12.45.165','1358809795','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('462','68.12.45.165','1358809811','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('463','68.12.45.165','1358809837','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('464','68.12.45.165','1358809844','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('465','68.12.45.165','1358809866',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('466','68.12.45.165','1358809891','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('467','68.12.45.165','1358809895','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('468','68.12.45.165','1358809907','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('469','70.199.81.78','1358809912',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('470','68.12.45.165','1358809914','Manage Games Played - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('471','70.199.81.78','1358809923','Sign Up - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('472','68.12.45.165','1358809937','Manage Games Played - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('473','68.12.45.165','1358809958','Manage Games Played - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('474','68.12.45.165','1358809995',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('475','68.12.45.165','1358810017','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('476','68.12.45.165','1358810022','Krazycrakker\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('477','68.12.45.165','1358810031',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('478','68.12.45.165','1358810035','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('479','68.12.45.165','1358810041','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('480','68.12.45.165','1358810113','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('481','68.12.45.165','1358810119','Demote Member - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('482','68.12.45.165','1358810120','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('483','68.12.45.165','1358810132','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('484','68.12.45.165','1358810134','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('485','68.12.45.165','1358810160','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('486','68.12.45.165','1358810232','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('487','68.12.45.165','1358810240','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('488','68.12.45.165','1358810252','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('489','68.12.45.165','1358810255','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('490','68.12.45.165','1358810267','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('491','68.12.45.165','1358810274','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('492','68.12.45.165','1358810322','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('493','68.12.45.165','1358810328','Add Member - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('494','68.12.45.165','1358810353','Add Member - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('495','68.12.45.165','1358810356','Add Member - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('496','68.12.45.165','1358810358','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('497','68.12.45.165','1358810363','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('498','68.12.45.165','1358810369','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('499','68.12.45.165','1358810373','Promote Member - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('500','68.12.45.165','1358810388','Promote Member - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('501','68.12.45.165','1358810393','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('502','68.12.45.165','1358810395','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('503','68.12.45.165','1358810399','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('504','68.12.45.165','1358810406',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('505','68.12.45.165','1358810409','Sign Up - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('506','70.199.81.78','1358810997','Sign Up - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('507','70.199.81.78','1358811003',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('508','68.12.45.165','1358811194',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('509','68.12.45.165','1358811209',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('510','68.12.45.165','1358811224',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('511','68.12.45.165','1358811225',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('512','68.12.45.165','1358811228','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('513','68.12.45.165','1358811233','View Member Applications - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('514','68.12.45.165','1358811257','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('515','68.12.45.165','1358811266','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('516','68.12.45.165','1358811279','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('517','68.12.45.165','1358811288','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('518','68.12.45.165','1358811386','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('519','68.12.45.165','1358811421','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('520','68.12.45.165','1358811496','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('521','24.113.152.194','1358811496',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('522','68.12.45.165','1358811500','Edit Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('523','24.147.19.45','1358811509',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('524','24.113.152.194','1358811510',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('525','24.113.152.194','1358811517','Sign Up - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('526','68.12.45.165','1358811530','Edit Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('527','68.12.45.165','1358811533','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('528','68.12.45.165','1358811535','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('529','68.12.45.165','1358811536',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('530','68.12.45.165','1358811544','PickleKillz\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('531','68.12.45.165','1358811546','Krazycrakker\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('532','68.12.45.165','1358811549','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('533','68.12.45.165','1358811551',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('534','24.147.19.45','1358811553','Sign Up - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('535','68.12.45.165','1358811558','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('536','24.113.152.194','1358811559','Sign Up - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('537','68.12.45.165','1358811564','Edit Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('538','24.113.152.194','1358811565',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('539','24.147.19.45','1358811646','Sign Up - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('540','68.12.45.165','1358811649','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('541','68.12.45.165','1358811651',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('542','24.147.19.45','1358811659',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('543','68.12.45.165','1358811666','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('544','68.12.45.165','1358811670','Member Application - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('545','68.12.45.165','1358811671','View Member Applications - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('546','68.12.45.165','1358811693','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('547','68.12.45.165','1358811701','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('548','68.12.45.165','1358811714','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('549','68.12.45.165','1358811716','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('550','68.12.45.165','1358811720','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('551','68.12.45.165','1358811725','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('552','68.12.45.165','1358811728','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('553','68.12.45.165','1358811731','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('554','24.113.152.194','1358811763',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('555','24.113.152.194','1358811765',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('556','68.12.45.165','1358811793','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('557','68.12.45.165','1358811798','Manage Games Played - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('558','68.12.45.165','1358811805','Manage Games Played - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('559','68.12.45.165','1358811814','Manage Games Played - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('560','24.113.152.194','1358811823','Andromada\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('561','68.12.45.165','1358811834','World of Tanks - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('562','68.12.45.165','1358811842','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('563','24.113.152.194','1358811847','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('564','68.12.45.165','1358811874','Add Games Played - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('565','68.12.45.165','1358811889','Add Games Played - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('566','68.12.45.165','1358811901','Add Games Played - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('567','68.12.45.165','1358811930','Add Games Played - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('568','65.24.111.221','1358811954',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('569','68.12.45.165','1358811966',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('570','68.12.45.165','1358811984','World of Tanks - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('571','68.12.45.165','1358811988','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('572','65.24.111.221','1358811991','Sign Up - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('573','68.12.45.165','1358811996','Add Games Played - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('574','68.12.45.165','1358812027','Add Games Played - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('575','68.12.45.165','1358812030','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('576','68.12.45.165','1358812032',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('577','65.24.111.221','1358812039','Sign Up - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('578','65.24.111.221','1358812046',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('579','68.12.45.165','1358812055','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('580','68.12.45.165','1358812069','Member Application - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('581','68.12.45.165','1358812073','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('582','68.12.45.165','1358812075','Member Application - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('583','68.12.45.165','1358812091','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('584','68.12.45.165','1358812093','View Member Applications - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('585','65.24.111.221','1358812105',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('586','68.12.45.165','1358812106','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('587','68.12.45.165','1358812111','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('588','68.12.45.165','1358812126','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('589','65.24.111.221','1358812127',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('590','68.12.45.165','1358812129','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('591','65.24.111.221','1358812129',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('592','68.12.45.165','1358812130','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('593','68.12.45.165','1358812133','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('594','68.12.45.165','1358812141','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('595','65.24.111.221','1358812160','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('596','65.24.111.221','1358812204','View Logs - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('597','68.12.45.165','1358812221','Create a Squad - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('598','68.12.45.165','1358812232','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('599','68.12.45.165','1358812247','Member Application - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('600','24.113.152.194','1358812247',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('601','24.113.152.194','1358812381','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('602','24.113.152.194','1358812437','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('603','68.12.45.165','1358812460',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('604','68.12.45.165','1358812463','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('605','68.12.45.165','1358812468','Create a Squad - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('606','65.24.111.221','1358812475','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('607','65.24.111.221','1358812494','World of Kung Fu - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('608','68.12.45.165','1358812495','Create a Squad - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('609','68.12.45.165','1358812499','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('610','65.24.111.221','1358812502','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('611','65.24.111.221','1358812507','Edit My Game Stats - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('612','68.12.45.165','1358812533','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('613','68.12.45.165','1358812536','World of Kung Fu Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('614','68.12.45.165','1358812545','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('615','68.12.45.165','1358812549','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('616','68.12.45.165','1358812553','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('617','68.12.45.165','1358812556','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('618','68.12.45.165','1358812580','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('619','68.12.45.165','1358812582','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('620','68.12.45.165','1358812584','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('621','65.24.111.221','1358812592','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('622','68.12.45.165','1358812592','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('623','68.12.45.165','1358812597','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('624','68.12.45.165','1358812607','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('625','65.24.111.221','1358812609','Apply to a Squad - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('626','68.12.45.165','1358812610','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('627','68.12.45.165','1358812622','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('628','24.113.152.194','1358812622',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('629','68.12.45.165','1358812627','View Squad Invitations - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('630','24.113.152.194','1358812627','View Squad Invitations - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('631','68.12.45.165','1358812632','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('632','68.12.45.165','1358812635','World of Kung Fu Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('633','65.24.111.221','1358812636','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('634','24.113.152.194','1358812653','World of Kung Fu - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('635','68.12.45.165','1358812660','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('636','65.24.111.221','1358812662','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('637','24.113.152.194','1358812664','World of Kung Fu Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('638','68.12.45.165','1358812672','World of Kung Fu Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('639','65.24.111.221','1358812676','World of Kung Fu Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('640','68.12.45.165','1358812716','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('641','24.113.152.194','1358812718','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('642','68.12.45.165','1358812740','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('643','68.12.45.165','1358812757','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('644','68.12.45.165','1358812760','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('645','24.113.152.194','1358812766','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('646','68.12.45.165','1358812770','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('647','68.12.45.165','1358812791','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('648','68.12.45.165','1358812796','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('649','68.12.45.165','1358812798','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('650','68.12.45.165','1358812801','World of Kung Fu Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('651','68.12.45.165','1358812823','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('652','24.113.152.194','1358812825','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('653','68.12.45.165','1358812829','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('654','24.113.152.194','1358812829','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('655','68.12.45.165','1358812849',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('656','68.12.45.165','1358812853','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('657','68.12.45.165','1358812857','World of Kung Fu Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('658','68.12.45.165','1358812860','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('659','68.12.45.165','1358812864','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('660','68.12.45.165','1358812867','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('661','68.12.45.165','1358812878','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('662','68.12.45.165','1358812881','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('663','68.12.45.165','1358812883','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('664','68.12.45.165','1358812886','World of Kung Fu Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('665','68.12.45.165','1358812890','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('666','68.12.45.165','1358812896','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('667','24.113.152.194','1358812900','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('668','24.113.152.194','1358812914','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('669','68.12.45.165','1358812914','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('670','24.113.152.194','1358812917','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('671','65.24.111.221','1358812922','View Squad Invitations - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('672','68.12.45.165','1358812925','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('673','65.24.111.221','1358812939','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('674','68.12.45.165','1358812946','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('675','68.12.45.165','1358812949','World of Kung Fu Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('676','65.24.111.221','1358812956','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('677','65.24.111.221','1358812959','World of Kung Fu Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('678','65.24.111.221','1358812962','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('679','68.12.45.165','1358812964','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('680','68.12.45.165','1358812999','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('681','68.12.45.165','1358813007','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('682','68.12.45.165','1358813024','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('683','68.12.45.165','1358813027','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('684','68.12.45.165','1358813034','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('685','68.12.45.165','1358813037','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('686','24.113.152.194','1358813052','World of Kung Fu Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('687','68.12.45.165','1358813053','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('688','65.24.111.221','1358813054','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('689','68.12.45.165','1358813057','World of Kung Fu Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('690','24.113.152.194','1358813057','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('691','68.12.45.165','1358813061','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('692','24.113.152.194','1358813061','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('693','68.12.45.165','1358813064','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('694','24.113.152.194','1358813066','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('695','24.113.152.194','1358813071','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('696','68.12.45.165','1358813084','Private Messages - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('697','68.12.45.165','1358813087','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('698','65.24.111.221','1358813088','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('699','65.24.111.221','1358813095','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('700','68.12.45.165','1358813097','World of Kung Fu Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('701','24.113.152.194','1358813099','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('702','65.24.111.221','1358813101','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('703','24.113.152.194','1358813102','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('704','68.12.45.165','1358813105','World of Kung Fu Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('705','65.24.111.221','1358813107','World of Kung Fu Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('706','68.12.45.165','1358813112','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('707','68.12.45.165','1358813118','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('708','65.24.111.221','1358813141','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('709','65.24.111.221','1358813149','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('710','68.12.45.165','1358813165','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('711','65.24.111.221','1358813178','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('712','65.24.111.221','1358813184','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('713','65.24.111.221','1358813213','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('714','65.24.111.221','1358813224','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('715','65.24.111.221','1358813274','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('716','65.24.111.221','1358813281','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('717','65.24.111.221','1358813284','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('718','65.24.111.221','1358813289','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('719','24.113.152.194','1358813484','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('720','68.12.45.165','1358813674','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('721','68.12.45.165','1358813677','World of Kung Fu Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('722','68.12.45.165','1358813691','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('723','68.12.45.165','1358813695','Modify Current Theme - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('724','65.24.111.221','1358813708','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('725','68.12.45.165','1358813709','Modify Current Theme - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('726','68.12.45.165','1358813718','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('727','68.12.45.165','1358813719',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('728','65.24.111.221','1358813720','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('729','68.12.45.165','1358813724','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('730','24.113.152.194','1358813727','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('731','68.12.45.165','1358813728','PurpleFlower\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('732','65.24.111.221','1358813731','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('733','68.12.45.165','1358813736',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('734','65.24.111.221','1358813739',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('735','68.12.45.165','1358813756','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('736','65.24.111.221','1358813766',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('737','68.12.45.165','1358813771','Modify Current Theme - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('738','68.12.45.165','1358813777',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('739','68.12.45.165','1358813788','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('740','68.12.45.165','1358813801','Modify Current Theme - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('741','24.113.152.194','1358813801','World of Kung Fu - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('742','24.147.19.45','1358813803',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('743','68.12.45.165','1358813804','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('744','65.24.111.221','1358813807','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('745','68.12.45.165','1358813809','Website Settings - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('746','24.113.152.194','1358813813','World of Tanks - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('747','65.24.111.221','1358813815','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('748','24.113.152.194','1358813817','World of Kung Fu - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('749','68.12.45.165','1358813822',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('750','65.24.111.221','1358813827','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('751','68.12.45.165','1358813828','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('752','68.12.45.165','1358813833','Website Settings - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('753','24.113.152.194','1358813834','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('754','68.12.45.165','1358813841','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('755','65.24.111.221','1358813846',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('756','24.147.19.45','1358813848',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('757','24.113.152.194','1358813850','World of Kung Fu Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('758','68.12.45.165','1358813850','Modify Current Theme - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('759','24.147.19.45','1358813853',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('760','68.12.45.165','1358813860','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('761','65.24.111.221','1358813861','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('762','68.12.45.165','1358813866','Modify Current Theme - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('763','65.24.111.221','1358813867','World of Kung Fu Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('764','24.147.19.45','1358813869','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('765','68.12.45.165','1358813870','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('766','68.12.45.165','1358813874','Website Settings - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('767','68.12.45.165','1358813882',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('768','24.147.19.45','1358813894','World of Kung Fu Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('769','68.12.45.165','1358813895','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('770','65.24.111.221','1358813897',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('771','68.12.45.165','1358813900','Website Settings - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('772','68.12.45.165','1358813908',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('773','65.24.111.221','1358813913',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('774','68.12.45.165','1358813922','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('775','68.12.45.165','1358813927','Website Settings - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('776','65.24.111.221','1358813929',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('777','65.24.111.221','1358813934',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('778','68.12.45.165','1358813934',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('779','24.147.19.45','1358813939','View Squad Invitations - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('780','68.12.45.165','1358813947','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('781','68.12.45.165','1358813951','Website Settings - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('782','65.24.111.221','1358813963','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('783','68.12.45.165','1358813964','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('784','68.12.45.165','1358813966','World of Kung Fu Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('785','65.24.111.221','1358813973','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('786','65.24.111.221','1358813976','World of Kung Fu Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('787','65.24.111.221','1358813980','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('788','68.12.45.165','1358813986','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('789','65.24.111.221','1358813988','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('790','68.12.45.165','1358813993','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('791','65.24.111.221','1358813997','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('792','24.147.19.45','1358814000',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('793','65.24.111.221','1358814001','World of Kung Fu Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('794','65.24.111.221','1358814023','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('795','65.24.111.221','1358814025','World of Kung Fu Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('796','65.24.111.221','1358814028','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('797','68.12.45.165','1358814051',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('798','68.12.45.165','1358814053','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('799','68.12.45.165','1358814072','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('800','68.12.45.165','1358814079','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('801','68.12.45.165','1358814084','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('802','68.12.45.165','1358814103','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('803','65.24.111.221','1358814103','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('804','68.12.45.165','1358814106','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('805','68.12.45.165','1358814110','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('806','68.12.45.165','1358814121','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('807','68.12.45.165','1358814124','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('808','68.12.45.165','1358814125','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('809','65.24.111.221','1358814132','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('810','24.113.152.194','1358814136',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('811','24.113.152.194','1358814141','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('812','65.24.111.221','1358814163','View Member Applications - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('813','68.12.45.165','1358814172','View Member Applications - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('814','24.113.152.194','1358814172','View Member Applications - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('815','68.12.45.165','1358814206','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('816','68.12.45.165','1358814211','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('817','68.12.45.165','1358814216','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('818','68.12.45.165','1358814224','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('819','65.24.111.221','1358814227','Registration Options - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('820','68.12.45.165','1358814230','Registration Options - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('821','65.24.111.221','1358814235','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('822','68.12.45.165','1358814236','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('823','68.12.45.165','1358814241','Member Application - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('824','24.113.152.194','1358814241','World of Kung Fu - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('825','24.113.152.194','1358814242','World of Kung Fu - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('826','65.24.111.221','1358814243','Edit Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('827','68.12.45.165','1358814248','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('828','24.113.152.194','1358814260','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('829','68.12.45.165','1358814260','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('830','68.12.45.165','1358814282','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('831','24.113.152.194','1358814295',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('832','65.24.111.221','1358814304','Edit Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('833','65.24.111.221','1358814307','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('834','65.24.111.221','1358814326','Edit My Game Stats - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('835','65.24.111.221','1358814384',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('836','65.24.111.221','1358814387','PurpleFlower\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('837','65.24.111.221','1358814408','World of Kung Fu Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('838','68.12.45.165','1358814409',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('839','68.12.45.165','1358814424','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('840','68.12.45.165','1358814432','Website Settings - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('841','68.12.45.165','1358814442',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('842','68.12.45.165','1358814450','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('843','68.12.45.165','1358814453','World of Kung Fu Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('844','65.24.111.221','1358814460','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('845','24.113.152.194','1358814464','Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('846','65.24.111.221','1358814465','World of Kung Fu Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('847','68.12.45.165','1358814468','PurpleFlower\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('848','68.12.45.165','1358814473',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('849','68.12.45.165','1358814476','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('850','68.12.45.165','1358814482','Edit My Game Stats - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('851','68.12.45.165','1358814487',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('852','24.113.152.194','1358814490',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('853','68.12.45.165','1358814500','Dada\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('854','65.24.111.221','1358814509','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('855','65.24.111.221','1358814523','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('856','68.12.45.165','1358814523','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('857','68.12.45.165','1358814525',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('858','68.12.45.165','1358814545',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('859','24.113.152.194','1358814549',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('860','68.12.45.165','1358814557',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('861','68.12.45.165','1358814559',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('862','68.12.45.165','1358814565','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('863','68.12.45.165','1358814582','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('864','65.24.111.221','1358814588','News - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('865','65.24.111.221','1358814594','History - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('866','65.24.111.221','1358814598','Tournaments - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('867','68.12.45.165','1358814604','Edit Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('868','65.24.111.221','1358814604','Rules - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('869','65.24.111.221','1358814615','World of Tanks - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('870','65.24.111.221','1358814621','World of Kung Fu - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('871','65.24.111.221','1358814626','Recruiters - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('872','24.147.19.45','1358814630',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('873','68.12.45.165','1358814635','Edit Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('874','68.12.45.165','1358814638','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('875','24.113.152.194','1358814644',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('876','68.12.45.165','1358814645','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('877','68.12.45.165','1358814648',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('878','65.24.111.221','1358814651','Recruiters - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('879','24.113.152.194','1358814664','Dada\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('880','65.24.111.221','1358814670','Krazycrakker\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('881','24.113.152.194','1358814683',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('882','68.12.45.165','1358814684',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('883','24.113.152.194','1358814687','Andromada\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('884','68.12.45.165','1358814689','Andromada\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('885','68.12.45.165','1358814695',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('886','24.113.152.194','1358814703',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('887','24.113.152.194','1358814706','Dada\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('888','68.12.45.165','1358814715',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('889','65.24.111.221','1358814716',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('890','68.12.45.165','1358814717',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('891','65.24.111.221','1358814718','Dada\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('892','68.12.45.165','1358814724','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('893','68.12.45.165','1358814727','Website Settings - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('894','68.12.45.165','1358814735',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('895','24.113.152.194','1358814738','Andromada\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('896','68.12.45.165','1358814740','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('897','24.113.152.194','1358814748','World of Kung Fu Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('898','68.12.45.165','1358814750','Add New Medal - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('899','68.12.45.165','1358814753','Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('900','24.113.152.194','1358814774','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('901','68.12.45.165','1358814774','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('902','68.12.45.165','1358814779','Manage Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('903','24.113.152.194','1358814788','World of Kung Fu Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('904','68.12.45.165','1358814788','Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('905','68.12.45.165','1358814803','Manage Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('906','68.12.45.165','1358814809','Manage Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('907','68.12.45.165','1358814814','Manage Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('908','24.113.152.194','1358814823','Dada\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('909','68.12.45.165','1358814823','Manage Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('910','68.12.45.165','1358814826','Manage Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('911','68.12.45.165','1358814829','Manage Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('912','68.12.45.165','1358814835','Manage Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('913','24.113.152.194','1358814836','Andromada\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('914','68.12.45.165','1358814838','Manage Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('915','68.12.45.165','1358814842','Manage Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('916','24.113.152.194','1358814843','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('917','65.24.111.221','1358814845','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('918','68.12.45.165','1358814847','Manage Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('919','24.113.152.194','1358814847','Edit Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('920','65.24.111.221','1358814849',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('921','68.12.45.165','1358814850','Manage Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('922','68.12.45.165','1358814856','Manage Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('923','68.12.45.165','1358814860','Manage Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('924','68.12.45.165','1358814865','Manage Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('925','68.12.45.165','1358814871','Manage Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('926','65.24.111.221','1358814871','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('927','68.12.45.165','1358814875','Manage Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('928','68.12.45.165','1358814878','Manage Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('929','68.12.45.165','1358814881','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('930','68.12.45.165','1358814886','Award Medal - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('931','24.147.19.45','1358814895','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('932','65.24.111.221','1358814903','Award Medal - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('933','68.12.45.165','1358814914','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('934','65.24.111.221','1358814937',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('935','24.147.19.45','1358814946','Edit Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('936','68.12.45.165','1358814957','Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('937','65.24.111.221','1358814958','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('938','65.24.111.221','1358814962','World of Kung Fu Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('939','65.24.111.221','1358814976','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('940','65.24.111.221','1358814991','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('941','68.12.45.165','1358815000',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('942','68.12.45.165','1358815006','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('943','68.12.45.165','1358815010','Award Medal - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('944','24.113.152.194','1358815033','Edit Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('945','24.113.152.194','1358815036','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('946','68.12.45.165','1358815039','Award Medal - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('947','24.113.152.194','1358815040','Andromada\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('948','68.12.45.165','1358815042','Andromada\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('949','65.24.111.221','1358815048','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('950','68.12.45.165','1358815060','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('951','68.12.45.165','1358815064','View Logs - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('952','65.24.111.221','1358815071','Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('953','24.147.19.45','1358815074','Edit Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('954','68.12.45.165','1358815087','View Logs - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('955','68.12.45.165','1358815110','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('956','24.147.19.45','1358815118','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('957','65.24.111.221','1358815123','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('958','68.12.45.165','1358815125','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('959','24.147.19.45','1358815131',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('960','24.147.19.45','1358815132',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('961','68.12.45.165','1358815196','World of Kung Fu - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('962','68.12.45.165','1358815201',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('963','68.12.45.165','1358815204','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('964','68.12.45.165','1358815207','World of Kung Fu Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('965','24.113.152.194','1358815213',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('966','24.113.152.194','1358815218','Andromada\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('967','68.12.45.165','1358815229','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('968','68.12.45.165','1358815232','Private Messages - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('969','68.12.45.165','1358815236','Compose Message - Private Messages - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('970','71.252.177.26','1358815239',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('971','71.252.177.26','1358815250','Sign Up - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('972','68.12.45.165','1358815257','Compose Message - Private Messages - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('973','68.12.45.165','1358815260','Private Messages - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('974','68.12.45.165','1358815262',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('975','68.12.45.165','1358815268','Andromada\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('976','68.12.45.165','1358815280',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('977','68.12.45.165','1358815286','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('978','71.252.177.26','1358815293','Sign Up - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('979','68.12.45.165','1358815320','Private Messages - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('980','68.12.45.165','1358815344',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('981','68.12.45.165','1358815348','Andromada\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('982','68.12.45.165','1358815353',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('983','68.12.45.165','1358815356','Dada\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('984','68.12.45.165','1358815360',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('985','68.12.45.165','1358815362','PurpleFlower\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('986','68.12.45.165','1358815379','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('987','68.12.45.165','1358815383','Revoke Medal - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('988','24.113.152.194','1358815428','Andromada\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('989','24.113.152.194','1358815434','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('990','71.252.177.26','1358815450',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('991','68.12.45.165','1358815456','Revoke Medal - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('992','68.12.45.165','1358815460','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('993','24.113.152.194','1358815460','Private Messages - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('994','68.12.45.165','1358815461','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('995','68.12.45.165','1358815465','View Logs - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('996','24.113.152.194','1358815475','Compose Message - Private Messages - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('997','68.12.45.165','1358815482','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('998','24.113.152.194','1358815484','Compose Message - Private Messages - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('999','68.12.45.165','1358815485','View Member Applications - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1000','68.12.45.165','1358815504','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1001','24.113.152.194','1358815506','Compose Message - Private Messages - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1002','68.12.45.165','1358815507','View Member Applications - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1003','65.24.111.221','1358815508','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1004','24.113.152.194','1358815509','Private Messages - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1005','65.24.111.221','1358815514','View Member Applications - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1006','68.12.45.165','1358815518',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1007','24.113.152.194','1358815518','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1008','24.113.152.194','1358815520','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1009','68.12.45.165','1358815521','Private Messages - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1010','24.113.152.194','1358815524','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1011','68.12.45.165','1358815526','Compose Message - Private Messages - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1012','68.12.45.165','1358815539','Private Messages - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1013','24.113.152.194','1358815548','View Member Applications - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1014','65.24.111.221','1358815550',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1015','68.12.45.165','1358815555','Private Messages - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1016','68.12.45.165','1358815559','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1017','65.24.111.221','1358815563',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1018','68.12.45.165','1358815566','View Member Applications - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1019','24.113.152.194','1358815577','Andromada\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1020','68.12.45.165','1358815586','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1021','68.12.45.165','1358815598','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1022','68.12.45.165','1358815621','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1023','24.113.152.194','1358815623','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1024','68.12.45.165','1358815624','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1025','68.12.45.165','1358815627','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1026','24.147.19.45','1358815646','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1027','24.147.19.45','1358815677','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1028','68.12.45.165','1358815715','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1029','24.113.152.194','1358815717','Andromada\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1030','68.12.45.165','1358815736','Manage Games Played - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1031','68.12.45.165','1358815747','Manage Games Played - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1032','24.147.19.45','1358815750','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1033','24.113.152.194','1358815757',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1034','68.12.45.165','1358815765','Manage Games Played - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1035','68.12.45.165','1358815768','Manage Games Played - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1036','68.12.45.165','1358815771','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1037','68.12.45.165','1358815790','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1038','24.113.152.194','1358816073','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1039','24.113.152.194','1358816149',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1040','24.113.152.194','1358816156','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1041','24.113.152.194','1358816189','Gatomo\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1042','24.113.152.194','1358816203','Andromada\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1043','24.113.152.194','1358816212','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1044','68.12.45.165','1358816217','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1045','24.113.152.194','1358816223','Edit Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1046','68.12.45.165','1358816225','Manage Games Played - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1047','68.12.45.165','1358816229','Manage Games Played - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1048','68.12.45.165','1358816235','Manage Games Played - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1049','68.12.45.165','1358816238','Manage Games Played - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1050','68.12.45.165','1358816241','Manage Games Played - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1051','24.113.152.194','1358816256','Edit Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1052','24.113.152.194','1358816259','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1053','68.12.45.165','1358816261','Manage Games Played - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1054','24.113.152.194','1358816262','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1055','68.12.45.165','1358816264','Manage Games Played - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1056','68.12.45.165','1358816265','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1057','24.113.152.194','1358816266','Gatomo\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1058','24.113.152.194','1358816273','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1059','68.12.45.165','1358816279','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1060','24.113.152.194','1358816282','Andromada\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1061','65.24.111.221','1358816288','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1062','24.147.19.45','1358816289','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1063','24.113.152.194','1358816294','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1064','24.147.19.45','1358816352','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1065','65.24.111.221','1358816353','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1066','68.12.45.165','1358816369','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1067','24.113.152.194','1358816370','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1068','68.12.45.165','1358816374','Manage Games Played - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1069','68.12.45.165','1358816378','Manage Games Played - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1070','24.113.152.194','1358816378','PickleKillz\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1071','24.113.152.194','1358816387','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1072','24.113.152.194','1358816391','Krazycrakker\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1073','68.12.45.165','1358816394','Manage Games Played - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1074','24.113.152.194','1358816396','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1075','24.113.152.194','1358816401','PhoenixFire\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1076','24.113.152.194','1358816405','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1077','68.12.45.165','1358816410','Manage Games Played - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1078','68.12.45.165','1358816412','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1079','24.113.152.194','1358816412','Rain Silves\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1080','24.113.152.194','1358816416','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1081','65.24.111.221','1358816421','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1082','24.113.152.194','1358816423','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1083','68.12.45.165','1358816454','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1084','68.12.45.165','1358816468','Manage Games Played - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1085','71.252.177.26','1358816822',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1086','71.252.177.26','1358816824',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1087','68.12.45.165','1358817176',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1088','24.113.152.194','1358817219','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1089','68.12.45.165','1358818246',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1090','24.147.19.45','1358818256','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1091','65.24.111.221','1358819430','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1092','65.24.111.221','1358819449',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1093','24.113.152.194','1358820063','Andromada\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1094','24.113.152.194','1358820076','World of Kung Fu Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1095','24.113.152.194','1358820098','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1096','24.113.152.194','1358820107',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1097','68.12.45.165','1358820407','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1098','68.12.45.165','1358820428','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1099','68.12.45.165','1358820443','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1100','68.12.45.165','1358820444','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1101','68.12.45.165','1358820447','World of Kung Fu Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1102','68.12.45.165','1358820458',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1103','68.12.45.165','1358820461','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1104','68.12.45.165','1358820483','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1105','68.12.45.165','1358820491','Private Messages - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1106','68.12.45.165','1358820495','Compose Message - Private Messages - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1107','68.12.45.165','1358820504',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1108','24.113.152.194','1358820870','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1109','24.147.19.45','1358821336',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1110','71.252.177.26','1358822432','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1111','24.113.152.194','1358824573','Gatomo\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1112','24.113.152.194','1358824611','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1113','24.113.152.194','1358824615','Andromada\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1114','68.12.45.165','1358826768','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1115','68.12.45.165','1358826772',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1116','98.116.134.181','1358826774',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1117','24.147.19.45','1358826788',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1118','68.12.45.165','1358826854','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1119','98.116.134.181','1358826857','Sign Up - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1120','68.12.45.165','1358826887','Member Application - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1121','68.12.45.165','1358826899','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1122','98.116.134.181','1358826907','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1123','68.12.45.165','1358826933','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1124','68.12.45.165','1358826936','World of Kung Fu Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1125','98.116.134.181','1358826938','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1126','98.116.134.181','1358826941','World of Kung Fu Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1127','68.12.45.165','1358826942',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1128','68.12.45.165','1358826946','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1129','98.116.134.181','1358826950',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1130','68.12.45.165','1358827085','View Member Applications - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1131','98.116.134.181','1358827091','Sign Up - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1132','98.116.134.181','1358827096',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1133','68.12.45.165','1358827118','View Member Applications - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1134','98.116.134.181','1358827137',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1135','98.116.134.181','1358827140',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1136','98.116.134.181','1358827220','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1137','68.12.45.165','1358827258','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1138','68.12.45.165','1358827276','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1139','98.116.134.181','1358827277','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1140','98.116.134.181','1358827280','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1141','98.116.134.181','1358827292','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1142','68.12.45.165','1358827296','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1143','68.12.45.165','1358827429',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1144','98.116.134.181','1358827465','Diplomacy - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1145','98.116.134.181','1358827477','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1146','68.12.45.165','1358827769','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1147','68.12.45.165','1358827776',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1148','24.113.152.194','1358832569','Dada\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1149','24.113.152.194','1358832577','World of Kung Fu Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1150','24.113.152.194','1358832596','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1151','24.113.152.194','1358832599',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1152','24.113.152.194','1358832616','BT123\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1153','24.113.152.194','1358832619',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1154','24.113.152.194','1358832647','Recruiters - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1155','24.113.152.194','1358832694','Tournaments - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1156','24.113.152.194','1358832699','Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1157','24.113.152.194','1358832734','Private Messages - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1158','24.113.152.194','1358832742','Compose Message - Private Messages - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1159','24.113.152.194','1358832751',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1160','71.252.177.26','1358871841','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1161','71.252.177.26','1358874589','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1162','68.12.45.165','1358909897',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1163','173.206.162.201','1358909910',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1164','68.12.45.165','1358909926','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1165','173.206.162.201','1358909931','Sign Up - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1166','68.12.45.165','1358909933','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1167','68.12.45.165','1358909951','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1168','68.12.45.165','1358910011','View Member Applications - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1169','173.206.162.201','1358910041','Sign Up - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1170','68.12.45.165','1358910050','View Member Applications - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1171','173.206.162.201','1358910060',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1172','68.12.45.165','1358910065','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1173','68.12.45.165','1358910070','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1174','173.206.162.201','1358910091',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1175','173.206.162.201','1358910093',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1176','68.12.45.165','1358910101','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1177','68.12.45.165','1358910103','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1178','68.12.45.165','1358910118',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1179','173.206.162.201','1358910120',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1180','68.12.45.165','1358910137','News - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1181','68.12.45.165','1358910138','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1182','173.206.162.201','1358910141','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1183','68.12.45.165','1358910158','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1184','173.206.162.201','1358910163','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1185','68.12.45.165','1358910175','Edit Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1186','173.206.162.201','1358910178','Edit Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1187','68.12.45.165','1358910195','Edit Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1188','68.12.45.165','1358910198','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1189','68.12.45.165','1358910222',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1190','68.12.45.165','1358910225','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1191','173.206.162.201','1358910264','Edit Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1192','173.206.162.201','1358910269','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1193','68.12.45.165','1358910293','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1194','173.206.162.201','1358910294','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1195','68.12.45.165','1358910301','Dr_Patton123\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1196','173.206.162.201','1358910304','Dr_Patton123\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1197','68.12.45.165','1358910352','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1198','173.206.162.201','1358910355','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1199','68.12.45.165','1358910696','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1200','68.12.45.165','1358910700','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1201','68.12.45.165','1358910704','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1202','68.12.45.165','1358910722',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1203','68.12.45.165','1358910820','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1204','68.12.45.165','1358911254',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1205','173.206.162.201','1358911261','Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1206','99.241.76.5','1358911311',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1207','99.241.76.5','1358911336',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1208','99.241.76.5','1358911356','Sign Up - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1209','173.206.162.201','1358911380','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1210','99.241.76.5','1358911384','Sign Up - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1211','99.241.76.5','1358911404','Sign Up - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1212','99.241.76.5','1358911407',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1213','68.12.45.165','1358911414','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1214','99.241.76.5','1358911416',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1215','68.12.45.165','1358911417','View Member Applications - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1216','68.12.45.165','1358911449','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1217','68.12.45.165','1358911455','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1218','99.241.76.5','1358911459',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1219','99.241.76.5','1358911460',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1220','68.12.45.165','1358911491','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1221','68.12.45.165','1358911493','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1222','99.241.76.5','1358911494',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1223','68.12.45.165','1358911505','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1224','99.241.76.5','1358911507','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1225','68.12.45.165','1358911526','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1226','99.241.76.5','1358911531','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1227','68.12.45.165','1358911538','Edit Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1228','99.241.76.5','1358911540','Edit Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1229','99.241.76.5','1358911562','Edit Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1230','68.12.45.165','1358911564','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1231','99.241.76.5','1358911566','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1232','99.241.76.5','1358911571','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1233','68.12.45.165','1358911577','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1234','99.241.76.5','1358911579','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1235','68.12.45.165','1358911590',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1236','68.12.45.165','1358911610','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1237','68.12.45.165','1358911618','Private Messages - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1238','68.12.45.165','1358911629',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1239','99.241.76.5','1358911726','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1240','68.12.45.165','1358911793',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1241','173.206.162.201','1358911831','World of Kung Fu - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1242','173.206.162.201','1358911835','World of Tanks - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1243','68.12.45.165','1358912524',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1244','173.206.162.201','1358912836','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1245','68.12.45.165','1358912837','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1246','68.12.45.165','1358912841','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1247','68.12.45.165','1358913072','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1248','68.12.45.165','1358913076','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1249','68.12.45.165','1358913080','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1250','68.12.45.165','1358913083','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1251','68.12.45.165','1358913143','Dr_Patton123\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1252','68.12.45.165','1358913194',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1253','68.12.45.165','1358913324','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1254','68.12.45.165','1358913330','View Logs - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1255','68.12.45.165','1358913434',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1256','68.12.45.165','1358913455','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1257','68.12.45.165','1358913459','View Logs - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1258','24.113.152.194','1358913460',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1259','24.113.152.194','1358913477',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1260','68.12.45.165','1358913547','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1261','68.12.45.165','1358913688','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1262','68.12.45.165','1358913785','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1263','68.12.45.165','1358913800',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1264','24.113.152.194','1358913811',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1265','24.113.152.194','1358913830',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1266','68.12.45.165','1358913836','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1267','68.12.45.165','1358913842','Reset Member Password - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1268','68.12.45.165','1358913875','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1269','68.12.45.165','1358913896','Website Settings - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1270','68.12.45.165','1358913913',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1271','24.113.152.194','1358913922',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1272','68.12.45.165','1358913930',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1273','24.113.152.194','1358913941',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1274','24.113.152.194','1358913970',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1275','68.12.45.165','1358914016','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1276','68.12.45.165','1358914019','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1277','68.12.45.165','1358914024','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1278','68.12.45.165','1358914030','Demote Member - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1279','68.12.45.165','1358914040','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1280','68.12.45.165','1358914044','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1281','68.12.45.165','1358914047','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1282','68.12.45.165','1358914080','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1283','68.12.45.165','1358914083','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1284','68.12.45.165','1358914087','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1285','68.12.45.165','1358914091','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1286','68.12.45.165','1358914098','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1287','68.12.45.165','1358914134','Reset Member Password - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1288','68.12.45.165','1358914143','Reset Member Password - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1289','68.12.45.165','1358914146','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1290','68.12.45.165','1358914157',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1291','68.12.45.165','1358914160','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1292','24.113.152.194','1358914169',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1293','24.113.152.194','1358914170',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1294','139.67.207.40','1358914426',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1295','139.67.207.40','1358914444','Sign Up - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1296','139.67.207.40','1358914561','Sign Up - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1297','139.67.207.40','1358914567',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1298','68.12.45.165','1358914672','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1299','68.12.45.165','1358914676','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1300','24.113.152.194','1358914823',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1301','24.113.152.194','1358914840',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1302','24.113.152.194','1358914854',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1303','24.113.152.194','1358914856',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1304','24.113.152.194','1358914864','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1305','68.12.45.165','1358914890','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1306','68.12.45.165','1358914892','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1307','68.12.45.165','1358914893','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1308','68.12.45.165','1358914898','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1309','24.113.152.194','1358914901',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1310','68.12.45.165','1358914934','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1311','68.12.45.165','1358914938','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1312','68.12.45.165','1358914959','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1313','99.241.76.5','1358915234',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1314','68.12.45.165','1358915271','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1315','68.12.45.165','1358915280','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1316','68.12.45.165','1358915340','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1317','68.12.45.165','1358915342','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1318','68.12.45.165','1358915343','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1319','68.12.45.165','1358915358','View Logs - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1320','68.12.45.165','1358915398','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1321','68.12.45.165','1358915404','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1322','68.12.45.165','1358915481',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1323','68.12.45.165','1358915549','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1324','68.12.45.165','1358915553','View Logs - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1325','68.12.45.165','1358915565',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1326','24.113.152.194','1358915577','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1327','68.12.45.165','1358915579','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1328','68.12.45.165','1358915589',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1329','68.12.45.165','1358915606','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1330','24.113.152.194','1358915617','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1331','68.12.45.165','1358915618','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1332','68.12.45.165','1358915622','View Logs - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1333','24.113.152.194','1358915630','View Member Applications - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1334','68.12.45.165','1358915646',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1335','24.113.152.194','1358915653','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1336','68.12.45.165','1358915661','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1337','68.12.45.165','1358915672',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1338','68.12.45.165','1358915680','Andromada\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1339','24.113.152.194','1358915692','Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1340','68.12.45.165','1358915700','World of Kung Fu Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1341','24.113.152.194','1358915708','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1342','68.12.45.165','1358915709',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1343','24.113.152.194','1358915713','World of Kung Fu Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1344','68.12.45.165','1358915741',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1345','99.241.76.5','1358917747',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1346','99.241.76.5','1358917758',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1347','99.241.76.5','1358917759',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1348','99.241.76.5','1358917766','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1349','99.241.76.5','1358917775','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1350','99.241.76.5','1358917875','Rules - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1351','99.241.76.5','1358917879','History - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1352','99.241.76.5','1358917974','Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1353','99.241.76.5','1358918008','Recruiters - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1354','99.241.76.5','1358918014','World of Tanks - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1355','99.241.76.5','1358918018','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1356','99.241.76.5','1358918042','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1357','99.241.76.5','1358918070','World of Kung Fu Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1358','99.241.76.5','1358918079',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1359','24.113.152.194','1358932219','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1360','99.241.76.5','1358951154',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1361','99.241.76.5','1358951174','Diplomacy - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1362','99.241.76.5','1358951180','History - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1363','99.241.76.5','1358951193','Recruiters - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1364','99.241.76.5','1358951206','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1365','99.241.76.5','1358951235','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1366','71.252.177.26','1358963131','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1367','71.252.177.26','1358981442','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1368','71.252.177.26','1358985511','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1369','68.12.45.165','1358993870',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1370','68.12.45.165','1358993874','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1371','71.252.177.26','1358994560',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1372','71.252.177.26','1358994563',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1373','68.12.45.165','1358994821',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1374','68.12.45.165','1358994824','PhoenixFire\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1375','68.12.45.165','1358994828','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1376','68.12.45.165','1358994834','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1377','68.12.45.165','1358994838','Create a Squad - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1378','71.252.177.26','1358994841','World of Tanks - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1379','71.252.177.26','1358994850','World of Tanks - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1380','68.12.45.165','1358994887','Create a Squad - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1381','68.12.45.165','1358994890','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1382','68.12.45.165','1358994905','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1383','71.252.177.26','1358994911','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1384','68.12.45.165','1358994916','World of Tanks Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1385','71.252.177.26','1358994917','World of Tanks Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1386','68.12.45.165','1358994922','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1387','68.12.45.165','1358994925','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1388','68.12.45.165','1358994940','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1389','68.12.45.165','1358994942','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1390','68.12.45.165','1358994948','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1391','71.252.177.26','1358994952','World of Tanks Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1392','68.12.45.165','1358994960','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1393','71.252.177.26','1358994963','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1394','68.12.45.165','1358994965','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1395','71.252.177.26','1358994972','World of Tanks Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1396','68.12.45.165','1358994973','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1397','68.12.45.165','1358994976','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1398','71.252.177.26','1358994977','View Squad Invitations - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1399','68.12.45.165','1358994984','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1400','71.252.177.26','1358994990','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1401','71.252.177.26','1358994996','World of Tanks Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1402','68.12.45.165','1358995008','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1403','68.12.45.165','1358995011','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1404','71.252.177.26','1358995011','World of Tanks - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1405','68.12.45.165','1358995015','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1406','71.252.177.26','1358995016','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1407','68.12.45.165','1358995018','World of Tanks Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1408','71.252.177.26','1358995020','World of Tanks Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1409','68.12.45.165','1358995023','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1410','68.12.45.165','1358995029','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1411','68.12.45.165','1358995030','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1412','68.12.45.165','1358995042',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1413','68.12.45.165','1358995045','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1414','68.12.45.165','1358995048','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1415','68.12.45.165','1358995055','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1416','68.12.45.165','1358995057','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1417','68.12.45.165','1358995063','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1418','68.12.45.165','1358995065','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1419','71.252.177.26','1358995076','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1420','68.12.45.165','1358995080','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1421','68.12.45.165','1358995086','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1422','68.12.45.165','1358995089','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1423','68.12.45.165','1358995093','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1424','68.12.45.165','1358995094','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1425','68.12.45.165','1358995110','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1426','68.12.45.165','1358995113','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1427','68.12.45.165','1358995116','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1428','68.12.45.165','1358995130','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1429','68.12.45.165','1358995133','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1430','68.12.45.165','1358995140','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1431','68.12.45.165','1358995142','View Member Applications - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1432','71.252.177.26','1358995153','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1433','68.12.45.165','1358995155','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1434','68.12.45.165','1358995159','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1435','68.12.45.165','1358995167','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1436','68.12.45.165','1358995170','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1437','68.12.45.165','1358995178','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1438','68.12.45.165','1358995183','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1439','71.252.177.26','1358995191','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1440','68.12.45.165','1358995198','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1441','68.12.45.165','1358995239','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1442','68.12.45.165','1358995242','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1443','71.252.177.26','1358995246','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1444','68.12.45.165','1358995248','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1445','68.12.45.165','1358995291','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1446','68.12.45.165','1358995295','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1447','68.12.45.165','1358995299','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1448','68.12.45.165','1358995303','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1449','68.12.45.165','1358995309','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1450','68.12.45.165','1358995312','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1451','68.12.45.165','1358995319','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1452','68.12.45.165','1358995323','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1453','68.12.45.165','1358995330','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1454','68.12.45.165','1358995333','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1455','68.12.45.165','1358995339','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1456','71.252.177.26','1358995347','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1457','71.252.177.26','1358995350','World of Tanks Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1458','68.12.45.165','1358995353','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1459','71.252.177.26','1358995356','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1460','68.12.45.165','1358995357','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1461','71.252.177.26','1358995369','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1462','68.12.45.165','1358995372','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1463','68.12.45.165','1358995377','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1464','68.12.45.165','1358995380','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1465','71.252.177.26','1358995386','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1466','71.252.177.26','1358995388','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1467','71.252.177.26','1358995395','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1468','71.252.177.26','1358995407','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1469','71.252.177.26','1358995410','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1470','71.252.177.26','1358995413','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1471','71.252.177.26','1358995429','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1472','71.252.177.26','1358995432','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1473','71.252.177.26','1358995435','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1474','71.252.177.26','1358995445','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1475','71.252.177.26','1358995448','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1476','71.252.177.26','1358995459','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1477','71.252.177.26','1358995477','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1478','71.252.177.26','1358995480','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1479','68.12.45.165','1358995480','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1480','68.12.45.165','1358995484','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1481','68.12.45.165','1358995490','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1482','71.252.177.26','1358995491','View Member Applications - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1483','68.12.45.165','1358995493','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1484','68.12.45.165','1358995494','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1485','68.12.45.165','1358995498','View Member Applications - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1486','68.12.45.165','1358998043','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1487','68.12.45.165','1358998083','Recruiters - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1488','68.12.45.165','1358998093','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1489','68.12.45.165','1358998096','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1490','68.12.45.165','1358998100','World of Tanks Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1491','68.12.45.165','1358998121','World of Tanks Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1492','139.67.207.40','1358998133',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1493','68.12.45.165','1358998137','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1494','139.67.207.40','1358998150',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1495','68.12.45.165','1358998153','Registration Options - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1496','139.67.207.40','1358998162',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1497','68.12.45.165','1358998163','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1498','68.12.45.165','1358998174','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1499','139.67.207.40','1358998183',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1500','139.67.207.40','1358998192',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1501','139.67.207.40','1358998204',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1502','68.12.45.165','1358998213','World of Tanks Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1503','68.12.45.165','1358998217',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1504','139.67.207.40','1358998219',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1505','68.12.45.165','1358998223','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1506','68.12.45.165','1358998225','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1507','68.12.45.165','1358998226','World of Tanks Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1508','68.12.45.165','1358998232','MasterLemon\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1509','139.67.207.40','1358998235',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1510','68.12.45.165','1358998241','Compose Message - Private Messages - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1511','68.12.45.165','1358998247',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1512','139.67.207.40','1358998256',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1513','68.12.45.165','1358998314','World of Tanks Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1514','139.67.207.40','1358998334',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1515','139.67.207.40','1358998339','World of Tanks - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1516','139.67.207.40','1358998346',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1517','139.67.207.40','1358998371',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1518','139.67.207.40','1358998372',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1519','139.67.207.40','1358998380','View Squad Invitations - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1520','68.12.45.165','1358998403',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1521','68.12.45.165','1358998407','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1522','68.12.45.165','1358998410','World of Tanks Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1523','68.12.45.165','1358998419',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1524','68.12.45.165','1358998428','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1525','68.12.45.165','1358998436','World of Tanks - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1526','68.12.45.165','1358998439','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1527','139.67.207.40','1358998441','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1528','139.67.207.40','1358998457','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1529','139.67.207.40','1358998462','Edit Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1530','68.12.45.165','1358998471','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1531','68.12.45.165','1358998530',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1532','139.67.207.40','1358998531','Edit Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1533','68.12.45.165','1358998532','MasterLemon\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1534','139.67.207.40','1358998534','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1535','68.12.45.165','1358998537',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1536','139.67.207.40','1358998547',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1537','139.67.207.40','1358998551','News - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1538','139.67.207.40','1358998554','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1539','139.67.207.40','1358998597','Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1540','139.67.207.40','1358998629','Tournaments - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1541','139.67.207.40','1358998648','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1542','139.67.207.40','1358998650','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1543','139.67.207.40','1358998668','Diplomacy - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1544','139.67.207.40','1358998677','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1545','139.67.207.40','1358998684','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1546','139.67.207.40','1358998690','Edit My Game Stats - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1547','139.67.207.40','1358998700','Edit My Game Stats - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1548','139.67.207.40','1358998724',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1549','71.252.177.26','1358998960',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1550','71.252.177.26','1358998971','World of Tanks Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1551','71.252.177.26','1358998978','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1552','71.252.177.26','1358998985','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1553','71.252.177.26','1358998995','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1554','71.252.177.26','1358999001','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1555','71.252.177.26','1358999006','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1556','71.252.177.26','1358999009','World of Tanks Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1557','71.252.177.26','1358999015','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1558','71.252.177.26','1358999018','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1559','71.252.177.26','1358999028','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1560','71.252.177.26','1358999031','World of Tanks Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1561','71.252.177.26','1359011283','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1562','71.252.177.26','1359043140','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1563','24.113.152.194','1359050099',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1564','71.252.177.26','1359063743','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1565','24.113.152.194','1359087011',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1566','24.113.152.194','1359087749','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1567','24.113.152.194','1359087757','View Member Applications - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1568','24.113.152.194','1359087854','View Member Applications - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1569','24.113.152.194','1359087866','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1570','24.113.152.194','1359087980',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1571','24.113.152.194','1359088049','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1572','24.113.152.194','1359088055','View Member Applications - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1573','24.113.152.194','1359090143','View Member Applications - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1574','24.113.152.194','1359093273',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1575','24.113.152.194','1359134663',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1576','24.113.152.194','1359134680',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1577','24.113.152.194','1359134696',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1578','24.113.152.194','1359134714',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1579','24.113.152.194','1359134734',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1580','24.113.152.194','1359134735',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1581','24.113.152.194','1359134740','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1582','24.113.152.194','1359134745','View Member Applications - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1583','24.113.152.194','1359134756','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1584','24.113.152.194','1359134759','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1585','71.252.177.26','1359152360','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1586','71.252.177.26','1359152366','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1587','71.252.177.26','1359152375','View Member Applications - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1588','71.252.177.26','1359152380',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1589','71.252.177.26','1359159019',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1590','71.252.177.26','1359159465',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1591','71.252.177.26','1359159997',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1592','71.252.177.26','1359178810',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1593','71.252.177.26','1359227076',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1594','66.249.76.146','1359238857',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1595','66.249.76.146','1359239490','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1596','66.249.76.146','1359239601','News - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1597','66.249.76.146','1359239655','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1598','66.249.76.146','1359239707','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1599','66.249.76.146','1359239761','Diplomacy - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1600','66.249.76.146','1359239816','Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1601','66.249.76.146','1359239871','Sign Up - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1602','66.249.76.146','1359239926','Recruiters - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1603','66.249.76.146','1359239996','World of Tanks - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1604','66.249.76.146','1359240012','Tournaments - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1605','66.249.76.146','1359240445','Rules - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1606','66.249.76.146','1359240740','History - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1607','66.249.76.146','1359240741','World of Kung Fu - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1608','66.249.76.146','1359242784','Gatomo\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1609','66.249.76.146','1359243016','Dada\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1610','66.249.76.146','1359243289','PurpleFlower\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1611','66.249.76.146','1359243291','Rain Silves\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1612','66.249.76.146','1359243292','Dodger\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1613','66.249.76.146','1359243293','Andromada\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1614','66.249.76.146','1359244285','PhoenixFire\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1615','66.249.76.146','1359244286','mcsquigs\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1616','66.249.76.146','1359244288','Krazycrakker\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1617','66.249.76.146','1359244589','Dr_Patton123\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1618','66.249.76.146','1359244890','MasterLemon\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1619','68.12.45.165','1359245031',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1620','68.12.45.165','1359245044',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1621','68.12.45.165','1359245046',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1622','66.249.76.146','1359245047','World of Kung Fu Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1623','68.12.45.165','1359245056','World of Tanks Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1624','68.12.45.165','1359245062','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1625','68.12.45.165','1359245181','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1626','68.12.45.165','1359245184','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1627','66.249.76.146','1359245287','World of Tanks Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1628','66.249.76.146','1359245588','Recruiters - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1629','66.249.76.146','1359245756',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1630','68.12.45.165','1359245892','World of Kung Fu - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1631','68.12.45.165','1359245895','World of Tanks - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1632','68.12.45.165','1359245898',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1633','68.12.45.165','1359245963','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1634','68.12.45.165','1359245967','View Logs - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1635','68.12.45.165','1359245979',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1636','68.12.45.165','1359245982','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1637','68.12.45.165','1359245985','View Member Applications - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1638','68.12.45.165','1359245990',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1639','66.249.76.146','1359246246','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1640','71.252.177.26','1359246315',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1641','66.249.76.146','1359246532','Edit My Game Stats - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1642','66.249.76.146','1359246690','Recruiters - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1643','66.249.76.146','1359246852',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1644','66.249.76.146','1359247145','Apply to a Squad - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1645','66.249.76.146','1359247303','Apply to a Squad - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1646','71.252.177.26','1359247508',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1647','66.249.76.146','1359247662','BT123\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1648','66.249.76.146','1359248566','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1649','71.252.177.26','1359250471',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1650','68.12.45.165','1359252281','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1651','68.12.45.165','1359252286',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1652','71.252.177.26','1359253308',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1653','68.12.45.165','1359258723','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1654','68.12.45.165','1359258763','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1655','68.12.45.165','1359258765',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1656','68.12.45.165','1359258779','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1657','68.12.45.165','1359258781',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1658','68.12.45.165','1359258894','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1659','68.12.45.165','1359258897',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1660','68.12.45.165','1359259143','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1661','68.12.45.165','1359259144',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1662','68.12.45.165','1359263526','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1663','68.12.45.165','1359263528',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1664','68.12.45.165','1359264367','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1665','68.12.45.165','1359264369',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1666','68.12.45.165','1359264757','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1667','68.12.45.165','1359264767',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1668','71.252.177.26','1359288404',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1669','71.252.177.26','1359301746',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1670','24.113.152.194','1359303998',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1671','24.113.152.194','1359304016',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1672','24.113.152.194','1359304021','News - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1673','24.113.152.194','1359304029','News - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1674','71.252.177.26','1359305296',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1675','68.12.45.165','1359306010',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1676','68.12.45.165','1359306012','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1677','68.12.45.165','1359306014','View Member Applications - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1678','68.12.45.165','1359306023','News - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1679','68.12.45.165','1359308768',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1680','68.12.45.165','1359308773','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1681','68.12.45.165','1359308776',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1682','71.252.177.26','1359309786',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1683','68.12.45.165','1359309894','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1684','68.12.45.165','1359309896',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1685','71.252.177.26','1359312256',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1686','71.252.177.26','1359312266',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1687','71.252.177.26','1359312277',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1688','68.12.45.165','1359312963',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1689','68.12.45.165','1359312970',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1690','82.170.57.165','1359313357',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1691','82.170.57.165','1359313374',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1692','82.170.57.165','1359313383',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1693','82.170.57.165','1359313387','World of Kung Fu - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1694','82.170.57.165','1359313410',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1695','82.170.57.165','1359313420','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1696','82.170.57.165','1359313433','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1697','82.170.57.165','1359313462','World of Kung Fu Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1698','82.170.57.165','1359313482','Recruiters - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1699','82.170.57.165','1359313495','World of Kung Fu - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1700','82.170.57.165','1359313501','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1701','68.12.45.165','1359313901',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1702','68.12.45.165','1359314025',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1703','68.12.45.165','1359314030',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1704','68.12.45.165','1359314037',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1705','68.12.45.165','1359314039',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1706','68.12.45.165','1359314043','Sign Up - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1707','68.12.45.165','1359314148',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1708','71.252.177.26','1359316064',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1709','68.12.45.165','1359316618','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1710','71.252.177.26','1359320026',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1711','173.206.162.201','1359320426',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1712','173.206.162.201','1359320432','View Squad Invitations - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1713','75.141.202.154','1359320441',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1714','173.206.162.201','1359320460',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1715','173.206.162.201','1359320480','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1716','24.113.152.194','1359320504',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1717','173.206.162.201','1359320513','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1718','75.141.202.154','1359320515',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1719','173.206.162.201','1359320519','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1720','173.206.162.201','1359320525','World of Tanks Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1721','75.141.202.154','1359320531','View Squad Invitations - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1722','75.141.202.154','1359320532',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1723','75.141.202.154','1359320545','World of Tanks - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1724','173.206.162.201','1359320547','Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1725','75.141.202.154','1359320554',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1726','24.113.152.194','1359320564',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1727','75.141.202.154','1359320609','Sign Up - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1728','69.142.179.97','1359320630',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1729','69.142.179.97','1359320649','Sign Up - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1730','75.141.202.154','1359320681','Sign Up - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1731','75.141.202.154','1359320688',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1732','69.142.179.97','1359320714','Sign Up - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1733','69.142.179.97','1359320720',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1734','98.116.134.181','1359321490',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1735','71.252.177.26','1359322797',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1736','71.252.177.26','1359323003',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1737','173.206.162.201','1359325204',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1738','173.206.162.201','1359325210','Private Messages - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1739','173.206.162.201','1359325250','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1740','173.206.162.201','1359325253','Recruiters - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1741','173.206.162.201','1359325269','World of Tanks - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1742','173.206.162.201','1359325273','World of Kung Fu - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1743','173.206.162.201','1359325276','History - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1744','173.206.162.201','1359325285','Diplomacy - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1745','173.206.162.201','1359325288','Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1746','66.191.160.214','1359325505',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1747','66.191.160.214','1359325527',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1748','173.206.162.201','1359325561',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1749','66.191.160.214','1359325582',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1750','66.191.160.214','1359325593',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1751','66.191.160.214','1359325604','Sign Up - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1752','198.254.249.220','1359325622',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1753','68.12.45.165','1359325666',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1754','66.191.160.214','1359325680','Sign Up - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1755','66.191.160.214','1359325693',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1756','68.12.45.165','1359325723',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1757','68.12.45.165','1359325733',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1758','68.12.45.165','1359325734',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1759','68.12.45.165','1359325736','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1760','68.12.45.165','1359325741','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1761','68.12.45.165','1359325745','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1762','68.12.45.165','1359325752','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1763','68.12.45.165','1359325755','View Member Applications - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1764','68.12.45.165','1359325783','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1765','68.12.45.165','1359325787','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1766','68.12.45.165','1359325793','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1767','68.12.45.165','1359325794','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1768','68.12.45.165','1359325797','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1769','68.12.45.165','1359325802','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1770','68.12.45.165','1359325804','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1771','68.12.45.165','1359325810','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1772','68.12.45.165','1359325817','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1773','68.12.45.165','1359325818','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1774','68.12.45.165','1359325821','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1775','68.12.45.165','1359325824','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1776','68.12.45.165','1359325832','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1777','68.12.45.165','1359325834','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1778','68.12.45.165','1359325838','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1779','68.12.45.165','1359325845','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1780','68.12.45.165','1359325847','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1781','68.12.45.165','1359325851','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1782','68.12.45.165','1359325861','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1783','68.12.45.165','1359325863','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1784','68.12.45.165','1359325865',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1785','66.191.160.214','1359326030',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1786','66.191.160.214','1359326030',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1787','71.252.177.26','1359326801',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1788','68.12.45.165','1359328437',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1789','68.12.45.165','1359328441','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1790','68.12.45.165','1359328462',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1791','68.12.45.165','1359329505','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1792','68.12.45.165','1359329513','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1793','98.116.134.181','1359329514',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1794','68.12.45.165','1359329515','World of Tanks Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1795','98.116.134.181','1359329516','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1796','68.12.45.165','1359329523',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1797','68.12.45.165','1359329697','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1798','68.12.45.165','1359329722','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1799','68.12.45.165','1359329725','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1800','68.12.45.165','1359329727','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1801','68.12.45.165','1359329739','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1802','68.12.45.165','1359329741','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1803','68.12.45.165','1359329742','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1804','68.12.45.165','1359329778','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1805','68.12.45.165','1359329860','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1806','68.12.45.165','1359329870','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1807','68.12.45.165','1359329874','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1808','68.12.45.165','1359329876','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1809','68.12.45.165','1359329893','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1810','68.12.45.165','1359329896','Manage Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1811','68.12.45.165','1359329898',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1812','68.12.45.165','1359329932','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1813','68.12.45.165','1359330012',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1814','68.12.45.165','1359332015','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1815','68.12.45.165','1359332017','World of Tanks Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1816','68.12.45.165','1359332032','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1817','68.12.45.165','1359332039','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1818','70.199.65.40','1359332111',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1819','70.199.65.40','1359332128','World of Tanks - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1820','70.199.65.40','1359332131',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1821','70.199.65.40','1359332138','Sign Up - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1822','70.199.65.40','1359332179','Sign Up - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1823','68.12.45.165','1359332242',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1824','70.199.65.40','1359332259',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1825','70.199.65.40','1359332260',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1826','70.199.65.40','1359332276','View Squad Invitations - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1827','68.12.45.165','1359332721','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1828','68.12.45.165','1359332723','World of Tanks Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1829','68.12.45.165','1359335309','World of Tanks Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1830','68.12.45.165','1359335316',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1831','75.141.202.154','1359336871',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1832','75.141.202.154','1359336885',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1833','75.141.202.154','1359336885',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1834','75.141.202.154','1359336892','View Squad Invitations - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1835','75.141.202.154','1359336901','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1836','75.141.202.154','1359336915','Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1837','75.141.202.154','1359336952','World of Tanks - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1838','75.141.202.154','1359336959','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1839','75.141.202.154','1359336966','World of Tanks Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1840','75.141.202.154','1359336982','Mandosif\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1841','75.141.202.154','1359336999','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1842','75.141.202.154','1359337006','Edit Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1843','75.141.202.154','1359337117','Edit Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1844','75.141.202.154','1359337119','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1845','75.141.202.154','1359337122','Mandosif\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1846','75.141.202.154','1359337135','World of Tanks - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1847','75.141.202.154','1359337142','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1848','75.141.202.154','1359337152','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1849','75.141.202.154','1359337154','World of Tanks Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1850','75.141.202.154','1359337164','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1851','75.141.202.154','1359337166','Edit Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1852','75.141.202.154','1359337173','Edit Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1853','75.141.202.154','1359337175','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1854','68.12.45.165','1359340387',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1855','68.12.45.165','1359340394','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1856','68.12.45.165','1359340396','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1857','68.12.45.165','1359340399','World of Tanks Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1858','68.12.45.165','1359340406',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1859','68.12.45.165','1359340766',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1860','68.12.45.165','1359344472','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1861','68.12.45.165','1359344474','World of Tanks Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1862','68.12.45.165','1359344478',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1863','72.21.196.68','1359347405',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1864','66.249.76.121','1359398623',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1865','66.249.76.121','1359398791','News - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1866','66.249.76.121','1359399054','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1867','66.249.76.121','1359399960','Diplomacy - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1868','66.249.76.121','1359400263','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1869','66.249.76.121','1359401184','Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1870','66.249.76.121','1359401336','Sign Up - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1871','66.249.75.121','1359402197','Tournaments - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1872','66.249.75.121','1359403503','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1873','66.249.75.121','1359403713','Recruiters - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1874','66.249.75.121','1359404280','Rules - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1875','66.249.75.121','1359404936','History - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1876','66.249.75.121','1359405188','World of Kung Fu - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1877','66.249.76.121','1359405894','World of Tanks - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1878','66.249.76.121','1359408505','Dodger\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1879','66.249.76.121','1359408782','Krazycrakker\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1880','66.249.76.121','1359409479','Andromada\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1881','66.249.76.121','1359409512','Rain Silves\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1882','66.249.76.121','1359410191','Dada\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1883','66.249.76.121','1359411714','Gatomo\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1884','66.249.76.121','1359411795','PurpleFlower\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1885','66.249.76.121','1359411879','AngelsofHell119\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1886','66.249.76.121','1359412386','MasterLemon\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1887','66.249.76.121','1359412733','Dr_Patton123\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1888','66.249.76.121','1359413396','Heelfan\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1889','66.249.76.121','1359413735','mcsquigs\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1890','66.249.76.121','1359413934','PhoenixFire\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1891','66.249.76.121','1359414760','Mandosif\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1892','66.249.76.121','1359415105','World of Kung Fu Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1893','66.249.76.121','1359415905','World of Tanks Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1894','66.249.76.121','1359416640','Recruiters - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1895','66.249.76.121','1359417750',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1896','66.249.76.121','1359418928','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1897','66.249.76.121','1359419859','Admin\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1898','68.12.45.165','1359431087',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1899','68.12.45.165','1359431091','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1900','68.12.45.165','1359431098','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1901','68.12.45.165','1359431101','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1902','68.12.45.165','1359431104',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1903','68.12.45.165','1359431546','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1904','68.12.45.165','1359431548','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1905','68.12.45.165','1359431558','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1906','68.12.45.165','1359431636','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1907','68.12.45.165','1359431689','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1908','68.12.45.165','1359431800','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1909','68.12.45.165','1359431806','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1910','98.26.178.61','1359431922',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1911','98.26.178.61','1359431959','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1912','68.12.45.165','1359431978','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1913','68.12.45.165','1359431987','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1914','68.12.45.165','1359432123','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1915','68.12.45.165','1359432125','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1916','68.12.45.165','1359432130','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1917','68.12.45.165','1359432256','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1918','68.12.45.165','1359432258','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1919','68.12.45.165','1359432264','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1920','68.12.45.165','1359432268','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1921','68.12.45.165','1359432390',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1922','68.12.45.165','1359432405','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1923','68.12.45.165','1359432414',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1924','68.12.45.165','1359432463',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1925','68.12.45.165','1359432464','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1926','68.12.45.165','1359432467',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1927','68.12.45.165','1359432478',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1928','68.12.45.165','1359432538',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1929','68.12.45.165','1359433017','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1930','68.12.45.165','1359433020','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1931','68.12.45.165','1359433039','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1932','68.12.45.165','1359433043','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1933','68.12.45.165','1359433046','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1934','68.12.45.165','1359433053','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1935','68.12.45.165','1359433055','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1936','68.12.45.165','1359433059',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1937','68.12.45.165','1359433171','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1938','68.12.45.165','1359433250',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1939','68.12.45.165','1359433255','World of Tanks - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1940','68.12.45.165','1359433258',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1941','68.12.45.165','1359433284','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1942','68.12.45.165','1359433287','View Member Applications - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1943','68.12.45.165','1359433295',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1944','68.12.45.165','1359433309','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1945','68.12.45.165','1359433351','Dodger\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1946','68.12.45.165','1359433358',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1947','68.12.45.165','1359433383','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1948','68.12.45.165','1359433386',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1949','24.113.152.194','1359461618',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1950','24.113.152.194','1359461641','Recruiters - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1951','98.26.178.61','1359471109',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1952','98.26.178.61','1359471127','Sign Up - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1953','98.26.178.61','1359471206','Sign Up - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1954','98.26.178.61','1359471264',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1955','98.26.178.61','1359473105',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1956','173.206.162.201','1359476478',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1957','173.206.162.201','1359476499',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1958','173.206.162.201','1359476499',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1959','173.206.162.201','1359476531',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1960','173.206.162.201','1359476532','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1961','173.206.162.201','1359476535','PhoenixFire\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1962','173.206.162.201','1359476539','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1963','173.206.162.201','1359476540','World of Tanks Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1964','173.206.162.201','1359476557','Recruiters - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1965','173.206.162.201','1359476572','Diplomacy - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1966','173.206.162.201','1359476575','Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1967','66.249.76.121','1359485490',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1968','66.249.76.121','1359485859','News - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1969','66.249.76.121','1359485891','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1970','66.249.76.121','1359486149','Tournaments - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1971','66.249.76.121','1359486199','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1972','66.249.76.121','1359486251','Recruiters - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1973','66.249.76.121','1359486303','History - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1974','66.249.76.121','1359486356','Rules - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1975','66.249.76.121','1359486473','World of Kung Fu - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1976','98.26.178.61','1359491651',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1977','98.26.178.61','1359491688',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1978','98.26.178.61','1359491702','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1979','68.12.45.165','1359511047',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1980','68.12.45.165','1359512715',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1981','68.12.45.165','1359512717','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1982','68.12.45.165','1359512732','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1983','68.12.45.165','1359512734','View Member Applications - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1984','68.12.45.165','1359512740',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1985','68.12.45.165','1359512903','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1986','68.12.45.165','1359512905','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1987','68.12.45.165','1359512911','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1988','68.12.45.165','1359512912','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1989','68.12.45.165','1359512914','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1990','68.12.45.165','1359512917','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1991','68.12.45.165','1359512920','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1992','68.12.45.165','1359512929','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1993','68.12.45.165','1359512930','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1994','68.12.45.165','1359512931',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1995','68.12.45.165','1359512932','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1996','71.199.175.55','1359512935',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1997','71.199.175.55','1359512972','Sign Up - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1998','68.12.45.165','1359513002','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('1999','68.12.45.165','1359513007','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2000','68.12.45.165','1359513011','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2001','68.12.45.165','1359513022','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2002','68.12.45.165','1359513024','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2003','68.12.45.165','1359513027','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2004','68.12.45.165','1359513032','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2005','68.12.45.165','1359513034','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2006','68.12.45.165','1359513040',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2007','71.199.175.55','1359513040','Sign Up - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2008','71.199.175.55','1359513048',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2009','68.12.45.165','1359513048','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2010','68.12.45.165','1359513050','View Member Applications - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2011','68.12.45.165','1359513056','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2012','68.12.45.165','1359513060','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2013','68.12.45.165','1359513063','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2014','68.12.45.165','1359513070','Manage Squad - View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2015','68.12.45.165','1359513072','View Your Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2016','68.12.45.165','1359513073',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2017','71.199.175.55','1359513082',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2018','71.199.175.55','1359513101',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2019','71.199.175.55','1359513101',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2020','71.199.175.55','1359513106','View Squad Invitations - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2021','68.12.45.165','1359513553','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2022','68.12.45.165','1359513556','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2023','68.12.45.165','1359513558','World of Tanks Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2024','68.12.45.165','1359514797','World of Tanks Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2025','68.12.45.165','1359514808',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2026','68.12.45.165','1359514809','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2027','68.12.45.165','1359519349','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2028','68.12.45.165','1359519354','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2029','68.12.45.165','1359519356','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2030','68.12.45.165','1359519374','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2031','68.12.45.165','1359519377','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2032','68.12.45.165','1359519444','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2033','68.12.45.165','1359519453','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2034','68.12.45.165','1359519466','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2035','68.12.45.165','1359519474','View Logs - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2036','68.12.45.165','1359519479','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2037','68.12.45.165','1359519481','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2038','68.12.45.165','1359519488','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2039','68.12.45.165','1359519495','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2040','68.12.45.165','1359519512','View Logs - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2041','68.12.45.165','1359519519','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2042','68.12.45.165','1359519522','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2043','68.12.45.165','1359519528','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2044','68.12.45.165','1359519530','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2045','68.12.45.165','1359519532','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2046','68.12.45.165','1359519539','Set Member\'s Rank - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2047','68.12.45.165','1359519541','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2048','68.12.45.165','1359519543','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2049','68.12.45.165','1359519581','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2050','68.12.45.165','1359519657','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2051','68.12.45.165','1359519670','Mandosif\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2052','68.12.45.165','1359519678','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2053','68.12.45.165','1359519682','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2054','68.12.45.165','1359519714',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2055','68.12.45.165','1359519716','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2056','68.12.45.165','1359519719','Post News - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2057','98.116.134.181','1359519971',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2058','68.12.45.165','1359519975',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2059','68.12.45.165','1359519985',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2060','68.12.45.165','1359519985',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2061','68.12.45.165','1359519991','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2062','68.12.45.165','1359519997','Post News - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2063','68.12.45.165','1359520011','Post News - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2064','68.12.45.165','1359520013','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2065','68.12.45.165','1359520014','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2066','68.12.45.165','1359520017',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2067','68.12.45.165','1359520027','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2068','68.12.45.165','1359520030','News - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2069','68.12.45.165','1359520031',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2070','68.12.45.165','1359520042','Dodger\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2071','68.12.45.165','1359520052','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2072','68.12.45.165','1359520056','Edit Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2073','68.12.45.165','1359520077','Edit Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2074','68.12.45.165','1359520079','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2075','68.12.45.165','1359520081','Dodger\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2076','68.12.45.165','1359520084',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2077','68.12.45.165','1359520088','Dodger\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2078','68.12.45.165','1359520097',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2079','68.12.45.165','1359520124','Ranks - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2080','68.12.45.165','1359520135',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2081','68.12.45.165','1359520146','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2082','68.12.45.165','1359520149','View Member Applications - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2083','68.12.45.165','1359520310',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2084','75.141.202.154','1359520810',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2085','75.141.202.154','1359520825',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2086','75.141.202.154','1359520840',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2087','75.141.202.154','1359520840',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2088','75.141.202.154','1359520902',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2089','75.141.202.154','1359520903','News - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2090','75.141.202.154','1359520907','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2091','75.141.202.154','1359520942','Mandosif\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2092','75.141.202.154','1359520949','Mandosif\'s Profile - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2093','75.141.202.154','1359520959','World of Tanks Division - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2094','75.141.202.154','1359520966','Tournaments - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2095','75.141.202.154','1359520971','Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2096','75.141.202.154','1359520995','Medals - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2097','75.141.202.154','1359520997','History - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2098','75.141.202.154','1359521002','Rules - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2099','75.141.202.154','1359521004','Recruiters - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2100','75.141.202.154','1359521015','World of Tanks - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2101','75.141.202.154','1359521018','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2102','75.141.202.154','1359521031','View Squad Invitations - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2103','75.141.202.154','1359521036','Squads - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2104','75.141.202.154','1359521047',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2105','98.116.134.181','1359551849',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2106','68.12.45.165','1359586623',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2107','68.12.45.165','1359586627','Welcome to the New Iron Vengeance Website! - News - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2108','68.12.45.165','1359586632',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2109','68.12.45.165','1359586635','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2110','68.12.45.165','1359589964','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2111','68.12.45.165','1359589985','Members - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2112','68.12.45.165','1359592673','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2113','68.12.45.165','1359592710','Registration Options - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2114','68.12.45.165','1359592712','My Account - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2115','68.12.45.165','1359592729',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2116','68.12.45.165','1359594978',''); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2117','68.12.45.165','1359598211','World of Tanks - Top Players - '); -INSERT INTO hitcounter (hit_id, ipaddress, dateposted, pagename) VALUES ('2118','68.12.45.165','1359598214','Members - '); -CREATE TABLE `ipban` ( - `ipban_id` int(11) NOT NULL AUTO_INCREMENT, - `ipaddress` varchar(11) NOT NULL, - `exptime` int(11) NOT NULL, - PRIMARY KEY (`ipban_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - -CREATE TABLE `logs` ( - `log_id` int(11) NOT NULL AUTO_INCREMENT, - `member_id` int(11) NOT NULL, - `logdate` int(11) NOT NULL, - `ipaddress` varchar(255) NOT NULL, - `message` text NOT NULL, - PRIMARY KEY (`log_id`) -) ENGINE=MyISAM AUTO_INCREMENT=77 DEFAULT CHARSET=latin1; - -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('1','13','1356317057','::1','Auto awarded medal for recruiting 5 members.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('2','1','1358809004','68.12.45.165','Disabled Test Member.

Reason:
For Deletion'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('3','1','1358809032','68.12.45.165','Deleted Test Member from the website.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('4','1','1358810389','68.12.45.165','Krazycrakker promoted to rank General of IV from General.

Reason:
CIC'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('5','1','1358811246','68.12.45.165','Accepted Rain Silves\'s member application.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('6','1','1358811253','68.12.45.165','Removed the member application for Rain Silves.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('7','1','1358811288','68.12.45.165','Rain Silves promoted to rank Private from Trial Member.

Reason:
'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('8','1','1358811681','68.12.45.165','Accepted Andromada\'s member application.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('9','1','1358811688','68.12.45.165','Accepted PurpleFlower\'s member application.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('10','1','1358811714','68.12.45.165','Andromada promoted to rank Lieutenant Colonel from Trial Member.

Reason:
'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('11','1','1358811725','68.12.45.165','PurpleFlower promoted to rank Private from Trial Member.

Reason:
'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('12','1','1358812097','68.12.45.165','Accepted Dada\'s member application.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('13','1','1358812100','68.12.45.165','Removed the member application for Dada.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('14','1','1358812102','68.12.45.165','Removed the member application for PurpleFlower.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('15','1','1358812104','68.12.45.165','Removed the member application for Andromada.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('16','1','1358812126','68.12.45.165','Dada promoted to rank Major from Trial Member.

Reason:
'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('17','1','1358812292','68.12.45.165','Modified the member application.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('18','1','1358812304','68.12.45.165','Modified the member application component order.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('19','1','1358812307','68.12.45.165','Modified the member application component order.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('20','1','1358812311','68.12.45.165','Modified the member application component order.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('21','1','1358812313','68.12.45.165','Modified the member application component order.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('22','1','1358812319','68.12.45.165','Modified the member application component order.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('23','1','1358812391','68.12.45.165','Deleted a member application component.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('24','1','1358812400','68.12.45.165','Modified the member application.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('25','1','1358812410','68.12.45.165','Deleted a member application component.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('26','1','1358812427','68.12.45.165','Modified the member application.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('27','1','1358812442','68.12.45.165','Added a new member application component.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('28','1','1358812455','68.12.45.165','Modified the member application component order.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('29','1','1358815039','68.12.45.165','Andromada was awarded the Epic Medal medal.

Reason:
Founding the World of Kung Fu division, and recruiting like she\'s being paid to do it.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('30','1','1358815456','68.12.45.165','Andromada was stripped of the Epic Medal medal.

Reason:
Test of medal revocation.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('31','1','1358815570','68.12.45.165','Accepted PhoenixFire\'s member application.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('32','1','1358815584','68.12.45.165','Removed the member application for PhoenixFire.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('33','1','1358815621','68.12.45.165','PhoenixFire promoted to rank Lieutenant General from Trial Member.

Reason:
CC 1CC'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('34','1','1358827127','68.12.45.165','Accepted BT123\'s member application.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('35','1','1358910022','68.12.45.165','Removed the member application for BT123.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('36','1','1358910061','68.12.45.165','Accepted Dr_Patton123\'s member application.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('37','1','1358910101','68.12.45.165','Dr_Patton123 promoted to rank Sergeant from Trial Member.

Reason:
WoT DI - Current Member'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('38','1','1358911438','68.12.45.165','Accepted mcsquigs\'s member application.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('39','1','1358911491','68.12.45.165','mcsquigs promoted to rank Private from Trial Member.

Reason:
Pre Existing Member -WoT'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('40','1','1358913072','68.12.45.165','Dr_Patton123 promoted to rank Sergeant Major of IV from Sergeant.

Reason:
Ordered by Commander in Chief Krazycrakker.\r\nWrite-in by Dodger(recommender): Awarded position for exceptional performance of DI duties and friendly nature and attitude.\r\nWrite-in by CIC Krazycrakker: 1/22/13 Promotion For Dr_Patton123 SGTMGR of IV on the basis of Strong leadership and communication skills. Patton has gone above and beyond the call of duty to help IV become stronger. I Approve this Promotion Krazycrakker [CC CIC]'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('41','1','1358914143','68.12.45.165','Changed Krazycrakker\'s password.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('42','1','1358914890','68.12.45.165','Rain Silves promoted to rank Sergeant from Private.

Reason:
Promoted by PhoenixFire, approved by Krazycrakker.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('43','1','1358914934','68.12.45.165','mcsquigs promoted to rank Corporal from Private.

Reason:
Promoted by PhoenixFire, approved by Krazycrakker.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('44','1','1358915340','68.12.45.165','PurpleFlower promoted to rank Corporal from Private.

Reason:
Promoted by Andromada, approved by Krazycrakker.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('45','1','1358995148','68.12.45.165','Accepted MasterLemon\'s member application.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('46','1','1358995167','68.12.45.165','MasterLemon promoted to rank Recruit from Trial Member.

Reason:
'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('47','1','1359306018','68.12.45.165','Removed the member application for MasterLemon.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('48','1','1359306019','68.12.45.165','Removed the member application for mcsquigs.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('49','1','1359306021','68.12.45.165','Removed the member application for Dr_Patton123.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('50','1','1359325775','68.12.45.165','Accepted Heelfan\'s member application.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('51','1','1359325777','68.12.45.165','Accepted AngelsofHell119\'s member application.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('52','1','1359325780','68.12.45.165','Accepted Mandosif\'s member application.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('53','1','1359325793','68.12.45.165','Mandosif promoted to rank Recruit from Trial Member.

Reason:
'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('54','1','1359325802','68.12.45.165','Heelfan promoted to rank Recruit from Trial Member.

Reason:
'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('55','1','1359325817','68.12.45.165','AngelsofHell119 promoted to rank Recruit from Trial Member.

Reason:
'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('56','1','1359431558','68.12.45.165','Krazycrakker promoted to rank Major General from Brigadier General.

Reason:
'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('57','1','1359431801','68.12.45.165','Krazycrakker demoted to rank Brigadier General from Major General.

Reason:
'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('58','1','1359431987','68.12.45.165','Krazycrakker promoted to rank Major General from Brigadier General.

Reason:
'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('59','1','1359432130','68.12.45.165','Krazycrakker demoted to rank Brigadier General from Major General.

Reason:
'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('60','1','1359432264','68.12.45.165','Krazycrakker promoted to rank Major General from Brigadier General.

Reason:
'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('61','1','1359433039','68.12.45.165','Andromada promoted to rank Colonel from Lieutenant Colonel.

Reason:
'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('62','1','1359433053','68.12.45.165','Andromada demoted to rank Lieutenant Colonel from Colonel.

Reason:
'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('63','1','1359433291','68.12.45.165','Removed the member application for Heelfan.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('64','1','1359433292','68.12.45.165','Removed the member application for AngelsofHell119.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('65','1','1359433293','68.12.45.165','Removed the member application for Mandosif.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('66','1','1359512738','68.12.45.165','Accepted Wonderbread\'s member application.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('67','1','1359512911','68.12.45.165','Wonderbread promoted to rank 1st Lieutenant from Trial Member.

Reason:
'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('68','1','1359513022','68.12.45.165','Dr_Patton123 promoted to rank 2nd Lieutenant from Sergeant Major of IV.

Reason:
'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('69','1','1359513032','68.12.45.165','Dr_Patton123 demoted to rank Sergeant Major of IV from 2nd Lieutenant.

Reason:
'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('70','1','1359513052','68.12.45.165','Accepted greenbeans\'s member application.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('71','1','1359519374','68.12.45.165','greenbeans set to rank Trial Member from Trial Member.

Reason:
'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('72','1','1359519488','68.12.45.165','Dodger demoted to rank Recruit from General.

Reason:
'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('73','1','1359519528','68.12.45.165','Dodger promoted to rank General from Recruit.

Reason:
'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('74','1','1359519539','68.12.45.165','greenbeans promoted to rank Recruit from Trial Member.

Reason:
'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('75','5','1359520307','68.12.45.165','Removed the member application for greenbeans.'); -INSERT INTO logs (log_id, member_id, logdate, ipaddress, message) VALUES ('76','5','1359520309','68.12.45.165','Removed the member application for Wonderbread.'); -CREATE TABLE `medals` ( - `medal_id` int(11) NOT NULL AUTO_INCREMENT, - `name` varchar(255) NOT NULL, - `description` text NOT NULL, - `imageurl` text NOT NULL, - `imagewidth` int(11) NOT NULL, - `imageheight` int(11) NOT NULL, - `autodays` int(11) NOT NULL, - `autorecruits` int(11) NOT NULL, - `ordernum` int(11) NOT NULL, - PRIMARY KEY (`medal_id`) -) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=latin1; - -INSERT INTO medals (medal_id, name, description, imageurl, imagewidth, imageheight, autodays, autorecruits, ordernum) VALUES ('1','Tournament Champ','Awarded for winning a clan tournament.','/images/medals/medal_50d53680435d5.gif','105','30','0','0','1'); -INSERT INTO medals (medal_id, name, description, imageurl, imagewidth, imageheight, autodays, autorecruits, ordernum) VALUES ('2','Active Member Medal','Awarded for being an active clan member.','images/medals/medal_50d53660e7533.gif','105','30','0','0','3'); -INSERT INTO medals (medal_id, name, description, imageurl, imagewidth, imageheight, autodays, autorecruits, ordernum) VALUES ('3','Forum Hero','Awarded for being active on the forums.','images/medals/medal_50d536249845b.gif','105','30','0','0','5'); -INSERT INTO medals (medal_id, name, description, imageurl, imagewidth, imageheight, autodays, autorecruits, ordernum) VALUES ('4','Epic Medal','Awarded for being epic.','images/medals/medal_50d5361482940.gif','105','30','0','0','6'); -INSERT INTO medals (medal_id, name, description, imageurl, imagewidth, imageheight, autodays, autorecruits, ordernum) VALUES ('5','Rookie Medal','Awarded after 5 days in the clan.','images/medals/medal_50d535b39cf89.gif','105','30','0','0','11'); -INSERT INTO medals (medal_id, name, description, imageurl, imagewidth, imageheight, autodays, autorecruits, ordernum) VALUES ('6','Veteran Medal','Awarded after being in the clan for 90 days.','images/medals/medal_50d535a2dc0f8.gif','105','30','0','0','9'); -INSERT INTO medals (medal_id, name, description, imageurl, imagewidth, imageheight, autodays, autorecruits, ordernum) VALUES ('7','Old Timer Medal','Awarded for being in the clan for 120 days.','images/medals/medal_50d535ef43360.gif','105','30','0','0','8'); -INSERT INTO medals (medal_id, name, description, imageurl, imagewidth, imageheight, autodays, autorecruits, ordernum) VALUES ('8','Shooting Star Medal','Awarded for being in the clan 150 days.','images/medals/medal_50d536049e104.gif','105','30','0','0','7'); -INSERT INTO medals (medal_id, name, description, imageurl, imagewidth, imageheight, autodays, autorecruits, ordernum) VALUES ('9','Silver Shield Medal','Awarded to members who help the clan with Web Design/Graphics, etc...','images/medals/medal_50d53640a63e9.gif','105','30','0','0','4'); -INSERT INTO medals (medal_id, name, description, imageurl, imagewidth, imageheight, autodays, autorecruits, ordernum) VALUES ('10','Established Member Medal','Awarded after being in the clan for 30 days.','images/medals/medal_50d535cada75a.gif','105','30','0','0','10'); -INSERT INTO medals (medal_id, name, description, imageurl, imagewidth, imageheight, autodays, autorecruits, ordernum) VALUES ('11','Humanitarian Medal','Awarded for recruiting 5 members to the clan.','images/medals/medal_50d7c14e122fe.gif','0','0','0','5','2'); -CREATE TABLE `medals_members` ( - `medalmember_id` int(11) NOT NULL AUTO_INCREMENT, - `medal_id` int(11) NOT NULL, - `member_id` int(11) NOT NULL, - `dateawarded` int(11) NOT NULL, - PRIMARY KEY (`medalmember_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - -CREATE TABLE `memberapps` ( - `memberapp_id` int(11) NOT NULL AUTO_INCREMENT, - `username` varchar(50) NOT NULL, - `password` varchar(255) NOT NULL, - `password2` varchar(255) NOT NULL, - `email` varchar(255) NOT NULL, - `applydate` int(11) NOT NULL, - `ipaddress` varchar(25) NOT NULL, - `memberadded` int(11) NOT NULL, - `seenstatus` int(11) NOT NULL, - PRIMARY KEY (`memberapp_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - -CREATE TABLE `members` ( - `member_id` int(11) NOT NULL AUTO_INCREMENT, - `username` varchar(50) NOT NULL, - `password` varchar(255) NOT NULL, - `password2` varchar(255) NOT NULL, - `rank_id` int(11) NOT NULL, - `profilepic` text NOT NULL, - `avatar` text NOT NULL, - `email` varchar(255) NOT NULL, - `facebook` text NOT NULL, - `twitter` varchar(20) NOT NULL, - `youtube` varchar(40) NOT NULL, - `googleplus` text NOT NULL, - `maingame_id` int(11) NOT NULL, - `birthday` int(11) NOT NULL, - `datejoined` int(11) NOT NULL, - `lastlogin` int(11) NOT NULL, - `lastseen` int(11) NOT NULL, - `lastseenlink` text NOT NULL, - `loggedin` int(11) NOT NULL, - `lastpromotion` int(11) NOT NULL, - `lastdemotion` int(11) NOT NULL, - `timesloggedin` int(11) NOT NULL, - `recruiter` int(11) NOT NULL, - `ipaddress` varchar(255) NOT NULL, - `profileviews` int(11) NOT NULL, - `defaultconsole` int(11) NOT NULL, - `disabled` int(11) NOT NULL, - `disableddate` int(11) NOT NULL, - `notifications` int(11) NOT NULL, - PRIMARY KEY (`member_id`), - UNIQUE KEY `username` (`username`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - -CREATE TABLE `news` ( - `news_id` int(11) NOT NULL AUTO_INCREMENT, - `member_id` int(11) NOT NULL, - `newstype` int(11) NOT NULL, - `dateposted` int(11) NOT NULL, - `postsubject` varchar(255) NOT NULL, - `newspost` text NOT NULL, - `lasteditmember_id` int(11) NOT NULL, - `lasteditdate` int(11) NOT NULL, - PRIMARY KEY (`news_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - -CREATE TABLE `notifications` ( - `notification_id` int(11) NOT NULL AUTO_INCREMENT, - `member_id` int(11) NOT NULL, - `datesent` int(11) NOT NULL, - `message` text NOT NULL, - `status` int(11) NOT NULL, - `icontype` varchar(15) NOT NULL, - PRIMARY KEY (`notification_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - -CREATE TABLE `privatemessages` ( - `pm_id` int(11) NOT NULL AUTO_INCREMENT, - `sender_id` int(11) NOT NULL, - `receiver_id` int(11) NOT NULL, - `datesent` int(11) NOT NULL, - `subject` varchar(255) NOT NULL, - `message` text NOT NULL, - `status` int(11) NOT NULL, - `originalpm_id` int(11) NOT NULL, - `deletesender` int(11) NOT NULL, - `deletereceiver` int(11) NOT NULL, - PRIMARY KEY (`pm_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - -CREATE TABLE `profilecategory` ( - `profilecategory_id` int(11) NOT NULL AUTO_INCREMENT, - `name` varchar(255) NOT NULL, - `ordernum` int(11) NOT NULL, - PRIMARY KEY (`profilecategory_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - -CREATE TABLE `profileoptions` ( - `profileoption_id` int(11) NOT NULL AUTO_INCREMENT, - `profilecategory_id` int(11) NOT NULL, - `name` varchar(255) NOT NULL, - `optiontype` varchar(255) NOT NULL, - `sortnum` int(11) NOT NULL, - PRIMARY KEY (`profileoption_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - -CREATE TABLE `profileoptions_select` ( - `selectopt_id` int(11) NOT NULL AUTO_INCREMENT, - `profileoption_id` int(11) NOT NULL, - `selectvalue` varchar(255) NOT NULL, - `sortnum` int(11) NOT NULL, - PRIMARY KEY (`selectopt_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - -CREATE TABLE `profileoptions_values` ( - `values_id` int(11) NOT NULL AUTO_INCREMENT, - `profileoption_id` int(11) NOT NULL, - `member_id` int(11) NOT NULL, - `inputvalue` varchar(255) NOT NULL, - PRIMARY KEY (`values_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - -CREATE TABLE `rank_privileges` ( - `privilege_id` int(11) NOT NULL AUTO_INCREMENT, - `rank_id` int(11) NOT NULL, - `console_id` int(11) NOT NULL, - PRIMARY KEY (`privilege_id`) -) ENGINE=MyISAM AUTO_INCREMENT=1144 DEFAULT CHARSET=latin1; - -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('1','1','1'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('2','1','2'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('3','1','3'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('4','1','5'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('5','1','6'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('6','1','7'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('8','1','9'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('9','1','10'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('10','1','11'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('11','1','12'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('12','1','14'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('13','1','15'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('14','1','17'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('15','1','18'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('16','1','19'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('165','1','25'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('61','1','22'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('62','1','23'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('63','1','24'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('340','1','34'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('339','1','33'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('338','1','32'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('337','1','31'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('367','1','21'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('451','1','8'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('465','1','20'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('482','1','51'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('483','1','52'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('494','1','63'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('485','1','54'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('486','1','55'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('487','1','56'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('493','1','62'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('492','1','61'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('491','1','60'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('495','1','64'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('496','1','65'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('497','1','66'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('572','1','82'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('575','1','85'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('574','1','84'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('509','1','70'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('517','1','71'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('518','1','72'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('519','1','73'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('520','1','74'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('573','1','83'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('564','1','75'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('565','1','76'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('567','1','78'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('578','1','86'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('579','1','87'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('580','1','88'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('581','1','89'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('582','1','90'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('583','1','91'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('584','1','92'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('585','1','93'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('1076','1','80'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('1106','1','96'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('1107','1','97'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('1108','1','98'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('1138','1','99'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('1139','1','100'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('1140','1','101'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('1141','1','102'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('1142','1','103'); -INSERT INTO rank_privileges (privilege_id, rank_id, console_id) VALUES ('1143','1','104'); -CREATE TABLE `rankcategory` ( - `rankcategory_id` int(11) NOT NULL AUTO_INCREMENT, - `name` varchar(255) NOT NULL, - `imageurl` text NOT NULL, - `ordernum` int(11) NOT NULL, - `hidecat` int(11) NOT NULL, - `useimage` int(1) NOT NULL, - `description` text NOT NULL, - `imagewidth` int(11) NOT NULL, - `imageheight` int(11) NOT NULL, - `color` varchar(30) NOT NULL, - PRIMARY KEY (`rankcategory_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - -CREATE TABLE `ranks` ( - `rank_id` int(11) NOT NULL AUTO_INCREMENT, - `rankcategory_id` int(11) NOT NULL, - `name` varchar(255) NOT NULL, - `description` text NOT NULL, - `imageurl` text NOT NULL, - `imagewidth` int(11) NOT NULL, - `imageheight` int(11) NOT NULL, - `ordernum` int(11) NOT NULL, - `autodays` int(11) NOT NULL, - `hiderank` int(11) NOT NULL, - `promotepower` int(11) NOT NULL, - `autodisable` int(11) NOT NULL, - `color` varchar(25) NOT NULL, - PRIMARY KEY (`rank_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - -CREATE TABLE `squadapps` ( - `squadapp_id` int(11) NOT NULL AUTO_INCREMENT, - `member_id` int(11) NOT NULL, - `squad_id` int(11) NOT NULL, - `message` text NOT NULL, - `applydate` int(11) NOT NULL, - `dateaction` int(11) NOT NULL, - `status` int(11) NOT NULL, - `squadmember_id` int(11) NOT NULL, - PRIMARY KEY (`squadapp_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - -CREATE TABLE `squadinvites` ( - `squadinvite_id` int(11) NOT NULL AUTO_INCREMENT, - `squad_id` int(11) NOT NULL, - `sender_id` int(11) NOT NULL, - `receiver_id` int(11) NOT NULL, - `datesent` int(11) NOT NULL, - `dateaction` int(11) NOT NULL, - `status` int(11) NOT NULL, - `message` text NOT NULL, - `startingrank_id` int(11) NOT NULL, - PRIMARY KEY (`squadinvite_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - -CREATE TABLE `squadnews` ( - `squadnews_id` int(11) NOT NULL AUTO_INCREMENT, - `squad_id` int(11) NOT NULL, - `member_id` int(11) NOT NULL, - `newstype` int(11) NOT NULL, - `dateposted` int(11) NOT NULL, - `postsubject` varchar(255) NOT NULL, - `newspost` text NOT NULL, - `lasteditmember_id` int(11) NOT NULL, - `lasteditdate` int(11) NOT NULL, - PRIMARY KEY (`squadnews_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - -CREATE TABLE `squadranks` ( - `squadrank_id` int(11) NOT NULL AUTO_INCREMENT, - `squad_id` int(11) NOT NULL, - `name` varchar(255) NOT NULL, - `sortnum` int(11) NOT NULL, - `postnews` int(11) NOT NULL, - `managenews` int(11) NOT NULL, - `postshoutbox` int(11) NOT NULL, - `manageshoutbox` int(11) NOT NULL, - `addrank` int(11) NOT NULL, - `manageranks` int(11) NOT NULL, - `editprofile` int(11) NOT NULL, - `sendinvites` int(11) NOT NULL, - `acceptapps` int(11) NOT NULL, - `setrank` int(11) NOT NULL, - `removemember` int(11) NOT NULL, - PRIMARY KEY (`squadrank_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - -CREATE TABLE `squads` ( - `squad_id` int(11) NOT NULL AUTO_INCREMENT, - `member_id` int(11) NOT NULL, - `name` varchar(255) NOT NULL, - `description` text NOT NULL, - `logourl` text NOT NULL, - `recruitingstatus` int(11) NOT NULL, - `datecreated` int(11) NOT NULL, - `privateshoutbox` int(11) NOT NULL, - `website` text NOT NULL, - PRIMARY KEY (`squad_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - -CREATE TABLE `squads_members` ( - `squadmember_id` int(11) NOT NULL AUTO_INCREMENT, - `squad_id` int(11) NOT NULL, - `member_id` int(11) NOT NULL, - `squadrank_id` int(11) NOT NULL, - `datejoined` int(11) NOT NULL, - `lastpromotion` int(11) NOT NULL, - `lastdemotion` int(11) NOT NULL, - PRIMARY KEY (`squadmember_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - -CREATE TABLE `tournamentmatch` ( - `tournamentmatch_id` int(11) NOT NULL AUTO_INCREMENT, - `tournament_id` int(11) NOT NULL, - `round` int(11) NOT NULL, - `team1_id` int(11) NOT NULL, - `team2_id` int(11) NOT NULL, - `team1score` int(11) NOT NULL, - `team2score` int(11) NOT NULL, - `outcome` int(11) NOT NULL, - `replayteam1url` text NOT NULL, - `replayteam2url` text NOT NULL, - `adminreplayurl` text NOT NULL, - `team1approve` int(11) NOT NULL, - `team2approve` int(11) NOT NULL, - `nextmatch_id` int(11) NOT NULL, - `sortnum` int(11) NOT NULL, - PRIMARY KEY (`tournamentmatch_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - -CREATE TABLE `tournamentplayers` ( - `tournamentplayer_id` int(11) NOT NULL AUTO_INCREMENT, - `tournament_id` int(11) NOT NULL, - `team_id` int(11) NOT NULL, - `member_id` int(11) NOT NULL, - `displayname` varchar(50) NOT NULL, - PRIMARY KEY (`tournamentplayer_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - -CREATE TABLE `tournamentpools` ( - `tournamentpool_id` int(11) NOT NULL AUTO_INCREMENT, - `tournament_id` int(11) NOT NULL, - `finished` int(11) NOT NULL, - PRIMARY KEY (`tournamentpool_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - -CREATE TABLE `tournamentpools_teams` ( - `poolteam_id` int(11) NOT NULL AUTO_INCREMENT, - `tournament_id` int(11) NOT NULL, - `pool_id` int(11) NOT NULL, - `team1_id` int(11) NOT NULL, - `team2_id` int(11) NOT NULL, - `team1score` int(11) NOT NULL, - `team2score` int(11) NOT NULL, - `winner` int(11) NOT NULL, - PRIMARY KEY (`poolteam_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - -CREATE TABLE `tournaments` ( - `tournament_id` int(11) NOT NULL AUTO_INCREMENT, - `member_id` int(11) NOT NULL, - `gamesplayed_id` int(11) NOT NULL, - `name` varchar(255) NOT NULL, - `seedtype` int(11) NOT NULL, - `startdate` int(11) NOT NULL, - `eliminations` int(11) NOT NULL, - `playersperteam` int(11) NOT NULL, - `maxteams` int(11) NOT NULL, - `status` int(11) NOT NULL, - `description` text NOT NULL, - `password` varchar(32) NOT NULL, - `requirereplay` int(10) NOT NULL, - `access` int(11) NOT NULL, - PRIMARY KEY (`tournament_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - -CREATE TABLE `tournamentteams` ( - `tournamentteam_id` int(11) NOT NULL AUTO_INCREMENT, - `tournament_id` int(11) NOT NULL, - `name` varchar(255) NOT NULL, - `seed` int(11) NOT NULL, - PRIMARY KEY (`tournamentteam_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - -CREATE TABLE `websiteinfo` ( - `websiteinfo_id` int(11) NOT NULL AUTO_INCREMENT, - `clanname` varchar(255) NOT NULL, - `clantag` varchar(255) NOT NULL, - `preventhack` varchar(32) NOT NULL, - `maxdsl` int(11) NOT NULL, - `theme` varchar(255) NOT NULL, - `lowdsl` varchar(255) NOT NULL, - `meddsl` varchar(255) NOT NULL, - `highdsl` varchar(255) NOT NULL, - `logourl` text NOT NULL, - `forumurl` text NOT NULL, - `failedlogins` int(11) NOT NULL, - `maxdiplomacy` int(11) NOT NULL, - `mostonline` int(11) NOT NULL, - `mostonlinedate` int(11) NOT NULL, - `memberregistration` int(11) NOT NULL, - `memberapproval` int(11) NOT NULL, - PRIMARY KEY (`websiteinfo_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - -CREATE TABLE `diplomacy` ( - `diplomacy_id` int(11) NOT NULL AUTO_INCREMENT, - `member_id` int(11) NOT NULL, - `diplomacystatus_id` int(11) NOT NULL, - `dateadded` int(11) NOT NULL, - `clanname` varchar(255) NOT NULL, - `leaders` varchar(255) NOT NULL, - `website` varchar(255) NOT NULL, - `clansize` varchar(10) NOT NULL, - `clantag` varchar(15) NOT NULL, - `skill` varchar(100) NOT NULL, - `gamesplayed` varchar(255) NOT NULL, - `extrainfo` text NOT NULL, - PRIMARY KEY (`diplomacy_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - -CREATE TABLE `diplomacy_status` ( - `diplomacystatus_id` int(11) NOT NULL AUTO_INCREMENT, - `name` varchar(255) NOT NULL, - `imageurl` text NOT NULL, - `imagewidth` int(11) NOT NULL, - `imageheight` int(11) NOT NULL, - `ordernum` int(11) NOT NULL, - PRIMARY KEY (`diplomacystatus_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - -CREATE TABLE `diplomacy_request` ( - `diplomacyrequest_id` int(11) NOT NULL AUTO_INCREMENT, - `ipaddress` varchar(255) NOT NULL, - `dateadded` int(11) NOT NULL, - `diplomacystatus_id` int(11) NOT NULL, - `email` varchar(255) NOT NULL, - `name` varchar(255) NOT NULL, - `clanname` varchar(255) NOT NULL, - `clantag` varchar(15) NOT NULL, - `clansize` varchar(10) NOT NULL, - `gamesplayed` varchar(255) NOT NULL, - `website` varchar(255) NOT NULL, - `leaders` varchar(255) NOT NULL, - `message` text NOT NULL, - `confirmemail` varchar(255) NOT NULL, - PRIMARY KEY (`diplomacyrequest_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - diff --git a/installer/getcolumnarray.php b/installer/getcolumnarray.php deleted file mode 100644 index 27fc3f5..0000000 --- a/installer/getcolumnarray.php +++ /dev/null @@ -1,40 +0,0 @@ -query("SHOW TABLES"); -$arrTestTables = array(); - -while($row = $result->fetch_array()) { - if($row[0] != "tournament_connect") { - $arrTestTables[] = $row[0]; - } -} - - - -$counter = 0; -$arrTables = array(); -foreach($arrTestTables as $tableName) { - - $counter2 = 0; - $result = $mysqli->query("DESCRIBE ".$tableName); - while($row = $result->fetch_assoc()) { - - $arrTables[$tableName][] = $row; - echo "$"."arrTableColumns['".$tableName."'][".$counter2."] = \"".$row['Field']."\";
"; - - $counter2++; - } - echo "
"; - $counter++; -} - - -?> \ No newline at end of file diff --git a/installer/getconsolearray.php b/installer/getconsolearray.php deleted file mode 100644 index ab4b8e8..0000000 --- a/installer/getconsolearray.php +++ /dev/null @@ -1,58 +0,0 @@ -query("SELECT * FROM consolecategory ORDER BY ordernum DESC"); -while($row = $result->fetch_assoc()) { - - echo "$"."arrConsoleCategories[".$counter."] = \"".$row['name']."\";
"; - $arrConsoleCategories[$counter] = $row['name']; - - $counter++; -} -echo "
"; - -$counter = 0; -$blnAddSeparator = false; -$result = $mysqli->query("SELECT * FROM console ORDER BY consolecategory_id, sortnum"); -while($row = $result->fetch_assoc()) { - - $consoleCatObj->select($row['consolecategory_id']); - $consoleCatInfo = $consoleCatObj->get_info(); - - $consoleCatID = array_search($consoleCatInfo['name'], $arrConsoleCategories); - - if($row['sep'] != "1") { - - echo "$"."arrConsoleOptionNames[".$counter."] = \"".$row['pagetitle']."\";
"; - - echo "$"."arrConsoleOptionInfo[".$counter."]['category'] = \"".$consoleCatID."\";
"; - echo "$"."arrConsoleOptionInfo[".$counter."]['filename'] = \"".$row['filename']."\";
"; - echo "$"."arrConsoleOptionInfo[".$counter."]['sortnum'] = \"".$row['sortnum']."\";
"; - echo "$"."arrConsoleOptionInfo[".$counter."]['hide'] = \"".$row['hide']."\";
"; - - echo "$"."arrConsoleOptionInfo[".$counter."]['addsep'] = \""; echo ($blnAddSeparator) ? "1" : "0"; echo "\";
"; - - $blnAddSeparator = false; - $counter++; - } - else { - $blnAddSeparator = true; - } - - - echo "
"; -} - - - -?> \ No newline at end of file diff --git a/installer/gettablelistarray.php b/installer/gettablelistarray.php deleted file mode 100644 index 98888ee..0000000 --- a/installer/gettablelistarray.php +++ /dev/null @@ -1,26 +0,0 @@ -query("SHOW TABLES"); -$arrTestTables = array(); - -while($row = $result->fetch_array()) { - if($row[0] != "tournament_connect") { - $arrTestTables[] = $row[0]; - } -} - -$i=0; -foreach($arrTestTables as $value) { - echo "$"."arrTableNames[".$i."] = \"".$value."\";
"; - $i++; -} - -?> \ No newline at end of file diff --git a/members/include/admin/sitesettings.php b/members/include/admin/sitesettings.php index 9428dac..c55e536 100644 --- a/members/include/admin/sitesettings.php +++ b/members/include/admin/sitesettings.php @@ -1,131 +1,103 @@ get_info_filtered(); + $consoleObj->select($_GET['cID']); + if (!$member->hasAccess($consoleObj)) { + exit(); + } } -else { - $memberInfo = $member->get_info_filtered(); - $consoleObj->select($_GET['cID']); - if(!$member->hasAccess($consoleObj)) { - exit(); - } -} - // Get themes - $arrThemes = scandir("../themes"); $themeOptions = ""; +foreach ($arrThemes as $themeName) { -foreach($arrThemes as $themeName) { - - $themeURL = "../themes/".$themeName; - - if(is_dir($themeURL) && $themeName != "." && $themeName != "..") { - - $dispThemeName = ""; - if(is_readable($themeURL."/THEMENAME.txt")) { - $dispThemeName = file_get_contents($themeURL."/THEMENAME.txt"); - } - - $dispSelected = ""; - - if($themeName == $websiteInfo['theme']) { - $dispSelected = " selected"; - } - - if($dispThemeName != "") { - $themeOptions .= ""; - } - } -} + $themeURL = "../themes/{$themeName}"; -if($themeOptions == "") { - $themeOptions = ""; -} + if (is_dir($themeURL) && $themeName != "." && $themeName != "..") { + $dispThemeName = ""; + if (is_readable("{$themeURL}/THEMENAME.txt")) { + $dispThemeName = file_get_contents("{$themeURL}/THEMENAME.txt"); + } -$arrMedalDisplayOrder = array(0 => "Date Awarded", 1 => "Display Order", 2 => "Alphabetical Order"); -foreach($arrMedalDisplayOrder as $key => $value) { - $dispSelected = ""; - if($websiteInfo['medalorder'] == $key) { - $dispSelected = " selected"; - } - $medaldisplayorder .= ""; + $dispSelected = ($themeName == $websiteInfo['theme']) ? " selected" : ""; + + if ($dispThemeName != "") { + $themeOptions .= ""; + } + } } -$selectDebugOn = ""; -if($websiteInfo['debugmode'] == 1) { - $selectDebugOn = " selected"; +if ($themeOptions == "") { + $themeOptions = ""; } -$selectHideInactive = ""; -if($websiteInfo['hideinactive'] == 1) { - $selectHideInactive = " selected"; +$arrMedalDisplayOrder = array( + 0 => "Date Awarded", + 1 => "Display Order", + 2 => "Alphabetical Order"); +foreach ($arrMedalDisplayOrder as $key => $value) { + $dispSelected = ($websiteInfo['medalorder'] == $key) ? " selected" : ""; + $medaldisplayorder .= ""; } +$selectDebugOn = ($websiteInfo['debugmode'] == 1) ? " selected" : ""; +$selectShowTime = ($websiteInfo['showtime'] == 1) ? " selected" : ""; +$selectHideInactive = ($websiteInfo['hideinactive']) ? " selected" : ""; $selectShowNewsPosts = ""; -if($websiteInfo['hpnews'] == 0) { - $selectShowNewsPosts = " selected"; +if ($websiteInfo['hpnews'] == 0) { + $selectShowNewsPosts = " selected"; +} else { + $showCustomAmount = ""; + switch ($websiteInfo['hpnews']) { + + case 5: + $selectNumOfNewsPosts[5] = " selected"; + break; + case 4: + $selectNumOfNewsPosts[4] = " selected"; + break; + case 3: + $selectNumOfNewsPosts[3] = " selected"; + break; + case 2: + $selectNumOfNewsPosts[2] = " selected"; + break; + case 1: + $selectNumOfNewsPosts[1] = " selected"; + break; + case - 1: + $selectNumOfNewsPosts[0] = " selected"; + break; + default: + $selectNumOfNewsPosts[6] = " selected"; + $showCustomAmount = $websiteInfo['hpnews']; + } } -else { - $showCustomAmount = ""; - switch($websiteInfo['hpnews']) { - - case 5: - $selectNumOfNewsPosts[5] = " selected"; - break; - case 4: - $selectNumOfNewsPosts[4] = " selected"; - break; - case 3: - $selectNumOfNewsPosts[3] = " selected"; - break; - case 2: - $selectNumOfNewsPosts[2] = " selected"; - break; - case 1: - $selectNumOfNewsPosts[1] = " selected"; - break; - case -1: - $selectNumOfNewsPosts[0] = " selected"; - break; - default: - $selectNumOfNewsPosts[6] = " selected"; - $showCustomAmount = $websiteInfo['hpnews']; - } - -} - -$webInfoObj->select(1); -$websiteInfo = $webInfoObj->get_info_filtered(); - ?> - -
- - - Use the form below to modify your website's settings.

- +
Use the form below to modify your website's settings.

- + - + - + - + - + + + + + + + + + - + - + - + - + - + - + + + + + - +
@@ -135,11 +107,11 @@
Clan Name:' class='textBox' style='width: 250px'>' class='textBox' style='width: 250px'>
Clan Tag:' class='textBox' style='width: 50px'>' class='textBox' style='width: 50px'>

@@ -149,50 +121,70 @@
Logo URL: (?)' class='textBox' style='width: 250px'>' class='textBox' style='width: 250px'>
Forum URL: (?)' class='textBox' style='width: 250px'>' class='textBox' style='width: 250px'>
Meta Description: (?)' class='textBox' style='width: 250px'>
Meta Tags: (?)' class='textBox' style='width: 250px'> Max 255 characters - use %clantag% to use your saved Clan Tag.
Theme:
Max Diplomacy Requests: (?)' class='textBox' style='width: 30px'>' class='textBox' style='width: 30px'>
Failed Login Attempts: (?)' class='textBox' style='width: 30px'>' class='textBox' style='width: 30px'>
Medal Display Order: (?)
Debug Mode:
Hide Inactive Members: (?)
Show Time: (?)
Show News on Homepage:
- + - +
Number of Posts: +
@@ -208,20 +200,37 @@ Max Days: (?) - ' class='textBox' style='width: 30px'> + ' class='textBox' style='width: 30px'> Low Disable Level: (?) - ' class='textBox' style='width: 100px'> + ' class='textBox' style='width: 100px'> Medium Disable Level: (?) - ' class='textBox' style='width: 100px'> + ' class='textBox' style='width: 100px'> High Disable Level: (?) - ' class='textBox' style='width: 100px'> + ' class='textBox' style='width: 100px'> + + +
+ Website Analytics Tracking +
+
+ In this section you can add analytics tracking code to your website, . +

+ Recommendation: Google Analytics +
+ + + Tracking Code: (?) + + + +

@@ -230,17 +239,13 @@ -

+

- - -
- - + \ No newline at end of file diff --git a/members/include/admin/sitesettings_submit.php b/members/include/admin/sitesettings_submit.php index 8f2b96e..a9122fa 100644 --- a/members/include/admin/sitesettings_submit.php +++ b/members/include/admin/sitesettings_submit.php @@ -1,21 +1,20 @@ findConsoleIDByName("Website Settings"); $consoleObj->select($cID); -if($member->authorizeLogin($_SESSION['btPassword'])) { - - - $memberInfo = $member->get_info(); - - if($member->hasAccess($consoleObj)) { - $countErrors = 0; - - - // Check Clan Name - - if(trim($_POST['clanName']) == "") { - $countErrors++; - $dispError .= "   · You must enter a name for your clan.
"; - } - - // Check Theme - - - $arrThemes = scandir("../../../themes"); - $arrCheckTheme = array(); - foreach($arrThemes as $strTheme) { - - $themeURL = "../../../themes/".$strTheme; - - if(is_dir($themeURL) && $strTheme != "." && $strTheme != "..") { - $arrCheckTheme[] = $strTheme; - } - } - - if(!in_array($_POST['themeName'], $arrCheckTheme)) { - $countErrors++; - $dispError .= "   · You selected an invalid theme.
"; - } - - - // Check Max Diplomacy - - if(!is_numeric($_POST['maxDiplomacy']) || (is_numeric($_POST['maxDiplomacy']) && $_POST['maxDiplomacy'] < 0)) { - $countErrors++; - $dispError .= "   · You must enter postive number or zero for max diplomacy requests.
"; - } - - // Check Failed Logins - - if(!is_numeric($_POST['failedLogins']) || (is_numeric($_POST['failedLogins']) && $_POST['failedLogins'] < 0)) { - $countErrors++; - $dispError .= "   · You must enter postive number or zero for failed login attempts.
"; - } - - // Check Max Days - - if($_POST['maxDSL'] != "" && (!is_numeric($_POST['maxDSL']) || (is_numeric($_POST['maxDSL']) && $_POST['maxDSL'] < 0))) { - $countErrors++; - $dispError .= "   · You must enter postive number or zero for max days.
"; - } - - // Check Medal Order - - $arrCheckMedalOrder = array(0, 1, 2); - if(!in_array($_POST['medalOrder'], $arrCheckMedalOrder)) { - $countErrors++; - $dispError .= "   · You selected an invalid medal display order.
"; - } - - if($_POST['debugMode'] != 1) { - $_POST['debugMode'] = 0; - } - - - if($_POST['hideInactive'] != 1) { - $_POST['hideInactive'] = 0; - } - - $numOfNewsPosts = 0; - if($_POST['showHPNews'] == "yes" && $_POST['numOfNewsPosts'] == "custom" && is_numeric($_POST['customNewsAmount']) && $_POST['customNewsAmount'] > 0) { - $numOfNewsPosts = $_POST['customNewsAmount']; - } - elseif($_POST['showHPNews'] == "yes" && $_POST['numOfNewsPosts'] == "all") { - $numOfNewsPosts = -1; - } - elseif($_POST['showHPNews'] == "yes" && is_numeric($_POST['numOfNewsPosts']) && $_POST['numOfNewsPosts'] > 0) { - $numOfNewsPosts = $_POST['numOfNewsPosts']; - } - - - - - - if($countErrors == 0) { - - $updateCols = array("clanname", "clantag", "logourl", "forumurl", "theme", "maxdiplomacy", "failedlogins", "maxdsl", "lowdsl", "meddsl", "highdsl", "medalorder", "debugmode", "hideinactive", "hpnews"); - $updateVals = array($_POST['clanName'], $_POST['clanTag'], $_POST['logoURL'], $_POST['forumURL'], $_POST['themeName'], $_POST['maxDiplomacy'], $_POST['failedLogins'], $_POST['maxDSL'], $_POST['lowDSL'], $_POST['medDSL'], $_POST['highDSL'], $_POST['medalOrder'], $_POST['debugMode'], $_POST['hideInactive'], $numOfNewsPosts); - - if(!$webInfoObj->update($updateCols, $updateVals)) { - $countErrors++; - $dispError .= "   · Unable to save the information to the database.
"; - } - - } - - - - if($countErrors == 0) { - $dispTime = date("l F j, Y g:i:s A"); - echo " - - "; - - } - else { - echo " - "; + + } else { + echo " - "; - } - - } + "; + } + } } - - ?> \ No newline at end of file diff --git a/members/include/forum/post.php b/members/include/forum/post.php index c73fbfb..ca6646a 100644 --- a/members/include/forum/post.php +++ b/members/include/forum/post.php @@ -1,30 +1,27 @@ get_info(); - $consoleObj->select($_GET['cID']); - if(!$member->hasAccess($consoleObj)) { - exit(); - } +if (!isset($member) || substr($_SERVER['PHP_SELF'], -11) != "console.php") { + exit(); +} else { + $memberInfo = $member->get_info(); + $consoleObj->select($_GET['cID']); + if (!$member->hasAccess($consoleObj)) { + exit(); + } } $cID = $_GET['cID']; @@ -35,13 +32,13 @@ $blnCheckForumAttachments = $member->hasAccess($consoleObj); $consoleObj->select($cID); -if($blnCheckForumAttachments) { - include_once($prevFolder."classes/download.php"); - include_once($prevFolder."classes/downloadcategory.php"); - $attachmentObj = new Download($mysqli); - $downloadCatObj = new DownloadCategory($mysqli); - $downloadCatObj->selectBySpecialKey("forumattachments"); - $forumAttachmentCatID = $downloadCatObj->get_info("downloadcategory_id"); +if ($blnCheckForumAttachments) { + include_once ($prevFolder . "classes/download.php"); + include_once ($prevFolder . "classes/downloadcategory.php"); + $attachmentObj = new Download($mysqli); + $downloadCatObj = new DownloadCategory($mysqli); + $downloadCatObj->selectBySpecialKey("forumattachments"); + $forumAttachmentCatID = $downloadCatObj->get_info("downloadcategory_id"); } $boardObj = new ForumBoard($mysqli); @@ -50,29 +47,26 @@ $categoryObj->set_assocTableName("forum_board"); $categoryObj->set_assocTableKey("forumboard_id"); - -if(!$boardObj->select($_GET['bID']) || ($boardObj->select($_GET['bID']) && !$boardObj->memberHasAccess($memberInfo))) { - echo ""; - exit(); +if (!$boardObj->select($_GET['bID']) || ($boardObj->select($_GET['bID']) && !$boardObj-> + memberHasAccess($memberInfo))) { + echo ""; + exit(); } - $boardInfo = $boardObj->get_info_filtered(); $blnPostReply = false; $addToForm = ""; -if(isset($_GET['tID']) && $boardObj->objTopic->select($_GET['tID'])) { - $blnPostReply = true; - $topicInfo = $boardObj->objTopic->get_info(); - - // Check if topic is actually in the selected board - if($topicInfo['forumboard_id'] != $boardInfo['forumboard_id']) { - echo ""; - exit(); - } - elseif($topicInfo['lockstatus'] == 1) { - - echo " -