-- MySQL dump 10.13  Distrib 5.7.44, for Linux (x86_64)
--
-- Host: localhost    Database: wayne1_zc1
-- ------------------------------------------------------
-- Server version	5.7.44

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

--
-- Table structure for table `zen_address_book`
--

DROP TABLE IF EXISTS `zen_address_book`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_address_book` (
  `address_book_id` int(11) NOT NULL AUTO_INCREMENT,
  `customers_id` int(11) NOT NULL DEFAULT '0',
  `entry_gender` char(1) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `entry_company` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
  `entry_firstname` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `entry_lastname` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `entry_street_address` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `entry_suburb` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `entry_postcode` varchar(10) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `entry_city` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `entry_state` varchar(32) COLLATE utf8_unicode_ci 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_zen` (`customers_id`)
) ENGINE=MyISAM AUTO_INCREMENT=30 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_address_book`
--

LOCK TABLES `zen_address_book` WRITE;
/*!40000 ALTER TABLE `zen_address_book` DISABLE KEYS */;
INSERT INTO `zen_address_book` VALUES (17,17,'m','','Juan','Bautista','12345 N Commercial Blvd','','33186','Miami','',223,18),(18,18,'',NULL,'JOHN','BRAKE','9079 PIERSON RD','','48836','FOWLERVILLE','',223,33),(19,19,'m','','Wayne','Sauvola','2210 Ridgewood Circle','','33411','Royal Palm Beach','',223,18),(20,20,'m','Ajaks','John','Brake','9079 Pierson Rd','','48836','Fowlerville','',223,33),(21,21,'m','','John','Brake','9079 Pierson Rd','','48836','Fowlerville','',223,33),(22,22,'',NULL,'Jennifer','Ware','1103 Sierra Country Court','','89460','Gardnerville','',223,39),(23,23,'m','','Joe','Buyer','1234 E Street','','33186','Miami','',223,18),(24,24,'m','','Phil','Frey','209 Santa Rosa Drive','Apartment C','43213','Columbus','',223,47),(25,25,'',NULL,'Johannes','Muelmenstaedt','1830 Zapo St','','92014','Del Mar','',223,12),(26,26,'m','Avenge Inc.','Randy','Cupit','105 Executive Dr.','STE 200','20166','Dulles','',223,61),(27,26,'m','AeroPremier Jet Center','Brian','Bowman/N6271B','New Orleans Lakefront Airport','6401 Stars and Stripes Blvd.','70126','New Orleans','',223,28),(28,27,'m','','Brad','Swentor','PO BOX 73851','','30271','Newnan','',223,19),(29,28,'f','','Marta','Majong','4567 B Street','','33185','Miami','',223,18);
/*!40000 ALTER TABLE `zen_address_book` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_address_format`
--

DROP TABLE IF EXISTS `zen_address_format`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_address_format` (
  `address_format_id` int(11) NOT NULL AUTO_INCREMENT,
  `address_format` varchar(128) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `address_summary` varchar(48) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`address_format_id`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_address_format`
--

LOCK TABLES `zen_address_format` WRITE;
/*!40000 ALTER TABLE `zen_address_format` DISABLE KEYS */;
INSERT INTO `zen_address_format` 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'),(6,'$firstname $lastname$cr$streets$cr$city$cr$state$cr$postcode$cr$country','$postcode / $country');
/*!40000 ALTER TABLE `zen_address_format` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_admin`
--

DROP TABLE IF EXISTS `zen_admin`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_admin` (
  `admin_id` int(11) NOT NULL AUTO_INCREMENT,
  `admin_name` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `admin_email` varchar(96) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `admin_pass` varchar(40) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `admin_level` tinyint(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`admin_id`),
  KEY `idx_admin_name_zen` (`admin_name`),
  KEY `idx_admin_email_zen` (`admin_email`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_admin`
--

LOCK TABLES `zen_admin` WRITE;
/*!40000 ALTER TABLE `zen_admin` DISABLE KEYS */;
INSERT INTO `zen_admin` VALUES (1,'wayne1','wayne@aaasurvival.com','0cff1501c282fc2e8889765bcbfbddb7:d2',0);
/*!40000 ALTER TABLE `zen_admin` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_admin_activity_log`
--

DROP TABLE IF EXISTS `zen_admin_activity_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_admin_activity_log` (
  `log_id` int(15) NOT NULL AUTO_INCREMENT,
  `access_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `admin_id` int(11) NOT NULL DEFAULT '0',
  `page_accessed` varchar(80) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `page_parameters` text COLLATE utf8_unicode_ci,
  `ip_address` varchar(15) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`log_id`),
  KEY `idx_page_accessed_zen` (`page_accessed`),
  KEY `idx_access_date_zen` (`access_date`),
  KEY `idx_ip_zen` (`ip_address`)
) ENGINE=MyISAM AUTO_INCREMENT=5289 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_admin_activity_log`
--

LOCK TABLES `zen_admin_activity_log` WRITE;
/*!40000 ALTER TABLE `zen_admin_activity_log` DISABLE KEYS */;
INSERT INTO `zen_admin_activity_log` VALUES (4387,'2010-06-22 08:31:16',1,'store_manager.php','','67.142.161.23'),(4388,'2010-06-23 22:59:46',0,'login.php ','','67.142.161.20'),(4389,'2010-06-23 23:00:19',0,'login.php wayne1','','67.142.161.20'),(4390,'2010-06-23 23:00:31',1,'customers.php','search=Cupit&origin=index&','67.142.161.20'),(4391,'2010-06-23 23:00:40',1,'customers.php','','67.142.161.20'),(4392,'2010-06-23 23:00:49',1,'customers.php','search=Cupit&origin=index&','67.142.161.20'),(4393,'2010-06-25 21:28:32',0,'login.php ','','67.142.161.23'),(4394,'2010-06-25 21:29:04',0,'login.php wayne1','','67.142.161.23'),(4395,'2010-06-25 21:29:21',0,'login.php wayne1','','67.142.161.23'),(4396,'2010-06-25 21:29:36',1,'stats_products_viewed.php','','67.142.161.23'),(4397,'2010-06-25 21:30:01',1,'categories.php','cPath=16&pID=43&','67.142.161.23'),(4398,'2010-06-25 21:30:07',1,'stats_products_viewed.php','','67.142.161.23'),(4399,'2010-06-25 21:31:00',1,'logoff.php','','67.142.161.23'),(4400,'2010-06-25 21:31:00',0,'login.php ','','67.142.161.23'),(4401,'2010-06-28 22:13:32',0,'login.php ','','67.142.161.24'),(4402,'2010-06-28 22:13:55',0,'login.php wayne1','','67.142.161.24'),(4403,'2010-06-28 22:18:32',1,'categories.php','','67.142.161.24'),(4404,'2010-06-28 22:18:59',1,'categories.php','cPath=5&','67.142.161.24'),(4405,'2010-06-28 22:19:11',1,'categories.php','','67.142.161.24'),(4406,'2010-06-28 22:19:19',1,'categories.php','cPath=&cID=5&action=edit_category_meta_tags&','67.142.161.24'),(4407,'2010-06-28 22:19:48',1,'categories.php','','67.142.161.24'),(4408,'2010-06-28 22:19:52',1,'categories.php','cPath=5&','67.142.161.24'),(4409,'2010-06-28 22:19:57',1,'categories.php','cPath=5_8&','67.142.161.24'),(4410,'2010-06-28 22:20:11',1,'product.php','page=1&product_type=1&cPath=5_8&pID=25&action=new_product_meta_tags&','67.142.161.24'),(4411,'2010-07-07 18:08:29',0,'login.php ','','67.142.161.27'),(4412,'2010-07-07 18:08:44',0,'login.php wayne1','','67.142.161.27'),(4413,'2010-07-07 18:08:50',1,'configuration.php','gID=19&','67.142.161.27'),(4414,'2010-07-07 18:19:25',1,'modules.php','set=ordertotal&','67.142.161.27'),(4415,'2010-07-07 18:19:44',1,'stats_customers.php','','67.142.161.27'),(4416,'2010-07-11 16:06:23',0,'login.php ','','67.142.161.21'),(4417,'2010-07-11 18:34:35',0,'login.php ','','67.142.161.22'),(4418,'2010-07-11 18:35:12',0,'login.php pealer1','','67.142.161.22'),(4419,'2010-07-11 18:35:31',0,'login.php pealer1','','67.142.161.22'),(4420,'2010-07-11 18:35:37',0,'login.php pealer1','','67.142.161.22'),(4421,'2010-07-11 18:35:56',0,'login.php pealer1','','67.142.161.22'),(4422,'2010-07-11 21:57:25',0,'login.php ','','67.142.161.19'),(4423,'2010-07-11 21:57:44',0,'login.php wayne1','','67.142.161.19'),(4424,'2010-07-11 21:57:54',1,'customers.php','search=Swentor&origin=index&','67.142.161.19'),(4425,'2010-07-11 21:58:03',1,'customers.php','search=Swentor&origin=index&page=1&cID=27&action=edit&','67.142.161.19'),(4426,'2010-07-11 21:58:24',1,'customers.php','search=Swentor&origin=index&','67.142.161.19'),(4427,'2010-07-11 21:58:44',1,'customers.php','','67.142.161.19'),(4428,'2010-07-11 21:58:50',1,'customers.php','page=1&cID=25&','67.142.161.19'),(4429,'2010-07-11 21:58:59',1,'customers.php','page=1&cID=26&','67.142.161.19'),(4430,'2010-07-11 21:59:04',1,'customers.php','page=1&cID=27&','67.142.161.19'),(4431,'2010-07-11 21:59:18',1,'customers.php','page=1&cID=27&action=edit&','67.142.161.19'),(4432,'2010-07-11 22:10:36',1,'categories.php','','67.142.161.19'),(4433,'2010-07-11 22:10:44',1,'categories.php','cPath=2&','67.142.161.19'),(4434,'2010-07-11 22:10:49',1,'categories.php','product_type=1&cPath=2&action=new_product&x=56&y=6&','67.142.161.19'),(4435,'2010-07-11 22:10:50',1,'product.php','product_type=1&cPath=2&action=new_product&x=56&y=6&','67.142.161.19'),(4436,'2010-07-11 22:27:35',1,'product.php','cPath=2&product_type=1&action=new_product_preview&','67.142.161.19'),(4437,'2010-07-11 22:27:48',1,'product.php','cPath=2&product_type=1&action=insert_product&','67.142.161.19'),(4438,'2010-07-11 22:27:49',1,'categories.php','cPath=2&pID=71&','67.142.161.19'),(4439,'2010-07-13 20:56:10',0,'login.php ','','67.142.161.22'),(4440,'2010-07-13 20:56:30',0,'login.php wayne1','','67.142.161.22'),(4441,'2010-07-13 20:56:37',1,'developers_tool_kit.php','','67.142.161.22'),(4442,'2010-07-13 20:57:09',1,'developers_tool_kit.php','action=locate_configuration&','67.142.161.22'),(4443,'2010-07-13 20:57:21',1,'developers_tool_kit.php','action=locate_all_files&','67.142.161.22'),(4444,'2010-07-13 22:16:22',0,'login.php ','','67.142.161.27'),(4445,'2010-07-13 22:16:40',0,'login.php wayne1','','67.142.161.27'),(4446,'2010-07-13 22:17:32',1,'sqlpatch.php','','67.142.161.27'),(4447,'2010-07-13 22:24:15',0,'login.php ','','67.142.161.27'),(4448,'2010-07-13 22:24:38',0,'login.php wayne1','','67.142.161.27'),(4449,'2010-07-13 22:24:46',1,'sqlpatch.php','','67.142.161.27'),(4450,'2010-07-13 22:25:39',1,'sqlpatch.php','action=execute&','67.142.161.27'),(4451,'2010-07-13 22:27:24',1,'alt_nav.php','','67.142.161.27'),(4452,'2010-07-13 22:28:09',1,'sitemapxml.php','','67.142.161.27'),(4453,'2010-07-13 22:28:39',1,'configuration.php','gID=32&','67.142.161.27'),(4454,'2010-07-13 22:29:43',1,'configuration.php','gID=32&cID=709&action=edit&','67.142.161.27'),(4455,'2010-07-13 22:29:51',1,'configuration.php','gID=32&cID=709&','67.142.161.27'),(4456,'2010-07-13 22:29:58',1,'sitemapxml.php','','67.142.161.27'),(4457,'2010-07-13 22:53:30',1,'configuration.php','gID=32&','67.142.161.27'),(4458,'2010-07-13 22:53:46',1,'configuration.php','gID=32&cID=707&action=edit&','67.142.161.27'),(4459,'2010-07-13 22:53:51',1,'configuration.php','gID=32&cID=708&action=edit&','67.142.161.27'),(4460,'2010-07-13 22:54:42',1,'configuration.php','gID=32&cID=707&action=edit&','67.142.161.27'),(4461,'2010-07-13 22:54:42',1,'configuration.php','gID=32&cID=707&','67.142.161.27'),(4462,'2010-07-13 22:54:48',1,'configuration.php','gID=32&cID=707&action=edit&','67.142.161.27'),(4463,'2010-07-13 22:55:01',1,'configuration.php','gID=32&cID=707&','67.142.161.27'),(4464,'2010-07-13 22:55:06',1,'alt_nav.php','','67.142.161.27'),(4465,'2010-07-13 22:55:46',1,'sitemapxml.php','','67.142.161.27'),(4466,'2010-07-14 07:22:58',0,'login.php ','','67.142.161.23'),(4467,'2010-07-14 07:22:59',0,'login.php ','','67.142.161.23'),(4468,'2010-07-14 07:23:13',0,'login.php wayne1','','67.142.161.23'),(4469,'2010-07-14 07:24:32',1,'developers_tool_kit.php','','67.142.161.23'),(4470,'2010-07-14 07:24:44',1,'developers_tool_kit.php','action=locate_configuration&','67.142.161.23'),(4471,'2010-07-14 07:39:13',1,'developers_tool_kit.php','','67.142.161.23'),(4472,'2010-07-14 07:39:28',1,'developers_tool_kit.php','action=locate_all_files&','67.142.161.23'),(4473,'2010-07-14 07:40:01',1,'developers_tool_kit.php','action=locate_all_files&','67.142.161.23'),(4474,'2010-07-14 07:49:31',1,'product_types.php','','67.142.161.23'),(4475,'2010-07-14 07:49:45',1,'product_types.php','page=1&ptID=1&action=layout&','67.142.161.23'),(4476,'2010-07-14 07:50:22',1,'product_types.php','ptID=1&cID=85&action=layout_edit&','67.142.161.23'),(4477,'2010-07-14 07:50:30',1,'product_types.php','ptID=1&cID=85&action=layout_save&','67.142.161.23'),(4478,'2010-07-14 07:50:31',1,'product_types.php','gID=&cID=85&ptID=1&action=layout&','67.142.161.23'),(4479,'2010-07-14 07:50:50',1,'product_types.php','ptID=1&cID=84&action=layout_edit&','67.142.161.23'),(4480,'2010-07-14 07:50:54',1,'product_types.php','ptID=1&cID=84&action=layout_save&','67.142.161.23'),(4481,'2010-07-14 07:50:55',1,'product_types.php','gID=&cID=84&ptID=1&action=layout&','67.142.161.23'),(4482,'2010-07-14 07:52:46',1,'product_types.php','ptID=1&cID=81&action=layout_edit&','67.142.161.23'),(4483,'2010-07-14 07:52:58',1,'product_types.php','ptID=1&cID=81&action=layout_save&','67.142.161.23'),(4484,'2010-07-14 07:52:58',1,'product_types.php','gID=&cID=81&ptID=1&action=layout&','67.142.161.23'),(4485,'2010-07-14 07:53:08',1,'product_types.php','','67.142.161.23'),(4486,'2010-07-14 07:53:14',1,'product_types.php','page=1&ptID=4&','67.142.161.23'),(4487,'2010-07-14 07:53:21',1,'product_types.php','page=1&ptID=1&','67.142.161.23'),(4488,'2010-07-14 07:53:26',1,'product_types.php','page=1&ptID=1&action=edit&','67.142.161.23'),(4489,'2010-07-14 07:53:39',1,'product_types.php','','67.142.161.23'),(4490,'2010-07-14 07:53:43',1,'product_types.php','page=1&ptID=1&action=edit&','67.142.161.23'),(4491,'2010-07-14 07:53:52',1,'product_types.php','page=1&ptID=1&','67.142.161.23'),(4492,'2010-07-14 07:54:08',1,'product_types.php','page=1&ptID=1&action=layout&','67.142.161.23'),(4493,'2010-07-14 07:58:05',1,'product_types.php','ptID=1&cID=81&action=layout_edit&','67.142.161.23'),(4494,'2010-07-14 07:58:11',1,'product_types.php','ptID=1&cID=81&action=layout_save&','67.142.161.23'),(4495,'2010-07-14 07:58:12',1,'product_types.php','gID=&cID=81&ptID=1&action=layout&','67.142.161.23'),(4496,'2010-07-14 07:58:28',1,'alt_nav.php','','67.142.161.23'),(4497,'2010-07-14 08:07:05',1,'developers_tool_kit.php','','67.142.161.23'),(4498,'2010-07-14 08:07:22',1,'developers_tool_kit.php','action=locate_configuration&','67.142.161.23'),(4499,'2010-07-14 08:10:59',1,'developers_tool_kit.php','action=locate_configuration&','67.142.161.23'),(4500,'2010-07-14 08:28:57',1,'product_types.php','','67.142.161.23'),(4501,'2010-07-14 08:29:03',1,'product_types.php','page=1&ptID=1&action=layout&','67.142.161.23'),(4502,'2010-07-14 08:29:34',1,'categories.php','','67.142.161.23'),(4503,'2010-07-14 08:29:38',1,'categories.php','cPath=16&','67.142.161.23'),(4504,'2010-07-14 08:29:48',1,'product.php','page=1&product_type=1&cPath=16&pID=43&action=new_product_meta_tags&','67.142.161.23'),(4505,'2010-07-14 08:31:06',1,'product.php','cPath=16&product_type=1&pID=43&action=new_product_preview_meta_tags&page=1&','67.142.161.23'),(4506,'2010-07-14 08:31:14',1,'product.php','cPath=16&product_type=1&pID=43&action=update_product_meta_tags&page=1&','67.142.161.23'),(4507,'2010-07-14 08:31:14',1,'categories.php','cPath=16&pID=43&page=1&','67.142.161.23'),(4508,'2010-07-14 08:34:21',1,'categories.php','cID=16&','67.142.161.23'),(4509,'2010-07-14 08:34:24',1,'categories.php','cPath=5&','67.142.161.23'),(4510,'2010-07-14 08:34:34',1,'categories.php','cPath=5&cID=8&action=edit_category_meta_tags&','67.142.161.23'),(4511,'2010-07-14 08:34:50',1,'categories.php','cPath=5&cID=8&','67.142.161.23'),(4512,'2010-07-14 08:35:18',1,'categories.php','cPath=5_8&','67.142.161.23'),(4513,'2010-07-14 08:35:24',1,'product.php','page=1&product_type=1&cPath=5_8&pID=25&action=new_product&','67.142.161.23'),(4514,'2010-07-14 08:35:24',1,'product.php','page=1&product_type=1&cPath=5_8&pID=25&action=new_product_meta_tags&','67.142.161.23'),(4515,'2010-07-14 08:56:41',1,'product.php','cPath=5_8&product_type=1&pID=25&action=new_product_preview_meta_tags&page=1&','67.142.161.23'),(4516,'2010-07-14 08:56:48',1,'product.php','cPath=5_8&product_type=1&pID=25&action=update_product_meta_tags&page=1&','67.142.161.23'),(4517,'2010-07-14 08:56:49',1,'categories.php','cPath=5_8&pID=25&page=1&','67.142.161.23'),(4518,'2010-07-14 08:58:29',1,'product.php','page=1&product_type=1&cPath=5_8&pID=25&action=new_product&','67.142.161.23'),(4519,'2010-07-14 08:58:30',1,'product.php','page=1&product_type=1&cPath=5_8&pID=25&action=new_product_meta_tags&','67.142.161.23'),(4520,'2010-07-14 08:58:55',1,'product.php','cPath=5_8&product_type=1&pID=25&action=new_product_preview_meta_tags&page=1&','67.142.161.23'),(4521,'2010-07-14 08:59:46',1,'product.php','cPath=5_8&product_type=1&pID=25&action=update_product_meta_tags&page=1&','67.142.161.23'),(4522,'2010-07-14 08:59:46',1,'categories.php','cPath=5_8&pID=25&page=1&','67.142.161.23'),(4523,'2010-07-14 09:00:14',1,'product.php','page=1&product_type=1&cPath=5_8&pID=25&action=new_product_meta_tags&','67.142.161.23'),(4524,'2010-07-14 09:00:42',1,'product.php','cPath=5_8&product_type=1&pID=25&action=new_product_preview_meta_tags&page=1&','67.142.161.23'),(4525,'2010-07-14 09:00:57',1,'product.php','cPath=5_8&product_type=1&pID=25&action=update_product_meta_tags&page=1&','67.142.161.23'),(4526,'2010-07-14 09:00:58',1,'categories.php','cPath=5_8&pID=25&page=1&','67.142.161.23'),(4527,'2010-07-14 09:02:21',1,'product.php','page=1&product_type=1&cPath=5_8&pID=25&action=new_product&','67.142.161.23'),(4528,'2010-07-14 09:02:21',1,'product.php','page=1&product_type=1&cPath=5_8&pID=25&action=new_product_meta_tags&','67.142.161.23'),(4529,'2010-07-14 09:02:55',1,'product.php','cPath=5_8&product_type=1&pID=25&action=new_product_preview_meta_tags&page=1&','67.142.161.23'),(4530,'2010-07-14 09:02:59',1,'product.php','cPath=5_8&product_type=1&pID=25&action=update_product_meta_tags&page=1&','67.142.161.23'),(4531,'2010-07-14 09:02:59',1,'categories.php','cPath=5_8&pID=25&page=1&','67.142.161.23'),(4532,'2010-07-14 09:14:01',0,'login.php ','','67.142.161.23'),(4533,'2010-07-14 09:14:03',0,'login.php ','','67.142.161.23'),(4534,'2010-07-14 09:14:19',0,'login.php wayne1','','67.142.161.23'),(4535,'2010-07-14 09:14:24',1,'categories.php','','67.142.161.23'),(4536,'2010-07-14 09:14:29',1,'categories.php','cPath=5&','67.142.161.23'),(4537,'2010-07-14 09:14:32',1,'categories.php','cPath=5_8&','67.142.161.23'),(4538,'2010-07-14 09:14:39',1,'product.php','page=1&product_type=1&cPath=5_8&pID=25&action=new_product_meta_tags&','67.142.161.23'),(4539,'2010-07-14 09:15:56',1,'product.php','cPath=5_8&product_type=1&pID=25&action=new_product_preview_meta_tags&page=1&','67.142.161.23'),(4540,'2010-07-14 09:16:01',1,'product.php','cPath=5_8&product_type=1&pID=25&action=update_product_meta_tags&page=1&','67.142.161.23'),(4541,'2010-07-14 09:16:01',1,'categories.php','cPath=5_8&pID=25&page=1&','67.142.161.23'),(4542,'2010-07-14 09:16:45',1,'product.php','page=1&product_type=1&cPath=5_8&pID=25&action=new_product_meta_tags&','67.142.161.23'),(4543,'2010-07-14 09:16:53',1,'product.php','cPath=5_8&product_type=1&pID=25&action=new_product_preview_meta_tags&page=1&','67.142.161.23'),(4544,'2010-07-14 09:16:57',1,'product.php','cPath=5_8&product_type=1&pID=25&action=update_product_meta_tags&page=1&','67.142.161.23'),(4545,'2010-07-14 09:16:57',1,'categories.php','cPath=5_8&pID=25&page=1&','67.142.161.23'),(4546,'2010-07-14 15:04:01',0,'login.php ','','67.142.161.21'),(4547,'2010-07-14 15:04:19',0,'login.php wayne1','','67.142.161.21'),(4548,'2010-07-14 15:05:25',1,'server_info.php','','67.142.161.21'),(4549,'2010-07-14 15:17:18',1,'modules.php','set=payment&','67.142.161.21'),(4550,'2010-07-14 15:17:32',1,'modules.php','set=payment&module=paypaldp&','67.142.161.21'),(4551,'2010-07-14 15:17:38',1,'modules.php','set=payment&module=paypaldp&action=edit&','67.142.161.21'),(4552,'2010-07-14 15:18:42',1,'modules.php','set=payment&module=paypalwpp&','67.142.161.21'),(4553,'2010-07-14 15:19:50',1,'modules.php','set=shipping&','67.142.161.21'),(4554,'2010-07-14 15:21:28',1,'modules.php','set=shipping&module=fedexground&','67.142.161.21'),(4555,'2010-07-14 15:22:36',1,'modules.php','set=shipping&module=fedexexpress&','67.142.161.21'),(4556,'2010-07-14 15:22:41',1,'modules.php','set=shipping&module=fedexexpress&action=remove&','67.142.161.21'),(4557,'2010-07-14 15:22:41',1,'modules.php','set=shipping&module=fedexexpress&','67.142.161.21'),(4558,'2010-07-14 15:22:45',1,'modules.php','set=shipping&module=fedexground&','67.142.161.21'),(4559,'2010-07-14 15:22:48',1,'modules.php','set=shipping&module=fedexground&action=remove&','67.142.161.21'),(4560,'2010-07-14 15:22:49',1,'modules.php','set=shipping&module=fedexground&','67.142.161.21'),(4561,'2010-07-14 15:22:52',1,'modules.php','set=shipping&module=ups&','67.142.161.21'),(4562,'2010-07-14 15:23:29',1,'modules.php','set=shipping&module=ups&action=edit&','67.142.161.21'),(4563,'2010-07-14 15:23:52',1,'modules.php','set=shipping&module=ups&action=save&','67.142.161.21'),(4564,'2010-07-14 15:23:53',1,'modules.php','set=shipping&module=ups&','67.142.161.21'),(4565,'2010-07-14 15:24:01',1,'modules.php','set=shipping&module=ups&action=remove&','67.142.161.21'),(4566,'2010-07-14 15:24:01',1,'modules.php','set=shipping&module=ups&','67.142.161.21'),(4567,'2010-07-14 15:24:06',1,'alt_nav.php','','67.142.161.21'),(4568,'2010-07-14 15:24:11',1,'modules.php','set=payment&','67.142.161.21'),(4569,'2010-07-14 15:24:17',1,'modules.php','set=payment&module=moneyorder&','67.142.161.21'),(4570,'2010-07-14 15:24:29',1,'modules.php','set=payment&module=moneyorder&action=remove&','67.142.161.21'),(4571,'2010-07-14 15:24:29',1,'modules.php','set=payment&module=moneyorder&','67.142.161.21'),(4572,'2010-07-14 15:24:32',1,'modules.php','set=payment&module=paypaldp&','67.142.161.21'),(4573,'2010-07-14 15:24:36',1,'modules.php','set=payment&module=paypaldp&action=remove&','67.142.161.21'),(4574,'2010-07-14 15:24:36',1,'modules.php','set=payment&module=paypaldp&','67.142.161.21'),(4575,'2010-07-14 15:24:42',1,'modules.php','set=payment&module=paypalwpp&','67.142.161.21'),(4576,'2010-07-14 15:24:46',1,'modules.php','set=payment&module=paypalwpp&action=remove&','67.142.161.21'),(4577,'2010-07-14 15:24:46',1,'modules.php','set=payment&module=paypalwpp&','67.142.161.21'),(4578,'2010-07-14 16:35:04',0,'login.php ','','64.134.161.35'),(4579,'2010-07-14 16:35:16',0,'login.php wayne1','','64.134.161.35'),(4580,'2010-07-14 16:35:42',1,'configuration.php','gID=20&','64.134.161.35'),(4581,'2010-07-14 16:36:15',1,'configuration.php','gID=20&cID=457&action=edit&','64.134.161.35'),(4582,'2010-07-14 16:36:22',1,'configuration.php','gID=20&cID=457&action=save&','64.134.161.35'),(4583,'2010-07-14 16:36:22',1,'configuration.php','gID=20&cID=457&','64.134.161.35'),(4584,'2010-07-14 16:36:28',1,'configuration.php','gID=20&cID=458&action=edit&','64.134.161.35'),(4585,'2010-07-14 16:36:41',1,'configuration.php','gID=20&cID=458&action=save&','64.134.161.35'),(4586,'2010-07-14 16:36:42',1,'configuration.php','gID=20&cID=458&','64.134.161.35'),(4587,'2010-07-14 16:37:07',1,'configuration.php','gID=20&cID=446&action=edit&','64.134.161.35'),(4588,'2010-07-14 16:37:12',1,'configuration.php','gID=20&cID=446&action=save&','64.134.161.35'),(4589,'2010-07-14 16:37:12',1,'configuration.php','gID=20&cID=446&','64.134.161.35'),(4590,'2010-07-14 17:11:25',0,'login.php ','','64.134.161.35'),(4591,'2010-07-14 17:11:45',0,'login.php wayne1','','64.134.161.35'),(4592,'2010-07-14 17:12:43',1,'modules.php','set=payment&','64.134.161.35'),(4593,'2010-07-14 17:12:52',1,'modules.php','set=payment&module=moneyorder&','64.134.161.35'),(4594,'2010-07-14 17:12:57',1,'modules.php','set=payment&module=moneyorder&action=install&','64.134.161.35'),(4595,'2010-07-14 17:12:57',1,'modules.php','set=payment&module=moneyorder&action=edit&','64.134.161.35'),(4596,'2010-07-14 17:13:31',1,'modules.php','set=payment&module=moneyorder&action=save&','64.134.161.35'),(4597,'2010-07-14 17:13:32',1,'modules.php','set=payment&module=moneyorder&','64.134.161.35'),(4598,'2010-07-14 17:13:38',1,'modules.php','set=payment&','64.134.161.35'),(4599,'2010-07-14 17:13:49',1,'modules.php','set=payment&module=paypaldp&','64.134.161.35'),(4600,'2010-07-14 17:14:01',1,'modules.php','set=payment&module=paypalwpp&','64.134.161.35'),(4601,'2010-07-14 17:14:04',1,'modules.php','set=payment&module=paypalwpp&action=install&','64.134.161.35'),(4602,'2010-07-14 17:14:05',1,'modules.php','set=payment&module=paypalwpp&action=edit&','64.134.161.35'),(4603,'2010-07-14 17:21:17',1,'modules.php','set=payment&','64.134.161.35'),(4604,'2010-07-14 17:25:19',1,'modules.php','set=payment&module=paypalwpp&','64.134.161.35'),(4605,'2010-07-14 17:29:58',1,'modules.php','set=payment&module=paypalwpp&action=edit&','64.134.161.35'),(4606,'2010-07-14 17:31:37',1,'modules.php','set=payment&module=paypalwpp&action=save&','64.134.161.35'),(4607,'2010-07-14 17:31:38',1,'modules.php','set=payment&module=paypalwpp&','64.134.161.35'),(4608,'2010-07-14 17:31:45',1,'modules.php','set=payment&module=paypaldp&','64.134.161.35'),(4609,'2010-07-14 17:31:48',1,'modules.php','set=payment&module=paypaldp&action=install&','64.134.161.35'),(4610,'2010-07-14 17:31:49',1,'modules.php','set=payment&module=paypaldp&action=edit&','64.134.161.35'),(4611,'2010-07-14 17:32:26',1,'modules.php','set=payment&module=paypaldp&action=save&','64.134.161.35'),(4612,'2010-07-14 17:32:27',1,'modules.php','set=payment&module=paypaldp&','64.134.161.35'),(4613,'2010-07-14 17:32:35',1,'modules.php','set=shipping&','64.134.161.35'),(4614,'2010-07-14 17:32:39',1,'modules.php','set=shipping&module=fedexexpress&action=install&','64.134.161.35'),(4615,'2010-07-14 17:32:40',1,'modules.php','set=shipping&module=fedexexpress&action=edit&','64.134.161.35'),(4616,'2010-07-14 17:38:46',1,'modules.php','set=shipping&module=fedexexpress&action=save&','64.134.161.35'),(4617,'2010-07-14 17:38:46',1,'modules.php','set=shipping&module=fedexexpress&','64.134.161.35'),(4618,'2010-07-14 17:38:50',1,'modules.php','set=shipping&module=fedexground&','64.134.161.35'),(4619,'2010-07-14 17:38:53',1,'modules.php','set=shipping&module=fedexground&action=install&','64.134.161.35'),(4620,'2010-07-14 17:38:53',1,'modules.php','set=shipping&module=fedexground&action=edit&','64.134.161.35'),(4621,'2010-07-14 17:42:46',1,'modules.php','set=shipping&module=fedexground&action=save&','64.134.161.35'),(4622,'2010-07-14 17:42:46',1,'modules.php','set=shipping&module=fedexground&','64.134.161.35'),(4623,'2010-07-14 17:42:54',1,'modules.php','set=shipping&module=ups&','64.134.161.35'),(4624,'2010-07-14 17:42:57',1,'modules.php','set=shipping&module=ups&action=install&','64.134.161.35'),(4625,'2010-07-14 17:42:57',1,'modules.php','set=shipping&module=ups&action=edit&','64.134.161.35'),(4626,'2010-07-14 17:44:37',1,'modules.php','set=shipping&module=ups&action=save&','64.134.161.35'),(4627,'2010-07-14 17:44:37',1,'modules.php','set=shipping&module=ups&','64.134.161.35'),(4628,'2010-07-14 19:32:07',0,'login.php ','','67.142.161.19'),(4629,'2010-07-14 19:32:08',0,'login.php ','','67.142.161.19'),(4630,'2010-07-14 19:32:27',0,'login.php wayne1','','67.142.161.19'),(4631,'2010-07-14 20:30:22',0,'login.php ','','67.142.161.21'),(4632,'2010-07-14 20:30:24',0,'login.php ','','67.142.161.21'),(4633,'2010-07-14 20:30:40',0,'login.php wayne1','','67.142.161.21'),(4634,'2010-07-14 20:30:51',1,'ceon_uri_mapping_config.php','','67.142.161.21'),(4635,'2010-07-14 20:55:30',1,'categories.php','','67.142.161.19'),(4636,'2010-07-14 20:55:57',1,'categories.php','cPath=5&','67.142.161.19'),(4637,'2010-07-14 20:55:57',1,'categories.php','cPath=&cID=5&action=edit_category&search=&','67.142.161.19'),(4638,'2010-07-14 20:56:58',1,'alt_nav.php','','67.142.161.19'),(4639,'2010-07-14 20:57:07',1,'configuration.php','gID=33&','67.142.161.19'),(4640,'2010-07-14 20:57:15',1,'configuration.php','gID=33&cID=844&action=edit&','67.142.161.19'),(4641,'2010-07-14 20:57:19',1,'configuration.php','gID=33&cID=844&action=save&','67.142.161.19'),(4642,'2010-07-14 20:57:20',1,'configuration.php','gID=33&cID=844&','67.142.161.19'),(4643,'2010-07-14 20:57:31',1,'alt_nav.php','','67.142.161.19'),(4644,'2010-07-14 20:58:01',1,'ceon_uri_mapping_config.php','','67.142.161.19'),(4645,'2010-07-14 20:58:36',1,'product_types.php','','67.142.161.19'),(4646,'2010-07-14 20:58:44',1,'product_types.php','page=1&ptID=1&action=edit&','67.142.161.19'),(4647,'2010-07-14 20:58:52',1,'categories.php','','67.142.161.19'),(4648,'2010-07-14 20:59:08',1,'categories.php','cPath=&cID=13&action=edit_category&search=&','67.142.161.19'),(4649,'2010-07-14 20:59:15',1,'categories.php','action=setflag&flag=0&pID=25&cPath=8&page=1&','67.142.161.19'),(4650,'2010-07-14 20:59:15',1,'categories.php','cPath=8&pID=25&page=1&','67.142.161.19'),(4651,'2010-07-14 20:59:22',1,'product.php','page=1&product_type=1&cPath=8&pID=25&action=new_product&','67.142.161.19'),(4652,'2010-07-14 20:59:22',1,'categories.php','action=setflag&flag=1&pID=25&cPath=8&page=1&','67.142.161.19'),(4653,'2010-07-14 20:59:23',1,'categories.php','cPath=8&pID=25&page=1&','67.142.161.19'),(4654,'2010-07-14 20:59:28',1,'product.php','cPath=8&product_type=1&pID=25&action=new_product&','67.142.161.19'),(4655,'2010-07-14 21:00:10',1,'product.php','cPath=8&product_type=1&pID=25&action=new_product_preview&','67.142.161.19'),(4656,'2010-07-14 21:00:44',1,'product.php','cPath=8&product_type=1&pID=25&action=update_product&','67.142.161.19'),(4657,'2010-07-14 21:00:45',1,'categories.php','cPath=8&pID=25&','67.142.161.19'),(4658,'2010-07-14 21:01:58',1,'product.php','cPath=8&product_type=1&pID=26&action=new_product&','67.142.161.19'),(4659,'2010-07-14 21:02:06',1,'product.php','cPath=8&product_type=1&pID=26&action=new_product_preview&','67.142.161.19'),(4660,'2010-07-14 21:02:11',1,'product.php','cPath=8&product_type=1&pID=26&action=update_product&','67.142.161.19'),(4661,'2010-07-14 21:02:11',1,'categories.php','cPath=8&pID=26&','67.142.161.19'),(4662,'2010-07-14 21:02:19',1,'product.php','cPath=8&product_type=1&pID=28&action=new_product&','67.142.161.19'),(4663,'2010-07-14 21:02:25',1,'product.php','cPath=8&product_type=1&pID=28&action=new_product_preview&','67.142.161.19'),(4664,'2010-07-14 21:02:29',1,'product.php','cPath=8&product_type=1&pID=28&action=update_product&','67.142.161.19'),(4665,'2010-07-14 21:02:29',1,'categories.php','cPath=8&pID=28&','67.142.161.19'),(4666,'2010-07-14 21:02:34',1,'product.php','page=1&product_type=1&cPath=8&pID=29&action=new_product&','67.142.161.19'),(4667,'2010-07-14 21:02:36',1,'product.php','cPath=8&product_type=1&pID=29&action=new_product&','67.142.161.19'),(4668,'2010-07-14 21:02:41',1,'product.php','cPath=8&product_type=1&pID=29&action=new_product_preview&','67.142.161.19'),(4669,'2010-07-14 21:02:45',1,'product.php','cPath=8&product_type=1&pID=29&action=update_product&','67.142.161.19'),(4670,'2010-07-14 21:02:46',1,'categories.php','cPath=8&pID=29&','67.142.161.19'),(4671,'2010-07-14 21:02:49',1,'product.php','page=1&product_type=1&cPath=8&pID=27&action=new_product&','67.142.161.19'),(4672,'2010-07-14 21:02:49',1,'product.php','cPath=8&product_type=1&pID=27&action=new_product&','67.142.161.19'),(4673,'2010-07-14 21:02:55',1,'product.php','cPath=8&product_type=1&pID=27&action=new_product_preview&','67.142.161.19'),(4674,'2010-07-14 21:03:01',1,'product.php','cPath=8&product_type=1&pID=27&action=update_product&','67.142.161.19'),(4675,'2010-07-14 21:03:01',1,'categories.php','cPath=8&pID=27&','67.142.161.19'),(4676,'2010-07-14 21:03:09',1,'categories.php','cID=8&','67.142.161.19'),(4677,'2010-07-14 21:03:15',1,'categories.php','cPath=&cID=5&action=edit_category&search=&','67.142.161.19'),(4678,'2010-07-14 21:03:30',1,'categories.php','action=update_category&cPath=&','67.142.161.19'),(4679,'2010-07-14 21:03:30',1,'categories.php','cPath=&cID=5&','67.142.161.19'),(4680,'2010-07-14 21:03:37',1,'categories.php','cPath=5&','67.142.161.19'),(4681,'2010-07-14 21:03:43',1,'categories.php','cPath=5_9&','67.142.161.19'),(4682,'2010-07-14 21:03:48',1,'product.php','cPath=5_9&product_type=1&pID=30&action=new_product&','67.142.161.19'),(4683,'2010-07-14 21:03:55',1,'product.php','cPath=5_9&product_type=1&pID=30&action=new_product_preview&','67.142.161.19'),(4684,'2010-07-14 21:04:00',1,'product.php','cPath=5_9&product_type=1&pID=30&action=update_product&','67.142.161.19'),(4685,'2010-07-14 21:04:00',1,'categories.php','cPath=5_9&pID=30&','67.142.161.19'),(4686,'2010-07-14 21:04:04',1,'product.php','cPath=5_9&product_type=1&pID=31&action=new_product&','67.142.161.19'),(4687,'2010-07-14 21:04:09',1,'product.php','cPath=5_9&product_type=1&pID=31&action=new_product_preview&','67.142.161.19'),(4688,'2010-07-14 21:04:13',1,'product.php','cPath=5_9&product_type=1&pID=31&action=update_product&','67.142.161.19'),(4689,'2010-07-14 21:04:13',1,'categories.php','cPath=5_9&pID=31&','67.142.161.19'),(4690,'2010-07-14 21:04:17',1,'product.php','page=1&product_type=1&cPath=5_9&pID=33&action=new_product&','67.142.161.19'),(4691,'2010-07-14 21:04:17',1,'product.php','cPath=5_9&product_type=1&pID=33&action=new_product&','67.142.161.19'),(4692,'2010-07-14 21:04:21',1,'product.php','cPath=5_9&product_type=1&pID=33&action=new_product_preview&','67.142.161.19'),(4693,'2010-07-14 21:04:26',1,'product.php','cPath=5_9&product_type=1&pID=33&action=update_product&','67.142.161.19'),(4694,'2010-07-14 21:04:26',1,'categories.php','cPath=5_9&pID=33&','67.142.161.19'),(4695,'2010-07-14 21:04:30',1,'product.php','cPath=5_9&product_type=1&pID=34&action=new_product&','67.142.161.19'),(4696,'2010-07-14 21:04:33',1,'product.php','cPath=5_9&product_type=1&pID=34&action=new_product_preview&','67.142.161.19'),(4697,'2010-07-14 21:04:39',1,'product.php','cPath=5_9&product_type=1&pID=34&action=update_product&','67.142.161.19'),(4698,'2010-07-14 21:04:39',1,'categories.php','cPath=5_9&pID=34&','67.142.161.19'),(4699,'2010-07-14 21:04:43',1,'product.php','cPath=5_9&product_type=1&pID=32&action=new_product&','67.142.161.19'),(4700,'2010-07-14 21:04:46',1,'product.php','cPath=5_9&product_type=1&pID=32&action=new_product_preview&','67.142.161.19'),(4701,'2010-07-14 21:04:50',1,'product.php','cPath=5_9&product_type=1&pID=32&action=update_product&','67.142.161.19'),(4702,'2010-07-14 21:04:50',1,'categories.php','cPath=5_9&pID=32&','67.142.161.19'),(4703,'2010-07-14 21:04:58',1,'categories.php','securityToken=d759a41c2031fa2f4fb510268e7020ae&cPath=1&','67.142.161.19'),(4704,'2010-07-14 21:05:02',1,'product.php','cPath=1&product_type=1&pID=1&action=new_product&','67.142.161.19'),(4705,'2010-07-14 21:05:07',1,'product.php','cPath=1&product_type=1&pID=1&action=new_product_preview&','67.142.161.19'),(4706,'2010-07-14 21:05:13',1,'product.php','cPath=1&product_type=1&pID=1&action=update_product&','67.142.161.19'),(4707,'2010-07-14 21:05:13',1,'categories.php','cPath=1&pID=1&','67.142.161.19'),(4708,'2010-07-14 21:05:18',1,'product.php','cPath=1&product_type=1&pID=10&action=new_product&','67.142.161.19'),(4709,'2010-07-14 21:05:23',1,'product.php','cPath=1&product_type=1&pID=10&action=new_product_preview&','67.142.161.19'),(4710,'2010-07-14 21:05:27',1,'product.php','cPath=1&product_type=1&pID=10&action=update_product&','67.142.161.19'),(4711,'2010-07-14 21:05:27',1,'categories.php','cPath=1&pID=10&','67.142.161.19'),(4712,'2010-07-14 21:05:31',1,'product.php','page=1&product_type=1&cPath=1&pID=11&action=new_product&','67.142.161.19'),(4713,'2010-07-14 21:05:31',1,'product.php','cPath=1&product_type=1&pID=11&action=new_product&','67.142.161.19'),(4714,'2010-07-14 21:05:36',1,'product.php','cPath=1&product_type=1&pID=11&action=new_product_preview&','67.142.161.19'),(4715,'2010-07-14 21:05:40',1,'product.php','cPath=1&product_type=1&pID=11&action=update_product&','67.142.161.19'),(4716,'2010-07-14 21:05:40',1,'categories.php','cPath=1&pID=11&','67.142.161.19'),(4717,'2010-07-14 21:05:44',1,'product.php','page=1&product_type=1&cPath=1&pID=13&action=new_product&','67.142.161.19'),(4718,'2010-07-14 21:05:44',1,'product.php','cPath=1&product_type=1&pID=13&action=new_product&','67.142.161.19'),(4719,'2010-07-14 21:05:48',1,'product.php','cPath=1&product_type=1&pID=13&action=new_product_preview&','67.142.161.19'),(4720,'2010-07-14 21:05:52',1,'product.php','cPath=1&product_type=1&pID=13&action=update_product&','67.142.161.19'),(4721,'2010-07-14 21:05:52',1,'categories.php','cPath=1&pID=13&','67.142.161.19'),(4722,'2010-07-14 21:05:56',1,'product.php','cPath=1&product_type=1&pID=14&action=new_product&','67.142.161.19'),(4723,'2010-07-14 21:06:01',1,'product.php','cPath=1&product_type=1&pID=14&action=new_product_preview&','67.142.161.19'),(4724,'2010-07-14 21:06:05',1,'product.php','cPath=1&product_type=1&pID=14&action=update_product&','67.142.161.19'),(4725,'2010-07-14 21:06:06',1,'categories.php','cPath=1&pID=14&','67.142.161.19'),(4726,'2010-07-14 21:06:10',1,'product.php','page=1&product_type=1&cPath=1&pID=12&action=new_product&','67.142.161.19'),(4727,'2010-07-14 21:06:10',1,'product.php','cPath=1&product_type=1&pID=12&action=new_product&','67.142.161.19'),(4728,'2010-07-14 21:06:14',1,'product.php','cPath=1&product_type=1&pID=12&action=new_product_preview&','67.142.161.19'),(4729,'2010-07-14 21:06:19',1,'product.php','cPath=1&product_type=1&pID=12&action=update_product&','67.142.161.19'),(4730,'2010-07-14 21:06:20',1,'categories.php','cPath=1&pID=12&','67.142.161.19'),(4731,'2010-07-14 21:06:24',1,'product.php','cPath=1&product_type=1&pID=2&action=new_product&','67.142.161.19'),(4732,'2010-07-14 21:06:28',1,'product.php','cPath=1&product_type=1&pID=2&action=new_product_preview&','67.142.161.19'),(4733,'2010-07-14 21:06:34',1,'product.php','cPath=1&product_type=1&pID=2&action=update_product&','67.142.161.19'),(4734,'2010-07-14 21:06:34',1,'categories.php','cPath=1&pID=2&','67.142.161.19'),(4735,'2010-07-14 21:06:38',1,'product.php','cPath=1&product_type=1&pID=5&action=new_product&','67.142.161.19'),(4736,'2010-07-14 21:06:49',1,'product.php','cPath=1&product_type=1&pID=5&action=new_product_preview&','67.142.161.19'),(4737,'2010-07-14 21:06:51',1,'product.php','cPath=1&product_type=1&pID=5&action=new_product_preview&','67.142.161.19'),(4738,'2010-07-14 21:06:56',1,'product.php','cPath=1&product_type=1&pID=5&action=update_product&','67.142.161.19'),(4739,'2010-07-14 21:06:56',1,'categories.php','cPath=1&pID=5&','67.142.161.19'),(4740,'2010-07-14 21:07:01',1,'product.php','cPath=1&product_type=1&pID=3&action=new_product&','67.142.161.19'),(4741,'2010-07-14 21:07:05',1,'product.php','cPath=1&product_type=1&pID=3&action=new_product_preview&','67.142.161.19'),(4742,'2010-07-14 21:07:14',1,'product.php','cPath=1&product_type=1&pID=3&action=update_product&','67.142.161.19'),(4743,'2010-07-14 21:07:14',1,'categories.php','cPath=1&pID=3&','67.142.161.19'),(4744,'2010-07-14 21:07:19',1,'product.php','cPath=1&product_type=1&pID=4&action=new_product&','67.142.161.19'),(4745,'2010-07-14 21:07:19',1,'product.php','page=1&product_type=1&cPath=1&pID=4&action=new_product&','67.142.161.19'),(4746,'2010-07-14 21:07:23',1,'product.php','cPath=1&product_type=1&pID=4&action=new_product_preview&','67.142.161.19'),(4747,'2010-07-14 21:07:28',1,'product.php','cPath=1&product_type=1&pID=4&action=update_product&','67.142.161.19'),(4748,'2010-07-14 21:07:28',1,'categories.php','cPath=1&pID=4&','67.142.161.19'),(4749,'2010-07-14 21:07:38',1,'categories.php','securityToken=d759a41c2031fa2f4fb510268e7020ae&cPath=6&','67.142.161.19'),(4750,'2010-07-14 21:07:42',1,'product.php','cPath=6&product_type=1&pID=20&action=new_product&','67.142.161.19'),(4751,'2010-07-14 21:07:47',1,'product.php','cPath=6&product_type=1&pID=20&action=new_product_preview&','67.142.161.19'),(4752,'2010-07-14 21:07:52',1,'product.php','cPath=6&product_type=1&pID=20&action=update_product&','67.142.161.19'),(4753,'2010-07-14 21:07:52',1,'categories.php','cPath=6&pID=20&','67.142.161.19'),(4754,'2010-07-14 21:07:57',1,'product.php','cPath=6&product_type=1&pID=21&action=new_product&','67.142.161.19'),(4755,'2010-07-14 21:08:01',1,'product.php','cPath=6&product_type=1&pID=21&action=new_product_preview&','67.142.161.19'),(4756,'2010-07-14 21:08:07',1,'product.php','cPath=6&product_type=1&pID=21&action=update_product&','67.142.161.19'),(4757,'2010-07-14 21:08:07',1,'categories.php','cPath=6&pID=21&','67.142.161.19'),(4758,'2010-07-14 21:08:11',1,'product.php','cPath=6&product_type=1&pID=23&action=new_product&','67.142.161.19'),(4759,'2010-07-14 21:08:14',1,'product.php','cPath=6&product_type=1&pID=23&action=new_product_preview&','67.142.161.19'),(4760,'2010-07-14 21:08:18',1,'product.php','cPath=6&product_type=1&pID=23&action=update_product&','67.142.161.19'),(4761,'2010-07-14 21:08:18',1,'categories.php','cPath=6&pID=23&','67.142.161.19'),(4762,'2010-07-14 21:08:22',1,'product.php','cPath=6&product_type=1&pID=24&action=new_product&','67.142.161.19'),(4763,'2010-07-14 21:08:26',1,'product.php','cPath=6&product_type=1&pID=24&action=new_product_preview&','67.142.161.19'),(4764,'2010-07-14 21:08:30',1,'product.php','cPath=6&product_type=1&pID=24&action=update_product&','67.142.161.19'),(4765,'2010-07-14 21:08:30',1,'categories.php','cPath=6&pID=24&','67.142.161.19'),(4766,'2010-07-14 21:08:34',1,'product.php','cPath=6&product_type=1&pID=22&action=new_product&','67.142.161.19'),(4767,'2010-07-14 21:08:40',1,'product.php','cPath=6&product_type=1&pID=22&action=new_product_preview&','67.142.161.19'),(4768,'2010-07-14 21:08:44',1,'product.php','cPath=6&product_type=1&pID=22&action=update_product&','67.142.161.19'),(4769,'2010-07-14 21:08:44',1,'categories.php','cPath=6&pID=22&','67.142.161.19'),(4770,'2010-07-14 21:08:52',1,'categories.php','securityToken=d759a41c2031fa2f4fb510268e7020ae&cPath=10&','67.142.161.19'),(4771,'2010-07-14 21:08:53',1,'product.php','cPath=6&product_type=1&pID=20&action=new_product&','67.142.161.19'),(4772,'2010-07-14 21:09:00',1,'product.php','cPath=6&product_type=1&pID=20&action=new_product_preview&','67.142.161.19'),(4773,'2010-07-14 21:09:03',1,'product.php','cPath=6&product_type=1&pID=20&action=update_product&','67.142.161.19'),(4774,'2010-07-14 21:09:04',1,'categories.php','cPath=6&pID=20&','67.142.161.19'),(4775,'2010-07-14 21:09:11',1,'categories.php','securityToken=d759a41c2031fa2f4fb510268e7020ae&cPath=10&','67.142.161.19'),(4776,'2010-07-14 21:09:16',1,'product.php','cPath=10&product_type=1&pID=15&action=new_product&','67.142.161.19'),(4777,'2010-07-14 21:09:20',1,'product.php','cPath=10&product_type=1&pID=15&action=new_product_preview&','67.142.161.19'),(4778,'2010-07-14 21:09:24',1,'product.php','cPath=10&product_type=1&pID=15&action=update_product&','67.142.161.19'),(4779,'2010-07-14 21:09:24',1,'categories.php','cPath=10&pID=15&','67.142.161.19'),(4780,'2010-07-14 21:09:28',1,'product.php','page=1&product_type=1&cPath=10&pID=16&action=new_product&','67.142.161.19'),(4781,'2010-07-14 21:09:28',1,'product.php','cPath=10&product_type=1&pID=16&action=new_product&','67.142.161.19'),(4782,'2010-07-14 21:09:33',1,'product.php','cPath=10&product_type=1&pID=16&action=new_product_preview&','67.142.161.19'),(4783,'2010-07-14 21:09:37',1,'product.php','cPath=10&product_type=1&pID=16&action=update_product&','67.142.161.19'),(4784,'2010-07-14 21:09:37',1,'categories.php','cPath=10&pID=16&','67.142.161.19'),(4785,'2010-07-14 21:09:41',1,'product.php','page=1&product_type=1&cPath=10&pID=18&action=new_product&','67.142.161.19'),(4786,'2010-07-14 21:09:41',1,'product.php','cPath=10&product_type=1&pID=18&action=new_product&','67.142.161.19'),(4787,'2010-07-14 21:09:45',1,'product.php','cPath=10&product_type=1&pID=18&action=new_product_preview&','67.142.161.19'),(4788,'2010-07-14 21:09:50',1,'product.php','cPath=10&product_type=1&pID=18&action=update_product&','67.142.161.19'),(4789,'2010-07-14 21:09:50',1,'categories.php','cPath=10&pID=18&','67.142.161.19'),(4790,'2010-07-14 21:09:54',1,'product.php','cPath=10&product_type=1&pID=19&action=new_product&','67.142.161.19'),(4791,'2010-07-14 21:09:57',1,'product.php','cPath=10&product_type=1&pID=19&action=new_product_preview&','67.142.161.19'),(4792,'2010-07-14 21:10:01',1,'product.php','cPath=10&product_type=1&pID=19&action=update_product&','67.142.161.19'),(4793,'2010-07-14 21:10:01',1,'categories.php','cPath=10&pID=19&','67.142.161.19'),(4794,'2010-07-14 21:10:05',1,'product.php','cPath=10&product_type=1&pID=17&action=new_product&','67.142.161.19'),(4795,'2010-07-14 21:10:10',1,'product.php','cPath=10&product_type=1&pID=17&action=new_product_preview&','67.142.161.19'),(4796,'2010-07-14 21:10:15',1,'product.php','cPath=10&product_type=1&pID=17&action=update_product&','67.142.161.19'),(4797,'2010-07-14 21:10:15',1,'categories.php','cPath=10&pID=17&','67.142.161.19'),(4798,'2010-07-14 21:10:23',1,'categories.php','securityToken=d759a41c2031fa2f4fb510268e7020ae&cPath=7&','67.142.161.19'),(4799,'2010-07-14 21:10:26',1,'product.php','cPath=7&product_type=1&pID=6&action=new_product&','67.142.161.19'),(4800,'2010-07-14 21:10:30',1,'product.php','cPath=7&product_type=1&pID=6&action=new_product_preview&','67.142.161.19'),(4801,'2010-07-14 21:10:35',1,'product.php','cPath=7&product_type=1&pID=6&action=update_product&','67.142.161.19'),(4802,'2010-07-14 21:10:35',1,'categories.php','cPath=7&pID=6&','67.142.161.19'),(4803,'2010-07-14 21:10:39',1,'product.php','cPath=7&product_type=1&pID=9&action=new_product&','67.142.161.19'),(4804,'2010-07-14 21:10:44',1,'product.php','cPath=7&product_type=1&pID=9&action=new_product_preview&','67.142.161.19'),(4805,'2010-07-14 21:10:47',1,'product.php','cPath=7&product_type=1&pID=9&action=update_product&','67.142.161.19'),(4806,'2010-07-14 21:10:47',1,'categories.php','cPath=7&pID=9&','67.142.161.19'),(4807,'2010-07-14 21:10:54',1,'product.php','cPath=7&product_type=1&pID=7&action=new_product&','67.142.161.19'),(4808,'2010-07-14 21:10:58',1,'product.php','cPath=7&product_type=1&pID=7&action=new_product_preview&','67.142.161.19'),(4809,'2010-07-14 21:11:02',1,'product.php','cPath=7&product_type=1&pID=7&action=update_product&','67.142.161.19'),(4810,'2010-07-14 21:11:02',1,'categories.php','cPath=7&pID=7&','67.142.161.19'),(4811,'2010-07-14 21:11:05',1,'product.php','page=1&product_type=1&cPath=7&pID=8&action=new_product&','67.142.161.19'),(4812,'2010-07-14 21:11:05',1,'product.php','cPath=7&product_type=1&pID=8&action=new_product&','67.142.161.19'),(4813,'2010-07-14 21:11:10',1,'product.php','cPath=7&product_type=1&pID=8&action=new_product_preview&','67.142.161.19'),(4814,'2010-07-14 21:11:14',1,'product.php','cPath=7&product_type=1&pID=8&action=update_product&','67.142.161.19'),(4815,'2010-07-14 21:11:14',1,'categories.php','cPath=7&pID=8&','67.142.161.19'),(4816,'2010-07-14 21:11:21',1,'categories.php','securityToken=d759a41c2031fa2f4fb510268e7020ae&cPath=16&','67.142.161.19'),(4817,'2010-07-14 21:11:24',1,'product.php','page=1&product_type=1&cPath=16&pID=43&action=new_product&','67.142.161.19'),(4818,'2010-07-14 21:11:30',1,'product.php','cPath=16&product_type=1&pID=43&action=new_product_preview&page=1&','67.142.161.19'),(4819,'2010-07-14 21:11:34',1,'product.php','cPath=16&product_type=1&pID=43&action=update_product&page=1&','67.142.161.19'),(4820,'2010-07-14 21:11:35',1,'categories.php','cPath=16&pID=43&page=1&','67.142.161.19'),(4821,'2010-07-14 21:11:47',1,'categories.php','securityToken=d759a41c2031fa2f4fb510268e7020ae&cPath=3&','67.142.161.19'),(4822,'2010-07-14 21:11:52',1,'product.php','page=1&product_type=1&cPath=3&pID=36&action=new_product&','67.142.161.19'),(4823,'2010-07-14 21:11:52',1,'product.php','cPath=3&product_type=1&pID=36&action=new_product&','67.142.161.19'),(4824,'2010-07-14 21:11:56',1,'product.php','cPath=3&product_type=1&pID=36&action=new_product_preview&','67.142.161.19'),(4825,'2010-07-14 21:12:00',1,'product.php','cPath=3&product_type=1&pID=36&action=update_product&','67.142.161.19'),(4826,'2010-07-14 21:12:00',1,'categories.php','cPath=3&pID=36&','67.142.161.19'),(4827,'2010-07-14 21:12:04',1,'product.php','cPath=3&product_type=1&pID=45&action=new_product&','67.142.161.19'),(4828,'2010-07-14 21:12:09',1,'product.php','cPath=3&product_type=1&pID=45&action=new_product_preview&','67.142.161.19'),(4829,'2010-07-14 21:12:13',1,'product.php','cPath=3&product_type=1&pID=45&action=update_product&','67.142.161.19'),(4830,'2010-07-14 21:12:13',1,'categories.php','cPath=3&pID=45&','67.142.161.19'),(4831,'2010-07-14 21:12:18',1,'product.php','cPath=3&product_type=1&pID=37&action=new_product&','67.142.161.19'),(4832,'2010-07-14 21:12:18',1,'product.php','page=1&product_type=1&cPath=3&pID=37&action=new_product&','67.142.161.19'),(4833,'2010-07-14 21:12:23',1,'product.php','cPath=3&product_type=1&pID=37&action=new_product_preview&','67.142.161.19'),(4834,'2010-07-14 21:12:28',1,'product.php','cPath=3&product_type=1&pID=37&action=update_product&','67.142.161.19'),(4835,'2010-07-14 21:12:28',1,'categories.php','cPath=3&pID=37&','67.142.161.19'),(4836,'2010-07-14 21:12:32',1,'product.php','cPath=3&product_type=1&pID=35&action=new_product&','67.142.161.19'),(4837,'2010-07-14 21:12:36',1,'product.php','cPath=3&product_type=1&pID=35&action=new_product_preview&','67.142.161.19'),(4838,'2010-07-14 21:12:44',1,'product.php','cPath=3&product_type=1&pID=35&action=update_product&','67.142.161.19'),(4839,'2010-07-14 21:12:44',1,'categories.php','cPath=3&pID=35&','67.142.161.19'),(4840,'2010-07-14 21:12:48',1,'product.php','page=1&product_type=1&cPath=3&pID=45&action=new_product&','67.142.161.19'),(4841,'2010-07-14 21:12:50',1,'product.php','cPath=3&product_type=1&pID=45&action=new_product&','67.142.161.19'),(4842,'2010-07-14 21:12:54',1,'product.php','cPath=3&product_type=1&pID=45&action=new_product_preview&','67.142.161.19'),(4843,'2010-07-14 21:13:09',1,'product.php','cPath=3&product_type=1&pID=45&action=update_product&','67.142.161.19'),(4844,'2010-07-14 21:13:09',1,'categories.php','cPath=3&pID=45&','67.142.161.19'),(4845,'2010-07-14 21:13:16',1,'categories.php','securityToken=d759a41c2031fa2f4fb510268e7020ae&cPath=12&','67.142.161.19'),(4846,'2010-07-14 21:13:20',1,'product.php','cPath=12&product_type=1&pID=48&action=new_product&','67.142.161.19'),(4847,'2010-07-14 21:13:20',1,'product.php','page=1&product_type=1&cPath=12&pID=48&action=new_product&','67.142.161.19'),(4848,'2010-07-14 21:13:24',1,'product.php','cPath=12&product_type=1&pID=48&action=new_product_preview&','67.142.161.19'),(4849,'2010-07-14 21:13:29',1,'product.php','cPath=12&product_type=1&pID=48&action=update_product&','67.142.161.19'),(4850,'2010-07-14 21:13:29',1,'categories.php','cPath=12&pID=48&','67.142.161.19'),(4851,'2010-07-14 21:13:34',1,'product.php','cPath=12&product_type=1&pID=49&action=new_product&','67.142.161.19'),(4852,'2010-07-14 21:13:38',1,'product.php','cPath=12&product_type=1&pID=49&action=new_product_preview&','67.142.161.19'),(4853,'2010-07-14 21:13:47',1,'product.php','cPath=12&product_type=1&pID=49&action=update_product&','67.142.161.19'),(4854,'2010-07-14 21:13:47',1,'categories.php','cPath=12&pID=49&','67.142.161.19'),(4855,'2010-07-14 21:13:51',1,'product.php','cPath=12&product_type=1&pID=46&action=new_product&','67.142.161.19'),(4856,'2010-07-14 21:13:56',1,'product.php','cPath=12&product_type=1&pID=46&action=new_product_preview&','67.142.161.19'),(4857,'2010-07-14 21:14:01',1,'product.php','cPath=12&product_type=1&pID=46&action=update_product&','67.142.161.19'),(4858,'2010-07-14 21:14:01',1,'categories.php','cPath=12&pID=46&','67.142.161.19'),(4859,'2010-07-14 21:14:04',1,'product.php','cPath=12&product_type=1&pID=47&action=new_product&','67.142.161.19'),(4860,'2010-07-14 21:14:08',1,'product.php','cPath=12&product_type=1&pID=47&action=new_product_preview&','67.142.161.19'),(4861,'2010-07-14 21:14:12',1,'product.php','cPath=12&product_type=1&pID=47&action=update_product&','67.142.161.19'),(4862,'2010-07-14 21:14:12',1,'categories.php','cPath=12&pID=47&','67.142.161.19'),(4863,'2010-07-14 21:14:20',1,'categories.php','securityToken=d759a41c2031fa2f4fb510268e7020ae&cPath=2&','67.142.161.19'),(4864,'2010-07-14 21:14:23',1,'product.php','cPath=2&product_type=1&pID=40&action=new_product&','67.142.161.19'),(4865,'2010-07-14 21:14:28',1,'product.php','cPath=2&product_type=1&pID=40&action=new_product_preview&','67.142.161.19'),(4866,'2010-07-14 21:14:32',1,'product.php','cPath=2&product_type=1&pID=40&action=update_product&','67.142.161.19'),(4867,'2010-07-14 21:14:32',1,'categories.php','cPath=2&pID=40&','67.142.161.19'),(4868,'2010-07-14 21:14:37',1,'product.php','cPath=2&product_type=1&pID=71&action=new_product&','67.142.161.19'),(4869,'2010-07-14 21:14:42',1,'product.php','cPath=2&product_type=1&pID=71&action=new_product_preview&','67.142.161.19'),(4870,'2010-07-14 21:14:46',1,'product.php','cPath=2&product_type=1&pID=71&action=update_product&','67.142.161.19'),(4871,'2010-07-14 21:14:47',1,'categories.php','cPath=2&pID=71&','67.142.161.19'),(4872,'2010-07-14 21:14:50',1,'product.php','page=1&product_type=1&cPath=2&pID=38&action=new_product&','67.142.161.19'),(4873,'2010-07-14 21:14:50',1,'product.php','cPath=2&product_type=1&pID=38&action=new_product&','67.142.161.19'),(4874,'2010-07-14 21:14:54',1,'product.php','cPath=2&product_type=1&pID=38&action=new_product_preview&','67.142.161.19'),(4875,'2010-07-14 21:14:58',1,'product.php','cPath=2&product_type=1&pID=38&action=update_product&','67.142.161.19'),(4876,'2010-07-14 21:14:58',1,'categories.php','cPath=2&pID=38&','67.142.161.19'),(4877,'2010-07-14 21:15:02',1,'product.php','cPath=2&product_type=1&pID=39&action=new_product&','67.142.161.19'),(4878,'2010-07-14 21:15:06',1,'product.php','cPath=2&product_type=1&pID=39&action=new_product_preview&','67.142.161.19'),(4879,'2010-07-14 21:15:10',1,'product.php','cPath=2&product_type=1&pID=39&action=update_product&','67.142.161.19'),(4880,'2010-07-14 21:15:11',1,'categories.php','cPath=2&pID=39&','67.142.161.19'),(4881,'2010-07-14 21:15:18',1,'categories.php','securityToken=d759a41c2031fa2f4fb510268e7020ae&cPath=14&','67.142.161.19'),(4882,'2010-07-14 21:15:22',1,'product.php','cPath=14&product_type=1&pID=57&action=new_product&','67.142.161.19'),(4883,'2010-07-14 21:15:31',1,'product.php','cPath=14&product_type=1&pID=57&action=new_product_preview&','67.142.161.19'),(4884,'2010-07-14 21:15:37',1,'product.php','cPath=14&product_type=1&pID=57&action=update_product&','67.142.161.19'),(4885,'2010-07-14 21:15:37',1,'categories.php','cPath=14&pID=57&','67.142.161.19'),(4886,'2010-07-14 21:15:43',1,'product.php','page=1&product_type=1&cPath=14&pID=58&action=new_product&','67.142.161.19'),(4887,'2010-07-14 21:15:47',1,'product.php','cPath=14&product_type=1&pID=58&action=new_product&','67.142.161.19'),(4888,'2010-07-14 21:15:52',1,'product.php','cPath=14&product_type=1&pID=58&action=new_product_preview&','67.142.161.19'),(4889,'2010-07-14 21:15:57',1,'product.php','cPath=14&product_type=1&pID=58&action=update_product&','67.142.161.19'),(4890,'2010-07-14 21:15:57',1,'categories.php','cPath=14&pID=58&','67.142.161.19'),(4891,'2010-07-14 21:16:01',1,'product.php','cPath=14&product_type=1&pID=59&action=new_product&','67.142.161.19'),(4892,'2010-07-14 21:16:07',1,'product.php','cPath=14&product_type=1&pID=59&action=new_product_preview&','67.142.161.19'),(4893,'2010-07-14 21:16:11',1,'product.php','cPath=14&product_type=1&pID=59&action=update_product&','67.142.161.19'),(4894,'2010-07-14 21:16:11',1,'categories.php','cPath=14&pID=59&','67.142.161.19'),(4895,'2010-07-14 21:16:15',1,'product.php','page=1&product_type=1&cPath=14&pID=60&action=new_product&','67.142.161.19'),(4896,'2010-07-14 21:16:15',1,'product.php','cPath=14&product_type=1&pID=60&action=new_product&','67.142.161.19'),(4897,'2010-07-14 21:16:20',1,'product.php','cPath=14&product_type=1&pID=60&action=new_product_preview&','67.142.161.19'),(4898,'2010-07-14 21:16:24',1,'product.php','cPath=14&product_type=1&pID=60&action=update_product&','67.142.161.19'),(4899,'2010-07-14 21:16:24',1,'categories.php','cPath=14&pID=60&','67.142.161.19'),(4900,'2010-07-14 21:16:29',1,'product.php','cPath=14&product_type=1&pID=52&action=new_product&','67.142.161.19'),(4901,'2010-07-14 21:16:34',1,'product.php','cPath=14&product_type=1&pID=52&action=new_product_preview&','67.142.161.19'),(4902,'2010-07-14 21:16:38',1,'product.php','cPath=14&product_type=1&pID=52&action=update_product&','67.142.161.19'),(4903,'2010-07-14 21:16:39',1,'categories.php','cPath=14&pID=52&','67.142.161.19'),(4904,'2010-07-14 21:16:44',1,'product.php','cPath=14&product_type=1&pID=54&action=new_product&','67.142.161.19'),(4905,'2010-07-14 21:16:49',1,'product.php','cPath=14&product_type=1&pID=54&action=new_product_preview&','67.142.161.19'),(4906,'2010-07-14 21:16:53',1,'product.php','cPath=14&product_type=1&pID=54&action=update_product&','67.142.161.19'),(4907,'2010-07-14 21:16:53',1,'categories.php','cPath=14&pID=54&','67.142.161.19'),(4908,'2010-07-14 21:16:57',1,'product.php','cPath=14&product_type=1&pID=53&action=new_product&','67.142.161.19'),(4909,'2010-07-14 21:17:04',1,'product.php','cPath=14&product_type=1&pID=53&action=new_product_preview&','67.142.161.19'),(4910,'2010-07-14 21:17:09',1,'product.php','cPath=14&product_type=1&pID=53&action=update_product&','67.142.161.19'),(4911,'2010-07-14 21:17:10',1,'categories.php','cPath=14&pID=53&','67.142.161.19'),(4912,'2010-07-14 21:17:14',1,'product.php','cPath=14&product_type=1&pID=55&action=new_product&','67.142.161.19'),(4913,'2010-07-14 21:17:18',1,'product.php','cPath=14&product_type=1&pID=55&action=new_product_preview&','67.142.161.19'),(4914,'2010-07-14 21:17:24',1,'product.php','cPath=14&product_type=1&pID=55&action=update_product&','67.142.161.19'),(4915,'2010-07-14 21:17:24',1,'categories.php','cPath=14&pID=55&','67.142.161.19'),(4916,'2010-07-14 21:17:28',1,'product.php','cPath=14&product_type=1&pID=56&action=new_product&','67.142.161.19'),(4917,'2010-07-14 21:17:32',1,'product.php','cPath=14&product_type=1&pID=56&action=new_product_preview&','67.142.161.19'),(4918,'2010-07-14 21:17:38',1,'product.php','cPath=14&product_type=1&pID=56&action=update_product&','67.142.161.19'),(4919,'2010-07-14 21:17:38',1,'categories.php','cPath=14&pID=56&','67.142.161.19'),(4920,'2010-07-14 21:17:45',1,'categories.php','securityToken=d759a41c2031fa2f4fb510268e7020ae&cPath=11&','67.142.161.19'),(4921,'2010-07-14 21:17:49',1,'product.php','cPath=11&product_type=1&pID=41&action=new_product&','67.142.161.19'),(4922,'2010-07-14 21:17:53',1,'product.php','cPath=11&product_type=1&pID=41&action=new_product_preview&','67.142.161.19'),(4923,'2010-07-14 21:17:58',1,'product.php','cPath=11&product_type=1&pID=41&action=update_product&','67.142.161.19'),(4924,'2010-07-14 21:17:58',1,'categories.php','cPath=11&pID=41&','67.142.161.19'),(4925,'2010-07-14 21:18:02',1,'product.php','cPath=11&product_type=1&pID=44&action=new_product&','67.142.161.19'),(4926,'2010-07-14 21:18:06',1,'product.php','cPath=11&product_type=1&pID=44&action=new_product_preview&','67.142.161.19'),(4927,'2010-07-14 21:18:10',1,'product.php','cPath=11&product_type=1&pID=44&action=update_product&','67.142.161.19'),(4928,'2010-07-14 21:18:10',1,'categories.php','cPath=11&pID=44&','67.142.161.19'),(4929,'2010-07-14 21:18:18',1,'categories.php','securityToken=d759a41c2031fa2f4fb510268e7020ae&cPath=15&','67.142.161.19'),(4930,'2010-07-14 21:18:21',1,'product.php','cPath=15&product_type=1&pID=69&action=new_product&','67.142.161.19'),(4931,'2010-07-14 21:18:26',1,'product.php','cPath=15&product_type=1&pID=69&action=new_product_preview&','67.142.161.19'),(4932,'2010-07-14 21:18:30',1,'product.php','cPath=15&product_type=1&pID=69&action=update_product&','67.142.161.19'),(4933,'2010-07-14 21:18:30',1,'categories.php','cPath=15&pID=69&','67.142.161.19'),(4934,'2010-07-14 21:18:36',1,'product.php','cPath=15&product_type=1&pID=68&action=new_product&','67.142.161.19'),(4935,'2010-07-14 21:18:40',1,'product.php','cPath=15&product_type=1&pID=68&action=new_product_preview&','67.142.161.19'),(4936,'2010-07-14 21:18:51',1,'product.php','cPath=15&product_type=1&pID=68&action=update_product&','67.142.161.19'),(4937,'2010-07-14 21:18:51',1,'categories.php','cPath=15&pID=68&','67.142.161.19'),(4938,'2010-07-14 21:18:56',1,'product.php','cPath=15&product_type=1&pID=65&action=new_product&','67.142.161.19'),(4939,'2010-07-14 21:19:01',1,'product.php','cPath=15&product_type=1&pID=65&action=new_product_preview&','67.142.161.19'),(4940,'2010-07-14 21:19:06',1,'product.php','cPath=15&product_type=1&pID=65&action=update_product&','67.142.161.19'),(4941,'2010-07-14 21:19:07',1,'categories.php','cPath=15&pID=65&','67.142.161.19'),(4942,'2010-07-14 21:19:12',1,'product.php','cPath=15&product_type=1&pID=64&action=new_product&','67.142.161.19'),(4943,'2010-07-14 21:19:17',1,'product.php','cPath=15&product_type=1&pID=64&action=new_product_preview&','67.142.161.19'),(4944,'2010-07-14 21:19:20',1,'product.php','cPath=15&product_type=1&pID=64&action=update_product&','67.142.161.19'),(4945,'2010-07-14 21:19:21',1,'categories.php','cPath=15&pID=64&','67.142.161.19'),(4946,'2010-07-14 21:19:25',1,'product.php','cPath=15&product_type=1&pID=67&action=new_product&','67.142.161.19'),(4947,'2010-07-14 21:19:31',1,'product.php','cPath=15&product_type=1&pID=67&action=new_product_preview&','67.142.161.19'),(4948,'2010-07-14 21:19:37',1,'product.php','cPath=15&product_type=1&pID=67&action=update_product&','67.142.161.19'),(4949,'2010-07-14 21:19:37',1,'categories.php','cPath=15&pID=67&','67.142.161.19'),(4950,'2010-07-14 21:19:42',1,'product.php','cPath=15&product_type=1&pID=50&action=new_product&','67.142.161.19'),(4951,'2010-07-14 21:19:48',1,'product.php','cPath=15&product_type=1&pID=50&action=new_product_preview&','67.142.161.19'),(4952,'2010-07-14 21:19:52',1,'product.php','cPath=15&product_type=1&pID=50&action=update_product&','67.142.161.19'),(4953,'2010-07-14 21:19:52',1,'categories.php','cPath=15&pID=50&','67.142.161.19'),(4954,'2010-07-14 21:19:56',1,'product.php','cPath=15&product_type=1&pID=67&action=new_product&','67.142.161.19'),(4955,'2010-07-14 21:20:01',1,'product.php','cPath=15&product_type=1&pID=67&action=new_product_preview&','67.142.161.19'),(4956,'2010-07-14 21:20:09',1,'product.php','cPath=15&product_type=1&pID=67&action=update_product&','67.142.161.19'),(4957,'2010-07-14 21:20:09',1,'categories.php','cPath=15&pID=67&','67.142.161.19'),(4958,'2010-07-14 21:20:13',1,'product.php','cPath=15&product_type=1&pID=66&action=new_product&','67.142.161.19'),(4959,'2010-07-14 21:20:19',1,'product.php','cPath=15&product_type=1&pID=66&action=new_product_preview&','67.142.161.19'),(4960,'2010-07-14 21:20:22',1,'product.php','cPath=15&product_type=1&pID=66&action=update_product&','67.142.161.19'),(4961,'2010-07-14 21:20:22',1,'categories.php','cPath=15&pID=66&','67.142.161.19'),(4962,'2010-07-14 21:20:29',1,'categories.php','securityToken=d759a41c2031fa2f4fb510268e7020ae&cPath=4&','67.142.161.19'),(4963,'2010-07-14 21:20:34',1,'product.php','cPath=4&product_type=1&pID=61&action=new_product&','67.142.161.19'),(4964,'2010-07-14 21:20:39',1,'product.php','cPath=4&product_type=1&pID=61&action=new_product_preview&','67.142.161.19'),(4965,'2010-07-14 21:20:43',1,'product.php','cPath=4&product_type=1&pID=61&action=update_product&','67.142.161.19'),(4966,'2010-07-14 21:20:44',1,'categories.php','cPath=4&pID=61&','67.142.161.19'),(4967,'2010-07-14 21:20:54',1,'categories.php','securityToken=d759a41c2031fa2f4fb510268e7020ae&cPath=13&','67.142.161.19'),(4968,'2010-07-14 21:20:58',1,'product.php','cPath=13&product_type=1&pID=70&action=new_product&','67.142.161.19'),(4969,'2010-07-14 21:21:05',1,'product.php','cPath=13&product_type=1&pID=70&action=new_product_preview&','67.142.161.19'),(4970,'2010-07-14 21:21:12',1,'product.php','cPath=13&product_type=1&pID=70&action=update_product&','67.142.161.19'),(4971,'2010-07-14 21:21:12',1,'categories.php','cPath=13&pID=70&','67.142.161.19'),(4972,'2010-07-14 21:21:16',1,'product.php','cPath=13&product_type=1&pID=62&action=new_product&','67.142.161.19'),(4973,'2010-07-14 21:21:22',1,'product.php','cPath=13&product_type=1&pID=62&action=new_product_preview&','67.142.161.19'),(4974,'2010-07-14 21:21:26',1,'product.php','cPath=13&product_type=1&pID=62&action=update_product&','67.142.161.19'),(4975,'2010-07-14 21:21:26',1,'categories.php','cPath=13&pID=62&','67.142.161.19'),(4976,'2010-07-14 21:21:30',1,'product.php','cPath=13&product_type=1&pID=63&action=new_product&','67.142.161.19'),(4977,'2010-07-14 21:21:38',1,'product.php','cPath=13&product_type=1&pID=63&action=new_product_preview&','67.142.161.19'),(4978,'2010-07-14 21:21:47',1,'product.php','cPath=13&product_type=1&pID=63&action=update_product&','67.142.161.19'),(4979,'2010-07-14 21:21:47',1,'categories.php','cPath=13&pID=63&','67.142.161.19'),(4980,'2010-07-14 21:21:50',1,'product.php','cPath=13&product_type=1&pID=51&action=new_product&','67.142.161.19'),(4981,'2010-07-14 21:21:58',1,'product.php','cPath=13&product_type=1&pID=51&action=new_product_preview&','67.142.161.19'),(4982,'2010-07-14 21:22:02',1,'product.php','cPath=13&product_type=1&pID=51&action=update_product&','67.142.161.19'),(4983,'2010-07-14 21:22:02',1,'categories.php','cPath=13&pID=51&','67.142.161.19'),(4984,'2010-07-14 21:25:09',1,'categories.php','','67.142.161.19'),(4985,'2010-07-14 21:25:25',1,'categories.php','cPath=&action=new_category&','67.142.161.19'),(4986,'2010-07-14 21:25:55',1,'categories.php','','67.142.161.19'),(4987,'2010-07-14 21:26:02',1,'categories.php','cPath=5&','67.142.161.19'),(4988,'2010-07-14 21:26:16',1,'categories.php','cPath=5&cID=8&action=edit_category&search=&','67.142.161.19'),(4989,'2010-07-14 21:26:26',1,'categories.php','set_display_categories_dropdown=1&cID=&cPath=5&','67.142.161.19'),(4990,'2010-07-14 21:26:35',1,'categories.php','cPath=5_9&','67.142.161.19'),(4991,'2010-07-14 21:26:40',1,'product.php','page=1&product_type=1&cPath=5_9&pID=33&action=new_product&','67.142.161.19'),(4992,'2010-07-14 21:26:48',1,'product.php','cPath=5_9&product_type=1&pID=33&action=new_product_preview&page=1&','67.142.161.19'),(4993,'2010-07-14 21:26:53',1,'product.php','cPath=5_9&product_type=1&pID=33&action=update_product&page=1&','67.142.161.19'),(4994,'2010-07-14 21:26:53',1,'categories.php','cPath=5_9&pID=33&page=1&','67.142.161.19'),(4995,'2010-07-14 21:27:01',1,'categories.php','','67.142.161.19'),(4996,'2010-07-14 21:27:09',1,'categories.php','cPath=&cID=5&action=edit_category&search=&','67.142.161.19'),(4997,'2010-07-14 21:28:15',1,'ceon_uri_mapping_config.php','','67.142.161.19'),(4998,'2010-07-14 21:31:15',1,'categories.php','','67.142.161.19'),(4999,'2010-07-14 21:31:23',1,'categories.php','cPath=&cID=16&action=edit_category&search=&','67.142.161.19'),(5000,'2010-07-14 21:31:53',1,'categories.php','action=update_category&cPath=&','67.142.161.19'),(5001,'2010-07-14 21:31:53',1,'categories.php','cPath=&cID=16&','67.142.161.19'),(5002,'2010-07-14 21:32:00',1,'categories.php','cPath=16&','67.142.161.19'),(5003,'2010-07-14 21:32:02',1,'categories.php','cPath=&cID=16&action=edit_category&search=&','67.142.161.19'),(5004,'2010-07-14 21:32:26',1,'categories.php','action=update_category&cPath=&','67.142.161.19'),(5005,'2010-07-14 21:32:27',1,'categories.php','cPath=&cID=16&','67.142.161.19'),(5006,'2010-07-14 21:33:02',1,'categories.php','cPath=3&','67.142.161.19'),(5007,'2010-07-14 21:33:09',1,'categories.php','','67.142.161.19'),(5008,'2010-07-14 21:33:16',1,'categories.php','cPath=&cID=3&action=edit_category&search=&','67.142.161.19'),(5009,'2010-07-14 21:33:34',1,'categories.php','action=update_category&cPath=&','67.142.161.19'),(5010,'2010-07-14 21:33:35',1,'categories.php','cPath=&cID=3&','67.142.161.19'),(5011,'2010-07-14 21:33:42',1,'categories.php','cPath=3&','67.142.161.19'),(5012,'2010-07-14 21:33:42',1,'categories.php','cPath=&cID=3&action=edit_category&search=&','67.142.161.19'),(5013,'2010-07-14 21:33:59',1,'categories.php','action=update_category&cPath=&','67.142.161.19'),(5014,'2010-07-14 21:34:00',1,'categories.php','cPath=&cID=3&','67.142.161.19'),(5015,'2010-07-14 21:36:48',1,'sitemapxml.php','','67.142.161.19'),(5016,'2010-07-14 21:45:46',1,'sitemapxml.php','','67.142.161.19'),(5017,'2010-07-14 21:45:57',1,'alt_nav.php','','67.142.161.19'),(5018,'2010-07-14 21:46:01',1,'configuration.php','gID=32&','67.142.161.19'),(5019,'2010-07-14 21:46:12',1,'configuration.php','gID=32&cID=700&action=edit&','67.142.161.19'),(5020,'2010-07-14 21:47:14',1,'configuration.php','gID=32&cID=702&action=edit&','67.142.161.19'),(5021,'2010-07-14 21:47:24',1,'configuration.php','gID=32&cID=702&action=save&','67.142.161.19'),(5022,'2010-07-14 21:47:24',1,'configuration.php','gID=32&cID=702&','67.142.161.19'),(5023,'2010-07-14 21:47:31',1,'sitemapxml.php','','67.142.161.19'),(5024,'2010-07-16 19:19:13',0,'login.php ','','67.142.161.23'),(5025,'2010-07-16 19:19:14',0,'login.php ','','67.142.161.23'),(5026,'2010-07-16 19:19:36',0,'login.php wayyne1','','67.142.161.23'),(5027,'2010-07-16 19:19:46',0,'login.php wayyne1','','67.142.161.23'),(5028,'2010-07-16 19:19:58',0,'login.php wayne1','','67.142.161.23'),(5029,'2010-07-16 19:19:58',0,'login.php ','','67.142.161.23'),(5030,'2010-07-16 19:20:51',1,'categories.php','','67.142.161.23'),(5031,'2010-07-16 19:20:57',1,'categories.php','cPath=5&','67.142.161.23'),(5032,'2010-07-16 19:21:03',1,'categories.php','cPath=5_8&','67.142.161.23'),(5033,'2010-07-16 19:21:09',1,'product.php','page=1&product_type=1&cPath=5_8&pID=26&action=new_product&','67.142.161.23'),(5034,'2010-07-16 19:21:09',1,'product.php','page=1&product_type=1&cPath=5_8&pID=26&action=new_product_meta_tags&','67.142.161.23'),(5035,'2010-07-16 19:24:30',1,'product.php','cPath=5_8&product_type=1&pID=26&action=new_product_preview_meta_tags&page=1&','67.142.161.23'),(5036,'2010-07-16 19:24:58',1,'product.php','cPath=5_8&product_type=1&pID=26&action=update_product_meta_tags&page=1&','67.142.161.23'),(5037,'2010-07-16 19:24:58',1,'categories.php','cPath=5_8&pID=26&page=1&','67.142.161.23'),(5038,'2010-07-16 19:26:52',1,'product.php','page=1&product_type=1&cPath=5_8&pID=26&action=new_product_meta_tags&','67.142.161.23'),(5039,'2010-07-16 19:27:27',1,'product.php','cPath=5_8&product_type=1&pID=26&action=new_product_preview_meta_tags&page=1&','67.142.161.23'),(5040,'2010-07-16 19:27:36',1,'product.php','cPath=5_8&product_type=1&pID=26&action=update_product_meta_tags&page=1&','67.142.161.23'),(5041,'2010-07-16 19:27:37',1,'categories.php','cPath=5_8&pID=26&page=1&','67.142.161.23'),(5042,'2010-07-16 19:28:56',1,'product.php','page=1&product_type=1&cPath=5_8&pID=26&action=new_product_meta_tags&','67.142.161.23'),(5043,'2010-07-16 19:29:47',1,'product.php','cPath=5_8&product_type=1&pID=26&action=new_product_preview_meta_tags&page=1&','67.142.161.23'),(5044,'2010-07-16 19:29:53',1,'product.php','cPath=5_8&product_type=1&pID=26&action=update_product_meta_tags&page=1&','67.142.161.23'),(5045,'2010-07-16 19:29:53',1,'categories.php','cPath=5_8&pID=26&page=1&','67.142.161.23'),(5046,'2010-07-16 19:32:12',1,'product.php','page=1&product_type=1&cPath=5_8&pID=26&action=new_product_meta_tags&','67.142.161.23'),(5047,'2010-07-16 19:32:31',1,'product.php','cPath=5_8&product_type=1&pID=26&action=new_product_preview_meta_tags&page=1&','67.142.161.23'),(5048,'2010-07-16 19:32:36',1,'product.php','cPath=5_8&product_type=1&pID=26&action=update_product_meta_tags&page=1&','67.142.161.23'),(5049,'2010-07-16 19:32:36',1,'categories.php','cPath=5_8&pID=26&page=1&','67.142.161.23'),(5050,'2010-07-16 19:32:40',1,'product.php','page=1&product_type=1&cPath=5_8&pID=25&action=new_product_meta_tags&','67.142.161.23'),(5051,'2010-07-16 19:35:25',1,'product.php','cPath=5_8&product_type=1&pID=25&action=new_product_preview_meta_tags&page=1&','67.142.161.23'),(5052,'2010-07-16 19:35:28',1,'product.php','cPath=5_8&product_type=1&pID=25&action=update_product_meta_tags&page=1&','67.142.161.23'),(5053,'2010-07-16 19:35:28',1,'categories.php','cPath=5_8&pID=25&page=1&','67.142.161.23'),(5054,'2010-07-16 19:35:36',1,'product.php','page=1&product_type=1&cPath=5_8&pID=26&action=new_product_meta_tags&','67.142.161.23'),(5055,'2010-07-16 19:35:49',1,'product.php','page=1&product_type=1&cPath=5_8&pID=26&action=new_product&','67.142.161.23'),(5056,'2010-07-16 19:35:49',1,'product.php','page=1&product_type=1&cPath=5_8&pID=26&action=new_product_meta_tags&','67.142.161.23'),(5057,'2010-07-16 19:35:57',1,'product.php','page=1&product_type=1&cPath=5_8&pID=25&action=new_product_meta_tags&','67.142.161.23'),(5058,'2010-07-16 19:36:36',1,'product.php','page=1&product_type=1&cPath=5_8&pID=28&action=new_product&','67.142.161.23'),(5059,'2010-07-16 20:34:18',1,'product.php','cPath=5_8&product_type=1&pID=28&action=new_product_preview&page=1&','67.142.161.26'),(5060,'2010-07-16 20:34:47',1,'product.php','cPath=5_8&product_type=1&pID=28&action=update_product&page=1&','67.142.161.26'),(5061,'2010-07-16 20:34:48',1,'categories.php','cPath=5_8&pID=28&page=1&','67.142.161.26'),(5062,'2010-07-16 20:34:53',1,'product.php','page=1&product_type=1&cPath=5_8&pID=28&action=new_product_meta_tags&','67.142.161.26'),(5063,'2010-07-16 20:37:09',1,'product.php','cPath=5_8&product_type=1&pID=28&action=new_product_preview_meta_tags&page=1&','67.142.161.26'),(5064,'2010-07-16 20:37:14',1,'product.php','cPath=5_8&product_type=1&pID=28&action=update_product_meta_tags&page=1&','67.142.161.26'),(5065,'2010-07-16 20:37:14',1,'categories.php','cPath=5_8&pID=28&page=1&','67.142.161.26'),(5066,'2010-07-16 20:37:21',1,'product.php','page=1&product_type=1&cPath=5_8&pID=29&action=new_product&','67.142.161.26'),(5067,'2010-07-16 20:37:42',1,'categories.php','cPath=5_8&pID=29&page=1&','67.142.161.26'),(5068,'2010-07-16 20:37:46',1,'product.php','page=1&product_type=1&cPath=5_8&pID=29&action=new_product&','67.142.161.26'),(5069,'2010-07-16 20:37:46',1,'product.php','page=1&product_type=1&cPath=5_8&pID=29&action=new_product_meta_tags&','67.142.161.26'),(5070,'2010-07-16 20:39:47',1,'product.php','cPath=5_8&product_type=1&pID=29&action=new_product_preview_meta_tags&page=1&','67.142.161.26'),(5071,'2010-07-16 20:39:51',1,'product.php','cPath=5_8&product_type=1&pID=29&action=update_product_meta_tags&page=1&','67.142.161.26'),(5072,'2010-07-16 20:39:52',1,'categories.php','cPath=5_8&pID=29&page=1&','67.142.161.26'),(5073,'2010-07-16 20:39:56',1,'product.php','page=1&product_type=1&cPath=5_8&pID=29&action=new_product_meta_tags&','67.142.161.26'),(5074,'2010-07-16 20:40:06',1,'product.php','cPath=5_8&product_type=1&pID=29&action=new_product_preview_meta_tags&page=1&','67.142.161.26'),(5075,'2010-07-16 20:40:09',1,'product.php','cPath=5_8&product_type=1&pID=29&action=update_product_meta_tags&page=1&','67.142.161.26'),(5076,'2010-07-16 20:40:09',1,'categories.php','cPath=5_8&pID=29&page=1&','67.142.161.26'),(5077,'2010-07-16 20:40:33',1,'configuration.php','gID=18&','67.142.161.26'),(5078,'2010-07-16 20:40:49',1,'configuration.php','gID=18&cID=386&action=edit&','67.142.161.26'),(5079,'2010-07-16 20:40:55',1,'configuration.php','gID=18&cID=386&action=save&','67.142.161.26'),(5080,'2010-07-16 20:40:55',1,'configuration.php','gID=18&cID=386&','67.142.161.26'),(5081,'2010-07-16 20:40:58',1,'configuration.php','gID=18&cID=387&action=edit&','67.142.161.26'),(5082,'2010-07-16 20:41:03',1,'configuration.php','gID=18&cID=387&action=save&','67.142.161.26'),(5083,'2010-07-16 20:41:04',1,'configuration.php','gID=18&cID=387&','67.142.161.26'),(5084,'2010-07-16 20:41:39',1,'categories.php','','67.142.161.26'),(5085,'2010-07-16 20:41:48',1,'categories.php','cPath=5&','67.142.161.26'),(5086,'2010-07-16 20:41:57',1,'categories.php','cPath=5_8&','67.142.161.26'),(5087,'2010-07-16 20:42:07',1,'product.php','page=1&product_type=1&cPath=5_8&pID=27&action=new_product_meta_tags&','67.142.161.26'),(5088,'2010-07-16 20:43:55',1,'product.php','cPath=5_8&product_type=1&pID=27&action=new_product_preview_meta_tags&page=1&','67.142.161.26'),(5089,'2010-07-16 20:44:07',1,'product.php','cPath=5_8&product_type=1&pID=27&action=update_product_meta_tags&page=1&','67.142.161.26'),(5090,'2010-07-16 20:44:07',1,'categories.php','cPath=5_8&pID=27&page=1&','67.142.161.26'),(5091,'2010-07-16 20:47:14',1,'store_manager.php','','67.142.161.26'),(5092,'2010-07-16 20:47:28',1,'categories.php','cPath=5_8&pID=27&page=1&','67.142.161.26'),(5093,'2010-07-16 20:47:37',1,'email_welcome.php','','67.142.161.26'),(5094,'2010-07-16 20:48:52',1,'server_info.php','','67.142.161.26'),(5095,'2010-07-16 20:50:01',1,'email_welcome.php','','67.142.161.26'),(5096,'2010-07-16 20:50:12',1,'whos_online.php','','67.142.161.26'),(5097,'2010-07-16 20:50:31',1,'email_welcome.php','','67.142.161.26'),(5098,'2010-07-17 20:02:16',0,'login.php ','','67.142.161.23'),(5099,'2010-07-17 20:02:17',0,'login.php ','','67.142.161.23'),(5100,'2010-07-17 20:02:33',0,'login.php wayne1','','67.142.161.23'),(5101,'2010-07-17 20:04:01',1,'categories.php','','67.142.161.23'),(5102,'2010-07-17 20:05:05',1,'categories.php','cPath=5&','67.142.161.23'),(5103,'2010-07-17 20:05:20',1,'categories.php','cPath=5_9&','67.142.161.23'),(5104,'2010-07-17 20:05:25',1,'product.php','page=1&product_type=1&cPath=5_9&pID=30&action=new_product_meta_tags&','67.142.161.23'),(5105,'2010-07-17 20:05:25',1,'product.php','page=1&product_type=1&cPath=5_9&pID=30&action=new_product&','67.142.161.23'),(5106,'2010-07-17 20:05:35',1,'categories.php','cPath=5_9&','67.142.161.23'),(5107,'2010-07-17 20:05:45',1,'categories.php','securityToken=69218262b98c936ed48263220e483596&cPath=8&','67.142.161.23'),(5108,'2010-07-17 20:05:50',1,'product.php','page=1&product_type=1&cPath=8&pID=28&action=new_product&','67.142.161.23'),(5109,'2010-07-17 20:05:57',1,'categories.php','securityToken=69218262b98c936ed48263220e483596&cPath=8&','67.142.161.23'),(5110,'2010-07-17 20:06:00',1,'product.php','page=1&product_type=1&cPath=8&pID=28&action=new_product_meta_tags&','67.142.161.23'),(5111,'2010-07-17 20:06:00',1,'product.php','page=1&product_type=1&cPath=8&pID=28&action=new_product&','67.142.161.23'),(5112,'2010-07-17 20:06:28',1,'categories.php','cPath=8&pID=28&page=1&','67.142.161.23'),(5113,'2010-07-17 20:06:35',1,'categories.php','securityToken=69218262b98c936ed48263220e483596&cPath=9&','67.142.161.23'),(5114,'2010-07-17 20:06:47',1,'product.php','page=1&product_type=1&cPath=9&pID=30&action=new_product&','67.142.161.23'),(5115,'2010-07-17 20:06:47',1,'product.php','page=1&product_type=1&cPath=9&pID=30&action=new_product_meta_tags&','67.142.161.23'),(5116,'2010-07-17 20:08:34',1,'product.php','cPath=9&product_type=1&pID=30&action=new_product_preview_meta_tags&page=1&','67.142.161.23'),(5117,'2010-07-17 20:08:44',1,'product.php','cPath=9&product_type=1&pID=30&action=update_product_meta_tags&page=1&','67.142.161.23'),(5118,'2010-07-17 20:09:05',1,'product.php','cPath=9&product_type=1&pID=30&action=new_product_preview_meta_tags&page=1&','67.142.161.23'),(5119,'2010-07-17 20:09:35',1,'product.php','cPath=9&product_type=1&pID=30&action=update_product_meta_tags&page=1&','67.142.161.23'),(5120,'2010-07-17 20:09:35',1,'categories.php','cPath=9&pID=30&page=1&','67.142.161.23'),(5121,'2010-07-17 20:09:39',1,'product.php','page=1&product_type=1&cPath=9&pID=31&action=new_product_meta_tags&','67.142.161.23'),(5122,'2010-07-17 20:11:24',1,'product.php','cPath=9&product_type=1&pID=31&action=new_product_preview_meta_tags&page=1&','67.142.161.23'),(5123,'2010-07-17 20:11:40',1,'product.php','cPath=9&product_type=1&pID=31&action=update_product_meta_tags&page=1&','67.142.161.23'),(5124,'2010-07-17 20:11:40',1,'categories.php','cPath=9&pID=31&page=1&','67.142.161.23'),(5125,'2010-07-17 20:11:46',1,'product.php','page=1&product_type=1&cPath=9&pID=33&action=new_product&','67.142.161.23'),(5126,'2010-07-17 20:11:54',1,'product.php','page=1&product_type=1&cPath=9&pID=33&action=new_product_meta_tags&','67.142.161.23'),(5127,'2010-07-17 20:13:46',1,'product.php','cPath=9&product_type=1&pID=33&action=new_product_preview_meta_tags&page=1&','67.142.161.23'),(5128,'2010-07-17 20:14:06',1,'product.php','cPath=9&product_type=1&pID=33&action=update_product_meta_tags&page=1&','67.142.161.23'),(5129,'2010-07-17 20:15:32',1,'product.php','cPath=9&product_type=1&pID=33&action=new_product_preview_meta_tags&page=1&','67.142.161.23'),(5130,'2010-07-17 20:15:41',1,'product.php','cPath=9&product_type=1&pID=33&action=update_product_meta_tags&page=1&','67.142.161.23'),(5131,'2010-07-17 20:15:56',1,'product.php','cPath=9&product_type=1&pID=33&action=new_product_preview_meta_tags&page=1&','67.142.161.23'),(5132,'2010-07-17 20:16:04',1,'product.php','cPath=9&product_type=1&pID=33&action=update_product_meta_tags&page=1&','67.142.161.23'),(5133,'2010-07-17 20:16:04',1,'categories.php','cPath=9&pID=33&page=1&','67.142.161.23'),(5134,'2010-07-17 20:16:08',1,'product.php','page=1&product_type=1&cPath=9&pID=34&action=new_product_meta_tags&','67.142.161.23'),(5135,'2010-07-17 20:20:29',1,'product.php','cPath=9&product_type=1&pID=34&action=new_product_preview_meta_tags&page=1&','67.142.161.23'),(5136,'2010-07-17 20:20:43',1,'product.php','cPath=9&product_type=1&pID=34&action=update_product_meta_tags&page=1&','67.142.161.23'),(5137,'2010-07-17 20:20:44',1,'categories.php','cPath=9&pID=34&page=1&','67.142.161.23'),(5138,'2010-07-17 20:20:53',1,'product.php','page=1&product_type=1&cPath=9&pID=32&action=new_product_meta_tags&','67.142.161.23'),(5139,'2010-07-17 20:23:31',1,'product.php','cPath=9&product_type=1&pID=32&action=new_product_preview_meta_tags&page=1&','67.142.161.23'),(5140,'2010-07-17 20:23:37',1,'product.php','cPath=9&product_type=1&pID=32&action=update_product_meta_tags&page=1&','67.142.161.23'),(5141,'2010-07-17 20:23:48',1,'product.php','cPath=9&product_type=1&pID=32&action=new_product_preview_meta_tags&page=1&','67.142.161.23'),(5142,'2010-07-17 20:24:02',1,'product.php','cPath=9&product_type=1&pID=32&action=update_product_meta_tags&page=1&','67.142.161.23'),(5143,'2010-07-17 20:24:37',1,'product.php','cPath=9&product_type=1&pID=32&action=new_product_preview_meta_tags&page=1&','67.142.161.23'),(5144,'2010-07-17 20:24:45',1,'product.php','cPath=9&product_type=1&pID=32&action=update_product_meta_tags&page=1&','67.142.161.23'),(5145,'2010-07-17 20:24:45',1,'categories.php','cPath=9&pID=32&page=1&','67.142.161.23'),(5146,'2010-07-20 19:19:01',0,'login.php ','','67.142.161.23'),(5147,'2010-07-20 19:19:02',0,'login.php ','','67.142.161.23'),(5148,'2010-07-20 19:20:00',0,'login.php wayne1','','67.142.161.23'),(5149,'2010-07-20 19:20:42',1,'orders.php','selected_box=customers&status=4&','67.142.161.23'),(5150,'2010-07-20 19:21:35',1,'whos_online.php','','67.142.161.23'),(5151,'2010-07-20 19:22:00',1,'whos_online.php','','67.142.161.23'),(5152,'2010-07-20 19:22:31',1,'stats_products_viewed.php','','67.142.161.23'),(5153,'2010-07-20 20:21:35',0,'login.php ','','67.142.161.19'),(5154,'2010-07-20 20:21:37',0,'login.php ','','67.142.161.19'),(5155,'2010-07-20 20:21:57',0,'login.php wayne1','','67.142.161.19'),(5156,'2010-07-20 20:21:58',0,'login.php ','','67.142.161.19'),(5157,'2010-07-20 20:22:12',1,'whos_online.php','','67.142.161.19'),(5158,'2010-07-20 20:22:32',1,'developers_tool_kit.php','','67.142.161.19'),(5159,'2010-07-20 20:22:49',1,'developers_tool_kit.php','action=locate_configuration&','67.142.161.19'),(5160,'2010-07-20 20:23:13',1,'developers_tool_kit.php','action=locate_all_files&','67.142.161.19'),(5161,'2010-07-21 21:31:35',0,'login.php ','','67.142.161.25'),(5162,'2010-07-21 21:31:36',0,'login.php ','','67.142.161.25'),(5163,'2010-07-21 21:31:55',0,'login.php wayne1','','67.142.161.25'),(5164,'2010-07-22 20:33:18',0,'login.php ','','67.142.161.20'),(5165,'2010-07-22 20:33:19',0,'login.php ','','67.142.161.20'),(5166,'2010-07-22 20:34:13',0,'login.php wayne1','','67.142.161.20'),(5167,'2010-07-22 20:34:13',0,'login.php ','','67.142.161.20'),(5168,'2010-07-22 20:34:33',1,'stats_products_viewed.php','','67.142.161.20'),(5169,'2010-07-24 11:32:37',0,'login.php ','','67.142.161.25'),(5170,'2010-07-24 11:32:39',0,'login.php ','','67.142.161.25'),(5171,'2010-07-24 11:33:12',0,'login.php wayne1','','67.142.161.25'),(5172,'2010-07-24 11:38:58',1,'stats_products_viewed.php','','67.142.161.25'),(5173,'2010-07-24 11:39:10',1,'categories.php','cPath=16&pID=43&','67.142.161.25'),(5174,'2010-07-24 11:39:34',1,'product.php','page=1&product_type=1&cPath=16&pID=43&action=new_product&','67.142.161.25'),(5175,'2010-07-24 11:40:09',1,'login.php','','67.142.161.25'),(5176,'2010-07-24 11:40:10',0,'login.php ','','67.142.161.25'),(5177,'2010-07-24 11:40:24',0,'login.php wayne1','','67.142.161.25'),(5178,'2010-07-24 11:40:41',1,'categories.php','','67.142.161.25'),(5179,'2010-07-24 11:40:45',1,'categories.php','cPath=16&','67.142.161.25'),(5180,'2010-07-24 11:40:49',1,'product.php','page=1&product_type=1&cPath=16&pID=43&action=new_product&','67.142.161.25'),(5181,'2010-07-24 11:47:03',1,'alt_nav.php','','67.142.161.25'),(5182,'2010-07-24 11:47:11',1,'developers_tool_kit.php','','67.142.161.25'),(5183,'2010-07-24 11:53:53',1,'categories.php','','67.142.161.25'),(5184,'2010-07-24 11:53:58',1,'categories.php','cPath=16&','67.142.161.25'),(5185,'2010-07-24 11:54:06',1,'product.php','page=1&product_type=1&cPath=16&pID=43&action=new_product&','67.142.161.25'),(5186,'2010-07-24 11:54:24',1,'product.php','cPath=16&product_type=1&pID=43&action=new_product_preview&page=1&','67.142.161.25'),(5187,'2010-07-24 11:54:40',1,'product.php','cPath=16&product_type=1&pID=43&action=update_product&page=1&','67.142.161.25'),(5188,'2010-07-24 11:54:40',1,'categories.php','cPath=16&pID=43&page=1&','67.142.161.25'),(5189,'2010-07-24 11:56:46',1,'categories.php','','67.142.161.25'),(5190,'2010-07-24 11:56:54',1,'categories.php','cPath=16&','67.142.161.25'),(5191,'2010-07-24 11:57:05',1,'categories.php','','67.142.161.25'),(5192,'2010-07-24 11:57:11',1,'product_types.php','','67.142.161.25'),(5193,'2010-07-24 11:57:16',1,'product_types.php','page=1&ptID=1&action=layout&','67.142.161.25'),(5194,'2010-07-24 11:57:22',1,'product_types.php','ptID=1&cID=13&action=layout_edit&','67.142.161.25'),(5195,'2010-07-24 11:57:27',1,'product_types.php','ptID=1&cID=13&action=layout_save&','67.142.161.25'),(5196,'2010-07-24 11:57:27',1,'product_types.php','gID=&cID=13&ptID=1&action=layout&','67.142.161.25'),(5197,'2010-07-24 12:01:13',1,'developers_tool_kit.php','','67.142.161.25'),(5198,'2010-07-24 12:01:24',1,'developers_tool_kit.php','action=locate_configuration&','67.142.161.25'),(5199,'2010-07-24 12:01:38',1,'developers_tool_kit.php','action=locate_configuration&','67.142.161.25'),(5200,'2010-07-24 12:01:49',1,'developers_tool_kit.php','action=locate_all_files&','67.142.161.25'),(5201,'2010-07-24 12:10:07',1,'categories.php','','67.142.161.25'),(5202,'2010-07-24 12:10:14',1,'categories.php','cPath=16&','67.142.161.25'),(5203,'2010-07-24 12:10:19',1,'product.php','page=1&product_type=1&cPath=16&pID=43&action=new_product&','67.142.161.25'),(5204,'2010-07-24 12:10:19',1,'categories.php','cPath=16&pID=43&action=attribute_features&page=1&','67.142.161.25'),(5205,'2010-07-24 12:10:32',1,'attributes_controller.php','products_filter=43&current_category_id=16&','67.142.161.25'),(5206,'2010-07-24 12:10:48',1,'attributes_controller.php','action=update_attribute&attribute_id=5&attribute_page=1&products_filter=43&current_category_id=16&','67.142.161.25'),(5207,'2010-07-24 12:14:51',1,'attributes_controller.php','action=update_product_attribute&attribute_page=1&products_filter=43&','67.142.161.25'),(5208,'2010-07-24 12:14:51',1,'attributes_controller.php','attribute_page=1&products_filter=43&current_category_id=16&','67.142.161.25'),(5209,'2010-07-24 12:15:00',1,'attributes_controller.php','action=update_attribute&attribute_id=6&attribute_page=1&products_filter=43&current_category_id=16&','67.142.161.25'),(5210,'2010-07-24 12:15:08',1,'attributes_controller.php','action=update_product_attribute&attribute_page=1&products_filter=43&','67.142.161.25'),(5211,'2010-07-24 12:15:08',1,'attributes_controller.php','attribute_page=1&products_filter=43&current_category_id=16&','67.142.161.25'),(5212,'2010-07-24 21:51:07',0,'login.php ','','67.142.161.21'),(5213,'2010-07-24 21:51:08',0,'login.php ','','67.142.161.21'),(5214,'2010-07-24 21:52:26',0,'login.php wayne1','','67.142.161.21'),(5215,'2010-07-24 21:52:46',1,'stats_products_viewed.php','','67.142.161.21'),(5216,'2010-07-24 22:04:37',1,'stats_customers_referrals.php','','67.142.161.21'),(5217,'2010-07-24 22:35:26',0,'login.php ','','67.142.161.21'),(5218,'2010-07-24 22:35:27',0,'login.php ','','67.142.161.21'),(5219,'2010-07-24 22:35:54',0,'login.php wayne1','','67.142.161.21'),(5220,'2010-07-26 13:37:38',0,'login.php ','','67.142.161.18'),(5221,'2010-07-26 13:37:39',0,'login.php ','','67.142.161.18'),(5222,'2010-07-26 13:37:58',0,'login.php wayne1','','67.142.161.18'),(5223,'2010-07-26 13:38:11',1,'stats_products_viewed.php','','67.142.161.18'),(5224,'2010-07-28 06:54:10',0,'login.php ','','67.142.161.22'),(5225,'2010-07-28 06:54:11',0,'login.php ','','67.142.161.22'),(5226,'2010-07-28 06:55:14',0,'login.php wayne1','','67.142.161.22'),(5227,'2010-07-28 06:55:14',0,'login.php ','','67.142.161.22'),(5228,'2010-07-28 07:31:26',0,'login.php ','','67.142.161.24'),(5229,'2010-07-28 07:31:27',0,'login.php ','','67.142.161.24'),(5230,'2010-07-28 07:31:52',0,'login.php wayne1','','67.142.161.24'),(5231,'2010-07-28 07:32:31',0,'login.php wayne1','','67.142.161.24'),(5232,'2010-07-28 07:33:20',0,'login.php wayne1','','67.142.161.24'),(5233,'2010-07-28 23:33:31',0,'login.php ','','67.142.161.24'),(5234,'2010-07-28 23:33:32',0,'login.php ','','67.142.161.24'),(5235,'2010-07-28 23:33:49',0,'login.php wayne1','','67.142.161.24'),(5236,'2010-07-28 23:33:49',0,'login.php ','','67.142.161.24'),(5237,'2010-07-28 23:33:57',1,'template_select.php','','67.142.161.24'),(5238,'2010-08-19 21:27:05',0,'login.php ','','67.142.161.18'),(5239,'2010-08-19 21:27:06',0,'login.php ','','67.142.161.18'),(5240,'2010-08-19 21:27:29',0,'login.php wayne1','','67.142.161.18'),(5241,'2010-08-19 21:27:30',0,'login.php ','','67.142.161.18'),(5242,'2010-08-19 21:27:53',1,'stats_products_viewed.php','','67.142.161.18'),(5243,'2010-08-19 21:28:19',1,'categories.php','cPath=16&pID=43&','67.142.161.18'),(5244,'2010-08-19 22:50:57',0,'login.php ','','67.142.161.18'),(5245,'2010-08-19 22:50:59',0,'login.php ','','67.142.161.18'),(5246,'2010-08-19 22:51:50',0,'login.php surpro','','67.142.161.18'),(5247,'2010-08-19 22:52:09',0,'login.php surpro','','67.142.161.18'),(5248,'2010-08-22 12:43:29',0,'login.php ','','91.213.174.123'),(5249,'2010-08-25 07:42:24',0,'login.php ','','213.229.82.79'),(5250,'2010-08-31 23:29:38',0,'login.php ','','67.142.161.18'),(5251,'2010-08-31 23:29:39',0,'login.php ','','67.142.161.18'),(5252,'2010-08-31 23:29:57',0,'login.php wayne1','','67.142.161.18'),(5253,'2010-08-31 23:29:58',0,'login.php ','','67.142.161.18'),(5254,'2010-08-31 23:30:14',1,'developers_tool_kit.php','','67.142.161.18'),(5255,'2010-08-31 23:30:22',1,'developers_tool_kit.php','action=locate_all_files&','67.142.161.18'),(5256,'2010-08-31 23:30:40',1,'developers_tool_kit.php','action=locate_configuration&','67.142.161.18'),(5257,'2010-08-31 23:30:48',1,'developers_tool_kit.php','action=locate_configuration&','67.142.161.18'),(5258,'2010-08-31 23:30:57',1,'developers_tool_kit.php','action=locate_all_files&','67.142.161.18'),(5259,'2010-08-31 23:59:44',1,'developers_tool_kit.php','','67.142.161.18'),(5260,'2010-09-01 00:00:06',1,'developers_tool_kit.php','action=locate_all_files&','67.142.161.18'),(5261,'2010-09-01 00:00:31',1,'developers_tool_kit.php','action=locate_configuration&','67.142.161.18'),(5262,'2010-09-01 00:00:41',1,'developers_tool_kit.php','','67.142.161.18'),(5263,'2010-09-01 00:00:43',1,'developers_tool_kit.php','','67.142.161.18'),(5264,'2010-09-01 00:00:59',1,'developers_tool_kit.php','action=locate_all_files&','67.142.161.18'),(5265,'2010-09-01 00:01:16',1,'developers_tool_kit.php','action=locate_configuration&','67.142.161.18'),(5266,'2010-09-01 00:01:21',1,'developers_tool_kit.php','','67.142.161.18'),(5267,'2010-09-01 00:01:28',1,'developers_tool_kit.php','','67.142.161.18'),(5268,'2010-09-01 00:01:42',1,'developers_tool_kit.php','action=locate_configuration&','67.142.161.18'),(5269,'2010-09-01 00:02:03',1,'developers_tool_kit.php','action=locate_all_files&','67.142.161.18'),(5270,'2010-09-01 00:02:14',1,'developers_tool_kit.php','action=locate_all_files&','67.142.161.18'),(5271,'2010-09-01 00:03:19',1,'developers_tool_kit.php','action=locate_configuration&','67.142.161.18'),(5272,'2010-09-01 00:03:29',1,'developers_tool_kit.php','action=locate_all_files&','67.142.161.18'),(5273,'2010-09-01 00:04:07',1,'developers_tool_kit.php','action=locate_all_files&','67.142.161.18'),(5274,'2010-09-01 12:27:19',0,'login.php ','','91.213.174.123'),(5275,'2010-09-11 12:10:25',0,'login.php ','','67.142.161.20'),(5276,'2010-09-11 12:10:26',0,'login.php ','','67.142.161.20'),(5277,'2010-09-11 12:10:43',0,'login.php wayne1','','67.142.161.20'),(5278,'2010-09-11 12:10:59',1,'define_pages_editor.php','','67.142.161.20'),(5279,'2010-09-11 12:11:06',1,'define_pages_editor.php','securityToken=186d9c880c09f66d8fcfe20aac4bdff6&language=sp&','67.142.161.20'),(5280,'2010-09-11 12:11:11',1,'define_pages_editor.php','securityToken=186d9c880c09f66d8fcfe20aac4bdff6&define_it=10&action=new_page&','67.142.161.20'),(5281,'2010-10-18 09:58:35',0,'login.php ','','67.142.161.29'),(5282,'2010-10-18 09:58:36',0,'login.php ','','67.142.161.29'),(5283,'2010-10-18 09:58:50',0,'login.php wayne1','','67.142.161.29'),(5284,'2010-10-18 09:58:51',0,'login.php ','','67.142.161.29'),(5285,'2010-10-18 09:59:01',1,'modules.php','set=payment&','67.142.161.29'),(5286,'2010-10-18 09:59:15',1,'modules.php','set=payment&module=paypalwpp&','67.142.161.29'),(5287,'2010-10-18 09:59:25',1,'modules.php','set=payment&module=paypalwpp&action=edit&','67.142.161.29'),(5288,'2010-10-19 06:39:04',0,'login.php ','','91.213.174.123');
/*!40000 ALTER TABLE `zen_admin_activity_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_authorizenet`
--

DROP TABLE IF EXISTS `zen_authorizenet`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_authorizenet` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `customer_id` int(11) NOT NULL DEFAULT '0',
  `order_id` int(11) NOT NULL DEFAULT '0',
  `response_code` int(1) NOT NULL DEFAULT '0',
  `response_text` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `authorization_type` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `transaction_id` bigint(20) DEFAULT NULL,
  `sent` longtext COLLATE utf8_unicode_ci NOT NULL,
  `received` longtext COLLATE utf8_unicode_ci NOT NULL,
  `time` varchar(50) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `session_id` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_authorizenet`
--

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

--
-- Table structure for table `zen_banners`
--

DROP TABLE IF EXISTS `zen_banners`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_banners` (
  `banners_id` int(11) NOT NULL AUTO_INCREMENT,
  `banners_title` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `banners_url` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `banners_image` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `banners_group` varchar(15) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `banners_html_text` text COLLATE utf8_unicode_ci,
  `expires_impressions` int(7) DEFAULT '0',
  `expires_date` datetime DEFAULT NULL,
  `date_scheduled` datetime DEFAULT NULL,
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `date_status_change` datetime DEFAULT NULL,
  `status` int(1) NOT NULL DEFAULT '1',
  `banners_open_new_windows` int(1) NOT NULL DEFAULT '1',
  `banners_on_ssl` int(1) NOT NULL DEFAULT '1',
  `banners_sort_order` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`banners_id`),
  KEY `idx_status_group_zen` (`status`,`banners_group`),
  KEY `idx_expires_date_zen` (`expires_date`),
  KEY `idx_date_scheduled_zen` (`date_scheduled`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_banners`
--

LOCK TABLES `zen_banners` WRITE;
/*!40000 ALTER TABLE `zen_banners` DISABLE KEYS */;
INSERT INTO `zen_banners` VALUES (1,'Zen Cart','http://www.zen-cart.com','banners/zencart_468_60_02.gif','Wide-Banners','',0,NULL,NULL,'2004-01-11 20:59:12','2010-01-24 23:09:19',0,1,1,0),(4,'if you have to think ... you haven\'t been Zenned!','http://www.zen-cart.com','banners/think_anim.gif','Wide-Banners','',0,NULL,NULL,'2004-01-12 20:53:18','2010-01-24 23:09:32',0,1,1,0),(6,'XS-35 Life Vest!  Replaces FV-35','http://aaasurvival.com/index.php?main_page=product_info&cPath=11&products_id=43','aaa_banner_vest333.jpg','Wide-Banners','',0,NULL,NULL,'2006-03-13 11:02:43',NULL,1,1,1,0),(7,'eStart Your Web Store with Zen Cart(tm)','http://www.lulu.com/content/466605','banners/big-book-ad.gif','Wide-Banners','',0,NULL,NULL,'2007-02-10 00:00:00','2010-01-24 23:09:35',0,1,1,1),(8,'eStart Your Web Store with Zen Cart(tm)','http://www.lulu.com/content/466605','banners/tall-book.gif','SideBox-Banners','',0,NULL,NULL,'2007-02-10 00:00:00','2010-01-24 23:09:38',0,1,1,1),(9,'eStart Your Web Store with Zen Cart(tm)','http://www.lulu.com/content/466605','banners/tall-book.gif','BannersAll','',0,NULL,NULL,'2007-02-10 00:00:00','2010-01-24 23:09:40',0,1,1,15),(10,'Translate','','','Translator','<div id=\"google_translate_element\"></div><script>\r\nfunction googleTranslateElementInit() {\r\n  new google.translate.TranslateElement({\r\n    pageLanguage: \'en\'\r\n  }, \'google_translate_element\');\r\n}\r\n</script><script src=\"http://translate.google.com/translate_a/element.js?cb=googleTranslateElementInit\"></script>',0,NULL,NULL,'2010-01-14 09:17:15','2010-01-24 23:09:26',1,0,1,0);
/*!40000 ALTER TABLE `zen_banners` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_banners_history`
--

DROP TABLE IF EXISTS `zen_banners_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_banners_history` (
  `banners_history_id` int(11) NOT NULL AUTO_INCREMENT,
  `banners_id` int(11) NOT NULL DEFAULT '0',
  `banners_shown` int(5) NOT NULL DEFAULT '0',
  `banners_clicked` int(5) NOT NULL DEFAULT '0',
  `banners_history_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`banners_history_id`),
  KEY `idx_banners_id_zen` (`banners_id`)
) ENGINE=MyISAM AUTO_INCREMENT=595 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_banners_history`
--

LOCK TABLES `zen_banners_history` WRITE;
/*!40000 ALTER TABLE `zen_banners_history` DISABLE KEYS */;
INSERT INTO `zen_banners_history` VALUES (97,0,358,0,'2010-01-29 05:43:40'),(115,0,106,0,'2010-02-07 04:48:36'),(9,9,118,0,'2010-01-13 17:35:51'),(107,0,23,0,'2010-02-03 01:11:46'),(11,1,32,0,'2010-01-13 17:35:51'),(12,7,32,0,'2010-01-13 18:33:51'),(13,8,84,0,'2010-01-13 18:35:36'),(14,4,30,0,'2010-01-13 18:37:54'),(15,6,24,0,'2010-01-13 18:45:00'),(16,8,92,0,'2010-01-14 07:08:35'),(114,6,9,0,'2010-02-06 00:15:52'),(18,9,127,0,'2010-01-14 07:08:35'),(106,6,62,0,'2010-02-02 00:00:02'),(20,1,32,0,'2010-01-14 07:08:35'),(96,6,122,0,'2010-01-28 02:26:27'),(22,7,33,0,'2010-01-14 07:11:17'),(23,6,34,0,'2010-01-14 07:13:11'),(24,4,28,0,'2010-01-14 07:28:52'),(25,8,8,0,'2010-01-15 00:10:16'),(113,0,17,0,'2010-02-06 00:15:52'),(27,9,8,0,'2010-01-15 00:10:16'),(28,1,2,0,'2010-01-15 00:10:16'),(105,0,82,0,'2010-02-02 00:00:01'),(95,0,219,0,'2010-01-28 02:26:27'),(31,7,2,0,'2010-01-15 09:49:32'),(32,4,2,0,'2010-01-15 09:51:34'),(33,6,2,0,'2010-01-15 09:51:57'),(34,8,8,0,'2010-01-17 07:49:16'),(112,6,150,2,'2010-02-05 00:12:26'),(36,9,8,0,'2010-01-17 07:49:16'),(37,6,3,0,'2010-01-17 07:49:16'),(94,6,138,0,'2010-01-27 01:23:46'),(104,6,325,1,'2010-02-01 00:01:40'),(40,1,1,0,'2010-01-17 08:50:12'),(41,7,1,0,'2010-01-17 10:36:10'),(42,4,3,0,'2010-01-17 10:36:13'),(93,0,234,0,'2010-01-27 01:23:46'),(111,0,259,0,'2010-02-05 00:12:26'),(45,9,57,0,'2010-01-18 07:57:44'),(46,6,57,0,'2010-01-18 07:57:45'),(47,8,91,0,'2010-01-18 08:12:23'),(103,0,510,0,'2010-02-01 00:01:40'),(49,4,38,0,'2010-01-18 08:27:44'),(50,1,51,0,'2010-01-18 08:34:01'),(51,7,43,0,'2010-01-18 08:34:11'),(52,8,22,0,'2010-01-19 06:47:23'),(53,7,10,0,'2010-01-19 06:47:23'),(102,6,313,0,'2010-01-31 00:02:29'),(55,6,11,0,'2010-01-19 15:05:23'),(92,6,72,0,'2010-01-26 00:07:36'),(57,1,13,0,'2010-01-19 15:08:41'),(110,6,108,0,'2010-02-04 00:01:49'),(59,9,18,0,'2010-01-19 15:42:11'),(60,4,16,0,'2010-01-19 15:45:44'),(101,0,579,0,'2010-01-31 00:02:29'),(62,6,7,0,'2010-01-20 00:01:21'),(63,8,14,0,'2010-01-20 00:02:38'),(64,7,9,0,'2010-01-20 00:02:38'),(65,1,9,0,'2010-01-20 00:04:02'),(91,0,143,0,'2010-01-26 00:07:36'),(67,4,7,0,'2010-01-20 00:19:34'),(109,0,173,0,'2010-02-04 00:01:48'),(69,9,3,0,'2010-01-20 07:16:20'),(100,6,278,0,'2010-01-30 01:11:19'),(71,7,2,0,'2010-01-21 10:09:02'),(90,6,253,0,'2010-01-25 00:02:43'),(73,8,1,0,'2010-01-21 14:35:46'),(74,1,1,0,'2010-01-21 14:35:46'),(89,0,473,0,'2010-01-25 00:02:43'),(76,7,3,0,'2010-01-22 10:58:48'),(99,0,463,0,'2010-01-30 01:11:19'),(78,4,1,0,'2010-01-22 11:03:22'),(98,6,192,0,'2010-01-29 05:43:40'),(108,6,12,0,'2010-02-03 01:11:46'),(81,9,4,0,'2010-01-24 21:25:39'),(82,7,6,0,'2010-01-24 21:25:39'),(83,8,8,0,'2010-01-24 21:32:12'),(88,0,41,0,'2010-01-24 23:09:51'),(85,4,7,0,'2010-01-24 21:32:12'),(86,1,7,0,'2010-01-24 21:32:25'),(87,6,30,0,'2010-01-24 21:32:37'),(116,6,57,0,'2010-02-07 04:48:36'),(117,0,44,0,'2010-02-08 07:11:20'),(118,6,23,0,'2010-02-08 07:11:20'),(119,0,23,0,'2010-02-09 02:57:42'),(120,6,12,0,'2010-02-09 02:57:42'),(121,0,21,0,'2010-02-10 05:20:59'),(122,6,11,0,'2010-02-10 05:20:59'),(123,0,21,0,'2010-02-11 02:08:56'),(124,6,11,0,'2010-02-11 02:08:57'),(125,0,15,0,'2010-02-12 01:01:15'),(126,6,9,0,'2010-02-12 01:01:15'),(127,0,14,0,'2010-02-13 10:15:34'),(128,6,7,0,'2010-02-13 10:15:34'),(129,0,48,0,'2010-02-14 00:30:54'),(130,6,29,0,'2010-02-14 00:30:54'),(131,0,185,0,'2010-02-15 02:51:57'),(132,6,120,0,'2010-02-15 02:51:57'),(133,0,58,0,'2010-02-16 02:56:17'),(134,6,34,0,'2010-02-16 02:56:17'),(135,0,50,0,'2010-02-17 00:10:05'),(136,6,27,0,'2010-02-17 00:10:06'),(137,0,14,0,'2010-02-18 01:28:04'),(138,6,8,0,'2010-02-18 01:28:05'),(139,0,30,0,'2010-02-19 02:57:28'),(140,6,19,0,'2010-02-19 02:57:28'),(141,0,18,0,'2010-02-20 05:40:38'),(142,6,9,0,'2010-02-20 05:40:38'),(143,0,80,0,'2010-02-21 01:14:37'),(144,6,44,0,'2010-02-21 01:14:37'),(145,0,32,0,'2010-02-22 00:30:59'),(146,6,17,0,'2010-02-22 00:30:59'),(147,0,133,0,'2010-02-23 00:31:51'),(148,6,94,0,'2010-02-23 00:31:52'),(149,0,69,0,'2010-02-24 00:03:19'),(150,6,38,0,'2010-02-24 00:03:19'),(151,0,37,0,'2010-02-25 00:01:24'),(152,6,20,0,'2010-02-25 00:01:24'),(153,0,45,0,'2010-02-26 01:37:58'),(154,6,23,0,'2010-02-26 01:37:58'),(155,0,57,0,'2010-02-27 00:19:50'),(156,6,30,0,'2010-02-27 00:19:50'),(157,0,133,0,'2010-02-28 00:09:20'),(158,6,68,0,'2010-02-28 00:09:20'),(159,0,157,0,'2010-03-01 00:51:39'),(160,6,80,0,'2010-03-01 00:51:39'),(161,0,26,0,'2010-03-02 09:24:27'),(162,6,16,0,'2010-03-02 09:24:44'),(163,0,24,0,'2010-03-03 02:19:27'),(164,6,14,0,'2010-03-03 02:19:27'),(165,0,60,0,'2010-03-04 05:56:02'),(166,6,32,0,'2010-03-04 05:56:03'),(167,0,17,0,'2010-03-05 04:18:07'),(168,6,10,0,'2010-03-05 04:18:07'),(169,0,53,0,'2010-03-06 04:51:45'),(170,6,31,0,'2010-03-06 04:51:45'),(171,0,31,0,'2010-03-07 01:01:48'),(172,6,21,0,'2010-03-07 01:01:48'),(173,0,36,0,'2010-03-08 00:20:06'),(174,6,20,0,'2010-03-08 00:20:06'),(175,0,63,0,'2010-03-09 00:22:48'),(176,6,33,0,'2010-03-09 00:22:48'),(177,0,93,0,'2010-03-10 05:33:04'),(178,6,56,0,'2010-03-10 05:33:04'),(179,0,63,0,'2010-03-11 00:20:01'),(180,6,39,0,'2010-03-11 00:20:01'),(181,0,48,0,'2010-03-12 01:16:41'),(182,6,29,0,'2010-03-12 01:16:42'),(183,0,63,0,'2010-03-13 01:38:33'),(184,6,36,0,'2010-03-13 01:38:33'),(185,0,64,0,'2010-03-14 00:02:38'),(186,6,37,0,'2010-03-14 00:02:38'),(187,0,84,0,'2010-03-15 00:02:21'),(188,6,53,0,'2010-03-15 00:02:21'),(189,0,79,0,'2010-03-16 00:34:05'),(190,6,47,0,'2010-03-16 00:34:05'),(191,0,135,0,'2010-03-17 00:23:43'),(192,6,78,0,'2010-03-17 00:23:43'),(193,0,83,0,'2010-03-18 00:00:35'),(194,6,48,0,'2010-03-18 00:00:36'),(195,0,95,0,'2010-03-19 00:31:57'),(196,6,54,0,'2010-03-19 00:31:57'),(197,0,107,0,'2010-03-20 00:31:41'),(198,6,60,0,'2010-03-20 00:31:41'),(199,0,76,0,'2010-03-21 10:19:55'),(200,6,40,0,'2010-03-21 10:19:55'),(201,0,23,0,'2010-03-22 00:35:48'),(202,6,14,0,'2010-03-22 00:35:48'),(203,0,100,0,'2010-03-23 00:21:50'),(204,6,56,0,'2010-03-23 00:21:50'),(205,0,124,0,'2010-03-24 01:22:39'),(206,6,63,0,'2010-03-24 01:22:39'),(207,0,139,0,'2010-03-25 00:12:28'),(208,6,73,0,'2010-03-25 00:12:28'),(209,0,126,0,'2010-03-26 00:00:45'),(210,6,65,0,'2010-03-26 00:00:45'),(211,0,333,0,'2010-03-27 00:06:37'),(212,6,185,2,'2010-03-27 00:06:38'),(213,0,114,0,'2010-03-28 01:02:12'),(214,6,63,0,'2010-03-28 01:02:12'),(215,0,140,0,'2010-03-29 00:23:22'),(216,6,75,0,'2010-03-29 00:23:22'),(217,0,74,0,'2010-03-30 01:24:43'),(218,6,41,0,'2010-03-30 01:24:43'),(219,0,61,0,'2010-03-31 01:38:12'),(220,6,30,0,'2010-03-31 01:38:12'),(221,0,69,0,'2010-04-01 02:53:25'),(222,6,37,0,'2010-04-01 02:53:25'),(223,0,78,0,'2010-04-02 05:13:55'),(224,6,43,0,'2010-04-02 05:13:55'),(225,0,93,0,'2010-04-03 00:13:44'),(226,6,54,0,'2010-04-03 00:13:44'),(227,0,39,0,'2010-04-04 00:14:51'),(228,6,24,0,'2010-04-04 00:14:51'),(229,0,143,0,'2010-04-05 01:47:40'),(230,6,85,0,'2010-04-05 01:47:40'),(231,0,82,0,'2010-04-06 03:26:26'),(232,6,47,0,'2010-04-06 03:26:26'),(233,0,67,0,'2010-04-07 01:28:30'),(234,6,37,0,'2010-04-07 01:28:30'),(235,0,96,0,'2010-04-08 00:19:05'),(236,6,55,0,'2010-04-08 00:19:05'),(237,0,76,0,'2010-04-09 01:43:27'),(238,6,61,0,'2010-04-09 01:43:27'),(239,0,78,0,'2010-04-10 00:01:46'),(240,6,41,0,'2010-04-10 00:01:46'),(241,0,62,0,'2010-04-11 00:31:00'),(242,6,40,0,'2010-04-11 00:31:00'),(243,0,65,0,'2010-04-12 01:01:58'),(244,6,39,0,'2010-04-12 01:01:59'),(245,0,98,0,'2010-04-13 00:40:21'),(246,6,58,0,'2010-04-13 00:40:22'),(247,0,47,0,'2010-04-14 01:35:42'),(248,6,30,0,'2010-04-14 01:35:42'),(249,0,129,0,'2010-04-15 02:29:00'),(250,6,77,0,'2010-04-15 02:29:00'),(251,0,37,0,'2010-04-16 01:31:09'),(252,6,22,0,'2010-04-16 01:31:10'),(253,0,59,0,'2010-04-17 01:35:02'),(254,6,40,0,'2010-04-17 01:35:02'),(255,0,69,0,'2010-04-18 00:10:42'),(256,6,48,0,'2010-04-18 00:10:42'),(257,0,49,0,'2010-04-19 00:48:49'),(258,6,34,0,'2010-04-19 00:48:50'),(259,0,102,0,'2010-04-20 04:11:48'),(260,6,57,0,'2010-04-20 04:11:48'),(261,0,60,0,'2010-04-21 00:31:18'),(262,6,42,0,'2010-04-21 00:31:18'),(263,0,27,0,'2010-04-22 01:07:16'),(264,6,17,0,'2010-04-22 01:07:16'),(265,0,121,0,'2010-04-23 00:23:03'),(266,6,68,0,'2010-04-23 00:23:03'),(267,0,61,0,'2010-04-24 00:09:22'),(268,6,34,0,'2010-04-24 00:09:22'),(269,0,19,0,'2010-04-25 00:04:44'),(270,6,11,0,'2010-04-25 00:04:44'),(271,0,24,0,'2010-04-26 00:01:58'),(272,6,14,0,'2010-04-26 00:01:59'),(273,0,46,0,'2010-04-27 00:20:53'),(274,6,30,0,'2010-04-27 00:20:53'),(275,0,46,0,'2010-04-28 06:07:50'),(276,6,27,0,'2010-04-28 06:07:50'),(277,0,69,0,'2010-04-29 00:31:39'),(278,6,38,0,'2010-04-29 00:31:40'),(279,0,58,0,'2010-04-30 01:05:37'),(280,6,34,0,'2010-04-30 01:05:37'),(281,0,200,0,'2010-05-01 02:20:48'),(282,6,131,0,'2010-05-01 02:20:48'),(283,0,87,0,'2010-05-02 01:29:44'),(284,6,49,0,'2010-05-02 01:29:45'),(285,0,32,0,'2010-05-03 01:07:19'),(286,6,17,0,'2010-05-03 01:07:19'),(287,0,51,0,'2010-05-04 00:52:06'),(288,6,28,0,'2010-05-04 00:52:07'),(289,0,67,0,'2010-05-05 00:17:03'),(290,6,37,0,'2010-05-05 00:17:04'),(291,0,89,0,'2010-05-06 01:29:01'),(292,6,49,0,'2010-05-06 01:29:01'),(293,0,159,0,'2010-05-07 02:59:48'),(294,6,92,3,'2010-05-07 02:59:48'),(295,0,67,0,'2010-05-08 02:18:36'),(296,6,37,0,'2010-05-08 02:18:36'),(297,0,133,0,'2010-05-09 02:06:05'),(298,6,95,0,'2010-05-09 02:06:05'),(299,0,80,0,'2010-05-10 00:58:30'),(300,6,47,0,'2010-05-10 00:58:30'),(301,0,39,0,'2010-05-11 02:24:26'),(302,6,23,0,'2010-05-11 02:24:26'),(303,0,61,0,'2010-05-12 01:49:10'),(304,6,32,0,'2010-05-12 01:49:10'),(305,0,187,0,'2010-05-13 00:36:00'),(306,6,110,1,'2010-05-13 00:36:00'),(307,0,52,0,'2010-05-14 04:18:38'),(308,6,30,0,'2010-05-14 04:18:38'),(309,0,58,0,'2010-05-15 00:46:14'),(310,6,38,0,'2010-05-15 00:46:15'),(311,0,56,0,'2010-05-16 00:13:07'),(312,6,33,0,'2010-05-16 00:13:08'),(313,0,55,0,'2010-05-17 02:02:11'),(314,6,30,0,'2010-05-17 02:02:11'),(315,0,49,0,'2010-05-18 02:41:41'),(316,6,30,0,'2010-05-18 02:41:41'),(317,0,63,0,'2010-05-19 02:22:26'),(318,6,35,0,'2010-05-19 02:22:30'),(319,0,51,0,'2010-05-20 03:35:09'),(320,6,28,0,'2010-05-20 03:35:09'),(321,0,77,0,'2010-05-21 00:43:17'),(322,6,41,0,'2010-05-21 00:43:17'),(323,0,95,0,'2010-05-22 00:28:01'),(324,6,50,0,'2010-05-22 00:28:02'),(325,0,93,0,'2010-05-23 00:08:35'),(326,6,52,0,'2010-05-23 00:08:35'),(327,0,57,0,'2010-05-24 00:10:26'),(328,6,34,0,'2010-05-24 00:10:26'),(329,0,51,0,'2010-05-25 01:51:43'),(330,6,29,0,'2010-05-25 01:51:43'),(331,0,38,0,'2010-05-26 00:29:45'),(332,6,24,0,'2010-05-26 00:29:45'),(333,0,29,0,'2010-05-27 01:32:08'),(334,6,18,0,'2010-05-27 01:32:09'),(335,0,65,0,'2010-05-28 02:46:43'),(336,6,38,0,'2010-05-28 02:46:43'),(337,0,41,0,'2010-05-29 05:10:03'),(338,6,23,0,'2010-05-29 05:10:04'),(339,0,135,0,'2010-05-30 00:15:21'),(340,6,79,0,'2010-05-30 00:15:21'),(341,0,42,0,'2010-05-31 00:37:52'),(342,6,25,0,'2010-05-31 00:37:52'),(343,0,61,0,'2010-06-01 03:43:11'),(344,6,35,0,'2010-06-01 03:43:11'),(345,0,24,0,'2010-06-02 02:58:39'),(346,6,13,0,'2010-06-02 02:58:40'),(347,0,62,0,'2010-06-03 06:07:58'),(348,6,41,0,'2010-06-03 06:07:58'),(349,0,70,0,'2010-06-04 01:00:44'),(350,6,43,0,'2010-06-04 01:00:44'),(351,0,59,0,'2010-06-05 01:27:42'),(352,6,34,0,'2010-06-05 01:27:42'),(353,0,61,0,'2010-06-06 01:15:03'),(354,6,35,0,'2010-06-06 01:15:03'),(355,0,114,0,'2010-06-07 01:16:05'),(356,6,72,0,'2010-06-07 01:16:05'),(357,0,110,0,'2010-06-08 02:19:26'),(358,6,68,0,'2010-06-08 02:19:26'),(359,0,62,0,'2010-06-09 00:52:14'),(360,6,36,0,'2010-06-09 00:52:14'),(361,0,179,0,'2010-06-10 00:17:03'),(362,6,106,0,'2010-06-10 00:17:03'),(363,0,156,0,'2010-06-11 00:32:42'),(364,6,94,0,'2010-06-11 00:32:42'),(365,0,144,0,'2010-06-12 00:06:34'),(366,6,92,3,'2010-06-12 00:06:34'),(367,0,251,0,'2010-06-13 00:20:44'),(368,6,142,0,'2010-06-13 00:20:44'),(369,0,114,0,'2010-06-14 00:01:45'),(370,6,67,0,'2010-06-14 00:01:45'),(371,0,98,0,'2010-06-15 01:28:40'),(372,6,62,0,'2010-06-15 01:28:40'),(373,6,766,3,'2010-06-16 00:20:48'),(374,0,1339,0,'2010-06-16 00:22:23'),(375,0,818,0,'2010-06-17 00:01:14'),(376,6,469,7,'2010-06-17 00:01:14'),(377,0,132,0,'2010-06-18 01:02:24'),(378,6,75,0,'2010-06-18 01:02:25'),(379,0,136,0,'2010-06-19 00:36:41'),(380,6,79,0,'2010-06-19 00:36:41'),(381,0,114,0,'2010-06-20 00:33:37'),(382,6,63,1,'2010-06-20 00:33:38'),(383,6,63,1,'2010-06-20 00:33:38'),(384,0,119,0,'2010-06-21 00:20:30'),(385,6,73,0,'2010-06-21 00:20:30'),(386,0,162,0,'2010-06-22 00:00:27'),(387,6,89,1,'2010-06-22 00:00:27'),(388,0,119,0,'2010-06-23 00:27:59'),(389,6,63,0,'2010-06-23 00:27:59'),(390,0,147,0,'2010-06-24 00:22:04'),(391,6,83,0,'2010-06-24 00:22:04'),(392,0,147,0,'2010-06-25 00:23:12'),(393,6,84,0,'2010-06-25 00:23:12'),(394,0,109,0,'2010-06-26 00:14:41'),(395,6,61,0,'2010-06-26 00:14:41'),(396,0,100,0,'2010-06-27 00:15:43'),(397,6,54,0,'2010-06-27 00:15:43'),(398,0,129,0,'2010-06-28 00:13:42'),(399,6,67,0,'2010-06-28 00:13:42'),(400,0,119,0,'2010-06-29 00:01:46'),(401,6,67,0,'2010-06-29 00:01:47'),(402,0,101,0,'2010-06-30 00:15:21'),(403,6,53,0,'2010-06-30 00:15:21'),(404,0,91,0,'2010-07-01 00:44:11'),(405,6,47,0,'2010-07-01 00:44:11'),(406,0,98,0,'2010-07-02 00:40:58'),(407,6,54,0,'2010-07-02 00:40:58'),(408,0,95,0,'2010-07-03 00:48:10'),(409,6,50,0,'2010-07-03 00:48:10'),(410,0,60,0,'2010-07-04 00:24:56'),(411,6,36,0,'2010-07-04 00:24:56'),(412,0,182,0,'2010-07-05 04:26:07'),(413,6,101,0,'2010-07-05 04:26:08'),(414,0,148,0,'2010-07-06 00:24:20'),(415,6,79,0,'2010-07-06 00:24:20'),(416,0,80,0,'2010-07-07 00:16:55'),(417,6,47,0,'2010-07-07 00:16:55'),(418,0,68,0,'2010-07-08 02:13:05'),(419,6,37,0,'2010-07-08 02:13:05'),(420,0,66,0,'2010-07-09 00:05:52'),(421,6,35,0,'2010-07-09 00:05:52'),(422,0,43,0,'2010-07-10 01:13:40'),(423,6,24,0,'2010-07-10 01:13:40'),(424,0,87,0,'2010-07-11 00:23:57'),(425,6,49,0,'2010-07-11 00:23:57'),(426,0,42,0,'2010-07-12 01:01:01'),(427,6,26,0,'2010-07-12 01:01:01'),(428,0,1983,0,'2010-07-13 01:06:28'),(429,6,1171,6,'2010-07-13 01:06:29'),(430,0,456,0,'2010-07-14 00:02:10'),(431,6,282,1,'2010-07-14 00:02:10'),(432,0,48,0,'2010-07-15 00:08:17'),(433,6,30,0,'2010-07-15 00:08:18'),(434,0,48,0,'2010-07-16 00:40:21'),(435,6,30,0,'2010-07-16 00:40:21'),(436,0,84,0,'2010-07-17 00:31:13'),(437,6,50,0,'2010-07-17 00:31:13'),(438,0,59,0,'2010-07-18 01:21:50'),(439,6,31,0,'2010-07-18 01:21:50'),(440,0,42,0,'2010-07-19 01:06:00'),(441,6,25,0,'2010-07-19 01:06:01'),(442,0,70,0,'2010-07-20 00:07:43'),(443,6,43,0,'2010-07-20 00:07:43'),(444,0,40,0,'2010-07-21 01:07:08'),(445,6,22,0,'2010-07-21 01:07:08'),(446,0,91,0,'2010-07-22 00:35:56'),(447,6,55,0,'2010-07-22 00:35:56'),(448,0,47,0,'2010-07-23 00:40:40'),(449,6,34,0,'2010-07-23 00:40:40'),(450,0,55,0,'2010-07-24 01:38:52'),(451,6,35,1,'2010-07-24 01:38:52'),(452,0,73,0,'2010-07-25 00:27:04'),(453,6,47,0,'2010-07-25 00:27:04'),(454,0,34,0,'2010-07-26 02:08:34'),(455,6,20,0,'2010-07-26 02:08:34'),(456,0,39,0,'2010-07-27 00:13:30'),(457,6,28,3,'2010-07-27 00:13:30'),(458,0,53,0,'2010-07-28 00:38:31'),(459,6,36,2,'2010-07-28 00:38:31'),(460,0,34,0,'2010-07-29 01:31:19'),(461,6,20,0,'2010-07-29 01:31:19'),(462,0,25,0,'2010-07-30 03:18:28'),(463,6,18,0,'2010-07-30 03:18:28'),(464,0,162,0,'2010-07-31 00:06:00'),(465,6,99,0,'2010-07-31 00:06:00'),(466,0,44,0,'2010-08-01 00:51:55'),(467,6,28,0,'2010-08-01 00:51:56'),(468,0,58,0,'2010-08-02 00:02:25'),(469,6,42,0,'2010-08-02 00:02:25'),(470,0,39,0,'2010-08-03 00:31:45'),(471,6,28,0,'2010-08-03 00:31:45'),(472,0,129,0,'2010-08-04 00:22:29'),(473,6,82,0,'2010-08-04 00:22:29'),(474,0,46,0,'2010-08-05 00:24:06'),(475,6,30,0,'2010-08-05 00:24:06'),(476,0,45,0,'2010-08-06 02:29:39'),(477,6,33,0,'2010-08-06 02:29:40'),(478,0,28,0,'2010-08-07 00:23:47'),(479,6,19,0,'2010-08-07 00:23:47'),(480,0,27,0,'2010-08-08 03:32:59'),(481,6,18,0,'2010-08-08 03:32:59'),(482,0,75,0,'2010-08-09 03:52:26'),(483,6,45,0,'2010-08-09 03:52:26'),(484,0,120,0,'2010-08-10 00:01:18'),(485,6,80,0,'2010-08-10 00:01:18'),(486,0,82,0,'2010-08-11 00:12:37'),(487,6,51,0,'2010-08-11 00:12:37'),(488,0,91,0,'2010-08-12 00:42:49'),(489,6,59,0,'2010-08-12 00:42:49'),(490,0,32,0,'2010-08-13 01:33:32'),(491,6,20,0,'2010-08-13 01:33:32'),(492,0,38,0,'2010-08-14 01:16:14'),(493,6,23,0,'2010-08-14 01:16:14'),(494,0,43,0,'2010-08-15 00:44:02'),(495,6,26,0,'2010-08-15 00:44:03'),(496,0,28,0,'2010-08-16 00:20:24'),(497,6,18,0,'2010-08-16 00:20:24'),(498,0,27,0,'2010-08-17 00:42:52'),(499,6,17,0,'2010-08-17 00:42:52'),(500,0,37,0,'2010-08-18 02:03:11'),(501,0,37,0,'2010-08-18 02:03:11'),(502,6,23,0,'2010-08-18 02:03:11'),(503,6,23,0,'2010-08-18 02:03:11'),(504,0,48,0,'2010-08-19 00:24:05'),(505,6,30,0,'2010-08-19 00:24:05'),(506,0,99,0,'2010-08-20 02:18:59'),(507,0,99,0,'2010-08-20 02:18:59'),(508,6,65,0,'2010-08-20 02:18:59'),(509,6,65,0,'2010-08-20 02:18:59'),(510,0,89,0,'2010-08-21 00:31:23'),(511,6,62,0,'2010-08-21 00:31:24'),(512,0,78,0,'2010-08-22 00:24:11'),(513,6,48,0,'2010-08-22 00:24:11'),(514,0,34,0,'2010-08-23 01:30:40'),(515,6,24,0,'2010-08-23 01:30:40'),(516,0,41,0,'2010-08-24 00:14:25'),(517,6,25,0,'2010-08-24 00:14:25'),(518,0,48,0,'2010-08-25 03:03:47'),(519,6,31,0,'2010-08-25 03:03:47'),(520,0,57,0,'2010-08-26 01:05:37'),(521,6,32,0,'2010-08-26 01:05:37'),(522,0,129,0,'2010-08-27 00:00:07'),(523,6,84,0,'2010-08-27 00:00:08'),(524,0,37,0,'2010-08-28 03:04:55'),(525,0,37,0,'2010-08-28 03:04:55'),(526,6,20,0,'2010-08-28 03:04:55'),(527,6,20,0,'2010-08-28 03:04:55'),(528,0,11,0,'2010-08-29 04:43:49'),(529,6,7,0,'2010-08-29 04:43:49'),(530,0,70,0,'2010-08-30 00:28:10'),(531,6,43,0,'2010-08-30 00:28:10'),(532,0,58,0,'2010-08-31 01:58:12'),(533,6,32,0,'2010-08-31 01:58:12'),(534,0,66,0,'2010-09-01 00:13:59'),(535,6,38,0,'2010-09-01 00:13:59'),(536,0,48,0,'2010-09-02 04:03:17'),(537,6,35,0,'2010-09-02 04:03:17'),(538,6,35,0,'2010-09-02 04:03:17'),(539,0,40,0,'2010-09-03 01:18:26'),(540,6,23,0,'2010-09-03 01:18:26'),(541,0,47,0,'2010-09-04 00:38:13'),(542,6,24,0,'2010-09-04 00:38:13'),(543,0,48,0,'2010-09-05 00:56:56'),(544,6,28,0,'2010-09-05 00:56:57'),(545,0,36,0,'2010-09-06 00:23:21'),(546,6,20,0,'2010-09-06 00:23:22'),(547,0,31,0,'2010-09-07 01:18:20'),(548,6,17,0,'2010-09-07 01:18:21'),(549,0,35,0,'2010-09-08 00:25:01'),(550,6,24,0,'2010-09-08 00:25:01'),(551,0,34,0,'2010-09-09 01:02:50'),(552,6,19,0,'2010-09-09 01:02:50'),(553,0,61,0,'2010-09-10 01:18:58'),(554,6,36,0,'2010-09-10 01:18:58'),(555,0,46,0,'2010-09-11 03:34:47'),(556,6,26,0,'2010-09-11 03:34:47'),(557,0,89,0,'2010-09-12 00:10:10'),(558,6,57,0,'2010-09-12 00:10:10'),(559,0,32,0,'2010-09-13 02:38:15'),(560,6,19,0,'2010-09-13 02:38:15'),(561,0,51,0,'2010-09-14 00:58:55'),(562,6,30,0,'2010-09-14 00:58:55'),(563,0,30,0,'2010-09-15 01:49:23'),(564,6,18,0,'2010-09-15 01:49:23'),(565,0,80,0,'2010-09-16 00:08:30'),(566,6,47,0,'2010-09-16 00:08:31'),(567,0,254,0,'2010-09-17 01:58:03'),(568,6,148,0,'2010-09-17 01:58:03'),(569,0,59,0,'2010-09-18 00:25:02'),(570,6,32,0,'2010-09-18 00:25:02'),(571,0,27,0,'2010-09-19 00:09:45'),(572,6,16,0,'2010-09-19 00:09:45'),(573,0,59,0,'2010-09-20 02:27:55'),(574,6,38,0,'2010-09-20 02:27:55'),(575,0,60,0,'2010-09-21 00:57:58'),(576,6,33,0,'2010-09-21 00:57:58'),(577,0,7,0,'2010-10-16 21:21:36'),(578,6,5,0,'2010-10-16 21:21:36'),(579,0,67,0,'2010-10-17 07:43:18'),(580,6,38,0,'2010-10-17 07:43:18'),(581,0,125,0,'2010-10-18 03:01:51'),(582,6,82,1,'2010-10-18 03:01:51'),(583,0,89,0,'2010-10-19 01:28:03'),(584,6,55,0,'2010-10-19 01:28:03'),(585,0,62,0,'2010-10-20 00:54:09'),(586,6,40,0,'2010-10-20 00:54:09'),(587,0,66,0,'2010-10-21 00:17:37'),(588,6,40,0,'2010-10-21 00:17:37'),(589,0,49,0,'2010-10-22 00:14:12'),(590,6,35,0,'2010-10-22 00:14:13'),(591,0,34,0,'2010-10-23 00:16:22'),(592,6,20,0,'2010-10-23 00:16:23'),(593,0,26,0,'2010-10-24 00:42:08'),(594,6,14,0,'2010-10-24 00:42:08');
/*!40000 ALTER TABLE `zen_banners_history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_categories`
--

DROP TABLE IF EXISTS `zen_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_categories` (
  `categories_id` int(11) NOT NULL AUTO_INCREMENT,
  `categories_image` varchar(64) COLLATE utf8_unicode_ci DEFAULT 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,
  `categories_status` tinyint(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`categories_id`),
  KEY `idx_parent_id_cat_id_zen` (`parent_id`,`categories_id`),
  KEY `idx_status_zen` (`categories_status`),
  KEY `idx_sort_order_zen` (`sort_order`)
) ENGINE=MyISAM AUTO_INCREMENT=17 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_categories`
--

LOCK TABLES `zen_categories` WRITE;
/*!40000 ALTER TABLE `zen_categories` DISABLE KEYS */;
INSERT INTO `zen_categories` VALUES (1,NULL,5,0,'2010-01-13 17:39:53','2010-01-29 16:32:57',1),(2,'kit_01.jpg',0,3,'2010-01-13 17:41:30','2010-02-05 16:57:23',1),(3,'ebc406ap_01.jpg',0,1,'2010-01-13 17:42:33','2010-07-14 21:33:59',1),(4,'firstaid1_01_MED.gif',0,7,'2010-01-13 17:43:14','2010-02-05 16:58:45',1),(5,'nineman_01_MED.gif',0,0,'2010-01-14 07:35:29','2010-07-14 21:03:30',1),(6,NULL,5,0,'2010-01-14 07:44:48','2010-01-29 16:33:10',1),(7,NULL,5,0,'2010-01-14 07:46:00','2010-01-29 16:33:33',1),(8,NULL,5,0,'2010-01-14 07:46:19','2010-01-29 16:31:52',1),(9,NULL,5,0,'2010-01-14 07:46:42','2010-01-29 16:32:35',1),(10,NULL,5,0,'2010-01-14 08:00:26','2010-01-29 16:33:21',1),(11,'imersion_01.jpg',0,5,'2010-01-25 13:59:24','2010-02-05 16:57:57',1),(12,'categories/food_3682.jpg',0,2,'2010-01-27 18:57:41','2010-02-05 16:57:07',1),(13,'categories/misc_01.jpg',0,8,'2010-01-27 20:30:07','2010-02-05 16:59:06',1),(14,'categories/SKDK_01.jpg',0,4,'2010-01-28 18:52:47','2010-02-05 16:57:45',1),(15,'guardian/LCLT.jpg',0,6,'2010-02-04 19:19:25','2010-02-05 18:33:11',1),(16,'categories/lifepreserverxf35_01.jpg',0,0,'2010-06-12 08:14:24','2010-07-14 21:32:26',1);
/*!40000 ALTER TABLE `zen_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_categories_description`
--

DROP TABLE IF EXISTS `zen_categories_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_categories_description` (
  `categories_id` int(11) NOT NULL DEFAULT '0',
  `language_id` int(11) NOT NULL DEFAULT '1',
  `categories_name` varchar(48) COLLATE utf8_unicode_ci NOT NULL,
  `categories_description` text COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`categories_id`,`language_id`),
  KEY `idx_categories_name_zen` (`categories_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_categories_description`
--

LOCK TABLES `zen_categories_description` WRITE;
/*!40000 ALTER TABLE `zen_categories_description` DISABLE KEYS */;
INSERT INTO `zen_categories_description` VALUES (1,1,'4-Man Rafts',''),(2,1,'Survival Kits -  Marine & Aviation','The optional survival equipment is fitted into its own valise, externally separate from the raft valise. The equipment and raft valises are externally attached to each other utilizing velcro and a tie-line. These separate valises provide the ultimate in flexibility for raft and equipment combinations. You can now acquire your basic raft and equipment separately to meet your individual requirements. These kits are designed and prepared for both, Non TSO\'d and FAA TSO-Approved aviation/marine use. The FAR 91, 121, and 125/135 survival equipment kits are available as well.\r\n**Note:  Optional ELT/EPIRB can be packed inside survival kits.\r\n\r\n*Note: Food/water ration quantities appropriate for raft capacity.'),(3,1,'Transmitters','ELT\'s (Emergency Locator Transmitters) \r\nWe will meet or beat any other advertised prices on the Transmitters we have available!!'),(4,1,'First Aid Kits',''),(5,1,'Life Rafts','Life Rafts'),(6,1,'6-Man Rafts',''),(7,1,'9-Man Rafts',''),(8,1,'10-Man Rafts',''),(9,1,'12-Man Rafts',''),(10,1,'8-Man Raft',''),(1,2,'Balsas - 4 Hombre',''),(2,2,'Kits de Supervivencia - Marina y Aviacion','Infante de marina y aviacion.\r\n\r\nEl equipo de supervivencia opcional se cabe en su propio valise, externamente a parte del valise de la balsa. Los valises del equipo y de la balsa externamente se atan que utilizan el uno al otro el velcro y una atar-línea. Estos valises separados proporcionan el último en la flexibilidad para las combinaciones de la balsa y del equipo. Usted puede ahora adquirir su balsa y equipo básicos por separado para cumplir sus requisitos individuales. Estos kits se diseñan y se preparan para ambos, no TSO\' d y aviación TSO-Aprobada de FAA/uso marina. Los kits LEJANOS de 91, 121, y 125/135 equipo de supervivencia están disponibles también. ** Nota: ELT/EPIRB opcional se puede embalar dentro de kits de supervivencia. *Note: Cantidades de la ración del alimento/del agua apropiadas para la capacidad de la balsa.'),(3,2,'Transmisores','ELT\'s (Emergency Locator Transmitters) \r\nWe will meet or beat any other advertised prices on the Transmitters we have available!!'),(4,2,'Kits de primeros auxilios',''),(5,2,'Balsas Salvavidas','Life Rafts'),(6,2,'Balsas - 6 Hombre',''),(7,2,'Balsas - 9 Hombre',''),(8,2,'Balsas - 10 Hombre',''),(9,2,'Balsas - 12 Hombre',''),(10,2,'Balsas - 8 Hombre',''),(11,2,'Equipo de Seguridad','Immersion Suit'),(11,1,'Safety Equipment','Immersion Suit'),(12,2,'Raciones de Comidas y Agua',''),(12,1,'Food & Water Rations',''),(13,2,'Misceláneo',''),(13,1,'Miscellaneous',''),(14,2,'Kits de Supervivencia - Casero y Oficina','Casero y Oficina'),(14,1,'Survival Kits -  Home & Office',''),(15,2,'Linternas',''),(15,1,'Flashlights, Lanterns, Light Sticks',''),(16,1,'Life Vests',''),(16,2,'Life Vests','');
/*!40000 ALTER TABLE `zen_categories_description` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_ceon_uri_mapping_configs`
--

DROP TABLE IF EXISTS `zen_ceon_uri_mapping_configs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_ceon_uri_mapping_configs` (
  `id` int(10) unsigned NOT NULL,
  `version` varchar(14) NOT NULL,
  `autogen_new` int(1) unsigned NOT NULL,
  `whitespace_replacement` int(1) unsigned NOT NULL,
  `capitalisation` int(1) unsigned NOT NULL,
  `remove_words` text,
  `char_str_replacements` text,
  `excluded_files` text,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_ceon_uri_mapping_configs`
--

LOCK TABLES `zen_ceon_uri_mapping_configs` WRITE;
/*!40000 ALTER TABLE `zen_ceon_uri_mapping_configs` DISABLE KEYS */;
INSERT INTO `zen_ceon_uri_mapping_configs` VALUES (1,'3.6.3',1,2,1,'-, a, an, this, that','Â£=>GBP, $=>USD',NULL);
/*!40000 ALTER TABLE `zen_ceon_uri_mapping_configs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_ceon_uri_mappings`
--

DROP TABLE IF EXISTS `zen_ceon_uri_mappings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_ceon_uri_mappings` (
  `uri` text NOT NULL,
  `language_id` int(11) unsigned DEFAULT NULL,
  `current_uri` int(1) unsigned DEFAULT '0',
  `main_page` varchar(45) DEFAULT NULL,
  `query_string_parameters` varchar(255) DEFAULT NULL,
  `associated_db_id` int(11) unsigned DEFAULT NULL,
  `alternate_uri` varchar(255) DEFAULT NULL,
  `redirection_type_code` varchar(3) DEFAULT '301',
  `date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  KEY `assoc_db_id_idx` (`language_id`,`current_uri`,`main_page`,`associated_db_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_ceon_uri_mappings`
--

LOCK TABLES `zen_ceon_uri_mappings` WRITE;
/*!40000 ALTER TABLE `zen_ceon_uri_mappings` DISABLE KEYS */;
INSERT INTO `zen_ceon_uri_mappings` VALUES ('/balsas-salvavidas/balsas-10-hombre/basico-10-hombre-ninguna-tso',2,1,'product_info',NULL,25,NULL,'301','2010-07-14 21:00:44'),('/balsas-salvavidas/balsas-10-hombre/basico-10-hombre-ninguna-tso/reviews',2,1,'product_reviews',NULL,25,NULL,'301','2010-07-14 21:00:44'),('/balsas-salvavidas/balsas-10-hombre/basico-10-hombre-ninguna-tso/review',2,1,'product_reviews_info',NULL,25,NULL,'301','2010-07-14 21:00:44'),('/balsas-salvavidas/balsas-10-hombre/basico-10-hombre-ninguna-tso/add-a-review',2,1,'product_reviews_write',NULL,25,NULL,'301','2010-07-14 21:00:44'),('/balsas-salvavidas/balsas-10-hombre/basico-10-hombre-ninguna-tso/tell-a-friend',2,1,'tell_a_friend',NULL,25,NULL,'301','2010-07-14 21:00:44'),('/life-rafts/10-man-rafts/10-man-basic-non-tso',1,1,'product_info',NULL,25,NULL,'301','2010-07-14 21:00:44'),('/life-rafts/10-man-rafts/10-man-basic-non-tso/reviews',1,1,'product_reviews',NULL,25,NULL,'301','2010-07-14 21:00:44'),('/life-rafts/10-man-rafts/10-man-basic-non-tso/review',1,1,'product_reviews_info',NULL,25,NULL,'301','2010-07-14 21:00:44'),('/life-rafts/10-man-rafts/10-man-basic-non-tso/add-a-review',1,1,'product_reviews_write',NULL,25,NULL,'301','2010-07-14 21:00:44'),('/life-rafts/10-man-rafts/10-man-basic-non-tso/tell-a-friend',1,1,'tell_a_friend',NULL,25,NULL,'301','2010-07-14 21:00:44'),('/balsas-salvavidas/balsas-10-hombre/tso-10-hombre-con-el-pabellon-solamente',2,1,'product_info',NULL,26,NULL,'301','2010-07-14 21:02:11'),('/balsas-salvavidas/balsas-10-hombre/tso-10-hombre-con-el-pabellon-solamente/reviews',2,1,'product_reviews',NULL,26,NULL,'301','2010-07-14 21:02:11'),('/balsas-salvavidas/balsas-10-hombre/tso-10-hombre-con-el-pabellon-solamente/review',2,1,'product_reviews_info',NULL,26,NULL,'301','2010-07-14 21:02:11'),('/balsas-salvavidas/balsas-10-hombre/tso-10-hombre-con-el-pabellon-solamente/add-a-review',2,1,'product_reviews_write',NULL,26,NULL,'301','2010-07-14 21:02:11'),('/balsas-salvavidas/balsas-10-hombre/tso-10-hombre-con-el-pabellon-solamente/tell-a-friend',2,1,'tell_a_friend',NULL,26,NULL,'301','2010-07-14 21:02:11'),('/life-rafts/10-man-rafts/10-man-tso-w-canopy-only',1,1,'product_info',NULL,26,NULL,'301','2010-07-14 21:02:11'),('/life-rafts/10-man-rafts/10-man-tso-w-canopy-only/reviews',1,1,'product_reviews',NULL,26,NULL,'301','2010-07-14 21:02:11'),('/life-rafts/10-man-rafts/10-man-tso-w-canopy-only/review',1,1,'product_reviews_info',NULL,26,NULL,'301','2010-07-14 21:02:11'),('/life-rafts/10-man-rafts/10-man-tso-w-canopy-only/add-a-review',1,1,'product_reviews_write',NULL,26,NULL,'301','2010-07-14 21:02:11'),('/life-rafts/10-man-rafts/10-man-tso-w-canopy-only/tell-a-friend',1,1,'tell_a_friend',NULL,26,NULL,'301','2010-07-14 21:02:11'),('/balsas-salvavidas/balsas-10-hombre/tso-10-hombre-con-far-121-kit',2,1,'product_info',NULL,28,NULL,'301','2010-07-14 21:02:29'),('/balsas-salvavidas/balsas-10-hombre/tso-10-hombre-con-far-121-kit/reviews',2,1,'product_reviews',NULL,28,NULL,'301','2010-07-14 21:02:29'),('/balsas-salvavidas/balsas-10-hombre/tso-10-hombre-con-far-121-kit/review',2,1,'product_reviews_info',NULL,28,NULL,'301','2010-07-14 21:02:29'),('/balsas-salvavidas/balsas-10-hombre/tso-10-hombre-con-far-121-kit/add-a-review',2,1,'product_reviews_write',NULL,28,NULL,'301','2010-07-14 21:02:29'),('/balsas-salvavidas/balsas-10-hombre/tso-10-hombre-con-far-121-kit/tell-a-friend',2,1,'tell_a_friend',NULL,28,NULL,'301','2010-07-14 21:02:29'),('/life-rafts/10-man-rafts/10-man-tso-w-far-121-kit',1,1,'product_info',NULL,28,NULL,'301','2010-07-14 21:02:29'),('/life-rafts/10-man-rafts/10-man-tso-w-far-121-kit/reviews',1,1,'product_reviews',NULL,28,NULL,'301','2010-07-14 21:02:29'),('/life-rafts/10-man-rafts/10-man-tso-w-far-121-kit/review',1,1,'product_reviews_info',NULL,28,NULL,'301','2010-07-14 21:02:29'),('/life-rafts/10-man-rafts/10-man-tso-w-far-121-kit/add-a-review',1,1,'product_reviews_write',NULL,28,NULL,'301','2010-07-14 21:02:29'),('/life-rafts/10-man-rafts/10-man-tso-w-far-121-kit/tell-a-friend',1,1,'tell_a_friend',NULL,28,NULL,'301','2010-07-14 21:02:29'),('/balsas-salvavidas/balsas-10-hombre/tso-10-hombre-con-far-135-kit',2,1,'product_info',NULL,29,NULL,'301','2010-07-14 21:02:45'),('/balsas-salvavidas/balsas-10-hombre/tso-10-hombre-con-far-135-kit/reviews',2,1,'product_reviews',NULL,29,NULL,'301','2010-07-14 21:02:45'),('/balsas-salvavidas/balsas-10-hombre/tso-10-hombre-con-far-135-kit/review',2,1,'product_reviews_info',NULL,29,NULL,'301','2010-07-14 21:02:45'),('/balsas-salvavidas/balsas-10-hombre/tso-10-hombre-con-far-135-kit/add-a-review',2,1,'product_reviews_write',NULL,29,NULL,'301','2010-07-14 21:02:45'),('/balsas-salvavidas/balsas-10-hombre/tso-10-hombre-con-far-135-kit/tell-a-friend',2,1,'tell_a_friend',NULL,29,NULL,'301','2010-07-14 21:02:45'),('/life-rafts/10-man-rafts/10-man-tso-w-far-135-kit',1,1,'product_info',NULL,29,NULL,'301','2010-07-14 21:02:45'),('/life-rafts/10-man-rafts/10-man-tso-w-far-135-kit/reviews',1,1,'product_reviews',NULL,29,NULL,'301','2010-07-14 21:02:45'),('/life-rafts/10-man-rafts/10-man-tso-w-far-135-kit/review',1,1,'product_reviews_info',NULL,29,NULL,'301','2010-07-14 21:02:45'),('/life-rafts/10-man-rafts/10-man-tso-w-far-135-kit/add-a-review',1,1,'product_reviews_write',NULL,29,NULL,'301','2010-07-14 21:02:45'),('/life-rafts/10-man-rafts/10-man-tso-w-far-135-kit/tell-a-friend',1,1,'tell_a_friend',NULL,29,NULL,'301','2010-07-14 21:02:45'),('/balsas-salvavidas/balsas-10-hombre/tso-10-hombre-con-far-91-kit',2,1,'product_info',NULL,27,NULL,'301','2010-07-14 21:03:01'),('/balsas-salvavidas/balsas-10-hombre/tso-10-hombre-con-far-91-kit/reviews',2,1,'product_reviews',NULL,27,NULL,'301','2010-07-14 21:03:01'),('/balsas-salvavidas/balsas-10-hombre/tso-10-hombre-con-far-91-kit/review',2,1,'product_reviews_info',NULL,27,NULL,'301','2010-07-14 21:03:01'),('/balsas-salvavidas/balsas-10-hombre/tso-10-hombre-con-far-91-kit/add-a-review',2,1,'product_reviews_write',NULL,27,NULL,'301','2010-07-14 21:03:01'),('/balsas-salvavidas/balsas-10-hombre/tso-10-hombre-con-far-91-kit/tell-a-friend',2,1,'tell_a_friend',NULL,27,NULL,'301','2010-07-14 21:03:01'),('/life-rafts/10-man-rafts/10-man-tso-w-far-91-kit',1,1,'product_info',NULL,27,NULL,'301','2010-07-14 21:03:01'),('/life-rafts/10-man-rafts/10-man-tso-w-far-91-kit/reviews',1,1,'product_reviews',NULL,27,NULL,'301','2010-07-14 21:03:01'),('/life-rafts/10-man-rafts/10-man-tso-w-far-91-kit/review',1,1,'product_reviews_info',NULL,27,NULL,'301','2010-07-14 21:03:01'),('/life-rafts/10-man-rafts/10-man-tso-w-far-91-kit/add-a-review',1,1,'product_reviews_write',NULL,27,NULL,'301','2010-07-14 21:03:01'),('/life-rafts/10-man-rafts/10-man-tso-w-far-91-kit/tell-a-friend',1,1,'tell_a_friend',NULL,27,NULL,'301','2010-07-14 21:03:01'),('/balsas-salvavidas/balsas-12-hombre/basico-12-hombre-ninguna-tso',2,1,'product_info',NULL,30,NULL,'301','2010-07-14 21:04:00'),('/balsas-salvavidas/balsas-12-hombre/basico-12-hombre-ninguna-tso/reviews',2,1,'product_reviews',NULL,30,NULL,'301','2010-07-14 21:04:00'),('/balsas-salvavidas/balsas-12-hombre/basico-12-hombre-ninguna-tso/review',2,1,'product_reviews_info',NULL,30,NULL,'301','2010-07-14 21:04:00'),('/balsas-salvavidas/balsas-12-hombre/basico-12-hombre-ninguna-tso/add-a-review',2,1,'product_reviews_write',NULL,30,NULL,'301','2010-07-14 21:04:00'),('/balsas-salvavidas/balsas-12-hombre/basico-12-hombre-ninguna-tso/tell-a-friend',2,1,'tell_a_friend',NULL,30,NULL,'301','2010-07-14 21:04:00'),('/life-rafts/12-man-rafts/12-man-basic-non-tso',1,1,'product_info',NULL,30,NULL,'301','2010-07-14 21:04:00'),('/life-rafts/12-man-rafts/12-man-basic-non-tso/reviews',1,1,'product_reviews',NULL,30,NULL,'301','2010-07-14 21:04:00'),('/life-rafts/12-man-rafts/12-man-basic-non-tso/review',1,1,'product_reviews_info',NULL,30,NULL,'301','2010-07-14 21:04:00'),('/life-rafts/12-man-rafts/12-man-basic-non-tso/add-a-review',1,1,'product_reviews_write',NULL,30,NULL,'301','2010-07-14 21:04:00'),('/life-rafts/12-man-rafts/12-man-basic-non-tso/tell-a-friend',1,1,'tell_a_friend',NULL,30,NULL,'301','2010-07-14 21:04:00'),('/balsas-salvavidas/balsas-12-hombre/tso-12-hombre-con-el-pabellon-solamente',2,1,'product_info',NULL,31,NULL,'301','2010-07-14 21:04:13'),('/balsas-salvavidas/balsas-12-hombre/tso-12-hombre-con-el-pabellon-solamente/reviews',2,1,'product_reviews',NULL,31,NULL,'301','2010-07-14 21:04:13'),('/balsas-salvavidas/balsas-12-hombre/tso-12-hombre-con-el-pabellon-solamente/review',2,1,'product_reviews_info',NULL,31,NULL,'301','2010-07-14 21:04:13'),('/balsas-salvavidas/balsas-12-hombre/tso-12-hombre-con-el-pabellon-solamente/add-a-review',2,1,'product_reviews_write',NULL,31,NULL,'301','2010-07-14 21:04:13'),('/balsas-salvavidas/balsas-12-hombre/tso-12-hombre-con-el-pabellon-solamente/tell-a-friend',2,1,'tell_a_friend',NULL,31,NULL,'301','2010-07-14 21:04:13'),('/life-rafts/12-man-rafts/12-man-tso-w-canopy-only',1,1,'product_info',NULL,31,NULL,'301','2010-07-14 21:04:13'),('/life-rafts/12-man-rafts/12-man-tso-w-canopy-only/reviews',1,1,'product_reviews',NULL,31,NULL,'301','2010-07-14 21:04:13'),('/life-rafts/12-man-rafts/12-man-tso-w-canopy-only/review',1,1,'product_reviews_info',NULL,31,NULL,'301','2010-07-14 21:04:13'),('/life-rafts/12-man-rafts/12-man-tso-w-canopy-only/add-a-review',1,1,'product_reviews_write',NULL,31,NULL,'301','2010-07-14 21:04:13'),('/life-rafts/12-man-rafts/12-man-tso-w-canopy-only/tell-a-friend',1,1,'tell_a_friend',NULL,31,NULL,'301','2010-07-14 21:04:13'),('/balsas-salvavidas/balsas-12-hombre/tso-12-hombre-con-far-121-kit',2,1,'product_info',NULL,33,NULL,'301','2010-07-14 21:04:26'),('/balsas-salvavidas/balsas-12-hombre/tso-12-hombre-con-far-121-kit/reviews',2,1,'product_reviews',NULL,33,NULL,'301','2010-07-14 21:04:26'),('/balsas-salvavidas/balsas-12-hombre/tso-12-hombre-con-far-121-kit/review',2,1,'product_reviews_info',NULL,33,NULL,'301','2010-07-14 21:04:26'),('/balsas-salvavidas/balsas-12-hombre/tso-12-hombre-con-far-121-kit/add-a-review',2,1,'product_reviews_write',NULL,33,NULL,'301','2010-07-14 21:04:26'),('/balsas-salvavidas/balsas-12-hombre/tso-12-hombre-con-far-121-kit/tell-a-friend',2,1,'tell_a_friend',NULL,33,NULL,'301','2010-07-14 21:04:26'),('/life-rafts/12-man-rafts/12-man-tso-w-far-121-kit',1,1,'product_info',NULL,33,NULL,'301','2010-07-14 21:04:26'),('/life-rafts/12-man-rafts/12-man-tso-w-far-121-kit/reviews',1,1,'product_reviews',NULL,33,NULL,'301','2010-07-14 21:04:26'),('/life-rafts/12-man-rafts/12-man-tso-w-far-121-kit/review',1,1,'product_reviews_info',NULL,33,NULL,'301','2010-07-14 21:04:26'),('/life-rafts/12-man-rafts/12-man-tso-w-far-121-kit/add-a-review',1,1,'product_reviews_write',NULL,33,NULL,'301','2010-07-14 21:04:26'),('/life-rafts/12-man-rafts/12-man-tso-w-far-121-kit/tell-a-friend',1,1,'tell_a_friend',NULL,33,NULL,'301','2010-07-14 21:04:26'),('/balsas-salvavidas/balsas-12-hombre/tso-12-hombre-con-far-135-kit',2,1,'product_info',NULL,34,NULL,'301','2010-07-14 21:04:39'),('/balsas-salvavidas/balsas-12-hombre/tso-12-hombre-con-far-135-kit/reviews',2,1,'product_reviews',NULL,34,NULL,'301','2010-07-14 21:04:39'),('/balsas-salvavidas/balsas-12-hombre/tso-12-hombre-con-far-135-kit/review',2,1,'product_reviews_info',NULL,34,NULL,'301','2010-07-14 21:04:39'),('/balsas-salvavidas/balsas-12-hombre/tso-12-hombre-con-far-135-kit/add-a-review',2,1,'product_reviews_write',NULL,34,NULL,'301','2010-07-14 21:04:39'),('/balsas-salvavidas/balsas-12-hombre/tso-12-hombre-con-far-135-kit/tell-a-friend',2,1,'tell_a_friend',NULL,34,NULL,'301','2010-07-14 21:04:39'),('/life-rafts/12-man-rafts/12-man-tso-w-far-135-kit',1,1,'product_info',NULL,34,NULL,'301','2010-07-14 21:04:39'),('/life-rafts/12-man-rafts/12-man-tso-w-far-135-kit/reviews',1,1,'product_reviews',NULL,34,NULL,'301','2010-07-14 21:04:39'),('/life-rafts/12-man-rafts/12-man-tso-w-far-135-kit/review',1,1,'product_reviews_info',NULL,34,NULL,'301','2010-07-14 21:04:39'),('/life-rafts/12-man-rafts/12-man-tso-w-far-135-kit/add-a-review',1,1,'product_reviews_write',NULL,34,NULL,'301','2010-07-14 21:04:39'),('/life-rafts/12-man-rafts/12-man-tso-w-far-135-kit/tell-a-friend',1,1,'tell_a_friend',NULL,34,NULL,'301','2010-07-14 21:04:39'),('/balsas-salvavidas/balsas-12-hombre/tso-12-hombre-con-far-91-kit',2,1,'product_info',NULL,32,NULL,'301','2010-07-14 21:04:50'),('/balsas-salvavidas/balsas-12-hombre/tso-12-hombre-con-far-91-kit/reviews',2,1,'product_reviews',NULL,32,NULL,'301','2010-07-14 21:04:50'),('/balsas-salvavidas/balsas-12-hombre/tso-12-hombre-con-far-91-kit/review',2,1,'product_reviews_info',NULL,32,NULL,'301','2010-07-14 21:04:50'),('/balsas-salvavidas/balsas-12-hombre/tso-12-hombre-con-far-91-kit/add-a-review',2,1,'product_reviews_write',NULL,32,NULL,'301','2010-07-14 21:04:50'),('/balsas-salvavidas/balsas-12-hombre/tso-12-hombre-con-far-91-kit/tell-a-friend',2,1,'tell_a_friend',NULL,32,NULL,'301','2010-07-14 21:04:50'),('/life-rafts/12-man-rafts/12-man-tso-w-far-91-kit',1,1,'product_info',NULL,32,NULL,'301','2010-07-14 21:04:50'),('/life-rafts/12-man-rafts/12-man-tso-w-far-91-kit/reviews',1,1,'product_reviews',NULL,32,NULL,'301','2010-07-14 21:04:50'),('/life-rafts/12-man-rafts/12-man-tso-w-far-91-kit/review',1,1,'product_reviews_info',NULL,32,NULL,'301','2010-07-14 21:04:50'),('/life-rafts/12-man-rafts/12-man-tso-w-far-91-kit/add-a-review',1,1,'product_reviews_write',NULL,32,NULL,'301','2010-07-14 21:04:50'),('/life-rafts/12-man-rafts/12-man-tso-w-far-91-kit/tell-a-friend',1,1,'tell_a_friend',NULL,32,NULL,'301','2010-07-14 21:04:50'),('/balsas-salvavidas/balsas-4-hombre/basico-4-hombre',2,1,'product_info',NULL,1,NULL,'301','2010-07-14 21:05:13'),('/balsas-salvavidas/balsas-4-hombre/basico-4-hombre/reviews',2,1,'product_reviews',NULL,1,NULL,'301','2010-07-14 21:05:13'),('/balsas-salvavidas/balsas-4-hombre/basico-4-hombre/review',2,1,'product_reviews_info',NULL,1,NULL,'301','2010-07-14 21:05:13'),('/balsas-salvavidas/balsas-4-hombre/basico-4-hombre/add-a-review',2,1,'product_reviews_write',NULL,1,NULL,'301','2010-07-14 21:05:13'),('/balsas-salvavidas/balsas-4-hombre/basico-4-hombre/tell-a-friend',2,1,'tell_a_friend',NULL,1,NULL,'301','2010-07-14 21:05:13'),('/life-rafts/4-man-rafts/4-man-basic',1,1,'product_info',NULL,1,NULL,'301','2010-07-14 21:05:13'),('/life-rafts/4-man-rafts/4-man-basic/reviews',1,1,'product_reviews',NULL,1,NULL,'301','2010-07-14 21:05:13'),('/life-rafts/4-man-rafts/4-man-basic/review',1,1,'product_reviews_info',NULL,1,NULL,'301','2010-07-14 21:05:13'),('/life-rafts/4-man-rafts/4-man-basic/add-a-review',1,1,'product_reviews_write',NULL,1,NULL,'301','2010-07-14 21:05:13'),('/life-rafts/4-man-rafts/4-man-basic/tell-a-friend',1,1,'tell_a_friend',NULL,1,NULL,'301','2010-07-14 21:05:13'),('/balsas-salvavidas/balsas-4-hombre/basico-4-hombre-ninguna-tso',2,1,'product_info',NULL,10,NULL,'301','2010-07-14 21:05:27'),('/balsas-salvavidas/balsas-4-hombre/basico-4-hombre-ninguna-tso/reviews',2,1,'product_reviews',NULL,10,NULL,'301','2010-07-14 21:05:27'),('/balsas-salvavidas/balsas-4-hombre/basico-4-hombre-ninguna-tso/review',2,1,'product_reviews_info',NULL,10,NULL,'301','2010-07-14 21:05:27'),('/balsas-salvavidas/balsas-4-hombre/basico-4-hombre-ninguna-tso/add-a-review',2,1,'product_reviews_write',NULL,10,NULL,'301','2010-07-14 21:05:27'),('/balsas-salvavidas/balsas-4-hombre/basico-4-hombre-ninguna-tso/tell-a-friend',2,1,'tell_a_friend',NULL,10,NULL,'301','2010-07-14 21:05:27'),('/life-rafts/4-man-rafts/4-man-basic-no-tso',1,1,'product_info',NULL,10,NULL,'301','2010-07-14 21:05:27'),('/life-rafts/4-man-rafts/4-man-basic-no-tso/reviews',1,1,'product_reviews',NULL,10,NULL,'301','2010-07-14 21:05:27'),('/life-rafts/4-man-rafts/4-man-basic-no-tso/review',1,1,'product_reviews_info',NULL,10,NULL,'301','2010-07-14 21:05:27'),('/life-rafts/4-man-rafts/4-man-basic-no-tso/add-a-review',1,1,'product_reviews_write',NULL,10,NULL,'301','2010-07-14 21:05:27'),('/life-rafts/4-man-rafts/4-man-basic-no-tso/tell-a-friend',1,1,'tell_a_friend',NULL,10,NULL,'301','2010-07-14 21:05:27'),('/balsas-salvavidas/balsas-4-hombre/tso-4-hombre-con-pabellon-solamente',2,1,'product_info',NULL,11,NULL,'301','2010-07-14 21:05:40'),('/balsas-salvavidas/balsas-4-hombre/tso-4-hombre-con-pabellon-solamente/reviews',2,1,'product_reviews',NULL,11,NULL,'301','2010-07-14 21:05:40'),('/balsas-salvavidas/balsas-4-hombre/tso-4-hombre-con-pabellon-solamente/review',2,1,'product_reviews_info',NULL,11,NULL,'301','2010-07-14 21:05:40'),('/balsas-salvavidas/balsas-4-hombre/tso-4-hombre-con-pabellon-solamente/add-a-review',2,1,'product_reviews_write',NULL,11,NULL,'301','2010-07-14 21:05:40'),('/balsas-salvavidas/balsas-4-hombre/tso-4-hombre-con-pabellon-solamente/tell-a-friend',2,1,'tell_a_friend',NULL,11,NULL,'301','2010-07-14 21:05:40'),('/life-rafts/4-man-rafts/4-man-tso-w-canopy-only',1,1,'product_info',NULL,11,NULL,'301','2010-07-14 21:05:40'),('/life-rafts/4-man-rafts/4-man-tso-w-canopy-only/reviews',1,1,'product_reviews',NULL,11,NULL,'301','2010-07-14 21:05:40'),('/life-rafts/4-man-rafts/4-man-tso-w-canopy-only/review',1,1,'product_reviews_info',NULL,11,NULL,'301','2010-07-14 21:05:40'),('/life-rafts/4-man-rafts/4-man-tso-w-canopy-only/add-a-review',1,1,'product_reviews_write',NULL,11,NULL,'301','2010-07-14 21:05:40'),('/life-rafts/4-man-rafts/4-man-tso-w-canopy-only/tell-a-friend',1,1,'tell_a_friend',NULL,11,NULL,'301','2010-07-14 21:05:40'),('/balsas-salvavidas/balsas-4-hombre/tso-4-hombre-con-far-121-kit',2,1,'product_info',NULL,13,NULL,'301','2010-07-14 21:05:52'),('/balsas-salvavidas/balsas-4-hombre/tso-4-hombre-con-far-121-kit/reviews',2,1,'product_reviews',NULL,13,NULL,'301','2010-07-14 21:05:52'),('/balsas-salvavidas/balsas-4-hombre/tso-4-hombre-con-far-121-kit/review',2,1,'product_reviews_info',NULL,13,NULL,'301','2010-07-14 21:05:52'),('/balsas-salvavidas/balsas-4-hombre/tso-4-hombre-con-far-121-kit/add-a-review',2,1,'product_reviews_write',NULL,13,NULL,'301','2010-07-14 21:05:52'),('/balsas-salvavidas/balsas-4-hombre/tso-4-hombre-con-far-121-kit/tell-a-friend',2,1,'tell_a_friend',NULL,13,NULL,'301','2010-07-14 21:05:52'),('/life-rafts/4-man-rafts/4-man-tso-w-far-121-kit',1,1,'product_info',NULL,13,NULL,'301','2010-07-14 21:05:52'),('/life-rafts/4-man-rafts/4-man-tso-w-far-121-kit/reviews',1,1,'product_reviews',NULL,13,NULL,'301','2010-07-14 21:05:52'),('/life-rafts/4-man-rafts/4-man-tso-w-far-121-kit/review',1,1,'product_reviews_info',NULL,13,NULL,'301','2010-07-14 21:05:52'),('/life-rafts/4-man-rafts/4-man-tso-w-far-121-kit/add-a-review',1,1,'product_reviews_write',NULL,13,NULL,'301','2010-07-14 21:05:52'),('/life-rafts/4-man-rafts/4-man-tso-w-far-121-kit/tell-a-friend',1,1,'tell_a_friend',NULL,13,NULL,'301','2010-07-14 21:05:52'),('/balsas-salvavidas/balsas-4-hombre/tso-4-hombre-con-far-135-kit',2,1,'product_info',NULL,14,NULL,'301','2010-07-14 21:06:05'),('/balsas-salvavidas/balsas-4-hombre/tso-4-hombre-con-far-135-kit/reviews',2,1,'product_reviews',NULL,14,NULL,'301','2010-07-14 21:06:05'),('/balsas-salvavidas/balsas-4-hombre/tso-4-hombre-con-far-135-kit/review',2,1,'product_reviews_info',NULL,14,NULL,'301','2010-07-14 21:06:05'),('/balsas-salvavidas/balsas-4-hombre/tso-4-hombre-con-far-135-kit/add-a-review',2,1,'product_reviews_write',NULL,14,NULL,'301','2010-07-14 21:06:05'),('/balsas-salvavidas/balsas-4-hombre/tso-4-hombre-con-far-135-kit/tell-a-friend',2,1,'tell_a_friend',NULL,14,NULL,'301','2010-07-14 21:06:05'),('/life-rafts/4-man-rafts/4-man-tso-w-far-135-kit',1,1,'product_info',NULL,14,NULL,'301','2010-07-14 21:06:05'),('/life-rafts/4-man-rafts/4-man-tso-w-far-135-kit/reviews',1,1,'product_reviews',NULL,14,NULL,'301','2010-07-14 21:06:05'),('/life-rafts/4-man-rafts/4-man-tso-w-far-135-kit/review',1,1,'product_reviews_info',NULL,14,NULL,'301','2010-07-14 21:06:05'),('/life-rafts/4-man-rafts/4-man-tso-w-far-135-kit/add-a-review',1,1,'product_reviews_write',NULL,14,NULL,'301','2010-07-14 21:06:05'),('/life-rafts/4-man-rafts/4-man-tso-w-far-135-kit/tell-a-friend',1,1,'tell_a_friend',NULL,14,NULL,'301','2010-07-14 21:06:05'),('/balsas-salvavidas/balsas-4-hombre/tso-4-hombre-con-far-91-kit',2,1,'product_info',NULL,12,NULL,'301','2010-07-14 21:06:19'),('/balsas-salvavidas/balsas-4-hombre/tso-4-hombre-con-far-91-kit/reviews',2,1,'product_reviews',NULL,12,NULL,'301','2010-07-14 21:06:19'),('/balsas-salvavidas/balsas-4-hombre/tso-4-hombre-con-far-91-kit/review',2,1,'product_reviews_info',NULL,12,NULL,'301','2010-07-14 21:06:19'),('/balsas-salvavidas/balsas-4-hombre/tso-4-hombre-con-far-91-kit/add-a-review',2,1,'product_reviews_write',NULL,12,NULL,'301','2010-07-14 21:06:19'),('/balsas-salvavidas/balsas-4-hombre/tso-4-hombre-con-far-91-kit/tell-a-friend',2,1,'tell_a_friend',NULL,12,NULL,'301','2010-07-14 21:06:19'),('/life-rafts/4-man-rafts/4-man-tso-w-far-91-kit',1,1,'product_info',NULL,12,NULL,'301','2010-07-14 21:06:19'),('/life-rafts/4-man-rafts/4-man-tso-w-far-91-kit/reviews',1,1,'product_reviews',NULL,12,NULL,'301','2010-07-14 21:06:19'),('/life-rafts/4-man-rafts/4-man-tso-w-far-91-kit/review',1,1,'product_reviews_info',NULL,12,NULL,'301','2010-07-14 21:06:19'),('/life-rafts/4-man-rafts/4-man-tso-w-far-91-kit/add-a-review',1,1,'product_reviews_write',NULL,12,NULL,'301','2010-07-14 21:06:19'),('/life-rafts/4-man-rafts/4-man-tso-w-far-91-kit/tell-a-friend',1,1,'tell_a_friend',NULL,12,NULL,'301','2010-07-14 21:06:19'),('/balsas-salvavidas/balsas-4-hombre/4-hombre-con-pabellon-solamente',2,1,'product_info',NULL,2,NULL,'301','2010-07-14 21:06:34'),('/balsas-salvavidas/balsas-4-hombre/4-hombre-con-pabellon-solamente/reviews',2,1,'product_reviews',NULL,2,NULL,'301','2010-07-14 21:06:34'),('/balsas-salvavidas/balsas-4-hombre/4-hombre-con-pabellon-solamente/review',2,1,'product_reviews_info',NULL,2,NULL,'301','2010-07-14 21:06:34'),('/balsas-salvavidas/balsas-4-hombre/4-hombre-con-pabellon-solamente/add-a-review',2,1,'product_reviews_write',NULL,2,NULL,'301','2010-07-14 21:06:34'),('/balsas-salvavidas/balsas-4-hombre/4-hombre-con-pabellon-solamente/tell-a-friend',2,1,'tell_a_friend',NULL,2,NULL,'301','2010-07-14 21:06:34'),('/life-rafts/4-man-rafts/4-man-w-canopy-only',1,1,'product_info',NULL,2,NULL,'301','2010-07-14 21:06:34'),('/life-rafts/4-man-rafts/4-man-w-canopy-only/reviews',1,1,'product_reviews',NULL,2,NULL,'301','2010-07-14 21:06:34'),('/life-rafts/4-man-rafts/4-man-w-canopy-only/review',1,1,'product_reviews_info',NULL,2,NULL,'301','2010-07-14 21:06:34'),('/life-rafts/4-man-rafts/4-man-w-canopy-only/add-a-review',1,1,'product_reviews_write',NULL,2,NULL,'301','2010-07-14 21:06:34'),('/life-rafts/4-man-rafts/4-man-w-canopy-only/tell-a-friend',1,1,'tell_a_friend',NULL,2,NULL,'301','2010-07-14 21:06:34'),('/balsas-salvavidas/balsas-4-hombre/4-hombre-con-kit-de-lujo',2,1,'product_info',NULL,5,NULL,'301','2010-07-14 21:06:56'),('/balsas-salvavidas/balsas-4-hombre/4-hombre-con-kit-de-lujo/reviews',2,1,'product_reviews',NULL,5,NULL,'301','2010-07-14 21:06:56'),('/balsas-salvavidas/balsas-4-hombre/4-hombre-con-kit-de-lujo/review',2,1,'product_reviews_info',NULL,5,NULL,'301','2010-07-14 21:06:56'),('/balsas-salvavidas/balsas-4-hombre/4-hombre-con-kit-de-lujo/add-a-review',2,1,'product_reviews_write',NULL,5,NULL,'301','2010-07-14 21:06:56'),('/balsas-salvavidas/balsas-4-hombre/4-hombre-con-kit-de-lujo/tell-a-friend',2,1,'tell_a_friend',NULL,5,NULL,'301','2010-07-14 21:06:56'),('/life-rafts/4-man-rafts/4-man-w-deluxe-kit',1,1,'product_info',NULL,5,NULL,'301','2010-07-14 21:06:56'),('/life-rafts/4-man-rafts/4-man-w-deluxe-kit/reviews',1,1,'product_reviews',NULL,5,NULL,'301','2010-07-14 21:06:56'),('/life-rafts/4-man-rafts/4-man-w-deluxe-kit/review',1,1,'product_reviews_info',NULL,5,NULL,'301','2010-07-14 21:06:56'),('/life-rafts/4-man-rafts/4-man-w-deluxe-kit/add-a-review',1,1,'product_reviews_write',NULL,5,NULL,'301','2010-07-14 21:06:56'),('/life-rafts/4-man-rafts/4-man-w-deluxe-kit/tell-a-friend',1,1,'tell_a_friend',NULL,5,NULL,'301','2010-07-14 21:06:56'),('/balsas-salvavidas/balsas-4-hombre/4-hombre-con-kit-estandar',2,1,'product_info',NULL,3,NULL,'301','2010-07-14 21:07:14'),('/balsas-salvavidas/balsas-4-hombre/4-hombre-con-kit-estandar/reviews',2,1,'product_reviews',NULL,3,NULL,'301','2010-07-14 21:07:14'),('/balsas-salvavidas/balsas-4-hombre/4-hombre-con-kit-estandar/review',2,1,'product_reviews_info',NULL,3,NULL,'301','2010-07-14 21:07:14'),('/balsas-salvavidas/balsas-4-hombre/4-hombre-con-kit-estandar/add-a-review',2,1,'product_reviews_write',NULL,3,NULL,'301','2010-07-14 21:07:14'),('/balsas-salvavidas/balsas-4-hombre/4-hombre-con-kit-estandar/tell-a-friend',2,1,'tell_a_friend',NULL,3,NULL,'301','2010-07-14 21:07:14'),('/life-rafts/4-man-rafts/4-man-w-standard-kit',1,1,'product_info',NULL,3,NULL,'301','2010-07-14 21:07:14'),('/life-rafts/4-man-rafts/4-man-w-standard-kit/reviews',1,1,'product_reviews',NULL,3,NULL,'301','2010-07-14 21:07:14'),('/life-rafts/4-man-rafts/4-man-w-standard-kit/review',1,1,'product_reviews_info',NULL,3,NULL,'301','2010-07-14 21:07:14'),('/life-rafts/4-man-rafts/4-man-w-standard-kit/add-a-review',1,1,'product_reviews_write',NULL,3,NULL,'301','2010-07-14 21:07:14'),('/life-rafts/4-man-rafts/4-man-w-standard-kit/tell-a-friend',1,1,'tell_a_friend',NULL,3,NULL,'301','2010-07-14 21:07:14'),('/balsas-salvavidas/balsas-4-hombre/4-hombre-con-estandar-mas-kit',2,1,'product_info',NULL,4,NULL,'301','2010-07-14 21:07:28'),('/balsas-salvavidas/balsas-4-hombre/4-hombre-con-estandar-mas-kit/reviews',2,1,'product_reviews',NULL,4,NULL,'301','2010-07-14 21:07:28'),('/balsas-salvavidas/balsas-4-hombre/4-hombre-con-estandar-mas-kit/review',2,1,'product_reviews_info',NULL,4,NULL,'301','2010-07-14 21:07:28'),('/balsas-salvavidas/balsas-4-hombre/4-hombre-con-estandar-mas-kit/add-a-review',2,1,'product_reviews_write',NULL,4,NULL,'301','2010-07-14 21:07:28'),('/balsas-salvavidas/balsas-4-hombre/4-hombre-con-estandar-mas-kit/tell-a-friend',2,1,'tell_a_friend',NULL,4,NULL,'301','2010-07-14 21:07:28'),('/life-rafts/4-man-rafts/4-man-w-standard-plus-kit',1,1,'product_info',NULL,4,NULL,'301','2010-07-14 21:07:28'),('/life-rafts/4-man-rafts/4-man-w-standard-plus-kit/reviews',1,1,'product_reviews',NULL,4,NULL,'301','2010-07-14 21:07:28'),('/life-rafts/4-man-rafts/4-man-w-standard-plus-kit/review',1,1,'product_reviews_info',NULL,4,NULL,'301','2010-07-14 21:07:28'),('/life-rafts/4-man-rafts/4-man-w-standard-plus-kit/add-a-review',1,1,'product_reviews_write',NULL,4,NULL,'301','2010-07-14 21:07:28'),('/life-rafts/4-man-rafts/4-man-w-standard-plus-kit/tell-a-friend',1,1,'tell_a_friend',NULL,4,NULL,'301','2010-07-14 21:07:28'),('/balsas-salvavidas/balsas-6-hombre/basico-6-hombre-ninguna-tso',2,1,'product_info',NULL,20,NULL,'301','2010-07-14 21:07:52'),('/balsas-salvavidas/balsas-6-hombre/basico-6-hombre-ninguna-tso/reviews',2,1,'product_reviews',NULL,20,NULL,'301','2010-07-14 21:07:52'),('/balsas-salvavidas/balsas-6-hombre/basico-6-hombre-ninguna-tso/review',2,1,'product_reviews_info',NULL,20,NULL,'301','2010-07-14 21:07:52'),('/balsas-salvavidas/balsas-6-hombre/basico-6-hombre-ninguna-tso/add-a-review',2,1,'product_reviews_write',NULL,20,NULL,'301','2010-07-14 21:07:52'),('/balsas-salvavidas/balsas-6-hombre/basico-6-hombre-ninguna-tso/tell-a-friend',2,1,'tell_a_friend',NULL,20,NULL,'301','2010-07-14 21:07:52'),('/life-rafts/6-man-rafts/6-man-basic-non-tso',1,1,'product_info',NULL,20,NULL,'301','2010-07-14 21:07:52'),('/life-rafts/6-man-rafts/6-man-basic-non-tso/reviews',1,1,'product_reviews',NULL,20,NULL,'301','2010-07-14 21:07:52'),('/life-rafts/6-man-rafts/6-man-basic-non-tso/review',1,1,'product_reviews_info',NULL,20,NULL,'301','2010-07-14 21:07:52'),('/life-rafts/6-man-rafts/6-man-basic-non-tso/add-a-review',1,1,'product_reviews_write',NULL,20,NULL,'301','2010-07-14 21:07:52'),('/life-rafts/6-man-rafts/6-man-basic-non-tso/tell-a-friend',1,1,'tell_a_friend',NULL,20,NULL,'301','2010-07-14 21:07:52'),('/balsas-salvavidas/balsas-6-hombre/tso-6-hombre-con-pabellon-solamente',2,1,'product_info',NULL,21,NULL,'301','2010-07-14 21:08:07'),('/balsas-salvavidas/balsas-6-hombre/tso-6-hombre-con-pabellon-solamente/reviews',2,1,'product_reviews',NULL,21,NULL,'301','2010-07-14 21:08:07'),('/balsas-salvavidas/balsas-6-hombre/tso-6-hombre-con-pabellon-solamente/review',2,1,'product_reviews_info',NULL,21,NULL,'301','2010-07-14 21:08:07'),('/balsas-salvavidas/balsas-6-hombre/tso-6-hombre-con-pabellon-solamente/add-a-review',2,1,'product_reviews_write',NULL,21,NULL,'301','2010-07-14 21:08:07'),('/balsas-salvavidas/balsas-6-hombre/tso-6-hombre-con-pabellon-solamente/tell-a-friend',2,1,'tell_a_friend',NULL,21,NULL,'301','2010-07-14 21:08:07'),('/life-rafts/6-man-rafts/6-man-tso-w-canopy-only',1,1,'product_info',NULL,21,NULL,'301','2010-07-14 21:08:07'),('/life-rafts/6-man-rafts/6-man-tso-w-canopy-only/reviews',1,1,'product_reviews',NULL,21,NULL,'301','2010-07-14 21:08:07'),('/life-rafts/6-man-rafts/6-man-tso-w-canopy-only/review',1,1,'product_reviews_info',NULL,21,NULL,'301','2010-07-14 21:08:07'),('/life-rafts/6-man-rafts/6-man-tso-w-canopy-only/add-a-review',1,1,'product_reviews_write',NULL,21,NULL,'301','2010-07-14 21:08:07'),('/life-rafts/6-man-rafts/6-man-tso-w-canopy-only/tell-a-friend',1,1,'tell_a_friend',NULL,21,NULL,'301','2010-07-14 21:08:07'),('/balsas-salvavidas/balsas-6-hombre/tso-6-hombre-con-far-121-kit',2,1,'product_info',NULL,23,NULL,'301','2010-07-14 21:08:18'),('/balsas-salvavidas/balsas-6-hombre/tso-6-hombre-con-far-121-kit/reviews',2,1,'product_reviews',NULL,23,NULL,'301','2010-07-14 21:08:18'),('/balsas-salvavidas/balsas-6-hombre/tso-6-hombre-con-far-121-kit/review',2,1,'product_reviews_info',NULL,23,NULL,'301','2010-07-14 21:08:18'),('/balsas-salvavidas/balsas-6-hombre/tso-6-hombre-con-far-121-kit/add-a-review',2,1,'product_reviews_write',NULL,23,NULL,'301','2010-07-14 21:08:18'),('/balsas-salvavidas/balsas-6-hombre/tso-6-hombre-con-far-121-kit/tell-a-friend',2,1,'tell_a_friend',NULL,23,NULL,'301','2010-07-14 21:08:18'),('/life-rafts/6-man-rafts/6-man-tso-w-far-121-kit',1,1,'product_info',NULL,23,NULL,'301','2010-07-14 21:08:18'),('/life-rafts/6-man-rafts/6-man-tso-w-far-121-kit/reviews',1,1,'product_reviews',NULL,23,NULL,'301','2010-07-14 21:08:18'),('/life-rafts/6-man-rafts/6-man-tso-w-far-121-kit/review',1,1,'product_reviews_info',NULL,23,NULL,'301','2010-07-14 21:08:18'),('/life-rafts/6-man-rafts/6-man-tso-w-far-121-kit/add-a-review',1,1,'product_reviews_write',NULL,23,NULL,'301','2010-07-14 21:08:18'),('/life-rafts/6-man-rafts/6-man-tso-w-far-121-kit/tell-a-friend',1,1,'tell_a_friend',NULL,23,NULL,'301','2010-07-14 21:08:18'),('/balsas-salvavidas/balsas-6-hombre/tso-6-hombre-con-far-135-kit',2,1,'product_info',NULL,24,NULL,'301','2010-07-14 21:08:30'),('/balsas-salvavidas/balsas-6-hombre/tso-6-hombre-con-far-135-kit/reviews',2,1,'product_reviews',NULL,24,NULL,'301','2010-07-14 21:08:30'),('/balsas-salvavidas/balsas-6-hombre/tso-6-hombre-con-far-135-kit/review',2,1,'product_reviews_info',NULL,24,NULL,'301','2010-07-14 21:08:30'),('/balsas-salvavidas/balsas-6-hombre/tso-6-hombre-con-far-135-kit/add-a-review',2,1,'product_reviews_write',NULL,24,NULL,'301','2010-07-14 21:08:30'),('/balsas-salvavidas/balsas-6-hombre/tso-6-hombre-con-far-135-kit/tell-a-friend',2,1,'tell_a_friend',NULL,24,NULL,'301','2010-07-14 21:08:30'),('/life-rafts/6-man-rafts/6-man-tso-w-far-135-kit',1,1,'product_info',NULL,24,NULL,'301','2010-07-14 21:08:30'),('/life-rafts/6-man-rafts/6-man-tso-w-far-135-kit/reviews',1,1,'product_reviews',NULL,24,NULL,'301','2010-07-14 21:08:30'),('/life-rafts/6-man-rafts/6-man-tso-w-far-135-kit/review',1,1,'product_reviews_info',NULL,24,NULL,'301','2010-07-14 21:08:30'),('/life-rafts/6-man-rafts/6-man-tso-w-far-135-kit/add-a-review',1,1,'product_reviews_write',NULL,24,NULL,'301','2010-07-14 21:08:30'),('/life-rafts/6-man-rafts/6-man-tso-w-far-135-kit/tell-a-friend',1,1,'tell_a_friend',NULL,24,NULL,'301','2010-07-14 21:08:30'),('/balsas-salvavidas/balsas-6-hombre/tso-6-hombre-con-far-91-kit',2,1,'product_info',NULL,22,NULL,'301','2010-07-14 21:08:44'),('/balsas-salvavidas/balsas-6-hombre/tso-6-hombre-con-far-91-kit/reviews',2,1,'product_reviews',NULL,22,NULL,'301','2010-07-14 21:08:44'),('/balsas-salvavidas/balsas-6-hombre/tso-6-hombre-con-far-91-kit/review',2,1,'product_reviews_info',NULL,22,NULL,'301','2010-07-14 21:08:44'),('/balsas-salvavidas/balsas-6-hombre/tso-6-hombre-con-far-91-kit/add-a-review',2,1,'product_reviews_write',NULL,22,NULL,'301','2010-07-14 21:08:44'),('/balsas-salvavidas/balsas-6-hombre/tso-6-hombre-con-far-91-kit/tell-a-friend',2,1,'tell_a_friend',NULL,22,NULL,'301','2010-07-14 21:08:44'),('/life-rafts/6-man-rafts/6-man-tso-w-far-91-kit',1,1,'product_info',NULL,22,NULL,'301','2010-07-14 21:08:44'),('/life-rafts/6-man-rafts/6-man-tso-w-far-91-kit/reviews',1,1,'product_reviews',NULL,22,NULL,'301','2010-07-14 21:08:44'),('/life-rafts/6-man-rafts/6-man-tso-w-far-91-kit/review',1,1,'product_reviews_info',NULL,22,NULL,'301','2010-07-14 21:08:44'),('/life-rafts/6-man-rafts/6-man-tso-w-far-91-kit/add-a-review',1,1,'product_reviews_write',NULL,22,NULL,'301','2010-07-14 21:08:44'),('/life-rafts/6-man-rafts/6-man-tso-w-far-91-kit/tell-a-friend',1,1,'tell_a_friend',NULL,22,NULL,'301','2010-07-14 21:08:44'),('/balsas-salvavidas/balsas-8-hombre/basico-8-hombre-ninguna-tso',2,1,'product_info',NULL,15,NULL,'301','2010-07-14 21:09:24'),('/balsas-salvavidas/balsas-8-hombre/basico-8-hombre-ninguna-tso/reviews',2,1,'product_reviews',NULL,15,NULL,'301','2010-07-14 21:09:24'),('/balsas-salvavidas/balsas-8-hombre/basico-8-hombre-ninguna-tso/review',2,1,'product_reviews_info',NULL,15,NULL,'301','2010-07-14 21:09:24'),('/balsas-salvavidas/balsas-8-hombre/basico-8-hombre-ninguna-tso/add-a-review',2,1,'product_reviews_write',NULL,15,NULL,'301','2010-07-14 21:09:24'),('/balsas-salvavidas/balsas-8-hombre/basico-8-hombre-ninguna-tso/tell-a-friend',2,1,'tell_a_friend',NULL,15,NULL,'301','2010-07-14 21:09:24'),('/life-rafts/8-man-raft/8-man-basic-non-tso',1,1,'product_info',NULL,15,NULL,'301','2010-07-14 21:09:24'),('/life-rafts/8-man-raft/8-man-basic-non-tso/reviews',1,1,'product_reviews',NULL,15,NULL,'301','2010-07-14 21:09:24'),('/life-rafts/8-man-raft/8-man-basic-non-tso/review',1,1,'product_reviews_info',NULL,15,NULL,'301','2010-07-14 21:09:24'),('/life-rafts/8-man-raft/8-man-basic-non-tso/add-a-review',1,1,'product_reviews_write',NULL,15,NULL,'301','2010-07-14 21:09:24'),('/life-rafts/8-man-raft/8-man-basic-non-tso/tell-a-friend',1,1,'tell_a_friend',NULL,15,NULL,'301','2010-07-14 21:09:24'),('/balsas-salvavidas/balsas-8-hombre/tso-8-hombre-con-pabellon-solamente',2,1,'product_info',NULL,16,NULL,'301','2010-07-14 21:09:37'),('/balsas-salvavidas/balsas-8-hombre/tso-8-hombre-con-pabellon-solamente/reviews',2,1,'product_reviews',NULL,16,NULL,'301','2010-07-14 21:09:37'),('/balsas-salvavidas/balsas-8-hombre/tso-8-hombre-con-pabellon-solamente/review',2,1,'product_reviews_info',NULL,16,NULL,'301','2010-07-14 21:09:37'),('/balsas-salvavidas/balsas-8-hombre/tso-8-hombre-con-pabellon-solamente/add-a-review',2,1,'product_reviews_write',NULL,16,NULL,'301','2010-07-14 21:09:37'),('/balsas-salvavidas/balsas-8-hombre/tso-8-hombre-con-pabellon-solamente/tell-a-friend',2,1,'tell_a_friend',NULL,16,NULL,'301','2010-07-14 21:09:37'),('/life-rafts/8-man-raft/8-man-tso-w-canopy-only',1,1,'product_info',NULL,16,NULL,'301','2010-07-14 21:09:37'),('/life-rafts/8-man-raft/8-man-tso-w-canopy-only/reviews',1,1,'product_reviews',NULL,16,NULL,'301','2010-07-14 21:09:37'),('/life-rafts/8-man-raft/8-man-tso-w-canopy-only/review',1,1,'product_reviews_info',NULL,16,NULL,'301','2010-07-14 21:09:37'),('/life-rafts/8-man-raft/8-man-tso-w-canopy-only/add-a-review',1,1,'product_reviews_write',NULL,16,NULL,'301','2010-07-14 21:09:37'),('/life-rafts/8-man-raft/8-man-tso-w-canopy-only/tell-a-friend',1,1,'tell_a_friend',NULL,16,NULL,'301','2010-07-14 21:09:37'),('/balsas-salvavidas/balsas-8-hombre/tso-8-hombre-con-far-121-kit',2,1,'product_info',NULL,18,NULL,'301','2010-07-14 21:09:50'),('/balsas-salvavidas/balsas-8-hombre/tso-8-hombre-con-far-121-kit/reviews',2,1,'product_reviews',NULL,18,NULL,'301','2010-07-14 21:09:50'),('/balsas-salvavidas/balsas-8-hombre/tso-8-hombre-con-far-121-kit/review',2,1,'product_reviews_info',NULL,18,NULL,'301','2010-07-14 21:09:50'),('/balsas-salvavidas/balsas-8-hombre/tso-8-hombre-con-far-121-kit/add-a-review',2,1,'product_reviews_write',NULL,18,NULL,'301','2010-07-14 21:09:50'),('/balsas-salvavidas/balsas-8-hombre/tso-8-hombre-con-far-121-kit/tell-a-friend',2,1,'tell_a_friend',NULL,18,NULL,'301','2010-07-14 21:09:50'),('/life-rafts/8-man-raft/8-man-tso-w-far-121-kit',1,1,'product_info',NULL,18,NULL,'301','2010-07-14 21:09:50'),('/life-rafts/8-man-raft/8-man-tso-w-far-121-kit/reviews',1,1,'product_reviews',NULL,18,NULL,'301','2010-07-14 21:09:50'),('/life-rafts/8-man-raft/8-man-tso-w-far-121-kit/review',1,1,'product_reviews_info',NULL,18,NULL,'301','2010-07-14 21:09:50'),('/life-rafts/8-man-raft/8-man-tso-w-far-121-kit/add-a-review',1,1,'product_reviews_write',NULL,18,NULL,'301','2010-07-14 21:09:50'),('/life-rafts/8-man-raft/8-man-tso-w-far-121-kit/tell-a-friend',1,1,'tell_a_friend',NULL,18,NULL,'301','2010-07-14 21:09:50'),('/balsas-salvavidas/balsas-8-hombre/tso-8-hombre-con-far-135-kit',2,1,'product_info',NULL,19,NULL,'301','2010-07-14 21:10:01'),('/balsas-salvavidas/balsas-8-hombre/tso-8-hombre-con-far-135-kit/reviews',2,1,'product_reviews',NULL,19,NULL,'301','2010-07-14 21:10:01'),('/balsas-salvavidas/balsas-8-hombre/tso-8-hombre-con-far-135-kit/review',2,1,'product_reviews_info',NULL,19,NULL,'301','2010-07-14 21:10:01'),('/balsas-salvavidas/balsas-8-hombre/tso-8-hombre-con-far-135-kit/add-a-review',2,1,'product_reviews_write',NULL,19,NULL,'301','2010-07-14 21:10:01'),('/balsas-salvavidas/balsas-8-hombre/tso-8-hombre-con-far-135-kit/tell-a-friend',2,1,'tell_a_friend',NULL,19,NULL,'301','2010-07-14 21:10:01'),('/life-rafts/8-man-raft/8-man-tso-w-far-135-kit',1,1,'product_info',NULL,19,NULL,'301','2010-07-14 21:10:01'),('/life-rafts/8-man-raft/8-man-tso-w-far-135-kit/reviews',1,1,'product_reviews',NULL,19,NULL,'301','2010-07-14 21:10:01'),('/life-rafts/8-man-raft/8-man-tso-w-far-135-kit/review',1,1,'product_reviews_info',NULL,19,NULL,'301','2010-07-14 21:10:01'),('/life-rafts/8-man-raft/8-man-tso-w-far-135-kit/add-a-review',1,1,'product_reviews_write',NULL,19,NULL,'301','2010-07-14 21:10:01'),('/life-rafts/8-man-raft/8-man-tso-w-far-135-kit/tell-a-friend',1,1,'tell_a_friend',NULL,19,NULL,'301','2010-07-14 21:10:01'),('/balsas-salvavidas/balsas-8-hombre/tso-8-hombre-con-far-91-kit',2,1,'product_info',NULL,17,NULL,'301','2010-07-14 21:10:15'),('/balsas-salvavidas/balsas-8-hombre/tso-8-hombre-con-far-91-kit/reviews',2,1,'product_reviews',NULL,17,NULL,'301','2010-07-14 21:10:15'),('/balsas-salvavidas/balsas-8-hombre/tso-8-hombre-con-far-91-kit/review',2,1,'product_reviews_info',NULL,17,NULL,'301','2010-07-14 21:10:15'),('/balsas-salvavidas/balsas-8-hombre/tso-8-hombre-con-far-91-kit/add-a-review',2,1,'product_reviews_write',NULL,17,NULL,'301','2010-07-14 21:10:15'),('/balsas-salvavidas/balsas-8-hombre/tso-8-hombre-con-far-91-kit/tell-a-friend',2,1,'tell_a_friend',NULL,17,NULL,'301','2010-07-14 21:10:15'),('/life-rafts/8-man-raft/8-man-tso-w-far-91-kit',1,1,'product_info',NULL,17,NULL,'301','2010-07-14 21:10:15'),('/life-rafts/8-man-raft/8-man-tso-w-far-91-kit/reviews',1,1,'product_reviews',NULL,17,NULL,'301','2010-07-14 21:10:15'),('/life-rafts/8-man-raft/8-man-tso-w-far-91-kit/review',1,1,'product_reviews_info',NULL,17,NULL,'301','2010-07-14 21:10:15'),('/life-rafts/8-man-raft/8-man-tso-w-far-91-kit/add-a-review',1,1,'product_reviews_write',NULL,17,NULL,'301','2010-07-14 21:10:15'),('/life-rafts/8-man-raft/8-man-tso-w-far-91-kit/tell-a-friend',1,1,'tell_a_friend',NULL,17,NULL,'301','2010-07-14 21:10:15'),('/balsas-salvavidas/balsas-9-hombre/basico-9-hombre',2,1,'product_info',NULL,6,NULL,'301','2010-07-14 21:10:35'),('/balsas-salvavidas/balsas-9-hombre/basico-9-hombre/reviews',2,1,'product_reviews',NULL,6,NULL,'301','2010-07-14 21:10:35'),('/balsas-salvavidas/balsas-9-hombre/basico-9-hombre/review',2,1,'product_reviews_info',NULL,6,NULL,'301','2010-07-14 21:10:35'),('/balsas-salvavidas/balsas-9-hombre/basico-9-hombre/add-a-review',2,1,'product_reviews_write',NULL,6,NULL,'301','2010-07-14 21:10:35'),('/balsas-salvavidas/balsas-9-hombre/basico-9-hombre/tell-a-friend',2,1,'tell_a_friend',NULL,6,NULL,'301','2010-07-14 21:10:35'),('/life-rafts/9-man-rafts/9-man-basic',1,1,'product_info',NULL,6,NULL,'301','2010-07-14 21:10:35'),('/life-rafts/9-man-rafts/9-man-basic/reviews',1,1,'product_reviews',NULL,6,NULL,'301','2010-07-14 21:10:35'),('/life-rafts/9-man-rafts/9-man-basic/review',1,1,'product_reviews_info',NULL,6,NULL,'301','2010-07-14 21:10:35'),('/life-rafts/9-man-rafts/9-man-basic/add-a-review',1,1,'product_reviews_write',NULL,6,NULL,'301','2010-07-14 21:10:35'),('/life-rafts/9-man-rafts/9-man-basic/tell-a-friend',1,1,'tell_a_friend',NULL,6,NULL,'301','2010-07-14 21:10:35'),('/balsas-salvavidas/balsas-9-hombre/9-hombre-con-kit-de-lujo',2,1,'product_info',NULL,9,NULL,'301','2010-07-14 21:10:47'),('/balsas-salvavidas/balsas-9-hombre/9-hombre-con-kit-de-lujo/reviews',2,1,'product_reviews',NULL,9,NULL,'301','2010-07-14 21:10:47'),('/balsas-salvavidas/balsas-9-hombre/9-hombre-con-kit-de-lujo/review',2,1,'product_reviews_info',NULL,9,NULL,'301','2010-07-14 21:10:47'),('/balsas-salvavidas/balsas-9-hombre/9-hombre-con-kit-de-lujo/add-a-review',2,1,'product_reviews_write',NULL,9,NULL,'301','2010-07-14 21:10:47'),('/balsas-salvavidas/balsas-9-hombre/9-hombre-con-kit-de-lujo/tell-a-friend',2,1,'tell_a_friend',NULL,9,NULL,'301','2010-07-14 21:10:47'),('/life-rafts/9-man-rafts/9-man-w-deluxe-kit',1,1,'product_info',NULL,9,NULL,'301','2010-07-14 21:10:47'),('/life-rafts/9-man-rafts/9-man-w-deluxe-kit/reviews',1,1,'product_reviews',NULL,9,NULL,'301','2010-07-14 21:10:47'),('/life-rafts/9-man-rafts/9-man-w-deluxe-kit/review',1,1,'product_reviews_info',NULL,9,NULL,'301','2010-07-14 21:10:47'),('/life-rafts/9-man-rafts/9-man-w-deluxe-kit/add-a-review',1,1,'product_reviews_write',NULL,9,NULL,'301','2010-07-14 21:10:47'),('/life-rafts/9-man-rafts/9-man-w-deluxe-kit/tell-a-friend',1,1,'tell_a_friend',NULL,9,NULL,'301','2010-07-14 21:10:47'),('/balsas-salvavidas/balsas-9-hombre/9-hombre-con-kit-estandar',2,1,'product_info',NULL,7,NULL,'301','2010-07-14 21:11:02'),('/balsas-salvavidas/balsas-9-hombre/9-hombre-con-kit-estandar/reviews',2,1,'product_reviews',NULL,7,NULL,'301','2010-07-14 21:11:02'),('/balsas-salvavidas/balsas-9-hombre/9-hombre-con-kit-estandar/review',2,1,'product_reviews_info',NULL,7,NULL,'301','2010-07-14 21:11:02'),('/balsas-salvavidas/balsas-9-hombre/9-hombre-con-kit-estandar/add-a-review',2,1,'product_reviews_write',NULL,7,NULL,'301','2010-07-14 21:11:02'),('/balsas-salvavidas/balsas-9-hombre/9-hombre-con-kit-estandar/tell-a-friend',2,1,'tell_a_friend',NULL,7,NULL,'301','2010-07-14 21:11:02'),('/life-rafts/9-man-rafts/9-man-w-standard-kit',1,1,'product_info',NULL,7,NULL,'301','2010-07-14 21:11:02'),('/life-rafts/9-man-rafts/9-man-w-standard-kit/reviews',1,1,'product_reviews',NULL,7,NULL,'301','2010-07-14 21:11:02'),('/life-rafts/9-man-rafts/9-man-w-standard-kit/review',1,1,'product_reviews_info',NULL,7,NULL,'301','2010-07-14 21:11:02'),('/life-rafts/9-man-rafts/9-man-w-standard-kit/add-a-review',1,1,'product_reviews_write',NULL,7,NULL,'301','2010-07-14 21:11:02'),('/life-rafts/9-man-rafts/9-man-w-standard-kit/tell-a-friend',1,1,'tell_a_friend',NULL,7,NULL,'301','2010-07-14 21:11:02'),('/balsas-salvavidas/balsas-9-hombre/9-hombre-con-estandar-mas-kit',2,1,'product_info',NULL,8,NULL,'301','2010-07-14 21:11:14'),('/balsas-salvavidas/balsas-9-hombre/9-hombre-con-estandar-mas-kit/reviews',2,1,'product_reviews',NULL,8,NULL,'301','2010-07-14 21:11:14'),('/balsas-salvavidas/balsas-9-hombre/9-hombre-con-estandar-mas-kit/review',2,1,'product_reviews_info',NULL,8,NULL,'301','2010-07-14 21:11:14'),('/balsas-salvavidas/balsas-9-hombre/9-hombre-con-estandar-mas-kit/add-a-review',2,1,'product_reviews_write',NULL,8,NULL,'301','2010-07-14 21:11:14'),('/balsas-salvavidas/balsas-9-hombre/9-hombre-con-estandar-mas-kit/tell-a-friend',2,1,'tell_a_friend',NULL,8,NULL,'301','2010-07-14 21:11:14'),('/life-rafts/9-man-rafts/9-man-w-standard-plus-kit',1,1,'product_info',NULL,8,NULL,'301','2010-07-14 21:11:14'),('/life-rafts/9-man-rafts/9-man-w-standard-plus-kit/reviews',1,1,'product_reviews',NULL,8,NULL,'301','2010-07-14 21:11:14'),('/life-rafts/9-man-rafts/9-man-w-standard-plus-kit/review',1,1,'product_reviews_info',NULL,8,NULL,'301','2010-07-14 21:11:14'),('/life-rafts/9-man-rafts/9-man-w-standard-plus-kit/add-a-review',1,1,'product_reviews_write',NULL,8,NULL,'301','2010-07-14 21:11:14'),('/life-rafts/9-man-rafts/9-man-w-standard-plus-kit/tell-a-friend',1,1,'tell_a_friend',NULL,8,NULL,'301','2010-07-14 21:11:14'),('/life-vests/chaleco-de-vida-xf-35',2,1,'product_info',NULL,43,NULL,'301','2010-07-14 21:11:34'),('/life-vests/chaleco-de-vida-xf-35/reviews',2,1,'product_reviews',NULL,43,NULL,'301','2010-07-14 21:11:34'),('/life-vests/chaleco-de-vida-xf-35/review',2,1,'product_reviews_info',NULL,43,NULL,'301','2010-07-14 21:11:34'),('/life-vests/chaleco-de-vida-xf-35/add-a-review',2,1,'product_reviews_write',NULL,43,NULL,'301','2010-07-14 21:11:34'),('/life-vests/chaleco-de-vida-xf-35/tell-a-friend',2,1,'tell_a_friend',NULL,43,NULL,'301','2010-07-14 21:11:34'),('/life-vests/life-vest-xf-35',1,1,'product_info',NULL,43,NULL,'301','2010-07-14 21:11:34'),('/life-vests/life-vest-xf-35/reviews',1,1,'product_reviews',NULL,43,NULL,'301','2010-07-14 21:11:34'),('/life-vests/life-vest-xf-35/review',1,1,'product_reviews_info',NULL,43,NULL,'301','2010-07-14 21:11:34'),('/life-vests/life-vest-xf-35/add-a-review',1,1,'product_reviews_write',NULL,43,NULL,'301','2010-07-14 21:11:34'),('/life-vests/life-vest-xf-35/tell-a-friend',1,1,'tell_a_friend',NULL,43,NULL,'301','2010-07-14 21:11:34'),('/transmisores/500-12y-faro-del-localizador',2,1,'product_info',NULL,36,NULL,'301','2010-07-14 21:12:00'),('/transmisores/500-12y-faro-del-localizador/reviews',2,1,'product_reviews',NULL,36,NULL,'301','2010-07-14 21:12:00'),('/transmisores/500-12y-faro-del-localizador/review',2,1,'product_reviews_info',NULL,36,NULL,'301','2010-07-14 21:12:00'),('/transmisores/500-12y-faro-del-localizador/add-a-review',2,1,'product_reviews_write',NULL,36,NULL,'301','2010-07-14 21:12:00'),('/transmisores/500-12y-faro-del-localizador/tell-a-friend',2,1,'tell_a_friend',NULL,36,NULL,'301','2010-07-14 21:12:00'),('/transmitters/500-12y-locator-beacon',1,1,'product_info',NULL,36,NULL,'301','2010-07-14 21:12:00'),('/transmitters/500-12y-locator-beacon/reviews',1,1,'product_reviews',NULL,36,NULL,'301','2010-07-14 21:12:00'),('/transmitters/500-12y-locator-beacon/review',1,1,'product_reviews_info',NULL,36,NULL,'301','2010-07-14 21:12:00'),('/transmitters/500-12y-locator-beacon/add-a-review',1,1,'product_reviews_write',NULL,36,NULL,'301','2010-07-14 21:12:00'),('/transmitters/500-12y-locator-beacon/tell-a-friend',1,1,'tell_a_friend',NULL,36,NULL,'301','2010-07-14 21:12:00'),('/transmisores/aqualink-406',2,1,'product_info',NULL,45,NULL,'301','2010-07-14 21:12:13'),('/transmisores/aqualink-406/reviews',2,1,'product_reviews',NULL,45,NULL,'301','2010-07-14 21:12:13'),('/transmisores/aqualink-406/review',2,1,'product_reviews_info',NULL,45,NULL,'301','2010-07-14 21:12:13'),('/transmisores/aqualink-406/add-a-review',2,1,'product_reviews_write',NULL,45,NULL,'301','2010-07-14 21:12:13'),('/transmisores/aqualink-406/tell-a-friend',2,1,'tell_a_friend',NULL,45,NULL,'301','2010-07-14 21:12:13'),('/transmitters/aqualink-406',1,1,'product_info',NULL,45,NULL,'301','2010-07-14 21:12:13'),('/transmitters/aqualink-406/reviews',1,1,'product_reviews',NULL,45,NULL,'301','2010-07-14 21:12:13'),('/transmitters/aqualink-406/review',1,1,'product_reviews_info',NULL,45,NULL,'301','2010-07-14 21:12:13'),('/transmitters/aqualink-406/add-a-review',1,1,'product_reviews_write',NULL,45,NULL,'301','2010-07-14 21:12:13'),('/transmitters/aqualink-406/tell-a-friend',1,1,'tell_a_friend',NULL,45,NULL,'301','2010-07-14 21:12:13'),('/transmisores/ebc-406ap',2,1,'product_info',NULL,37,NULL,'301','2010-07-14 21:12:28'),('/transmisores/ebc-406ap/reviews',2,1,'product_reviews',NULL,37,NULL,'301','2010-07-14 21:12:28'),('/transmisores/ebc-406ap/review',2,1,'product_reviews_info',NULL,37,NULL,'301','2010-07-14 21:12:28'),('/transmisores/ebc-406ap/add-a-review',2,1,'product_reviews_write',NULL,37,NULL,'301','2010-07-14 21:12:28'),('/transmisores/ebc-406ap/tell-a-friend',2,1,'tell_a_friend',NULL,37,NULL,'301','2010-07-14 21:12:28'),('/transmitters/ebc-406ap',1,1,'product_info',NULL,37,NULL,'301','2010-07-14 21:12:28'),('/transmitters/ebc-406ap/reviews',1,1,'product_reviews',NULL,37,NULL,'301','2010-07-14 21:12:28'),('/transmitters/ebc-406ap/review',1,1,'product_reviews_info',NULL,37,NULL,'301','2010-07-14 21:12:28'),('/transmitters/ebc-406ap/add-a-review',1,1,'product_reviews_write',NULL,37,NULL,'301','2010-07-14 21:12:28'),('/transmitters/ebc-406ap/tell-a-friend',1,1,'tell_a_friend',NULL,37,NULL,'301','2010-07-14 21:12:28'),('/transmisores/ebc-502',2,1,'product_info',NULL,35,NULL,'301','2010-07-14 21:12:44'),('/transmisores/ebc-502/reviews',2,1,'product_reviews',NULL,35,NULL,'301','2010-07-14 21:12:44'),('/transmisores/ebc-502/review',2,1,'product_reviews_info',NULL,35,NULL,'301','2010-07-14 21:12:44'),('/transmisores/ebc-502/add-a-review',2,1,'product_reviews_write',NULL,35,NULL,'301','2010-07-14 21:12:44'),('/transmisores/ebc-502/tell-a-friend',2,1,'tell_a_friend',NULL,35,NULL,'301','2010-07-14 21:12:44'),('/transmitters/ebc-502',1,1,'product_info',NULL,35,NULL,'301','2010-07-14 21:12:44'),('/transmitters/ebc-502/reviews',1,1,'product_reviews',NULL,35,NULL,'301','2010-07-14 21:12:44'),('/transmitters/ebc-502/review',1,1,'product_reviews_info',NULL,35,NULL,'301','2010-07-14 21:12:44'),('/transmitters/ebc-502/add-a-review',1,1,'product_reviews_write',NULL,35,NULL,'301','2010-07-14 21:12:44'),('/transmitters/ebc-502/tell-a-friend',1,1,'tell_a_friend',NULL,35,NULL,'301','2010-07-14 21:12:44'),('/raciones-de-comidas-y-agua/racion-del-alimento-de-la-emergencia-de-3682-kcal',2,1,'product_info',NULL,48,NULL,'301','2010-07-14 21:13:29'),('/raciones-de-comidas-y-agua/racion-del-alimento-de-la-emergencia-de-3682-kcal/reviews',2,1,'product_reviews',NULL,48,NULL,'301','2010-07-14 21:13:29'),('/raciones-de-comidas-y-agua/racion-del-alimento-de-la-emergencia-de-3682-kcal/review',2,1,'product_reviews_info',NULL,48,NULL,'301','2010-07-14 21:13:29'),('/raciones-de-comidas-y-agua/racion-del-alimento-de-la-emergencia-de-3682-kcal/add-a-review',2,1,'product_reviews_write',NULL,48,NULL,'301','2010-07-14 21:13:29'),('/raciones-de-comidas-y-agua/racion-del-alimento-de-la-emergencia-de-3682-kcal/tell-a-friend',2,1,'tell_a_friend',NULL,48,NULL,'301','2010-07-14 21:13:29'),('/food-water-rations/3682-kcal-emergency-food-ration',1,1,'product_info',NULL,48,NULL,'301','2010-07-14 21:13:29'),('/food-water-rations/3682-kcal-emergency-food-ration/reviews',1,1,'product_reviews',NULL,48,NULL,'301','2010-07-14 21:13:29'),('/food-water-rations/3682-kcal-emergency-food-ration/review',1,1,'product_reviews_info',NULL,48,NULL,'301','2010-07-14 21:13:29'),('/food-water-rations/3682-kcal-emergency-food-ration/add-a-review',1,1,'product_reviews_write',NULL,48,NULL,'301','2010-07-14 21:13:29'),('/food-water-rations/3682-kcal-emergency-food-ration/tell-a-friend',1,1,'tell_a_friend',NULL,48,NULL,'301','2010-07-14 21:13:29'),('/raciones-de-comidas-y-agua/nueva-barra-de-energia-del-milenio',2,1,'product_info',NULL,49,NULL,'301','2010-07-14 21:13:47'),('/raciones-de-comidas-y-agua/nueva-barra-de-energia-del-milenio/reviews',2,1,'product_reviews',NULL,49,NULL,'301','2010-07-14 21:13:47'),('/raciones-de-comidas-y-agua/nueva-barra-de-energia-del-milenio/review',2,1,'product_reviews_info',NULL,49,NULL,'301','2010-07-14 21:13:47'),('/raciones-de-comidas-y-agua/nueva-barra-de-energia-del-milenio/add-a-review',2,1,'product_reviews_write',NULL,49,NULL,'301','2010-07-14 21:13:47'),('/raciones-de-comidas-y-agua/nueva-barra-de-energia-del-milenio/tell-a-friend',2,1,'tell_a_friend',NULL,49,NULL,'301','2010-07-14 21:13:47'),('/food-water-rations/new-millenium-energy-bar',1,1,'product_info',NULL,49,NULL,'301','2010-07-14 21:13:47'),('/food-water-rations/new-millenium-energy-bar/reviews',1,1,'product_reviews',NULL,49,NULL,'301','2010-07-14 21:13:47'),('/food-water-rations/new-millenium-energy-bar/review',1,1,'product_reviews_info',NULL,49,NULL,'301','2010-07-14 21:13:47'),('/food-water-rations/new-millenium-energy-bar/add-a-review',1,1,'product_reviews_write',NULL,49,NULL,'301','2010-07-14 21:13:47'),('/food-water-rations/new-millenium-energy-bar/tell-a-friend',1,1,'tell_a_friend',NULL,49,NULL,'301','2010-07-14 21:13:47'),('/raciones-de-comidas-y-agua/agua-potable-purificada-emergencia',2,1,'product_info',NULL,46,NULL,'301','2010-07-14 21:14:01'),('/raciones-de-comidas-y-agua/agua-potable-purificada-emergencia/reviews',2,1,'product_reviews',NULL,46,NULL,'301','2010-07-14 21:14:01'),('/raciones-de-comidas-y-agua/agua-potable-purificada-emergencia/review',2,1,'product_reviews_info',NULL,46,NULL,'301','2010-07-14 21:14:01'),('/raciones-de-comidas-y-agua/agua-potable-purificada-emergencia/add-a-review',2,1,'product_reviews_write',NULL,46,NULL,'301','2010-07-14 21:14:01'),('/raciones-de-comidas-y-agua/agua-potable-purificada-emergencia/tell-a-friend',2,1,'tell_a_friend',NULL,46,NULL,'301','2010-07-14 21:14:01'),('/food-water-rations/purified-drinking-water',1,1,'product_info',NULL,46,NULL,'301','2010-07-14 21:14:01'),('/food-water-rations/purified-drinking-water/reviews',1,1,'product_reviews',NULL,46,NULL,'301','2010-07-14 21:14:01'),('/food-water-rations/purified-drinking-water/review',1,1,'product_reviews_info',NULL,46,NULL,'301','2010-07-14 21:14:01'),('/food-water-rations/purified-drinking-water/add-a-review',1,1,'product_reviews_write',NULL,46,NULL,'301','2010-07-14 21:14:01'),('/food-water-rations/purified-drinking-water/tell-a-friend',1,1,'tell_a_friend',NULL,46,NULL,'301','2010-07-14 21:14:01'),('/raciones-de-comidas-y-agua/paquete-del-alimento-de-la-supervivencia',2,1,'product_info',NULL,47,NULL,'301','2010-07-14 21:14:12'),('/raciones-de-comidas-y-agua/paquete-del-alimento-de-la-supervivencia/reviews',2,1,'product_reviews',NULL,47,NULL,'301','2010-07-14 21:14:12'),('/raciones-de-comidas-y-agua/paquete-del-alimento-de-la-supervivencia/review',2,1,'product_reviews_info',NULL,47,NULL,'301','2010-07-14 21:14:12'),('/raciones-de-comidas-y-agua/paquete-del-alimento-de-la-supervivencia/add-a-review',2,1,'product_reviews_write',NULL,47,NULL,'301','2010-07-14 21:14:12'),('/raciones-de-comidas-y-agua/paquete-del-alimento-de-la-supervivencia/tell-a-friend',2,1,'tell_a_friend',NULL,47,NULL,'301','2010-07-14 21:14:12'),('/food-water-rations/sos-survival-food-pack',1,1,'product_info',NULL,47,NULL,'301','2010-07-14 21:14:12'),('/food-water-rations/sos-survival-food-pack/reviews',1,1,'product_reviews',NULL,47,NULL,'301','2010-07-14 21:14:12'),('/food-water-rations/sos-survival-food-pack/review',1,1,'product_reviews_info',NULL,47,NULL,'301','2010-07-14 21:14:12'),('/food-water-rations/sos-survival-food-pack/add-a-review',1,1,'product_reviews_write',NULL,47,NULL,'301','2010-07-14 21:14:12'),('/food-water-rations/sos-survival-food-pack/tell-a-friend',1,1,'tell_a_friend',NULL,47,NULL,'301','2010-07-14 21:14:12'),('/kits-de-supervivencia-marina-y-aviacion/de-lujo-far-135',2,1,'product_info',NULL,40,NULL,'301','2010-07-14 21:14:32'),('/kits-de-supervivencia-marina-y-aviacion/de-lujo-far-135/reviews',2,1,'product_reviews',NULL,40,NULL,'301','2010-07-14 21:14:32'),('/kits-de-supervivencia-marina-y-aviacion/de-lujo-far-135/review',2,1,'product_reviews_info',NULL,40,NULL,'301','2010-07-14 21:14:32'),('/kits-de-supervivencia-marina-y-aviacion/de-lujo-far-135/add-a-review',2,1,'product_reviews_write',NULL,40,NULL,'301','2010-07-14 21:14:32'),('/kits-de-supervivencia-marina-y-aviacion/de-lujo-far-135/tell-a-friend',2,1,'tell_a_friend',NULL,40,NULL,'301','2010-07-14 21:14:32'),('/survival-kits-marine-aviation/deluxe-far-135',1,1,'product_info',NULL,40,NULL,'301','2010-07-14 21:14:32'),('/survival-kits-marine-aviation/deluxe-far-135/reviews',1,1,'product_reviews',NULL,40,NULL,'301','2010-07-14 21:14:32'),('/survival-kits-marine-aviation/deluxe-far-135/review',1,1,'product_reviews_info',NULL,40,NULL,'301','2010-07-14 21:14:32'),('/survival-kits-marine-aviation/deluxe-far-135/add-a-review',1,1,'product_reviews_write',NULL,40,NULL,'301','2010-07-14 21:14:32'),('/survival-kits-marine-aviation/deluxe-far-135/tell-a-friend',1,1,'tell_a_friend',NULL,40,NULL,'301','2010-07-14 21:14:32'),('/kits-de-supervivencia-marina-y-aviacion/jungle-survival-kit',2,1,'product_info',NULL,71,NULL,'301','2010-07-14 21:14:46'),('/kits-de-supervivencia-marina-y-aviacion/jungle-survival-kit/reviews',2,1,'product_reviews',NULL,71,NULL,'301','2010-07-14 21:14:46'),('/kits-de-supervivencia-marina-y-aviacion/jungle-survival-kit/review',2,1,'product_reviews_info',NULL,71,NULL,'301','2010-07-14 21:14:46'),('/kits-de-supervivencia-marina-y-aviacion/jungle-survival-kit/add-a-review',2,1,'product_reviews_write',NULL,71,NULL,'301','2010-07-14 21:14:46'),('/kits-de-supervivencia-marina-y-aviacion/jungle-survival-kit/tell-a-friend',2,1,'tell_a_friend',NULL,71,NULL,'301','2010-07-14 21:14:46'),('/survival-kits-marine-aviation/jungle-survival-kit',1,1,'product_info',NULL,71,NULL,'301','2010-07-14 21:14:46'),('/survival-kits-marine-aviation/jungle-survival-kit/reviews',1,1,'product_reviews',NULL,71,NULL,'301','2010-07-14 21:14:46'),('/survival-kits-marine-aviation/jungle-survival-kit/review',1,1,'product_reviews_info',NULL,71,NULL,'301','2010-07-14 21:14:46'),('/survival-kits-marine-aviation/jungle-survival-kit/add-a-review',1,1,'product_reviews_write',NULL,71,NULL,'301','2010-07-14 21:14:46'),('/survival-kits-marine-aviation/jungle-survival-kit/tell-a-friend',1,1,'tell_a_friend',NULL,71,NULL,'301','2010-07-14 21:14:46'),('/kits-de-supervivencia-marina-y-aviacion/kit-estandar-far-91',2,1,'product_info',NULL,38,NULL,'301','2010-07-14 21:14:58'),('/kits-de-supervivencia-marina-y-aviacion/kit-estandar-far-91/reviews',2,1,'product_reviews',NULL,38,NULL,'301','2010-07-14 21:14:58'),('/kits-de-supervivencia-marina-y-aviacion/kit-estandar-far-91/review',2,1,'product_reviews_info',NULL,38,NULL,'301','2010-07-14 21:14:58'),('/kits-de-supervivencia-marina-y-aviacion/kit-estandar-far-91/add-a-review',2,1,'product_reviews_write',NULL,38,NULL,'301','2010-07-14 21:14:58'),('/kits-de-supervivencia-marina-y-aviacion/kit-estandar-far-91/tell-a-friend',2,1,'tell_a_friend',NULL,38,NULL,'301','2010-07-14 21:14:58'),('/survival-kits-marine-aviation/standard-kit-far-91',1,1,'product_info',NULL,38,NULL,'301','2010-07-14 21:14:58'),('/survival-kits-marine-aviation/standard-kit-far-91/reviews',1,1,'product_reviews',NULL,38,NULL,'301','2010-07-14 21:14:58'),('/survival-kits-marine-aviation/standard-kit-far-91/review',1,1,'product_reviews_info',NULL,38,NULL,'301','2010-07-14 21:14:58'),('/survival-kits-marine-aviation/standard-kit-far-91/add-a-review',1,1,'product_reviews_write',NULL,38,NULL,'301','2010-07-14 21:14:58'),('/survival-kits-marine-aviation/standard-kit-far-91/tell-a-friend',1,1,'tell_a_friend',NULL,38,NULL,'301','2010-07-14 21:14:58'),('/kits-de-supervivencia-marina-y-aviacion/kit-estandar-mas-far-121',2,1,'product_info',NULL,39,NULL,'301','2010-07-14 21:15:10'),('/kits-de-supervivencia-marina-y-aviacion/kit-estandar-mas-far-121/reviews',2,1,'product_reviews',NULL,39,NULL,'301','2010-07-14 21:15:10'),('/kits-de-supervivencia-marina-y-aviacion/kit-estandar-mas-far-121/review',2,1,'product_reviews_info',NULL,39,NULL,'301','2010-07-14 21:15:10'),('/kits-de-supervivencia-marina-y-aviacion/kit-estandar-mas-far-121/add-a-review',2,1,'product_reviews_write',NULL,39,NULL,'301','2010-07-14 21:15:10'),('/kits-de-supervivencia-marina-y-aviacion/kit-estandar-mas-far-121/tell-a-friend',2,1,'tell_a_friend',NULL,39,NULL,'301','2010-07-14 21:15:10'),('/survival-kits-marine-aviation/standard-plus-kit-far-121',1,1,'product_info',NULL,39,NULL,'301','2010-07-14 21:15:10'),('/survival-kits-marine-aviation/standard-plus-kit-far-121/reviews',1,1,'product_reviews',NULL,39,NULL,'301','2010-07-14 21:15:10'),('/survival-kits-marine-aviation/standard-plus-kit-far-121/review',1,1,'product_reviews_info',NULL,39,NULL,'301','2010-07-14 21:15:10'),('/survival-kits-marine-aviation/standard-plus-kit-far-121/add-a-review',1,1,'product_reviews_write',NULL,39,NULL,'301','2010-07-14 21:15:10'),('/survival-kits-marine-aviation/standard-plus-kit-far-121/tell-a-friend',1,1,'tell_a_friend',NULL,39,NULL,'301','2010-07-14 21:15:10'),('/kits-de-supervivencia-casero-y-oficina/bolso-de-totalizador-del-kit-de-supervivencia',2,1,'product_info',NULL,57,NULL,'301','2010-07-14 21:15:37'),('/kits-de-supervivencia-casero-y-oficina/bolso-de-totalizador-del-kit-de-supervivencia/reviews',2,1,'product_reviews',NULL,57,NULL,'301','2010-07-14 21:15:37'),('/kits-de-supervivencia-casero-y-oficina/bolso-de-totalizador-del-kit-de-supervivencia/review',2,1,'product_reviews_info',NULL,57,NULL,'301','2010-07-14 21:15:37'),('/kits-de-supervivencia-casero-y-oficina/bolso-de-totalizador-del-kit-de-supervivencia/add-a-review',2,1,'product_reviews_write',NULL,57,NULL,'301','2010-07-14 21:15:37'),('/kits-de-supervivencia-casero-y-oficina/bolso-de-totalizador-del-kit-de-supervivencia/tell-a-friend',2,1,'tell_a_friend',NULL,57,NULL,'301','2010-07-14 21:15:37'),('/survival-kits-home-office/survival-kit-tote-bag',1,1,'product_info',NULL,57,NULL,'301','2010-07-14 21:15:37'),('/survival-kits-home-office/survival-kit-tote-bag/reviews',1,1,'product_reviews',NULL,57,NULL,'301','2010-07-14 21:15:37'),('/survival-kits-home-office/survival-kit-tote-bag/review',1,1,'product_reviews_info',NULL,57,NULL,'301','2010-07-14 21:15:37'),('/survival-kits-home-office/survival-kit-tote-bag/add-a-review',1,1,'product_reviews_write',NULL,57,NULL,'301','2010-07-14 21:15:37'),('/survival-kits-home-office/survival-kit-tote-bag/tell-a-friend',1,1,'tell_a_friend',NULL,57,NULL,'301','2010-07-14 21:15:37'),('/kits-de-supervivencia-casero-y-oficina/bolso-de-totalizador-del-kit-de-supervivencia-para-los-ninos',2,1,'product_info',NULL,58,NULL,'301','2010-07-14 21:15:57'),('/kits-de-supervivencia-casero-y-oficina/bolso-de-totalizador-del-kit-de-supervivencia-para-los-ninos/reviews',2,1,'product_reviews',NULL,58,NULL,'301','2010-07-14 21:15:57'),('/kits-de-supervivencia-casero-y-oficina/bolso-de-totalizador-del-kit-de-supervivencia-para-los-ninos/review',2,1,'product_reviews_info',NULL,58,NULL,'301','2010-07-14 21:15:57'),('/kits-de-supervivencia-casero-y-oficina/bolso-de-totalizador-del-kit-de-supervivencia-para-los-ninos/add-a-review',2,1,'product_reviews_write',NULL,58,NULL,'301','2010-07-14 21:15:57'),('/kits-de-supervivencia-casero-y-oficina/bolso-de-totalizador-del-kit-de-supervivencia-para-los-ninos/tell-a-friend',2,1,'tell_a_friend',NULL,58,NULL,'301','2010-07-14 21:15:57'),('/survival-kits-home-office/survival-kit-tote-bag-for-children',1,1,'product_info',NULL,58,NULL,'301','2010-07-14 21:15:57'),('/survival-kits-home-office/survival-kit-tote-bag-for-children/reviews',1,1,'product_reviews',NULL,58,NULL,'301','2010-07-14 21:15:57'),('/survival-kits-home-office/survival-kit-tote-bag-for-children/review',1,1,'product_reviews_info',NULL,58,NULL,'301','2010-07-14 21:15:57'),('/survival-kits-home-office/survival-kit-tote-bag-for-children/add-a-review',1,1,'product_reviews_write',NULL,58,NULL,'301','2010-07-14 21:15:57'),('/survival-kits-home-office/survival-kit-tote-bag-for-children/tell-a-friend',1,1,'tell_a_friend',NULL,58,NULL,'301','2010-07-14 21:15:57'),('/kits-de-supervivencia-casero-y-oficina/kit-de-supervivencia-mini',2,1,'product_info',NULL,59,NULL,'301','2010-07-14 21:16:11'),('/kits-de-supervivencia-casero-y-oficina/kit-de-supervivencia-mini/reviews',2,1,'product_reviews',NULL,59,NULL,'301','2010-07-14 21:16:11'),('/kits-de-supervivencia-casero-y-oficina/kit-de-supervivencia-mini/review',2,1,'product_reviews_info',NULL,59,NULL,'301','2010-07-14 21:16:11'),('/kits-de-supervivencia-casero-y-oficina/kit-de-supervivencia-mini/add-a-review',2,1,'product_reviews_write',NULL,59,NULL,'301','2010-07-14 21:16:11'),('/kits-de-supervivencia-casero-y-oficina/kit-de-supervivencia-mini/tell-a-friend',2,1,'tell_a_friend',NULL,59,NULL,'301','2010-07-14 21:16:11'),('/survival-kits-home-office/survival-kit-mini',1,1,'product_info',NULL,59,NULL,'301','2010-07-14 21:16:11'),('/survival-kits-home-office/survival-kit-mini/reviews',1,1,'product_reviews',NULL,59,NULL,'301','2010-07-14 21:16:11'),('/survival-kits-home-office/survival-kit-mini/review',1,1,'product_reviews_info',NULL,59,NULL,'301','2010-07-14 21:16:11'),('/survival-kits-home-office/survival-kit-mini/add-a-review',1,1,'product_reviews_write',NULL,59,NULL,'301','2010-07-14 21:16:11'),('/survival-kits-home-office/survival-kit-mini/tell-a-friend',1,1,'tell_a_friend',NULL,59,NULL,'301','2010-07-14 21:16:11'),('/kits-de-supervivencia-casero-y-oficina/kit-de-supervivenciamini-para-los-ninos',2,1,'product_info',NULL,60,NULL,'301','2010-07-14 21:16:24'),('/kits-de-supervivencia-casero-y-oficina/kit-de-supervivenciamini-para-los-ninos/reviews',2,1,'product_reviews',NULL,60,NULL,'301','2010-07-14 21:16:24'),('/kits-de-supervivencia-casero-y-oficina/kit-de-supervivenciamini-para-los-ninos/review',2,1,'product_reviews_info',NULL,60,NULL,'301','2010-07-14 21:16:24'),('/kits-de-supervivencia-casero-y-oficina/kit-de-supervivenciamini-para-los-ninos/add-a-review',2,1,'product_reviews_write',NULL,60,NULL,'301','2010-07-14 21:16:24'),('/kits-de-supervivencia-casero-y-oficina/kit-de-supervivenciamini-para-los-ninos/tell-a-friend',2,1,'tell_a_friend',NULL,60,NULL,'301','2010-07-14 21:16:24'),('/survival-kits-home-office/survival-kit-mini-for-children',1,1,'product_info',NULL,60,NULL,'301','2010-07-14 21:16:24'),('/survival-kits-home-office/survival-kit-mini-for-children/reviews',1,1,'product_reviews',NULL,60,NULL,'301','2010-07-14 21:16:24'),('/survival-kits-home-office/survival-kit-mini-for-children/review',1,1,'product_reviews_info',NULL,60,NULL,'301','2010-07-14 21:16:24'),('/survival-kits-home-office/survival-kit-mini-for-children/add-a-review',1,1,'product_reviews_write',NULL,60,NULL,'301','2010-07-14 21:16:24'),('/survival-kits-home-office/survival-kit-mini-for-children/tell-a-friend',1,1,'tell_a_friend',NULL,60,NULL,'301','2010-07-14 21:16:24'),('/kits-de-supervivencia-casero-y-oficina/kit-de-supervivencia-de-lujo',2,1,'product_info',NULL,52,NULL,'301','2010-07-14 21:16:38'),('/kits-de-supervivencia-casero-y-oficina/kit-de-supervivencia-de-lujo/reviews',2,1,'product_reviews',NULL,52,NULL,'301','2010-07-14 21:16:38'),('/kits-de-supervivencia-casero-y-oficina/kit-de-supervivencia-de-lujo/review',2,1,'product_reviews_info',NULL,52,NULL,'301','2010-07-14 21:16:38'),('/kits-de-supervivencia-casero-y-oficina/kit-de-supervivencia-de-lujo/add-a-review',2,1,'product_reviews_write',NULL,52,NULL,'301','2010-07-14 21:16:38'),('/kits-de-supervivencia-casero-y-oficina/kit-de-supervivencia-de-lujo/tell-a-friend',2,1,'tell_a_friend',NULL,52,NULL,'301','2010-07-14 21:16:38'),('/survival-kits-home-office/deluxe-survival-kit',1,1,'product_info',NULL,52,NULL,'301','2010-07-14 21:16:38'),('/survival-kits-home-office/deluxe-survival-kit/reviews',1,1,'product_reviews',NULL,52,NULL,'301','2010-07-14 21:16:38'),('/survival-kits-home-office/deluxe-survival-kit/review',1,1,'product_reviews_info',NULL,52,NULL,'301','2010-07-14 21:16:38'),('/survival-kits-home-office/deluxe-survival-kit/add-a-review',1,1,'product_reviews_write',NULL,52,NULL,'301','2010-07-14 21:16:38'),('/survival-kits-home-office/deluxe-survival-kit/tell-a-friend',1,1,'tell_a_friend',NULL,52,NULL,'301','2010-07-14 21:16:38'),('/kits-de-supervivencia-casero-y-oficina/kit-de-lujo-de-2-personas',2,1,'product_info',NULL,54,NULL,'301','2010-07-14 21:16:53'),('/kits-de-supervivencia-casero-y-oficina/kit-de-lujo-de-2-personas/reviews',2,1,'product_reviews',NULL,54,NULL,'301','2010-07-14 21:16:53'),('/kits-de-supervivencia-casero-y-oficina/kit-de-lujo-de-2-personas/review',2,1,'product_reviews_info',NULL,54,NULL,'301','2010-07-14 21:16:53'),('/kits-de-supervivencia-casero-y-oficina/kit-de-lujo-de-2-personas/add-a-review',2,1,'product_reviews_write',NULL,54,NULL,'301','2010-07-14 21:16:53'),('/kits-de-supervivencia-casero-y-oficina/kit-de-lujo-de-2-personas/tell-a-friend',2,1,'tell_a_friend',NULL,54,NULL,'301','2010-07-14 21:16:53'),('/survival-kits-home-office/2-person-deluxe-kit',1,1,'product_info',NULL,54,NULL,'301','2010-07-14 21:16:53'),('/survival-kits-home-office/2-person-deluxe-kit/reviews',1,1,'product_reviews',NULL,54,NULL,'301','2010-07-14 21:16:53'),('/survival-kits-home-office/2-person-deluxe-kit/review',1,1,'product_reviews_info',NULL,54,NULL,'301','2010-07-14 21:16:53'),('/survival-kits-home-office/2-person-deluxe-kit/add-a-review',1,1,'product_reviews_write',NULL,54,NULL,'301','2010-07-14 21:16:53'),('/survival-kits-home-office/2-person-deluxe-kit/tell-a-friend',1,1,'tell_a_friend',NULL,54,NULL,'301','2010-07-14 21:16:53'),('/kits-de-supervivencia-casero-y-oficina/kiit-de-supervivencia-para-los-ninos',2,1,'product_info',NULL,53,NULL,'301','2010-07-14 21:17:09'),('/kits-de-supervivencia-casero-y-oficina/kiit-de-supervivencia-para-los-ninos/reviews',2,1,'product_reviews',NULL,53,NULL,'301','2010-07-14 21:17:09'),('/kits-de-supervivencia-casero-y-oficina/kiit-de-supervivencia-para-los-ninos/review',2,1,'product_reviews_info',NULL,53,NULL,'301','2010-07-14 21:17:09'),('/kits-de-supervivencia-casero-y-oficina/kiit-de-supervivencia-para-los-ninos/add-a-review',2,1,'product_reviews_write',NULL,53,NULL,'301','2010-07-14 21:17:09'),('/kits-de-supervivencia-casero-y-oficina/kiit-de-supervivencia-para-los-ninos/tell-a-friend',2,1,'tell_a_friend',NULL,53,NULL,'301','2010-07-14 21:17:09'),('/survival-kits-home-office/childrens-survival-kit',1,1,'product_info',NULL,53,NULL,'301','2010-07-14 21:17:09'),('/survival-kits-home-office/childrens-survival-kit/reviews',1,1,'product_reviews',NULL,53,NULL,'301','2010-07-14 21:17:09'),('/survival-kits-home-office/childrens-survival-kit/review',1,1,'product_reviews_info',NULL,53,NULL,'301','2010-07-14 21:17:09'),('/survival-kits-home-office/childrens-survival-kit/add-a-review',1,1,'product_reviews_write',NULL,53,NULL,'301','2010-07-14 21:17:09'),('/survival-kits-home-office/childrens-survival-kit/tell-a-friend',1,1,'tell_a_friend',NULL,53,NULL,'301','2010-07-14 21:17:09'),('/kits-de-supervivencia-casero-y-oficina/kit-de-supervivencia-de-la-oficina-de-5-personas',2,1,'product_info',NULL,55,NULL,'301','2010-07-14 21:17:24'),('/kits-de-supervivencia-casero-y-oficina/kit-de-supervivencia-de-la-oficina-de-5-personas/reviews',2,1,'product_reviews',NULL,55,NULL,'301','2010-07-14 21:17:24'),('/kits-de-supervivencia-casero-y-oficina/kit-de-supervivencia-de-la-oficina-de-5-personas/review',2,1,'product_reviews_info',NULL,55,NULL,'301','2010-07-14 21:17:24'),('/kits-de-supervivencia-casero-y-oficina/kit-de-supervivencia-de-la-oficina-de-5-personas/add-a-review',2,1,'product_reviews_write',NULL,55,NULL,'301','2010-07-14 21:17:24'),('/kits-de-supervivencia-casero-y-oficina/kit-de-supervivencia-de-la-oficina-de-5-personas/tell-a-friend',2,1,'tell_a_friend',NULL,55,NULL,'301','2010-07-14 21:17:24'),('/survival-kits-home-office/5-person-office-survival-kit',1,1,'product_info',NULL,55,NULL,'301','2010-07-14 21:17:24'),('/survival-kits-home-office/5-person-office-survival-kit/reviews',1,1,'product_reviews',NULL,55,NULL,'301','2010-07-14 21:17:24'),('/survival-kits-home-office/5-person-office-survival-kit/review',1,1,'product_reviews_info',NULL,55,NULL,'301','2010-07-14 21:17:24'),('/survival-kits-home-office/5-person-office-survival-kit/add-a-review',1,1,'product_reviews_write',NULL,55,NULL,'301','2010-07-14 21:17:24'),('/survival-kits-home-office/5-person-office-survival-kit/tell-a-friend',1,1,'tell_a_friend',NULL,55,NULL,'301','2010-07-14 21:17:24'),('/kits-de-supervivencia-casero-y-oficina/kit-de-supervivencia-de-la-oficina-de-10-personas',2,1,'product_info',NULL,56,NULL,'301','2010-07-14 21:17:38'),('/kits-de-supervivencia-casero-y-oficina/kit-de-supervivencia-de-la-oficina-de-10-personas/reviews',2,1,'product_reviews',NULL,56,NULL,'301','2010-07-14 21:17:38'),('/kits-de-supervivencia-casero-y-oficina/kit-de-supervivencia-de-la-oficina-de-10-personas/review',2,1,'product_reviews_info',NULL,56,NULL,'301','2010-07-14 21:17:38'),('/kits-de-supervivencia-casero-y-oficina/kit-de-supervivencia-de-la-oficina-de-10-personas/add-a-review',2,1,'product_reviews_write',NULL,56,NULL,'301','2010-07-14 21:17:38'),('/kits-de-supervivencia-casero-y-oficina/kit-de-supervivencia-de-la-oficina-de-10-personas/tell-a-friend',2,1,'tell_a_friend',NULL,56,NULL,'301','2010-07-14 21:17:38'),('/survival-kits-home-office/10-person-office-survival-kit',1,1,'product_info',NULL,56,NULL,'301','2010-07-14 21:17:38'),('/survival-kits-home-office/10-person-office-survival-kit/reviews',1,1,'product_reviews',NULL,56,NULL,'301','2010-07-14 21:17:38'),('/survival-kits-home-office/10-person-office-survival-kit/review',1,1,'product_reviews_info',NULL,56,NULL,'301','2010-07-14 21:17:38'),('/survival-kits-home-office/10-person-office-survival-kit/add-a-review',1,1,'product_reviews_write',NULL,56,NULL,'301','2010-07-14 21:17:38'),('/survival-kits-home-office/10-person-office-survival-kit/tell-a-friend',1,1,'tell_a_friend',NULL,56,NULL,'301','2010-07-14 21:17:38'),('/equipo-de-seguridad/juego-de-inmersion',2,1,'product_info',NULL,41,NULL,'301','2010-07-14 21:17:58'),('/equipo-de-seguridad/juego-de-inmersion/reviews',2,1,'product_reviews',NULL,41,NULL,'301','2010-07-14 21:17:58'),('/equipo-de-seguridad/juego-de-inmersion/review',2,1,'product_reviews_info',NULL,41,NULL,'301','2010-07-14 21:17:58'),('/equipo-de-seguridad/juego-de-inmersion/add-a-review',2,1,'product_reviews_write',NULL,41,NULL,'301','2010-07-14 21:17:58'),('/equipo-de-seguridad/juego-de-inmersion/tell-a-friend',2,1,'tell_a_friend',NULL,41,NULL,'301','2010-07-14 21:17:58'),('/safety-equipment/immersion-suit',1,1,'product_info',NULL,41,NULL,'301','2010-07-14 21:17:58'),('/safety-equipment/immersion-suit/reviews',1,1,'product_reviews',NULL,41,NULL,'301','2010-07-14 21:17:58'),('/safety-equipment/immersion-suit/review',1,1,'product_reviews_info',NULL,41,NULL,'301','2010-07-14 21:17:58'),('/safety-equipment/immersion-suit/add-a-review',1,1,'product_reviews_write',NULL,41,NULL,'301','2010-07-14 21:17:58'),('/safety-equipment/immersion-suit/tell-a-friend',1,1,'tell_a_friend',NULL,41,NULL,'301','2010-07-14 21:17:58'),('/equipo-de-seguridad/del-fabricante-del-agua-survivor-06',2,1,'product_info',NULL,44,NULL,'301','2010-07-14 21:18:10'),('/equipo-de-seguridad/del-fabricante-del-agua-survivor-06/reviews',2,1,'product_reviews',NULL,44,NULL,'301','2010-07-14 21:18:10'),('/equipo-de-seguridad/del-fabricante-del-agua-survivor-06/review',2,1,'product_reviews_info',NULL,44,NULL,'301','2010-07-14 21:18:10'),('/equipo-de-seguridad/del-fabricante-del-agua-survivor-06/add-a-review',2,1,'product_reviews_write',NULL,44,NULL,'301','2010-07-14 21:18:10'),('/equipo-de-seguridad/del-fabricante-del-agua-survivor-06/tell-a-friend',2,1,'tell_a_friend',NULL,44,NULL,'301','2010-07-14 21:18:10'),('/safety-equipment/watermaker-survivor-06',1,1,'product_info',NULL,44,NULL,'301','2010-07-14 21:18:10'),('/safety-equipment/watermaker-survivor-06/reviews',1,1,'product_reviews',NULL,44,NULL,'301','2010-07-14 21:18:10'),('/safety-equipment/watermaker-survivor-06/review',1,1,'product_reviews_info',NULL,44,NULL,'301','2010-07-14 21:18:10'),('/safety-equipment/watermaker-survivor-06/add-a-review',1,1,'product_reviews_write',NULL,44,NULL,'301','2010-07-14 21:18:10'),('/safety-equipment/watermaker-survivor-06/tell-a-friend',1,1,'tell_a_friend',NULL,44,NULL,'301','2010-07-14 21:18:10'),('/linternas/24-palillos-brillantes-de-la-emergencia-de-la-hora',2,1,'product_info',NULL,69,NULL,'301','2010-07-14 21:18:30'),('/linternas/24-palillos-brillantes-de-la-emergencia-de-la-hora/reviews',2,1,'product_reviews',NULL,69,NULL,'301','2010-07-14 21:18:30'),('/linternas/24-palillos-brillantes-de-la-emergencia-de-la-hora/review',2,1,'product_reviews_info',NULL,69,NULL,'301','2010-07-14 21:18:30'),('/linternas/24-palillos-brillantes-de-la-emergencia-de-la-hora/add-a-review',2,1,'product_reviews_write',NULL,69,NULL,'301','2010-07-14 21:18:30'),('/linternas/24-palillos-brillantes-de-la-emergencia-de-la-hora/tell-a-friend',2,1,'tell_a_friend',NULL,69,NULL,'301','2010-07-14 21:18:30'),('/flashlights-lanterns-light-sticks/24-hour-emergency-bright-stick',1,1,'product_info',NULL,69,NULL,'301','2010-07-14 21:18:30'),('/flashlights-lanterns-light-sticks/24-hour-emergency-bright-stick/reviews',1,1,'product_reviews',NULL,69,NULL,'301','2010-07-14 21:18:30'),('/flashlights-lanterns-light-sticks/24-hour-emergency-bright-stick/review',1,1,'product_reviews_info',NULL,69,NULL,'301','2010-07-14 21:18:30'),('/flashlights-lanterns-light-sticks/24-hour-emergency-bright-stick/add-a-review',1,1,'product_reviews_write',NULL,69,NULL,'301','2010-07-14 21:18:30'),('/flashlights-lanterns-light-sticks/24-hour-emergency-bright-stick/tell-a-friend',1,1,'tell_a_friend',NULL,69,NULL,'301','2010-07-14 21:18:30'),('/linternas/linterna-del-apreton-de-3-led',2,1,'product_info',NULL,68,NULL,'301','2010-07-14 21:18:51'),('/linternas/linterna-del-apreton-de-3-led/reviews',2,1,'product_reviews',NULL,68,NULL,'301','2010-07-14 21:18:51'),('/linternas/linterna-del-apreton-de-3-led/review',2,1,'product_reviews_info',NULL,68,NULL,'301','2010-07-14 21:18:51'),('/linternas/linterna-del-apreton-de-3-led/add-a-review',2,1,'product_reviews_write',NULL,68,NULL,'301','2010-07-14 21:18:51'),('/linternas/linterna-del-apreton-de-3-led/tell-a-friend',2,1,'tell_a_friend',NULL,68,NULL,'301','2010-07-14 21:18:51'),('/flashlights-lanterns-light-sticks/3-led-squeeze-flashlight',1,1,'product_info',NULL,68,NULL,'301','2010-07-14 21:18:51'),('/flashlights-lanterns-light-sticks/3-led-squeeze-flashlight/reviews',1,1,'product_reviews',NULL,68,NULL,'301','2010-07-14 21:18:51'),('/flashlights-lanterns-light-sticks/3-led-squeeze-flashlight/review',1,1,'product_reviews_info',NULL,68,NULL,'301','2010-07-14 21:18:51'),('/flashlights-lanterns-light-sticks/3-led-squeeze-flashlight/add-a-review',1,1,'product_reviews_write',NULL,68,NULL,'301','2010-07-14 21:18:51'),('/flashlights-lanterns-light-sticks/3-led-squeeze-flashlight/tell-a-friend',1,1,'tell_a_friend',NULL,68,NULL,'301','2010-07-14 21:18:51'),('/linternas/guarda-auto',2,1,'product_info',NULL,65,NULL,'301','2010-07-14 21:19:06'),('/linternas/guarda-auto/reviews',2,1,'product_reviews',NULL,65,NULL,'301','2010-07-14 21:19:06'),('/linternas/guarda-auto/review',2,1,'product_reviews_info',NULL,65,NULL,'301','2010-07-14 21:19:06'),('/linternas/guarda-auto/add-a-review',2,1,'product_reviews_write',NULL,65,NULL,'301','2010-07-14 21:19:06'),('/linternas/guarda-auto/tell-a-friend',2,1,'tell_a_friend',NULL,65,NULL,'301','2010-07-14 21:19:06'),('/flashlights-lanterns-light-sticks/auto-guardian',1,1,'product_info',NULL,65,NULL,'301','2010-07-14 21:19:06'),('/flashlights-lanterns-light-sticks/auto-guardian/reviews',1,1,'product_reviews',NULL,65,NULL,'301','2010-07-14 21:19:06'),('/flashlights-lanterns-light-sticks/auto-guardian/review',1,1,'product_reviews_info',NULL,65,NULL,'301','2010-07-14 21:19:06'),('/flashlights-lanterns-light-sticks/auto-guardian/add-a-review',1,1,'product_reviews_write',NULL,65,NULL,'301','2010-07-14 21:19:06'),('/flashlights-lanterns-light-sticks/auto-guardian/tell-a-friend',1,1,'tell_a_friend',NULL,65,NULL,'301','2010-07-14 21:19:06'),('/linternas/linterna-del-dinamo-de-la-emergencia-con-la-radio',2,1,'product_info',NULL,64,NULL,'301','2010-07-14 21:19:20'),('/linternas/linterna-del-dinamo-de-la-emergencia-con-la-radio/reviews',2,1,'product_reviews',NULL,64,NULL,'301','2010-07-14 21:19:20'),('/linternas/linterna-del-dinamo-de-la-emergencia-con-la-radio/review',2,1,'product_reviews_info',NULL,64,NULL,'301','2010-07-14 21:19:20'),('/linternas/linterna-del-dinamo-de-la-emergencia-con-la-radio/add-a-review',2,1,'product_reviews_write',NULL,64,NULL,'301','2010-07-14 21:19:20'),('/linternas/linterna-del-dinamo-de-la-emergencia-con-la-radio/tell-a-friend',2,1,'tell_a_friend',NULL,64,NULL,'301','2010-07-14 21:19:20'),('/flashlights-lanterns-light-sticks/emergency-dynamo-lantern-with-radio',1,1,'product_info',NULL,64,NULL,'301','2010-07-14 21:19:20'),('/flashlights-lanterns-light-sticks/emergency-dynamo-lantern-with-radio/reviews',1,1,'product_reviews',NULL,64,NULL,'301','2010-07-14 21:19:20'),('/flashlights-lanterns-light-sticks/emergency-dynamo-lantern-with-radio/review',1,1,'product_reviews_info',NULL,64,NULL,'301','2010-07-14 21:19:20'),('/flashlights-lanterns-light-sticks/emergency-dynamo-lantern-with-radio/add-a-review',1,1,'product_reviews_write',NULL,64,NULL,'301','2010-07-14 21:19:20'),('/flashlights-lanterns-light-sticks/emergency-dynamo-lantern-with-radio/tell-a-friend',1,1,'tell_a_friend',NULL,64,NULL,'301','2010-07-14 21:19:20'),('/linternas/sacudida-verdadera-por-siempre-linterna',2,1,'product_info',NULL,67,NULL,'301','2010-07-14 21:19:37'),('/linternas/sacudida-verdadera-por-siempre-linterna/reviews',2,1,'product_reviews',NULL,67,NULL,'301','2010-07-14 21:19:37'),('/linternas/sacudida-verdadera-por-siempre-linterna/review',2,1,'product_reviews_info',NULL,67,NULL,'301','2010-07-14 21:19:37'),('/linternas/sacudida-verdadera-por-siempre-linterna/add-a-review',2,1,'product_reviews_write',NULL,67,NULL,'301','2010-07-14 21:19:37'),('/linternas/sacudida-verdadera-por-siempre-linterna/tell-a-friend',2,1,'tell_a_friend',NULL,67,NULL,'301','2010-07-14 21:19:37'),('/flashlights-lanterns-light-sticks/real-shake-forever-flashlight',1,1,'product_info',NULL,67,NULL,'301','2010-07-14 21:19:37'),('/flashlights-lanterns-light-sticks/real-shake-forever-flashlight/reviews',1,1,'product_reviews',NULL,67,NULL,'301','2010-07-14 21:19:37'),('/flashlights-lanterns-light-sticks/real-shake-forever-flashlight/review',1,1,'product_reviews_info',NULL,67,NULL,'301','2010-07-14 21:19:37'),('/flashlights-lanterns-light-sticks/real-shake-forever-flashlight/add-a-review',1,1,'product_reviews_write',NULL,67,NULL,'301','2010-07-14 21:19:37'),('/flashlights-lanterns-light-sticks/real-shake-forever-flashlight/tell-a-friend',1,1,'tell_a_friend',NULL,67,NULL,'301','2010-07-14 21:19:37'),('/linternas/palillos-ligeros',2,1,'product_info',NULL,50,NULL,'301','2010-07-14 21:19:52'),('/linternas/palillos-ligeros/reviews',2,1,'product_reviews',NULL,50,NULL,'301','2010-07-14 21:19:52'),('/linternas/palillos-ligeros/review',2,1,'product_reviews_info',NULL,50,NULL,'301','2010-07-14 21:19:52'),('/linternas/palillos-ligeros/add-a-review',2,1,'product_reviews_write',NULL,50,NULL,'301','2010-07-14 21:19:52'),('/linternas/palillos-ligeros/tell-a-friend',2,1,'tell_a_friend',NULL,50,NULL,'301','2010-07-14 21:19:52'),('/flashlights-lanterns-light-sticks/light-sticks',1,1,'product_info',NULL,50,NULL,'301','2010-07-14 21:19:52'),('/flashlights-lanterns-light-sticks/light-sticks/reviews',1,1,'product_reviews',NULL,50,NULL,'301','2010-07-14 21:19:52'),('/flashlights-lanterns-light-sticks/light-sticks/review',1,1,'product_reviews_info',NULL,50,NULL,'301','2010-07-14 21:19:52'),('/flashlights-lanterns-light-sticks/light-sticks/add-a-review',1,1,'product_reviews_write',NULL,50,NULL,'301','2010-07-14 21:19:52'),('/flashlights-lanterns-light-sticks/light-sticks/tell-a-friend',1,1,'tell_a_friend',NULL,50,NULL,'301','2010-07-14 21:19:52'),('/linternas/linterna-accionada-solar',2,1,'product_info',NULL,66,NULL,'301','2010-07-14 21:20:22'),('/linternas/linterna-accionada-solar/reviews',2,1,'product_reviews',NULL,66,NULL,'301','2010-07-14 21:20:22'),('/linternas/linterna-accionada-solar/review',2,1,'product_reviews_info',NULL,66,NULL,'301','2010-07-14 21:20:22'),('/linternas/linterna-accionada-solar/add-a-review',2,1,'product_reviews_write',NULL,66,NULL,'301','2010-07-14 21:20:22'),('/linternas/linterna-accionada-solar/tell-a-friend',2,1,'tell_a_friend',NULL,66,NULL,'301','2010-07-14 21:20:22'),('/flashlights-lanterns-light-sticks/solar-powered-flashlight',1,1,'product_info',NULL,66,NULL,'301','2010-07-14 21:20:22'),('/flashlights-lanterns-light-sticks/solar-powered-flashlight/reviews',1,1,'product_reviews',NULL,66,NULL,'301','2010-07-14 21:20:22'),('/flashlights-lanterns-light-sticks/solar-powered-flashlight/review',1,1,'product_reviews_info',NULL,66,NULL,'301','2010-07-14 21:20:22'),('/flashlights-lanterns-light-sticks/solar-powered-flashlight/add-a-review',1,1,'product_reviews_write',NULL,66,NULL,'301','2010-07-14 21:20:22'),('/flashlights-lanterns-light-sticks/solar-powered-flashlight/tell-a-friend',1,1,'tell_a_friend',NULL,66,NULL,'301','2010-07-14 21:20:22'),('/kits-de-primeros-auxilios/kit-de-primeros-auxilios-del-animal-domestico-de-58-pedazos',2,1,'product_info',NULL,61,NULL,'301','2010-07-14 21:20:43'),('/kits-de-primeros-auxilios/kit-de-primeros-auxilios-del-animal-domestico-de-58-pedazos/reviews',2,1,'product_reviews',NULL,61,NULL,'301','2010-07-14 21:20:43'),('/kits-de-primeros-auxilios/kit-de-primeros-auxilios-del-animal-domestico-de-58-pedazos/review',2,1,'product_reviews_info',NULL,61,NULL,'301','2010-07-14 21:20:43'),('/kits-de-primeros-auxilios/kit-de-primeros-auxilios-del-animal-domestico-de-58-pedazos/add-a-review',2,1,'product_reviews_write',NULL,61,NULL,'301','2010-07-14 21:20:43'),('/kits-de-primeros-auxilios/kit-de-primeros-auxilios-del-animal-domestico-de-58-pedazos/tell-a-friend',2,1,'tell_a_friend',NULL,61,NULL,'301','2010-07-14 21:20:43'),('/first-aid-kits/58-piece-pet-first-aid-kit',1,1,'product_info',NULL,61,NULL,'301','2010-07-14 21:20:43'),('/first-aid-kits/58-piece-pet-first-aid-kit/reviews',1,1,'product_reviews',NULL,61,NULL,'301','2010-07-14 21:20:43'),('/first-aid-kits/58-piece-pet-first-aid-kit/review',1,1,'product_reviews_info',NULL,61,NULL,'301','2010-07-14 21:20:43'),('/first-aid-kits/58-piece-pet-first-aid-kit/add-a-review',1,1,'product_reviews_write',NULL,61,NULL,'301','2010-07-14 21:20:43'),('/first-aid-kits/58-piece-pet-first-aid-kit/tell-a-friend',1,1,'tell_a_friend',NULL,61,NULL,'301','2010-07-14 21:20:43'),('/miscelaneo/calentadores-del-cuerpo-de-16-horas',2,1,'product_info',NULL,70,NULL,'301','2010-07-14 21:21:12'),('/miscelaneo/calentadores-del-cuerpo-de-16-horas/reviews',2,1,'product_reviews',NULL,70,NULL,'301','2010-07-14 21:21:12'),('/miscelaneo/calentadores-del-cuerpo-de-16-horas/review',2,1,'product_reviews_info',NULL,70,NULL,'301','2010-07-14 21:21:12'),('/miscelaneo/calentadores-del-cuerpo-de-16-horas/add-a-review',2,1,'product_reviews_write',NULL,70,NULL,'301','2010-07-14 21:21:12'),('/miscelaneo/calentadores-del-cuerpo-de-16-horas/tell-a-friend',2,1,'tell_a_friend',NULL,70,NULL,'301','2010-07-14 21:21:12'),('/miscellaneous/16-hour-body-warmers',1,1,'product_info',NULL,70,NULL,'301','2010-07-14 21:21:12'),('/miscellaneous/16-hour-body-warmers/reviews',1,1,'product_reviews',NULL,70,NULL,'301','2010-07-14 21:21:12'),('/miscellaneous/16-hour-body-warmers/review',1,1,'product_reviews_info',NULL,70,NULL,'301','2010-07-14 21:21:12'),('/miscellaneous/16-hour-body-warmers/add-a-review',1,1,'product_reviews_write',NULL,70,NULL,'301','2010-07-14 21:21:12'),('/miscellaneous/16-hour-body-warmers/tell-a-friend',1,1,'tell_a_friend',NULL,70,NULL,'301','2010-07-14 21:21:12'),('/miscelaneo/cargador-del-telefono-celular-de-la-emergencia',2,1,'product_info',NULL,62,NULL,'301','2010-07-14 21:21:26'),('/miscelaneo/cargador-del-telefono-celular-de-la-emergencia/reviews',2,1,'product_reviews',NULL,62,NULL,'301','2010-07-14 21:21:26'),('/miscelaneo/cargador-del-telefono-celular-de-la-emergencia/review',2,1,'product_reviews_info',NULL,62,NULL,'301','2010-07-14 21:21:26'),('/miscelaneo/cargador-del-telefono-celular-de-la-emergencia/add-a-review',2,1,'product_reviews_write',NULL,62,NULL,'301','2010-07-14 21:21:26'),('/miscelaneo/cargador-del-telefono-celular-de-la-emergencia/tell-a-friend',2,1,'tell_a_friend',NULL,62,NULL,'301','2010-07-14 21:21:26'),('/miscellaneous/emergency-cell-phone-charger',1,1,'product_info',NULL,62,NULL,'301','2010-07-14 21:21:26'),('/miscellaneous/emergency-cell-phone-charger/reviews',1,1,'product_reviews',NULL,62,NULL,'301','2010-07-14 21:21:26'),('/miscellaneous/emergency-cell-phone-charger/review',1,1,'product_reviews_info',NULL,62,NULL,'301','2010-07-14 21:21:26'),('/miscellaneous/emergency-cell-phone-charger/add-a-review',1,1,'product_reviews_write',NULL,62,NULL,'301','2010-07-14 21:21:26'),('/miscellaneous/emergency-cell-phone-charger/tell-a-friend',1,1,'tell_a_friend',NULL,62,NULL,'301','2010-07-14 21:21:26'),('/miscelaneo/paquete-movil-del-adaptador-del-telefono-celular-16-adaptadores',2,1,'product_info',NULL,63,NULL,'301','2010-07-14 21:21:47'),('/miscelaneo/paquete-movil-del-adaptador-del-telefono-celular-16-adaptadores/reviews',2,1,'product_reviews',NULL,63,NULL,'301','2010-07-14 21:21:47'),('/miscelaneo/paquete-movil-del-adaptador-del-telefono-celular-16-adaptadores/review',2,1,'product_reviews_info',NULL,63,NULL,'301','2010-07-14 21:21:47'),('/miscelaneo/paquete-movil-del-adaptador-del-telefono-celular-16-adaptadores/add-a-review',2,1,'product_reviews_write',NULL,63,NULL,'301','2010-07-14 21:21:47'),('/miscelaneo/paquete-movil-del-adaptador-del-telefono-celular-16-adaptadores/tell-a-friend',2,1,'tell_a_friend',NULL,63,NULL,'301','2010-07-14 21:21:47'),('/miscellaneous/mobile-cell-phone-adapter-package-16-adapters',1,1,'product_info',NULL,63,NULL,'301','2010-07-14 21:21:47'),('/miscellaneous/mobile-cell-phone-adapter-package-16-adapters/reviews',1,1,'product_reviews',NULL,63,NULL,'301','2010-07-14 21:21:47'),('/miscellaneous/mobile-cell-phone-adapter-package-16-adapters/review',1,1,'product_reviews_info',NULL,63,NULL,'301','2010-07-14 21:21:47'),('/miscellaneous/mobile-cell-phone-adapter-package-16-adapters/add-a-review',1,1,'product_reviews_write',NULL,63,NULL,'301','2010-07-14 21:21:47'),('/miscellaneous/mobile-cell-phone-adapter-package-16-adapters/tell-a-friend',1,1,'tell_a_friend',NULL,63,NULL,'301','2010-07-14 21:21:47'),('/miscelaneo/mantas-termicas',2,1,'product_info',NULL,51,NULL,'301','2010-07-14 21:22:02'),('/miscelaneo/mantas-termicas/reviews',2,1,'product_reviews',NULL,51,NULL,'301','2010-07-14 21:22:02'),('/miscelaneo/mantas-termicas/review',2,1,'product_reviews_info',NULL,51,NULL,'301','2010-07-14 21:22:02'),('/miscelaneo/mantas-termicas/add-a-review',2,1,'product_reviews_write',NULL,51,NULL,'301','2010-07-14 21:22:02'),('/miscelaneo/mantas-termicas/tell-a-friend',2,1,'tell_a_friend',NULL,51,NULL,'301','2010-07-14 21:22:02'),('/miscellaneous/thermal-blankets',1,1,'product_info',NULL,51,NULL,'301','2010-07-14 21:22:02'),('/miscellaneous/thermal-blankets/reviews',1,1,'product_reviews',NULL,51,NULL,'301','2010-07-14 21:22:02'),('/miscellaneous/thermal-blankets/review',1,1,'product_reviews_info',NULL,51,NULL,'301','2010-07-14 21:22:02'),('/miscellaneous/thermal-blankets/add-a-review',1,1,'product_reviews_write',NULL,51,NULL,'301','2010-07-14 21:22:02'),('/miscellaneous/thermal-blankets/tell-a-friend',1,1,'tell_a_friend',NULL,51,NULL,'301','2010-07-14 21:22:02');
/*!40000 ALTER TABLE `zen_ceon_uri_mappings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_configuration`
--

DROP TABLE IF EXISTS `zen_configuration`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_configuration` (
  `configuration_id` int(11) NOT NULL AUTO_INCREMENT,
  `configuration_title` text COLLATE utf8_unicode_ci NOT NULL,
  `configuration_key` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `configuration_value` text COLLATE utf8_unicode_ci NOT NULL,
  `configuration_description` text COLLATE utf8_unicode_ci NOT NULL,
  `configuration_group_id` int(11) NOT NULL DEFAULT '0',
  `sort_order` int(5) DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `use_function` text COLLATE utf8_unicode_ci,
  `set_function` text COLLATE utf8_unicode_ci,
  PRIMARY KEY (`configuration_id`),
  UNIQUE KEY `unq_config_key_zen` (`configuration_key`),
  KEY `idx_key_value_zen` (`configuration_key`,`configuration_value`(10)),
  KEY `idx_cfg_grp_id_zen` (`configuration_group_id`)
) ENGINE=MyISAM AUTO_INCREMENT=845 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_configuration`
--

LOCK TABLES `zen_configuration` WRITE;
/*!40000 ALTER TABLE `zen_configuration` DISABLE KEYS */;
INSERT INTO `zen_configuration` VALUES (1,'Store Name','STORE_NAME','aaaSurvival.com','The name of my store',1,1,'2010-01-19 18:06:59','2010-01-13 17:35:01',NULL,NULL),(2,'Store Owner','STORE_OWNER','Wayne Sauvola','The name of my store owner',1,2,'2010-01-13 18:31:54','2010-01-13 17:35:01',NULL,NULL),(3,'Country','STORE_COUNTRY','223','The country my store is located in <br /><br /><strong>Note: Please remember to update the store zone.</strong>',1,6,NULL,'2010-01-13 17:35:01','zen_get_country_name','zen_cfg_pull_down_country_list('),(4,'Zone','STORE_ZONE','18','The zone my store is located in',1,7,'2010-01-13 23:10:18','2010-01-13 17:35:01','zen_cfg_get_zone_name','zen_cfg_pull_down_zone_list('),(5,'Expected Sort Order','EXPECTED_PRODUCTS_SORT','desc','This is the sort order used in the expected products box.',1,8,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'asc\', \'desc\'), '),(6,'Expected Sort Field','EXPECTED_PRODUCTS_FIELD','date_expected','The column to sort by in the expected products box.',1,9,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'products_name\', \'date_expected\'), '),(7,'Switch To Default Language Currency','USE_DEFAULT_LANGUAGE_CURRENCY','false','Automatically switch to the language\'s currency when it is changed',1,10,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(8,'Language Selector','LANGUAGE_DEFAULT_SELECTOR','Default','Should the default language be based on the Store preferences, or the customer\'s browser settings?<br /><br />Default: Store\'s default settings',1,11,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'Default\', \'Browser\'), '),(9,'Use Search-Engine Safe URLs (still in development)','SEARCH_ENGINE_FRIENDLY_URLS','false','Use search-engine safe urls for all site links',6,12,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(10,'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,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(11,'Default Search Operator','ADVANCED_SEARCH_DEFAULT_OPERATOR','and','Default search operators',1,17,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'and\', \'or\'), '),(12,'Store Address and Phone','STORE_NAME_ADDRESS','aaaSurvival.com\r\n 2210 Ridgewood Circle \r\n Royal Palm Beach, FL 33411\r\n USA\r\n \r\n Main: 800-976-9206\r\n Fax:  800-976-9206','This is the Store Name, Address and Phone used on printable documents and displayed online',1,18,'2010-01-18 09:58:27','2010-01-13 17:35:01',NULL,'zen_cfg_textarea('),(13,'Show Category Counts','SHOW_COUNTS','true','Count recursively how many products are in each category',1,19,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(14,'Tax Decimal Places','TAX_DECIMAL_PLACES','0','Pad the tax value this amount of decimal places',1,20,NULL,'2010-01-13 17:35:01',NULL,NULL),(15,'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,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(16,'Display Prices with Tax in Admin','DISPLAY_PRICE_WITH_TAX_ADMIN','false','Display prices with tax included (true) or add the tax at the end (false) in Admin(Invoices)',1,21,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(17,'Basis of Product Tax','STORE_PRODUCT_TAX_BASIS','Shipping','On what basis is Product Tax calculated. Options are<br />Shipping - Based on customers Shipping Address<br />Billing Based on customers Billing address<br />Store - Based on Store address if Billing/Shipping Zone equals Store zone',1,21,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'Shipping\', \'Billing\', \'Store\'), '),(18,'Basis of Shipping Tax','STORE_SHIPPING_TAX_BASIS','Shipping','On what basis is Shipping Tax calculated. Options are<br />Shipping - Based on customers Shipping Address<br />Billing Based on customers Billing address<br />Store - Based on Store address if Billing/Shipping Zone equals Store zone - Can be overriden by correctly written Shipping Module',1,21,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'Shipping\', \'Billing\', \'Store\'), '),(19,'Sales Tax Display Status','STORE_TAX_DISPLAY_STATUS','0','Always show Sales Tax even when amount is $0.00?<br />0= Off<br />1= On',1,21,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(20,'Admin Session Time Out in Seconds','SESSION_TIMEOUT_ADMIN','3600','Enter the time in seconds. Default=3600<br />Example: 3600= 1 hour<br /><br />Note: Too few seconds can result in timeout issues when adding/editing products',1,40,NULL,'2010-01-13 17:35:01',NULL,NULL),(21,'Admin Set max_execution_time for processes','GLOBAL_SET_TIME_LIMIT','60','Enter the time in seconds for how long the max_execution_time of processes should be. Default=60<br />Example: 60= 1 minute<br /><br />Note: Changing the time limit is only needed if you are having problems with the execution time of a process',1,42,NULL,'2010-01-13 17:35:01',NULL,NULL),(22,'Show if version update available','SHOW_VERSION_UPDATE_IN_HEADER','true','Automatically check to see if a new version of Zen Cart is available. Enabling this can sometimes slow down the loading of Admin pages. (Displayed on main Index page after login, and Server Info page.)',1,44,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(23,'Store Status','STORE_STATUS','0','What is your Store Status<br />0= Normal Store<br />1= Showcase no prices<br />2= Showcase with prices',1,25,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(24,'Server Uptime','DISPLAY_SERVER_UPTIME','true','Displaying Server uptime can cause entries in error logs on some servers. (true = Display, false = don\'t display)',1,46,'2003-11-08 20:24:47','0001-01-01 00:00:00','','zen_cfg_select_option(array(\'true\', \'false\'),'),(25,'Missing Page Check','MISSING_PAGE_CHECK','Page Not Found','Zen Cart can check for missing pages in the URL and redirect to Index page. For debugging you may want to turn this off. <br /><br /><strong>Default=On</strong><br />On = Send missing pages to \'index\'<br />Off = Don\'t check for missing pages<br />Page Not Found = display the Page-Not-Found page',1,48,'2003-11-08 20:24:47','0001-01-01 00:00:00','','zen_cfg_select_option(array(\'On\', \'Off\', \'Page Not Found\'),'),(26,'cURL Proxy Status','CURL_PROXY_REQUIRED','False','Does your host require that you use a proxy for cURL communication?',1,50,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(27,'cURL Proxy Address','CURL_PROXY_SERVER_DETAILS','','If you have GoDaddy hosting or other hosting services that require use of a proxy to talk to external sites via cURL, enter their proxy address here.<br />format: address:port<br />ie: for GoDaddy, enter: <strong>proxy.shr.secureserver.net:3128</strong> or possibly 64.202.165.130:3128',1,51,NULL,'2010-01-13 17:35:01',NULL,NULL),(28,'HTML Editor','HTML_EDITOR_PREFERENCE','NONE','Please select the HTML/Rich-Text editor you wish to use for composing Admin-related emails, newsletters, and product descriptions',1,110,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_pull_down_htmleditors('),(29,'Enable phpBB linkage?','PHPBB_LINKS_ENABLED','','Should Zen Cart synchronize new account information to your (already-installed) phpBB forum?',1,120,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(30,'Show Category Counts - Admin','SHOW_COUNTS_ADMIN','true','Show Category Counts in Admin?',1,19,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(31,'Currency Conversion Ratio','CURRENCY_UPLIFT_RATIO','1.05','When auto-updating currencies, what \"uplift\" ratio should be used to calculate the exchange rate used by your store?<br />ie: the bank rate is obtained from the currency-exchange servers; how much extra do you want to charge in order to make up the difference between the bank rate and the consumer rate?<br /><br /><strong>Default: 1.05 </strong><br />This will cause the published bank rate to be multiplied by 1.05 to set the currency rates in your store.',1,55,NULL,'2010-01-13 17:35:01',NULL,NULL),(32,'First Name','ENTRY_FIRST_NAME_MIN_LENGTH','2','Minimum length of first name',2,1,NULL,'2010-01-13 17:35:01',NULL,NULL),(33,'Last Name','ENTRY_LAST_NAME_MIN_LENGTH','2','Minimum length of last name',2,2,NULL,'2010-01-13 17:35:01',NULL,NULL),(34,'Date of Birth','ENTRY_DOB_MIN_LENGTH','10','Minimum length of date of birth',2,3,NULL,'2010-01-13 17:35:01',NULL,NULL),(35,'E-Mail Address','ENTRY_EMAIL_ADDRESS_MIN_LENGTH','6','Minimum length of e-mail address',2,4,NULL,'2010-01-13 17:35:01',NULL,NULL),(36,'Street Address','ENTRY_STREET_ADDRESS_MIN_LENGTH','5','Minimum length of street address',2,5,NULL,'2010-01-13 17:35:01',NULL,NULL),(37,'Company','ENTRY_COMPANY_MIN_LENGTH','0','Minimum length of company name',2,6,NULL,'2010-01-13 17:35:01',NULL,NULL),(38,'Post Code','ENTRY_POSTCODE_MIN_LENGTH','4','Minimum length of post code',2,7,NULL,'2010-01-13 17:35:01',NULL,NULL),(39,'City','ENTRY_CITY_MIN_LENGTH','2','Minimum length of city',2,8,NULL,'2010-01-13 17:35:01',NULL,NULL),(40,'State','ENTRY_STATE_MIN_LENGTH','2','Minimum length of state',2,9,NULL,'2010-01-13 17:35:01',NULL,NULL),(41,'Telephone Number','ENTRY_TELEPHONE_MIN_LENGTH','3','Minimum length of telephone number',2,10,NULL,'2010-01-13 17:35:01',NULL,NULL),(42,'Password','ENTRY_PASSWORD_MIN_LENGTH','5','Minimum length of password',2,11,NULL,'2010-01-13 17:35:01',NULL,NULL),(43,'Credit Card Owner Name','CC_OWNER_MIN_LENGTH','3','Minimum length of credit card owner name',2,12,NULL,'2010-01-13 17:35:01',NULL,NULL),(44,'Credit Card Number','CC_NUMBER_MIN_LENGTH','10','Minimum length of credit card number',2,13,NULL,'2010-01-13 17:35:01',NULL,NULL),(45,'Credit Card CVV Number','CC_CVV_MIN_LENGTH','3','Minimum length of credit card CVV number',2,13,NULL,'2010-01-13 17:35:01',NULL,NULL),(46,'Product Review Text','REVIEW_TEXT_MIN_LENGTH','50','Minimum length of product review text',2,14,NULL,'2010-01-13 17:35:01',NULL,NULL),(47,'Best Sellers','MIN_DISPLAY_BESTSELLERS','1','Minimum number of best sellers to display',2,15,NULL,'2010-01-13 17:35:01',NULL,NULL),(48,'Also Purchased Products','MIN_DISPLAY_ALSO_PURCHASED','1','Minimum number of products to display in the \'This Customer Also Purchased\' box',2,16,NULL,'2010-01-13 17:35:01',NULL,NULL),(49,'Nick Name','ENTRY_NICK_MIN_LENGTH','3','Minimum length of Nick Name',2,1,NULL,'2010-01-13 17:35:01',NULL,NULL),(50,'Address Book Entries','MAX_ADDRESS_BOOK_ENTRIES','5','Maximum address book entries a customer is allowed to have',3,1,NULL,'2010-01-13 17:35:01',NULL,NULL),(51,'Search Results Per Page','MAX_DISPLAY_SEARCH_RESULTS','20','Number of products to list on a search result page',3,2,NULL,'2010-01-13 17:35:01',NULL,NULL),(52,'Prev/Next Navigation Page Links','MAX_DISPLAY_PAGE_LINKS','5','Number of \'number\' links use for page-sets',3,3,NULL,'2010-01-13 17:35:01',NULL,NULL),(53,'Products on Special ','MAX_DISPLAY_SPECIAL_PRODUCTS','9','Number of products on special to display',3,4,NULL,'2010-01-13 17:35:01',NULL,NULL),(54,'New Products Module','MAX_DISPLAY_NEW_PRODUCTS','3','Number of new products to display in a category',3,5,'2010-01-25 14:40:56','2010-01-13 17:35:01',NULL,NULL),(55,'Upcoming Products ','MAX_DISPLAY_UPCOMING_PRODUCTS','10','Number of \'upcoming\' products to display',3,6,NULL,'2010-01-13 17:35:01',NULL,NULL),(56,'Manufacturers List - Scroll Box Size/Style','MAX_MANUFACTURERS_LIST','3','Number of manufacturers names to be displayed in the scroll box window. Setting this to 1 or 0 will display a dropdown list.',3,7,NULL,'2010-01-13 17:35:01',NULL,NULL),(57,'Manufacturers List - Verify Product Exist','PRODUCTS_MANUFACTURERS_STATUS','1','Verify that at least 1 product exists and is active for the manufacturer name to show<br /><br />Note: When this feature is ON it can produce slower results on sites with a large number of products and/or manufacturers<br />0= off 1= on',3,7,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(58,'Music Genre List - Scroll Box Size/Style','MAX_MUSIC_GENRES_LIST','3','Number of music genre names to be displayed in the scroll box window. Setting this to 1 or 0 will display a dropdown list.',3,7,NULL,'2010-01-13 17:35:01',NULL,NULL),(59,'Record Company List - Scroll Box Size/Style','MAX_RECORD_COMPANY_LIST','3','Number of record company names to be displayed in the scroll box window. Setting this to 1 or 0 will display a dropdown list.',3,7,NULL,'2010-01-13 17:35:01',NULL,NULL),(60,'Length of Record Company Name','MAX_DISPLAY_RECORD_COMPANY_NAME_LEN','15','Used in record companies box; maximum length of record company name to display. Longer names will be truncated.',3,8,NULL,'2010-01-13 17:35:01',NULL,NULL),(61,'Length of Music Genre Name','MAX_DISPLAY_MUSIC_GENRES_NAME_LEN','15','Used in music genres box; maximum length of music genre name to display. Longer names will be truncated.',3,8,NULL,'2010-01-13 17:35:01',NULL,NULL),(62,'Length of Manufacturers Name','MAX_DISPLAY_MANUFACTURER_NAME_LEN','15','Used in manufacturers box; maximum length of manufacturers name to display. Longer names will be truncated.',3,8,NULL,'2010-01-13 17:35:01',NULL,NULL),(63,'New Product Reviews Per Page','MAX_DISPLAY_NEW_REVIEWS','6','Number of new reviews to display on each page',3,9,NULL,'2010-01-13 17:35:01',NULL,NULL),(64,'Random Product Reviews for SideBox','MAX_RANDOM_SELECT_REVIEWS','1','Number of random product REVIEWS to rotate in the sidebox<br />Enter the number of products to display in this sidebox at one time.<br /><br />How many products do you want to display in this sidebox?',3,10,NULL,'2010-01-13 17:35:01',NULL,NULL),(65,'Random New Products for SideBox','MAX_RANDOM_SELECT_NEW','3','Number of random NEW products to rotate in the sidebox<br />Enter the number of products to display in this sidebox at one time.<br /><br />How many products do you want to display in this sidebox?',3,11,'2010-01-25 14:42:10','2010-01-13 17:35:01',NULL,NULL),(66,'Random Products On Special for SideBox','MAX_RANDOM_SELECT_SPECIALS','2','Number of random products on SPECIAL to rotate in the sidebox<br />Enter the number of products to display in this sidebox at one time.<br /><br />How many products do you want to display in this sidebox?',3,12,NULL,'2010-01-13 17:35:01',NULL,NULL),(67,'Categories To List Per Row','MAX_DISPLAY_CATEGORIES_PER_ROW','3','How many categories to list per row',3,13,'2010-01-25 14:43:05','2010-01-13 17:35:01',NULL,NULL),(68,'New Products Listing- Number Per Page','MAX_DISPLAY_PRODUCTS_NEW','10','Number of new products listed per page',3,14,'2010-01-25 14:42:40','2010-01-13 17:35:01',NULL,NULL),(69,'Best Sellers For Box','MAX_DISPLAY_BESTSELLERS','10','Number of best sellers to display in box',3,15,NULL,'2010-01-13 17:35:01',NULL,NULL),(70,'Also Purchased Products','MAX_DISPLAY_ALSO_PURCHASED','6','Number of products to display in the \'This Customer Also Purchased\' box',3,16,NULL,'2010-01-13 17:35:01',NULL,NULL),(71,'Recent Purchases Box- NOTE: box is disabled ','MAX_DISPLAY_PRODUCTS_IN_ORDER_HISTORY_BOX','6','Number of products to display in the recent purchases box',3,17,NULL,'2010-01-13 17:35:01',NULL,NULL),(72,'Customer Order History List Per Page','MAX_DISPLAY_ORDER_HISTORY','10','Number of orders to display in the order history list in \'My Account\'',3,18,NULL,'2010-01-13 17:35:01',NULL,NULL),(73,'Maximum Display of Customers on Customers Page','MAX_DISPLAY_SEARCH_RESULTS_CUSTOMER','20','',3,19,NULL,'2010-01-13 17:35:01',NULL,NULL),(74,'Maximum Display of Orders on Orders Page','MAX_DISPLAY_SEARCH_RESULTS_ORDERS','20','',3,20,NULL,'2010-01-13 17:35:01',NULL,NULL),(75,'Maximum Display of Products on Reports','MAX_DISPLAY_SEARCH_RESULTS_REPORTS','20','',3,21,NULL,'2010-01-13 17:35:01',NULL,NULL),(76,'Maximum Categories Products Display List','MAX_DISPLAY_RESULTS_CATEGORIES','10','Number of products to list per screen',3,22,NULL,'2010-01-13 17:35:01',NULL,NULL),(77,'Products Listing- Number Per Page','MAX_DISPLAY_PRODUCTS_LISTING','10','Maximum Number of Products to list per page on main page',3,30,NULL,'2010-01-13 17:35:01',NULL,NULL),(78,'Products Attributes - Option Names and Values Display','MAX_ROW_LISTS_OPTIONS','10','Maximum number of option names and values to display in the products attributes page',3,24,NULL,'2010-01-13 17:35:01',NULL,NULL),(79,'Products Attributes - Attributes Controller Display','MAX_ROW_LISTS_ATTRIBUTES_CONTROLLER','30','Maximum number of attributes to display in the Attributes Controller page',3,25,NULL,'2010-01-13 17:35:01',NULL,NULL),(80,'Products Attributes - Downloads Manager Display','MAX_DISPLAY_SEARCH_RESULTS_DOWNLOADS_MANAGER','30','Maximum number of attributes downloads to display in the Downloads Manager page',3,26,NULL,'2010-01-13 17:35:01',NULL,NULL),(81,'Featured Products - Number to Display Admin','MAX_DISPLAY_SEARCH_RESULTS_FEATURED_ADMIN','10','Number of featured products to list per screen - Admin',3,27,NULL,'2010-01-13 17:35:01',NULL,NULL),(82,'Maximum Display of Featured Products - Main Page','MAX_DISPLAY_SEARCH_RESULTS_FEATURED','9','Number of featured products to list on main page',3,28,NULL,'2010-01-13 17:35:01',NULL,NULL),(83,'Maximum Display of Featured Products Page','MAX_DISPLAY_PRODUCTS_FEATURED_PRODUCTS','10','Number of featured products to list per screen',3,29,NULL,'2010-01-13 17:35:01',NULL,NULL),(84,'Random Featured Products for SideBox','MAX_RANDOM_SELECT_FEATURED_PRODUCTS','2','Number of random FEATURED products to rotate in the sidebox<br />Enter the number of products to display in this sidebox at one time.<br /><br />How many products do you want to display in this sidebox?',3,30,NULL,'2010-01-13 17:35:01',NULL,NULL),(85,'Maximum Display of Specials Products - Main Page','MAX_DISPLAY_SPECIAL_PRODUCTS_INDEX','9','Number of special products to list on main page',3,31,NULL,'2010-01-13 17:35:01',NULL,NULL),(86,'New Product Listing - Limited to ...','SHOW_NEW_PRODUCTS_LIMIT','30','Limit the New Product Listing to<br />0= All Products<br />1= Current Month<br />7= 7 Days<br />14= 14 Days<br />30= 30 Days<br />60= 60 Days<br />90= 90 Days<br />120= 120 Days',3,40,'2010-01-25 14:44:21','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'7\', \'14\', \'30\', \'60\', \'90\', \'120\'), '),(87,'Maximum Display of Products All Page','MAX_DISPLAY_PRODUCTS_ALL','10','Number of products to list per screen',3,45,NULL,'2010-01-13 17:35:01',NULL,NULL),(88,'Maximum Display of Language Flags in Language Side Box','MAX_LANGUAGE_FLAGS_COLUMNS','3','Number of Language Flags per Row',3,50,NULL,'2010-01-13 17:35:01',NULL,NULL),(89,'Maximum File Upload Size','MAX_FILE_UPLOAD_SIZE','2048000','What is the Maximum file size for uploads?<br />Default= 2048000',3,60,NULL,'2010-01-13 17:35:01',NULL,NULL),(90,'Allowed Filename Extensions for uploading','UPLOAD_FILENAME_EXTENSIONS','jpg,jpeg,gif,png,eps,cdr,ai,pdf,tif,tiff,bmp,zip','List the permissible filetypes (filename extensions) to be allowed when files are uploaded to your site by customers. Separate multiple values with commas(,). Do not include the dot(.).<br /><br />Suggested setting: \"jpg,jpeg,gif,png,eps,cdr,ai,pdf,tif,tiff,bmp,zip\"',3,61,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_textarea('),(91,'Maximum Orders Detail Display on Admin Orders Listing','MAX_DISPLAY_RESULTS_ORDERS_DETAILS_LISTING','0','Maximum number of Order Details<br />0 = Unlimited',3,65,NULL,'2010-01-13 17:35:01',NULL,NULL),(92,'Maximum PayPal IPN Display on Admin Listing','MAX_DISPLAY_SEARCH_RESULTS_PAYPAL_IPN','20','Maximum number of PayPal IPN Lisings in Admin<br />Default is 20',3,66,NULL,'2010-01-13 17:35:01',NULL,NULL),(93,'Maximum Display Columns Products to Multiple Categories Manager','MAX_DISPLAY_PRODUCTS_TO_CATEGORIES_COLUMNS','3','Maximum Display Columns Products to Multiple Categories Manager<br />3 = Default',3,70,NULL,'2010-01-13 17:35:01',NULL,NULL),(94,'Maximum Display EZ-Pages','MAX_DISPLAY_SEARCH_RESULTS_EZPAGE','20','Maximum Display EZ-Pages<br />20 = Default',3,71,NULL,'2010-01-13 17:35:01',NULL,NULL),(95,'Small Image Width','SMALL_IMAGE_WIDTH','100','The pixel width of small images',4,1,NULL,'2010-01-13 17:35:01',NULL,NULL),(96,'Small Image Height','SMALL_IMAGE_HEIGHT','80','The pixel height of small images',4,2,NULL,'2010-01-13 17:35:01',NULL,NULL),(97,'Heading Image Width - Admin','HEADING_IMAGE_WIDTH','57','The pixel width of heading images in the Admin<br />NOTE: Presently, this adjusts the spacing on the pages in the Admin Pages or could be used to add images to the heading in the Admin',4,3,NULL,'2010-01-13 17:35:01',NULL,NULL),(98,'Heading Image Height - Admin','HEADING_IMAGE_HEIGHT','40','The pixel height of heading images in the Admin<br />NOTE: Presently, this adjusts the spacing on the pages in the Admin Pages or could be used to add images to the heading in the Admin',4,4,NULL,'2010-01-13 17:35:01',NULL,NULL),(99,'Subcategory Image Width','SUBCATEGORY_IMAGE_WIDTH','100','The pixel width of subcategory images',4,5,'2010-01-19 16:30:18','2010-01-13 17:35:01',NULL,NULL),(100,'Subcategory Image Height','SUBCATEGORY_IMAGE_HEIGHT','80','The pixel height of subcategory images',4,6,'2010-01-19 16:30:09','2010-01-13 17:35:01',NULL,NULL),(101,'Calculate Image Size','CONFIG_CALCULATE_IMAGE_SIZE','true','Calculate the size of images?',4,7,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(102,'Image Required','IMAGE_REQUIRED','true','Enable to display broken images. Good for development.',4,8,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(103,'Image - Shopping Cart Status','IMAGE_SHOPPING_CART_STATUS','1','Show product image in the shopping cart?<br />0= off 1= on',4,9,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(104,'Image - Shopping Cart Width','IMAGE_SHOPPING_CART_WIDTH','50','Default = 50',4,10,NULL,'2010-01-13 17:35:01',NULL,NULL),(105,'Image - Shopping Cart Height','IMAGE_SHOPPING_CART_HEIGHT','40','Default = 40',4,11,NULL,'2010-01-13 17:35:01',NULL,NULL),(106,'Category Icon Image Width - Product Info Pages','CATEGORY_ICON_IMAGE_WIDTH','57','The pixel width of Category Icon heading images for Product Info Pages',4,13,NULL,'2010-01-13 17:35:01',NULL,NULL),(107,'Category Icon Image Height - Product Info Pages','CATEGORY_ICON_IMAGE_HEIGHT','40','The pixel height of Category Icon heading images for Product Info Pages',4,14,NULL,'2010-01-13 17:35:01',NULL,NULL),(108,'Top Subcategory Image Width','SUBCATEGORY_IMAGE_TOP_WIDTH','150','The pixel width of Top subcategory images<br />Top subcategory is when the Category contains subcategories',4,15,NULL,'2010-01-13 17:35:01',NULL,NULL),(109,'Top Subcategory Image Height','SUBCATEGORY_IMAGE_TOP_HEIGHT','85','The pixel height of Top subcategory images<br />Top subcategory is when the Category contains subcategories',4,16,NULL,'2010-01-13 17:35:01',NULL,NULL),(110,'Product Info - Image Width','MEDIUM_IMAGE_WIDTH','150','The pixel width of Product Info images',4,20,NULL,'2010-01-13 17:35:01',NULL,NULL),(111,'Product Info - Image Height','MEDIUM_IMAGE_HEIGHT','120','The pixel height of Product Info images',4,21,NULL,'2010-01-13 17:35:01',NULL,NULL),(112,'Product Info - Image Medium Suffix','IMAGE_SUFFIX_MEDIUM','_MED','Product Info Medium Image Suffix<br />Default = _MED',4,22,NULL,'2010-01-13 17:35:01',NULL,NULL),(113,'Product Info - Image Large Suffix','IMAGE_SUFFIX_LARGE','_LRG','Product Info Large Image Suffix<br />Default = _LRG',4,23,NULL,'2010-01-13 17:35:01',NULL,NULL),(114,'Product Info - Number of Additional Images per Row','IMAGES_AUTO_ADDED','3','Product Info - Enter the number of additional images to display per row<br />Default = 3',4,30,NULL,'2010-01-13 17:35:01',NULL,NULL),(115,'Image - Product Listing Width','IMAGE_PRODUCT_LISTING_WIDTH','100','Default = 100',4,40,NULL,'2010-01-13 17:35:01',NULL,NULL),(116,'Image - Product Listing Height','IMAGE_PRODUCT_LISTING_HEIGHT','80','Default = 80',4,41,NULL,'2010-01-13 17:35:01',NULL,NULL),(117,'Image - Product New Listing Width','IMAGE_PRODUCT_NEW_LISTING_WIDTH','100','Default = 100',4,42,NULL,'2010-01-13 17:35:01',NULL,NULL),(118,'Image - Product New Listing Height','IMAGE_PRODUCT_NEW_LISTING_HEIGHT','80','Default = 80',4,43,NULL,'2010-01-13 17:35:01',NULL,NULL),(119,'Image - New Products Width','IMAGE_PRODUCT_NEW_WIDTH','100','Default = 100',4,44,NULL,'2010-01-13 17:35:01',NULL,NULL),(120,'Image - New Products Height','IMAGE_PRODUCT_NEW_HEIGHT','80','Default = 80',4,45,NULL,'2010-01-13 17:35:01',NULL,NULL),(121,'Image - Featured Products Width','IMAGE_FEATURED_PRODUCTS_LISTING_WIDTH','100','Default = 100',4,46,NULL,'2010-01-13 17:35:01',NULL,NULL),(122,'Image - Featured Products Height','IMAGE_FEATURED_PRODUCTS_LISTING_HEIGHT','80','Default = 80',4,47,NULL,'2010-01-13 17:35:01',NULL,NULL),(123,'Image - Product All Listing Width','IMAGE_PRODUCT_ALL_LISTING_WIDTH','100','Default = 100',4,48,NULL,'2010-01-13 17:35:01',NULL,NULL),(124,'Image - Product All Listing Height','IMAGE_PRODUCT_ALL_LISTING_HEIGHT','80','Default = 80',4,49,NULL,'2010-01-13 17:35:01',NULL,NULL),(125,'Product Image - No Image Status','PRODUCTS_IMAGE_NO_IMAGE_STATUS','1','Use automatic No Image when none is added to product<br />0= off<br />1= On',4,60,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(126,'Product Image - No Image picture','PRODUCTS_IMAGE_NO_IMAGE','no_picture.gif','Use automatic No Image when none is added to product<br />Default = no_picture.gif',4,61,NULL,'2010-01-13 17:35:01',NULL,NULL),(127,'Image - Use Proportional Images on Products and Categories','PROPORTIONAL_IMAGES_STATUS','1','Use Proportional Images on Products and Categories?<br /><br />NOTE: Do not use 0 height or width settings for Proportion Images<br />0= off 1= on',4,75,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(128,'Email Salutation','ACCOUNT_GENDER','true','Display salutation choice during account creation and with account information',5,1,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(129,'Date of Birth','ACCOUNT_DOB','false','Display date of birth field during account creation and with account information<br />NOTE: Set Minimum Value Date of Birth to blank for not required<br />Set Minimum Value Date of Birth > 0 to require',5,2,'2010-01-13 23:03:19','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(130,'Company','ACCOUNT_COMPANY','true','Display company field during account creation and with account information',5,3,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(131,'Address Line 2','ACCOUNT_SUBURB','true','Display address line 2 field during account creation and with account information',5,4,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(132,'State','ACCOUNT_STATE','true','Display state field during account creation and with account information',5,5,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(133,'State - Always display as pulldown?','ACCOUNT_STATE_DRAW_INITIAL_DROPDOWN','true','When state field is displayed, should it always be a pulldown menu?',5,5,'2010-01-13 23:03:51','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(134,'Create Account Default Country ID','SHOW_CREATE_ACCOUNT_DEFAULT_COUNTRY','223','Set Create Account Default Country ID to:<br />Default is 223',5,6,NULL,'2010-01-13 17:35:01','zen_get_country_name','zen_cfg_pull_down_country_list_none('),(135,'Fax Number','ACCOUNT_FAX_NUMBER','true','Display fax number field during account creation and with account information',5,10,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(136,'Show Newsletter Checkbox','ACCOUNT_NEWSLETTER_STATUS','1','Show Newsletter Checkbox<br />0= off<br />1= Display Unchecked<br />2= Display Checked<br /><strong>Note: Defaulting this to accepted may be in violation of certain regulations for your state or country</strong>',5,45,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(137,'Customer Default Email Preference','ACCOUNT_EMAIL_PREFERENCE','0','Set the Default Customer Default Email Preference<br />0= Text<br />1= HTML<br />',5,46,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(138,'Customer Product Notification Status','CUSTOMERS_PRODUCTS_NOTIFICATION_STATUS','1','Customer should be asked about product notifications after checkout success and in account preferences<br />0= Never ask<br />1= Ask (ignored on checkout if has already selected global notifications)<br /><br />Note: Sidebox must be turned off separately',5,50,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(139,'Customer Shop Status - View Shop and Prices','CUSTOMERS_APPROVAL','0','Customer must be approved to shop<br />0= Not required<br />1= Must login to browse<br />2= May browse but no prices unless logged in<br />3= Showroom Only<br /><br />It is recommended that Option 2 be used for the purposes of Spiders if you wish customers to login to see prices.',5,55,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'), '),(140,'Customer Approval Status - Authorization Pending','CUSTOMERS_APPROVAL_AUTHORIZATION','0','Customer must be Authorized to shop<br />0= Not required<br />1= Must be Authorized to Browse<br />2= May browse but no prices unless Authorized<br />3= Customer May Browse and May see Prices but Must be Authorized to Buy<br /><br />It is recommended that Option 2 or 3 be used for the purposes of Spiders',5,65,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'), '),(141,'Customer Authorization: filename','CUSTOMERS_AUTHORIZATION_FILENAME','customers_authorization','Customer Authorization filename<br />Note: Do not include the extension<br />Default=customers_authorization',5,66,NULL,'2010-01-13 17:35:01',NULL,''),(142,'Customer Authorization: Hide Header','CUSTOMERS_AUTHORIZATION_HEADER_OFF','false','Customer Authorization: Hide Header <br />(true=hide false=show)',5,67,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(143,'Customer Authorization: Hide Column Left','CUSTOMERS_AUTHORIZATION_COLUMN_LEFT_OFF','false','Customer Authorization: Hide Column Left <br />(true=hide false=show)',5,68,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(144,'Customer Authorization: Hide Column Right','CUSTOMERS_AUTHORIZATION_COLUMN_RIGHT_OFF','false','Customer Authorization: Hide Column Right <br />(true=hide false=show)',5,69,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(145,'Customer Authorization: Hide Footer','CUSTOMERS_AUTHORIZATION_FOOTER_OFF','false','Customer Authorization: Hide Footer <br />(true=hide false=show)',5,70,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(146,'Customer Authorization: Hide Prices','CUSTOMERS_AUTHORIZATION_PRICES_OFF','false','Customer Authorization: Hide Prices <br />(true=hide false=show)',5,71,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(147,'Customers Referral Status','CUSTOMERS_REFERRAL_STATUS','0','Customers Referral Code is created from<br />0= Off<br />1= 1st Discount Coupon Code used<br />2= Customer can add during create account or edit if blank<br /><br />NOTE: Once the Customers Referral Code has been set it can only be changed in the Admin Customer',5,80,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(148,'Installed Modules','MODULE_PAYMENT_INSTALLED','paypaldp.php;moneyorder.php;paypalwpp.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,'2010-07-14 17:32:27','2010-01-13 17:35:01',NULL,NULL),(149,'Installed Modules','MODULE_ORDER_TOTAL_INSTALLED','ot_subtotal.php;ot_shipping.php;ot_coupon.php;ot_group_pricing.php;ot_tax.php;ot_loworderfee.php;ot_gv.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,NULL,'2010-01-13 17:35:01',NULL,NULL),(150,'Installed Modules','MODULE_SHIPPING_INSTALLED','fedexexpress.php;fedexground.php;ups.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,'2010-07-14 17:42:57','2010-01-13 17:35:01',NULL,NULL),(771,'City name','MODULE_SHIPPING_FEDEX_EXPRESS_CITY','Royal Palm Beach','Enter the city name for the ship-from street address, required',6,10,NULL,'2010-07-14 17:32:39',NULL,NULL),(757,'Cardinal Processor ID','MODULE_PAYMENT_PAYPALDP_CARDINAL_PROCESSOR','134-01','The processor ID for the Cardinal Centinel service. ',6,25,NULL,'2010-07-14 17:31:48',NULL,NULL),(758,'Cardinal Merchant ID','MODULE_PAYMENT_PAYPALDP_CARDINAL_MERCHANT','enter value','The merchant ID for the Cardinal Centinel service. ',6,25,NULL,'2010-07-14 17:31:48',NULL,NULL),(759,'Cardinal Transaction Password','MODULE_PAYMENT_PAYPALDP_CARDINAL_PASSWORD','','Enter your Cardinal Transaction Password from your Cardinal Merchant Admin console. This is used to secure and verify that the transaction originated from your store legitimately.',6,25,NULL,'2010-07-14 17:31:48','zen_cfg_password_display','zen_cfg_password_input('),(756,'Debug Mode','MODULE_PAYMENT_PAYPALDP_DEBUGGING','Log and Email','Would you like to enable debug mode?  A complete detailed log of failed transactions will be emailed to the store owner.',6,25,NULL,'2010-07-14 17:31:48',NULL,'zen_cfg_select_option(array(\'Off\', \'Alerts Only\', \'Log File\', \'Log and Email\'), '),(754,'Fraud Mgmt Filters - FMF','MODULE_PAYMENT_PAYPALDP_EC_RETURN_FMF_DETAILS','No','If you have enabled FMF support in your PayPal account and wish to utilize it in your transactions, set this to yes. Otherwise, leave it at No.',6,25,NULL,'2010-07-14 17:31:48',NULL,'zen_cfg_select_option(array(\'No\', \'Yes\'), '),(755,'Merchant Country','MODULE_PAYMENT_PAYPALDP_MERCHANT_COUNTRY','USA','Which country is your PayPal Account registered to? <br /><u>Choices:</u><br /><font color=green>You will need to supply <strong>API Settings</strong> in the Express Checkout module.</font><br /><strong>USA and Canada merchants</strong> need PayPal API credentials and a Website Payments Pro account.<br /><strong>UK merchants</strong> need to supply <strong>PAYFLOW settings</strong> (and have a Payflow account)',6,25,NULL,'2010-07-14 17:31:48',NULL,'zen_cfg_select_option(array(\'USA\', \'UK\', \'Canada\'), '),(186,'Include Tax','MODULE_ORDER_TOTAL_GROUP_PRICING_INC_TAX','false','Include Tax value in amount before discount calculation?',6,6,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(187,'This module is installed','MODULE_ORDER_TOTAL_GROUP_PRICING_STATUS','true','',6,1,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\'), '),(188,'Sort Order','MODULE_ORDER_TOTAL_GROUP_PRICING_SORT_ORDER','290','Sort order of display.',6,2,NULL,'2010-01-13 17:35:01',NULL,NULL),(189,'Include Shipping','MODULE_ORDER_TOTAL_GROUP_PRICING_INC_SHIPPING','false','Include Shipping value in amount before discount calculation?',6,5,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(190,'Re-calculate Tax','MODULE_ORDER_TOTAL_GROUP_PRICING_CALC_TAX','Standard','Re-Calculate Tax',6,7,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'None\', \'Standard\', \'Credit Note\'), '),(191,'Tax Class','MODULE_ORDER_TOTAL_GROUP_PRICING_TAX_CLASS','0','Use the following tax class when treating Group Discount as Credit Note.',6,0,NULL,'2010-01-13 17:35:01','zen_get_tax_class_title','zen_cfg_pull_down_tax_classes('),(760,'Only Accept Chargeback-Protected Orders via Cardinal?','MODULE_PAYMENT_PAYPALDP_CARDINAL_AUTHENTICATE_REQ','No','Only proceed with authorization when the Cardinal authentication result provides chargeback protection? ',6,25,NULL,'2010-07-14 17:31:48',NULL,'zen_cfg_select_option(array(\'Yes\', \'No\'), '),(761,'Enable Fedex Shipping','MODULE_SHIPPING_FEDEX_EXPRESS_STATUS','True','Do you want to offer Fedex shipping?',6,1,NULL,'2010-07-14 17:32:39',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(762,'Your Fedex Account Number','MODULE_SHIPPING_FEDEX_EXPRESS_ACCOUNT','118483642','Enter the fedex Account Number assigned to you, required',6,2,NULL,'2010-07-14 17:32:39',NULL,NULL),(763,'Your Fedex Meter ID','MODULE_SHIPPING_FEDEX_EXPRESS_METER','6248508','Enter the Fedex MeterID assigned to you, set to NONE to obtain a new meter number',6,3,NULL,'2010-07-14 17:32:39',NULL,NULL),(764,'cURL Path','MODULE_SHIPPING_FEDEX_EXPRESS_CURL','NONE','Enter the path to the cURL program, normally, leave this set to NONE to execute cURL using PHP',6,4,NULL,'2010-07-14 17:32:39',NULL,NULL),(198,'Default Currency','DEFAULT_CURRENCY','USD','Default Currency',6,0,NULL,'2010-01-13 17:35:01',NULL,NULL),(199,'Default Language','DEFAULT_LANGUAGE','en','Default Language',6,0,NULL,'2010-01-13 17:35:01',NULL,NULL),(200,'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,'2010-01-13 17:35:01',NULL,NULL),(201,'Admin configuration_key shows','ADMIN_CONFIGURATION_KEY_ON','0','Manually switch to value of 1 to see the configuration_key name in configuration displays',6,0,NULL,'2010-01-13 17:35:01',NULL,NULL),(202,'Country of Origin','SHIPPING_ORIGIN_COUNTRY','223','Select the country of origin to be used in shipping quotes.',7,1,NULL,'2010-01-13 17:35:01','zen_get_country_name','zen_cfg_pull_down_country_list('),(203,'Postal Code','SHIPPING_ORIGIN_ZIP','33411','Enter the Postal Code (ZIP) of the Store to be used in shipping quotes. NOTE: For USA zip codes, only use your 5 digit zip code.',7,2,'2010-01-30 23:03:34','2010-01-13 17:35:01',NULL,NULL),(204,'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,'2010-01-13 17:35:01',NULL,NULL),(205,'Package Tare Small to Medium - added percentage:weight','SHIPPING_BOX_WEIGHT','0:3','What is the weight of typical packaging of small to medium packages?<br />Example: 10% + 1lb 10:1<br />10% + 0lbs 10:0<br />0% + 5lbs 0:5<br />0% + 0lbs 0:0',7,4,NULL,'2010-01-13 17:35:01',NULL,NULL),(206,'Larger packages - added packaging percentage:weight','SHIPPING_BOX_PADDING','10:0','What is the weight of typical packaging for Large packages?<br />Example: 10% + 1lb 10:1<br />10% + 0lbs 10:0<br />0% + 5lbs 0:5<br />0% + 0lbs 0:0',7,5,NULL,'2010-01-13 17:35:01',NULL,NULL),(207,'Display Number of Boxes and Weight Status','SHIPPING_BOX_WEIGHT_DISPLAY','3','Display Shipping Weight and Number of Boxes?<br /><br />0= off<br />1= Boxes Only<br />2= Weight Only<br />3= Both Boxes and Weight',7,15,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'), '),(208,'Shipping Estimator Display Settings for Shopping Cart','SHOW_SHIPPING_ESTIMATOR_BUTTON','2','<br />0= Off<br />1= Display as Button on Shopping Cart<br />2= Display as Listing on Shopping Cart Page',7,20,'2010-01-30 23:04:19','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(209,'Display Order Comments on Admin Invoice','ORDER_COMMENTS_INVOICE','1','Do you want to display the Order Comments on the Admin Invoice?<br />0= OFF<br />1= First Comment by Customer only<br />2= All Comments for the Order',7,25,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(210,'Display Order Comments on Admin Packing Slip','ORDER_COMMENTS_PACKING_SLIP','1','Do you want to display the Order Comments on the Admin Packing Slip?<br />0= OFF<br />1= First Comment by Customer only<br />2= All Comments for the Order',7,26,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(211,'Order Free Shipping 0 Weight Status','ORDER_WEIGHT_ZERO_STATUS','0','If there is no weight to the order, does the order have Free Shipping?<br />0= no<br />1= yes<br /><br />Note: When using Free Shipping, Enable the Free Shipping Module this will only show when shipping is free.',7,15,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(212,'Display Product Image','PRODUCT_LIST_IMAGE','1','Do you want to display the Product Image?',8,1,NULL,'2010-01-13 17:35:01',NULL,NULL),(213,'Display Product Manufacturer Name','PRODUCT_LIST_MANUFACTURER','0','Do you want to display the Product Manufacturer Name?',8,2,NULL,'2010-01-13 17:35:01',NULL,NULL),(214,'Display Product Model','PRODUCT_LIST_MODEL','0','Do you want to display the Product Model?',8,3,NULL,'2010-01-13 17:35:01',NULL,NULL),(215,'Display Product Name','PRODUCT_LIST_NAME','2','Do you want to display the Product Name?',8,4,NULL,'2010-01-13 17:35:01',NULL,NULL),(216,'Display Product Price/Add to Cart','PRODUCT_LIST_PRICE','3','Do you want to display the Product Price/Add to Cart',8,5,NULL,'2010-01-13 17:35:01',NULL,NULL),(217,'Display Product Quantity','PRODUCT_LIST_QUANTITY','0','Do you want to display the Product Quantity?',8,6,NULL,'2010-01-13 17:35:01',NULL,NULL),(218,'Display Product Weight','PRODUCT_LIST_WEIGHT','0','Do you want to display the Product Weight?',8,7,NULL,'2010-01-13 17:35:01',NULL,NULL),(219,'Display Product Price/Add to Cart Column Width','PRODUCTS_LIST_PRICE_WIDTH','125','Define the width of the Price/Add to Cart column<br />Default= 125',8,8,NULL,'2010-01-13 17:35:01',NULL,NULL),(220,'Display Category/Manufacturer Filter (0=off; 1=on)','PRODUCT_LIST_FILTER','0','Do you want to display the Category/Manufacturer Filter?',8,9,'2010-01-26 09:32:46','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(221,'Prev/Next Split Page Navigation (1-top, 2-bottom, 3-both)','PREV_NEXT_BAR_LOCATION','3','Sets the location of the Prev/Next Split Page Navigation',8,10,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'1\', \'2\', \'3\'), '),(222,'Display Product Listing Default Sort Order','PRODUCT_LISTING_DEFAULT_SORT_ORDER','','Product Listing Default sort order?<br />NOTE: Leave Blank for Product Sort Order. Sort the Product Listing in the order you wish for the default display to start in to get the sort order setting. Example: 2a',8,15,NULL,'2010-01-13 17:35:01',NULL,NULL),(223,'Display Product Add to Cart Button (0=off; 1=on; 2=on with Qty Box per Product)','PRODUCT_LIST_PRICE_BUY_NOW','1','Do you want to display the Add to Cart Button?<br /><br /><strong>NOTE:</strong> Turn OFF Display Multiple Products Qty Box Status to use Option 2 on with Qty Box per Product',8,20,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(224,'Display Multiple Products Qty Box Status and Set Button Location','PRODUCT_LISTING_MULTIPLE_ADD_TO_CART','3','Do you want to display Add Multiple Products Qty Box and Set Button Location?<br />0= off<br />1= Top<br />2= Bottom<br />3= Both',8,25,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'), '),(225,'Display Product Description','PRODUCT_LIST_DESCRIPTION','150','Do you want to display the Product Description?<br /><br />0= OFF<br />150= Suggested Length, or enter the maximum number of characters to display',8,30,NULL,'2010-01-13 17:35:01',NULL,NULL),(226,'Product Listing Ascending Sort Order','PRODUCT_LIST_SORT_ORDER_ASCENDING','+','What do you want to use to indicate Sort Order Ascending?<br />Default = +',8,40,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_textarea_small('),(227,'Product Listing Descending Sort Order','PRODUCT_LIST_SORT_ORDER_DESCENDING','-','What do you want to use to indicate Sort Order Descending?<br />Default = -',8,41,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_textarea_small('),(228,'Include Product Listing Alpha Sorter Dropdown','PRODUCT_LIST_ALPHA_SORTER','false','Do you want to include an Alpha Filter dropdown on the Product Listing?',8,50,'2010-01-26 09:33:18','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(229,'Include Product Listing Sub Categories Image','PRODUCT_LIST_CATEGORIES_IMAGE_STATUS','true','Do you want to include the Sub Categories Image on the Product Listing?',8,52,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(230,'Include Product Listing Top Categories Image','PRODUCT_LIST_CATEGORIES_IMAGE_STATUS_TOP','true','Do you want to include the Top Categories Image on the Product Listing?',8,53,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(231,'Show SubCategories on Main Page while navigating','PRODUCT_LIST_CATEGORY_ROW_STATUS','1','Show Sub-Categories on Main Page while navigating through Categories<br /><br />0= off<br />1= on',8,60,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(232,'Check stock level','STOCK_CHECK','true','Check to see if sufficent stock is available',9,1,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(233,'Subtract stock','STOCK_LIMITED','true','Subtract product in stock by product orders',9,2,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(234,'Allow Checkout','STOCK_ALLOW_CHECKOUT','true','Allow customer to checkout even if there is insufficient stock',9,3,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(235,'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,'2010-01-13 17:35:01',NULL,NULL),(236,'Stock Re-order level','STOCK_REORDER_LEVEL','5','Define when stock needs to be re-ordered',9,5,NULL,'2010-01-13 17:35:01',NULL,NULL),(237,'Products status in Catalog when out of stock should be set to','SHOW_PRODUCTS_SOLD_OUT','0','Show Products when out of stock<br /><br />0= set product status to OFF<br />1= leave product status ON',9,10,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(238,'Show Sold Out Image in place of Add to Cart','SHOW_PRODUCTS_SOLD_OUT_IMAGE','1','Show Sold Out Image instead of Add to Cart Button<br /><br />0= off<br />1= on',9,11,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(239,'Product Quantity Decimals','QUANTITY_DECIMALS','0','Allow how many decimals on Quantity<br /><br />0= off',9,15,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'), '),(240,'Show Shopping Cart - Delete Checkboxes or Delete Button','SHOW_SHOPPING_CART_DELETE','3','Show on Shopping Cart Delete Button and/or Checkboxes<br /><br />1= Delete Button Only<br />2= Checkbox Only<br />3= Both Delete Button and Checkbox',9,20,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'1\', \'2\', \'3\'), '),(241,'Show Shopping Cart - Update Cart Button Location','SHOW_SHOPPING_CART_UPDATE','3','Show on Shopping Cart Update Cart Button Location as:<br /><br />1= Next to each Qty Box<br />2= Below all Products<br />3= Both Next to each Qty Box and Below all Products',9,22,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'1\', \'2\', \'3\'), '),(242,'Show New Products on empty Shopping Cart Page','SHOW_SHOPPING_CART_EMPTY_NEW_PRODUCTS','1','Show New Products on empty Shopping Cart Page<br />0= off or set the sort order',9,30,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(243,'Show Featured Products on empty Shopping Cart Page','SHOW_SHOPPING_CART_EMPTY_FEATURED_PRODUCTS','2','Show Featured Products on empty Shopping Cart Page<br />0= off or set the sort order',9,31,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(244,'Show Special Products on empty Shopping Cart Page','SHOW_SHOPPING_CART_EMPTY_SPECIALS_PRODUCTS','3','Show Special Products on empty Shopping Cart Page<br />0= off or set the sort order',9,32,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(245,'Show Upcoming Products on empty Shopping Cart Page','SHOW_SHOPPING_CART_EMPTY_UPCOMING','4','Show Upcoming Products on empty Shopping Cart Page<br />0= off or set the sort order',9,33,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(246,'Show Notice of Combining Shopping Cart on Login','SHOW_SHOPPING_CART_COMBINED','1','When a customer logs in and has a previously stored shopping cart, the products are combined with the existing shopping cart.<br /><br />Do you wish to display a Notice to the customer?<br /><br />0= OFF, do not display a notice<br />1= Yes show notice and go to shopping cart<br />2= Yes show notice, but do not go to shopping cart',9,35,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(247,'Store Page Parse Time','STORE_PAGE_PARSE_TIME','false','Store the time it takes to parse a page',10,1,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(248,'Log Destination','STORE_PAGE_PARSE_TIME_LOG','/home/wayne1/public_html/cache/page_parse_time.log','Directory and filename of the page parse time log',10,2,NULL,'2010-01-13 17:35:01',NULL,NULL),(249,'Log Date Format','STORE_PARSE_DATE_TIME_FORMAT','%d/%m/%Y %H:%M:%S','The date format',10,3,NULL,'2010-01-13 17:35:01',NULL,NULL),(250,'Display The Page Parse Time','DISPLAY_PAGE_PARSE_TIME','false','Display the page parse time on the bottom of each page<br />You do not need to store the times to display them in the Catalog',10,4,'2010-02-04 22:05:40','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(251,'Store Database Queries','STORE_DB_TRANSACTIONS','false','Store the database queries in the page parse time log (PHP4 only)',10,5,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(252,'E-Mail Transport Method','EMAIL_TRANSPORT','PHP','Defines the method for sending mail.<br /><strong>PHP</strong> is the default, and uses built-in PHP wrappers for processing.<br />Servers running on Windows and MacOS should change this setting to <strong>SMTP</strong>.<br /><br /><strong>SMTPAUTH</strong> should only be used if your server requires SMTP authorization to send messages. You must also configure your SMTPAUTH settings in the appropriate fields in this admin section.<br /><br /><strong>sendmail</strong> is for linux/unix hosts using the sendmail program on the server<br /><strong>\"sendmail-f\"</strong> is only for servers which require the use of the -f parameter to send mail. This is a security setting often used to prevent spoofing. Will cause errors if your host mailserver is not configured to use it.<br /><br /><strong>Qmail</strong> is used for linux/unix hosts running Qmail as sendmail wrapper at /var/qmail/bin/sendmail.',12,1,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'PHP\', \'sendmail\', \'sendmail-f\', \'smtp\', \'smtpauth\', \'Qmail\'),'),(253,'SMTP Email Account Mailbox','EMAIL_SMTPAUTH_MAILBOX','online@aaasurvival.com','Enter the mailbox account name (me@mydomain.com) supplied by your host. This is the account name that your host requires for SMTP authentication.<br />Only required if using SMTP Authentication for email.',12,101,'2010-02-01 16:05:27','2010-01-13 17:35:01',NULL,NULL),(254,'SMTP Email Account Password','EMAIL_SMTPAUTH_PASSWORD','M2XX>y:m,kp2','Enter the password for your SMTP mailbox. <br />Only required if using SMTP Authentication for email.',12,101,'2010-02-01 16:06:05','2010-01-13 17:35:01','zen_cfg_password_display',NULL),(255,'SMTP Email Mail Host','EMAIL_SMTPAUTH_MAIL_SERVER','mail.aaasurvival.com','Enter the DNS name of your SMTP mail server.<br />ie: mail.mydomain.com<br />or 55.66.77.88<br />Only required if using SMTP Authentication for email.',12,101,'2010-02-01 16:04:23','2010-01-13 17:35:01',NULL,NULL),(256,'SMTP Email Mail Server Port','EMAIL_SMTPAUTH_MAIL_SERVER_PORT','26','Enter the IP port number that your SMTP mailserver operates on.<br />Only required if using SMTP Authentication for email.',12,101,'2010-02-01 16:04:37','2010-01-13 17:35:01',NULL,NULL),(257,'Convert currencies for Text emails','CURRENCIES_TRANSLATIONS','&pound;,Â£:&euro;,â‚¬','What currency conversions do you need for Text emails?<br />Default = &amp;pound;,Â£:&amp;euro;,â‚¬',12,120,NULL,'2003-11-21 00:00:00',NULL,'zen_cfg_textarea_small('),(258,'E-Mail Linefeeds','EMAIL_LINEFEED','LF','Defines the character sequence used to separate mail headers.',12,2,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'LF\', \'CRLF\'),'),(259,'Use MIME HTML When Sending Emails','EMAIL_USE_HTML','false','Send e-mails in HTML format',12,3,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(260,'Verify E-Mail Addresses Through DNS','ENTRY_EMAIL_ADDRESS_CHECK','false','Verify e-mail address through a DNS server',6,6,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(261,'Send E-Mails','SEND_EMAILS','true','Send out e-mails',12,5,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(262,'Email Archiving Active?','EMAIL_ARCHIVE','false','If you wish to have email messages archived/stored when sent, set this to \"true\".',12,6,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(263,'E-Mail Friendly-Errors','EMAIL_FRIENDLY_ERRORS','false','Do you want to display friendly errors if emails fail?  Setting this to false will display PHP errors and likely cause the script to fail. Only set to false while troubleshooting, and true for a live shop.',12,7,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(264,'Email Address (Displayed to Contact you)','STORE_OWNER_EMAIL_ADDRESS','info@aaasurvival.com','Email address of Store Owner.  Used as \"display only\" when informing customers of how to contact you.',12,10,'2010-02-01 15:45:32','2010-01-13 17:35:01',NULL,NULL),(265,'Email Address (sent FROM)','EMAIL_FROM','info@aaasurvival.com','Address from which email messages will be \"sent\" by default. Can be over-ridden at compose-time in admin modules.',12,11,'2010-02-01 15:45:47','2010-01-13 17:35:01',NULL,NULL),(266,'Emails must send from known domain?','EMAIL_SEND_MUST_BE_STORE','Yes','Does your mailserver require that all outgoing emails have their \"from\" address match a known domain that exists on your webserver?<br /><br />This is often required in order to prevent spoofing and spam broadcasts.  If set to Yes, this will cause the email address (sent FROM) to be used as the \"from\" address on all outgoing mail.',12,11,NULL,'0001-01-01 00:00:00',NULL,'zen_cfg_select_option(array(\'No\', \'Yes\'), '),(267,'Email Admin Format?','ADMIN_EXTRA_EMAIL_FORMAT','TEXT','Please select the Admin extra email format',12,12,NULL,'0001-01-01 00:00:00',NULL,'zen_cfg_select_option(array(\'TEXT\', \'HTML\'), '),(268,'Send Copy of Order Confirmation Emails To','SEND_EXTRA_ORDER_EMAILS_TO','online@aaasurvival.com','Send COPIES of order confirmation emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;',12,12,'2010-02-01 15:56:33','2010-01-13 17:35:01',NULL,NULL),(269,'Send Copy of Create Account Emails To - Status','SEND_EXTRA_CREATE_ACCOUNT_EMAILS_TO_STATUS','0','Send copy of Create Account Status<br />0= off 1= on',12,13,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(270,'Send Copy of Create Account Emails To','SEND_EXTRA_CREATE_ACCOUNT_EMAILS_TO','accounts@aaasurvival.com','Send copy of Create Account emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;',12,14,'2010-02-01 16:01:10','2010-01-13 17:35:01',NULL,NULL),(271,'Send Copy of Tell a Friend Emails To - Status','SEND_EXTRA_TELL_A_FRIEND_EMAILS_TO_STATUS','0','Send copy of Tell a Friend Status<br />0= off 1= on',12,15,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(272,'Send Copy of Tell a Friend Emails To','SEND_EXTRA_TELL_A_FRIEND_EMAILS_TO','wayne@aaasurvival.com','Send copy of Tell a Friend emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;',12,16,NULL,'2010-01-13 17:35:01',NULL,NULL),(273,'Send Copy of Customer GV Send Emails To - Status','SEND_EXTRA_GV_CUSTOMER_EMAILS_TO_STATUS','0','Send copy of Customer GV Send Status<br />0= off 1= on',12,17,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(274,'Send Copy of Customer GV Send Emails To','SEND_EXTRA_GV_CUSTOMER_EMAILS_TO','wayne@aaasurvival.com','Send copy of Customer GV Send emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;',12,18,NULL,'2010-01-13 17:35:01',NULL,NULL),(275,'Send Copy of Admin GV Mail Emails To - Status','SEND_EXTRA_GV_ADMIN_EMAILS_TO_STATUS','0','Send copy of Admin GV Mail Status<br />0= off 1= on',12,19,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(276,'Send Copy of Customer Admin GV Mail Emails To','SEND_EXTRA_GV_ADMIN_EMAILS_TO','wayne@aaasurvival.com','Send copy of Admin GV Mail emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;',12,20,NULL,'2010-01-13 17:35:01',NULL,NULL),(277,'Send Copy of Admin Discount Coupon Mail Emails To - Status','SEND_EXTRA_DISCOUNT_COUPON_ADMIN_EMAILS_TO_STATUS','0','Send copy of Admin Discount Coupon Mail Status<br />0= off 1= on',12,21,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(278,'Send Copy of Customer Admin Discount Coupon Mail Emails To','SEND_EXTRA_DISCOUNT_COUPON_ADMIN_EMAILS_TO','wayne@aaasurvival.com','Send copy of Admin Discount Coupon Mail emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;',12,22,NULL,'2010-01-13 17:35:01',NULL,NULL),(279,'Send Copy of Admin Orders Status Emails To - Status','SEND_EXTRA_ORDERS_STATUS_ADMIN_EMAILS_TO_STATUS','0','Send copy of Admin Orders Status Status<br />0= off 1= on',12,23,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(280,'Send Copy of Admin Orders Status Emails To','SEND_EXTRA_ORDERS_STATUS_ADMIN_EMAILS_TO','wayne@aaasurvival.com','Send copy of Admin Orders Status emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;',12,24,NULL,'2010-01-13 17:35:01',NULL,NULL),(281,'Send Notice of Pending Reviews Emails To - Status','SEND_EXTRA_REVIEW_NOTIFICATION_EMAILS_TO_STATUS','0','Send copy of Pending Reviews Status<br />0= off 1= on',12,25,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(282,'Send Notice of Pending Reviews Emails To','SEND_EXTRA_REVIEW_NOTIFICATION_EMAILS_TO','wayne@aaasurvival.com','Send copy of Pending Reviews emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;',12,26,NULL,'2010-01-13 17:35:01',NULL,NULL),(283,'Set \"Contact Us\" Email Dropdown List','CONTACT_US_LIST','','On the \"Contact Us\" Page, set the list of email addresses , in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;',12,40,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_textarea('),(284,'Allow Guest To Tell A Friend','ALLOW_GUEST_TO_TELL_A_FRIEND','false','Allow guests to tell a friend about a product. <br />If set to [false], then tell-a-friend will prompt for login if user is not already logged in.',12,50,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(285,'Contact Us - Show Store Name and Address','CONTACT_US_STORE_NAME_ADDRESS','1','Include Store Name and Address<br />0= off 1= on',12,50,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(286,'Send Low Stock Emails','SEND_LOWSTOCK_EMAIL','0','When stock level is at or below low stock level send an email<br />0= off<br />1= on',12,60,'2010-01-13 17:35:01','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(287,'Send Low Stock Emails To','SEND_EXTRA_LOW_STOCK_EMAILS_TO','wayne@aaasurvival.com','When stock level is at or below low stock level send an email to this address, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;',12,61,NULL,'2010-01-13 17:35:01',NULL,NULL),(288,'Display \"Newsletter Unsubscribe\" Link?','SHOW_NEWSLETTER_UNSUBSCRIBE_LINK','true','Show \"Newsletter Unsubscribe\" link in the \"Information\" side-box?',12,70,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(289,'Audience-Select Count Display','AUDIENCE_SELECT_DISPLAY_COUNTS','true','When displaying lists of available audiences/recipients, should the recipients-count be included? <br /><em>(This may make things slower if you have a lot of customers or complex audience queries)</em>',12,90,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(290,'Enable Downloads','DOWNLOAD_ENABLED','false','Enable the products download functions.',13,1,'2010-01-26 05:39:18','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(291,'Download by Redirect','DOWNLOAD_BY_REDIRECT','false','Use browser redirection for download. Disable on non-Unix systems.<br /><br />Note: Set /pub to 777 when redirect is true',13,2,'2010-01-26 05:39:37','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(292,'Download by streaming','DOWNLOAD_IN_CHUNKS','false','If download-by-redirect is disabled, and your PHP memory_limit setting is under 8 MB, you might need to enable this setting so that files are streamed in smaller segments to the browser.<br /><br />Has no effect if Download By Redirect is enabled.',13,2,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(293,'Download Expiration (Number of Days)','DOWNLOAD_MAX_DAYS','7','Set number of days before the download link expires. 0 means no limit.',13,3,NULL,'2010-01-13 17:35:01',NULL,''),(294,'Number of Downloads Allowed - Per Product','DOWNLOAD_MAX_COUNT','0','Set the maximum number of downloads. 0 means no download authorized.',13,4,'2010-01-26 05:41:06','2010-01-13 17:35:01',NULL,''),(295,'Downloads Controller Update Status Value','DOWNLOADS_ORDERS_STATUS_UPDATED_VALUE','4','What orders_status resets the Download days and Max Downloads - Default is 4',13,10,'2010-01-26 05:41:33','2010-01-13 17:35:01',NULL,NULL),(296,'Downloads Controller Order Status Value >= lower value','DOWNLOADS_CONTROLLER_ORDERS_STATUS','2','Downloads Controller Order Status Value - Default >= 2<br /><br />Downloads are available for checkout based on the orders status. Orders with orders status greater than this value will be available for download. The orders status is set for an order by the Payment Modules. Set the lower range for this range.',13,12,'2010-01-13 17:35:01','2010-01-13 17:35:01',NULL,NULL),(297,'Downloads Controller Order Status Value <= upper value','DOWNLOADS_CONTROLLER_ORDERS_STATUS_END','4','Downloads Controller Order Status Value - Default <= 4<br /><br />Downloads are available for checkout based on the orders status. Orders with orders status less than this value will be available for download. The orders status is set for an order by the Payment Modules.  Set the upper range for this range.',13,13,'2010-01-13 17:35:01','2010-01-13 17:35:01',NULL,NULL),(298,'Enable Price Factor','ATTRIBUTES_ENABLED_PRICE_FACTOR','true','Enable the Attributes Price Factor.',13,25,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(299,'Enable Qty Price Discount','ATTRIBUTES_ENABLED_QTY_PRICES','false','Enable the Attributes Quantity Price Discounts.',13,26,'2010-01-26 05:41:54','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(300,'Enable Attribute Images','ATTRIBUTES_ENABLED_IMAGES','false','Enable the Attributes Images.',13,28,'2010-01-26 05:42:06','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(301,'Enable Text Pricing by word or letter','ATTRIBUTES_ENABLED_TEXT_PRICES','false','Enable the Attributes Text Pricing by word or letter.',13,35,'2010-01-26 05:42:33','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(302,'Text Pricing - Spaces are Free','TEXT_SPACES_FREE','0','On Text pricing Spaces are Free<br /><br />0= off 1= on',13,36,'2010-01-26 05:42:42','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(303,'Read Only option type - Ignore for Add to Cart','PRODUCTS_OPTIONS_TYPE_READONLY_IGNORED','1','When a Product only uses READONLY attributes, should the Add to Cart button be On or Off?<br />0= OFF<br />1= ON',13,37,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(304,'Enable GZip Compression','GZIP_LEVEL','0','0= off 1= on',14,1,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(305,'Session Directory','SESSION_WRITE_DIRECTORY','/home/wayne1/public_html/cache','If sessions are file based, store them in this directory.',15,1,NULL,'2010-01-13 17:35:01',NULL,NULL),(306,'Cookie Domain','SESSION_USE_FQDN','True','If True the full domain name will be used to store the cookie, e.g. www.mydomain.com. If False only a partial domain name will be used, e.g. mydomain.com. If you are unsure about this, always leave set to true.',15,2,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(307,'Force Cookie Use','SESSION_FORCE_COOKIE_USE','False','Force the use of sessions when cookies are only enabled.',15,2,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(308,'Check SSL Session ID','SESSION_CHECK_SSL_SESSION_ID','False','Validate the SSL_SESSION_ID on every secure HTTPS page request.',15,3,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(309,'Check User Agent','SESSION_CHECK_USER_AGENT','False','Validate the clients browser user agent on every page request.',15,4,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(310,'Check IP Address','SESSION_CHECK_IP_ADDRESS','False','Validate the clients IP address on every page request.',15,5,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(311,'Prevent Spider Sessions','SESSION_BLOCK_SPIDERS','True','Prevent known spiders from starting a session.',15,6,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(312,'Recreate Session','SESSION_RECREATE','True','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,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(313,'IP to Host Conversion Status','SESSION_IP_TO_HOST_ADDRESS','true','Convert IP Address to Host Address<br /><br />Note: on some servers this can slow down the initial start of a session or execution of Emails',15,10,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(314,'Length of the redeem code','SECURITY_CODE_LENGTH','10','Enter the length of the redeem code<br />The longer the more secure',16,1,NULL,'2010-01-13 17:35:01',NULL,NULL),(315,'Default Order Status For Zero Balance Orders','DEFAULT_ZERO_BALANCE_ORDERS_STATUS_ID','2','When an order\'s balance is zero, this order status will be assigned to it.',16,0,NULL,'2010-01-13 17:35:01','zen_get_order_status_name','zen_cfg_pull_down_order_statuses('),(316,'New Signup Discount Coupon ID#','NEW_SIGNUP_DISCOUNT_COUPON','','Select the coupon<br />',16,75,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_coupon_id('),(317,'New Signup Gift Voucher Amount','NEW_SIGNUP_GIFT_VOUCHER_AMOUNT','','Leave blank for none<br />Or enter an amount ie. 10 for $10.00',16,76,NULL,'2010-01-13 17:35:01',NULL,NULL),(318,'Maximum Discount Coupons Per Page','MAX_DISPLAY_SEARCH_RESULTS_DISCOUNT_COUPONS','20','Number of Discount Coupons to list per Page',16,81,NULL,'2010-01-13 17:35:01',NULL,NULL),(319,'Maximum Discount Coupon Report Results Per Page','MAX_DISPLAY_SEARCH_RESULTS_DISCOUNT_COUPONS_REPORTS','20','Number of Discount Coupons to list on Reports Page',16,81,NULL,'2010-01-13 17:35:01',NULL,NULL),(320,'Credit Card Enable Status - VISA','CC_ENABLED_VISA','1','Accept VISA 0= off 1= on',17,1,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(321,'Credit Card Enable Status - MasterCard','CC_ENABLED_MC','1','Accept MasterCard 0= off 1= on',17,2,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(322,'Credit Card Enable Status - AmericanExpress','CC_ENABLED_AMEX','0','Accept AmericanExpress 0= off 1= on',17,3,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(323,'Credit Card Enable Status - Diners Club','CC_ENABLED_DINERS_CLUB','0','Accept Diners Club 0= off 1= on',17,4,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(324,'Credit Card Enable Status - Discover Card','CC_ENABLED_DISCOVER','0','Accept Discover Card 0= off 1= on',17,5,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(325,'Credit Card Enable Status - JCB','CC_ENABLED_JCB','0','Accept JCB 0= off 1= on',17,6,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(326,'Credit Card Enable Status - AUSTRALIAN BANKCARD','CC_ENABLED_AUSTRALIAN_BANKCARD','0','Accept AUSTRALIAN BANKCARD 0= off 1= on',17,7,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(327,'Credit Card Enable Status - SOLO','CC_ENABLED_SOLO','0','Accept SOLO Card 0= off 1= on',17,8,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(328,'Credit Card Enable Status - Switch','CC_ENABLED_SWITCH','0','Accept SWITCH Card 0= off 1= on',17,9,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(329,'Credit Card Enable Status - Maestro','CC_ENABLED_MAESTRO','0','Accept MAESTRO Card 0= off 1= on',17,10,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(330,'Credit Card Enabled - Show on Payment','SHOW_ACCEPTED_CREDIT_CARDS','0','Show accepted credit cards on Payment page?<br />0= off<br />1= As Text<br />2= As Images<br /><br />Note: images and text must be defined in both the database and language file for specific credit card types.',17,50,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(331,'This module is installed','MODULE_ORDER_TOTAL_GV_STATUS','true','',6,1,NULL,'2003-10-30 22:16:40',NULL,'zen_cfg_select_option(array(\'true\'),'),(332,'Sort Order','MODULE_ORDER_TOTAL_GV_SORT_ORDER','840','Sort order of display.',6,2,NULL,'2003-10-30 22:16:40',NULL,NULL),(333,'Queue Purchases','MODULE_ORDER_TOTAL_GV_QUEUE','true','Do you want to queue purchases of the Gift Voucher?',6,3,NULL,'2003-10-30 22:16:40',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(334,'Include Shipping','MODULE_ORDER_TOTAL_GV_INC_SHIPPING','true','Include Shipping in calculation',6,5,NULL,'2003-10-30 22:16:40',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(335,'Include Tax','MODULE_ORDER_TOTAL_GV_INC_TAX','true','Include Tax in calculation.',6,6,NULL,'2003-10-30 22:16:40',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(336,'Re-calculate Tax','MODULE_ORDER_TOTAL_GV_CALC_TAX','None','Re-Calculate Tax',6,7,NULL,'2003-10-30 22:16:40',NULL,'zen_cfg_select_option(array(\'None\', \'Standard\', \'Credit Note\'),'),(337,'Tax Class','MODULE_ORDER_TOTAL_GV_TAX_CLASS','0','Use the following tax class when treating Gift Voucher as Credit Note.',6,0,NULL,'2003-10-30 22:16:40','zen_get_tax_class_title','zen_cfg_pull_down_tax_classes('),(338,'Credit including Tax','MODULE_ORDER_TOTAL_GV_CREDIT_TAX','false','Add tax to purchased Gift Voucher when crediting to Account',6,8,NULL,'2003-10-30 22:16:40',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(339,'Set Order Status','MODULE_ORDER_TOTAL_GV_ORDER_STATUS_ID','0','Set the status of orders made where GV covers full payment',6,0,NULL,'2010-01-13 17:35:01','zen_get_order_status_name','zen_cfg_pull_down_order_statuses('),(340,'This module is installed','MODULE_ORDER_TOTAL_LOWORDERFEE_STATUS','true','',6,1,NULL,'2003-10-30 22:16:43',NULL,'zen_cfg_select_option(array(\'true\'),'),(341,'Sort Order','MODULE_ORDER_TOTAL_LOWORDERFEE_SORT_ORDER','400','Sort order of display.',6,2,NULL,'2003-10-30 22:16:43',NULL,NULL),(342,'Allow Low Order Fee','MODULE_ORDER_TOTAL_LOWORDERFEE_LOW_ORDER_FEE','false','Do you want to allow low order fees?',6,3,NULL,'2003-10-30 22:16:43',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(343,'Order Fee For Orders Under','MODULE_ORDER_TOTAL_LOWORDERFEE_ORDER_UNDER','50','Add the low order fee to orders under this amount.',6,4,NULL,'2003-10-30 22:16:43','currencies->format',NULL),(344,'Order Fee','MODULE_ORDER_TOTAL_LOWORDERFEE_FEE','5','For Percentage Calculation - include a % Example: 10%<br />For a flat amount just enter the amount - Example: 5 for $5.00',6,5,NULL,'2003-10-30 22:16:43','',NULL),(345,'Attach Low Order Fee On Orders Made','MODULE_ORDER_TOTAL_LOWORDERFEE_DESTINATION','both','Attach low order fee for orders sent to the set destination.',6,6,NULL,'2003-10-30 22:16:43',NULL,'zen_cfg_select_option(array(\'national\', \'international\', \'both\'),'),(346,'Tax Class','MODULE_ORDER_TOTAL_LOWORDERFEE_TAX_CLASS','0','Use the following tax class on the low order fee.',6,7,NULL,'2003-10-30 22:16:43','zen_get_tax_class_title','zen_cfg_pull_down_tax_classes('),(347,'No Low Order Fee on Virtual Products','MODULE_ORDER_TOTAL_LOWORDERFEE_VIRTUAL','false','Do not charge Low Order Fee when cart is Virtual Products Only',6,8,NULL,'2004-04-20 22:16:43',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(348,'No Low Order Fee on Gift Vouchers','MODULE_ORDER_TOTAL_LOWORDERFEE_GV','false','Do not charge Low Order Fee when cart is Gift Vouchers Only',6,9,NULL,'2004-04-20 22:16:43',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(349,'This module is installed','MODULE_ORDER_TOTAL_SHIPPING_STATUS','true','',6,1,NULL,'2003-10-30 22:16:46',NULL,'zen_cfg_select_option(array(\'true\'),'),(350,'Sort Order','MODULE_ORDER_TOTAL_SHIPPING_SORT_ORDER','200','Sort order of display.',6,2,NULL,'2003-10-30 22:16:46',NULL,NULL),(351,'Allow Free Shipping','MODULE_ORDER_TOTAL_SHIPPING_FREE_SHIPPING','false','Do you want to allow free shipping?',6,3,NULL,'2003-10-30 22:16:46',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(352,'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,'2003-10-30 22:16:46','currencies->format',NULL),(353,'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,'2003-10-30 22:16:46',NULL,'zen_cfg_select_option(array(\'national\', \'international\', \'both\'),'),(354,'This module is installed','MODULE_ORDER_TOTAL_SUBTOTAL_STATUS','true','',6,1,NULL,'2003-10-30 22:16:49',NULL,'zen_cfg_select_option(array(\'true\'),'),(355,'Sort Order','MODULE_ORDER_TOTAL_SUBTOTAL_SORT_ORDER','100','Sort order of display.',6,2,NULL,'2003-10-30 22:16:49',NULL,NULL),(356,'This module is installed','MODULE_ORDER_TOTAL_TAX_STATUS','true','',6,1,NULL,'2003-10-30 22:16:52',NULL,'zen_cfg_select_option(array(\'true\'),'),(357,'Sort Order','MODULE_ORDER_TOTAL_TAX_SORT_ORDER','300','Sort order of display.',6,2,NULL,'2003-10-30 22:16:52',NULL,NULL),(358,'This module is installed','MODULE_ORDER_TOTAL_TOTAL_STATUS','true','',6,1,NULL,'2003-10-30 22:16:55',NULL,'zen_cfg_select_option(array(\'true\'),'),(359,'Sort Order','MODULE_ORDER_TOTAL_TOTAL_SORT_ORDER','999','Sort order of display.',6,2,NULL,'2003-10-30 22:16:55',NULL,NULL),(360,'Tax Class','MODULE_ORDER_TOTAL_COUPON_TAX_CLASS','0','Use the following tax class when treating Discount Coupon as Credit Note.',6,0,NULL,'2003-10-30 22:16:36','zen_get_tax_class_title','zen_cfg_pull_down_tax_classes('),(361,'Include Tax','MODULE_ORDER_TOTAL_COUPON_INC_TAX','false','Include Tax in calculation.',6,6,NULL,'2003-10-30 22:16:36',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(362,'Sort Order','MODULE_ORDER_TOTAL_COUPON_SORT_ORDER','280','Sort order of display.',6,2,NULL,'2003-10-30 22:16:36',NULL,NULL),(363,'Include Shipping','MODULE_ORDER_TOTAL_COUPON_INC_SHIPPING','false','Include Shipping in calculation',6,5,NULL,'2003-10-30 22:16:36',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(364,'This module is installed','MODULE_ORDER_TOTAL_COUPON_STATUS','true','',6,1,NULL,'2003-10-30 22:16:36',NULL,'zen_cfg_select_option(array(\'true\'),'),(365,'Re-calculate Tax','MODULE_ORDER_TOTAL_COUPON_CALC_TAX','Standard','Re-Calculate Tax',6,7,NULL,'2003-10-30 22:16:36',NULL,'zen_cfg_select_option(array(\'None\', \'Standard\', \'Credit Note\'),'),(366,'Admin Demo Status','ADMIN_DEMO','0','Admin Demo should be on?<br />0= off 1= on',6,0,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(368,'Text product option type','PRODUCTS_OPTIONS_TYPE_TEXT','1','Numeric value of the text product option type',6,NULL,'2010-01-13 17:35:01','2010-01-13 17:35:01',NULL,NULL),(369,'Radio button product option type','PRODUCTS_OPTIONS_TYPE_RADIO','2','Numeric value of the radio button product option type',6,NULL,'2010-01-13 17:35:01','2010-01-13 17:35:01',NULL,NULL),(370,'Check box product option type','PRODUCTS_OPTIONS_TYPE_CHECKBOX','3','Numeric value of the check box product option type',6,NULL,'2010-01-13 17:35:01','2010-01-13 17:35:01',NULL,NULL),(371,'File product option type','PRODUCTS_OPTIONS_TYPE_FILE','4','Numeric value of the file product option type',6,NULL,'2010-01-13 17:35:01','2010-01-13 17:35:01',NULL,NULL),(372,'ID for text and file products options values','PRODUCTS_OPTIONS_VALUES_TEXT_ID','0','Numeric value of the products_options_values_id used by the text and file attributes.',6,NULL,'2010-01-13 17:35:01','2010-01-13 17:35:01',NULL,NULL),(568,'One Page Checkout','FEC_ONE_PAGE','false','Activate One Page Checkout?<br />Default = false (includes checkout_confirmation page)',31,11,NULL,'2010-01-30 00:31:37',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(567,'Fast and Easy Checkout','FEC_STATUS','true','Activate Fast and Easy Checkout? (note: Easy Sign-up and Login must be disabled separately)',31,10,'2010-01-30 01:13:23','2010-01-30 00:31:37',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(375,'Read Only option type','PRODUCTS_OPTIONS_TYPE_READONLY','5','Numeric value of the file product option type',6,NULL,'2010-01-13 17:35:01','2010-01-13 17:35:01',NULL,NULL),(376,'Products Info - Products Option Name Sort Order','PRODUCTS_OPTIONS_SORT_ORDER','0','Sort order of Option Names for Products Info<br />0= Sort Order, Option Name<br />1= Option Name',18,35,'2010-01-13 17:35:01','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(377,'Products Info - Product Option Value of Attributes Sort Order','PRODUCTS_OPTIONS_SORT_BY_PRICE','1','Sort order of Product Option Values of Attributes for Products Info<br />0= Sort Order, Price<br />1= Sort Order, Option Value Name',18,36,'2010-01-13 17:35:01','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(378,'Product Info - Show Option Values Name Below Attributes Image','PRODUCT_IMAGES_ATTRIBUTES_NAMES','1','Product Info - Show the name of the Option Value beneath the Attribute Image?<br />0= off 1= on',18,41,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(379,'Product Info - Show Sales Discount Savings Status','SHOW_SALE_DISCOUNT_STATUS','1','Product Info - Show the amount of discount savings?<br />0= off 1= on',18,45,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(380,'Product Info - Show Sales Discount Savings Dollars or Percentage','SHOW_SALE_DISCOUNT','1','Product Info - Show the amount of discount savings display as:<br />1= % off 2= $amount off',18,46,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'1\', \'2\'), '),(381,'Product Info - Show Sales Discount Savings Percentage Decimals','SHOW_SALE_DISCOUNT_DECIMALS','0','Product Info - Show discount savings display as a Percentage with how many decimals?:<br />Default= 0',18,47,NULL,'2010-01-13 17:35:01',NULL,NULL),(382,'Product Info - Price is Free Image or Text Status','OTHER_IMAGE_PRICE_IS_FREE_ON','1','Product Info - Show the Price is Free Image or Text on Displayed Price<br />0= Text<br />1= Image',18,50,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(383,'Product Info - Price is Call for Price Image or Text Status','PRODUCTS_PRICE_IS_CALL_IMAGE_ON','1','Product Info - Show the Price is Call for Price Image or Text on Displayed Price<br />0= Text<br />1= Image',18,51,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(384,'Product Quantity Box Status - Adding New Products','PRODUCTS_QTY_BOX_STATUS','1','What should the Default Quantity Box Status be set to when adding New Products?<br /><br />0= off<br />1= on<br />NOTE: This will show a Qty Box when ON and default the Add to Cart to 1',18,55,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(385,'Product Reviews Require Approval','REVIEWS_APPROVAL','1','Do product reviews require approval?<br /><br />Note: When Review Status is off, it will also not show<br /><br />0= off 1= on',18,62,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(386,'Meta Tags - Include Product Model in Title','META_TAG_INCLUDE_MODEL','0','Do you want to include the Product Model in the Meta Tag Title?<br /><br />0= off 1= on',18,69,'2010-07-16 20:40:55','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(387,'Meta Tags - Include Product Price in Title','META_TAG_INCLUDE_PRICE','0','Do you want to include the Product Price in the Meta Tag Title?<br /><br />0= off 1= on',18,70,'2010-07-16 20:41:03','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(388,'Meta Tags Generated Description Maximum Length?','MAX_META_TAG_DESCRIPTION_LENGTH','50','Set Generated Meta Tag Description Maximum Length to (words) Default 50:',18,71,NULL,'2010-01-13 17:35:01','',''),(389,'Also Purchased Products Columns per Row','SHOW_PRODUCT_INFO_COLUMNS_ALSO_PURCHASED_PRODUCTS','3','Also Purchased Products Columns per Row<br />0= off or set the sort order',18,72,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\', \'5\', \'6\', \'7\', \'8\', \'9\', \'10\', \'11\', \'12\'), '),(390,'Previous Next - Navigation Bar Position','PRODUCT_INFO_PREVIOUS_NEXT','1','Location of Previous/Next Navigation Bar<br />0= off<br />1= Top of Page<br />2= Bottom of Page<br />3= Both Top and Bottom of Page',18,21,'2010-01-13 17:35:01','2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Off\'), array(\'id\'=>\'1\', \'text\'=>\'Top of Page\'), array(\'id\'=>\'2\', \'text\'=>\'Bottom of Page\'), array(\'id\'=>\'3\', \'text\'=>\'Both Top & Bottom of Page\')),'),(391,'Previous Next - Sort Order','PRODUCT_INFO_PREVIOUS_NEXT_SORT','1','Products Display Order by<br />0= Product ID<br />1= Product Name<br />2= Model<br />3= Price, Product Name<br />4= Price, Model<br />5= Product Name, Model<br />6= Product Sort Order',18,22,'2010-01-13 17:35:01','2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Product ID\'), array(\'id\'=>\'1\', \'text\'=>\'Name\'), array(\'id\'=>\'2\', \'text\'=>\'Product Model\'), array(\'id\'=>\'3\', \'text\'=>\'Product Price - Name\'), array(\'id\'=>\'4\', \'text\'=>\'Product Price - Model\'), array(\'id\'=>\'5\', \'text\'=>\'Product Name - Model\'), array(\'id\'=>\'6\', \'text\'=>\'Product Sort Order\')),'),(392,'Previous Next - Button and Image Status','SHOW_PREVIOUS_NEXT_STATUS','0','Button and Product Image status settings are:<br />0= Off<br />1= On',18,20,'2010-01-13 17:35:01','2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Off\'), array(\'id\'=>\'1\', \'text\'=>\'On\')),'),(393,'Previous Next - Button and Image Settings','SHOW_PREVIOUS_NEXT_IMAGES','0','Show Previous/Next Button and Product Image Settings<br />0= Button Only<br />1= Button and Product Image<br />2= Product Image Only',18,21,'2010-01-13 17:35:01','2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Button Only\'), array(\'id\'=>\'1\', \'text\'=>\'Button and Product Image\'), array(\'id\'=>\'2\', \'text\'=>\'Product Image Only\')),'),(394,'Previous Next - Image Width?','PREVIOUS_NEXT_IMAGE_WIDTH','50','Previous/Next Image Width?',18,22,NULL,'2010-01-13 17:35:01','',''),(395,'Previous Next - Image Height?','PREVIOUS_NEXT_IMAGE_HEIGHT','40','Previous/Next Image Height?',18,23,NULL,'2010-01-13 17:35:01','',''),(396,'Previous Next - Navigation Includes Category Position','PRODUCT_INFO_CATEGORIES','1','Product\'s Category Image and Name Alignment Above Previous/Next Navigation Bar<br />0= off<br />1= Align Left<br />2= Align Center<br />3= Align Right',18,20,'2010-01-13 17:35:01','2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Off\'), array(\'id\'=>\'1\', \'text\'=>\'Align Left\'), array(\'id\'=>\'2\', \'text\'=>\'Align Center\'), array(\'id\'=>\'3\', \'text\'=>\'Align Right\')),'),(397,'Previous Next - Navigation Includes Category Name and Image Status','PRODUCT_INFO_CATEGORIES_IMAGE_STATUS','2','Product\'s Category Image and Name Status<br />0= Category Name and Image always shows<br />1= Category Name only<br />2= Category Name and Image when not blank',18,20,'2010-01-13 17:35:01','2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Category Name and Image Always\'), array(\'id\'=>\'1\', \'text\'=>\'Category Name only\'), array(\'id\'=>\'2\', \'text\'=>\'Category Name and Image when not blank\')),'),(398,'Column Width - Left Boxes','BOX_WIDTH_LEFT','150px','Width of the Left Column Boxes<br />px may be included<br />Default = 150px',19,1,NULL,'2003-11-21 22:16:36',NULL,NULL),(399,'Column Width - Right Boxes','BOX_WIDTH_RIGHT','150px','Width of the Right Column Boxes<br />px may be included<br />Default = 150px',19,2,NULL,'2003-11-21 22:16:36',NULL,NULL),(400,'Bread Crumbs Navigation Separator','BREAD_CRUMBS_SEPARATOR','&nbsp;::&nbsp;','Enter the separator symbol to appear between the Navigation Bread Crumb trail<br />Note: Include spaces with the &amp;nbsp; symbol if you want them part of the separator.<br />Default = &amp;nbsp;::&amp;nbsp;',19,3,NULL,'2003-11-21 22:16:36',NULL,'zen_cfg_textarea_small('),(401,'Define Breadcrumb Status','DEFINE_BREADCRUMB_STATUS','1','Enable the Breadcrumb Trail Links?<br />0= OFF<br />1= ON<br />2= Off for Home Page Only',19,4,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(402,'Bestsellers - Number Padding','BEST_SELLERS_FILLER','&nbsp;','What do you want to Pad the numbers with?<br />Default = &amp;nbsp;',19,5,NULL,'2003-11-21 22:16:36',NULL,'zen_cfg_textarea_small('),(403,'Bestsellers - Truncate Product Names','BEST_SELLERS_TRUNCATE','35','What size do you want to truncate the Product Names?<br />Default = 35',19,6,NULL,'2003-11-21 22:16:36',NULL,NULL),(404,'Bestsellers - Truncate Product Names followed by ...','BEST_SELLERS_TRUNCATE_MORE','true','When truncated Product Names follow with ...<br />Default = true',19,7,'2003-03-21 13:08:25','2003-03-21 11:42:47',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(405,'Categories Box - Show Specials Link','SHOW_CATEGORIES_BOX_SPECIALS','true','Show Specials Link in the Categories Box',19,8,'2003-03-21 13:08:25','2003-03-21 11:42:47',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(406,'Categories Box - Show Products New Link','SHOW_CATEGORIES_BOX_PRODUCTS_NEW','true','Show Products New Link in the Categories Box',19,9,'2010-01-24 23:04:39','2003-03-21 11:42:47',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(407,'Shopping Cart Box Status','SHOW_SHOPPING_CART_BOX_STATUS','1','Shopping Cart Shows<br />0= Always<br />1= Only when full<br />2= Only when full but not when viewing the Shopping Cart',19,10,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(408,'Categories Box - Show Featured Products Link','SHOW_CATEGORIES_BOX_FEATURED_PRODUCTS','true','Show Featured Products Link in the Categories Box',19,11,'2003-03-21 13:08:25','2003-03-21 11:42:47',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(409,'Categories Box - Show Products All Link','SHOW_CATEGORIES_BOX_PRODUCTS_ALL','true','Show Products All Link in the Categories Box',19,12,'2003-03-21 13:08:25','2003-03-21 11:42:47',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(410,'Column Left Status - Global','COLUMN_LEFT_STATUS','1','Show Column Left, unless page override exists?<br />0= Column Left is always off<br />1= Column Left is on, unless page override',19,15,'2010-01-18 10:32:33','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(411,'Column Right Status - Global','COLUMN_RIGHT_STATUS','1','Show Column Right, unless page override exists?<br />0= Column Right is always off<br />1= Column Right is on, unless page override',19,16,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(412,'Column Width - Left','COLUMN_WIDTH_LEFT','150px','Width of the Left Column<br />px may be included<br />Default = 150px',19,20,NULL,'2003-11-21 22:16:36',NULL,NULL),(413,'Column Width - Right','COLUMN_WIDTH_RIGHT','150px','Width of the Right Column<br />px may be included<br />Default = 150px',19,21,NULL,'2003-11-21 22:16:36',NULL,NULL),(414,'Categories Separator between links Status','SHOW_CATEGORIES_SEPARATOR_LINK','1','Show Category Separator between Category Names and Links?<br />0= off<br />1= on',19,24,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(415,'Categories Separator between the Category Name and Count','CATEGORIES_SEPARATOR','-&gt;','What separator do you want between the Category name and the count?<br />Default = -&amp;gt;',19,25,NULL,'2003-11-21 22:16:36',NULL,'zen_cfg_textarea_small('),(416,'Categories Separator between the Category Name and Sub Categories','CATEGORIES_SEPARATOR_SUBS','|_&nbsp;','What separator do you want between the Category name and Sub Category Name?<br />Default = |_&amp;nbsp;',19,26,NULL,'2004-03-25 22:16:36',NULL,'zen_cfg_textarea_small('),(417,'Categories Count Prefix','CATEGORIES_COUNT_PREFIX','&nbsp;(','What do you want to Prefix the count with?<br />Default= (',19,27,NULL,'2003-01-21 22:16:36',NULL,'zen_cfg_textarea_small('),(418,'Categories Count Suffix','CATEGORIES_COUNT_SUFFIX',')','What do you want as a Suffix to the count?<br />Default= )',19,28,NULL,'2003-01-21 22:16:36',NULL,'zen_cfg_textarea_small('),(419,'Categories SubCategories Indent','CATEGORIES_SUBCATEGORIES_INDENT','&nbsp;&nbsp;','What do you want to use as the subcategories indent?<br />Default= &nbsp;&nbsp;',19,29,NULL,'2004-06-24 22:16:36',NULL,'zen_cfg_textarea_small('),(420,'Categories with 0 Products Status','CATEGORIES_COUNT_ZERO','0','Show Category Count for 0 Products?<br />0= off<br />1= on',19,30,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(421,'Split Categories Box','CATEGORIES_SPLIT_DISPLAY','False','Split the categories box display by product type',19,31,'2010-02-01 18:55:24','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(422,'Shopping Cart - Show Totals','SHOW_TOTALS_IN_CART','1','Show Totals Above Shopping Cart?<br />0= off<br />1= on: Items Weight Amount<br />2= on: Items Weight Amount, but no weight when 0<br />3= on: Items Amount',19,31,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'), '),(423,'Customer Greeting - Show on Index Page','SHOW_CUSTOMER_GREETING','0','Always Show Customer Greeting on Index?<br />0= off<br />1= on',19,40,'2010-01-18 08:47:08','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(424,'Categories - Always Show on Main Page','SHOW_CATEGORIES_ALWAYS','1','Always Show Categories on Main Page<br />0= off<br />1= on<br />Default category can be set to Top Level or a Specific Top Level',19,45,'2010-02-09 11:07:23','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(425,'Main Page - Opens with Category','CATEGORIES_START_MAIN','0','0= Top Level Categories<br />Or enter the Category ID#<br />Note: Sub Categories can also be used Example: 3_10',19,46,'2010-01-24 22:44:55','2010-01-13 17:35:01','',''),(426,'Categories - Always Open to Show SubCategories','SHOW_CATEGORIES_SUBCATEGORIES_ALWAYS','1','Always Show Categories and SubCategories<br />0= off, just show Top Categories<br />1= on, Always show Categories and SubCategories when selected',19,47,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(427,'Banner Display Groups - Header Position 1','SHOW_BANNERS_GROUP_SET1','','The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Header Position 1?<br />Leave blank for none',19,55,NULL,'2010-01-13 17:35:01','',''),(428,'Banner Display Groups - Header Position 2','SHOW_BANNERS_GROUP_SET2','','The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Header Position 2?<br />Leave blank for none',19,56,NULL,'2010-01-13 17:35:01','',''),(429,'Banner Display Groups - Header Position 3','SHOW_BANNERS_GROUP_SET3','','The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Header Position 3?<br />Leave blank for none',19,57,NULL,'2010-01-13 17:35:01','',''),(430,'Banner Display Groups - Footer Position 1','SHOW_BANNERS_GROUP_SET4','','The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Footer Position 1?<br />Leave blank for none',19,65,NULL,'2010-01-13 17:35:01','',''),(431,'Banner Display Groups - Footer Position 2','SHOW_BANNERS_GROUP_SET5','','The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Footer Position 2?<br />Leave blank for none',19,66,NULL,'2010-01-13 17:35:01','',''),(432,'Banner Display Groups - Footer Position 3','SHOW_BANNERS_GROUP_SET6','Wide-Banners','The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br /><br />Default Group is Wide-Banners<br /><br />What Banner Group(s) do you want to use in the Footer Position 3?<br />Leave blank for none',19,67,NULL,'2010-01-13 17:35:01','',''),(433,'Banner Display Groups - Side Box banner_box','SHOW_BANNERS_GROUP_SET7','SideBox-Banners','The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br />Default Group is SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Side Box - banner_box?<br />Leave blank for none',19,70,'2010-01-24 23:07:54','2010-01-13 17:35:01','',''),(434,'Banner Display Groups - Side Box banner_box2','SHOW_BANNERS_GROUP_SET8','SideBox-Banners','The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br />Default Group is SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Side Box - banner_box2?<br />Leave blank for none',19,71,NULL,'2010-01-13 17:35:01','',''),(435,'Banner Display Group - Side Box banner_box_all','SHOW_BANNERS_GROUP_SET_ALL','BannersAll','The Banner Display Group may only be from one (1) Banner Group for the Banner All sidebox<br /><br />Default Group is BannersAll<br /><br />What Banner Group do you want to use in the Side Box - banner_box_all?<br />Leave blank for none',19,72,NULL,'2010-01-13 17:35:01','',''),(436,'Footer - Show IP Address status','SHOW_FOOTER_IP','0','Show Customer IP Address in the Footer<br />0= off<br />1= on<br />Should the Customer IP Address show in the footer?',19,80,'2010-01-19 17:54:59','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(437,'Product Discount Quantities - Add how many blank discounts?','DISCOUNT_QTY_ADD','5','How many blank discount quantities should be added for Product Pricing?',19,90,NULL,'2010-01-13 17:35:01','',''),(438,'Product Discount Quantities - Display how many per row?','DISCOUNT_QUANTITY_PRICES_COLUMN','5','How many discount quantities should show per row on Product Info Pages?',19,95,NULL,'2010-01-13 17:35:01','',''),(439,'Categories/Products Display Sort Order','CATEGORIES_PRODUCTS_SORT_ORDER','0','Categories/Products Display Sort Order<br />0= Categories/Products Sort Order/Name<br />1= Categories/Products Name<br />2= Products Model<br />3= Products Qty+, Products Name<br />4= Products Qty-, Products Name<br />5= Products Price+, Products Name<br />6= Products Price-, Products Name',19,100,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\', \'5\', \'6\'), '),(440,'Option Names and Values Global Add, Copy and Delete Features Status','OPTION_NAMES_VALUES_GLOBAL_STATUS','1','Option Names and Values Global Add, Copy and Delete Features Status<br />0= Hide Features<br />1= Show Features<br />2= Products Model',19,110,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(441,'Categories-Tabs Menu ON/OFF','CATEGORIES_TABS_STATUS','1','Categories-Tabs<br />This enables the display of your store\'s categories as a menu across the top of your header. There are many potential creative uses for this.<br />0= Hide Categories Tabs<br />1= Show Categories Tabs',19,112,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(442,'Site Map - include My Account Links?','SHOW_ACCOUNT_LINKS_ON_SITE_MAP','No','Should the links to My Account show up on the site-map?<br />Note: Spiders will try to index this page, and likely should not be sent to secure pages, since there is no benefit in indexing a login page.<br /><br />Default: false',19,115,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'Yes\', \'No\'), '),(443,'Skip 1-prod Categories','SKIP_SINGLE_PRODUCT_CATEGORIES','True','Skip single-product categories<br />If this option is set to True, then if the customer clicks on a link to a category which only contains a single item, then Zen Cart will take them directly to that product-page, rather than present them with another link to click in order to see the product.<br />Default: True',19,120,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(444,'Use split-login page','USE_SPLIT_LOGIN_MODE','True','The login page can be displayed in two modes: Split or Vertical.<br />In Split mode, the create-account options are accessed by clicking a button to get to the create-account page.  In Vertical mode, the create-account input fields are all displayed inline, below the login field, making one less click for the customer to create their account.<br />Default: False',19,121,'2010-02-01 17:51:39','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(445,'CSS Buttons','IMAGE_USE_CSS_BUTTONS','No','CSS Buttons<br />Use CSS buttons instead of images (GIF/JPG)?<br />Button styles must be configured in the stylesheet if you enable this option.',19,147,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'No\', \'Yes\'), '),(446,'<strong>Down for Maintenance: ON/OFF</strong>','DOWN_FOR_MAINTENANCE','false','Down for Maintenance <br />(true=on false=off)',20,1,'2010-07-14 16:37:12','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(447,'Down for Maintenance: filename','DOWN_FOR_MAINTENANCE_FILENAME','down_for_maintenance','Down for Maintenance filename<br />Note: Do not include the extension<br />Default=down_for_maintenance',20,2,NULL,'2010-01-13 17:35:01',NULL,''),(448,'Down for Maintenance: Hide Header','DOWN_FOR_MAINTENANCE_HEADER_OFF','false','Down for Maintenance: Hide Header <br />(true=hide false=show)',20,3,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(449,'Down for Maintenance: Hide Column Left','DOWN_FOR_MAINTENANCE_COLUMN_LEFT_OFF','false','Down for Maintenance: Hide Column Left <br />(true=hide false=show)',20,4,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(450,'Down for Maintenance: Hide Column Right','DOWN_FOR_MAINTENANCE_COLUMN_RIGHT_OFF','false','Down for Maintenance: Hide Column Right <br />(true=hide false=show)',20,5,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(451,'Down for Maintenance: Hide Footer','DOWN_FOR_MAINTENANCE_FOOTER_OFF','false','Down for Maintenance: Hide Footer <br />(true=hide false=show)',20,6,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(452,'Down for Maintenance: Hide Prices','DOWN_FOR_MAINTENANCE_PRICES_OFF','false','Down for Maintenance: Hide Prices <br />(true=hide false=show)',20,7,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(453,'Down For Maintenance (exclude this IP-Address)','EXCLUDE_ADMIN_IP_FOR_MAINTENANCE','your IP (ADMIN)','This IP Address is able to access the website while it is Down For Maintenance (like webmaster)<br />To enter multiple IP Addresses, separate with a comma. If you do not know your IP Address, check in the Footer of your Shop.',20,8,'2003-03-21 13:43:22','2003-03-21 21:20:07',NULL,NULL),(454,'NOTICE PUBLIC Before going Down for Maintenance: ON/OFF','WARN_BEFORE_DOWN_FOR_MAINTENANCE','false','Give a WARNING some time before you put your website Down for Maintenance<br />(true=on false=off)<br />If you set the \'Down For Maintenance: ON/OFF\' to true this will automaticly be updated to false',20,9,'2003-03-21 13:08:25','2003-03-21 11:42:47',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(455,'Date and hours for notice before maintenance','PERIOD_BEFORE_DOWN_FOR_MAINTENANCE','15/05/2003  2-3 PM','Date and hours for notice before maintenance website, enter date and hours for maintenance website',20,10,'2003-03-21 13:08:25','2003-03-21 11:42:47',NULL,NULL),(456,'Display when webmaster has enabled maintenance','DISPLAY_MAINTENANCE_TIME','false','Display when Webmaster has enabled maintenance <br />(true=on false=off)<br />',20,11,'2003-03-21 13:08:25','2003-03-21 11:42:47',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(457,'Display website maintenance period','DISPLAY_MAINTENANCE_PERIOD','true','Display Website maintenance period <br />(true=on false=off)<br />',20,12,'2010-07-14 16:36:22','2003-03-21 11:42:47',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(458,'Website maintenance period','TEXT_MAINTENANCE_PERIOD_TIME','4h00','Enter Website Maintenance period (hh:mm)',20,13,'2010-07-14 16:36:41','2003-03-21 11:42:47',NULL,NULL),(459,'Confirm Terms and Conditions During Checkout Procedure','DISPLAY_CONDITIONS_ON_CHECKOUT','false','Show the Terms and Conditions during the checkout procedure which the customer must agree to.',11,1,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(460,'Confirm Privacy Notice During Account Creation Procedure','DISPLAY_PRIVACY_CONDITIONS','false','Show the Privacy Notice during the account creation procedure which the customer must agree to.',11,2,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(461,'Display Product Image','PRODUCT_NEW_LIST_IMAGE','1102','Do you want to display the Product Image?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',21,1,NULL,'2010-01-13 17:35:01',NULL,NULL),(462,'Display Product Quantity','PRODUCT_NEW_LIST_QUANTITY','1202','Do you want to display the Product Quantity?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',21,2,NULL,'2010-01-13 17:35:01',NULL,NULL),(463,'Display Product Buy Now Button','PRODUCT_NEW_BUY_NOW','1300','Do you want to display the Product Buy Now Button<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',21,3,NULL,'2010-01-13 17:35:01',NULL,NULL),(464,'Display Product Name','PRODUCT_NEW_LIST_NAME','2101','Do you want to display the Product Name?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',21,4,NULL,'2010-01-13 17:35:01',NULL,NULL),(465,'Display Product Model','PRODUCT_NEW_LIST_MODEL','2201','Do you want to display the Product Model?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',21,5,NULL,'2010-01-13 17:35:01',NULL,NULL),(466,'Display Product Manufacturer Name','PRODUCT_NEW_LIST_MANUFACTURER','2302','Do you want to display the Product Manufacturer Name?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',21,6,NULL,'2010-01-13 17:35:01',NULL,NULL),(467,'Display Product Price','PRODUCT_NEW_LIST_PRICE','2402','Do you want to display the Product Price<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',21,7,NULL,'2010-01-13 17:35:01',NULL,NULL),(468,'Display Product Weight','PRODUCT_NEW_LIST_WEIGHT','2502','Do you want to display the Product Weight?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',21,8,NULL,'2010-01-13 17:35:01',NULL,NULL),(469,'Display Product Date Added','PRODUCT_NEW_LIST_DATE_ADDED','2601','Do you want to display the Product Date Added?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',21,9,NULL,'2010-01-13 17:35:01',NULL,NULL),(470,'Display Product Description','PRODUCT_NEW_LIST_DESCRIPTION','150','How many characters do you want to display of the Product Description?<br /><br />0= OFF<br />150= Suggested Length, or enter the maximum number of characters to display',21,10,NULL,'2010-01-13 17:35:01',NULL,NULL),(471,'Display Product Display - Default Sort Order','PRODUCT_NEW_LIST_SORT_DEFAULT','8','What Sort Order Default should be used for New Products Display?<br />Default= 6 for Date New to Old<br /><br />1= Products Name<br />2= Products Name Desc<br />3= Price low to high, Products Name<br />4= Price high to low, Products Name<br />5= Model<br />6= Date Added desc<br />7= Date Added<br />8= Product Sort Order',21,11,'2010-01-25 14:47:40','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'1\', \'2\', \'3\', \'4\', \'5\', \'6\', \'7\', \'8\'), '),(472,'Default Products New Group ID','PRODUCT_NEW_LIST_GROUP_ID','21','Warning: Only change this if your Products New Group ID has changed from the default of 21<br />What is the configuration_group_id for New Products Listings?',21,12,NULL,'2010-01-13 17:35:01',NULL,NULL),(473,'Display Multiple Products Qty Box Status and Set Button Location','PRODUCT_NEW_LISTING_MULTIPLE_ADD_TO_CART','3','Do you want to display Add Multiple Products Qty Box and Set Button Location?<br />0= off<br />1= Top<br />2= Bottom<br />3= Both',21,25,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'), '),(474,'Mask Upcoming Products from being include as New Products','SHOW_NEW_PRODUCTS_UPCOMING_MASKED','1','Do you want to mask Upcoming Products from being included as New Products in Listing, Sideboxes and Centerbox?<br />0= off<br />1= on',21,30,'2010-01-26 07:11:21','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(475,'Display Product Image','PRODUCT_FEATURED_LIST_IMAGE','1102','Do you want to display the Product Image?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',22,1,NULL,'2010-01-13 17:35:01',NULL,NULL),(476,'Display Product Quantity','PRODUCT_FEATURED_LIST_QUANTITY','1202','Do you want to display the Product Quantity?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',22,2,NULL,'2010-01-13 17:35:01',NULL,NULL),(477,'Display Product Buy Now Button','PRODUCT_FEATURED_BUY_NOW','1300','Do you want to display the Product Buy Now Button<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',22,3,NULL,'2010-01-13 17:35:01',NULL,NULL),(478,'Display Product Name','PRODUCT_FEATURED_LIST_NAME','2101','Do you want to display the Product Name?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',22,4,NULL,'2010-01-13 17:35:01',NULL,NULL),(479,'Display Product Model','PRODUCT_FEATURED_LIST_MODEL','2201','Do you want to display the Product Model?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',22,5,NULL,'2010-01-13 17:35:01',NULL,NULL),(480,'Display Product Manufacturer Name','PRODUCT_FEATURED_LIST_MANUFACTURER','2302','Do you want to display the Product Manufacturer Name?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',22,6,NULL,'2010-01-13 17:35:01',NULL,NULL),(481,'Display Product Price','PRODUCT_FEATURED_LIST_PRICE','2402','Do you want to display the Product Price<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',22,7,NULL,'2010-01-13 17:35:01',NULL,NULL),(482,'Display Product Weight','PRODUCT_FEATURED_LIST_WEIGHT','2502','Do you want to display the Product Weight?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',22,8,NULL,'2010-01-13 17:35:01',NULL,NULL),(483,'Display Product Date Added','PRODUCT_FEATURED_LIST_DATE_ADDED','2601','Do you want to display the Product Date Added?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',22,9,NULL,'2010-01-13 17:35:01',NULL,NULL),(484,'Display Product Description','PRODUCT_FEATURED_LIST_DESCRIPTION','150','How many characters do you want to display of the Product Description?<br /><br />0= OFF<br />150= Suggested Length, or enter the maximum number of characters to display',22,10,NULL,'2010-01-13 17:35:01',NULL,NULL),(485,'Display Product Display - Default Sort Order','PRODUCT_FEATURED_LIST_SORT_DEFAULT','1','What Sort Order Default should be used for Featured Product Display?<br />Default= 1 for Product Name<br /><br />1= Products Name<br />2= Products Name Desc<br />3= Price low to high, Products Name<br />4= Price high to low, Products Name<br />5= Model<br />6= Date Added desc<br />7= Date Added<br />8= Product Sort Order',22,11,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'1\', \'2\', \'3\', \'4\', \'5\', \'6\', \'7\', \'8\'), '),(486,'Default Featured Products Group ID','PRODUCT_FEATURED_LIST_GROUP_ID','22','Warning: Only change this if your Featured Products Group ID has changed from the default of 22<br />What is the configuration_group_id for Featured Products Listings?',22,12,NULL,'2010-01-13 17:35:01',NULL,NULL),(487,'Display Multiple Products Qty Box Status and Set Button Location','PRODUCT_FEATURED_LISTING_MULTIPLE_ADD_TO_CART','3','Do you want to display Add Multiple Products Qty Box and Set Button Location?<br />0= off<br />1= Top<br />2= Bottom<br />3= Both',22,25,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'), '),(488,'Display Product Image','PRODUCT_ALL_LIST_IMAGE','1102','Do you want to display the Product Image?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',23,1,NULL,'2010-01-13 17:35:01',NULL,NULL),(489,'Display Product Quantity','PRODUCT_ALL_LIST_QUANTITY','1202','Do you want to display the Product Quantity?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',23,2,NULL,'2010-01-13 17:35:01',NULL,NULL),(490,'Display Product Buy Now Button','PRODUCT_ALL_BUY_NOW','1300','Do you want to display the Product Buy Now Button<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',23,3,NULL,'2010-01-13 17:35:01',NULL,NULL),(491,'Display Product Name','PRODUCT_ALL_LIST_NAME','2101','Do you want to display the Product Name?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',23,4,NULL,'2010-01-13 17:35:01',NULL,NULL),(492,'Display Product Model','PRODUCT_ALL_LIST_MODEL','2201','Do you want to display the Product Model?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',23,5,NULL,'2010-01-13 17:35:01',NULL,NULL),(493,'Display Product Manufacturer Name','PRODUCT_ALL_LIST_MANUFACTURER','2302','Do you want to display the Product Manufacturer Name?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',23,6,NULL,'2010-01-13 17:35:01',NULL,NULL),(494,'Display Product Price','PRODUCT_ALL_LIST_PRICE','2402','Do you want to display the Product Price<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',23,7,NULL,'2010-01-13 17:35:01',NULL,NULL),(495,'Display Product Weight','PRODUCT_ALL_LIST_WEIGHT','2502','Do you want to display the Product Weight?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',23,8,NULL,'2010-01-13 17:35:01',NULL,NULL),(496,'Display Product Date Added','PRODUCT_ALL_LIST_DATE_ADDED','2601','Do you want to display the Product Date Added?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',23,9,NULL,'2010-01-13 17:35:01',NULL,NULL),(497,'Display Product Description','PRODUCT_ALL_LIST_DESCRIPTION','150','How many characters do you want to display of the Product Description?<br /><br />0= OFF<br />150= Suggested Length, or enter the maximum number of characters to display',23,10,NULL,'2010-01-13 17:35:01',NULL,NULL),(498,'Display Product Display - Default Sort Order','PRODUCT_ALL_LIST_SORT_DEFAULT','1','What Sort Order Default should be used for All Products Display?<br />Default= 1 for Product Name<br /><br />1= Products Name<br />2= Products Name Desc<br />3= Price low to high, Products Name<br />4= Price high to low, Products Name<br />5= Model<br />6= Date Added desc<br />7= Date Added<br />8= Product Sort Order',23,11,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'1\', \'2\', \'3\', \'4\', \'5\', \'6\', \'7\', \'8\'), '),(499,'Default Products All Group ID','PRODUCT_ALL_LIST_GROUP_ID','23','Warning: Only change this if your Products All Group ID has changed from the default of 23<br />What is the configuration_group_id for Products All Listings?',23,12,NULL,'2010-01-13 17:35:01',NULL,NULL),(500,'Display Multiple Products Qty Box Status and Set Button Location','PRODUCT_ALL_LISTING_MULTIPLE_ADD_TO_CART','3','Do you want to display Add Multiple Products Qty Box and Set Button Location?<br />0= off<br />1= Top<br />2= Bottom<br />3= Both',23,25,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'), '),(501,'Show New Products on Main Page','SHOW_PRODUCT_INFO_MAIN_NEW_PRODUCTS','0','Show New Products on Main Page<br />0= off or set the sort order',24,65,'2010-01-26 05:52:59','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(502,'Show Featured Products on Main Page','SHOW_PRODUCT_INFO_MAIN_FEATURED_PRODUCTS','2','Show Featured Products on Main Page<br />0= off or set the sort order',24,66,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(503,'Show Special Products on Main Page','SHOW_PRODUCT_INFO_MAIN_SPECIALS_PRODUCTS','0','Show Special Products on Main Page<br />0= off or set the sort order',24,67,'2010-01-26 05:54:03','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(504,'Show Upcoming Products on Main Page','SHOW_PRODUCT_INFO_MAIN_UPCOMING','0','Show Upcoming Products on Main Page<br />0= off or set the sort order',24,68,'2010-01-26 05:54:24','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(505,'Show New Products on Main Page - Category with SubCategories','SHOW_PRODUCT_INFO_CATEGORY_NEW_PRODUCTS','0','Show New Products on Main Page - Category with SubCategories<br />0= off or set the sort order',24,70,'2010-01-26 05:55:32','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(506,'Show Featured Products on Main Page - Category with SubCategories','SHOW_PRODUCT_INFO_CATEGORY_FEATURED_PRODUCTS','0','Show Featured Products on Main Page - Category with SubCategories<br />0= off or set the sort order',24,71,'2010-01-26 06:04:30','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(507,'Show Special Products on Main Page - Category with SubCategories','SHOW_PRODUCT_INFO_CATEGORY_SPECIALS_PRODUCTS','0','Show Special Products on Main Page - Category with SubCategories<br />0= off or set the sort order',24,72,'2010-01-26 05:55:52','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(508,'Show Upcoming Products on Main Page - Category with SubCategories','SHOW_PRODUCT_INFO_CATEGORY_UPCOMING','0','Show Upcoming Products on Main Page - Category with SubCategories<br />0= off or set the sort order',24,73,'2010-01-26 05:56:02','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(509,'Show New Products on Main Page - Errors and Missing Products Page','SHOW_PRODUCT_INFO_MISSING_NEW_PRODUCTS','0','Show New Products on Main Page - Errors and Missing Product<br />0= off or set the sort order',24,75,'2010-01-26 05:56:12','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(510,'Show Featured Products on Main Page - Errors and Missing Products Page','SHOW_PRODUCT_INFO_MISSING_FEATURED_PRODUCTS','0','Show Featured Products on Main Page - Errors and Missing Product<br />0= off or set the sort order',24,76,'2010-01-26 05:56:43','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(511,'Show Special Products on Main Page - Errors and Missing Products Page','SHOW_PRODUCT_INFO_MISSING_SPECIALS_PRODUCTS','0','Show Special Products on Main Page - Errors and Missing Product<br />0= off or set the sort order',24,77,'2010-01-26 05:57:01','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(512,'Show Upcoming Products on Main Page - Errors and Missing Products Page','SHOW_PRODUCT_INFO_MISSING_UPCOMING','0','Show Upcoming Products on Main Page - Errors and Missing Product<br />0= off or set the sort order',24,78,'2010-01-26 05:57:15','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(513,'Show New Products - below Product Listing','SHOW_PRODUCT_INFO_LISTING_BELOW_NEW_PRODUCTS','0','Show New Products below Product Listing<br />0= off or set the sort order',24,85,'2010-01-26 05:57:42','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(514,'Show Featured Products - below Product Listing','SHOW_PRODUCT_INFO_LISTING_BELOW_FEATURED_PRODUCTS','1','Show Featured Products below Product Listing<br />0= off or set the sort order',24,86,'2010-01-26 06:01:02','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(515,'Show Special Products - below Product Listing','SHOW_PRODUCT_INFO_LISTING_BELOW_SPECIALS_PRODUCTS','0','Show Special Products below Product Listing<br />0= off or set the sort order',24,87,'2010-01-26 05:58:23','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(516,'Show Upcoming Products - below Product Listing','SHOW_PRODUCT_INFO_LISTING_BELOW_UPCOMING','0','Show Upcoming Products below Product Listing<br />0= off or set the sort order',24,88,'2010-01-26 05:58:41','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(517,'New Products Columns per Row','SHOW_PRODUCT_INFO_COLUMNS_NEW_PRODUCTS','3','New Products Columns per Row',24,95,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'1\', \'2\', \'3\', \'4\', \'5\', \'6\', \'7\', \'8\', \'9\', \'10\', \'11\', \'12\'), '),(518,'Featured Products Columns per Row','SHOW_PRODUCT_INFO_COLUMNS_FEATURED_PRODUCTS','3','Featured Products Columns per Row',24,96,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'1\', \'2\', \'3\', \'4\', \'5\', \'6\', \'7\', \'8\', \'9\', \'10\', \'11\', \'12\'), '),(519,'Special Products Columns per Row','SHOW_PRODUCT_INFO_COLUMNS_SPECIALS_PRODUCTS','3','Special Products Columns per Row',24,97,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'1\', \'2\', \'3\', \'4\', \'5\', \'6\', \'7\', \'8\', \'9\', \'10\', \'11\', \'12\'), '),(520,'Filter Product Listing for Current Top Level Category When Enabled','SHOW_PRODUCT_INFO_ALL_PRODUCTS','1','Filter the products when Product Listing is enabled for current Main Category or show products from all categories?<br />0= Filter Off 1=Filter On ',24,100,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(521,'Define Main Page Status','DEFINE_MAIN_PAGE_STATUS','1','Enable the Defined Main Page Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,60,'2010-01-13 17:35:01','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(522,'Define Contact Us Status','DEFINE_CONTACT_US_STATUS','1','Enable the Defined Contact Us Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,61,'2010-01-13 17:35:01','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(523,'Define Privacy Status','DEFINE_PRIVACY_STATUS','1','Enable the Defined Privacy Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,62,'2010-01-13 17:35:01','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(524,'Define Shipping & Returns','DEFINE_SHIPPINGINFO_STATUS','1','Enable the Defined Shipping & Returns Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,63,'2010-01-13 17:35:01','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(525,'Define Conditions of Use','DEFINE_CONDITIONS_STATUS','1','Enable the Defined Conditions of Use Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,64,'2010-01-13 17:35:01','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(526,'Define Checkout Success','DEFINE_CHECKOUT_SUCCESS_STATUS','1','Enable the Defined Checkout Success Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,65,'2010-01-13 17:35:01','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(527,'Define Discount Coupon','DEFINE_DISCOUNT_COUPON_STATUS','1','Enable the Defined Discount Coupon Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,66,'2010-01-13 17:35:01','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(528,'Define Site Map Status','DEFINE_SITE_MAP_STATUS','1','Enable the Defined Site Map Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,67,'2010-01-13 17:35:01','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(529,'Define Page-Not-Found Status','DEFINE_PAGE_NOT_FOUND_STATUS','1','Enable the Defined Page-Not-Found Text from define-pages?<br />0= Define Text OFF<br />1= Define Text ON',25,67,'2010-01-13 17:35:01','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(530,'Define Page 2','DEFINE_PAGE_2_STATUS','1','Enable the Defined Page 2 Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,82,'2010-01-13 17:35:01','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(531,'Define Page 3','DEFINE_PAGE_3_STATUS','1','Enable the Defined Page 3 Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,83,'2010-01-13 17:35:01','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(532,'Define Page 4','DEFINE_PAGE_4_STATUS','1','Enable the Defined Page 4 Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,84,'2010-01-13 17:35:01','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(533,'EZ-Pages Display Status - HeaderBar','EZPAGES_STATUS_HEADER','1','Display of EZ-Pages content can be Globally enabled/disabled for the Header Bar<br />0 = Off<br />1 = On<br />2= On ADMIN IP ONLY located in Website Maintenance<br />NOTE: Warning only shows to the Admin and not to the public',30,10,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(534,'EZ-Pages Display Status - FooterBar','EZPAGES_STATUS_FOOTER','1','Display of EZ-Pages content can be Globally enabled/disabled for the Footer Bar<br />0 = Off<br />1 = On<br />2= On ADMIN IP ONLY located in Website Maintenance<br />NOTE: Warning only shows to the Admin and not to the public',30,11,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(535,'EZ-Pages Display Status - Sidebox','EZPAGES_STATUS_SIDEBOX','1','Display of EZ-Pages content can be Globally enabled/disabled for the Sidebox<br />0 = Off<br />1 = On<br />2= On ADMIN IP ONLY located in Website Maintenance<br />NOTE: Warning only shows to the Admin and not to the public',30,12,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(536,'EZ-Pages Header Link Separator','EZPAGES_SEPARATOR_HEADER','&nbsp;::&nbsp;','EZ-Pages Header Link Separator<br />Default = &amp;nbsp;::&amp;nbsp;',30,20,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_textarea_small('),(537,'EZ-Pages Footer Link Separator','EZPAGES_SEPARATOR_FOOTER','&nbsp;::&nbsp;','EZ-Pages Footer Link Separator<br />Default = &amp;nbsp;::&amp;nbsp;',30,21,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_textarea_small('),(538,'EZ-Pages Prev/Next Buttons','EZPAGES_SHOW_PREV_NEXT_BUTTONS','2','Display Prev/Continue/Next buttons on EZ-Pages pages?<br />0=OFF (no buttons)<br />1=\"Continue\"<br />2=\"Prev/Continue/Next\"<br /><br />Default setting: 2.',30,30,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(539,'EZ-Pages Table of Contents for Chapters Status','EZPAGES_SHOW_TABLE_CONTENTS','1','Enable EZ-Pages Table of Contents for Chapters?<br />0= OFF<br />1= ON',30,35,'2010-01-13 17:35:01','2010-01-13 17:35:01',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(540,'EZ-Pages Pages to disable headers','EZPAGES_DISABLE_HEADER_DISPLAY_LIST','','EZ-Pages \"pages\" on which to NOT display the normal \"header\" for your site.<br />Simply list page ID numbers separated by commas with no spaces.<br />Page ID numbers can be obtained from the EZ-Pages screen under Admin->Tools.<br />ie: 1,5,2<br />or leave blank.',30,40,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_textarea_small('),(541,'EZ-Pages Pages to disable footers','EZPAGES_DISABLE_FOOTER_DISPLAY_LIST','','EZ-Pages \"pages\" on which to NOT display the normal \"footer\" for your site.<br />Simply list page ID numbers separated by commas with no spaces.<br />Page ID numbers can be obtained from the EZ-Pages screen under Admin->Tools.<br />ie: 3,7<br />or leave blank.',30,41,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_textarea_small('),(542,'EZ-Pages Pages to disable left-column','EZPAGES_DISABLE_LEFTCOLUMN_DISPLAY_LIST','','EZ-Pages \"pages\" on which to NOT display the normal \"left\" column (of sideboxes) for your site.<br />Simply list page ID numbers separated by commas with no spaces.<br />Page ID numbers can be obtained from the EZ-Pages screen under Admin->Tools.<br />ie: 21<br />or leave blank.',30,42,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_textarea_small('),(543,'EZ-Pages Pages to disable right-column','EZPAGES_DISABLE_RIGHTCOLUMN_DISPLAY_LIST','','EZ-Pages \"pages\" on which to NOT display the normal \"right\" column (of sideboxes) for your site.<br />Simply list page ID numbers separated by commas with no spaces.<br />Page ID numbers can be obtained from the EZ-Pages screen under Admin->Tools.<br />ie: 3,82,13<br />or leave blank.',30,43,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_textarea_small('),(569,'Checkout Confirmation Alternate Text','FEC_CHECKOUT_CONFIRMATION_TEXT','Your order is being processed, please wait...','Alternate text to be displayed on Checkout Confirmation page:',31,12,'2010-01-30 01:13:39','2010-01-30 00:31:37',NULL,NULL),(570,'Display Checkout in Split Column','FEC_SPLIT_CHECKOUT','true','Display the checkout page in a split column format?',31,13,'2010-01-30 01:13:51','2010-01-30 00:31:37',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(571,'Activate Drop Down List','FEC_DROP_DOWN','false','Activate drop down list to appear on checkout page?',31,14,NULL,'2010-01-30 00:31:37',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(572,'Gift Wrapping Module Switch','FEC_GIFT_WRAPPING_SWITCH','false','If the gift wrapping module is installed, set to true to activate',31,15,NULL,'2010-01-30 00:31:37',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(573,'Activate Gift Message Field','FEC_GIFT_MESSAGE','false','Activate gift message field to appear on checkout page?',31,16,NULL,'2010-01-30 00:31:37',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(574,'Drop Down List Options','FEC_DROP_DOWN_LIST','Option 1,Option 2,Option 3,Option 4,Option 5','Enter each option separated by commas:',31,17,NULL,'2010-01-30 00:31:37',NULL,NULL),(575,'Activate Checkbox Field','FEC_CHECKBOX','false','Activate checkbox field to appear on checkout page?',31,18,NULL,'2010-01-30 00:31:37',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(576,'Easy Sign-Up and Login','FEC_EASY_SIGNUP_STATUS','true','Activate Easy Sign-Up and Login?',31,20,'2010-01-30 01:14:21','2010-01-30 00:31:37',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(577,'Display Order Total','FEC_ORDER_TOTAL','false','Display the Order Total sidebox on login?',31,21,NULL,'2010-01-30 00:31:37',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(578,'Display Confidence Box','FEC_CONFIDENCE','true','Display the \"Shop With Confidence\" sidebox on login?',31,22,'2010-02-01 14:47:51','2010-01-30 00:31:37',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(579,'COWOA Position','FEC_NOACCOUNT_POSITION','top','Display the COWOA fieldset above the registration form (top) or beneath the login (side)?',31,23,NULL,'2010-01-30 00:31:37',NULL,'zen_cfg_select_option(array(\'top\', \'side\'),'),(580,'Confirm Email','FEC_CONFIRM_EMAIL','false','Require user to enter email twice for confirmation?',31,24,NULL,'2010-01-30 00:31:37',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(581,'Shipping Address','FEC_SHIPPING_ADDRESS','false','Display the shipping address form on the login and COWOA pages?',31,25,NULL,'2010-01-30 00:31:37',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(582,'Copy Billing','FEC_COPYBILLING','true','If the shipping address form is enabled, should the copy billing address checkbox be checked by default?',31,26,'2010-02-01 14:48:25','2010-01-30 00:31:37',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(583,'Master Password','FEC_MASTER_PASSWORD','false','Allow login to customer account using master password??',31,27,'2010-01-30 01:15:45','2010-01-30 00:31:37',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(584,'Checkout Without Account','FEC_NOACCOUNT_SWITCH','true','Activate Checkout Without an Account?',31,30,'2010-01-30 01:15:56','2010-01-30 00:31:37',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(585,'Checkout Without Account Only','FEC_NOACCOUNT_ONLY_SWITCH','false','Disable regular login/registration and force Checkout Without an Account?',31,31,NULL,'2010-01-30 00:31:37',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(586,'Hide Email Options For No Account','FEC_NOACCOUNT_HIDEEMAIL','true','Hide \"HTML/TEXT-Only\" for checkout without account?',31,32,NULL,'2010-01-30 00:31:37',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(587,'Automatic LogOff for No Account','FEC_NOACCOUNT_LOGOFF','true','Automatically logoff customers without accounts?',31,33,NULL,'2010-01-30 00:31:37',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(588,'Telephone Number','ACCOUNT_TELEPHONE','true','Display telephone number field during account creation and with account information',5,8,NULL,'2010-01-30 00:31:37',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(589,'Installed Modules','','','This is automatically updated. No need to edit.',6,0,NULL,'2010-01-30 22:42:42',NULL,NULL),(826,'Shipping Zone','MODULE_SHIPPING_FEDEX_GROUND_ZONE','0','If a zone is selected, only enable this shipping method for that zone.',6,0,NULL,'2010-07-14 17:38:53','zen_get_zone_class_title','zen_cfg_pull_down_zone_classes('),(827,'Currency Code','MODULE_SHIPPING_FEDEX_GROUND_CURRENCY','USD','3 digit currency code (default = USD)',6,26,NULL,'2010-07-14 17:38:53',NULL,NULL),(828,'Home Delivery: ','MODULE_SHIPPING_FEDEX_GROUND_HOME','true','Offer Home Delivery?',6,30,NULL,'2010-07-14 17:38:53',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(829,'Ground: ','MODULE_SHIPPING_FEDEX_GROUND_GROUND','true','Offer Ground?',6,31,NULL,'2010-07-14 17:38:53',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(830,'International Home Delivery: ','MODULE_SHIPPING_FEDEX_GROUND_INT_HOME','true','Offer International Home Delivery?',6,32,NULL,'2010-07-14 17:38:53',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(831,'International Ground: ','MODULE_SHIPPING_FEDEX_GROUND_INT_GROUND','true','Offer International Ground?',6,33,NULL,'2010-07-14 17:38:53',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(810,'State or Province name','MODULE_SHIPPING_FEDEX_GROUND_STATE','FL','Enter the 2 letter state or province name for the ship-from street address, required for Canada and US',6,16,NULL,'2010-07-14 17:38:53',NULL,NULL),(811,'Postal code','MODULE_SHIPPING_FEDEX_GROUND_POSTAL','33411','Enter the postal code for the ship-from street address, required',6,17,NULL,'2010-07-14 17:38:53',NULL,NULL),(812,'Phone number','MODULE_SHIPPING_FEDEX_GROUND_PHONE','800-976-9206','Enter a contact phone number for your company, required',6,18,NULL,'2010-07-14 17:38:53',NULL,NULL),(813,'Which server to use','MODULE_SHIPPING_FEDEX_GROUND_SERVER','production','You must have an account with Fedex',6,19,NULL,'2010-07-14 17:38:53',NULL,'zen_cfg_select_option(array(\'test\', \'production\'), '),(814,'Drop off type','MODULE_SHIPPING_FEDEX_GROUND_DROPOFF','1','Dropoff type (1 = Regular pickup, 2 = request courier, 3 = drop box, 4 = drop at BSC, 5 = drop at station)?',6,20,NULL,'2010-07-14 17:38:53',NULL,NULL),(815,'Fedex Domestic fixed surcharge?','MODULE_SHIPPING_FEDEX_GROUND_SURCHARGE_DOM','','Fixed surcharge amount to add to domestic shipping charge?',6,21,NULL,'2010-07-14 17:38:53',NULL,NULL),(816,'Fedex Domestic variable surcharge?','MODULE_SHIPPING_FEDEX_GROUND_SURCHARGE_PERCENT_DOM','0','Percentage surcharge amount to add to domestic shipping charge?',6,21,NULL,'2010-07-14 17:38:53',NULL,NULL),(817,'Fedex International fixed surcharge?','MODULE_SHIPPING_FEDEX_GROUND_SURCHARGE_INT','20.00','Fixed surcharge amount to add to iterational shipping charge?',6,22,NULL,'2010-07-14 17:38:53',NULL,NULL),(818,'Fedex International variable surcharge?','MODULE_SHIPPING_FEDEX_GROUND_SURCHARGE_PERCENT_INT','0','Percentage surcharge amount to add to international shipping charge?',6,22,NULL,'2010-07-14 17:38:53',NULL,NULL),(819,'Show List Rates?','MODULE_SHIPPING_FEDEX_GROUND_LIST_RATES','False','This needs to be left set to false',6,22,NULL,'2010-07-14 17:38:53',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(820,'Residential surcharge?','MODULE_SHIPPING_FEDEX_GROUND_RESIDENTIAL','0','Residential Surcharge (in addition to other surcharge) for Express packages within US, or ground packages within Canada?',6,223,NULL,'2010-07-14 17:38:53',NULL,NULL),(821,'Insurance?','MODULE_SHIPPING_FEDEX_GROUND_INSURE','100','Insure packages over what dollar amount?',6,24,NULL,'2010-07-14 17:38:53',NULL,NULL),(822,'Enable Envelope Rates?','MODULE_SHIPPING_FEDEX_GROUND_ENVELOPE','False','Do you want to offer Fedex Envelope rates? All items under 1/2 LB (.23KG) will quote using the envelope rate if True.',6,10,NULL,'2010-07-14 17:38:53',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(823,'Sort rates: ','MODULE_SHIPPING_FEDEX_GROUND_WEIGHT_SORT','High to Low','Sort rates top to bottom: ',6,19,NULL,'2010-07-14 17:38:53',NULL,'zen_cfg_select_option(array(\'High to Low\', \'Low to High\'), '),(824,'Timeout in Seconds','MODULE_SHIPPING_FEDEX_GROUND_TIMEOUT','NONE','Enter the maximum time in seconds you would wait for a rate request from Fedex? Leave NONE for default timeout.',6,22,NULL,'2010-07-14 17:38:53',NULL,NULL),(825,'Tax Class','MODULE_SHIPPING_FEDEX_GROUND_TAX_CLASS','0','Use the following tax class on the shipping fee.',6,25,NULL,'2010-07-14 17:38:53','zen_get_tax_class_title','zen_cfg_pull_down_tax_classes('),(807,'First line of street address','MODULE_SHIPPING_FEDEX_GROUND_ADDRESS_1','2210 Ridgewood Circle','Enter the first line of your ship-from street address, required',6,13,NULL,'2010-07-14 17:38:53',NULL,NULL),(808,'Second line of street address','MODULE_SHIPPING_FEDEX_GROUND_ADDRESS_2','NONE','Enter the second line of your ship-from street address, leave set to NONE if you do not need to specify a second line',6,14,NULL,'2010-07-14 17:38:53',NULL,NULL),(809,'City name','MODULE_SHIPPING_FEDEX_GROUND_CITY','Royal Palm Beach','Enter the city name for the ship-from street address, required',6,15,NULL,'2010-07-14 17:38:53',NULL,NULL),(797,'International First: ','MODULE_SHIPPING_FEDEX_EXPRESS_INT_FIRST','true','Offer International First?',6,37,NULL,'2010-07-14 17:32:39',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(798,'Sort Order','MODULE_SHIPPING_FEDEX_EXPRESS_SORT_ORDER','0','Sort order of display.',6,99,NULL,'2010-07-14 17:32:39',NULL,NULL),(799,'Enable Fedex Shipping','MODULE_SHIPPING_FEDEX_GROUND_STATUS','True','Do you want to offer Fedex shipping?',6,10,NULL,'2010-07-14 17:38:53',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(800,'Your Fedex Account Number','MODULE_SHIPPING_FEDEX_GROUND_ACCOUNT','118483642','Enter the fedex Account Number assigned to you, required',6,11,NULL,'2010-07-14 17:38:53',NULL,NULL),(801,'Your Fedex Meter ID','MODULE_SHIPPING_FEDEX_GROUND_METER','6248509','Enter the Fedex MeterID assigned to you, set to NONE to obtain a new meter number',6,12,NULL,'2010-07-14 17:38:53',NULL,NULL),(802,'cURL Path','MODULE_SHIPPING_FEDEX_GROUND_CURL','NONE','Enter the path to the cURL program, normally, leave this set to NONE to execute cURL using PHP',6,12,NULL,'2010-07-14 17:38:53',NULL,NULL),(803,'cURL Proxy','MODULE_SHIPPING_FEDEX_GROUND_CURL_PROXY','NONE','Enter the Complete Url includeing http:// to your proxy server. If not needed leave set to NONE.',6,12,NULL,'2010-07-14 17:38:53',NULL,NULL),(804,'Debug Mode','MODULE_SHIPPING_FEDEX_GROUND_DEBUG','False','Turn on Debug',6,19,NULL,'2010-07-14 17:38:53',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(805,'Enable Dimensions?','MODULE_SHIPPING_FEDEX_GROUND_DIMENSIONS','False','Do you want to add dimensional support?',6,19,NULL,'2010-07-14 17:38:53',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(806,'Weight Units','MODULE_SHIPPING_FEDEX_GROUND_WEIGHT','LBS','Weight Units:',6,19,NULL,'2010-07-14 17:38:53',NULL,'zen_cfg_select_option(array(\'LBS\', \'KGS\'), '),(790,'Priority Overnight: ','MODULE_SHIPPING_FEDEX_EXPRESS_PRIORITY_OVERNIGHT','true','Offer Priority Overnight?',6,30,NULL,'2010-07-14 17:32:39',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(791,'2Day: ','MODULE_SHIPPING_FEDEX_EXPRESS_2DAY','true','Offer 2Day?',6,31,NULL,'2010-07-14 17:32:39',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(792,'Standard Overnight: ','MODULE_SHIPPING_FEDEX_EXPRESS_STANDARD_OVERNIGHT','true','Offer Standard Overnight?',6,32,NULL,'2010-07-14 17:32:39',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(793,'First Overnight: ','MODULE_SHIPPING_FEDEX_EXPRESS_FIRST_OVERNIGHT','true','Offer First Overnight?',6,33,NULL,'2010-07-14 17:32:39',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(794,'Express Saver: ','MODULE_SHIPPING_FEDEX_EXPRESS_SAVER','true','Offer Express Saver?',6,34,NULL,'2010-07-14 17:32:39',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(795,'International Priority: ','MODULE_SHIPPING_FEDEX_EXPRESS_INT_PRIORITY','true','Offer International Priority?',6,35,NULL,'2010-07-14 17:32:39',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(796,'International Economy: ','MODULE_SHIPPING_FEDEX_EXPRESS_INT_ECONOMY','true','Offer International Economy?',6,36,NULL,'2010-07-14 17:32:39',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(775,'Which server to use','MODULE_SHIPPING_FEDEX_EXPRESS_SERVER','production','You must have an account with Fedex',6,14,NULL,'2010-07-14 17:32:39',NULL,'zen_cfg_select_option(array(\'test\', \'production\'), '),(776,'Drop off type','MODULE_SHIPPING_FEDEX_EXPRESS_DROPOFF','1','Dropoff type (1 = Regular pickup, 2 = request courier, 3 = drop box, 4 = drop at BSC, 5 = drop at station)?',6,15,NULL,'2010-07-14 17:32:39',NULL,NULL),(777,'Fedex Domestic fixed surcharge?','MODULE_SHIPPING_FEDEX_EXPRESS_SURCHARGE_DOM','20.00','Fixed surcharge amount to add to domestic shipping charge?',6,16,NULL,'2010-07-14 17:32:39',NULL,NULL),(778,'Fedex Domestic variable surcharge?','MODULE_SHIPPING_FEDEX_EXPRESS_SURCHARGE_PERCENT_DOM','0','Percentage surcharge amount to add to domestic shipping charge?',6,16,NULL,'2010-07-14 17:32:39',NULL,NULL),(779,'Fedex International fixed surcharge?','MODULE_SHIPPING_FEDEX_EXPRESS_SURCHARGE_INT','20.00','Fixed surcharge amount to add to international shipping charge?',6,17,NULL,'2010-07-14 17:32:39',NULL,NULL),(780,'Fedex International variable surcharge?','MODULE_SHIPPING_FEDEX_EXPRESS_SURCHARGE_PERCENT_INT','0','Percentage surcharge amount to add to international shipping charge?',6,17,NULL,'2010-07-14 17:32:39',NULL,NULL),(781,'Show List Rates?','MODULE_SHIPPING_FEDEX_EXPRESS_LIST_RATES','False','This needs to be left set to false',6,18,NULL,'2010-07-14 17:32:39',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(782,'Residential surcharge?','MODULE_SHIPPING_FEDEX_EXPRESS_RESIDENTIAL','0','Residential Surcharge (in addition to other surcharge) for Express packages within US, or ground packages within Canada?',6,19,NULL,'2010-07-14 17:32:39',NULL,NULL),(783,'Insurance?','MODULE_SHIPPING_FEDEX_EXPRESS_INSURE','100','Insure packages over what dollar amount?',6,20,NULL,'2010-07-14 17:32:39',NULL,NULL),(784,'Enable Envelope Rates?','MODULE_SHIPPING_FEDEX_EXPRESS_ENVELOPE','False','Do you want to offer Fedex Envelope rates? All items under 1/2 LB (.23KG) will quote using the envelope rate if True.',6,21,NULL,'2010-07-14 17:32:39',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(785,'Sort rates: ','MODULE_SHIPPING_FEDEX_EXPRESS_WEIGHT_SORT','High to Low','Sort rates top to bottom: ',6,22,NULL,'2010-07-14 17:32:39',NULL,'zen_cfg_select_option(array(\'High to Low\', \'Low to High\'), '),(786,'Timeout in Seconds','MODULE_SHIPPING_FEDEX_EXPRESS_TIMEOUT','NONE','Enter the maximum time in seconds you would wait for a rate request from Fedex? Leave NONE for default timeout.',6,23,NULL,'2010-07-14 17:32:39',NULL,NULL),(787,'Tax Class','MODULE_SHIPPING_FEDEX_EXPRESS_TAX_CLASS','0','Use the following tax class on the shipping fee.',6,24,NULL,'2010-07-14 17:32:39','zen_get_tax_class_title','zen_cfg_pull_down_tax_classes('),(788,'Shipping Zone','MODULE_SHIPPING_FEDEX_EXPRESS_ZONE','0','If a zone is selected, only enable this shipping method for that zone.',6,0,NULL,'2010-07-14 17:32:39','zen_get_zone_class_title','zen_cfg_pull_down_zone_classes('),(789,'Currency Code','MODULE_SHIPPING_FEDEX_EXPRESS_CURRENCY','USD','Enter 3 digit currency code (default = USD)',6,25,NULL,'2010-07-14 17:32:39',NULL,NULL),(772,'State or Province name','MODULE_SHIPPING_FEDEX_EXPRESS_STATE','FL','Enter the 2 letter state or province name for the ship-from street address, required for Canada and US',6,11,NULL,'2010-07-14 17:32:39',NULL,NULL),(773,'Postal code','MODULE_SHIPPING_FEDEX_EXPRESS_POSTAL','33411','Enter the postal code for the ship-from street address, required',6,12,NULL,'2010-07-14 17:32:39',NULL,NULL),(774,'Phone number','MODULE_SHIPPING_FEDEX_EXPRESS_PHONE','800-976-9206','Enter a contact phone number for your company, required',6,13,NULL,'2010-07-14 17:32:39',NULL,NULL),(765,'cURL Proxy','MODULE_SHIPPING_FEDEX_EXPRESS_CURL_PROXY','NONE','Enter the Complete Url includeing http:// to your proxy server. If not needed leave set to NONE.',6,5,NULL,'2010-07-14 17:32:39',NULL,NULL),(766,'Debug Mode','MODULE_SHIPPING_FEDEX_EXPRESS_DEBUG','False','Turn on Debug',6,6,NULL,'2010-07-14 17:32:39',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(767,'Enable Dimensions?','MODULE_SHIPPING_FEDEX_EXPRESS_DIMENSIONS','False','Do you want to add dimensional support?',6,7,NULL,'2010-07-14 17:32:39',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(768,'Weight Units','MODULE_SHIPPING_FEDEX_EXPRESS_WEIGHT','LBS','Weight Units:',6,7,NULL,'2010-07-14 17:32:39',NULL,'zen_cfg_select_option(array(\'LBS\', \'KGS\'), '),(769,'First line of street address','MODULE_SHIPPING_FEDEX_EXPRESS_ADDRESS_1','2210 Ridgewood Circle','Enter the first line of your ship-from street address, required',6,8,NULL,'2010-07-14 17:32:39',NULL,NULL),(770,'Second line of street address','MODULE_SHIPPING_FEDEX_EXPRESS_ADDRESS_2','NONE','Enter the second line of your ship-from street address, leave set to NONE if you do not need to specify a second line',6,9,NULL,'2010-07-14 17:32:39',NULL,NULL),(745,'Enable this Payment Module','MODULE_PAYMENT_PAYPALDP_STATUS','True','Do you want to enable this payment module?',6,25,NULL,'2010-07-14 17:31:48',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(746,'Live or Sandbox','MODULE_PAYMENT_PAYPALDP_SERVER','live','<strong>Live: </strong> Used to process Live transactions<br><strong>Sandbox: </strong>For developers and testing',6,25,NULL,'2010-07-14 17:31:48',NULL,'zen_cfg_select_option(array(\'live\', \'sandbox\'), '),(747,'Sort order of display.','MODULE_PAYMENT_PAYPALDP_SORT_ORDER','1','Sort order of display. Lowest is displayed first.',6,25,NULL,'2010-07-14 17:31:48',NULL,NULL),(748,'Payment Zone','MODULE_PAYMENT_PAYPALDP_ZONE','0','If a zone is selected, only enable this payment method for that zone.',6,25,NULL,'2010-07-14 17:31:48','zen_get_zone_class_title','zen_cfg_pull_down_zone_classes('),(749,'Set Order Status','MODULE_PAYMENT_PAYPALDP_ORDER_STATUS_ID','2','Set the status of orders paid with this payment module to this value. <br /><strong>Recommended: Processing[2]</strong>',6,25,NULL,'2010-07-14 17:31:48','zen_get_order_status_name','zen_cfg_pull_down_order_statuses('),(750,'Set Unpaid Order Status','MODULE_PAYMENT_PAYPALDP_ORDER_PENDING_STATUS_ID','1','Set the status of unpaid orders made with this payment module to this value. <br /><strong>Recommended: Pending[1]</strong>',6,25,NULL,'2010-07-14 17:31:48','zen_get_order_status_name','zen_cfg_pull_down_order_statuses('),(751,'Set Refund Order Status','MODULE_PAYMENT_PAYPALDP_REFUNDED_STATUS_ID','1','Set the status of refunded orders to this value. <br /><strong>Recommended: Pending[1]</strong>',6,25,NULL,'2010-07-14 17:31:48','zen_get_order_status_name','zen_cfg_pull_down_order_statuses('),(752,'Payment Action','MODULE_PAYMENT_PAYPALDP_TRANSACTION_MODE','Final Sale','How do you want to obtain payment?<br /><strong>Default: Final Sale</strong>',6,25,NULL,'2010-07-14 17:31:48',NULL,'zen_cfg_select_option(array(\'Auth Only\', \'Final Sale\'), '),(753,'Transaction Currency','MODULE_PAYMENT_PAYPALDP_CURRENCY','Selected Currency','Which currency should the order be sent to PayPal as? <br />NOTE: if an unsupported currency is sent to PayPal, it will be auto-converted to USD (or GBP if using UK account)<br /><strong>Default: Selected Currency</strong>',6,25,NULL,'2010-07-14 17:31:48',NULL,'zen_cfg_select_option(array(\'Selected Currency\', \'Only USD\', \'Only AUD\', \'Only CAD\', \'Only EUR\', \'Only GBP\', \'Only CHF\', \'Only CZK\', \'Only DKK\', \'Only HKD\', \'Only HUF\', \'Only JPY\', \'Only NOK\', \'Only NZD\', \'Only PLN\', \'Only SEK\', \'Only SGD\'), '),(715,'Show Split Tax Lines','SHOW_SPLIT_TAX_CHECKOUT','false','If multiple tax rates apply, show each rate as a separate line at checkout',1,22,NULL,'2010-07-14 17:09:22',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(716,'Enable Check/Money Order Module','MODULE_PAYMENT_MONEYORDER_STATUS','True','Do you want to accept Check/Money Order payments?',6,1,NULL,'2010-07-14 17:12:57',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(717,'Make Payable to:','MODULE_PAYMENT_MONEYORDER_PAYTO','aaaSurvival, Inc.','Who should payments be made payable to?',6,1,NULL,'2010-07-14 17:12:57',NULL,NULL),(718,'Sort order of display.','MODULE_PAYMENT_MONEYORDER_SORT_ORDER','10','Sort order of display. Lowest is displayed first.',6,0,NULL,'2010-07-14 17:12:57',NULL,NULL),(719,'Payment Zone','MODULE_PAYMENT_MONEYORDER_ZONE','0','If a zone is selected, only enable this payment method for that zone.',6,2,NULL,'2010-07-14 17:12:57','zen_get_zone_class_title','zen_cfg_pull_down_zone_classes('),(720,'Set Order Status','MODULE_PAYMENT_MONEYORDER_ORDER_STATUS_ID','0','Set the status of orders made with this payment module to this value',6,0,NULL,'2010-07-14 17:12:57','zen_get_order_status_name','zen_cfg_pull_down_order_statuses('),(721,'Enable this Payment Module','MODULE_PAYMENT_PAYPALWPP_STATUS','True','Do you want to enable this payment module?',6,25,NULL,'2010-07-14 17:14:04',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(722,'Live or Sandbox','MODULE_PAYMENT_PAYPALWPP_SERVER','live','<strong>Live: </strong> Used to process Live transactions<br><strong>Sandbox: </strong>For developers and testing',6,25,NULL,'2010-07-14 17:14:04',NULL,'zen_cfg_select_option(array(\'live\', \'sandbox\'), '),(723,'Express Checkout: Require Confirmed Address','MODULE_PAYMENT_PAYPALWPP_CONFIRMED_ADDRESS','No','Do you want to require that your customers use a *confirmed* address when choosing their shipping address in PayPal?',6,25,NULL,'2010-07-14 17:14:04',NULL,'zen_cfg_select_option(array(\'Yes\', \'No\'), '),(724,'Express Checkout: Select Cheapest Shipping Automatically','MODULE_PAYMENT_PAYPALWPP_AUTOSELECT_CHEAPEST_SHIPPING','Yes','When customer returns from PayPal, do we want to automatically select the Cheapest shipping method and skip the shipping page? (making it more *express*)<br />Note: enabling this means the customer does *not* have easy access to select an alternate shipping method (without going back to the Checkout-Step-1 page)',6,25,NULL,'2010-07-14 17:14:04',NULL,'zen_cfg_select_option(array(\'Yes\', \'No\'), '),(725,'Express Checkout: Skip Payment Page','MODULE_PAYMENT_PAYPALWPP_SKIP_PAYMENT_PAGE','Yes','If the customer is checking out with Express Checkout, do you want to skip the checkout payment page, making things more *express*? <br /><strong>(NOTE: The Payment Page will auto-display regardless of this setting if you have Coupons or Gift Certificates enabled in your store.)</strong>',6,25,NULL,'2010-07-14 17:14:04',NULL,'zen_cfg_select_option(array(\'Yes\', \'No\'), '),(726,'Express Checkout: Automatic Account Creation','MODULE_PAYMENT_PAYPALWPP_NEW_ACCT_NOTIFY','Yes','If a visitor is not an existing customer, a Zen Cart account is created for them.  Would you like make it a permanent account and send them an email containing their login information?<br />NOTE: Permanent accounts are auto-created if the customer purchases downloads or gift certificates, regardless of this setting.',6,25,NULL,'2010-07-14 17:14:04',NULL,'zen_cfg_select_option(array(\'Yes\', \'No\'), '),(727,'Sort order of display.','MODULE_PAYMENT_PAYPALWPP_SORT_ORDER','0','Sort order of display. Lowest is displayed first.',6,25,NULL,'2010-07-14 17:14:04',NULL,NULL),(728,'Payment Zone','MODULE_PAYMENT_PAYPALWPP_ZONE','0','If a zone is selected, only enable this payment method for that zone.',6,25,NULL,'2010-07-14 17:14:04','zen_get_zone_class_title','zen_cfg_pull_down_zone_classes('),(729,'Set Order Status','MODULE_PAYMENT_PAYPALWPP_ORDER_STATUS_ID','2','Set the status of orders paid with this payment module to this value. <br /><strong>Recommended: Processing[2]</strong>',6,25,NULL,'2010-07-14 17:14:04','zen_get_order_status_name','zen_cfg_pull_down_order_statuses('),(730,'Set Unpaid Order Status','MODULE_PAYMENT_PAYPALWPP_ORDER_PENDING_STATUS_ID','1','Set the status of unpaid orders made with this payment module to this value. <br /><strong>Recommended: Pending[1]</strong>',6,25,NULL,'2010-07-14 17:14:04','zen_get_order_status_name','zen_cfg_pull_down_order_statuses('),(731,'Set Refund Order Status','MODULE_PAYMENT_PAYPALWPP_REFUNDED_STATUS_ID','1','Set the status of refunded orders to this value. <br /><strong>Recommended: Pending[1]</strong>',6,25,NULL,'2010-07-14 17:14:04','zen_get_order_status_name','zen_cfg_pull_down_order_statuses('),(732,'PayPal Page Style','MODULE_PAYMENT_PAYPALWPP_PAGE_STYLE','Primary','The page-layout style you want customers to see when they visit the PayPal site. You can configure your <strong>Custom Page Styles</strong> in your PayPal Profile settings. This value is case-sensitive.',6,25,NULL,'2010-07-14 17:14:04',NULL,NULL),(733,'Payment Action','MODULE_PAYMENT_PAYPALWPP_TRANSACTION_MODE','Final Sale','How do you want to obtain payment?<br /><strong>Default: Final Sale</strong>',6,25,NULL,'2010-07-14 17:14:04',NULL,'zen_cfg_select_option(array(\'Auth Only\', \'Final Sale\'), '),(734,'Transaction Currency','MODULE_PAYMENT_PAYPALWPP_CURRENCY','Selected Currency','Which currency should the order be sent to PayPal as? <br />NOTE: if an unsupported currency is sent to PayPal, it will be auto-converted to USD (or GBP if using UK account)<br /><strong>Default: Selected Currency</strong>',6,25,NULL,'2010-07-14 17:14:04',NULL,'zen_cfg_select_option(array(\'Selected Currency\', \'Only USD\', \'Only AUD\', \'Only CAD\', \'Only EUR\', \'Only GBP\', \'Only CHF\', \'Only CZK\', \'Only DKK\', \'Only HKD\', \'Only HUF\', \'Only JPY\', \'Only NOK\', \'Only NZD\', \'Only PLN\', \'Only SEK\', \'Only SGD\', \'Only THB\', \'Only MXN\', \'Only ILS\', \'Only PHP\', \'Only TWD\', \'Only BRL\', \'Only MYR\'), '),(735,'Fraud Mgmt Filters - FMF','MODULE_PAYMENT_PAYPALWPP_EC_RETURN_FMF_DETAILS','No','If you have enabled FMF support in your PayPal account and wish to utilize it in your transactions, set this to yes. Otherwise, leave it at No.',6,25,NULL,'2010-07-14 17:14:04',NULL,'zen_cfg_select_option(array(\'No\', \'Yes\'), '),(736,'API Signature -- Username','MODULE_PAYMENT_PAYPALWPP_APIUSERNAME','wayne_api1.aaasurvival.com','The API Username from your PayPal API Signature settings under *API Access*. This value typically looks like an email address and is case-sensitive.',6,25,NULL,'2010-07-14 17:14:04',NULL,NULL),(737,'API Signature -- Password','MODULE_PAYMENT_PAYPALWPP_APIPASSWORD','58ZH28B4BG4EWMGZ','The API Password from your PayPal API Signature settings under *API Access*. This value is a 16-character code and is case-sensitive.',6,25,NULL,'2010-07-14 17:14:04','zen_cfg_password_display','zen_cfg_password_input('),(738,'API Signature -- Signature Code','MODULE_PAYMENT_PAYPALWPP_APISIGNATURE','AFcWxV21C7fd0v3bYYYRCpSSRl31AvWybiHv2OGQ.we96.v5Swn0jXEW','The API Signature from your PayPal API Signature settings under *API Access*. This value is a 56-character code, and is case-sensitive.',6,25,NULL,'2010-07-14 17:14:04','zen_cfg_password_display',''),(739,'PAYFLOW: User','MODULE_PAYMENT_PAYPALWPP_PFUSER','','If you set up one or more additional users on the account, this value is the ID of the user authorized to process transactions. Otherwise it should be the same value as VENDOR. This value is case-sensitive.',6,25,NULL,'2010-07-14 17:14:04',NULL,NULL),(740,'PAYFLOW: Partner','MODULE_PAYMENT_PAYPALWPP_PFPARTNER','ZenCart','Your Payflow Partner linked to your Payflow account. This value is case-sensitive.<br />Typical values: <strong>PayPal</strong> or <strong>ZenCart</strong>',6,25,NULL,'2010-07-14 17:14:04',NULL,NULL),(741,'PAYFLOW: Vendor','MODULE_PAYMENT_PAYPALWPP_PFVENDOR','','Your merchant login ID that you created when you registered for the Payflow Pro account. This value is case-sensitive.',6,25,NULL,'2010-07-14 17:14:04',NULL,NULL),(742,'PAYFLOW: Password','MODULE_PAYMENT_PAYPALWPP_PFPASSWORD','','The 6- to 32-character password that you defined while registering for the account. This value is case-sensitive.',6,25,NULL,'2010-07-14 17:14:04','zen_cfg_password_display','zen_cfg_password_input('),(743,'PayPal Mode','MODULE_PAYMENT_PAYPALWPP_MODULE_MODE','PayPal','Which PayPal API system should be used for processing? <br /><u>Choices:</u><br /><font color=green>For choice #1, you need to supply <strong>API Settings</strong> above.</font><br /><strong>1. PayPal</strong> = Express Checkout with a regular PayPal account<br />or<br /><font color=green>for choices 2 &amp; 3 you need to supply <strong>PAYFLOW settings</strong>, below (and have a Payflow account)</font><br /><strong>2. Payflow-UK</strong> = Website Payments Pro UK Payflow Edition<br /><strong>3. Payflow-US</strong> = Payflow Pro Gateway only<!--<br /><strong>4. PayflowUS+EC</strong> = Payflow Pro with Express Checkout-->',6,25,NULL,'2010-07-14 17:14:04',NULL,'zen_cfg_select_option(array(\'PayPal\', \'Payflow-UK\', \'Payflow-US\'), '),(744,'Debug Mode','MODULE_PAYMENT_PAYPALWPP_DEBUGGING','Log and Email','Would you like to enable debug mode?  A complete detailed log of failed transactions will be emailed to the store owner.',6,25,NULL,'2010-07-14 17:14:04',NULL,'zen_cfg_select_option(array(\'Off\', \'Alerts Only\', \'Log File\', \'Log and Email\'), '),(700,'Compress XML File','SITEMAPXML_COMPRESS','false','Compress Google XML Sitemap file',32,1,NULL,'2010-07-13 22:25:39',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(701,'Lastmod tag format','SITEMAPXML_LASTMOD_FORMAT','date','Lastmod tag format:<br />date - Complete date: YYYY-MM-DD (eg 1997-07-16)<br />full -    Complete date plus hours, minutes and seconds: YYYY-MM-DDThh:mm:ssTZD (eg 1997-07-16T19:20:30+01:00)',32,2,NULL,'2010-07-13 22:25:39',NULL,'zen_cfg_select_option(array(\'date\', \'full\'),'),(702,'Use Existing Files','SITEMAPXML_USE_EXISTING_FILES','false','Use Existing XML Files',32,3,'2010-07-14 21:47:24','2010-07-13 22:25:39',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(703,'Generate language_id for default language','SITEMAPXML_USE_DEFAULT_LANGUAGE','true','Generate language_id parameter for default language',32,4,NULL,'2010-07-13 22:25:39',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(704,'Ping urls','SITEMAPXML_PING_URLS','Google => http://www.google.com/webmasters/sitemaps/ping?sitemap=%s; Yahoo! => http://search.yahooapis.com/SiteExplorerService/V1/ping?sitemap=%s; Ask.com => http://submissions.ask.com/ping?sitemap=%s; Microsoft => http://www.moreover.com/ping?u=%s','List of pinging urls separated by ;',32,10,NULL,'2010-07-13 22:25:39',NULL,'zen_cfg_textarea('),(705,'Products order by','SITEMAPXML_PRODUCTS_ORDERBY','products_sort_order ASC, last_date DESC','',32,20,NULL,'2010-07-13 22:25:39',NULL,NULL),(706,'Products changefreq','SITEMAPXML_PRODUCTS_CHANGEFREQ','weekly','How frequently the Product pages page is likely to change.',32,21,NULL,'2010-07-13 22:25:39',NULL,'zen_cfg_select_option(array(\'always\', \'hourly\', \'daily\', \'weekly\', \'monthly\', \'yearly\', \'never\'),'),(707,'Categories order by','SITEMAPXML_CATEGORIES_ORDERBY','sort_order ASC, last_date DESC','',32,30,NULL,'2010-07-13 22:25:39',NULL,NULL),(708,'Category changefreq','SITEMAPXML_CATEGORIES_CHANGEFREQ','weekly','How frequently the Category pages page is likely to change.',32,31,NULL,'2010-07-13 22:25:39',NULL,'zen_cfg_select_option(array(\'always\', \'hourly\', \'daily\', \'weekly\', \'monthly\', \'yearly\', \'never\'),'),(709,'Reviews order by','SITEMAPXML_REVIEWS_ORDERBY','reviews_rating ASC, last_date DESC','',32,40,NULL,'2010-07-13 22:25:39',NULL,NULL),(710,'Reviews changefreq','SITEMAPXML_REVIEWS_CHANGEFREQ','weekly','How frequently the Category pages page is likely to change.',32,41,NULL,'2010-07-13 22:25:39',NULL,'zen_cfg_select_option(array(\'always\', \'hourly\', \'daily\', \'weekly\', \'monthly\', \'yearly\', \'never\'),'),(711,'EZPages order by','SITEMAPXML_EZPAGES_ORDERBY','sidebox_sort_order ASC, header_sort_order ASC, footer_sort_order ASC','',32,50,NULL,'2010-07-13 22:25:39',NULL,NULL),(712,'EZPages changefreq','SITEMAPXML_EZPAGES_CHANGEFREQ','weekly','How frequently the EZPages pages page is likely to change.',32,51,NULL,'2010-07-13 22:25:39',NULL,'zen_cfg_select_option(array(\'always\', \'hourly\', \'daily\', \'weekly\', \'monthly\', \'yearly\', \'never\'),'),(713,'Testimonials order by','SITEMAPXML_TESTIMONIALS_ORDERBY','last_date DESC','',32,60,NULL,'2010-07-13 22:25:39',NULL,NULL),(714,'Testimonials changefreq','SITEMAPXML_TESTIMONIALS_CHANGEFREQ','weekly','How frequently the EZPages pages page is likely to change.',32,61,NULL,'2010-07-13 22:25:39',NULL,'zen_cfg_select_option(array(\'always\', \'hourly\', \'daily\', \'weekly\', \'monthly\', \'yearly\', \'never\'),'),(832,'Sort Order','MODULE_SHIPPING_FEDEX_GROUND_SORT_ORDER','1','Sort order of display.',6,99,NULL,'2010-07-14 17:38:53',NULL,NULL),(833,'Enable UPS Shipping','MODULE_SHIPPING_UPS_STATUS','True','Do you want to offer UPS shipping?',6,0,NULL,'2010-07-14 17:42:57',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(834,'UPS Pickup Method','MODULE_SHIPPING_UPS_PICKUP','CC','How do you give packages to UPS? CC - Customer Counter, RDP - Daily Pickup, OTP - One Time Pickup, LC - Letter Center, OCA - On Call Air',6,0,NULL,'2010-07-14 17:42:57',NULL,NULL),(835,'UPS Packaging?','MODULE_SHIPPING_UPS_PACKAGE','CP','CP - Your Packaging, ULE - UPS Letter, UT - UPS Tube, UBE - UPS Express Box',6,0,NULL,'2010-07-14 17:42:57',NULL,NULL),(836,'Residential Delivery?','MODULE_SHIPPING_UPS_RES','RES','Quote for Residential (RES) or Commercial Delivery (COM)',6,0,NULL,'2010-07-14 17:42:57',NULL,NULL),(837,'Handling Fee','MODULE_SHIPPING_UPS_HANDLING','20','Handling fee for this shipping method.',6,0,NULL,'2010-07-14 17:42:57',NULL,NULL),(838,'Handling Per Order or Per Box','MODULE_SHIPPING_UPS_HANDLING_METHOD','Order','Do you want to charge Handling Fee Per Order or Per Box?',6,0,NULL,'2010-07-14 17:42:57',NULL,'zen_cfg_select_option(array(\'Order\', \'Box\'), '),(839,'Tax Class','MODULE_SHIPPING_UPS_TAX_CLASS','0','Use the following tax class on the shipping fee.',6,0,NULL,'2010-07-14 17:42:57','zen_get_tax_class_title','zen_cfg_pull_down_tax_classes('),(840,'Tax Basis','MODULE_SHIPPING_UPS_TAX_BASIS','Shipping','On what basis is Shipping Tax calculated. Options are<br />Shipping - Based on customers Shipping Address<br />Billing Based on customers Billing address<br />Store - Based on Store address if Billing/Shipping Zone equals Store zone',6,0,NULL,'2010-07-14 17:42:57',NULL,'zen_cfg_select_option(array(\'Shipping\', \'Billing\', \'Store\'), '),(841,'Shipping Zone','MODULE_SHIPPING_UPS_ZONE','0','If a zone is selected, only enable this shipping method for that zone.',6,0,NULL,'2010-07-14 17:42:57','zen_get_zone_class_title','zen_cfg_pull_down_zone_classes('),(842,'Sort order of display.','MODULE_SHIPPING_UPS_SORT_ORDER','0','Sort order of display. Lowest is displayed first.',6,0,NULL,'2010-07-14 17:42:57',NULL,NULL),(843,'Shipping Methods: <br />Nxt AM, Nxt AM Ltr, Nxt, Nxt Ltr, Nxt PR, Nxt Save, Nxt Save Ltr, 2nd AM, 2nd AM Ltr, 2nd, 2nd Ltr, 3 Day Select, Ground, Canada,World Xp, World Xp Ltr, World Xp Plus, World Xp Plus Ltr, World Expedite, WorldWideSaver','MODULE_SHIPPING_UPS_TYPES','1DM, 1DML, 1DA, 1DAL, 1DAPI, 1DP, 1DPL, 2DM, 2DML, 2DA, 2DAL, 3DS, GND, STD, XPR, XPRL, XDM, XDML, XPD, WXS','Select the UPS services to be offered.',6,13,NULL,'2010-07-14 17:42:57',NULL,'zen_cfg_select_multioption(array(\'1DM\',\'1DML\', \'1DA\', \'1DAL\', \'1DAPI\', \'1DP\', \'1DPL\', \'2DM\', \'2DML\', \'2DA\', \'2DAL\', \'3DS\',\'GND\', \'STD\', \'XPR\', \'XPRL\', \'XDM\', \'XDML\', \'XPD\', \'WXS\'), '),(844,'Enable/Disable URI Mapping','CEON_URI_MAPPING_ENABLED','1','If enabled, any Categories/Products/Manufacturers/EZ-Pages/other pages which have a static URI Mapping specified for them in the database will use those static URIs instead of the standard Zen Cart dynamically-built URIs.<br /><br />0 = off <br />1 = on',33,1,'2010-07-14 20:57:19','2010-07-14 20:30:51',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), ');
/*!40000 ALTER TABLE `zen_configuration` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_configuration_group`
--

DROP TABLE IF EXISTS `zen_configuration_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_configuration_group` (
  `configuration_group_id` int(11) NOT NULL AUTO_INCREMENT,
  `configuration_group_title` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `configuration_group_description` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `sort_order` int(5) DEFAULT NULL,
  `visible` int(1) DEFAULT '1',
  PRIMARY KEY (`configuration_group_id`),
  KEY `idx_visible_zen` (`visible`)
) ENGINE=MyISAM AUTO_INCREMENT=34 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_configuration_group`
--

LOCK TABLES `zen_configuration_group` WRITE;
/*!40000 ALTER TABLE `zen_configuration_group` DISABLE KEYS */;
INSERT INTO `zen_configuration_group` 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,'Regulations','Regulation options',16,1),(12,'E-Mail Options','General settings for E-Mail transport and HTML E-Mails',12,1),(13,'Attribute Settings','Configure products attributes settings',13,1),(14,'GZip Compression','GZip compression options',14,1),(15,'Sessions','Session options',15,1),(16,'GV Coupons','Gift Vouchers and Coupons',16,1),(17,'Credit Cards','Credit Cards Accepted',17,1),(18,'Product Info','Product Info Display Options',18,1),(19,'Layout Settings','Layout Options',19,1),(20,'Website Maintenance','Website Maintenance Options',20,1),(21,'New Listing','New Products Listing',21,1),(22,'Featured Listing','Featured Products Listing',22,1),(23,'All Listing','All Products Listing',23,1),(24,'Index Listing','Index Products Listing',24,1),(25,'Define Page Status','Define Main Pages and HTMLArea Options',25,1),(30,'EZ-Pages Settings','EZ-Pages Settings',30,1),(31,'Fast and Easy Checkout Configuration','Set Fast and Easy Checkout Options',31,1),(32,'Sitemap XML','Sitemap XML Configuration',32,1),(33,'Ceon URI Mapping (SEO)','Set Ceon URI Mapping (SEO) Options',33,1);
/*!40000 ALTER TABLE `zen_configuration_group` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_counter`
--

DROP TABLE IF EXISTS `zen_counter`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_counter` (
  `startdate` char(8) COLLATE utf8_unicode_ci DEFAULT NULL,
  `counter` int(12) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_counter`
--

LOCK TABLES `zen_counter` WRITE;
/*!40000 ALTER TABLE `zen_counter` DISABLE KEYS */;
INSERT INTO `zen_counter` VALUES ('20100113',15009);
/*!40000 ALTER TABLE `zen_counter` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_counter_history`
--

DROP TABLE IF EXISTS `zen_counter_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_counter_history` (
  `startdate` char(8) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `counter` int(12) DEFAULT NULL,
  `session_counter` int(12) DEFAULT NULL,
  PRIMARY KEY (`startdate`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_counter_history`
--

LOCK TABLES `zen_counter_history` WRITE;
/*!40000 ALTER TABLE `zen_counter_history` DISABLE KEYS */;
INSERT INTO `zen_counter_history` VALUES ('20100113',130,6),('20100114',140,12),('20100115',8,5),('20100117',8,4),('20100118',220,12),('20100119',52,31),('20100120',32,16),('20100121',3,3),('20100122',4,3),('20100124',51,1),('20100125',276,32),('20100126',74,26),('20100127',165,22),('20100128',143,25),('20100129',213,28),('20100130',339,39),('20100131',364,32),('20100201',364,37),('20100202',67,18),('20100203',12,9),('20100204',120,33),('20100205',159,28),('20100206',9,9),('20100207',58,19),('20100208',23,6),('20100209',12,11),('20100210',11,11),('20100211',11,11),('20100212',9,9),('20100213',7,7),('20100214',31,14),('20100215',128,18),('20100216',35,10),('20100217',28,16),('20100218',8,6),('20100219',26,26),('20100220',9,9),('20100221',69,62),('20100222',41,41),('20100223',112,112),('20100224',39,27),('20100225',22,18),('20100226',25,25),('20100227',31,30),('20100228',113,78),('20100301',80,22),('20100302',19,13),('20100303',15,15),('20100304',32,23),('20100305',10,10),('20100306',32,20),('20100307',24,23),('20100308',23,23),('20100309',35,35),('20100310',59,31),('20100311',42,30),('20100312',30,30),('20100313',40,29),('20100314',38,38),('20100315',61,49),('20100316',49,40),('20100317',87,69),('20100318',52,52),('20100319',60,53),('20100320',62,43),('20100321',43,14),('20100322',15,15),('20100323',61,38),('20100324',69,67),('20100325',77,75),('20100326',73,70),('20100327',199,142),('20100328',66,65),('20100329',85,67),('20100330',43,36),('20100331',33,33),('20100401',40,34),('20100402',47,21),('20100403',61,33),('20100404',24,24),('20100405',99,55),('20100406',51,42),('20100407',44,35),('20100408',68,68),('20100409',61,61),('20100410',44,44),('20100411',44,28),('20100412',40,30),('20100413',58,45),('20100414',31,31),('20100415',82,42),('20100416',23,23),('20100417',50,23),('20100418',51,36),('20100419',34,18),('20100420',61,43),('20100421',43,43),('20100422',18,16),('20100423',79,69),('20100424',36,25),('20100425',23,23),('20100426',18,18),('20100427',49,49),('20100428',59,52),('20100429',40,30),('20100430',36,34),('20100501',136,136),('20100502',51,51),('20100503',17,17),('20100504',33,33),('20100505',37,36),('20100506',49,49),('20100507',127,83),('20100508',65,65),('20100509',95,95),('20100510',58,49),('20100511',44,39),('20100512',33,33),('20100513',116,34),('20100514',31,31),('20100515',43,20),('20100516',35,26),('20100517',30,18),('20100518',31,31),('20100519',39,28),('20100520',28,23),('20100521',44,42),('20100522',52,52),('20100523',53,53),('20100524',45,44),('20100525',30,30),('20100526',27,25),('20100527',18,18),('20100528',38,38),('20100529',55,55),('20100530',82,81),('20100531',29,24),('20100601',37,26),('20100602',16,16),('20100603',50,33),('20100604',53,52),('20100605',39,39),('20100606',41,40),('20100607',85,42),('20100608',77,41),('20100609',38,38),('20100610',120,47),('20100611',104,63),('20100612',103,54),('20100613',154,128),('20100614',83,67),('20100615',69,51),('20100616',792,367),('20100617',508,329),('20100618',78,70),('20100619',84,84),('20100620',77,77),('20100621',81,78),('20100622',98,92),('20100623',70,64),('20100624',94,68),('20100625',91,87),('20100626',67,59),('20100627',59,58),('20100628',72,67),('20100629',75,72),('20100630',57,57),('20100701',50,50),('20100702',54,48),('20100703',55,55),('20100704',37,33),('20100705',109,75),('20100706',85,85),('20100707',50,49),('20100708',41,35),('20100709',37,37),('20100710',25,22),('20100711',54,43),('20100712',27,18),('20100713',1326,54),('20100714',299,52),('20100715',20,5),('20100716',16,4),('20100717',24,4),('20100718',23,7),('20100719',3,2),('20100720',18,10),('20100721',10,3),('20100722',18,5),('20100723',3,3),('20100724',12,2),('20100725',9,2),('20100726',9,5),('20100727',17,13),('20100728',25,16),('20100729',5,3),('20100730',1,1),('20100731',24,3),('20100801',1,1),('20100802',17,7),('20100803',5,3),('20100804',17,3),('20100805',8,8),('20100806',7,4),('20100807',1,1),('20100808',12,5),('20100809',34,11),('20100810',16,4),('20100811',19,8),('20100812',32,7),('20100813',6,2),('20100814',3,3),('20100815',5,5),('20100817',4,3),('20100818',13,5),('20100819',18,4),('20100820',23,3),('20100821',11,3),('20100822',10,6),('20100823',1,1),('20100824',3,3),('20100825',20,4),('20100826',8,4),('20100827',33,10),('20100828',1,1),('20100829',1,1),('20100830',16,4),('20100831',15,7),('20100901',16,7),('20100902',30,5),('20100903',7,6),('20100904',7,5),('20100905',11,2),('20100906',4,4),('20100907',1,1),('20100908',12,5),('20100909',8,6),('20100910',15,6),('20100911',1,1),('20100912',6,6),('20100913',3,3),('20100914',9,7),('20100916',29,8),('20100917',121,8),('20100918',10,4),('20100919',2,2),('20100920',11,2),('20100921',9,3),('20101016',6,1),('20101017',2,2),('20101018',27,5),('20101019',2,2),('20101020',6,4),('20101021',18,10),('20101022',4,3),('20101023',10,3);
/*!40000 ALTER TABLE `zen_counter_history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_countries`
--

DROP TABLE IF EXISTS `zen_countries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_countries` (
  `countries_id` int(11) NOT NULL AUTO_INCREMENT,
  `countries_name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `countries_iso_code_2` char(2) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `countries_iso_code_3` char(3) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `address_format_id` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`countries_id`),
  KEY `idx_countries_name_zen` (`countries_name`),
  KEY `idx_address_format_id_zen` (`address_format_id`),
  KEY `idx_iso_2_zen` (`countries_iso_code_2`),
  KEY `idx_iso_3_zen` (`countries_iso_code_3`)
) ENGINE=MyISAM AUTO_INCREMENT=241 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_countries`
--

LOCK TABLES `zen_countries` WRITE;
/*!40000 ALTER TABLE `zen_countries` DISABLE KEYS */;
INSERT INTO `zen_countries` VALUES (240,'Aaland Islands','AX','ALA',1),(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',2),(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,'Timor-Leste','TL','TLS',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),(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,'Macao','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','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','ROU',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',6),(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,'Serbia','RS','SRB',1),(238,'Zambia','ZM','ZMB',1),(239,'Zimbabwe','ZW','ZWE',1);
/*!40000 ALTER TABLE `zen_countries` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_coupon_email_track`
--

DROP TABLE IF EXISTS `zen_coupon_email_track`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_coupon_email_track` (
  `unique_id` int(11) NOT NULL AUTO_INCREMENT,
  `coupon_id` int(11) NOT NULL DEFAULT '0',
  `customer_id_sent` int(11) NOT NULL DEFAULT '0',
  `sent_firstname` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `sent_lastname` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `emailed_to` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `date_sent` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`unique_id`),
  KEY `idx_coupon_id_zen` (`coupon_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_coupon_email_track`
--

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

--
-- Table structure for table `zen_coupon_gv_customer`
--

DROP TABLE IF EXISTS `zen_coupon_gv_customer`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_coupon_gv_customer` (
  `customer_id` int(5) NOT NULL DEFAULT '0',
  `amount` decimal(15,4) NOT NULL DEFAULT '0.0000',
  PRIMARY KEY (`customer_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_coupon_gv_customer`
--

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

--
-- Table structure for table `zen_coupon_gv_queue`
--

DROP TABLE IF EXISTS `zen_coupon_gv_queue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_coupon_gv_queue` (
  `unique_id` int(5) NOT NULL AUTO_INCREMENT,
  `customer_id` int(5) NOT NULL DEFAULT '0',
  `order_id` int(5) NOT NULL DEFAULT '0',
  `amount` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `date_created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `ipaddr` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `release_flag` char(1) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'N',
  PRIMARY KEY (`unique_id`),
  KEY `idx_cust_id_order_id_zen` (`customer_id`,`order_id`),
  KEY `idx_release_flag_zen` (`release_flag`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_coupon_gv_queue`
--

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

--
-- Table structure for table `zen_coupon_redeem_track`
--

DROP TABLE IF EXISTS `zen_coupon_redeem_track`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_coupon_redeem_track` (
  `unique_id` int(11) NOT NULL AUTO_INCREMENT,
  `coupon_id` int(11) NOT NULL DEFAULT '0',
  `customer_id` int(11) NOT NULL DEFAULT '0',
  `redeem_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `redeem_ip` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `order_id` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`unique_id`),
  KEY `idx_coupon_id_zen` (`coupon_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_coupon_redeem_track`
--

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

--
-- Table structure for table `zen_coupon_restrict`
--

DROP TABLE IF EXISTS `zen_coupon_restrict`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_coupon_restrict` (
  `restrict_id` int(11) NOT NULL AUTO_INCREMENT,
  `coupon_id` int(11) NOT NULL DEFAULT '0',
  `product_id` int(11) NOT NULL DEFAULT '0',
  `category_id` int(11) NOT NULL DEFAULT '0',
  `coupon_restrict` char(1) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'N',
  PRIMARY KEY (`restrict_id`),
  KEY `idx_coup_id_prod_id_zen` (`coupon_id`,`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_coupon_restrict`
--

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

--
-- Table structure for table `zen_coupons`
--

DROP TABLE IF EXISTS `zen_coupons`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_coupons` (
  `coupon_id` int(11) NOT NULL AUTO_INCREMENT,
  `coupon_type` char(1) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'F',
  `coupon_code` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `coupon_amount` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `coupon_minimum_order` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `coupon_start_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `coupon_expire_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `uses_per_coupon` int(5) NOT NULL DEFAULT '1',
  `uses_per_user` int(5) NOT NULL DEFAULT '0',
  `restrict_to_products` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `restrict_to_categories` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `restrict_to_customers` text COLLATE utf8_unicode_ci,
  `coupon_active` char(1) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'Y',
  `date_created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `date_modified` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `coupon_zone_restriction` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`coupon_id`),
  KEY `idx_active_type_zen` (`coupon_active`,`coupon_type`),
  KEY `idx_coupon_code_zen` (`coupon_code`),
  KEY `idx_coupon_type_zen` (`coupon_type`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_coupons`
--

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

--
-- Table structure for table `zen_coupons_description`
--

DROP TABLE IF EXISTS `zen_coupons_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_coupons_description` (
  `coupon_id` int(11) NOT NULL DEFAULT '0',
  `language_id` int(11) NOT NULL DEFAULT '0',
  `coupon_name` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `coupon_description` text COLLATE utf8_unicode_ci,
  PRIMARY KEY (`coupon_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_coupons_description`
--

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

--
-- Table structure for table `zen_currencies`
--

DROP TABLE IF EXISTS `zen_currencies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_currencies` (
  `currencies_id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `code` char(3) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `symbol_left` varchar(24) COLLATE utf8_unicode_ci DEFAULT NULL,
  `symbol_right` varchar(24) COLLATE utf8_unicode_ci DEFAULT NULL,
  `decimal_point` char(1) COLLATE utf8_unicode_ci DEFAULT NULL,
  `thousands_point` char(1) COLLATE utf8_unicode_ci DEFAULT NULL,
  `decimal_places` char(1) COLLATE utf8_unicode_ci DEFAULT NULL,
  `value` float(13,8) DEFAULT NULL,
  `last_updated` datetime DEFAULT NULL,
  PRIMARY KEY (`currencies_id`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_currencies`
--

LOCK TABLES `zen_currencies` WRITE;
/*!40000 ALTER TABLE `zen_currencies` DISABLE KEYS */;
INSERT INTO `zen_currencies` VALUES (1,'US Dollar','USD','$','','.',',','2',1.00000000,'2010-01-13 17:35:01'),(2,'Euro','EUR','&euro;','','.',',','2',0.74129999,'2010-01-13 17:35:01'),(3,'GB Pound','GBP','&pound;','','.',',','2',0.50300002,'2010-01-13 17:35:01'),(4,'Canadian Dollar','CAD','$','','.',',','2',1.10590005,'2010-01-13 17:35:01'),(5,'Australian Dollar','AUD','$','','.',',','2',1.24070001,'2010-01-13 17:35:01');
/*!40000 ALTER TABLE `zen_currencies` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_customers`
--

DROP TABLE IF EXISTS `zen_customers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_customers` (
  `customers_id` int(11) NOT NULL AUTO_INCREMENT,
  `customers_gender` char(1) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `customers_firstname` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `customers_lastname` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `customers_dob` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `customers_email_address` varchar(96) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `customers_nick` varchar(96) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `customers_default_address_id` int(11) NOT NULL DEFAULT '0',
  `customers_telephone` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `customers_fax` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `customers_password` varchar(40) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `customers_newsletter` char(1) COLLATE utf8_unicode_ci DEFAULT NULL,
  `customers_group_pricing` int(11) NOT NULL DEFAULT '0',
  `customers_email_format` varchar(4) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'TEXT',
  `customers_authorization` int(1) NOT NULL DEFAULT '0',
  `customers_referral` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `customers_paypal_payerid` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `customers_paypal_ec` tinyint(1) unsigned NOT NULL DEFAULT '0',
  `COWOA_account` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`customers_id`),
  KEY `idx_email_address_zen` (`customers_email_address`),
  KEY `idx_referral_zen` (`customers_referral`(10)),
  KEY `idx_grp_pricing_zen` (`customers_group_pricing`),
  KEY `idx_nick_zen` (`customers_nick`),
  KEY `idx_newsletter_zen` (`customers_newsletter`)
) ENGINE=MyISAM AUTO_INCREMENT=29 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_customers`
--

LOCK TABLES `zen_customers` WRITE;
/*!40000 ALTER TABLE `zen_customers` DISABLE KEYS */;
INSERT INTO `zen_customers` VALUES (17,'m','Juan','Bautista','0001-01-01 00:00:00','craigslist@mycbay.com','',17,'222-333-5555','','4ba7fcacce54cf190130ee72f6454926:88','1',0,'TEXT',0,'','',0,0),(18,'','JOHN','BRAKE','0001-01-01 00:00:00','eorder@adirondakchairs.net','',18,'','','557bf09a32ff9b6dff09998df40565a9:11','0',0,'TEXT',0,'','2H5JR9R6C3V4C',0,0),(19,'m','Wayne','Sauvola','0001-01-01 00:00:00','wsauvola@aol.com','',19,'5615065608','','1780643d5369cd65f81dbda802edda88:bc','0',0,'TEXT',0,'','',0,0),(20,'m','John','Brake','0001-01-01 00:00:00','jhbrake@live.com','',20,'248-240-6863','','2f9d0859a4fadc12f54e47581edfe632:aa','1',0,'TEXT',0,'','',0,1),(21,'m','John','Brake','0001-01-01 00:00:00','jhbrake@live.com','',21,'248-240-6863','','9c3822b21570de3daceabcfc6a9b3a15:67','1',0,'TEXT',0,'','',0,1),(22,'','Jennifer','Ware','0001-01-01 00:00:00','jennifer@herdware.net','',22,'','','affd4a7bc879555791b42dd4a6851466:85','0',0,'TEXT',0,'','E4X8DGXCQ2JMW',0,0),(23,'m','Joe','Buyer','0001-01-01 00:00:00','joe@schmo.com','',23,'222-555-9999','','69673af6fb0011e58f2e8d76098d8a3c:1e','0',0,'TEXT',0,'','',0,1),(24,'m','Phil','Frey','0001-01-01 00:00:00','philfrey81@yahoo.com','',24,'6142829159','','9063f448f006d2f17b496a5d162a6e56:15','0',0,'TEXT',0,'','',0,1),(25,'','Johannes','Muelmenstaedt','0001-01-01 00:00:00','jmuelmen@ucsd.edu','',25,'','','b5d77bd214a4f3027cd01cadfed4581d:68','0',0,'TEXT',0,'','TZ43TXUPR7NV4',0,0),(26,'m','Randy','Cupit','0001-01-01 00:00:00','rcupit@avengeinc.com','',26,'7039091484','','d505b4cf81d8f09c6d70e4edf565a4c4:77','0',0,'TEXT',0,'','',0,0),(27,'m','Brad','Swentor','0001-01-01 00:00:00','bradswentor@gmail.com','',28,'678-251-6828','','b7af1e36920cb2c7be4288a23e8b85f9:69','0',0,'TEXT',0,'','',0,1),(28,'f','Marta','Majong','0001-01-01 00:00:00','jbrake@nsconstruct.com','',29,'212-555-8956','','324628285d6f98fb4a435f83312888de:be','1',0,'TEXT',0,'','',0,1);
/*!40000 ALTER TABLE `zen_customers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_customers_basket`
--

DROP TABLE IF EXISTS `zen_customers_basket`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_customers_basket` (
  `customers_basket_id` int(11) NOT NULL AUTO_INCREMENT,
  `customers_id` int(11) NOT NULL DEFAULT '0',
  `products_id` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `customers_basket_quantity` float NOT NULL DEFAULT '0',
  `final_price` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `customers_basket_date_added` varchar(8) COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`customers_basket_id`),
  KEY `idx_customers_id_zen` (`customers_id`)
) ENGINE=MyISAM AUTO_INCREMENT=30 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_customers_basket`
--

LOCK TABLES `zen_customers_basket` WRITE;
/*!40000 ALTER TABLE `zen_customers_basket` DISABLE KEYS */;
INSERT INTO `zen_customers_basket` VALUES (21,21,'62',1,0.0000,'20100201'),(20,20,'62',2,0.0000,'20100201'),(23,23,'69',1,0.0000,'20100319'),(24,24,'40',1,0.0000,'20100417'),(26,26,'12',1,0.0000,'20100610'),(27,27,'48',1,0.0000,'20100705'),(28,27,'46',1,0.0000,'20100705'),(29,28,'40',1,0.0000,'20100902');
/*!40000 ALTER TABLE `zen_customers_basket` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_customers_basket_attributes`
--

DROP TABLE IF EXISTS `zen_customers_basket_attributes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_customers_basket_attributes` (
  `customers_basket_attributes_id` int(11) NOT NULL AUTO_INCREMENT,
  `customers_id` int(11) NOT NULL DEFAULT '0',
  `products_id` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `products_options_id` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  `products_options_value_id` int(11) NOT NULL DEFAULT '0',
  `products_options_value_text` blob,
  `products_options_sort_order` text COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`customers_basket_attributes_id`),
  KEY `idx_cust_id_prod_id_zen` (`customers_id`,`products_id`(36))
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_customers_basket_attributes`
--

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

--
-- Table structure for table `zen_customers_info`
--

DROP TABLE IF EXISTS `zen_customers_info`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_customers_info` (
  `customers_info_id` int(11) NOT NULL DEFAULT '0',
  `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=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_customers_info`
--

LOCK TABLES `zen_customers_info` WRITE;
/*!40000 ALTER TABLE `zen_customers_info` DISABLE KEYS */;
INSERT INTO `zen_customers_info` VALUES (17,NULL,0,'2010-01-31 19:45:24',NULL,0),(18,'2010-02-01 12:51:53',1,'2010-02-01 12:51:53',NULL,0),(19,'2010-02-01 13:36:38',1,'2010-02-01 13:21:00',NULL,0),(20,NULL,0,'2010-02-01 17:07:45',NULL,0),(21,NULL,0,'2010-02-01 17:42:44',NULL,0),(22,'2010-02-15 17:35:00',1,'2010-02-15 17:35:00',NULL,0),(23,NULL,0,'2010-03-19 20:30:42',NULL,0),(24,NULL,0,'2010-04-17 10:12:00',NULL,0),(25,'2010-06-15 17:46:45',4,'2010-06-08 22:09:05',NULL,0),(26,NULL,0,'2010-06-10 16:52:02',NULL,0),(27,NULL,0,'2010-07-05 13:07:20',NULL,0),(28,NULL,0,'2010-09-02 17:23:21',NULL,0);
/*!40000 ALTER TABLE `zen_customers_info` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_customers_wishlist`
--

DROP TABLE IF EXISTS `zen_customers_wishlist`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_customers_wishlist` (
  `products_id` int(13) NOT NULL DEFAULT '0',
  `customers_id` int(13) NOT NULL DEFAULT '0',
  `products_model` varchar(13) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `products_price` decimal(8,2) NOT NULL DEFAULT '0.00',
  `final_price` decimal(8,2) NOT NULL DEFAULT '0.00',
  `products_quantity` int(2) NOT NULL DEFAULT '0',
  `wishlist_name` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_customers_wishlist`
--

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

--
-- Table structure for table `zen_db_cache`
--

DROP TABLE IF EXISTS `zen_db_cache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_db_cache` (
  `cache_entry_name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `cache_data` mediumblob,
  `cache_entry_created` int(15) DEFAULT NULL,
  PRIMARY KEY (`cache_entry_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_db_cache`
--

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

--
-- Table structure for table `zen_email_archive`
--

DROP TABLE IF EXISTS `zen_email_archive`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_email_archive` (
  `archive_id` int(11) NOT NULL AUTO_INCREMENT,
  `email_to_name` varchar(96) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `email_to_address` varchar(96) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `email_from_name` varchar(96) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `email_from_address` varchar(96) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `email_subject` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `email_html` text COLLATE utf8_unicode_ci NOT NULL,
  `email_text` text COLLATE utf8_unicode_ci NOT NULL,
  `date_sent` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `module` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`archive_id`),
  KEY `idx_email_to_address_zen` (`email_to_address`),
  KEY `idx_module_zen` (`module`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_email_archive`
--

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

--
-- Table structure for table `zen_ezpages`
--

DROP TABLE IF EXISTS `zen_ezpages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_ezpages` (
  `pages_id` int(11) NOT NULL AUTO_INCREMENT,
  `languages_id` int(11) NOT NULL DEFAULT '1',
  `pages_title` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `alt_url` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `alt_url_external` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `pages_html_text` mediumtext COLLATE utf8_unicode_ci,
  `status_header` int(1) NOT NULL DEFAULT '1',
  `status_sidebox` int(1) NOT NULL DEFAULT '1',
  `status_footer` int(1) NOT NULL DEFAULT '1',
  `status_toc` int(1) NOT NULL DEFAULT '1',
  `header_sort_order` int(3) NOT NULL DEFAULT '0',
  `sidebox_sort_order` int(3) NOT NULL DEFAULT '0',
  `footer_sort_order` int(3) NOT NULL DEFAULT '0',
  `toc_sort_order` int(3) NOT NULL DEFAULT '0',
  `page_open_new_window` int(1) NOT NULL DEFAULT '0',
  `page_is_ssl` int(1) NOT NULL DEFAULT '0',
  `toc_chapter` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`pages_id`),
  KEY `idx_lang_id_zen` (`languages_id`),
  KEY `idx_ezp_status_header_zen` (`status_header`),
  KEY `idx_ezp_status_sidebox_zen` (`status_sidebox`),
  KEY `idx_ezp_status_footer_zen` (`status_footer`),
  KEY `idx_ezp_status_toc_zen` (`status_toc`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_ezpages`
--

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

--
-- Table structure for table `zen_featured`
--

DROP TABLE IF EXISTS `zen_featured`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_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` date NOT NULL DEFAULT '0001-01-01',
  `date_status_change` datetime DEFAULT NULL,
  `status` int(1) NOT NULL DEFAULT '1',
  `featured_date_available` date NOT NULL DEFAULT '0001-01-01',
  PRIMARY KEY (`featured_id`),
  KEY `idx_status_zen` (`status`),
  KEY `idx_products_id_zen` (`products_id`),
  KEY `idx_date_avail_zen` (`featured_date_available`),
  KEY `idx_expires_date_zen` (`expires_date`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_featured`
--

LOCK TABLES `zen_featured` WRITE;
/*!40000 ALTER TABLE `zen_featured` DISABLE KEYS */;
INSERT INTO `zen_featured` VALUES (1,25,'2010-01-25 14:49:55',NULL,'0001-01-01',NULL,1,'0001-01-01'),(2,10,'2010-01-25 14:50:13',NULL,'0001-01-01',NULL,1,'0001-01-01'),(3,37,'2010-01-25 14:50:30','2010-06-15 08:01:15','0001-01-01',NULL,1,'0001-01-01'),(4,44,'2010-01-25 14:50:43','2010-06-15 08:17:17','0001-01-01',NULL,1,'0001-01-01'),(5,43,'2010-01-25 14:50:51','2010-02-15 14:46:40','0001-01-01',NULL,1,'0001-01-01'),(6,35,'2010-01-25 14:51:09',NULL,'0001-01-01',NULL,1,'0001-01-01'),(7,45,'2010-01-25 14:51:26',NULL,'0001-01-01',NULL,1,'0001-01-01');
/*!40000 ALTER TABLE `zen_featured` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_files_uploaded`
--

DROP TABLE IF EXISTS `zen_files_uploaded`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_files_uploaded` (
  `files_uploaded_id` int(11) NOT NULL AUTO_INCREMENT,
  `sesskey` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `customers_id` int(11) DEFAULT NULL,
  `files_uploaded_name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`files_uploaded_id`),
  KEY `idx_customers_id_zen` (`customers_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_files_uploaded`
--

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

--
-- Table structure for table `zen_geo_zones`
--

DROP TABLE IF EXISTS `zen_geo_zones`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_geo_zones` (
  `geo_zone_id` int(11) NOT NULL AUTO_INCREMENT,
  `geo_zone_name` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `geo_zone_description` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `last_modified` datetime DEFAULT NULL,
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`geo_zone_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_geo_zones`
--

LOCK TABLES `zen_geo_zones` WRITE;
/*!40000 ALTER TABLE `zen_geo_zones` DISABLE KEYS */;
INSERT INTO `zen_geo_zones` VALUES (1,'Florida','Florida local sales tax zone',NULL,'2010-01-13 17:35:01');
/*!40000 ALTER TABLE `zen_geo_zones` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_get_terms_to_filter`
--

DROP TABLE IF EXISTS `zen_get_terms_to_filter`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_get_terms_to_filter` (
  `get_term_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `get_term_table` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
  `get_term_name_field` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`get_term_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_get_terms_to_filter`
--

LOCK TABLES `zen_get_terms_to_filter` WRITE;
/*!40000 ALTER TABLE `zen_get_terms_to_filter` DISABLE KEYS */;
INSERT INTO `zen_get_terms_to_filter` VALUES ('manufacturers_id','TABLE_MANUFACTURERS','manufacturers_name'),('music_genre_id','TABLE_MUSIC_GENRE','music_genre_name'),('record_company_id','TABLE_RECORD_COMPANY','record_company_name');
/*!40000 ALTER TABLE `zen_get_terms_to_filter` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_group_pricing`
--

DROP TABLE IF EXISTS `zen_group_pricing`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_group_pricing` (
  `group_id` int(11) NOT NULL AUTO_INCREMENT,
  `group_name` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `group_percentage` decimal(5,2) NOT NULL DEFAULT '0.00',
  `last_modified` datetime DEFAULT NULL,
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`group_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_group_pricing`
--

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

--
-- Table structure for table `zen_languages`
--

DROP TABLE IF EXISTS `zen_languages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_languages` (
  `languages_id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `code` char(2) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `image` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
  `directory` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `sort_order` int(3) DEFAULT NULL,
  PRIMARY KEY (`languages_id`),
  KEY `idx_languages_name_zen` (`name`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_languages`
--

LOCK TABLES `zen_languages` WRITE;
/*!40000 ALTER TABLE `zen_languages` DISABLE KEYS */;
INSERT INTO `zen_languages` VALUES (1,'English','en','icon.gif','english',1),(2,'Spanish','sp','icon.gif','spanish',0);
/*!40000 ALTER TABLE `zen_languages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_layout_boxes`
--

DROP TABLE IF EXISTS `zen_layout_boxes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_layout_boxes` (
  `layout_id` int(11) NOT NULL AUTO_INCREMENT,
  `layout_template` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `layout_box_name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `layout_box_status` tinyint(1) NOT NULL DEFAULT '0',
  `layout_box_location` tinyint(1) NOT NULL DEFAULT '0',
  `layout_box_sort_order` int(11) NOT NULL DEFAULT '0',
  `layout_box_sort_order_single` int(11) NOT NULL DEFAULT '0',
  `layout_box_status_single` tinyint(4) NOT NULL DEFAULT '0',
  PRIMARY KEY (`layout_id`),
  KEY `idx_name_template_zen` (`layout_template`,`layout_box_name`),
  KEY `idx_layout_box_status_zen` (`layout_box_status`),
  KEY `idx_layout_box_sort_order_zen` (`layout_box_sort_order`)
) ENGINE=MyISAM AUTO_INCREMENT=103 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_layout_boxes`
--

LOCK TABLES `zen_layout_boxes` WRITE;
/*!40000 ALTER TABLE `zen_layout_boxes` DISABLE KEYS */;
INSERT INTO `zen_layout_boxes` VALUES (1,'default_template_settings','banner_box_all.php',1,1,5,0,0),(2,'default_template_settings','banner_box.php',1,0,300,1,127),(3,'default_template_settings','banner_box2.php',1,1,15,1,15),(4,'default_template_settings','best_sellers.php',1,1,30,70,1),(5,'default_template_settings','categories.php',1,0,10,10,1),(6,'default_template_settings','currencies.php',1,1,80,60,1),(7,'default_template_settings','document_categories.php',1,0,0,0,0),(8,'default_template_settings','ezpages.php',1,1,-1,2,1),(9,'default_template_settings','featured.php',1,0,45,0,0),(10,'default_template_settings','information.php',1,0,50,40,1),(11,'default_template_settings','languages.php',1,1,70,50,1),(12,'default_template_settings','manufacturers.php',1,0,30,20,1),(13,'default_template_settings','manufacturer_info.php',1,1,35,95,1),(14,'default_template_settings','more_information.php',1,0,200,200,1),(15,'default_template_settings','music_genres.php',1,1,0,0,0),(16,'default_template_settings','order_history.php',1,1,0,0,0),(17,'default_template_settings','product_notifications.php',1,1,55,85,1),(18,'default_template_settings','record_companies.php',1,1,0,0,0),(19,'default_template_settings','reviews.php',1,0,40,0,0),(20,'default_template_settings','search.php',1,1,10,0,0),(21,'default_template_settings','search_header.php',0,0,0,0,1),(22,'default_template_settings','shopping_cart.php',1,1,20,30,1),(23,'default_template_settings','specials.php',1,1,45,0,0),(24,'default_template_settings','tell_a_friend.php',1,1,65,0,0),(25,'default_template_settings','whats_new.php',1,0,20,0,0),(26,'default_template_settings','whos_online.php',1,1,200,200,1),(27,'template_default','banner_box_all.php',1,1,5,0,0),(28,'template_default','banner_box.php',1,0,300,1,127),(29,'template_default','banner_box2.php',1,1,15,1,15),(30,'template_default','best_sellers.php',1,1,30,70,1),(31,'template_default','categories.php',1,0,10,10,1),(32,'template_default','currencies.php',1,1,80,60,1),(33,'template_default','ezpages.php',1,1,-1,2,1),(34,'template_default','featured.php',1,0,45,0,0),(35,'template_default','information.php',1,0,50,40,1),(36,'template_default','languages.php',1,1,70,50,1),(37,'template_default','manufacturers.php',1,0,30,20,1),(38,'template_default','manufacturer_info.php',1,1,35,95,1),(39,'template_default','more_information.php',1,0,200,200,1),(40,'template_default','my_broken_box.php',1,0,0,0,0),(41,'template_default','order_history.php',1,1,0,0,0),(42,'template_default','product_notifications.php',1,1,55,85,1),(43,'template_default','reviews.php',1,0,40,0,0),(44,'template_default','search.php',1,1,10,0,0),(45,'template_default','search_header.php',0,0,0,0,1),(46,'template_default','shopping_cart.php',1,1,20,30,1),(47,'template_default','specials.php',1,1,45,0,0),(48,'template_default','tell_a_friend.php',1,1,65,0,0),(49,'template_default','whats_new.php',1,0,20,0,0),(50,'template_default','whos_online.php',1,1,200,200,1),(51,'classic','banner_box.php',1,0,300,1,127),(52,'classic','banner_box2.php',1,1,15,1,15),(53,'classic','banner_box_all.php',1,1,5,0,0),(54,'classic','best_sellers.php',1,1,30,70,1),(55,'classic','categories.php',1,0,10,10,1),(56,'classic','currencies.php',1,1,80,60,1),(57,'classic','document_categories.php',1,0,0,0,0),(58,'classic','ezpages.php',1,1,-1,2,1),(59,'classic','featured.php',1,0,45,0,0),(60,'classic','information.php',1,0,50,40,1),(61,'classic','languages.php',1,1,70,50,1),(62,'classic','manufacturers.php',1,0,30,20,1),(63,'classic','manufacturer_info.php',1,1,35,95,1),(64,'classic','more_information.php',1,0,200,200,1),(65,'classic','music_genres.php',1,1,0,0,0),(66,'classic','order_history.php',1,1,0,0,0),(67,'classic','product_notifications.php',1,1,55,85,1),(68,'classic','record_companies.php',1,1,0,0,0),(69,'classic','reviews.php',1,0,40,0,0),(70,'classic','search.php',1,1,10,0,0),(71,'classic','search_header.php',0,0,0,0,1),(72,'classic','shopping_cart.php',1,1,20,30,1),(73,'classic','specials.php',1,1,45,0,0),(74,'classic','tell_a_friend.php',1,1,65,0,0),(75,'classic','whats_new.php',1,0,20,0,0),(76,'classic','whos_online.php',1,1,200,200,1),(77,'aaas','banner_box.php',1,0,300,1,1),(78,'aaas','banner_box2.php',1,1,15,1,15),(79,'aaas','banner_box_all.php',1,1,5,0,0),(80,'aaas','best_sellers.php',1,1,30,70,1),(81,'aaas','categories.php',1,0,10,10,1),(82,'aaas','currencies.php',1,1,80,60,1),(83,'aaas','document_categories.php',0,0,0,0,0),(84,'aaas','ezpages.php',0,1,-1,2,0),(85,'aaas','featured.php',1,0,45,0,1),(86,'aaas','information.php',1,0,50,40,1),(87,'aaas','languages.php',1,1,20,50,1),(88,'aaas','manufacturer_info.php',1,1,35,95,1),(89,'aaas','manufacturers.php',1,0,30,20,1),(90,'aaas','more_information.php',0,0,200,200,0),(91,'aaas','music_genres.php',0,1,0,0,0),(92,'aaas','order_history.php',0,1,0,0,0),(93,'aaas','product_notifications.php',0,1,55,85,0),(94,'aaas','record_companies.php',0,1,0,0,0),(95,'aaas','reviews.php',0,0,40,0,0),(96,'aaas','search.php',1,1,40,0,0),(97,'aaas','search_header.php',0,0,0,0,0),(98,'aaas','shopping_cart.php',1,1,20,30,1),(99,'aaas','specials.php',0,1,45,0,0),(100,'aaas','tell_a_friend.php',0,1,65,0,0),(101,'aaas','whats_new.php',0,0,20,0,0),(102,'aaas','whos_online.php',1,1,200,200,1);
/*!40000 ALTER TABLE `zen_layout_boxes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_manufacturers`
--

DROP TABLE IF EXISTS `zen_manufacturers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_manufacturers` (
  `manufacturers_id` int(11) NOT NULL AUTO_INCREMENT,
  `manufacturers_name` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `manufacturers_image` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
  `date_added` datetime DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  PRIMARY KEY (`manufacturers_id`),
  KEY `idx_mfg_name_zen` (`manufacturers_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_manufacturers`
--

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

--
-- Table structure for table `zen_manufacturers_info`
--

DROP TABLE IF EXISTS `zen_manufacturers_info`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_manufacturers_info` (
  `manufacturers_id` int(11) NOT NULL DEFAULT '0',
  `languages_id` int(11) NOT NULL DEFAULT '0',
  `manufacturers_url` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `url_clicked` int(5) NOT NULL DEFAULT '0',
  `date_last_click` datetime DEFAULT NULL,
  PRIMARY KEY (`manufacturers_id`,`languages_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_manufacturers_info`
--

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

--
-- Table structure for table `zen_media_clips`
--

DROP TABLE IF EXISTS `zen_media_clips`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_media_clips` (
  `clip_id` int(11) NOT NULL AUTO_INCREMENT,
  `media_id` int(11) NOT NULL DEFAULT '0',
  `clip_type` smallint(6) NOT NULL DEFAULT '0',
  `clip_filename` text COLLATE utf8_unicode_ci NOT NULL,
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `last_modified` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`clip_id`),
  KEY `idx_media_id_zen` (`media_id`),
  KEY `idx_clip_type_zen` (`clip_type`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_media_clips`
--

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

--
-- Table structure for table `zen_media_manager`
--

DROP TABLE IF EXISTS `zen_media_manager`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_media_manager` (
  `media_id` int(11) NOT NULL AUTO_INCREMENT,
  `media_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `last_modified` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`media_id`),
  KEY `idx_media_name_zen` (`media_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_media_manager`
--

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

--
-- Table structure for table `zen_media_to_products`
--

DROP TABLE IF EXISTS `zen_media_to_products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_media_to_products` (
  `media_id` int(11) NOT NULL DEFAULT '0',
  `product_id` int(11) NOT NULL DEFAULT '0',
  KEY `idx_media_product_zen` (`media_id`,`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_media_to_products`
--

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

--
-- Table structure for table `zen_media_types`
--

DROP TABLE IF EXISTS `zen_media_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_media_types` (
  `type_id` int(11) NOT NULL AUTO_INCREMENT,
  `type_name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `type_ext` varchar(8) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`type_id`),
  KEY `idx_type_name_zen` (`type_name`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_media_types`
--

LOCK TABLES `zen_media_types` WRITE;
/*!40000 ALTER TABLE `zen_media_types` DISABLE KEYS */;
INSERT INTO `zen_media_types` VALUES (1,'MP3','.mp3');
/*!40000 ALTER TABLE `zen_media_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_meta_tags_categories_description`
--

DROP TABLE IF EXISTS `zen_meta_tags_categories_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_meta_tags_categories_description` (
  `categories_id` int(11) NOT NULL,
  `language_id` int(11) NOT NULL DEFAULT '1',
  `metatags_title` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `metatags_keywords` text COLLATE utf8_unicode_ci,
  `metatags_description` text COLLATE utf8_unicode_ci,
  PRIMARY KEY (`categories_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_meta_tags_categories_description`
--

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

--
-- Table structure for table `zen_meta_tags_products_description`
--

DROP TABLE IF EXISTS `zen_meta_tags_products_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_meta_tags_products_description` (
  `products_id` int(11) NOT NULL,
  `language_id` int(11) NOT NULL DEFAULT '1',
  `metatags_title` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `metatags_keywords` text COLLATE utf8_unicode_ci,
  `metatags_description` text COLLATE utf8_unicode_ci,
  PRIMARY KEY (`products_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_meta_tags_products_description`
--

LOCK TABLES `zen_meta_tags_products_description` WRITE;
/*!40000 ALTER TABLE `zen_meta_tags_products_description` DISABLE KEYS */;
INSERT INTO `zen_meta_tags_products_description` VALUES (43,2,'LIFE VEST XF-35  FAA-TSO Approved C13f  (REPLACES FV-35)','Twin Cell, LIFE, Vest, Inflated, Buoyancy, 150 Newtons, Approvals, USA FAA TSO-C13f, German LBA, 40.321/33, United Kingdom, CAA, AR01445, Preserver, Adult, child,on. Weight of wearer: 35 lbs. (15.91kg) and above. Inflatable Buoyancy Cells: 2 Independent Cells. Material: Urethane Coated Nylon, Flame Retardant, \r\nYellow, Orange, sea, Survivor, Locator, Light, Water-activated,, maintenance, inspection','Lightest Twin Cell Vest on the Market! Inflated Buoyancy: 35 lbs. (150 Newtons) minimum. Inflated Volume: 970 cu. in. (16 liters) minimum. Approvals: USA FAA TSO-C13f; German LBA Approval No. 40.321/33; United Kingdom CAA Approval No. AR01445 \r\nCategory of Preserver: Adult/Child Combination. Weight of wearer: 35 lbs. (15.91kg) and above. Inflatable Buoyancy Cells: 2 Independent Cells. Material: Urethane Coated Nylon, Flame Retardant. Color: Passenger Yellow or Crew Molten Orange. Altitude: -2000 to 45,000 feet above sea level Survivor Locator Light: Water-activated. TSO-C85 Approved. Service Life: Indefinite if unit continues to pass periodic maintenance inspection.'),(43,1,'LIFE VEST XF-35  FAA-TSO Approved C13f  (REPLACES FV-35)','Twin Cell, LIFE, Vest, Inflated, Buoyancy, 150 Newtons, Approvals, USA FAA TSO-C13f, German LBA, 40.321/33, United Kingdom, CAA, AR01445, Preserver, Adult, child,on. Weight of wearer: 35 lbs. (15.91kg) and above. Inflatable Buoyancy Cells: 2 Independent Cells. Material: Urethane Coated Nylon, Flame Retardant, \r\nYellow, Orange, sea, Survivor, Locator, Light, Water-activated,, maintenance, inspection','Lightest Twin Cell Vest on the Market! Inflated Buoyancy: 35 lbs. (150 Newtons) minimum. Inflated Volume: 970 cu. in. (16 liters) minimum. Approvals: USA FAA TSO-C13f; German LBA Approval No. 40.321/33; United Kingdom CAA Approval No. AR01445 \r\nCategory of Preserver: Adult/Child Combination. Weight of wearer: 35 lbs. (15.91kg) and above. Inflatable Buoyancy Cells: 2 Independent Cells. Material: Urethane Coated Nylon, Flame Retardant. Color: Passenger Yellow or Crew Molten Orange. Altitude: -2000 to 45,000 feet above sea level Survivor Locator Light: Water-activated. TSO-C85 Approved. Service Life: Indefinite if unit continues to pass periodic maintenance inspection.'),(25,2,'Básico 10-Hombre (ninguna TSO) | aaaSurvival.com','',''),(25,1,'10-Man Basic (Non TSO) Life Raft | aaaSurvival.com','10-man life raft','10-man life raft'),(28,2,'','',''),(26,2,'','life rafts, 10-man',''),(26,1,'| Life Rafts','life rafts, 10-man, canopy','10-Man TSO w/Canopy Only'),(28,1,'Life Rafts | aaaSurvival.com','10-Man, TSO, FAR, 121, Kit','Life Raft 10-Man TSO w/FAR 121 Kit'),(27,2,'','',''),(29,1,'Life Rafts | aaasurvival.com','10-Man, TSO, FAR, 135, Kit','Life Raft 10-Man TSO w/FAR 135 Kit'),(27,1,'Life Rafts | aaasurvival.com','10-Man, TSO, FAR, 91, Kit','Life Raft 10-Man TSO w/FAR 91 Kit.'),(30,2,'','',''),(30,1,'Life Rafts | aaaSurvival.com','12-Man,life raft,(Non TSO)','12-Man Basic (Non TSO) life raft at aaaSurvival.com.'),(31,2,'','',''),(31,1,'Life Rafts | aaaSurvival.com','12-Man,life raft,TSO, canopy','12-Man TSO w/Canopy Only life raft from aaaSurvival.com'),(33,2,'','',''),(33,1,'Life Rafts | aaaSurvival.com','12-Man,TSO,FAR 121,Life Rafts','12-Man TSO Life Raft w/FAR 121 Kit-Lightweight.'),(34,2,'','',''),(34,1,'Life Rafts | aaaSurvival.com','12-Man,TSO,FAR 135,Life Rafts','12-Man TSO Life Raft w/FAR 135 Kit-double tube design.'),(32,2,'','',''),(32,1,'Life Rafts | aaaSurvival.com','12-Man,TSO,FAR 91,Life Rafts','12-Man TSO life raft w/FAR 91 Kit-CO2 automatic inflation system.');
/*!40000 ALTER TABLE `zen_meta_tags_products_description` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_music_genre`
--

DROP TABLE IF EXISTS `zen_music_genre`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_music_genre` (
  `music_genre_id` int(11) NOT NULL AUTO_INCREMENT,
  `music_genre_name` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `date_added` datetime DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  PRIMARY KEY (`music_genre_id`),
  KEY `idx_music_genre_name_zen` (`music_genre_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_music_genre`
--

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

--
-- Table structure for table `zen_newsletters`
--

DROP TABLE IF EXISTS `zen_newsletters`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_newsletters` (
  `newsletters_id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `content` text COLLATE utf8_unicode_ci NOT NULL,
  `content_html` text COLLATE utf8_unicode_ci NOT NULL,
  `module` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `date_sent` datetime DEFAULT NULL,
  `status` int(1) DEFAULT NULL,
  `locked` int(1) DEFAULT '0',
  PRIMARY KEY (`newsletters_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_newsletters`
--

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

--
-- Table structure for table `zen_nochex_apc_transactions`
--

DROP TABLE IF EXISTS `zen_nochex_apc_transactions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_nochex_apc_transactions` (
  `nochex_apc_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` int(11) unsigned NOT NULL DEFAULT '0',
  `nc_transaction_id` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
  `nc_transaction_date` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  `nc_to_email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `nc_from_email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `nc_order_id` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `nc_custom` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `nc_amount` decimal(9,2) NOT NULL,
  `nc_security_key` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `nc_status` varchar(15) COLLATE utf8_unicode_ci NOT NULL,
  `nochex_response` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `last_modified` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `memo` text COLLATE utf8_unicode_ci,
  PRIMARY KEY (`nochex_apc_id`),
  KEY `idx_order_id_zen` (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_nochex_apc_transactions`
--

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

--
-- Table structure for table `zen_nochex_sessions`
--

DROP TABLE IF EXISTS `zen_nochex_sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_nochex_sessions` (
  `unique_id` int(11) NOT NULL AUTO_INCREMENT,
  `session_id` text COLLATE utf8_unicode_ci NOT NULL,
  `saved_session` mediumblob NOT NULL,
  `expiry` int(17) NOT NULL DEFAULT '0',
  PRIMARY KEY (`unique_id`),
  KEY `idx_session_id_zen` (`session_id`(36))
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_nochex_sessions`
--

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

--
-- Table structure for table `zen_orders`
--

DROP TABLE IF EXISTS `zen_orders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_orders` (
  `orders_id` int(11) NOT NULL AUTO_INCREMENT,
  `customers_id` int(11) NOT NULL DEFAULT '0',
  `customers_name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `customers_company` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
  `customers_street_address` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `customers_suburb` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `customers_city` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `customers_postcode` varchar(10) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `customers_state` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `customers_country` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `customers_telephone` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `customers_email_address` varchar(96) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `customers_address_format_id` int(5) NOT NULL DEFAULT '0',
  `delivery_name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `delivery_company` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
  `delivery_street_address` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `delivery_suburb` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `delivery_city` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `delivery_postcode` varchar(10) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `delivery_state` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `delivery_country` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `delivery_address_format_id` int(5) NOT NULL DEFAULT '0',
  `billing_name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `billing_company` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
  `billing_street_address` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `billing_suburb` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `billing_city` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `billing_postcode` varchar(10) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `billing_state` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `billing_country` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `billing_address_format_id` int(5) NOT NULL DEFAULT '0',
  `payment_method` varchar(128) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `payment_module_code` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `shipping_method` varchar(128) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `shipping_module_code` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `coupon_code` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `cc_type` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL,
  `cc_owner` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
  `cc_number` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `cc_expires` varchar(4) COLLATE utf8_unicode_ci DEFAULT NULL,
  `cc_cvv` blob,
  `last_modified` datetime DEFAULT NULL,
  `date_purchased` datetime DEFAULT NULL,
  `orders_status` int(5) NOT NULL DEFAULT '0',
  `orders_date_finished` datetime DEFAULT NULL,
  `currency` char(3) COLLATE utf8_unicode_ci DEFAULT NULL,
  `currency_value` decimal(14,6) DEFAULT NULL,
  `order_total` decimal(14,2) DEFAULT NULL,
  `order_tax` decimal(14,2) DEFAULT NULL,
  `paypal_ipn_id` int(11) NOT NULL DEFAULT '0',
  `ip_address` varchar(96) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `dropdown` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL,
  `gift_message` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
  `checkbox` int(1) DEFAULT NULL,
  `COWOA_order` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`orders_id`),
  KEY `idx_status_orders_cust_zen` (`orders_status`,`orders_id`,`customers_id`),
  KEY `idx_date_purchased_zen` (`date_purchased`),
  KEY `idx_cust_id_orders_id_zen` (`customers_id`,`orders_id`)
) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_orders`
--

LOCK TABLES `zen_orders` WRITE;
/*!40000 ALTER TABLE `zen_orders` DISABLE KEYS */;
INSERT INTO `zen_orders` VALUES (1,2,'Wayne John','Fast and EZ','1234 Ridgepole Lane','','WPB','33186','Florida','United States','222-555-6666','wayne@aaasurvival.com',2,'Wayne John','Fast and EZ','1234 Ridgepole Lane','','WPB','33186','Florida','United States',2,'Wayne John','Fast and EZ','1234 Ridgepole Lane','','WPB','33186','Florida','United States',2,'Check/Money Order','moneyorder','United Parcel Service (1 x 33.00kgs) (Ground)','ups','','','','','',NULL,NULL,'2010-01-30 01:29:28',1,NULL,'USD',1.000000,90.52,0.00,0,'76.221.246.255 - 76.221.246.255',NULL,NULL,NULL,1),(2,4,'Wainette Slova','Wainio\'s Crapola, LLC','1234 East West Blvd','','WPB','33411','Florida','United States','222-555-8888','wsauvola@aol.com',2,'Wainette Slova','Wainio\'s Crapola, LLC','1234 East West Blvd','','WPB','33411','Florida','United States',2,'Wainette Slova','Wainio\'s Crapola, LLC','1234 East West Blvd','','WPB','33411','Florida','United States',2,'Cheque/Giro Postal','moneyorder','United Parcel Service (4 x 48.40lbs) (Ground)','ups','','','','','',NULL,NULL,'2010-01-30 20:07:52',1,NULL,'USD',1.000000,10596.74,0.00,0,'76.221.246.255 - 76.221.246.255',NULL,NULL,NULL,0),(3,4,'Wainette Slova','Wainio\'s Crapola, LLC','1234 East West Blvd','','WPB','33411','Florida','United States','222-555-8888','wsauvola@aol.com',2,'Wainette Slova','Wainio\'s Crapola, LLC','1234 East West Blvd','','WPB','33411','Florida','United States',2,'Wainette Slova','Wainio\'s Crapola, LLC','1234 East West Blvd','','WPB','33411','Florida','United States',2,'Cheque/Giro Postal','moneyorder','United Parcel Service (1 x 4.50kg) (Ground)','ups','','','','','',NULL,NULL,'2010-01-30 20:50:53',1,NULL,'USD',1.000000,2312.92,0.00,0,'76.221.246.255 - 76.221.246.255',NULL,NULL,NULL,0),(4,4,'Wainette Slova','Wainio\'s Crapola, LLC','1234 East West Blvd','','WPB','33411','Florida','United States','222-555-8888','wsauvola@aol.com',2,'Wainette Slova','Wainio\'s Crapola, LLC','1234 East West Blvd','','WPB','33411','Florida','United States',2,'Wainette Slova','Wainio\'s Crapola, LLC','1234 East West Blvd','','WPB','33411','Florida','United States',2,'Cheque/Giro Postal','moneyorder','United Parcel Service (1 x 5.50lbs) (Ground)','ups','','','','','',NULL,NULL,'2010-01-30 21:10:59',1,NULL,'USD',1.000000,1363.19,0.00,0,'76.221.246.255 - 76.221.246.255',NULL,NULL,NULL,0),(5,5,'Waynston Savolofolous','Get em Now, Inc.','12345 N South','','RPB','33411','Florida','United States','555-555-6666','wayne@aaasurvival.com',2,'Waynston Savolofolous','Get em Now, Inc.','12345 N South','','RPB','33411','Florida','United States',2,'Waynston Savolofolous','Get em Now, Inc.','12345 N South','','RPB','33411','Florida','United States',2,'Check/Money Order','moneyorder','FedEx Ground (FedEx Ground<sup><font size=\"1\">&reg;</font></sup> )','fedexground','','','','','',NULL,NULL,'2010-01-31 14:42:06',1,NULL,'USD',1.000000,74.67,0.00,0,'76.221.246.255 - 76.221.246.255',NULL,NULL,NULL,1),(6,6,'Juan Frano','','12345 B street','','Mimai','33186','Florida','United States','222-333-6666','jack@aaasurvival.com',2,'Juan Frano','','12345 B street','','Mimai','33186','Florida','United States',2,'Juan Frano','','12345 B street','','Mimai','33186','Florida','United States',2,'Cheque/Giro Postal','moneyorder','FedEx Ground (FedEx Home Delivery<sup><font size=\"1\">&reg;</font></sup> )','fedexground','','','','','',NULL,NULL,'2010-01-31 15:43:47',1,NULL,'USD',1.000000,23.63,0.00,0,'76.221.246.255 - 76.221.246.255',NULL,NULL,NULL,0),(7,17,'Juan Bautista','','12345 N Commercial Blvd','','Miami','33186','Florida','United States','222-333-5555','craigslist@mycbay.com',2,'Juan Bautista','','12345 N Commercial Blvd','','Miami','33186','Florida','United States',2,'Juan Bautista','','12345 N Commercial Blvd','','Miami','33186','Florida','United States',2,'Cheque/Giro Postal','moneyorder','United Parcel Service (1 x 7.00lbs) (Ground)','ups','','','','','',NULL,NULL,'2010-01-31 19:49:40',1,NULL,'USD',1.000000,2906.21,0.00,0,'76.221.246.255 - 76.221.246.255',NULL,NULL,NULL,0),(8,17,'Juan Bautista','','12345 N Commercial Blvd','','Miami','33186','Florida','United States','222-333-5555','craigslist@mycbay.com',2,'Juan Bautista','','12345 N Commercial Blvd','','Miami','33186','Florida','United States',2,'Juan Bautista','','12345 N Commercial Blvd','','Miami','33186','Florida','United States',2,'Cheque/Giro Postal','moneyorder','FedEx Ground (FedEx Home Delivery<sup><font size=\"1\">&reg;</font></sup> )','fedexground','','','','','',NULL,NULL,'2010-01-31 20:17:18',1,NULL,'USD',1.000000,24.80,0.00,0,'76.221.246.255 - 76.221.246.255',NULL,NULL,NULL,0),(9,17,'Juan Bautista','','12345 N Commercial Blvd','','Miami','33186','Florida','United States','222-333-5555','craigslist@mycbay.com',2,'Juan Bautista','','12345 N Commercial Blvd','','Miami','33186','Florida','United States',2,'Juan Bautista','','12345 N Commercial Blvd','','Miami','33186','Florida','United States',2,'Cheque/Giro Postal','moneyorder','United Parcel Service (1 x 5.50lbs) (Ground)','ups','','','','','',NULL,NULL,'2010-01-31 20:31:47',1,NULL,'USD',1.000000,605.77,0.00,0,'76.221.246.255 - 76.221.246.255',NULL,NULL,NULL,0),(10,17,'Juan Bautista','','12345 N Commercial Blvd','','Miami','33186','Florida','United States','222-333-5555','craigslist@mycbay.com',2,'Juan Bautista','','12345 N Commercial Blvd','','Miami','33186','Florida','United States',2,'Juan Bautista','','12345 N Commercial Blvd','','Miami','33186','Florida','United States',2,'Cheque/Giro Postal','moneyorder','United Parcel Service (1 x 24.00lbs) (Ground)','ups','','','','','',NULL,NULL,'2010-01-31 20:36:23',1,NULL,'USD',1.000000,2430.47,0.00,0,'76.221.246.255 - 76.221.246.255',NULL,NULL,NULL,0),(11,18,'JOHN BRAKE','','9079 PIERSON RD','','FOWLERVILLE','48836','Michigan','United States','','eorder@adirondakchairs.net',2,'JOHN BRAKE','','9079 PIERSON RD','','FOWLERVILLE','48836','Michigan','United States',2,'JOHN BRAKE','','9079 PIERSON RD','','FOWLERVILLE','48836','Michigan','United States',2,'PayPal','paypalwpp','FedEx Ground (FedEx Ground<sup><font size=\"1\">&reg;</font></sup> )','fedexground','','','','','',NULL,NULL,'2010-02-01 12:53:03',2,NULL,'USD',1.000000,35.04,0.00,0,'76.221.246.255 - 76.221.246.255',NULL,NULL,NULL,0),(12,19,'Wayne Sauvola','','2210 Ridgewood Circle','','Royal Palm Beach','33411','Florida','United States','5615065608','wsauvola@aol.com',2,'Wayne Sauvola','','2210 Ridgewood Circle','','Royal Palm Beach','33411','FL','United States',2,'Wayne Sauvola','','2210 Ridgewood Circle','','Royal Palm Beach','33411','FL','United States',2,'Credit Card','paypaldp','FedEx Ground (FedEx Home Delivery<sup><font size=\"1\">&reg;</font></sup> )','fedexground','','Visa','Wayne Sauvola','4828XXXXXXXX6028','0813',NULL,NULL,'2010-02-01 13:23:31',2,NULL,'USD',1.000000,15.71,0.00,0,'98.254.34.182 - 98.254.34.182',NULL,NULL,NULL,0),(13,22,'Jennifer Ware','','1103 Sierra Country Court','','Gardnerville','89460','Nevada','United States','','jennifer@herdware.net',2,'Jennifer Ware','','1103 Sierra Country Court','','Gardnerville','89460','Nevada','United States',2,'Jennifer Ware','','1103 Sierra Country Court','','Gardnerville','89460','Nevada','United States',2,'PayPal','paypalwpp','FedEx Ground (FedEx Home Delivery<sup><font size=\"1\">&reg;</font></sup> )','fedexground','','','','','',NULL,NULL,'2010-02-15 17:35:36',2,NULL,'USD',1.000000,170.00,0.00,0,'75.141.223.148 - 75.141.223.148',NULL,NULL,NULL,0),(14,25,'Johannes Muelmenstaedt','','1830 Zapo St','','Del Mar','92014','California','United States','','jmuelmen@ucsd.edu',2,'Johannes Muelmenstaedt','','1830 Zapo St','','Del Mar','92014','California','United States',2,'Johannes Muelmenstaedt','','1830 Zapo St','','Del Mar','92014','California','United States',2,'PayPal','paypalwpp','FedEx Ground (FedEx Home Delivery<sup><font size=\"1\">&reg;</font></sup> )','fedexground','','','','','',NULL,'2010-06-17 09:10:45','2010-06-08 22:09:41',4,NULL,'USD',1.000000,200.97,0.00,0,'132.239.27.199 - 132.239.27.199',NULL,NULL,NULL,0);
/*!40000 ALTER TABLE `zen_orders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_orders_products`
--

DROP TABLE IF EXISTS `zen_orders_products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_orders_products` (
  `orders_products_id` int(11) NOT NULL AUTO_INCREMENT,
  `orders_id` int(11) NOT NULL DEFAULT '0',
  `products_id` int(11) NOT NULL DEFAULT '0',
  `products_model` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `products_price` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `final_price` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `products_tax` decimal(7,4) NOT NULL DEFAULT '0.0000',
  `products_quantity` float NOT NULL DEFAULT '0',
  `onetime_charges` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `products_priced_by_attribute` tinyint(1) NOT NULL DEFAULT '0',
  `product_is_free` tinyint(1) NOT NULL DEFAULT '0',
  `products_discount_type` tinyint(1) NOT NULL DEFAULT '0',
  `products_discount_type_from` tinyint(1) NOT NULL DEFAULT '0',
  `products_prid` tinytext COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`orders_products_id`),
  KEY `idx_orders_id_prod_id_zen` (`orders_id`,`products_id`),
  KEY `idx_prod_id_orders_id_zen` (`products_id`,`orders_id`)
) ENGINE=MyISAM AUTO_INCREMENT=19 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_orders_products`
--

LOCK TABLES `zen_orders_products` WRITE;
/*!40000 ALTER TABLE `zen_orders_products` DISABLE KEYS */;
INSERT INTO `zen_orders_products` VALUES (1,1,48,'','3682 Kcal Emergency Food Ration',63.8000,63.8000,0.0000,1,0.0000,0,0,0,0,'48'),(2,2,27,'RAF1210-103','TSO 10-Hombre con FAR 91 Kit',5140.0000,5140.0000,0.0000,2,0.0000,0,0,0,0,'27'),(3,2,48,'','Ración del alimento de la emergencia de 3682 Kcal',63.8000,63.8000,0.0000,1,0.0000,0,0,0,0,'48'),(4,2,49,'','Nueva barra de energía del milenio',95.0400,95.0400,0.0000,1,0.0000,0,0,0,0,'49'),(5,2,46,'','Agua potable purificada emergencia',11.6200,11.6200,0.0000,1,0.0000,0,0,0,0,'46'),(6,3,36,'500-12Y','500-12Y Faro del localizador',2300.0000,2300.0000,0.0000,1,0.0000,0,0,0,0,'36'),(7,4,37,'EBC 406AP','EBC 406AP',1350.0000,1350.0000,0.0000,1,0.0000,0,0,0,0,'37'),(8,5,48,'','3682 Kcal Emergency Food Ration',63.8000,63.8000,0.0000,1,0.0000,0,0,0,0,'48'),(9,6,61,'DFPK','Kit de primeros auxilios del animal doméstico de 58 pedazos',15.9100,15.9100,0.0000,1,0.0000,0,0,0,0,'61'),(10,7,36,'500-12Y','500-12Y Faro del localizador',2300.0000,2300.0000,0.0000,1,0.0000,0,0,0,0,'36'),(11,7,35,'EBC 502','EBC 502',595.0000,595.0000,0.0000,1,0.0000,0,0,0,0,'35'),(12,8,46,'','Agua potable purificada emergencia',11.6200,11.6200,0.0000,1,0.0000,0,0,0,0,'46'),(13,9,35,'EBC 502','EBC 502',595.0000,595.0000,0.0000,1,0.0000,0,0,0,0,'35'),(14,10,5,'1400-1/1500-5','4-Hombre con Kit de lujo',2415.0000,2415.0000,0.0000,1,0.0000,0,0,0,0,'5'),(15,11,46,'','Purified Drinking Water',11.6200,11.6200,0.0000,1,0.0000,0,0,0,0,'46'),(16,12,62,'LCCC','Emergency Cell Phone Charger',7.9900,7.9900,0.0000,1,0.0000,0,0,0,0,'62'),(17,13,42,'FV35H','Helicopter Life Vest (FV-35E)',73.0000,73.0000,0.0000,2,0.0000,0,0,0,0,'42'),(18,14,43,'FV-35','Life Vest (FV-35E)',57.0000,57.0000,0.0000,3,0.0000,0,0,0,0,'43');
/*!40000 ALTER TABLE `zen_orders_products` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_orders_products_attributes`
--

DROP TABLE IF EXISTS `zen_orders_products_attributes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_orders_products_attributes` (
  `orders_products_attributes_id` int(11) NOT NULL AUTO_INCREMENT,
  `orders_id` int(11) NOT NULL DEFAULT '0',
  `orders_products_id` int(11) NOT NULL DEFAULT '0',
  `products_options` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `products_options_values` text COLLATE utf8_unicode_ci NOT NULL,
  `options_values_price` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `price_prefix` char(1) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `product_attribute_is_free` tinyint(1) NOT NULL DEFAULT '0',
  `products_attributes_weight` float NOT NULL DEFAULT '0',
  `products_attributes_weight_prefix` char(1) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `attributes_discounted` tinyint(1) NOT NULL DEFAULT '1',
  `attributes_price_base_included` tinyint(1) NOT NULL DEFAULT '1',
  `attributes_price_onetime` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_factor` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_factor_offset` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_factor_onetime` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_factor_onetime_offset` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_qty_prices` text COLLATE utf8_unicode_ci,
  `attributes_qty_prices_onetime` text COLLATE utf8_unicode_ci,
  `attributes_price_words` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_words_free` int(4) NOT NULL DEFAULT '0',
  `attributes_price_letters` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_letters_free` int(4) NOT NULL DEFAULT '0',
  `products_options_id` int(11) NOT NULL DEFAULT '0',
  `products_options_values_id` int(11) NOT NULL DEFAULT '0',
  `products_prid` tinytext COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`orders_products_attributes_id`),
  KEY `idx_orders_id_prod_id_zen` (`orders_id`,`orders_products_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_orders_products_attributes`
--

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

--
-- Table structure for table `zen_orders_products_download`
--

DROP TABLE IF EXISTS `zen_orders_products_download`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_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) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `download_maxdays` int(2) NOT NULL DEFAULT '0',
  `download_count` int(2) NOT NULL DEFAULT '0',
  `products_prid` tinytext COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`orders_products_download_id`),
  KEY `idx_orders_id_zen` (`orders_id`),
  KEY `idx_orders_products_id_zen` (`orders_products_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_orders_products_download`
--

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

--
-- Table structure for table `zen_orders_status`
--

DROP TABLE IF EXISTS `zen_orders_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_orders_status` (
  `orders_status_id` int(11) NOT NULL DEFAULT '0',
  `language_id` int(11) NOT NULL DEFAULT '1',
  `orders_status_name` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`orders_status_id`,`language_id`),
  KEY `idx_orders_status_name_zen` (`orders_status_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_orders_status`
--

LOCK TABLES `zen_orders_status` WRITE;
/*!40000 ALTER TABLE `zen_orders_status` DISABLE KEYS */;
INSERT INTO `zen_orders_status` VALUES (1,1,'Pending'),(2,1,'Processing'),(3,1,'Delivered'),(4,1,'Update'),(1,2,'Pending'),(2,2,'Processing'),(3,2,'Delivered'),(4,2,'Update');
/*!40000 ALTER TABLE `zen_orders_status` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_orders_status_history`
--

DROP TABLE IF EXISTS `zen_orders_status_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_orders_status_history` (
  `orders_status_history_id` int(11) NOT NULL AUTO_INCREMENT,
  `orders_id` int(11) NOT NULL DEFAULT '0',
  `orders_status_id` int(5) NOT NULL DEFAULT '0',
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `customer_notified` int(1) DEFAULT '0',
  `comments` text COLLATE utf8_unicode_ci,
  PRIMARY KEY (`orders_status_history_id`),
  KEY `idx_orders_id_status_id_zen` (`orders_id`,`orders_status_id`)
) ENGINE=MyISAM AUTO_INCREMENT=20 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_orders_status_history`
--

LOCK TABLES `zen_orders_status_history` WRITE;
/*!40000 ALTER TABLE `zen_orders_status_history` DISABLE KEYS */;
INSERT INTO `zen_orders_status_history` VALUES (1,1,1,'2010-01-30 01:29:28',1,'Get it here fast'),(2,2,1,'2010-01-30 20:07:52',1,''),(3,3,1,'2010-01-30 20:50:53',1,''),(4,4,1,'2010-01-30 21:10:59',1,'MAKE IT FAST AMIGO'),(5,5,1,'2010-01-31 14:42:06',1,'Get it to me quick'),(6,6,1,'2010-01-31 15:43:47',1,'Rapido'),(7,7,1,'2010-01-31 19:49:40',1,'Rapidamente'),(8,8,1,'2010-01-31 20:17:18',1,''),(9,9,1,'2010-01-31 20:31:47',1,''),(10,10,1,'2010-01-31 20:36:23',1,''),(11,11,2,'2010-02-01 12:53:03',1,'Sandbox test account for verification'),(12,11,2,'2010-02-01 12:53:03',0,'Transaction ID: 3L132312K51507330 \nPayment Type: PayPal Express Checkout (instant) \nTimestamp: 2010-02-01T18:53:05Z \nPayment Status: Completed \nAmount: 35.04 USD '),(13,12,2,'2010-02-01 13:23:31',1,'Drop at front door'),(14,12,2,'2010-02-01 13:23:31',0,'Transaction ID: 8SB41353BD574861E \nPayment Type: Credit Card (WPP) \nTimestamp: 2010-02-01T19:23:33Z \nPayment Status: Completed \nAVS Code: Y\nCVV2 Code: M\nAmount: 15.71 USD '),(15,13,2,'2010-02-15 17:35:36',1,''),(16,13,2,'2010-02-15 17:35:36',0,'Transaction ID: 8MC61548464954205 \nPayment Type: PayPal Express Checkout (instant) \nTimestamp: 2010-02-15T23:35:38Z \nPayment Status: Completed \nAmount: 170.00 USD '),(17,14,2,'2010-06-08 22:09:41',1,''),(18,14,2,'2010-06-08 22:09:41',0,'Transaction ID: 8C463154090635105 \nPayment Type: PayPal Express Checkout (instant) \nTimestamp: 2010-06-09T03:09:52Z \nPayment Status: Completed \nAmount: 200.97 USD '),(19,14,4,'2010-06-17 09:10:45',1,'Mr. Muelmenstaedt: Your order has shipped. Your UPS tracking number is: 1Z5X66100359849575. Thank you for your order. Please let us know if we may assist you in the future.');
/*!40000 ALTER TABLE `zen_orders_status_history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_orders_total`
--

DROP TABLE IF EXISTS `zen_orders_total`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_orders_total` (
  `orders_total_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `orders_id` int(11) NOT NULL DEFAULT '0',
  `title` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `text` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `value` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `class` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `sort_order` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`orders_total_id`),
  KEY `idx_ot_orders_id_zen` (`orders_id`),
  KEY `idx_ot_class_zen` (`class`)
) ENGINE=MyISAM AUTO_INCREMENT=43 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_orders_total`
--

LOCK TABLES `zen_orders_total` WRITE;
/*!40000 ALTER TABLE `zen_orders_total` DISABLE KEYS */;
INSERT INTO `zen_orders_total` VALUES (1,1,'Sub-Total:','$63.80',63.8000,'ot_subtotal',100),(2,1,'United Parcel Service (1 x 33.00kgs) (Ground):','$26.72',26.7200,'ot_shipping',200),(3,1,'Total:','$90.52',90.5200,'ot_total',999),(4,2,'Subtotal:','$10,450.46',10450.4600,'ot_subtotal',100),(5,2,'United Parcel Service (4 x 48.40lbs) (Ground):','$146.28',146.2800,'ot_shipping',200),(6,2,'Total:','$10,596.74',10596.7400,'ot_total',999),(7,3,'Subtotal:','$2,300.00',2300.0000,'ot_subtotal',100),(8,3,'United Parcel Service (1 x 4.50kg) (Ground):','$12.92',12.9200,'ot_shipping',200),(9,3,'Total:','$2,312.92',2312.9200,'ot_total',999),(10,4,'Subtotal:','$1,350.00',1350.0000,'ot_subtotal',100),(11,4,'United Parcel Service (1 x 5.50lbs) (Ground):','$13.19',13.1900,'ot_shipping',200),(12,4,'Total:','$1,363.19',1363.1900,'ot_total',999),(13,5,'Sub-Total:','$63.80',63.8000,'ot_subtotal',100),(14,5,'FedEx Ground (FedEx Ground<sup><font size=\"1\">&reg;</font></sup> ):','$10.87',10.8700,'ot_shipping',200),(15,5,'Total:','$74.67',74.6700,'ot_total',999),(16,6,'Subtotal:','$15.91',15.9100,'ot_subtotal',100),(17,6,'FedEx Ground (FedEx Home Delivery<sup><font size=\"1\">&reg;</font></sup> ):','$7.72',7.7200,'ot_shipping',200),(18,6,'Total:','$23.63',23.6300,'ot_total',999),(19,7,'Subtotal:','$2,895.00',2895.0000,'ot_subtotal',100),(20,7,'United Parcel Service (1 x 7.00lbs) (Ground):','$11.21',11.2100,'ot_shipping',200),(21,7,'Total:','$2,906.21',2906.2100,'ot_total',999),(22,8,'Subtotal:','$11.62',11.6200,'ot_subtotal',100),(23,8,'FedEx Ground (FedEx Home Delivery<sup><font size=\"1\">&reg;</font></sup> ):','$13.18',13.1800,'ot_shipping',200),(24,8,'Total:','$24.80',24.8000,'ot_total',999),(25,9,'Subtotal:','$595.00',595.0000,'ot_subtotal',100),(26,9,'United Parcel Service (1 x 5.50lbs) (Ground):','$10.77',10.7700,'ot_shipping',200),(27,9,'Total:','$605.77',605.7700,'ot_total',999),(28,10,'Subtotal:','$2,415.00',2415.0000,'ot_subtotal',100),(29,10,'United Parcel Service (1 x 24.00lbs) (Ground):','$15.47',15.4700,'ot_shipping',200),(30,10,'Total:','$2,430.47',2430.4700,'ot_total',999),(31,11,'Sub-Total:','$11.62',11.6200,'ot_subtotal',100),(32,11,'FedEx Ground (FedEx Ground<sup><font size=\"1\">&reg;</font></sup> ):','$23.42',23.4200,'ot_shipping',200),(33,11,'Total:','$35.04',35.0400,'ot_total',999),(34,12,'Sub-Total:','$7.99',7.9900,'ot_subtotal',100),(35,12,'FedEx Ground (FedEx Home Delivery<sup><font size=\"1\">&reg;</font></sup> ):','$7.72',7.7200,'ot_shipping',200),(36,12,'Total:','$15.71',15.7100,'ot_total',999),(37,13,'Sub-Total:','$146.00',146.0000,'ot_subtotal',100),(38,13,'FedEx Ground (FedEx Home Delivery<sup><font size=\"1\">&reg;</font></sup> ):','$24.00',24.0000,'ot_shipping',200),(39,13,'Total:','$170.00',170.0000,'ot_total',999),(40,14,'Sub-Total:','$171.00',171.0000,'ot_subtotal',100),(41,14,'FedEx Ground (FedEx Home Delivery<sup><font size=\"1\">&reg;</font></sup> ):','$29.97',29.9700,'ot_shipping',200),(42,14,'Total:','$200.97',200.9700,'ot_total',999);
/*!40000 ALTER TABLE `zen_orders_total` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_paypal`
--

DROP TABLE IF EXISTS `zen_paypal`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_paypal` (
  `paypal_ipn_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` int(11) unsigned NOT NULL DEFAULT '0',
  `txn_type` varchar(40) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `module_name` varchar(40) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `module_mode` varchar(40) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `reason_code` varchar(40) COLLATE utf8_unicode_ci DEFAULT NULL,
  `payment_type` varchar(40) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `payment_status` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `pending_reason` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `invoice` varchar(128) COLLATE utf8_unicode_ci DEFAULT NULL,
  `mc_currency` char(3) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `first_name` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `last_name` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `payer_business_name` varchar(128) COLLATE utf8_unicode_ci DEFAULT NULL,
  `address_name` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
  `address_street` varchar(254) COLLATE utf8_unicode_ci DEFAULT NULL,
  `address_city` varchar(120) COLLATE utf8_unicode_ci DEFAULT NULL,
  `address_state` varchar(120) COLLATE utf8_unicode_ci DEFAULT NULL,
  `address_zip` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL,
  `address_country` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
  `address_status` varchar(11) COLLATE utf8_unicode_ci DEFAULT NULL,
  `payer_email` varchar(128) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `payer_id` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `payer_status` varchar(10) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `payment_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `business` varchar(128) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `receiver_email` varchar(128) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `receiver_id` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `txn_id` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `parent_txn_id` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL,
  `num_cart_items` tinyint(4) unsigned NOT NULL DEFAULT '1',
  `mc_gross` decimal(7,2) NOT NULL DEFAULT '0.00',
  `mc_fee` decimal(7,2) NOT NULL DEFAULT '0.00',
  `payment_gross` decimal(7,2) DEFAULT NULL,
  `payment_fee` decimal(7,2) DEFAULT NULL,
  `settle_amount` decimal(7,2) DEFAULT NULL,
  `settle_currency` char(3) COLLATE utf8_unicode_ci DEFAULT NULL,
  `exchange_rate` decimal(4,2) DEFAULT NULL,
  `notify_version` varchar(6) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `verify_sign` varchar(128) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `last_modified` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `memo` text COLLATE utf8_unicode_ci,
  PRIMARY KEY (`paypal_ipn_id`,`txn_id`),
  KEY `idx_order_id_zen` (`order_id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_paypal`
--

LOCK TABLES `zen_paypal` WRITE;
/*!40000 ALTER TABLE `zen_paypal` DISABLE KEYS */;
INSERT INTO `zen_paypal` VALUES (1,11,'cart','paypalwpp','PayPal','None','PayPal Express Checkout (instant)','Completed','None','EC-2NT82604TN512135L','USD','JOHN','BRAKE','Adirondak Jak, Inc.','Adirondak Jak, Inc.','9079 PIERSON RD','FOWLERVILLE','MI','48836','','Confirmed','eorder@adirondakchairs.net','2H5JR9R6C3V4C','verified','2010-02-01 18:53:05','','wayne.aaasurvival.com','','3L132312K51507330','',1,35.04,1.32,NULL,NULL,0.00,'USD',1.00,'0.0','','0001-01-01 00:00:00','2010-02-01 12:53:03','{Record generated by payment module}'),(2,12,'cart','paypaldp','PayPal','','Credit Card (WPP)','Completed','','','USD','','','','','','','','','','','','','','2010-02-01 19:23:33','','MODULE_PAYMENT_PAYPALDP_APIUSERNAME','','8SB41353BD574861E','',1,15.71,0.00,NULL,NULL,0.00,'USD',1.00,'0.0','','0001-01-01 00:00:00','2010-02-01 13:23:31','{Record generated by payment module}'),(3,13,'cart','paypalwpp','PayPal','None','PayPal Express Checkout (instant)','Completed','None','EC-0TS35927T69694825','USD','Jennifer','Ware','','Jennifer Ware','1103 Sierra Country Court','Gardnerville','NV','89460','','Confirmed','jennifer@herdware.net','E4X8DGXCQ2JMW','verified','2010-02-15 23:35:38','','wayne.aaasurvival.com','','8MC61548464954205','',1,170.00,5.23,NULL,NULL,0.00,'USD',1.00,'0.0','','0001-01-01 00:00:00','2010-02-15 17:35:36','{Record generated by payment module}'),(4,14,'cart','paypalwpp','PayPal','None','PayPal Express Checkout (instant)','Completed','None','EC-1YN31002X9863673S','USD','Johannes','Muelmenstaedt','','Johannes Muelmenstaedt','1830 Zapo St','Del Mar','CA','92014','','Confirmed','jmuelmen@ucsd.edu','TZ43TXUPR7NV4','verified','2010-06-09 03:09:52','','wayne.aaasurvival.com','','8C463154090635105','',1,200.97,6.13,NULL,NULL,0.00,'USD',1.00,'0.0','','0001-01-01 00:00:00','2010-06-08 22:09:41','{Record generated by payment module}');
/*!40000 ALTER TABLE `zen_paypal` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_paypal_payment_status`
--

DROP TABLE IF EXISTS `zen_paypal_payment_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_paypal_payment_status` (
  `payment_status_id` int(11) NOT NULL AUTO_INCREMENT,
  `payment_status_name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`payment_status_id`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_paypal_payment_status`
--

LOCK TABLES `zen_paypal_payment_status` WRITE;
/*!40000 ALTER TABLE `zen_paypal_payment_status` DISABLE KEYS */;
INSERT INTO `zen_paypal_payment_status` VALUES (1,'Completed'),(2,'Pending'),(3,'Failed'),(4,'Denied'),(5,'Refunded'),(6,'Canceled_Reversal'),(7,'Reversed');
/*!40000 ALTER TABLE `zen_paypal_payment_status` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_paypal_payment_status_history`
--

DROP TABLE IF EXISTS `zen_paypal_payment_status_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_paypal_payment_status_history` (
  `payment_status_history_id` int(11) NOT NULL AUTO_INCREMENT,
  `paypal_ipn_id` int(11) NOT NULL DEFAULT '0',
  `txn_id` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `parent_txn_id` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `payment_status` varchar(17) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `pending_reason` varchar(14) COLLATE utf8_unicode_ci DEFAULT NULL,
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`payment_status_history_id`),
  KEY `idx_paypal_ipn_id_zen` (`paypal_ipn_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_paypal_payment_status_history`
--

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

--
-- Table structure for table `zen_paypal_session`
--

DROP TABLE IF EXISTS `zen_paypal_session`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_paypal_session` (
  `unique_id` int(11) NOT NULL AUTO_INCREMENT,
  `session_id` text COLLATE utf8_unicode_ci NOT NULL,
  `saved_session` mediumblob NOT NULL,
  `expiry` int(17) NOT NULL DEFAULT '0',
  PRIMARY KEY (`unique_id`),
  KEY `idx_session_id_zen` (`session_id`(36))
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_paypal_session`
--

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

--
-- Table structure for table `zen_paypal_testing`
--

DROP TABLE IF EXISTS `zen_paypal_testing`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_paypal_testing` (
  `paypal_ipn_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` int(11) unsigned NOT NULL DEFAULT '0',
  `custom` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `txn_type` varchar(40) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `module_name` varchar(40) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `module_mode` varchar(40) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `reason_code` varchar(40) COLLATE utf8_unicode_ci DEFAULT NULL,
  `payment_type` varchar(40) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `payment_status` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `pending_reason` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `invoice` varchar(128) COLLATE utf8_unicode_ci DEFAULT NULL,
  `mc_currency` char(3) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `first_name` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `last_name` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `payer_business_name` varchar(128) COLLATE utf8_unicode_ci DEFAULT NULL,
  `address_name` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
  `address_street` varchar(254) COLLATE utf8_unicode_ci DEFAULT NULL,
  `address_city` varchar(120) COLLATE utf8_unicode_ci DEFAULT NULL,
  `address_state` varchar(120) COLLATE utf8_unicode_ci DEFAULT NULL,
  `address_zip` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL,
  `address_country` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
  `address_status` varchar(11) COLLATE utf8_unicode_ci DEFAULT NULL,
  `payer_email` varchar(128) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `payer_id` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `payer_status` varchar(10) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `payment_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `business` varchar(128) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `receiver_email` varchar(128) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `receiver_id` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `txn_id` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `parent_txn_id` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL,
  `num_cart_items` tinyint(4) unsigned NOT NULL DEFAULT '1',
  `mc_gross` decimal(7,2) NOT NULL DEFAULT '0.00',
  `mc_fee` decimal(7,2) NOT NULL DEFAULT '0.00',
  `payment_gross` decimal(7,2) DEFAULT NULL,
  `payment_fee` decimal(7,2) DEFAULT NULL,
  `settle_amount` decimal(7,2) DEFAULT NULL,
  `settle_currency` char(3) COLLATE utf8_unicode_ci DEFAULT NULL,
  `exchange_rate` decimal(4,2) DEFAULT NULL,
  `notify_version` decimal(2,1) NOT NULL DEFAULT '0.0',
  `verify_sign` varchar(128) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `last_modified` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `memo` text COLLATE utf8_unicode_ci,
  PRIMARY KEY (`paypal_ipn_id`,`txn_id`),
  KEY `idx_order_id_zen` (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_paypal_testing`
--

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

--
-- Table structure for table `zen_product_music_extra`
--

DROP TABLE IF EXISTS `zen_product_music_extra`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_product_music_extra` (
  `products_id` int(11) NOT NULL DEFAULT '0',
  `artists_id` int(11) NOT NULL DEFAULT '0',
  `record_company_id` int(11) NOT NULL DEFAULT '0',
  `music_genre_id` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`products_id`),
  KEY `idx_music_genre_id_zen` (`music_genre_id`),
  KEY `idx_artists_id_zen` (`artists_id`),
  KEY `idx_record_company_id_zen` (`record_company_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_product_music_extra`
--

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

--
-- Table structure for table `zen_product_type_layout`
--

DROP TABLE IF EXISTS `zen_product_type_layout`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_product_type_layout` (
  `configuration_id` int(11) NOT NULL AUTO_INCREMENT,
  `configuration_title` text COLLATE utf8_unicode_ci NOT NULL,
  `configuration_key` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `configuration_value` text COLLATE utf8_unicode_ci NOT NULL,
  `configuration_description` text COLLATE utf8_unicode_ci NOT NULL,
  `product_type_id` int(11) NOT NULL DEFAULT '0',
  `sort_order` int(5) DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `use_function` text COLLATE utf8_unicode_ci,
  `set_function` text COLLATE utf8_unicode_ci,
  PRIMARY KEY (`configuration_id`),
  UNIQUE KEY `unq_config_key_zen` (`configuration_key`),
  KEY `idx_key_value_zen` (`configuration_key`,`configuration_value`(10)),
  KEY `idx_type_id_sort_order_zen` (`product_type_id`,`sort_order`)
) ENGINE=MyISAM AUTO_INCREMENT=149 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_product_type_layout`
--

LOCK TABLES `zen_product_type_layout` WRITE;
/*!40000 ALTER TABLE `zen_product_type_layout` DISABLE KEYS */;
INSERT INTO `zen_product_type_layout` VALUES (1,'Show Model Number','SHOW_PRODUCT_INFO_MODEL','1','Display Model Number on Product Info 0= off 1= on',1,1,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(2,'Show Weight','SHOW_PRODUCT_INFO_WEIGHT','1','Display Weight on Product Info 0= off 1= on',1,2,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(3,'Show Attribute Weight','SHOW_PRODUCT_INFO_WEIGHT_ATTRIBUTES','1','Display Attribute Weight on Product Info 0= off 1= on',1,3,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(4,'Show Manufacturer','SHOW_PRODUCT_INFO_MANUFACTURER','1','Display Manufacturer Name on Product Info 0= off 1= on',1,4,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(5,'Show Quantity in Shopping Cart','SHOW_PRODUCT_INFO_IN_CART_QTY','1','Display Quantity in Current Shopping Cart on Product Info 0= off 1= on',1,5,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(6,'Show Quantity in Stock','SHOW_PRODUCT_INFO_QUANTITY','0','Display Quantity in Stock on Product Info 0= off 1= on',1,6,'2010-01-27 21:19:47','2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(7,'Show Product Reviews Count','SHOW_PRODUCT_INFO_REVIEWS_COUNT','0','Display Product Reviews Count on Product Info 0= off 1= on',1,7,'2010-01-27 21:20:01','2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(8,'Show Product Reviews Button','SHOW_PRODUCT_INFO_REVIEWS','0','Display Product Reviews Button on Product Info 0= off 1= on',1,8,'2010-01-27 21:20:17','2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(9,'Show Date Available','SHOW_PRODUCT_INFO_DATE_AVAILABLE','1','Display Date Available on Product Info 0= off 1= on',1,9,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(10,'Show Date Added','SHOW_PRODUCT_INFO_DATE_ADDED','1','Display Date Added on Product Info 0= off 1= on',1,10,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(11,'Show Product URL','SHOW_PRODUCT_INFO_URL','1','Display URL on Product Info 0= off 1= on',1,11,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(12,'Show Product Additional Images','SHOW_PRODUCT_INFO_ADDITIONAL_IMAGES','1','Display Additional Images on Product Info 0= off 1= on',1,13,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(13,'Show Starting At text on Price','SHOW_PRODUCT_INFO_STARTING_AT','0','Display Starting At text on products with attributes Product Info 0= off 1= on',1,12,'2010-07-24 11:57:27','2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(14,'Show Product Tell a Friend button','SHOW_PRODUCT_INFO_TELL_A_FRIEND','0','Display the Tell a Friend button on Product Info<br /><br />Note: Turning this setting off does not affect the Tell a Friend box in the columns and turning off the Tell a Friend box does not affect the button<br />0= off 1= on',1,15,'2010-01-27 21:21:03','2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(15,'Product Free Shipping Image Status - Catalog','SHOW_PRODUCT_INFO_ALWAYS_FREE_SHIPPING_IMAGE_SWITCH','0','Show the Free Shipping image/text in the catalog?',1,16,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(16,'Product Price Tax Class Default - When adding new products?','DEFAULT_PRODUCT_TAX_CLASS_ID','0','What should the Product Price Tax Class Default ID be when adding new products?',1,100,NULL,'2010-01-13 17:35:01','',''),(17,'Product Virtual Default Status - Skip Shipping Address - When adding new products?','DEFAULT_PRODUCT_PRODUCTS_VIRTUAL','0','Default Virtual Product status to be ON when adding new products?',1,101,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(18,'Product Free Shipping Default Status - Normal Shipping Rules - When adding new products?','DEFAULT_PRODUCT_PRODUCTS_IS_ALWAYS_FREE_SHIPPING','0','What should the Default Free Shipping status be when adding new products?<br />Yes, Always Free Shipping ON<br />No, Always Free Shipping OFF<br />Special, Product/Download Requires Shipping',1,102,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes, Always ON\'), array(\'id\'=>\'0\', \'text\'=>\'No, Always OFF\'), array(\'id\'=>\'2\', \'text\'=>\'Special\')), '),(19,'Show Model Number','SHOW_PRODUCT_MUSIC_INFO_MODEL','1','Display Model Number on Product Info 0= off 1= on',2,1,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(20,'Show Weight','SHOW_PRODUCT_MUSIC_INFO_WEIGHT','0','Display Weight on Product Info 0= off 1= on',2,2,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(21,'Show Attribute Weight','SHOW_PRODUCT_MUSIC_INFO_WEIGHT_ATTRIBUTES','1','Display Attribute Weight on Product Info 0= off 1= on',2,3,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(22,'Show Artist','SHOW_PRODUCT_MUSIC_INFO_ARTIST','1','Display Artists Name on Product Info 0= off 1= on',2,4,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(23,'Show Music Genre','SHOW_PRODUCT_MUSIC_INFO_GENRE','1','Display Music Genre on Product Info 0= off 1= on',2,4,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(24,'Show Record Company','SHOW_PRODUCT_MUSIC_INFO_RECORD_COMPANY','1','Display Record Company on Product Info 0= off 1= on',2,4,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(25,'Show Quantity in Shopping Cart','SHOW_PRODUCT_MUSIC_INFO_IN_CART_QTY','1','Display Quantity in Current Shopping Cart on Product Info 0= off 1= on',2,5,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(26,'Show Quantity in Stock','SHOW_PRODUCT_MUSIC_INFO_QUANTITY','0','Display Quantity in Stock on Product Info 0= off 1= on',2,6,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(27,'Show Product Reviews Count','SHOW_PRODUCT_MUSIC_INFO_REVIEWS_COUNT','1','Display Product Reviews Count on Product Info 0= off 1= on',2,7,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(28,'Show Product Reviews Button','SHOW_PRODUCT_MUSIC_INFO_REVIEWS','1','Display Product Reviews Button on Product Info 0= off 1= on',2,8,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(29,'Show Date Available','SHOW_PRODUCT_MUSIC_INFO_DATE_AVAILABLE','1','Display Date Available on Product Info 0= off 1= on',2,9,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(30,'Show Date Added','SHOW_PRODUCT_MUSIC_INFO_DATE_ADDED','1','Display Date Added on Product Info 0= off 1= on',2,10,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(31,'Show Starting At text on Price','SHOW_PRODUCT_MUSIC_INFO_STARTING_AT','1','Display Starting At text on products with attributes Product Info 0= off 1= on',2,12,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(32,'Show Product Additional Images','SHOW_PRODUCT_MUSIC_INFO_ADDITIONAL_IMAGES','1','Display Additional Images on Product Info 0= off 1= on',2,13,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(33,'Show Product Tell a Friend button','SHOW_PRODUCT_MUSIC_INFO_TELL_A_FRIEND','1','Display the Tell a Friend button on Product Info<br /><br />Note: Turning this setting off does not affect the Tell a Friend box in the columns and turning off the Tell a Friend box does not affect the button<br />0= off 1= on',2,15,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(34,'Product Free Shipping Image Status - Catalog','SHOW_PRODUCT_MUSIC_INFO_ALWAYS_FREE_SHIPPING_IMAGE_SWITCH','0','Show the Free Shipping image/text in the catalog?',2,16,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(35,'Product Price Tax Class Default - When adding new products?','DEFAULT_PRODUCT_MUSIC_TAX_CLASS_ID','0','What should the Product Price Tax Class Default ID be when adding new products?',2,100,NULL,'2010-01-13 17:35:01','',''),(36,'Product Virtual Default Status - Skip Shipping Address - When adding new products?','DEFAULT_PRODUCT_MUSIC_PRODUCTS_VIRTUAL','0','Default Virtual Product status to be ON when adding new products?',2,101,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(37,'Product Free Shipping Default Status - Normal Shipping Rules - When adding new products?','DEFAULT_PRODUCT_MUSIC_PRODUCTS_IS_ALWAYS_FREE_SHIPPING','0','What should the Default Free Shipping status be when adding new products?<br />Yes, Always Free Shipping ON<br />No, Always Free Shipping OFF<br />Special, Product/Download Requires Shipping',2,102,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes, Always ON\'), array(\'id\'=>\'0\', \'text\'=>\'No, Always OFF\'), array(\'id\'=>\'2\', \'text\'=>\'Special\')), '),(38,'Show Product Reviews Count','SHOW_DOCUMENT_GENERAL_INFO_REVIEWS_COUNT','1','Display Product Reviews Count on Product Info 0= off 1= on',3,7,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(39,'Show Product Reviews Button','SHOW_DOCUMENT_GENERAL_INFO_REVIEWS','1','Display Product Reviews Button on Product Info 0= off 1= on',3,8,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(40,'Show Date Available','SHOW_DOCUMENT_GENERAL_INFO_DATE_AVAILABLE','1','Display Date Available on Product Info 0= off 1= on',3,9,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(41,'Show Date Added','SHOW_DOCUMENT_GENERAL_INFO_DATE_ADDED','1','Display Date Added on Product Info 0= off 1= on',3,10,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(42,'Show Product Tell a Friend button','SHOW_DOCUMENT_GENERAL_INFO_TELL_A_FRIEND','1','Display the Tell a Friend button on Product Info<br /><br />Note: Turning this setting off does not affect the Tell a Friend box in the columns and turning off the Tell a Friend box does not affect the button<br />0= off 1= on',3,15,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(43,'Show Product URL','SHOW_DOCUMENT_GENERAL_INFO_URL','1','Display URL on Product Info 0= off 1= on',3,11,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(44,'Show Product Additional Images','SHOW_DOCUMENT_GENERAL_INFO_ADDITIONAL_IMAGES','1','Display Additional Images on Product Info 0= off 1= on',3,13,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(45,'Show Model Number','SHOW_DOCUMENT_PRODUCT_INFO_MODEL','1','Display Model Number on Product Info 0= off 1= on',4,1,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(46,'Show Weight','SHOW_DOCUMENT_PRODUCT_INFO_WEIGHT','0','Display Weight on Product Info 0= off 1= on',4,2,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(47,'Show Attribute Weight','SHOW_DOCUMENT_PRODUCT_INFO_WEIGHT_ATTRIBUTES','1','Display Attribute Weight on Product Info 0= off 1= on',4,3,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(48,'Show Manufacturer','SHOW_DOCUMENT_PRODUCT_INFO_MANUFACTURER','1','Display Manufacturer Name on Product Info 0= off 1= on',4,4,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(49,'Show Quantity in Shopping Cart','SHOW_DOCUMENT_PRODUCT_INFO_IN_CART_QTY','1','Display Quantity in Current Shopping Cart on Product Info 0= off 1= on',4,5,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(50,'Show Quantity in Stock','SHOW_DOCUMENT_PRODUCT_INFO_QUANTITY','0','Display Quantity in Stock on Product Info 0= off 1= on',4,6,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(51,'Show Product Reviews Count','SHOW_DOCUMENT_PRODUCT_INFO_REVIEWS_COUNT','1','Display Product Reviews Count on Product Info 0= off 1= on',4,7,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(52,'Show Product Reviews Button','SHOW_DOCUMENT_PRODUCT_INFO_REVIEWS','1','Display Product Reviews Button on Product Info 0= off 1= on',4,8,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(53,'Show Date Available','SHOW_DOCUMENT_PRODUCT_INFO_DATE_AVAILABLE','1','Display Date Available on Product Info 0= off 1= on',4,9,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(54,'Show Date Added','SHOW_DOCUMENT_PRODUCT_INFO_DATE_ADDED','1','Display Date Added on Product Info 0= off 1= on',4,10,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(55,'Show Product URL','SHOW_DOCUMENT_PRODUCT_INFO_URL','1','Display URL on Product Info 0= off 1= on',4,11,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(56,'Show Product Additional Images','SHOW_DOCUMENT_PRODUCT_INFO_ADDITIONAL_IMAGES','1','Display Additional Images on Product Info 0= off 1= on',4,13,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(57,'Show Starting At text on Price','SHOW_DOCUMENT_PRODUCT_INFO_STARTING_AT','1','Display Starting At text on products with attributes Product Info 0= off 1= on',4,12,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(58,'Show Product Tell a Friend button','SHOW_DOCUMENT_PRODUCT_INFO_TELL_A_FRIEND','1','Display the Tell a Friend button on Product Info<br /><br />Note: Turning this setting off does not affect the Tell a Friend box in the columns and turning off the Tell a Friend box does not affect the button<br />0= off 1= on',4,15,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(59,'Product Free Shipping Image Status - Catalog','SHOW_DOCUMENT_PRODUCT_INFO_ALWAYS_FREE_SHIPPING_IMAGE_SWITCH','0','Show the Free Shipping image/text in the catalog?',4,16,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(60,'Product Price Tax Class Default - When adding new products?','DEFAULT_DOCUMENT_PRODUCT_TAX_CLASS_ID','0','What should the Product Price Tax Class Default ID be when adding new products?',4,100,NULL,'2010-01-13 17:35:01','',''),(61,'Product Virtual Default Status - Skip Shipping Address - When adding new products?','DEFAULT_DOCUMENT_PRODUCT_PRODUCTS_VIRTUAL','0','Default Virtual Product status to be ON when adding new products?',4,101,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(62,'Product Free Shipping Default Status - Normal Shipping Rules - When adding new products?','DEFAULT_DOCUMENT_PRODUCT_PRODUCTS_IS_ALWAYS_FREE_SHIPPING','0','What should the Default Free Shipping status be when adding new products?<br />Yes, Always Free Shipping ON<br />No, Always Free Shipping OFF<br />Special, Product/Download Requires Shipping',4,102,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes, Always ON\'), array(\'id\'=>\'0\', \'text\'=>\'No, Always OFF\'), array(\'id\'=>\'2\', \'text\'=>\'Special\')), '),(63,'Show Model Number','SHOW_PRODUCT_FREE_SHIPPING_INFO_MODEL','1','Display Model Number on Product Info 0= off 1= on',5,1,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(64,'Show Weight','SHOW_PRODUCT_FREE_SHIPPING_INFO_WEIGHT','0','Display Weight on Product Info 0= off 1= on',5,2,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(65,'Show Attribute Weight','SHOW_PRODUCT_FREE_SHIPPING_INFO_WEIGHT_ATTRIBUTES','1','Display Attribute Weight on Product Info 0= off 1= on',5,3,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(66,'Show Manufacturer','SHOW_PRODUCT_FREE_SHIPPING_INFO_MANUFACTURER','1','Display Manufacturer Name on Product Info 0= off 1= on',5,4,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(67,'Show Quantity in Shopping Cart','SHOW_PRODUCT_FREE_SHIPPING_INFO_IN_CART_QTY','1','Display Quantity in Current Shopping Cart on Product Info 0= off 1= on',5,5,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(68,'Show Quantity in Stock','SHOW_PRODUCT_FREE_SHIPPING_INFO_QUANTITY','1','Display Quantity in Stock on Product Info 0= off 1= on',5,6,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(69,'Show Product Reviews Count','SHOW_PRODUCT_FREE_SHIPPING_INFO_REVIEWS_COUNT','1','Display Product Reviews Count on Product Info 0= off 1= on',5,7,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(70,'Show Product Reviews Button','SHOW_PRODUCT_FREE_SHIPPING_INFO_REVIEWS','1','Display Product Reviews Button on Product Info 0= off 1= on',5,8,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(71,'Show Date Available','SHOW_PRODUCT_FREE_SHIPPING_INFO_DATE_AVAILABLE','0','Display Date Available on Product Info 0= off 1= on',5,9,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(72,'Show Date Added','SHOW_PRODUCT_FREE_SHIPPING_INFO_DATE_ADDED','1','Display Date Added on Product Info 0= off 1= on',5,10,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(73,'Show Product URL','SHOW_PRODUCT_FREE_SHIPPING_INFO_URL','1','Display URL on Product Info 0= off 1= on',5,11,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(74,'Show Product Additional Images','SHOW_PRODUCT_FREE_SHIPPING_INFO_ADDITIONAL_IMAGES','1','Display Additional Images on Product Info 0= off 1= on',5,13,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(75,'Show Starting At text on Price','SHOW_PRODUCT_FREE_SHIPPING_INFO_STARTING_AT','1','Display Starting At text on products with attributes Product Info 0= off 1= on',5,12,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(76,'Show Product Tell a Friend button','SHOW_PRODUCT_FREE_SHIPPING_INFO_TELL_A_FRIEND','1','Display the Tell a Friend button on Product Info<br /><br />Note: Turning this setting off does not affect the Tell a Friend box in the columns and turning off the Tell a Friend box does not affect the button<br />0= off 1= on',5,15,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(77,'Product Free Shipping Image Status - Catalog','SHOW_PRODUCT_FREE_SHIPPING_INFO_ALWAYS_FREE_SHIPPING_IMAGE_SWITCH','1','Show the Free Shipping image/text in the catalog?',5,16,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(78,'Product Price Tax Class Default - When adding new products?','DEFAULT_PRODUCT_FREE_SHIPPING_TAX_CLASS_ID','0','What should the Product Price Tax Class Default ID be when adding new products?',5,100,NULL,'2010-01-13 17:35:01','',''),(79,'Product Virtual Default Status - Skip Shipping Address - When adding new products?','DEFAULT_PRODUCT_FREE_SHIPPING_PRODUCTS_VIRTUAL','0','Default Virtual Product status to be ON when adding new products?',5,101,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(80,'Product Free Shipping Default Status - Normal Shipping Rules - When adding new products?','DEFAULT_PRODUCT_FREE_SHIPPING_PRODUCTS_IS_ALWAYS_FREE_SHIPPING','1','What should the Default Free Shipping status be when adding new products?<br />Yes, Always Free Shipping ON<br />No, Always Free Shipping OFF<br />Special, Product/Download Requires Shipping',5,102,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes, Always ON\'), array(\'id\'=>\'0\', \'text\'=>\'No, Always OFF\'), array(\'id\'=>\'2\', \'text\'=>\'Special\')), '),(81,'Show Metatags Title Default - Product Title','SHOW_PRODUCT_INFO_METATAGS_TITLE_STATUS','1','Display Product Title in Meta Tags Title 0= off 1= on',1,50,'2010-07-14 07:58:11','2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(82,'Show Metatags Title Default - Product Name','SHOW_PRODUCT_INFO_METATAGS_PRODUCTS_NAME_STATUS','1','Display Product Name in Meta Tags Title 0= off 1= on',1,51,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(83,'Show Metatags Title Default - Product Model','SHOW_PRODUCT_INFO_METATAGS_MODEL_STATUS','1','Display Product Model in Meta Tags Title 0= off 1= on',1,52,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(84,'Show Metatags Title Default - Product Price','SHOW_PRODUCT_INFO_METATAGS_PRICE_STATUS','0','Display Product Price in Meta Tags Title 0= off 1= on',1,53,'2010-07-14 07:50:54','2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(85,'Show Metatags Title Default - Product Tagline','SHOW_PRODUCT_INFO_METATAGS_TITLE_TAGLINE_STATUS','0','Display Product Tagline in Meta Tags Title 0= off 1= on',1,54,'2010-07-14 07:50:30','2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(86,'Show Metatags Title Default - Product Title','SHOW_PRODUCT_MUSIC_INFO_METATAGS_TITLE_STATUS','1','Display Product Title in Meta Tags Title 0= off 1= on',2,50,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(87,'Show Metatags Title Default - Product Name','SHOW_PRODUCT_MUSIC_INFO_METATAGS_PRODUCTS_NAME_STATUS','1','Display Product Name in Meta Tags Title 0= off 1= on',2,51,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(88,'Show Metatags Title Default - Product Model','SHOW_PRODUCT_MUSIC_INFO_METATAGS_MODEL_STATUS','1','Display Product Model in Meta Tags Title 0= off 1= on',2,52,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(89,'Show Metatags Title Default - Product Price','SHOW_PRODUCT_MUSIC_INFO_METATAGS_PRICE_STATUS','1','Display Product Price in Meta Tags Title 0= off 1= on',2,53,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(90,'Show Metatags Title Default - Product Tagline','SHOW_PRODUCT_MUSIC_INFO_METATAGS_TITLE_TAGLINE_STATUS','1','Display Product Tagline in Meta Tags Title 0= off 1= on',2,54,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(91,'Show Metatags Title Default - Document Title','SHOW_DOCUMENT_GENERAL_INFO_METATAGS_TITLE_STATUS','1','Display Document Title in Meta Tags Title 0= off 1= on',3,50,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(92,'Show Metatags Title Default - Document Name','SHOW_DOCUMENT_GENERAL_INFO_METATAGS_PRODUCTS_NAME_STATUS','1','Display Document Name in Meta Tags Title 0= off 1= on',3,51,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(93,'Show Metatags Title Default - Document Tagline','SHOW_DOCUMENT_GENERAL_INFO_METATAGS_TITLE_TAGLINE_STATUS','1','Display Document Tagline in Meta Tags Title 0= off 1= on',3,54,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(94,'Show Metatags Title Default - Document Title','SHOW_DOCUMENT_PRODUCT_INFO_METATAGS_TITLE_STATUS','1','Display Document Title in Meta Tags Title 0= off 1= on',4,50,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(95,'Show Metatags Title Default - Document Name','SHOW_DOCUMENT_PRODUCT_INFO_METATAGS_PRODUCTS_NAME_STATUS','1','Display Document Name in Meta Tags Title 0= off 1= on',4,51,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(96,'Show Metatags Title Default - Document Model','SHOW_DOCUMENT_PRODUCT_INFO_METATAGS_MODEL_STATUS','1','Display Document Model in Meta Tags Title 0= off 1= on',4,52,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(97,'Show Metatags Title Default - Document Price','SHOW_DOCUMENT_PRODUCT_INFO_METATAGS_PRICE_STATUS','1','Display Document Price in Meta Tags Title 0= off 1= on',4,53,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(98,'Show Metatags Title Default - Document Tagline','SHOW_DOCUMENT_PRODUCT_INFO_METATAGS_TITLE_TAGLINE_STATUS','1','Display Document Tagline in Meta Tags Title 0= off 1= on',4,54,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(99,'Show Metatags Title Default - Product Title','SHOW_PRODUCT_FREE_SHIPPING_INFO_METATAGS_TITLE_STATUS','1','Display Product Title in Meta Tags Title 0= off 1= on',5,50,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(100,'Show Metatags Title Default - Product Name','SHOW_PRODUCT_FREE_SHIPPING_INFO_METATAGS_PRODUCTS_NAME_STATUS','1','Display Product Name in Meta Tags Title 0= off 1= on',5,51,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(101,'Show Metatags Title Default - Product Model','SHOW_PRODUCT_FREE_SHIPPING_INFO_METATAGS_MODEL_STATUS','1','Display Product Model in Meta Tags Title 0= off 1= on',5,52,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(102,'Show Metatags Title Default - Product Price','SHOW_PRODUCT_FREE_SHIPPING_INFO_METATAGS_PRICE_STATUS','1','Display Product Price in Meta Tags Title 0= off 1= on',5,53,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(103,'Show Metatags Title Default - Product Tagline','SHOW_PRODUCT_FREE_SHIPPING_INFO_METATAGS_TITLE_TAGLINE_STATUS','1','Display Product Tagline in Meta Tags Title 0= off 1= on',5,54,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(104,'PRODUCT Attribute is Display Only - Default','DEFAULT_PRODUCT_ATTRIBUTES_DISPLAY_ONLY','0','PRODUCT Attribute is Display Only<br />Used For Display Purposes Only<br />0= No 1= Yes',1,200,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(105,'PRODUCT Attribute is Free - Default','DEFAULT_PRODUCT_ATTRIBUTE_IS_FREE','1','PRODUCT Attribute is Free<br />Attribute is Free When Product is Free<br />0= No 1= Yes',1,201,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(106,'PRODUCT Attribute is Default - Default','DEFAULT_PRODUCT_ATTRIBUTES_DEFAULT','0','PRODUCT Attribute is Default<br />Default Attribute to be Marked Selected<br />0= No 1= Yes',1,202,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(107,'PRODUCT Attribute is Discounted - Default','DEFAULT_PRODUCT_ATTRIBUTES_DISCOUNTED','1','PRODUCT Attribute is Discounted<br />Apply Discounts Used by Product Special/Sale<br />0= No 1= Yes',1,203,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(108,'PRODUCT Attribute is Included in Base Price - Default','DEFAULT_PRODUCT_ATTRIBUTES_PRICE_BASE_INCLUDED','1','PRODUCT Attribute is Included in Base Price<br />Include in Base Price When Priced by Attributes<br />0= No 1= Yes',1,204,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(109,'PRODUCT Attribute is Required - Default','DEFAULT_PRODUCT_ATTRIBUTES_REQUIRED','0','PRODUCT Attribute is Required<br />Attribute Required for Text<br />0= No 1= Yes',1,205,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(110,'PRODUCT Attribute Price Prefix - Default','DEFAULT_PRODUCT_PRICE_PREFIX','1','PRODUCT Attribute Price Prefix<br />Default Attribute Price Prefix for Adding<br />Blank, + or -',1,206,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Blank\'), array(\'id\'=>\'1\', \'text\'=>\'+\'), array(\'id\'=>\'2\', \'text\'=>\'-\')), '),(111,'PRODUCT Attribute Weight Prefix - Default','DEFAULT_PRODUCT_PRODUCTS_ATTRIBUTES_WEIGHT_PREFIX','1','PRODUCT Attribute Weight Prefix<br />Default Attribute Weight Prefix<br />Blank, + or -',1,207,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Blank\'), array(\'id\'=>\'1\', \'text\'=>\'+\'), array(\'id\'=>\'2\', \'text\'=>\'-\')), '),(112,'MUSIC Attribute is Display Only - Default','DEFAULT_PRODUCT_MUSIC_ATTRIBUTES_DISPLAY_ONLY','0','MUSIC Attribute is Display Only<br />Used For Display Purposes Only<br />0= No 1= Yes',2,200,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(113,'MUSIC Attribute is Free - Default','DEFAULT_PRODUCT_MUSIC_ATTRIBUTE_IS_FREE','1','MUSIC Attribute is Free<br />Attribute is Free When Product is Free<br />0= No 1= Yes',2,201,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(114,'MUSIC Attribute is Default - Default','DEFAULT_PRODUCT_MUSIC_ATTRIBUTES_DEFAULT','0','MUSIC Attribute is Default<br />Default Attribute to be Marked Selected<br />0= No 1= Yes',2,202,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(115,'MUSIC Attribute is Discounted - Default','DEFAULT_PRODUCT_MUSIC_ATTRIBUTES_DISCOUNTED','1','MUSIC Attribute is Discounted<br />Apply Discounts Used by Product Special/Sale<br />0= No 1= Yes',2,203,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(116,'MUSIC Attribute is Included in Base Price - Default','DEFAULT_PRODUCT_MUSIC_ATTRIBUTES_PRICE_BASE_INCLUDED','1','MUSIC Attribute is Included in Base Price<br />Include in Base Price When Priced by Attributes<br />0= No 1= Yes',2,204,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(117,'MUSIC Attribute is Required - Default','DEFAULT_PRODUCT_MUSIC_ATTRIBUTES_REQUIRED','0','MUSIC Attribute is Required<br />Attribute Required for Text<br />0= No 1= Yes',2,205,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(118,'MUSIC Attribute Price Prefix - Default','DEFAULT_PRODUCT_MUSIC_PRICE_PREFIX','1','MUSIC Attribute Price Prefix<br />Default Attribute Price Prefix for Adding<br />Blank, + or -',2,206,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Blank\'), array(\'id\'=>\'1\', \'text\'=>\'+\'), array(\'id\'=>\'2\', \'text\'=>\'-\')), '),(119,'MUSIC Attribute Weight Prefix - Default','DEFAULT_PRODUCT_MUSIC_PRODUCTS_ATTRIBUTES_WEIGHT_PREFIX','1','MUSIC Attribute Weight Prefix<br />Default Attribute Weight Prefix<br />Blank, + or -',2,207,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Blank\'), array(\'id\'=>\'1\', \'text\'=>\'+\'), array(\'id\'=>\'2\', \'text\'=>\'-\')), '),(120,'DOCUMENT GENERAL Attribute is Display Only - Default','DEFAULT_DOCUMENT_GENERAL_ATTRIBUTES_DISPLAY_ONLY','0','DOCUMENT GENERAL Attribute is Display Only<br />Used For Display Purposes Only<br />0= No 1= Yes',3,200,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(121,'DOCUMENT GENERAL Attribute is Free - Default','DEFAULT_DOCUMENT_GENERAL_ATTRIBUTE_IS_FREE','1','DOCUMENT GENERAL Attribute is Free<br />Attribute is Free When Product is Free<br />0= No 1= Yes',3,201,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(122,'DOCUMENT GENERAL Attribute is Default - Default','DEFAULT_DOCUMENT_GENERAL_ATTRIBUTES_DEFAULT','0','DOCUMENT GENERAL Attribute is Default<br />Default Attribute to be Marked Selected<br />0= No 1= Yes',3,202,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(123,'DOCUMENT GENERAL Attribute is Discounted - Default','DEFAULT_DOCUMENT_GENERAL_ATTRIBUTES_DISCOUNTED','1','DOCUMENT GENERAL Attribute is Discounted<br />Apply Discounts Used by Product Special/Sale<br />0= No 1= Yes',3,203,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(124,'DOCUMENT GENERAL Attribute is Included in Base Price - Default','DEFAULT_DOCUMENT_GENERAL_ATTRIBUTES_PRICE_BASE_INCLUDED','1','DOCUMENT GENERAL Attribute is Included in Base Price<br />Include in Base Price When Priced by Attributes<br />0= No 1= Yes',3,204,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(125,'DOCUMENT GENERAL Attribute is Required - Default','DEFAULT_DOCUMENT_GENERAL_ATTRIBUTES_REQUIRED','0','DOCUMENT GENERAL Attribute is Required<br />Attribute Required for Text<br />0= No 1= Yes',3,205,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(126,'DOCUMENT GENERAL Attribute Price Prefix - Default','DEFAULT_DOCUMENT_GENERAL_PRICE_PREFIX','1','DOCUMENT GENERAL Attribute Price Prefix<br />Default Attribute Price Prefix for Adding<br />Blank, + or -',3,206,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Blank\'), array(\'id\'=>\'1\', \'text\'=>\'+\'), array(\'id\'=>\'2\', \'text\'=>\'-\')), '),(127,'DOCUMENT GENERAL Attribute Weight Prefix - Default','DEFAULT_DOCUMENT_GENERAL_PRODUCTS_ATTRIBUTES_WEIGHT_PREFIX','1','DOCUMENT GENERAL Attribute Weight Prefix<br />Default Attribute Weight Prefix<br />Blank, + or -',3,207,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Blank\'), array(\'id\'=>\'1\', \'text\'=>\'+\'), array(\'id\'=>\'2\', \'text\'=>\'-\')), '),(128,'DOCUMENT PRODUCT Attribute is Display Only - Default','DEFAULT_DOCUMENT_PRODUCT_ATTRIBUTES_DISPLAY_ONLY','0','DOCUMENT PRODUCT Attribute is Display Only<br />Used For Display Purposes Only<br />0= No 1= Yes',4,200,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(129,'DOCUMENT PRODUCT Attribute is Free - Default','DEFAULT_DOCUMENT_PRODUCT_ATTRIBUTE_IS_FREE','1','DOCUMENT PRODUCT Attribute is Free<br />Attribute is Free When Product is Free<br />0= No 1= Yes',4,201,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(130,'DOCUMENT PRODUCT Attribute is Default - Default','DEFAULT_DOCUMENT_PRODUCT_ATTRIBUTES_DEFAULT','0','DOCUMENT PRODUCT Attribute is Default<br />Default Attribute to be Marked Selected<br />0= No 1= Yes',4,202,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(131,'DOCUMENT PRODUCT Attribute is Discounted - Default','DEFAULT_DOCUMENT_PRODUCT_ATTRIBUTES_DISCOUNTED','1','DOCUMENT PRODUCT Attribute is Discounted<br />Apply Discounts Used by Product Special/Sale<br />0= No 1= Yes',4,203,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(132,'DOCUMENT PRODUCT Attribute is Included in Base Price - Default','DEFAULT_DOCUMENT_PRODUCT_ATTRIBUTES_PRICE_BASE_INCLUDED','1','DOCUMENT PRODUCT Attribute is Included in Base Price<br />Include in Base Price When Priced by Attributes<br />0= No 1= Yes',4,204,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(133,'DOCUMENT PRODUCT Attribute is Required - Default','DEFAULT_DOCUMENT_PRODUCT_ATTRIBUTES_REQUIRED','0','DOCUMENT PRODUCT Attribute is Required<br />Attribute Required for Text<br />0= No 1= Yes',4,205,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(134,'DOCUMENT PRODUCT Attribute Price Prefix - Default','DEFAULT_DOCUMENT_PRODUCT_PRICE_PREFIX','1','DOCUMENT PRODUCT Attribute Price Prefix<br />Default Attribute Price Prefix for Adding<br />Blank, + or -',4,206,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Blank\'), array(\'id\'=>\'1\', \'text\'=>\'+\'), array(\'id\'=>\'2\', \'text\'=>\'-\')), '),(135,'DOCUMENT PRODUCT Attribute Weight Prefix - Default','DEFAULT_DOCUMENT_PRODUCT_PRODUCTS_ATTRIBUTES_WEIGHT_PREFIX','1','DOCUMENT PRODUCT Attribute Weight Prefix<br />Default Attribute Weight Prefix<br />Blank, + or -',4,207,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Blank\'), array(\'id\'=>\'1\', \'text\'=>\'+\'), array(\'id\'=>\'2\', \'text\'=>\'-\')), '),(136,'PRODUCT FREE SHIPPING Attribute is Display Only - Default','DEFAULT_PRODUCT_FREE_SHIPPING_ATTRIBUTES_DISPLAY_ONLY','0','PRODUCT FREE SHIPPING Attribute is Display Only<br />Used For Display Purposes Only<br />0= No 1= Yes',5,201,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(137,'PRODUCT FREE SHIPPING Attribute is Free - Default','DEFAULT_PRODUCT_FREE_SHIPPING_ATTRIBUTE_IS_FREE','1','PRODUCT FREE SHIPPING Attribute is Free<br />Attribute is Free When Product is Free<br />0= No 1= Yes',5,201,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(138,'PRODUCT FREE SHIPPING Attribute is Default - Default','DEFAULT_PRODUCT_FREE_SHIPPING_ATTRIBUTES_DEFAULT','0','PRODUCT FREE SHIPPING Attribute is Default<br />Default Attribute to be Marked Selected<br />0= No 1= Yes',5,202,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(139,'PRODUCT FREE SHIPPING Attribute is Discounted - Default','DEFAULT_PRODUCT_FREE_SHIPPING_ATTRIBUTES_DISCOUNTED','1','PRODUCT FREE SHIPPING Attribute is Discounted<br />Apply Discounts Used by Product Special/Sale<br />0= No 1= Yes',5,203,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(140,'PRODUCT FREE SHIPPING Attribute is Included in Base Price - Default','DEFAULT_PRODUCT_FREE_SHIPPING_ATTRIBUTES_PRICE_BASE_INCLUDED','1','PRODUCT FREE SHIPPING Attribute is Included in Base Price<br />Include in Base Price When Priced by Attributes<br />0= No 1= Yes',5,204,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(141,'PRODUCT FREE SHIPPING Attribute is Required - Default','DEFAULT_PRODUCT_FREE_SHIPPING_ATTRIBUTES_REQUIRED','0','PRODUCT FREE SHIPPING Attribute is Required<br />Attribute Required for Text<br />0= No 1= Yes',5,205,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(142,'PRODUCT FREE SHIPPING Attribute Price Prefix - Default','DEFAULT_PRODUCT_FREE_SHIPPING_PRICE_PREFIX','1','PRODUCT FREE SHIPPING Attribute Price Prefix<br />Default Attribute Price Prefix for Adding<br />Blank, + or -',5,206,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Blank\'), array(\'id\'=>\'1\', \'text\'=>\'+\'), array(\'id\'=>\'2\', \'text\'=>\'-\')), '),(143,'PRODUCT FREE SHIPPING Attribute Weight Prefix - Default','DEFAULT_PRODUCT_FREE_SHIPPING_PRODUCTS_ATTRIBUTES_WEIGHT_PREFIX','1','PRODUCT FREE SHIPPING Attribute Weight Prefix<br />Default Attribute Weight Prefix<br />Blank, + or -',5,207,NULL,'2010-01-13 17:35:01',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Blank\'), array(\'id\'=>\'1\', \'text\'=>\'+\'), array(\'id\'=>\'2\', \'text\'=>\'-\')), '),(144,'Show Dimensions','SHOW_PRODUCT_INFO_DIMENSIONS','0','Show product dimensions on product info page (requires Numinix Product Fields)?',1,17,'2010-03-15 19:54:18','2010-01-29 23:04:44',NULL,'zen_cfg_select_option(array(\'1\', \'0\'),'),(145,'Show Diameter','SHOW_PRODUCT_INFO_DIAMETER','0','Show product diameter on product info page (requires Numinix Product Fields)?',1,17,NULL,'2010-01-29 23:04:44',NULL,'zen_cfg_select_option(array(\'1\', \'0\'),'),(146,'Show Conversions','SHOW_PRODUCT_INFO_CONVERSIONS','0','Show weight and dimension conversions on product info page (requires Numinix Product Fields)?',1,17,NULL,'2010-01-29 23:04:44',NULL,'zen_cfg_select_option(array(\'1\', \'0\'),'),(147,'Show Smaller Units','SHOW_PRODUCT_INFO_SMALLER_UNITS','0','Show weight and dimensions as g/oz? (requires Numinix Product Fields)?',1,17,NULL,'2010-01-29 23:04:44',NULL,'zen_cfg_select_option(array(\'1\', \'0\'),'),(148,'Show Actual Weight','SHOW_PRODUCT_INFO_ACTUAL_WEIGHT','0','Show products actual weight on product info page (requires Numinix Product Fields)?',1,17,NULL,'2010-01-29 23:04:44',NULL,'zen_cfg_select_option(array(\'1\', \'0\'),');
/*!40000 ALTER TABLE `zen_product_type_layout` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_product_types`
--

DROP TABLE IF EXISTS `zen_product_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_product_types` (
  `type_id` int(11) NOT NULL AUTO_INCREMENT,
  `type_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `type_handler` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `type_master_type` int(11) NOT NULL DEFAULT '1',
  `allow_add_to_cart` char(1) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'Y',
  `default_image` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `last_modified` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`type_id`),
  KEY `idx_type_master_type_zen` (`type_master_type`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_product_types`
--

LOCK TABLES `zen_product_types` WRITE;
/*!40000 ALTER TABLE `zen_product_types` DISABLE KEYS */;
INSERT INTO `zen_product_types` VALUES (1,'Product - General','product',1,'Y','','2010-01-13 17:35:01','2010-01-13 17:35:01'),(2,'Product - Music','product_music',1,'Y','','2010-01-13 17:35:01','2010-01-13 17:35:01'),(3,'Document - General','document_general',3,'N','','2010-01-13 17:35:01','2010-01-13 17:35:01'),(4,'Document - Product','document_product',3,'Y','','2010-01-13 17:35:01','2010-01-13 17:35:01'),(5,'Product - Free Shipping','product_free_shipping',1,'Y','','2010-01-13 17:35:01','2010-01-13 17:35:01');
/*!40000 ALTER TABLE `zen_product_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_product_types_to_category`
--

DROP TABLE IF EXISTS `zen_product_types_to_category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_product_types_to_category` (
  `product_type_id` int(11) NOT NULL DEFAULT '0',
  `category_id` int(11) NOT NULL DEFAULT '0',
  KEY `idx_category_id_zen` (`category_id`),
  KEY `idx_product_type_id_zen` (`product_type_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_product_types_to_category`
--

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

--
-- Table structure for table `zen_products`
--

DROP TABLE IF EXISTS `zen_products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_products` (
  `products_id` int(11) NOT NULL AUTO_INCREMENT,
  `products_type` int(11) NOT NULL DEFAULT '1',
  `products_quantity` float NOT NULL DEFAULT '0',
  `products_model` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_upc` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_isbn` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_ean` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_asin` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_epier` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_ebay` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_ebid` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_image` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_price` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `products_virtual` tinyint(1) NOT NULL DEFAULT '0',
  `products_date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `products_last_modified` datetime DEFAULT NULL,
  `products_date_available` datetime DEFAULT NULL,
  `products_weight` float NOT NULL DEFAULT '0',
  `products_actual_weight` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_weight_type` enum('lbs','kgs') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'kgs',
  `products_dim_type` enum('in','cm') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'cm',
  `products_length` decimal(6,2) DEFAULT NULL,
  `products_width` decimal(6,2) DEFAULT NULL,
  `products_height` decimal(6,2) DEFAULT NULL,
  `products_ready_to_ship` enum('0','1') COLLATE utf8_unicode_ci NOT NULL DEFAULT '1',
  `products_status` tinyint(1) NOT NULL DEFAULT '0',
  `products_tax_class_id` int(11) NOT NULL DEFAULT '0',
  `manufacturers_id` int(11) DEFAULT NULL,
  `products_ordered` float NOT NULL DEFAULT '0',
  `products_quantity_order_min` float NOT NULL DEFAULT '1',
  `products_quantity_order_units` float NOT NULL DEFAULT '1',
  `products_priced_by_attribute` tinyint(1) NOT NULL DEFAULT '0',
  `product_is_free` tinyint(1) NOT NULL DEFAULT '0',
  `product_is_call` tinyint(1) NOT NULL DEFAULT '0',
  `products_quantity_mixed` tinyint(1) NOT NULL DEFAULT '0',
  `product_is_always_free_shipping` tinyint(1) NOT NULL DEFAULT '0',
  `products_qty_box_status` tinyint(1) NOT NULL DEFAULT '1',
  `products_quantity_order_max` float NOT NULL DEFAULT '0',
  `products_sort_order` int(11) NOT NULL DEFAULT '0',
  `products_discount_type` tinyint(1) NOT NULL DEFAULT '0',
  `products_discount_type_from` tinyint(1) NOT NULL DEFAULT '0',
  `products_price_sorter` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `master_categories_id` int(11) NOT NULL DEFAULT '0',
  `products_mixed_discount_quantity` tinyint(1) NOT NULL DEFAULT '1',
  `metatags_title_status` tinyint(1) NOT NULL DEFAULT '0',
  `metatags_products_name_status` tinyint(1) NOT NULL DEFAULT '0',
  `metatags_model_status` tinyint(1) NOT NULL DEFAULT '0',
  `metatags_price_status` tinyint(1) NOT NULL DEFAULT '0',
  `metatags_title_tagline_status` tinyint(1) NOT NULL DEFAULT '0',
  `products_sh_na` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_sh_sa` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_sh_eu` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_sh_af` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_sh_as` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_sh_au` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_category` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_condition` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_EHF` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'none',
  `products_barcode` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_diameter` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`products_id`),
  KEY `idx_products_date_added_zen` (`products_date_added`),
  KEY `idx_products_status_zen` (`products_status`),
  KEY `idx_products_date_available_zen` (`products_date_available`),
  KEY `idx_products_ordered_zen` (`products_ordered`),
  KEY `idx_products_model_zen` (`products_model`),
  KEY `idx_products_price_sorter_zen` (`products_price_sorter`),
  KEY `idx_master_categories_id_zen` (`master_categories_id`),
  KEY `idx_products_sort_order_zen` (`products_sort_order`),
  KEY `idx_manufacturers_id_zen` (`manufacturers_id`)
) ENGINE=MyISAM AUTO_INCREMENT=72 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_products`
--

LOCK TABLES `zen_products` WRITE;
/*!40000 ALTER TABLE `zen_products` DISABLE KEYS */;
INSERT INTO `zen_products` VALUES (1,1,10,'1400-1','','','','','','','','fourman_01.gif',1302.0000,0,'2010-01-13 17:55:57','2010-07-14 21:05:13',NULL,12,'0','kgs','cm',0.00,0.00,0.00,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,1302.0000,1,1,0,0,0,0,0,'','','','','','',NULL,'','none','',''),(2,1,10,'1400-3','','','','','','','','fourman_01.gif',1510.0000,0,'2010-01-13 18:00:13','2010-07-14 21:06:34',NULL,14,'0','kgs','cm',0.00,0.00,0.00,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,1510.0000,1,1,0,0,0,0,0,'','','','','','',NULL,'','none','',''),(3,1,10,'1400-1/1500-1','','','','','','','','fourman_01.gif',1686.0000,0,'2010-01-13 18:02:45','2010-07-14 21:07:14',NULL,19,'0','kgs','cm',0.00,0.00,0.00,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,1686.0000,1,1,0,0,0,0,0,'','','','','','',NULL,'','none','',''),(4,1,10,'1400-1/1500-3','','','','','','','','fourman_01.gif',1800.0000,0,'2010-01-13 18:17:46','2010-07-14 21:07:28',NULL,20,'0','kgs','cm',0.00,0.00,0.00,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,1800.0000,1,1,0,0,0,0,0,'','','','','','',NULL,'','none','',''),(5,1,9,'1400-1/1500-5','','','','','','','','fourman_01.gif',2295.0000,0,'2010-01-13 18:21:51','2010-07-14 21:06:56',NULL,21,'0','kgs','cm',0.00,0.00,0.00,'1',1,0,0,1,1,1,0,0,0,1,0,1,0,0,0,0,2295.0000,1,1,0,0,0,0,0,'','','','','','',NULL,'','none','',''),(6,1,10,'1900-1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nineman_01.gif',1696.0000,0,'2010-01-13 18:27:21','2010-07-14 21:10:35',NULL,18,NULL,'kgs','cm',NULL,NULL,NULL,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,1696.0000,7,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL),(7,1,10,'1900-1/2000-1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nineman_01.gif',2209.0000,0,'2010-01-13 18:30:48','2010-07-14 21:11:02',NULL,29,NULL,'kgs','cm',NULL,NULL,NULL,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,2209.0000,7,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL),(8,1,10,'1900-1/2000-3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nineman_01.gif',2342.0000,0,'2010-01-13 18:33:20','2010-07-14 21:11:14',NULL,30,NULL,'kgs','cm',NULL,NULL,NULL,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,2342.0000,7,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL),(9,1,10,'1900-1/2000-5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nineman_01.gif',2993.0000,0,'2010-01-13 18:36:14','2010-07-14 21:10:47',NULL,32,NULL,'kgs','cm',NULL,NULL,NULL,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,2993.0000,7,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL),(10,1,10,'RAF1104-101','','','','','','','','fourman_01.gif',1695.0000,0,'2010-01-13 20:59:11','2010-07-14 21:05:27',NULL,15,'0','kgs','cm',0.00,0.00,0.00,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,1695.0000,1,1,0,0,0,0,0,'','','','','','',NULL,'','none','',''),(11,1,10,'RAF1104-102','','','','','','','','fourmantso_01.gif',1933.0000,0,'2010-01-13 21:02:35','2010-07-14 21:05:40',NULL,15,'0','kgs','cm',0.00,0.00,0.00,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,1933.0000,1,1,0,0,0,0,0,'','','','','','',NULL,'','none','',''),(12,1,10,'RAF1104-103','','','','','','','','fourmantso_01.gif',2199.0000,0,'2010-01-13 21:05:30','2010-07-14 21:06:19',NULL,22,'0','kgs','cm',0.00,0.00,0.00,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,2199.0000,1,1,0,0,0,0,0,'','','','','','',NULL,'','none','',''),(13,1,10,'RAF1104-104','','','','','','','','fourmantso_01.gif',2323.0000,0,'2010-01-13 21:08:21','2010-07-14 21:05:52',NULL,23,'0','kgs','cm',0.00,0.00,0.00,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,2323.0000,1,1,0,0,0,0,0,'','','','','','',NULL,'','none','',''),(14,1,10,'RAF1104-105','','','','','','','','fourmantso_01.gif',2836.0000,0,'2010-01-13 21:10:38','2010-07-14 21:06:05',NULL,27,'0','kgs','cm',0.00,0.00,0.00,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,2836.0000,1,1,0,0,0,0,0,'','','','','','',NULL,'','none','',''),(15,1,10,'RAF1108-101','','','','','','','','nineman_01.gif',2313.0000,0,'2010-01-13 21:16:06','2010-07-14 21:09:24',NULL,20,'0','kgs','cm',0.00,0.00,0.00,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,2313.0000,10,1,0,0,0,0,0,'','','','','','',NULL,'','none','',''),(16,1,10,'RAF1108-102',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nineman_01.gif',2608.0000,0,'2010-01-13 21:19:25','2010-07-14 21:09:37',NULL,22,NULL,'kgs','cm',NULL,NULL,NULL,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,2608.0000,10,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL),(17,1,10,'RAF1108-103',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nineman_01.gif',2959.0000,0,'2010-01-13 21:22:01','2010-07-14 21:10:15',NULL,31,NULL,'kgs','cm',NULL,NULL,NULL,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,2959.0000,10,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL),(18,1,10,'RAF1108-104',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nineman_01.gif',3097.0000,0,'2010-01-13 21:24:39','2010-07-14 21:09:50',NULL,32,NULL,'kgs','cm',NULL,NULL,NULL,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,3097.0000,10,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL),(19,1,10,'RAF1108-105',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'nineman_01.gif',3795.0000,0,'2010-01-13 21:27:28','2010-07-14 21:10:01',NULL,38,NULL,'kgs','cm',NULL,NULL,NULL,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,3795.0000,10,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL),(20,1,10,'RAF1206-101','','','','','','','','dbletube_01.gif',3529.0000,0,'2010-01-13 21:31:27','2010-07-14 21:09:03',NULL,26,'0','kgs','cm',0.00,0.00,0.00,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,3529.0000,6,1,0,0,0,0,0,'','','','','','',NULL,'','none','',''),(21,1,10,'RAF1206-102',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'dbletube_01.gif',3814.0000,0,'2010-01-13 21:33:40','2010-07-14 21:08:07',NULL,28,NULL,'kgs','cm',NULL,NULL,NULL,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,3814.0000,6,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL),(22,1,10,'RAF1206-103',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'dbletube_01.gif',4080.0000,0,'2010-01-13 21:36:15','2010-07-14 21:08:44',NULL,36,NULL,'kgs','cm',NULL,NULL,NULL,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,4080.0000,6,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL),(23,1,10,'RAF1206-104',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'dbletube_01.gif',4242.0000,0,'2010-01-13 21:38:46','2010-07-14 21:08:18',NULL,37,NULL,'kgs','cm',NULL,NULL,NULL,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,4242.0000,6,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL),(24,1,10,'RAF1206-105',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'dbletube_01.gif',5011.0000,0,'2010-01-13 21:41:12','2010-07-14 21:08:30',NULL,41,NULL,'kgs','cm',NULL,NULL,NULL,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,5011.0000,6,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL),(25,1,10,'RAF1210-101','','','','','','','','dbletube_01.gif',4180.0000,0,'2010-01-13 21:51:29','2010-07-16 19:35:28',NULL,30,'0','kgs','cm',0.00,0.00,0.00,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,4180.0000,8,1,1,0,0,0,0,'','','','','','',NULL,'','none','',''),(26,1,10,'RAF1210-102',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'dbletube_01.gif',4512.0000,0,'2010-01-13 21:54:02','2010-07-16 19:32:36',NULL,32,NULL,'kgs','cm',NULL,NULL,NULL,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,4512.0000,8,0,1,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL),(27,1,8,'RAF1210-103',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'dbletube_01.gif',4883.0000,0,'2010-01-13 21:56:10','2010-07-16 20:44:07',NULL,43,NULL,'kgs','cm',NULL,NULL,NULL,'1',1,0,0,2,1,1,0,0,0,1,0,1,0,0,0,0,4883.0000,8,0,1,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL),(28,1,10,'RAF1210-104',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'dbletube_01.gif',5002.0000,0,'2010-01-13 21:58:20','2010-07-16 20:37:14',NULL,44,NULL,'kgs','cm',NULL,NULL,NULL,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,5002.0000,8,0,1,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL),(29,1,10,'RAF1210-105',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'dbletube_01.gif',5933.0000,0,'2010-01-13 22:00:30','2010-07-16 20:40:09',NULL,48,NULL,'kgs','cm',NULL,NULL,NULL,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,5933.0000,8,0,1,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL),(30,1,10,'RAF1212-101','','','','','','','','dbletube_01.gif',5016.0000,0,'2010-01-13 22:03:40','2010-07-17 20:09:35',NULL,34,'0','kgs','cm',0.00,0.00,0.00,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,5016.0000,9,0,1,1,0,0,0,'','','','','','',NULL,'','none','',''),(31,1,10,'RAF1212-102',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'dbletube_01.gif',5415.0000,0,'2010-01-13 22:05:34','2010-07-17 20:11:40',NULL,37,NULL,'kgs','cm',NULL,NULL,NULL,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,5415.0000,9,0,1,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL),(32,1,10,'RAF1212-103',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'dbletube_01.gif',5862.0000,0,'2010-01-13 22:07:38','2010-07-17 20:24:45',NULL,48,NULL,'kgs','cm',NULL,NULL,NULL,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,5862.0000,9,0,1,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL),(33,1,10,'RAF1212-104',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'dbletube_01.gif',6052.0000,0,'2010-01-13 22:09:37','2010-07-17 20:16:04',NULL,49,NULL,'kgs','cm',NULL,NULL,NULL,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,6052.0000,9,0,1,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL),(34,1,10,'RAF1212-105',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'dbletube_01.gif',7120.0000,0,'2010-01-13 22:11:41','2010-07-17 20:20:43',NULL,54,NULL,'kgs','cm',NULL,NULL,NULL,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,7120.0000,9,0,1,1,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL),(35,1,8,'EBC 502','','','','','','','','ebc502ELT_01_MED.jpg',562.0000,0,'2010-01-14 11:40:49','2010-07-14 21:12:44',NULL,2.5,'0','kgs','cm',0.00,0.00,0.00,'1',1,0,0,2,1,1,0,0,0,1,0,1,0,0,0,0,562.0000,3,1,0,0,0,0,0,'','','','','','',NULL,'','none','',''),(36,1,8,'500-12Y','','','','','','','','50012y ELT_01_MED.jpg',2185.0000,0,'2010-01-14 11:43:42','2010-07-14 21:12:00',NULL,1.5,'0','kgs','cm',0.00,0.00,0.00,'1',1,0,0,2,1,1,0,0,0,1,0,1,0,0,0,0,2185.0000,3,1,0,0,0,0,0,'','','','','','',NULL,'','none','',''),(37,1,9,'EBC 406AP','','','','','','','','ebc406apELT_01_MED.jpg',1307.0000,0,'2010-01-14 11:51:02','2010-07-14 21:12:28',NULL,2.5,'0','lbs','in',0.00,0.00,0.00,'1',1,0,0,1,1,1,0,0,0,1,0,1,0,0,0,0,1307.0000,3,0,0,0,0,0,0,'','','','','','',NULL,'','none','',''),(38,1,50,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'kit_01.jpg',0.0000,0,'2010-01-25 13:33:17','2010-07-14 21:14:58',NULL,0,NULL,'kgs','cm',NULL,NULL,NULL,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0.0000,2,1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL),(39,1,50,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'kit_01.jpg',0.0000,0,'2010-01-25 13:43:29','2010-07-14 21:15:10',NULL,0,NULL,'kgs','cm',NULL,NULL,NULL,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0.0000,2,1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL),(40,1,50,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'kit_01.jpg',0.0000,0,'2010-01-25 13:44:32','2010-07-14 21:14:32',NULL,0,NULL,'kgs','cm',NULL,NULL,NULL,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0.0000,2,1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL),(41,1,50,'SUI0001',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'imersion_01.jpg',395.0000,0,'2010-01-25 14:05:45','2010-07-14 21:17:58',NULL,14,NULL,'kgs','cm',NULL,NULL,NULL,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,395.0000,11,1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL),(43,1,47,'XF-35','','','','','','','','lifepreserverxf35_01.jpg',55.9500,0,'2010-01-25 14:15:49','2010-07-24 11:54:40',NULL,3,'1.13','lbs','in',2.50,6.50,8.50,'1',1,0,0,3,1,1,0,0,0,1,0,1,0,0,0,0,55.9500,16,0,1,1,1,0,0,'','','','','','',NULL,'','none','',''),(44,1,50,'WAT0101-101',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'survivor06.jpg',695.0000,0,'2010-01-25 14:22:12','2010-07-14 21:18:10',NULL,2.5,NULL,'kgs','cm',NULL,NULL,NULL,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,695.0000,11,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL),(45,1,50,'2882','','','','','','','','aqualink.jpg',399.0000,0,'2010-01-25 14:36:41','2010-07-14 21:13:09',NULL,1,'0','lbs','in',2.25,6.00,9.50,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,399.0000,3,1,0,0,0,0,0,'','','','','','',NULL,'','none','',''),(46,1,47,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'water_puches_01.jpg',11.6200,0,'2010-01-27 19:12:22','2010-07-14 21:14:01',NULL,30,NULL,'kgs','cm',NULL,NULL,NULL,'1',1,0,0,3,1,1,0,0,0,1,0,1,0,0,0,0,11.6200,12,1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL),(47,1,50,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'food_2400b.jpg',83.6000,0,'2010-01-27 19:29:41','2010-07-14 21:14:12',NULL,33,NULL,'kgs','cm',NULL,NULL,NULL,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,83.6000,12,1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL),(48,1,47,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'food_3682.jpg',63.8000,0,'2010-01-27 19:50:00','2010-07-14 21:13:29',NULL,30,NULL,'kgs','cm',NULL,NULL,NULL,'1',1,0,0,3,1,1,0,0,0,1,0,1,0,0,0,0,63.8000,12,1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL),(49,1,49,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'energy_bar.jpg',95.0400,0,'2010-01-27 19:58:02','2010-07-14 21:13:47',NULL,30,NULL,'kgs','cm',NULL,NULL,NULL,'1',1,0,0,1,1,1,0,0,0,1,0,1,0,0,0,0,95.0400,12,1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL),(50,1,50,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'light_stick.jpg',550.0000,0,'2010-01-27 20:35:42','2010-07-14 21:19:52',NULL,28,NULL,'kgs','cm',NULL,NULL,NULL,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,550.0000,15,1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL),(51,1,50,'','','','','','','','','blanket.jpg',275.0000,0,'2010-01-27 20:42:45','2010-07-14 21:22:02',NULL,31,'0','kgs','cm',0.00,0.00,0.00,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,275.0000,13,1,0,0,0,0,0,'','','','','','',NULL,'','none','',''),(52,1,50,'SKDK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'guardian/SKDK_01.jpg',65.4000,0,'2010-01-28 20:09:05','2010-07-14 21:16:38',NULL,10,NULL,'kgs','cm',NULL,NULL,NULL,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,5,0,0,65.4000,14,1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL),(53,1,50,'SKCK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'guardian/SKCK-01.jpg',46.9500,0,'2010-01-28 20:31:26','2010-07-14 21:17:09',NULL,9,NULL,'kgs','cm',NULL,NULL,NULL,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,7,0,0,46.9500,14,1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL),(54,1,50,'SKD2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'guardian/SKD2_01.jpg',78.5100,0,'2010-01-28 20:57:37','2010-07-14 21:16:53',NULL,16,NULL,'kgs','cm',NULL,NULL,NULL,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,6,0,0,78.5100,14,1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL),(55,1,50,'OKFP',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'OKFP_01.jpg',123.8400,0,'2010-01-28 22:05:24','2010-07-14 21:17:24',NULL,27,NULL,'kgs','cm',NULL,NULL,NULL,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,11,0,0,123.8400,14,1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL),(56,1,50,'OKTP',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'guardian/OKTP_01.jpg',172.8000,0,'2010-01-28 22:29:47','2010-07-14 21:17:38',NULL,47,NULL,'kgs','cm',NULL,NULL,NULL,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,12,0,0,172.8000,14,1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL),(57,1,50,'SKSP',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'guardian/SKSP_01.jpg',30.9600,0,'2010-01-29 10:33:38','2010-07-14 21:15:37',NULL,5,NULL,'kgs','cm',NULL,NULL,NULL,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,30.9600,14,1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL),(58,1,50,'SKCP',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'guardian/SKCP_01.jpg',30.9600,0,'2010-01-29 10:58:12','2010-07-14 21:15:57',NULL,5,NULL,'kgs','cm',NULL,NULL,NULL,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,1,0,0,30.9600,14,1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL),(59,1,50,'SKMK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'guardian/SKMK_01.jpg',16.1300,0,'2010-01-29 11:22:03','2010-07-14 21:16:11',NULL,3,NULL,'kgs','cm',NULL,NULL,NULL,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,3,0,0,16.1300,14,1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL),(60,1,50,'SKOK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'guardian/SKOK_01.jpg',13.9700,0,'2010-01-29 11:35:46','2010-07-14 21:16:24',NULL,2.5,NULL,'kgs','cm',NULL,NULL,NULL,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,4,0,0,13.9700,14,1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL),(61,1,49,'DFPK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'guardian/DFPK_01.jpg',15.9100,0,'2010-01-29 12:01:54','2010-07-14 21:20:43',NULL,1,NULL,'kgs','cm',NULL,NULL,NULL,'1',1,0,0,1,1,1,0,0,0,1,0,1,0,10,0,0,15.9100,4,1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL),(62,1,49,'LCCC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'guardian/LCCC_01.jpg',7.9900,0,'2010-01-29 12:31:45','2010-07-14 21:21:26',NULL,0.25,NULL,'kgs','cm',NULL,NULL,NULL,'1',1,0,0,1,1,1,0,0,0,1,0,1,0,0,0,0,7.9900,13,1,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'none',NULL,NULL),(63,1,50,'LCPA','','','','','','','','guardian/LCPA_01.jpg',8.9900,0,'2010-01-29 12:40:51','2010-07-14 21:21:47',NULL,0.25,'.18','lbs','in',3.00,2.00,0.50,'1',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,8.9900,13,1,0,0,0,0,0,'','','','','','',NULL,'','none','',''),(64,1,50,'LCLT','','','','','','','','guardian/LCLT.jpg',16.8000,0,'2010-02-04 19:26:36','2010-07-14 21:19:20',NULL,1,'0','lbs','in',10.50,4.00,3.50,'0',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,16.8000,15,1,0,0,0,0,0,'','','','','','',NULL,'','none','',''),(65,1,50,'LCGD','','','','','','','','guardian/LCGD.jpg',8.1200,0,'2010-02-04 19:40:07','2010-07-14 21:19:06',NULL,0,'.5','lbs','in',8.00,1.50,1.50,'0',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,8.1200,15,1,0,0,0,0,0,'','','','','','',NULL,'','none','',''),(66,1,50,'LCKR','','','','','','','','guardian/LCKR.jpg',4.9000,0,'2010-02-04 19:45:07','2010-07-14 21:20:22',NULL,2,'0','lbs','in',2.50,5.00,1.50,'0',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,4.9000,15,1,0,0,0,0,0,'','','','','','',NULL,'','none','',''),(67,1,50,'LCSF','','','','','','','','guardian/LCSF.jpg',6.3000,0,'2010-02-04 19:51:48','2010-07-14 21:20:09',NULL,0.5,'0','lbs','in',6.75,1.75,1.50,'0',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,6.3000,15,1,0,0,0,0,0,'','','','','','',NULL,'','none','',''),(68,1,50,'LCQF','','','','','','','','guardian/LCQF.jpg',3.9200,0,'2010-02-04 19:56:27','2010-07-14 21:18:51',NULL,0.3,'.25','lbs','in',4.25,2.00,1.25,'0',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,3.9200,15,1,0,0,0,0,0,'','','','','','',NULL,'','none','',''),(69,1,50,'LCBS','','','','','','','','guardian/LCBS.jpg',0.9800,0,'2010-02-05 00:11:57','2010-07-14 21:18:30',NULL,0.1,'.1','lbs','in',8.00,2.00,0.50,'0',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0.9800,15,1,0,0,0,0,0,'','','','','','',NULL,'','none','',''),(70,1,50,'SWUH','','','','','','','','guardian/SWUH.jpg',43.1300,0,'2010-02-05 18:03:12','2010-07-14 21:21:12',NULL,9.5,'9.38','lbs','in',10.00,6.50,6.50,'0',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,43.1300,13,1,0,0,0,0,0,'','','','','','',NULL,'','none','',''),(71,1,50,'','','','','','','','','junglekit7.jpg',374.5000,0,'2010-07-11 22:27:48','2010-07-14 21:14:46',NULL,1.4,'1.4','lbs','in',1.50,4.50,7.00,'0',1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,374.5000,2,1,0,0,0,0,0,'','','','','','',NULL,'','none','','');
/*!40000 ALTER TABLE `zen_products` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_products_attributes`
--

DROP TABLE IF EXISTS `zen_products_attributes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_products_attributes` (
  `products_attributes_id` int(11) NOT NULL AUTO_INCREMENT,
  `products_id` int(11) NOT NULL DEFAULT '0',
  `options_id` int(11) NOT NULL DEFAULT '0',
  `options_values_id` int(11) NOT NULL DEFAULT '0',
  `options_values_price` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `price_prefix` char(1) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `products_options_sort_order` int(11) NOT NULL DEFAULT '0',
  `product_attribute_is_free` tinyint(1) NOT NULL DEFAULT '0',
  `products_attributes_weight` float NOT NULL DEFAULT '0',
  `products_attributes_weight_prefix` char(1) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `attributes_display_only` tinyint(1) NOT NULL DEFAULT '0',
  `attributes_default` tinyint(1) NOT NULL DEFAULT '0',
  `attributes_discounted` tinyint(1) NOT NULL DEFAULT '1',
  `attributes_image` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
  `attributes_price_base_included` tinyint(1) NOT NULL DEFAULT '1',
  `attributes_price_onetime` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_factor` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_factor_offset` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_factor_onetime` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_factor_onetime_offset` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_qty_prices` text COLLATE utf8_unicode_ci,
  `attributes_qty_prices_onetime` text COLLATE utf8_unicode_ci,
  `attributes_price_words` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_words_free` int(4) NOT NULL DEFAULT '0',
  `attributes_price_letters` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_letters_free` int(4) NOT NULL DEFAULT '0',
  `attributes_required` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`products_attributes_id`),
  KEY `idx_id_options_id_values_zen` (`products_id`,`options_id`,`options_values_id`),
  KEY `idx_opt_sort_order_zen` (`products_options_sort_order`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_products_attributes`
--

LOCK TABLES `zen_products_attributes` WRITE;
/*!40000 ALTER TABLE `zen_products_attributes` DISABLE KEYS */;
INSERT INTO `zen_products_attributes` VALUES (1,25,1,2,30.0000,'+',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(2,25,1,1,20.0000,'+',0,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(5,43,2,3,24.9500,'+',0,0,0,'+',0,0,0,'',0,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(6,43,3,4,6.9500,'+',0,0,0,'+',0,0,0,'',0,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0);
/*!40000 ALTER TABLE `zen_products_attributes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_products_attributes_download`
--

DROP TABLE IF EXISTS `zen_products_attributes_download`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_products_attributes_download` (
  `products_attributes_id` int(11) NOT NULL DEFAULT '0',
  `products_attributes_filename` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `products_attributes_maxdays` int(2) DEFAULT '0',
  `products_attributes_maxcount` int(2) DEFAULT '0',
  PRIMARY KEY (`products_attributes_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_products_attributes_download`
--

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

--
-- Table structure for table `zen_products_description`
--

DROP TABLE IF EXISTS `zen_products_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_products_description` (
  `products_id` int(11) NOT NULL AUTO_INCREMENT,
  `language_id` int(11) NOT NULL DEFAULT '1',
  `products_name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `products_description` text COLLATE utf8_unicode_ci,
  `products_url` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_viewed` int(5) DEFAULT '0',
  PRIMARY KEY (`products_id`,`language_id`),
  KEY `idx_products_name_zen` (`products_name`)
) ENGINE=MyISAM AUTO_INCREMENT=72 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_products_description`
--

LOCK TABLES `zen_products_description` WRITE;
/*!40000 ALTER TABLE `zen_products_description` DISABLE KEYS */;
INSERT INTO `zen_products_description` VALUES (1,1,'4-Man Basic','•	Lightest and smallest package on the market today, designed for private pilots and pleasure boaters. \r\n•	Comprised of buoyancy tube, deck, life lines, CO2 automatic inflation system, boarding handles, retaining line, hand pump, bailing bucket, sea anchor, and valise. \r\n•	Lightest weight and most compact - easy to carry, stow away, and maneuver in any emergency situation. \r\n•	Easily deployed by women, children, exhausted pilots, or boaters. \r\n•	Soft-pack valise made of practically indestructible nylon with secure nylon velcro closures. \r\n•	Constructed of heavy-duty FAA approved neoprene coated nylon fabric. \r\n•	Optional highly visible orange canopy to aid in search and rescue operations. \r\n•	Contains aluminum cylinders and valves eliminating corrosion and greatly reducing the weight. \r\n•	High-tech CO2 automatic inflation system, inflates in 10 seconds. \r\n•	Optional survival kits are available to meet individual requirements. \r\n•	Lifetime warranty on parts and labor, built to last a lifetime with proper care.','',19),(2,1,'4-Man w/Canopy Only','•	Lightest and smallest package on the market today, designed for private pilots and pleasure boaters. \r\n•	Comprised of buoyancy tube, deck, life lines, CO2 automatic inflation system, boarding handles, retaining line, hand pump, bailing bucket, sea anchor, and valise. \r\n•	Lightest weight and most compact - easy to carry, stow away, and maneuver in any emergency situation. \r\n•	Easily deployed by women, children, exhausted pilots, or boaters. \r\n•	Soft-pack valise made of practically indestructible nylon with secure nylon velcro closures. \r\n•	Constructed of heavy-duty FAA approved neoprene coated nylon fabric. \r\n•	Optional highly visible orange canopy to aid in search and rescue operations. \r\n•	Contains aluminum cylinders and valves eliminating corrosion and greatly reducing the weight. \r\n•	High-tech CO2 automatic inflation system, inflates in 10 seconds. \r\n•	Optional survival kits are available to meet individual requirements. \r\n•	Lifetime warranty on parts and labor, built to last a lifetime with proper care.','',15),(3,1,'4-Man w/Standard Kit','•	Lightest and smallest package on the market today, designed for private pilots and pleasure boaters. \r\n•	Comprised of buoyancy tube, deck, life lines, CO2 automatic inflation system, boarding handles, retaining line, hand pump, bailing bucket, sea anchor, and valise. \r\n•	Lightest weight and most compact - easy to carry, stow away, and maneuver in any emergency situation. \r\n•	Easily deployed by women, children, exhausted pilots, or boaters. \r\n•	Soft-pack valise made of practically indestructible nylon with secure nylon velcro closures. \r\n•	Constructed of heavy-duty FAA approved neoprene coated nylon fabric. \r\n•	Optional highly visible orange canopy to aid in search and rescue operations. \r\n•	Contains aluminum cylinders and valves eliminating corrosion and greatly reducing the weight. \r\n•	High-tech CO2 automatic inflation system, inflates in 10 seconds. \r\n•	Optional survival kits are available to meet individual requirements. \r\n•	Lifetime warranty on parts and labor, built to last a lifetime with proper care.','',25),(4,1,'4-Man w/Standard Plus Kit','•	Lightest and smallest package on the market today, designed for private pilots and pleasure boaters. \r\n•	Comprised of buoyancy tube, deck, life lines, CO2 automatic inflation system, boarding handles, retaining line, hand pump, bailing bucket, sea anchor, and valise. \r\n•	Lightest weight and most compact - easy to carry, stow away, and maneuver in any emergency situation. \r\n•	Easily deployed by women, children, exhausted pilots, or boaters. \r\n•	Soft-pack valise made of practically indestructible nylon with secure nylon velcro closures. \r\n•	Constructed of heavy-duty FAA approved neoprene coated nylon fabric. \r\n•	Optional highly visible orange canopy to aid in search and rescue operations. \r\n•	Contains aluminum cylinders and valves eliminating corrosion and greatly reducing the weight. \r\n•	High-tech CO2 automatic inflation system, inflates in 10 seconds. \r\n•	Optional survival kits are available to meet individual requirements. \r\n•	Lifetime warranty on parts and labor, built to last a lifetime with proper care.','',13),(5,1,'4-Man w/Deluxe Kit','•	Lightest and smallest package on the market today, designed for private pilots and pleasure boaters. \r\n•	Comprised of buoyancy tube, deck, life lines, CO2 automatic inflation system, boarding handles, retaining line, hand pump, bailing bucket, sea anchor, and valise. \r\n•	Lightest weight and most compact - easy to carry, stow away, and maneuver in any emergency situation. \r\n•	Easily deployed by women, children, exhausted pilots, or boaters. \r\n•	Soft-pack valise made of practically indestructible nylon with secure nylon velcro closures. \r\n•	Constructed of heavy-duty FAA approved neoprene coated nylon fabric. \r\n•	Optional highly visible orange canopy to aid in search and rescue operations. \r\n•	Contains aluminum cylinders and valves eliminating corrosion and greatly reducing the weight. \r\n•	High-tech CO2 automatic inflation system, inflates in 10 seconds. \r\n•	Optional survival kits are available to meet individual requirements. \r\n•	Lifetime warranty on parts and labor, built to last a lifetime with proper care.','',89),(6,1,'9-Man Basic','•	Lightest and smallest package on the market today, designed for private pilots and pleasure boaters. \r\n•	Comprised of buoyancy tube, deck, life lines, CO2 automatic inflation system, boarding handles, retaining line, hand pump, bailing bucket, sea anchor, and valise. \r\n•	Lightest weight and most compact - easy to carry, stow away, and maneuver in any emergency situation. \r\n•	Easily deployed by women, children, exhausted pilots, or boaters. \r\n•	Soft-pack valise made of practically indestructible nylon with secure nylon velcro closures. \r\n•	Constructed of heavy-duty FAA approved neoprene coated nylon fabric. \r\n•	Optional highly visible orange canopy to aid in search and rescue operations. \r\n•	Contains aluminum cylinders and valves eliminating corrosion and greatly reducing the weight. \r\n•	High-tech CO2 automatic inflation system, inflates in 10 seconds. \r\n•	Optional survival kits are available to meet individual requirements. \r\n•	5-year warranty on parts and labor, built to last a lifetime with proper care.','',19),(7,1,'9-Man w/Standard Kit','•	Lightest and smallest package on the market today, designed for private pilots and pleasure boaters. \r\n•	Comprised of buoyancy tube, deck, life lines, CO2 automatic inflation system, boarding handles, retaining line, hand pump, bailing bucket, sea anchor, and valise. \r\n•	Lightest weight and most compact - easy to carry, stow away, and maneuver in any emergency situation. \r\n•	Easily deployed by women, children, exhausted pilots, or boaters. \r\n•	Soft-pack valise made of practically indestructible nylon with secure nylon velcro closures. \r\n•	Constructed of heavy-duty FAA approved neoprene coated nylon fabric. \r\n•	Optional highly visible orange canopy to aid in search and rescue operations. \r\n•	Contains aluminum cylinders and valves eliminating corrosion and greatly reducing the weight. \r\n•	High-tech CO2 automatic inflation system, inflates in 10 seconds. \r\n•	Optional survival kits are available to meet individual requirements. \r\n•	5-year warranty on parts and labor, built to last a lifetime with proper care.','',30),(8,1,'9-Man w/Standard Plus Kit','•	Lightest and smallest package on the market today, designed for private pilots and pleasure boaters. \r\n•	Comprised of buoyancy tube, deck, life lines, CO2 automatic inflation system, boarding handles, retaining line, hand pump, bailing bucket, sea anchor, and valise. \r\n•	Lightest weight and most compact - easy to carry, stow away, and maneuver in any emergency situation. \r\n•	Easily deployed by women, children, exhausted pilots, or boaters. \r\n•	Soft-pack valise made of practically indestructible nylon with secure nylon velcro closures. \r\n•	Constructed of heavy-duty FAA approved neoprene coated nylon fabric. \r\n•	Optional highly visible orange canopy to aid in search and rescue operations. \r\n•	Contains aluminum cylinders and valves eliminating corrosion and greatly reducing the weight. \r\n•	High-tech CO2 automatic inflation system, inflates in 10 seconds. \r\n•	Optional survival kits are available to meet individual requirements. \r\n•	5-year warranty on parts and labor, built to last a lifetime with proper care.','',15),(9,1,'9-Man w/Deluxe Kit','•	Lightest and smallest package on the market today, designed for private pilots and pleasure boaters. \r\n•	Comprised of buoyancy tube, deck, life lines, CO2 automatic inflation system, boarding handles, retaining line, hand pump, bailing bucket, sea anchor, and valise. \r\n•	Lightest weight and most compact - easy to carry, stow away, and maneuver in any emergency situation. \r\n•	Easily deployed by women, children, exhausted pilots, or boaters. \r\n•	Soft-pack valise made of practically indestructible nylon with secure nylon velcro closures. \r\n•	Constructed of heavy-duty FAA approved neoprene coated nylon fabric. \r\n•	Optional highly visible orange canopy to aid in search and rescue operations. \r\n•	Contains aluminum cylinders and valves eliminating corrosion and greatly reducing the weight. \r\n•	High-tech CO2 automatic inflation system, inflates in 10 seconds. \r\n•	Optional survival kits are available to meet individual requirements. \r\n•	5-year warranty on parts and labor, built to last a lifetime with proper care.','',14),(10,1,'4-Man Basic (No TSO)','•	Single tube with bulkhead design creating two separate chambers. \r\n•	4 person capacity with an overload of 6. \r\n•	Comprised of buoyancy tube, deck, life lines, CO2 automatic inflation system, boarding handles, retaining line, hand pump, bailing bucket, sea anchor, and valise. \r\n•	Includes a stabilizing water ballast system and a water activated locator light as required by the FAA. \r\n•	Lightest weight and most compact - easy to carry, stow away, and maneuver in any emergency situation. \r\n•	Easily deployed by women, children, exhausted pilots, or boaters. \r\n•	Soft-pack valise made of practically indestructible nylon with secure nylon velcro closures. \r\n•	Constructed of heavy-duty FAA approved neoprene coated nylon fabric. \r\n•	Optional highly visible orange canopy to aid in search and rescue operations. \r\n•	Contains aluminum cylinders and valves eliminating corrosion and greatly reducing the weight. \r\n•	High-tech CO2 automatic inflation system, inflates in 10 seconds. \r\n•	Optional survival kits are available to meet individual requirements. \r\n•	Lifetime warranty on parts and labor, built to last a lifetime with proper care.','',53),(11,1,'4-Man TSO  w/Canopy Only','•	Single tube with bulkhead design creating two separate chambers. \r\n•	4 person capacity with an overload of 6. \r\n•	Comprised of buoyancy tube, deck, life lines, CO2 automatic inflation system, boarding handles, retaining line, hand pump, bailing bucket, sea anchor, and valise. \r\n•	Includes a stabilizing water ballast system and a water activated locator light as required by the FAA. \r\n•	Lightest weight and most compact - easy to carry, stow away, and maneuver in any emergency situation. \r\n•	Easily deployed by women, children, exhausted pilots, or boaters. \r\n•	Soft-pack valise made of practically indestructible nylon with secure nylon velcro closures. \r\n•	Constructed of heavy-duty FAA approved neoprene coated nylon fabric. \r\n•	Optional highly visible orange canopy to aid in search and rescue operations. \r\n•	Contains aluminum cylinders and valves eliminating corrosion and greatly reducing the weight. \r\n•	High-tech CO2 automatic inflation system, inflates in 10 seconds. \r\n•	Optional survival kits are available to meet individual requirements. \r\n•	Lifetime warranty on parts and labor, built to last a lifetime with proper care.','',28),(12,1,'4-Man TSO w/FAR 91 Kit','•	Single tube with bulkhead design creating two separate chambers. \r\n•	4 person capacity with an overload of 6. \r\n•	Comprised of buoyancy tube, deck, life lines, CO2 automatic inflation system, boarding handles, retaining line, hand pump, bailing bucket, sea anchor, and valise. \r\n•	Includes a stabilizing water ballast system and a water activated locator light as required by the FAA. \r\n•	Lightest weight and most compact - easy to carry, stow away, and maneuver in any emergency situation. \r\n•	Easily deployed by women, children, exhausted pilots, or boaters. \r\n•	Soft-pack valise made of practically indestructible nylon with secure nylon velcro closures. \r\n•	Constructed of heavy-duty FAA approved neoprene coated nylon fabric. \r\n•	Optional highly visible orange canopy to aid in search and rescue operations. \r\n•	Contains aluminum cylinders and valves eliminating corrosion and greatly reducing the weight. \r\n•	High-tech CO2 automatic inflation system, inflates in 10 seconds. \r\n•	Optional survival kits are available to meet individual requirements. \r\n•	Lifetime warranty on parts and labor, built to last a lifetime with proper care.','',18),(13,1,'4-Man TSO w/FAR 121 Kit','•	Single tube with bulkhead design creating two separate chambers. \r\n•	4 person capacity with an overload of 6. \r\n•	Comprised of buoyancy tube, deck, life lines, CO2 automatic inflation system, boarding handles, retaining line, hand pump, bailing bucket, sea anchor, and valise. \r\n•	Includes a stabilizing water ballast system and a water activated locator light as required by the FAA. \r\n•	Lightest weight and most compact - easy to carry, stow away, and maneuver in any emergency situation. \r\n•	Easily deployed by women, children, exhausted pilots, or boaters. \r\n•	Soft-pack valise made of practically indestructible nylon with secure nylon velcro closures. \r\n•	Constructed of heavy-duty FAA approved neoprene coated nylon fabric. \r\n•	Optional highly visible orange canopy to aid in search and rescue operations. \r\n•	Contains aluminum cylinders and valves eliminating corrosion and greatly reducing the weight. \r\n•	High-tech CO2 automatic inflation system, inflates in 10 seconds. \r\n•	Optional survival kits are available to meet individual requirements. \r\n•	Lifetime warranty on parts and labor, built to last a lifetime with proper care.','',20),(14,1,'4-Man TSO w/FAR 135 Kit','•	Single tube with bulkhead design creating two separate chambers. \r\n•	4 person capacity with an overload of 6. \r\n•	Comprised of buoyancy tube, deck, life lines, CO2 automatic inflation system, boarding handles, retaining line, hand pump, bailing bucket, sea anchor, and valise. \r\n•	Includes a stabilizing water ballast system and a water activated locator light as required by the FAA. \r\n•	Lightest weight and most compact - easy to carry, stow away, and maneuver in any emergency situation. \r\n•	Easily deployed by women, children, exhausted pilots, or boaters. \r\n•	Soft-pack valise made of practically indestructible nylon with secure nylon velcro closures. \r\n•	Constructed of heavy-duty FAA approved neoprene coated nylon fabric. \r\n•	Optional highly visible orange canopy to aid in search and rescue operations. \r\n•	Contains aluminum cylinders and valves eliminating corrosion and greatly reducing the weight. \r\n•	High-tech CO2 automatic inflation system, inflates in 10 seconds. \r\n•	Optional survival kits are available to meet individual requirements. \r\n•	Lifetime warranty on parts and labor, built to last a lifetime with proper care.','',12),(15,1,'8-Man Basic (Non TSO)','•	Single tube with bulkhead design creating two separate chambers. \r\n•	Comprised of buoyancy tube, deck, life lines, CO2 automatic inflation system, boarding handles, retaining line, hand pump, bailing bucket, sea anchor, and valise. \r\n•	Includes a stabilizing water ballast system and a water activated locator light as required by the FAA. \r\n•	Lightest weight and most compact - easy to carry, stow away, and maneuver in any emergency situation. \r\n•	Easily deployed by women, children, exhausted pilots, or boaters. \r\n•	Soft-pack valise made of practically indestructible nylon with secure nylon velcro closures. \r\n•	Constructed of heavy-duty FAA approved neoprene coated nylon fabric. \r\n•	Optional highly visible orange canopy to aid in search and rescue operations. \r\n•	Contains aluminum cylinders and valves eliminating corrosion and greatly reducing the weight. \r\n•	High-tech CO2 automatic inflation system, inflates in 10 seconds. \r\n•	Optional survival kits are available to meet individual requirements. \r\n•	Lifetime warranty on parts and labor, built to last a lifetime with proper care.','',11),(16,1,'8-Man TSO w/Canopy Only','•	Single tube with bulkhead design creating two separate chambers. \r\n•	Comprised of buoyancy tube, deck, life lines, CO2 automatic inflation system, boarding handles, retaining line, hand pump, bailing bucket, sea anchor, and valise. \r\n•	Includes a stabilizing water ballast system and a water activated locator light as required by the FAA. \r\n•	Lightest weight and most compact - easy to carry, stow away, and maneuver in any emergency situation. \r\n•	Easily deployed by women, children, exhausted pilots, or boaters. \r\n•	Soft-pack valise made of practically indestructible nylon with secure nylon velcro closures. \r\n•	Constructed of heavy-duty FAA approved neoprene coated nylon fabric. \r\n•	Optional highly visible orange canopy to aid in search and rescue operations. \r\n•	Contains aluminum cylinders and valves eliminating corrosion and greatly reducing the weight. \r\n•	High-tech CO2 automatic inflation system, inflates in 10 seconds. \r\n•	Optional survival kits are available to meet individual requirements. \r\n•	Lifetime warranty on parts and labor, built to last a lifetime with proper care.','',23),(17,1,'8-Man TSO w/FAR 91 Kit','•	Single tube with bulkhead design creating two separate chambers. \r\n•	Comprised of buoyancy tube, deck, life lines, CO2 automatic inflation system, boarding handles, retaining line, hand pump, bailing bucket, sea anchor, and valise. \r\n•	Includes a stabilizing water ballast system and a water activated locator light as required by the FAA. \r\n•	Lightest weight and most compact - easy to carry, stow away, and maneuver in any emergency situation. \r\n•	Easily deployed by women, children, exhausted pilots, or boaters. \r\n•	Soft-pack valise made of practically indestructible nylon with secure nylon velcro closures. \r\n•	Constructed of heavy-duty FAA approved neoprene coated nylon fabric. \r\n•	Optional highly visible orange canopy to aid in search and rescue operations. \r\n•	Contains aluminum cylinders and valves eliminating corrosion and greatly reducing the weight. \r\n•	High-tech CO2 automatic inflation system, inflates in 10 seconds. \r\n•	Optional survival kits are available to meet individual requirements. \r\n•	Lifetime warranty on parts and labor, built to last a lifetime with proper care.','',25),(18,1,'8-Man TSO w/FAR 121 Kit','•	Single tube with bulkhead design creating two separate chambers. \r\n•	Comprised of buoyancy tube, deck, life lines, CO2 automatic inflation system, boarding handles, retaining line, hand pump, bailing bucket, sea anchor, and valise. \r\n•	Includes a stabilizing water ballast system and a water activated locator light as required by the FAA. \r\n•	Lightest weight and most compact - easy to carry, stow away, and maneuver in any emergency situation. \r\n•	Easily deployed by women, children, exhausted pilots, or boaters. \r\n•	Soft-pack valise made of practically indestructible nylon with secure nylon velcro closures. \r\n•	Constructed of heavy-duty FAA approved neoprene coated nylon fabric. \r\n•	Optional highly visible orange canopy to aid in search and rescue operations. \r\n•	Contains aluminum cylinders and valves eliminating corrosion and greatly reducing the weight. \r\n•	High-tech CO2 automatic inflation system, inflates in 10 seconds. \r\n•	Optional survival kits are available to meet individual requirements. \r\n•	Lifetime warranty on parts and labor, built to last a lifetime with proper care.','',19),(19,1,'8-Man TSO w/FAR 135 Kit','•	Single tube with bulkhead design creating two separate chambers. \r\n•	Comprised of buoyancy tube, deck, life lines, CO2 automatic inflation system, boarding handles, retaining line, hand pump, bailing bucket, sea anchor, and valise. \r\n•	Includes a stabilizing water ballast system and a water activated locator light as required by the FAA. \r\n•	Lightest weight and most compact - easy to carry, stow away, and maneuver in any emergency situation. \r\n•	Easily deployed by women, children, exhausted pilots, or boaters. \r\n•	Soft-pack valise made of practically indestructible nylon with secure nylon velcro closures. \r\n•	Constructed of heavy-duty FAA approved neoprene coated nylon fabric. \r\n•	Optional highly visible orange canopy to aid in search and rescue operations. \r\n•	Contains aluminum cylinders and valves eliminating corrosion and greatly reducing the weight. \r\n•	High-tech CO2 automatic inflation system, inflates in 10 seconds. \r\n•	Optional survival kits are available to meet individual requirements. \r\n•	Lifetime warranty on parts and labor, built to last a lifetime with proper care.','',48),(20,1,'6-Man Basic (Non TSO)','•	Double tube design containing two complete separate chambers. \r\n•	Comprised of buoyancy tube, deck, life lines, CO2 automatic inflation system, boarding handles, retaining line, hand pump, bailing bucket, sea anchor, and valise. \r\n•	Includes a stabilizing water ballast system and a water activated locator light as required by the FAA. \r\n•	Lightest weight and most compact - easy to carry, stow away, and maneuver in any emergency situation. \r\n•	Easily deployed by women, children, exhausted pilots, or boaters. \r\n•	Soft-pack valise made of practically indestructible nylon with secure nylon velcro closures. \r\n•	Constructed of heavy-duty FAA approved neoprene coated nylon fabric. \r\n•	Optional highly visible orange canopy to aid in search and rescue operations. \r\n•	Contains aluminum cylinders and valves eliminating corrosion and greatly reducing the weight. \r\n•	High-tech CO2 automatic inflation system, inflates in 10 seconds. \r\n•	Optional survival kits are available to meet individual requirements. \r\n•	Lifetime warranty on parts and labor, built to last a lifetime with proper care.','',19),(21,1,'6-Man TSO w/Canopy Only','•	Double tube design containing two complete separate chambers. \r\n•	Comprised of buoyancy tube, deck, life lines, CO2 automatic inflation system, boarding handles, retaining line, hand pump, bailing bucket, sea anchor, and valise. \r\n•	Includes a stabilizing water ballast system and a water activated locator light as required by the FAA. \r\n•	Lightest weight and most compact - easy to carry, stow away, and maneuver in any emergency situation. \r\n•	Easily deployed by women, children, exhausted pilots, or boaters. \r\n•	Soft-pack valise made of practically indestructible nylon with secure nylon velcro closures. \r\n•	Constructed of heavy-duty FAA approved neoprene coated nylon fabric. \r\n•	Optional highly visible orange canopy to aid in search and rescue operations. \r\n•	Contains aluminum cylinders and valves eliminating corrosion and greatly reducing the weight. \r\n•	High-tech CO2 automatic inflation system, inflates in 10 seconds. \r\n•	Optional survival kits are available to meet individual requirements. \r\n•	Lifetime warranty on parts and labor, built to last a lifetime with proper care.','',35),(22,1,'6-Man TSO w/FAR 91 Kit','•	Double tube design containing two complete separate chambers. \r\n•	Comprised of buoyancy tube, deck, life lines, CO2 automatic inflation system, boarding handles, retaining line, hand pump, bailing bucket, sea anchor, and valise. \r\n•	Includes a stabilizing water ballast system and a water activated locator light as required by the FAA. \r\n•	Lightest weight and most compact - easy to carry, stow away, and maneuver in any emergency situation. \r\n•	Easily deployed by women, children, exhausted pilots, or boaters. \r\n•	Soft-pack valise made of practically indestructible nylon with secure nylon velcro closures. \r\n•	Constructed of heavy-duty FAA approved neoprene coated nylon fabric. \r\n•	Optional highly visible orange canopy to aid in search and rescue operations. \r\n•	Contains aluminum cylinders and valves eliminating corrosion and greatly reducing the weight. \r\n•	High-tech CO2 automatic inflation system, inflates in 10 seconds. \r\n•	Optional survival kits are available to meet individual requirements. \r\n•	Lifetime warranty on parts and labor, built to last a lifetime with proper care.','',14),(23,1,'6-Man TSO w/FAR 121 Kit','•	Double tube design containing two complete separate chambers. \r\n•	Comprised of buoyancy tube, deck, life lines, CO2 automatic inflation system, boarding handles, retaining line, hand pump, bailing bucket, sea anchor, and valise. \r\n•	Includes a stabilizing water ballast system and a water activated locator light as required by the FAA. \r\n•	Lightest weight and most compact - easy to carry, stow away, and maneuver in any emergency situation. \r\n•	Easily deployed by women, children, exhausted pilots, or boaters. \r\n•	Soft-pack valise made of practically indestructible nylon with secure nylon velcro closures. \r\n•	Constructed of heavy-duty FAA approved neoprene coated nylon fabric. \r\n•	Optional highly visible orange canopy to aid in search and rescue operations. \r\n•	Contains aluminum cylinders and valves eliminating corrosion and greatly reducing the weight. \r\n•	High-tech CO2 automatic inflation system, inflates in 10 seconds. \r\n•	Optional survival kits are available to meet individual requirements. \r\n•	Lifetime warranty on parts and labor, built to last a lifetime with proper care.','',13),(24,1,'6-Man TSO w/FAR 135 Kit','•	Double tube design containing two complete separate chambers. \r\n•	Comprised of buoyancy tube, deck, life lines, CO2 automatic inflation system, boarding handles, retaining line, hand pump, bailing bucket, sea anchor, and valise. \r\n•	Includes a stabilizing water ballast system and a water activated locator light as required by the FAA. \r\n•	Lightest weight and most compact - easy to carry, stow away, and maneuver in any emergency situation. \r\n•	Easily deployed by women, children, exhausted pilots, or boaters. \r\n•	Soft-pack valise made of practically indestructible nylon with secure nylon velcro closures. \r\n•	Constructed of heavy-duty FAA approved neoprene coated nylon fabric. \r\n•	Optional highly visible orange canopy to aid in search and rescue operations. \r\n•	Contains aluminum cylinders and valves eliminating corrosion and greatly reducing the weight. \r\n•	High-tech CO2 automatic inflation system, inflates in 10 seconds. \r\n•	Optional survival kits are available to meet individual requirements. \r\n•	Lifetime warranty on parts and labor, built to last a lifetime with proper care.','',20),(25,1,'10-Man Basic (Non TSO)','•	Double tube design containing two complete separate chambers. \r\n•	Comprised of buoyancy tube, deck, life lines, CO2 automatic inflation system, boarding handles, retaining line, hand pump, bailing bucket, sea anchor, and valise. \r\n•	Includes a stabilizing water ballast system and a water activated locator light as required by the FAA. \r\n•	Lightest weight and most compact - easy to carry, stow away, and maneuver in any emergency situation. \r\n•	Easily deployed by women, children, exhausted pilots, or boaters. \r\n•	Soft-pack valise made of practically indestructible nylon with secure nylon velcro closures. \r\n•	Constructed of heavy-duty FAA approved neoprene coated nylon fabric. \r\n•	Optional highly visible orange canopy to aid in search and rescue operations. \r\n•	Contains aluminum cylinders and valves eliminating corrosion and greatly reducing the weight. \r\n•	High-tech CO2 automatic inflation system, inflates in 10 seconds. \r\n•	Optional survival kits are available to meet individual requirements. \r\n•	5-year warranty on parts and labor, built to last a lifetime with proper care.','',74),(26,1,'10-Man TSO w/Canopy Only','•	Double tube design containing two complete separate chambers. \r\n•	Comprised of buoyancy tube, deck, life lines, CO2 automatic inflation system, boarding handles, retaining line, hand pump, bailing bucket, sea anchor, and valise. \r\n•	Includes a stabilizing water ballast system and a water activated locator light as required by the FAA. \r\n•	Lightest weight and most compact - easy to carry, stow away, and maneuver in any emergency situation. \r\n•	Easily deployed by women, children, exhausted pilots, or boaters. \r\n•	Soft-pack valise made of practically indestructible nylon with secure nylon velcro closures. \r\n•	Constructed of heavy-duty FAA approved neoprene coated nylon fabric. \r\n•	Optional highly visible orange canopy to aid in search and rescue operations. \r\n•	Contains aluminum cylinders and valves eliminating corrosion and greatly reducing the weight. \r\n•	High-tech CO2 automatic inflation system, inflates in 10 seconds. \r\n•	Optional survival kits are available to meet individual requirements. \r\n•	5-year warranty on parts and labor, built to last a lifetime with proper care.','',25),(27,1,'10-Man TSO w/FAR 91 Kit','•	Double tube design containing two complete separate chambers. \r\n•	Comprised of buoyancy tube, deck, life lines, CO2 automatic inflation system, boarding handles, retaining line, hand pump, bailing bucket, sea anchor, and valise. \r\n•	Includes a stabilizing water ballast system and a water activated locator light as required by the FAA. \r\n•	Lightest weight and most compact - easy to carry, stow away, and maneuver in any emergency situation. \r\n•	Easily deployed by women, children, exhausted pilots, or boaters. \r\n•	Soft-pack valise made of practically indestructible nylon with secure nylon velcro closures. \r\n•	Constructed of heavy-duty FAA approved neoprene coated nylon fabric. \r\n•	Optional highly visible orange canopy to aid in search and rescue operations. \r\n•	Contains aluminum cylinders and valves eliminating corrosion and greatly reducing the weight. \r\n•	High-tech CO2 automatic inflation system, inflates in 10 seconds. \r\n•	Optional survival kits are available to meet individual requirements. \r\n•	5-year warranty on parts and labor, built to last a lifetime with proper care.','',111),(28,1,'10-Man TSO w/FAR 121 Kit','•	Double tube design containing two complete separate chambers. \r\n•	Comprised of buoyancy tube, deck, life lines, CO2 automatic inflation system, boarding handles, retaining line, hand pump, bailing bucket, sea anchor, and valise. \r\n•	Includes a stabilizing water ballast system and a water activated locator light as required by the FAA. \r\n•	Lightest weight and most compact - easy to carry, stow away, and maneuver in any emergency situation. \r\n•	Easily deployed by women, children, exhausted pilots, or boaters. \r\n•	Soft-pack valise made of practically indestructible nylon with secure nylon velcro closures. \r\n•	Constructed of heavy-duty FAA approved neoprene coated nylon fabric. \r\n•	Optional highly visible orange canopy to aid in search and rescue operations. \r\n•	Contains aluminum cylinders and valves eliminating corrosion and greatly reducing the weight. \r\n•	High-tech CO2 automatic inflation system, inflates in 10 seconds. \r\n•	Optional survival kits are available to meet individual requirements. \r\n•	5-year warranty on parts and labor, built to last a lifetime with proper care.','',38),(29,1,'10-Man TSO w/FAR 135 Kit','•	Double tube design containing two complete separate chambers. \r\n•	Comprised of buoyancy tube, deck, life lines, CO2 automatic inflation system, boarding handles, retaining line, hand pump, bailing bucket, sea anchor, and valise. \r\n•	Includes a stabilizing water ballast system and a water activated locator light as required by the FAA. \r\n•	Lightest weight and most compact - easy to carry, stow away, and maneuver in any emergency situation. \r\n•	Easily deployed by women, children, exhausted pilots, or boaters. \r\n•	Soft-pack valise made of practically indestructible nylon with secure nylon velcro closures. \r\n•	Constructed of heavy-duty FAA approved neoprene coated nylon fabric. \r\n•	Optional highly visible orange canopy to aid in search and rescue operations. \r\n•	Contains aluminum cylinders and valves eliminating corrosion and greatly reducing the weight. \r\n•	High-tech CO2 automatic inflation system, inflates in 10 seconds. \r\n•	Optional survival kits are available to meet individual requirements. \r\n•	5-year warranty on parts and labor, built to last a lifetime with proper care.','',61),(30,1,'12-Man Basic (Non TSO)','•	Double tube design containing two complete separate chambers. \r\n•	Comprised of buoyancy tube, deck, life lines, CO2 automatic inflation system, boarding handles, retaining line, hand pump, bailing bucket, sea anchor, and valise. \r\n•	Includes a stabilizing water ballast system and a water activated locator light as required by the FAA. \r\n•	Lightest weight and most compact - easy to carry, stow away, and maneuver in any emergency situation. \r\n•	Easily deployed by women, children, exhausted pilots, or boaters. \r\n•	Soft-pack valise made of practically indestructible nylon with secure nylon velcro closures. \r\n•	Constructed of heavy-duty FAA approved neoprene coated nylon fabric. \r\n•	Optional highly visible orange canopy to aid in search and rescue operations. \r\n•	Contains aluminum cylinders and valves eliminating corrosion and greatly reducing the weight. \r\n•	High-tech CO2 automatic inflation system, inflates in 10 seconds. \r\n•	Optional survival kits are available to meet individual requirements. \r\n•	5-year warranty on parts and labor, built to last a lifetime with proper care.','',21),(31,1,'12-Man TSO w/Canopy Only','•	Double tube design containing two complete separate chambers. \r\n•	Comprised of buoyancy tube, deck, life lines, CO2 automatic inflation system, boarding handles, retaining line, hand pump, bailing bucket, sea anchor, and valise. \r\n•	Includes a stabilizing water ballast system and a water activated locator light as required by the FAA. \r\n•	Lightest weight and most compact - easy to carry, stow away, and maneuver in any emergency situation. \r\n•	Easily deployed by women, children, exhausted pilots, or boaters. \r\n•	Soft-pack valise made of practically indestructible nylon with secure nylon velcro closures. \r\n•	Constructed of heavy-duty FAA approved neoprene coated nylon fabric. \r\n•	Optional highly visible orange canopy to aid in search and rescue operations. \r\n•	Contains aluminum cylinders and valves eliminating corrosion and greatly reducing the weight. \r\n•	High-tech CO2 automatic inflation system, inflates in 10 seconds. \r\n•	Optional survival kits are available to meet individual requirements. \r\n•	5-year warranty on parts and labor, built to last a lifetime with proper care.','',24),(32,1,'12-Man TSO w/FAR 91 Kit','•	Double tube design containing two complete separate chambers. \r\n•	Comprised of buoyancy tube, deck, life lines, CO2 automatic inflation system, boarding handles, retaining line, hand pump, bailing bucket, sea anchor, and valise. \r\n•	Includes a stabilizing water ballast system and a water activated locator light as required by the FAA. \r\n•	Lightest weight and most compact - easy to carry, stow away, and maneuver in any emergency situation. \r\n•	Easily deployed by women, children, exhausted pilots, or boaters. \r\n•	Soft-pack valise made of practically indestructible nylon with secure nylon velcro closures. \r\n•	Constructed of heavy-duty FAA approved neoprene coated nylon fabric. \r\n•	Optional highly visible orange canopy to aid in search and rescue operations. \r\n•	Contains aluminum cylinders and valves eliminating corrosion and greatly reducing the weight. \r\n•	High-tech CO2 automatic inflation system, inflates in 10 seconds. \r\n•	Optional survival kits are available to meet individual requirements. \r\n•	5-year warranty on parts and labor, built to last a lifetime with proper care.','',21),(33,1,'12-Man TSO w/FAR 121 Kit','•	Double tube design containing two complete separate chambers. \r\n•	Comprised of buoyancy tube, deck, life lines, CO2 automatic inflation system, boarding handles, retaining line, hand pump, bailing bucket, sea anchor, and valise. \r\n•	Includes a stabilizing water ballast system and a water activated locator light as required by the FAA. \r\n•	Lightest weight and most compact - easy to carry, stow away, and maneuver in any emergency situation. \r\n•	Easily deployed by women, children, exhausted pilots, or boaters. \r\n•	Soft-pack valise made of practically indestructible nylon with secure nylon velcro closures. \r\n•	Constructed of heavy-duty FAA approved neoprene coated nylon fabric. \r\n•	Optional highly visible orange canopy to aid in search and rescue operations. \r\n•	Contains aluminum cylinders and valves eliminating corrosion and greatly reducing the weight. \r\n•	High-tech CO2 automatic inflation system, inflates in 10 seconds. \r\n•	Optional survival kits are available to meet individual requirements. \r\n•	5-year warranty on parts and labor, built to last a lifetime with proper care.','',17),(34,1,'12-Man TSO w/FAR 135 Kit','•	Double tube design containing two complete separate chambers. \r\n•	Comprised of buoyancy tube, deck, life lines, CO2 automatic inflation system, boarding handles, retaining line, hand pump, bailing bucket, sea anchor, and valise. \r\n•	Includes a stabilizing water ballast system and a water activated locator light as required by the FAA. \r\n•	Lightest weight and most compact - easy to carry, stow away, and maneuver in any emergency situation. \r\n•	Easily deployed by women, children, exhausted pilots, or boaters. \r\n•	Soft-pack valise made of practically indestructible nylon with secure nylon velcro closures. \r\n•	Constructed of heavy-duty FAA approved neoprene coated nylon fabric. \r\n•	Optional highly visible orange canopy to aid in search and rescue operations. \r\n•	Contains aluminum cylinders and valves eliminating corrosion and greatly reducing the weight. \r\n•	High-tech CO2 automatic inflation system, inflates in 10 seconds. \r\n•	Optional survival kits are available to meet individual requirements. \r\n•	5-year warranty on parts and labor, built to last a lifetime with proper care.','',30),(1,2,'Basico 4-Hombre','• El paquete más ligero y más pequeño en el mercado hoy, diseñado para los pilotos privados y los navegantes del placer. • Abarcado del tubo de la flotabilidad, de la cubierta, líneas de vida, sistema automático de la inflación del CO2, manijas de embarque, conservando la línea, la bomba de mano, afianzando el cubo, el ancla de mar, y el valise. • El peso más ligero y más acuerdo - fáciles llevar, guardar lejos, y la maniobra en cualquie situación de emergencia. • Desplegado fácilmente por las mujeres, los niños, agotaron pilotos, o a navegantes. • Suave-embale el valise hecho de nilón prácticamente indestructible con los encierros de nylon seguros del velcro. • Construido de FAA resistente aprobó la tela de nylon cubierta neopreno. • Pabellón anaranjado altamente visible opcional a ayudar en búsqueda y operaciones de rescate. • Contiene los cilindros de aluminio y las válvulas que eliminan la corrosión y que reducen grandemente el peso. • El sistema automático de la inflación del CO2 de alta tecnología, infla en 10 segundos. • Los kits de supervivencia opcionales están disponibles cumplir requisitos individuales. • Garantía de por vida en las piezas y el trabajo, construidos para durar un curso de la vida con cuidado apropiado.','',4),(2,2,'4-Hombre con Pabellón solamente','• El paquete más ligero y más pequeño en el mercado hoy, diseñado para los pilotos privados y los navegantes del placer. • Abarcado del tubo de la flotabilidad, de la cubierta, líneas de vida, sistema automático de la inflación del CO2, manijas de embarque, conservando la línea, la bomba de mano, afianzando el cubo, el ancla de mar, y el valise. • El peso más ligero y más acuerdo - fáciles llevar, guardar lejos, y la maniobra en cualquie situación de emergencia. • Desplegado fácilmente por las mujeres, los niños, agotaron pilotos, o a navegantes. • Suave-embale el valise hecho de nilón prácticamente indestructible con los encierros de nylon seguros del velcro. • Construido de FAA resistente aprobó la tela de nylon cubierta neopreno. • Pabellón anaranjado altamente visible opcional a ayudar en búsqueda y operaciones de rescate. • Contiene los cilindros de aluminio y las válvulas que eliminan la corrosión y que reducen grandemente el peso. • El sistema automático de la inflación del CO2 de alta tecnología, infla en 10 segundos. • Los kits de supervivencia opcionales están disponibles cumplir requisitos individuales. • Garantía de por vida en las piezas y el trabajo, construidos para durar un curso de la vida con cuidado apropiado.','',3),(3,2,'4-Hombre con Kit estándar','• El paquete más ligero y más pequeño en el mercado hoy, diseñado para los pilotos privados y los navegantes del placer. • Abarcado del tubo de la flotabilidad, de la cubierta, líneas de vida, sistema automático de la inflación del CO2, manijas de embarque, conservando la línea, la bomba de mano, afianzando el cubo, el ancla de mar, y el valise. • El peso más ligero y más acuerdo - fáciles llevar, guardar lejos, y la maniobra en cualquie situación de emergencia. • Desplegado fácilmente por las mujeres, los niños, agotaron pilotos, o a navegantes. • Suave-embale el valise hecho de nilón prácticamente indestructible con los encierros de nylon seguros del velcro. • Construido de FAA resistente aprobó la tela de nylon cubierta neopreno. • Pabellón anaranjado altamente visible opcional a ayudar en búsqueda y operaciones de rescate. • Contiene los cilindros de aluminio y las válvulas que eliminan la corrosión y que reducen grandemente el peso. • El sistema automático de la inflación del CO2 de alta tecnología, infla en 10 segundos. • Los kits de supervivencia opcionales están disponibles cumplir requisitos individuales. • Garantía de por vida en las piezas y el trabajo, construidos para durar un curso de la vida con cuidado apropiado.','',2),(4,2,'4-Hombre con estándar más kit','• El paquete más ligero y más pequeño en el mercado hoy, diseñado para los pilotos privados y los navegantes del placer. • Abarcado del tubo de la flotabilidad, de la cubierta, líneas de vida, sistema automático de la inflación del CO2, manijas de embarque, conservando la línea, la bomba de mano, afianzando el cubo, el ancla de mar, y el valise. • El peso más ligero y más acuerdo - fáciles llevar, guardar lejos, y la maniobra en cualquie situación de emergencia. • Desplegado fácilmente por las mujeres, los niños, agotaron pilotos, o a navegantes. • Suave-embale el valise hecho de nilón prácticamente indestructible con los encierros de nylon seguros del velcro. • Construido de FAA resistente aprobó la tela de nylon cubierta neopreno. • Pabellón anaranjado altamente visible opcional a ayudar en búsqueda y operaciones de rescate. • Contiene los cilindros de aluminio y las válvulas que eliminan la corrosión y que reducen grandemente el peso. • El sistema automático de la inflación del CO2 de alta tecnología, infla en 10 segundos. • Los kits de supervivencia opcionales están disponibles cumplir requisitos individuales. • Garantía de por vida en las piezas y el trabajo, construidos para durar un curso de la vida con cuidado apropiado.','',4),(5,2,'4-Hombre con Kit de lujo','• El paquete más ligero y más pequeño en el mercado hoy, diseñado para los pilotos privados y los navegantes del placer. • Abarcado del tubo de la flotabilidad, de la cubierta, líneas de vida, sistema automático de la inflación del CO2, manijas de embarque, conservando la línea, la bomba de mano, afianzando el cubo, el ancla de mar, y el valise. • El peso más ligero y más acuerdo - fáciles llevar, guardar lejos, y la maniobra en cualquie situación de emergencia. • Desplegado fácilmente por las mujeres, los niños, agotaron pilotos, o a navegantes. • Suave-embale el valise hecho de nilón prácticamente indestructible con los encierros de nylon seguros del velcro. • Construido de FAA resistente aprobó la tela de nylon cubierta neopreno. • Pabellón anaranjado altamente visible opcional a ayudar en búsqueda y operaciones de rescate. • Contiene los cilindros de aluminio y las válvulas que eliminan la corrosión y que reducen grandemente el peso. • El sistema automático de la inflación del CO2 de alta tecnología, infla en 10 segundos. • Los kits de supervivencia opcionales están disponibles cumplir requisitos individuales. • Garantía de por vida en las piezas y el trabajo, construidos para durar un curso de la vida con cuidado apropiado.','',7),(6,2,'Basico 9-Hombre','• El paquete más ligero y más pequeño en el mercado hoy, diseñado para los pilotos privados y los navegantes del placer. • Abarcado del tubo de la flotabilidad, de la cubierta, líneas de vida, sistema automático de la inflación del CO2, manijas de embarque, conservando la línea, la bomba de mano, afianzando el cubo, el ancla de mar, y el valise. • El peso más ligero y más acuerdo - fáciles llevar, guardar lejos, y la maniobra en cualquie situación de emergencia. • Desplegado fácilmente por las mujeres, los niños, agotaron pilotos, o a navegantes. • Suave-embale el valise hecho de nilón prácticamente indestructible con los encierros de nylon seguros del velcro. • Construido de FAA resistente aprobó la tela de nylon cubierta neopreno. • Pabellón anaranjado altamente visible opcional a ayudar en búsqueda y operaciones de rescate. • Contiene los cilindros de aluminio y las válvulas que eliminan la corrosión y que reducen grandemente el peso. • El sistema automático de la inflación del CO2 de alta tecnología, infla en 10 segundos. • Los kits de supervivencia opcionales están disponibles cumplir requisitos individuales. • garantía de cinco años en las piezas y el trabajo, construidos para durar un curso de la vida con cuidado apropiado.','',2),(7,2,'9-Hombre con Kit estándar','• El paquete más ligero y más pequeño en el mercado hoy, diseñado para los pilotos privados y los navegantes del placer. • Abarcado del tubo de la flotabilidad, de la cubierta, líneas de vida, sistema automático de la inflación del CO2, manijas de embarque, conservando la línea, la bomba de mano, afianzando el cubo, el ancla de mar, y el valise. • El peso más ligero y más acuerdo - fáciles llevar, guardar lejos, y la maniobra en cualquie situación de emergencia. • Desplegado fácilmente por las mujeres, los niños, agotaron pilotos, o a navegantes. • Suave-embale el valise hecho de nilón prácticamente indestructible con los encierros de nylon seguros del velcro. • Construido de FAA resistente aprobó la tela de nylon cubierta neopreno. • Pabellón anaranjado altamente visible opcional a ayudar en búsqueda y operaciones de rescate. • Contiene los cilindros de aluminio y las válvulas que eliminan la corrosión y que reducen grandemente el peso. • El sistema automático de la inflación del CO2 de alta tecnología, infla en 10 segundos. • Los kits de supervivencia opcionales están disponibles cumplir requisitos individuales. • garantía de cinco años en las piezas y el trabajo, construidos para durar un curso de la vida con cuidado apropiado.','',1),(8,2,'9-Hombre con Estándar más kit','•	Lightest and smallest package on the market today, designed for private pilots and pleasure boaters. \r\n•	Comprised of buoyancy tube, deck, life lines, CO2 automatic inflation system, boarding handles, retaining line, hand pump, bailing bucket, sea anchor, and valise. \r\n•	Lightest weight and most compact - easy to carry, stow away, and maneuver in any emergency situation. \r\n•	Easily deployed by women, children, exhausted pilots, or boaters. \r\n•	Soft-pack valise made of practically indestructible nylon with secure nylon velcro closures. \r\n•	Constructed of heavy-duty FAA approved neoprene coated nylon fabric. \r\n•	Optional highly visible orange canopy to aid in search and rescue operations. \r\n•	Contains aluminum cylinders and valves eliminating corrosion and greatly reducing the weight. \r\n•	High-tech CO2 automatic inflation system, inflates in 10 seconds. \r\n•	Optional survival kits are available to meet individual requirements. \r\n•	5-year warranty on parts and labor, built to last a lifetime with proper care.','',6),(9,2,'9-Hombre con Kit de lujo','• El paquete más ligero y más pequeño en el mercado hoy, diseñado para los pilotos privados y los navegantes del placer. • Abarcado del tubo de la flotabilidad, de la cubierta, líneas de vida, sistema automático de la inflación del CO2, manijas de embarque, conservando la línea, la bomba de mano, afianzando el cubo, el ancla de mar, y el valise. • El peso más ligero y más acuerdo - fáciles llevar, guardar lejos, y la maniobra en cualquie situación de emergencia. • Desplegado fácilmente por las mujeres, los niños, agotaron pilotos, o a navegantes. • Suave-embale el valise hecho de nilón prácticamente indestructible con los encierros de nylon seguros del velcro. • Construido de FAA resistente aprobó la tela de nylon cubierta neopreno. • Pabellón anaranjado altamente visible opcional a ayudar en búsqueda y operaciones de rescate. • Contiene los cilindros de aluminio y las válvulas que eliminan la corrosión y que reducen grandemente el peso. • El sistema automático de la inflación del CO2 de alta tecnología, infla en 10 segundos. • Los kits de supervivencia opcionales están disponibles cumplir requisitos individuales. • garantía de cinco años en las piezas y el trabajo, construidos para durar un curso de la vida con cuidado apropiado.','',1),(10,2,'Basico 4-Hombre (ninguna TSO)','• Solo tubo con el diseño del tabique hermético que crea dos compartimientos separados. • capacidad de 4 personas con una sobrecarga de 6. • Abarcado del tubo de la flotabilidad, de la cubierta, líneas de vida, sistema automático de la inflación del CO2, manijas de embarque, conservando la línea, la bomba de mano, afianzando el cubo, el ancla de mar, y el valise. • Incluye un sistema estabilizador del lastre del agua y una luz activada agua del localizador según los requisitos del FAA. • El peso más ligero y más acuerdo - fáciles llevar, guardar lejos, y la maniobra en cualquie situación de emergencia. • Desplegado fácilmente por las mujeres, los niños, agotaron pilotos, o a navegantes. • Suave-embale el valise hecho de nilón prácticamente indestructible con los encierros de nylon seguros del velcro. • Construido de FAA resistente aprobó la tela de nylon cubierta neopreno. • Pabellón anaranjado altamente visible opcional a ayudar en búsqueda y operaciones de rescate. • Contiene los cilindros de aluminio y las válvulas que eliminan la corrosión y que reducen grandemente el peso. • El sistema automático de la inflación del CO2 de alta tecnología, infla en 10 segundos. • Los kits de supervivencia opcionales están disponibles cumplir requisitos individuales. • Garantía de por vida en las piezas y el trabajo, construidos para durar un curso de la vida con cuidado apropiado.','',3),(11,2,'TSO  4-Hombre con Pabellón solamente','• Solo tubo con el diseño del tabique hermético que crea dos compartimientos separados. • capacidad de 4 personas con una sobrecarga de 6. • Abarcado del tubo de la flotabilidad, de la cubierta, líneas de vida, sistema automático de la inflación del CO2, manijas de embarque, conservando la línea, la bomba de mano, afianzando el cubo, el ancla de mar, y el valise. • Incluye un sistema estabilizador del lastre del agua y una luz activada agua del localizador según los requisitos del FAA. • El peso más ligero y más acuerdo - fáciles llevar, guardar lejos, y la maniobra en cualquie situación de emergencia. • Desplegado fácilmente por las mujeres, los niños, agotaron pilotos, o a navegantes. • Suave-embale el valise hecho de nilón prácticamente indestructible con los encierros de nylon seguros del velcro. • Construido de FAA resistente aprobó la tela de nylon cubierta neopreno. • Pabellón anaranjado altamente visible opcional a ayudar en búsqueda y operaciones de rescate. • Contiene los cilindros de aluminio y las válvulas que eliminan la corrosión y que reducen grandemente el peso. • El sistema automático de la inflación del CO2 de alta tecnología, infla en 10 segundos. • Los kits de supervivencia opcionales están disponibles cumplir requisitos individuales. • Garantía de por vida en las piezas y el trabajo, construidos para durar un curso de la vida con cuidado apropiado.','',2),(12,2,'TSO  4-Hombre con FAR 91 Kit','• Solo tubo con el diseño del tabique hermético que crea dos compartimientos separados. • capacidad de 4 personas con una sobrecarga de 6. • Abarcado del tubo de la flotabilidad, de la cubierta, líneas de vida, sistema automático de la inflación del CO2, manijas de embarque, conservando la línea, la bomba de mano, afianzando el cubo, el ancla de mar, y el valise. • Incluye un sistema estabilizador del lastre del agua y una luz activada agua del localizador según los requisitos del FAA. • El peso más ligero y más acuerdo - fáciles llevar, guardar lejos, y la maniobra en cualquie situación de emergencia. • Desplegado fácilmente por las mujeres, los niños, agotaron pilotos, o a navegantes. • Suave-embale el valise hecho de nilón prácticamente indestructible con los encierros de nylon seguros del velcro. • Construido de FAA resistente aprobó la tela de nylon cubierta neopreno. • Pabellón anaranjado altamente visible opcional a ayudar en búsqueda y operaciones de rescate. • Contiene los cilindros de aluminio y las válvulas que eliminan la corrosión y que reducen grandemente el peso. • El sistema automático de la inflación del CO2 de alta tecnología, infla en 10 segundos. • Los kits de supervivencia opcionales están disponibles cumplir requisitos individuales. • Garantía de por vida en las piezas y el trabajo, construidos para durar un curso de la vida con cuidado apropiado.','',4),(13,2,'TSO  4-Hombre  con FAR 121 Kit','• Solo tubo con el diseño del tabique hermético que crea dos compartimientos separados. • capacidad de 4 personas con una sobrecarga de 6. • Abarcado del tubo de la flotabilidad, de la cubierta, líneas de vida, sistema automático de la inflación del CO2, manijas de embarque, conservando la línea, la bomba de mano, afianzando el cubo, el ancla de mar, y el valise. • Incluye un sistema estabilizador del lastre del agua y una luz activada agua del localizador según los requisitos del FAA. • El peso más ligero y más acuerdo - fáciles llevar, guardar lejos, y la maniobra en cualquie situación de emergencia. • Desplegado fácilmente por las mujeres, los niños, agotaron pilotos, o a navegantes. • Suave-embale el valise hecho de nilón prácticamente indestructible con los encierros de nylon seguros del velcro. • Construido de FAA resistente aprobó la tela de nylon cubierta neopreno. • Pabellón anaranjado altamente visible opcional a ayudar en búsqueda y operaciones de rescate. • Contiene los cilindros de aluminio y las válvulas que eliminan la corrosión y que reducen grandemente el peso. • El sistema automático de la inflación del CO2 de alta tecnología, infla en 10 segundos. • Los kits de supervivencia opcionales están disponibles cumplir requisitos individuales. • Garantía de por vida en las piezas y el trabajo, construidos para durar un curso de la vida con cuidado apropiado.','',4),(14,2,'TSO  4-Hombre con FAR 135 Kit','• Solo tubo con el diseño del tabique hermético que crea dos compartimientos separados. • capacidad de 4 personas con una sobrecarga de 6. • Abarcado del tubo de la flotabilidad, de la cubierta, líneas de vida, sistema automático de la inflación del CO2, manijas de embarque, conservando la línea, la bomba de mano, afianzando el cubo, el ancla de mar, y el valise. • Incluye un sistema estabilizador del lastre del agua y una luz activada agua del localizador según los requisitos del FAA. • El peso más ligero y más acuerdo - fáciles llevar, guardar lejos, y la maniobra en cualquie situación de emergencia. • Desplegado fácilmente por las mujeres, los niños, agotaron pilotos, o a navegantes. • Suave-embale el valise hecho de nilón prácticamente indestructible con los encierros de nylon seguros del velcro. • Construido de FAA resistente aprobó la tela de nylon cubierta neopreno. • Pabellón anaranjado altamente visible opcional a ayudar en búsqueda y operaciones de rescate. • Contiene los cilindros de aluminio y las válvulas que eliminan la corrosión y que reducen grandemente el peso. • El sistema automático de la inflación del CO2 de alta tecnología, infla en 10 segundos. • Los kits de supervivencia opcionales están disponibles cumplir requisitos individuales. • Garantía de por vida en las piezas y el trabajo, construidos para durar un curso de la vida con cuidado apropiado.','',3),(15,2,'Basico 8-Hombre (ninguna TSO)','• Solo tubo con el diseño del tabique hermético que crea dos compartimientos separados. • Abarcado del tubo de la flotabilidad, de la cubierta, líneas de vida, sistema automático de la inflación del CO2, manijas de embarque, conservando la línea, la bomba de mano, afianzando el cubo, el ancla de mar, y el valise. • Incluye un sistema estabilizador del lastre del agua y una luz activada agua del localizador según los requisitos del FAA. • El peso más ligero y más acuerdo - fáciles llevar, guardar lejos, y la maniobra en cualquie situación de emergencia. • Desplegado fácilmente por las mujeres, los niños, agotaron pilotos, o a navegantes. • Suave-embale el valise hecho de nilón prácticamente indestructible con los encierros de nylon seguros del velcro. • Construido de FAA resistente aprobó la tela de nylon cubierta neopreno. • Pabellón anaranjado altamente visible opcional a ayudar en búsqueda y operaciones de rescate. • Contiene los cilindros de aluminio y las válvulas que eliminan la corrosión y que reducen grandemente el peso. • El sistema automático de la inflación del CO2 de alta tecnología, infla en 10 segundos. • Los kits de supervivencia opcionales están disponibles cumplir requisitos individuales. • Garantía de por vida en las piezas y el trabajo, construidos para durar un curso de la vida con cuidado apropiado.','',2),(16,2,'TSO 8-Hombre con Pabellón solamente','• Solo tubo con el diseño del tabique hermético que crea dos compartimientos separados. • Abarcado del tubo de la flotabilidad, de la cubierta, líneas de vida, sistema automático de la inflación del CO2, manijas de embarque, conservando la línea, la bomba de mano, afianzando el cubo, el ancla de mar, y el valise. • Incluye un sistema estabilizador del lastre del agua y una luz activada agua del localizador según los requisitos del FAA. • El peso más ligero y más acuerdo - fáciles llevar, guardar lejos, y la maniobra en cualquie situación de emergencia. • Desplegado fácilmente por las mujeres, los niños, agotaron pilotos, o a navegantes. • Suave-embale el valise hecho de nilón prácticamente indestructible con los encierros de nylon seguros del velcro. • Construido de FAA resistente aprobó la tela de nylon cubierta neopreno. • Pabellón anaranjado altamente visible opcional a ayudar en búsqueda y operaciones de rescate. • Contiene los cilindros de aluminio y las válvulas que eliminan la corrosión y que reducen grandemente el peso. • El sistema automático de la inflación del CO2 de alta tecnología, infla en 10 segundos. • Los kits de supervivencia opcionales están disponibles cumplir requisitos individuales. • Garantía de por vida en las piezas y el trabajo, construidos para durar un curso de la vida con cuidado apropiado.','',1),(17,2,'TSO 8-Hombre con FAR 91 Kit','• Solo tubo con el diseño del tabique hermético que crea dos compartimientos separados. • Abarcado del tubo de la flotabilidad, de la cubierta, líneas de vida, sistema automático de la inflación del CO2, manijas de embarque, conservando la línea, la bomba de mano, afianzando el cubo, el ancla de mar, y el valise. • Incluye un sistema estabilizador del lastre del agua y una luz activada agua del localizador según los requisitos del FAA. • El peso más ligero y más acuerdo - fáciles llevar, guardar lejos, y la maniobra en cualquie situación de emergencia. • Desplegado fácilmente por las mujeres, los niños, agotaron pilotos, o a navegantes. • Suave-embale el valise hecho de nilón prácticamente indestructible con los encierros de nylon seguros del velcro. • Construido de FAA resistente aprobó la tela de nylon cubierta neopreno. • Pabellón anaranjado altamente visible opcional a ayudar en búsqueda y operaciones de rescate. • Contiene los cilindros de aluminio y las válvulas que eliminan la corrosión y que reducen grandemente el peso. • El sistema automático de la inflación del CO2 de alta tecnología, infla en 10 segundos. • Los kits de supervivencia opcionales están disponibles cumplir requisitos individuales. • Garantía de por vida en las piezas y el trabajo, construidos para durar un curso de la vida con cuidado apropiado.','',2),(18,2,'TSO 8-Hombre con FAR 121 Kit','• Solo tubo con el diseño del tabique hermético que crea dos compartimientos separados. • Abarcado del tubo de la flotabilidad, de la cubierta, líneas de vida, sistema automático de la inflación del CO2, manijas de embarque, conservando la línea, la bomba de mano, afianzando el cubo, el ancla de mar, y el valise. • Incluye un sistema estabilizador del lastre del agua y una luz activada agua del localizador según los requisitos del FAA. • El peso más ligero y más acuerdo - fáciles llevar, guardar lejos, y la maniobra en cualquie situación de emergencia. • Desplegado fácilmente por las mujeres, los niños, agotaron pilotos, o a navegantes. • Suave-embale el valise hecho de nilón prácticamente indestructible con los encierros de nylon seguros del velcro. • Construido de FAA resistente aprobó la tela de nylon cubierta neopreno. • Pabellón anaranjado altamente visible opcional a ayudar en búsqueda y operaciones de rescate. • Contiene los cilindros de aluminio y las válvulas que eliminan la corrosión y que reducen grandemente el peso. • El sistema automático de la inflación del CO2 de alta tecnología, infla en 10 segundos. • Los kits de supervivencia opcionales están disponibles cumplir requisitos individuales. • Garantía de por vida en las piezas y el trabajo, construidos para durar un curso de la vida con cuidado apropiado.','',7),(19,2,'TSO 8-Hombre con FAR 135 Kit','• Solo tubo con el diseño del tabique hermético que crea dos compartimientos separados. • Abarcado del tubo de la flotabilidad, de la cubierta, líneas de vida, sistema automático de la inflación del CO2, manijas de embarque, conservando la línea, la bomba de mano, afianzando el cubo, el ancla de mar, y el valise. • Incluye un sistema estabilizador del lastre del agua y una luz activada agua del localizador según los requisitos del FAA. • El peso más ligero y más acuerdo - fáciles llevar, guardar lejos, y la maniobra en cualquie situación de emergencia. • Desplegado fácilmente por las mujeres, los niños, agotaron pilotos, o a navegantes. • Suave-embale el valise hecho de nilón prácticamente indestructible con los encierros de nylon seguros del velcro. • Construido de FAA resistente aprobó la tela de nylon cubierta neopreno. • Pabellón anaranjado altamente visible opcional a ayudar en búsqueda y operaciones de rescate. • Contiene los cilindros de aluminio y las válvulas que eliminan la corrosión y que reducen grandemente el peso. • El sistema automático de la inflación del CO2 de alta tecnología, infla en 10 segundos. • Los kits de supervivencia opcionales están disponibles cumplir requisitos individuales. • Garantía de por vida en las piezas y el trabajo, construidos para durar un curso de la vida con cuidado apropiado.','',2),(20,2,'Basico 6 Hombre (ninguna TSO)','• Diseño doble del tubo que contiene dos compartimientos separados completos. • Abarcado del tubo de la flotabilidad, de la cubierta, líneas de vida, sistema automático de la inflación del CO2, manijas de embarque, conservando la línea, la bomba de mano, afianzando el cubo, el ancla de mar, y el valise. • Incluye un sistema estabilizador del lastre del agua y una luz activada agua del localizador según los requisitos del FAA. • El peso más ligero y más acuerdo - fáciles llevar, guardar lejos, y la maniobra en cualquie situación de emergencia. • Desplegado fácilmente por las mujeres, los niños, agotaron pilotos, o a navegantes. • Suave-embale el valise hecho de nilón prácticamente indestructible con los encierros de nylon seguros del velcro. • Construido de FAA resistente aprobó la tela de nylon cubierta neopreno. • Pabellón anaranjado altamente visible opcional a ayudar en búsqueda y operaciones de rescate. • Contiene los cilindros de aluminio y las válvulas que eliminan la corrosión y que reducen grandemente el peso. • El sistema automático de la inflación del CO2 de alta tecnología, infla en 10 segundos. • Los kits de supervivencia opcionales están disponibles cumplir requisitos individuales. • Garantía de por vida en las piezas y el trabajo, construidos para durar un curso de la vida con cuidado apropiado.','',3),(21,2,'TSO 6-Hombre con Pabellón solamente','• Diseño doble del tubo que contiene dos compartimientos separados completos. • Abarcado del tubo de la flotabilidad, de la cubierta, líneas de vida, sistema automático de la inflación del CO2, manijas de embarque, conservando la línea, la bomba de mano, afianzando el cubo, el ancla de mar, y el valise. • Incluye un sistema estabilizador del lastre del agua y una luz activada agua del localizador según los requisitos del FAA. • El peso más ligero y más acuerdo - fáciles llevar, guardar lejos, y la maniobra en cualquie situación de emergencia. • Desplegado fácilmente por las mujeres, los niños, agotaron pilotos, o a navegantes. • Suave-embale el valise hecho de nilón prácticamente indestructible con los encierros de nylon seguros del velcro. • Construido de FAA resistente aprobó la tela de nylon cubierta neopreno. • Pabellón anaranjado altamente visible opcional a ayudar en búsqueda y operaciones de rescate. • Contiene los cilindros de aluminio y las válvulas que eliminan la corrosión y que reducen grandemente el peso. • El sistema automático de la inflación del CO2 de alta tecnología, infla en 10 segundos. • Los kits de supervivencia opcionales están disponibles cumplir requisitos individuales. • Garantía de por vida en las piezas y el trabajo, construidos para durar un curso de la vida con cuidado apropiado.','',4),(22,2,'TSO 6-Hombre con FAR 91 Kit','• Diseño doble del tubo que contiene dos compartimientos separados completos. • Abarcado del tubo de la flotabilidad, de la cubierta, líneas de vida, sistema automático de la inflación del CO2, manijas de embarque, conservando la línea, la bomba de mano, afianzando el cubo, el ancla de mar, y el valise. • Incluye un sistema estabilizador del lastre del agua y una luz activada agua del localizador según los requisitos del FAA. • El peso más ligero y más acuerdo - fáciles llevar, guardar lejos, y la maniobra en cualquie situación de emergencia. • Desplegado fácilmente por las mujeres, los niños, agotaron pilotos, o a navegantes. • Suave-embale el valise hecho de nilón prácticamente indestructible con los encierros de nylon seguros del velcro. • Construido de FAA resistente aprobó la tela de nylon cubierta neopreno. • Pabellón anaranjado altamente visible opcional a ayudar en búsqueda y operaciones de rescate. • Contiene los cilindros de aluminio y las válvulas que eliminan la corrosión y que reducen grandemente el peso. • El sistema automático de la inflación del CO2 de alta tecnología, infla en 10 segundos. • Los kits de supervivencia opcionales están disponibles cumplir requisitos individuales. • Garantía de por vida en las piezas y el trabajo, construidos para durar un curso de la vida con cuidado apropiado.','',2),(23,2,'TSO 6-Hombre con FAR 121 Kit','• Diseño doble del tubo que contiene dos compartimientos separados completos. • Abarcado del tubo de la flotabilidad, de la cubierta, líneas de vida, sistema automático de la inflación del CO2, manijas de embarque, conservando la línea, la bomba de mano, afianzando el cubo, el ancla de mar, y el valise. • Incluye un sistema estabilizador del lastre del agua y una luz activada agua del localizador según los requisitos del FAA. • El peso más ligero y más acuerdo - fáciles llevar, guardar lejos, y la maniobra en cualquie situación de emergencia. • Desplegado fácilmente por las mujeres, los niños, agotaron pilotos, o a navegantes. • Suave-embale el valise hecho de nilón prácticamente indestructible con los encierros de nylon seguros del velcro. • Construido de FAA resistente aprobó la tela de nylon cubierta neopreno. • Pabellón anaranjado altamente visible opcional a ayudar en búsqueda y operaciones de rescate. • Contiene los cilindros de aluminio y las válvulas que eliminan la corrosión y que reducen grandemente el peso. • El sistema automático de la inflación del CO2 de alta tecnología, infla en 10 segundos. • Los kits de supervivencia opcionales están disponibles cumplir requisitos individuales. • Garantía de por vida en las piezas y el trabajo, construidos para durar un curso de la vida con cuidado apropiado.','',2),(24,2,'TSO 6-Hombre con FAR 135 Kit','• Diseño doble del tubo que contiene dos compartimientos separados completos. • Abarcado del tubo de la flotabilidad, de la cubierta, líneas de vida, sistema automático de la inflación del CO2, manijas de embarque, conservando la línea, la bomba de mano, afianzando el cubo, el ancla de mar, y el valise. • Incluye un sistema estabilizador del lastre del agua y una luz activada agua del localizador según los requisitos del FAA. • El peso más ligero y más acuerdo - fáciles llevar, guardar lejos, y la maniobra en cualquie situación de emergencia. • Desplegado fácilmente por las mujeres, los niños, agotaron pilotos, o a navegantes. • Suave-embale el valise hecho de nilón prácticamente indestructible con los encierros de nylon seguros del velcro. • Construido de FAA resistente aprobó la tela de nylon cubierta neopreno. • Pabellón anaranjado altamente visible opcional a ayudar en búsqueda y operaciones de rescate. • Contiene los cilindros de aluminio y las válvulas que eliminan la corrosión y que reducen grandemente el peso. • El sistema automático de la inflación del CO2 de alta tecnología, infla en 10 segundos. • Los kits de supervivencia opcionales están disponibles cumplir requisitos individuales. • Garantía de por vida en las piezas y el trabajo, construidos para durar un curso de la vida con cuidado apropiado.','',4),(25,2,'Básico 10-Hombre (ninguna TSO)','• Diseño doble del tubo que contiene dos compartimientos separados completos. • Abarcado del tubo de la flotabilidad, de la cubierta, líneas de vida, sistema automático de la inflación del CO2, manijas de embarque, conservando la línea, la bomba de mano, afianzando el cubo, el ancla de mar, y el valise. • Incluye un sistema estabilizador del lastre del agua y una luz activada agua del localizador según los requisitos del FAA. • El peso más ligero y más acuerdo - fáciles llevar, guardar lejos, y la maniobra en cualquie situación de emergencia. • Desplegado fácilmente por las mujeres, los niños, agotaron pilotos, o a navegantes. • Suave-embale el valise hecho de nilón prácticamente indestructible con los encierros de nylon seguros del velcro. • Construido de FAA resistente aprobó la tela de nylon cubierta neopreno. • Pabellón anaranjado altamente visible opcional a ayudar en búsqueda y operaciones de rescate. • Contiene los cilindros de aluminio y las válvulas que eliminan la corrosión y que reducen grandemente el peso. • El sistema automático de la inflación del CO2 de alta tecnología, infla en 10 segundos. • Los kits de supervivencia opcionales están disponibles cumplir requisitos individuales. • garantía de cinco años en las piezas y el trabajo, construidos para durar un curso de la vida con cuidado apropiado.','',8),(26,2,'TSO 10-Hombre con el pabellón solamente','• Diseño doble del tubo que contiene dos compartimientos separados completos. • Abarcado del tubo de la flotabilidad, de la cubierta, líneas de vida, sistema automático de la inflación del CO2, manijas de embarque, conservando la línea, la bomba de mano, afianzando el cubo, el ancla de mar, y el valise. • Incluye un sistema estabilizador del lastre del agua y una luz activada agua del localizador según los requisitos del FAA. • El peso más ligero y más acuerdo - fáciles llevar, guardar lejos, y la maniobra en cualquie situación de emergencia. • Desplegado fácilmente por las mujeres, los niños, agotaron pilotos, o a navegantes. • Suave-embale el valise hecho de nilón prácticamente indestructible con los encierros de nylon seguros del velcro. • Construido de FAA resistente aprobó la tela de nylon cubierta neopreno. • Pabellón anaranjado altamente visible opcional a ayudar en búsqueda y operaciones de rescate. • Contiene los cilindros de aluminio y las válvulas que eliminan la corrosión y que reducen grandemente el peso. • El sistema automático de la inflación del CO2 de alta tecnología, infla en 10 segundos. • Los kits de supervivencia opcionales están disponibles cumplir requisitos individuales. • garantía de cinco años en las piezas y el trabajo, construidos para durar un curso de la vida con cuidado apropiado.','',3),(27,2,'TSO 10-Hombre con FAR 91 Kit','• Diseño doble del tubo que contiene dos compartimientos separados completos. • Abarcado del tubo de la flotabilidad, de la cubierta, líneas de vida, sistema automático de la inflación del CO2, manijas de embarque, conservando la línea, la bomba de mano, afianzando el cubo, el ancla de mar, y el valise. • Incluye un sistema estabilizador del lastre del agua y una luz activada agua del localizador según los requisitos del FAA. • El peso más ligero y más acuerdo - fáciles llevar, guardar lejos, y la maniobra en cualquie situación de emergencia. • Desplegado fácilmente por las mujeres, los niños, agotaron pilotos, o a navegantes. • Suave-embale el valise hecho de nilón prácticamente indestructible con los encierros de nylon seguros del velcro. • Construido de FAA resistente aprobó la tela de nylon cubierta neopreno. • Pabellón anaranjado altamente visible opcional a ayudar en búsqueda y operaciones de rescate. • Contiene los cilindros de aluminio y las válvulas que eliminan la corrosión y que reducen grandemente el peso. • El sistema automático de la inflación del CO2 de alta tecnología, infla en 10 segundos. • Los kits de supervivencia opcionales están disponibles cumplir requisitos individuales. • garantía de cinco años en las piezas y el trabajo, construidos para durar un curso de la vida con cuidado apropiado.','',7),(28,2,'TSO  10-Hombre con FAR 121 Kit','• Diseño doble del tubo que contiene dos compartimientos separados completos. • Abarcado del tubo de la flotabilidad, de la cubierta, líneas de vida, sistema automático de la inflación del CO2, manijas de embarque, conservando la línea, la bomba de mano, afianzando el cubo, el ancla de mar, y el valise. • Incluye un sistema estabilizador del lastre del agua y una luz activada agua del localizador según los requisitos del FAA. • El peso más ligero y más acuerdo - fáciles llevar, guardar lejos, y la maniobra en cualquie situación de emergencia. • Desplegado fácilmente por las mujeres, los niños, agotaron pilotos, o a navegantes. • Suave-embale el valise hecho de nilón prácticamente indestructible con los encierros de nylon seguros del velcro. • Construido de FAA resistente aprobó la tela de nylon cubierta neopreno. • Pabellón anaranjado altamente visible opcional a ayudar en búsqueda y operaciones de rescate. • Contiene los cilindros de aluminio y las válvulas que eliminan la corrosión y que reducen grandemente el peso. • El sistema automático de la inflación del CO2 de alta tecnología, infla en 10 segundos. • Los kits de supervivencia opcionales están disponibles cumplir requisitos individuales. • garantía de cinco años en las piezas y el trabajo, construidos para durar un curso de la vida con cuidado apropiado.','',5),(29,2,'TSO 10-Hombre con FAR 135 Kit','• Diseño doble del tubo que contiene dos compartimientos separados completos. • Abarcado del tubo de la flotabilidad, de la cubierta, líneas de vida, sistema automático de la inflación del CO2, manijas de embarque, conservando la línea, la bomba de mano, afianzando el cubo, el ancla de mar, y el valise. • Incluye un sistema estabilizador del lastre del agua y una luz activada agua del localizador según los requisitos del FAA. • El peso más ligero y más acuerdo - fáciles llevar, guardar lejos, y la maniobra en cualquie situación de emergencia. • Desplegado fácilmente por las mujeres, los niños, agotaron pilotos, o a navegantes. • Suave-embale el valise hecho de nilón prácticamente indestructible con los encierros de nylon seguros del velcro. • Construido de FAA resistente aprobó la tela de nylon cubierta neopreno. • Pabellón anaranjado altamente visible opcional a ayudar en búsqueda y operaciones de rescate. • Contiene los cilindros de aluminio y las válvulas que eliminan la corrosión y que reducen grandemente el peso. • El sistema automático de la inflación del CO2 de alta tecnología, infla en 10 segundos. • Los kits de supervivencia opcionales están disponibles cumplir requisitos individuales. • garantía de cinco años en las piezas y el trabajo, construidos para durar un curso de la vida con cuidado apropiado.','',2),(30,2,'Basico 12-Hombre (ninguna TSO)','• Diseño doble del tubo que contiene dos compartimientos separados completos. • Abarcado del tubo de la flotabilidad, de la cubierta, líneas de vida, sistema automático de la inflación del CO2, manijas de embarque, conservando la línea, la bomba de mano, afianzando el cubo, el ancla de mar, y el valise. • Incluye un sistema estabilizador del lastre del agua y una luz activada agua del localizador según los requisitos del FAA. • El peso más ligero y más acuerdo - fáciles llevar, guardar lejos, y la maniobra en cualquie situación de emergencia. • Desplegado fácilmente por las mujeres, los niños, agotaron pilotos, o a navegantes. • Suave-embale el valise hecho de nilón prácticamente indestructible con los encierros de nylon seguros del velcro. • Construido de FAA resistente aprobó la tela de nylon cubierta neopreno. • Pabellón anaranjado altamente visible opcional a ayudar en búsqueda y operaciones de rescate. • Contiene los cilindros de aluminio y las válvulas que eliminan la corrosión y que reducen grandemente el peso. • El sistema automático de la inflación del CO2 de alta tecnología, infla en 10 segundos. • Los kits de supervivencia opcionales están disponibles cumplir requisitos individuales. • garantía de cinco años en las piezas y el trabajo, construidos para durar un curso de la vida con cuidado apropiado.','',4),(31,2,'TSO 12-Hombre con el pabellón solamente','• Diseño doble del tubo que contiene dos compartimientos separados completos. • Abarcado del tubo de la flotabilidad, de la cubierta, líneas de vida, sistema automático de la inflación del CO2, manijas de embarque, conservando la línea, la bomba de mano, afianzando el cubo, el ancla de mar, y el valise. • Incluye un sistema estabilizador del lastre del agua y una luz activada agua del localizador según los requisitos del FAA. • El peso más ligero y más acuerdo - fáciles llevar, guardar lejos, y la maniobra en cualquie situación de emergencia. • Desplegado fácilmente por las mujeres, los niños, agotaron pilotos, o a navegantes. • Suave-embale el valise hecho de nilón prácticamente indestructible con los encierros de nylon seguros del velcro. • Construido de FAA resistente aprobó la tela de nylon cubierta neopreno. • Pabellón anaranjado altamente visible opcional a ayudar en búsqueda y operaciones de rescate. • Contiene los cilindros de aluminio y las válvulas que eliminan la corrosión y que reducen grandemente el peso. • El sistema automático de la inflación del CO2 de alta tecnología, infla en 10 segundos. • Los kits de supervivencia opcionales están disponibles cumplir requisitos individuales. • garantía de cinco años en las piezas y el trabajo, construidos para durar un curso de la vida con cuidado apropiado.','',3),(32,2,'TSO 12-Hombre con FAR 91 Kit','• Diseño doble del tubo que contiene dos compartimientos separados completos. • Abarcado del tubo de la flotabilidad, de la cubierta, líneas de vida, sistema automático de la inflación del CO2, manijas de embarque, conservando la línea, la bomba de mano, afianzando el cubo, el ancla de mar, y el valise. • Incluye un sistema estabilizador del lastre del agua y una luz activada agua del localizador según los requisitos del FAA. • El peso más ligero y más acuerdo - fáciles llevar, guardar lejos, y la maniobra en cualquie situación de emergencia. • Desplegado fácilmente por las mujeres, los niños, agotaron pilotos, o a navegantes. • Suave-embale el valise hecho de nilón prácticamente indestructible con los encierros de nylon seguros del velcro. • Construido de FAA resistente aprobó la tela de nylon cubierta neopreno. • Pabellón anaranjado altamente visible opcional a ayudar en búsqueda y operaciones de rescate. • Contiene los cilindros de aluminio y las válvulas que eliminan la corrosión y que reducen grandemente el peso. • El sistema automático de la inflación del CO2 de alta tecnología, infla en 10 segundos. • Los kits de supervivencia opcionales están disponibles cumplir requisitos individuales. • garantía de cinco años en las piezas y el trabajo, construidos para durar un curso de la vida con cuidado apropiado.','',3),(33,2,'TSO 12-Hombre con FAR 121 Kit','• Diseño doble del tubo que contiene dos compartimientos separados completos. • Abarcado del tubo de la flotabilidad, de la cubierta, líneas de vida, sistema automático de la inflación del CO2, manijas de embarque, conservando la línea, la bomba de mano, afianzando el cubo, el ancla de mar, y el valise. • Incluye un sistema estabilizador del lastre del agua y una luz activada agua del localizador según los requisitos del FAA. • El peso más ligero y más acuerdo - fáciles llevar, guardar lejos, y la maniobra en cualquie situación de emergencia. • Desplegado fácilmente por las mujeres, los niños, agotaron pilotos, o a navegantes. • Suave-embale el valise hecho de nilón prácticamente indestructible con los encierros de nylon seguros del velcro. • Construido de FAA resistente aprobó la tela de nylon cubierta neopreno. • Pabellón anaranjado altamente visible opcional a ayudar en búsqueda y operaciones de rescate. • Contiene los cilindros de aluminio y las válvulas que eliminan la corrosión y que reducen grandemente el peso. • El sistema automático de la inflación del CO2 de alta tecnología, infla en 10 segundos. • Los kits de supervivencia opcionales están disponibles cumplir requisitos individuales. • garantía de cinco años en las piezas y el trabajo, construidos para durar un curso de la vida con cuidado apropiado.','',2),(34,2,'TSO 12-Hombre con FAR 135 Kit','• Diseño doble del tubo que contiene dos compartimientos separados completos. • Abarcado del tubo de la flotabilidad, de la cubierta, líneas de vida, sistema automático de la inflación del CO2, manijas de embarque, conservando la línea, la bomba de mano, afianzando el cubo, el ancla de mar, y el valise. • Incluye un sistema estabilizador del lastre del agua y una luz activada agua del localizador según los requisitos del FAA. • El peso más ligero y más acuerdo - fáciles llevar, guardar lejos, y la maniobra en cualquie situación de emergencia. • Desplegado fácilmente por las mujeres, los niños, agotaron pilotos, o a navegantes. • Suave-embale el valise hecho de nilón prácticamente indestructible con los encierros de nylon seguros del velcro. • Construido de FAA resistente aprobó la tela de nylon cubierta neopreno. • Pabellón anaranjado altamente visible opcional a ayudar en búsqueda y operaciones de rescate. • Contiene los cilindros de aluminio y las válvulas que eliminan la corrosión y que reducen grandemente el peso. • El sistema automático de la inflación del CO2 de alta tecnología, infla en 10 segundos. • Los kits de supervivencia opcionales están disponibles cumplir requisitos individuales. • garantía de cinco años en las piezas y el trabajo, construidos para durar un curso de la vida con cuidado apropiado.','',2),(35,2,'EBC 502','FAA y la FCC aprobaron; ELT automáticamente activado. Estándares de las reuniones TSO-C91a. Funciona encendido el & 121.5; 243.0MHz. (capaz de ser embalado dentro de kit de supervivencia).','',6),(35,1,'EBC 502','FAA & FCC Approved; automatically activated ELT.  Meets TSO-C91a standards. Operates on 121.5 & 243.0 MHz.  (able to be packed inside survival kit).','',190),(36,2,'500-12Y Faro del localizador','Faro del Localizador 500-12Y (amarillo reflexivo) aprobaciones completas de FAA y del JAA de acuerdo con la aprobación 111, aprobación No. WR1029 de la TSO C91a y de C126, de JTSO-2C91a y de 2C126 COSPAS/SARSAT de CAA. ¡Ahora, puede ser embalado dentro de nuestras balsas salvavidas aprobadas TSO de FAA! El PLB 500-12Y (406MHz) substituye el EBC502 (121.5/243MHz) en el día febrero de 2009. ¡Competitivo tasado! NOAA eliminan 121. Aviso de noticias 5MHz.','',4),(36,1,'500-12Y Locator Beacon','500-12Y Locator Beacon  (Reflective Yellow)  Full FAA and JAA Approvals in accordance with TSO C91a and C126, JTSO-2C91a and 2C126 COSPAS/ SARSAT Approval 111, CAA Approval No. WR1029. \r\nNow, it may be packed inside our FAA TSO Approved Life Rafts!  The PLB 500-12Y (406 MHz) will replace the EBC502 (121.5/243 MHz) in Feb. of  2009.  Competitively Priced! &#61518;&#61509;&#61527;&#61473;\r\nNOAA Phase Out 121. 5 MHz News Announcement','',152),(37,2,'EBC 406AP','EBC 406AP - TRANSMISOR PORTABLE AUTOMÁTICO del LOCALIZADOR de la EMERGENCIA Para el uso de la balsa (ninguÌn soporte, antena externa, cable). Transmite en el & 406.028; 121.5MHz. Reuniones TSO-C126. & aprobado de FAA TSO-91a; TSO-126, aprobado por COSPAS-SARSAT, cumple requisitos de la FCC bajo parte 87. Ahora, puede ser embalado adentro o ir junto con muchas de nuestras balsas salvavidas de la TSO de FAA.','',5),(37,1,'EBC 406AP','EBC 406AP - AUTOMATIC PORTABLE EMERGENCY LOCATOR TRANSMITTER \r\nFor Raft Application (no bracket, external antenna, cable). Transmits on 406.028 & 121.5MHz. Meets TSO-C126. FAA Approved TSO-91a & TSO-126, approved by COSPAS-SARSAT, meets FCC requirements under Part 87.  Now, may be packed in or go along with many of our FAA TSO life rafts.','',111),(38,2,'Kit Estándar / FAR 91:','•pabellón con el mástil inflable •envase del equipo •bandera de señal •2 - linterna de la célula con las baterías •3 llamaradas de señal •kit de primeros auxilios •kit de reparación de la balsa •marcador del tinte del mar •espejo de la señal •raciones del alimento •raciones del agua •silbido de la señal','',7),(38,1,'Standard Kit / FAR 91:','•canopy w/inflatable mast \r\n•equipment container \r\n•signal flag \r\n•2-cell flashlight w/batteries \r\n•3 signal flares \r\n•first aid kit \r\n•raft repair kit \r\n•sea dye marker \r\n•signal mirror \r\n•food rations \r\n•water rations \r\n•signal whistle','',37),(39,2,'Kit Estandar Mas / FAR 121','•pabellón con el mástil inflable •envase del equipo bandera de señal •3 llamaradas de señal •2 - linterna de la célula con las baterías •kit de primeros auxilios •kit de reparación de la balsa •cuchillo para uso general •manual de la supervivencia •marcadores del tinte del mar •espejo de la señal •raciones del alimento •raciones del agua •esponja •silbido de la señal','',4),(39,1,'Standard Plus Kit / FAR 121','•canopy w/inflatable mast \r\n•equipment container \r\nsignal flag \r\n•3 signal flares \r\n•2-cell flashlight w/batteries \r\n •first aid kit \r\n•raft repair kit \r\n•utility knife \r\n•survival manual \r\n•sea dye markers \r\n •signal mirror \r\n•food rations \r\n•water rations \r\n•sponge \r\n•signal whistle','',23),(40,2,'De Lujo / FAR 135','•pabellón con el mástil inflable •compás magnético •envase del equipo •8 - pinta •bandera de señal •3 llamaradas de señal •2 - linterna de la célula con las baterías •kit de primeros auxilios •kit de la pesca •kit de reparación de la balsa •cuchillo para uso general •75 - pie que conserva la línea •manual de la supervivencia •marcadores del tinte del mar •espejo de la señal •2 paletas •raciones del alimento •reflector del radar •esponja •silbido de la señal','',7),(40,1,'Deluxe / FAR 135','•canopy w/inflatable mast \r\n•magnetic compass \r\n•equipment container \r\n•8-pint desalter(s) \r\n•signal flag \r\n•3 signal flares \r\n•2-cell flashlight w/batteries \r\n•first aid kit \r\n•fishing kit \r\n•raft repair kit \r\n•utility knife \r\n•75-foot retaining line \r\n•survival manual \r\n•sea dye markers \r\n•signal mirror \r\n•2 paddles \r\n•food rations \r\n•radar reflector \r\n•sponge \r\n•signal whistle','',34),(52,2,'Kit de Supervivencia de lujo','El kit incluye el siguiente: Alimento y agua: 12 cajas de cajas de agua de Blox del Aqua - dos veces la cantidad de agua como surtidores principales y cada caja tiene un período de validez de 5 años barras del alimento de 12 - 400 calorías (4800 calorías) - fuente de 3 días de alimento con una vida útil de cinco años para 2 personas 20 tabletas de la purificación del agua - cada tableta purifica 1 litro de agua Luz y comunicación: Radio de Am/Fm con los auriculares y las baterías Linterna recargable del apretón - linterna de 3 LED que genera y almacena energía exprimiendo la manija (NINGUNAS BATERÍAS NECESARIAS) Vela de la emergencia de 36 horas - puede también ser utilizado como estufa Ponga verde el palillo del resplandor de la emergencia - dura por 12 horas silbido de la supervivencia 5 in-1 - silbido chillón ruidoso (recorridos sobre 1 milla) que contiene un arrancador del pedernal, un espejo de la señal, un compás, y un acollador Caja de 50 fósforos impermeables Alumbrador del estilo del Bic Abrigo y calor: 2 sacos de dormir de la supervivencia de la emergencia - recomendados sobre \" común; blankets\" del espacio; calentadores del cuerpo de 2 - 16-20 horas - caliente para arriba en minutos con una temperatura media de 130 grados. tienda del tubo 2-Person con la cuerda 2 ponchos de la emergencia con la capilla Herramientas: Cuchillo de 16 funciones Guantes de trabajo punteados palma 2 - Máscaras de polvo del respirador N95 - NIOSH aprobado 50 pies de la cuerda de nylon Higiene y saneamiento: 2 - 24 kits de lujo de la higiene del pedazo - cepillo de dientes, crema dental, 9 wetnaps, barra del jabón, champú y acondicionador, selección de la seda dental, mano y loción del cuerpo, gel del desodorisante, maquinilla de afeitar gemela de la lámina, 5\" de .34 onza de .25 onza; peine negro, 4 maxipads, paquete de la crema de afeitar, y washcloth. 6 paquetes del tejido del bolsillo del tempo Primeros auxilios: Kit de primeros auxilios del Portable de 42 pedazos - contiene 42 pedazos - 10 vendajes del punto, 10 tiras del joven escarpado, 5 del medio escarpado, 5 escarpadas, 2 tiras del anti-bacteriano, 3 claras, 2 tiras de la tela, 1 grande adicional, 2 cojines del alcohol, y 2 cojines de gasa Kit del esencial de los primeros auxilios del guarda - 1 preparación del trauma (5\" x9\"), 3 paquetes de la loción de la protección solar, 1 cojín de la preparación de la relevación de la picadura, 1 paquete poner crema de la quemadura, 4 tabletas de No-Aspirin, 4 tabletas antiácidas, 4 tabletas del ibuprofen, 1 paquete del ungüento del labio, 1 paquete antibiótico del ungüento, 1 par de guantes del vinilo (no látex), 2 tablillas del dedo, 10 aplicadores de la extremidad del algodón, 1 rodillo de cinta de los primeros auxilios, 1 rodillo de apósito de gasa, y una guía de la instrucción de los primeros auxilios Otro: Libreta Lápiz Cubierta de las tarjetas que juegan para la hospitalidad Bolso inútil infeccioso','',10),(41,2,'Juego de Inmersión','Mitón digitado tres para guardar su calentador de los dedos. *Note: Los juegos no se deben poner si en la casa de la rueda sino atar completamente alrededor de la cintura. Esto es una precaución para prevenir la colocación de trampas en la casa de la rueda. Dos tirones de la lengüeta de la cremallera en la cremallera. Cada uno localizada en la parte superior e inferior de la cremallera. Esto redujo en su tiempo que ponía permitiendo que la cremallera sea tirada derecho para arriba. Piernas anchas a permitir aprisa el poner. Le da la capacidad de poner con los zapatos o los cargadores encendido. Correas del tobillo a ayudar en caminar. Válvulas del dedo del pie que purgan el agua muy rápidamente. Si su juego se daña o se pone en el agua será necesario salir el agua de su juego antes de que usted pueda conseguir en una balsa salvavidas, a bordo otro recipiente o en la playa. Estas válvulas permitirán que el agua purgue muy rápidamente. También lanzan el aire atrapado sobre entrar en el agua. El sello de cara es suave y flexible haciéndola cómoda para usar. Alto anillo del jinete. Guarde más de su cuerpo superior entero fuera del agua. Mueva hacia atrás las correas guardan el anillo en el lugar. Una cinta más reflexiva en juego que requerido. Los juegos son tamaño verdadero. Intente por favor cualquier juego encendido antes de que usted compre. Bolso que lleva robusto con dos manijas','',5),(41,1,'Immersion Suit','•Three fingered mitt to keep your fingers warmer.    *Note:  Suits should not be fully donned if in the wheel house but tied around the waist.  This is a precaution to prevent entrapment in the wheel house. \r\n•Two zipper tab pulls on zipper.  Each located at top and bottom of zipper.  This cuts down on your donning time by allowing the zipper to be pulled straight up. \r\n•Wide legs to allow quick donning.  Gives you the ability to don with shoes or boots on.  Ankle straps to aid in walking. \r\n•Toe valves that purge water very fast.  If your suit should be damaged or donned in the water it will be necessary to get the water out of your suit before you can get into a life raft, onboard another vessel or on the beach.  These valves will allow the water to purge very quickly.  They also release trapped air upon entering the water. \r\n•Face Seal is soft and flexible making it comfortable to wear. \r\n•High rider ring.  Keep more of your whole upper body out of the water. \r\n•Back straps keep the ring in place. \r\n•More Reflective tape on suit than required. \r\n•Suits are true size.  Please try any suit on before you buy. \r\n•Sturdy carrying bag with two handles','',27),(43,2,'Chaleco de Vida (XF-35)','Fabricado con los materiales más de alta calidad que hacen frente o que exceden a especificaciones reguladoras. Fabricado con proceso del sellado caliente y consiste en dos compartimientos idénticos que apoyen un adulto o a un niño en la posición vertical. Diseñó guardar la cara de sumergirse en el agua. Contiene los sistemas orales y del CO2 de la inflación para la protección doble. El tipo chaleco de la línea aérea contiene un arnés del rápido-poner para la comodidad y la conveniencia. Viene empaquetado en un bolso polivinílico ignífugo protector. FAA C13 aprobó y FAA-TSO C85 aprobó la luz activada agua del localizador. Contiene las células dobles para la seguridad agregada. Chaleco hecho de nilón revestido del uretano ignífugo. Fácil identificar amarillo internacional en color. Opciones disponibles: limpie el silbido, espejo, marcador del tinte del mar. Flotabilidad: 38 libras.','',9),(43,1,'Life Vest (XF-35)','New! 5-Year Interval of Inspection (Packed in Standard Polybag)\r\n\r\nLightest Twin Cell Vest on the Market!\r\n\r\n\r\n\r\n\r\n\r\n• Inflated Buoyancy: 35 lbs. (150 Newtons) minimum \r\n• Inflated Volume: 970 cu. in. (16 liters) minimum \r\n• Approvals: USA FAA TSO-C13f; German LBA Approval No. 40.321/33; United Kingdom CAA Approval No. AR01445 \r\n• Category of Preserver: Adult/Child Combination \r\n• Weight of wearer: 35 lbs. (15.91kg) and above \r\n• Inflatable Buoyancy Cells: 2 Independent Cells \r\n• Material: Urethane Coated Nylon, Flame Retardant \r\n• Construction: RF Heat Sealed Seams \r\n• Inflation System:Manual CO2 Inflator and an Oral Inflation Tube in each Buoyancy Cell. \r\n• Color: Passenger Yellow or Crew Molten Orange \r\n• Temperature: Functional Range: -40 to 140 oF (-40 to 60 oC) \r\n• Storage Range: 0 to 120 oF (-17.8 to 48.9 oC) \r\n• Humidity: Functional Range: Up to 95% Relative Humidity; Storage Range: Up to 70% Relative Humidity \r\n• Altitude: -2000 to 45,000 feet above sea level \r\n• CO2 Gas Charge: 2 x 0.035 lbs. (2 x 16 grams) \r\n• Survivor Locator Light: Water-activated. TSO-C85 Approved. \r\n• Service Life: Indefinite if unit continues to pass periodic maintenance inspection. \r\n• Frequency of Inspection: Every 5 years.','',392),(44,2,'Del Fabricante del Agua  \"Survivor 06\"','Tome al sobreviviente junto con usted y olvide sus preocupaciones del agua dulce. Deriva en el mar abierto usado para crear el dilema histórico: agua, agua, por todas partes, pero no una gota a beber. That\' s cambiado todo. Ahora usted puede producir el agua potable fresca con el Survivor-06, una innovación revolucionaria en la purificación del agua. Y usted puede finalmente parar el preocuparse del agua dulce para las emergencias. Los desalinators del sobreviviente son los primeros de su clase. They\' con referencia a la única ósmosis reversa manual (RO) en productos químicos de la agua y de la grande-prueba de mar o condiciones atmosféricas perfectas. Usted consigue el agua dulce mientras usted bombee. Ningunas baterías, generadores, o alternadores cualquiera. Cosechadoras tecnología de la ósmosis reversa de la bomba de mano Survivor-06 y de la recuperación de energía para hacer el agua pura, potable del agua dulce de la sal, salobre o contaminada. En cerca de diez minutos, usted puede hacer una taza del agua con virtualmente todas las sales del mar y otros contaminantes quitados. Su diseño simple más tecnología de la recuperación de energía hace Survivor-06 cómodo para utilizar por largos periodos del tiempo. Y su tamaño ultra-compacto hace el Survivor-06 fácil funcionar y almacenar en un valise del kit o de la balsa salvavidas de supervivencia de la emergencia.','',10),(44,1,'Watermaker \"Survivor 06\"','<strong>Take the Survivor along with you and forget your fresh water worries.</strong>\r\n<br /><br />\r\nDrifting on the open sea used to create the age-old dilemma:  water, water, everywhere, but not a drop to drink.  That\'s all changed.  Now you can produce fresh drinking water with the Survivor-06, a revolutionary innovation in water purification.  And you can finally quit worrying about fresh water for emergencies.\r\n<br /><br />\r\nSurvivor desalinators are the first of their kind.  They\'re the only manually-operated reverse osmosis (RO) in sea water and great-tasting chemicals or perfect weather conditions.  You get fresh water as long as you pump.  No batteries, generators, or alternators either.\r\n<br /><br />\r\nSurvivor-06 hand pump combines reverse osmosis and energy recovery technology to make pure, drinkable water from salt, brackish or contaminated fresh water.  In about ten minutes, you can make a cup of water with virtually all sea salts and other contaminants removed.\r\n<br /><br />\r\nIts simple design plus energy recovery technology  make Survivor-06 comfortable to use for long periods of time.  And its ultra-compact size make the Survivor-06 easy to operate and store in an emergency survival kit or life raft valise.\r\n<br /><br />\r\n<strong>SPECIFICATIONS: </strong>\r\nDry Weight: 2.5 lbs. 1.1 Kg.) \r\nRate of Water Purification: 1 cup/13 minutes (.24 liters/23 minutes) \r\nHeight: 5\" (13 cm) \r\nLength: 8\" (20 cm) \r\nWidth: 2.5\" (6 cm) \r\nMaximum Suction Height: 10\" (300 cm)\r\nFeed Temperature: 33 F to 120 F (1 C to 48.5 C) \r\nMinimum Salt Rejection: 98%','',73),(45,2,'AquaLink 406','AquaLink (#2882) faro de localizador personal de 406 megaciclos GPS con la colocación del GPS, una señal de gran alcance de 406 megaciclos y la capacidad autoguiada hacia el blanco de 121.5 JHz. Éste es el EPIRB último y más grande en el mercado hoy para it\' ¡tamaño y precio de s! (Mismo acuerdo y capaz de ser atado encendido a la manija de nuestras balsas salvavidas)','',5),(45,1,'AquaLink 406','AquaLink (#2882) 406 MHz GPS Personal Locator Beacon with GPS positioning, a powerful 406 MHz signal and 121.5 JHz homing capability. This is Latest and greatest EPIRB on the market today for it\'s size and price!  (Very compact and able to be tied on to the handle of our life rafts)','',57),(46,2,'Agua potable purificada emergencia','Agua potable purificada emergencia <br><br>\r\n\r\nAprobaciones: <br>\r\nNo 160.026/65/0 de USCG TC 168.005.011 <br><br>\r\n\r\nContenido: <br>\r\n125 ml/4.22 onzas líquidas <br><br>\r\n\r\nHay 96 bolsas por caso.','',14),(46,1,'Purified Drinking Water','Emergency Purified Drinking Water<br><br>\r\n\r\nApprovals: <br>\r\nUSCG No 160.026/65/0 <br>\r\nTC 168.005.011 <br><br>\r\n\r\nContents: <br>\r\n125 ml / 4.22 fl oz <br><br>\r\n\r\n96 pouches per case.','',120),(47,2,'Paquete del alimento de la supervivencia','Paquete del alimento de la supervivencia el SOS<br><br> \r\nAprobaciones: <br>No 160.046/24/0 de USCG <br><br>\r\nContenido: Cada paquete contiene 6 barras fortificadas del alimento que proporcionan 2400 Kcal (10.000 KJ)<br><br> Peso neto: 16.7 onzas (g) cada paquete (475g).<br><br> \r\nHay 40 paquetes por caso.','',7),(47,1,'SOS Survival Food Pack','SOS Survival Food Pack <br><br>\r\n\r\nApprovals: <br>\r\nUSCG No 160.046/24/0<br><br>\r\n\r\nContents: <br><br>\r\nEach packet contains 6 fortified food bars providing 2400 Kcal (10,000 KJ)<br>\r\nNet Wt: 16.7 oz (475 g) each packet.<br>\r\nThere are 40 packets per case.','',76),(48,2,'Ración del alimento de la emergencia de 3682 Kcal','Ración del alimento de la emergencia de 3682 Kcal <br><br>Aprobaciones: <br>USCG ninguÌn 160.046.36/0 No 168.006.010 del TC <br><br>Contenido: Cada paquete contiene 9 barras fortificadas del alimento que proporcionan 3682 pesos netos de Kcal (15.460 KJ): 1.60 libras (756 g) por el paquete. <br><br>20 paquetes por caso.','',10),(48,1,'3682 Kcal Emergency Food Ration','3682 Kcal Emergency Food Ration<br><br>\r\nApprovals:<br>\r\nUSCG No 160.046.36/0<br>\r\nTC No 168.006.010 <br><br>\r\nContents: <br>\r\nEach packet contains 9 fortified food bars providing 3682 Kcal (15,460 KJ)<br>\r\nNet Wt: 1.60 lbs (756 g) per packet.<br>\r\n\r\n20 packets per case.','',110),(49,2,'Nueva barra de energía del milenio','Nueva barra de energía del milenio<br><br>  Disponible en 9 sabores naturales: Albaricoque, arándano, cereza, Coconuut, limón, naranja, frambuesa, fruta tropical, vainilla. <br><br> Cada paquete contiene 1 barra fortificada del alimento que proporciona 409 Kcal (1720 KJ) Peso neto: 2.95 onzas (84 g) cada packet.<br><br> 144 packet por caso.','',7),(49,1,'New Millenium Energy Bar','New Millenium Energy Bar<br><br>  \r\n\r\nAvailable in 9 natural flavors: Apricot, Blueberry, Cherry, Coconuut, Lemon, Orange, Raspberry, Tropical Fruit, Vanilla.<br><br>\r\n\r\nEach packet contains 1 fortified food bar providing 409 Kcal (1720 KJ)<br><br>\r\n\r\nNet Wt: 2.95 oz (84 g) each packet.<br><br>144 packet per case.','',52),(50,2,'Palillos ligeros','Palillos ligeros<br> palillos ligeros 12-Hour disponibles en verde, amarillo, naranja y rojo.<br> <br>Cantidad del caso: 500 <br>Peso del caso: 28 LIBRAS','',4),(50,1,'Light Sticks','Light Sticks<br>\r\n12-Hour light sticks available in green, yellow, orange and red.<br><br>\r\n\r\nCase Quantity: 500<br>\r\nCase Weight: 28 LBS','',20),(51,2,'Mantas térmicas','Mantas térmicas<br><br>Tamaño: 52\" x 84\" <br><br>Cantidad del caso: 250<br> Peso del caso: 28 LIBRAS','',5),(51,1,'Thermal Blankets','Thermal Blankets <br><br>Size: 52\" x 84\" <br><br>\r\nCase Quantity: 250 <br>\r\nCase Weight: 28 LBS','',23),(52,1,'Deluxe Survival Kit','The kit includes the following:<br>\r\n<br>\r\n<b>Food and Water:</b><br>\r\n6 Boxes of Aqua Blox Water Boxes -<i> twice the amount of water as leading \r\nsuppliers and has a 5 year shelf-life</i><br>\r\n6 - 400 Calorie Food Bars -<i> 5 year shelf-life, 2400 calories total</i><br>\r\n10 Water Purification Tablets - <i>each tablet purifies 1 liter of water</i></p>\r\n<p><b>Light and Communication:</b><br>\r\nAm/Fm Radio with Headphones and Batteries<br>\r\nRechargeable Squeeze Flashlight - <i>3 LED flashlight which generates and stores \r\npower by squeezing the handle (NO BATTERIES NEEDED)</i><br>\r\n30 Hour Emergency Candle - <i>can also be used as a stove</i> <br>\r\nGreen Emergency Glow Stick <i>- lasts for 24 hours </i><br>\r\n5-in-1 Survival Whistle - <i>compass, signal mirror, flint starter, waterproof \r\ncontainer, lanyard, and shrill whistle</i><br>\r\nBox of 50 Waterproof Matches <br>\r\nBic Style Lighter </p>\r\n<p><b>Shelter and Warmth:</b><br>\r\nEmergency Survival Sleeping Bag - <i>Recommended over common \"space blankets\"</i><br>\r\n16 Hour Body Warmer <br>\r\n2-Person Tube Tent with Rope <br>\r\nEmergency Poncho with Hood </p>\r\n<p><b>Tools:</b><br>\r\n16 Function Knife<br>\r\nLeather Palm Working Gloves<br>\r\nN95 Respirator Dust Mask <br>\r\n60 Feet of Nylon Rope</p>\r\n<p><b>Hygiene and Sanitation:</b><br>\r\n24 Piece Deluxe Hygiene Kit<i> - toothbrush, toothpaste, 9 wetnaps, bar of soap, \r\n.34 oz shampoo and conditioner, dental floss pick, .25 oz hand and body lotion, \r\ndeodorant gel, twin blade razor, 5\" black comb, 4 maxipads, shaving cream \r\npacket, and washcloth.</i><br>\r\n3 Tempo Pocket Tissue Packs </p>\r\n<p><b>First Aid:</b><br>\r\n<u>42 Piece Bandage First Aid Kit</u> - <i>Contains 42 Pieces - 10 Spot \r\nBandages, 10 Sheer Junior, 5 Sheer Medium, 5 Sheer Strips, 2 Antibacterial, \r\n3Clear Strips, 2 Fabric Strips, 1 Extra Large, 2 Alcohol Pads, and 2 Gauze Pads&\r\n</i><br>\r\n<u>Guardian First Aid Essentials Kit</u> - <i>1 Trauma Dressing (5\"x9\"), 3 \r\nSunscreen Lotion Packs, 1 Sting Relief Prep Pad, 1 Burn Cream Pack, 4 \r\nNon-Aspirin Tablets, 4 Antacid Tablets, 4 Ibuprofen Tablets, 1 Lip Ointment \r\nPack, 1 Antibiotic Ointment Pack, 1 Pair of Vinyl (non latex) Gloves, 2 Finger \r\nSplints, 10 Cotton Tip Applicators, 1 Roll of First Aid Tape, 1 Roll of Gauze \r\nDressing, and a First Aid Instruction Guide</i><br>\r\n<br>\r\n<b>Other:<br>\r\n</b>Notepad<br>\r\nPencil<br>\r\nDeck of playing cards for entertainment<br>\r\nInfectious Waste Bag </p>','',32),(55,2,'Kit de Supervivencia de la Oficina de 5 Personas','(Todos los artículos se embalan con seguridad en nuestro 5 galones Cubo con la tapa del asiento de tocador) El kit incluye el siguiente: Alimento y agua: 5 cajas del Aqua Literz - equivalente a 30 paquetes de agua de la emergencia (5 litros) y cada caja tiene un período de validez de 5 años 5 - 2400 Barras del alimento de la caloría (12.000 calorías) - 30 barras individualmente envueltas con a vida útil de cinco años Agua 50 Tabletas de la purificación - cada tableta purifica 1 litro de agua & nbsp; Luz y comunicación: & nbsp; & nbsp; & nbsp; Dínamo Linterna de radio 4 en 1 - radio de AmFm, sirena, linterna de 3 LED, teléfono celular Cargador con el adaptador incluido (NUNCA NECESITA LAS BATERÍAS) Linterna recargable del apretón - linterna de 3 LED que genera y almacena energía exprimiendo la manija (NUNCA NECESITA LAS BATERÍAS) 30 horas Vela de la emergencia - puede también ser utilizado como estufa 5 - Verde El resplandor de la emergencia se pega - dura por 24 horas de & nbsp; 5 in-1 Silbido de la supervivencia - silbido chillón ruidoso (recorridos sobre 1 milla) que contiene a arrancador del pedernal, espejo de la señal, compás, y acollador Caja de 50 Fósforos impermeables & nbsp; Abrigo y calor: 5 Las mantas de la supervivencia de la emergencia - conserve sobre el 90% del calor del cuerpo de usuarios 2-Person Tienda del tubo con la cuerda 5 Ponchos de la emergencia con la capilla & nbsp; Herramientas: 10\' x 10\' Encerado azul 7-1/2& quot; Barra de palanca plana 16 Cuchillo de la función Cuero Guantes de trabajo de la palma Cinta del conducto - 2& quot; x 10 yardas 5 - Máscaras de polvo del respirador N95 - NIOSH aprobado & nbsp; Higiene y saneamiento: Bolsos del tocador con los productos químicos - lacrables, prueba del escape externa el bolso selló al bolso inútil interno que contenía la congelación inútil del biogel Higiene 5 Kits cepillo de dientes, crema dental, barra del jabón, y 9 trapos mojados Tempo 5 Paquetes del tejido del bolsillo Aire Ambientador & nbsp; Primero Ayuda: 2 - 42 Kits de primeros auxilios del Portable del pedazo - contiene 42 pedazos - 10 vendajes del punto, 10 joven escarpado, 5 medios escarpados, 5 tiras escarpadas, 2 anti-bacterianos, 3 tiras claras, 2 tiras de la tela, 1 grande adicional, 2 cojines del alcohol, y 2 cojines de gasa 2 Kits del esencial de los primeros auxilios del guarda - 1 preparación del trauma (5& quot; x9& quot;), 3 paquetes de la loción de la protección solar, 1 cojín de la preparación de la relevación de la picadura, 1 paquete poner crema de la quemadura, 4 tabletas de No-Aspirin, 4 tabletas antiácidas, 4 tabletas del ibuprofen, 1 paquete del ungüento del labio, 1 antibiótico Paquete del ungüento, 1 par de guantes del vinilo (no látex), 2 tablillas del dedo, algodón 10 Aplicadores de la extremidad, 1 rodillo de cinta de los primeros auxilios, 1 rodillo de apósito de gasa, y un primer Guía de la instrucción de la ayuda & nbsp; Otro: Cubierta de tarjetas que juegan para la hospitalidad & nbsp;','',5),(53,2,'Kiit de Supervivencia para los Niños','El kit incluye el siguiente: Alimento y agua: 6 cajas de cajas de agua de Blox del Aqua - dos veces la cantidad de agua como surtidores principales y cada caja tiene un período de validez de 5 años barras del alimento de 6 - 400 calorías (2400 calorías) - fuente de 3 días de alimento con una vida útil de cinco años para 1 persona 10 tabletas de la purificación del agua - cada tableta purifica 1 litro de agua Luz y comunicación: Linterna recargable del apretón - linterna de 3 LED que genera y almacena energía exprimiendo la manija (NINGUNAS BATERÍAS NECESARIAS) 3 palillos verdes del resplandor de la emergencia - dura por 12 horas por cada uno silbido de la supervivencia 5 in-1 - silbido chillón ruidoso (recorridos sobre 1 milla) que contiene un arrancador del pedernal, un espejo de la señal, un compás, y un acollador Abrigo y calor: Manta polar del paño grueso y suave - esta manta caliente es 130 cm x 170 cm 16-20 calentador del cuerpo de la hora - caliente para arriba en minutos con una temperatura media de 130 grados. Poncho de la emergencia para los niños Herramientas: Guantes calientes del invierno Máscara de polvo del respirador N95 - NIOSH aprobó Higiene y saneamiento: Kit de la higiene - incluye el jabón, el cepillo de dientes, la crema dental, y 9 trapos mojados. 3 paquetes del tejido del bolsillo del tempo Primeros auxilios: Kit de primeros auxilios del Portable de 42 pedazos - contiene 42 pedazos - 10 vendajes del punto, 10 tiras del joven escarpado, 5 del medio escarpado, 5 escarpadas, 2 tiras del anti-bacteriano, 3 claras, 2 tiras de la tela, 1 grande adicional, 2 cojines del alcohol, y 2 cojines de gasa Hospitalidad: Libro de colorante de la actividad con 8 creyones - contiene cuadros para colorear y actividades para ayudar a guardar un child\' la mente de s ocupó Juguetes de los niños - cuerda de salto, paleta con la bola, y un sistema del jax','',10),(53,1,'Children\'s Survival Kit','The kit includes the \r\nfollowing:<br>\r\n<br>\r\n<b>Food and Water:</b><br>\r\n6 Boxes of Aqua Blox Water Boxes -<i> twice the amount of water \r\nas leading suppliers</i><br>\r\n12 - 200 Calorie Food Bars (2400 calories)<br>\r\n10 Water Purification Tablets - <i>each tablet purifies 1 liter \r\nof water</i></p>\r\n<p><b>Light and Communication:</b><br>\r\nRechargeable Squeeze Flashlight - <i>contains lithium batteries \r\nwhich last up to 30 hours and also is able to generate power through squeezing</i><br>\r\n5-in-1 Survival Whistle<br>\r\n3 Green Emergency Glow Sticks -<i> lasts for 24 hours each</i>\r\n</p>\r\n<p><b>Shelter and Warmth:</b><br>\r\nPolar Fleece Blanket - <i>this warm blanket is 130 cm x 170 cm</i><br>\r\nEmergency Poncho for Children<br>\r\n16-20 Hour Body Warmer - <i>heat up in minutes with an average \r\ntemperature of 130 degrees.</i></p>\r\n<p><b>\r\nTools:</b><br>\r\nWarm Winter Gloves<br>\r\nN95 Respirator Dust Mask - <i>NIOSH approved</i><br>\r\n<br>\r\n<b>Hygiene and Sanitation:</b><br>\r\nHygiene Kit -<i> Includes soap, \r\ntoothbrush, toothpaste, and 9 wet wipes.</i><br>\r\n3 Tempo Pocket Tissue Packs </p>\r\n<p><b>First Aid:</b><br>\r\n42 Piece Pocket First Aid Kit - <i>contains 42 pieces - 10 spot \r\nbandages, 10 sheer junior,5 sheer medium, 5 sheer strips, 2 antibacterial, 3 \r\nclear strips, 2 fabric strips, 1 extra large, 2 alcohol pads, and 2 gauze pads</i><br>\r\n<br>\r\n<b>Entertainment:</b><br>\r\nActivity Coloring Book with Crayons - <i>contains pictures to \r\ncolor and activities to help keep a child\'s \r\nmind occupied<br>\r\n</i>Children\'s Toys - <i>jump rope, paddle with ball, and \r\na jax set </i></p>\r\n<br>','',19),(54,2,'Kit de lujo de 2 Personas','El kit incluye el siguiente: Alimento y agua: 12 cajas de cajas de agua de Blox del Aqua - dos veces la cantidad del agua como llevando los surtidores y tienen un período de validez de 5 años barras del alimento de 12 - 400 calorías - período de validez de 5 años (4800 calorías) 20 tabletas de la purificación del agua - cada tableta purifica 1 litro de agua Luz y comunicación: Radio de Am/Fm con los auriculares y las baterías Linterna recargable del apretón - linterna de 3 LED que genera y almacena energía exprimiendo la manija (NINGUNAS BATERÍAS NECESARIAS) Vela de la emergencia de 30 horas - puede también ser utilizado como estufa Ponga verde el palillo del resplandor de la emergencia - dura por 24 horas silbido de la supervivencia 5 in-1 - compás, espejo de la señal, arrancador del pedernal, impermeable envase, acollador, y silbido chillón Caja de 50 fósforos impermeables Alumbrador del estilo del Bic Abrigo y calor: 2 sacos de dormir de la supervivencia de la emergencia - recomendados sobre & común; quot; blankets& del espacio; quot; calentadores del cuerpo de 2 - 16 horas tienda del tubo 2-Person con la cuerda 2 ponchos de la emergencia con la capilla Herramientas: Cuchillo de 16 funciones Guantes de trabajo de la palma de cuero 2 máscaras de polvo del respirador N95 60 pies de la cuerda de nylon Higiene y saneamiento: 2 - 24 kits de lujo de la higiene del pedazo - cepillo de dientes, crema dental, 9 wetnaps, barra del jabón, champú de .34 onza y acondicionador, selección de la seda dental, mano y loción del cuerpo, gel del desodorisante, maquinilla de afeitar gemela de .25 onza de la lámina, 5& quot; peine negro, 4 maxipads, paquete de la crema de afeitar, y washcloth. 6 paquetes del tejido del bolsillo del tempo Primeros auxilios: Kit de primeros auxilios del vendaje de 42 pedazos - contiene 42 pedazos - punto 10 Vendajes, 10 jóvenes escarpados, 5 medios escarpados, 5 tiras escarpadas, anti-bacteriano 2, tiras 3Clear, 2 tiras de la tela, 1 grande adicional, 2 cojines del alcohol, y 2 gasa Pads& amperio; Kit del esencial de los primeros auxilios del guarda - 1 preparación del trauma (5& quot; x9& quot;), 3 Paquetes de la loción de la protección solar, 1 cojín de la preparación de la relevación de la picadura, 1 paquete poner crema de la quemadura, 4 Tabletas de No-Aspirin, 4 tabletas antiácidas, 4 tabletas del ibuprofen, 1 ungüento del labio Paquete, 1 paquete antibiótico del ungüento, 1 par de guantes del vinilo (no látex), dedo 2 Tablillas, 10 aplicadores de la extremidad del algodón, 1 rodillo de cinta de los primeros auxilios, 1 rodillo de gasa Vestido, y una guía de la instrucción de los primeros auxilios Otro: Libreta Lápiz Cubierta de las tarjetas que juegan para la hospitalidad Bolso inútil infeccioso','',16),(54,1,'2 Person Deluxe Kit','The kit includes the following:<br>\r\n<br>\r\n<b>Food and Water:</b><br>\r\n12 Boxes of Aqua Blox Water Boxes -<i> twice the amount of water as leading \r\nsuppliers and has a 5 year shelf-life</i><br>\r\n12 - 400 Calorie Food Bars -<i> 5 year shelf-life (4800 Calories)</i><br>\r\n20 Water Purification Tablets - <i>each tablet purifies 1 liter of water</i></p>\r\n<p><b>Light and Communication:</b><br>\r\nAm/Fm Radio with Headphones and Batteries<br>\r\nRechargeable Squeeze Flashlight - <i>3 LED flashlight which generates and stores \r\npower by squeezing the handle (NO BATTERIES NEEDED)</i><br>\r\n30 Hour Emergency Candle - <i>can also be used as a stove</i> <br>\r\nGreen Emergency Glow Stick <i>- lasts for 24 hours </i><br>\r\n5-in-1 Survival Whistle - <i>compass, signal mirror, flint starter, waterproof \r\ncontainer, lanyard, and shrill whistle</i><br>\r\nBox of 50 Waterproof Matches <br>\r\nBic Style Lighter </p>\r\n<p><b>Shelter and Warmth:</b><br>\r\n2 Emergency Survival Sleeping Bags - <i>Recommended over common \"space blankets\"</i><br>\r\n2 - 16 Hour Body Warmers <br>\r\n2-Person Tube Tent with Rope <br>\r\n2 Emergency Ponchos with Hood </p>\r\n<p><b>Tools:</b><br>\r\n16 Function Knife<br>\r\nLeather Palm Working Gloves<br>\r\n2 N95 Respirator Dust Masks <br>\r\n60 Feet of Nylon Rope</p>\r\n<p><b>Hygiene and Sanitation:<br>\r\n</b>2 - 24 Piece Deluxe Hygiene Kits<b> </b>- \r\ntoothbrush, toothpaste, 9 wetnaps, bar of soap, .34 oz shampoo and conditioner, \r\ndental floss pick, .25 oz hand and body lotion, deodorant gel, twin blade razor, \r\n5\" black comb, 4 maxipads, shaving cream packet, and washcloth.</span><br>\r\n6 Tempo Pocket Tissue Packs </p>\r\n<p><b>First Aid:</b><br>\r\n<u>42 Piece Bandage First Aid Kit</u> - <i>Contains 42 Pieces - 10 Spot \r\nBandages, 10 Sheer Junior, 5 Sheer Medium, 5 Sheer Strips, 2 Antibacterial, \r\n3Clear Strips, 2 Fabric Strips, 1 Extra Large, 2 Alcohol Pads, and 2 Gauze Pads&\r\n</i><br>\r\n<u>Guardian First Aid Essentials Kit</u> - <i>1 Trauma Dressing (5\"x9\"), 3 \r\nSunscreen Lotion Packs, 1 Sting Relief Prep Pad, 1 Burn Cream Pack, 4 \r\nNon-Aspirin Tablets, 4 Antacid Tablets, 4 Ibuprofen Tablets, 1 Lip Ointment \r\nPack, 1 Antibiotic Ointment Pack, 1 Pair of Vinyl (non latex) Gloves, 2 Finger \r\nSplints, 10 Cotton Tip Applicators, 1 Roll of First Aid Tape, 1 Roll of Gauze \r\nDressing, and a First Aid Instruction Guide</i><br>\r\n<br>\r\n<b>Other:<br>\r\n</b>Notepad<br>\r\nPencil<br>\r\nDeck of playing cards for entertainment<br>\r\nInfectious Waste Bag </p>','',16),(55,1,'5 Person Office Survival Kit','The kit includes the following:<br><br>\r\n<b>Food \r\nand Water:</b><br>\r\n5 Boxes \r\nof Aqua Literz - <i>Equivalent to 30 packets of emergency water (5 Liters) and \r\neach box has a 5 year shelf-life</i><br>\r\n5 - 2400 \r\nCalorie Food Bars (12,000 Calories) -<i> 30 Individually wrapped bars with a \r\n5-year shelf life</i><br>\r\n50 Water \r\nPurification Tablets - <i>each tablet purifies 1 liter of water</i><br>\r\n <br>\r\n<b>Light \r\nand Communication:    </b><br>\r\nDynamo \r\nRadio Flashlight 4 in 1 - <i>AmFm Radio, Siren, 3 LED Flashlight, Cell-phone \r\nCharger with adapter included (NEVER NEEDS BATTERIES)</i><br>\r\n\r\nRechargeable Squeeze Flashlight - <i>3 LED flashlight which generates and stores \r\npower by squeezing the handle (NEVER NEEDS BATTERIES)</i><br>\r\n30 Hour \r\nEmergency Candle -<i> can also be used as a stove</i><br>\r\n5 - Green \r\nEmergency Glow Sticks -<i> lasts for 24 hours  </i><br>\r\n5-in-1 \r\nSurvival Whistle - <i>loud shrill whistle (travels over 1 mile) containing a \r\nflint starter, signal mirror, compass, and lanyard</i><br>\r\nBox of 50 \r\nWaterproof Matches<br>\r\n <br>\r\n<b>\r\nShelter and Warmth:</b><br>\r\n5 \r\nEmergency Survival Blankets - <i>Retain over 90% of the users body heat</i><br>\r\n2-Person \r\nTube Tent with Rope<br>\r\n5 \r\nEmergency Ponchos with Hood<br>\r\n <br>\r\n<b>Tools:</b><br>\r\n10\' x 10\' \r\nBlue Tarp<br>\r\n7-1/2\" \r\nFlat Pry Bar<br>\r\n16 \r\nFunction Knife<br>\r\nLeather \r\nPalm Working Gloves<br>\r\nDuct Tape \r\n- 2\" x 10 yards<br>\r\n5 - \r\nN95 Respirator Dust Masks -<i> NIOSH approved</i><br>\r\n <br>\r\n<b>\r\nHygiene and Sanitation:</b><br>\r\n\r\nToilet Bags with Chemicals -<i> Sealable, leak proof outer \r\nbag sealed to inner waste bag containing Bio-Gel waste gelation </i>\r\n<br>\r\n5 Hygiene \r\nKits- toothbrush, toothpaste, bar of soap, and 9 wet wipes<br>\r\n5 Tempo \r\nPocket Tissue Packs <br>\r\nAir \r\nFreshener <br>\r\n <br>\r\n<b>First \r\nAid:</b><br>\r\n2 - 42 \r\nPiece Portable First Aid Kits - <i>contains 42 pieces - 10 spot bandages, 10 \r\nsheer junior,5 sheer medium, 5 sheer strips, 2 antibacterial, 3 clear strips, 2 \r\nfabric strips, 1 extra large, 2 alcohol pads, and 2 gauze pads</i><br>\r\n2 \r\nGuardian First Aid Essentials Kits -<i> 1 Trauma Dressing (5\"x9\"), 3 Sunscreen \r\nLotion Packs, 1 Sting Relief Prep Pad, 1 Burn Cream Pack, 4 Non-Aspirin Tablets, \r\n4 Antacid Tablets, 4 Ibuprofen Tablets, 1 Lip Ointment Pack, 1 Antibiotic \r\nOintment Pack, 1 Pair of Vinyl (non latex) Gloves, 2 Finger Splints, 10 Cotton \r\nTip Applicators, 1 Roll of First Aid Tape, 1 Roll of Gauze Dressing, and a First \r\nAid Instruction Guide</i><br>\r\n <br>\r\n<b>Other:</b><br>\r\nDeck of \r\nplaying cards for entertainment<br>\r\n <br>(All items are packed securely in our 5 Gallon \r\nBucket with Toilet Seat Lid)<br>','',18),(58,2,'Bolso de Totalizador del Kit de Supervivencia para los Niños','Este kit de supervivencia compacto se embala cuidadosamente en un artículo bolso impermeable del refrigerador. Se diseña para los niños 11 años o más jovenes. El bolso rojo del refrigerador tiene el & de las palabras; quot; Supervivencia Kit& quot; en el frente, una correa de hombro ajustable, cuerdas del amarre en tapa, y una raya del reflector en la parte posterior. El kit incluye el siguiente: Alimento y agua: 3 cajas de cajas de agua de Blox del Aqua - dos veces cantidad de agua como surtidores principales barras del alimento de 12 - 200 calorías 10 tabletas de la purificación del agua - cada tableta purifica 1 litro de agua Luz y comunicación: Mini radio de la exploración con los auriculares y las baterías Linterna recargable del apretón - contiene las baterías de litio que las hasta 30 horas pasadas y también pueden generar energía con exprimir silbido de la supervivencia 5 in-1 Abrigo y calor: Saco de dormir de la supervivencia de la emergencia - recomendado sobre & común; quot; espacio blankets.& quot; Poncho de la emergencia para los niños Herramientas: Máscara de polvo del respirador N95 Higiene y saneamiento: 3 paquetes del tejido del bolsillo del tempo 3 trapos mojados para la higiene Primeros auxilios: Kit de primeros auxilios del bolsillo de 42 pedazos - contiene 42 pedazos - 10 manchan los vendajes, 10 jóvenes escarpados, 5 medios escarpados, 5 tiras escarpadas, 2 anti-bacteriano, 3 tiras claras, 2 tiras de la tela, 1 grande adicional, 2 cojines del alcohol, y 2 cojines de gasa Hospitalidad: Libro de colorante de la actividad con 8 creyones - contiene cuadros para colorear y actividades para ayudar a guardar a child\' mente de s ocupada','',3),(56,2,'Kit de Supervivencia de la Oficina de 10 personas','El kit incluye el siguiente: Alimento y agua: 10 cajas del Aqua Literz - equivalente a 30 paquetes de agua de la emergencia (5 litros) y cada caja tiene un período de validez de 5 años 10 - 2400 Barras del alimento de la caloría (12.000 calorías) - 30 barras individualmente envueltas con a vida útil de cinco años Agua 50 Tabletas de la purificación - cada tableta purifica 1 litro de agua & nbsp; Luz y comunicación: & nbsp; & nbsp; & nbsp; Dínamo Linterna de radio 4 en 1 - radio de AmFm, sirena, linterna de 3 LED, teléfono celular Cargador con el adaptador incluido (NUNCA NECESITA LAS BATERÍAS) Linterna recargable del apretón - linterna de 3 LED que genera y almacena energía exprimiendo la manija (NUNCA NECESITA LAS BATERÍAS) 30 horas Vela de la emergencia - puede también ser utilizado como estufa 5 - Verde El resplandor de la emergencia se pega - dura por 24 horas de & nbsp; 5 in-1 Silbido de la supervivencia - silbido chillón ruidoso (recorridos sobre 1 milla) que contiene a arrancador del pedernal, espejo de la señal, compás, y acollador Caja de 50 Fósforos impermeables & nbsp; Abrigo y calor: 10 Las mantas de la supervivencia de la emergencia - conserve sobre el 90% del calor del cuerpo de usuarios 2-Person Tienda del tubo con la cuerda 10 Ponchos de la emergencia con la capilla & nbsp; Herramientas: 10\' x 10\' Encerado azul 7-1/2& quot; Barra de palanca plana 16 Cuchillo de la función Cuero Guantes de trabajo de la palma Cinta del conducto - 2& quot; x 10 yardas 10 - Máscaras de polvo del respirador N95 - NIOSH aprobado & nbsp; Higiene y saneamiento: Bolsos del tocador con los productos químicos - lacrables, prueba del escape externa el bolso selló al bolso inútil interno que contenía la congelación inútil del biogel 10 Kits cepillo de dientes, crema dental, barra del jabón, y 9 trapos mojados de la higiene Tempo 10 Paquetes del tejido del bolsillo Aire Ambientador & nbsp; Primero Ayuda: 2 - 42 Kits de primeros auxilios del Portable del pedazo - contiene 42 pedazos - 10 vendajes del punto, 10 joven escarpado, 5 medios escarpados, 5 tiras escarpadas, 2 anti-bacterianos, 3 tiras claras, 2 tiras de la tela, 1 grande adicional, 2 cojines del alcohol, y 2 cojines de gasa 2 Kits del esencial de los primeros auxilios del guarda - 1 preparación del trauma (5& quot; x9& quot;), 3 paquetes de la loción de la protección solar, 1 cojín de la preparación de la relevación de la picadura, 1 paquete poner crema de la quemadura, 4 tabletas de No-Aspirin, 4 tabletas antiácidas, 4 tabletas del ibuprofen, 1 paquete del ungüento del labio, 1 antibiótico Paquete del ungüento, 1 par de guantes del vinilo (no látex), 2 tablillas del dedo, algodón 10 Aplicadores de la extremidad, 1 rodillo de cinta de los primeros auxilios, 1 rodillo de apósito de gasa, y un primer Guía de la instrucción de la ayuda & nbsp; Otro: 2 cubiertas de las tarjetas que juegan para la hospitalidad (Todos los artículos se embalan con seguridad en 1 de lujo Morral de los caminantes que contiene el espacio adicional disponible para sus artículos personales y cubo de 1 - 5 galones con la tapa del asiento de tocador)','',11),(56,1,'10 Person Office Survival Kit','The kit includes the following:<br><br>\r\n<b>Food \r\nand Water:</b><br>\r\n10 Boxes \r\nof Aqua Literz - <i>Equivalent to 30 packets of emergency water (5 Liters) and \r\neach box has a 5 year shelf-life</i><br>\r\n10 - 2400 \r\nCalorie Food Bars (12,000 Calories) -<i> 30 Individually wrapped bars with a \r\n5-year shelf life</i><br>\r\n50 Water \r\nPurification Tablets - <i>each tablet purifies 1 liter of water</i><br>\r\n <br>\r\n<b>Light \r\nand Communication:    </b><br>\r\nDynamo \r\nRadio Flashlight 4 in 1 - <i>AmFm Radio, Siren, 3 LED Flashlight, Cell-phone \r\nCharger with adapter included (NEVER NEEDS BATTERIES)</i><br>\r\n\r\nRechargeable Squeeze Flashlight - <i>3 LED flashlight which generates and stores \r\npower by squeezing the handle (NEVER NEEDS BATTERIES)</i><br>\r\n30 Hour \r\nEmergency Candle -<i> can also be used as a stove</i><br>\r\n5 - Green \r\nEmergency Glow Sticks -<i> lasts for 24 hours  </i><br>\r\n5-in-1 \r\nSurvival Whistle - <i>loud shrill whistle (travels over 1 mile) containing a \r\nflint starter, signal mirror, compass, and lanyard</i><br>\r\nBox of 50 \r\nWaterproof Matches<br>\r\n <br>\r\n<b>\r\nShelter and Warmth:</b><br>\r\n10 \r\nEmergency Survival Blankets - <i>Retain over 90% of the users body heat</i><br>\r\n2-Person \r\nTube Tent with Rope<br>\r\n10 \r\nEmergency Ponchos with Hood<br>\r\n <br>\r\n<b>Tools:</b><br>\r\n10\' x 10\' \r\nBlue Tarp<br>\r\n7-1/2\" \r\nFlat Pry Bar<br>\r\n16 \r\nFunction Knife<br>\r\nLeather \r\nPalm Working Gloves<br>\r\nDuct Tape \r\n- 2\" x 10 yards<br>\r\n10 \r\n- N95 Respirator Dust Masks -<i> NIOSH approved</i><br>\r\n <br>\r\n<b>\r\nHygiene and Sanitation:</b><br>\r\n\r\nToilet Bags with Chemicals -<i> Sealable, leak proof outer \r\nbag sealed to inner waste bag containing Bio-Gel waste gelation </i>\r\n<br>\r\n10 \r\nHygiene Kits- toothbrush, toothpaste, bar of soap, and 9 wet wipes<br>\r\n10 Tempo \r\nPocket Tissue Packs <br>\r\nAir \r\nFreshener <br>\r\n <br>\r\n<b>First \r\nAid:</b><br>\r\n2 - 42 \r\nPiece Portable First Aid Kits - <i>contains 42 pieces - 10 spot bandages, 10 \r\nsheer junior,5 sheer medium, 5 sheer strips, 2 antibacterial, 3 clear strips, 2 \r\nfabric strips, 1 extra large, 2 alcohol pads, and 2 gauze pads</i><br>\r\n2 \r\nGuardian First Aid Essentials Kits -<i> 1 Trauma Dressing (5\"x9\"), 3 Sunscreen \r\nLotion Packs, 1 Sting Relief Prep Pad, 1 Burn Cream Pack, 4 Non-Aspirin Tablets, \r\n4 Antacid Tablets, 4 Ibuprofen Tablets, 1 Lip Ointment Pack, 1 Antibiotic \r\nOintment Pack, 1 Pair of Vinyl (non latex) Gloves, 2 Finger Splints, 10 Cotton \r\nTip Applicators, 1 Roll of First Aid Tape, 1 Roll of Gauze Dressing, and a First \r\nAid Instruction Guide</i><br>\r\n <br>\r\n<b>Other:</b><br>\r\n2 Decks \r\nof playing cards for entertainment<br>\r\n(All items are packed securely in <b>1 Deluxe \r\nHikers Backpack</b> which contains extra space available for your personal items \r\nand <b>1 - 5 Gallon Bucket with Toilet Seat Lid</b>)<br>','',21),(57,2,'Bolso de Totalizador del Kit de Supervivencia','Este kit de supervivencia compacto se embala cuidadosamente en un bolso impermeable durable del refrigerador. Es perfecto mantener en la oficina, en salas de clase, en el país, o coche. El bolso rojo del refrigerador tiene el & de las palabras; quot; Supervivencia Kit& quot; en el frente, una correa de hombro ajustable, cuerdas del amarre en tapa, y un reflector raya en la parte posterior. El kit incluye siguiente: Alimento y agua: 3 cajas de cajas de agua de Blox del Aqua - dos veces la cantidad del agua como surtidores principales barras del alimento de 12 - 200 calorías 10 tabletas de la purificación del agua - cada tableta purifica 1 litro del agua Luz y comunicación: Mini radio de la exploración con los auriculares y las baterías Linterna recargable del apretón - contiene las baterías de litio qué último hasta 30 horas y también puede generar energía con exprimir el silbido de la supervivencia 5 in-1 Caja de 50 fósforos impermeables Abrigo y calor: Saco de dormir de la supervivencia de la emergencia - Recomendado sobre & común; quot; espacio blankets.& quot; Poncho de la emergencia con la capilla Herramientas: Máscara de polvo del respirador N95 Higiene y saneamiento: 3 paquetes del tejido del bolsillo del tempo 3 trapos mojados para la higiene Primeros auxilios: Kit de primeros auxilios del bolsillo de 42 pedazos - contiene 42 pedazos - punto 10 vendajes, 10 jóvenes escarpados, 5 medios escarpados, 5 tiras escarpadas, 2 anti-bacteriano, 3 despeje las tiras, 2 tiras de la tela, 1 grande adicional, 2 cojines del alcohol, y 2 cojines de gasa Otro: Cubierta de las tarjetas que juegan para la hospitalidad','',5),(57,1,'Survival Kit Tote Bag','This compact <strong>survival kit </strong>is packed neatly into a <strong>durable waterproof cooler bag</strong>.\r\nIt is perfect to keep in the office, in classrooms, at home, or in the\r\ncar. The red cooler bag has the words \"Survival Kit\" on the front, an\r\nadjustable shoulder strap, tie-down cords on top, and a reflector\r\nstripe on the back.<br />\r\n\r\n\r\nThe kit includes the \r\nfollowing:<br />\r\n<br />\r\n<strong>Food and Water:</strong><br />3 Boxes of Aqua Blox Water Boxes - twice the amount of water \r\nas leading suppliers<br />\r\n12 - 200 Calorie Food Bars<br />\r\n10 Water Purification Tablets - each tablet purifies 1 liter \r\nof water<br /><br />\r\n\r\n<strong>Light and Communication:</strong><br />\r\nMini Scan Radio with Headphones and Batteries<br />\r\nRechargeable Squeeze Flashlight - contains lithium batteries \r\nwhich last up to 30 hours and also is able to generate power through squeezing<br />\r\n5-in-1 Survival Whistle<br />\r\nBox of 50 Waterproof Matches<br /><br />\r\n\r\n<strong>Shelter and Warmth:</strong><br /><br />\r\nEmergency Survival Sleeping Bag - \r\n\r\nRecommended over common \"space blankets.\"<br />\r\n\r\nEmergency Poncho with Hood<br /><br />\r\n\r\n\r\n<strong>\r\nTools:</strong><br />\r\nN95 Respirator Dust Mask<br />\r\n<br />\r\n<strong>Hygiene and Sanitation:</strong><br />\r\n3 Tempo Pocket Tissue Packs<br />\r\n3 Wet Wipes for Hygiene <br /><br />\r\n<strong>First Aid:</strong><br />\r\n42 Piece Pocket First Aid Kit - contains 42 pieces - 10 spot \r\nbandages, 10 sheer junior,5 sheer medium, 5 sheer strips, 2 antibacterial, 3 \r\nclear strips, 2 fabric strips, 1 extra large, 2 alcohol pads, and 2 gauze pads<br />\r\n<br />\r\n<strong>Other:</strong><br />\r\nDeck of playing cards for entertainment<br />','',15),(58,1,'Survival Kit Tote Bag for Children','<p>This compact <strong>survival kit </strong>is packed neatly into a <strong>durable\r\nwaterproof cooler bag</strong>. It is designed for children 11 years old or younger. The red cooler bag has the words \"Survival\r\nKit\" on the front, an adjustable shoulder strap, tie-down cords on top,\r\nand a reflector stripe on the back.<o:p /></p>\r\n\r\n<p>The kit includes the following:<br />\r\n<br />\r\n<strong>Food and Water:</strong><br />\r\n3 Boxes of Aqua Blox Water Boxes -twice the\r\namount of water as leading suppliers<br />\r\n12 - 200 Calorie Food Bars<br />\r\n10 Water Purification Tablets - each tablet\r\npurifies 1 liter of water<o:p /></p>\r\n\r\n<p><strong>Light and Communication:</strong><br />\r\nMini Scan Radio with Headphones and Batteries<br />\r\nRechargeable Squeeze Flashlight - contains\r\nlithium batteries which last up to 30 hours and also is able to generate power\r\nthrough squeezing<br />\r\n5-in-1 Survival Whistle</p>\r\n\r\n<p><strong>Shelter and Warmth:</strong><br />\r\nEmergency Survival Sleeping Bag - Recommended\r\nover common \"space blankets.\"<br />\r\nEmergency Poncho for Children<o:p /></p>\r\n\r\n<p><strong>Tools:</strong><br />\r\nN95 Respirator Dust Mask<br />\r\n<br />\r\n<strong>Hygiene and Sanitation:</strong><br />\r\n3 Tempo Pocket Tissue Packs<br />\r\n3 Wet Wipes for Hygiene <o:p /></p>\r\n\r\n<p><strong>First Aid:</strong><br />\r\n42 Piece Pocket First Aid Kit - contains 42\r\npieces - 10 spot bandages, 10 sheer junior,5 sheer medium, 5 sheer strips, 2\r\nantibacterial, 3 clear strips, 2 fabric strips, 1 extra large, 2 alcohol pads,\r\nand 2 gauze pads<br />\r\n<br />\r\nEntertainment<strong>:</strong><br />Activity Coloring Book with 8 Crayons - contains pictures to color and activities to help keep a \r\nchild\'s mind occupied</font><o:p /></p>','',16),(59,2,'Kit de Supervivencia Mini','Este kit de supervivencia compacto se embala cuidadosamente en un bolso durable del tamaño del recorrido. Es perfecto mantener en la oficina, en salas de clase, en el país, o el coche. El bolso rojo del tamaño del recorrido tiene el \" de las palabras; Supervivencia Kit\" en el frente, y viene con un carabiner azul. Alimento y agua: 1 bolso de agua 1 barra de energía del milenio Luz y comunicación: 1 palillo del resplandor de la emergencia 5 - silbido de la supervivencia in-1 Fósforos impermeables Linterna recargable del apretón Abrigo y calor: Poncho de la emergencia con la capilla Manta de la supervivencia de la emergencia Calentador lleno del cuerpo Herramientas: Cuchillo suizo del estilo del ejército de la función multi Kit de costura','',10),(59,1,'Survival Kit Mini','This compact survival kit is packed neatly into a durable travel size bag. It is perfect to keep in the office, in classrooms, at home, or in the car. The red travel size bag has the words \"Survival Kit\" on the front, and comes with a blue carabiner.\r\n<br>\r\n<br>\r\n\r\n<strong>Food and Water:</strong>\r\n1 Bag of Water\r\n1 Millenium Energy Bar\r\n<br>\r\n<br>\r\n\r\n<strong>Light and Communication:</strong>\r\n1 Emergency Glow Stick\r\n5 -in-1 Survival Whistle\r\nWaterproof Matches\r\nRechargeable Squeeze Flashlight\r\n<br>\r\n<br>\r\n\r\n<strong>Shelter and Warmth:</strong>\r\nEmergency Poncho w/ Hood\r\nEmergency Survival Blanket\r\nFull Body Warmer\r\n<br>\r\n<br>\r\n\r\n<strong>Tools:</strong>\r\nMulti Function Swiss Army Style Knife\r\nSewing Kit','',14),(60,2,'Kit de SupervivenciaMini para los Niños','Este kit de supervivencia compacto se diseña para que a los niños los guarden encendido o acerquen siempre en sus morrales. Se embala cuidadosamente en un bolso durable del tamaño del recorrido. El bolso rojo del tamaño del recorrido tiene el \" de las palabras; Supervivencia Kit\" en el frente, y viene con un carabiner azul. Alimento y agua: 1 bolso de agua 1 barra de energía del milenio Luz y comunicación: 1 palillo verde del resplandor de la emergencia 5 - silbido de la supervivencia in-1 Linterna recargable del apretón Abrigo y calor: Poncho de la emergencia con la capilla Manta de la supervivencia de la emergencia Calentador lleno del cuerpo','',3),(60,1,'Survival Kit Mini for Children','This compact survival kit is designed for children to keep on or near them at all times in their backpacks.  It is packed neatly into a durable travel size bag.  The red travel size bag has the words \"Survival Kit\" on the front, and comes with a blue carabiner.\r\n<br>\r\n<br>\r\n\r\n<strong>Food and Water:</strong>\r\n1 Bag of Water\r\n1 Millenium Energy Bar\r\n<br>\r\n<br>\r\n\r\n<strong>Light and Communication:</strong>\r\n1 Green Emergency Glow Stick\r\n5 -in-1 Survival Whistle\r\nRechargeable Squeeze Flashlight\r\n<br>\r\n<br>\r\n\r\n<strong>Shelter and Warmth:</strong>\r\nEmergency Poncho w/ Hood\r\nEmergency Survival Blanket\r\nFull Body Warmer','',14),(61,2,'Kit de primeros auxilios del animal doméstico de 58 pedazos','Este kit de primeros auxilios de lujo del animal doméstico de 58 pedazos trata sus animales para varias lesiones. Este kit de primeros auxilios de lujo se embala cuidadosamente en un bolso de nylon con los artículos necesarios para tratar su animal doméstico-también incluye una guía detallada de los primeros auxilios del animal doméstico. Contiene los puntos siguientes: Tratamiento de lesión y del dolor: 1 envase en frío químico inmediato 3 ungüentos antibióticos 3 cojines de la relevación de la picadura de insecto 1 aerosol del peróxido de hidrógeno 2 onzas. Vendajes: 1 rodillo .5\" de la cinta; x 5 yardas 1 rodillo 2\" de la gasa; x 4.1 yds. 1 rodillo 3\" de la gasa; x 4.1 yds 6 apósitos de gasa estéril 2” x 2” (2 en un paquete) 6 apósitos de gasa estéril 4” x 4” (2 en un paquete) 1 cojín pesado 5\" del trauma; x 9\" Productos de limpiamiento: 2 guantes de la examinación 9 cojines de la preparación del alcohol 9 antiséptico Towelettes Yodo de 3 Povidone 5 aplicadores de la extremidad del algodón 1 colirio estéril 1 onza. Fuentes adicionales: 1 guía de los primeros auxilios del animal doméstico 1 par de tijeras del metal 1 par de las pinzas 3\" del metal; 2 removedores de la astilla','',13),(61,1,'58 Piece Pet First Aid Kit','This 58 piece deluxe pet first aid kit treats your animals for various injuries. This deluxe first aid kit is neatly packed into a nylon bag with the items needed to treat your pet—also includes a detailed pet first aid guide.\r\n<br>\r\n<br>\r\n\r\nContains the following items:\r\n<br>\r\n<br>\r\n\r\n<strong>Injury and Pain Treatment:</strong>\r\n1 Instant Chemical Cold Pack\r\n3 Antibiotic Ointments\r\n3 Insect Sting Relief Pads\r\n1 Hydrogen Peroxide Spray 2 oz.\r\n<br>\r\n<br>\r\n\r\n<strong>Bandages:</strong>\r\n1 Tape Roll .5\" x 5 yards\r\n1 Gauze Roll 2\" x 4.1 yds.\r\n1 Gauze Roll 3\" x 4.1 yds\r\n6 Sterile Gauze Dressings 2” x 2”  (2 in one pack)\r\n6 Sterile Gauze Dressings 4” x 4”  (2 in one pack)\r\n1 Heavy Trauma Pad 5\" x 9\"\r\n<br>\r\n<br>\r\n\r\n<strong>Cleansing Products:</strong>\r\n2 Examination Gloves  \r\n9 Alcohol Prep Pads\r\n9 Antiseptic Towelettes\r\n3 Povidone Iodine\r\n5 Cotton Tip Applicators\r\n1 Sterile Eyewash 1 oz.\r\n<br>\r\n<br>\r\n\r\n<strong>Additional Supplies:</strong>\r\n1 Pet First Aid Guide \r\n1 Pair of Metal Scissors\r\n1 Pair of Metal Tweezers 3\"\r\n2 Splinter Removers','',175),(62,2,'Cargador del teléfono celular de la emergencia','Esta unidad puede ser un life-saver en una situación de emergencia permitiendo que el usuario ponga una llamada cuando muere una batería del teléfono celular. Tape simplemente el adaptador al teléfono y enrolle la manija. Para cada minuto de enrrollamiento el teléfono recibirá bastante energía por 2-3 minutos de tiempo de la charla. Cargará cualquier teléfono que tenga el adaptador requerido. Viene con una cuerda del adaptador de Nokia que se pueda tapar en cualquier adaptador del teléfono celular. Compre el paquete del adaptador que incluye 16 diversos adaptadores para complementar este producto (recomendado).','',12),(62,1,'Emergency Cell Phone Charger','This unit can be a life-saver in an emergency situation by allowing the user to place a call when a cell-phone battery dies. Simply plug the adapter to the phone and wind the handle. For every minute of winding the phone will receive enough energy for 2-3 minutes of talk time. It will charge any phone that has the required adapter. It comes with a Nokia adapter cord which can be plugged into any cell-phone adapter. Purchase the adapter package which includes 16 different adapters to supplement this product (recommended).','',93),(63,2,'Paquete móvil del adaptador del teléfono celular (16 adaptadores','Estos adaptadores funcionan con el cargador del teléfono celular de la emergencia del guarda y todas las linternas del dínamo con capacidades de carga del teléfono celular. Tape un adaptador en su teléfono y la cuerda en el dispositivo de carga para generar energía a cualquier teléfono móvil que tenga el adaptador necesario. Los adaptadores incluidos son: • Panasonic X-70 • LG1300 • LG7010 • Nokia • CDMA • Panasonic GD92 • LG800 • Samsung A460 • Kyocera • Philips929 • Nokia1470 • Siemens C55 • Motorola V3 (para RAZR y Blackberry) • Motorola V60 • Sony-Ericsson • Alcatel','',4),(63,1,'Mobile Cell-phone Adapter Package (16 adapters)','These adapters work with the Guardian Emergency Cell-phone Charger and all dynamo flashlights with cell-phone charging capabilities. Plug an adapter into your phone and the cord into the charging device to generate power to any mobile phone which has the necessary adapter. The adapters included are: <br>\r\n                                \r\n• Panasonic X-70<br>\r\n\r\n• LG1300<br>\r\n\r\n• LG7010<br>\r\n\r\n• Nokia<br>\r\n\r\n• CDMA<br>\r\n\r\n• Panasonic GD92\r\n<br>\r\n• LG800<br>\r\n\r\n• Samsung A460<br>\r\n\r\n• Kyocera<br>\r\n\r\n• Philips929<br>\r\n\r\n• Nokia1470<br>\r\n\r\n• Siemens C55<br>\r\n\r\n• Motorola V3 (for RAZR and Blackberry)<br>\r\n\r\n• Motorola V60<br>\r\n\r\n• Sony-Ericsson<br>\r\n\r\n• Alcatel','',14),(64,2,'Linterna del dínamo de la emergencia con la radio','Nueva linterna brillante increíble del dínamo del LED que nunca necesita las baterías y utiliza una batería de almacenaje de OomAh/3.6v NI-MH. Esta linterna se puede también cargar usando un adaptador eléctrico externo 6V también. Este producto puede cargar un teléfono celular y tiene un lazo del USB que pueda cargar a un jugador MP3. La energía almacenada se utiliza para suministrar las luces del LED, la radio de FM, y la sirena. ¡También hace un compás atar y es una emergencia perfecta o un artículo que acampa y hace un gran regalo! El sintonizador de FM viene con una salida del altavoz o del auricular y volumen ajustable. Tres minutos de poner proporcionan 2-8 minutos de tiempo de la charla del teléfono móvil, 10-20 minutos del uso MP3, o 4-10 minutos del uso MP4.','',5),(64,1,'Emergency Dynamo Lantern with Radio','Incredible new bright LED dynamo lantern which never needs batteries and uses a OomAh/3.6v NI-MH Storage Battery. This lantern can also be charged using a 6V external electrical adapter as well. This product can charge a cell phone and has a USB tie which can charge an MP3 player. The energy stored is used to supply the LED Lights, FM Radio, and Siren. It also has a compass attached and is a perfect emergency or camping item and makes a great gift! The FM tuner comes with a loudspeaker or earphone output and adjustable volume. Three minutes of cranking provides 2-8 minutes of mobile phone talk time, 10-20 minutes of MP3 use, or 4-10 minutes of MP4 use.','',14),(65,2,'Guarda auto','Esta linterna de la emergencia es una necesidad tiene para cada automóvil. Tiene 3 luces brillantes del LED con 5 pilotos del LED en el lado que puede destellar para atraer la atención. Tiene una sirena ruidosa para llamar ayuda a una situación de emergencia, un cortador del cinturón de seguridad para ayudar cortado de un cinturón de seguridad atasc, y puede ser utilizada como martillo para romperse a través del vidrio para escapar un coche cuando las ventanas no trabajan. El imán incorporado puede permitir que un individuo guarde la linterna dentro del alcance de los brazos siempre que estén conduciendo. Esta linterna 5 in-1 es también hidrófuga.','',5),(65,1,'Auto Guardian','This emergency flashlight is a must have for every automobile. It has 3 bright LED lights with 5 LED warning lights on the side which can flash to attract attention. It has a loud siren to call help to an emergency situation, a seatbelt cutter to help cut out of a jammed seatbelt, and can be used as a hammer to break through glass to escape a car when windows do not work. The built-in magnet can allow an individual to keep the flashlight within arms reach whenever they are driving. This 5-in-1 flashlight is also water-resistant.','',15),(66,2,'Linterna accionada solar','Esta linterna brillante diseñada tiene 2 LED brillantes y se carga con energía solar. Es un gran producto a guardar en un keychain así que puede cargar constantemente mientras que conduce durante el día. Nunca necesita las baterías y le da una fuente de luz lista siempre que usted la necesite. Utilícelo para iluminar el coche y las cerraduras de puerta, para buscar para los artículos en su coche y caja de guante, y para el uso afuera. Es también impermeable y nunca necesita bulbos del reemplazo.','',8),(66,1,'Solar Powered Flashlight','This brilliantly designed flashlight has 2 bright LED’s and is charged through solar energy. It is a great product to keep on a keychain so it can constantly be charging while driving during the day. It never needs batteries and gives you a ready light source whenever you need it. Use it to illuminate car and door locks, to search for items in your car and glove box, and for use outside. It is also rainproof and never needs replacement bulbs.','',12),(67,2,'Sacudida verdadera (por siempre linterna)','Estas linternas de la sacudida no contienen ninguna batería. Mucho nuevo \" shake\" falso; las linternas demandan ser recargables cuando utilizan realmente las baterías de litio genéricas. Éstos son el reparto verdadero. El caso impermeable flota en agua y la luz es hasta una milla visible.','',5),(67,1,'Real Shake (forever flashlight)','These shake flashlights contain no batteries. Many new \"fake shake\" flashlights claim to be rechargeable when actually they use generic lithium  batteries. These are the real deal. The waterproof case floats in water  and the light is visible up to one mile.','',15),(68,2,'Linterna del apretón de 3 LED','Estas 3 linternas prácticas del LED son baratas con todo muy eficiente y brillante. Son totalmente recargables simplemente exprimiendo la manija que genera y almacena energía. Son perfectas para las situaciones agotadoras desde exprimir se han demostrado ser terapéuticas.','',4),(68,1,'3 LED Squeeze Flashlight','These handy 3 LED flashlights are inexpensive yet very efficient and bright. They are completely rechargeable by simply squeezing the handle which generates and stores power.  They are perfect for stressful situations since squeezing has been proven to be therapeutic.','',17),(69,2,'24 palillos brillantes de la emergencia de la hora','Nuestros palillos del resplandor de la emergencia duran por 12 horas y tienen un período de validez largo de 3-5 años','',2),(69,1,'24 Hour Emergency Bright Stick','Our emergency glow sticks last for 12 hours and have a long shelf-life of 3-5 years','',16),(70,2,'Calentadores del cuerpo de 16 horas','Estos calentadores de cuerpo caliente en cuestión de minutos. Ellos duran 16-20 horas y hasta 150 grados con una temperatura promedio de 130 grados de calor. Colocar dentro de su saco de dormir o debajo de la ropa para obtener resultados óptimos. 50 por la caja.','',4),(70,1,'16 Hour Body Warmers','These body warmers heat up in just minutes. They last for 16-20 hours and heat up to 150 degrees with an average temperature of 130 degrees. Place within your sleeping bag or under clothing for optimal results.\r\n50 per box.','',18),(71,2,'Jungle Survival Kit','','',8),(71,1,'Jungle Survival Kit','Jungle Survival Kit   \r\n(Total Kit Qty. = 1 Man for 5 Days)\r\n   \r\nPN 1001-1  (KIT0005)   \r\n   \r\nItem Qty. Part No. Description  \r\n1 1 2000 Bag, 5 Qt. Water \r\n2 1 2001-1 Flag, Signal \r\n3 3 2001-3 Flare, Aerial Signal \r\n4 1 2002 Emergen-C, 4 oz. Powder \r\n5 1 2003 Kit, First Aid \r\n6 1 2004 Kit, Fishing \r\n7 1 2005 Knife, 11\" Survival \r\n8 1         Stone, Knife Sharpening  \r\n9 1         Compass, Magnetic  \r\n10 1         Saw Wire  \r\n11 1         Matches, Wooden  \r\n12 1 2006 Knife, Swiss Army \r\n13 1  Machete, 15\" \r\n14 1  Manual, Air Force Survival \r\n15 1  Marker, Sea Dye \r\n16 1  Mirror, 3\" x 4\" Military Signal \r\n17 50 2010 Tablet, Water Purification \r\n18 1 2011 Ration, Food \r\n19 4 2012 Ration, 4 oz. Water \r\n20 1 2013 Repellant, Insect \r\n21 1 2014 Rope, 1/4\" x 100\' Polyester \r\n22 1 2015 Valise, 2.25\" x 9\" x 17\" \r\n23 1 2016 Whistle, Signal \r\n          \r\n***Approximate items - may vary slightly***','',12);
/*!40000 ALTER TABLE `zen_products_description` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_products_discount_quantity`
--

DROP TABLE IF EXISTS `zen_products_discount_quantity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_products_discount_quantity` (
  `discount_id` int(4) NOT NULL DEFAULT '0',
  `products_id` int(11) NOT NULL DEFAULT '0',
  `discount_qty` float NOT NULL DEFAULT '0',
  `discount_price` decimal(15,4) NOT NULL DEFAULT '0.0000',
  KEY `idx_id_qty_zen` (`products_id`,`discount_qty`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_products_discount_quantity`
--

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

--
-- Table structure for table `zen_products_notifications`
--

DROP TABLE IF EXISTS `zen_products_notifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_products_notifications` (
  `products_id` int(11) NOT NULL DEFAULT '0',
  `customers_id` int(11) NOT NULL DEFAULT '0',
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`products_id`,`customers_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_products_notifications`
--

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

--
-- Table structure for table `zen_products_options`
--

DROP TABLE IF EXISTS `zen_products_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_products_options` (
  `products_options_id` int(11) NOT NULL DEFAULT '0',
  `language_id` int(11) NOT NULL DEFAULT '1',
  `products_options_name` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `products_options_sort_order` int(11) NOT NULL DEFAULT '0',
  `products_options_type` int(5) NOT NULL DEFAULT '0',
  `products_options_length` smallint(2) NOT NULL DEFAULT '32',
  `products_options_comment` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
  `products_options_size` smallint(2) NOT NULL DEFAULT '32',
  `products_options_images_per_row` int(2) DEFAULT '5',
  `products_options_images_style` int(1) DEFAULT '0',
  `products_options_rows` smallint(2) NOT NULL DEFAULT '1',
  PRIMARY KEY (`products_options_id`,`language_id`),
  KEY `idx_lang_id_zen` (`language_id`),
  KEY `idx_products_options_sort_order_zen` (`products_options_sort_order`),
  KEY `idx_products_options_name_zen` (`products_options_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_products_options`
--

LOCK TABLES `zen_products_options` WRITE;
/*!40000 ALTER TABLE `zen_products_options` DISABLE KEYS */;
INSERT INTO `zen_products_options` VALUES (1,2,'',0,5,32,NULL,32,0,0,0),(1,1,'Shipping Hazmat',0,5,32,NULL,32,0,0,0),(2,2,'Marcador del tinte del mar',0,3,32,'',32,0,0,0),(2,1,'Sea Dye Marker',0,3,32,'',32,0,0,0),(3,2,'Silbido',0,3,32,'',32,0,0,0),(3,1,'Whistle',0,3,32,'',32,0,0,0);
/*!40000 ALTER TABLE `zen_products_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_products_options_types`
--

DROP TABLE IF EXISTS `zen_products_options_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_products_options_types` (
  `products_options_types_id` int(11) NOT NULL DEFAULT '0',
  `products_options_types_name` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`products_options_types_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_products_options_types`
--

LOCK TABLES `zen_products_options_types` WRITE;
/*!40000 ALTER TABLE `zen_products_options_types` DISABLE KEYS */;
INSERT INTO `zen_products_options_types` VALUES (0,'Dropdown'),(1,'Text'),(2,'Radio'),(3,'Checkbox'),(4,'File'),(5,'Read Only');
/*!40000 ALTER TABLE `zen_products_options_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_products_options_values`
--

DROP TABLE IF EXISTS `zen_products_options_values`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_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) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `products_options_values_sort_order` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`products_options_values_id`,`language_id`),
  KEY `idx_products_options_values_name_zen` (`products_options_values_name`),
  KEY `idx_products_options_values_sort_order_zen` (`products_options_values_sort_order`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_products_options_values`
--

LOCK TABLES `zen_products_options_values` WRITE;
/*!40000 ALTER TABLE `zen_products_options_values` DISABLE KEYS */;
INSERT INTO `zen_products_options_values` VALUES (0,1,'TEXT',0),(0,2,'TEXT',0),(1,2,'',0),(1,1,'Ground',0),(2,2,'',1),(2,1,'Air',1),(3,2,'En flor',0),(3,1,'Flourescent',0),(4,2,'Plástico - de alta frecuencia',0),(4,1,'Plastic - High frequency',0);
/*!40000 ALTER TABLE `zen_products_options_values` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_products_options_values_to_products_options`
--

DROP TABLE IF EXISTS `zen_products_options_values_to_products_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_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 DEFAULT '0',
  `products_options_values_id` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`products_options_values_to_products_options_id`),
  KEY `idx_products_options_id_zen` (`products_options_id`),
  KEY `idx_products_options_values_id_zen` (`products_options_values_id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_products_options_values_to_products_options`
--

LOCK TABLES `zen_products_options_values_to_products_options` WRITE;
/*!40000 ALTER TABLE `zen_products_options_values_to_products_options` DISABLE KEYS */;
INSERT INTO `zen_products_options_values_to_products_options` VALUES (1,1,1),(2,1,2),(3,2,3),(4,3,4);
/*!40000 ALTER TABLE `zen_products_options_values_to_products_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_products_to_categories`
--

DROP TABLE IF EXISTS `zen_products_to_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_products_to_categories` (
  `products_id` int(11) NOT NULL DEFAULT '0',
  `categories_id` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`products_id`,`categories_id`),
  KEY `idx_cat_prod_id_zen` (`categories_id`,`products_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_products_to_categories`
--

LOCK TABLES `zen_products_to_categories` WRITE;
/*!40000 ALTER TABLE `zen_products_to_categories` DISABLE KEYS */;
INSERT INTO `zen_products_to_categories` VALUES (1,1),(2,1),(3,1),(4,1),(5,1),(6,7),(7,7),(8,7),(9,7),(10,1),(11,1),(12,1),(13,1),(14,1),(15,10),(16,10),(17,10),(18,10),(19,10),(20,6),(21,6),(22,6),(23,6),(24,6),(25,8),(26,8),(27,8),(28,8),(29,8),(30,9),(31,9),(32,9),(33,9),(34,9),(35,3),(36,3),(37,3),(38,2),(39,2),(40,2),(41,11),(43,16),(44,11),(45,3),(46,12),(47,12),(48,12),(49,12),(50,15),(51,13),(52,14),(53,14),(54,14),(55,14),(56,14),(57,14),(58,14),(59,14),(60,14),(61,4),(62,13),(63,13),(64,15),(65,15),(66,15),(67,15),(68,15),(69,15),(70,13),(71,2);
/*!40000 ALTER TABLE `zen_products_to_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_project_version`
--

DROP TABLE IF EXISTS `zen_project_version`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_project_version` (
  `project_version_id` tinyint(3) NOT NULL AUTO_INCREMENT,
  `project_version_key` varchar(40) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `project_version_major` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `project_version_minor` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `project_version_patch1` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `project_version_patch2` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `project_version_patch1_source` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `project_version_patch2_source` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `project_version_comment` varchar(250) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `project_version_date_applied` datetime NOT NULL DEFAULT '0001-01-01 01:01:01',
  PRIMARY KEY (`project_version_id`),
  UNIQUE KEY `idx_project_version_key_zen` (`project_version_key`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_project_version`
--

LOCK TABLES `zen_project_version` WRITE;
/*!40000 ALTER TABLE `zen_project_version` DISABLE KEYS */;
INSERT INTO `zen_project_version` VALUES (1,'Zen-Cart Main','1','3.9d','','','','','Version Update 1.3.8b->1.3.9d','2010-07-28 07:05:17'),(2,'Zen-Cart Database','1','3.9d','','','','','Version Update 1.3.8b->1.3.9d','2010-07-28 07:05:17');
/*!40000 ALTER TABLE `zen_project_version` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_project_version_history`
--

DROP TABLE IF EXISTS `zen_project_version_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_project_version_history` (
  `project_version_id` tinyint(3) NOT NULL AUTO_INCREMENT,
  `project_version_key` varchar(40) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `project_version_major` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `project_version_minor` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `project_version_patch` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `project_version_comment` varchar(250) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `project_version_date_applied` datetime NOT NULL DEFAULT '0001-01-01 01:01:01',
  PRIMARY KEY (`project_version_id`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_project_version_history`
--

LOCK TABLES `zen_project_version_history` WRITE;
/*!40000 ALTER TABLE `zen_project_version_history` DISABLE KEYS */;
INSERT INTO `zen_project_version_history` VALUES (1,'Zen-Cart Main','1','3.8','','Fresh Installation','2010-01-13 17:35:01'),(2,'Zen-Cart Database','1','3.8','','Fresh Installation','2010-01-13 17:35:01'),(3,'Zen-Cart Main','1','3.8','','Fresh Installation','2010-01-13 17:35:01'),(4,'Zen-Cart Database','1','3.8','','Fresh Installation','2010-01-13 17:35:01'),(5,'Zen-Cart Main','1','3.9b','','Version Update 1.3.8->1.3.9b','2010-07-14 17:09:22'),(6,'Zen-Cart Database','1','3.9b','','Version Update 1.3.8->1.3.9b','2010-07-14 17:09:22');
/*!40000 ALTER TABLE `zen_project_version_history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_query_builder`
--

DROP TABLE IF EXISTS `zen_query_builder`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_query_builder` (
  `query_id` int(11) NOT NULL AUTO_INCREMENT,
  `query_category` varchar(40) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `query_name` varchar(80) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `query_description` text COLLATE utf8_unicode_ci NOT NULL,
  `query_string` text COLLATE utf8_unicode_ci NOT NULL,
  `query_keys_list` text COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`query_id`),
  UNIQUE KEY `query_name` (`query_name`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_query_builder`
--

LOCK TABLES `zen_query_builder` WRITE;
/*!40000 ALTER TABLE `zen_query_builder` DISABLE KEYS */;
INSERT INTO `zen_query_builder` VALUES (1,'email','All Customers','Returns all customers name and email address for sending mass emails (ie: for newsletters, coupons, GVs, messages, etc).','select customers_email_address, customers_firstname, customers_lastname from TABLE_CUSTOMERS order by customers_lastname, customers_firstname, customers_email_address',''),(2,'email,newsletters','All Newsletter Subscribers','Returns name and email address of newsletter subscribers','select customers_firstname, customers_lastname, customers_email_address from TABLE_CUSTOMERS where customers_newsletter = \'1\'',''),(3,'email,newsletters','Dormant Customers (>3months) (Subscribers)','Subscribers who HAVE purchased something, but have NOT purchased for at least three months.','select o.date_purchased, c.customers_email_address, c.customers_lastname, c.customers_firstname from TABLE_CUSTOMERS c, TABLE_ORDERS o WHERE c.customers_id = o.customers_id AND c.customers_newsletter = 1 GROUP BY c.customers_email_address HAVING max(o.date_purchased) <= subdate(now(),INTERVAL 3 MONTH) ORDER BY c.customers_lastname, c.customers_firstname ASC',''),(4,'email,newsletters','Active customers in past 3 months (Subscribers)','Newsletter subscribers who are also active customers (purchased something) in last 3 months.','select c.customers_email_address, c.customers_lastname, c.customers_firstname from TABLE_CUSTOMERS c, TABLE_ORDERS o where c.customers_newsletter = \'1\' AND c.customers_id = o.customers_id and o.date_purchased > subdate(now(),INTERVAL 3 MONTH) GROUP BY c.customers_email_address order by c.customers_lastname, c.customers_firstname ASC',''),(5,'email,newsletters','Active customers in past 3 months (Regardless of subscription status)','All active customers (purchased something) in last 3 months, ignoring newsletter-subscription status.','select c.customers_email_address, c.customers_lastname, c.customers_firstname from TABLE_CUSTOMERS c, TABLE_ORDERS o WHERE c.customers_id = o.customers_id and o.date_purchased > subdate(now(),INTERVAL 3 MONTH) GROUP BY c.customers_email_address order by c.customers_lastname, c.customers_firstname ASC',''),(6,'email,newsletters','Administrator','Just the email account of the current administrator','select \'ADMIN\' as customers_firstname, admin_name as customers_lastname, admin_email as customers_email_address from TABLE_ADMIN where admin_id = $SESSION:admin_id',''),(7,'email,newsletters','Customers who have never completed a purchase','For sending newsletter to all customers who registered but have never completed a purchase','SELECT DISTINCT c.customers_email_address as customers_email_address, c.customers_lastname as customers_lastname, c.customers_firstname as customers_firstname FROM TABLE_CUSTOMERS c LEFT JOIN  TABLE_ORDERS o ON c.customers_id=o.customers_id WHERE o.date_purchased IS NULL',''),(8,'email,newsletters','Permanent Account Holders Only','Send email only to permanent account holders ','select customers_email_address, customers_firstname, customers_lastname from TABLE_CUSTOMERS where COWOA_account != 1 order by customers_lastname, customers_firstname, customers_email_address','');
/*!40000 ALTER TABLE `zen_query_builder` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_record_artists`
--

DROP TABLE IF EXISTS `zen_record_artists`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_record_artists` (
  `artists_id` int(11) NOT NULL AUTO_INCREMENT,
  `artists_name` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `artists_image` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
  `date_added` datetime DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  PRIMARY KEY (`artists_id`),
  KEY `idx_rec_artists_name_zen` (`artists_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_record_artists`
--

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

--
-- Table structure for table `zen_record_artists_info`
--

DROP TABLE IF EXISTS `zen_record_artists_info`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_record_artists_info` (
  `artists_id` int(11) NOT NULL DEFAULT '0',
  `languages_id` int(11) NOT NULL DEFAULT '0',
  `artists_url` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `url_clicked` int(5) NOT NULL DEFAULT '0',
  `date_last_click` datetime DEFAULT NULL,
  PRIMARY KEY (`artists_id`,`languages_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_record_artists_info`
--

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

--
-- Table structure for table `zen_record_company`
--

DROP TABLE IF EXISTS `zen_record_company`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_record_company` (
  `record_company_id` int(11) NOT NULL AUTO_INCREMENT,
  `record_company_name` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `record_company_image` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL,
  `date_added` datetime DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  PRIMARY KEY (`record_company_id`),
  KEY `idx_rec_company_name_zen` (`record_company_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_record_company`
--

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

--
-- Table structure for table `zen_record_company_info`
--

DROP TABLE IF EXISTS `zen_record_company_info`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_record_company_info` (
  `record_company_id` int(11) NOT NULL DEFAULT '0',
  `languages_id` int(11) NOT NULL DEFAULT '0',
  `record_company_url` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `url_clicked` int(5) NOT NULL DEFAULT '0',
  `date_last_click` datetime DEFAULT NULL,
  PRIMARY KEY (`record_company_id`,`languages_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_record_company_info`
--

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

--
-- Table structure for table `zen_reviews`
--

DROP TABLE IF EXISTS `zen_reviews`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_reviews` (
  `reviews_id` int(11) NOT NULL AUTO_INCREMENT,
  `products_id` int(11) NOT NULL DEFAULT '0',
  `customers_id` int(11) DEFAULT NULL,
  `customers_name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `reviews_rating` int(1) DEFAULT NULL,
  `date_added` datetime DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  `reviews_read` int(5) NOT NULL DEFAULT '0',
  `status` int(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`reviews_id`),
  KEY `idx_products_id_zen` (`products_id`),
  KEY `idx_customers_id_zen` (`customers_id`),
  KEY `idx_status_zen` (`status`),
  KEY `idx_date_added_zen` (`date_added`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_reviews`
--

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

--
-- Table structure for table `zen_reviews_description`
--

DROP TABLE IF EXISTS `zen_reviews_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_reviews_description` (
  `reviews_id` int(11) NOT NULL DEFAULT '0',
  `languages_id` int(11) NOT NULL DEFAULT '0',
  `reviews_text` text COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`reviews_id`,`languages_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_reviews_description`
--

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

--
-- Table structure for table `zen_salemaker_sales`
--

DROP TABLE IF EXISTS `zen_salemaker_sales`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_salemaker_sales` (
  `sale_id` int(11) NOT NULL AUTO_INCREMENT,
  `sale_status` tinyint(4) NOT NULL DEFAULT '0',
  `sale_name` varchar(30) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `sale_deduction_value` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `sale_deduction_type` tinyint(4) NOT NULL DEFAULT '0',
  `sale_pricerange_from` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `sale_pricerange_to` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `sale_specials_condition` tinyint(4) NOT NULL DEFAULT '0',
  `sale_categories_selected` text COLLATE utf8_unicode_ci,
  `sale_categories_all` text COLLATE utf8_unicode_ci,
  `sale_date_start` date NOT NULL DEFAULT '0001-01-01',
  `sale_date_end` date NOT NULL DEFAULT '0001-01-01',
  `sale_date_added` date NOT NULL DEFAULT '0001-01-01',
  `sale_date_last_modified` date NOT NULL DEFAULT '0001-01-01',
  `sale_date_status_change` date NOT NULL DEFAULT '0001-01-01',
  PRIMARY KEY (`sale_id`),
  KEY `idx_sale_status_zen` (`sale_status`),
  KEY `idx_sale_date_start_zen` (`sale_date_start`),
  KEY `idx_sale_date_end_zen` (`sale_date_end`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_salemaker_sales`
--

LOCK TABLES `zen_salemaker_sales` WRITE;
/*!40000 ALTER TABLE `zen_salemaker_sales` DISABLE KEYS */;
INSERT INTO `zen_salemaker_sales` VALUES (2,0,'5 % OFF ON ALL RAFTS!',5.0000,1,0.0000,0.0000,0,'5',',1,5,6,7,8,9,10,','2010-02-05','2010-02-28','2010-02-05','0001-01-01','2010-02-28');
/*!40000 ALTER TABLE `zen_salemaker_sales` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_sessions`
--

DROP TABLE IF EXISTS `zen_sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_sessions` (
  `sesskey` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `expiry` int(11) unsigned NOT NULL DEFAULT '0',
  `value` mediumblob NOT NULL,
  PRIMARY KEY (`sesskey`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_sessions`
--

LOCK TABLES `zen_sessions` WRITE;
/*!40000 ALTER TABLE `zen_sessions` DISABLE KEYS */;
INSERT INTO `zen_sessions` VALUES ('5084a8d85861ac4e2112bc25dd410d9a',1287860565,_binary 'c2VjdXJpdHlUb2tlbnxzOjMyOiJiZThhYzVkYzI2MmVkZTYxOTU5NmRiNzZkODAxMzJlZCI7Y3VzdG9tZXJzX2hvc3RfYWRkcmVzc3xzOjMyOiJzdGF0aWMtMjA4LTgwLTE5NC00Ny5hczEzNDQ4LmNvbSI7Y2FydElEfHM6MDoiIjtjYXJ0fE86MTI6InNob3BwaW5nQ2FydCI6Nzp7czo4OiJjb250ZW50cyI7YTowOnt9czo1OiJ0b3RhbCI7aTowO3M6Njoid2VpZ2h0IjtpOjA7czoxMjoiY29udGVudF90eXBlIjtiOjA7czoxODoiZnJlZV9zaGlwcGluZ19pdGVtIjtpOjA7czoyMDoiZnJlZV9zaGlwcGluZ193ZWlnaHQiO2k6MDtzOjE5OiJmcmVlX3NoaXBwaW5nX3ByaWNlIjtpOjA7fW5hdmlnYXRpb258TzoxNzoibmF2aWdhdGlvbkhpc3RvcnkiOjI6e3M6NDoicGF0aCI7YToxOntpOjA7YTo0OntzOjQ6InBhZ2UiO3M6NToiaW5kZXgiO3M6NDoibW9kZSI7czo2OiJOT05TU0wiO3M6MzoiZ2V0IjtzOjA6IiI7czo0OiJwb3N0IjthOjA6e319fXM6ODoic25hcHNob3QiO2E6MDp7fX1sYW5ndWFnZXxzOjc6ImVuZ2xpc2giO2xhbmd1YWdlc19pZHxzOjE6IjEiO2xhbmd1YWdlc19jb2RlfHM6MjoiZW4iO2NoZWNrX3ZhbGlkfHM6NDoidHJ1ZSI7Y3VycmVuY3l8czozOiJVU0QiO3RvZGF5X2lzfHM6MTA6IjIwMTAtMTAtMjMiO3VwZGF0ZUV4cGlyYXRpb25zfGI6MTtzZXNzaW9uX2NvdW50ZXJ8YjoxO2N1c3RvbWVyc19pcF9hZGRyZXNzfHM6MTM6IjIwOC44MC4xOTQuNDciOw==');
/*!40000 ALTER TABLE `zen_sessions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_specials`
--

DROP TABLE IF EXISTS `zen_specials`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_specials` (
  `specials_id` int(11) NOT NULL AUTO_INCREMENT,
  `products_id` int(11) NOT NULL DEFAULT '0',
  `specials_new_products_price` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `specials_date_added` datetime DEFAULT NULL,
  `specials_last_modified` datetime DEFAULT NULL,
  `expires_date` date NOT NULL DEFAULT '0001-01-01',
  `date_status_change` datetime DEFAULT NULL,
  `status` int(1) NOT NULL DEFAULT '1',
  `specials_date_available` date NOT NULL DEFAULT '0001-01-01',
  PRIMARY KEY (`specials_id`),
  KEY `idx_status_zen` (`status`),
  KEY `idx_products_id_zen` (`products_id`),
  KEY `idx_date_avail_zen` (`specials_date_available`),
  KEY `idx_expires_date_zen` (`expires_date`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_specials`
--

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

--
-- Table structure for table `zen_tax_class`
--

DROP TABLE IF EXISTS `zen_tax_class`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_tax_class` (
  `tax_class_id` int(11) NOT NULL AUTO_INCREMENT,
  `tax_class_title` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `tax_class_description` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `last_modified` datetime DEFAULT NULL,
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`tax_class_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_tax_class`
--

LOCK TABLES `zen_tax_class` WRITE;
/*!40000 ALTER TABLE `zen_tax_class` DISABLE KEYS */;
INSERT INTO `zen_tax_class` VALUES (1,'Taxable Goods','The following types of products are included: non-food, services, etc',NULL,'2010-01-13 17:35:01');
/*!40000 ALTER TABLE `zen_tax_class` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_tax_rates`
--

DROP TABLE IF EXISTS `zen_tax_rates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_tax_rates` (
  `tax_rates_id` int(11) NOT NULL AUTO_INCREMENT,
  `tax_zone_id` int(11) NOT NULL DEFAULT '0',
  `tax_class_id` int(11) NOT NULL DEFAULT '0',
  `tax_priority` int(5) DEFAULT '1',
  `tax_rate` decimal(7,4) NOT NULL DEFAULT '0.0000',
  `tax_description` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `last_modified` datetime DEFAULT NULL,
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`tax_rates_id`),
  KEY `idx_tax_zone_id_zen` (`tax_zone_id`),
  KEY `idx_tax_class_id_zen` (`tax_class_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_tax_rates`
--

LOCK TABLES `zen_tax_rates` WRITE;
/*!40000 ALTER TABLE `zen_tax_rates` DISABLE KEYS */;
INSERT INTO `zen_tax_rates` VALUES (1,1,1,1,7.0000,'FL TAX 7.0%','2010-01-13 17:35:01','2010-01-13 17:35:01');
/*!40000 ALTER TABLE `zen_tax_rates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_template_select`
--

DROP TABLE IF EXISTS `zen_template_select`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_template_select` (
  `template_id` int(11) NOT NULL AUTO_INCREMENT,
  `template_dir` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `template_language` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`template_id`),
  KEY `idx_tpl_lang_zen` (`template_language`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_template_select`
--

LOCK TABLES `zen_template_select` WRITE;
/*!40000 ALTER TABLE `zen_template_select` DISABLE KEYS */;
INSERT INTO `zen_template_select` VALUES (1,'aaas','0');
/*!40000 ALTER TABLE `zen_template_select` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_upgrade_exceptions`
--

DROP TABLE IF EXISTS `zen_upgrade_exceptions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_upgrade_exceptions` (
  `upgrade_exception_id` smallint(5) NOT NULL AUTO_INCREMENT,
  `sql_file` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL,
  `reason` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL,
  `errordate` datetime DEFAULT '0001-01-01 00:00:00',
  `sqlstatement` text COLLATE utf8_unicode_ci,
  PRIMARY KEY (`upgrade_exception_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_upgrade_exceptions`
--

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

--
-- Table structure for table `zen_whos_online`
--

DROP TABLE IF EXISTS `zen_whos_online`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_whos_online` (
  `customer_id` int(11) DEFAULT NULL,
  `full_name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `session_id` varchar(128) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `ip_address` varchar(15) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `time_entry` varchar(14) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `time_last_click` varchar(14) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `last_page_url` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `host_address` text COLLATE utf8_unicode_ci NOT NULL,
  `user_agent` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  KEY `idx_ip_address_zen` (`ip_address`),
  KEY `idx_session_id_zen` (`session_id`),
  KEY `idx_customer_id_zen` (`customer_id`),
  KEY `idx_time_entry_zen` (`time_entry`),
  KEY `idx_time_last_click_zen` (`time_last_click`),
  KEY `idx_last_page_url_zen` (`last_page_url`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_whos_online`
--

LOCK TABLES `zen_whos_online` WRITE;
/*!40000 ALTER TABLE `zen_whos_online` DISABLE KEYS */;
INSERT INTO `zen_whos_online` VALUES (0,'&yen;Spider','','119.63.198.81','1287932097','1287932097','/','baiduspider-119-63-198-81.crawl.baidu.jp','Baiduspider+(+http://www.baidu.jp/spider/)');
/*!40000 ALTER TABLE `zen_whos_online` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_zones`
--

DROP TABLE IF EXISTS `zen_zones`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_zones` (
  `zone_id` int(11) NOT NULL AUTO_INCREMENT,
  `zone_country_id` int(11) NOT NULL DEFAULT '0',
  `zone_code` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `zone_name` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`zone_id`),
  KEY `idx_zone_country_id_zen` (`zone_country_id`),
  KEY `idx_zone_code_zen` (`zone_code`)
) ENGINE=MyISAM AUTO_INCREMENT=190 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_zones`
--

LOCK TABLES `zen_zones` WRITE;
/*!40000 ALTER TABLE `zen_zones` DISABLE KEYS */;
INSERT INTO `zen_zones` 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,163,'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,'NL','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Ã¼rtemberg'),(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','Thringen'),(95,14,'WI','Wien'),(96,14,'NO','Niedersterreich'),(97,14,'OO','Obersterreich'),(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','Graubnden'),(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','Zrich'),(130,195,'A Corua','A Corua'),(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'),(182,13,'ACT','Australian Capital Territory'),(183,13,'NSW','New South Wales'),(184,13,'NT','Northern Territory'),(185,13,'QLD','Queensland'),(186,13,'SA','South Australia'),(187,13,'TAS','Tasmania'),(188,13,'VIC','Victoria'),(189,13,'WA','Western Australia');
/*!40000 ALTER TABLE `zen_zones` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zen_zones_to_geo_zones`
--

DROP TABLE IF EXISTS `zen_zones_to_geo_zones`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zen_zones_to_geo_zones` (
  `association_id` int(11) NOT NULL AUTO_INCREMENT,
  `zone_country_id` int(11) NOT NULL DEFAULT '0',
  `zone_id` int(11) DEFAULT NULL,
  `geo_zone_id` int(11) DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`association_id`),
  KEY `idx_zones_zen` (`geo_zone_id`,`zone_country_id`,`zone_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zen_zones_to_geo_zones`
--

LOCK TABLES `zen_zones_to_geo_zones` WRITE;
/*!40000 ALTER TABLE `zen_zones_to_geo_zones` DISABLE KEYS */;
INSERT INTO `zen_zones_to_geo_zones` VALUES (1,223,18,1,NULL,'2010-01-13 17:35:01');
/*!40000 ALTER TABLE `zen_zones_to_geo_zones` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Dumping events for database 'wayne1_zc1'
--

--
-- Dumping routines for database 'wayne1_zc1'
--
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2026-05-10 13:57:06
