/*!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 `admin_assert` -- DROP TABLE IF EXISTS `admin_assert`; CREATE TABLE `admin_assert` ( `assert_id` int(10) unsigned NOT NULL auto_increment, `assert_type` varchar(20) NOT NULL default '', `assert_data` text, PRIMARY KEY (`assert_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='ACL Asserts'; -- -- Dumping data for table `admin_assert` -- LOCK TABLES `admin_assert` WRITE; /*!40000 ALTER TABLE `admin_assert` DISABLE KEYS */; /*!40000 ALTER TABLE `admin_assert` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `admin_role` -- DROP TABLE IF EXISTS `admin_role`; CREATE TABLE `admin_role` ( `role_id` int(10) unsigned NOT NULL auto_increment, `parent_id` int(10) unsigned NOT NULL default '0', `tree_level` tinyint(3) unsigned NOT NULL default '0', `sort_order` tinyint(3) unsigned NOT NULL default '0', `role_type` char(1) NOT NULL default '0', `user_id` int(11) unsigned NOT NULL default '0', `role_name` varchar(50) NOT NULL default '', PRIMARY KEY (`role_id`), KEY `parent_id` (`parent_id`,`sort_order`), KEY `tree_level` (`tree_level`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='ACL Roles'; -- -- Dumping data for table `admin_role` -- LOCK TABLES `admin_role` WRITE; /*!40000 ALTER TABLE `admin_role` DISABLE KEYS */; INSERT INTO `admin_role` VALUES (1,0,1,1,'G',0,'Administrators'),(3,1,1,0,'U',1,'Store'); /*!40000 ALTER TABLE `admin_role` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `admin_rule` -- DROP TABLE IF EXISTS `admin_rule`; CREATE TABLE `admin_rule` ( `rule_id` int(10) unsigned NOT NULL auto_increment, `role_id` int(10) unsigned NOT NULL default '0', `resource_id` varchar(255) NOT NULL default '', `privileges` varchar(20) NOT NULL default '', `assert_id` int(10) unsigned NOT NULL default '0', `role_type` char(1) default NULL, `permission` varchar(10) default NULL, PRIMARY KEY (`rule_id`), KEY `resource` (`resource_id`,`role_id`), KEY `role_id` (`role_id`,`resource_id`), CONSTRAINT `FK_admin_rule` FOREIGN KEY (`role_id`) REFERENCES `admin_role` (`role_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='ACL Rules'; -- -- Dumping data for table `admin_rule` -- LOCK TABLES `admin_rule` WRITE; /*!40000 ALTER TABLE `admin_rule` DISABLE KEYS */; INSERT INTO `admin_rule` VALUES (1,1,'all','',0,'G','allow'); /*!40000 ALTER TABLE `admin_rule` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `admin_user` -- DROP TABLE IF EXISTS `admin_user`; CREATE TABLE `admin_user` ( `user_id` mediumint(9) unsigned NOT NULL auto_increment, `firstname` varchar(32) NOT NULL default '', `lastname` varchar(32) NOT NULL default '', `email` varchar(128) NOT NULL default '', `username` varchar(40) NOT NULL default '', `password` varchar(40) NOT NULL default '', `created` datetime NOT NULL default '0000-00-00 00:00:00', `modified` datetime default NULL, `logdate` datetime default NULL, `lognum` smallint(5) unsigned NOT NULL default '0', `reload_acl_flag` tinyint(1) NOT NULL default '0', `is_active` tinyint(1) NOT NULL default '1', `extra` text, PRIMARY KEY (`user_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Users'; -- -- Dumping data for table `admin_user` -- LOCK TABLES `admin_user` WRITE; /*!40000 ALTER TABLE `admin_user` DISABLE KEYS */; INSERT INTO `admin_user` VALUES (1,'Store','Owner','owner@example.com','admin','60c320903e22e3cdd29b614b126941d1:yC','2008-08-07 14:39:09','2008-12-27 20:51:54','2008-12-27 21:05:00',2,0,1,'N;'); /*!40000 ALTER TABLE `admin_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `adminnotification_inbox` -- DROP TABLE IF EXISTS `adminnotification_inbox`; CREATE TABLE `adminnotification_inbox` ( `notification_id` int(10) unsigned NOT NULL auto_increment, `severity` tinyint(3) unsigned NOT NULL default '0', `date_added` datetime NOT NULL, `title` varchar(255) NOT NULL, `description` text, `url` varchar(255) NOT NULL, `is_read` tinyint(1) unsigned NOT NULL default '0', `is_remove` tinyint(1) unsigned NOT NULL default '0', PRIMARY KEY (`notification_id`), KEY `IDX_SEVERITY` (`severity`), KEY `IDX_IS_READ` (`is_read`), KEY `IDX_IS_REMOVE` (`is_remove`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `adminnotification_inbox` -- LOCK TABLES `adminnotification_inbox` WRITE; /*!40000 ALTER TABLE `adminnotification_inbox` DISABLE KEYS */; /*!40000 ALTER TABLE `adminnotification_inbox` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `api_assert` -- DROP TABLE IF EXISTS `api_assert`; CREATE TABLE `api_assert` ( `assert_id` int(10) unsigned NOT NULL auto_increment, `assert_type` varchar(20) NOT NULL default '', `assert_data` text, PRIMARY KEY (`assert_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Api ACL Asserts'; -- -- Dumping data for table `api_assert` -- LOCK TABLES `api_assert` WRITE; /*!40000 ALTER TABLE `api_assert` DISABLE KEYS */; /*!40000 ALTER TABLE `api_assert` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `api_role` -- DROP TABLE IF EXISTS `api_role`; CREATE TABLE `api_role` ( `role_id` int(10) unsigned NOT NULL auto_increment, `parent_id` int(10) unsigned NOT NULL default '0', `tree_level` tinyint(3) unsigned NOT NULL default '0', `sort_order` tinyint(3) unsigned NOT NULL default '0', `role_type` char(1) NOT NULL default '0', `user_id` int(11) unsigned NOT NULL default '0', `role_name` varchar(50) NOT NULL default '', PRIMARY KEY (`role_id`), KEY `parent_id` (`parent_id`,`sort_order`), KEY `tree_level` (`tree_level`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Api ACL Roles'; -- -- Dumping data for table `api_role` -- LOCK TABLES `api_role` WRITE; /*!40000 ALTER TABLE `api_role` DISABLE KEYS */; /*!40000 ALTER TABLE `api_role` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `api_rule` -- DROP TABLE IF EXISTS `api_rule`; CREATE TABLE `api_rule` ( `rule_id` int(10) unsigned NOT NULL auto_increment, `role_id` int(10) unsigned NOT NULL default '0', `resource_id` varchar(255) NOT NULL default '', `privileges` varchar(20) NOT NULL default '', `assert_id` int(10) unsigned NOT NULL default '0', `role_type` char(1) default NULL, `permission` varchar(10) default NULL, PRIMARY KEY (`rule_id`), KEY `resource` (`resource_id`,`role_id`), KEY `role_id` (`role_id`,`resource_id`), CONSTRAINT `FK_api_rule` FOREIGN KEY (`role_id`) REFERENCES `api_role` (`role_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Api ACL Rules'; -- -- Dumping data for table `api_rule` -- LOCK TABLES `api_rule` WRITE; /*!40000 ALTER TABLE `api_rule` DISABLE KEYS */; /*!40000 ALTER TABLE `api_rule` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `api_user` -- DROP TABLE IF EXISTS `api_user`; CREATE TABLE `api_user` ( `user_id` mediumint(9) unsigned NOT NULL auto_increment, `firstname` varchar(32) NOT NULL default '', `lastname` varchar(32) NOT NULL default '', `email` varchar(128) NOT NULL default '', `username` varchar(40) NOT NULL default '', `api_key` varchar(40) NOT NULL default '', `created` datetime NOT NULL default '0000-00-00 00:00:00', `modified` datetime default NULL, `logdate` datetime default NULL, `lognum` smallint(5) unsigned NOT NULL default '0', `sessid` varchar(40) NOT NULL, `reload_acl_flag` tinyint(1) NOT NULL default '0', `is_active` tinyint(1) NOT NULL default '1', PRIMARY KEY (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Api Users'; -- -- Dumping data for table `api_user` -- LOCK TABLES `api_user` WRITE; /*!40000 ALTER TABLE `api_user` DISABLE KEYS */; /*!40000 ALTER TABLE `api_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_entity` -- DROP TABLE IF EXISTS `catalog_category_entity`; CREATE TABLE `catalog_category_entity` ( `entity_id` int(10) unsigned NOT NULL auto_increment, `entity_type_id` smallint(8) unsigned NOT NULL default '0', `attribute_set_id` smallint(5) unsigned NOT NULL default '0', `parent_id` int(10) unsigned NOT NULL default '0', `created_at` datetime NOT NULL default '0000-00-00 00:00:00', `updated_at` datetime NOT NULL default '0000-00-00 00:00:00', `path` varchar(255) NOT NULL, `position` int(11) NOT NULL, `level` int(11) NOT NULL, `children_count` int(11) NOT NULL, PRIMARY KEY (`entity_id`), KEY `IDX_LEVEL` (`level`) ) ENGINE=InnoDB AUTO_INCREMENT=35 DEFAULT CHARSET=utf8 COMMENT='Category Entityies'; -- -- Dumping data for table `catalog_category_entity` -- LOCK TABLES `catalog_category_entity` WRITE; /*!40000 ALTER TABLE `catalog_category_entity` DISABLE KEYS */; INSERT INTO `catalog_category_entity` VALUES (1,9,12,0,'2007-07-20 18:46:08','2007-08-07 09:50:15','1',1,0,26),(3,9,12,1,'2007-08-22 15:54:41','2007-12-05 04:38:59','1/3',3,1,25),(4,9,12,18,'2007-08-22 15:55:34','2008-08-08 00:56:48','1/3/18/4',4,3,0),(5,9,12,18,'2007-08-22 16:21:29','2008-08-07 23:55:38','1/3/18/5',5,3,2),(8,9,12,13,'2007-08-22 18:10:30','2008-08-07 23:51:26','1/3/13/8',8,3,0),(10,9,12,3,'2007-08-23 11:45:22','2008-08-08 00:01:18','1/3/10',10,2,2),(12,9,12,13,'2007-08-24 12:34:30','2008-08-07 23:54:48','1/3/13/12',12,3,2),(13,9,12,3,'2007-08-24 13:31:01','2008-08-08 00:02:23','1/3/13',13,2,13),(15,9,12,13,'2007-08-24 13:33:17','2008-07-25 01:53:39','1/3/13/15',15,3,8),(16,9,12,5,'2007-08-24 15:41:52','2008-08-07 23:56:01','1/3/18/5/16',16,4,0),(17,9,12,5,'2007-08-24 15:43:07','2008-08-07 23:56:28','1/3/18/5/17',17,4,0),(18,9,12,3,'2007-08-24 15:44:31','2008-08-07 23:54:16','1/3/18',18,2,6),(19,9,12,18,'2007-08-24 20:05:28','2008-08-07 23:57:03','1/3/18/19',19,3,0),(20,9,12,3,'2007-08-25 13:14:09','2008-08-07 23:58:57','1/3/20',20,2,0),(22,9,12,10,'2007-08-26 14:49:39','2008-08-08 00:01:45','1/3/10/22',22,3,0),(23,9,12,10,'2007-08-27 10:35:27','2008-08-07 23:49:18','1/3/10/23',23,3,0),(24,9,12,18,'2007-08-28 18:32:41','2007-08-29 23:20:36','1/3/18/24',24,3,0),(25,9,12,12,'2007-08-29 19:49:52','2008-08-07 23:46:35','1/3/13/12/25',25,4,0),(26,9,12,12,'2007-08-29 20:37:22','2008-08-07 23:47:02','1/3/13/12/26',26,4,0),(27,9,12,15,'2008-07-25 00:36:22','2008-08-07 23:48:15','1/3/13/15/27',1,4,0),(28,9,12,15,'2008-07-25 00:39:10','2008-08-08 13:02:59','1/3/13/15/28',2,4,0),(29,9,12,13,'2008-07-25 00:39:54','2008-07-25 00:39:54','1/3/13/15/29',3,4,0),(30,9,12,13,'2008-07-25 00:41:11','2008-07-25 00:41:11','1/3/13/15/30',4,4,0),(31,9,12,13,'2008-07-25 00:41:56','2008-07-25 00:41:56','1/3/13/15/31',5,4,0),(32,9,12,13,'2008-07-25 00:42:57','2008-07-25 00:42:57','1/3/13/15/32',6,4,0),(33,9,12,13,'2008-07-25 00:43:25','2008-07-25 00:43:25','1/3/13/15/33',7,4,0),(34,9,12,13,'2008-07-25 00:44:17','2008-07-25 00:44:17','1/3/13/15/34',8,4,0); /*!40000 ALTER TABLE `catalog_category_entity` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_entity_datetime` -- DROP TABLE IF EXISTS `catalog_category_entity_datetime`; CREATE TABLE `catalog_category_entity_datetime` ( `value_id` int(11) NOT NULL auto_increment, `entity_type_id` smallint(5) unsigned NOT NULL default '0', `attribute_id` smallint(5) unsigned NOT NULL default '0', `store_id` smallint(5) unsigned NOT NULL default '0', `entity_id` int(10) unsigned NOT NULL default '0', `value` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (`value_id`), UNIQUE KEY `IDX_BASE` (`entity_type_id`,`entity_id`,`attribute_id`,`store_id`), KEY `FK_ATTRIBUTE_DATETIME_ENTITY` (`entity_id`), KEY `FK_CATALOG_CATEGORY_ENTITY_DATETIME_ATTRIBUTE` (`attribute_id`), KEY `FK_CATALOG_CATEGORY_ENTITY_DATETIME_STORE` (`store_id`), CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_DATETIME_ATTRIBUTE` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_DATETIME_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_DATETIME_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `catalog_category_entity_datetime` -- LOCK TABLES `catalog_category_entity_datetime` WRITE; /*!40000 ALTER TABLE `catalog_category_entity_datetime` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_category_entity_datetime` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_entity_decimal` -- DROP TABLE IF EXISTS `catalog_category_entity_decimal`; CREATE TABLE `catalog_category_entity_decimal` ( `value_id` int(11) NOT NULL auto_increment, `entity_type_id` smallint(5) unsigned NOT NULL default '0', `attribute_id` smallint(5) unsigned NOT NULL default '0', `store_id` smallint(5) unsigned NOT NULL default '0', `entity_id` int(10) unsigned NOT NULL default '0', `value` decimal(12,4) NOT NULL default '0.0000', PRIMARY KEY (`value_id`), UNIQUE KEY `IDX_BASE` (`entity_type_id`,`entity_id`,`attribute_id`,`store_id`), KEY `FK_ATTRIBUTE_DECIMAL_ENTITY` (`entity_id`), KEY `FK_CATALOG_CATEGORY_ENTITY_DECIMAL_ATTRIBUTE` (`attribute_id`), KEY `FK_CATALOG_CATEGORY_ENTITY_DECIMAL_STORE` (`store_id`), CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_DECIMAL_ATTRIBUTE` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_DECIMAL_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_DECIMAL_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `catalog_category_entity_decimal` -- LOCK TABLES `catalog_category_entity_decimal` WRITE; /*!40000 ALTER TABLE `catalog_category_entity_decimal` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_category_entity_decimal` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_entity_int` -- DROP TABLE IF EXISTS `catalog_category_entity_int`; CREATE TABLE `catalog_category_entity_int` ( `value_id` int(11) NOT NULL auto_increment, `entity_type_id` smallint(5) unsigned NOT NULL default '0', `attribute_id` smallint(5) unsigned NOT NULL default '0', `store_id` smallint(5) unsigned NOT NULL default '0', `entity_id` int(10) unsigned NOT NULL default '0', `value` int(11) NOT NULL default '0', PRIMARY KEY (`value_id`), UNIQUE KEY `IDX_BASE` (`entity_type_id`,`entity_id`,`attribute_id`,`store_id`), KEY `FK_ATTRIBUTE_INT_ENTITY` (`entity_id`), KEY `FK_CATALOG_CATEGORY_EMTITY_INT_ATTRIBUTE` (`attribute_id`), KEY `FK_CATALOG_CATEGORY_EMTITY_INT_STORE` (`store_id`), CONSTRAINT `FK_CATALOG_CATEGORY_EMTITY_INT_ATTRIBUTE` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATALOG_CATEGORY_EMTITY_INT_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATALOG_CATEGORY_EMTITY_INT_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=77 DEFAULT CHARSET=utf8; -- -- Dumping data for table `catalog_category_entity_int` -- LOCK TABLES `catalog_category_entity_int` WRITE; /*!40000 ALTER TABLE `catalog_category_entity_int` DISABLE KEYS */; INSERT INTO `catalog_category_entity_int` VALUES (1,9,120,0,13,1),(2,9,120,0,5,1),(3,9,120,0,18,1),(4,9,120,0,16,1),(5,9,120,0,17,1),(6,9,120,0,4,1),(7,9,120,0,19,0),(8,9,120,0,22,0),(9,9,120,0,10,1),(10,9,120,0,15,1),(11,9,119,0,1,1),(12,9,119,0,4,1),(13,9,119,0,8,1),(14,9,119,0,12,1),(15,9,119,0,15,1),(16,9,119,0,17,1),(17,9,120,0,23,0),(18,9,117,0,13,3),(19,9,119,0,23,1),(20,9,120,0,12,1),(21,9,117,0,8,4),(22,9,120,0,8,1),(23,9,120,0,26,1),(24,9,564,0,17,1),(25,9,119,0,3,1),(26,9,120,0,20,0),(27,9,119,0,5,1),(28,9,119,0,10,1),(29,9,119,0,13,1),(30,9,119,0,16,1),(31,9,119,0,18,1),(32,9,119,0,19,1),(33,9,119,0,20,0),(34,9,119,0,22,1),(35,9,119,0,24,0),(36,9,119,0,25,1),(37,9,119,0,26,1),(38,9,564,0,15,1),(39,9,119,0,27,1),(40,9,120,0,27,0),(41,9,564,0,27,1),(42,9,119,0,28,1),(43,9,120,0,28,1),(44,9,564,0,28,1),(45,9,119,0,29,1),(46,9,120,0,29,1),(47,9,564,0,29,1),(48,9,119,0,30,1),(49,9,120,0,30,1),(50,9,564,0,30,1),(51,9,119,0,31,1),(52,9,120,0,31,1),(53,9,564,0,31,1),(54,9,119,0,32,1),(55,9,120,0,32,1),(56,9,564,0,32,1),(57,9,119,0,33,1),(58,9,120,0,33,1),(59,9,564,0,33,1),(60,9,119,0,34,1),(61,9,120,0,34,1),(62,9,564,0,34,1),(63,9,564,0,22,1),(64,9,564,0,23,1),(65,9,564,0,10,1),(66,9,564,0,12,1),(67,9,120,0,25,0),(68,9,564,0,25,1),(69,9,564,0,26,1),(70,9,564,0,8,1),(71,9,564,0,18,1),(72,9,564,0,4,1),(73,9,564,0,5,1),(74,9,564,0,16,1),(75,9,564,0,19,1),(76,9,564,0,20,1); /*!40000 ALTER TABLE `catalog_category_entity_int` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_entity_text` -- DROP TABLE IF EXISTS `catalog_category_entity_text`; CREATE TABLE `catalog_category_entity_text` ( `value_id` int(11) NOT NULL auto_increment, `entity_type_id` smallint(5) unsigned NOT NULL default '0', `attribute_id` smallint(5) unsigned NOT NULL default '0', `store_id` smallint(5) unsigned NOT NULL default '0', `entity_id` int(10) unsigned NOT NULL default '0', `value` text NOT NULL, PRIMARY KEY (`value_id`), UNIQUE KEY `IDX_BASE` (`entity_type_id`,`entity_id`,`attribute_id`,`store_id`), KEY `FK_ATTRIBUTE_TEXT_ENTITY` (`entity_id`), KEY `FK_CATALOG_CATEGORY_ENTITY_TEXT_ATTRIBUTE` (`attribute_id`), KEY `FK_CATALOG_CATEGORY_ENTITY_TEXT_STORE` (`store_id`), CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_TEXT_ATTRIBUTE` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_TEXT_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_TEXT_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=147 DEFAULT CHARSET=utf8; -- -- Dumping data for table `catalog_category_entity_text` -- LOCK TABLES `catalog_category_entity_text` WRITE; /*!40000 ALTER TABLE `catalog_category_entity_text` DISABLE KEYS */; INSERT INTO `catalog_category_entity_text` VALUES (1,9,121,0,3,'3,18,4,5,16,17,19,24,10,22,23,13,8,12,26,25,15,20'),(2,9,121,0,4,'4'),(3,9,122,0,4,'4,18'),(4,9,123,0,3,'18,10,13,20'),(5,9,121,0,5,'5,16,17'),(6,9,122,0,5,'5,18'),(7,9,121,0,8,'8'),(8,9,122,0,8,'8,13'),(9,9,121,0,10,'10,22,23'),(10,9,122,0,10,'10'),(11,9,121,0,12,'12,26,25'),(12,9,122,0,12,'12,13'),(13,9,121,0,13,'13,8,12,26,25,15'),(14,9,122,0,13,'13'),(15,9,123,0,13,'8,12,15'),(16,9,121,0,15,'15'),(17,9,122,0,15,'15,13'),(18,9,123,0,5,'16,17'),(19,9,122,0,18,'18'),(20,9,123,0,18,'4,5,19,24'),(21,9,122,0,19,'19,18'),(22,9,122,0,20,'20'),(23,9,121,0,22,'22'),(24,9,122,0,22,'22,10'),(25,9,123,0,10,'22,23'),(26,9,121,0,23,'23'),(27,9,122,0,23,'23,10'),(28,9,123,0,22,''),(29,9,123,0,16,''),(30,9,123,0,4,''),(31,9,123,0,23,''),(32,9,123,0,19,''),(33,9,123,0,15,''),(34,9,121,0,24,'24'),(35,9,122,0,24,'24,18'),(36,9,123,0,24,''),(37,9,123,0,8,''),(38,9,112,0,25,'Random accessories for different electronic items'),(39,9,115,0,25,'electric, accesories, gadgets'),(40,9,122,0,25,'25,12,13'),(41,9,123,0,25,''),(42,9,121,0,26,'26'),(43,9,122,0,26,'26,12,13'),(44,9,123,0,26,''),(45,9,123,0,17,''),(46,9,122,0,3,''),(47,9,112,0,15,''),(48,9,115,0,15,''),(49,9,116,0,15,''),(50,9,530,0,15,''),(51,9,112,0,27,''),(52,9,115,0,27,''),(53,9,116,0,27,''),(54,9,530,0,27,''),(55,9,112,0,28,''),(56,9,115,0,28,''),(57,9,116,0,28,''),(58,9,530,0,28,''),(59,9,112,0,29,''),(60,9,115,0,29,''),(61,9,116,0,29,''),(62,9,530,0,29,''),(63,9,112,0,30,''),(64,9,115,0,30,''),(65,9,116,0,30,''),(66,9,112,0,31,''),(67,9,116,0,31,''),(68,9,530,0,31,''),(69,9,112,0,32,''),(70,9,115,0,32,''),(71,9,116,0,32,''),(72,9,530,0,32,''),(73,9,112,0,33,''),(74,9,115,0,33,''),(75,9,116,0,33,''),(76,9,530,0,33,''),(77,9,112,0,34,''),(78,9,115,0,34,''),(79,9,116,0,34,''),(80,9,112,0,22,''),(81,9,116,0,22,''),(82,9,530,0,22,''),(83,9,112,0,23,''),(84,9,115,0,23,''),(85,9,116,0,23,''),(86,9,530,0,23,''),(87,9,112,0,10,''),(88,9,115,0,10,''),(89,9,116,0,10,''),(90,9,530,0,10,''),(91,9,112,0,12,''),(92,9,115,0,12,''),(93,9,116,0,12,''),(94,9,530,0,12,''),(95,9,116,0,25,''),(96,9,112,0,26,''),(97,9,116,0,26,''),(98,9,112,0,8,''),(99,9,115,0,8,''),(100,9,116,0,8,''),(101,9,530,0,8,''),(102,9,112,0,18,''),(103,9,115,0,18,''),(104,9,116,0,18,''),(105,9,530,0,18,''),(106,9,112,0,4,''),(107,9,115,0,4,''),(108,9,116,0,4,''),(109,9,530,0,4,''),(110,9,112,0,5,''),(111,9,115,0,5,''),(112,9,116,0,5,''),(113,9,530,0,5,''),(114,9,112,0,16,''),(115,9,115,0,16,''),(116,9,116,0,16,''),(117,9,530,0,16,''),(118,9,112,0,17,''),(119,9,115,0,17,''),(120,9,116,0,17,''),(121,9,530,0,17,''),(122,9,112,0,19,''),(123,9,115,0,19,''),(124,9,530,0,19,''),(125,9,115,0,20,''),(126,9,530,0,20,''),(127,9,121,0,16,'16'),(128,9,122,0,16,'16,5,18'),(129,9,121,0,17,'17'),(130,9,122,0,17,'17,5,18'),(131,9,121,0,18,'18,4,5,16,17,19,24'),(132,9,121,0,19,'19'),(133,9,121,0,20,'20'),(134,9,123,0,20,''),(135,9,121,0,25,'25'),(136,9,123,0,12,'26,25'),(137,9,530,0,30,''),(138,9,115,0,31,''),(139,9,530,0,34,''),(140,9,115,0,22,''),(141,9,530,0,25,''),(142,9,115,0,26,''),(143,9,530,0,26,''),(144,9,116,0,19,''),(145,9,112,0,20,''),(146,9,116,0,20,''); /*!40000 ALTER TABLE `catalog_category_entity_text` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_entity_varchar` -- DROP TABLE IF EXISTS `catalog_category_entity_varchar`; CREATE TABLE `catalog_category_entity_varchar` ( `value_id` int(11) NOT NULL auto_increment, `entity_type_id` smallint(5) unsigned NOT NULL default '0', `attribute_id` smallint(5) unsigned NOT NULL default '0', `store_id` smallint(5) unsigned NOT NULL default '0', `entity_id` int(10) unsigned NOT NULL default '0', `value` varchar(255) NOT NULL default '', PRIMARY KEY (`value_id`), UNIQUE KEY `IDX_BASE` USING BTREE (`entity_type_id`,`entity_id`,`attribute_id`,`store_id`), KEY `FK_ATTRIBUTE_VARCHAR_ENTITY` (`entity_id`), KEY `FK_CATALOG_CATEGORY_ENTITY_VARCHAR_ATTRIBUTE` (`attribute_id`), KEY `FK_CATALOG_CATEGORY_ENTITY_VARCHAR_STORE` (`store_id`), CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_VARCHAR_ATTRIBUTE` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_VARCHAR_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_VARCHAR_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=180 DEFAULT CHARSET=utf8; -- -- Dumping data for table `catalog_category_entity_varchar` -- LOCK TABLES `catalog_category_entity_varchar` WRITE; /*!40000 ALTER TABLE `catalog_category_entity_varchar` DISABLE KEYS */; INSERT INTO `catalog_category_entity_varchar` VALUES (1,9,111,0,3,'Root Catalog'),(2,9,118,0,3,'PRODUCTS'),(3,9,479,0,3,'root-catalog'),(4,9,111,0,4,'Shirts'),(5,9,118,0,4,'PRODUCTS'),(6,9,479,0,4,'shirts'),(7,9,111,0,5,'Shoes'),(8,9,118,0,5,'PRODUCTS'),(9,9,479,0,5,'shoes'),(10,9,111,0,8,'Cell Phones'),(11,9,118,0,8,'PRODUCTS_AND_PAGE'),(12,9,479,0,8,'cell-phones'),(13,9,111,0,10,'Furniture'),(14,9,118,0,10,'PRODUCTS'),(15,9,479,0,10,'furniture'),(16,9,111,0,12,'Cameras'),(17,9,118,0,12,'PRODUCTS'),(18,9,479,0,12,'cameras'),(19,9,111,0,13,'Electronics'),(20,9,118,0,13,'PAGE'),(21,9,479,0,13,'electronics'),(22,9,111,0,15,'Computers'),(23,9,118,0,15,'PRODUCTS'),(24,9,479,0,15,'computers'),(25,9,111,0,16,'Mens'),(26,9,118,0,16,'PRODUCTS'),(27,9,479,0,16,'mens'),(28,9,111,0,17,'Womens'),(29,9,118,0,17,'PRODUCTS'),(30,9,479,0,17,'womens'),(31,9,111,0,18,'Apparel'),(32,9,118,0,18,'PRODUCTS'),(33,9,479,0,18,'apparel'),(34,9,111,0,19,'Hoodies'),(35,9,118,0,19,'PRODUCTS'),(36,9,479,0,19,'hoodies'),(37,9,113,0,4,'shirts.jpg'),(38,9,113,0,12,'camera.jpg'),(39,9,111,0,20,'Household Items'),(40,9,118,0,20,'PRODUCTS'),(41,9,479,0,20,'household-items'),(42,9,111,0,22,'Living Room'),(43,9,118,0,22,'PRODUCTS_AND_PAGE'),(44,9,118,0,23,'PRODUCTS'),(45,9,111,0,23,'Bedroom'),(46,9,113,0,5,'shoes.jpg'),(47,9,113,0,23,'bedroom.jpg'),(48,9,113,0,18,'apparel.jpg'),(49,9,113,0,10,'furniture.jpg'),(50,9,514,0,13,'one_column'),(51,9,514,0,8,''),(52,9,111,0,24,'Pants'),(53,9,118,0,24,'PRODUCTS'),(54,9,111,0,25,'Accessories'),(55,9,118,0,25,'PRODUCTS'),(56,9,111,0,26,'Digital Cameras'),(57,9,118,0,26,'PRODUCTS'),(58,9,533,0,18,'apparel'),(59,9,533,0,4,'apparel/shirts'),(60,9,533,0,5,'apparel/shoes'),(61,9,533,0,16,'apparel/shoes/mens'),(62,9,533,0,17,'apparel/shoes/womens'),(63,9,533,0,19,'apparel/hoodies'),(64,9,533,0,10,'furniture'),(65,9,533,0,13,'electronics'),(66,9,533,0,8,'electronics/cell-phones'),(67,9,533,0,12,'electronics/cameras'),(68,9,533,0,15,'electronics/computers'),(69,9,533,0,20,'household-items'),(70,9,479,0,22,'living-room'),(71,9,533,0,22,'furniture/living-room'),(72,9,479,0,23,'bedroom'),(73,9,533,0,23,'furniture/bedroom'),(74,9,479,0,25,'accessories'),(75,9,533,0,25,'electronics/cameras/accessories'),(76,9,479,0,26,'digital-cameras'),(77,9,533,0,26,'electronics/cameras/digital-cameras'),(78,9,479,0,24,'pants'),(79,9,533,0,24,'apparel/pants'),(80,9,114,0,15,''),(81,9,563,0,15,''),(82,9,514,0,15,''),(83,9,111,0,27,'Build Your Own'),(84,9,114,0,27,''),(85,9,118,0,27,'PRODUCTS'),(86,9,479,0,27,'build-your-own'),(87,9,563,0,27,''),(88,9,514,0,27,''),(89,9,533,0,27,'electronics/computers/build-your-own'),(90,9,111,0,28,'Laptops'),(91,9,114,0,28,''),(92,9,118,0,28,'PRODUCTS'),(93,9,479,0,28,'laptops'),(94,9,563,0,28,''),(95,9,514,0,28,''),(96,9,533,0,28,'electronics/computers/laptops'),(97,9,111,0,29,'Hard Drives'),(98,9,114,0,29,''),(99,9,118,0,29,'PRODUCTS'),(100,9,479,0,29,'hard-drives'),(101,9,563,0,29,''),(102,9,514,0,29,''),(103,9,533,0,29,'electronics/computers/hard-drives'),(104,9,111,0,30,'Monitors'),(105,9,114,0,30,''),(106,9,118,0,30,'PRODUCTS'),(107,9,479,0,30,'monitors'),(108,9,563,0,30,''),(109,9,514,0,30,''),(110,9,533,0,30,'electronics/computers/monitors'),(111,9,111,0,31,'RAM / Memory'),(112,9,114,0,31,''),(113,9,118,0,31,'PRODUCTS'),(114,9,479,0,31,'ram-memory'),(115,9,563,0,31,''),(116,9,514,0,31,''),(117,9,533,0,31,'electronics/computers/ram-memory'),(118,9,111,0,32,'Cases'),(119,9,114,0,32,''),(120,9,118,0,32,'PRODUCTS'),(121,9,479,0,32,'cases'),(122,9,563,0,32,''),(123,9,514,0,32,''),(124,9,533,0,32,'electronics/computers/cases'),(125,9,111,0,33,'Processors'),(126,9,114,0,33,''),(127,9,118,0,33,'PRODUCTS'),(128,9,479,0,33,'processors'),(129,9,563,0,33,''),(130,9,514,0,33,''),(131,9,533,0,33,'electronics/computers/processors'),(132,9,111,0,34,'Peripherals'),(133,9,114,0,34,''),(134,9,118,0,34,'PRODUCTS'),(135,9,479,0,34,'peripherals'),(136,9,563,0,34,''),(137,9,514,0,34,''),(138,9,533,0,34,'electronics/computers/peripherals'),(139,9,114,0,22,''),(140,9,563,0,22,''),(141,9,514,0,22,''),(142,9,114,0,23,''),(143,9,563,0,23,''),(144,9,514,0,23,''),(145,9,114,0,10,''),(146,9,563,0,10,''),(147,9,514,0,10,''),(148,9,114,0,12,''),(149,9,563,0,12,''),(150,9,514,0,12,''),(151,9,114,0,25,''),(152,9,563,0,25,''),(153,9,514,0,25,''),(154,9,114,0,26,''),(155,9,563,0,26,''),(156,9,514,0,26,''),(157,9,114,0,8,''),(158,9,563,0,8,''),(159,9,114,0,18,''),(160,9,563,0,18,''),(161,9,514,0,18,''),(162,9,114,0,4,''),(163,9,563,0,4,''),(164,9,514,0,4,''),(165,9,114,0,5,''),(166,9,563,0,5,''),(167,9,514,0,5,''),(168,9,114,0,16,''),(169,9,563,0,16,''),(170,9,514,0,16,''),(171,9,114,0,17,''),(172,9,563,0,17,''),(173,9,514,0,17,''),(174,9,114,0,19,''),(175,9,563,0,19,''),(176,9,514,0,19,''),(177,9,114,0,20,''),(178,9,563,0,20,''),(179,9,514,0,20,''); /*!40000 ALTER TABLE `catalog_category_entity_varchar` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_product` -- DROP TABLE IF EXISTS `catalog_category_product`; CREATE TABLE `catalog_category_product` ( `category_id` int(10) unsigned NOT NULL default '0', `product_id` int(10) unsigned NOT NULL default '0', `position` int(10) unsigned NOT NULL default '0', UNIQUE KEY `UNQ_CATEGORY_PRODUCT` (`category_id`,`product_id`), KEY `CATALOG_CATEGORY_PRODUCT_CATEGORY` (`category_id`), KEY `CATALOG_CATEGORY_PRODUCT_PRODUCT` (`product_id`), CONSTRAINT `CATALOG_CATEGORY_PRODUCT_CATEGORY` FOREIGN KEY (`category_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `CATALOG_CATEGORY_PRODUCT_PRODUCT` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `catalog_category_product` -- LOCK TABLES `catalog_category_product` WRITE; /*!40000 ALTER TABLE `catalog_category_product` DISABLE KEYS */; INSERT INTO `catalog_category_product` VALUES (4,35,0),(4,36,0),(4,37,0),(4,38,0),(4,117,0),(4,118,0),(4,119,0),(4,120,0),(4,121,0),(4,122,0),(4,123,0),(4,124,0),(4,125,0),(4,126,0),(4,127,0),(4,128,0),(4,129,0),(4,130,0),(4,131,0),(8,16,0),(8,17,0),(8,18,0),(8,19,0),(8,20,0),(8,166,0),(12,46,0),(15,25,0),(15,26,0),(15,28,3),(15,140,0),(15,141,0),(15,143,0),(15,163,0),(16,30,0),(16,34,0),(16,83,0),(16,84,0),(16,85,0),(16,86,0),(16,87,0),(16,88,0),(16,89,0),(16,90,0),(16,91,0),(16,92,0),(16,93,0),(16,94,0),(16,95,0),(16,96,0),(16,97,0),(16,98,0),(16,99,0),(16,100,0),(16,101,0),(16,102,0),(17,31,2),(17,32,2),(17,33,2),(17,49,2),(17,74,2),(17,75,2),(17,79,2),(17,80,2),(17,81,2),(17,82,2),(17,83,2),(17,84,2),(17,85,2),(17,86,2),(17,87,2),(17,88,2),(17,89,2),(17,90,2),(17,91,2),(17,92,2),(17,103,2),(17,104,2),(17,105,2),(17,106,2),(17,107,2),(17,108,2),(17,109,2),(17,110,2),(17,111,2),(17,112,2),(17,113,2),(17,114,2),(17,115,2),(17,135,1),(19,39,0),(22,51,0),(22,52,0),(22,53,0),(22,54,0),(23,41,0),(23,42,0),(25,132,0),(25,133,0),(25,134,0),(26,44,0),(26,45,0),(26,46,0),(26,47,0),(26,48,0),(27,163,0),(27,164,0),(27,165,0),(28,25,0),(28,26,0),(28,28,0),(28,158,0),(29,149,0),(29,150,0),(29,154,0),(29,155,0),(30,147,0),(30,152,0),(30,156,0),(30,157,0),(31,140,0),(31,141,0),(31,143,0),(32,138,0),(32,139,0),(33,145,0),(33,148,0),(33,151,0),(33,153,0),(34,159,0),(34,160,0),(34,161,0),(34,162,0); /*!40000 ALTER TABLE `catalog_category_product` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_product_index` -- DROP TABLE IF EXISTS `catalog_category_product_index`; CREATE TABLE `catalog_category_product_index` ( `category_id` int(10) unsigned NOT NULL default '0', `product_id` int(10) unsigned NOT NULL default '0', `position` int(10) unsigned NOT NULL default '0', `is_parent` tinyint(1) unsigned NOT NULL default '0', `store_id` smallint(5) unsigned NOT NULL default '0', `visibility` tinyint(3) unsigned NOT NULL, UNIQUE KEY `UNQ_CATEGORY_PRODUCT` (`category_id`,`product_id`,`is_parent`,`store_id`), KEY `FK_CATALOG_CATEGORY_PRODUCT_INDEX_PRODUCT_ENTITY` (`product_id`), KEY `FK_CATALOG_CATEGORY_PRODUCT_INDEX_CATEGORY_ENTITY` (`category_id`), KEY `IDX_JOIN` (`product_id`,`store_id`,`category_id`,`visibility`), KEY `IDX_BASE` (`store_id`,`category_id`,`visibility`,`is_parent`,`position`), CONSTRAINT `FK_CATALOG_CATEGORY_PRODUCT_INDEX_CATEGORY_ENTITY` FOREIGN KEY (`category_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATALOG_CATEGORY_PRODUCT_INDEX_PRODUCT_ENTITY` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATEGORY_PRODUCT_INDEX_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `catalog_category_product_index` -- LOCK TABLES `catalog_category_product_index` WRITE; /*!40000 ALTER TABLE `catalog_category_product_index` DISABLE KEYS */; INSERT INTO `catalog_category_product_index` VALUES (3,30,0,0,1,1),(3,34,0,0,1,1),(3,35,0,0,1,1),(3,36,0,0,1,1),(3,37,0,0,1,1),(3,38,0,0,1,1),(3,84,0,0,1,1),(3,85,0,0,1,1),(3,86,0,0,1,1),(3,87,0,0,1,1),(3,88,0,0,1,1),(3,89,0,0,1,1),(3,90,0,0,1,1),(3,91,0,0,1,1),(3,92,0,0,1,1),(3,94,0,0,1,1),(3,95,0,0,1,1),(3,96,0,0,1,1),(3,97,0,0,1,1),(3,99,0,0,1,1),(3,100,0,0,1,1),(3,101,0,0,1,1),(3,102,0,0,1,1),(3,117,0,0,1,1),(3,118,0,0,1,1),(3,121,0,0,1,1),(3,122,0,0,1,1),(3,124,0,0,1,1),(3,125,0,0,1,1),(3,127,0,0,1,1),(3,128,0,0,1,1),(3,129,0,0,1,1),(3,130,0,0,1,1),(3,131,0,0,1,1),(3,31,2,0,1,1),(3,32,2,0,1,1),(3,33,2,0,1,1),(3,49,2,0,1,1),(3,74,2,0,1,1),(3,75,2,0,1,1),(3,79,2,0,1,1),(3,80,2,0,1,1),(3,81,2,0,1,1),(3,82,2,0,1,1),(3,104,2,0,1,1),(3,105,2,0,1,1),(3,106,2,0,1,1),(3,107,2,0,1,1),(3,109,2,0,1,1),(3,110,2,0,1,1),(3,111,2,0,1,1),(3,113,2,0,1,1),(3,114,2,0,1,1),(3,115,2,0,1,1),(3,16,0,0,1,4),(3,17,0,0,1,4),(3,18,0,0,1,4),(3,19,0,0,1,4),(3,20,0,0,1,4),(3,25,0,0,1,4),(3,26,0,0,1,4),(3,39,0,0,1,4),(3,41,0,0,1,4),(3,42,0,0,1,4),(3,44,0,0,1,4),(3,45,0,0,1,4),(3,46,0,0,1,4),(3,47,0,0,1,4),(3,48,0,0,1,4),(3,51,0,0,1,4),(3,52,0,0,1,4),(3,53,0,0,1,4),(3,54,0,0,1,4),(3,83,0,0,1,4),(3,93,0,0,1,4),(3,98,0,0,1,4),(3,119,0,0,1,4),(3,120,0,0,1,4),(3,123,0,0,1,4),(3,126,0,0,1,4),(3,132,0,0,1,4),(3,133,0,0,1,4),(3,134,0,0,1,4),(3,138,0,0,1,4),(3,139,0,0,1,4),(3,140,0,0,1,4),(3,141,0,0,1,4),(3,143,0,0,1,4),(3,145,0,0,1,4),(3,147,0,0,1,4),(3,148,0,0,1,4),(3,149,0,0,1,4),(3,150,0,0,1,4),(3,151,0,0,1,4),(3,152,0,0,1,4),(3,153,0,0,1,4),(3,154,0,0,1,4),(3,155,0,0,1,4),(3,156,0,0,1,4),(3,157,0,0,1,4),(3,158,0,0,1,4),(3,159,0,0,1,4),(3,160,0,0,1,4),(3,161,0,0,1,4),(3,162,0,0,1,4),(3,163,0,0,1,4),(3,164,0,0,1,4),(3,165,0,0,1,4),(3,166,0,0,1,4),(3,135,1,0,1,4),(3,103,2,0,1,4),(3,108,2,0,1,4),(3,112,2,0,1,4),(3,28,3,0,1,4),(4,35,0,1,1,1),(4,36,0,1,1,1),(4,37,0,1,1,1),(4,38,0,1,1,1),(4,117,0,1,1,1),(4,118,0,1,1,1),(4,121,0,1,1,1),(4,122,0,1,1,1),(4,124,0,1,1,1),(4,125,0,1,1,1),(4,127,0,1,1,1),(4,128,0,1,1,1),(4,129,0,1,1,1),(4,130,0,1,1,1),(4,131,0,1,1,1),(4,119,0,1,1,4),(4,120,0,1,1,4),(4,123,0,1,1,4),(4,126,0,1,1,4),(5,30,0,0,1,1),(5,34,0,0,1,1),(5,84,0,0,1,1),(5,85,0,0,1,1),(5,86,0,0,1,1),(5,87,0,0,1,1),(5,88,0,0,1,1),(5,89,0,0,1,1),(5,90,0,0,1,1),(5,91,0,0,1,1),(5,92,0,0,1,1),(5,94,0,0,1,1),(5,95,0,0,1,1),(5,96,0,0,1,1),(5,97,0,0,1,1),(5,99,0,0,1,1),(5,100,0,0,1,1),(5,101,0,0,1,1),(5,102,0,0,1,1),(5,31,2,0,1,1),(5,32,2,0,1,1),(5,33,2,0,1,1),(5,49,2,0,1,1),(5,74,2,0,1,1),(5,75,2,0,1,1),(5,79,2,0,1,1),(5,80,2,0,1,1),(5,81,2,0,1,1),(5,82,2,0,1,1),(5,104,2,0,1,1),(5,105,2,0,1,1),(5,106,2,0,1,1),(5,107,2,0,1,1),(5,109,2,0,1,1),(5,110,2,0,1,1),(5,111,2,0,1,1),(5,113,2,0,1,1),(5,114,2,0,1,1),(5,115,2,0,1,1),(5,83,0,0,1,4),(5,93,0,0,1,4),(5,98,0,0,1,4),(5,135,1,0,1,4),(5,103,2,0,1,4),(5,108,2,0,1,4),(5,112,2,0,1,4),(8,16,0,1,1,4),(8,17,0,1,1,4),(8,18,0,1,1,4),(8,19,0,1,1,4),(8,20,0,1,1,4),(8,166,0,1,1,4),(10,41,0,0,1,4),(10,42,0,0,1,4),(10,51,0,0,1,4),(10,52,0,0,1,4),(10,53,0,0,1,4),(10,54,0,0,1,4),(12,44,0,0,1,4),(12,45,0,0,1,4),(12,47,0,0,1,4),(12,48,0,0,1,4),(12,132,0,0,1,4),(12,133,0,0,1,4),(12,134,0,0,1,4),(12,46,0,1,1,4),(13,16,0,0,1,4),(13,17,0,0,1,4),(13,18,0,0,1,4),(13,19,0,0,1,4),(13,20,0,0,1,4),(13,25,0,0,1,4),(13,26,0,0,1,4),(13,44,0,0,1,4),(13,45,0,0,1,4),(13,46,0,0,1,4),(13,47,0,0,1,4),(13,48,0,0,1,4),(13,132,0,0,1,4),(13,133,0,0,1,4),(13,134,0,0,1,4),(13,138,0,0,1,4),(13,139,0,0,1,4),(13,140,0,0,1,4),(13,141,0,0,1,4),(13,143,0,0,1,4),(13,145,0,0,1,4),(13,147,0,0,1,4),(13,148,0,0,1,4),(13,149,0,0,1,4),(13,150,0,0,1,4),(13,151,0,0,1,4),(13,152,0,0,1,4),(13,153,0,0,1,4),(13,154,0,0,1,4),(13,155,0,0,1,4),(13,156,0,0,1,4),(13,157,0,0,1,4),(13,158,0,0,1,4),(13,159,0,0,1,4),(13,160,0,0,1,4),(13,161,0,0,1,4),(13,162,0,0,1,4),(13,163,0,0,1,4),(13,164,0,0,1,4),(13,165,0,0,1,4),(13,166,0,0,1,4),(13,28,3,0,1,4),(15,138,0,0,1,4),(15,139,0,0,1,4),(15,145,0,0,1,4),(15,147,0,0,1,4),(15,148,0,0,1,4),(15,149,0,0,1,4),(15,150,0,0,1,4),(15,151,0,0,1,4),(15,152,0,0,1,4),(15,153,0,0,1,4),(15,154,0,0,1,4),(15,155,0,0,1,4),(15,156,0,0,1,4),(15,157,0,0,1,4),(15,158,0,0,1,4),(15,159,0,0,1,4),(15,160,0,0,1,4),(15,161,0,0,1,4),(15,162,0,0,1,4),(15,164,0,0,1,4),(15,165,0,0,1,4),(15,25,0,1,1,4),(15,26,0,1,1,4),(15,140,0,1,1,4),(15,141,0,1,1,4),(15,143,0,1,1,4),(15,163,0,1,1,4),(15,28,3,1,1,4),(16,30,0,1,1,1),(16,34,0,1,1,1),(16,84,0,1,1,1),(16,85,0,1,1,1),(16,86,0,1,1,1),(16,87,0,1,1,1),(16,88,0,1,1,1),(16,89,0,1,1,1),(16,90,0,1,1,1),(16,91,0,1,1,1),(16,92,0,1,1,1),(16,94,0,1,1,1),(16,95,0,1,1,1),(16,96,0,1,1,1),(16,97,0,1,1,1),(16,99,0,1,1,1),(16,100,0,1,1,1),(16,101,0,1,1,1),(16,102,0,1,1,1),(16,83,0,1,1,4),(16,93,0,1,1,4),(16,98,0,1,1,4),(17,31,2,1,1,1),(17,32,2,1,1,1),(17,33,2,1,1,1),(17,49,2,1,1,1),(17,74,2,1,1,1),(17,75,2,1,1,1),(17,79,2,1,1,1),(17,80,2,1,1,1),(17,81,2,1,1,1),(17,82,2,1,1,1),(17,84,2,1,1,1),(17,85,2,1,1,1),(17,86,2,1,1,1),(17,87,2,1,1,1),(17,88,2,1,1,1),(17,89,2,1,1,1),(17,90,2,1,1,1),(17,91,2,1,1,1),(17,92,2,1,1,1),(17,104,2,1,1,1),(17,105,2,1,1,1),(17,106,2,1,1,1),(17,107,2,1,1,1),(17,109,2,1,1,1),(17,110,2,1,1,1),(17,111,2,1,1,1),(17,113,2,1,1,1),(17,114,2,1,1,1),(17,115,2,1,1,1),(17,135,1,1,1,4),(17,83,2,1,1,4),(17,103,2,1,1,4),(17,108,2,1,1,4),(17,112,2,1,1,4),(18,30,0,0,1,1),(18,34,0,0,1,1),(18,35,0,0,1,1),(18,36,0,0,1,1),(18,37,0,0,1,1),(18,38,0,0,1,1),(18,84,0,0,1,1),(18,85,0,0,1,1),(18,86,0,0,1,1),(18,87,0,0,1,1),(18,88,0,0,1,1),(18,89,0,0,1,1),(18,90,0,0,1,1),(18,91,0,0,1,1),(18,92,0,0,1,1),(18,94,0,0,1,1),(18,95,0,0,1,1),(18,96,0,0,1,1),(18,97,0,0,1,1),(18,99,0,0,1,1),(18,100,0,0,1,1),(18,101,0,0,1,1),(18,102,0,0,1,1),(18,117,0,0,1,1),(18,118,0,0,1,1),(18,121,0,0,1,1),(18,122,0,0,1,1),(18,124,0,0,1,1),(18,125,0,0,1,1),(18,127,0,0,1,1),(18,128,0,0,1,1),(18,129,0,0,1,1),(18,130,0,0,1,1),(18,131,0,0,1,1),(18,31,2,0,1,1),(18,32,2,0,1,1),(18,33,2,0,1,1),(18,49,2,0,1,1),(18,74,2,0,1,1),(18,75,2,0,1,1),(18,79,2,0,1,1),(18,80,2,0,1,1),(18,81,2,0,1,1),(18,82,2,0,1,1),(18,104,2,0,1,1),(18,105,2,0,1,1),(18,106,2,0,1,1),(18,107,2,0,1,1),(18,109,2,0,1,1),(18,110,2,0,1,1),(18,111,2,0,1,1),(18,113,2,0,1,1),(18,114,2,0,1,1),(18,115,2,0,1,1),(18,39,0,0,1,4),(18,83,0,0,1,4),(18,93,0,0,1,4),(18,98,0,0,1,4),(18,119,0,0,1,4),(18,120,0,0,1,4),(18,123,0,0,1,4),(18,126,0,0,1,4),(18,135,1,0,1,4),(18,103,2,0,1,4),(18,108,2,0,1,4),(18,112,2,0,1,4),(19,39,0,1,1,4),(22,51,0,1,1,4),(22,52,0,1,1,4),(22,53,0,1,1,4),(22,54,0,1,1,4),(23,41,0,1,1,4),(23,42,0,1,1,4),(25,132,0,1,1,4),(25,133,0,1,1,4),(25,134,0,1,1,4),(26,44,0,1,1,4),(26,45,0,1,1,4),(26,46,0,1,1,4),(26,47,0,1,1,4),(26,48,0,1,1,4),(27,163,0,1,1,4),(27,164,0,1,1,4),(27,165,0,1,1,4),(28,25,0,1,1,4),(28,26,0,1,1,4),(28,28,0,1,1,4),(28,158,0,1,1,4),(29,149,0,1,1,4),(29,150,0,1,1,4),(29,154,0,1,1,4),(29,155,0,1,1,4),(30,147,0,1,1,4),(30,152,0,1,1,4),(30,156,0,1,1,4),(30,157,0,1,1,4),(31,140,0,1,1,4),(31,141,0,1,1,4),(31,143,0,1,1,4),(32,138,0,1,1,4),(32,139,0,1,1,4),(33,145,0,1,1,4),(33,148,0,1,1,4),(33,151,0,1,1,4),(33,153,0,1,1,4),(34,159,0,1,1,4),(34,160,0,1,1,4),(34,161,0,1,1,4),(34,162,0,1,1,4),(3,30,0,0,2,1),(3,34,0,0,2,1),(3,35,0,0,2,1),(3,36,0,0,2,1),(3,37,0,0,2,1),(3,38,0,0,2,1),(3,84,0,0,2,1),(3,85,0,0,2,1),(3,86,0,0,2,1),(3,87,0,0,2,1),(3,88,0,0,2,1),(3,89,0,0,2,1),(3,90,0,0,2,1),(3,91,0,0,2,1),(3,92,0,0,2,1),(3,94,0,0,2,1),(3,95,0,0,2,1),(3,96,0,0,2,1),(3,97,0,0,2,1),(3,99,0,0,2,1),(3,100,0,0,2,1),(3,101,0,0,2,1),(3,102,0,0,2,1),(3,117,0,0,2,1),(3,118,0,0,2,1),(3,121,0,0,2,1),(3,122,0,0,2,1),(3,124,0,0,2,1),(3,125,0,0,2,1),(3,127,0,0,2,1),(3,128,0,0,2,1),(3,129,0,0,2,1),(3,130,0,0,2,1),(3,131,0,0,2,1),(3,31,2,0,2,1),(3,32,2,0,2,1),(3,33,2,0,2,1),(3,49,2,0,2,1),(3,74,2,0,2,1),(3,75,2,0,2,1),(3,79,2,0,2,1),(3,80,2,0,2,1),(3,81,2,0,2,1),(3,82,2,0,2,1),(3,104,2,0,2,1),(3,105,2,0,2,1),(3,106,2,0,2,1),(3,107,2,0,2,1),(3,109,2,0,2,1),(3,110,2,0,2,1),(3,111,2,0,2,1),(3,113,2,0,2,1),(3,114,2,0,2,1),(3,115,2,0,2,1),(3,16,0,0,2,4),(3,17,0,0,2,4),(3,18,0,0,2,4),(3,19,0,0,2,4),(3,20,0,0,2,4),(3,25,0,0,2,4),(3,26,0,0,2,4),(3,39,0,0,2,4),(3,41,0,0,2,4),(3,42,0,0,2,4),(3,44,0,0,2,4),(3,45,0,0,2,4),(3,46,0,0,2,4),(3,47,0,0,2,4),(3,48,0,0,2,4),(3,51,0,0,2,4),(3,52,0,0,2,4),(3,53,0,0,2,4),(3,54,0,0,2,4),(3,83,0,0,2,4),(3,93,0,0,2,4),(3,98,0,0,2,4),(3,119,0,0,2,4),(3,120,0,0,2,4),(3,123,0,0,2,4),(3,126,0,0,2,4),(3,132,0,0,2,4),(3,133,0,0,2,4),(3,134,0,0,2,4),(3,138,0,0,2,4),(3,139,0,0,2,4),(3,140,0,0,2,4),(3,141,0,0,2,4),(3,143,0,0,2,4),(3,145,0,0,2,4),(3,147,0,0,2,4),(3,148,0,0,2,4),(3,149,0,0,2,4),(3,150,0,0,2,4),(3,151,0,0,2,4),(3,152,0,0,2,4),(3,153,0,0,2,4),(3,154,0,0,2,4),(3,155,0,0,2,4),(3,156,0,0,2,4),(3,157,0,0,2,4),(3,158,0,0,2,4),(3,159,0,0,2,4),(3,160,0,0,2,4),(3,161,0,0,2,4),(3,162,0,0,2,4),(3,163,0,0,2,4),(3,164,0,0,2,4),(3,165,0,0,2,4),(3,166,0,0,2,4),(3,135,1,0,2,4),(3,103,2,0,2,4),(3,108,2,0,2,4),(3,112,2,0,2,4),(3,28,3,0,2,4),(4,35,0,1,2,1),(4,36,0,1,2,1),(4,37,0,1,2,1),(4,38,0,1,2,1),(4,117,0,1,2,1),(4,118,0,1,2,1),(4,121,0,1,2,1),(4,122,0,1,2,1),(4,124,0,1,2,1),(4,125,0,1,2,1),(4,127,0,1,2,1),(4,128,0,1,2,1),(4,129,0,1,2,1),(4,130,0,1,2,1),(4,131,0,1,2,1),(4,119,0,1,2,4),(4,120,0,1,2,4),(4,123,0,1,2,4),(4,126,0,1,2,4),(5,30,0,0,2,1),(5,34,0,0,2,1),(5,84,0,0,2,1),(5,85,0,0,2,1),(5,86,0,0,2,1),(5,87,0,0,2,1),(5,88,0,0,2,1),(5,89,0,0,2,1),(5,90,0,0,2,1),(5,91,0,0,2,1),(5,92,0,0,2,1),(5,94,0,0,2,1),(5,95,0,0,2,1),(5,96,0,0,2,1),(5,97,0,0,2,1),(5,99,0,0,2,1),(5,100,0,0,2,1),(5,101,0,0,2,1),(5,102,0,0,2,1),(5,31,2,0,2,1),(5,32,2,0,2,1),(5,33,2,0,2,1),(5,49,2,0,2,1),(5,74,2,0,2,1),(5,75,2,0,2,1),(5,79,2,0,2,1),(5,80,2,0,2,1),(5,81,2,0,2,1),(5,82,2,0,2,1),(5,104,2,0,2,1),(5,105,2,0,2,1),(5,106,2,0,2,1),(5,107,2,0,2,1),(5,109,2,0,2,1),(5,110,2,0,2,1),(5,111,2,0,2,1),(5,113,2,0,2,1),(5,114,2,0,2,1),(5,115,2,0,2,1),(5,83,0,0,2,4),(5,93,0,0,2,4),(5,98,0,0,2,4),(5,135,1,0,2,4),(5,103,2,0,2,4),(5,108,2,0,2,4),(5,112,2,0,2,4),(8,16,0,1,2,4),(8,17,0,1,2,4),(8,18,0,1,2,4),(8,19,0,1,2,4),(8,20,0,1,2,4),(8,166,0,1,2,4),(10,41,0,0,2,4),(10,42,0,0,2,4),(10,51,0,0,2,4),(10,52,0,0,2,4),(10,53,0,0,2,4),(10,54,0,0,2,4),(12,44,0,0,2,4),(12,45,0,0,2,4),(12,47,0,0,2,4),(12,48,0,0,2,4),(12,132,0,0,2,4),(12,133,0,0,2,4),(12,134,0,0,2,4),(12,46,0,1,2,4),(13,16,0,0,2,4),(13,17,0,0,2,4),(13,18,0,0,2,4),(13,19,0,0,2,4),(13,20,0,0,2,4),(13,25,0,0,2,4),(13,26,0,0,2,4),(13,44,0,0,2,4),(13,45,0,0,2,4),(13,46,0,0,2,4),(13,47,0,0,2,4),(13,48,0,0,2,4),(13,132,0,0,2,4),(13,133,0,0,2,4),(13,134,0,0,2,4),(13,138,0,0,2,4),(13,139,0,0,2,4),(13,140,0,0,2,4),(13,141,0,0,2,4),(13,143,0,0,2,4),(13,145,0,0,2,4),(13,147,0,0,2,4),(13,148,0,0,2,4),(13,149,0,0,2,4),(13,150,0,0,2,4),(13,151,0,0,2,4),(13,152,0,0,2,4),(13,153,0,0,2,4),(13,154,0,0,2,4),(13,155,0,0,2,4),(13,156,0,0,2,4),(13,157,0,0,2,4),(13,158,0,0,2,4),(13,159,0,0,2,4),(13,160,0,0,2,4),(13,161,0,0,2,4),(13,162,0,0,2,4),(13,163,0,0,2,4),(13,164,0,0,2,4),(13,165,0,0,2,4),(13,166,0,0,2,4),(13,28,3,0,2,4),(15,138,0,0,2,4),(15,139,0,0,2,4),(15,145,0,0,2,4),(15,147,0,0,2,4),(15,148,0,0,2,4),(15,149,0,0,2,4),(15,150,0,0,2,4),(15,151,0,0,2,4),(15,152,0,0,2,4),(15,153,0,0,2,4),(15,154,0,0,2,4),(15,155,0,0,2,4),(15,156,0,0,2,4),(15,157,0,0,2,4),(15,158,0,0,2,4),(15,159,0,0,2,4),(15,160,0,0,2,4),(15,161,0,0,2,4),(15,162,0,0,2,4),(15,164,0,0,2,4),(15,165,0,0,2,4),(15,25,0,1,2,4),(15,26,0,1,2,4),(15,140,0,1,2,4),(15,141,0,1,2,4),(15,143,0,1,2,4),(15,163,0,1,2,4),(15,28,3,1,2,4),(16,30,0,1,2,1),(16,34,0,1,2,1),(16,84,0,1,2,1),(16,85,0,1,2,1),(16,86,0,1,2,1),(16,87,0,1,2,1),(16,88,0,1,2,1),(16,89,0,1,2,1),(16,90,0,1,2,1),(16,91,0,1,2,1),(16,92,0,1,2,1),(16,94,0,1,2,1),(16,95,0,1,2,1),(16,96,0,1,2,1),(16,97,0,1,2,1),(16,99,0,1,2,1),(16,100,0,1,2,1),(16,101,0,1,2,1),(16,102,0,1,2,1),(16,83,0,1,2,4),(16,93,0,1,2,4),(16,98,0,1,2,4),(17,31,2,1,2,1),(17,32,2,1,2,1),(17,33,2,1,2,1),(17,49,2,1,2,1),(17,74,2,1,2,1),(17,75,2,1,2,1),(17,79,2,1,2,1),(17,80,2,1,2,1),(17,81,2,1,2,1),(17,82,2,1,2,1),(17,84,2,1,2,1),(17,85,2,1,2,1),(17,86,2,1,2,1),(17,87,2,1,2,1),(17,88,2,1,2,1),(17,89,2,1,2,1),(17,90,2,1,2,1),(17,91,2,1,2,1),(17,92,2,1,2,1),(17,104,2,1,2,1),(17,105,2,1,2,1),(17,106,2,1,2,1),(17,107,2,1,2,1),(17,109,2,1,2,1),(17,110,2,1,2,1),(17,111,2,1,2,1),(17,113,2,1,2,1),(17,114,2,1,2,1),(17,115,2,1,2,1),(17,135,1,1,2,4),(17,83,2,1,2,4),(17,103,2,1,2,4),(17,108,2,1,2,4),(17,112,2,1,2,4),(18,30,0,0,2,1),(18,34,0,0,2,1),(18,35,0,0,2,1),(18,36,0,0,2,1),(18,37,0,0,2,1),(18,38,0,0,2,1),(18,84,0,0,2,1),(18,85,0,0,2,1),(18,86,0,0,2,1),(18,87,0,0,2,1),(18,88,0,0,2,1),(18,89,0,0,2,1),(18,90,0,0,2,1),(18,91,0,0,2,1),(18,92,0,0,2,1),(18,94,0,0,2,1),(18,95,0,0,2,1),(18,96,0,0,2,1),(18,97,0,0,2,1),(18,99,0,0,2,1),(18,100,0,0,2,1),(18,101,0,0,2,1),(18,102,0,0,2,1),(18,117,0,0,2,1),(18,118,0,0,2,1),(18,121,0,0,2,1),(18,122,0,0,2,1),(18,124,0,0,2,1),(18,125,0,0,2,1),(18,127,0,0,2,1),(18,128,0,0,2,1),(18,129,0,0,2,1),(18,130,0,0,2,1),(18,131,0,0,2,1),(18,31,2,0,2,1),(18,32,2,0,2,1),(18,33,2,0,2,1),(18,49,2,0,2,1),(18,74,2,0,2,1),(18,75,2,0,2,1),(18,79,2,0,2,1),(18,80,2,0,2,1),(18,81,2,0,2,1),(18,82,2,0,2,1),(18,104,2,0,2,1),(18,105,2,0,2,1),(18,106,2,0,2,1),(18,107,2,0,2,1),(18,109,2,0,2,1),(18,110,2,0,2,1),(18,111,2,0,2,1),(18,113,2,0,2,1),(18,114,2,0,2,1),(18,115,2,0,2,1),(18,39,0,0,2,4),(18,83,0,0,2,4),(18,93,0,0,2,4),(18,98,0,0,2,4),(18,119,0,0,2,4),(18,120,0,0,2,4),(18,123,0,0,2,4),(18,126,0,0,2,4),(18,135,1,0,2,4),(18,103,2,0,2,4),(18,108,2,0,2,4),(18,112,2,0,2,4),(19,39,0,1,2,4),(22,51,0,1,2,4),(22,52,0,1,2,4),(22,53,0,1,2,4),(22,54,0,1,2,4),(23,41,0,1,2,4),(23,42,0,1,2,4),(25,132,0,1,2,4),(25,133,0,1,2,4),(25,134,0,1,2,4),(26,44,0,1,2,4),(26,45,0,1,2,4),(26,46,0,1,2,4),(26,47,0,1,2,4),(26,48,0,1,2,4),(27,163,0,1,2,4),(27,164,0,1,2,4),(27,165,0,1,2,4),(28,25,0,1,2,4),(28,26,0,1,2,4),(28,28,0,1,2,4),(28,158,0,1,2,4),(29,149,0,1,2,4),(29,150,0,1,2,4),(29,154,0,1,2,4),(29,155,0,1,2,4),(30,147,0,1,2,4),(30,152,0,1,2,4),(30,156,0,1,2,4),(30,157,0,1,2,4),(31,140,0,1,2,4),(31,141,0,1,2,4),(31,143,0,1,2,4),(32,138,0,1,2,4),(32,139,0,1,2,4),(33,145,0,1,2,4),(33,148,0,1,2,4),(33,151,0,1,2,4),(33,153,0,1,2,4),(34,159,0,1,2,4),(34,160,0,1,2,4),(34,161,0,1,2,4),(34,162,0,1,2,4),(3,30,0,0,3,1),(3,34,0,0,3,1),(3,35,0,0,3,1),(3,36,0,0,3,1),(3,37,0,0,3,1),(3,38,0,0,3,1),(3,84,0,0,3,1),(3,85,0,0,3,1),(3,86,0,0,3,1),(3,87,0,0,3,1),(3,88,0,0,3,1),(3,89,0,0,3,1),(3,90,0,0,3,1),(3,91,0,0,3,1),(3,92,0,0,3,1),(3,94,0,0,3,1),(3,95,0,0,3,1),(3,96,0,0,3,1),(3,97,0,0,3,1),(3,99,0,0,3,1),(3,100,0,0,3,1),(3,101,0,0,3,1),(3,102,0,0,3,1),(3,117,0,0,3,1),(3,118,0,0,3,1),(3,121,0,0,3,1),(3,122,0,0,3,1),(3,124,0,0,3,1),(3,125,0,0,3,1),(3,127,0,0,3,1),(3,128,0,0,3,1),(3,129,0,0,3,1),(3,130,0,0,3,1),(3,131,0,0,3,1),(3,31,2,0,3,1),(3,32,2,0,3,1),(3,33,2,0,3,1),(3,49,2,0,3,1),(3,74,2,0,3,1),(3,75,2,0,3,1),(3,79,2,0,3,1),(3,80,2,0,3,1),(3,81,2,0,3,1),(3,82,2,0,3,1),(3,104,2,0,3,1),(3,105,2,0,3,1),(3,106,2,0,3,1),(3,107,2,0,3,1),(3,109,2,0,3,1),(3,110,2,0,3,1),(3,111,2,0,3,1),(3,113,2,0,3,1),(3,114,2,0,3,1),(3,115,2,0,3,1),(3,16,0,0,3,4),(3,17,0,0,3,4),(3,18,0,0,3,4),(3,19,0,0,3,4),(3,20,0,0,3,4),(3,25,0,0,3,4),(3,26,0,0,3,4),(3,39,0,0,3,4),(3,41,0,0,3,4),(3,42,0,0,3,4),(3,44,0,0,3,4),(3,45,0,0,3,4),(3,46,0,0,3,4),(3,47,0,0,3,4),(3,48,0,0,3,4),(3,51,0,0,3,4),(3,52,0,0,3,4),(3,53,0,0,3,4),(3,54,0,0,3,4),(3,83,0,0,3,4),(3,93,0,0,3,4),(3,98,0,0,3,4),(3,119,0,0,3,4),(3,120,0,0,3,4),(3,123,0,0,3,4),(3,126,0,0,3,4),(3,132,0,0,3,4),(3,133,0,0,3,4),(3,134,0,0,3,4),(3,138,0,0,3,4),(3,139,0,0,3,4),(3,140,0,0,3,4),(3,141,0,0,3,4),(3,143,0,0,3,4),(3,145,0,0,3,4),(3,147,0,0,3,4),(3,148,0,0,3,4),(3,149,0,0,3,4),(3,150,0,0,3,4),(3,151,0,0,3,4),(3,152,0,0,3,4),(3,153,0,0,3,4),(3,154,0,0,3,4),(3,155,0,0,3,4),(3,156,0,0,3,4),(3,157,0,0,3,4),(3,158,0,0,3,4),(3,159,0,0,3,4),(3,160,0,0,3,4),(3,161,0,0,3,4),(3,162,0,0,3,4),(3,163,0,0,3,4),(3,164,0,0,3,4),(3,165,0,0,3,4),(3,166,0,0,3,4),(3,135,1,0,3,4),(3,103,2,0,3,4),(3,108,2,0,3,4),(3,112,2,0,3,4),(3,28,3,0,3,4),(4,35,0,1,3,1),(4,36,0,1,3,1),(4,37,0,1,3,1),(4,38,0,1,3,1),(4,117,0,1,3,1),(4,118,0,1,3,1),(4,121,0,1,3,1),(4,122,0,1,3,1),(4,124,0,1,3,1),(4,125,0,1,3,1),(4,127,0,1,3,1),(4,128,0,1,3,1),(4,129,0,1,3,1),(4,130,0,1,3,1),(4,131,0,1,3,1),(4,119,0,1,3,4),(4,120,0,1,3,4),(4,123,0,1,3,4),(4,126,0,1,3,4),(5,30,0,0,3,1),(5,34,0,0,3,1),(5,84,0,0,3,1),(5,85,0,0,3,1),(5,86,0,0,3,1),(5,87,0,0,3,1),(5,88,0,0,3,1),(5,89,0,0,3,1),(5,90,0,0,3,1),(5,91,0,0,3,1),(5,92,0,0,3,1),(5,94,0,0,3,1),(5,95,0,0,3,1),(5,96,0,0,3,1),(5,97,0,0,3,1),(5,99,0,0,3,1),(5,100,0,0,3,1),(5,101,0,0,3,1),(5,102,0,0,3,1),(5,31,2,0,3,1),(5,32,2,0,3,1),(5,33,2,0,3,1),(5,49,2,0,3,1),(5,74,2,0,3,1),(5,75,2,0,3,1),(5,79,2,0,3,1),(5,80,2,0,3,1),(5,81,2,0,3,1),(5,82,2,0,3,1),(5,104,2,0,3,1),(5,105,2,0,3,1),(5,106,2,0,3,1),(5,107,2,0,3,1),(5,109,2,0,3,1),(5,110,2,0,3,1),(5,111,2,0,3,1),(5,113,2,0,3,1),(5,114,2,0,3,1),(5,115,2,0,3,1),(5,83,0,0,3,4),(5,93,0,0,3,4),(5,98,0,0,3,4),(5,135,1,0,3,4),(5,103,2,0,3,4),(5,108,2,0,3,4),(5,112,2,0,3,4),(8,16,0,1,3,4),(8,17,0,1,3,4),(8,18,0,1,3,4),(8,19,0,1,3,4),(8,20,0,1,3,4),(8,166,0,1,3,4),(10,41,0,0,3,4),(10,42,0,0,3,4),(10,51,0,0,3,4),(10,52,0,0,3,4),(10,53,0,0,3,4),(10,54,0,0,3,4),(12,44,0,0,3,4),(12,45,0,0,3,4),(12,47,0,0,3,4),(12,48,0,0,3,4),(12,132,0,0,3,4),(12,133,0,0,3,4),(12,134,0,0,3,4),(12,46,0,1,3,4),(13,16,0,0,3,4),(13,17,0,0,3,4),(13,18,0,0,3,4),(13,19,0,0,3,4),(13,20,0,0,3,4),(13,25,0,0,3,4),(13,26,0,0,3,4),(13,44,0,0,3,4),(13,45,0,0,3,4),(13,46,0,0,3,4),(13,47,0,0,3,4),(13,48,0,0,3,4),(13,132,0,0,3,4),(13,133,0,0,3,4),(13,134,0,0,3,4),(13,138,0,0,3,4),(13,139,0,0,3,4),(13,140,0,0,3,4),(13,141,0,0,3,4),(13,143,0,0,3,4),(13,145,0,0,3,4),(13,147,0,0,3,4),(13,148,0,0,3,4),(13,149,0,0,3,4),(13,150,0,0,3,4),(13,151,0,0,3,4),(13,152,0,0,3,4),(13,153,0,0,3,4),(13,154,0,0,3,4),(13,155,0,0,3,4),(13,156,0,0,3,4),(13,157,0,0,3,4),(13,158,0,0,3,4),(13,159,0,0,3,4),(13,160,0,0,3,4),(13,161,0,0,3,4),(13,162,0,0,3,4),(13,163,0,0,3,4),(13,164,0,0,3,4),(13,165,0,0,3,4),(13,166,0,0,3,4),(13,28,3,0,3,4),(15,138,0,0,3,4),(15,139,0,0,3,4),(15,145,0,0,3,4),(15,147,0,0,3,4),(15,148,0,0,3,4),(15,149,0,0,3,4),(15,150,0,0,3,4),(15,151,0,0,3,4),(15,152,0,0,3,4),(15,153,0,0,3,4),(15,154,0,0,3,4),(15,155,0,0,3,4),(15,156,0,0,3,4),(15,157,0,0,3,4),(15,158,0,0,3,4),(15,159,0,0,3,4),(15,160,0,0,3,4),(15,161,0,0,3,4),(15,162,0,0,3,4),(15,164,0,0,3,4),(15,165,0,0,3,4),(15,25,0,1,3,4),(15,26,0,1,3,4),(15,140,0,1,3,4),(15,141,0,1,3,4),(15,143,0,1,3,4),(15,163,0,1,3,4),(15,28,3,1,3,4),(16,30,0,1,3,1),(16,34,0,1,3,1),(16,84,0,1,3,1),(16,85,0,1,3,1),(16,86,0,1,3,1),(16,87,0,1,3,1),(16,88,0,1,3,1),(16,89,0,1,3,1),(16,90,0,1,3,1),(16,91,0,1,3,1),(16,92,0,1,3,1),(16,94,0,1,3,1),(16,95,0,1,3,1),(16,96,0,1,3,1),(16,97,0,1,3,1),(16,99,0,1,3,1),(16,100,0,1,3,1),(16,101,0,1,3,1),(16,102,0,1,3,1),(16,83,0,1,3,4),(16,93,0,1,3,4),(16,98,0,1,3,4),(17,31,2,1,3,1),(17,32,2,1,3,1),(17,33,2,1,3,1),(17,49,2,1,3,1),(17,74,2,1,3,1),(17,75,2,1,3,1),(17,79,2,1,3,1),(17,80,2,1,3,1),(17,81,2,1,3,1),(17,82,2,1,3,1),(17,84,2,1,3,1),(17,85,2,1,3,1),(17,86,2,1,3,1),(17,87,2,1,3,1),(17,88,2,1,3,1),(17,89,2,1,3,1),(17,90,2,1,3,1),(17,91,2,1,3,1),(17,92,2,1,3,1),(17,104,2,1,3,1),(17,105,2,1,3,1),(17,106,2,1,3,1),(17,107,2,1,3,1),(17,109,2,1,3,1),(17,110,2,1,3,1),(17,111,2,1,3,1),(17,113,2,1,3,1),(17,114,2,1,3,1),(17,115,2,1,3,1),(17,135,1,1,3,4),(17,83,2,1,3,4),(17,103,2,1,3,4),(17,108,2,1,3,4),(17,112,2,1,3,4),(18,30,0,0,3,1),(18,34,0,0,3,1),(18,35,0,0,3,1),(18,36,0,0,3,1),(18,37,0,0,3,1),(18,38,0,0,3,1),(18,84,0,0,3,1),(18,85,0,0,3,1),(18,86,0,0,3,1),(18,87,0,0,3,1),(18,88,0,0,3,1),(18,89,0,0,3,1),(18,90,0,0,3,1),(18,91,0,0,3,1),(18,92,0,0,3,1),(18,94,0,0,3,1),(18,95,0,0,3,1),(18,96,0,0,3,1),(18,97,0,0,3,1),(18,99,0,0,3,1),(18,100,0,0,3,1),(18,101,0,0,3,1),(18,102,0,0,3,1),(18,117,0,0,3,1),(18,118,0,0,3,1),(18,121,0,0,3,1),(18,122,0,0,3,1),(18,124,0,0,3,1),(18,125,0,0,3,1),(18,127,0,0,3,1),(18,128,0,0,3,1),(18,129,0,0,3,1),(18,130,0,0,3,1),(18,131,0,0,3,1),(18,31,2,0,3,1),(18,32,2,0,3,1),(18,33,2,0,3,1),(18,49,2,0,3,1),(18,74,2,0,3,1),(18,75,2,0,3,1),(18,79,2,0,3,1),(18,80,2,0,3,1),(18,81,2,0,3,1),(18,82,2,0,3,1),(18,104,2,0,3,1),(18,105,2,0,3,1),(18,106,2,0,3,1),(18,107,2,0,3,1),(18,109,2,0,3,1),(18,110,2,0,3,1),(18,111,2,0,3,1),(18,113,2,0,3,1),(18,114,2,0,3,1),(18,115,2,0,3,1),(18,39,0,0,3,4),(18,83,0,0,3,4),(18,93,0,0,3,4),(18,98,0,0,3,4),(18,119,0,0,3,4),(18,120,0,0,3,4),(18,123,0,0,3,4),(18,126,0,0,3,4),(18,135,1,0,3,4),(18,103,2,0,3,4),(18,108,2,0,3,4),(18,112,2,0,3,4),(19,39,0,1,3,4),(22,51,0,1,3,4),(22,52,0,1,3,4),(22,53,0,1,3,4),(22,54,0,1,3,4),(23,41,0,1,3,4),(23,42,0,1,3,4),(25,132,0,1,3,4),(25,133,0,1,3,4),(25,134,0,1,3,4),(26,44,0,1,3,4),(26,45,0,1,3,4),(26,46,0,1,3,4),(26,47,0,1,3,4),(26,48,0,1,3,4),(27,163,0,1,3,4),(27,164,0,1,3,4),(27,165,0,1,3,4),(28,25,0,1,3,4),(28,26,0,1,3,4),(28,28,0,1,3,4),(28,158,0,1,3,4),(29,149,0,1,3,4),(29,150,0,1,3,4),(29,154,0,1,3,4),(29,155,0,1,3,4),(30,147,0,1,3,4),(30,152,0,1,3,4),(30,156,0,1,3,4),(30,157,0,1,3,4),(31,140,0,1,3,4),(31,141,0,1,3,4),(31,143,0,1,3,4),(32,138,0,1,3,4),(32,139,0,1,3,4),(33,145,0,1,3,4),(33,148,0,1,3,4),(33,151,0,1,3,4),(33,153,0,1,3,4),(34,159,0,1,3,4),(34,160,0,1,3,4),(34,161,0,1,3,4),(34,162,0,1,3,4); /*!40000 ALTER TABLE `catalog_category_product_index` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_compare_item` -- DROP TABLE IF EXISTS `catalog_compare_item`; CREATE TABLE `catalog_compare_item` ( `catalog_compare_item_id` int(11) unsigned NOT NULL auto_increment, `visitor_id` int(11) unsigned NOT NULL default '0', `customer_id` int(11) unsigned default NULL, `product_id` int(11) unsigned NOT NULL default '0', PRIMARY KEY (`catalog_compare_item_id`), KEY `FK_CATALOG_COMPARE_ITEM_CUSTOMER` (`customer_id`), KEY `FK_CATALOG_COMPARE_ITEM_PRODUCT` (`product_id`), KEY `IDX_VISITOR_PRODUCTS` (`visitor_id`,`product_id`), KEY `IDX_CUSTOMER_PRODUCTS` (`customer_id`,`product_id`), CONSTRAINT `FK_CATALOG_COMPARE_ITEM_CUSTOMER` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATALOG_COMPARE_ITEM_PRODUCT` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `catalog_compare_item` -- LOCK TABLES `catalog_compare_item` WRITE; /*!40000 ALTER TABLE `catalog_compare_item` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_compare_item` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_bundle_option` -- DROP TABLE IF EXISTS `catalog_product_bundle_option`; CREATE TABLE `catalog_product_bundle_option` ( `option_id` int(10) unsigned NOT NULL auto_increment, `parent_id` int(10) unsigned NOT NULL, `required` tinyint(1) unsigned NOT NULL default '0', `position` int(10) unsigned NOT NULL default '0', `type` varchar(255) NOT NULL default '', PRIMARY KEY (`option_id`), KEY `FK_CATALOG_PRODUCT_BUNDLE_OPTION_PARENT` (`parent_id`), CONSTRAINT `FK_CATALOG_PRODUCT_BUNDLE_OPTION_PARENT` FOREIGN KEY (`parent_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8 COMMENT='Bundle Options'; -- -- Dumping data for table `catalog_product_bundle_option` -- LOCK TABLES `catalog_product_bundle_option` WRITE; /*!40000 ALTER TABLE `catalog_product_bundle_option` DISABLE KEYS */; INSERT INTO `catalog_product_bundle_option` VALUES (1,158,0,10,'radio'),(2,158,1,0,'radio'),(3,163,0,11,'multi'),(4,163,0,10,'radio'),(5,163,0,7,'checkbox'),(6,163,0,5,'radio'),(7,163,1,4,'radio'),(8,163,1,3,'radio'),(9,163,1,2,'radio'),(10,163,1,1,'radio'),(11,164,1,4,'select'),(12,164,1,5,'multi'),(13,164,0,8,'checkbox'),(14,165,1,4,'checkbox'),(15,165,1,3,'radio'),(16,165,1,2,'radio'),(17,165,1,1,'select'),(20,164,1,3,'radio'),(21,164,1,1,'radio'),(22,165,1,1,'select'); /*!40000 ALTER TABLE `catalog_product_bundle_option` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_bundle_option_value` -- DROP TABLE IF EXISTS `catalog_product_bundle_option_value`; CREATE TABLE `catalog_product_bundle_option_value` ( `value_id` int(10) unsigned NOT NULL auto_increment, `option_id` int(10) unsigned NOT NULL, `store_id` smallint(5) unsigned NOT NULL, `title` varchar(255) NOT NULL default '', PRIMARY KEY (`value_id`), KEY `FK_CATALOG_PRODUCT_BUNDLE_OPTION_VALUE_OPTION` (`option_id`), CONSTRAINT `FK_CATALOG_PRODUCT_BUNDLE_OPTION_VALUE_OPTION` FOREIGN KEY (`option_id`) REFERENCES `catalog_product_bundle_option` (`option_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8 COMMENT='Bundle Selections'; -- -- Dumping data for table `catalog_product_bundle_option_value` -- LOCK TABLES `catalog_product_bundle_option_value` WRITE; /*!40000 ALTER TABLE `catalog_product_bundle_option_value` DISABLE KEYS */; INSERT INTO `catalog_product_bundle_option_value` VALUES (1,1,0,'Waranty'),(2,2,0,'Laptop'),(3,21,0,'Case'),(4,20,0,'CPU'),(5,11,0,'RAM'),(6,12,0,'Hard Drive'),(7,13,0,'Peripherals'),(8,10,0,'Case'),(9,9,0,'Processor'),(10,8,0,'Memory'),(11,7,0,'Hard Drive'),(12,6,0,'Hard Drive 2'),(13,5,0,'Peripherals'),(14,4,0,'Monitor'),(15,3,0,'Warranty'),(16,17,0,'Case'),(17,22,0,'CPU'),(18,16,0,'Hard Drive'),(19,15,0,'Ram'),(20,14,0,'Monitor'); /*!40000 ALTER TABLE `catalog_product_bundle_option_value` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_bundle_selection` -- DROP TABLE IF EXISTS `catalog_product_bundle_selection`; CREATE TABLE `catalog_product_bundle_selection` ( `selection_id` int(10) unsigned NOT NULL auto_increment, `option_id` int(10) unsigned NOT NULL, `parent_product_id` int(10) unsigned NOT NULL, `product_id` int(10) unsigned NOT NULL, `position` int(10) unsigned NOT NULL default '0', `is_default` tinyint(1) unsigned NOT NULL default '0', `selection_price_type` tinyint(1) unsigned NOT NULL default '0', `selection_price_value` decimal(12,4) NOT NULL default '0.0000', `selection_qty` decimal(12,4) NOT NULL default '0.0000', `selection_can_change_qty` tinyint(1) NOT NULL default '0', PRIMARY KEY (`selection_id`), KEY `FK_CATALOG_PRODUCT_BUNDLE_SELECTION_OPTION` (`option_id`), KEY `FK_CATALOG_PRODUCT_BUNDLE_SELECTION_PRODUCT` (`product_id`), CONSTRAINT `FK_CATALOG_PRODUCT_BUNDLE_SELECTION_OPTION` FOREIGN KEY (`option_id`) REFERENCES `catalog_product_bundle_option` (`option_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATALOG_PRODUCT_BUNDLE_SELECTION_PRODUCT` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=63 DEFAULT CHARSET=utf8 COMMENT='Bundle Selections'; -- -- Dumping data for table `catalog_product_bundle_selection` -- LOCK TABLES `catalog_product_bundle_selection` WRITE; /*!40000 ALTER TABLE `catalog_product_bundle_selection` DISABLE KEYS */; INSERT INTO `catalog_product_bundle_selection` VALUES (1,1,158,146,20,0,0,'0.0000','1.0000',0),(2,1,158,142,0,0,0,'0.0000','1.0000',0),(3,1,158,144,10,0,0,'0.0000','1.0000',0),(4,2,158,27,0,0,0,'0.0000','1.0000',0),(5,3,163,142,0,0,0,'0.0000','1.0000',1),(6,4,163,157,0,0,0,'0.0000','1.0000',1),(7,4,163,156,0,0,0,'0.0000','1.0000',1),(8,4,163,152,0,0,0,'0.0000','1.0000',1),(9,4,163,147,0,0,0,'0.0000','1.0000',1),(10,5,163,162,50,0,0,'0.0000','1.0000',1),(11,5,163,159,0,0,0,'0.0000','1.0000',1),(12,5,163,161,0,0,0,'0.0000','1.0000',1),(13,5,163,160,100,0,0,'0.0000','1.0000',1),(14,6,163,149,0,0,0,'0.0000','1.0000',1),(15,6,163,154,0,1,0,'0.0000','1.0000',1),(16,7,163,155,0,1,0,'0.0000','1.0000',0),(17,7,163,150,0,0,0,'0.0000','1.0000',0),(18,8,163,143,0,0,0,'0.0000','1.0000',0),(19,8,163,141,0,1,0,'0.0000','1.0000',0),(20,8,163,140,0,0,0,'0.0000','1.0000',0),(21,9,163,148,0,0,0,'0.0000','1.0000',0),(22,9,163,145,0,0,0,'0.0000','1.0000',0),(23,9,163,153,0,1,0,'0.0000','1.0000',0),(24,9,163,151,0,0,0,'0.0000','1.0000',0),(25,10,163,138,0,1,0,'0.0000','1.0000',0),(26,10,163,139,0,0,0,'0.0000','1.0000',0),(27,11,164,143,0,0,0,'0.0000','1.0000',0),(28,11,164,141,0,0,0,'75.0000','1.0000',0),(29,11,164,140,0,0,0,'150.0000','1.0000',0),(30,12,164,149,0,0,0,'250.0000','1.0000',1),(31,12,164,154,0,0,0,'0.0000','1.0000',1),(32,13,164,161,0,0,0,'199.0000','1.0000',1),(33,13,164,160,0,0,0,'50.0000','1.0000',1),(34,13,164,162,0,0,0,'0.0000','1.0000',1),(35,13,164,159,0,0,0,'0.0000','1.0000',1),(36,14,165,157,0,0,0,'0.0000','1.0000',1),(37,14,165,156,0,0,0,'0.0000','1.0000',1),(38,14,165,152,0,0,0,'0.0000','1.0000',1),(39,14,165,147,0,0,0,'0.0000','1.0000',1),(40,15,165,143,0,0,0,'0.0000','1.0000',0),(41,15,165,141,0,0,0,'0.0000','1.0000',0),(42,15,165,140,0,0,0,'0.0000','1.0000',0),(43,16,165,149,0,0,0,'0.0000','1.0000',1),(44,16,165,150,0,0,0,'0.0000','1.0000',1),(45,16,165,154,0,0,0,'0.0000','1.0000',1),(46,16,165,155,0,0,0,'0.0000','1.0000',1),(47,17,165,138,0,0,0,'0.0000','1.0000',0),(48,17,165,139,0,0,0,'0.0000','1.0000',0),(54,20,164,153,0,0,0,'700.0000','1.0000',0),(55,20,164,151,0,0,0,'200.0000','1.0000',0),(56,20,164,148,0,0,0,'100.0000','1.0000',0),(57,20,164,145,0,0,0,'0.0000','1.0000',0),(58,21,164,139,0,0,0,'0.0000','1.0000',0),(59,22,165,145,0,0,0,'0.0000','1.0000',0),(60,22,165,151,0,0,0,'0.0000','1.0000',0),(61,22,165,148,0,0,0,'0.0000','1.0000',0),(62,22,165,153,0,0,0,'0.0000','1.0000',0); /*!40000 ALTER TABLE `catalog_product_bundle_selection` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_enabled_index` -- DROP TABLE IF EXISTS `catalog_product_enabled_index`; CREATE TABLE `catalog_product_enabled_index` ( `product_id` int(10) unsigned NOT NULL default '0', `store_id` smallint(5) unsigned NOT NULL default '0', `visibility` smallint(5) unsigned NOT NULL default '0', UNIQUE KEY `UNQ_PRODUCT_STORE` (`product_id`,`store_id`), KEY `IDX_PRODUCT_VISIBILITY_IN_STORE` (`product_id`,`store_id`,`visibility`), KEY `FK_CATALOG_PRODUCT_ENABLED_INDEX_STORE` (`store_id`), CONSTRAINT `FK_CATALOG_PRODUCT_ENABLED_INDEX_PRODUCT_ENTITY` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATALOG_PRODUCT_ENABLED_INDEX_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `catalog_product_enabled_index` -- LOCK TABLES `catalog_product_enabled_index` WRITE; /*!40000 ALTER TABLE `catalog_product_enabled_index` DISABLE KEYS */; INSERT INTO `catalog_product_enabled_index` VALUES (16,1,4),(16,2,4),(16,3,4),(17,1,4),(17,2,4),(17,3,4),(18,1,4),(18,2,4),(18,3,4),(19,1,4),(19,2,4),(19,3,4),(20,1,4),(20,2,4),(20,3,4),(25,1,4),(25,2,4),(25,3,4),(26,1,4),(26,2,4),(26,3,4),(27,1,4),(27,2,4),(27,3,4),(28,1,4),(28,2,4),(28,3,4),(29,1,1),(29,2,1),(29,3,1),(30,1,1),(30,2,1),(30,3,1),(31,1,1),(31,2,1),(31,3,1),(32,1,1),(32,2,1),(32,3,1),(33,1,1),(33,2,1),(33,3,1),(34,1,1),(34,2,1),(34,3,1),(35,1,1),(35,2,1),(35,3,1),(36,1,1),(36,2,1),(36,3,1),(37,1,1),(37,2,1),(37,3,1),(38,1,1),(38,2,1),(38,3,1),(39,1,4),(39,2,4),(39,3,4),(41,1,4),(41,2,4),(41,3,4),(42,1,4),(42,2,4),(42,3,4),(44,1,4),(44,2,4),(44,3,4),(45,1,4),(45,2,4),(45,3,4),(46,1,4),(46,2,4),(46,3,4),(47,1,4),(47,2,4),(47,3,4),(48,1,4),(48,2,4),(48,3,4),(49,1,1),(49,2,1),(49,3,1),(51,1,4),(51,2,4),(51,3,4),(52,1,4),(52,2,4),(52,3,4),(53,1,4),(53,2,4),(53,3,4),(54,1,4),(54,2,4),(54,3,4),(74,1,1),(74,2,1),(74,3,1),(75,1,1),(75,2,1),(75,3,1),(79,1,1),(79,2,1),(79,3,1),(80,1,1),(80,2,1),(80,3,1),(81,1,1),(81,2,1),(81,3,1),(82,1,1),(82,2,1),(82,3,1),(83,1,4),(83,2,4),(83,3,4),(84,1,1),(84,2,1),(84,3,1),(85,1,1),(85,2,1),(85,3,1),(86,1,1),(86,2,1),(86,3,1),(87,1,1),(87,2,1),(87,3,1),(88,1,1),(88,2,1),(88,3,1),(89,1,1),(89,2,1),(89,3,1),(90,1,1),(90,2,1),(90,3,1),(91,1,1),(91,2,1),(91,3,1),(92,1,1),(92,2,1),(92,3,1),(93,1,4),(93,2,4),(93,3,4),(94,1,1),(94,2,1),(94,3,1),(95,1,1),(95,2,1),(95,3,1),(96,1,1),(96,2,1),(96,3,1),(97,1,1),(97,2,1),(97,3,1),(98,1,4),(98,2,4),(98,3,4),(99,1,1),(99,2,1),(99,3,1),(100,1,1),(100,2,1),(100,3,1),(101,1,1),(101,2,1),(101,3,1),(102,1,1),(102,2,1),(102,3,1),(103,1,4),(103,2,4),(103,3,4),(104,1,1),(104,2,1),(104,3,1),(105,1,1),(105,2,1),(105,3,1),(106,1,1),(106,2,1),(106,3,1),(107,1,1),(107,2,1),(107,3,1),(108,1,4),(108,2,4),(108,3,4),(109,1,1),(109,2,1),(109,3,1),(110,1,1),(110,2,1),(110,3,1),(111,1,1),(111,2,1),(111,3,1),(112,1,4),(112,2,4),(112,3,4),(113,1,1),(113,2,1),(113,3,1),(114,1,1),(114,2,1),(114,3,1),(115,1,1),(115,2,1),(115,3,1),(117,1,1),(117,2,1),(117,3,1),(118,1,1),(118,2,1),(118,3,1),(119,1,4),(119,2,4),(119,3,4),(120,1,4),(120,2,4),(120,3,4),(121,1,1),(121,2,1),(121,3,1),(122,1,1),(122,2,1),(122,3,1),(123,1,4),(123,2,4),(123,3,4),(124,1,1),(124,2,1),(124,3,1),(125,1,1),(125,2,1),(125,3,1),(126,1,4),(126,2,4),(126,3,4),(127,1,1),(127,2,1),(127,3,1),(128,1,1),(128,2,1),(128,3,1),(129,1,1),(129,2,1),(129,3,1),(130,1,1),(130,2,1),(130,3,1),(131,1,1),(131,2,1),(131,3,1),(132,1,4),(132,2,4),(132,3,4),(133,1,4),(133,2,4),(133,3,4),(134,1,4),(134,2,4),(134,3,4),(135,1,4),(135,2,4),(135,3,4),(138,1,4),(138,2,4),(138,3,4),(139,1,4),(139,2,4),(139,3,4),(140,1,4),(140,2,4),(140,3,4),(141,1,4),(141,2,4),(141,3,4),(142,1,1),(142,2,1),(142,3,1),(143,1,4),(143,2,4),(143,3,4),(144,1,1),(144,2,1),(144,3,1),(145,1,4),(145,2,4),(145,3,4),(146,1,1),(146,2,1),(146,3,1),(147,1,4),(147,2,4),(147,3,4),(148,1,4),(148,2,4),(148,3,4),(149,1,4),(149,2,4),(149,3,4),(150,1,4),(150,2,4),(150,3,4),(151,1,4),(151,2,4),(151,3,4),(152,1,4),(152,2,4),(152,3,4),(153,1,4),(153,2,4),(153,3,4),(154,1,4),(154,2,4),(154,3,4),(155,1,4),(155,2,4),(155,3,4),(156,1,4),(156,2,4),(156,3,4),(157,1,4),(157,2,4),(157,3,4),(158,1,4),(158,2,4),(158,3,4),(159,1,4),(159,2,4),(159,3,4),(160,1,4),(160,2,4),(160,3,4),(161,1,4),(161,2,4),(161,3,4),(162,1,4),(162,2,4),(162,3,4),(163,1,4),(163,2,4),(163,3,4),(164,1,4),(164,2,4),(164,3,4),(165,1,4),(165,2,4),(165,3,4),(166,1,4),(166,2,4),(166,3,4); /*!40000 ALTER TABLE `catalog_product_enabled_index` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_entity` -- DROP TABLE IF EXISTS `catalog_product_entity`; CREATE TABLE `catalog_product_entity` ( `entity_id` int(10) unsigned NOT NULL auto_increment, `entity_type_id` smallint(8) unsigned NOT NULL default '0', `attribute_set_id` smallint(5) unsigned NOT NULL default '0', `type_id` varchar(32) NOT NULL default 'simple', `sku` varchar(64) default NULL, `category_ids` text, `created_at` datetime NOT NULL default '0000-00-00 00:00:00', `updated_at` datetime NOT NULL default '0000-00-00 00:00:00', `has_options` smallint(1) NOT NULL default '0', PRIMARY KEY (`entity_id`), KEY `FK_CATALOG_PRODUCT_ENTITY_ENTITY_TYPE` (`entity_type_id`), KEY `FK_CATALOG_PRODUCT_ENTITY_ATTRIBUTE_SET_ID` (`attribute_set_id`), KEY `sku` (`sku`), CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_ATTRIBUTE_SET_ID` FOREIGN KEY (`attribute_set_id`) REFERENCES `eav_attribute_set` (`attribute_set_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_ENTITY_TYPE` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=167 DEFAULT CHARSET=utf8 COMMENT='Product Entityies'; -- -- Dumping data for table `catalog_product_entity` -- LOCK TABLES `catalog_product_entity` WRITE; /*!40000 ALTER TABLE `catalog_product_entity` DISABLE KEYS */; INSERT INTO `catalog_product_entity` VALUES (16,10,38,'simple','n2610','8','2007-08-23 13:03:05','2008-08-08 14:50:04',0),(17,10,38,'simple','bb8100','8','2007-08-23 15:40:26','2008-08-08 14:50:23',0),(18,10,38,'simple','sw810i','8','2007-08-23 15:47:44','2008-08-08 14:50:56',0),(19,10,38,'simple','8525PDA','8','2007-08-23 15:55:29','2008-08-08 14:51:11',0),(20,10,38,'simple','MM-A900M','8','2007-08-23 18:06:42','2008-08-08 14:51:27',0),(25,10,39,'simple','MA464LL/A','15,28','2007-08-24 14:28:50','2008-07-28 21:27:34',1),(26,10,39,'simple','LX.FR206.001','15,28','2007-08-24 14:35:16','2008-08-05 07:14:52',1),(27,10,39,'simple','VGN-TXN27N/B','','2007-08-24 14:41:56','2008-08-06 05:12:24',0),(28,10,39,'simple','M285-E','15,28','2007-08-24 14:47:57','2008-08-08 14:51:44',0),(29,10,40,'simple','cn_3','','2007-08-24 18:53:19','2008-08-08 00:51:34',0),(30,10,40,'simple','asc_8','16','2007-08-24 19:00:49','2008-07-31 17:23:28',0),(31,10,40,'simple','steve_4','17','2007-08-24 19:05:50','2008-08-08 01:02:40',0),(32,10,40,'simple','nine_3','17','2007-08-24 19:12:54','2008-07-31 18:06:25',0),(33,10,40,'simple','ecco_3','17','2007-08-24 19:21:42','2008-08-08 01:04:49',0),(34,10,40,'simple','ken_8','16','2007-08-24 19:27:04','2008-08-08 00:58:35',0),(35,10,41,'simple','coal_sm','4','2007-08-24 19:49:30','2008-07-31 17:36:42',0),(36,10,41,'simple','ink_sm','4','2007-08-24 19:53:06','2008-08-08 00:49:48',0),(37,10,41,'simple','oc_sm','4','2007-08-24 19:59:39','2008-08-08 00:47:47',0),(38,10,41,'simple','zol_r_sm','4','2007-08-24 20:02:08','2008-08-08 00:39:57',0),(39,10,41,'simple','4fasd5f5','19','2007-08-24 20:07:02','2008-06-24 23:45:44',0),(41,10,42,'simple','384822','23','2007-08-27 10:43:59','2008-07-29 22:28:43',0),(42,10,42,'simple','bar1234','23','2007-08-27 10:50:01','2008-06-24 23:59:46',0),(44,10,44,'simple','Rebel XT','26','2007-08-28 13:06:05','2008-06-24 22:50:46',0),(45,10,44,'simple','QC-2185','26','2007-08-28 13:18:56','2008-08-08 14:52:48',0),(46,10,44,'simple','750','12,26','2007-08-28 13:23:34','2008-08-08 14:57:57',0),(47,10,44,'simple','A630','26','2007-08-28 13:27:14','2008-08-08 14:58:14',0),(48,10,44,'simple','C530','26','2007-08-28 13:32:20','2008-08-08 14:58:41',0),(49,10,40,'simple','ana_9','17','2007-08-28 15:09:50','2008-08-08 01:07:50',0),(51,10,42,'simple','1111','22','2007-08-28 16:25:46','2008-08-08 14:59:04',0),(52,10,42,'simple','1112','22','2007-08-28 16:29:24','2008-08-08 14:59:17',0),(53,10,42,'simple','1113','22','2007-08-28 16:32:24','2008-08-08 14:59:40',0),(54,10,42,'grouped','1114','22','2007-08-28 16:38:54','2008-08-08 15:00:22',0),(74,10,40,'simple','ana_3','17','2007-08-28 15:09:50','2008-08-08 13:19:48',0),(75,10,40,'simple','ana_4','17','2007-08-28 15:09:50','2008-08-08 01:07:18',0),(79,10,40,'simple','ana_5','17','2007-08-28 15:09:50','2008-08-08 01:07:11',0),(80,10,40,'simple','ana_6','17','2007-08-28 15:09:50','2008-08-08 01:07:25',0),(81,10,40,'simple','ana_7','17','2007-08-28 15:09:50','2008-08-08 01:07:32',0),(82,10,40,'simple','ana_8','17','2007-08-28 15:09:50','2008-08-08 01:07:44',0),(83,10,40,'configurable','cn','16,17','2007-08-29 10:32:52','2008-08-08 15:00:07',1),(84,10,40,'simple','cn_4','16,17','2007-08-24 18:53:19','2008-08-08 00:53:37',0),(85,10,40,'simple','cn_5','16,17','2007-08-24 18:53:19','2008-08-08 00:53:55',0),(86,10,40,'simple','cn_6','16,17','2007-08-24 18:53:19','2008-08-08 00:53:50',0),(87,10,40,'simple','cn_7','16,17','2007-08-24 18:53:19','2008-08-08 00:54:00',0),(88,10,40,'simple','cn_m8','16,17','2007-08-24 18:53:19','2008-08-08 00:54:10',0),(89,10,40,'simple','cn_m9','16,17','2007-08-24 18:53:19','2008-08-08 00:54:27',0),(90,10,40,'simple','cn_m10','16,17','2007-08-24 18:53:19','2008-08-08 00:54:36',0),(91,10,40,'simple','cn_m11','16,17','2007-08-24 18:53:19','2008-08-08 00:54:40',0),(92,10,40,'simple','cn_m12','16,17','2007-08-24 18:53:19','2008-08-08 00:54:45',0),(93,10,40,'configurable','asc','16','2007-08-29 11:46:47','2008-08-08 15:00:35',1),(94,10,40,'simple','asc_9','16','2007-08-24 19:00:49','2008-07-31 17:23:18',0),(95,10,40,'simple','asc_10','16','2007-08-24 19:00:49','2008-07-31 17:23:37',0),(96,10,40,'simple','asc_11','16','2007-08-24 19:00:49','2008-07-31 17:23:47',0),(97,10,40,'simple','asc_12','16','2007-08-24 19:00:49','2008-07-31 17:23:58',0),(98,10,40,'configurable','ken','16','2007-08-29 12:09:17','2008-08-08 14:29:46',1),(99,10,40,'simple','ken_9','16','2007-08-24 19:27:04','2008-08-08 00:57:45',0),(100,10,40,'simple','ken_10','16','2007-08-24 19:27:04','2008-08-08 00:56:05',0),(101,10,40,'simple','ken_11','16','2007-08-24 19:27:04','2008-08-08 00:57:03',0),(102,10,40,'simple','ken_12','16','2007-08-24 19:27:04','2008-08-08 00:57:40',0),(103,10,40,'configurable','steve','17','2007-08-29 12:29:46','2008-08-08 15:02:24',1),(104,10,40,'simple','steve_5','17','2007-08-24 19:05:50','2008-08-08 01:02:34',0),(105,10,40,'simple','steve_6','17','2007-08-24 19:05:50','2008-08-08 01:02:56',0),(106,10,40,'simple','steve_7','17','2007-08-24 19:05:50','2008-08-08 01:03:00',0),(107,10,40,'simple','steve_8','17','2007-08-24 19:05:50','2008-08-08 01:03:06',0),(108,10,40,'configurable','nine','17','2007-08-29 12:52:39','2008-08-08 15:02:34',1),(109,10,40,'simple','nine_4','17','2007-08-24 19:12:54','2008-07-31 18:06:49',0),(110,10,40,'simple','nine_5','17','2007-08-24 19:12:54','2008-07-31 18:06:42',0),(111,10,40,'simple','nine_6','17','2007-08-24 19:12:54','2008-07-31 18:07:09',0),(112,10,40,'configurable','ecco','17','2007-08-29 13:17:43','2008-08-08 15:02:49',1),(113,10,40,'simple','ecco_4','17','2007-08-24 19:21:42','2008-08-08 01:04:28',0),(114,10,40,'simple','ecco_5','17','2007-08-24 19:21:42','2008-08-08 01:04:37',0),(115,10,40,'simple','ecco_6','17','2007-08-24 19:21:42','2008-08-08 01:04:44',0),(117,10,41,'simple','coal_md','4','2007-08-24 19:49:30','2008-07-31 17:37:23',0),(118,10,41,'simple','coal_lrg','4','2007-08-24 19:49:30','2008-07-31 17:38:30',0),(119,10,41,'configurable','coal_1','4','2007-08-29 15:00:05','2008-08-08 13:26:35',1),(120,10,41,'configurable','ink','4','2007-08-29 15:06:16','2008-08-08 15:05:04',1),(121,10,41,'simple','ink_med','4','2007-08-24 19:53:06','2008-08-08 00:49:36',0),(122,10,41,'simple','ink_lrg','4','2007-08-24 19:53:06','2008-08-08 00:49:19',0),(123,10,41,'configurable','oc','4','2007-08-29 15:14:29','2008-06-24 22:59:14',1),(124,10,41,'simple','oc_med','4','2007-08-24 19:59:39','2008-08-08 00:47:56',0),(125,10,41,'simple','oc_lrg','4','2007-08-24 19:59:39','2008-08-08 00:48:14',0),(126,10,41,'configurable','zol','4','2007-08-29 15:31:56','2008-08-08 15:05:22',1),(127,10,41,'simple','zol_g_sm','4','2007-08-24 20:02:08','2008-08-08 00:40:33',0),(128,10,41,'simple','zol_r_med','4','2007-08-24 20:02:08','2008-08-08 00:41:39',0),(129,10,41,'simple','zol_g_med','4','2007-08-24 20:02:08','2008-08-08 00:40:59',0),(130,10,41,'simple','zol_r_lrg','4','2007-08-24 20:02:08','2008-08-08 00:40:28',0),(131,10,41,'simple','zol_g_lrg','4','2007-08-24 20:02:08','2008-08-08 00:41:10',0),(132,10,9,'simple','ac674','25','2007-08-29 19:53:55','2008-08-08 15:05:45',0),(133,10,9,'simple','ac9003','25','2007-08-29 19:56:27','2008-06-28 01:57:22',0),(134,10,9,'simple','ac-66332','25','2007-08-29 19:59:29','2008-06-28 01:57:16',0),(135,10,40,'configurable','ana','17','2007-08-30 11:22:53','2008-08-08 15:06:02',1),(137,10,41,'simple','zol_b_med','','2007-10-04 07:46:58','2008-08-08 00:41:29',0),(138,10,9,'simple','apevia-black','32','2008-07-25 00:52:03','2008-08-08 13:36:29',0),(139,10,9,'simple','nzxtlexa','32','2008-07-25 00:54:41','2008-07-25 00:54:41',0),(140,10,58,'simple','2gbdimm','15,31','2008-07-25 00:59:55','2008-07-25 02:14:23',0),(141,10,58,'simple','1gbdimm','15,31','2008-07-25 01:02:21','2008-07-25 02:13:04',0),(142,10,59,'virtual','1yr_p_l','','2008-07-25 01:02:54','2008-07-25 01:02:54',0),(143,10,58,'simple','512dimm','15,31','2008-07-25 01:05:00','2008-07-25 02:12:45',0),(144,10,59,'virtual','2yr_p_l','','2008-07-25 01:06:02','2008-07-25 01:06:02',0),(145,10,60,'simple','amdphenom','33','2008-07-25 01:07:37','2008-08-08 15:10:32',0),(146,10,59,'virtual','3yr_p_l','','2008-07-25 01:07:50','2008-07-25 01:07:50',0),(147,10,61,'simple','226bw','30','2008-07-25 01:10:17','2008-08-08 15:33:30',0),(148,10,60,'simple','amda64','33','2008-07-25 01:10:21','2008-08-08 15:11:01',0),(149,10,62,'simple','1tb7200','29','2008-07-25 01:12:44','2008-07-25 02:10:08',0),(150,10,62,'simple','500gb7200','29','2008-07-25 01:12:44','2008-07-25 02:09:26',0),(151,10,60,'simple','intelc2d','33','2008-07-25 01:13:21','2008-08-08 15:33:10',0),(152,10,61,'simple','W2452T-TF','30','2008-07-25 01:14:11','2008-08-08 15:33:00',0),(153,10,60,'simple','intelcore2extreme','33','2008-07-25 01:15:29','2008-08-08 15:32:36',0),(154,10,62,'simple','500gb5400','29','2008-07-25 01:16:03','2008-07-25 02:08:37',0),(155,10,62,'simple','250gb5400','29','2008-07-25 01:16:03','2008-07-25 02:07:40',0),(156,10,61,'simple','W1952TQ-TF','30','2008-07-25 01:16:51','2008-08-08 15:33:26',0),(157,10,61,'simple','M9179LL','30','2008-07-25 01:19:30','2008-08-08 15:32:12',0),(158,10,39,'bundle','VGN-TXN27N/BW','28','2008-07-25 01:21:23','2008-07-25 02:05:56',1),(159,10,9,'simple','microsoftnatural','34','2008-07-25 01:22:14','2008-08-08 15:31:54',0),(160,10,9,'simple','logitechcord','34','2008-07-25 01:24:15','2008-08-08 15:31:33',0),(161,10,9,'simple','logidinovo','34','2008-07-25 01:25:09','2008-08-08 15:31:22',0),(162,10,9,'simple','micronmouse5000','34','2008-07-25 01:25:11','2008-08-08 15:31:01',0),(163,10,9,'bundle','computer','15,27','2008-07-25 01:34:24','2008-07-29 01:33:10',1),(164,10,9,'bundle','computer_fixed','27','2008-07-25 01:36:33','2008-07-31 09:30:37',1),(165,10,39,'bundle','mycomputer','27','2008-07-25 01:40:27','2008-07-31 16:19:40',1),(166,10,38,'simple','HTC Touch Diamond','8','2008-07-25 02:22:13','2008-07-25 02:22:44',0); /*!40000 ALTER TABLE `catalog_product_entity` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_entity_datetime` -- DROP TABLE IF EXISTS `catalog_product_entity_datetime`; CREATE TABLE `catalog_product_entity_datetime` ( `value_id` int(11) NOT NULL auto_increment, `entity_type_id` smallint(5) unsigned NOT NULL default '0', `attribute_id` smallint(5) unsigned NOT NULL default '0', `store_id` smallint(5) unsigned NOT NULL default '0', `entity_id` int(10) unsigned NOT NULL default '0', `value` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (`value_id`), KEY `FK_CATALOG_PRODUCT_ENTITY_DATETIME_ATTRIBUTE` (`attribute_id`), KEY `FK_CATALOG_PRODUCT_ENTITY_DATETIME_STORE` (`store_id`), KEY `FK_CATALOG_PRODUCT_ENTITY_DATETIME_PRODUCT_ENTITY` (`entity_id`), KEY `IDX_ATTRIBUTE_VALUE` (`entity_id`,`attribute_id`,`store_id`), CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_DATETIME_ATTRIBUTE` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_DATETIME_PRODUCT_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_DATETIME_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; -- -- Dumping data for table `catalog_product_entity_datetime` -- LOCK TABLES `catalog_product_entity_datetime` WRITE; /*!40000 ALTER TABLE `catalog_product_entity_datetime` DISABLE KEYS */; INSERT INTO `catalog_product_entity_datetime` VALUES (1,10,568,0,165,'2008-07-30 00:00:00'); /*!40000 ALTER TABLE `catalog_product_entity_datetime` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_entity_decimal` -- DROP TABLE IF EXISTS `catalog_product_entity_decimal`; CREATE TABLE `catalog_product_entity_decimal` ( `value_id` int(11) NOT NULL auto_increment, `entity_type_id` smallint(5) unsigned NOT NULL default '0', `attribute_id` smallint(5) unsigned NOT NULL default '0', `store_id` smallint(5) unsigned NOT NULL default '0', `entity_id` int(10) unsigned NOT NULL default '0', `value` decimal(12,4) NOT NULL default '0.0000', PRIMARY KEY (`value_id`), KEY `FK_CATALOG_PRODUCT_ENTITY_DECIMAL_STORE` (`store_id`), KEY `FK_CATALOG_PRODUCT_ENTITY_DECIMAL_PRODUCT_ENTITY` (`entity_id`), KEY `FK_CATALOG_PRODUCT_ENTITY_DECIMAL_ATTRIBUTE` (`attribute_id`), KEY `IDX_ATTRIBUTE_VALUE` (`entity_id`,`attribute_id`,`store_id`), CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_DECIMAL_ATTRIBUTE` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_DECIMAL_PRODUCT_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_DECIMAL_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=411 DEFAULT CHARSET=utf8; -- -- Dumping data for table `catalog_product_entity_decimal` -- LOCK TABLES `catalog_product_entity_decimal` WRITE; /*!40000 ALTER TABLE `catalog_product_entity_decimal` DISABLE KEYS */; INSERT INTO `catalog_product_entity_decimal` VALUES (1,10,101,0,16,'3.2000'),(2,10,99,0,16,'149.9900'),(3,10,100,0,16,'20.0000'),(4,10,101,0,17,'15.2000'),(5,10,99,0,17,'349.9900'),(6,10,100,0,17,'29.9900'),(7,10,101,0,18,'13.6000'),(8,10,99,0,18,'399.9900'),(9,10,100,0,18,'29.9900'),(10,10,101,0,20,'1.0000'),(11,10,99,0,20,'150.0000'),(12,10,100,0,20,'29.9900'),(13,10,101,0,25,'10.6000'),(14,10,99,0,25,'2299.9900'),(15,10,100,0,25,'1299.9900'),(16,10,101,0,26,'11.4000'),(17,10,99,0,26,'1799.9900'),(18,10,100,0,26,'999.9900'),(19,10,101,0,27,'2.8000'),(20,10,99,0,27,'2699.9900'),(21,10,100,0,27,'899.9900'),(22,10,101,0,28,'10.0000'),(23,10,99,0,28,'1599.9900'),(24,10,100,0,28,'899.9900'),(25,10,101,0,29,'1.0000'),(26,10,99,0,29,'15.9900'),(27,10,100,0,29,'1.0000'),(28,10,101,0,30,'3.0000'),(29,10,99,0,30,'134.9900'),(30,10,100,0,30,'29.9900'),(31,10,101,0,31,'2.0000'),(32,10,99,0,31,'69.9900'),(33,10,100,0,31,'29.9900'),(34,10,101,0,32,'2.0000'),(35,10,99,0,32,'89.9900'),(36,10,100,0,32,'29.9900'),(37,10,101,0,33,'4.0000'),(38,10,99,0,33,'159.9900'),(39,10,100,0,33,'29.9900'),(40,10,101,0,34,'2.0000'),(41,10,99,0,34,'160.9900'),(42,10,100,0,34,'29.9900'),(43,10,101,0,35,'0.5000'),(44,10,99,0,35,'15.0000'),(45,10,100,0,35,'2.0000'),(46,10,101,0,36,'0.5000'),(47,10,99,0,36,'22.0000'),(48,10,100,0,36,'2.0000'),(49,10,101,0,37,'0.4400'),(50,10,99,0,37,'15.0000'),(51,10,100,0,37,'2.0000'),(52,10,101,0,38,'0.4400'),(53,10,99,0,38,'13.5000'),(54,10,100,0,38,'2.0000'),(55,10,101,0,19,'30.0000'),(56,10,99,0,19,'199.9900'),(57,10,100,0,19,'29.9900'),(58,10,101,0,39,'1.7500'),(59,10,99,0,39,'30.0000'),(60,10,100,0,39,'5.0000'),(61,10,101,0,41,'128.9700'),(62,10,99,0,41,'399.9900'),(63,10,100,0,41,'100.0000'),(64,10,503,0,41,'399.9900'),(65,10,101,0,42,'150.0000'),(66,10,99,0,42,'2299.0000'),(67,10,100,0,42,'800.0000'),(68,10,503,0,42,'2299.0000'),(69,10,503,0,28,'1599.9900'),(70,10,503,0,27,'2699.9900'),(71,10,503,0,26,'1799.9900'),(72,10,503,0,25,'2299.9900'),(73,10,101,0,44,'4.0000'),(74,10,99,0,44,'550.0000'),(75,10,100,0,44,'200.0000'),(76,10,503,0,44,'449.0000'),(77,10,101,0,45,'1.0000'),(78,10,99,0,45,'37.4900'),(79,10,100,0,45,'20.0000'),(80,10,100,0,46,'29.9900'),(81,10,503,0,46,'161.9400'),(82,10,101,0,47,'3.0000'),(83,10,101,0,48,'2.0000'),(84,10,99,0,48,'199.9900'),(85,10,100,0,48,'29.9900'),(86,10,100,0,49,'10.0000'),(87,10,503,0,49,'41.9500'),(88,10,101,0,51,'20.0000'),(89,10,99,0,51,'299.9900'),(90,10,100,0,51,'50.0000'),(91,10,503,0,51,'299.9900'),(92,10,101,0,52,'50.0000'),(93,10,99,0,52,'129.9900'),(94,10,100,0,52,'50.0000'),(95,10,100,0,53,'200.0000'),(96,10,503,0,53,'599.9900'),(97,10,101,0,54,'500.0000'),(98,10,99,0,54,'699.9900'),(99,10,100,0,54,'300.0000'),(100,10,503,0,54,'699.9900'),(101,10,503,0,19,'199.9900'),(102,10,503,0,17,'349.9900'),(103,10,503,0,29,'15.9900'),(104,10,503,0,35,'15.0000'),(105,10,503,0,30,'134.9900'),(106,10,503,0,36,'22.0000'),(107,10,101,0,74,'2.0000'),(108,10,99,0,74,'41.9500'),(109,10,100,0,74,'10.0000'),(110,10,503,0,74,'41.9500'),(111,10,101,0,75,'2.0000'),(112,10,99,0,75,'41.9500'),(113,10,100,0,75,'10.0000'),(114,10,503,0,75,'41.9500'),(115,10,101,0,79,'2.0000'),(116,10,99,0,79,'41.9500'),(117,10,100,0,79,'10.0000'),(118,10,503,0,79,'41.9500'),(119,10,101,0,80,'2.0000'),(120,10,99,0,80,'41.9500'),(121,10,100,0,80,'10.0000'),(122,10,100,0,81,'10.0000'),(123,10,503,0,81,'41.9500'),(124,10,101,0,82,'2.0000'),(125,10,101,0,83,'1.0000'),(126,10,99,0,83,'15.9900'),(127,10,100,0,83,'2.0000'),(128,10,100,0,84,'1.0000'),(129,10,503,0,84,'15.9900'),(130,10,101,0,85,'1.0000'),(131,10,101,0,86,'1.0000'),(132,10,99,0,86,'15.9900'),(133,10,100,0,86,'1.0000'),(134,10,100,0,87,'1.0000'),(135,10,503,0,87,'15.9900'),(136,10,101,0,88,'1.0000'),(137,10,101,0,89,'1.0000'),(138,10,99,0,89,'15.9900'),(139,10,100,0,89,'1.0000'),(140,10,100,0,90,'1.0000'),(141,10,503,0,90,'15.9900'),(142,10,101,0,91,'1.0000'),(143,10,101,0,92,'1.0000'),(144,10,99,0,92,'15.9900'),(145,10,100,0,92,'1.0000'),(146,10,100,0,93,'29.9900'),(147,10,503,0,93,'134.9900'),(148,10,101,0,94,'3.0000'),(149,10,101,0,95,'3.0000'),(150,10,99,0,95,'134.9900'),(151,10,100,0,95,'29.9900'),(152,10,100,0,96,'29.9900'),(153,10,503,0,96,'134.9900'),(154,10,101,0,97,'3.0000'),(155,10,101,0,98,'2.0000'),(156,10,99,0,98,'160.9900'),(157,10,100,0,98,'29.9900'),(158,10,99,0,99,'160.9900'),(159,10,100,0,99,'29.9900'),(160,10,503,0,99,'160.9900'),(161,10,100,0,101,'29.9900'),(162,10,503,0,101,'160.9900'),(163,10,101,0,102,'2.0000'),(164,10,101,0,103,'2.0000'),(165,10,99,0,103,'69.9900'),(166,10,100,0,103,'29.9900'),(167,10,503,0,103,'69.9900'),(168,10,503,0,31,'69.9900'),(169,10,101,0,104,'2.0000'),(170,10,99,0,104,'69.9900'),(171,10,100,0,104,'29.9900'),(172,10,503,0,104,'69.9900'),(173,10,101,0,105,'2.0000'),(174,10,99,0,105,'69.9900'),(175,10,100,0,105,'29.9900'),(176,10,503,0,105,'69.9900'),(177,10,101,0,106,'2.0000'),(178,10,99,0,106,'69.9900'),(179,10,100,0,106,'29.9900'),(180,10,503,0,106,'69.9900'),(181,10,101,0,107,'2.0000'),(182,10,99,0,107,'69.9900'),(183,10,100,0,107,'29.9900'),(184,10,503,0,107,'69.9900'),(185,10,101,0,108,'2.0000'),(186,10,99,0,108,'89.9900'),(187,10,100,0,108,'29.9900'),(188,10,503,0,108,'89.9900'),(189,10,503,0,32,'89.9900'),(190,10,101,0,109,'2.0000'),(191,10,99,0,109,'89.9900'),(192,10,100,0,109,'29.9900'),(193,10,503,0,109,'89.9900'),(194,10,101,0,110,'2.0000'),(195,10,99,0,110,'89.9900'),(196,10,100,0,110,'29.9900'),(197,10,503,0,110,'89.9900'),(198,10,101,0,111,'2.0000'),(199,10,99,0,111,'89.9900'),(200,10,100,0,112,'29.9900'),(201,10,503,0,112,'159.9900'),(202,10,101,0,113,'4.0000'),(203,10,99,0,113,'159.9900'),(204,10,100,0,114,'29.9900'),(205,10,503,0,114,'159.9900'),(206,10,101,0,115,'4.0000'),(207,10,99,0,115,'159.9900'),(208,10,100,0,115,'29.9900'),(209,10,503,0,115,'159.9900'),(210,10,503,0,33,'159.9900'),(211,10,101,0,117,'0.5000'),(212,10,99,0,117,'15.0000'),(213,10,100,0,117,'2.0000'),(214,10,503,0,117,'15.0000'),(215,10,101,0,118,'0.5000'),(216,10,99,0,118,'15.0000'),(217,10,100,0,118,'2.0000'),(218,10,503,0,118,'15.0000'),(219,10,101,0,119,'0.5000'),(220,10,99,0,120,'22.0000'),(221,10,100,0,120,'2.0000'),(222,10,503,0,120,'18.0000'),(223,10,101,0,121,'0.5000'),(224,10,99,0,121,'22.0000'),(225,10,100,0,121,'2.0000'),(226,10,503,0,121,'22.0000'),(227,10,101,0,122,'0.5000'),(228,10,99,0,122,'22.0000'),(229,10,100,0,123,'2.0000'),(230,10,503,0,123,'10.0000'),(231,10,503,0,37,'15.0000'),(232,10,101,0,124,'0.4400'),(233,10,99,0,124,'15.0000'),(234,10,100,0,124,'2.0000'),(235,10,503,0,124,'15.0000'),(236,10,101,0,125,'0.4400'),(237,10,99,0,126,'13.5000'),(238,10,100,0,126,'2.0000'),(239,10,503,0,126,'9.5000'),(240,10,503,0,38,'13.5000'),(241,10,101,0,127,'0.4400'),(242,10,99,0,127,'13.5000'),(243,10,100,0,127,'2.0000'),(244,10,503,0,128,'13.5000'),(245,10,101,0,129,'0.4400'),(246,10,99,0,129,'13.5000'),(247,10,100,0,129,'2.0000'),(248,10,503,0,129,'13.5000'),(249,10,101,0,130,'0.4400'),(250,10,99,0,130,'13.5000'),(251,10,100,0,131,'2.0000'),(252,10,503,0,131,'13.5000'),(253,10,503,0,20,'150.0000'),(254,10,99,0,132,'99.0000'),(255,10,503,0,132,'99.0000'),(256,10,99,0,134,'19.0000'),(257,10,503,0,134,'19.0000'),(258,10,101,0,135,'2.0000'),(259,10,99,0,135,'41.9500'),(260,10,100,0,135,'10.0000'),(261,10,503,0,135,'41.9500'),(262,10,101,0,137,'0.4400'),(263,10,99,0,137,'13.5000'),(264,10,100,0,137,'2.0000'),(265,10,101,0,139,'10.0000'),(266,10,99,0,139,'199.9900'),(267,10,101,0,140,'1.0000'),(268,10,99,0,140,'199.9900'),(269,10,101,0,141,'1.0000'),(270,10,99,0,141,'150.9900'),(271,10,99,0,142,'150.0000'),(272,10,101,0,143,'1.0000'),(273,10,99,0,143,'99.9900'),(274,10,99,0,144,'250.0000'),(275,10,101,0,145,'1.0000'),(276,10,101,0,148,'1.0000'),(277,10,99,0,148,'98.9900'),(278,10,101,0,149,'1.0000'),(279,10,99,0,151,'98.9900'),(280,10,101,0,152,'1.0000'),(281,10,99,0,152,'699.9900'),(282,10,101,0,155,'1.0000'),(283,10,99,0,155,'99.0000'),(284,10,101,0,156,'1.0000'),(285,10,99,0,159,'99.9900'),(286,10,101,0,160,'1.0000'),(287,10,99,0,160,'79.9900'),(288,10,101,0,161,'1.0000'),(289,10,101,0,162,'1.0000'),(290,10,99,0,162,'59.9900'),(291,10,101,0,164,'20.0000'),(292,10,99,0,164,'4999.9500'),(293,10,101,0,165,'10.0000'),(294,10,101,0,166,'0.3000'),(295,10,99,0,166,'750.0000'),(296,10,567,0,165,'75.0000'),(297,10,101,0,132,'42.0000'),(298,10,503,0,45,'37.4900'),(299,10,101,0,46,'2.0000'),(300,10,99,0,46,'161.9400'),(301,10,99,0,47,'329.9900'),(302,10,100,0,47,'29.9900'),(303,10,503,0,47,'329.9900'),(304,10,503,0,48,'199.9900'),(305,10,101,0,49,'2.0000'),(306,10,99,0,49,'41.9500'),(307,10,503,0,52,'129.9900'),(308,10,101,0,53,'200.0000'),(309,10,99,0,53,'599.9900'),(310,10,503,0,80,'41.9500'),(311,10,101,0,81,'2.0000'),(312,10,99,0,81,'41.9500'),(313,10,99,0,82,'41.9500'),(314,10,100,0,82,'10.0000'),(315,10,503,0,82,'41.9500'),(316,10,503,0,83,'13.9900'),(317,10,101,0,84,'1.0000'),(318,10,99,0,84,'15.9900'),(319,10,99,0,85,'15.9900'),(320,10,100,0,85,'1.0000'),(321,10,503,0,85,'15.9900'),(322,10,503,0,86,'15.9900'),(323,10,101,0,87,'1.0000'),(324,10,99,0,87,'15.9900'),(325,10,99,0,88,'15.9900'),(326,10,100,0,88,'1.0000'),(327,10,503,0,88,'15.9900'),(328,10,503,0,89,'15.9900'),(329,10,101,0,90,'1.0000'),(330,10,99,0,90,'15.9900'),(331,10,99,0,91,'15.9900'),(332,10,100,0,91,'1.0000'),(333,10,503,0,91,'15.9900'),(334,10,503,0,92,'15.9900'),(335,10,101,0,93,'3.0000'),(336,10,99,0,93,'134.9900'),(337,10,99,0,94,'134.9900'),(338,10,100,0,94,'29.9900'),(339,10,503,0,94,'134.9900'),(340,10,503,0,95,'134.9900'),(341,10,101,0,96,'3.0000'),(342,10,99,0,96,'134.9900'),(343,10,99,0,97,'134.9900'),(344,10,100,0,97,'29.9900'),(345,10,503,0,97,'134.9900'),(346,10,503,0,98,'160.9900'),(347,10,503,0,34,'160.9900'),(348,10,101,0,99,'2.0000'),(349,10,101,0,100,'2.0000'),(350,10,99,0,100,'160.9900'),(351,10,100,0,100,'29.9900'),(352,10,503,0,100,'160.9900'),(353,10,101,0,101,'2.0000'),(354,10,99,0,101,'160.9900'),(355,10,99,0,102,'160.9900'),(356,10,100,0,102,'29.9900'),(357,10,503,0,102,'160.9900'),(358,10,100,0,111,'29.9900'),(359,10,503,0,111,'89.9900'),(360,10,101,0,112,'4.0000'),(361,10,99,0,112,'159.9900'),(362,10,100,0,113,'29.9900'),(363,10,503,0,113,'159.9900'),(364,10,101,0,114,'4.0000'),(365,10,99,0,114,'159.9900'),(366,10,99,0,119,'15.0000'),(367,10,100,0,119,'2.0000'),(368,10,503,0,119,'10.0000'),(369,10,101,0,120,'0.5000'),(370,10,100,0,122,'2.0000'),(371,10,503,0,122,'22.0000'),(372,10,101,0,123,'0.4400'),(373,10,99,0,123,'100.0000'),(374,10,99,0,125,'15.0000'),(375,10,100,0,125,'2.0000'),(376,10,503,0,125,'15.0000'),(377,10,101,0,126,'0.4400'),(378,10,503,0,127,'13.5000'),(379,10,101,0,128,'0.4400'),(380,10,99,0,128,'13.5000'),(381,10,100,0,128,'2.0000'),(382,10,100,0,130,'2.0000'),(383,10,503,0,130,'13.5000'),(384,10,101,0,131,'0.4400'),(385,10,99,0,131,'13.5000'),(386,10,503,0,16,'149.9900'),(387,10,503,0,18,'399.9900'),(388,10,99,0,133,'34.0000'),(389,10,503,0,133,'34.0000'),(390,10,503,0,137,'13.5000'),(391,10,101,0,134,'5.0000'),(392,10,101,0,138,'10.0000'),(393,10,99,0,138,'150.0000'),(394,10,99,0,145,'335.9900'),(395,10,99,0,146,'325.0000'),(396,10,101,0,147,'1.0000'),(397,10,99,0,147,'399.9900'),(398,10,99,0,149,'399.0000'),(399,10,101,0,150,'1.0000'),(400,10,99,0,150,'299.0000'),(401,10,101,0,151,'1.0000'),(402,10,101,0,153,'1.0000'),(403,10,99,0,153,'2049.9900'),(404,10,101,0,154,'1.0000'),(405,10,99,0,154,'299.0000'),(406,10,99,0,156,'399.9900'),(407,10,101,0,157,'1.0000'),(408,10,99,0,157,'699.9900'),(409,10,101,0,159,'1.0000'),(410,10,99,0,161,'239.9900'); /*!40000 ALTER TABLE `catalog_product_entity_decimal` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_entity_gallery` -- DROP TABLE IF EXISTS `catalog_product_entity_gallery`; CREATE TABLE `catalog_product_entity_gallery` ( `value_id` int(11) NOT NULL auto_increment, `entity_type_id` smallint(5) unsigned NOT NULL default '0', `attribute_id` smallint(5) unsigned NOT NULL default '0', `store_id` smallint(5) unsigned NOT NULL default '0', `entity_id` int(10) unsigned NOT NULL default '0', `position` int(11) NOT NULL default '0', `value` varchar(255) NOT NULL default '', PRIMARY KEY (`value_id`), KEY `IDX_BASE` USING BTREE (`entity_type_id`,`entity_id`,`attribute_id`,`store_id`), KEY `FK_ATTRIBUTE_GALLERY_ENTITY` (`entity_id`), KEY `FK_CATALOG_CATEGORY_ENTITY_GALLERY_ATTRIBUTE` (`attribute_id`), KEY `FK_CATALOG_CATEGORY_ENTITY_GALLERY_STORE` (`store_id`), CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_GALLERY_ATTRIBUTE` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_GALLERY_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_GALLERY_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Dumping data for table `catalog_product_entity_gallery` -- LOCK TABLES `catalog_product_entity_gallery` WRITE; /*!40000 ALTER TABLE `catalog_product_entity_gallery` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_entity_gallery` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_entity_int` -- DROP TABLE IF EXISTS `catalog_product_entity_int`; CREATE TABLE `catalog_product_entity_int` ( `value_id` int(11) NOT NULL auto_increment, `entity_type_id` mediumint(8) unsigned NOT NULL default '0', `attribute_id` smallint(5) unsigned NOT NULL default '0', `store_id` smallint(5) unsigned NOT NULL default '0', `entity_id` int(10) unsigned NOT NULL default '0', `value` int(11) NOT NULL default '0', PRIMARY KEY (`value_id`), KEY `FK_CATALOG_PRODUCT_ENTITY_INT_ATTRIBUTE` (`attribute_id`), KEY `FK_CATALOG_PRODUCT_ENTITY_INT_STORE` (`store_id`), KEY `FK_CATALOG_PRODUCT_ENTITY_INT_PRODUCT_ENTITY` (`entity_id`), KEY `IDX_ATTRIBUTE_VALUE` (`entity_id`,`attribute_id`,`store_id`), CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_INT_ATTRIBUTE` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_INT_PRODUCT_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_INT_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=687 DEFAULT CHARSET=utf8; -- -- Dumping data for table `catalog_product_entity_int` -- LOCK TABLES `catalog_product_entity_int` WRITE; /*!40000 ALTER TABLE `catalog_product_entity_int` DISABLE KEYS */; INSERT INTO `catalog_product_entity_int` VALUES (1,10,273,0,16,1),(2,10,274,0,16,2),(3,10,272,0,16,24),(4,10,272,0,17,23),(5,10,273,0,17,1),(6,10,274,0,17,2),(7,10,272,0,18,24),(8,10,273,0,18,1),(9,10,274,0,18,2),(10,10,272,0,20,23),(11,10,273,0,20,1),(12,10,274,0,20,2),(13,10,272,0,25,23),(14,10,273,0,25,1),(15,10,274,0,25,2),(16,10,272,0,26,24),(17,10,273,0,26,1),(18,10,274,0,26,2),(19,10,272,0,27,24),(20,10,273,0,27,1),(21,10,274,0,27,2),(22,10,272,0,28,24),(23,10,273,0,28,1),(24,10,274,0,28,2),(25,10,501,0,29,35),(26,10,272,0,29,25),(27,10,502,0,29,46),(28,10,273,0,29,1),(29,10,274,0,29,2),(30,10,501,0,30,36),(31,10,272,0,30,61),(32,10,502,0,30,41),(33,10,107,0,30,49),(34,10,273,0,30,1),(35,10,274,0,30,2),(36,10,501,0,31,35),(37,10,272,0,31,26),(38,10,502,0,31,45),(39,10,107,0,31,51),(40,10,273,0,31,1),(41,10,274,0,31,2),(42,10,501,0,32,35),(43,10,272,0,32,26),(44,10,502,0,32,46),(45,10,107,0,32,51),(46,10,273,0,32,1),(47,10,274,0,32,2),(48,10,501,0,33,35),(49,10,502,0,33,46),(50,10,107,0,33,47),(51,10,273,0,33,1),(52,10,274,0,33,2),(53,10,501,0,34,36),(54,10,272,0,34,24),(55,10,502,0,34,41),(56,10,107,0,34,52),(57,10,273,0,34,1),(58,10,274,0,34,2),(59,10,272,0,35,22),(60,10,273,0,35,1),(61,10,274,0,35,2),(62,10,272,0,36,60),(63,10,273,0,36,1),(64,10,274,0,36,2),(65,10,272,0,37,60),(66,10,273,0,37,1),(67,10,274,0,37,2),(68,10,272,0,38,26),(69,10,273,0,38,1),(70,10,274,0,38,2),(71,10,272,0,19,23),(72,10,273,0,19,1),(73,10,274,0,19,2),(74,10,272,0,39,22),(75,10,273,0,39,1),(76,10,274,0,39,2),(77,10,272,0,41,59),(78,10,508,0,41,71),(79,10,273,0,41,1),(80,10,274,0,41,2),(81,10,272,0,42,59),(82,10,508,0,42,71),(83,10,273,0,42,1),(84,10,274,0,42,2),(85,10,272,0,44,24),(86,10,513,0,44,90),(87,10,273,0,44,1),(88,10,274,0,44,2),(89,10,272,0,45,23),(90,10,513,0,45,93),(91,10,273,0,45,1),(92,10,274,0,45,2),(93,10,272,0,46,23),(94,10,513,0,46,91),(95,10,273,0,46,1),(96,10,274,0,46,2),(97,10,272,0,47,23),(98,10,513,0,47,90),(99,10,273,0,47,1),(100,10,274,0,47,2),(101,10,272,0,48,23),(102,10,513,0,48,93),(103,10,273,0,48,1),(104,10,274,0,48,2),(105,10,501,0,49,35),(106,10,272,0,49,59),(107,10,502,0,49,40),(108,10,273,0,49,1),(109,10,274,0,49,2),(110,10,107,0,49,97),(111,10,272,0,51,26),(112,10,508,0,51,72),(113,10,273,0,51,1),(114,10,274,0,51,2),(115,10,272,0,52,26),(116,10,508,0,52,72),(117,10,273,0,52,1),(118,10,274,0,52,2),(119,10,272,0,53,26),(120,10,508,0,53,72),(121,10,273,0,53,1),(122,10,274,0,53,2),(123,10,272,0,54,26),(124,10,508,0,54,72),(125,10,273,0,54,1),(126,10,274,0,54,2),(127,10,526,0,16,4),(128,10,526,0,17,4),(129,10,526,0,18,4),(130,10,526,0,20,4),(131,10,526,0,25,4),(132,10,526,0,26,4),(133,10,526,0,27,4),(134,10,526,0,28,4),(135,10,526,0,29,1),(136,10,526,0,30,1),(137,10,526,0,31,1),(138,10,526,0,32,1),(139,10,526,0,33,1),(140,10,526,0,34,1),(141,10,526,0,35,1),(142,10,526,0,36,1),(143,10,526,0,37,1),(144,10,526,0,38,1),(145,10,526,0,41,4),(146,10,526,0,44,4),(147,10,526,0,45,4),(148,10,526,0,46,4),(149,10,526,0,47,4),(150,10,526,0,49,1),(151,10,526,0,53,4),(152,10,526,0,54,4),(153,10,510,0,28,74),(154,10,510,0,27,76),(155,10,510,0,25,77),(156,10,272,0,74,59),(157,10,502,0,74,46),(158,10,273,0,74,1),(159,10,274,0,74,2),(160,10,107,0,74,97),(161,10,526,0,74,1),(162,10,501,0,75,35),(163,10,272,0,75,59),(164,10,502,0,75,45),(165,10,273,0,75,1),(166,10,274,0,75,2),(167,10,107,0,75,97),(168,10,501,0,79,35),(169,10,273,0,79,1),(170,10,274,0,79,2),(171,10,107,0,79,97),(172,10,526,0,79,1),(173,10,501,0,80,35),(174,10,272,0,80,59),(175,10,502,0,80,43),(176,10,273,0,80,1),(177,10,274,0,80,2),(178,10,107,0,80,97),(179,10,526,0,80,1),(180,10,501,0,81,35),(181,10,272,0,81,59),(182,10,502,0,81,42),(183,10,273,0,81,1),(184,10,274,0,81,2),(185,10,107,0,81,97),(186,10,526,0,81,1),(187,10,501,0,82,35),(188,10,272,0,82,59),(189,10,502,0,82,41),(190,10,273,0,82,1),(191,10,274,0,82,2),(192,10,107,0,82,97),(193,10,526,0,82,1),(194,10,273,0,83,1),(195,10,274,0,83,2),(196,10,526,0,83,4),(197,10,107,0,83,97),(198,10,272,0,83,25),(199,10,501,0,84,35),(200,10,272,0,84,25),(201,10,502,0,84,45),(202,10,273,0,84,1),(203,10,274,0,84,2),(204,10,526,0,84,1),(205,10,107,0,84,97),(206,10,272,0,85,25),(207,10,274,0,85,2),(208,10,526,0,85,1),(209,10,107,0,85,97),(210,10,501,0,86,35),(211,10,502,0,86,43),(212,10,526,0,86,1),(213,10,107,0,86,97),(214,10,501,0,87,35),(215,10,272,0,87,25),(216,10,273,0,87,1),(217,10,107,0,87,97),(218,10,501,0,88,36),(219,10,272,0,88,25),(220,10,502,0,88,41),(221,10,274,0,88,2),(222,10,501,0,89,36),(223,10,272,0,89,25),(224,10,502,0,89,40),(225,10,273,0,89,1),(226,10,274,0,89,2),(227,10,526,0,89,1),(228,10,502,0,90,39),(229,10,526,0,90,1),(230,10,107,0,90,97),(231,10,501,0,91,36),(232,10,272,0,91,25),(233,10,502,0,91,38),(234,10,273,0,91,1),(235,10,274,0,91,2),(236,10,502,0,92,37),(237,10,526,0,92,1),(238,10,107,0,92,97),(239,10,273,0,93,1),(240,10,274,0,93,2),(241,10,526,0,93,4),(242,10,107,0,93,53),(243,10,272,0,93,61),(244,10,107,0,94,49),(245,10,526,0,94,1),(246,10,501,0,95,36),(247,10,272,0,95,61),(248,10,502,0,95,39),(249,10,107,0,95,49),(250,10,273,0,95,1),(251,10,274,0,95,2),(252,10,107,0,96,49),(253,10,526,0,96,1),(254,10,501,0,97,36),(255,10,272,0,97,61),(256,10,502,0,97,37),(257,10,107,0,97,49),(258,10,273,0,97,1),(259,10,274,0,98,2),(260,10,272,0,98,24),(261,10,501,0,98,36),(262,10,501,0,99,36),(263,10,272,0,99,24),(264,10,502,0,99,40),(265,10,107,0,99,52),(266,10,273,0,99,1),(267,10,502,0,100,39),(268,10,274,0,100,2),(269,10,526,0,100,1),(270,10,501,0,101,36),(271,10,272,0,101,24),(272,10,502,0,101,38),(273,10,107,0,101,52),(274,10,274,0,101,2),(275,10,526,0,101,1),(276,10,502,0,102,37),(277,10,107,0,102,52),(278,10,273,0,102,1),(279,10,274,0,102,2),(280,10,526,0,102,1),(281,10,274,0,103,2),(282,10,526,0,103,4),(283,10,501,0,103,35),(284,10,501,0,104,35),(285,10,272,0,104,26),(286,10,502,0,104,44),(287,10,107,0,104,51),(288,10,274,0,104,2),(289,10,526,0,104,1),(290,10,502,0,105,43),(291,10,107,0,105,51),(292,10,273,0,105,1),(293,10,274,0,105,2),(294,10,526,0,105,1),(295,10,272,0,106,26),(296,10,502,0,106,42),(297,10,526,0,106,1),(298,10,502,0,107,41),(299,10,107,0,107,51),(300,10,273,0,107,1),(301,10,274,0,107,2),(302,10,526,0,107,1),(303,10,274,0,108,2),(304,10,526,0,108,4),(305,10,501,0,108,35),(306,10,501,0,109,35),(307,10,272,0,109,26),(308,10,502,0,109,45),(309,10,107,0,109,51),(310,10,273,0,109,1),(311,10,274,0,109,2),(312,10,526,0,109,1),(313,10,501,0,110,35),(314,10,272,0,110,26),(315,10,502,0,110,44),(316,10,107,0,110,51),(317,10,273,0,110,1),(318,10,274,0,110,2),(319,10,526,0,110,1),(320,10,501,0,111,35),(321,10,107,0,111,51),(322,10,526,0,111,1),(323,10,273,0,112,1),(324,10,274,0,112,2),(325,10,526,0,112,4),(326,10,107,0,112,47),(327,10,272,0,33,59),(328,10,107,0,113,47),(329,10,273,0,113,1),(330,10,274,0,113,2),(331,10,526,0,113,1),(332,10,272,0,113,59),(333,10,501,0,114,35),(334,10,502,0,114,44),(335,10,107,0,114,47),(336,10,273,0,114,1),(337,10,274,0,114,2),(338,10,526,0,114,1),(339,10,272,0,114,59),(340,10,501,0,115,35),(341,10,502,0,115,43),(342,10,107,0,115,47),(343,10,273,0,115,1),(344,10,274,0,115,2),(345,10,526,0,115,1),(346,10,272,0,115,59),(347,10,525,0,35,100),(348,10,272,0,117,22),(349,10,273,0,117,1),(350,10,274,0,117,2),(351,10,526,0,117,1),(352,10,525,0,117,99),(353,10,272,0,118,22),(354,10,273,0,118,1),(355,10,274,0,118,2),(356,10,526,0,118,1),(357,10,525,0,118,98),(358,10,273,0,119,1),(359,10,274,0,119,2),(360,10,526,0,119,4),(361,10,501,0,119,36),(362,10,272,0,119,22),(363,10,501,0,36,35),(364,10,525,0,36,100),(365,10,273,0,120,1),(366,10,274,0,120,2),(367,10,526,0,120,4),(368,10,501,0,120,35),(369,10,272,0,120,60),(370,10,272,0,121,60),(371,10,273,0,121,1),(372,10,274,0,121,2),(373,10,525,0,121,99),(374,10,274,0,122,2),(375,10,526,0,122,1),(376,10,501,0,122,35),(377,10,525,0,122,98),(378,10,273,0,123,1),(379,10,274,0,123,2),(380,10,526,0,123,4),(381,10,501,0,123,36),(382,10,272,0,123,60),(383,10,501,0,37,36),(384,10,273,0,124,1),(385,10,501,0,124,36),(386,10,525,0,124,99),(387,10,272,0,125,60),(388,10,273,0,125,1),(389,10,274,0,125,2),(390,10,526,0,125,1),(391,10,501,0,125,36),(392,10,525,0,125,98),(393,10,273,0,126,1),(394,10,274,0,126,2),(395,10,501,0,38,36),(396,10,273,0,127,1),(397,10,274,0,127,2),(398,10,526,0,127,1),(399,10,501,0,127,36),(400,10,525,0,127,100),(401,10,272,0,128,26),(402,10,273,0,128,1),(403,10,274,0,128,2),(404,10,526,0,128,1),(405,10,501,0,128,36),(406,10,273,0,129,1),(407,10,501,0,129,36),(408,10,525,0,129,99),(409,10,272,0,130,26),(410,10,273,0,130,1),(411,10,274,0,130,2),(412,10,525,0,130,98),(413,10,274,0,131,2),(414,10,526,0,131,1),(415,10,501,0,131,36),(416,10,525,0,131,98),(417,10,501,0,117,36),(418,10,501,0,118,36),(419,10,273,0,133,1),(420,10,274,0,133,2),(421,10,526,0,133,4),(422,10,273,0,132,1),(423,10,274,0,132,2),(424,10,526,0,134,4),(425,10,526,0,135,4),(426,10,272,0,135,59),(427,10,501,0,135,35),(428,10,272,0,137,24),(429,10,273,0,137,2),(430,10,274,0,137,2),(431,10,526,0,137,1),(432,10,501,0,137,36),(433,10,525,0,137,99),(434,10,501,0,39,36),(435,10,525,0,39,99),(436,10,526,0,138,4),(437,10,274,0,139,1),(438,10,526,0,139,4),(439,10,272,0,139,23),(440,10,273,0,140,1),(441,10,274,0,140,1),(442,10,273,0,141,1),(443,10,102,0,141,111),(444,10,273,0,142,1),(445,10,274,0,142,0),(446,10,526,0,142,1),(447,10,273,0,143,1),(448,10,102,0,143,111),(449,10,526,0,144,1),(450,10,273,0,145,1),(451,10,274,0,145,1),(452,10,526,0,145,4),(453,10,526,0,146,1),(454,10,273,0,147,1),(455,10,274,0,147,0),(456,10,526,0,147,4),(457,10,102,0,147,3),(458,10,875,0,147,110),(459,10,273,0,148,1),(460,10,274,0,148,1),(461,10,526,0,148,4),(462,10,102,0,148,117),(463,10,877,0,148,115),(464,10,273,0,149,1),(465,10,274,0,149,1),(466,10,526,0,149,4),(467,10,102,0,149,118),(468,10,273,0,150,1),(469,10,274,0,150,1),(470,10,526,0,150,4),(471,10,102,0,150,118),(472,10,273,0,151,1),(473,10,274,0,151,1),(474,10,526,0,151,4),(475,10,102,0,151,116),(476,10,877,0,151,112),(477,10,273,0,152,1),(478,10,274,0,152,1),(479,10,526,0,152,4),(480,10,102,0,152,1),(481,10,875,0,152,106),(482,10,273,0,153,1),(483,10,274,0,153,1),(484,10,526,0,153,4),(485,10,102,0,153,116),(486,10,877,0,153,114),(487,10,273,0,154,1),(488,10,274,0,154,1),(489,10,526,0,154,4),(490,10,102,0,154,119),(491,10,273,0,155,1),(492,10,274,0,155,1),(493,10,526,0,155,4),(494,10,102,0,155,119),(495,10,273,0,156,1),(496,10,274,0,156,0),(497,10,526,0,156,4),(498,10,102,0,156,1),(499,10,875,0,156,106),(500,10,273,0,157,1),(501,10,274,0,157,0),(502,10,526,0,157,4),(503,10,102,0,157,29),(504,10,875,0,157,107),(505,10,860,0,158,1),(506,10,861,0,158,0),(507,10,273,0,158,1),(508,10,274,0,158,2),(509,10,526,0,158,4),(510,10,859,0,158,0),(511,10,862,0,158,1),(512,10,863,0,158,0),(513,10,273,0,159,1),(514,10,274,0,159,0),(515,10,526,0,159,4),(516,10,102,0,159,120),(517,10,273,0,160,1),(518,10,274,0,160,1),(519,10,526,0,160,4),(520,10,102,0,160,121),(521,10,272,0,160,59),(522,10,273,0,161,1),(523,10,274,0,161,0),(524,10,526,0,161,4),(525,10,102,0,161,121),(526,10,273,0,162,1),(527,10,274,0,162,1),(528,10,526,0,162,4),(529,10,102,0,162,120),(530,10,272,0,162,24),(531,10,860,0,163,0),(532,10,861,0,163,0),(533,10,273,0,163,1),(534,10,274,0,163,1),(535,10,526,0,163,4),(536,10,859,0,163,0),(537,10,862,0,163,0),(538,10,863,0,163,0),(539,10,860,0,164,1),(540,10,861,0,164,1),(541,10,273,0,164,1),(542,10,274,0,164,1),(543,10,526,0,164,4),(544,10,859,0,164,1),(545,10,862,0,164,0),(546,10,863,0,164,1),(547,10,860,0,165,1),(548,10,861,0,165,1),(549,10,273,0,165,1),(550,10,274,0,165,1),(551,10,526,0,165,4),(552,10,859,0,165,0),(553,10,862,0,165,0),(554,10,863,0,165,0),(555,10,273,0,166,1),(556,10,274,0,166,2),(557,10,526,0,166,4),(558,10,272,0,166,24),(559,10,102,0,166,122),(560,10,501,0,35,36),(561,10,526,0,19,4),(562,10,526,0,39,4),(563,10,526,0,42,4),(564,10,526,0,48,4),(565,10,526,0,51,4),(566,10,526,0,52,4),(567,10,510,0,26,79),(568,10,107,0,29,97),(569,10,501,0,74,35),(570,10,526,0,75,1),(571,10,272,0,79,59),(572,10,502,0,79,44),(573,10,501,0,85,35),(574,10,502,0,85,44),(575,10,273,0,85,1),(576,10,272,0,86,25),(577,10,273,0,86,1),(578,10,274,0,86,2),(579,10,502,0,87,42),(580,10,274,0,87,2),(581,10,526,0,87,1),(582,10,273,0,88,1),(583,10,526,0,88,1),(584,10,107,0,88,97),(585,10,107,0,89,97),(586,10,501,0,90,36),(587,10,272,0,90,25),(588,10,273,0,90,1),(589,10,274,0,90,2),(590,10,526,0,91,1),(591,10,107,0,91,97),(592,10,501,0,92,36),(593,10,272,0,92,25),(594,10,273,0,92,1),(595,10,274,0,92,2),(596,10,501,0,93,36),(597,10,501,0,94,36),(598,10,272,0,94,61),(599,10,502,0,94,40),(600,10,273,0,94,1),(601,10,274,0,94,2),(602,10,526,0,95,1),(603,10,501,0,96,36),(604,10,272,0,96,61),(605,10,502,0,96,38),(606,10,273,0,96,1),(607,10,274,0,96,2),(608,10,274,0,97,2),(609,10,526,0,97,1),(610,10,273,0,98,1),(611,10,526,0,98,4),(612,10,107,0,98,52),(613,10,274,0,99,2),(614,10,526,0,99,1),(615,10,501,0,100,36),(616,10,272,0,100,24),(617,10,107,0,100,52),(618,10,273,0,100,1),(619,10,273,0,101,1),(620,10,501,0,102,36),(621,10,272,0,102,24),(622,10,273,0,103,1),(623,10,107,0,103,52),(624,10,272,0,103,26),(625,10,273,0,104,1),(626,10,501,0,105,35),(627,10,272,0,105,26),(628,10,501,0,106,35),(629,10,107,0,106,51),(630,10,273,0,106,1),(631,10,274,0,106,2),(632,10,501,0,107,35),(633,10,272,0,107,26),(634,10,273,0,108,1),(635,10,107,0,108,51),(636,10,272,0,108,26),(637,10,272,0,111,26),(638,10,502,0,111,43),(639,10,273,0,111,1),(640,10,274,0,111,2),(641,10,272,0,112,59),(642,10,501,0,112,35),(643,10,501,0,113,35),(644,10,502,0,113,45),(645,10,526,0,121,1),(646,10,501,0,121,35),(647,10,272,0,122,60),(648,10,273,0,122,1),(649,10,525,0,37,100),(650,10,272,0,124,60),(651,10,274,0,124,2),(652,10,526,0,124,1),(653,10,526,0,126,4),(654,10,501,0,126,36),(655,10,525,0,38,100),(656,10,272,0,127,22),(657,10,525,0,128,99),(658,10,272,0,129,22),(659,10,274,0,129,2),(660,10,526,0,129,1),(661,10,526,0,130,1),(662,10,501,0,130,36),(663,10,272,0,131,22),(664,10,273,0,131,1),(665,10,526,0,132,4),(666,10,273,0,134,1),(667,10,274,0,134,2),(668,10,273,0,135,1),(669,10,274,0,135,2),(670,10,107,0,135,97),(671,10,273,0,138,1),(672,10,274,0,138,1),(673,10,272,0,138,24),(674,10,273,0,139,1),(675,10,526,0,140,4),(676,10,102,0,140,111),(677,10,274,0,141,1),(678,10,526,0,141,4),(679,10,274,0,143,1),(680,10,526,0,143,4),(681,10,273,0,144,1),(682,10,274,0,144,0),(683,10,102,0,145,117),(684,10,877,0,145,113),(685,10,273,0,146,1),(686,10,274,0,146,0); /*!40000 ALTER TABLE `catalog_product_entity_int` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_entity_media_gallery` -- DROP TABLE IF EXISTS `catalog_product_entity_media_gallery`; CREATE TABLE `catalog_product_entity_media_gallery` ( `value_id` int(11) unsigned NOT NULL auto_increment, `attribute_id` smallint(5) unsigned NOT NULL default '0', `entity_id` int(10) unsigned NOT NULL default '0', `value` varchar(255) default NULL, PRIMARY KEY (`value_id`), KEY `FK_CATALOG_PRODUCT_MEDIA_GALLERY_ATTRIBUTE` (`attribute_id`), KEY `FK_CATALOG_PRODUCT_MEDIA_GALLERY_ENTITY` (`entity_id`), CONSTRAINT `FK_CATALOG_PRODUCT_MEDIA_GALLERY_ATTRIBUTE` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE, CONSTRAINT `FK_CATALOG_PRODUCT_MEDIA_GALLERY_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=366 DEFAULT CHARSET=utf8 COMMENT='Catalog product media gallery'; -- -- Dumping data for table `catalog_product_entity_media_gallery` -- LOCK TABLES `catalog_product_entity_media_gallery` WRITE; /*!40000 ALTER TABLE `catalog_product_entity_media_gallery` DISABLE KEYS */; INSERT INTO `catalog_product_entity_media_gallery` VALUES (1,703,17,'/b/l/blackberry-8100-pearl.jpg'),(2,703,17,'/b/l/blackberry-8100-pearl-1.jpg'),(3,703,18,'/s/o/sony-ericsson-w810i.jpg'),(4,703,18,'/s/o/sony-ericsson-w810i-1.jpg'),(5,703,29,'/c/n/cn-clogs-beach-garden-clog.jpg'),(6,703,29,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(7,703,30,'/a/s/asics-men-s-gel-kayano-xii.jpg'),(8,703,30,'/a/s/asics-men-s-gel-kayano-xii-1.jpg'),(9,703,31,'/s/t/steven-by-steve-madden-pryme-pump.jpg'),(10,703,31,'/s/t/steven-by-steve-madden-pryme-pump-1.jpg'),(11,703,32,'/n/i/nine-west-women-s-lucero-pump.jpg'),(12,703,32,'/n/i/nine-west-women-s-lucero-pump-1.jpg'),(13,703,33,'/e/c/ecco-womens-golf-flexor-golf-shoe.jpg'),(14,703,33,'/e/c/ecco-womens-golf-flexor-golf-shoe-1.jpg'),(15,703,34,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on.jpg'),(16,703,34,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-1.jpg'),(17,703,35,'/c/o/coalesce-functioning-on-impatience-t-shirt.jpg'),(18,703,36,'/i/n/ink-eater-krylon-bombear-destroyed-tee.jpg'),(19,703,37,'/t/h/the-only-children-paisley-t-shirt.jpg'),(20,703,38,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt.jpg'),(21,703,19,'/a/t/at-t-8525-pda.jpg'),(22,703,39,'/t/h/the-get-up-kids-band-camp-pullover-hoodie.jpg'),(24,703,45,'/a/r/argus-qc-2185-quick-click-5mp-digital-camera.jpg'),(25,703,45,'/a/r/argus-qc-2185-quick-click-5mp-digital-camera-1.jpg'),(26,703,46,'/o/l/olympus-stylus-750-7-1mp-digital-camera.jpg'),(27,703,46,'/o/l/olympus-stylus-750-7-1mp-digital-camera-1.jpg'),(28,703,47,'/c/a/canon-powershot-a630-8mp-digital-camera-with-4x-optical-zoom.jpg'),(29,703,47,'/c/a/canon-powershot-a630-8mp-digital-camera-with-4x-optical-zoom-1.jpg'),(30,703,48,'/k/o/kodak-easyshare-c530-5mp-digital-camera.jpg'),(31,703,48,'/k/o/kodak-easyshare-c530-5mp-digital-camera-1.jpg'),(32,703,44,'/c/a/canon-digital-rebel-xt-8mp-digital-slr-camera.jpg'),(33,703,49,'/a/n/anashria-womens-premier-leather-sandal.jpg'),(34,703,49,'/a/n/anashria-womens-premier-leather-sandal-1.jpg'),(35,703,74,'/a/n/anashria-womens-premier-leather-sandal.jpg'),(36,703,74,'/a/n/anashria-womens-premier-leather-sandal-1.jpg'),(37,703,75,'/a/n/anashria-womens-premier-leather-sandal.jpg'),(38,703,75,'/a/n/anashria-womens-premier-leather-sandal-1.jpg'),(47,703,83,'/c/n/cn-clogs-beach-garden-clog.jpg'),(84,703,103,'/s/t/steven-by-steve-madden-pryme-pump.jpg'),(102,703,112,'/e/c/ecco-womens-golf-flexor-golf-shoe.jpg'),(112,703,119,'/c/o/coalesce-functioning-on-impatience-t-shirt.jpg'),(113,703,120,'/i/n/ink-eater-krylon-bombear-destroyed-tee.jpg'),(116,703,123,'/t/h/the-only-children-paisley-t-shirt.jpg'),(119,703,126,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt.jpg'),(126,703,16,'/n/o/nokia-2610-phone.jpg'),(127,703,16,'/n/o/nokia-2610-phone-1.jpg'),(130,703,44,'/c/a/canon-digital-rebel-xt-8mp-digital-slr-camera-1.jpg'),(131,703,134,'/u/n/universal-camera-charger.jpg'),(133,703,119,'/c/o/coalesce-functioning-on-impatience-t-shirt-1.jpg'),(136,703,27,'/s/o/sony-vaio-vgn-txn27n-b-11-1-notebook-pc.jpg'),(137,703,39,'/t/h/the-get-up-kids-band-camp-pullover-hoodie-1.jpg'),(139,703,41,'/a/k/akio-dresser.jpg'),(140,703,42,'/b/a/barcelona-bamboo-platform-bed.jpg'),(141,703,138,'/a/p/apevia-black-x-cruiser-case-atx-mid-tower-case-default.jpg'),(142,703,139,'/n/z/nzxt-lexa-silver-aluminum-atx-mid-tower-case-default.jpg'),(143,703,145,'/a/m/amd-phenom-x4-9850-black-ed-2-50ghz-retail.jpg'),(144,703,148,'/a/m/amd-a64-x2-3800-2-0ghz-oem.jpg'),(145,703,147,'/2/2/22-syncmaster-lcd-monitor.jpg'),(146,703,151,'/i/n/intel-c2d-e8400-3-0ghz-retail.jpg'),(147,703,152,'/2/4/24-widescreen-flat-panel-lcd-monitor.jpg'),(148,703,153,'/i/n/intel-core-2-extreme-qx9775-3-20ghz-retail.jpg'),(149,703,156,'/1/9/19-widescreen-flat-panel-lcd-monitor.jpg'),(150,703,157,'/3/0/30-flat-panel-tft-lcd-cinema-hd-monitor.jpg'),(151,703,159,'/m/i/microsoft-natural-ergonomic-keyboard-4000.jpg'),(152,703,161,'/l/o/logitech-dinovo-edge-keyboard.jpg'),(153,703,162,'/m/i/microsoft-wireless-optical-mouse-5000.jpg'),(154,703,160,'/l/o/logitech-cordless-optical-trackman.jpg'),(155,703,163,'/c/o/computer.jpg'),(156,703,164,'/g/a/gaming-computer.jpg'),(157,703,165,'/m/y/my-computer.jpg'),(158,703,158,'/s/o/sony-vaio-11-1-notebook-pc.jpg'),(159,703,155,'/s/e/seagate-250gb-hd-5400rpm.jpg'),(160,703,154,'/s/e/seagate-500gb-hd-5400rpm.jpg'),(161,703,150,'/w/e/western-digital-500gb-hd-7200rpm.jpg'),(162,703,149,'/w/e/western-digital-1tb-hd-7200rpm.jpg'),(163,703,143,'/c/r/crucial-512mb-pc4200-ddr2-533mhz-memory.jpg'),(164,703,141,'/c/r/crucial-1gb-pc4200-ddr2-533mhz-memory.jpg'),(165,703,140,'/c/r/crucial-2gb-pc4200-ddr2-533mhz-memory.jpg'),(166,703,166,'/h/t/htc-touch-diamond.jpg'),(167,703,26,'/a/c/acer-ferrari-3200-notebook-computer-pc.jpg'),(168,703,25,'/a/p/apple-macbook-pro-ma464ll-a-15-4-notebook-pc.jpg'),(171,703,93,'/a/s/asics-men-s-gel-kayano-xii.jpg'),(172,703,93,'/a/s/asics-men-s-gel-kayano-xii-1.jpg'),(173,703,93,'/a/s/asics-men-s-gel-kayano-xii-2.jpg'),(174,703,108,'/n/i/nine-west-women-s-lucero-pump.jpg'),(175,703,108,'/n/i/nine-west-women-s-lucero-pump-1.jpg'),(176,703,108,'/n/i/nine-west-women-s-lucero-pump-2.jpg'),(177,703,135,'/a/n/anashria-womens-premier-leather-sandal-2.jpg'),(178,703,135,'/a/n/anashria-womens-premier-leather-sandal-1.jpg'),(179,703,135,'/a/n/anashria-womens-premier-leather-sandal.jpg'),(180,703,83,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(181,703,83,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(182,703,112,'/e/c/ecco-womens-golf-flexor-golf-shoe-1.jpg'),(183,703,112,'/e/c/ecco-womens-golf-flexor-golf-shoe-2.jpg'),(184,703,120,'/i/n/ink-eater-krylon-bombear-destroyed-tee-1.jpg'),(185,703,126,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-2.jpg'),(186,703,126,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-1.jpg'),(187,703,103,'/s/t/steven-by-steve-madden-pryme-pump-2.jpg'),(188,703,103,'/s/t/steven-by-steve-madden-pryme-pump-1.jpg'),(189,703,16,'/n/o/nokia-2610-phone-2.jpg'),(190,703,17,'/b/l/blackberry-8100-pearl-2.jpg'),(191,703,18,'/s/o/sony-ericsson-w810i-2.jpg'),(192,703,20,'/s/a/samsung-mm-a900m-ace.jpg'),(193,703,28,'/t/o/toshiba-m285-e-14.jpg'),(194,703,34,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-2.jpg'),(195,703,37,'/t/h/the-only-children-paisley-t-shirt-1.jpg'),(196,703,19,'/a/t/at-t-8525-pda-1.jpg'),(197,703,45,'/a/r/argus-qc-2185-quick-click-5mp-digital-camera-2.jpg'),(198,703,46,'/o/l/olympus-stylus-750-7-1mp-digital-camera-2.jpg'),(199,703,47,'/c/a/canon-powershot-a630-8mp-digital-camera-with-4x-optical-zoom-2.jpg'),(200,703,48,'/k/o/kodak-easyshare-c530-5mp-digital-camera-2.jpg'),(201,703,51,'/o/t/ottoman.jpg'),(202,703,52,'/c/h/chair.jpg'),(203,703,53,'/c/o/couch.jpg'),(204,703,54,'/m/a/magento-red-furniture-set.jpg'),(205,703,133,'/u/n/universal-camera-case.jpg'),(206,703,132,'/s/l/slr-camera-tripod.jpg'),(212,703,29,'/c/n/cn-clogs-beach-garden-clog-3.jpg'),(213,703,31,'/s/t/steven-by-steve-madden-pryme-pump-3.jpg'),(214,703,33,'/e/c/ecco-womens-golf-flexor-golf-shoe-3.jpg'),(215,703,34,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-3.jpg'),(216,703,37,'/t/h/the-only-children-paisley-t-shirt-2.jpg'),(222,703,49,'/a/n/anashria-womens-premier-leather-sandal-3.jpg'),(227,703,75,'/a/n/anashria-womens-premier-leather-sandal-3.jpg'),(228,703,124,'/t/h/the-only-children-paisley-t-shirt-1.jpg'),(229,703,125,'/t/h/the-only-children-paisley-t-shirt-1.jpg'),(230,703,133,'/u/n/universal-camera-case-1.jpg'),(237,703,29,'/c/n/cn-clogs-beach-garden-clog-4.jpg'),(238,703,31,'/s/t/steven-by-steve-madden-pryme-pump-4.jpg'),(239,703,33,'/e/c/ecco-womens-golf-flexor-golf-shoe-4.jpg'),(240,703,34,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-4.jpg'),(241,703,37,'/t/h/the-only-children-paisley-t-shirt-3.jpg'),(242,703,38,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-3.jpg'),(248,703,49,'/a/n/anashria-womens-premier-leather-sandal-4.jpg'),(253,703,75,'/a/n/anashria-womens-premier-leather-sandal-4.jpg'),(255,703,99,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-2.jpg'),(256,703,100,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-2.jpg'),(257,703,101,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-2.jpg'),(258,703,102,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-2.jpg'),(259,703,121,'/i/n/ink-eater-krylon-bombear-destroyed-tee-2.jpg'),(260,703,122,'/i/n/ink-eater-krylon-bombear-destroyed-tee-2.jpg'),(261,703,124,'/t/h/the-only-children-paisley-t-shirt-2.jpg'),(262,703,125,'/t/h/the-only-children-paisley-t-shirt-2.jpg'),(263,703,133,'/u/n/universal-camera-case-2.jpg'),(265,703,29,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(266,703,31,'/s/t/steven-by-steve-madden-pryme-pump-2.jpg'),(267,703,33,'/e/c/ecco-womens-golf-flexor-golf-shoe-2.jpg'),(268,703,38,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-1.jpg'),(269,703,49,'/a/n/anashria-womens-premier-leather-sandal-2.jpg'),(270,703,75,'/a/n/anashria-womens-premier-leather-sandal-2.jpg'),(271,703,79,'/a/n/anashria-womens-premier-leather-sandal.jpg'),(272,703,80,'/a/n/anashria-womens-premier-leather-sandal.jpg'),(273,703,81,'/a/n/anashria-womens-premier-leather-sandal.jpg'),(274,703,82,'/a/n/anashria-womens-premier-leather-sandal.jpg'),(275,703,84,'/c/n/cn-clogs-beach-garden-clog.jpg'),(276,703,85,'/c/n/cn-clogs-beach-garden-clog.jpg'),(277,703,86,'/c/n/cn-clogs-beach-garden-clog.jpg'),(278,703,87,'/c/n/cn-clogs-beach-garden-clog.jpg'),(279,703,88,'/c/n/cn-clogs-beach-garden-clog.jpg'),(280,703,89,'/c/n/cn-clogs-beach-garden-clog.jpg'),(281,703,90,'/c/n/cn-clogs-beach-garden-clog.jpg'),(282,703,91,'/c/n/cn-clogs-beach-garden-clog.jpg'),(283,703,92,'/c/n/cn-clogs-beach-garden-clog.jpg'),(284,703,98,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on.jpg'),(285,703,99,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on.jpg'),(286,703,100,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on.jpg'),(287,703,101,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on.jpg'),(288,703,102,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on.jpg'),(289,703,104,'/s/t/steven-by-steve-madden-pryme-pump.jpg'),(290,703,105,'/s/t/steven-by-steve-madden-pryme-pump.jpg'),(291,703,106,'/s/t/steven-by-steve-madden-pryme-pump.jpg'),(292,703,107,'/s/t/steven-by-steve-madden-pryme-pump.jpg'),(293,703,113,'/e/c/ecco-womens-golf-flexor-golf-shoe.jpg'),(294,703,114,'/e/c/ecco-womens-golf-flexor-golf-shoe.jpg'),(295,703,115,'/e/c/ecco-womens-golf-flexor-golf-shoe.jpg'),(296,703,121,'/i/n/ink-eater-krylon-bombear-destroyed-tee.jpg'),(297,703,122,'/i/n/ink-eater-krylon-bombear-destroyed-tee.jpg'),(298,703,124,'/t/h/the-only-children-paisley-t-shirt.jpg'),(299,703,125,'/t/h/the-only-children-paisley-t-shirt.jpg'),(300,703,127,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt.jpg'),(301,703,128,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt.jpg'),(302,703,129,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt.jpg'),(303,703,130,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt.jpg'),(304,703,131,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt.jpg'),(305,703,137,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt.jpg'),(306,703,38,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-2.jpg'),(307,703,79,'/a/n/anashria-womens-premier-leather-sandal-1.jpg'),(308,703,80,'/a/n/anashria-womens-premier-leather-sandal-1.jpg'),(309,703,81,'/a/n/anashria-womens-premier-leather-sandal-1.jpg'),(310,703,82,'/a/n/anashria-womens-premier-leather-sandal-1.jpg'),(311,703,84,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(312,703,85,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(313,703,86,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(314,703,87,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(315,703,88,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(316,703,89,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(317,703,90,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(318,703,91,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(319,703,92,'/c/n/cn-clogs-beach-garden-clog-1.jpg'),(321,703,99,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-1.jpg'),(322,703,100,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-1.jpg'),(323,703,101,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-1.jpg'),(324,703,102,'/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-1.jpg'),(325,703,104,'/s/t/steven-by-steve-madden-pryme-pump-1.jpg'),(326,703,105,'/s/t/steven-by-steve-madden-pryme-pump-1.jpg'),(327,703,106,'/s/t/steven-by-steve-madden-pryme-pump-1.jpg'),(328,703,107,'/s/t/steven-by-steve-madden-pryme-pump-1.jpg'),(329,703,113,'/e/c/ecco-womens-golf-flexor-golf-shoe-1.jpg'),(330,703,114,'/e/c/ecco-womens-golf-flexor-golf-shoe-1.jpg'),(331,703,115,'/e/c/ecco-womens-golf-flexor-golf-shoe-1.jpg'),(332,703,121,'/i/n/ink-eater-krylon-bombear-destroyed-tee-1.jpg'),(333,703,122,'/i/n/ink-eater-krylon-bombear-destroyed-tee-1.jpg'),(334,703,127,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-1.jpg'),(335,703,128,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-1.jpg'),(336,703,129,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-1.jpg'),(337,703,130,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-1.jpg'),(338,703,131,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-1.jpg'),(339,703,137,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-1.jpg'),(340,703,79,'/a/n/anashria-womens-premier-leather-sandal-2.jpg'),(341,703,80,'/a/n/anashria-womens-premier-leather-sandal-2.jpg'),(342,703,81,'/a/n/anashria-womens-premier-leather-sandal-2.jpg'),(343,703,82,'/a/n/anashria-womens-premier-leather-sandal-2.jpg'),(344,703,84,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(345,703,85,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(346,703,86,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(347,703,87,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(348,703,88,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(349,703,89,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(350,703,90,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(351,703,91,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(352,703,92,'/c/n/cn-clogs-beach-garden-clog-2.jpg'),(353,703,104,'/s/t/steven-by-steve-madden-pryme-pump-2.jpg'),(354,703,105,'/s/t/steven-by-steve-madden-pryme-pump-2.jpg'),(355,703,106,'/s/t/steven-by-steve-madden-pryme-pump-2.jpg'),(356,703,107,'/s/t/steven-by-steve-madden-pryme-pump-2.jpg'),(357,703,113,'/e/c/ecco-womens-golf-flexor-golf-shoe-2.jpg'),(358,703,114,'/e/c/ecco-womens-golf-flexor-golf-shoe-2.jpg'),(359,703,115,'/e/c/ecco-womens-golf-flexor-golf-shoe-2.jpg'),(360,703,127,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-2.jpg'),(361,703,128,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-2.jpg'),(362,703,129,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-2.jpg'),(363,703,130,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-2.jpg'),(364,703,131,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-2.jpg'),(365,703,137,'/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-2.jpg'); /*!40000 ALTER TABLE `catalog_product_entity_media_gallery` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_entity_media_gallery_value` -- DROP TABLE IF EXISTS `catalog_product_entity_media_gallery_value`; CREATE TABLE `catalog_product_entity_media_gallery_value` ( `value_id` int(11) unsigned NOT NULL default '0', `store_id` smallint(5) unsigned NOT NULL default '0', `label` varchar(255) default NULL, `position` int(11) unsigned default NULL, `disabled` tinyint(1) unsigned NOT NULL default '0', PRIMARY KEY (`value_id`,`store_id`), KEY `FK_CATALOG_PRODUCT_MEDIA_GALLERY_VALUE_STORE` (`store_id`), CONSTRAINT `FK_CATALOG_PRODUCT_MEDIA_GALLERY_VALUE_GALLERY` FOREIGN KEY (`value_id`) REFERENCES `catalog_product_entity_media_gallery` (`value_id`) ON DELETE CASCADE, CONSTRAINT `FK_CATALOG_PRODUCT_MEDIA_GALLERY_VALUE_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog product media gallery values'; -- -- Dumping data for table `catalog_product_entity_media_gallery_value` -- LOCK TABLES `catalog_product_entity_media_gallery_value` WRITE; /*!40000 ALTER TABLE `catalog_product_entity_media_gallery_value` DISABLE KEYS */; INSERT INTO `catalog_product_entity_media_gallery_value` VALUES (1,0,'',2,0),(2,0,'',1,0),(3,0,'',0,0),(4,0,'',0,0),(5,0,'',0,1),(6,0,'',0,1),(7,0,'',0,0),(8,0,'',0,0),(9,0,'',0,1),(10,0,'',0,1),(11,0,'',0,0),(12,0,'',0,0),(13,0,'',0,1),(14,0,'',0,1),(15,0,'',0,1),(16,0,'',0,1),(17,0,'',0,0),(18,0,'',0,0),(19,0,'',0,0),(20,0,'',0,0),(21,0,'',0,0),(22,0,'',0,0),(24,0,'',1,0),(25,0,'',2,0),(26,0,'',0,0),(27,0,'',0,0),(28,0,'',1,0),(29,0,'',2,0),(30,0,'',0,0),(31,0,'',0,0),(32,0,'',0,0),(33,0,'',0,1),(34,0,'',0,1),(35,0,'',0,1),(36,0,'',0,1),(37,0,'',0,1),(38,0,'',0,1),(47,0,'',0,1),(84,0,'',0,1),(102,0,'',0,1),(112,0,'',0,0),(113,0,'',0,1),(116,0,'',0,1),(119,0,'',0,1),(126,0,'',2,0),(127,0,'',1,0),(130,0,'',1,1),(131,0,'',1,1),(133,0,'',1,1),(136,0,'',1,1),(137,0,'',1,1),(139,0,'',1,1),(140,0,'',1,1),(141,0,'',1,0),(142,0,'',1,0),(143,0,'',1,1),(144,0,'',1,1),(145,0,'',1,1),(146,0,'',1,1),(147,0,'',1,1),(148,0,'',1,1),(149,0,'',1,1),(150,0,'',1,1),(151,0,'',1,1),(152,0,'',1,1),(153,0,'',1,1),(154,0,'',1,1),(155,0,'',1,1),(156,0,'',1,1),(157,0,'',1,1),(158,0,'',1,1),(159,0,'',1,1),(160,0,'',1,1),(161,0,'',1,1),(162,0,'',1,1),(163,0,'',1,1),(164,0,'',1,1),(165,0,'',1,1),(166,0,'',1,1),(167,0,'',1,1),(168,0,'',1,1),(171,0,'',2,0),(172,0,'',1,0),(173,0,'',0,1),(174,0,'',0,1),(175,0,'',1,0),(176,0,'',2,0),(177,0,'',2,0),(178,0,'',1,0),(179,0,'',0,1),(180,0,'',0,0),(181,0,'',0,0),(182,0,'',1,0),(183,0,'',2,0),(184,0,'',0,0),(185,0,'',0,0),(186,0,'',0,0),(187,0,'',1,0),(188,0,'',2,0),(189,0,'',0,1),(190,0,'',0,1),(191,0,'',0,1),(192,0,'',0,1),(193,0,'',0,1),(194,0,'',0,1),(195,0,'',0,1),(196,0,'',0,1),(197,0,'',0,1),(198,0,'',0,1),(199,0,'',0,1),(200,0,'',0,1),(201,0,'',0,1),(202,0,'',0,1),(203,0,'',0,1),(204,0,'',0,1),(205,0,'',0,1),(206,0,'',0,1),(212,0,'',0,1),(213,0,'',0,1),(214,0,'',0,1),(215,0,'',0,1),(216,0,'',0,1),(222,0,'',0,1),(227,0,'',0,1),(228,0,'',0,1),(229,0,'',0,1),(230,0,'',0,1),(237,0,'',0,1),(238,0,'',0,1),(239,0,'',0,1),(240,0,'',0,1),(241,0,'',0,1),(242,0,'',0,1),(248,0,'',0,1),(253,0,'',0,1),(255,0,'',0,1),(256,0,'',0,1),(257,0,'',0,1),(258,0,'',0,1),(259,0,'',0,1),(260,0,'',0,1),(261,0,'',0,1),(262,0,'',0,1),(263,0,'',0,1),(265,0,'',0,1),(266,0,'',0,1),(267,0,'',0,1),(268,0,'',0,1),(269,0,'',0,1),(270,0,'',0,1),(271,0,'',0,1),(272,0,'',0,1),(273,0,'',0,1),(274,0,'',0,1),(275,0,'',0,1),(276,0,'',0,1),(277,0,'',0,1),(278,0,'',0,1),(279,0,'',0,1),(280,0,'',0,1),(281,0,'',0,1),(282,0,'',0,1),(283,0,'',0,1),(284,0,'',0,1),(285,0,'',0,1),(286,0,'',0,1),(287,0,'',0,1),(288,0,'',0,1),(289,0,'',0,1),(290,0,'',0,1),(291,0,'',0,1),(292,0,'',0,1),(293,0,'',0,1),(294,0,'',0,1),(295,0,'',0,1),(296,0,'',0,1),(297,0,'',0,1),(298,0,'',0,1),(299,0,'',0,1),(300,0,'',0,1),(301,0,'',0,1),(302,0,'',0,1),(303,0,'',0,1),(304,0,'',0,1),(305,0,'',0,1),(306,0,'',0,1),(307,0,'',0,1),(308,0,'',0,1),(309,0,'',0,1),(310,0,'',0,1),(311,0,'',0,1),(312,0,'',0,1),(313,0,'',0,1),(314,0,'',0,1),(315,0,'',0,1),(316,0,'',0,1),(317,0,'',0,1),(318,0,'',0,1),(319,0,'',0,1),(321,0,'',0,1),(322,0,'',0,1),(323,0,'',0,1),(324,0,'',0,1),(325,0,'',0,1),(326,0,'',0,1),(327,0,'',0,1),(328,0,'',0,1),(329,0,'',0,1),(330,0,'',0,1),(331,0,'',0,1),(332,0,'',0,1),(333,0,'',0,1),(334,0,'',0,1),(335,0,'',0,1),(336,0,'',0,1),(337,0,'',0,1),(338,0,'',0,1),(339,0,'',0,1),(340,0,'',0,1),(341,0,'',0,1),(342,0,'',0,1),(343,0,'',0,1),(344,0,'',0,1),(345,0,'',0,1),(346,0,'',0,1),(347,0,'',0,1),(348,0,'',0,1),(349,0,'',0,1),(350,0,'',0,1),(351,0,'',0,1),(352,0,'',0,1),(353,0,'',0,1),(354,0,'',0,1),(355,0,'',0,1),(356,0,'',0,1),(357,0,'',0,1),(358,0,'',0,1),(359,0,'',0,1),(360,0,'',0,1),(361,0,'',0,1),(362,0,'',0,1),(363,0,'',0,1),(364,0,'',0,1),(365,0,'',0,1); /*!40000 ALTER TABLE `catalog_product_entity_media_gallery_value` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_entity_text` -- DROP TABLE IF EXISTS `catalog_product_entity_text`; CREATE TABLE `catalog_product_entity_text` ( `value_id` int(11) NOT NULL auto_increment, `entity_type_id` mediumint(8) unsigned NOT NULL default '0', `attribute_id` smallint(5) unsigned NOT NULL default '0', `store_id` smallint(5) unsigned NOT NULL default '0', `entity_id` int(10) unsigned NOT NULL default '0', `value` text NOT NULL, PRIMARY KEY (`value_id`), KEY `FK_CATALOG_PRODUCT_ENTITY_TEXT_ATTRIBUTE` (`attribute_id`), KEY `FK_CATALOG_PRODUCT_ENTITY_TEXT_STORE` (`store_id`), KEY `FK_CATALOG_PRODUCT_ENTITY_TEXT_PRODUCT_ENTITY` (`entity_id`), KEY `IDX_ATTRIBUTE_VALUE` (`entity_id`,`attribute_id`,`store_id`), CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_TEXT_ATTRIBUTE` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_TEXT_PRODUCT_ENTITY` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_TEXT_STORE` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=693 DEFAULT CHARSET=utf8; -- -- Dumping data for table `catalog_product_entity_text` -- LOCK TABLES `catalog_product_entity_text` WRITE; /*!40000 ALTER TABLE `catalog_product_entity_text` DISABLE KEYS */; INSERT INTO `catalog_product_entity_text` VALUES (1,10,495,0,16,'2610'),(2,10,494,0,16,'4.1 x 1.7 x 0.7 inches '),(3,10,97,0,16,'The Nokia 2610 is an easy to use device that combines multiple messaging options including email, instant messaging, and more. You can even download MP3 ringtones, graphics, and games straight to the phone, or surf the Internet with Cingular\'s MEdia Net service. It\'s the perfect complement to Cingular service for those even remotely interested in mobile Web capabilities in an affordable handset.

\r\n\r\nDesign
\r\nCompact and stylish, the 2610 features a candybar design sporting a bright 128 x 128 pixel display capable of displaying over 65,000 colors. Most of the phone\'s features and on-screen menus are controlled by a center toggle on the control pad. A standard hands-free headphone jack is provided, as are volume control keys, and there\'s even a \"Go-To\" button that can be assigned by the user for quick access to favorite applications. Lastly, the included speakerphone allows you to talk handsfree, and because the phone sports an internal antenna, there\'s nothing to snag or break off.\r\n\r\n'),(4,10,492,0,16,'