-- phpMyAdmin SQL Dump
-- version 2.11.9.5
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Dec 12, 2009 at 01:41 AM
-- Server version: 5.1.30
-- PHP Version: 5.2.9

SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;

--
-- Database: `lifehs_sportscomplex`
--

-- --------------------------------------------------------

--
-- Table structure for table `address_book`
--

CREATE TABLE IF NOT EXISTS `address_book` (
  `address_book_id` int(11) NOT NULL AUTO_INCREMENT,
  `customers_id` int(11) NOT NULL,
  `entry_gender` char(1) NOT NULL,
  `entry_company` varchar(32) DEFAULT NULL,
  `entry_firstname` varchar(32) NOT NULL,
  `entry_lastname` varchar(32) NOT NULL,
  `entry_street_address` varchar(64) NOT NULL,
  `entry_suburb` varchar(32) DEFAULT NULL,
  `entry_postcode` varchar(10) NOT NULL,
  `entry_city` varchar(32) NOT NULL,
  `entry_state` varchar(32) DEFAULT NULL,
  `entry_country_id` int(11) NOT NULL DEFAULT '0',
  `entry_zone_id` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`address_book_id`),
  KEY `idx_address_book_customers_id` (`customers_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;

--
-- Dumping data for table `address_book`
--

INSERT INTO `address_book` (`address_book_id`, `customers_id`, `entry_gender`, `entry_company`, `entry_firstname`, `entry_lastname`, `entry_street_address`, `entry_suburb`, `entry_postcode`, `entry_city`, `entry_state`, `entry_country_id`, `entry_zone_id`) VALUES
(1, 1, 'm', 'ACME Inc.', 'John', 'Doe', '1 Way Street', '', '12345', 'NeverNever', '', 223, 12),
(2, 2, 'm', 'xperts', 'ubaidullah', 'nazir', '346 kamaran block', '', '0054', 'lahore', 'punjab', 162, 0),
(3, 3, 'm', 'asdfasfd', 'asdf', 'asdfasdf', 'rtyery456', 'etyerty', '2345253451', 'sdafga', 'aasdf', 162, 0),
(4, 4, 'm', 'New Frank Martin', 'Muhammad', 'Abrar', '4 - Ugoki Road', 'Skt', '51310', 'Sialkot', 'Punjab', 162, 0);

-- --------------------------------------------------------

--
-- Table structure for table `address_format`
--

CREATE TABLE IF NOT EXISTS `address_format` (
  `address_format_id` int(11) NOT NULL AUTO_INCREMENT,
  `address_format` varchar(128) NOT NULL,
  `address_summary` varchar(48) NOT NULL,
  PRIMARY KEY (`address_format_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ;

--
-- Dumping data for table `address_format`
--

INSERT INTO `address_format` (`address_format_id`, `address_format`, `address_summary`) VALUES
(1, '$firstname $lastname$cr$streets$cr$city, $postcode$cr$statecomma$country', '$city / $country'),
(2, '$firstname $lastname$cr$streets$cr$city, $state    $postcode$cr$country', '$city, $state / $country'),
(3, '$firstname $lastname$cr$streets$cr$city$cr$postcode - $statecomma$country', '$state / $country'),
(4, '$firstname $lastname$cr$streets$cr$city ($postcode)$cr$country', '$postcode / $country'),
(5, '$firstname $lastname$cr$streets$cr$postcode $city$cr$country', '$city / $country');

-- --------------------------------------------------------

--
-- Table structure for table `administrators`
--

CREATE TABLE IF NOT EXISTS `administrators` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_name` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL,
  `user_password` varchar(40) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;

--
-- Dumping data for table `administrators`
--

INSERT INTO `administrators` (`id`, `user_name`, `user_password`) VALUES
(1, 'admin', 'f5b2b8ea5cc9066cb5c04b4eb9dd0d3a:41');

-- --------------------------------------------------------

--
-- Table structure for table `banners`
--

CREATE TABLE IF NOT EXISTS `banners` (
  `banners_id` int(11) NOT NULL AUTO_INCREMENT,
  `banners_title` varchar(64) NOT NULL,
  `banners_url` varchar(255) NOT NULL,
  `banners_image` varchar(64) NOT NULL,
  `banners_group` varchar(10) NOT NULL,
  `banners_html_text` text,
  `expires_impressions` int(7) DEFAULT '0',
  `expires_date` datetime DEFAULT NULL,
  `date_scheduled` datetime DEFAULT NULL,
  `date_added` datetime NOT NULL,
  `date_status_change` datetime DEFAULT NULL,
  `status` int(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`banners_id`),
  KEY `idx_banners_group` (`banners_group`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;

--
-- Dumping data for table `banners`
--

INSERT INTO `banners` (`banners_id`, `banners_title`, `banners_url`, `banners_image`, `banners_group`, `banners_html_text`, `expires_impressions`, `expires_date`, `date_scheduled`, `date_added`, `date_status_change`, `status`) VALUES
(1, 'osCommerce', 'http://www.oscommerce.com', 'banners/oscommerce.gif', '468x50', '', 0, NULL, NULL, '2008-12-31 15:15:39', NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `banners_history`
--

CREATE TABLE IF NOT EXISTS `banners_history` (
  `banners_history_id` int(11) NOT NULL AUTO_INCREMENT,
  `banners_id` int(11) NOT NULL,
  `banners_shown` int(5) NOT NULL DEFAULT '0',
  `banners_clicked` int(5) NOT NULL DEFAULT '0',
  `banners_history_date` datetime NOT NULL,
  PRIMARY KEY (`banners_history_id`),
  KEY `idx_banners_history_banners_id` (`banners_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;

--
-- Dumping data for table `banners_history`
--

INSERT INTO `banners_history` (`banners_history_id`, `banners_id`, `banners_shown`, `banners_clicked`, `banners_history_date`) VALUES
(1, 1, 4, 0, '2008-12-31 15:18:26'),
(2, 1, 16, 0, '2009-01-01 14:52:52');

-- --------------------------------------------------------

--
-- Table structure for table `categories`
--

CREATE TABLE IF NOT EXISTS `categories` (
  `categories_id` int(11) NOT NULL AUTO_INCREMENT,
  `categories_image` varchar(64) DEFAULT NULL,
  `categories_banner` varchar(255) NOT NULL,
  `parent_id` int(11) NOT NULL DEFAULT '0',
  `sort_order` int(3) DEFAULT NULL,
  `date_added` datetime DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  PRIMARY KEY (`categories_id`),
  KEY `idx_categories_parent_id` (`parent_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=116 ;

--
-- Dumping data for table `categories`
--

INSERT INTO `categories` (`categories_id`, `categories_image`, `categories_banner`, `parent_id`, `sort_order`, `date_added`, `last_modified`) VALUES
(2, NULL, 'bnr1.jpg', 0, 1, '2009-02-23 09:50:44', '2009-05-11 02:48:25'),
(9, 'uniform_clothing.jpg', '', 2, 1, '2009-04-15 04:44:55', '2009-05-11 23:08:57'),
(10, 'fabric.jpg', '', 2, 2, '2009-04-15 04:45:29', '2009-05-11 23:10:37'),
(11, 'gloves_mits.jpg', '', 2, 3, '2009-04-15 04:45:43', '2009-05-11 23:14:20'),
(12, 'kids.jpg', '', 2, 4, '2009-04-15 04:45:55', '2009-05-11 23:17:51'),
(13, 'packings.jpg', '', 2, 5, '2009-04-15 04:46:16', '2009-05-11 23:30:11'),
(14, 'protection.jpg', '', 2, 6, '2009-04-15 04:46:36', '2009-05-11 23:45:13'),
(15, 'shoes.jpg', '', 2, 7, '2009-04-15 04:49:44', '2009-05-12 00:01:29'),
(17, 'trainings.jpg', '', 2, 8, '2009-04-15 04:49:59', '2009-05-12 00:28:40'),
(18, 'weapons.jpg', '', 2, 9, '2009-04-15 04:52:12', '2009-05-12 00:41:49'),
(19, 'accessories.jpg', '', 2, 10, '2009-04-15 04:52:40', '2009-05-12 00:44:10'),
(20, 's_07.jpg', 's_07.jpg', 19, 1, '2009-04-15 04:53:34', '2009-05-19 03:17:01'),
(21, 's_08.jpg', 's_08.jpg', 19, 2, '2009-04-15 04:53:48', '2009-05-19 03:17:34'),
(22, 's_09.jpg', 's_09.jpg', 19, 3, '2009-04-15 04:53:58', '2009-05-19 03:17:57'),
(23, 's_010.jpg', 's_010.jpg', 19, 4, '2009-04-15 04:54:08', '2009-05-19 03:18:22'),
(24, 's_004.jpg', 's_004.jpg', 19, 5, '2009-04-15 04:54:28', '2009-05-19 03:19:01'),
(25, 's_001.jpg', 's_001.jpg', 19, 6, '2009-04-15 04:56:57', '2009-05-19 03:19:28'),
(26, 's_0001.jpg', 's_0001.jpg', 19, 7, '2009-04-15 05:04:41', '2009-05-19 03:19:59'),
(27, 's_0002.jpg', 's_0002.jpg', 19, 8, '2009-04-15 05:05:36', '2009-05-19 03:20:23'),
(28, 's_01.jpg', 's_01.jpg', 24, 1, '2009-04-15 05:07:38', '2009-05-19 04:44:38'),
(29, 's_004.jpg', 's_004.jpg', 24, 2, '2009-04-15 05:08:40', '2009-05-19 04:45:04'),
(30, 's_01.jpg', 's_01.jpg', 28, 1, '2009-04-15 05:16:27', '2009-05-19 05:07:08'),
(31, 's_02.jpg', 's_02.jpg', 28, 2, '2009-04-15 05:16:56', '2009-05-19 05:07:42'),
(32, 's_03.jpg', 's_03.jpg', 28, 3, '2009-04-15 05:17:36', '2009-05-19 05:08:08'),
(33, 's_011.jpg', 's_011.jpg', 28, 4, '2009-04-15 05:17:50', '2009-05-19 05:08:29'),
(34, 's_05.jpg', 's_05.jpg', 28, 5, '2009-04-15 05:18:02', '2009-05-19 05:08:56'),
(35, 's_001.jpg', 's_001.jpg', 29, 1, '2009-04-15 05:34:16', '2009-05-19 05:09:23'),
(36, 's_002.jpg', 's_002.jpg', 29, 2, '2009-04-15 05:34:32', '2009-05-19 05:09:56'),
(37, 's_003.jpg', 's_003.jpg', 29, 3, '2009-04-15 05:34:53', '2009-05-19 05:10:22'),
(38, 'bag_gloves.jpg', '', 11, 1, '2009-04-15 05:48:25', '2009-05-12 00:58:18'),
(39, 'boxing_gloves.jpg', '', 11, 2, '2009-04-15 05:48:52', '2009-05-12 00:56:43'),
(40, 'cut_finger2.jpg', '', 11, 3, '2009-04-15 05:49:37', '2009-05-12 01:09:04'),
(41, 'cut_finger.jpg', '', 11, 4, '2009-04-15 05:49:49', '2009-05-12 01:04:26'),
(42, 'grappling.jpg', '', 11, 5, '2009-04-15 05:50:06', '2009-05-12 01:11:03'),
(43, 'karaet.jpg', '', 11, 6, '2009-04-15 05:50:21', '2009-05-12 01:25:41'),
(44, 'kenpo.jpg', '', 11, 7, '2009-04-15 05:53:04', '2009-05-12 01:33:39'),
(45, 'ladies_s.jpg', 'ladies_s.jpg', 11, 8, '2009-04-15 05:55:27', '2009-05-19 00:14:00'),
(46, 'semi_s.jpg', 'semi_s.jpg', 11, 9, '2009-04-15 05:55:40', '2009-05-19 00:16:47'),
(47, 'taekwondo_s.jpg', 'taekwondo_s.jpg', 11, 10, '2009-04-15 05:55:53', '2009-05-19 00:17:18'),
(48, 'bag_s.jpg', 'bag_s.jpg', 12, 1, '2009-04-15 05:58:37', '2009-05-19 00:27:14'),
(49, 'boxing_s.jpg', 'boxing_s.jpg', 12, 2, '2009-04-15 05:58:54', '2009-05-19 00:27:52'),
(50, 'focus_s.jpg', 'focus_s.jpg', 12, 3, '2009-04-15 05:59:11', '2009-05-19 00:28:17'),
(51, 'head_s.jpg', 'head_s.jpg', 12, 4, '2009-04-15 05:59:53', '2009-05-19 00:28:53'),
(52, 'kids_s.jpg', 'kids_s.jpg', 12, 5, '2009-04-15 06:00:16', '2009-05-19 00:29:16'),
(53, 'punching_s.jpg', 'punching_s.jpg', 12, 6, '2009-04-15 06:34:05', '2009-05-19 00:29:40'),
(54, 'belly_s.jpg', 'belly_s.jpg', 14, 1, '2009-04-15 06:35:05', '2009-05-19 01:07:33'),
(55, 'chest_s.jpg', 'chest_s.jpg', 14, 2, '2009-04-15 06:35:26', '2009-05-19 01:08:18'),
(56, 'elastic_s.jpg', 'elastic_s.jpg', 14, 2, '2009-04-15 06:35:35', '2009-05-19 01:08:58'),
(57, 'ladies_s.jpg', 'ladies_s.jpg', 14, 4, '2009-04-15 06:35:48', '2009-05-19 01:11:18'),
(58, 'head_s.jpg', 'head_s.jpg', 14, 5, '2009-04-15 06:36:00', '2009-05-19 01:12:03'),
(59, 'mouth_s.jpg', 'mouth_s.jpg', 14, 6, '2009-04-15 06:36:15', '2009-05-19 01:12:33'),
(60, 'shin_s.jpg', 'shin_s.jpg', 14, 7, '2009-04-15 06:36:25', '2009-05-19 01:13:02'),
(61, 'taekwondo_s.jpg', 'taekwondo_s.jpg', 14, 8, '2009-04-15 06:36:40', '2009-05-19 01:13:27'),
(62, 'chest_s.jpg', 'chest_s.jpg', 55, 1, '2009-04-15 06:37:14', '2009-05-19 01:24:00'),
(63, 'men_s.jpg', 'men_s.jpg', 55, 2, '2009-04-15 06:37:29', '2009-05-19 01:24:22'),
(64, 'ladies_s.jpg', 'ladies_s.jpg', 57, 1, '2009-04-15 06:38:01', '2009-05-19 01:32:47'),
(65, 'men_s.jpg', 'men_s.jpg', 57, 2, '2009-04-15 06:38:11', '2009-05-19 01:33:09'),
(66, 'boxing_shoes_s.jpg', 'boxing_shoes_s.jpg', 15, 1, '2009-04-15 06:39:00', '2009-05-19 01:56:02'),
(67, 'gym_s.jpg', 'gym_s.jpg', 15, 2, '2009-04-15 06:39:11', '2009-05-19 01:56:24'),
(68, 'kungfu_s.jpg', 'kungfu_s.jpg', 15, 3, '2009-04-15 06:39:23', '2009-05-19 01:56:49'),
(69, 'semi_contact_s.jpg', 'semi_contact_s.jpg', 15, 4, '2009-04-15 06:39:36', '2009-05-19 01:57:27'),
(70, 'tabi_s.jpg', 'tabi_s.jpg', 15, 5, '2009-04-15 06:39:52', '2009-05-19 01:58:05'),
(71, 'taekwondo_s.jpg', 'taekwondo_s.jpg', 15, 6, '2009-04-15 06:40:08', '2009-05-19 01:58:32'),
(72, 'floppy_s.jpg', 'floppy_s.jpg', 17, 1, '2009-04-15 06:41:18', '2009-05-19 02:23:53'),
(73, 'focus_s.jpg', 'focus_s.jpg', 17, 2, '2009-04-15 06:41:43', '2009-05-19 02:24:25'),
(74, '01_s.jpg', '01_s.jpg', 17, 3, '2009-04-15 06:41:52', '2009-05-19 02:24:56'),
(75, 's_02.jpg', 's_02.jpg', 17, 4, '2009-04-15 06:42:01', '2009-05-19 02:25:22'),
(76, 's_03.jpg', 's_03.jpg', 17, 5, '2009-04-15 06:42:14', '2009-05-19 02:25:47'),
(77, 's_04.jpg', 's_04.jpg', 17, 6, '2009-04-15 06:42:24', '2009-05-19 02:26:20'),
(78, 's_05.jpg', 's_05.jpg', 17, 7, '2009-04-15 06:42:45', '2009-05-19 02:26:47'),
(79, 'tackle_s.jpg', 'tackle_s.jpg', 17, 8, '2009-04-15 06:44:27', '2009-05-19 02:27:13'),
(80, 'c_img.jpg', '', 9, 1, '2009-04-15 06:45:20', '2009-05-11 03:13:21'),
(81, 'c_img1.jpg', '', 9, 2, '2009-04-15 06:45:39', '2009-05-11 03:16:50'),
(82, 'c_img2.jpg', '', 9, 3, '2009-04-15 06:45:52', '2009-05-11 03:18:48'),
(83, 'c_img3.jpg', '', 9, 4, '2009-04-15 06:47:13', '2009-05-11 03:21:33'),
(84, 'c_img7.jpg', '', 9, 5, '2009-04-15 06:47:26', '2009-05-11 03:29:56'),
(85, 'c_img8.jpg', '', 9, 6, '2009-04-15 06:47:37', '2009-05-11 04:22:35'),
(86, 'c_img9.jpg', '', 9, 7, '2009-04-15 06:47:50', '2009-05-11 04:26:08'),
(87, 'c_img10.jpg', '', 9, 8, '2009-04-15 06:48:07', '2009-05-11 04:31:10'),
(88, 'c_img11.jpg', '', 9, 9, '2009-04-15 06:48:19', '2009-05-11 04:38:30'),
(89, 'c_img12.jpg', '', 9, 10, '2009-04-15 06:48:36', '2009-05-11 04:40:21'),
(90, 'c_img13.jpg', '', 9, 11, '2009-04-15 06:48:55', '2009-05-11 04:42:41'),
(91, 'c_img14.jpg', '', 9, 12, '2009-04-15 06:49:09', '2009-05-11 04:47:52'),
(92, 'c_img15.jpg', '', 9, 13, '2009-04-15 06:49:21', '2009-05-11 04:48:13'),
(93, 'c_img16.jpg', '', 9, 14, '2009-04-15 06:49:34', '2009-05-11 04:49:58'),
(94, 'c_img17.jpg', '', 9, 15, '2009-04-15 06:49:47', '2009-05-11 04:52:14'),
(95, 'c_img25.jpg', '', 9, 16, '2009-04-15 06:50:02', '2009-05-11 06:33:35'),
(96, 'c_img4.jpg', '', 83, 1, '2009-04-15 06:51:18', '2009-05-11 03:23:22'),
(97, 'c_img5.jpg', '', 83, 2, '2009-04-15 06:51:30', '2009-05-11 03:24:39'),
(98, 'c_img6.jpg', '', 83, 3, '2009-04-15 06:51:40', '2009-05-11 03:26:37'),
(99, 'c_img18.jpg', '', 94, 1, '2009-04-15 06:53:55', '2009-05-11 04:53:45'),
(100, 'c_img19.jpg', '', 94, 2, '2009-04-15 06:54:05', '2009-05-11 04:58:18'),
(101, 'c_img20.jpg', '', 94, 2, '2009-04-15 06:54:14', '2009-05-11 04:59:50'),
(102, 'c_img21.jpg', '', 94, 4, '2009-04-15 06:54:30', '2009-05-11 05:01:44'),
(103, 'c_img22.jpg', '', 94, 5, '2009-04-15 06:54:46', '2009-05-11 05:03:50'),
(104, 'c_img23.jpg', '', 94, 6, '2009-04-15 06:54:59', '2009-05-11 05:06:04'),
(105, 'c_img14.jpg', '', 94, 7, '2009-04-15 06:55:08', '2009-05-11 05:11:50'),
(106, 'c_img24.jpg', '', 104, 1, '2009-04-15 06:55:37', '2009-05-11 05:09:10'),
(107, 'c_img23.jpg', '', 104, 2, '2009-04-15 06:56:13', '2009-05-11 05:09:47'),
(108, NULL, '', 18, 1, '2009-04-15 06:58:50', NULL),
(109, NULL, '', 18, 2, '2009-04-15 06:58:59', NULL),
(110, NULL, '', 18, 3, '2009-04-15 06:59:08', NULL),
(111, 's_06.jpg', 's_06.jpg', 18, 4, '2009-04-15 06:59:36', '2009-05-19 02:58:24'),
(112, NULL, '', 18, 5, '2009-04-15 06:59:46', NULL),
(113, NULL, 'bnr2.jpg', 0, 2, '2009-05-09 05:44:11', '2009-05-11 02:48:45'),
(115, 'packing_s.jpg', 'packing_s.jpg', 13, 0, '2009-05-19 00:52:33', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `categories_description`
--

CREATE TABLE IF NOT EXISTS `categories_description` (
  `categories_id` int(11) NOT NULL DEFAULT '0',
  `language_id` int(11) NOT NULL DEFAULT '1',
  `categories_name` varchar(32) NOT NULL,
  PRIMARY KEY (`categories_id`,`language_id`),
  KEY `idx_categories_name` (`categories_name`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `categories_description`
--

INSERT INTO `categories_description` (`categories_id`, `language_id`, `categories_name`) VALUES
(2, 2, ''),
(2, 3, ''),
(9, 2, ''),
(9, 3, ''),
(10, 2, ''),
(10, 3, ''),
(11, 2, ''),
(11, 3, ''),
(12, 2, ''),
(12, 3, ''),
(13, 2, ''),
(13, 3, ''),
(14, 2, ''),
(14, 3, ''),
(15, 2, ''),
(15, 3, ''),
(17, 2, ''),
(17, 3, ''),
(18, 2, ''),
(18, 3, ''),
(19, 2, ''),
(19, 3, ''),
(20, 2, ''),
(20, 3, ''),
(21, 2, ''),
(21, 3, ''),
(22, 2, ''),
(22, 3, ''),
(23, 2, ''),
(23, 3, ''),
(24, 2, ''),
(24, 3, ''),
(25, 2, ''),
(25, 3, ''),
(26, 2, ''),
(26, 3, ''),
(27, 2, ''),
(27, 3, ''),
(28, 2, ''),
(28, 3, ''),
(29, 2, ''),
(29, 3, ''),
(30, 2, ''),
(30, 3, ''),
(31, 2, ''),
(31, 3, ''),
(32, 2, ''),
(32, 3, ''),
(33, 2, ''),
(33, 3, ''),
(34, 2, ''),
(34, 3, ''),
(35, 2, ''),
(35, 3, ''),
(36, 2, ''),
(36, 3, ''),
(37, 2, ''),
(37, 3, ''),
(38, 2, ''),
(38, 3, ''),
(39, 2, ''),
(39, 3, ''),
(40, 2, ''),
(40, 3, ''),
(41, 2, ''),
(41, 3, ''),
(42, 2, ''),
(42, 3, ''),
(43, 2, ''),
(43, 3, ''),
(44, 2, ''),
(44, 3, ''),
(45, 2, ''),
(45, 3, ''),
(46, 2, ''),
(46, 3, ''),
(47, 2, ''),
(47, 3, ''),
(48, 2, ''),
(48, 3, ''),
(49, 2, ''),
(49, 3, ''),
(50, 2, ''),
(50, 3, ''),
(51, 2, ''),
(51, 3, ''),
(52, 2, ''),
(52, 3, ''),
(53, 2, ''),
(53, 3, ''),
(54, 2, ''),
(54, 3, ''),
(55, 2, ''),
(55, 3, ''),
(56, 2, ''),
(56, 3, ''),
(57, 2, ''),
(57, 3, ''),
(58, 2, ''),
(58, 3, ''),
(59, 2, ''),
(59, 3, ''),
(60, 2, ''),
(60, 3, ''),
(61, 2, ''),
(61, 3, ''),
(62, 2, ''),
(62, 3, ''),
(63, 2, ''),
(63, 3, ''),
(64, 2, ''),
(64, 3, ''),
(65, 2, ''),
(65, 3, ''),
(66, 2, ''),
(66, 3, ''),
(67, 2, ''),
(67, 3, ''),
(68, 2, ''),
(68, 3, ''),
(69, 2, ''),
(69, 3, ''),
(70, 2, ''),
(70, 3, ''),
(71, 2, ''),
(71, 3, ''),
(72, 2, ''),
(72, 3, ''),
(73, 2, ''),
(73, 3, ''),
(74, 2, ''),
(74, 3, ''),
(75, 2, ''),
(75, 3, ''),
(76, 2, ''),
(76, 3, ''),
(77, 2, ''),
(77, 3, ''),
(78, 2, ''),
(78, 3, ''),
(79, 2, ''),
(79, 3, ''),
(80, 2, ''),
(80, 3, ''),
(81, 2, ''),
(81, 3, ''),
(82, 2, ''),
(82, 3, ''),
(83, 2, ''),
(83, 3, ''),
(84, 2, ''),
(84, 3, ''),
(85, 2, ''),
(85, 3, ''),
(86, 2, ''),
(86, 3, ''),
(87, 2, ''),
(87, 3, ''),
(88, 2, ''),
(88, 3, ''),
(89, 2, ''),
(89, 3, ''),
(90, 2, ''),
(90, 3, ''),
(91, 2, ''),
(91, 3, ''),
(92, 2, ''),
(92, 3, ''),
(93, 2, ''),
(93, 3, ''),
(94, 2, ''),
(94, 3, ''),
(95, 2, ''),
(95, 3, ''),
(96, 2, ''),
(96, 3, ''),
(97, 2, ''),
(97, 3, ''),
(98, 2, ''),
(98, 3, ''),
(99, 2, ''),
(99, 3, ''),
(100, 2, ''),
(100, 3, ''),
(101, 2, ''),
(101, 3, ''),
(102, 2, ''),
(102, 3, ''),
(103, 2, ''),
(103, 3, ''),
(104, 2, ''),
(104, 3, ''),
(105, 2, ''),
(105, 3, ''),
(106, 2, ''),
(106, 3, ''),
(107, 2, ''),
(107, 3, ''),
(108, 2, ''),
(108, 3, ''),
(109, 2, ''),
(109, 3, ''),
(110, 2, ''),
(110, 3, ''),
(111, 2, ''),
(111, 3, ''),
(112, 2, ''),
(112, 3, ''),
(113, 2, ''),
(113, 3, ''),
(115, 2, ''),
(115, 3, ''),
(19, 1, 'Accessories'),
(38, 1, 'Bag Gloves'),
(48, 1, 'Bag Gloves'),
(80, 1, 'Beanie'),
(54, 1, 'Belly Guard'),
(81, 1, 'Belts'),
(20, 1, 'Bladder'),
(39, 1, 'Boxing Gloves'),
(49, 1, 'Boxing Gloves'),
(82, 1, 'Boxing Gown'),
(30, 1, 'Boxing Hangings'),
(66, 1, 'Boxing Shoes'),
(96, 1, 'Boxing Shorts'),
(31, 1, 'Camouflage Grappling Gloves'),
(99, 1, 'Capoeira Pants'),
(21, 1, 'Chains'),
(55, 1, 'Chest Guard'),
(106, 1, 'Chinese Style'),
(40, 1, 'Cut Finger Mitt Horizontal Paddi'),
(41, 1, 'Cut Finger Mitt Vertical Padding'),
(56, 1, 'Elastic Protection'),
(22, 1, 'Embroiled Patches'),
(108, 1, 'Escrima'),
(10, 1, 'Fabric'),
(83, 1, 'Fighter Shorts'),
(100, 1, 'Fleece Trouser'),
(72, 1, 'Floppy Mit'),
(50, 1, 'Focus Pads'),
(73, 1, 'Focus Pads'),
(11, 1, 'Gloves and Mitts'),
(42, 1, 'Grappling Gloves'),
(57, 1, 'Groin Guard'),
(67, 1, 'Gym Shoes'),
(28, 1, 'Hangings'),
(23, 1, 'Head Bands'),
(51, 1, 'Head Guards'),
(58, 1, 'Head Guards'),
(84, 1, 'Ju Jitsu Suite'),
(101, 1, 'Judo'),
(32, 1, 'Judo Hangings'),
(85, 1, 'Judo Suite'),
(33, 1, 'Karate Hanging1'),
(34, 1, 'Karate Hanging2'),
(43, 1, 'Karate Mitt'),
(102, 1, 'Karate Pants'),
(86, 1, 'Karate_Suite_Best_Quality'),
(44, 1, 'Kenpo Gloves'),
(24, 1, 'Key Chains & Hangings'),
(29, 1, 'KeyChains'),
(103, 1, 'Kickboxing Trouser'),
(52, 1, 'Kids Belly Belt'),
(12, 1, 'Kids Special'),
(104, 1, 'Kung Fu Pants'),
(87, 1, 'Kung Fu Suite Chinese Style'),
(68, 1, 'Kungfu Shoes'),
(107, 1, 'Kung_Fu_Pant'),
(64, 1, 'Ladies'),
(88, 1, 'Ladies Bra and Shorts'),
(62, 1, 'Ladies Chest Guard'),
(45, 1, 'Ladies Gloves'),
(25, 1, 'Logos'),
(2, 1, 'Martial Arts'),
(113, 1, 'Medical Instuments'),
(74, 1, 'Medicine Ball'),
(65, 1, 'Men'),
(63, 1, 'Men Chest Guard'),
(35, 1, 'Metal Keychains'),
(97, 1, 'MMA Shorts'),
(59, 1, 'Mouth Guards'),
(89, 1, 'Ninja'),
(109, 1, 'NunChaku'),
(13, 1, 'Packings'),
(115, 1, 'Packings'),
(110, 1, 'Pictures'),
(36, 1, 'Pins'),
(14, 1, 'Protection'),
(75, 1, 'Punching Bags'),
(53, 1, 'Punching Sets'),
(90, 1, 'Rash Guard'),
(69, 1, 'Semi Contact'),
(46, 1, 'Semi Contact Gloves'),
(60, 1, 'Shin Pads'),
(15, 1, 'Shoes'),
(76, 1, 'Skipping Ropes'),
(77, 1, 'SpeedBalls'),
(26, 1, 'Sports Kit Bags'),
(78, 1, 'Strike Sheilds'),
(27, 1, 'Swivels &  Hooks'),
(111, 1, 'Swords'),
(95, 1, 'T-Shirts & Hoods'),
(70, 1, 'Tabi Shoes'),
(79, 1, 'Tackle Bag'),
(61, 1, 'Taekwondo Foot Protection'),
(47, 1, 'Taekwondo Gloves'),
(105, 1, 'Taekwondo Pants'),
(71, 1, 'Taekwondo Shoes'),
(91, 1, 'Taekwondo Suite'),
(92, 1, 'Tai Chi'),
(98, 1, 'Thai Shorts'),
(93, 1, 'Track Suite'),
(17, 1, 'Training'),
(94, 1, 'Trousers'),
(9, 1, 'Uniforms & Clothing'),
(18, 1, 'Weapons'),
(112, 1, 'Wooden Guns'),
(37, 1, 'Wooden Keychains');

-- --------------------------------------------------------

--
-- Table structure for table `configuration`
--

CREATE TABLE IF NOT EXISTS `configuration` (
  `configuration_id` int(11) NOT NULL AUTO_INCREMENT,
  `configuration_title` varchar(255) NOT NULL,
  `configuration_key` varchar(255) NOT NULL,
  `configuration_value` varchar(255) NOT NULL,
  `configuration_description` varchar(255) NOT NULL,
  `configuration_group_id` int(11) NOT NULL,
  `sort_order` int(5) DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  `date_added` datetime NOT NULL,
  `use_function` varchar(255) DEFAULT NULL,
  `set_function` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`configuration_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=189 ;

--
-- Dumping data for table `configuration`
--

INSERT INTO `configuration` (`configuration_id`, `configuration_title`, `configuration_key`, `configuration_value`, `configuration_description`, `configuration_group_id`, `sort_order`, `last_modified`, `date_added`, `use_function`, `set_function`) VALUES
(1, 'Store Name', 'STORE_NAME', 'Sports Complex', 'The name of my store', 1, 1, '2009-02-20 10:57:01', '2008-12-31 15:15:40', NULL, NULL),
(2, 'Store Owner', 'STORE_OWNER', 'aymco', 'The name of my store owner', 1, 2, NULL, '2008-12-31 15:15:40', NULL, NULL),
(3, 'E-Mail Address', 'STORE_OWNER_EMAIL_ADDRESS', 'info@sportscomplexonline.com', 'The e-mail address of my store owner', 1, 3, '2009-10-30 03:40:32', '2008-12-31 15:15:40', NULL, NULL),
(4, 'E-Mail From', 'EMAIL_FROM', '"sports" <info@sportscomplexonline.com>', 'The e-mail address used in (sent) e-mails', 1, 4, '2009-10-30 03:40:53', '2008-12-31 15:15:41', NULL, NULL),
(5, 'Country', 'STORE_COUNTRY', '223', 'The country my store is located in <br><br><b>Note: Please remember to update the store zone.</b>', 1, 6, NULL, '2008-12-31 15:15:41', 'tep_get_country_name', 'tep_cfg_pull_down_country_list('),
(6, 'Zone', 'STORE_ZONE', '18', 'The zone my store is located in', 1, 7, NULL, '2008-12-31 15:15:41', 'tep_cfg_get_zone_name', 'tep_cfg_pull_down_zone_list('),
(7, 'Expected Sort Order', 'EXPECTED_PRODUCTS_SORT', 'desc', 'This is the sort order used in the expected products box.', 1, 8, NULL, '2008-12-31 15:15:41', NULL, 'tep_cfg_select_option(array(''asc'', ''desc''), '),
(8, 'Expected Sort Field', 'EXPECTED_PRODUCTS_FIELD', 'date_expected', 'The column to sort by in the expected products box.', 1, 9, NULL, '2008-12-31 15:15:41', NULL, 'tep_cfg_select_option(array(''products_name'', ''date_expected''), '),
(9, 'Switch To Default Language Currency', 'USE_DEFAULT_LANGUAGE_CURRENCY', 'false', 'Automatically switch to the language''s currency when it is changed', 1, 10, NULL, '2008-12-31 15:15:41', NULL, 'tep_cfg_select_option(array(''true'', ''false''), '),
(10, 'Send Extra Order Emails To', 'SEND_EXTRA_ORDER_EMAILS_TO', '', 'Send extra order emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;', 1, 11, NULL, '2008-12-31 15:15:41', NULL, NULL),
(11, 'Use Search-Engine Safe URLs (still in development)', 'SEARCH_ENGINE_FRIENDLY_URLS', 'false', 'Use search-engine safe urls for all site links', 1, 12, NULL, '2008-12-31 15:15:41', NULL, 'tep_cfg_select_option(array(''true'', ''false''), '),
(12, 'Display Cart After Adding Product', 'DISPLAY_CART', 'true', 'Display the shopping cart after adding a product (or return back to their origin)', 1, 14, NULL, '2008-12-31 15:15:41', NULL, 'tep_cfg_select_option(array(''true'', ''false''), '),
(13, 'Allow Guest To Tell A Friend', 'ALLOW_GUEST_TO_TELL_A_FRIEND', 'false', 'Allow guests to tell a friend about a product', 1, 15, NULL, '2008-12-31 15:15:41', NULL, 'tep_cfg_select_option(array(''true'', ''false''), '),
(14, 'Default Search Operator', 'ADVANCED_SEARCH_DEFAULT_OPERATOR', 'and', 'Default search operators', 1, 17, NULL, '2008-12-31 15:15:41', NULL, 'tep_cfg_select_option(array(''and'', ''or''), '),
(15, 'Store Address and Phone', 'STORE_NAME_ADDRESS', 'Store Name\r\nPhone', 'This is the Store Name, Address and Phone used on printable documents and displayed online', 1, 18, '2009-11-07 16:34:32', '2008-12-31 15:15:41', NULL, 'tep_cfg_textarea('),
(16, 'Show Category Counts', 'SHOW_COUNTS', 'false', 'Count recursively how many products are in each category', 1, 19, '2009-02-20 20:17:23', '2008-12-31 15:15:41', NULL, 'tep_cfg_select_option(array(''true'', ''false''), '),
(17, 'Tax Decimal Places', 'TAX_DECIMAL_PLACES', '0', 'Pad the tax value this amount of decimal places', 1, 20, NULL, '2008-12-31 15:15:41', NULL, NULL),
(18, 'Display Prices with Tax', 'DISPLAY_PRICE_WITH_TAX', 'false', 'Display prices with tax included (true) or add the tax at the end (false)', 1, 21, NULL, '2008-12-31 15:15:41', NULL, 'tep_cfg_select_option(array(''true'', ''false''), '),
(19, 'First Name', 'ENTRY_FIRST_NAME_MIN_LENGTH', '2', 'Minimum length of first name', 2, 1, NULL, '2008-12-31 15:15:41', NULL, NULL),
(20, 'Last Name', 'ENTRY_LAST_NAME_MIN_LENGTH', '2', 'Minimum length of last name', 2, 2, NULL, '2008-12-31 15:15:41', NULL, NULL),
(21, 'Date of Birth', 'ENTRY_DOB_MIN_LENGTH', '10', 'Minimum length of date of birth', 2, 3, NULL, '2008-12-31 15:15:41', NULL, NULL),
(22, 'E-Mail Address', 'ENTRY_EMAIL_ADDRESS_MIN_LENGTH', '6', 'Minimum length of e-mail address', 2, 4, NULL, '2008-12-31 15:15:41', NULL, NULL),
(23, 'Street Address', 'ENTRY_STREET_ADDRESS_MIN_LENGTH', '5', 'Minimum length of street address', 2, 5, NULL, '2008-12-31 15:15:41', NULL, NULL),
(24, 'Company', 'ENTRY_COMPANY_MIN_LENGTH', '2', 'Minimum length of company name', 2, 6, NULL, '2008-12-31 15:15:41', NULL, NULL),
(25, 'Post Code', 'ENTRY_POSTCODE_MIN_LENGTH', '4', 'Minimum length of post code', 2, 7, NULL, '2008-12-31 15:15:41', NULL, NULL),
(26, 'City', 'ENTRY_CITY_MIN_LENGTH', '3', 'Minimum length of city', 2, 8, NULL, '2008-12-31 15:15:41', NULL, NULL),
(27, 'State', 'ENTRY_STATE_MIN_LENGTH', '2', 'Minimum length of state', 2, 9, NULL, '2008-12-31 15:15:41', NULL, NULL),
(28, 'Telephone Number', 'ENTRY_TELEPHONE_MIN_LENGTH', '3', 'Minimum length of telephone number', 2, 10, NULL, '2008-12-31 15:15:41', NULL, NULL),
(29, 'Password', 'ENTRY_PASSWORD_MIN_LENGTH', '5', 'Minimum length of password', 2, 11, NULL, '2008-12-31 15:15:41', NULL, NULL),
(30, 'Credit Card Owner Name', 'CC_OWNER_MIN_LENGTH', '3', 'Minimum length of credit card owner name', 2, 12, NULL, '2008-12-31 15:15:41', NULL, NULL),
(31, 'Credit Card Number', 'CC_NUMBER_MIN_LENGTH', '10', 'Minimum length of credit card number', 2, 13, NULL, '2008-12-31 15:15:41', NULL, NULL),
(32, 'Review Text', 'REVIEW_TEXT_MIN_LENGTH', '50', 'Minimum length of review text', 2, 14, NULL, '2008-12-31 15:15:41', NULL, NULL),
(33, 'Best Sellers', 'MIN_DISPLAY_BESTSELLERS', '1', 'Minimum number of best sellers to display', 2, 15, NULL, '2008-12-31 15:15:41', NULL, NULL),
(34, 'Also Purchased', 'MIN_DISPLAY_ALSO_PURCHASED', '1', 'Minimum number of products to display in the ''This Customer Also Purchased'' box', 2, 16, NULL, '2008-12-31 15:15:41', NULL, NULL),
(35, 'Address Book Entries', 'MAX_ADDRESS_BOOK_ENTRIES', '5', 'Maximum address book entries a customer is allowed to have', 3, 1, NULL, '2008-12-31 15:15:41', NULL, NULL),
(36, 'Search Results', 'MAX_DISPLAY_SEARCH_RESULTS', '20', 'Amount of products to list', 3, 2, NULL, '2008-12-31 15:15:41', NULL, NULL),
(37, 'Page Links', 'MAX_DISPLAY_PAGE_LINKS', '5', 'Number of ''number'' links use for page-sets', 3, 3, NULL, '2008-12-31 15:15:41', NULL, NULL),
(38, 'Special Products', 'MAX_DISPLAY_SPECIAL_PRODUCTS', '9', 'Maximum number of products on special to display', 3, 4, NULL, '2008-12-31 15:15:41', NULL, NULL),
(39, 'New Products Module', 'MAX_DISPLAY_NEW_PRODUCTS', '9', 'Maximum number of new products to display in a category', 3, 5, NULL, '2008-12-31 15:15:41', NULL, NULL),
(40, 'Products Expected', 'MAX_DISPLAY_UPCOMING_PRODUCTS', '10', 'Maximum number of products expected to display', 3, 6, NULL, '2008-12-31 15:15:41', NULL, NULL),
(41, 'Manufacturers List', 'MAX_DISPLAY_MANUFACTURERS_IN_A_LIST', '0', 'Used in manufacturers box; when the number of manufacturers exceeds this number, a drop-down list will be displayed instead of the default list', 3, 7, NULL, '2008-12-31 15:15:41', NULL, NULL),
(42, 'Manufacturers Select Size', 'MAX_MANUFACTURERS_LIST', '1', 'Used in manufacturers box; when this value is ''1'' the classic drop-down list will be used for the manufacturers box. Otherwise, a list-box with the specified number of rows will be displayed.', 3, 7, NULL, '2008-12-31 15:15:41', NULL, NULL),
(43, 'Length of Manufacturers Name', 'MAX_DISPLAY_MANUFACTURER_NAME_LEN', '15', 'Used in manufacturers box; maximum length of manufacturers name to display', 3, 8, NULL, '2008-12-31 15:15:41', NULL, NULL),
(44, 'New Reviews', 'MAX_DISPLAY_NEW_REVIEWS', '6', 'Maximum number of new reviews to display', 3, 9, NULL, '2008-12-31 15:15:41', NULL, NULL),
(45, 'Selection of Random Reviews', 'MAX_RANDOM_SELECT_REVIEWS', '10', 'How many records to select from to choose one random product review', 3, 10, NULL, '2008-12-31 15:15:41', NULL, NULL),
(46, 'Selection of Random New Products', 'MAX_RANDOM_SELECT_NEW', '10', 'How many records to select from to choose one random new product to display', 3, 11, NULL, '2008-12-31 15:15:41', NULL, NULL),
(47, 'Selection of Products on Special', 'MAX_RANDOM_SELECT_SPECIALS', '10', 'How many records to select from to choose one random product special to display', 3, 12, NULL, '2008-12-31 15:15:41', NULL, NULL),
(48, 'Categories To List Per Row', 'MAX_DISPLAY_CATEGORIES_PER_ROW', '3', 'How many categories to list per row', 3, 13, NULL, '2008-12-31 15:15:41', NULL, NULL),
(49, 'New Products Listing', 'MAX_DISPLAY_PRODUCTS_NEW', '10', 'Maximum number of new products to display in new products page', 3, 14, NULL, '2008-12-31 15:15:41', NULL, NULL),
(50, 'Best Sellers', 'MAX_DISPLAY_BESTSELLERS', '10', 'Maximum number of best sellers to display', 3, 15, NULL, '2008-12-31 15:15:41', NULL, NULL),
(51, 'Also Purchased', 'MAX_DISPLAY_ALSO_PURCHASED', '6', 'Maximum number of products to display in the ''This Customer Also Purchased'' box', 3, 16, NULL, '2008-12-31 15:15:41', NULL, NULL),
(52, 'Customer Order History Box', 'MAX_DISPLAY_PRODUCTS_IN_ORDER_HISTORY_BOX', '6', 'Maximum number of products to display in the customer order history box', 3, 17, NULL, '2008-12-31 15:15:41', NULL, NULL),
(53, 'Order History', 'MAX_DISPLAY_ORDER_HISTORY', '10', 'Maximum number of orders to display in the order history page', 3, 18, NULL, '2008-12-31 15:15:41', NULL, NULL),
(54, 'Product Quantities In Shopping Cart', 'MAX_QTY_IN_CART', '99', 'Maximum number of product quantities that can be added to the shopping cart (0 for no limit)', 3, 19, NULL, '2008-12-31 15:15:41', NULL, NULL),
(55, 'Small Image Width', 'SMALL_IMAGE_WIDTH', '122', 'The pixel width of small images', 4, 1, '2009-02-23 09:50:01', '2008-12-31 15:15:41', NULL, NULL),
(56, 'Small Image Height', 'SMALL_IMAGE_HEIGHT', '118', 'The pixel height of small images', 4, 2, '2009-02-23 09:50:09', '2008-12-31 15:15:41', NULL, NULL),
(57, 'Heading Image Width', 'HEADING_IMAGE_WIDTH', '57', 'The pixel width of heading images', 4, 3, NULL, '2008-12-31 15:15:41', NULL, NULL),
(58, 'Heading Image Height', 'HEADING_IMAGE_HEIGHT', '40', 'The pixel height of heading images', 4, 4, NULL, '2008-12-31 15:15:41', NULL, NULL),
(59, 'Subcategory Image Width', 'SUBCATEGORY_IMAGE_WIDTH', '100', 'The pixel width of subcategory images', 4, 5, NULL, '2008-12-31 15:15:41', NULL, NULL),
(60, 'Subcategory Image Height', 'SUBCATEGORY_IMAGE_HEIGHT', '57', 'The pixel height of subcategory images', 4, 6, NULL, '2008-12-31 15:15:41', NULL, NULL),
(61, 'Calculate Image Size', 'CONFIG_CALCULATE_IMAGE_SIZE', 'true', 'Calculate the size of images?', 4, 7, NULL, '2008-12-31 15:15:41', NULL, 'tep_cfg_select_option(array(''true'', ''false''), '),
(62, 'Image Required', 'IMAGE_REQUIRED', 'true', 'Enable to display broken images. Good for development.', 4, 8, NULL, '2008-12-31 15:15:41', NULL, 'tep_cfg_select_option(array(''true'', ''false''), '),
(63, 'Gender', 'ACCOUNT_GENDER', 'true', 'Display gender in the customers account', 5, 1, NULL, '2008-12-31 15:15:42', NULL, 'tep_cfg_select_option(array(''true'', ''false''), '),
(64, 'Date of Birth', 'ACCOUNT_DOB', 'true', 'Display date of birth in the customers account', 5, 2, NULL, '2008-12-31 15:15:42', NULL, 'tep_cfg_select_option(array(''true'', ''false''), '),
(65, 'Company', 'ACCOUNT_COMPANY', 'true', 'Display company in the customers account', 5, 3, NULL, '2008-12-31 15:15:42', NULL, 'tep_cfg_select_option(array(''true'', ''false''), '),
(66, 'Suburb', 'ACCOUNT_SUBURB', 'true', 'Display suburb in the customers account', 5, 4, NULL, '2008-12-31 15:15:42', NULL, 'tep_cfg_select_option(array(''true'', ''false''), '),
(67, 'State', 'ACCOUNT_STATE', 'true', 'Display state in the customers account', 5, 5, NULL, '2008-12-31 15:15:42', NULL, 'tep_cfg_select_option(array(''true'', ''false''), '),
(68, 'Installed Modules', 'MODULE_PAYMENT_INSTALLED', 'cc.php;cod.php', 'List of payment module filenames separated by a semi-colon. This is automatically updated. No need to edit. (Example: cc.php;cod.php;paypal.php)', 6, 0, NULL, '2008-12-31 15:15:42', NULL, NULL),
(69, 'Installed Modules', 'MODULE_ORDER_TOTAL_INSTALLED', 'ot_subtotal.php;ot_shipping.php;ot_tax.php;ot_total.php', 'List of order_total module filenames separated by a semi-colon. This is automatically updated. No need to edit. (Example: ot_subtotal.php;ot_tax.php;ot_shipping.php;ot_total.php)', 6, 0, '2009-11-07 20:23:14', '2008-12-31 15:15:42', NULL, NULL),
(70, 'Installed Modules', 'MODULE_SHIPPING_INSTALLED', 'flat.php;zones.php', 'List of shipping module filenames separated by a semi-colon. This is automatically updated. No need to edit. (Example: ups.php;flat.php;item.php)', 6, 0, '2009-03-07 02:58:38', '2008-12-31 15:15:42', NULL, NULL),
(71, 'Enable Cash On Delivery Module', 'MODULE_PAYMENT_COD_STATUS', 'True', 'Do you want to accept Cash On Delevery payments?', 6, 1, NULL, '2008-12-31 15:15:42', NULL, 'tep_cfg_select_option(array(''True'', ''False''), '),
(72, 'Payment Zone', 'MODULE_PAYMENT_COD_ZONE', '0', 'If a zone is selected, only enable this payment method for that zone.', 6, 2, NULL, '2008-12-31 15:15:42', 'tep_get_zone_class_title', 'tep_cfg_pull_down_zone_classes('),
(73, 'Sort order of display.', 'MODULE_PAYMENT_COD_SORT_ORDER', '0', 'Sort order of display. Lowest is displayed first.', 6, 0, NULL, '2008-12-31 15:15:42', NULL, NULL),
(74, 'Set Order Status', 'MODULE_PAYMENT_COD_ORDER_STATUS_ID', '0', 'Set the status of orders made with this payment module to this value', 6, 0, NULL, '2008-12-31 15:15:42', 'tep_get_order_status_name', 'tep_cfg_pull_down_order_statuses('),
(75, 'Enable Credit Card Module', 'MODULE_PAYMENT_CC_STATUS', 'True', 'Do you want to accept credit card payments?', 6, 0, NULL, '2008-12-31 15:15:42', NULL, 'tep_cfg_select_option(array(''True'', ''False''), '),
(76, 'Split Credit Card E-Mail Address', 'MODULE_PAYMENT_CC_EMAIL', '', 'If an e-mail address is entered, the middle digits of the credit card number will be sent to the e-mail address (the outside digits are stored in the database with the middle digits censored)', 6, 0, NULL, '2008-12-31 15:15:42', NULL, NULL),
(77, 'Sort order of display.', 'MODULE_PAYMENT_CC_SORT_ORDER', '0', 'Sort order of display. Lowest is displayed first.', 6, 0, NULL, '2008-12-31 15:15:42', NULL, NULL),
(78, 'Payment Zone', 'MODULE_PAYMENT_CC_ZONE', '0', 'If a zone is selected, only enable this payment method for that zone.', 6, 2, NULL, '2008-12-31 15:15:42', 'tep_get_zone_class_title', 'tep_cfg_pull_down_zone_classes('),
(79, 'Set Order Status', 'MODULE_PAYMENT_CC_ORDER_STATUS_ID', '0', 'Set the status of orders made with this payment module to this value', 6, 0, NULL, '2008-12-31 15:15:42', 'tep_get_order_status_name', 'tep_cfg_pull_down_order_statuses('),
(80, 'Enable Flat Shipping', 'MODULE_SHIPPING_FLAT_STATUS', 'True', 'Do you want to offer flat rate shipping?', 6, 0, NULL, '2008-12-31 15:15:42', NULL, 'tep_cfg_select_option(array(''True'', ''False''), '),
(81, 'Shipping Cost', 'MODULE_SHIPPING_FLAT_COST', '5.00', 'The shipping cost for all orders using this shipping method.', 6, 0, NULL, '2008-12-31 15:15:42', NULL, NULL),
(82, 'Tax Class', 'MODULE_SHIPPING_FLAT_TAX_CLASS', '0', 'Use the following tax class on the shipping fee.', 6, 0, NULL, '2008-12-31 15:15:42', 'tep_get_tax_class_title', 'tep_cfg_pull_down_tax_classes('),
(83, 'Shipping Zone', 'MODULE_SHIPPING_FLAT_ZONE', '0', 'If a zone is selected, only enable this shipping method for that zone.', 6, 0, NULL, '2008-12-31 15:15:42', 'tep_get_zone_class_title', 'tep_cfg_pull_down_zone_classes('),
(84, 'Sort Order', 'MODULE_SHIPPING_FLAT_SORT_ORDER', '0', 'Sort order of display.', 6, 0, NULL, '2008-12-31 15:15:42', NULL, NULL),
(85, 'Default Currency', 'DEFAULT_CURRENCY', 'USD', 'Default Currency', 6, 0, NULL, '2008-12-31 15:15:42', NULL, NULL),
(86, 'Default Language', 'DEFAULT_LANGUAGE', 'en', 'Default Language', 6, 0, NULL, '2008-12-31 15:15:42', NULL, NULL),
(87, 'Default Order Status For New Orders', 'DEFAULT_ORDERS_STATUS_ID', '1', 'When a new order is created, this order status will be assigned to it.', 6, 0, NULL, '2008-12-31 15:15:42', NULL, NULL),
(88, 'Display Shipping', 'MODULE_ORDER_TOTAL_SHIPPING_STATUS', 'true', 'Do you want to display the order shipping cost?', 6, 1, NULL, '2008-12-31 15:15:42', NULL, 'tep_cfg_select_option(array(''true'', ''false''), '),
(89, 'Sort Order', 'MODULE_ORDER_TOTAL_SHIPPING_SORT_ORDER', '2', 'Sort order of display.', 6, 2, NULL, '2008-12-31 15:15:42', NULL, NULL),
(90, 'Allow Free Shipping', 'MODULE_ORDER_TOTAL_SHIPPING_FREE_SHIPPING', 'false', 'Do you want to allow free shipping?', 6, 3, NULL, '2008-12-31 15:15:42', NULL, 'tep_cfg_select_option(array(''true'', ''false''), '),
(91, 'Free Shipping For Orders Over', 'MODULE_ORDER_TOTAL_SHIPPING_FREE_SHIPPING_OVER', '50', 'Provide free shipping for orders over the set amount.', 6, 4, NULL, '2008-12-31 15:15:42', 'currencies->format', NULL),
(92, 'Provide Free Shipping For Orders Made', 'MODULE_ORDER_TOTAL_SHIPPING_DESTINATION', 'national', 'Provide free shipping for orders sent to the set destination.', 6, 5, NULL, '2008-12-31 15:15:42', NULL, 'tep_cfg_select_option(array(''national'', ''international'', ''both''), '),
(93, 'Display Sub-Total', 'MODULE_ORDER_TOTAL_SUBTOTAL_STATUS', 'true', 'Do you want to display the order sub-total cost?', 6, 1, NULL, '2008-12-31 15:15:42', NULL, 'tep_cfg_select_option(array(''true'', ''false''), '),
(94, 'Sort Order', 'MODULE_ORDER_TOTAL_SUBTOTAL_SORT_ORDER', '1', 'Sort order of display.', 6, 2, NULL, '2008-12-31 15:15:42', NULL, NULL),
(95, 'Display Tax', 'MODULE_ORDER_TOTAL_TAX_STATUS', 'true', 'Do you want to display the order tax value?', 6, 1, NULL, '2008-12-31 15:15:42', NULL, 'tep_cfg_select_option(array(''true'', ''false''), '),
(96, 'Sort Order', 'MODULE_ORDER_TOTAL_TAX_SORT_ORDER', '3', 'Sort order of display.', 6, 2, NULL, '2008-12-31 15:15:42', NULL, NULL),
(97, 'Display Total', 'MODULE_ORDER_TOTAL_TOTAL_STATUS', 'true', 'Do you want to display the total order value?', 6, 1, NULL, '2008-12-31 15:15:42', NULL, 'tep_cfg_select_option(array(''true'', ''false''), '),
(98, 'Sort Order', 'MODULE_ORDER_TOTAL_TOTAL_SORT_ORDER', '4', 'Sort order of display.', 6, 2, NULL, '2008-12-31 15:15:42', NULL, NULL),
(99, 'Country of Origin', 'SHIPPING_ORIGIN_COUNTRY', '21', 'Select the country of origin to be used in shipping quotes.', 7, 1, '2009-10-30 03:44:40', '2008-12-31 15:15:42', 'tep_get_country_name', 'tep_cfg_pull_down_country_list('),
(100, 'Postal Code', 'SHIPPING_ORIGIN_ZIP', '8400', 'Enter the Postal Code (ZIP) of the Store to be used in shipping quotes.', 7, 2, '2009-10-30 03:44:56', '2008-12-31 15:15:42', NULL, NULL),
(101, 'Enter the Maximum Package Weight you will ship', 'SHIPPING_MAX_WEIGHT', '50', 'Carriers have a max weight limit for a single package. This is a common one for all.', 7, 3, NULL, '2008-12-31 15:15:42', NULL, NULL),
(102, 'Package Tare weight.', 'SHIPPING_BOX_WEIGHT', '3', 'What is the weight of typical packaging of small to medium packages?', 7, 4, NULL, '2008-12-31 15:15:42', NULL, NULL),
(103, 'Larger packages - percentage increase.', 'SHIPPING_BOX_PADDING', '10', 'For 10% enter 10', 7, 5, NULL, '2008-12-31 15:15:42', NULL, NULL),
(104, 'Display Product Image', 'PRODUCT_LIST_IMAGE', '1', 'Do you want to display the Product Image?', 8, 1, NULL, '2008-12-31 15:15:42', NULL, NULL),
(105, 'Display Product Manufaturer Name', 'PRODUCT_LIST_MANUFACTURER', '0', 'Do you want to display the Product Manufacturer Name?', 8, 2, NULL, '2008-12-31 15:15:42', NULL, NULL),
(106, 'Display Product Model', 'PRODUCT_LIST_MODEL', '0', 'Do you want to display the Product Model?', 8, 3, NULL, '2008-12-31 15:15:42', NULL, NULL),
(107, 'Display Product Name', 'PRODUCT_LIST_NAME', '2', 'Do you want to display the Product Name?', 8, 4, NULL, '2008-12-31 15:15:42', NULL, NULL),
(108, 'Display Product Price', 'PRODUCT_LIST_PRICE', '3', 'Do you want to display the Product Price', 8, 5, NULL, '2008-12-31 15:15:42', NULL, NULL),
(109, 'Display Product Quantity', 'PRODUCT_LIST_QUANTITY', '0', 'Do you want to display the Product Quantity?', 8, 6, NULL, '2008-12-31 15:15:42', NULL, NULL),
(110, 'Display Product Weight', 'PRODUCT_LIST_WEIGHT', '0', 'Do you want to display the Product Weight?', 8, 7, NULL, '2008-12-31 15:15:42', NULL, NULL),
(111, 'Display Buy Now column', 'PRODUCT_LIST_BUY_NOW', '4', 'Do you want to display the Buy Now column?', 8, 8, NULL, '2008-12-31 15:15:42', NULL, NULL),
(112, 'Display Category/Manufacturer Filter (0=disable; 1=enable)', 'PRODUCT_LIST_FILTER', '1', 'Do you want to display the Category/Manufacturer Filter?', 8, 9, NULL, '2008-12-31 15:15:42', NULL, NULL),
(113, 'Location of Prev/Next Navigation Bar (1-top, 2-bottom, 3-both)', 'PREV_NEXT_BAR_LOCATION', '2', 'Sets the location of the Prev/Next Navigation Bar (1-top, 2-bottom, 3-both)', 8, 10, '2009-02-25 10:08:45', '2008-12-31 15:15:42', NULL, NULL),
(114, 'Check stock level', 'STOCK_CHECK', 'true', 'Check to see if sufficent stock is available', 9, 1, NULL, '2008-12-31 15:15:42', NULL, 'tep_cfg_select_option(array(''true'', ''false''), '),
(115, 'Subtract stock', 'STOCK_LIMITED', 'true', 'Subtract product in stock by product orders', 9, 2, NULL, '2008-12-31 15:15:42', NULL, 'tep_cfg_select_option(array(''true'', ''false''), '),
(116, 'Allow Checkout', 'STOCK_ALLOW_CHECKOUT', 'true', 'Allow customer to checkout even if there is insufficient stock', 9, 3, NULL, '2008-12-31 15:15:42', NULL, 'tep_cfg_select_option(array(''true'', ''false''), '),
(117, 'Mark product out of stock', 'STOCK_MARK_PRODUCT_OUT_OF_STOCK', '***', 'Display something on screen so customer can see which product has insufficient stock', 9, 4, NULL, '2008-12-31 15:15:42', NULL, NULL),
(118, 'Stock Re-order level', 'STOCK_REORDER_LEVEL', '5', 'Define when stock needs to be re-ordered', 9, 5, NULL, '2008-12-31 15:15:42', NULL, NULL),
(119, 'Store Page Parse Time', 'STORE_PAGE_PARSE_TIME', 'false', 'Store the time it takes to parse a page', 10, 1, NULL, '2008-12-31 15:15:42', NULL, 'tep_cfg_select_option(array(''true'', ''false''), '),
(120, 'Log Destination', 'STORE_PAGE_PARSE_TIME_LOG', '/var/log/www/tep/page_parse_time.log', 'Directory and filename of the page parse time log', 10, 2, NULL, '2008-12-31 15:15:42', NULL, NULL),
(121, 'Log Date Format', 'STORE_PARSE_DATE_TIME_FORMAT', '%d/%m/%Y %H:%M:%S', 'The date format', 10, 3, NULL, '2008-12-31 15:15:42', NULL, NULL),
(122, 'Display The Page Parse Time', 'DISPLAY_PAGE_PARSE_TIME', 'true', 'Display the page parse time (store page parse time must be enabled)', 10, 4, NULL, '2008-12-31 15:15:42', NULL, 'tep_cfg_select_option(array(''true'', ''false''), '),
(123, 'Store Database Queries', 'STORE_DB_TRANSACTIONS', 'false', 'Store the database queries in the page parse time log (PHP4 only)', 10, 5, NULL, '2008-12-31 15:15:43', NULL, 'tep_cfg_select_option(array(''true'', ''false''), '),
(124, 'Use Cache', 'USE_CACHE', 'false', 'Use caching features', 11, 1, NULL, '2008-12-31 15:15:43', NULL, 'tep_cfg_select_option(array(''true'', ''false''), '),
(125, 'Cache Directory', 'DIR_FS_CACHE', '/tmp/', 'The directory where the cached files are saved', 11, 2, NULL, '2008-12-31 15:15:43', NULL, NULL),
(126, 'E-Mail Transport Method', 'EMAIL_TRANSPORT', 'sendmail', 'Defines if this server uses a local connection to sendmail or uses an SMTP connection via TCP/IP. Servers running on Windows and MacOS should change this setting to SMTP.', 12, 1, NULL, '2008-12-31 15:15:43', NULL, 'tep_cfg_select_option(array(''sendmail'', ''smtp''),'),
(127, 'E-Mail Linefeeds', 'EMAIL_LINEFEED', 'LF', 'Defines the character sequence used to separate mail headers.', 12, 2, NULL, '2008-12-31 15:15:43', NULL, 'tep_cfg_select_option(array(''LF'', ''CRLF''),'),
(128, 'Use MIME HTML When Sending Emails', 'EMAIL_USE_HTML', 'false', 'Send e-mails in HTML format', 12, 3, NULL, '2008-12-31 15:15:43', NULL, 'tep_cfg_select_option(array(''true'', ''false''),'),
(129, 'Verify E-Mail Addresses Through DNS', 'ENTRY_EMAIL_ADDRESS_CHECK', 'false', 'Verify e-mail address through a DNS server', 12, 4, NULL, '2008-12-31 15:15:43', NULL, 'tep_cfg_select_option(array(''true'', ''false''), '),
(130, 'Send E-Mails', 'SEND_EMAILS', 'true', 'Send out e-mails', 12, 5, NULL, '2008-12-31 15:15:43', NULL, 'tep_cfg_select_option(array(''true'', ''false''), '),
(131, 'Enable download', 'DOWNLOAD_ENABLED', 'false', 'Enable the products download functions.', 13, 1, NULL, '2008-12-31 15:15:43', NULL, 'tep_cfg_select_option(array(''true'', ''false''), '),
(132, 'Download by redirect', 'DOWNLOAD_BY_REDIRECT', 'false', 'Use browser redirection for download. Disable on non-Unix systems.', 13, 2, NULL, '2008-12-31 15:15:43', NULL, 'tep_cfg_select_option(array(''true'', ''false''), '),
(133, 'Expiry delay (days)', 'DOWNLOAD_MAX_DAYS', '7', 'Set number of days before the download link expires. 0 means no limit.', 13, 3, NULL, '2008-12-31 15:15:43', NULL, ''),
(134, 'Maximum number of downloads', 'DOWNLOAD_MAX_COUNT', '5', 'Set the maximum number of downloads. 0 means no download authorized.', 13, 4, NULL, '2008-12-31 15:15:43', NULL, ''),
(135, 'Enable GZip Compression', 'GZIP_COMPRESSION', 'false', 'Enable HTTP GZip compression.', 14, 1, NULL, '2008-12-31 15:15:43', NULL, 'tep_cfg_select_option(array(''true'', ''false''), '),
(136, 'Compression Level', 'GZIP_LEVEL', '5', 'Use this compression level 0-9 (0 = minimum, 9 = maximum).', 14, 2, NULL, '2008-12-31 15:15:43', NULL, NULL),
(137, 'Session Directory', 'SESSION_WRITE_DIRECTORY', '/tmp', 'If sessions are file based, store them in this directory.', 15, 1, NULL, '2008-12-31 15:15:43', NULL, NULL),
(138, 'Force Cookie Use', 'SESSION_FORCE_COOKIE_USE', 'False', 'Force the use of sessions when cookies are only enabled.', 15, 2, NULL, '2008-12-31 15:15:43', NULL, 'tep_cfg_select_option(array(''True'', ''False''), '),
(139, 'Check SSL Session ID', 'SESSION_CHECK_SSL_SESSION_ID', 'False', 'Validate the SSL_SESSION_ID on every secure HTTPS page request.', 15, 3, NULL, '2008-12-31 15:15:43', NULL, 'tep_cfg_select_option(array(''True'', ''False''), '),
(140, 'Check User Agent', 'SESSION_CHECK_USER_AGENT', 'False', 'Validate the clients browser user agent on every page request.', 15, 4, NULL, '2008-12-31 15:15:43', NULL, 'tep_cfg_select_option(array(''True'', ''False''), '),
(141, 'Check IP Address', 'SESSION_CHECK_IP_ADDRESS', 'False', 'Validate the clients IP address on every page request.', 15, 5, NULL, '2008-12-31 15:15:43', NULL, 'tep_cfg_select_option(array(''True'', ''False''), '),
(142, 'Prevent Spider Sessions', 'SESSION_BLOCK_SPIDERS', 'True', 'Prevent known spiders from starting a session.', 15, 6, NULL, '2008-12-31 15:15:43', NULL, 'tep_cfg_select_option(array(''True'', ''False''), '),
(143, 'Recreate Session', 'SESSION_RECREATE', 'False', 'Recreate the session to generate a new session ID when the customer logs on or creates an account (PHP >=4.1 needed).', 15, 7, NULL, '2008-12-31 15:15:43', NULL, 'tep_cfg_select_option(array(''True'', ''False''), '),
(144, 'Use Ajax marquee?', 'AJAX_MARQUEE', 'true', 'Use Ajax marquee?', 1, 50, '2009-01-01 17:51:16', '2009-01-01 17:51:16', '', 'tep_cfg_select_option(array(''false'', ''true''),'),
(145, 'Display Add Multiples column', 'PRODUCT_LIST_MULTIPLE', '0', 'Do you want to display the Multiple Quantity with Attributes column?', 8, 11, NULL, '2009-01-03 11:17:00', NULL, NULL),
(146, 'Display Add Multiples with Buy Now column', 'PRODUCT_LIST_BUY_NOW_MULTIPLE', '0', 'Do you want to display the Multiple Quantity Buy Now with Attributes column?', 8, 12, NULL, '2009-01-03 11:17:00', NULL, NULL),
(147, 'Number of column per row', 'PRODUCT_LIST_NUMCOL', '4', 'How many columns per row to display?', 8, 13, '2009-02-23 10:50:48', '2009-01-03 11:17:00', NULL, NULL),
(148, 'Show actual price in the pull down menu for attributes', 'PRODUCT_LIST_ACTUAL_PRICE_IN_DROPDOWN', 'No', 'Do you want to show the actual price in the pull down menu for attributes or the (+ $10.00) ?', 8, 14, NULL, '2009-01-03 11:17:00', NULL, 'tep_cfg_select_option(array(''Yes'', ''No''), '),
(149, 'Display Featured Products', 'FEATURED_PRODUCTS_DISPLAY', 'true', 'Set to true or false in order to display featured.', 39, 1, '2009-01-03 11:34:26', '2009-01-03 11:34:26', NULL, NULL),
(150, 'Maximum Display of Featured', 'MAX_DISPLAY_FEATURED_PRODUCTS', '6', 'This is the maximum amount of items to display on the front page.', 39, 2, '2009-01-03 11:34:26', '2009-01-03 11:34:26', NULL, NULL),
(151, 'Debug Thumbnail Creation', 'THUMB_DEBUG', 'false', 'Set to true if it is not working. Perhaps it helps.', 4, 100, NULL, '2009-01-03 12:03:19', NULL, 'tep_cfg_select_option(array(''true'', ''false''), '),
(152, 'GD-Lib version', 'IN_GD_LIB_VERSION', '2', '1 for old GD-Lib version (1.x)<br>2 for new GD-Lib Version (2.x)', 4, 101, NULL, '2009-01-03 12:03:19', NULL, 'tep_cfg_select_option(array(''1'', ''2''), '),
(153, 'Big Image Subdirectory', 'DIR_FS_CATALOG_IMAGES_BIG', 'images_big/', 'Subdir for the big image. It lies under the image directory. The script generates the subdir, but you should do it yourself and don''t forget to chmod it.', 4, 102, NULL, '2009-01-03 12:03:19', NULL, NULL),
(154, 'Thumbnail Subdirectory', 'DIR_FS_CATALOG_IMAGES_THUMBS', 'thumbs/', 'Subdir for the thumbnail images. It lies under the image directory. The script generates the subdir, but you should do it yourself and don''t forget to chmod it.', 4, 102, NULL, '2009-01-03 12:03:19', NULL, NULL),
(155, 'Small Image Resize Method', 'IN_SMALL_IMAGE_WAY_OF_RESIZE', '1', 'Small image width & height set the size<br><br>0: Propotional resize<br><br>1: Propotional resize; New image is the small image width & height. The background is set below if it does not fit exactly.<br><br>2: The new image is filled completly.', 4, 103, '2009-01-03 13:24:48', '2009-01-03 12:03:19', NULL, 'tep_cfg_select_option(array(''0'', ''1'', ''2''), '),
(156, 'Small Image Background (Red Color)', 'IN_IMAGE_BGCOLOUR_R', '255', 'Small Image Background Color:<br>The red component of the bg color (RGB) for the small images if you use resize method 1.<br><br>Example: In the color 255,150,0; the red component is 255', 4, 104, NULL, '2009-01-03 12:03:19', NULL, NULL),
(157, 'Small Image Background (Green Color)', 'IN_IMAGE_BGCOLOUR_G', '255', 'Small Image Background Color:<br>The green component of the bg color (RGB) for the small images if you use resize method 1.<br><br>Example: In the color 255,150,0; the green component is 150', 4, 105, NULL, '2009-01-03 12:03:19', NULL, NULL),
(158, 'Small Image Background (Blue Color)', 'IN_IMAGE_BGCOLOUR_B', '255', 'Small Image Background Color:<br>The blue component of the bg color for (RGB) the small images if you use resize method 1.<br><br>Example: In the color 255,150,0; the blue component is 0', 4, 106, NULL, '2009-01-03 12:03:19', NULL, NULL),
(159, 'Big Image Resize Method', 'IN_BIG_IMAGE_WAY_OF_RESIZE', '1', 'Big image width & height set the size<br><br>0: Propotional resize<br><br>1: Propotional resize; New image is the big image width & height.<br><br>2: The new image is filled completly.', 4, 107, '2009-01-03 13:22:43', '2009-01-03 12:03:19', NULL, 'tep_cfg_select_option(array(''0'', ''1'', ''2''), '),
(160, 'Big Image Width', 'IN_BIGIMAGE_WIDTH', '', 'Big Image resize width:<br>Leave empty if you don''t want to resize the big image', 4, 108, '2009-01-03 14:43:47', '2009-01-03 12:03:19', NULL, NULL),
(161, 'Big Image Height', 'IN_BIGIMAGE_HEIGHT', '', 'Big Image resize height:<br>Leave empty if you don''t want to resize the big image', 4, 109, '2009-01-03 14:43:57', '2009-01-03 12:03:19', NULL, NULL),
(168, 'Enable Zones Method', 'MODULE_SHIPPING_ZONES_STATUS', 'True', 'Do you want to offer zone rate shipping?', 6, 0, NULL, '2009-03-07 02:58:37', NULL, 'tep_cfg_select_option(array(''True'', ''False''), '),
(169, 'Tax Class', 'MODULE_SHIPPING_ZONES_TAX_CLASS', '0', 'Use the following tax class on the shipping fee.', 6, 0, NULL, '2009-03-07 02:58:37', 'tep_get_tax_class_title', 'tep_cfg_pull_down_tax_classes('),
(170, 'Sort Order', 'MODULE_SHIPPING_ZONES_SORT_ORDER', '0', 'Sort order of display.', 6, 0, NULL, '2009-03-07 02:58:37', NULL, NULL),
(171, 'Zone 1 Countries', 'MODULE_SHIPPING_ZONES_COUNTRIES_1', 'NL,LU', 'Comma separated list of two character ISO country codes that are part of Zone 1.', 6, 0, NULL, '2009-03-07 02:58:37', NULL, NULL),
(172, 'Zone 1 Shipping Table', 'MODULE_SHIPPING_ZONES_COST_1', '0.35:8,1:8,2:17,5:15,10:15,20:28,30:28', 'Shipping rates to Zone 1 destinations based on a group of maximum order weights. Example: 3:8.50,7:10.50,... Weights less than or equal to 3 would cost 8.50 for Zone 1 destinations.', 6, 0, NULL, '2009-03-07 02:58:37', NULL, NULL),
(173, 'Zone 1 Handling Fee', 'MODULE_SHIPPING_ZONES_HANDLING_1', '0', 'Handling Fee for this shipping zone', 6, 0, NULL, '2009-03-07 02:58:37', NULL, NULL),
(174, 'Zone 2 Countries', 'MODULE_SHIPPING_ZONES_COUNTRIES_2', 'AE,BG,CY,DK,ES,FI,FR,GK,GB,HU,IE,IT,LV,LT,ME,MY,NM,MC,AT,PL,PT,RO,SK,SI,ES,CZ,SE', 'Comma separated list of two character ISO country codes that are part of Zone 2.', 6, 0, NULL, '2009-03-07 02:58:37', NULL, NULL),
(175, 'Zone 2 Shipping Table', 'MODULE_SHIPPING_ZONES_COST_2', '0.35:8,1:11,2:20,5:28,10:41,20:54,30:67', 'Shipping rates to Zone 2 destinations based on a group of maximum order weights. Example: 3:8.50,7:10.50,... Weights less than or equal to 3 would cost 8.50 for Zone 2 destinations.', 6, 0, NULL, '2009-03-07 02:58:37', NULL, NULL),
(176, 'Zone 2 Handling Fee', 'MODULE_SHIPPING_ZONES_HANDLING_2', '0', 'Handling Fee for this shipping zone', 6, 0, NULL, '2009-03-07 02:58:37', NULL, NULL),
(177, 'Zone 3 Countries', 'MODULE_SHIPPING_ZONES_COUNTRIES_3', 'AL,AD,BA,CS,FO,GE,GI,GS,IS,NJ,HR,LI,MK,MD,Me,NO,UA,RU,SM,RS,TR,VA,CH', 'Comma separated list of two character ISO country codes that are part of Zone 3.', 6, 0, NULL, '2009-03-07 02:58:37', NULL, NULL),
(178, 'Zone 3 Shipping Table', 'MODULE_SHIPPING_ZONES_COST_3', '0.35:8,1:11,2:20,5:28,10:54,20:80,30:106', 'Shipping rates to Zone 3 destinations based on a group of maximum order weights. Example: 3:8.50,7:10.50,... Weights less than or equal to 3 would cost 8.50 for Zone 3 destinations.', 6, 0, NULL, '2009-03-07 02:58:37', NULL, NULL),
(179, 'Zone 3 Handling Fee', 'MODULE_SHIPPING_ZONES_HANDLING_3', '0', 'Handling Fee for this shipping zone', 6, 0, NULL, '2009-03-07 02:58:37', NULL, NULL),
(180, 'Zone 4 Countries', 'MODULE_SHIPPING_ZONES_COUNTRIES_4', 'DZ,EG,JO,MA,SY,TN', 'Comma separated list of two character ISO country codes that are part of Zone 4.', 6, 0, NULL, '2009-03-07 02:58:37', NULL, NULL),
(181, 'Zone 4 Shipping Table', 'MODULE_SHIPPING_ZONES_COST_4', '0.35:11,1:17,2:32,5:28,10:54,20:80,30:106', 'Shipping rates to Zone 4 destinations based on a group of maximum order weights. Example: 3:8.50,7:10.50,... Weights less than or equal to 3 would cost 8.50 for Zone 4 destinations.', 6, 0, NULL, '2009-03-07 02:58:37', NULL, NULL),
(182, 'Zone 4 Handling Fee', 'MODULE_SHIPPING_ZONES_HANDLING_4', '0', 'Handling Fee for this shipping zone', 6, 0, NULL, '2009-03-07 02:58:37', NULL, NULL),
(183, 'Zone 5 Countries', 'MODULE_SHIPPING_ZONES_COUNTRIES_5', 'AF,AL,AS,AO,AI,AQ,AG,AR,AM,AW,AU,AZ,BS,BH,BD,BB,BY,BZ,BJ,BM,BT,BO,BW,BV,BR,IO,BN,BF,BI,KH,CM,CA,CV,CF,TD,CL,CN,CX,CC,CO,KM,CG,CK,CR,CI,HR,CU,DJ,DM,DO,TP,EC,SV,GQ,ER,EE,ET,FK,FO,FJ,FI,FR,FX,GF,PF,TF,GA,GM,DE,GH,GI,GR,GL,GD,GP,GU,GT,GS,GN,GW,GY,HT,HM,HN,HK', 'Comma separated list of two character ISO country codes that are part of Zone 5.', 6, 0, NULL, '2009-03-07 02:58:37', NULL, NULL),
(184, 'Zone 5 Shipping Table', 'MODULE_SHIPPING_ZONES_COST_5', '0.35:11,1:17,2:32,5:54,10:106,20:158,30:210', 'Shipping rates to Zone 5 destinations based on a group of maximum order weights. Example: 3:8.50,7:10.50,... Weights less than or equal to 3 would cost 8.50 for Zone 5 destinations.', 6, 0, NULL, '2009-03-07 02:58:37', NULL, NULL),
(185, 'Zone 5 Handling Fee', 'MODULE_SHIPPING_ZONES_HANDLING_5', '0', 'Handling Fee for this shipping zone', 6, 0, NULL, '2009-03-07 02:58:37', NULL, NULL),
(186, 'Zone 6 Countries', 'MODULE_SHIPPING_ZONES_COUNTRIES_6', 'BE', 'Comma separated list of two character ISO country codes that are part of Zone 6.', 6, 0, NULL, '2009-03-07 02:58:37', NULL, NULL),
(187, 'Zone 6 Shipping Table', 'MODULE_SHIPPING_ZONES_COST_6', '2:675,10:1075,30:1275', 'Shipping rates to Zone 6 destinations based on a group of maximum order weights. Example: 3:8.50,7:10.50,... Weights less than or equal to 3 would cost 8.50 for Zone 6 destinations.', 6, 0, NULL, '2009-03-07 02:58:37', NULL, NULL),
(188, 'Zone 6 Handling Fee', 'MODULE_SHIPPING_ZONES_HANDLING_6', '0', 'Handling Fee for this shipping zone', 6, 0, NULL, '2009-03-07 02:58:37', NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `configuration_group`
--

CREATE TABLE IF NOT EXISTS `configuration_group` (
  `configuration_group_id` int(11) NOT NULL AUTO_INCREMENT,
  `configuration_group_title` varchar(64) NOT NULL,
  `configuration_group_description` varchar(255) NOT NULL,
  `sort_order` int(5) DEFAULT NULL,
  `visible` int(1) DEFAULT '1',
  PRIMARY KEY (`configuration_group_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=40 ;

--
-- Dumping data for table `configuration_group`
--

INSERT INTO `configuration_group` (`configuration_group_id`, `configuration_group_title`, `configuration_group_description`, `sort_order`, `visible`) VALUES
(1, 'My Store', 'General information about my store', 1, 1),
(2, 'Minimum Values', 'The minimum values for functions / data', 2, 1),
(3, 'Maximum Values', 'The maximum values for functions / data', 3, 1),
(4, 'Images', 'Image parameters', 4, 1),
(5, 'Customer Details', 'Customer account configuration', 5, 1),
(6, 'Module Options', 'Hidden from configuration', 6, 0),
(7, 'Shipping/Packaging', 'Shipping options available at my store', 7, 1),
(8, 'Product Listing', 'Product Listing    configuration options', 8, 1),
(9, 'Stock', 'Stock configuration options', 9, 1),
(10, 'Logging', 'Logging configuration options', 10, 1),
(11, 'Cache', 'Caching configuration options', 11, 1),
(12, 'E-Mail Options', 'General setting for E-Mail transport and HTML E-Mails', 12, 1),
(13, 'Download', 'Downloadable products options', 13, 1),
(14, 'GZip Compression', 'GZip compression options', 14, 1),
(15, 'Sessions', 'Session options', 15, 1),
(39, 'Featured', 'Featured Products Display', 339, 1);

-- --------------------------------------------------------

--
-- Table structure for table `counter`
--

CREATE TABLE IF NOT EXISTS `counter` (
  `startdate` char(8) DEFAULT NULL,
  `counter` int(12) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `counter`
--

INSERT INTO `counter` (`startdate`, `counter`) VALUES
('20081231', 893);

-- --------------------------------------------------------

--
-- Table structure for table `counter_history`
--

CREATE TABLE IF NOT EXISTS `counter_history` (
  `month` char(8) DEFAULT NULL,
  `counter` int(12) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `counter_history`
--


-- --------------------------------------------------------

--
-- Table structure for table `countries`
--

CREATE TABLE IF NOT EXISTS `countries` (
  `countries_id` int(11) NOT NULL AUTO_INCREMENT,
  `countries_name` varchar(64) NOT NULL,
  `countries_iso_code_2` char(2) NOT NULL,
  `countries_iso_code_3` char(3) NOT NULL,
  `address_format_id` int(11) NOT NULL,
  PRIMARY KEY (`countries_id`),
  KEY `IDX_COUNTRIES_NAME` (`countries_name`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=240 ;

--
-- Dumping data for table `countries`
--

INSERT INTO `countries` (`countries_id`, `countries_name`, `countries_iso_code_2`, `countries_iso_code_3`, `address_format_id`) VALUES
(1, 'Afghanistan', 'AF', 'AFG', 1),
(2, 'Albania', 'AL', 'ALB', 1),
(3, 'Algeria', 'DZ', 'DZA', 1),
(4, 'American Samoa', 'AS', 'ASM', 1),
(5, 'Andorra', 'AD', 'AND', 1),
(6, 'Angola', 'AO', 'AGO', 1),
(7, 'Anguilla', 'AI', 'AIA', 1),
(8, 'Antarctica', 'AQ', 'ATA', 1),
(9, 'Antigua and Barbuda', 'AG', 'ATG', 1),
(10, 'Argentina', 'AR', 'ARG', 1),
(11, 'Armenia', 'AM', 'ARM', 1),
(12, 'Aruba', 'AW', 'ABW', 1),
(13, 'Australia', 'AU', 'AUS', 1),
(14, 'Austria', 'AT', 'AUT', 5),
(15, 'Azerbaijan', 'AZ', 'AZE', 1),
(16, 'Bahamas', 'BS', 'BHS', 1),
(17, 'Bahrain', 'BH', 'BHR', 1),
(18, 'Bangladesh', 'BD', 'BGD', 1),
(19, 'Barbados', 'BB', 'BRB', 1),
(20, 'Belarus', 'BY', 'BLR', 1),
(21, 'Belgium', 'BE', 'BEL', 1),
(22, 'Belize', 'BZ', 'BLZ', 1),
(23, 'Benin', 'BJ', 'BEN', 1),
(24, 'Bermuda', 'BM', 'BMU', 1),
(25, 'Bhutan', 'BT', 'BTN', 1),
(26, 'Bolivia', 'BO', 'BOL', 1),
(27, 'Bosnia and Herzegowina', 'BA', 'BIH', 1),
(28, 'Botswana', 'BW', 'BWA', 1),
(29, 'Bouvet Island', 'BV', 'BVT', 1),
(30, 'Brazil', 'BR', 'BRA', 1),
(31, 'British Indian Ocean Territory', 'IO', 'IOT', 1),
(32, 'Brunei Darussalam', 'BN', 'BRN', 1),
(33, 'Bulgaria', 'BG', 'BGR', 1),
(34, 'Burkina Faso', 'BF', 'BFA', 1),
(35, 'Burundi', 'BI', 'BDI', 1),
(36, 'Cambodia', 'KH', 'KHM', 1),
(37, 'Cameroon', 'CM', 'CMR', 1),
(38, 'Canada', 'CA', 'CAN', 1),
(39, 'Cape Verde', 'CV', 'CPV', 1),
(40, 'Cayman Islands', 'KY', 'CYM', 1),
(41, 'Central African Republic', 'CF', 'CAF', 1),
(42, 'Chad', 'TD', 'TCD', 1),
(43, 'Chile', 'CL', 'CHL', 1),
(44, 'China', 'CN', 'CHN', 1),
(45, 'Christmas Island', 'CX', 'CXR', 1),
(46, 'Cocos (Keeling) Islands', 'CC', 'CCK', 1),
(47, 'Colombia', 'CO', 'COL', 1),
(48, 'Comoros', 'KM', 'COM', 1),
(49, 'Congo', 'CG', 'COG', 1),
(50, 'Cook Islands', 'CK', 'COK', 1),
(51, 'Costa Rica', 'CR', 'CRI', 1),
(52, 'Cote D''Ivoire', 'CI', 'CIV', 1),
(53, 'Croatia', 'HR', 'HRV', 1),
(54, 'Cuba', 'CU', 'CUB', 1),
(55, 'Cyprus', 'CY', 'CYP', 1),
(56, 'Czech Republic', 'CZ', 'CZE', 1),
(57, 'Denmark', 'DK', 'DNK', 1),
(58, 'Djibouti', 'DJ', 'DJI', 1),
(59, 'Dominica', 'DM', 'DMA', 1),
(60, 'Dominican Republic', 'DO', 'DOM', 1),
(61, 'East Timor', 'TP', 'TMP', 1),
(62, 'Ecuador', 'EC', 'ECU', 1),
(63, 'Egypt', 'EG', 'EGY', 1),
(64, 'El Salvador', 'SV', 'SLV', 1),
(65, 'Equatorial Guinea', 'GQ', 'GNQ', 1),
(66, 'Eritrea', 'ER', 'ERI', 1),
(67, 'Estonia', 'EE', 'EST', 1),
(68, 'Ethiopia', 'ET', 'ETH', 1),
(69, 'Falkland Islands (Malvinas)', 'FK', 'FLK', 1),
(70, 'Faroe Islands', 'FO', 'FRO', 1),
(71, 'Fiji', 'FJ', 'FJI', 1),
(72, 'Finland', 'FI', 'FIN', 1),
(73, 'France', 'FR', 'FRA', 1),
(74, 'France, Metropolitan', 'FX', 'FXX', 1),
(75, 'French Guiana', 'GF', 'GUF', 1),
(76, 'French Polynesia', 'PF', 'PYF', 1),
(77, 'French Southern Territories', 'TF', 'ATF', 1),
(78, 'Gabon', 'GA', 'GAB', 1),
(79, 'Gambia', 'GM', 'GMB', 1),
(80, 'Georgia', 'GE', 'GEO', 1),
(81, 'Germany', 'DE', 'DEU', 5),
(82, 'Ghana', 'GH', 'GHA', 1),
(83, 'Gibraltar', 'GI', 'GIB', 1),
(84, 'Greece', 'GR', 'GRC', 1),
(85, 'Greenland', 'GL', 'GRL', 1),
(86, 'Grenada', 'GD', 'GRD', 1),
(87, 'Guadeloupe', 'GP', 'GLP', 1),
(88, 'Guam', 'GU', 'GUM', 1),
(89, 'Guatemala', 'GT', 'GTM', 1),
(90, 'Guinea', 'GN', 'GIN', 1),
(91, 'Guinea-bissau', 'GW', 'GNB', 1),
(92, 'Guyana', 'GY', 'GUY', 1),
(93, 'Haiti', 'HT', 'HTI', 1),
(94, 'Heard and Mc Donald Islands', 'HM', 'HMD', 1),
(95, 'Honduras', 'HN', 'HND', 1),
(96, 'Hong Kong', 'HK', 'HKG', 1),
(97, 'Hungary', 'HU', 'HUN', 1),
(98, 'Iceland', 'IS', 'ISL', 1),
(99, 'India', 'IN', 'IND', 1),
(100, 'Indonesia', 'ID', 'IDN', 1),
(101, 'Iran (Islamic Republic of)', 'IR', 'IRN', 1),
(102, 'Iraq', 'IQ', 'IRQ', 1),
(103, 'Ireland', 'IE', 'IRL', 1),
(104, 'Israel', 'IL', 'ISR', 1),
(105, 'Italy', 'IT', 'ITA', 1),
(106, 'Jamaica', 'JM', 'JAM', 1),
(107, 'Japan', 'JP', 'JPN', 1),
(108, 'Jordan', 'JO', 'JOR', 1),
(109, 'Kazakhstan', 'KZ', 'KAZ', 1),
(110, 'Kenya', 'KE', 'KEN', 1),
(111, 'Kiribati', 'KI', 'KIR', 1),
(112, 'Korea, Democratic People''s Republic of', 'KP', 'PRK', 1),
(113, 'Korea, Republic of', 'KR', 'KOR', 1),
(114, 'Kuwait', 'KW', 'KWT', 1),
(115, 'Kyrgyzstan', 'KG', 'KGZ', 1),
(116, 'Lao People''s Democratic Republic', 'LA', 'LAO', 1),
(117, 'Latvia', 'LV', 'LVA', 1),
(118, 'Lebanon', 'LB', 'LBN', 1),
(119, 'Lesotho', 'LS', 'LSO', 1),
(120, 'Liberia', 'LR', 'LBR', 1),
(121, 'Libyan Arab Jamahiriya', 'LY', 'LBY', 1),
(122, 'Liechtenstein', 'LI', 'LIE', 1),
(123, 'Lithuania', 'LT', 'LTU', 1),
(124, 'Luxembourg', 'LU', 'LUX', 1),
(125, 'Macau', 'MO', 'MAC', 1),
(126, 'Macedonia, The Former Yugoslav Republic of', 'MK', 'MKD', 1),
(127, 'Madagascar', 'MG', 'MDG', 1),
(128, 'Malawi', 'MW', 'MWI', 1),
(129, 'Malaysia', 'MY', 'MYS', 1),
(130, 'Maldives', 'MV', 'MDV', 1),
(131, 'Mali', 'ML', 'MLI', 1),
(132, 'Malta', 'MT', 'MLT', 1),
(133, 'Marshall Islands', 'MH', 'MHL', 1),
(134, 'Martinique', 'MQ', 'MTQ', 1),
(135, 'Mauritania', 'MR', 'MRT', 1),
(136, 'Mauritius', 'MU', 'MUS', 1),
(137, 'Mayotte', 'YT', 'MYT', 1),
(138, 'Mexico', 'MX', 'MEX', 1),
(139, 'Micronesia, Federated States of', 'FM', 'FSM', 1),
(140, 'Moldova, Republic of', 'MD', 'MDA', 1),
(141, 'Monaco', 'MC', 'MCO', 1),
(142, 'Mongolia', 'MN', 'MNG', 1),
(143, 'Montserrat', 'MS', 'MSR', 1),
(144, 'Morocco', 'MA', 'MAR', 1),
(145, 'Mozambique', 'MZ', 'MOZ', 1),
(146, 'Myanmar', 'MM', 'MMR', 1),
(147, 'Namibia', 'NA', 'NAM', 1),
(148, 'Nauru', 'NR', 'NRU', 1),
(149, 'Nepal', 'NP', 'NPL', 1),
(150, 'Netherlands', 'NL', 'NLD', 1),
(151, 'Netherlands Antilles', 'AN', 'ANT', 1),
(152, 'New Caledonia', 'NC', 'NCL', 1),
(153, 'New Zealand', 'NZ', 'NZL', 1),
(154, 'Nicaragua', 'NI', 'NIC', 1),
(155, 'Niger', 'NE', 'NER', 1),
(156, 'Nigeria', 'NG', 'NGA', 1),
(157, 'Niue', 'NU', 'NIU', 1),
(158, 'Norfolk Island', 'NF', 'NFK', 1),
(159, 'Northern Mariana Islands', 'MP', 'MNP', 1),
(160, 'Norway', 'NO', 'NOR', 1),
(161, 'Oman', 'OM', 'OMN', 1),
(162, 'Pakistan', 'PK', 'PAK', 1),
(163, 'Palau', 'PW', 'PLW', 1),
(164, 'Panama', 'PA', 'PAN', 1),
(165, 'Papua New Guinea', 'PG', 'PNG', 1),
(166, 'Paraguay', 'PY', 'PRY', 1),
(167, 'Peru', 'PE', 'PER', 1),
(168, 'Philippines', 'PH', 'PHL', 1),
(169, 'Pitcairn', 'PN', 'PCN', 1),
(170, 'Poland', 'PL', 'POL', 1),
(171, 'Portugal', 'PT', 'PRT', 1),
(172, 'Puerto Rico', 'PR', 'PRI', 1),
(173, 'Qatar', 'QA', 'QAT', 1),
(174, 'Reunion', 'RE', 'REU', 1),
(175, 'Romania', 'RO', 'ROM', 1),
(176, 'Russian Federation', 'RU', 'RUS', 1),
(177, 'Rwanda', 'RW', 'RWA', 1),
(178, 'Saint Kitts and Nevis', 'KN', 'KNA', 1),
(179, 'Saint Lucia', 'LC', 'LCA', 1),
(180, 'Saint Vincent and the Grenadines', 'VC', 'VCT', 1),
(181, 'Samoa', 'WS', 'WSM', 1),
(182, 'San Marino', 'SM', 'SMR', 1),
(183, 'Sao Tome and Principe', 'ST', 'STP', 1),
(184, 'Saudi Arabia', 'SA', 'SAU', 1),
(185, 'Senegal', 'SN', 'SEN', 1),
(186, 'Seychelles', 'SC', 'SYC', 1),
(187, 'Sierra Leone', 'SL', 'SLE', 1),
(188, 'Singapore', 'SG', 'SGP', 4),
(189, 'Slovakia (Slovak Republic)', 'SK', 'SVK', 1),
(190, 'Slovenia', 'SI', 'SVN', 1),
(191, 'Solomon Islands', 'SB', 'SLB', 1),
(192, 'Somalia', 'SO', 'SOM', 1),
(193, 'South Africa', 'ZA', 'ZAF', 1),
(194, 'South Georgia and the South Sandwich Islands', 'GS', 'SGS', 1),
(195, 'Spain', 'ES', 'ESP', 3),
(196, 'Sri Lanka', 'LK', 'LKA', 1),
(197, 'St. Helena', 'SH', 'SHN', 1),
(198, 'St. Pierre and Miquelon', 'PM', 'SPM', 1),
(199, 'Sudan', 'SD', 'SDN', 1),
(200, 'Suriname', 'SR', 'SUR', 1),
(201, 'Svalbard and Jan Mayen Islands', 'SJ', 'SJM', 1),
(202, 'Swaziland', 'SZ', 'SWZ', 1),
(203, 'Sweden', 'SE', 'SWE', 1),
(204, 'Switzerland', 'CH', 'CHE', 1),
(205, 'Syrian Arab Republic', 'SY', 'SYR', 1),
(206, 'Taiwan', 'TW', 'TWN', 1),
(207, 'Tajikistan', 'TJ', 'TJK', 1),
(208, 'Tanzania, United Republic of', 'TZ', 'TZA', 1),
(209, 'Thailand', 'TH', 'THA', 1),
(210, 'Togo', 'TG', 'TGO', 1),
(211, 'Tokelau', 'TK', 'TKL', 1),
(212, 'Tonga', 'TO', 'TON', 1),
(213, 'Trinidad and Tobago', 'TT', 'TTO', 1),
(214, 'Tunisia', 'TN', 'TUN', 1),
(215, 'Turkey', 'TR', 'TUR', 1),
(216, 'Turkmenistan', 'TM', 'TKM', 1),
(217, 'Turks and Caicos Islands', 'TC', 'TCA', 1),
(218, 'Tuvalu', 'TV', 'TUV', 1),
(219, 'Uganda', 'UG', 'UGA', 1),
(220, 'Ukraine', 'UA', 'UKR', 1),
(221, 'United Arab Emirates', 'AE', 'ARE', 1),
(222, 'United Kingdom', 'GB', 'GBR', 1),
(223, 'United States', 'US', 'USA', 2),
(224, 'United States Minor Outlying Islands', 'UM', 'UMI', 1),
(225, 'Uruguay', 'UY', 'URY', 1),
(226, 'Uzbekistan', 'UZ', 'UZB', 1),
(227, 'Vanuatu', 'VU', 'VUT', 1),
(228, 'Vatican City State (Holy See)', 'VA', 'VAT', 1),
(229, 'Venezuela', 'VE', 'VEN', 1),
(230, 'Viet Nam', 'VN', 'VNM', 1),
(231, 'Virgin Islands (British)', 'VG', 'VGB', 1),
(232, 'Virgin Islands (U.S.)', 'VI', 'VIR', 1),
(233, 'Wallis and Futuna Islands', 'WF', 'WLF', 1),
(234, 'Western Sahara', 'EH', 'ESH', 1),
(235, 'Yemen', 'YE', 'YEM', 1),
(236, 'Yugoslavia', 'YU', 'YUG', 1),
(237, 'Zaire', 'ZR', 'ZAR', 1),
(238, 'Zambia', 'ZM', 'ZMB', 1),
(239, 'Zimbabwe', 'ZW', 'ZWE', 1);

-- --------------------------------------------------------

--
-- Table structure for table `currencies`
--

CREATE TABLE IF NOT EXISTS `currencies` (
  `currencies_id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(32) NOT NULL,
  `code` char(3) NOT NULL,
  `symbol_left` varchar(12) DEFAULT NULL,
  `symbol_right` varchar(12) DEFAULT NULL,
  `decimal_point` char(1) DEFAULT NULL,
  `thousands_point` char(1) DEFAULT NULL,
  `decimal_places` char(1) DEFAULT NULL,
  `value` float(13,8) DEFAULT NULL,
  `last_updated` datetime DEFAULT NULL,
  PRIMARY KEY (`currencies_id`),
  KEY `idx_currencies_code` (`code`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;

--
-- Dumping data for table `currencies`
--

INSERT INTO `currencies` (`currencies_id`, `title`, `code`, `symbol_left`, `symbol_right`, `decimal_point`, `thousands_point`, `decimal_places`, `value`, `last_updated`) VALUES
(1, 'US Dollar', 'USD', '€', '', '.', ',', '2', 1.00000000, '2008-12-31 15:15:47'),
(2, 'Euro', 'EUR', '', 'EUR', '.', ',', '2', 1.10360003, '2008-12-31 15:15:47');

-- --------------------------------------------------------

--
-- Table structure for table `customers`
--

CREATE TABLE IF NOT EXISTS `customers` (
  `customers_id` int(11) NOT NULL AUTO_INCREMENT,
  `customers_gender` char(1) NOT NULL,
  `customers_firstname` varchar(32) NOT NULL,
  `customers_lastname` varchar(32) NOT NULL,
  `customers_dob` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `customers_email_address` varchar(96) NOT NULL,
  `customers_default_address_id` int(11) DEFAULT NULL,
  `customers_telephone` varchar(32) NOT NULL,
  `customers_fax` varchar(32) DEFAULT NULL,
  `customers_password` varchar(40) NOT NULL,
  `customers_newsletter` char(1) DEFAULT NULL,
  PRIMARY KEY (`customers_id`),
  KEY `idx_customers_email_address` (`customers_email_address`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;

--
-- Dumping data for table `customers`
--

INSERT INTO `customers` (`customers_id`, `customers_gender`, `customers_firstname`, `customers_lastname`, `customers_dob`, `customers_email_address`, `customers_default_address_id`, `customers_telephone`, `customers_fax`, `customers_password`, `customers_newsletter`) VALUES
(1, 'm', 'John', 'doe', '2001-01-01 00:00:00', 'root@localhost', 1, '12345', '', 'd95e8fa7f20a009372eb3477473fcd34:1c', '0'),
(2, 'm', 'ubaidullah', 'nazir', '1987-10-16 00:00:00', 'mr_ubaid@yahoo.com', 2, '03347038559', '', '14f983b7715bbb13da7d50019a21bc9e:5a', ''),
(3, 'm', 'asdf', 'asdfasdf', '1987-10-16 00:00:00', 'abc@yahoo.com', 3, '34534534534', '', 'c7ebe282bfd5e6d363efb2ea2c212ccf:e9', ''),
(4, 'm', 'Muhammad', 'Abrar', '1975-10-07 00:00:00', 'abrar@newfrankmartin.com', 4, '009252', '0092523551966', '37878408688f03ee158ad01a8cf3ab30:71', '1');

-- --------------------------------------------------------

--
-- Table structure for table `customers_basket`
--

CREATE TABLE IF NOT EXISTS `customers_basket` (
  `customers_basket_id` int(11) NOT NULL AUTO_INCREMENT,
  `customers_id` int(11) NOT NULL,
  `products_id` tinytext NOT NULL,
  `customers_basket_quantity` int(2) NOT NULL,
  `final_price` decimal(15,4) DEFAULT NULL,
  `customers_basket_date_added` char(8) DEFAULT NULL,
  PRIMARY KEY (`customers_basket_id`),
  KEY `idx_customers_basket_customers_id` (`customers_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `customers_basket`
--


-- --------------------------------------------------------

--
-- Table structure for table `customers_basket_attributes`
--

CREATE TABLE IF NOT EXISTS `customers_basket_attributes` (
  `customers_basket_attributes_id` int(11) NOT NULL AUTO_INCREMENT,
  `customers_id` int(11) NOT NULL,
  `products_id` tinytext NOT NULL,
  `products_options_id` int(11) NOT NULL,
  `products_options_value_id` int(11) NOT NULL,
  PRIMARY KEY (`customers_basket_attributes_id`),
  KEY `idx_customers_basket_att_customers_id` (`customers_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `customers_basket_attributes`
--


-- --------------------------------------------------------

--
-- Table structure for table `customers_info`
--

CREATE TABLE IF NOT EXISTS `customers_info` (
  `customers_info_id` int(11) NOT NULL,
  `customers_info_date_of_last_logon` datetime DEFAULT NULL,
  `customers_info_number_of_logons` int(5) DEFAULT NULL,
  `customers_info_date_account_created` datetime DEFAULT NULL,
  `customers_info_date_account_last_modified` datetime DEFAULT NULL,
  `global_product_notifications` int(1) DEFAULT '0',
  PRIMARY KEY (`customers_info_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `customers_info`
--

INSERT INTO `customers_info` (`customers_info_id`, `customers_info_date_of_last_logon`, `customers_info_number_of_logons`, `customers_info_date_account_created`, `customers_info_date_account_last_modified`, `global_product_notifications`) VALUES
(1, NULL, 0, '2008-12-31 15:15:47', NULL, 0),
(2, '2009-02-26 05:39:31', 9, '2009-01-05 11:48:44', NULL, 0),
(3, '2009-04-11 09:45:27', 8, '2009-02-20 16:06:31', NULL, 0),
(4, NULL, 0, '2009-11-07 15:20:21', '2009-11-07 16:09:17', 1);

-- --------------------------------------------------------

--
-- Table structure for table `featured`
--

CREATE TABLE IF NOT EXISTS `featured` (
  `featured_id` int(11) NOT NULL AUTO_INCREMENT,
  `products_id` int(11) NOT NULL DEFAULT '0',
  `featured_date_added` datetime DEFAULT NULL,
  `featured_last_modified` datetime DEFAULT NULL,
  `expires_date` datetime DEFAULT NULL,
  `date_status_change` datetime DEFAULT NULL,
  `status` int(1) DEFAULT '1',
  PRIMARY KEY (`featured_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ;

--
-- Dumping data for table `featured`
--

INSERT INTO `featured` (`featured_id`, `products_id`, `featured_date_added`, `featured_last_modified`, `expires_date`, `date_status_change`, `status`) VALUES
(1, 5, '2009-01-03 12:00:40', NULL, NULL, NULL, 1),
(2, 8, '2009-01-05 15:49:27', '2009-02-20 17:36:40', NULL, NULL, 1),
(3, 24, '2009-01-05 15:49:35', NULL, NULL, NULL, 1),
(4, 2, '2009-01-05 15:49:41', NULL, '2009-01-27 00:00:00', '2009-02-12 12:47:49', 0),
(5, 15, '2009-02-20 17:36:55', NULL, '0000-00-00 00:00:00', NULL, 1),
(6, 3, '2009-02-23 11:02:39', NULL, '2009-02-27 00:00:00', '2009-02-27 05:28:21', 0);

-- --------------------------------------------------------

--
-- Table structure for table `geo_zones`
--

CREATE TABLE IF NOT EXISTS `geo_zones` (
  `geo_zone_id` int(11) NOT NULL AUTO_INCREMENT,
  `geo_zone_name` varchar(32) NOT NULL,
  `geo_zone_description` varchar(255) NOT NULL,
  `last_modified` datetime DEFAULT NULL,
  `date_added` datetime NOT NULL,
  PRIMARY KEY (`geo_zone_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;

--
-- Dumping data for table `geo_zones`
--

INSERT INTO `geo_zones` (`geo_zone_id`, `geo_zone_name`, `geo_zone_description`, `last_modified`, `date_added`) VALUES
(1, 'Florida', 'Florida local sales tax zone', NULL, '2008-12-31 15:15:53');

-- --------------------------------------------------------

--
-- Table structure for table `languages`
--

CREATE TABLE IF NOT EXISTS `languages` (
  `languages_id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(32) NOT NULL,
  `code` char(2) NOT NULL,
  `image` varchar(64) DEFAULT NULL,
  `directory` varchar(32) DEFAULT NULL,
  `sort_order` int(3) DEFAULT NULL,
  PRIMARY KEY (`languages_id`),
  KEY `IDX_LANGUAGES_NAME` (`name`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;

--
-- Dumping data for table `languages`
--

INSERT INTO `languages` (`languages_id`, `name`, `code`, `image`, `directory`, `sort_order`) VALUES
(1, 'English', 'en', 'icon.gif', 'english', 1),
(2, 'Deutsch', 'de', 'icon.gif', 'german', 2),
(3, 'Español', 'es', 'icon.gif', 'espanol', 3);

-- --------------------------------------------------------

--
-- Table structure for table `manufacturers`
--

CREATE TABLE IF NOT EXISTS `manufacturers` (
  `manufacturers_id` int(11) NOT NULL AUTO_INCREMENT,
  `manufacturers_name` varchar(32) NOT NULL,
  `manufacturers_image` varchar(64) DEFAULT NULL,
  `date_added` datetime DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  PRIMARY KEY (`manufacturers_id`),
  KEY `IDX_MANUFACTURERS_NAME` (`manufacturers_name`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=10 ;

--
-- Dumping data for table `manufacturers`
--

INSERT INTO `manufacturers` (`manufacturers_id`, `manufacturers_name`, `manufacturers_image`, `date_added`, `last_modified`) VALUES
(1, 'Matrox', 'manufacturer_matrox.gif', '2008-12-31 15:15:47', NULL),
(2, 'Microsoft', 'manufacturer_microsoft.gif', '2008-12-31 15:15:47', NULL),
(3, 'Warner', 'manufacturer_warner.gif', '2008-12-31 15:15:48', NULL),
(4, 'Fox', 'manufacturer_fox.gif', '2008-12-31 15:15:48', NULL),
(5, 'Logitech', 'manufacturer_logitech.gif', '2008-12-31 15:15:48', NULL),
(6, 'Canon', 'manufacturer_canon.gif', '2008-12-31 15:15:48', NULL),
(7, 'Sierra', 'manufacturer_sierra.gif', '2008-12-31 15:15:48', NULL),
(8, 'GT Interactive', 'manufacturer_gt_interactive.gif', '2008-12-31 15:15:48', NULL),
(9, 'Hewlett Packard', 'manufacturer_hewlett_packard.gif', '2008-12-31 15:15:48', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `manufacturers_info`
--

CREATE TABLE IF NOT EXISTS `manufacturers_info` (
  `manufacturers_id` int(11) NOT NULL,
  `languages_id` int(11) NOT NULL,
  `manufacturers_url` varchar(255) NOT NULL,
  `url_clicked` int(5) NOT NULL DEFAULT '0',
  `date_last_click` datetime DEFAULT NULL,
  PRIMARY KEY (`manufacturers_id`,`languages_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `manufacturers_info`
--

INSERT INTO `manufacturers_info` (`manufacturers_id`, `languages_id`, `manufacturers_url`, `url_clicked`, `date_last_click`) VALUES
(1, 1, 'http://www.matrox.com', 0, NULL),
(1, 2, 'http://www.matrox.de', 0, NULL),
(1, 3, 'http://www.matrox.com', 0, NULL),
(2, 1, 'http://www.microsoft.com', 0, NULL),
(2, 2, 'http://www.microsoft.de', 0, NULL),
(2, 3, 'http://www.microsoft.es', 0, NULL),
(3, 1, 'http://www.warner.com', 0, NULL),
(3, 2, 'http://www.warner.de', 0, NULL),
(3, 3, 'http://www.warner.com', 0, NULL),
(4, 1, 'http://www.fox.com', 0, NULL),
(4, 2, 'http://www.fox.de', 0, NULL),
(4, 3, 'http://www.fox.com', 0, NULL),
(5, 1, 'http://www.logitech.com', 0, NULL),
(5, 2, 'http://www.logitech.com', 0, NULL),
(5, 3, 'http://www.logitech.com', 0, NULL),
(6, 1, 'http://www.canon.com', 0, NULL),
(6, 2, 'http://www.canon.de', 0, NULL),
(6, 3, 'http://www.canon.es', 0, NULL),
(7, 1, 'http://www.sierra.com', 0, NULL),
(7, 2, 'http://www.sierra.de', 0, NULL),
(7, 3, 'http://www.sierra.com', 0, NULL),
(8, 1, 'http://www.infogrames.com', 0, NULL),
(8, 2, 'http://www.infogrames.de', 0, NULL),
(8, 3, 'http://www.infogrames.com', 0, NULL),
(9, 1, 'http://www.hewlettpackard.com', 0, NULL),
(9, 2, 'http://www.hewlettpackard.de', 0, NULL),
(9, 3, 'http://welcome.hp.com/country/es/spa/welcome.htm', 0, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `newsletters`
--

CREATE TABLE IF NOT EXISTS `newsletters` (
  `newsletters_id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `content` text NOT NULL,
  `module` varchar(255) NOT NULL,
  `date_added` datetime NOT NULL,
  `date_sent` datetime DEFAULT NULL,
  `status` int(1) DEFAULT NULL,
  `locked` int(1) DEFAULT '0',
  PRIMARY KEY (`newsletters_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `newsletters`
--


-- --------------------------------------------------------

--
-- Table structure for table `orders`
--

CREATE TABLE IF NOT EXISTS `orders` (
  `orders_id` int(11) NOT NULL AUTO_INCREMENT,
  `customers_id` int(11) NOT NULL,
  `customers_name` varchar(64) NOT NULL,
  `customers_company` varchar(32) DEFAULT NULL,
  `customers_street_address` varchar(64) NOT NULL,
  `customers_suburb` varchar(32) DEFAULT NULL,
  `customers_city` varchar(32) NOT NULL,
  `customers_postcode` varchar(10) NOT NULL,
  `customers_state` varchar(32) DEFAULT NULL,
  `customers_country` varchar(32) NOT NULL,
  `customers_telephone` varchar(32) NOT NULL,
  `customers_email_address` varchar(96) NOT NULL,
  `customers_address_format_id` int(5) NOT NULL,
  `delivery_name` varchar(64) NOT NULL,
  `delivery_company` varchar(32) DEFAULT NULL,
  `delivery_street_address` varchar(64) NOT NULL,
  `delivery_suburb` varchar(32) DEFAULT NULL,
  `delivery_city` varchar(32) NOT NULL,
  `delivery_postcode` varchar(10) NOT NULL,
  `delivery_state` varchar(32) DEFAULT NULL,
  `delivery_country` varchar(32) NOT NULL,
  `delivery_address_format_id` int(5) NOT NULL,
  `billing_name` varchar(64) NOT NULL,
  `billing_company` varchar(32) DEFAULT NULL,
  `billing_street_address` varchar(64) NOT NULL,
  `billing_suburb` varchar(32) DEFAULT NULL,
  `billing_city` varchar(32) NOT NULL,
  `billing_postcode` varchar(10) NOT NULL,
  `billing_state` varchar(32) DEFAULT NULL,
  `billing_country` varchar(32) NOT NULL,
  `billing_address_format_id` int(5) NOT NULL,
  `payment_method` varchar(255) NOT NULL,
  `cc_type` varchar(20) DEFAULT NULL,
  `cc_owner` varchar(64) DEFAULT NULL,
  `cc_number` varchar(32) DEFAULT NULL,
  `cc_expires` varchar(4) DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  `date_purchased` datetime DEFAULT NULL,
  `orders_status` int(5) NOT NULL,
  `orders_date_finished` datetime DEFAULT NULL,
  `currency` char(3) DEFAULT NULL,
  `currency_value` decimal(14,6) DEFAULT NULL,
  PRIMARY KEY (`orders_id`),
  KEY `idx_orders_customers_id` (`customers_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ;

--
-- Dumping data for table `orders`
--

INSERT INTO `orders` (`orders_id`, `customers_id`, `customers_name`, `customers_company`, `customers_street_address`, `customers_suburb`, `customers_city`, `customers_postcode`, `customers_state`, `customers_country`, `customers_telephone`, `customers_email_address`, `customers_address_format_id`, `delivery_name`, `delivery_company`, `delivery_street_address`, `delivery_suburb`, `delivery_city`, `delivery_postcode`, `delivery_state`, `delivery_country`, `delivery_address_format_id`, `billing_name`, `billing_company`, `billing_street_address`, `billing_suburb`, `billing_city`, `billing_postcode`, `billing_state`, `billing_country`, `billing_address_format_id`, `payment_method`, `cc_type`, `cc_owner`, `cc_number`, `cc_expires`, `last_modified`, `date_purchased`, `orders_status`, `orders_date_finished`, `currency`, `currency_value`) VALUES
(1, 2, 'ubaidullah nazir', 'xperts', '346 kamaran block', '', 'lahore', '0054', 'punjab', 'Pakistan', '03347038559', 'mr_ubaid@yahoo.com', 1, 'ubaidullah nazir', 'xperts', '346 kamaran block', '', 'lahore', '0054', 'punjab', 'Pakistan', 1, 'ubaidullah nazir', 'xperts', '346 kamaran block', '', 'lahore', '0054', 'punjab', 'Pakistan', 1, 'Cash on Delivery', '', '', '', '', NULL, '2009-01-06 15:55:50', 1, NULL, 'USD', 1.000000),
(2, 2, 'ubaidullah nazir', 'xperts', '346 kamaran block', '', 'lahore', '0054', 'punjab', 'Pakistan', '03347038559', 'mr_ubaid@yahoo.com', 1, 'ubaidullah nazir', 'xperts', '346 kamaran block', '', 'lahore', '0054', 'punjab', 'Pakistan', 1, 'ubaidullah nazir', 'xperts', '346 kamaran block', '', 'lahore', '0054', 'punjab', 'Pakistan', 1, 'Cash on Delivery', '', '', '', '', NULL, '2009-01-06 16:14:06', 1, NULL, 'USD', 1.000000),
(3, 3, 'asdf asdfasdf', 'asdfasfd', 'rtyery456', 'etyerty', 'sdafga', '2345253451', 'aasdf', 'Pakistan', '34534534534', 'abc@yahoo.com', 1, 'asdf asdfasdf', 'asdfasfd', 'rtyery456', 'etyerty', 'sdafga', '2345253451', 'aasdf', 'Pakistan', 1, 'asdf asdfasdf', 'asdfasfd', 'rtyery456', 'etyerty', 'sdafga', '2345253451', 'aasdf', 'Pakistan', 1, 'Cash on Delivery', '', '', '', '', NULL, '2009-02-23 15:50:47', 1, NULL, 'USD', 1.000000),
(4, 3, 'asdf asdfasdf', 'asdfasfd', 'rtyery456', 'etyerty', 'sdafga', '2345253451', 'aasdf', 'Pakistan', '34534534534', 'abc@yahoo.com', 1, 'asdf asdfasdf', 'asdfasfd', 'rtyery456', 'etyerty', 'sdafga', '2345253451', 'aasdf', 'Pakistan', 1, 'asdf asdfasdf', 'asdfasfd', 'rtyery456', 'etyerty', 'sdafga', '2345253451', 'aasdf', 'Pakistan', 1, 'Cash on Delivery', '', '', '', '', NULL, '2009-02-23 17:36:02', 1, NULL, 'USD', 1.000000),
(5, 2, 'ubaidullah nazir', 'xperts', '346 kamaran block', '', 'lahore', '0054', 'punjab', 'Pakistan', '03347038559', 'mr_ubaid@yahoo.com', 1, 'ubaidullah nazir', 'xperts', '346 kamaran block', '', 'lahore', '0054', 'punjab', 'Pakistan', 1, 'ubaidullah nazir', 'xperts', '346 kamaran block', '', 'lahore', '0054', 'punjab', 'Pakistan', 1, 'Cash on Delivery', '', '', '', '', NULL, '2009-02-26 05:40:11', 1, NULL, 'USD', 1.000000),
(6, 4, 'Muhammad Abrar', 'New Frank Martin', '4 - Ugoki Road', 'Skt', 'Sialkot', '51310', 'Punjab', 'Pakistan', '00923135565556', 'abrar@newfrankmartin.com', 1, 'Muhammad Abrar', 'New Frank Martin', '4 - Ugoki Road', 'Skt', 'Sialkot', '51310', 'Punjab', 'Pakistan', 1, 'Muhammad Abrar', 'New Frank Martin', '4 - Ugoki Road', 'Skt', 'Sialkot', '51310', 'Punjab', 'Pakistan', 1, 'Cash on Delivery', '', '', '', '', NULL, '2009-11-07 15:47:14', 1, NULL, 'USD', 1.000000);

-- --------------------------------------------------------

--
-- Table structure for table `orders_products`
--

CREATE TABLE IF NOT EXISTS `orders_products` (
  `orders_products_id` int(11) NOT NULL AUTO_INCREMENT,
  `orders_id` int(11) NOT NULL,
  `products_id` int(11) NOT NULL,
  `products_model` varchar(12) DEFAULT NULL,
  `products_name` varchar(64) NOT NULL,
  `products_price` decimal(15,4) NOT NULL,
  `final_price` decimal(15,4) NOT NULL,
  `products_tax` decimal(7,4) NOT NULL,
  `products_quantity` int(2) NOT NULL,
  PRIMARY KEY (`orders_products_id`),
  KEY `idx_orders_products_orders_id` (`orders_id`),
  KEY `idx_orders_products_products_id` (`products_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=12 ;

--
-- Dumping data for table `orders_products`
--

INSERT INTO `orders_products` (`orders_products_id`, `orders_id`, `products_id`, `products_model`, `products_name`, `products_price`, `final_price`, `products_tax`, `products_quantity`) VALUES
(1, 1, 17, 'DVD-SPEED', 'Speed', 39.9900, 39.9900, 0.0000, 1),
(2, 1, 24, 'PC-DISC', 'Disciples: Sacred Lands', 90.0000, 90.0000, 0.0000, 1),
(3, 2, 8, 'DVD-ABUG', 'A Bug''s Life', 35.9900, 35.9900, 0.0000, 1),
(4, 3, 6, 'dftge4', 'sdfgsd', 5242.0000, 5242.0000, 0.0000, 1),
(5, 4, 3, '345afsdf', 'asdf', 0.0000, 0.0000, 0.0000, 1),
(6, 4, 5, 'dsfgsd', 'asdfas', 0.0000, 0.0000, 0.0000, 1),
(7, 5, 8, 'gfsd', 'name', 344.0000, 345.0000, 0.0000, 1),
(8, 5, 8, 'gfsd', 'name', 344.0000, 344.0000, 0.0000, 1),
(9, 5, 8, 'gfsd', 'name', 344.0000, 344.0000, 0.0000, 1),
(10, 6, 277, '', 'Swords', 0.0000, 0.0000, 0.0000, 10),
(11, 6, 326, '', 'Swivels &  Hooks', 0.0000, 0.0000, 0.0000, 1);

-- --------------------------------------------------------

--
-- Table structure for table `orders_products_attributes`
--

CREATE TABLE IF NOT EXISTS `orders_products_attributes` (
  `orders_products_attributes_id` int(11) NOT NULL AUTO_INCREMENT,
  `orders_id` int(11) NOT NULL,
  `orders_products_id` int(11) NOT NULL,
  `products_options` varchar(32) NOT NULL,
  `products_options_values` varchar(32) NOT NULL,
  `options_values_price` decimal(15,4) NOT NULL,
  `price_prefix` char(1) NOT NULL,
  PRIMARY KEY (`orders_products_attributes_id`),
  KEY `idx_orders_products_att_orders_id` (`orders_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;

--
-- Dumping data for table `orders_products_attributes`
--

INSERT INTO `orders_products_attributes` (`orders_products_attributes_id`, `orders_id`, `orders_products_id`, `products_options`, `products_options_values`, `options_values_price`, `price_prefix`) VALUES
(1, 5, 7, 'Size', 'S', 1.0000, '+'),
(2, 5, 8, '', '', 0.0000, ''),
(3, 5, 9, '', '', 0.0000, '');

-- --------------------------------------------------------

--
-- Table structure for table `orders_products_download`
--

CREATE TABLE IF NOT EXISTS `orders_products_download` (
  `orders_products_download_id` int(11) NOT NULL AUTO_INCREMENT,
  `orders_id` int(11) NOT NULL DEFAULT '0',
  `orders_products_id` int(11) NOT NULL DEFAULT '0',
  `orders_products_filename` varchar(255) NOT NULL DEFAULT '',
  `download_maxdays` int(2) NOT NULL DEFAULT '0',
  `download_count` int(2) NOT NULL DEFAULT '0',
  PRIMARY KEY (`orders_products_download_id`),
  KEY `idx_orders_products_download_orders_id` (`orders_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `orders_products_download`
--


-- --------------------------------------------------------

--
-- Table structure for table `orders_status`
--

CREATE TABLE IF NOT EXISTS `orders_status` (
  `orders_status_id` int(11) NOT NULL DEFAULT '0',
  `language_id` int(11) NOT NULL DEFAULT '1',
  `orders_status_name` varchar(32) NOT NULL,
  `public_flag` int(11) DEFAULT '1',
  `downloads_flag` int(11) DEFAULT '0',
  PRIMARY KEY (`orders_status_id`,`language_id`),
  KEY `idx_orders_status_name` (`orders_status_name`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `orders_status`
--

INSERT INTO `orders_status` (`orders_status_id`, `language_id`, `orders_status_name`, `public_flag`, `downloads_flag`) VALUES
(1, 1, 'Pending', 1, 0),
(1, 2, 'Offen', 1, 0),
(1, 3, 'Pendiente', 1, 0),
(2, 1, 'Processing', 1, 1),
(2, 2, 'In Bearbeitung', 1, 1),
(2, 3, 'Proceso', 1, 1),
(3, 1, 'Delivered', 1, 1),
(3, 2, 'Versendet', 1, 1),
(3, 3, 'Entregado', 1, 1);

-- --------------------------------------------------------

--
-- Table structure for table `orders_status_history`
--

CREATE TABLE IF NOT EXISTS `orders_status_history` (
  `orders_status_history_id` int(11) NOT NULL AUTO_INCREMENT,
  `orders_id` int(11) NOT NULL,
  `orders_status_id` int(5) NOT NULL,
  `date_added` datetime NOT NULL,
  `customer_notified` int(1) DEFAULT '0',
  `comments` text,
  PRIMARY KEY (`orders_status_history_id`),
  KEY `idx_orders_status_history_orders_id` (`orders_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ;

--
-- Dumping data for table `orders_status_history`
--

INSERT INTO `orders_status_history` (`orders_status_history_id`, `orders_id`, `orders_status_id`, `date_added`, `customer_notified`, `comments`) VALUES
(1, 1, 1, '2009-01-06 15:55:50', 1, ''),
(2, 2, 1, '2009-01-06 16:14:06', 1, ''),
(3, 3, 1, '2009-02-23 15:50:47', 1, ''),
(4, 4, 1, '2009-02-23 17:36:02', 1, ''),
(5, 5, 1, '2009-02-26 05:40:11', 1, ''),
(6, 6, 1, '2009-11-07 15:47:14', 1, '');

-- --------------------------------------------------------

--
-- Table structure for table `orders_total`
--

CREATE TABLE IF NOT EXISTS `orders_total` (
  `orders_total_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `orders_id` int(11) NOT NULL,
  `title` varchar(255) NOT NULL,
  `text` varchar(255) NOT NULL,
  `value` decimal(15,4) NOT NULL,
  `class` varchar(32) NOT NULL,
  `sort_order` int(11) NOT NULL,
  PRIMARY KEY (`orders_total_id`),
  KEY `idx_orders_total_orders_id` (`orders_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=19 ;

--
-- Dumping data for table `orders_total`
--

INSERT INTO `orders_total` (`orders_total_id`, `orders_id`, `title`, `text`, `value`, `class`, `sort_order`) VALUES
(1, 1, 'Sub-Total:', '$129.99', 129.9900, 'ot_subtotal', 1),
(2, 1, 'Flat Rate (Best Way):', '$5.00', 5.0000, 'ot_shipping', 2),
(3, 1, 'Total:', '<b>$134.99</b>', 134.9900, 'ot_total', 4),
(4, 2, 'Sub-Total:', '$35.99', 35.9900, 'ot_subtotal', 1),
(5, 2, 'Flat Rate (Best Way):', '$5.00', 5.0000, 'ot_shipping', 2),
(6, 2, 'Total:', '<b>$40.99</b>', 40.9900, 'ot_total', 4),
(7, 3, 'Sub-Total:', '$5,242.00', 5242.0000, 'ot_subtotal', 1),
(8, 3, 'Flat Rate (Best Way):', '$5.00', 5.0000, 'ot_shipping', 2),
(9, 3, 'Total:', '<b>$5,247.00</b>', 5247.0000, 'ot_total', 4),
(10, 4, 'Sub-Total:', '$0.00', 0.0000, 'ot_subtotal', 1),
(11, 4, 'Flat Rate (Best Way):', '$5.00', 5.0000, 'ot_shipping', 2),
(12, 4, 'Total:', '<b>$5.00</b>', 5.0000, 'ot_total', 4),
(13, 5, 'Sub-Total:', '€1,033.00', 1033.0000, 'ot_subtotal', 1),
(14, 5, 'Flat Rate (Best Way):', '€5.00', 5.0000, 'ot_shipping', 2),
(15, 5, 'Total:', '<b>€1,038.00</b>', 1038.0000, 'ot_total', 4),
(16, 6, 'Sub-Total:', '€0.00', 0.0000, 'ot_subtotal', 1),
(17, 6, 'Flat Rate (Best Way):', '€5.00', 5.0000, 'ot_shipping', 2),
(18, 6, 'Total:', '<b>€5.00</b>', 5.0000, 'ot_total', 4);

-- --------------------------------------------------------

--
-- Table structure for table `pages`
--

CREATE TABLE IF NOT EXISTS `pages` (
  `page_id` int(5) NOT NULL AUTO_INCREMENT,
  `page_name` varchar(255) NOT NULL,
  `page_heading` varchar(255) NOT NULL,
  `page_desc` mediumblob NOT NULL,
  PRIMARY KEY (`page_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=29 ;

--
-- Dumping data for table `pages`
--

INSERT INTO `pages` (`page_id`, `page_name`, `page_heading`, `page_desc`) VALUES
(17, 'How to Order ', 'How to Order', 0x3c703e4c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d206f6c75707475612e204174207665726f20656f73206574206163637573616d206574206a7573746f2064756f20646f6c6f72657320657420656120726562756d2e205374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e204c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d20766f6c75707475612e204174207665726f20656f73206574206163637573616d206574206a7573746f2064756f20646f6c6f72657320657420656120726562756d2e205374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e204c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d20766f6c75707475612e204174207665726f20656f73206574206163637573616d206574206a7573746f2064756f20646f6c6f72657320657420656120726562756d2e205374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e3c2f703e3c703e5374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e204c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d20766f6c75707475612e204174207665726f20656f73206574206163637573616d206574206a7573746f2064756f20646f6c6f72657320657420656120726562756d2e2074657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e3c2f703e3c703e4c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d20766f6c75707475612e204174207665726f20656f73206574206163637573616d206574206a7573746f2064756f20646f6c6f72657320657420656120726562756d2e205374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e204c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d20766f6c75707475612e203c2f703e3c7020636c6173733d2272656431317078223e3c7374726f6e673e5374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e204c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475723c2f7374726f6e673e3c2f703e),
(16, 'Delivery & Returns ', 'Delivery & Returns ', 0x3c703e4c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d206f6c75707475612e204174207665726f20656f73206574206163637573616d206574206a7573746f2064756f20646f6c6f72657320657420656120726562756d2e205374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e204c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d20766f6c75707475612e204174207665726f20656f73206574206163637573616d206574206a7573746f2064756f20646f6c6f72657320657420656120726562756d2e205374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e204c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d20766f6c75707475612e204174207665726f20656f73206574206163637573616d206574206a7573746f2064756f20646f6c6f72657320657420656120726562756d2e205374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e3c2f703e3c703e5374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e204c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d20766f6c75707475612e204174207665726f20656f73206574206163637573616d206574206a7573746f2064756f20646f6c6f72657320657420656120726562756d2e2074657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e3c2f703e3c703e4c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d20766f6c75707475612e204174207665726f20656f73206574206163637573616d206574206a7573746f2064756f20646f6c6f72657320657420656120726562756d2e205374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e204c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d20766f6c75707475612e203c2f703e3c7020636c6173733d2272656431317078223e3c7374726f6e673e5374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e204c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475723c2f7374726f6e673e3c2f703e),
(27, 'Request Catalog', 'Request Catalog', 0x4c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d206f6c75707475612e204174207665726f20656f73206574206163637573616d206574206a7573746f2064756f20646f6c6f72657320657420656120726562756d2e205374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e204c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d20766f6c75707475612e204174207665726f20656f73206574206163637573616d206574206a7573746f2064756f20646f6c6f72657320657420656120726562756d2e205374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e204c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d20766f6c75707475612e204174207665726f20656f73206574206163637573616d206574206a7573746f2064756f20646f6c6f72657320657420656120726562756d2e205374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e205374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e204c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d20766f6c75707475612e204174207665726f20656f73206574206163637573616d206574206a7573746f2064756f20646f6c6f72657320657420656120726562756d2e2074657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e204c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d20766f6c75707475612e204174207665726f20656f73206574206163637573616d206574206a7573746f2064756f20646f6c6f72657320657420656120726562756d2e205374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e204c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d20766f6c75707475612e205374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e204c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e7365746574757220),
(28, 'Price Match', 'Price Match', 0x596f75206e6f206c6f6e676572206861766520746f2073656172636820736974652061667465722073697465206c6f6f6b696e6720666f7220746865206c6f77657374207072696365206f6e20796f7572206b61726174652065717569706d656e742e204f757220737461666620766973697473206f757220636f6d70657469746f727320746f20656e7375726520746861742053706f72747320436f6d706c6578202d204d61727469616c204172747320537570706c79206e6f74206f6e6c79206f6666657273206120776964652073656c656374696f6e206f66207175616c6974792070726f6475637473206275742074686174206f7572207072696365732061726520746865206c6f776573742e596f75206e6f206c6f6e676572206861766520746f2073656172636820736974652061667465722073697465206c6f6f6b696e6720666f7220746865206c6f77657374207072696365206e20796f7572206b61726174652065717569706d656e742e204f7572207374616666766973697473206f757220636f6d70657469746f727320746f20656e73757265207468617453706f72747320436f6d706c6578202d204d61727469616c204172747320537570706c6e6f74206f6e6c79206f6666657273206120776964652073656c656374696f6e206f667175616c6974792070726f6475637473206275742074686174206f757220707269636561726520746865206c6f776573742e596f75206e6f206c6f6e676572206861766520746f2073656172636820736974652061667465722073697465206c6f6f6b696e6720666f7220746865206c6f77657374207072696365206f6e20796f7572206b61726174652065717569706d656e742e204f757220737461666620766973697473206f757220636f6d70657469746f727320746f20656e7375726520746861742053706f72747320436f6d706c6578202d204d61727469616c204172747320537570706c79206e6f74206f6e6c79206f6666657273206120776964652073656c656374696f6e206f66207175616c6974792070726f6475637473206275742074686174206f7572207072696365732061726520746865206c6f776573742e596f75206e6f206c6f6e676572206861766520746f2073656172636820736974652061667465722073697465206c6f6f6b696e6720666f7220746865206c6f77657374207072696365206e20796f7572206b61726174652065717569706d656e742e204f7572207374616666766973697473206f757220636f6d70657469746f727320746f20656e73757265207468617453706f72747320436f6d706c6578202d204d61727469616c204172747320537570706c6e6f74206f6e6c79206f6666657273206120776964652073656c656374696f6e206f667175616c6974792070726f6475637473206275742074686174206f757220707269636561726520746865206c6f776573742e596f75206e6f206c6f6e676572206861766520746f2073656172636820736974652061667465722073697465206c6f6f6b696e6720666f7220746865206c6f77657374207072696365206f6e20796f7572206b61726174652065717569706d656e742e204f757220737461666620766973697473206f757220636f6d70657469746f727320746f20656e7375726520746861742053706f72747320436f6d706c6578202d204d61727469616c204172747320537570706c79206e6f74206f6e6c79206f6666657273206120776964652073656c656374696f6e206f66207175616c6974792070726f6475637473206275742074686174206f7572207072696365732061726520746865206c6f776573742e596f75206e6f206c6f6e676572206861766520746f2073656172636820736974652061667465722073697465206c6f6f6b696e6720666f7220746865206c6f77657374207072696365206e20796f7572206b61726174652065717569706d656e742e204f7572207374616666766973697473206f757220636f6d70657469746f727320746f20656e73757265207468617453706f72747320436f6d706c6578202d204d61727469616c204172747320537570706c6e6f74206f6e6c79206f6666657273206120776964652073656c656374696f6e206f667175616c6974792070726f6475637473206275742074686174206f757220707269636561726520746865206c6f776573742e),
(15, 'Trade Enquiries ', 'Trade Enquiries', 0x3c703e4c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d206f6c75707475612e204174207665726f20656f73206574206163637573616d206574206a7573746f2064756f20646f6c6f72657320657420656120726562756d2e205374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e204c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d20766f6c75707475612e204174207665726f20656f73206574206163637573616d206574206a7573746f2064756f20646f6c6f72657320657420656120726562756d2e205374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e204c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d20766f6c75707475612e204174207665726f20656f73206574206163637573616d206574206a7573746f2064756f20646f6c6f72657320657420656120726562756d2e205374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e3c2f703e3c703e5374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e204c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d20766f6c75707475612e204174207665726f20656f73206574206163637573616d206574206a7573746f2064756f20646f6c6f72657320657420656120726562756d2e2074657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e3c2f703e3c703e4c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d20766f6c75707475612e204174207665726f20656f73206574206163637573616d206574206a7573746f2064756f20646f6c6f72657320657420656120726562756d2e205374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e204c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d20766f6c75707475612e203c2f703e3c7020636c6173733d2272656431317078223e3c7374726f6e673e5374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e204c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475723c2f7374726f6e673e3c2f703e),
(22, 'Privacy Policy ', 'Privacy Policy ', 0x3c703e7072697661637920706f6c6963793c2f703e3c703e266e6273703b3c2f703e3c703e4c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d206f6c75707475612e204174207665726f20656f73206574206163637573616d206574206a7573746f2064756f20646f6c6f72657320657420656120726562756d2e205374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e204c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d20766f6c75707475612e204174207665726f20656f73206574206163637573616d206574206a7573746f2064756f20646f6c6f72657320657420656120726562756d2e205374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e204c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d20766f6c75707475612e204174207665726f20656f73206574206163637573616d206574206a7573746f2064756f20646f6c6f72657320657420656120726562756d2e205374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e3c2f703e3c703e5374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e204c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d20766f6c75707475612e204174207665726f20656f73206574206163637573616d206574206a7573746f2064756f20646f6c6f72657320657420656120726562756d2e2074657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e3c2f703e3c703e4c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d20766f6c75707475612e204174207665726f20656f73206574206163637573616d206574206a7573746f2064756f20646f6c6f72657320657420656120726562756d2e205374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e204c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d20766f6c75707475612e203c2f703e3c7020636c6173733d2272656431317078223e3c7374726f6e673e5374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e204c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475723c2f7374726f6e673e3c2f703e),
(23, 'Terms & Conditions ', 'Terms & Conditions ', 0x3c703e4c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d206f6c75707475612e204174207665726f20656f73206574206163637573616d206574206a7573746f2064756f20646f6c6f72657320657420656120726562756d2e205374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e204c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d20766f6c75707475612e204174207665726f20656f73206574206163637573616d206574206a7573746f2064756f20646f6c6f72657320657420656120726562756d2e205374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e204c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d20766f6c75707475612e204174207665726f20656f73206574206163637573616d206574206a7573746f2064756f20646f6c6f72657320657420656120726562756d2e205374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e3c2f703e3c703e5374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e204c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d20766f6c75707475612e204174207665726f20656f73206574206163637573616d206574206a7573746f2064756f20646f6c6f72657320657420656120726562756d2e2074657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e3c2f703e3c703e4c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d20766f6c75707475612e204174207665726f20656f73206574206163637573616d206574206a7573746f2064756f20646f6c6f72657320657420656120726562756d2e205374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e204c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d20766f6c75707475612e203c2f703e3c7020636c6173733d2272656431317078223e3c7374726f6e673e5374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e204c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475723c2f7374726f6e673e3c2f703e),
(24, 'Lifetime Warrenty ', 'Lifetime Warrenty ', 0x3c703e4c69666574696d652057617272656e74793c2f703e3c703e4c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d206f6c75707475612e204174207665726f20656f73206574206163637573616d206574206a7573746f2064756f20646f6c6f72657320657420656120726562756d2e205374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e204c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d20766f6c75707475612e204174207665726f20656f73206574206163637573616d206574206a7573746f2064756f20646f6c6f72657320657420656120726562756d2e205374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e204c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d20766f6c75707475612e204174207665726f20656f73206574206163637573616d206574206a7573746f2064756f20646f6c6f72657320657420656120726562756d2e205374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e3c2f703e3c703e5374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e204c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d20766f6c75707475612e204174207665726f20656f73206574206163637573616d206574206a7573746f2064756f20646f6c6f72657320657420656120726562756d2e2074657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e3c2f703e3c703e4c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d20766f6c75707475612e204174207665726f20656f73206574206163637573616d206574206a7573746f2064756f20646f6c6f72657320657420656120726562756d2e205374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e204c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d20766f6c75707475612e203c2f703e3c7020636c6173733d2272656431317078223e3c7374726f6e673e5374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e204c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475723c2f7374726f6e673e3c2f703e),
(25, 'About Us', 'About Us', 0x3c703e4c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d206f6c75707475612e204174207665726f20656f73206574206163637573616d206574206a7573746f2064756f20646f6c6f72657320657420656120726562756d2e205374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e204c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d20766f6c75707475612e204174207665726f20656f73206574206163637573616d206574206a7573746f2064756f20646f6c6f72657320657420656120726562756d2e205374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e204c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d20766f6c75707475612e204174207665726f20656f73206574206163637573616d206574206a7573746f2064756f20646f6c6f72657320657420656120726562756d2e205374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e3c2f703e3c703e5374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e204c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d20766f6c75707475612e204174207665726f20656f73206574206163637573616d206574206a7573746f2064756f20646f6c6f72657320657420656120726562756d2e2074657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e3c2f703e3c703e4c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d20766f6c75707475612e204174207665726f20656f73206574206163637573616d206574206a7573746f2064756f20646f6c6f72657320657420656120726562756d2e205374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e204c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475722073616469707363696e6720656c6974722c20736564206469616d206e6f6e756d79206569726d6f642074656d706f7220696e766964756e74207574206c61626f726520657420646f6c6f7265206d61676e6120616c69717579616d20657261742c20736564206469616d20766f6c75707475612e203c2f703e3c7020636c6173733d2272656431317078223e3c7374726f6e673e5374657420636c697461206b6173642067756265726772656e2c206e6f207365612074616b696d6174612073616e6374757320657374204c6f72656d20697073756d20646f6c6f722073697420616d65742e204c6f72656d20697073756d20646f6c6f722073697420616d65742c20636f6e736574657475723c2f7374726f6e673e3c2f703e);

-- --------------------------------------------------------

--
-- Table structure for table `products`
--

CREATE TABLE IF NOT EXISTS `products` (
  `products_id` int(11) NOT NULL AUTO_INCREMENT,
  `products_quantity` int(4) NOT NULL,
  `products_model` varchar(12) DEFAULT NULL,
  `products_image` varchar(64) DEFAULT NULL,
  `products_price` decimal(15,4) NOT NULL,
  `products_date_added` datetime NOT NULL,
  `products_last_modified` datetime DEFAULT NULL,
  `products_date_available` datetime DEFAULT NULL,
  `products_weight` decimal(5,2) NOT NULL,
  `products_status` tinyint(1) NOT NULL,
  `products_tax_class_id` int(11) NOT NULL,
  `manufacturers_id` int(11) DEFAULT NULL,
  `products_ordered` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`products_id`),
  KEY `idx_products_model` (`products_model`),
  KEY `idx_products_date_added` (`products_date_added`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=328 ;

--
-- Dumping data for table `products`
--

INSERT INTO `products` (`products_id`, `products_quantity`, `products_model`, `products_image`, `products_price`, `products_date_added`, `products_last_modified`, `products_date_available`, `products_weight`, `products_status`, `products_tax_class_id`, `manufacturers_id`, `products_ordered`) VALUES
(1, 0, '', 'TN_Beanie_FM-4501_a-1.JPG', 0.0000, '2009-05-11 05:13:42', NULL, NULL, 0.00, 1, 0, 0, 0),
(2, 0, '', 'TN_Black_Embroiled_Belts_FM-604.JPG', 0.0000, '2009-05-11 05:15:04', NULL, NULL, 0.00, 1, 0, 0, 0),
(3, 0, '', 'TN_Color_Belts_FM-602.JPG', 0.0000, '2009-05-11 05:15:27', NULL, NULL, 0.00, 1, 0, 0, 0),
(4, 0, '', 'TN_Color_Belts_FM-605.JPG', 0.0000, '2009-05-11 05:16:01', NULL, NULL, 0.00, 1, 0, 0, 0),
(5, 0, '', 'TN_Kung-Fu_Belt_Sashes_FM-601.JPG', 0.0000, '2009-05-11 05:16:38', NULL, NULL, 0.00, 1, 0, 0, 0),
(6, 0, '', 'TN_Weight_training_Belts_FM-990.JPG', 0.0000, '2009-05-11 05:18:07', NULL, NULL, 0.00, 1, 0, 0, 0),
(7, 0, '', 'Weight_training_Belts_FM-990.jpg', 0.0000, '2009-05-11 05:18:39', NULL, NULL, 0.00, 1, 0, 0, 0),
(8, 0, '', 'TN_Boxing_Gown_&_Belt_with_Hood_FM-868_g-1.JPG', 0.0000, '2009-05-11 05:20:29', NULL, NULL, 0.00, 1, 0, 0, 0),
(9, 0, '', 'TN_Corner Mans Jacket FM-868 k-41.JPG', 0.0000, '2009-05-11 05:20:49', NULL, NULL, 0.00, 1, 0, 0, 0),
(10, 0, '', 'TN_Corner Mans Jacket FM-868 k-42.JPG', 0.0000, '2009-05-11 05:21:17', NULL, NULL, 0.00, 1, 0, 0, 0),
(11, 0, '', 'TN_Kick Boxing Gown FM-868 g_2.JPG', 0.0000, '2009-05-11 05:22:10', NULL, NULL, 0.00, 1, 0, 0, 0),
(12, 0, '', 'TN_Kick_Boxing_Suite_FM-868_k-1.JPG', 0.0000, '2009-05-11 05:22:40', NULL, NULL, 0.00, 1, 0, 0, 0),
(13, 0, '', 'TN_Kick_Boxing_Uniform_FM-868_k-11.JPG', 0.0000, '2009-05-11 05:23:09', NULL, NULL, 0.00, 1, 0, 0, 0),
(14, 0, '', 'TN_Kickboxing_Suite_FM-878.JPG', 0.0000, '2009-05-11 05:23:33', NULL, NULL, 0.00, 1, 0, 0, 0),
(15, 0, '', 'TN_Boxing_Short_FM-868_a-1.JPG', 0.0000, '2009-05-11 05:24:33', NULL, NULL, 0.00, 1, 0, 0, 0),
(16, 0, '', 'TN_Boxing_Short_FM-868_a-2.JPG', 0.0000, '2009-05-11 05:25:28', NULL, NULL, 0.00, 1, 0, 0, 0),
(17, 0, '', 'TN_Boxing_Short_FM-868_a-4.JPG', 0.0000, '2009-05-11 05:25:48', NULL, NULL, 0.00, 1, 0, 0, 0),
(18, 0, '', 'TN_Boxing_Short_FM-868_a-11.JPG', 0.0000, '2009-05-11 05:26:14', NULL, NULL, 0.00, 1, 0, 0, 0),
(19, 0, '', 'TN_MMA Short_Camouflage_Style_Micro_Sublimation_FM-896_c-22.JPG', 0.0000, '2009-05-11 05:28:30', NULL, NULL, 0.00, 1, 0, 0, 0),
(20, 0, '', 'TN_MMA_Short_Camouflage_Style_FM-896_c-14.JPG', 0.0000, '2009-05-11 05:28:48', NULL, NULL, 0.00, 1, 0, 0, 0),
(21, 0, '', 'TN_MMA_Short_Camouflage_Style_FM-896_c-21.JPG', 0.0000, '2009-05-11 05:29:06', NULL, NULL, 0.00, 1, 0, 0, 0),
(22, 0, '', 'TN_MMA_Short_Camouflage_Style_FM-896_c-24.JPG', 0.0000, '2009-05-11 05:29:24', NULL, NULL, 0.00, 1, 0, 0, 0),
(23, 0, '', 'TN_MMA_Short_Codura_Taslan_FM-896_c-26.JPG', 0.0000, '2009-05-11 05:29:41', NULL, NULL, 0.00, 1, 0, 0, 0),
(24, 0, '', 'TN_MMA_Short_Cotton_Spandex_FM-896 g-4.JPG', 0.0000, '2009-05-11 05:30:05', NULL, NULL, 0.00, 1, 0, 0, 0),
(25, 0, '', 'TN_MMA_Short_Cotton_Spandex_FM-896_g-8.JPG', 0.0000, '2009-05-11 05:30:42', NULL, NULL, 0.00, 1, 0, 0, 0),
(26, 0, '', 'TN_MMA_Short_Cotton_Spandex_with_Yellow_Stripes_FM-896_g-6.JPG', 0.0000, '2009-05-11 05:31:03', NULL, NULL, 0.00, 1, 0, 0, 0),
(27, 0, '', 'TN_Ladies_Muay_Thai_Short_FM-891_f-12.JPG', 0.0000, '2009-05-11 05:31:47', NULL, NULL, 0.00, 1, 0, 0, 0),
(28, 0, '', 'TN_Muay_Thai_Brocade_Short_FM-891_a-2.JPG', 0.0000, '2009-05-11 05:32:05', NULL, NULL, 0.00, 1, 0, 0, 0),
(29, 0, '', 'TN_Muay_Thai_Bulldog_Short_FM-892_p-2.JPG', 0.0000, '2009-05-11 05:32:28', NULL, NULL, 0.00, 1, 0, 0, 0),
(30, 0, '', 'TN_Muay_Thai_Short_Camouflage_Style_FM-891_c-2.JPG', 0.0000, '2009-05-11 05:32:46', '2009-05-11 05:33:18', NULL, 0.00, 1, 0, 0, 0),
(31, 0, '', 'TN_Muay_Thai_Short_Camouflage_Style_Satin_FM-891_c-4.JPG', 0.0000, '2009-05-11 05:34:19', '2009-05-11 05:34:58', NULL, 0.00, 1, 0, 0, 0),
(32, 0, '', 'TN_Muay_Thai_Short_No_Fear_Style_with_Stars_FM 892_L-1.JPG', 0.0000, '2009-05-11 05:52:03', NULL, NULL, 0.00, 1, 0, 0, 0),
(33, 0, '', 'TN_Muay_Thai_Short_two_colors_with_design_FM-891_f-52.JPG', 0.0000, '2009-05-11 05:52:26', NULL, NULL, 0.00, 1, 0, 0, 0),
(34, 0, '', 'TN_Muay_Thai_Short_White_FM-892_R.JPG', 0.0000, '2009-05-11 05:52:43', NULL, NULL, 0.00, 1, 0, 0, 0),
(35, 0, '', 'TN_Ju_ Jitsu_Suite_FM-480_a-2.JPG', 0.0000, '2009-05-11 05:54:56', NULL, NULL, 0.00, 1, 0, 0, 0),
(36, 0, '', 'TN_Jujutsu_uniform_FM-480.JPG', 0.0000, '2009-05-11 05:55:31', NULL, NULL, 0.00, 1, 0, 0, 0),
(37, 0, '', 'TN_Judo_Suite_FM-402_a-2.JPG', 0.0000, '2009-05-11 05:56:41', NULL, NULL, 0.00, 1, 0, 0, 0),
(38, 0, '', 'TN_Judo_Uniform_FM-401.JPG', 0.0000, '2009-05-11 05:57:01', NULL, NULL, 0.00, 1, 0, 0, 0),
(39, 0, '', 'TN_Judo_Uniform_FM-402.JPG', 0.0000, '2009-05-11 05:57:17', NULL, NULL, 0.00, 1, 0, 0, 0),
(40, 0, '', 'TN_Judo_Uniform_FM-403.JPG', 0.0000, '2009-05-11 05:57:44', NULL, NULL, 0.00, 1, 0, 0, 0),
(41, 0, '', 'TN_Karatay Uniform FM-101.JPG', 0.0000, '2009-05-11 05:58:47', NULL, NULL, 0.00, 1, 0, 0, 0),
(42, 0, '', 'TN_Karatay_Uniform_FM-102.JPG', 0.0000, '2009-05-11 05:59:05', NULL, NULL, 0.00, 1, 0, 0, 0),
(43, 0, '', 'TN_Karatay_Uniform_FM-103.JPG', 0.0000, '2009-05-11 05:59:24', NULL, NULL, 0.00, 1, 0, 0, 0),
(44, 0, '', 'TN_Karatay_Uniform_FM-104.JPG', 0.0000, '2009-05-11 05:59:47', NULL, NULL, 0.00, 1, 0, 0, 0),
(45, 0, '', 'TN_Karate_Suite_Best_Quality_FM-102_a-1.JPG', 0.0000, '2009-05-11 06:00:17', NULL, NULL, 0.00, 1, 0, 0, 0),
(46, 0, '', 'TN_Kung_Fu_Suite_Chinese_Style_Black_FM-428_a-4.JPG', 0.0000, '2009-05-11 06:01:17', NULL, NULL, 0.00, 1, 0, 0, 0),
(47, 0, '', 'TN_Kung_Fu_Suite_Chinese_Style_White_FM-428_a-2.JPG', 0.0000, '2009-05-11 06:01:38', NULL, NULL, 0.00, 1, 0, 0, 0),
(48, 0, '', 'TN_Kung-Fu_Uniform_FM-425.JPG', 0.0000, '2009-05-11 06:01:59', NULL, NULL, 0.00, 1, 0, 0, 0),
(49, 0, '', 'TN_Kung-Fu_Uniform_FM-426.JPG', 0.0000, '2009-05-11 06:02:24', NULL, NULL, 0.00, 1, 0, 0, 0),
(50, 0, '', 'TN_Kung-Fu_Uniform_FM-427.JPG', 0.0000, '2009-05-11 06:02:52', NULL, NULL, 0.00, 1, 0, 0, 0),
(51, 0, '', 'TN_Ladies_Bra_in_Camouflage_Style_FM-898_f-4.JPG', 0.0000, '2009-05-11 06:03:50', NULL, NULL, 0.00, 1, 0, 0, 0),
(52, 0, '', 'TN_Ladies_Bra_Plain_FM-898_f-2.JPG', 0.0000, '2009-05-11 06:04:23', NULL, NULL, 0.00, 1, 0, 0, 0),
(53, 0, '', 'TN_Ladies_Tank_Top_FM-898 f-104.JPG', 0.0000, '2009-05-11 06:04:45', NULL, NULL, 0.00, 1, 0, 0, 0),
(54, 0, '', 'TN_MMA_Short_Camouflage_Style_FM-896_c-14.JPG', 0.0000, '2009-05-11 06:05:08', '2009-05-11 06:06:13', NULL, 0.00, 1, 0, 0, 0),
(55, 0, '', 'TN_Ninja_Uniform_FM-470.JPG', 0.0000, '2009-05-11 06:07:21', NULL, NULL, 0.00, 1, 0, 0, 0),
(56, 0, '', 'TN_Rash_guard_Camouflage_Style_FM-898_c-2.JPG', 0.0000, '2009-05-11 06:08:00', NULL, NULL, 0.00, 1, 0, 0, 0),
(57, 0, '', 'TN_Rashguard_Black_and_Red_FM-898_b-42.JPG', 0.0000, '2009-05-11 06:08:19', NULL, NULL, 0.00, 1, 0, 0, 0),
(58, 0, '', 'TN_Rashguard_with_Fire_FM-898_B-1.JPG', 0.0000, '2009-05-11 06:08:37', NULL, NULL, 0.00, 1, 0, 0, 0),
(59, 0, '', 'TN_Rashguard_with_Tattoo_FM-898_B-19.JPG', 0.0000, '2009-05-11 06:08:58', NULL, NULL, 0.00, 1, 0, 0, 0),
(60, 0, '', 'TN_Taekwondo_Suite_FM-502_a-2.JPG', 0.0000, '2009-05-11 06:09:51', NULL, NULL, 0.00, 1, 0, 0, 0),
(61, 0, '', 'TN_Taekwondo_Uniform_FM-501.JPG', 0.0000, '2009-05-11 06:10:13', NULL, NULL, 0.00, 1, 0, 0, 0),
(62, 0, '', 'TN_Taekwondo_Uniform_FM-502.JPG', 0.0000, '2009-05-11 06:10:30', NULL, NULL, 0.00, 1, 0, 0, 0),
(63, 0, '', 'TN_Tai_Chi_Suite_FM-412_a-2.JPG', 0.0000, '2009-05-11 06:11:32', NULL, NULL, 0.00, 1, 0, 0, 0),
(64, 0, '', 'TN_Sports_Wear_FM-701.JPG', 0.0000, '2009-05-11 06:12:12', NULL, NULL, 0.00, 1, 0, 0, 0),
(65, 0, '', 'TN_Sports_Wear_FM-702.JPG', 0.0000, '2009-05-11 06:12:34', NULL, NULL, 0.00, 1, 0, 0, 0),
(66, 0, '', 'TN_Sports_Wear_Track_Suite_FM-711_a-1.JPG', 0.0000, '2009-05-11 06:13:22', NULL, NULL, 0.00, 1, 0, 0, 0),
(67, 0, '', 'TN_Tracksuite_FM-702_a-2.JPG', 0.0000, '2009-05-11 06:13:40', NULL, NULL, 0.00, 1, 0, 0, 0),
(68, 0, '', 'TN_Capoeira_Pant_Black_FM-872_c-4.JPG', 0.0000, '2009-05-11 06:14:45', NULL, NULL, 0.00, 1, 0, 0, 0),
(69, 0, '', 'TN_Capoeira_Pant_White_FM-872_c-2.JPG', 0.0000, '2009-05-11 06:15:08', NULL, NULL, 0.00, 1, 0, 0, 0),
(70, 0, '', 'TN_Black_Fleece_Trouser_FM-872_f-2.JPG', 0.0000, '2009-05-11 06:16:12', NULL, NULL, 0.00, 1, 0, 0, 0),
(71, 0, '', 'TN_Judo_Pant_FM-872_b-18.JPG', 0.0000, '2009-05-11 06:16:49', NULL, NULL, 0.00, 1, 0, 0, 0),
(72, 0, '', 'TN_Karate_Pant_FM-872_b-28.JPG', 0.0000, '2009-05-11 06:17:29', NULL, NULL, 0.00, 1, 0, 0, 0),
(73, 0, '', 'TN_Kick_Boxing_Trouser_FM-871.JPG', 0.0000, '2009-05-11 06:18:11', NULL, NULL, 0.00, 1, 0, 0, 0),
(74, 0, '', 'TN_Kick_Boxing_Trouser_FM-872.JPG', 0.0000, '2009-05-11 06:18:43', NULL, NULL, 0.00, 1, 0, 0, 0),
(75, 0, '', 'TN_Kick_Boxing_Trouser_FM-872_a-1.JPG', 0.0000, '2009-05-11 06:19:01', NULL, NULL, 0.00, 1, 0, 0, 0),
(76, 0, '', 'TN_Kick_boxing_Trouser_FM-872_a-2.JPG', 0.0000, '2009-05-11 06:19:35', NULL, NULL, 0.00, 1, 0, 0, 0),
(77, 0, '', 'TN_Kick_Boxing_Trouser_FM-873-1.JPG', 0.0000, '2009-05-11 06:20:00', NULL, NULL, 0.00, 1, 0, 0, 0),
(78, 0, '', 'TN_Kick_Boxing_Trouser_FM-873-2.JPG', 0.0000, '2009-05-11 06:20:21', NULL, NULL, 0.00, 1, 0, 0, 0),
(79, 0, '', 'TN_Kick_Boxing_Trouser_FM-873.JPG', 0.0000, '2009-05-11 06:20:43', NULL, NULL, 0.00, 1, 0, 0, 0),
(80, 0, '', 'TN_Kick_Boxing_Trouser_FM-874.JPG', 0.0000, '2009-05-11 06:21:16', NULL, NULL, 0.00, 1, 0, 0, 0),
(81, 0, '', 'TN_Kung_Fu_Pant_Chinese_Style_White_FM-872_b-6.JPG', 0.0000, '2009-05-11 06:22:39', NULL, NULL, 0.00, 1, 0, 0, 0),
(82, 0, '', 'TN_Kung_Fu_Pant_Chinese_Style_White_FM-872_b-8.JPG', 0.0000, '2009-05-11 06:23:16', NULL, NULL, 0.00, 1, 0, 0, 0),
(83, 0, '', 'TN_Kung_Fu_Pant_FM-872_b-2.JPG', 0.0000, '2009-05-11 06:23:53', NULL, NULL, 0.00, 1, 0, 0, 0),
(84, 0, '', 'TN_Taekwondo_Pant_FM-872_b-42.JPG', 0.0000, '2009-05-11 06:24:38', NULL, NULL, 0.00, 1, 0, 0, 0),
(85, 0, '', 'TN_Taekwondo_Pant_FM-872_b-44.JPG', 0.0000, '2009-05-11 06:24:58', NULL, NULL, 0.00, 1, 0, 0, 0),
(86, 0, '', 'TN_Black_Fleece_Hood_FM-1601_a-2.JPG', 0.0000, '2009-05-11 06:26:04', NULL, NULL, 0.00, 1, 0, 0, 0),
(87, 0, '', 'TN_Black_Fleece_Hood_FM-1601_a-6.JPG', 0.0000, '2009-05-11 06:26:39', NULL, NULL, 0.00, 1, 0, 0, 0),
(88, 0, '', 'TN_Black_Fleece_Hood_with_Zip_FM-1601_a-42.JPG', 0.0000, '2009-05-11 06:27:04', NULL, NULL, 0.00, 1, 0, 0, 0),
(89, 0, '', 'TN_Black_Fleece_Suite_with_Hood_Zipper_FM-1601_c-2.JPG', 0.0000, '2009-05-11 06:27:38', NULL, NULL, 0.00, 1, 0, 0, 0),
(90, 0, '', 'TN_Black_TShirt_FM-1642_a-2.JPG', 0.0000, '2009-05-11 06:28:03', NULL, NULL, 0.00, 1, 0, 0, 0),
(91, 0, '', 'TN_Blue_Fleece_Hood_FM-1601_a-4.JPG', 0.0000, '2009-05-11 06:29:19', NULL, NULL, 0.00, 1, 0, 0, 0),
(92, 0, '', 'TN_Capoeira_T-Shirt_White_FM-1642_a-82.JPG', 0.0000, '2009-05-11 06:29:43', NULL, NULL, 0.00, 1, 0, 0, 0),
(93, 0, '', 'TShirt_White_FM-1642_a-4.jpg', 0.0000, '2009-05-11 06:30:03', NULL, NULL, 0.00, 1, 0, 0, 0),
(95, 0, '', 'TN_2_Blank_Fabric_for_Jujitsu_Suite_DW_700grm_FM-2_a-2.JPG', 0.0000, '2009-05-12 00:45:47', NULL, NULL, 0.00, 1, 0, 0, 0),
(97, 0, '', 'TN_3_Blank_Fabric_for_Judo_Suite_Sendai_Top_950grm_FM-2_a-3.JPG', 0.0000, '2009-05-12 00:47:14', NULL, NULL, 0.00, 1, 0, 0, 0),
(98, 0, '', 'TN_8_Bleached_Canvas_16oz_FM-2_b-8.JPG', 0.0000, '2009-05-12 00:49:44', '2009-05-12 00:50:33', NULL, 0.00, 1, 0, 0, 0),
(99, 0, '', 'TN_8_Bleached_Canvas_14oz_FM-2_a-8.JPG', 0.0000, '2009-05-12 00:50:58', NULL, NULL, 0.00, 1, 0, 0, 0),
(100, 0, '', 'TN_7_Blue_Canvas_14oz_FM-2_a-7.JPG', 0.0000, '2009-05-12 00:51:21', NULL, NULL, 0.00, 1, 0, 0, 0),
(101, 0, '', 'TN_7_Black_Canvas_16oz_FM-2_b-7.JPG', 0.0000, '2009-05-12 00:51:46', NULL, NULL, 0.00, 1, 0, 0, 0),
(102, 0, '', 'TN_6_Blank_Fabric_for_Judo_Suite_Top_460grm_FM-2_a-6.JPG', 0.0000, '2009-05-12 00:52:06', NULL, NULL, 0.00, 1, 0, 0, 0),
(103, 0, '', 'TN_15_Green_Belt_FM-2_ba-15.JPG', 0.0000, '2009-05-12 00:52:25', NULL, NULL, 0.00, 1, 0, 0, 0),
(104, 0, '', 'TN_Bag Gloves FM-806 a-1.JPG', 0.0000, '2009-05-18 23:47:08', NULL, NULL, 0.00, 1, 0, 0, 0),
(105, 0, '', 'TN_Bag_Gloves_FM-806c.JPG', 0.0000, '2009-05-18 23:47:52', NULL, NULL, 0.00, 1, 0, 0, 0),
(106, 0, '', 'TN_Bag_Gloves_FM-807.JPG', 0.0000, '2009-05-18 23:48:21', NULL, NULL, 0.00, 1, 0, 0, 0),
(107, 0, '', 'TN_Bag_Gloves_Topten_Style_FM-807_a-1.JPG', 0.0000, '2009-05-18 23:48:53', NULL, NULL, 0.00, 1, 0, 0, 0),
(108, 0, '', 'TN_Bag_Mit_Gloves_Red_FM-806_a-2.JPG', 0.0000, '2009-05-18 23:49:26', NULL, NULL, 0.00, 1, 0, 0, 0),
(109, 0, '', 'TN_Boxing Gloves Competition FM-803 a-1.JPG', 0.0000, '2009-05-18 23:50:14', NULL, NULL, 0.00, 1, 0, 0, 0),
(110, 0, '', 'TN_Boxing_Gloves_Booster_Style_FM-760_b-1.JPG', 0.0000, '2009-05-18 23:50:33', NULL, NULL, 0.00, 1, 0, 0, 0),
(111, 0, '', 'TN_Boxing_Gloves_Brittan_Flag_FM-795_d-2.JPG', 0.0000, '2009-05-18 23:51:11', NULL, NULL, 0.00, 1, 0, 0, 0),
(112, 0, '', 'TN_Boxing_Gloves_Cheap_FM-795_b-2.JPG', 0.0000, '2009-05-18 23:53:08', NULL, NULL, 0.00, 1, 0, 0, 0),
(113, 0, '', 'TN_Boxing_Gloves_English_Style_UK_Model_FM-765_a-1.JPG', 0.0000, '2009-05-18 23:53:45', NULL, NULL, 0.00, 1, 0, 0, 0),
(114, 0, '', 'TN_Boxing_Gloves_for_Ladies_Twins_Style_FM-795_a-4.JPG', 0.0000, '2009-05-18 23:54:16', NULL, NULL, 0.00, 1, 0, 0, 0),
(115, 0, '', 'TN_Boxing_Gloves_French_Style_FM-808.JPG', 0.0000, '2009-05-18 23:54:46', NULL, NULL, 0.00, 1, 0, 0, 0),
(116, 0, '', 'TN_Boxing_Gloves_King_Style_FM-760_a-1.JPG', 0.0000, '2009-05-18 23:55:22', NULL, NULL, 0.00, 1, 0, 0, 0),
(117, 0, '', 'TN_Cut_finger_Mitt_Cross_Padding_FM-128_b-1.JPG', 0.0000, '2009-05-18 23:56:44', NULL, NULL, 0.00, 1, 0, 0, 0),
(118, 0, '', 'TN_Cut_finger_Mitt_Vertical_Padding_FM-128.JPG', 0.0000, '2009-05-18 23:57:49', NULL, NULL, 0.00, 1, 0, 0, 0),
(119, 0, '', 'TN_Cut_Finger_Mitt_Vertical_Padding_FM-128_a-1.JPG', 0.0000, '2009-05-18 23:58:19', NULL, NULL, 0.00, 1, 0, 0, 0),
(120, 0, '', 'TN_Grappling_Gloves_FM-809_a-1.JPG', 0.0000, '2009-05-18 23:58:59', NULL, NULL, 0.00, 1, 0, 0, 0),
(121, 0, '', 'TN_Grappling_Gloves_FM-809_a-2.JPG', 0.0000, '2009-05-18 23:59:26', NULL, NULL, 0.00, 1, 0, 0, 0),
(122, 0, '', 'TN_Grappling_Gloves_FM-809_a-4.JPG', 0.0000, '2009-05-19 00:00:34', NULL, NULL, 0.00, 1, 0, 0, 0),
(123, 0, '', 'TN_Grappling_Gloves_FM-809_All.JPG', 0.0000, '2009-05-19 00:01:08', NULL, NULL, 0.00, 1, 0, 0, 0),
(124, 0, '', 'TN_Grappling_Gloves_FM-809_b-1.JPG', 0.0000, '2009-05-19 00:02:27', NULL, NULL, 0.00, 1, 0, 0, 0),
(125, 0, '', 'TN_Grappling_Gloves_FM-809_Black.JPG', 0.0000, '2009-05-19 00:05:07', NULL, NULL, 0.00, 1, 0, 0, 0),
(126, 0, '', 'TN_Grappling_Gloves_FM-809_Blue.JPG', 0.0000, '2009-05-19 00:05:43', NULL, NULL, 0.00, 1, 0, 0, 0),
(127, 0, '', 'TN_Grappling_Gloves_FM-809_c-1.JPG', 0.0000, '2009-05-19 00:06:14', NULL, NULL, 0.00, 1, 0, 0, 0),
(128, 0, '', 'TN_Elastick_Karate_Hand_Mit_FM-127.JPG', 0.0000, '2009-05-19 00:06:56', NULL, NULL, 0.00, 1, 0, 0, 0),
(129, 0, '', 'TN_Kenpo_Gloves_American_StyleFM-811_a-1.JPG', 0.0000, '2009-05-19 00:07:44', NULL, NULL, 0.00, 1, 0, 0, 0),
(130, 0, '', 'TN_Kenpo_Gloves_FM-811.JPG', 0.0000, '2009-05-19 00:08:06', NULL, NULL, 0.00, 1, 0, 0, 0),
(131, 0, '', 'TN_Kenpo_Gloves_FM-811_a-21.JPG', 0.0000, '2009-05-19 00:08:27', NULL, NULL, 0.00, 1, 0, 0, 0),
(132, 0, '', 'TN_Boxing_Gloves_Pink_Ladies_FM-791_a-1.JPG', 0.0000, '2009-05-19 00:18:09', NULL, NULL, 0.00, 1, 0, 0, 0),
(133, 0, '', 'TN_Cobra_Gloves_FM-816_a-1.JPG', 0.0000, '2009-05-19 00:18:57', NULL, NULL, 0.00, 1, 0, 0, 0),
(134, 0, '', 'TN_Karate_Mitt_VK_Style_CC_Adidas_FM-126_a-1.JPG', 0.0000, '2009-05-19 00:19:19', NULL, NULL, 0.00, 1, 0, 0, 0),
(135, 0, '', 'TN_Ladies_Karate_Mitt_FM-126 b-1.JPG', 0.0000, '2009-05-19 00:19:45', NULL, NULL, 0.00, 1, 0, 0, 0),
(136, 0, '', 'TN_Semi_Contact_Mitt2_FM-126.JPG', 0.0000, '2009-05-19 00:20:06', NULL, NULL, 0.00, 1, 0, 0, 0),
(137, 0, '', 'TN_Semi_Contact_Mitt_FM-801.JPG', 0.0000, '2009-05-19 00:20:28', NULL, NULL, 0.00, 1, 0, 0, 0),
(138, 0, '', 'TN_Semi_Perfect_Mitt_Everlast_Style_FM-126_a-3.JPG', 0.0000, '2009-05-19 00:20:52', NULL, NULL, 0.00, 1, 0, 0, 0),
(139, 0, '', 'TN_Full_Finger_Taekwondo_Gloves_FM-809_t-1.JPG', 0.0000, '2009-05-19 00:21:37', NULL, NULL, 0.00, 1, 0, 0, 0),
(140, 0, '', 'TN_Taekwondo_Gloves_Half_Finger_FM-809_t-21.JPG', 0.0000, '2009-05-19 00:22:04', NULL, NULL, 0.00, 1, 0, 0, 0),
(141, 0, '', 'TN_Kids_Bag_Gloves_Tiger_Style_FM-732_a-1.JPG', 0.0000, '2009-05-19 00:30:08', NULL, NULL, 0.00, 1, 0, 0, 0),
(142, 0, '', 'TN_Kids_Bag_Gloves_Zebra_Style_FM-732_a-2.JPG', 0.0000, '2009-05-19 00:30:49', NULL, NULL, 0.00, 1, 0, 0, 0),
(143, 0, '', 'TN_Boxing_Gloves_Pink_for_Girls_FM-730_a-1.JPG', 0.0000, '2009-05-19 00:31:29', NULL, NULL, 0.00, 1, 0, 0, 0),
(144, 0, '', 'TN_Kids_Boxing_Gloves_Tiger_Style_FM-730_b-1.JPG', 0.0000, '2009-05-19 00:31:49', NULL, NULL, 0.00, 1, 0, 0, 0),
(145, 0, '', 'TN_Kids_Boxing_Gloves_Zebra_Style_FM-730_b-2.JPG', 0.0000, '2009-05-19 00:32:05', NULL, NULL, 0.00, 1, 0, 0, 0),
(146, 0, '', 'TN_Girls_Focus_Pad_Pink_Color_FM-822_c-1.JPG', 0.0000, '2009-05-19 00:32:39', NULL, NULL, 0.00, 1, 0, 0, 0),
(147, 0, '', 'TN_Kids_Focus_Pad_Tiger_Style_FM-822_c-51.JPG', 0.0000, '2009-05-19 00:32:56', NULL, NULL, 0.00, 1, 0, 0, 0),
(148, 0, '', 'TN_Kids_Focuspad_Zebra_Style_FM-822_c-52.JPG', 0.0000, '2009-05-19 00:33:13', NULL, NULL, 0.00, 1, 0, 0, 0),
(149, 0, '', 'TN_Headguard_for_Girls_Pink_Color_FM-931_a-1.JPG', 0.0000, '2009-05-19 00:45:17', NULL, NULL, 0.00, 1, 0, 0, 0),
(150, 0, '', 'TN_Kids_Headguard_Tiger_Style_FM-931 b-1.JPG', 0.0000, '2009-05-19 00:45:41', NULL, NULL, 0.00, 1, 0, 0, 0),
(151, 0, '', 'TN_Kids_Headguard_Zebra_Style_FM-931_b-2.JPG', 0.0000, '2009-05-19 00:45:59', NULL, NULL, 0.00, 1, 0, 0, 0),
(152, 0, '', 'TN_Kids_Belly_Belt_FM-838 a-1.JPG', 0.0000, '2009-05-19 00:46:39', NULL, NULL, 0.00, 1, 0, 0, 0),
(153, 0, '', 'TN_Kids_Boxing_Bag_Set_Australian_Flag_FM-1091_a-13.JPG', 0.0000, '2009-05-19 00:47:25', NULL, NULL, 0.00, 1, 0, 0, 0),
(154, 0, '', 'TN_Kids_Boxing_Bag_Set_Italy_Flag_FM-1091_a-12.JPG', 0.0000, '2009-05-19 00:47:44', NULL, NULL, 0.00, 1, 0, 0, 0),
(155, 0, '', 'TN_Kids_Boxing_Bag_Set_Plain_FM-1091_b-1.JPG', 0.0000, '2009-05-19 00:48:02', NULL, NULL, 0.00, 1, 0, 0, 0),
(156, 0, '', 'TN_Kids_Boxing_Bag_Set_Russia_Flag_FM-1091_a-14.JPG', 0.0000, '2009-05-19 00:48:23', NULL, NULL, 0.00, 1, 0, 0, 0),
(157, 0, '', 'TN_Kids_Boxing_Bag_Set_Turkey_Flag_FM-1091_a-16.JPG', 0.0000, '2009-05-19 00:48:44', NULL, NULL, 0.00, 1, 0, 0, 0),
(158, 0, '', 'TN_Kids_Boxing_Bag_Set_USA_Flag_FM-1091_a-11.JPG', 0.0000, '2009-05-19 00:49:08', NULL, NULL, 0.00, 1, 0, 0, 0),
(159, 0, '', 'TN_Kids_Boxing_Punching_Bag_Jump_In_Style_FM-1091_a-2.JPG', 0.0000, '2009-05-19 00:49:36', NULL, NULL, 0.00, 1, 0, 0, 0),
(160, 0, '', 'TN_Kids_Boxing_Punching_Bag_Power_Rangers_Style_FM-1091_a-1.JPG', 0.0000, '2009-05-19 00:49:57', NULL, NULL, 0.00, 1, 0, 0, 0),
(161, 0, '', 'TN_Blister_Packing_for_Shin_pads_FM-7001_b-1.JPG', 0.0000, '2009-05-19 00:53:06', NULL, NULL, 0.00, 1, 0, 0, 0),
(162, 0, '', 'TN_Blister_Packing_for_skipping_rope_FM-7001_b-31.JPG', 0.0000, '2009-05-19 00:53:25', NULL, NULL, 0.00, 1, 0, 0, 0),
(163, 0, '', 'TN_Boxing_Gloves_Mesh_Packing_FM-7001_d-1.JPG', 0.0000, '2009-05-19 00:53:43', NULL, NULL, 0.00, 1, 0, 0, 0),
(164, 0, '', 'TN_Boxing_Gloves_Zip_Packing_FM-7002_a-1.JPG', 0.0000, '2009-05-19 00:54:02', NULL, NULL, 0.00, 1, 0, 0, 0),
(165, 0, '', 'TN_Focus_pad_Zip_Packing_FM-7002_a-42.JPG', 0.0000, '2009-05-19 00:54:22', NULL, NULL, 0.00, 1, 0, 0, 0),
(166, 0, '', 'TN_Grappling_Gloves_Poly_Packing_FM-7001_a-1.JPG', 0.0000, '2009-05-19 00:54:46', NULL, NULL, 0.00, 1, 0, 0, 0),
(167, 0, '', 'TN_Head_guard_Poly_Packing_FM-7001_a-51.JPG', 0.0000, '2009-05-19 00:55:08', NULL, NULL, 0.00, 1, 0, 0, 0),
(168, 0, '', 'TN_Weightlifting_Gloves_Envelope_Packing_FM-7001_c-1.JPG', 0.0000, '2009-05-19 00:55:31', NULL, NULL, 0.00, 1, 0, 0, 0),
(169, 0, '', 'TN_Belly_Guard_FM-836.JPG', 0.0000, '2009-05-19 01:22:08', NULL, NULL, 0.00, 1, 0, 0, 0),
(170, 0, '', 'TN_Belly_Guard_FM-836_a-2.JPG', 0.0000, '2009-05-19 01:22:27', NULL, NULL, 0.00, 1, 0, 0, 0),
(171, 0, '', 'TN_Ladies_Chest_Guard_FM-832.JPG', 0.0000, '2009-05-19 01:25:02', NULL, NULL, 0.00, 1, 0, 0, 0),
(172, 0, '', 'TN_Ladies_Chest_Guard_FM-832_b-1.JPG', 0.0000, '2009-05-19 01:25:26', NULL, NULL, 0.00, 1, 0, 0, 0),
(173, 0, '', 'TN_Ladies_Chest_Guard_FM-832_b-2.JPG', 0.0000, '2009-05-19 01:25:52', NULL, NULL, 0.00, 1, 0, 0, 0),
(174, 0, '', 'TN_Molded_Plastic_Ladies_Chest_Guard_FM-196_c-1.JPG', 0.0000, '2009-05-19 01:26:11', NULL, NULL, 0.00, 1, 0, 0, 0),
(175, 0, '', 'TN_Molded_Plastic_Protector_FM-196_a-1.JPG', 0.0000, '2009-05-19 01:26:31', NULL, NULL, 0.00, 1, 0, 0, 0),
(176, 0, '', 'TN_Chest_Guard_FM-831.JPG', 0.0000, '2009-05-19 01:27:10', NULL, NULL, 0.00, 1, 0, 0, 0),
(177, 0, '', 'TN_Chest_guard_VK_Style_Copy_Adidas_FM-831_a-11 copy.JPG', 0.0000, '2009-05-19 01:27:29', NULL, NULL, 0.00, 1, 0, 0, 0),
(178, 0, '', 'TN_Men_Chest_Guard_FM-831_a-1.JPG', 0.0000, '2009-05-19 01:27:49', NULL, NULL, 0.00, 1, 0, 0, 0),
(179, 0, '', 'TN_Ankle_Pad_FM-178.JPG', 0.0000, '2009-05-19 01:28:39', NULL, NULL, 0.00, 1, 0, 0, 0),
(180, 0, '', 'TN_Anklets_FM-179_a-1.JPG', 0.0000, '2009-05-19 01:28:56', NULL, NULL, 0.00, 1, 0, 0, 0),
(181, 0, '', 'TN_Arm_Pad_FM-171.JPG', 0.0000, '2009-05-19 01:29:14', NULL, NULL, 0.00, 1, 0, 0, 0),
(182, 0, '', 'TN_Arm_Pad_with_Elbow_&_Hand_Protector_FM-172_a-2.JPG', 0.0000, '2009-05-19 01:29:38', NULL, NULL, 0.00, 1, 0, 0, 0),
(183, 0, '', 'TN_Arm_Pad_with_Hand_Protection_FM-172.JPG', 0.0000, '2009-05-19 01:30:46', NULL, NULL, 0.00, 1, 0, 0, 0),
(184, 0, '', 'TN_Elbow_Pad_FM-175.JPG', 0.0000, '2009-05-19 01:31:12', NULL, NULL, 0.00, 1, 0, 0, 0),
(185, 0, '', 'TN_Elbow_Protectors _FM-175_a-12.JPG', 0.0000, '2009-05-19 01:31:37', NULL, NULL, 0.00, 1, 0, 0, 0),
(186, 0, '', 'TN_Forearm Pad FM-173.JPG', 0.0000, '2009-05-19 01:32:13', NULL, NULL, 0.00, 1, 0, 0, 0),
(187, 0, '', 'TN_Ladies_Abdominal_Guard_FM-184.JPG', 0.0000, '2009-05-19 01:33:38', NULL, NULL, 0.00, 1, 0, 0, 0),
(188, 0, '', 'TN_Ladies_Groinl_Guard_FM-184_a-2.JPG', 0.0000, '2009-05-19 01:34:20', NULL, NULL, 0.00, 1, 0, 0, 0),
(189, 0, '', 'TN_Ladies_Groinl_Guard_FM-184_a-4.JPG', 0.0000, '2009-05-19 01:34:51', NULL, NULL, 0.00, 1, 0, 0, 0),
(190, 0, '', 'TN_Groin_Guard_FM-196_b-2.JPG', 0.0000, '2009-05-19 01:35:35', NULL, NULL, 0.00, 1, 0, 0, 0),
(191, 0, '', 'TN_Groin_Guard_FM-865.JPG', 0.0000, '2009-05-19 01:35:57', NULL, NULL, 0.00, 1, 0, 0, 0),
(192, 0, '', 'TN_Groin_Guard_FM-866.JPG', 0.0000, '2009-05-19 01:36:23', NULL, NULL, 0.00, 1, 0, 0, 0),
(193, 0, '', 'TN_Groin_Guard_VK_Style_FM-185_a-1.JPG', 0.0000, '2009-05-19 01:36:51', NULL, NULL, 0.00, 1, 0, 0, 0),
(194, 0, '', 'TN_Mens_Abdominal_Guard_FM-185.JPG', 0.0000, '2009-05-19 01:37:19', NULL, NULL, 0.00, 1, 0, 0, 0),
(195, 0, '', 'TN_Mens_Abdominal_Guard_FM-186.JPG', 0.0000, '2009-05-19 01:37:51', NULL, NULL, 0.00, 1, 0, 0, 0),
(196, 0, '', 'TN_Mens_Groing_Guard_Black_FM-185_a-2.JPG', 0.0000, '2009-05-19 01:39:13', NULL, NULL, 0.00, 1, 0, 0, 0),
(197, 0, '', 'TN_Mens_Groing_Guard_Red_Leather_FM-185_a-22.JPG', 0.0000, '2009-05-19 01:40:07', NULL, NULL, 0.00, 1, 0, 0, 0),
(198, 0, '', 'TN_Club_Head_guard_FM-945.JPG', 0.0000, '2009-05-19 01:41:01', NULL, NULL, 0.00, 1, 0, 0, 0),
(199, 0, '', 'TN_Club_or_Training_Head_Guard_FM-946_b-1 copy.JPG', 0.0000, '2009-05-19 01:42:48', NULL, NULL, 0.00, 1, 0, 0, 0),
(200, 0, '', 'TN_Competition_Head_Guard_with_Grill_FM-948_c-1.JPG', 0.0000, '2009-05-19 01:43:19', NULL, NULL, 0.00, 1, 0, 0, 0),
(201, 0, '', 'TN_Competition_Head_Guard_with_Unbreakable_Face_Saver_FM-948_b-1', 0.0000, '2009-05-19 01:43:43', NULL, NULL, 0.00, 1, 0, 0, 0),
(202, 0, '', 'TN_Contest_Head_Guard_FM-946.JPG', 0.0000, '2009-05-19 01:44:05', NULL, NULL, 0.00, 1, 0, 0, 0),
(203, 0, '', 'TN_Face_Savers_for_Head_guards_FM-197_a_b_c_c.JPG', 0.0000, '2009-05-19 01:44:31', NULL, NULL, 0.00, 1, 0, 0, 0),
(204, 0, '', 'TN_Head_guard_Competition_FM-945_a-1.JPG', 0.0000, '2009-05-19 01:44:54', NULL, NULL, 0.00, 1, 0, 0, 0),
(205, 0, '', 'TN_Head_Guard_FM-181.JPG', 0.0000, '2009-05-19 01:45:18', NULL, NULL, 0.00, 1, 0, 0, 0),
(206, 0, '', 'TN_D_Box_for_Mouthguards_FM-7006_b-1.JPG', 0.0000, '2009-05-19 01:45:59', NULL, NULL, 0.00, 1, 0, 0, 0),
(207, 0, '', 'TN_Mouth_Guard_Gum_Shield_Double_Side_FM-886_a-1.JPG', 0.0000, '2009-05-19 01:46:18', NULL, NULL, 0.00, 1, 0, 0, 0),
(208, 0, '', 'TN_Mouth_Guard_Gum_Shield_Single_Junior_FM-885_b-1.JPG', 0.0000, '2009-05-19 01:46:37', NULL, NULL, 0.00, 1, 0, 0, 0),
(209, 0, '', 'TN_Mouth_Guard_Gum_Shield_Single_Senior_FM-885_a-1.JPG', 0.0000, '2009-05-19 01:47:00', NULL, NULL, 0.00, 1, 0, 0, 0),
(210, 0, '', 'TN_Round_Box_for_Mouthguards_FM-7006_a-1.JPG', 0.0000, '2009-05-19 01:47:25', NULL, NULL, 0.00, 1, 0, 0, 0),
(211, 0, '', 'TN_Shin_Guard_Twins_Style_FM-156_s-22.JPG', 0.0000, '2009-05-19 01:47:59', NULL, NULL, 0.00, 1, 0, 0, 0),
(212, 0, '', 'TN_Shin_Guards_FM-158.JPG', 0.0000, '2009-05-19 01:48:19', NULL, NULL, 0.00, 1, 0, 0, 0),
(213, 0, '', 'TN_Shin_in_Step_Booster_Style_FM-156_b-1.JPG', 0.0000, '2009-05-19 01:48:41', NULL, NULL, 0.00, 1, 0, 0, 0),
(214, 0, '', 'TN_Shin_in_Step_for_Ladies_FM-156_d-1.JPG', 0.0000, '2009-05-19 01:49:04', NULL, NULL, 0.00, 1, 0, 0, 0),
(215, 0, '', 'TN_Shin_in_Step_King_Style_FM-156_a-1.JPG', 0.0000, '2009-05-19 01:49:28', NULL, NULL, 0.00, 1, 0, 0, 0),
(216, 0, '', 'TN_Shin_Instep_Black_with_Fire_Twins_Style_FM-156_s-62.JPG', 0.0000, '2009-05-19 01:49:56', NULL, NULL, 0.00, 1, 0, 0, 0),
(217, 0, '', 'TN_Shin_Instep_Black_with_Tattoo_Twins_Style_FM-156_s-2.JPG', 0.0000, '2009-05-19 01:50:15', NULL, NULL, 0.00, 1, 0, 0, 0),
(218, 0, '', 'TN_Shin_Instep_FM-157_b-1.JPG', 0.0000, '2009-05-19 01:50:34', NULL, NULL, 0.00, 1, 0, 0, 0),
(219, 0, '', 'TN_Taekwondo_Foot_Protector_FM-122_t-1.JPG', 0.0000, '2009-05-19 01:51:18', NULL, NULL, 0.00, 1, 0, 0, 0),
(220, 0, '', 'TN_Boxing_Shoes_FM-522_a-1.JPG', 0.0000, '2009-05-19 02:10:05', NULL, NULL, 0.00, 1, 0, 0, 0),
(221, 0, '', 'TN_Boxing_Shoes_Full_Suede_Leather_FM-522_a-11.JPG', 0.0000, '2009-05-19 02:10:23', NULL, NULL, 0.00, 1, 0, 0, 0),
(222, 0, '', 'TN_Boxing_Shoes_Mesh_FM-522_b-1.JPG', 0.0000, '2009-05-19 02:10:49', NULL, NULL, 0.00, 1, 0, 0, 0),
(223, 0, '', 'TN_Gym_or_Dancing_Shoes_FM-524_a-1.JPG', 0.0000, '2009-05-19 02:11:32', NULL, NULL, 0.00, 1, 0, 0, 0),
(224, 0, '', 'TN_Kungfu_Shoes_FM-440.JPG', 0.0000, '2009-05-19 02:12:32', NULL, NULL, 0.00, 1, 0, 0, 0),
(225, 0, '', 'TN_Semi_contact_Karate_Shin_in_Step_FM-151.JPG', 0.0000, '2009-05-19 02:13:17', NULL, NULL, 0.00, 1, 0, 0, 0),
(226, 0, '', 'TN_Semi_contact_Karate_Shoes_FM-121.JPG', 0.0000, '2009-05-19 02:13:46', NULL, NULL, 0.00, 1, 0, 0, 0),
(227, 0, '', 'TN_Semi_contact_Karate_Shoes_FM-122.JPG', 0.0000, '2009-05-19 02:14:30', NULL, NULL, 0.00, 1, 0, 0, 0),
(228, 0, '', 'TN_Semi_Contact_Shoes_FM-122_a-1.JPG', 0.0000, '2009-05-19 02:14:56', NULL, NULL, 0.00, 1, 0, 0, 0),
(229, 0, '', 'TN_Indoor_Tabi_Shoes_White_FM-442_b-1.JPG', 0.0000, '2009-05-19 02:15:56', NULL, NULL, 0.00, 1, 0, 0, 0),
(230, 0, '', 'TN_Tabi_Indoor_Shoes_FM-442_a-1.JPG', 0.0000, '2009-05-19 02:16:19', NULL, NULL, 0.00, 1, 0, 0, 0),
(231, 0, '', 'TN_Taekwondo_Shoes_FM-521.JPG', 0.0000, '2009-05-19 02:17:01', NULL, NULL, 0.00, 1, 0, 0, 0),
(232, 0, '', 'TN_Taekwondo_Shoes_FM-521_a-11.JPG', 0.0000, '2009-05-19 02:17:22', NULL, NULL, 0.00, 1, 0, 0, 0),
(233, 0, '', 'TN_Taekwondo_Shoes_FM-521_a-21.JPG', 0.0000, '2009-05-19 02:17:45', NULL, NULL, 0.00, 1, 0, 0, 0),
(234, 0, '', 'TN_Taekwondo_Shoes_Leather_FM-521_a-1.JPG', 0.0000, '2009-05-19 02:18:06', NULL, NULL, 0.00, 1, 0, 0, 0),
(235, 0, '', 'TN_Taekwondo_Racket_Double_Focus_Target_FM-141.JPG', 0.0000, '2009-05-19 02:27:47', NULL, NULL, 0.00, 1, 0, 0, 0),
(236, 0, '', 'TN_Taekwondo_Racket_Floppy_Mitt_Double_Focus_Target_FM-141_a-1.J', 0.0000, '2009-05-19 02:28:11', NULL, NULL, 0.00, 1, 0, 0, 0),
(237, 0, '', 'TN_Taekwondo_Racket_Single_Focus_Target_Blue_FM-140.JPG', 0.0000, '2009-05-19 02:28:36', NULL, NULL, 0.00, 1, 0, 0, 0),
(238, 0, '', 'TN_Taekwondo_Racket_with_Grip_Double_Focus_Target_FM-141_b-1.JPG', 0.0000, '2009-05-19 02:28:59', NULL, NULL, 0.00, 1, 0, 0, 0),
(239, 0, '', 'TN_Focus Pad with Curve.JPG', 0.0000, '2009-05-19 02:29:46', NULL, NULL, 0.00, 1, 0, 0, 0),
(240, 0, '', 'TN_Focus_Mitt_Black_FM-821.JPG', 0.0000, '2009-05-19 02:30:10', NULL, NULL, 0.00, 1, 0, 0, 0),
(241, 0, '', 'TN_Focus_Mitt_Black_FM-822.JPG', 0.0000, '2009-05-19 02:30:34', NULL, NULL, 0.00, 1, 0, 0, 0),
(242, 0, '', 'TN_Focus_Mitt_Black_FM-823.JPG', 0.0000, '2009-05-19 02:30:54', NULL, NULL, 0.00, 1, 0, 0, 0),
(243, 0, '', 'TN_Focus_Pad_FM-824.JPG', 0.0000, '2009-05-19 02:31:26', NULL, NULL, 0.00, 1, 0, 0, 0),
(244, 0, '', 'TN_Focus_Pad_Long_Shape_Straight_FM-824_a-2.JPG', 0.0000, '2009-05-19 02:31:56', NULL, NULL, 0.00, 1, 0, 0, 0),
(245, 0, '', 'TN_Focus_Pad_VK_Style_FM-824_a-1.JPG', 0.0000, '2009-05-19 02:32:32', NULL, NULL, 0.00, 1, 0, 0, 0),
(246, 0, '', 'TN_Focus_Pad_with_Wrist_Cut_FM-824_a-22.JPG', 0.0000, '2009-05-19 02:33:24', NULL, NULL, 0.00, 1, 0, 0, 0),
(247, 0, '', 'TN_Medicine_Ball_FM-966_a-1.JPG', 0.0000, '2009-05-19 02:34:15', NULL, NULL, 0.00, 1, 0, 0, 0),
(248, 0, '', 'TN_Boxing_Punching_Bag_FM-861.JPG', 0.0000, '2009-05-19 02:35:03', NULL, NULL, 0.00, 1, 0, 0, 0),
(249, 0, '', 'TN_Punching_Bag_Body_Shape_FM-861_a-1.JPG', 0.0000, '2009-05-19 02:35:31', NULL, NULL, 0.00, 1, 0, 0, 0),
(250, 0, '', 'TN_Punching_Bag_Bottle_Shape_FM-861_b-1.JPG', 0.0000, '2009-05-19 02:35:57', NULL, NULL, 0.00, 1, 0, 0, 0),
(251, 0, '', 'TN_Punching_Bags_Tear_Drob_Style_FM-861_b-62.JPG', 0.0000, '2009-05-19 02:36:23', NULL, NULL, 0.00, 1, 0, 0, 0),
(252, 0, '', 'TN_Skipping_Rope_for_Kids_Full_PVC_FM-920_d-11.JPG', 0.0000, '2009-05-19 02:37:15', NULL, NULL, 0.00, 1, 0, 0, 0),
(253, 0, '', 'TN_Skipping_Rope_Full_PVC_Light_Weight_FM-920_d-21.JPG', 0.0000, '2009-05-19 02:37:47', NULL, NULL, 0.00, 1, 0, 0, 0),
(254, 0, '', 'TN_Skipping_Rope_Full_PVC_Light_Weight_FM-920_d-31.JPG', 0.0000, '2009-05-19 02:38:16', NULL, NULL, 0.00, 1, 0, 0, 0),
(255, 0, '', 'TN_Skipping_Rope_in_Steel_Heavy_Duty_FM-920_b-1.JPG', 0.0000, '2009-05-19 02:38:48', NULL, NULL, 0.00, 1, 0, 0, 0),
(256, 0, '', 'TN_Skipping_Rope_Leather_Heavy_Weight_FM-920.JPG', 0.0000, '2009-05-19 02:39:13', NULL, NULL, 0.00, 1, 0, 0, 0),
(257, 0, '', 'TN_Skipping_Rope_Leather_Light_Weight_FM-920_a-1.JPG', 0.0000, '2009-05-19 02:39:47', NULL, NULL, 0.00, 1, 0, 0, 0),
(258, 0, '', 'TN_Skipping_Rope_PVC_Heavy_Weight_Wooden_Handel_FM-920_c-6.JPG', 0.0000, '2009-05-19 02:40:18', NULL, NULL, 0.00, 1, 0, 0, 0),
(259, 0, '', 'TN_D-Ball_FM-851_d-1.JPG', 0.0000, '2009-05-19 02:41:00', NULL, NULL, 0.00, 1, 0, 0, 0),
(260, 0, '', 'TN_Double_End_Speed_Ball_FM-851_b-1.JPG', 0.0000, '2009-05-19 02:41:26', NULL, NULL, 0.00, 1, 0, 0, 0),
(261, 0, '', 'TN_Elastic_Rope_for_D-Ball_FM-955_a-1.JPG', 0.0000, '2009-05-19 02:42:00', NULL, NULL, 0.00, 1, 0, 0, 0),
(262, 0, '', 'TN_Fitting_Rubber_FM-955.JPG', 0.0000, '2009-05-19 02:42:32', NULL, NULL, 0.00, 1, 0, 0, 0),
(263, 0, '', 'TN_Floor_to_ceiling_Ball_FM-851_c-1.JPG', 0.0000, '2009-05-19 02:43:34', NULL, NULL, 0.00, 1, 0, 0, 0),
(264, 0, '', 'TN_Floor_to_Ceiling_Punching_Ball_FM-841.JPG', 0.0000, '2009-05-19 02:44:13', NULL, NULL, 0.00, 1, 0, 0, 0),
(265, 0, '', 'TN_Speed_Ball_Brown_FM-851.JPG', 0.0000, '2009-05-19 02:44:48', NULL, NULL, 0.00, 1, 0, 0, 0),
(266, 0, '', 'TN_Speedball_VK_Style_FM-851_a-1.JPG', 0.0000, '2009-05-19 02:45:16', NULL, NULL, 0.00, 1, 0, 0, 0),
(267, 0, '', 'TN_Round_Strike_Shield_FM-828.JPG', 0.0000, '2009-05-19 02:46:14', NULL, NULL, 0.00, 1, 0, 0, 0),
(268, 0, '', 'TN_Straight_&_Curved_Strike_Sheilds_FM-827.JPG', 0.0000, '2009-05-19 02:46:53', NULL, NULL, 0.00, 1, 0, 0, 0),
(269, 0, '', 'TN_Strike_Shield_Camouflage_Style_FM-827_c-1.JPG', 0.0000, '2009-05-19 02:47:15', NULL, NULL, 0.00, 1, 0, 0, 0),
(270, 0, '', 'TN_Strike_Shield_FM-827_a-1.JPG', 0.0000, '2009-05-19 02:47:44', NULL, NULL, 0.00, 1, 0, 0, 0),
(271, 0, '', 'TN_Thai_Pad_Extra_Thick_FM-826_a-4.JPG', 0.0000, '2009-05-19 02:48:15', NULL, NULL, 0.00, 1, 0, 0, 0),
(272, 0, '', 'TN_Thai_Pad_FM-825.JPG', 0.0000, '2009-05-19 02:49:33', NULL, NULL, 0.00, 1, 0, 0, 0),
(273, 0, '', 'TN_Thai_Pad_FM-826.JPG', 0.0000, '2009-05-19 02:49:56', NULL, NULL, 0.00, 1, 0, 0, 0),
(274, 0, '', 'TN_Thai_Pad_FM-826_a-1.JPG', 0.0000, '2009-05-19 02:50:23', NULL, NULL, 0.00, 1, 0, 0, 0),
(275, 0, '', 'TN_Tackle_Bag_FM-861_t-1.JPG', 0.0000, '2009-05-19 02:56:34', NULL, NULL, 0.00, 1, 0, 0, 0),
(276, 0, '', '_Hardwood_Tai_Chi_Sword_XL338_576.jpg', 0.0000, '2009-05-19 02:58:59', NULL, NULL, 0.00, 1, 0, 0, 0),
(277, -10, '', 'Practice_Swords_China_Wooden_Practi_RK728_2958.jpg', 0.0000, '2009-05-19 02:59:27', NULL, NULL, 0.00, 1, 0, 0, 10),
(278, 0, '', 'TN_Speedball_Bladder_FM-952.JPG', 0.0000, '2009-05-19 03:21:03', NULL, NULL, 0.00, 1, 0, 0, 0),
(279, 0, '', 'TN_Punching_Bag_Steel_Chain_FM-951.JPG', 0.0000, '2009-05-19 03:21:49', NULL, NULL, 0.00, 1, 0, 0, 0),
(280, 0, '', 'TN_Embroiled_Patches_club_logos_FM-1221_a-1.JPG', 0.0000, '2009-05-19 03:25:03', NULL, NULL, 0.00, 1, 0, 0, 0),
(281, 0, '', 'TN_Embroiled_Patches_club_logos_FM-1221_a-6.JPG', 0.0000, '2009-05-19 03:25:23', NULL, NULL, 0.00, 1, 0, 0, 0),
(282, 0, '', 'TN_Embroiled_Patches_club_logos_FM-1221_a-11.JPG', 0.0000, '2009-05-19 03:25:42', NULL, NULL, 0.00, 1, 0, 0, 0),
(283, 0, '', 'TN_Embroiled_Patches_club_logos_FM-1221_a-1.JPG', 0.0000, '2009-05-19 03:28:14', NULL, NULL, 0.00, 1, 0, 0, 0),
(284, 0, '', 'TN_Boxing_Gloves_Hanging_FM-901_h-21.JPG', 0.0000, '2009-05-19 04:41:22', NULL, NULL, 0.00, 1, 0, 0, 0),
(285, 0, '', 'TN_Head_Band_Kung_Fu_Yin_Yang_FM-4104_a-12.JPG', 0.0000, '2009-05-19 04:41:42', NULL, NULL, 0.00, 1, 0, 0, 0),
(286, 0, '', 'TN_Head_Band_Rising_Sun_FM-4104_a-21.JPG', 0.0000, '2009-05-19 04:42:00', NULL, NULL, 0.00, 1, 0, 0, 0),
(287, 0, '', 'TN_Head_Band_Rising_Sun_FM-4104_a-22.JPG', 0.0000, '2009-05-19 04:42:26', NULL, NULL, 0.00, 1, 0, 0, 0),
(288, 0, '', 'TN_Head_Band_Rising_Sun_with_Writing_FM-4104_a-19.JPG', 0.0000, '2009-05-19 04:42:45', NULL, NULL, 0.00, 1, 0, 0, 0),
(289, 0, '', 'TN_Head_Band_Samurai_Rising_Sun_FM-4104_a-17.JPG', 0.0000, '2009-05-19 04:43:06', NULL, NULL, 0.00, 1, 0, 0, 0),
(290, 0, '', 'TN_Head_Band_Yin_Yang_FM-4104_a-16.JPG', 0.0000, '2009-05-19 04:43:32', NULL, NULL, 0.00, 1, 0, 0, 0),
(291, 0, '', 'TN_Headband_Aikido_FM-4102_a-32.JPG', 0.0000, '2009-05-19 04:43:53', NULL, NULL, 0.00, 1, 0, 0, 0),
(292, 0, '', 'TN_Boxing_Gloves_Hanging_Camo_Style_FM-901_h-21.JPG', 0.0000, '2009-05-19 04:48:22', NULL, NULL, 0.00, 1, 0, 0, 0),
(293, 0, '', 'TN_Boxing_Gloves_Hanging_Camo_Style_FM-901_h-22.JPG', 0.0000, '2009-05-19 04:48:42', NULL, NULL, 0.00, 1, 0, 0, 0),
(294, 0, '', 'TN_Boxing_Gloves_Hanging_Pink_Plain_FM-901_h-1.JPG', 0.0000, '2009-05-19 04:48:59', NULL, NULL, 0.00, 1, 0, 0, 0),
(295, 0, '', 'TN_Boxing_Gloves_Hanging_Tiger_Style_FM-901_h-42.JPG', 0.0000, '2009-05-19 04:49:19', NULL, NULL, 0.00, 1, 0, 0, 0),
(296, 0, '', 'TN_Boxing_Gloves_Hanging_Zebra_Style_FM-901_h-41.JPG', 0.0000, '2009-05-19 04:49:38', NULL, NULL, 0.00, 1, 0, 0, 0),
(297, 0, '', 'TN_Camouflage_Grappling_Gloves_FM-905_a-11.JPG', 0.0000, '2009-05-19 04:50:31', NULL, NULL, 0.00, 1, 0, 0, 0),
(298, 0, '', 'TN_Camouflage_Grappling_Gloves_FM-905_a-12.JPG', 0.0000, '2009-05-19 04:50:59', NULL, NULL, 0.00, 1, 0, 0, 0),
(299, 0, '', 'TN_Judo_Hanging_FM-903 c-1.JPG', 0.0000, '2009-05-19 04:51:31', NULL, NULL, 0.00, 1, 0, 0, 0),
(300, 0, '', 'TN_Karate_Hanging_FM-903_b-1.JPG', 0.0000, '2009-05-19 04:52:07', NULL, NULL, 0.00, 1, 0, 0, 0),
(301, 0, '', 'TN_Karate_Hanging_FM-903_b-1.JPG', 0.0000, '2009-05-19 04:52:37', NULL, NULL, 0.00, 1, 0, 0, 0),
(302, 0, '', 'TN_Club_Logo_Keychain_in_Metal_FM-1102_a-1.JPG', 0.0000, '2009-05-19 04:53:33', NULL, NULL, 0.00, 1, 0, 0, 0),
(303, 0, '', 'TN_Judo_Jacket_Keychain_in_Metal_FM-1101_a-1.JPG', 0.0000, '2009-05-19 04:53:54', NULL, NULL, 0.00, 1, 0, 0, 0),
(304, 0, '', 'TN_Kyokushin_in_Necklace_FM-1111_c-1.JPG', 0.0000, '2009-05-19 04:54:12', NULL, NULL, 0.00, 1, 0, 0, 0),
(305, 0, '', 'TN_Kyokushin_Keychain_in_Metal_with_Grains_FM-1111_b-1.JPG', 0.0000, '2009-05-19 04:54:31', NULL, NULL, 0.00, 1, 0, 0, 0),
(306, 0, '', 'TN_Kyokushin_Keychain_in_Metal_without_Grains_FM-1111_b-2.JPG', 0.0000, '2009-05-19 04:55:03', NULL, NULL, 0.00, 1, 0, 0, 0),
(307, 0, '', 'TN_Kyokushin_Words_Keychain_FM-1111_a-1.JPG', 0.0000, '2009-05-19 04:55:26', NULL, NULL, 0.00, 1, 0, 0, 0),
(308, 0, '', 'TN_Kyokushin_Pin_Badge_FM-1111_d-1.JPG', 0.0000, '2009-05-19 04:55:56', NULL, NULL, 0.00, 1, 0, 0, 0),
(309, 0, '', 'TN_Wooden_Logo_Keychain_FM-1121_a-1.JPG', 0.0000, '2009-05-19 04:56:30', NULL, NULL, 0.00, 1, 0, 0, 0),
(310, 0, '', 'TN_Wooden_Name_or_Slogon_Keychain_FM-1121_b-1.JPG', 0.0000, '2009-05-19 04:56:50', NULL, NULL, 0.00, 1, 0, 0, 0),
(311, 0, '', 'TN_Wooden_Nunchaku_Keychain_FM-1131_b-1.JPG', 0.0000, '2009-05-19 04:57:14', NULL, NULL, 0.00, 1, 0, 0, 0),
(312, 0, '', 'TN_Wooden_Sword_Keychain_FM-1131_a-1.JPG', 0.0000, '2009-05-19 04:57:44', NULL, NULL, 0.00, 1, 0, 0, 0),
(313, 0, '', 'TN_Wooden_Sword_Keychain_FM-1131_a-2.JPG', 0.0000, '2009-05-19 04:58:11', NULL, NULL, 0.00, 1, 0, 0, 0),
(314, 0, '', 'TN_Logos and Signs FM-1201-a1copy.JPG', 0.0000, '2009-05-19 04:58:54', NULL, NULL, 0.00, 1, 0, 0, 0),
(315, 0, '', 'TN_Logos and Signs FM-1201-a2copy.JPG', 0.0000, '2009-05-19 04:59:16', NULL, NULL, 0.00, 1, 0, 0, 0),
(316, 0, '', 'TN_Prize Belt FM-1321 -a1copy.JPG', 0.0000, '2009-05-19 04:59:38', NULL, NULL, 0.00, 1, 0, 0, 0),
(317, 0, '', 'TN_Sports_Kit_Bag_Blue_FM-145_a-1.JPG', 0.0000, '2009-05-19 05:00:25', NULL, NULL, 0.00, 1, 0, 0, 0),
(318, 0, '', 'TN_Sports_Kit_Bag_Camouflage_Style_FM-145_c-1.JPG', 0.0000, '2009-05-19 05:01:03', NULL, NULL, 0.00, 1, 0, 0, 0),
(319, 0, '', 'TN_Sports_Kit_Bag_FM-145_a-2.JPG', 0.0000, '2009-05-19 05:01:23', NULL, NULL, 0.00, 1, 0, 0, 0),
(320, 0, '', 'TN_Sports_Kit_Bag_Red_FM-145.JPG', 0.0000, '2009-05-19 05:01:40', NULL, NULL, 0.00, 1, 0, 0, 0),
(321, 0, '', 'TN_Ceiling_Hook_for_Speedball_and_Punching_Bag_with_Bearing_FM-9', 0.0000, '2009-05-19 05:02:10', NULL, NULL, 0.00, 1, 0, 0, 0),
(322, 0, '', 'TN_Ceiling_Hook_for_Speedball_and_Punching_Bag_without_Bearing_F', 0.0000, '2009-05-19 05:02:28', NULL, NULL, 0.00, 1, 0, 0, 0),
(323, 0, '', 'TN_Punching bag & Speedball Stand FM-954-c1copy.JPG', 0.0000, '2009-05-19 05:02:48', NULL, NULL, 0.00, 1, 0, 0, 0),
(324, 0, '', 'TN_Stainless_Steel_Swell_FM-953.JPG', 0.0000, '2009-05-19 05:03:14', NULL, NULL, 0.00, 1, 0, 0, 0),
(325, 0, '', 'TN_Swivel_for_Speedball_with_Bearing_FM-954.JPG', 0.0000, '2009-05-19 05:03:33', NULL, NULL, 0.00, 1, 0, 0, 0),
(326, -1, '', 'TN_Swivel_for_Speedball_without_Bearing_FM-954-a1.JPG', 0.0000, '2009-05-19 05:03:56', NULL, NULL, 0.00, 1, 0, 0, 1),
(327, 0, '', 'TN_Universal_Swivel_spare_Hook_FM-954_a-22.JPG', 0.0000, '2009-05-19 05:04:33', NULL, NULL, 0.00, 1, 0, 0, 0);

-- --------------------------------------------------------

--
-- Table structure for table `products_attributes`
--

CREATE TABLE IF NOT EXISTS `products_attributes` (
  `products_attributes_id` int(11) NOT NULL AUTO_INCREMENT,
  `products_id` int(11) NOT NULL,
  `options_id` int(11) NOT NULL,
  `options_values_id` int(11) NOT NULL,
  `options_values_price` decimal(15,4) NOT NULL,
  `price_prefix` char(1) NOT NULL,
  PRIMARY KEY (`products_attributes_id`),
  KEY `idx_products_attributes_products_id` (`products_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `products_attributes`
--


-- --------------------------------------------------------

--
-- Table structure for table `products_attributes_download`
--

CREATE TABLE IF NOT EXISTS `products_attributes_download` (
  `products_attributes_id` int(11) NOT NULL,
  `products_attributes_filename` varchar(255) NOT NULL DEFAULT '',
  `products_attributes_maxdays` int(2) DEFAULT '0',
  `products_attributes_maxcount` int(2) DEFAULT '0',
  PRIMARY KEY (`products_attributes_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `products_attributes_download`
--

INSERT INTO `products_attributes_download` (`products_attributes_id`, `products_attributes_filename`, `products_attributes_maxdays`, `products_attributes_maxcount`) VALUES
(26, 'unreal.zip', 7, 3);

-- --------------------------------------------------------

--
-- Table structure for table `products_description`
--

CREATE TABLE IF NOT EXISTS `products_description` (
  `products_id` int(11) NOT NULL AUTO_INCREMENT,
  `language_id` int(11) NOT NULL DEFAULT '1',
  `products_name` varchar(64) NOT NULL DEFAULT '',
  `products_description` text,
  `products_url` varchar(255) DEFAULT NULL,
  `products_viewed` int(5) DEFAULT '0',
  `products_short_des` text,
  PRIMARY KEY (`products_id`,`language_id`),
  KEY `products_name` (`products_name`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=328 ;

--
-- Dumping data for table `products_description`
--

INSERT INTO `products_description` (`products_id`, `language_id`, `products_name`, `products_description`, `products_url`, `products_viewed`, `products_short_des`) VALUES
(1, 1, 'Beanie', '', '', 4, ''),
(1, 2, '', '', '', 0, ''),
(1, 3, '', '', '', 0, ''),
(2, 1, 'Belts', '', '', 3, ''),
(2, 2, '', '', '', 0, ''),
(2, 3, '', '', '', 0, ''),
(3, 1, 'Belts', '', '', 3, ''),
(3, 2, '', '', '', 0, ''),
(3, 3, '', '', '', 0, ''),
(4, 1, 'Belts', '', '', 3, ''),
(4, 2, '', '', '', 0, ''),
(4, 3, '', '', '', 0, ''),
(5, 1, 'Belts', '', '', 26, ''),
(5, 2, '', '', '', 0, ''),
(5, 3, '', '', '', 0, ''),
(6, 1, 'Belts', '', '', 3, ''),
(6, 2, '', '', '', 0, ''),
(6, 3, '', '', '', 0, ''),
(7, 1, 'Belts', '', '', 3, ''),
(7, 2, '', '', '', 0, ''),
(7, 3, '', '', '', 0, ''),
(8, 1, 'Boxing Gown', '', '', 26, ''),
(8, 2, '', '', '', 0, ''),
(8, 3, '', '', '', 0, ''),
(9, 1, 'Boxing Gown', '', '', 3, ''),
(9, 2, '', '', '', 0, ''),
(9, 3, '', '', '', 0, ''),
(10, 1, 'Boxing Gown', '', '', 3, ''),
(10, 2, '', '', '', 0, ''),
(10, 3, '', '', '', 0, ''),
(11, 1, 'Boxing Gown', '', '', 3, ''),
(11, 2, '', '', '', 0, ''),
(11, 3, '', '', '', 0, ''),
(12, 1, 'Boxing Gown', '', '', 3, ''),
(12, 2, '', '', '', 0, ''),
(12, 3, '', '', '', 0, ''),
(13, 1, 'Boxing Gown', '', '', 3, ''),
(13, 2, '', '', '', 0, ''),
(13, 3, '', '', '', 0, ''),
(14, 1, 'Boxing Gown', '', '', 3, ''),
(14, 2, '', '', '', 0, ''),
(14, 3, '', '', '', 0, ''),
(15, 1, 'Boxing Shorts', '', '', 24, ''),
(15, 2, '', '', '', 0, ''),
(15, 3, '', '', '', 0, ''),
(16, 1, 'Boxing Shorts', '', '', 3, ''),
(16, 2, '', '', '', 0, ''),
(16, 3, '', '', '', 0, ''),
(17, 1, 'Boxing Shorts', '', '', 4, ''),
(17, 2, '', '', '', 0, ''),
(17, 3, '', '', '', 0, ''),
(18, 1, 'Boxing Shorts', '', '', 3, ''),
(18, 2, '', '', '', 0, ''),
(18, 3, '', '', '', 0, ''),
(19, 1, 'MMA Shorts', '', '', 3, ''),
(19, 2, '', '', '', 0, ''),
(19, 3, '', '', '', 0, ''),
(20, 1, 'MMA Shorts', '', '', 3, ''),
(20, 2, '', '', '', 0, ''),
(20, 3, '', '', '', 0, ''),
(21, 1, 'MMA Shorts', '', '', 3, ''),
(21, 2, '', '', '', 0, ''),
(21, 3, '', '', '', 0, ''),
(22, 1, 'MMA Shorts', '', '', 3, ''),
(22, 2, '', '', '', 0, ''),
(22, 3, '', '', '', 0, ''),
(23, 1, 'MMA Shorts', '', '', 3, ''),
(23, 2, '', '', '', 0, ''),
(23, 3, '', '', '', 0, ''),
(24, 1, 'MMA Shorts', '', '', 28, ''),
(24, 2, '', '', '', 0, ''),
(24, 3, '', '', '', 0, ''),
(25, 1, 'MMA Shorts', '', '', 3, ''),
(25, 2, '', '', '', 0, ''),
(25, 3, '', '', '', 0, ''),
(26, 1, 'MMA Shorts', '', '', 3, ''),
(26, 2, '', '', '', 0, ''),
(26, 3, '', '', '', 0, ''),
(27, 1, 'Thai Shorts', '', '', 3, ''),
(27, 2, '', '', '', 0, ''),
(27, 3, '', '', '', 0, ''),
(28, 1, 'Thai Shorts', '', '', 3, ''),
(28, 2, '', '', '', 0, ''),
(28, 3, '', '', '', 0, ''),
(29, 1, 'Thai Shorts', '', '', 3, ''),
(29, 2, '', '', '', 0, ''),
(29, 3, '', '', '', 0, ''),
(30, 1, 'Thai Shorts', '', '', 3, ''),
(30, 2, '', '', '', 0, ''),
(30, 3, '', '', '', 0, ''),
(31, 1, 'Thai Shorts', '', '', 3, ''),
(31, 2, '', '', '', 0, ''),
(31, 3, '', '', '', 0, ''),
(32, 1, 'Thai Shorts', '', '', 8, ''),
(32, 2, '', '', '', 0, ''),
(32, 3, '', '', '', 0, ''),
(33, 1, '', '', '', 6, ''),
(33, 2, '', '', '', 0, ''),
(33, 3, '', '', '', 0, ''),
(34, 1, 'Thai Shorts', '', '', 6, ''),
(34, 2, '', '', '', 0, ''),
(34, 3, '', '', '', 0, ''),
(35, 1, 'Ju Jitsu Suite', '', '', 3, ''),
(35, 2, '', '', '', 0, ''),
(35, 3, '', '', '', 0, ''),
(36, 1, 'Ju Jitsu Suite', '', '', 3, ''),
(36, 2, '', '', '', 0, ''),
(36, 3, '', '', '', 0, ''),
(37, 1, 'Judo Suite', '', '', 3, ''),
(37, 2, '', '', '', 0, ''),
(37, 3, '', '', '', 0, ''),
(38, 1, 'Judo Suite', '', '', 4, ''),
(38, 2, '', '', '', 0, ''),
(38, 3, '', '', '', 0, ''),
(39, 1, 'Judo Suite', '', '', 3, ''),
(39, 2, '', '', '', 0, ''),
(39, 3, '', '', '', 0, ''),
(40, 1, 'Judo Suite', '', '', 3, ''),
(40, 2, '', '', '', 0, ''),
(40, 3, '', '', '', 0, ''),
(41, 1, 'Karate Suite Best Quality', '', '', 3, ''),
(41, 2, '', '', '', 0, ''),
(41, 3, '', '', '', 0, ''),
(42, 1, 'Karate Suite Best Quality', '', '', 3, ''),
(42, 2, '', '', '', 0, ''),
(42, 3, '', '', '', 0, ''),
(43, 1, 'Karate Suite Best Quality', '', '', 3, ''),
(43, 2, '', '', '', 0, ''),
(43, 3, '', '', '', 0, ''),
(44, 1, 'Karate Suite Best Quality', '', '', 3, ''),
(44, 2, '', '', '', 0, ''),
(44, 3, '', '', '', 0, ''),
(45, 1, 'Karate Suite Best Quality', '', '', 3, ''),
(45, 2, '', '', '', 0, ''),
(45, 3, '', '', '', 0, ''),
(46, 1, 'Kung Fu Suite Chinese Style', '', '', 4, ''),
(46, 2, '', '', '', 0, ''),
(46, 3, '', '', '', 0, ''),
(47, 1, 'Kung Fu Suite Chinese Style', '', '', 3, ''),
(47, 2, '', '', '', 0, ''),
(47, 3, '', '', '', 0, ''),
(48, 1, 'Kung Fu Suite Chinese Style', '', '', 3, ''),
(48, 2, '', '', '', 0, ''),
(48, 3, '', '', '', 0, ''),
(49, 1, 'Kung Fu Suite Chinese Style', '', '', 3, ''),
(49, 2, '', '', '', 0, ''),
(49, 3, '', '', '', 0, ''),
(50, 1, 'Kung Fu Suite Chinese Style', '', '', 3, ''),
(50, 2, '', '', '', 0, ''),
(50, 3, '', '', '', 0, ''),
(51, 1, 'Ladies Bra and Shorts', '', '', 3, ''),
(51, 2, '', '', '', 0, ''),
(51, 3, '', '', '', 0, ''),
(52, 1, 'Ladies Bra and Shorts', '', '', 3, ''),
(52, 2, '', '', '', 0, ''),
(52, 3, '', '', '', 0, ''),
(53, 1, 'Ladies Bra and Shorts', '', '', 3, ''),
(53, 2, '', '', '', 0, ''),
(53, 3, '', '', '', 0, ''),
(54, 1, 'Ladies Bra and Shorts', '', '', 3, ''),
(54, 2, '', '', '', 0, ''),
(54, 3, '', '', '', 0, ''),
(55, 1, 'Ninja', '', '', 3, ''),
(55, 2, '', '', '', 0, ''),
(55, 3, '', '', '', 0, ''),
(56, 1, 'Rash Guard', '', '', 3, ''),
(56, 2, '', '', '', 0, ''),
(56, 3, '', '', '', 0, ''),
(57, 1, 'Rash Guard', '', '', 3, ''),
(57, 2, '', '', '', 0, ''),
(57, 3, '', '', '', 0, ''),
(58, 1, 'Rash Guard', '', '', 3, ''),
(58, 2, '', '', '', 0, ''),
(58, 3, '', '', '', 0, ''),
(59, 1, 'Rash Guard', '', '', 3, ''),
(59, 2, '', '', '', 0, ''),
(59, 3, '', '', '', 0, ''),
(60, 1, 'Taekwondo Suite', '', '', 3, ''),
(60, 2, '', '', '', 0, ''),
(60, 3, '', '', '', 0, ''),
(61, 1, 'Taekwondo Suite', '', '', 3, ''),
(61, 2, '', '', '', 0, ''),
(61, 3, '', '', '', 0, ''),
(62, 1, 'Taekwondo Suite', '', '', 3, ''),
(62, 2, '', '', '', 0, ''),
(62, 3, '', '', '', 0, ''),
(63, 1, 'Tai Chi', '', '', 3, ''),
(63, 2, '', '', '', 0, ''),
(63, 3, '', '', '', 0, ''),
(64, 1, 'Track Suite', '', '', 3, ''),
(64, 2, '', '', '', 0, ''),
(64, 3, '', '', '', 0, ''),
(65, 1, 'Track Suite', '', '', 3, ''),
(65, 2, '', '', '', 0, ''),
(65, 3, '', '', '', 0, ''),
(66, 1, 'Track Suite', '', '', 3, ''),
(66, 2, '', '', '', 0, ''),
(66, 3, '', '', '', 0, ''),
(67, 1, 'Track Suite', '', '', 3, ''),
(67, 2, '', '', '', 0, ''),
(67, 3, '', '', '', 0, ''),
(68, 1, 'Capoeira Pants', '', '', 3, ''),
(68, 2, '', '', '', 0, ''),
(68, 3, '', '', '', 0, ''),
(69, 1, 'Capoeira Pants', '', '', 3, ''),
(69, 2, '', '', '', 0, ''),
(69, 3, '', '', '', 0, ''),
(70, 1, 'Fleece Trouser', '', '', 3, ''),
(70, 2, '', '', '', 0, ''),
(70, 3, '', '', '', 0, ''),
(71, 1, 'Judo', '', '', 3, ''),
(71, 2, '', '', '', 0, ''),
(71, 3, '', '', '', 0, ''),
(72, 1, 'Karate Pants', '', '', 3, ''),
(72, 2, '', '', '', 0, ''),
(72, 3, '', '', '', 0, ''),
(73, 1, 'Kickboxing Trouser', '', '', 3, ''),
(73, 2, '', '', '', 0, ''),
(73, 3, '', '', '', 0, ''),
(74, 1, 'Kickboxing Trouser', '', '', 3, ''),
(74, 2, '', '', '', 0, ''),
(74, 3, '', '', '', 0, ''),
(75, 1, 'Kickboxing Trouser', '', '', 3, ''),
(75, 2, '', '', '', 0, ''),
(75, 3, '', '', '', 0, ''),
(76, 1, 'Kickboxing Trouser', '', '', 3, ''),
(76, 2, '', '', '', 0, ''),
(76, 3, '', '', '', 0, ''),
(77, 1, 'Kickboxing Trouser', '', '', 3, ''),
(77, 2, '', '', '', 0, ''),
(77, 3, '', '', '', 0, ''),
(78, 1, 'Kickboxing Trouser', '', '', 3, ''),
(78, 2, '', '', '', 0, ''),
(78, 3, '', '', '', 0, ''),
(79, 1, 'Kickboxing Trouser', '', '', 3, ''),
(79, 2, '', '', '', 0, ''),
(79, 3, '', '', '', 0, ''),
(80, 1, 'Kickboxing Trouser', '', '', 6, ''),
(80, 2, '', '', '', 0, ''),
(80, 3, '', '', '', 0, ''),
(81, 1, 'Kung Fu Pants Chinese Style', '', '', 6, ''),
(81, 2, '', '', '', 0, ''),
(81, 3, '', '', '', 0, ''),
(82, 1, 'Kung Fu Pants Chinese Style', '', '', 6, ''),
(82, 2, '', '', '', 0, ''),
(82, 3, '', '', '', 0, ''),
(83, 1, 'Kung_Fu_Pant', '', '', 6, ''),
(83, 2, '', '', '', 0, ''),
(83, 3, '', '', '', 0, ''),
(84, 1, 'Taekwondo Pants', '', '', 6, ''),
(84, 2, '', '', '', 0, ''),
(84, 3, '', '', '', 0, ''),
(85, 1, 'Taekwondo Pants', '', '', 6, ''),
(85, 2, '', '', '', 0, ''),
(85, 3, '', '', '', 0, ''),
(86, 1, 'T-Shirts & Hoods', '', '', 3, ''),
(86, 2, '', '', '', 0, ''),
(86, 3, '', '', '', 0, ''),
(87, 1, 'T-Shirts & Hoods', '', '', 3, ''),
(87, 2, '', '', '', 0, ''),
(87, 3, '', '', '', 0, ''),
(88, 1, 'T-Shirts & Hoods', '', '', 3, ''),
(88, 2, '', '', '', 0, ''),
(88, 3, '', '', '', 0, ''),
(89, 1, 'T-Shirts & Hoods', '', '', 3, ''),
(89, 2, '', '', '', 0, ''),
(89, 3, '', '', '', 0, ''),
(90, 1, 'T-Shirts & Hoods', '', '', 3, ''),
(90, 2, '', '', '', 0, ''),
(90, 3, '', '', '', 0, ''),
(91, 1, 'T-Shirts & Hoods', '', '', 7, ''),
(91, 2, '', '', '', 0, ''),
(91, 3, '', '', '', 0, ''),
(92, 1, 'T-Shirts & Hoods', '', '', 8, ''),
(92, 2, '', '', '', 0, ''),
(92, 3, '', '', '', 0, ''),
(93, 1, 'T-Shirts & Hoods', '', '', 7, ''),
(93, 2, '', '', '', 0, ''),
(93, 3, '', '', '', 0, ''),
(95, 1, 'Fabric', '', '', 4, ''),
(95, 2, '', '', '', 0, ''),
(95, 3, '', '', '', 0, ''),
(97, 1, 'Fabric', '', '', 4, ''),
(97, 2, '', '', '', 0, ''),
(97, 3, '', '', '', 0, ''),
(98, 1, 'Fabric', '', '', 4, ''),
(98, 2, '', '', '', 0, ''),
(98, 3, '', '', '', 0, ''),
(99, 1, 'Fabric', '', '', 4, ''),
(99, 2, '', '', '', 0, ''),
(99, 3, '', '', '', 0, ''),
(100, 1, 'Fabric', '', '', 4, ''),
(100, 2, '', '', '', 0, ''),
(100, 3, '', '', '', 0, ''),
(101, 1, 'Fabric', '', '', 11, ''),
(101, 2, '', '', '', 0, ''),
(101, 3, '', '', '', 0, ''),
(102, 1, 'Fabric', '', '', 11, ''),
(102, 2, '', '', '', 0, ''),
(102, 3, '', '', '', 0, ''),
(103, 1, 'Fabric', '', '', 15, ''),
(103, 2, '', '', '', 0, ''),
(103, 3, '', '', '', 0, ''),
(104, 1, 'Bag Gloves', '', '', 3, ''),
(104, 2, '', '', '', 0, ''),
(104, 3, '', '', '', 0, ''),
(105, 1, 'Bag Gloves', '', '', 3, ''),
(105, 2, '', '', '', 0, ''),
(105, 3, '', '', '', 0, ''),
(106, 1, 'Bag Gloves', '', '', 3, ''),
(106, 2, '', '', '', 0, ''),
(106, 3, '', '', '', 0, ''),
(107, 1, 'Bag Gloves', '', '', 3, ''),
(107, 2, '', '', '', 0, ''),
(107, 3, '', '', '', 0, ''),
(108, 1, 'Bag Gloves', '', '', 3, ''),
(108, 2, '', '', '', 0, ''),
(108, 3, '', '', '', 0, ''),
(109, 1, 'Boxing Gloves', '', '', 3, ''),
(109, 2, '', '', '', 0, ''),
(109, 3, '', '', '', 0, ''),
(110, 1, 'Boxing Gloves', '', '', 3, ''),
(110, 2, '', '', '', 0, ''),
(110, 3, '', '', '', 0, ''),
(111, 1, 'Boxing Gloves', '', '', 3, ''),
(111, 2, '', '', '', 0, ''),
(111, 3, '', '', '', 0, ''),
(112, 1, 'Boxing Gloves', '', '', 3, ''),
(112, 2, '', '', '', 0, ''),
(112, 3, '', '', '', 0, ''),
(113, 1, 'Boxing Gloves', '', '', 3, ''),
(113, 2, '', '', '', 0, ''),
(113, 3, '', '', '', 0, ''),
(114, 1, 'Boxing Gloves', '', '', 3, ''),
(114, 2, '', '', '', 0, ''),
(114, 3, '', '', '', 0, ''),
(115, 1, 'Boxing Gloves', '', '', 3, ''),
(115, 2, '', '', '', 0, ''),
(115, 3, '', '', '', 0, ''),
(116, 1, 'Boxing Gloves', '', '', 3, ''),
(116, 2, '', '', '', 0, ''),
(116, 3, '', '', '', 0, ''),
(117, 1, 'Cut Finger Mitt Horizontal Paddi', '', '', 3, ''),
(117, 2, '', '', '', 0, ''),
(117, 3, '', '', '', 0, ''),
(118, 1, 'Cut Finger Mitt Vertical Padding', '', '', 3, ''),
(118, 2, '', '', '', 0, ''),
(118, 3, '', '', '', 0, ''),
(119, 1, 'Cut Finger Mitt Vertical Padding', '', '', 3, ''),
(119, 2, '', '', '', 0, ''),
(119, 3, '', '', '', 0, ''),
(120, 1, 'Grappling Gloves', '', '', 3, ''),
(120, 2, '', '', '', 0, ''),
(120, 3, '', '', '', 0, ''),
(121, 1, 'Grappling Gloves', '', '', 3, ''),
(121, 2, '', '', '', 0, ''),
(121, 3, '', '', '', 0, ''),
(122, 1, 'Grappling Gloves', '', '', 3, ''),
(122, 2, '', '', '', 0, ''),
(122, 3, '', '', '', 0, ''),
(123, 1, 'Grappling Gloves', '', '', 3, ''),
(123, 2, '', '', '', 0, ''),
(123, 3, '', '', '', 0, ''),
(124, 1, 'Grappling Gloves', '', '', 3, ''),
(124, 2, '', '', '', 0, ''),
(124, 3, '', '', '', 0, ''),
(125, 1, 'Grappling Gloves', '', '', 3, ''),
(125, 2, '', '', '', 0, ''),
(125, 3, '', '', '', 0, ''),
(126, 1, 'Grappling Gloves', '', '', 3, ''),
(126, 2, '', '', '', 0, ''),
(126, 3, '', '', '', 0, ''),
(127, 1, 'Grappling Gloves', '', '', 3, ''),
(127, 2, '', '', '', 0, ''),
(127, 3, '', '', '', 0, ''),
(128, 1, 'Karate Mitt', '', '', 3, ''),
(128, 2, '', '', '', 0, ''),
(128, 3, '', '', '', 0, ''),
(129, 1, 'Kenpo Gloves', '', '', 3, ''),
(129, 2, '', '', '', 0, ''),
(129, 3, '', '', '', 0, ''),
(130, 1, 'Kenpo Gloves', '', '', 3, ''),
(130, 2, '', '', '', 0, ''),
(130, 3, '', '', '', 0, ''),
(131, 1, 'Kenpo Gloves', '', '', 3, ''),
(131, 2, '', '', '', 0, ''),
(131, 3, '', '', '', 0, ''),
(132, 1, 'Ladies Gloves', '', '', 3, ''),
(132, 2, '', '', '', 0, ''),
(132, 3, '', '', '', 0, ''),
(133, 1, 'Semi Contact Gloves', '', '', 3, ''),
(133, 2, '', '', '', 0, ''),
(133, 3, '', '', '', 0, ''),
(134, 1, 'Semi Contact Gloves', '', '', 3, ''),
(134, 2, '', '', '', 0, ''),
(134, 3, '', '', '', 0, ''),
(135, 1, 'Semi Contact Gloves', '', '', 3, ''),
(135, 2, '', '', '', 0, ''),
(135, 3, '', '', '', 0, ''),
(136, 1, 'Semi Contact Gloves', '', '', 3, ''),
(136, 2, '', '', '', 0, ''),
(136, 3, '', '', '', 0, ''),
(137, 1, 'Semi Contact Gloves', '', '', 3, ''),
(137, 2, '', '', '', 0, ''),
(137, 3, '', '', '', 0, ''),
(138, 1, 'Semi Contact Gloves', '', '', 6, ''),
(138, 2, '', '', '', 0, ''),
(138, 3, '', '', '', 0, ''),
(139, 1, 'Taekwondo Gloves', '', '', 6, ''),
(139, 2, '', '', '', 0, ''),
(139, 3, '', '', '', 0, ''),
(140, 1, 'Taekwondo Gloves', '', '', 6, ''),
(140, 2, '', '', '', 0, ''),
(140, 3, '', '', '', 0, ''),
(141, 1, 'Bag Gloves', '', '', 4, ''),
(141, 2, '', '', '', 0, ''),
(141, 3, '', '', '', 0, ''),
(142, 1, 'Bag Gloves', '', '', 4, ''),
(142, 2, '', '', '', 0, ''),
(142, 3, '', '', '', 0, ''),
(143, 1, 'Boxing Gloves', '', '', 4, ''),
(143, 2, '', '', '', 0, ''),
(143, 3, '', '', '', 0, ''),
(144, 1, 'Boxing Gloves', '', '', 4, ''),
(144, 2, '', '', '', 0, ''),
(144, 3, '', '', '', 0, ''),
(145, 1, 'Boxing Gloves', '', '', 4, ''),
(145, 2, '', '', '', 0, ''),
(145, 3, '', '', '', 0, ''),
(146, 1, 'Focus Pads', '', '', 4, ''),
(146, 2, '', '', '', 0, ''),
(146, 3, '', '', '', 0, ''),
(147, 1, 'Focus Pads', '', '', 4, ''),
(147, 2, '', '', '', 0, ''),
(147, 3, '', '', '', 0, ''),
(148, 1, 'Focus Pads', '', '', 4, ''),
(148, 2, '', '', '', 0, ''),
(148, 3, '', '', '', 0, ''),
(149, 1, 'Head Guards', '', '', 4, ''),
(149, 2, '', '', '', 0, ''),
(149, 3, '', '', '', 0, ''),
(150, 1, 'Head Guards', '', '', 4, ''),
(150, 2, '', '', '', 0, ''),
(150, 3, '', '', '', 0, ''),
(151, 1, 'Head Guards', '', '', 4, ''),
(151, 2, '', '', '', 0, ''),
(151, 3, '', '', '', 0, ''),
(152, 1, 'Kids Belly Belt', '', '', 4, ''),
(152, 2, '', '', '', 0, ''),
(152, 3, '', '', '', 0, ''),
(153, 1, 'Punching Sets', '', '', 4, ''),
(153, 2, '', '', '', 0, ''),
(153, 3, '', '', '', 0, ''),
(154, 1, 'Punching Sets', '', '', 4, ''),
(154, 2, '', '', '', 0, ''),
(154, 3, '', '', '', 0, ''),
(155, 1, 'Punching Sets', '', '', 4, ''),
(155, 2, '', '', '', 0, ''),
(155, 3, '', '', '', 0, ''),
(156, 1, 'Punching Sets', '', '', 4, ''),
(156, 2, '', '', '', 0, ''),
(156, 3, '', '', '', 0, ''),
(157, 1, 'Punching Sets', '', '', 4, ''),
(157, 2, '', '', '', 0, ''),
(157, 3, '', '', '', 0, ''),
(158, 1, 'Punching Sets', '', '', 8, ''),
(158, 2, '', '', '', 0, ''),
(158, 3, '', '', '', 0, ''),
(159, 1, 'Punching Sets', '', '', 8, ''),
(159, 2, '', '', '', 0, ''),
(159, 3, '', '', '', 0, ''),
(160, 1, 'Punching Sets', '', '', 8, ''),
(160, 2, '', '', '', 0, ''),
(160, 3, '', '', '', 0, ''),
(161, 1, 'Packings', '', '', 4, ''),
(161, 2, '', '', '', 0, ''),
(161, 3, '', '', '', 0, ''),
(162, 1, 'Packings', '', '', 4, ''),
(162, 2, '', '', '', 0, ''),
(162, 3, '', '', '', 0, ''),
(163, 1, 'Packings', '', '', 4, ''),
(163, 2, '', '', '', 0, ''),
(163, 3, '', '', '', 0, ''),
(164, 1, 'Packings', '', '', 4, ''),
(164, 2, '', '', '', 0, ''),
(164, 3, '', '', '', 0, ''),
(165, 1, 'Packings', '', '', 4, ''),
(165, 2, '', '', '', 0, ''),
(165, 3, '', '', '', 0, ''),
(166, 1, 'Packings', '', '', 9, ''),
(166, 2, '', '', '', 0, ''),
(166, 3, '', '', '', 0, ''),
(167, 1, 'Packings', '', '', 8, ''),
(167, 2, '', '', '', 0, ''),
(167, 3, '', '', '', 0, ''),
(168, 1, 'Packings', '', '', 8, ''),
(168, 2, '', '', '', 0, ''),
(168, 3, '', '', '', 0, ''),
(169, 1, 'Belly Guard', '', '', 3, ''),
(169, 2, '', '', '', 0, ''),
(169, 3, '', '', '', 0, ''),
(170, 1, 'Belly Guard', '', '', 3, ''),
(170, 2, '', '', '', 0, ''),
(170, 3, '', '', '', 0, ''),
(171, 1, 'Ladies Chest Guard', '', '', 3, ''),
(171, 2, '', '', '', 0, ''),
(171, 3, '', '', '', 0, ''),
(172, 1, 'Ladies Chest Guard', '', '', 3, ''),
(172, 2, '', '', '', 0, ''),
(172, 3, '', '', '', 0, ''),
(173, 1, 'Ladies Chest Guard', '', '', 3, ''),
(173, 2, '', '', '', 0, ''),
(173, 3, '', '', '', 0, ''),
(174, 1, 'Ladies Chest Guard', '', '', 3, ''),
(174, 2, '', '', '', 0, ''),
(174, 3, '', '', '', 0, ''),
(175, 1, 'Ladies Chest Guard', '', '', 3, ''),
(175, 2, '', '', '', 0, ''),
(175, 3, '', '', '', 0, ''),
(176, 1, 'Men Chest Guard', '', '', 6, ''),
(176, 2, '', '', '', 0, ''),
(176, 3, '', '', '', 0, ''),
(177, 1, 'Men Chest Guard', '', '', 7, ''),
(177, 2, '', '', '', 0, ''),
(177, 3, '', '', '', 0, ''),
(178, 1, 'Men Chest Guard', '', '', 6, ''),
(178, 2, '', '', '', 0, ''),
(178, 3, '', '', '', 0, ''),
(179, 1, 'Elastic Protection', '', '', 3, ''),
(179, 2, '', '', '', 0, ''),
(179, 3, '', '', '', 0, ''),
(180, 1, 'Elastic Protection', '', '', 3, ''),
(180, 2, '', '', '', 0, ''),
(180, 3, '', '', '', 0, ''),
(181, 1, 'Elastic Protection', '', '', 3, ''),
(181, 2, '', '', '', 0, ''),
(181, 3, '', '', '', 0, ''),
(182, 1, 'Elastic Protection', '', '', 3, ''),
(182, 2, '', '', '', 0, ''),
(182, 3, '', '', '', 0, ''),
(183, 1, 'Elastic Protection', '', '', 3, ''),
(183, 2, '', '', '', 0, ''),
(183, 3, '', '', '', 0, ''),
(184, 1, 'Elastic Protection', '', '', 3, ''),
(184, 2, '', '', '', 0, ''),
(184, 3, '', '', '', 0, ''),
(185, 1, 'Elastic Protection', '', '', 3, ''),
(185, 2, '', '', '', 0, ''),
(185, 3, '', '', '', 0, ''),
(186, 1, 'Elastic Protection', '', '', 3, ''),
(186, 2, '', '', '', 0, ''),
(186, 3, '', '', '', 0, ''),
(187, 1, 'Groin Guard', '', '', 3, ''),
(187, 2, '', '', '', 0, ''),
(187, 3, '', '', '', 0, ''),
(188, 1, 'Groin Guard Ladies', '', '', 3, ''),
(188, 2, '', '', '', 0, ''),
(188, 3, '', '', '', 0, ''),
(189, 1, 'Groin Guard Ladies', '', '', 3, ''),
(189, 2, '', '', '', 0, ''),
(189, 3, '', '', '', 0, ''),
(190, 1, 'Groin Guard Men', '', '', 3, ''),
(190, 2, '', '', '', 0, ''),
(190, 3, '', '', '', 0, ''),
(191, 1, 'Groin Guard Men', '', '', 3, ''),
(191, 2, '', '', '', 0, ''),
(191, 3, '', '', '', 0, ''),
(192, 1, 'Groin Guard Men', '', '', 3, ''),
(192, 2, '', '', '', 0, ''),
(192, 3, '', '', '', 0, ''),
(193, 1, 'Groin Guard Men', '', '', 3, ''),
(193, 2, '', '', '', 0, ''),
(193, 3, '', '', '', 0, ''),
(194, 1, 'Groin Guard Men', '', '', 3, ''),
(194, 2, '', '', '', 0, ''),
(194, 3, '', '', '', 0, ''),
(195, 1, 'Groin Guard Men', '', '', 7, ''),
(195, 2, '', '', '', 0, ''),
(195, 3, '', '', '', 0, ''),
(196, 1, 'Groin Guard Men', '', '', 7, ''),
(196, 2, '', '', '', 0, ''),
(196, 3, '', '', '', 0, ''),
(197, 1, 'Groin Guard Men', '', '', 7, ''),
(197, 2, '', '', '', 0, ''),
(197, 3, '', '', '', 0, ''),
(198, 1, 'Head Guards', '', '', 3, ''),
(198, 2, '', '', '', 0, ''),
(198, 3, '', '', '', 0, ''),
(199, 1, 'Head Guards', '', '', 3, ''),
(199, 2, '', '', '', 0, ''),
(199, 3, '', '', '', 0, ''),
(200, 1, 'Head Guards', '', '', 4, ''),
(200, 2, '', '', '', 0, ''),
(200, 3, '', '', '', 0, ''),
(201, 1, 'Head Guards', '', '', 3, ''),
(201, 2, '', '', '', 0, ''),
(201, 3, '', '', '', 0, ''),
(202, 1, 'Head Guards', '', '', 3, ''),
(202, 2, '', '', '', 0, ''),
(202, 3, '', '', '', 0, ''),
(203, 1, 'Head Guards', '', '', 3, ''),
(203, 2, '', '', '', 0, ''),
(203, 3, '', '', '', 0, ''),
(204, 1, 'Head Guards', '', '', 6, ''),
(204, 2, '', '', '', 0, ''),
(204, 3, '', '', '', 0, ''),
(205, 1, 'Head Guards', '', '', 3, ''),
(205, 2, '', '', '', 0, ''),
(205, 3, '', '', '', 0, ''),
(206, 1, 'Mouth Guards', '', '', 3, ''),
(206, 2, '', '', '', 0, ''),
(206, 3, '', '', '', 0, ''),
(207, 1, 'Mouth Guards', '', '', 3, ''),
(207, 2, '', '', '', 0, ''),
(207, 3, '', '', '', 0, ''),
(208, 1, 'Mouth Guards', '', '', 3, ''),
(208, 2, '', '', '', 0, ''),
(208, 3, '', '', '', 0, ''),
(209, 1, 'Mouth Guards', '', '', 3, ''),
(209, 2, '', '', '', 0, ''),
(209, 3, '', '', '', 0, ''),
(210, 1, 'Mouth Guards', '', '', 3, ''),
(210, 2, '', '', '', 0, ''),
(210, 3, '', '', '', 0, ''),
(211, 1, 'Shin Pads', '', '', 3, ''),
(211, 2, '', '', '', 0, ''),
(211, 3, '', '', '', 0, ''),
(212, 1, 'Shin Pads', '', '', 3, ''),
(212, 2, '', '', '', 0, ''),
(212, 3, '', '', '', 0, ''),
(213, 1, 'Shin Pads', '', '', 3, ''),
(213, 2, '', '', '', 0, ''),
(213, 3, '', '', '', 0, ''),
(214, 1, 'Shin Pads', '', '', 3, ''),
(214, 2, '', '', '', 0, ''),
(214, 3, '', '', '', 0, ''),
(215, 1, 'Shin Pads', '', '', 3, ''),
(215, 2, '', '', '', 0, ''),
(215, 3, '', '', '', 0, ''),
(216, 1, 'Shin Pads', '', '', 3, ''),
(216, 2, '', '', '', 0, ''),
(216, 3, '', '', '', 0, ''),
(217, 1, 'Shin Pads', '', '', 6, ''),
(217, 2, '', '', '', 0, ''),
(217, 3, '', '', '', 0, ''),
(218, 1, 'Shin Pads', '', '', 6, ''),
(218, 2, '', '', '', 0, ''),
(218, 3, '', '', '', 0, ''),
(219, 1, 'Taekwondo Foot Protection', '', '', 6, ''),
(219, 2, '', '', '', 0, ''),
(219, 3, '', '', '', 0, ''),
(220, 1, 'Boxing Shoes', '', '', 4, ''),
(220, 2, '', '', '', 0, ''),
(220, 3, '', '', '', 0, ''),
(221, 1, 'Boxing Shoes', '', '', 4, ''),
(221, 2, '', '', '', 0, ''),
(221, 3, '', '', '', 0, ''),
(222, 1, 'Boxing Shoes', '', '', 4, ''),
(222, 2, '', '', '', 0, ''),
(222, 3, '', '', '', 0, ''),
(223, 1, 'Gym Shoes', '', '', 4, ''),
(223, 2, '', '', '', 0, ''),
(223, 3, '', '', '', 0, ''),
(224, 1, 'Kungfu Shoes', '', '', 5, ''),
(224, 2, '', '', '', 0, ''),
(224, 3, '', '', '', 0, ''),
(225, 1, 'Semi Contact', '', '', 4, ''),
(225, 2, '', '', '', 0, ''),
(225, 3, '', '', '', 0, ''),
(226, 1, 'Semi Contact', '', '', 4, ''),
(226, 2, '', '', '', 0, ''),
(226, 3, '', '', '', 0, ''),
(227, 1, 'Semi Contact', '', '', 4, ''),
(227, 2, '', '', '', 0, ''),
(227, 3, '', '', '', 0, ''),
(228, 1, 'Semi Contact', '', '', 4, ''),
(228, 2, '', '', '', 0, ''),
(228, 3, '', '', '', 0, ''),
(229, 1, 'Tabi Shoes', '', '', 4, ''),
(229, 2, '', '', '', 0, ''),
(229, 3, '', '', '', 0, ''),
(230, 1, 'Tabi Shoes', '', '', 4, ''),
(230, 2, '', '', '', 0, ''),
(230, 3, '', '', '', 0, ''),
(231, 1, 'Taekwondo Shoes', '', '', 4, ''),
(231, 2, '', '', '', 0, ''),
(231, 3, '', '', '', 0, ''),
(232, 1, 'Taekwondo Shoes', '', '', 8, ''),
(232, 2, '', '', '', 0, ''),
(232, 3, '', '', '', 0, ''),
(233, 1, 'Taekwondo Shoes', '', '', 8, ''),
(233, 2, '', '', '', 0, ''),
(233, 3, '', '', '', 0, ''),
(234, 1, 'Taekwondo Shoes', '', '', 9, ''),
(234, 2, '', '', '', 0, ''),
(234, 3, '', '', '', 0, ''),
(235, 1, 'Floppy Mit', '', '', 3, ''),
(235, 2, '', '', '', 0, ''),
(235, 3, '', '', '', 0, ''),
(236, 1, 'Floppy Mit', '', '', 3, ''),
(236, 2, '', '', '', 0, ''),
(236, 3, '', '', '', 0, ''),
(237, 1, 'Floppy Mit', '', '', 3, ''),
(237, 2, '', '', '', 0, ''),
(237, 3, '', '', '', 0, ''),
(238, 1, 'Floppy Mit', '', '', 3, ''),
(238, 2, '', '', '', 0, ''),
(238, 3, '', '', '', 0, ''),
(239, 1, 'Focus Pads', '', '', 3, ''),
(239, 2, '', '', '', 0, ''),
(239, 3, '', '', '', 0, ''),
(240, 1, 'Focus Pads', '', '', 3, ''),
(240, 2, '', '', '', 0, ''),
(240, 3, '', '', '', 0, ''),
(241, 1, 'Focus Pads', '', '', 3, ''),
(241, 2, '', '', '', 0, ''),
(241, 3, '', '', '', 0, ''),
(242, 1, 'Focus Pads', '', '', 3, ''),
(242, 2, '', '', '', 0, ''),
(242, 3, '', '', '', 0, ''),
(243, 1, 'Focus Pads', '', '', 3, ''),
(243, 2, '', '', '', 0, ''),
(243, 3, '', '', '', 0, ''),
(244, 1, 'Focus Pads', '', '', 3, ''),
(244, 2, '', '', '', 0, ''),
(244, 3, '', '', '', 0, ''),
(245, 1, 'Focus Pads', '', '', 3, ''),
(245, 2, '', '', '', 0, ''),
(245, 3, '', '', '', 0, ''),
(246, 1, 'Focus Pads', '', '', 3, ''),
(246, 2, '', '', '', 0, ''),
(246, 3, '', '', '', 0, ''),
(247, 1, 'Medicine Ball', '', '', 3, ''),
(247, 2, '', '', '', 0, ''),
(247, 3, '', '', '', 0, ''),
(248, 1, 'Punching Bags', '', '', 5, ''),
(248, 2, '', '', '', 0, ''),
(248, 3, '', '', '', 0, ''),
(249, 1, 'Punching Bags', '', '', 3, ''),
(249, 2, '', '', '', 0, ''),
(249, 3, '', '', '', 0, ''),
(250, 1, 'Punching Bags', '', '', 3, ''),
(250, 2, '', '', '', 0, ''),
(250, 3, '', '', '', 0, ''),
(251, 1, 'Punching Bags', '', '', 3, ''),
(251, 2, '', '', '', 0, ''),
(251, 3, '', '', '', 0, ''),
(252, 1, 'Skipping Ropes', '', '', 3, ''),
(252, 2, '', '', '', 0, ''),
(252, 3, '', '', '', 0, ''),
(253, 1, 'Skipping Ropes', '', '', 3, ''),
(253, 2, '', '', '', 0, ''),
(253, 3, '', '', '', 0, ''),
(254, 1, 'Skipping Ropes', '', '', 3, ''),
(254, 2, '', '', '', 0, ''),
(254, 3, '', '', '', 0, ''),
(255, 1, 'Skipping Ropes', '', '', 3, ''),
(255, 2, '', '', '', 0, ''),
(255, 3, '', '', '', 0, ''),
(256, 1, 'Skipping Ropes', '', '', 3, ''),
(256, 2, '', '', '', 0, ''),
(256, 3, '', '', '', 0, ''),
(257, 1, 'Skipping Ropes', '', '', 3, ''),
(257, 2, '', '', '', 0, ''),
(257, 3, '', '', '', 0, ''),
(258, 1, 'Skipping Ropes', '', '', 3, ''),
(258, 2, '', '', '', 0, ''),
(258, 3, '', '', '', 0, ''),
(259, 1, 'SpeedBalls', '', '', 3, ''),
(259, 2, '', '', '', 0, ''),
(259, 3, '', '', '', 0, ''),
(260, 1, 'SpeedBalls', '', '', 3, ''),
(260, 2, '', '', '', 0, ''),
(260, 3, '', '', '', 0, ''),
(261, 1, 'SpeedBalls', '', '', 3, ''),
(261, 2, '', '', '', 0, ''),
(261, 3, '', '', '', 0, ''),
(262, 1, 'SpeedBalls', '', '', 3, ''),
(262, 2, '', '', '', 0, ''),
(262, 3, '', '', '', 0, ''),
(263, 1, 'SpeedBalls', '', '', 3, ''),
(263, 2, '', '', '', 0, ''),
(263, 3, '', '', '', 0, ''),
(264, 1, 'SpeedBalls', '', '', 3, ''),
(264, 2, '', '', '', 0, ''),
(264, 3, '', '', '', 0, ''),
(265, 1, 'SpeedBalls', '', '', 3, ''),
(265, 2, '', '', '', 0, ''),
(265, 3, '', '', '', 0, ''),
(266, 1, 'SpeedBalls', '', '', 3, ''),
(266, 2, '', '', '', 0, ''),
(266, 3, '', '', '', 0, ''),
(267, 1, 'Strike Sheilds', '', '', 3, ''),
(267, 2, '', '', '', 0, ''),
(267, 3, '', '', '', 0, ''),
(268, 1, 'Strike Sheilds', '', '', 3, ''),
(268, 2, '', '', '', 0, ''),
(268, 3, '', '', '', 0, ''),
(269, 1, 'Strike Sheilds', '', '', 3, ''),
(269, 2, '', '', '', 0, ''),
(269, 3, '', '', '', 0, ''),
(270, 1, 'Strike Sheilds', '', '', 3, ''),
(270, 2, '', '', '', 0, ''),
(270, 3, '', '', '', 0, ''),
(271, 1, 'Strike Sheilds', '', '', 3, ''),
(271, 2, '', '', '', 0, ''),
(271, 3, '', '', '', 0, ''),
(272, 1, 'Strike Sheilds', '', '', 3, ''),
(272, 2, '', '', '', 0, ''),
(272, 3, '', '', '', 0, ''),
(273, 1, 'Strike Sheilds', '', '', 6, ''),
(273, 2, '', '', '', 0, ''),
(273, 3, '', '', '', 0, ''),
(274, 1, 'Strike Sheilds', '', '', 7, ''),
(274, 2, '', '', '', 0, ''),
(274, 3, '', '', '', 0, ''),
(275, 1, 'Tackle Bag', '', '', 7, ''),
(275, 2, '', '', '', 0, ''),
(275, 3, '', '', '', 0, ''),
(276, 1, 'Swords', '', '', 9, ''),
(276, 2, '', '', '', 0, ''),
(276, 3, '', '', '', 0, ''),
(277, 1, 'Swords', '', '', 12, ''),
(277, 2, '', '', '', 0, ''),
(277, 3, '', '', '', 0, ''),
(278, 1, 'Bladder', '', '', 4, ''),
(278, 2, '', '', '', 0, ''),
(278, 3, '', '', '', 0, ''),
(279, 1, 'Chains', '', '', 3, ''),
(279, 2, '', '', '', 0, ''),
(279, 3, '', '', '', 0, ''),
(280, 1, 'Embroiled Patches', '', '', 3, ''),
(280, 2, '', '', '', 0, ''),
(280, 3, '', '', '', 0, ''),
(281, 1, 'Embroiled Patches', '', '', 4, ''),
(281, 2, '', '', '', 0, ''),
(281, 3, '', '', '', 0, ''),
(282, 1, 'Embroiled Patches', '', '', 3, ''),
(282, 2, '', '', '', 0, ''),
(282, 3, '', '', '', 0, ''),
(283, 1, 'Embroiled Patches', '', '', 3, ''),
(283, 2, '', '', '', 0, ''),
(283, 3, '', '', '', 0, ''),
(284, 1, 'Head Bands', '', '', 3, ''),
(284, 2, '', '', '', 0, ''),
(284, 3, '', '', '', 0, ''),
(285, 1, 'Head Bands', '', '', 3, ''),
(285, 2, '', '', '', 0, ''),
(285, 3, '', '', '', 0, ''),
(286, 1, 'Head Bands', '', '', 3, ''),
(286, 2, '', '', '', 0, ''),
(286, 3, '', '', '', 0, ''),
(287, 1, 'Head Bands', '', '', 3, ''),
(287, 2, '', '', '', 0, ''),
(287, 3, '', '', '', 0, ''),
(288, 1, 'Head Bands', '', '', 3, ''),
(288, 2, '', '', '', 0, ''),
(288, 3, '', '', '', 0, ''),
(289, 1, 'Head Bands', '', '', 3, ''),
(289, 2, '', '', '', 0, ''),
(289, 3, '', '', '', 0, ''),
(290, 1, 'Head Bands', '', '', 3, ''),
(290, 2, '', '', '', 0, ''),
(290, 3, '', '', '', 0, ''),
(291, 1, 'Head Bands', '', '', 3, ''),
(291, 2, '', '', '', 0, ''),
(291, 3, '', '', '', 0, ''),
(292, 1, 'Boxing Hangings', '', '', 3, ''),
(292, 2, '', '', '', 0, ''),
(292, 3, '', '', '', 0, ''),
(293, 1, 'Boxing Hangings', '', '', 3, ''),
(293, 2, '', '', '', 0, ''),
(293, 3, '', '', '', 0, ''),
(294, 1, 'Boxing Hangings', '', '', 3, ''),
(294, 2, '', '', '', 0, ''),
(294, 3, '', '', '', 0, ''),
(295, 1, 'Boxing Hangings', '', '', 3, ''),
(295, 2, '', '', '', 0, ''),
(295, 3, '', '', '', 0, ''),
(296, 1, 'Boxing Hangings', '', '', 3, ''),
(296, 2, '', '', '', 0, ''),
(296, 3, '', '', '', 0, ''),
(297, 1, 'Camouflage Grappling Gloves', '', '', 3, ''),
(297, 2, '', '', '', 0, ''),
(297, 3, '', '', '', 0, ''),
(298, 1, 'Camouflage Grappling Gloves', '', '', 3, ''),
(298, 2, '', '', '', 0, ''),
(298, 3, '', '', '', 0, ''),
(299, 1, 'Judo Hangings', '', '', 6, ''),
(299, 2, '', '', '', 0, ''),
(299, 3, '', '', '', 0, ''),
(300, 1, 'Karate Hanging1', '', '', 6, ''),
(300, 2, '', '', '', 0, ''),
(300, 3, '', '', '', 0, ''),
(301, 1, 'Karate Hanging2', '', '', 6, ''),
(301, 2, '', '', '', 0, ''),
(301, 3, '', '', '', 0, ''),
(302, 1, 'Metal Keychains', '', '', 3, ''),
(302, 2, '', '', '', 0, ''),
(302, 3, '', '', '', 0, ''),
(303, 1, 'Metal Keychains', '', '', 3, ''),
(303, 2, '', '', '', 0, ''),
(303, 3, '', '', '', 0, ''),
(304, 1, 'Metal Keychains', '', '', 3, ''),
(304, 2, '', '', '', 0, ''),
(304, 3, '', '', '', 0, ''),
(305, 1, 'Metal Keychains', '', '', 3, ''),
(305, 2, '', '', '', 0, ''),
(305, 3, '', '', '', 0, ''),
(306, 1, 'Metal Keychains', '', '', 3, ''),
(306, 2, '', '', '', 0, ''),
(306, 3, '', '', '', 0, ''),
(307, 1, 'Metal Keychains', '', '', 3, ''),
(307, 2, '', '', '', 0, ''),
(307, 3, '', '', '', 0, ''),
(308, 1, 'Pins', '', '', 3, ''),
(308, 2, '', '', '', 0, ''),
(308, 3, '', '', '', 0, ''),
(309, 1, 'Wooden Keychains', '', '', 4, ''),
(309, 2, '', '', '', 0, ''),
(309, 3, '', '', '', 0, ''),
(310, 1, 'Wooden Keychains', '', '', 3, ''),
(310, 2, '', '', '', 0, ''),
(310, 3, '', '', '', 0, ''),
(311, 1, 'Wooden Keychains', '', '', 7, ''),
(311, 2, '', '', '', 0, ''),
(311, 3, '', '', '', 0, ''),
(312, 1, 'Wooden Keychains', '', '', 6, ''),
(312, 2, '', '', '', 0, ''),
(312, 3, '', '', '', 0, ''),
(313, 1, 'Wooden Keychains', '', '', 6, ''),
(313, 2, '', '', '', 0, ''),
(313, 3, '', '', '', 0, ''),
(314, 1, 'Logos', '', '', 3, ''),
(314, 2, '', '', '', 0, ''),
(314, 3, '', '', '', 0, ''),
(315, 1, 'Logos', '', '', 3, ''),
(315, 2, '', '', '', 0, ''),
(315, 3, '', '', '', 0, ''),
(316, 1, 'Logos', '', '', 3, ''),
(316, 2, '', '', '', 0, ''),
(316, 3, '', '', '', 0, ''),
(317, 1, 'Sports Kit Bags', '', '', 3, ''),
(317, 2, '', '', '', 0, ''),
(317, 3, '', '', '', 0, ''),
(318, 1, 'Sports Kit Bags', '', '', 3, ''),
(318, 2, '', '', '', 0, ''),
(318, 3, '', '', '', 0, ''),
(319, 1, 'Sports Kit Bags', '', '', 3, ''),
(319, 2, '', '', '', 0, ''),
(319, 3, '', '', '', 0, ''),
(320, 1, 'Sports Kit Bags', '', '', 3, ''),
(320, 2, '', '', '', 0, ''),
(320, 3, '', '', '', 0, ''),
(321, 1, 'Swivels &  Hooks', '', '', 4, ''),
(321, 2, '', '', '', 0, ''),
(321, 3, '', '', '', 0, ''),
(322, 1, 'Swivels &  Hooks', '', '', 3, ''),
(322, 2, '', '', '', 0, ''),
(322, 3, '', '', '', 0, ''),
(323, 1, 'Swivels &  Hooks', '', '', 3, ''),
(323, 2, '', '', '', 0, ''),
(323, 3, '', '', '', 0, ''),
(324, 1, 'Swivels &  Hooks', '', '', 3, ''),
(324, 2, '', '', '', 0, ''),
(324, 3, '', '', '', 0, ''),
(325, 1, 'Swivels &  Hooks', '', '', 24, ''),
(325, 2, '', '', '', 0, ''),
(325, 3, '', '', '', 0, ''),
(326, 1, 'Swivels &  Hooks', '', '', 26, ''),
(326, 2, '', '', '', 0, ''),
(326, 3, '', '', '', 0, ''),
(327, 1, 'Swivels &  Hooks', '', '', 21, ''),
(327, 2, '', '', '', 0, ''),
(327, 3, '', '', '', 0, '');

-- --------------------------------------------------------

--
-- Table structure for table `products_notifications`
--

CREATE TABLE IF NOT EXISTS `products_notifications` (
  `products_id` int(11) NOT NULL,
  `customers_id` int(11) NOT NULL,
  `date_added` datetime NOT NULL,
  PRIMARY KEY (`products_id`,`customers_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `products_notifications`
--


-- --------------------------------------------------------

--
-- Table structure for table `products_options`
--

CREATE TABLE IF NOT EXISTS `products_options` (
  `products_options_id` int(11) NOT NULL DEFAULT '0',
  `language_id` int(11) NOT NULL DEFAULT '1',
  `products_options_name` varchar(32) NOT NULL DEFAULT '',
  PRIMARY KEY (`products_options_id`,`language_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `products_options`
--

INSERT INTO `products_options` (`products_options_id`, `language_id`, `products_options_name`) VALUES
(1, 1, 'Color'),
(1, 2, 'Farbe'),
(1, 3, 'Color'),
(2, 1, 'Size'),
(2, 2, 'Größe'),
(2, 3, 'Talla'),
(3, 1, 'Model'),
(3, 2, 'Modell'),
(3, 3, 'Modelo'),
(4, 1, 'Memory'),
(4, 2, 'Speicher'),
(4, 3, 'Memoria'),
(5, 1, 'Version'),
(5, 2, 'Version'),
(5, 3, 'Version');

-- --------------------------------------------------------

--
-- Table structure for table `products_options_values`
--

CREATE TABLE IF NOT EXISTS `products_options_values` (
  `products_options_values_id` int(11) NOT NULL DEFAULT '0',
  `language_id` int(11) NOT NULL DEFAULT '1',
  `products_options_values_name` varchar(64) NOT NULL DEFAULT '',
  PRIMARY KEY (`products_options_values_id`,`language_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `products_options_values`
--

INSERT INTO `products_options_values` (`products_options_values_id`, `language_id`, `products_options_values_name`) VALUES
(1, 1, '4 mb'),
(1, 2, '4 MB'),
(1, 3, '4 mb'),
(2, 1, '8 mb'),
(2, 2, '8 MB'),
(2, 3, '8 mb'),
(3, 1, '16 mb'),
(3, 2, '16 MB'),
(3, 3, '16 mb'),
(4, 1, '32 mb'),
(4, 2, '32 MB'),
(4, 3, '32 mb'),
(5, 1, 'Value'),
(5, 2, 'Value Ausgabe'),
(5, 3, 'Value'),
(6, 1, 'Premium'),
(6, 2, 'Premium Ausgabe'),
(6, 3, 'Premium'),
(7, 1, 'Deluxe'),
(7, 2, 'Deluxe Ausgabe'),
(7, 3, 'Deluxe'),
(8, 1, 'PS/2'),
(8, 2, 'PS/2 Anschluss'),
(8, 3, 'PS/2'),
(9, 1, 'USB'),
(9, 2, 'USB Anschluss'),
(9, 3, 'USB'),
(10, 1, 'Download: Windows - English'),
(10, 2, 'Download: Windows - Englisch'),
(10, 3, 'Download: Windows - Inglese'),
(13, 1, 'Box: Windows - English'),
(13, 2, 'Box: Windows - Englisch'),
(13, 3, 'Box: Windows - Inglese'),
(14, 1, 'S'),
(14, 2, ''),
(14, 3, ''),
(15, 1, 'M'),
(15, 2, ''),
(15, 3, ''),
(16, 1, 'L'),
(16, 2, ''),
(16, 3, '');

-- --------------------------------------------------------

--
-- Table structure for table `products_options_values_to_products_options`
--

CREATE TABLE IF NOT EXISTS `products_options_values_to_products_options` (
  `products_options_values_to_products_options_id` int(11) NOT NULL AUTO_INCREMENT,
  `products_options_id` int(11) NOT NULL,
  `products_options_values_id` int(11) NOT NULL,
  PRIMARY KEY (`products_options_values_to_products_options_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=17 ;

--
-- Dumping data for table `products_options_values_to_products_options`
--

INSERT INTO `products_options_values_to_products_options` (`products_options_values_to_products_options_id`, `products_options_id`, `products_options_values_id`) VALUES
(1, 4, 1),
(2, 4, 2),
(3, 4, 3),
(4, 4, 4),
(5, 3, 5),
(6, 3, 6),
(7, 3, 7),
(8, 3, 8),
(9, 3, 9),
(10, 5, 10),
(13, 5, 13),
(14, 2, 14),
(15, 2, 15),
(16, 2, 16);

-- --------------------------------------------------------

--
-- Table structure for table `products_to_categories`
--

CREATE TABLE IF NOT EXISTS `products_to_categories` (
  `products_id` int(11) NOT NULL,
  `categories_id` int(11) NOT NULL,
  PRIMARY KEY (`products_id`,`categories_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `products_to_categories`
--

INSERT INTO `products_to_categories` (`products_id`, `categories_id`) VALUES
(1, 80),
(2, 81),
(3, 81),
(4, 81),
(5, 81),
(6, 81),
(7, 81),
(8, 82),
(9, 82),
(10, 82),
(11, 82),
(12, 82),
(13, 82),
(14, 82),
(15, 96),
(16, 96),
(17, 96),
(18, 96),
(19, 97),
(20, 97),
(21, 97),
(22, 97),
(23, 97),
(24, 97),
(25, 97),
(26, 97),
(27, 98),
(28, 98),
(29, 98),
(30, 98),
(31, 98),
(32, 98),
(33, 98),
(34, 98),
(35, 84),
(36, 84),
(37, 85),
(38, 85),
(39, 85),
(40, 85),
(41, 86),
(42, 86),
(43, 86),
(44, 86),
(45, 86),
(46, 87),
(47, 87),
(48, 87),
(49, 87),
(50, 87),
(51, 88),
(52, 88),
(53, 88),
(54, 88),
(55, 89),
(56, 90),
(57, 90),
(58, 90),
(59, 90),
(60, 91),
(61, 91),
(62, 91),
(63, 92),
(64, 93),
(65, 93),
(66, 93),
(67, 93),
(68, 99),
(69, 99),
(70, 100),
(71, 101),
(72, 102),
(73, 103),
(74, 103),
(75, 103),
(76, 103),
(77, 103),
(78, 103),
(79, 103),
(80, 103),
(81, 106),
(82, 106),
(83, 107),
(84, 105),
(85, 105),
(86, 95),
(87, 95),
(88, 95),
(89, 95),
(90, 95),
(91, 95),
(92, 95),
(93, 95),
(95, 10),
(97, 10),
(98, 10),
(99, 10),
(100, 10),
(101, 10),
(102, 10),
(103, 10),
(104, 38),
(105, 38),
(106, 38),
(107, 38),
(108, 38),
(109, 39),
(110, 39),
(111, 39),
(112, 39),
(113, 39),
(114, 39),
(115, 39),
(116, 39),
(117, 40),
(118, 41),
(119, 41),
(120, 42),
(121, 42),
(122, 42),
(123, 42),
(124, 42),
(125, 42),
(126, 42),
(127, 42),
(128, 43),
(129, 44),
(130, 44),
(131, 44),
(132, 45),
(133, 46),
(134, 46),
(135, 46),
(136, 46),
(137, 46),
(138, 46),
(139, 47),
(140, 47),
(141, 48),
(142, 48),
(143, 49),
(144, 49),
(145, 49),
(146, 50),
(147, 50),
(148, 50),
(149, 51),
(150, 51),
(151, 51),
(152, 52),
(153, 53),
(154, 53),
(155, 53),
(156, 53),
(157, 53),
(158, 53),
(159, 53),
(160, 53),
(161, 115),
(162, 115),
(163, 115),
(164, 115),
(165, 115),
(166, 115),
(167, 115),
(168, 115),
(169, 54),
(170, 54),
(171, 62),
(172, 62),
(173, 62),
(174, 62),
(175, 62),
(176, 63),
(177, 63),
(178, 63),
(179, 56),
(180, 56),
(181, 56),
(182, 56),
(183, 56),
(184, 56),
(185, 56),
(186, 56),
(187, 64),
(188, 64),
(189, 64),
(190, 65),
(191, 65),
(192, 65),
(193, 65),
(194, 65),
(195, 65),
(196, 65),
(197, 65),
(198, 58),
(199, 58),
(200, 58),
(201, 58),
(202, 58),
(203, 58),
(204, 58),
(205, 58),
(206, 59),
(207, 59),
(208, 59),
(209, 59),
(210, 59),
(211, 60),
(212, 60),
(213, 60),
(214, 60),
(215, 60),
(216, 60),
(217, 60),
(218, 60),
(219, 61),
(220, 66),
(221, 66),
(222, 66),
(223, 67),
(224, 68),
(225, 69),
(226, 69),
(227, 69),
(228, 69),
(229, 70),
(230, 70),
(231, 71),
(232, 71),
(233, 71),
(234, 71),
(235, 72),
(236, 72),
(237, 72),
(238, 72),
(239, 73),
(240, 73),
(241, 73),
(242, 73),
(243, 73),
(244, 73),
(245, 73),
(246, 73),
(247, 74),
(248, 75),
(249, 75),
(250, 75),
(251, 75),
(252, 76),
(253, 76),
(254, 76),
(255, 76),
(256, 76),
(257, 76),
(258, 76),
(259, 77),
(260, 77),
(261, 77),
(262, 77),
(263, 77),
(264, 77),
(265, 77),
(266, 77),
(267, 78),
(268, 78),
(269, 78),
(270, 78),
(271, 78),
(272, 78),
(273, 78),
(274, 78),
(275, 79),
(276, 111),
(277, 111),
(278, 20),
(279, 21),
(280, 22),
(281, 22),
(282, 22),
(283, 22),
(284, 23),
(285, 23),
(286, 23),
(287, 23),
(288, 23),
(289, 23),
(290, 23),
(291, 23),
(292, 30),
(293, 30),
(294, 30),
(295, 30),
(296, 30),
(297, 31),
(298, 31),
(299, 32),
(300, 33),
(301, 34),
(302, 35),
(303, 35),
(304, 35),
(305, 35),
(306, 35),
(307, 35),
(308, 36),
(309, 37),
(310, 37),
(311, 37),
(312, 37),
(313, 37),
(314, 25),
(315, 25),
(316, 25),
(317, 26),
(318, 26),
(319, 26),
(320, 26),
(321, 27),
(322, 27),
(323, 27),
(324, 27),
(325, 27),
(326, 27),
(327, 27);

-- --------------------------------------------------------

--
-- Table structure for table `reviews`
--

CREATE TABLE IF NOT EXISTS `reviews` (
  `reviews_id` int(11) NOT NULL AUTO_INCREMENT,
  `products_id` int(11) NOT NULL,
  `customers_id` int(11) DEFAULT NULL,
  `customers_name` varchar(64) NOT NULL,
  `reviews_rating` int(1) DEFAULT NULL,
  `date_added` datetime DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  `reviews_read` int(5) NOT NULL DEFAULT '0',
  PRIMARY KEY (`reviews_id`),
  KEY `idx_reviews_products_id` (`products_id`),
  KEY `idx_reviews_customers_id` (`customers_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `reviews`
--


-- --------------------------------------------------------

--
-- Table structure for table `reviews_description`
--

CREATE TABLE IF NOT EXISTS `reviews_description` (
  `reviews_id` int(11) NOT NULL,
  `languages_id` int(11) NOT NULL,
  `reviews_text` text NOT NULL,
  PRIMARY KEY (`reviews_id`,`languages_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `reviews_description`
--


-- --------------------------------------------------------

--
-- Table structure for table `sessions`
--

CREATE TABLE IF NOT EXISTS `sessions` (
  `sesskey` varchar(32) NOT NULL,
  `expiry` int(11) unsigned NOT NULL,
  `value` text NOT NULL,
  PRIMARY KEY (`sesskey`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `sessions`
--

INSERT INTO `sessions` (`sesskey`, `expiry`, `value`) VALUES
('34f516f6e9bfdaeaa826f004f767b6c6', 1260426066, 'cart|O:12:"shoppingCart":5:{s:8:"contents";a:0:{}s:5:"total";i:0;s:6:"weight";i:0;s:6:"cartID";N;s:12:"content_type";b:0;}language|s:7:"english";languages_id|s:1:"1";currency|s:3:"USD";navigation|O:17:"navigationHistory":2:{s:4:"path";a:1:{i:0;a:4:{s:4:"page";s:9:"index.php";s:4:"mode";s:6:"NONSSL";s:3:"get";a:1:{s:6:"osCsid";s:32:"34f516f6e9bfdaeaa826f004f767b6c6";}s:4:"post";a:0:{}}}s:8:"snapshot";a:0:{}}'),
('81a53d8f3cfd9259961a73b9266c1f57', 1260493816, 'cart|O:12:"shoppingCart":4:{s:8:"contents";a:0:{}s:5:"total";i:0;s:6:"weight";i:0;s:12:"content_type";b:0;}language|s:7:"english";languages_id|s:1:"1";currency|s:3:"USD";navigation|O:17:"navigationHistory":2:{s:4:"path";a:1:{i:0;a:4:{s:4:"page";s:9:"index.php";s:4:"mode";s:6:"NONSSL";s:3:"get";a:0:{}s:4:"post";a:0:{}}}s:8:"snapshot";a:0:{}}'),
('859cc57da0765871d18ac19fd4d15e46', 1260567165, 'cart|O:12:"shoppingCart":4:{s:8:"contents";a:0:{}s:5:"total";i:0;s:6:"weight";i:0;s:12:"content_type";b:0;}language|s:7:"english";languages_id|s:1:"1";currency|s:3:"USD";navigation|O:17:"navigationHistory":2:{s:4:"path";a:1:{i:0;a:4:{s:4:"page";s:9:"index.php";s:4:"mode";s:6:"NONSSL";s:3:"get";a:0:{}s:4:"post";a:0:{}}}s:8:"snapshot";a:0:{}}'),
('8e50608fd2e0c06b467831f3ccc861a0', 1260605014, 'cart|O:12:"shoppingCart":4:{s:8:"contents";a:0:{}s:5:"total";i:0;s:6:"weight";i:0;s:12:"content_type";b:0;}language|s:7:"english";languages_id|s:1:"1";currency|s:3:"USD";navigation|O:17:"navigationHistory":2:{s:4:"path";a:1:{i:0;a:4:{s:4:"page";s:9:"index.php";s:4:"mode";s:6:"NONSSL";s:3:"get";a:0:{}s:4:"post";a:0:{}}}s:8:"snapshot";a:0:{}}'),
('a9ac4a9532050d4ae46e129f04104564', 1260425518, 'language|s:7:"english";languages_id|s:1:"1";selected_box|s:7:"catalog";admin|a:2:{s:2:"id";s:1:"1";s:8:"username";s:5:"admin";}'),
('cbd4b3f58fa55b83290a8a23fd14e682', 1260494544, 'cart|O:12:"shoppingCart":5:{s:8:"contents";a:0:{}s:5:"total";i:0;s:6:"weight";i:0;s:6:"cartID";N;s:12:"content_type";b:0;}language|s:7:"english";languages_id|s:1:"1";currency|s:3:"USD";navigation|O:17:"navigationHistory":2:{s:4:"path";a:1:{i:0;a:4:{s:4:"page";s:9:"index.php";s:4:"mode";s:6:"NONSSL";s:3:"get";a:0:{}s:4:"post";a:0:{}}}s:8:"snapshot";a:0:{}}'),
('ecea5267a3bbd63cf6f4ae8a34f24c3f', 1260474123, 'cart|O:12:"shoppingCart":5:{s:8:"contents";a:0:{}s:5:"total";i:0;s:6:"weight";i:0;s:6:"cartID";N;s:12:"content_type";b:0;}language|s:7:"english";languages_id|s:1:"1";currency|s:3:"USD";navigation|O:17:"navigationHistory":2:{s:4:"path";a:6:{i:0;a:4:{s:4:"page";s:9:"index.php";s:4:"mode";s:6:"NONSSL";s:3:"get";a:0:{}s:4:"post";a:0:{}}i:1;a:4:{s:4:"page";s:12:"products.php";s:4:"mode";s:6:"NONSSL";s:3:"get";a:1:{s:5:"cPath";s:1:"2";}s:4:"post";a:0:{}}i:2;a:4:{s:4:"page";s:12:"products.php";s:4:"mode";s:6:"NONSSL";s:3:"get";a:1:{s:5:"cPath";s:3:"2_9";}s:4:"post";a:0:{}}i:3;a:4:{s:4:"page";s:12:"products.php";s:4:"mode";s:6:"NONSSL";s:3:"get";a:1:{s:5:"cPath";s:6:"2_9_85";}s:4:"post";a:0:{}}i:4;a:4:{s:4:"page";s:16:"product_info.php";s:4:"mode";s:6:"NONSSL";s:3:"get";a:2:{s:5:"cPath";s:6:"2_9_85";s:11:"products_id";s:2:"38";}s:4:"post";a:0:{}}i:5;a:4:{s:4:"page";s:14:"contact_us.php";s:4:"mode";s:6:"NONSSL";s:3:"get";a:0:{}s:4:"post";a:0:{}}}s:8:"snapshot";a:0:{}}'),
('ee6869c2b2d70b7038c0b2ea49bd8b74', 1260426785, 'cart|O:12:"shoppingCart":5:{s:8:"contents";a:0:{}s:5:"total";i:0;s:6:"weight";i:0;s:6:"cartID";N;s:12:"content_type";b:0;}language|s:7:"english";languages_id|s:1:"1";currency|s:3:"USD";navigation|O:17:"navigationHistory":2:{s:4:"path";a:7:{i:0;a:4:{s:4:"page";s:26:"advanced_search_result.php";s:4:"mode";s:6:"NONSSL";s:3:"get";a:0:{}s:4:"post";a:0:{}}i:1;a:4:{s:4:"page";s:19:"advanced_search.php";s:4:"mode";s:6:"NONSSL";s:3:"get";a:1:{s:6:"osCsid";s:32:"ee6869c2b2d70b7038c0b2ea49bd8b74";}s:4:"post";a:0:{}}i:2;a:4:{s:4:"page";s:9:"login.php";s:4:"mode";s:6:"NONSSL";s:3:"get";a:1:{s:6:"action";s:7:"process";}s:4:"post";a:0:{}}i:3;a:4:{s:4:"page";s:18:"create_account.php";s:4:"mode";s:6:"NONSSL";s:3:"get";a:0:{}s:4:"post";a:0:{}}i:4;a:4:{s:4:"page";s:22:"password_forgotten.php";s:4:"mode";s:6:"NONSSL";s:3:"get";a:1:{s:6:"action";s:7:"process";}s:4:"post";a:0:{}}i:5;a:4:{s:4:"page";s:16:"product_info.php";s:4:"mode";s:6:"NONSSL";s:3:"get";a:2:{s:11:"products_id";s:3:"311";s:6:"action";s:8:"add_mult";}s:4:"post";a:0:{}}i:6;a:4:{s:4:"page";s:17:"shopping_cart.php";s:4:"mode";s:6:"NONSSL";s:3:"get";a:0:{}s:4:"post";a:0:{}}}s:8:"snapshot";a:4:{s:4:"page";s:21:"checkout_shipping.php";s:4:"mode";s:6:"NONSSL";s:3:"get";a:0:{}s:4:"post";a:0:{}}}');

-- --------------------------------------------------------

--
-- Table structure for table `specials`
--

CREATE TABLE IF NOT EXISTS `specials` (
  `specials_id` int(11) NOT NULL AUTO_INCREMENT,
  `products_id` int(11) NOT NULL,
  `specials_new_products_price` decimal(15,4) NOT NULL,
  `specials_date_added` datetime DEFAULT NULL,
  `specials_last_modified` datetime DEFAULT NULL,
  `expires_date` datetime DEFAULT NULL,
  `date_status_change` datetime DEFAULT NULL,
  `status` int(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`specials_id`),
  KEY `idx_specials_products_id` (`products_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

--
-- Dumping data for table `specials`
--


-- --------------------------------------------------------

--
-- Table structure for table `sponsors`
--

CREATE TABLE IF NOT EXISTS `sponsors` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `sp_link` varchar(255) DEFAULT NULL,
  `sp_image` varchar(250) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=24 ;

--
-- Dumping data for table `sponsors`
--

INSERT INTO `sponsors` (`id`, `sp_link`, `sp_image`) VALUES
(22, '#', '02_20_07_35_09_special-2.jpg'),
(21, '#', '02_20_07_34_47_special-1.jpg'),
(23, '#', '02_20_07_35_26_special-3.jpg');

-- --------------------------------------------------------

--
-- Table structure for table `subscribers`
--

CREATE TABLE IF NOT EXISTS `subscribers` (
  `subscribers_id` int(11) NOT NULL AUTO_INCREMENT,
  `customers_id` int(11) NOT NULL DEFAULT '0',
  `subscribers_email_address` varchar(80) NOT NULL DEFAULT '',
  `subscribers_firstname` varchar(40) DEFAULT NULL,
  `subscribers_lastname` varchar(40) DEFAULT NULL,
  `language` varchar(30) DEFAULT NULL,
  `subscribers_gender` char(1) DEFAULT NULL,
  `subscribers_email_type` varchar(5) DEFAULT NULL,
  `entry_date` date DEFAULT '0000-00-00',
  `undeliverable_count` mediumint(11) DEFAULT '0',
  `mail_details_customers_id` int(5) DEFAULT '0',
  `list_number` int(5) DEFAULT '0',
  `source_import` varchar(70) DEFAULT NULL,
  `date_account_created` datetime DEFAULT '0000-00-00 00:00:00',
  `date_account_last_modified` datetime DEFAULT '0000-00-00 00:00:00',
  `customers_newsletter` int(4) DEFAULT NULL,
  `subscribers_blacklist` int(2) DEFAULT '0',
  `subscription_date` datetime DEFAULT '0000-00-00 00:00:00',
  `status_sent1` int(2) DEFAULT '0',
  `host_name` varchar(25) DEFAULT NULL,
  `hardiness_zone` char(3) DEFAULT NULL,
  PRIMARY KEY (`subscribers_id`),
  KEY `list_number` (`list_number`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;

--
-- Dumping data for table `subscribers`
--

INSERT INTO `subscribers` (`subscribers_id`, `customers_id`, `subscribers_email_address`, `subscribers_firstname`, `subscribers_lastname`, `language`, `subscribers_gender`, `subscribers_email_type`, `entry_date`, `undeliverable_count`, `mail_details_customers_id`, `list_number`, `source_import`, `date_account_created`, `date_account_last_modified`, `customers_newsletter`, `subscribers_blacklist`, `subscription_date`, `status_sent1`, `host_name`, `hardiness_zone`) VALUES
(1, 0, 'mr_ubaid@yahoo.com', NULL, 'Ubaid', 'English', NULL, '', '0000-00-00', 0, 0, 0, 'subscribe_newsletter', '2009-03-11 05:04:22', '0000-00-00 00:00:00', 1, 0, '0000-00-00 00:00:00', 1, NULL, ''),
(2, 0, 'abc@yahoo.com', NULL, 'Ubaid', 'English', NULL, '', '0000-00-00', 0, 0, 0, 'subscribe_newsletter', '2009-03-11 05:18:43', '0000-00-00 00:00:00', 1, 0, '0000-00-00 00:00:00', 1, NULL, ''),
(3, 0, '', NULL, '', 'English', NULL, '', '0000-00-00', 0, 0, 0, 'subscribe_newsletter', '2009-12-09 19:52:06', '0000-00-00 00:00:00', 1, 0, '0000-00-00 00:00:00', 1, NULL, '');

-- --------------------------------------------------------

--
-- Table structure for table `subscribers_default`
--

CREATE TABLE IF NOT EXISTS `subscribers_default` (
  `news_id` int(11) NOT NULL AUTO_INCREMENT,
  `module_subscribers` varchar(255) NOT NULL DEFAULT '',
  `header` text NOT NULL,
  `date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `status` tinyint(1) NOT NULL DEFAULT '0',
  `news_order` int(2) NOT NULL DEFAULT '0',
  `unsubscribea` longtext NOT NULL,
  `unsubscribeb` longtext NOT NULL,
  PRIMARY KEY (`news_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;

--
-- Dumping data for table `subscribers_default`
--

INSERT INTO `subscribers_default` (`news_id`, `module_subscribers`, `header`, `date_added`, `status`, `news_order`, `unsubscribea`, `unsubscribeb`) VALUES
(1, 'Module newsletter_subscribers', '', '2002-11-28 09:31:06', 1, 0, 'You can unsubscribe from our newsletter here :', ''),
(2, 'Module newsletter', 'Page Header is written here under Module Newsletter', '2005-01-04 03:51:20', 1, 0, '<DIV>To be unsubscribe click here :</DIV>', '<DIV>Thank you</DIV>'),
(3, 'Module product_notification', '', '2005-01-04 03:53:10', 1, 0, '<DIV>Thanks for using our newsletter its been great.<br /><br />\r\nWe look forward to sending you next months newsletter<br /><br />\r\nTo unsubscribe please click the following :UNSUBSCRIBE AUTOMAGICALLY ADDED HERE</DIV>', '<DIV>All content Copyright &copy; us </DIV>');

-- --------------------------------------------------------

--
-- Table structure for table `subscribers_update`
--

CREATE TABLE IF NOT EXISTS `subscribers_update` (
  `newsletters_id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL DEFAULT '',
  `content` text NOT NULL,
  `module` varchar(255) NOT NULL DEFAULT '',
  `date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_sent` datetime DEFAULT NULL,
  `status` int(1) DEFAULT NULL,
  `locked` int(1) DEFAULT '0',
  `action` text NOT NULL,
  `set_order` int(2) NOT NULL DEFAULT '0',
  PRIMARY KEY (`newsletters_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;

--
-- Dumping data for table `subscribers_update`
--


-- --------------------------------------------------------

--
-- Table structure for table `tax_class`
--

CREATE TABLE IF NOT EXISTS `tax_class` (
  `tax_class_id` int(11) NOT NULL AUTO_INCREMENT,
  `tax_class_title` varchar(32) NOT NULL,
  `tax_class_description` varchar(255) NOT NULL,
  `last_modified` datetime DEFAULT NULL,
  `date_added` datetime NOT NULL,
  PRIMARY KEY (`tax_class_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;

--
-- Dumping data for table `tax_class`
--

INSERT INTO `tax_class` (`tax_class_id`, `tax_class_title`, `tax_class_description`, `last_modified`, `date_added`) VALUES
(1, 'Taxable Goods', 'The following types of products are included non-food, services, etc', '2008-12-31 15:15:53', '2008-12-31 15:15:53');

-- --------------------------------------------------------

--
-- Table structure for table `tax_rates`
--

CREATE TABLE IF NOT EXISTS `tax_rates` (
  `tax_rates_id` int(11) NOT NULL AUTO_INCREMENT,
  `tax_zone_id` int(11) NOT NULL,
  `tax_class_id` int(11) NOT NULL,
  `tax_priority` int(5) DEFAULT '1',
  `tax_rate` decimal(7,4) NOT NULL,
  `tax_description` varchar(255) NOT NULL,
  `last_modified` datetime DEFAULT NULL,
  `date_added` datetime NOT NULL,
  PRIMARY KEY (`tax_rates_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;

--
-- Dumping data for table `tax_rates`
--

INSERT INTO `tax_rates` (`tax_rates_id`, `tax_zone_id`, `tax_class_id`, `tax_priority`, `tax_rate`, `tax_description`, `last_modified`, `date_added`) VALUES
(1, 1, 1, 1, 7.0000, 'FL TAX 7.0%', '2008-12-31 15:15:53', '2008-12-31 15:15:53');

-- --------------------------------------------------------

--
-- Table structure for table `whos_online`
--

CREATE TABLE IF NOT EXISTS `whos_online` (
  `customer_id` int(11) DEFAULT NULL,
  `full_name` varchar(64) NOT NULL,
  `session_id` varchar(128) NOT NULL,
  `ip_address` varchar(15) NOT NULL,
  `time_entry` varchar(14) NOT NULL,
  `time_last_click` varchar(14) NOT NULL,
  `last_page_url` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `whos_online`
--

INSERT INTO `whos_online` (`customer_id`, `full_name`, `session_id`, `ip_address`, `time_entry`, `time_last_click`, `last_page_url`) VALUES
(0, 'Guest', '8e50608fd2e0c06b467831f3ccc861a0', '119.152.239.68', '1260603574', '1260603574', '/sportscomplex/');

-- --------------------------------------------------------

--
-- Table structure for table `zones`
--

CREATE TABLE IF NOT EXISTS `zones` (
  `zone_id` int(11) NOT NULL AUTO_INCREMENT,
  `zone_country_id` int(11) NOT NULL,
  `zone_code` varchar(32) NOT NULL,
  `zone_name` varchar(32) NOT NULL,
  PRIMARY KEY (`zone_id`),
  KEY `idx_zones_country_id` (`zone_country_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=182 ;

--
-- Dumping data for table `zones`
--

INSERT INTO `zones` (`zone_id`, `zone_country_id`, `zone_code`, `zone_name`) VALUES
(1, 223, 'AL', 'Alabama'),
(2, 223, 'AK', 'Alaska'),
(3, 223, 'AS', 'American Samoa'),
(4, 223, 'AZ', 'Arizona'),
(5, 223, 'AR', 'Arkansas'),
(6, 223, 'AF', 'Armed Forces Africa'),
(7, 223, 'AA', 'Armed Forces Americas'),
(8, 223, 'AC', 'Armed Forces Canada'),
(9, 223, 'AE', 'Armed Forces Europe'),
(10, 223, 'AM', 'Armed Forces Middle East'),
(11, 223, 'AP', 'Armed Forces Pacific'),
(12, 223, 'CA', 'California'),
(13, 223, 'CO', 'Colorado'),
(14, 223, 'CT', 'Connecticut'),
(15, 223, 'DE', 'Delaware'),
(16, 223, 'DC', 'District of Columbia'),
(17, 223, 'FM', 'Federated States Of Micronesia'),
(18, 223, 'FL', 'Florida'),
(19, 223, 'GA', 'Georgia'),
(20, 223, 'GU', 'Guam'),
(21, 223, 'HI', 'Hawaii'),
(22, 223, 'ID', 'Idaho'),
(23, 223, 'IL', 'Illinois'),
(24, 223, 'IN', 'Indiana'),
(25, 223, 'IA', 'Iowa'),
(26, 223, 'KS', 'Kansas'),
(27, 223, 'KY', 'Kentucky'),
(28, 223, 'LA', 'Louisiana'),
(29, 223, 'ME', 'Maine'),
(30, 223, 'MH', 'Marshall Islands'),
(31, 223, 'MD', 'Maryland'),
(32, 223, 'MA', 'Massachusetts'),
(33, 223, 'MI', 'Michigan'),
(34, 223, 'MN', 'Minnesota'),
(35, 223, 'MS', 'Mississippi'),
(36, 223, 'MO', 'Missouri'),
(37, 223, 'MT', 'Montana'),
(38, 223, 'NE', 'Nebraska'),
(39, 223, 'NV', 'Nevada'),
(40, 223, 'NH', 'New Hampshire'),
(41, 223, 'NJ', 'New Jersey'),
(42, 223, 'NM', 'New Mexico'),
(43, 223, 'NY', 'New York'),
(44, 223, 'NC', 'North Carolina'),
(45, 223, 'ND', 'North Dakota'),
(46, 223, 'MP', 'Northern Mariana Islands'),
(47, 223, 'OH', 'Ohio'),
(48, 223, 'OK', 'Oklahoma'),
(49, 223, 'OR', 'Oregon'),
(50, 223, 'PW', 'Palau'),
(51, 223, 'PA', 'Pennsylvania'),
(52, 223, 'PR', 'Puerto Rico'),
(53, 223, 'RI', 'Rhode Island'),
(54, 223, 'SC', 'South Carolina'),
(55, 223, 'SD', 'South Dakota'),
(56, 223, 'TN', 'Tennessee'),
(57, 223, 'TX', 'Texas'),
(58, 223, 'UT', 'Utah'),
(59, 223, 'VT', 'Vermont'),
(60, 223, 'VI', 'Virgin Islands'),
(61, 223, 'VA', 'Virginia'),
(62, 223, 'WA', 'Washington'),
(63, 223, 'WV', 'West Virginia'),
(64, 223, 'WI', 'Wisconsin'),
(65, 223, 'WY', 'Wyoming'),
(66, 38, 'AB', 'Alberta'),
(67, 38, 'BC', 'British Columbia'),
(68, 38, 'MB', 'Manitoba'),
(69, 38, 'NF', 'Newfoundland'),
(70, 38, 'NB', 'New Brunswick'),
(71, 38, 'NS', 'Nova Scotia'),
(72, 38, 'NT', 'Northwest Territories'),
(73, 38, 'NU', 'Nunavut'),
(74, 38, 'ON', 'Ontario'),
(75, 38, 'PE', 'Prince Edward Island'),
(76, 38, 'QC', 'Quebec'),
(77, 38, 'SK', 'Saskatchewan'),
(78, 38, 'YT', 'Yukon Territory'),
(79, 81, 'NDS', 'Niedersachsen'),
(80, 81, 'BAW', 'Baden-Württemberg'),
(81, 81, 'BAY', 'Bayern'),
(82, 81, 'BER', 'Berlin'),
(83, 81, 'BRG', 'Brandenburg'),
(84, 81, 'BRE', 'Bremen'),
(85, 81, 'HAM', 'Hamburg'),
(86, 81, 'HES', 'Hessen'),
(87, 81, 'MEC', 'Mecklenburg-Vorpommern'),
(88, 81, 'NRW', 'Nordrhein-Westfalen'),
(89, 81, 'RHE', 'Rheinland-Pfalz'),
(90, 81, 'SAR', 'Saarland'),
(91, 81, 'SAS', 'Sachsen'),
(92, 81, 'SAC', 'Sachsen-Anhalt'),
(93, 81, 'SCN', 'Schleswig-Holstein'),
(94, 81, 'THE', 'Thüringen'),
(95, 14, 'WI', 'Wien'),
(96, 14, 'NO', 'Niederösterreich'),
(97, 14, 'OO', 'Oberösterreich'),
(98, 14, 'SB', 'Salzburg'),
(99, 14, 'KN', 'Kärnten'),
(100, 14, 'ST', 'Steiermark'),
(101, 14, 'TI', 'Tirol'),
(102, 14, 'BL', 'Burgenland'),
(103, 14, 'VB', 'Voralberg'),
(104, 204, 'AG', 'Aargau'),
(105, 204, 'AI', 'Appenzell Innerrhoden'),
(106, 204, 'AR', 'Appenzell Ausserrhoden'),
(107, 204, 'BE', 'Bern'),
(108, 204, 'BL', 'Basel-Landschaft'),
(109, 204, 'BS', 'Basel-Stadt'),
(110, 204, 'FR', 'Freiburg'),
(111, 204, 'GE', 'Genf'),
(112, 204, 'GL', 'Glarus'),
(113, 204, 'JU', 'Graubünden'),
(114, 204, 'JU', 'Jura'),
(115, 204, 'LU', 'Luzern'),
(116, 204, 'NE', 'Neuenburg'),
(117, 204, 'NW', 'Nidwalden'),
(118, 204, 'OW', 'Obwalden'),
(119, 204, 'SG', 'St. Gallen'),
(120, 204, 'SH', 'Schaffhausen'),
(121, 204, 'SO', 'Solothurn'),
(122, 204, 'SZ', 'Schwyz'),
(123, 204, 'TG', 'Thurgau'),
(124, 204, 'TI', 'Tessin'),
(125, 204, 'UR', 'Uri'),
(126, 204, 'VD', 'Waadt'),
(127, 204, 'VS', 'Wallis'),
(128, 204, 'ZG', 'Zug'),
(129, 204, 'ZH', 'Zürich'),
(130, 195, 'A Coruña', 'A Coruña'),
(131, 195, 'Alava', 'Alava'),
(132, 195, 'Albacete', 'Albacete'),
(133, 195, 'Alicante', 'Alicante'),
(134, 195, 'Almeria', 'Almeria'),
(135, 195, 'Asturias', 'Asturias'),
(136, 195, 'Avila', 'Avila'),
(137, 195, 'Badajoz', 'Badajoz'),
(138, 195, 'Baleares', 'Baleares'),
(139, 195, 'Barcelona', 'Barcelona'),
(140, 195, 'Burgos', 'Burgos'),
(141, 195, 'Caceres', 'Caceres'),
(142, 195, 'Cadiz', 'Cadiz'),
(143, 195, 'Cantabria', 'Cantabria'),
(144, 195, 'Castellon', 'Castellon'),
(145, 195, 'Ceuta', 'Ceuta'),
(146, 195, 'Ciudad Real', 'Ciudad Real'),
(147, 195, 'Cordoba', 'Cordoba'),
(148, 195, 'Cuenca', 'Cuenca'),
(149, 195, 'Girona', 'Girona'),
(150, 195, 'Granada', 'Granada'),
(151, 195, 'Guadalajara', 'Guadalajara'),
(152, 195, 'Guipuzcoa', 'Guipuzcoa'),
(153, 195, 'Huelva', 'Huelva'),
(154, 195, 'Huesca', 'Huesca'),
(155, 195, 'Jaen', 'Jaen'),
(156, 195, 'La Rioja', 'La Rioja'),
(157, 195, 'Las Palmas', 'Las Palmas'),
(158, 195, 'Leon', 'Leon'),
(159, 195, 'Lleida', 'Lleida'),
(160, 195, 'Lugo', 'Lugo'),
(161, 195, 'Madrid', 'Madrid'),
(162, 195, 'Malaga', 'Malaga'),
(163, 195, 'Melilla', 'Melilla'),
(164, 195, 'Murcia', 'Murcia'),
(165, 195, 'Navarra', 'Navarra'),
(166, 195, 'Ourense', 'Ourense'),
(167, 195, 'Palencia', 'Palencia'),
(168, 195, 'Pontevedra', 'Pontevedra'),
(169, 195, 'Salamanca', 'Salamanca'),
(170, 195, 'Santa Cruz de Tenerife', 'Santa Cruz de Tenerife'),
(171, 195, 'Segovia', 'Segovia'),
(172, 195, 'Sevilla', 'Sevilla'),
(173, 195, 'Soria', 'Soria'),
(174, 195, 'Tarragona', 'Tarragona'),
(175, 195, 'Teruel', 'Teruel'),
(176, 195, 'Toledo', 'Toledo'),
(177, 195, 'Valencia', 'Valencia'),
(178, 195, 'Valladolid', 'Valladolid'),
(179, 195, 'Vizcaya', 'Vizcaya'),
(180, 195, 'Zamora', 'Zamora'),
(181, 195, 'Zaragoza', 'Zaragoza');

-- --------------------------------------------------------

--
-- Table structure for table `zones_to_geo_zones`
--

CREATE TABLE IF NOT EXISTS `zones_to_geo_zones` (
  `association_id` int(11) NOT NULL AUTO_INCREMENT,
  `zone_country_id` int(11) NOT NULL,
  `zone_id` int(11) DEFAULT NULL,
  `geo_zone_id` int(11) DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  `date_added` datetime NOT NULL,
  PRIMARY KEY (`association_id`),
  KEY `idx_zones_to_geo_zones_country_id` (`zone_country_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;

--
-- Dumping data for table `zones_to_geo_zones`
--

INSERT INTO `zones_to_geo_zones` (`association_id`, `zone_country_id`, `zone_id`, `geo_zone_id`, `last_modified`, `date_added`) VALUES
(1, 223, 18, 1, NULL, '2008-12-31 15:15:53');
